diff --git a/src/RecoveryServices/RecoveryServices.Backup.Helpers/RecoveryServices.Backup.Helpers.csproj b/src/RecoveryServices/RecoveryServices.Backup.Helpers/RecoveryServices.Backup.Helpers.csproj index 2b920eae61d2..5529d8c8fb4d 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 e340bfdcf17f..92ae26edb8c3 100644 --- a/src/RecoveryServices/RecoveryServices.Backup.Helpers/TrackingHelpers.cs +++ b/src/RecoveryServices/RecoveryServices.Backup.Helpers/TrackingHelpers.cs @@ -45,18 +45,13 @@ public static T GetOperationStatus(RestAzureNS.AzureOperationResponse respons var opStatusResponse = getOpStatus(operationId); string testMode = Environment.GetEnvironmentVariable("AZURE_TEST_MODE"); - while (opStatusResponse.Body.Status == - ServiceClientModel.OperationStatusValues.InProgress) + while (opStatusResponse.Body.Status == ServiceClientModel.OperationStatusValues.InProgress) { - if (!TestMockSupport.RunningMocked) - { - TestMockSupport.Delay(_defaultSleepForOperationTracking * 1000); - } - if (String.Compare(testMode, "Record", StringComparison.OrdinalIgnoreCase) == 0) + TestMockSupport.Delay(_defaultSleepForOperationTracking * 1000); + if (String.Compare(testMode, "Record", StringComparison.OrdinalIgnoreCase) == 0 || TestMockSupport.RunningMocked) { Thread.Sleep(5000); } - opStatusResponse = getOpStatus(operationId); } @@ -84,11 +79,8 @@ public static T GetOperationStatus(RestAzureNS.AzureOperationResponse r while (opStatusResponse.Body.Status == ServiceClientModel.OperationStatusValues.InProgress) { - if (!TestMockSupport.RunningMocked) - { - TestMockSupport.Delay(_defaultSleepForOperationTracking * 1000); - } - if (String.Compare(testMode, "Record", StringComparison.OrdinalIgnoreCase) == 0) + TestMockSupport.Delay(_defaultSleepForOperationTracking * 1000); + if (String.Compare(testMode, "Record", StringComparison.OrdinalIgnoreCase) == 0 || TestMockSupport.RunningMocked) { Thread.Sleep(5000); } @@ -118,15 +110,11 @@ public static RestAzureNS.AzureOperationResponse GetOperationResult( string testMode = Environment.GetEnvironmentVariable("AZURE_TEST_MODE"); while (opStatusResponse.Response.StatusCode == SystemNet.HttpStatusCode.Accepted) { - if (!TestMockSupport.RunningMocked) - { - TestMockSupport.Delay(_defaultSleepForOperationTracking * 1000); - } - if (String.Compare(testMode, "Record", StringComparison.OrdinalIgnoreCase) == 0) + TestMockSupport.Delay(_defaultSleepForOperationTracking * 1000); + if (String.Compare(testMode, "Record", StringComparison.OrdinalIgnoreCase) == 0 || TestMockSupport.RunningMocked) { Thread.Sleep(5000); } - opStatusResponse = getOpStatus(operationId); } @@ -153,15 +141,11 @@ public static RestAzureNS.AzureOperationResponse GetOperationStatusDataMove GetOperationResult( string testMode = Environment.GetEnvironmentVariable("AZURE_TEST_MODE"); while (opStatusResponse.Response.StatusCode == SystemNet.HttpStatusCode.Accepted) { - if (!TestMockSupport.RunningMocked) - { - TestMockSupport.Delay(_defaultSleepForOperationTracking * 1000); - } - if (String.Compare(testMode, "Record", StringComparison.OrdinalIgnoreCase) == 0) + TestMockSupport.Delay(_defaultSleepForOperationTracking * 1000); + if (String.Compare(testMode, "Record", StringComparison.OrdinalIgnoreCase) == 0 || TestMockSupport.RunningMocked) { Thread.Sleep(5000); } - opStatusResponse = getOpStatus(operationId); } opStatusResponse = getOpStatus(operationId); @@ -236,15 +216,11 @@ public static RestAzureNS.AzureOperationResponse GetOperationResult( string testMode = Environment.GetEnvironmentVariable("AZURE_TEST_MODE"); while (opStatusResponse.Response.StatusCode == SystemNet.HttpStatusCode.Accepted) { - if (!TestMockSupport.RunningMocked) - { - TestMockSupport.Delay(_defaultSleepForOperationTracking * 1000); - } - if (String.Compare(testMode, "Record", StringComparison.OrdinalIgnoreCase) == 0) + TestMockSupport.Delay(_defaultSleepForOperationTracking * 1000); + if (String.Compare(testMode, "Record", StringComparison.OrdinalIgnoreCase) == 0 || TestMockSupport.RunningMocked) { Thread.Sleep(5000); } - opStatusResponse = getOpStatus(operationId); } diff --git a/src/RecoveryServices/RecoveryServices.Backup.Helpers/Validations/PolicyValidations.cs b/src/RecoveryServices/RecoveryServices.Backup.Helpers/Validations/PolicyValidations.cs index 9d602834f209..7c1505097bc0 100644 --- a/src/RecoveryServices/RecoveryServices.Backup.Helpers/Validations/PolicyValidations.cs +++ b/src/RecoveryServices/RecoveryServices.Backup.Helpers/Validations/PolicyValidations.cs @@ -27,7 +27,7 @@ public partial class PolicyHelpers // /// Helper function to validate long term rentention policy and simple schedule policy. /// - public static void ValidateLongTermRetentionPolicyWithSimpleRetentionPolicy( + public static void ValidateLongTermRetentionPolicyWithSimpleSchedulePolicy( LongTermRetentionPolicy ltrPolicy, SimpleSchedulePolicy schPolicy) { @@ -124,7 +124,7 @@ public static void ValidateLongTermRetentionPolicyWithSimpleRetentionPolicy( // /// Helper function to validate long term rentention policy and simple schedule policy. /// - public static void ValidateLongTermRetentionPolicyWithSimpleRetentionPolicy( + public static void ValidateLongTermRetentionPolicyWithSimpleSchedulePolicy( LongTermRetentionPolicy ltrPolicy, SimpleSchedulePolicyV2 schPolicy) { @@ -226,7 +226,7 @@ public static void ValidateLongTermRetentionPolicyWithSimpleRetentionPolicy( } } - public static void ValidateLongTermRetentionPolicyWithSimpleRetentionPolicy( + public static void ValidateLongTermRetentionPolicyWithSimpleSchedulePolicy( SQLRetentionPolicy ltrPolicy, SQLSchedulePolicy schPolicy) { diff --git a/src/RecoveryServices/RecoveryServices.Backup.Models/CmdletParamEnums.cs b/src/RecoveryServices/RecoveryServices.Backup.Models/CmdletParamEnums.cs index 7a3b07c1003a..06357c483d30 100644 --- a/src/RecoveryServices/RecoveryServices.Backup.Models/CmdletParamEnums.cs +++ b/src/RecoveryServices/RecoveryServices.Backup.Models/CmdletParamEnums.cs @@ -21,6 +21,12 @@ public enum VaultParams VaultLocation, } + public enum ResourceGuardParams + { + Token, + IsMUAOperation, + } + public enum ContainerParams { Vault, @@ -77,7 +83,8 @@ public enum RestoreVMBackupItemParams TargetVMName, TargetVNetName, TargetVNetResourceGroup, - TargetSubnetName + TargetSubnetName, + TargetSubscriptionId } public enum RestoreFSBackupItemParams @@ -123,7 +130,8 @@ public enum PolicyParams ResourceName, FixForInconsistentItems, ScheduleRunFrequency, - PolicySubType + PolicySubType, + ExistingPolicy } public enum ItemParams diff --git a/src/RecoveryServices/RecoveryServices.Backup.Models/Properties/Resources.Designer.cs b/src/RecoveryServices/RecoveryServices.Backup.Models/Properties/Resources.Designer.cs index b566d57f675b..128518c5151c 100644 --- a/src/RecoveryServices/RecoveryServices.Backup.Models/Properties/Resources.Designer.cs +++ b/src/RecoveryServices/RecoveryServices.Backup.Models/Properties/Resources.Designer.cs @@ -2314,5 +2314,81 @@ public static string InvalidPolicyForTrustedVMProtection return ResourceManager.GetString("InvalidPolicyForTrustedVMProtection", resourceCulture); } } + + /// + /// Looks up a localized string similar to ProtectedItemURI can't be null as the operation is protected with ResourceGuard + /// + public static string ProtectedItemURICantBeNull + { + get + { + return ResourceManager.GetString("ProtectedItemURICantBeNull", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Operation not critical, please try without the Token parameter. MUA currently only protects reducing or disabling retention times + /// + public static string PolicyUpdateNotCritical + { + get + { + return ResourceManager.GetString("PolicyUpdateNotCritical", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to {0} is not protected via MUA, either protect or try without the Token parameter + /// + public static string UnexpectedParameterToken + { + get + { + return ResourceManager.GetString("UnexpectedParameterToken", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Operation not critical, please try without the Token parameter. MUA currently protects disabling SoftDelete or SecurityFeatures only when it was previously enabled + /// + public static string BackupConfigUpdateNotCritical + { + get + { + return ResourceManager.GetString("BackupConfigUpdateNotCritical", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to ResourceGuardMapping not found + /// + public static string ResourceGuardMappingNotFound + { + get + { + return ResourceManager.GetString("ResourceGuardMappingNotFound", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Invalid parameter Token: Stop protection with retain backup data is not MUA protected + /// + public static string DisableWithRetainBackupNotCrititcal{ + get + { + return ResourceManager.GetString("DisableWithRetainBackupNotCrititcal", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Cross region restore is not supported along with cross subscription restore, please try passing either RestoreToSecondaryRegion or TargetSubscriptionId parameter but not both + /// + public static string CRRNotSupportedWIthCSR + { + get + { + return ResourceManager.GetString("CRRNotSupportedWIthCSR", resourceCulture); + } + } } } diff --git a/src/RecoveryServices/RecoveryServices.Backup.Models/Properties/Resources.resx b/src/RecoveryServices/RecoveryServices.Backup.Models/Properties/Resources.resx index 8846e014f324..b64869c82e2e 100644 --- a/src/RecoveryServices/RecoveryServices.Backup.Models/Properties/Resources.resx +++ b/src/RecoveryServices/RecoveryServices.Backup.Models/Properties/Resources.resx @@ -739,4 +739,25 @@ Please contact Microsoft for further assistance. Trusted VM can only be protected using Enhanced policy. Please provide a valid AzureVM Enhanced policy + + ProtectedItemURI can't be null as the operation is protected with ResourceGuard + + + Operation not critical, please try without the Token parameter. MUA currently only protects reducing or disabling retention times + + + {0} is not protected via MUA, either protect or try without the Token parameter + + + Operation not critical, please try without the Token parameter. MUA currently protects disabling SoftDelete or SecurityFeatures only when it was previously enabled + + + ResourceGuardMapping not found + + + Invalid parameter Token: Stop protection with retain backup data is not MUA protected + + + Cross region restore is not supported along with cross subscription restore, please try passing either RestoreToSecondaryRegion or TargetSubscriptionId parameter but not both + \ 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 4ecc2a62c6dd..920bd2da7f1a 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 @@ - + diff --git a/src/RecoveryServices/RecoveryServices.Backup.Providers/AzureWorkloadProviderHelper.cs b/src/RecoveryServices/RecoveryServices.Backup.Providers/AzureWorkloadProviderHelper.cs index 9d4bbabe4b08..fc430f109b72 100644 --- a/src/RecoveryServices/RecoveryServices.Backup.Providers/AzureWorkloadProviderHelper.cs +++ b/src/RecoveryServices/RecoveryServices.Backup.Providers/AzureWorkloadProviderHelper.cs @@ -113,19 +113,19 @@ public List ListProtectedItemsByContainer( new ODataQuery( q => q.BackupManagementType == backupManagementType && - q.ItemType == dataSourceType); + q.ItemType == dataSourceType); List protectedItems = new List(); string skipToken = null; - + var listResponse = ServiceClientAdapter.ListProtectedItem( queryParams, skipToken, vaultName: vaultName, resourceGroupName: resourceGroupName); - protectedItems.AddRange(listResponse); - + protectedItems.AddRange(listResponse); + if (container != null) { protectedItems = protectedItems.Where(protectedItem => @@ -158,9 +158,9 @@ public List ListProtectedItemsByContainer( CmdletModel.PolicyBase policy, string backupManagementType, string dataSourceType) - { + { string skipToken = null; - + // fetching backup items from secondary region ODataQuery queryParamsCrr = policy != null ? new ODataQuery( @@ -172,7 +172,7 @@ public List ListProtectedItemsByContainer( q => q.BackupManagementType == backupManagementType && q.ItemType == dataSourceType); - + List protectedItemsCrr = new List(); var listResponse = ServiceClientAdapter.ListProtectedItemCrr( @@ -182,15 +182,15 @@ public List ListProtectedItemsByContainer( resourceGroupName: resourceGroupName); protectedItemsCrr.AddRange(listResponse); - + // return Crr Items when CRR if (container != null) - { + { protectedItemsCrr = protectedItemsCrr.Where(protectedItem => { Dictionary dictionary = HelperUtils.ParseUri(protectedItem.Id); string containerUri = HelperUtils.GetContainerUri(dictionary, protectedItem.Id); - + var delimIndex = containerUri.IndexOf(';'); string containerName = null; if (string.Compare(protectedItem.Properties.BackupManagementType, ServiceClientModel.BackupManagementType.AzureWorkload) == 0) @@ -201,11 +201,11 @@ public List ListProtectedItemsByContainer( { containerName = containerUri.Substring(delimIndex + 1); } - + return containerName.ToLower().Equals(container.Name.ToLower()); }).ToList(); } - + return protectedItemsCrr; } @@ -227,13 +227,13 @@ public List ListProtectedItemsByContainer( string protectedItemUri = HelperUtils.GetProtectedItemUri(dictionary, protectedItem.Id); - bool filteredByUniqueName = itemName != null && (protectedItemUri.ToLower().Contains(itemName.ToLower()) ); + bool filteredByUniqueName = itemName != null && (protectedItemUri.ToLower().Contains(itemName.ToLower())); bool filteredByFriendlyName = false; if (protectedItem.Properties.BackupManagementType == "AzureStorage" && protectedItem.Properties.WorkloadType == "AzureFileShare") { string protectedItemFriendlyName = (protectedItem.Properties as AzureFileshareProtectedItem).FriendlyName; - filteredByUniqueName = filteredByUniqueName || ( itemName != null && protectedItemFriendlyName.ToLower() == itemName.ToLower() ); + filteredByUniqueName = filteredByUniqueName || (itemName != null && protectedItemFriendlyName.ToLower() == itemName.ToLower()); filteredByFriendlyName = friendlyName != null && protectedItemFriendlyName.ToLower() == friendlyName.ToLower(); } @@ -258,7 +258,7 @@ public List ListProtectedItemsByContainer( protectedItemGetResponses.Add(getResponse.Body); } } - + List itemModels = ConversionHelpers.GetItemModelList(protectedItems); if (!string.IsNullOrEmpty(itemName)) @@ -371,24 +371,24 @@ public List ListProtectedItemsByContainer( } public void ValidateSimpleSchedulePolicy(CmdletModel.SchedulePolicyBase policy, string backupManagementType = "") - { + { if (policy == null || (policy.GetType() != typeof(CmdletModel.SimpleSchedulePolicy) && policy.GetType() != typeof(CmdletModel.SimpleSchedulePolicyV2))) { throw new ArgumentException(string.Format(Resources.InvalidSchedulePolicyException, typeof(CmdletModel.SimpleSchedulePolicy).ToString() + ", " + typeof(CmdletModel.SimpleSchedulePolicyV2).ToString())); } - + if (backupManagementType == ServiceClientModel.BackupManagementType.AzureStorage && ((CmdletModel.SimpleSchedulePolicy)policy).ScheduleRunFrequency == ScheduleRunType.Weekly) { throw new ArgumentException(Resources.AFSWeeklyScheduleNotAllowed); } - + // call base schedule policy validation policy.Validate(); - + if (backupManagementType == ServiceClientModel.BackupManagementType.AzureIaasVM) - { + { ValidateAzureIaasVMSchedulePolicy(policy); } else if (backupManagementType == ServiceClientModel.BackupManagementType.AzureStorage) @@ -400,7 +400,7 @@ public void ValidateSimpleSchedulePolicy(CmdletModel.SchedulePolicyBase policy, public void ValidateAFSSchedulePolicy(CmdletModel.SimpleSchedulePolicy policy) { - if(policy.ScheduleRunFrequency == ScheduleRunType.Hourly) + if (policy.ScheduleRunFrequency == ScheduleRunType.Hourly) { List AllowedScheduleIntervals = new List { 4, 6, 8, 12 }; if (!(AllowedScheduleIntervals.Contains((int)policy.ScheduleInterval))) @@ -437,19 +437,19 @@ public void ValidateAFSSchedulePolicy(CmdletModel.SimpleSchedulePolicy policy) } public void ValidateAzureIaasVMSchedulePolicy(CmdletModel.SchedulePolicyBase policy) - { - if(policy.GetType() == typeof(CmdletModel.SimpleSchedulePolicy)) - { + { + if (policy.GetType() == typeof(CmdletModel.SimpleSchedulePolicy)) + { CmdletModel.SimpleSchedulePolicy simpleSchedulePolicy = (CmdletModel.SimpleSchedulePolicy)policy; - + // Standard hourly is restricted for IaasVM if (simpleSchedulePolicy.ScheduleRunFrequency == ScheduleRunType.Hourly) { throw new ArgumentException(Resources.StandardHourlyPolicyNotSupported); } - } + } else if (policy.GetType() == typeof(CmdletModel.SimpleSchedulePolicyV2)) - { + { CmdletModel.SimpleSchedulePolicyV2 simpleSchedulePolicyV2 = (CmdletModel.SimpleSchedulePolicyV2)policy; if (simpleSchedulePolicyV2.ScheduleRunFrequency == ScheduleRunType.Hourly) { @@ -490,7 +490,7 @@ public void ValidateLongTermRetentionPolicy(CmdletModel.RetentionPolicyBase poli Resources.InvalidRetentionPolicyException, typeof(CmdletModel.LongTermRetentionPolicy).ToString())); } - + ((CmdletModel.LongTermRetentionPolicy)policy).Validate(ScheduleRunFrequency); } @@ -523,6 +523,154 @@ public DateTime GenerateRandomScheduleTime() DateTimeKind.Utc); } + public bool checkMUAForSchedulePolicy(ProtectionPolicyResource existingPolicy, ProtectionPolicyResource newPolicy) + { + return false; + } + + public List GetSubProtectionPolicyOfType(IList newSubProtectionPolicies, string policyType) + { + return newSubProtectionPolicies.Where( + newSubProtectionPolicy => + { + return (newSubProtectionPolicy.PolicyType == policyType); + }).ToList(); + } + + public bool checkInstantRpRetentionRange(int? oldSnapshotRetention, int? newSnapshotRetention) + { + return (newSnapshotRetention < oldSnapshotRetention); + } + + /// + /// checks if daily retention is reduced first, then weekly, then monthly and then yearly; breaks and return true whenever it finds retention is reduced in any schedule. + /// if retention is not reduced in any schedule, returns false at the end. + /// + /// + /// + /// + public bool checkMUAForLongTermRetentionPolicy(ServiceClientModel.LongTermRetentionPolicy oldRetentionPolicy, ServiceClientModel.LongTermRetentionPolicy newRetentionPolicy) + { + if (oldRetentionPolicy.DailySchedule != null) + { + if (newRetentionPolicy.DailySchedule == null || (newRetentionPolicy.DailySchedule.RetentionDuration.Count < oldRetentionPolicy.DailySchedule.RetentionDuration.Count)) + { + return true; + } + } + if (oldRetentionPolicy.WeeklySchedule != null) + { + if (newRetentionPolicy.WeeklySchedule == null || (newRetentionPolicy.WeeklySchedule.RetentionDuration.Count < oldRetentionPolicy.WeeklySchedule.RetentionDuration.Count)) + { + return true; + } + } + if (oldRetentionPolicy.MonthlySchedule != null) + { + if (newRetentionPolicy.MonthlySchedule == null || (newRetentionPolicy.MonthlySchedule.RetentionDuration.Count < oldRetentionPolicy.MonthlySchedule.RetentionDuration.Count)) + { + return true; + } + } + if (oldRetentionPolicy.YearlySchedule != null) + { + if (newRetentionPolicy.YearlySchedule == null || (newRetentionPolicy.YearlySchedule.RetentionDuration.Count < oldRetentionPolicy.YearlySchedule.RetentionDuration.Count)) + { + return true; + } + } + + return false; + } + + public bool checkMUAForSimpleRetentionPolicy(ServiceClientModel.SimpleRetentionPolicy oldRetentionPolicy, ServiceClientModel.SimpleRetentionPolicy newRetentionPolicy) + { + if (newRetentionPolicy.RetentionDuration.Count < oldRetentionPolicy.RetentionDuration.Count) + { + return true; + } + return false; + } + + /// + /// checks if daily retention is reduced first, then weekly, then monthly and then yearly; breaks and return true whenever it finds retention is reduced in any schedule. + /// if retention is not reduced in any schedule, returns false at the end. + /// + /// + /// + /// + public bool checkMUAForMSSQLPolicy(ServiceClientModel.AzureVmWorkloadProtectionPolicy oldRetentionPolicy, ServiceClientModel.AzureVmWorkloadProtectionPolicy newRetentionPolicy) + { + IList oldSubProtectionPolicies = oldRetentionPolicy.SubProtectionPolicy; + IList newSubProtectionPolicies = newRetentionPolicy.SubProtectionPolicy; + + foreach (SubProtectionPolicy oldSubProtectionPolicy in oldSubProtectionPolicies) + { + string policyType = oldSubProtectionPolicy.PolicyType; + List newSubProtectionPolicy = GetSubProtectionPolicyOfType(newSubProtectionPolicies, policyType); + if(newSubProtectionPolicy == null || newSubProtectionPolicy.Count == 0) return true; + else + { + if (oldSubProtectionPolicy.RetentionPolicy.GetType() == typeof(ServiceClientModel.SimpleRetentionPolicy)) + { + if(checkMUAForSimpleRetentionPolicy((ServiceClientModel.SimpleRetentionPolicy)oldSubProtectionPolicy.RetentionPolicy, (ServiceClientModel.SimpleRetentionPolicy)newSubProtectionPolicy[0].RetentionPolicy)) + { + return true; + } + } + else if (oldSubProtectionPolicy.RetentionPolicy.GetType() == typeof(ServiceClientModel.LongTermRetentionPolicy)) + { + if (checkMUAForLongTermRetentionPolicy((ServiceClientModel.LongTermRetentionPolicy)oldSubProtectionPolicy.RetentionPolicy, (ServiceClientModel.LongTermRetentionPolicy)newSubProtectionPolicy[0].RetentionPolicy)) + { + return true; + } + } + } + } + return false; + } + + public bool checkMUAForRetentionPolicy(ProtectionPolicyResource oldPolicy, ProtectionPolicyResource newPolicy) + { + if (newPolicy.Properties.GetType() == typeof(ServiceClientModel.AzureIaaSVMProtectionPolicy)) + { + // check Instant RP reduced + int? oldSnapshotRetention = ((ServiceClientModel.AzureIaaSVMProtectionPolicy)oldPolicy.Properties).InstantRpRetentionRangeInDays; + int? newSnapshotRetention = ((ServiceClientModel.AzureIaaSVMProtectionPolicy)newPolicy.Properties).InstantRpRetentionRangeInDays; + if (checkInstantRpRetentionRange(oldSnapshotRetention, newSnapshotRetention)) return true; + + ServiceClientModel.LongTermRetentionPolicy oldRetentionSchedule = (ServiceClientModel.LongTermRetentionPolicy)(((ServiceClientModel.AzureIaaSVMProtectionPolicy)oldPolicy.Properties).RetentionPolicy); + ServiceClientModel.LongTermRetentionPolicy newRetentionSchedule = (ServiceClientModel.LongTermRetentionPolicy)(((ServiceClientModel.AzureIaaSVMProtectionPolicy)newPolicy.Properties).RetentionPolicy); + + return checkMUAForLongTermRetentionPolicy(oldRetentionSchedule, newRetentionSchedule); + } + + else if (newPolicy.Properties.GetType() == typeof(ServiceClientModel.AzureFileShareProtectionPolicy)) + { + ServiceClientModel.LongTermRetentionPolicy oldRetentionSchedule = (ServiceClientModel.LongTermRetentionPolicy)(((ServiceClientModel.AzureFileShareProtectionPolicy)oldPolicy.Properties).RetentionPolicy); + ServiceClientModel.LongTermRetentionPolicy newRetentionSchedule = (ServiceClientModel.LongTermRetentionPolicy)(((ServiceClientModel.AzureFileShareProtectionPolicy)newPolicy.Properties).RetentionPolicy); + + return checkMUAForLongTermRetentionPolicy(oldRetentionSchedule, newRetentionSchedule); + } + + else if (newPolicy.Properties.GetType() == typeof(ServiceClientModel.AzureVmWorkloadProtectionPolicy)) + { + return checkMUAForMSSQLPolicy((ServiceClientModel.AzureVmWorkloadProtectionPolicy)oldPolicy.Properties, (ServiceClientModel.AzureVmWorkloadProtectionPolicy)newPolicy.Properties); + } + + return false; + } + + public bool checkMUAForModifyPolicy(ProtectionPolicyResource oldPolicy, ProtectionPolicyResource newPolicy, bool enableMUA = false) + { + if( enableMUA && (checkMUAForSchedulePolicy(oldPolicy, newPolicy) || checkMUAForRetentionPolicy(oldPolicy, newPolicy))) + { + return true; + } + + return false; + } + public void CopyScheduleTimeToRetentionTimes(CmdletModel.LongTermRetentionPolicy retPolicy, CmdletModel.SchedulePolicyBase schPolicyBase) { diff --git a/src/RecoveryServices/RecoveryServices.Backup.Providers/Providers/AzureFilesPsBackupProvider.cs b/src/RecoveryServices/RecoveryServices.Backup.Providers/Providers/AzureFilesPsBackupProvider.cs index 7abc4195c0c5..9780ae346c2b 100644 --- a/src/RecoveryServices/RecoveryServices.Backup.Providers/Providers/AzureFilesPsBackupProvider.cs +++ b/src/RecoveryServices/RecoveryServices.Backup.Providers/Providers/AzureFilesPsBackupProvider.cs @@ -100,7 +100,7 @@ public RestAzureNS.AzureOperationResponse DisableProtectionWithDeleteData() string vaultResourceGroupName = (string)ProviderData[VaultParams.ResourceGroupName]; bool deleteBackupData = ProviderData.ContainsKey(ItemParams.DeleteBackupData) ? (bool)ProviderData[ItemParams.DeleteBackupData] : false; - + string auxiliaryAccessToken = ProviderData.ContainsKey(ResourceGuardParams.Token) ? (string)ProviderData[ResourceGuardParams.Token]: null; ItemBase itemBase = (ItemBase)ProviderData[ItemParams.Item]; AzureFileShareItem item = (AzureFileShareItem)ProviderData[ItemParams.Item]; @@ -119,7 +119,9 @@ public RestAzureNS.AzureOperationResponse DisableProtectionWithDeleteData() containerUri, protectedItemUri, vaultName: vaultName, - resourceGroupName: vaultResourceGroupName); + resourceGroupName: vaultResourceGroupName, + auxiliaryAccessToken, + item.Id); } public RestAzureNS.AzureOperationResponse UndeleteProtection() @@ -337,6 +339,11 @@ private RestAzureNS.AzureOperationResponse CreateorMod string resourceGroupName = (string)ProviderData[VaultParams.ResourceGroupName]; string policyName = ProviderData.ContainsKey(PolicyParams.PolicyName) ? (string)ProviderData[PolicyParams.PolicyName] : null; + + string auxiliaryAccessToken = ProviderData.ContainsKey(ResourceGuardParams.Token) ? (string)ProviderData[ResourceGuardParams.Token] : null; + bool isMUAOperation = ProviderData.ContainsKey(ResourceGuardParams.IsMUAOperation) ? (bool)ProviderData[ResourceGuardParams.IsMUAOperation] : false; + ProtectionPolicyResource existingPolicy = ProviderData.ContainsKey(PolicyParams.ExistingPolicy) ? (ProtectionPolicyResource)ProviderData[PolicyParams.ExistingPolicy] : null; + RetentionPolicyBase retentionPolicy = ProviderData.ContainsKey(PolicyParams.RetentionPolicy) ? (RetentionPolicyBase)ProviderData[PolicyParams.RetentionPolicy] : @@ -396,7 +403,7 @@ private RestAzureNS.AzureOperationResponse CreateorMod Logger.Instance.WriteDebug("Copy of RetentionTime from with SchedulePolicy to RetentionPolicy is successful"); // Now validate both RetentionPolicy and SchedulePolicy matches or not - PolicyHelpers.ValidateLongTermRetentionPolicyWithSimpleRetentionPolicy( + PolicyHelpers.ValidateLongTermRetentionPolicyWithSimpleSchedulePolicy( (CmdletModel.LongTermRetentionPolicy)((AzureFileSharePolicy)policy).RetentionPolicy, (CmdletModel.SimpleSchedulePolicy)((AzureFileSharePolicy)policy).SchedulePolicy); Logger.Instance.WriteDebug("Validation of Retention policy with Schedule policy is successful"); @@ -443,7 +450,7 @@ private RestAzureNS.AzureOperationResponse CreateorMod Logger.Instance.WriteDebug("Copy of RetentionTime from with SchedulePolicy to RetentionPolicy is successful"); // Now validate both RetentionPolicy and SchedulePolicy together - PolicyHelpers.ValidateLongTermRetentionPolicyWithSimpleRetentionPolicy( + PolicyHelpers.ValidateLongTermRetentionPolicyWithSimpleSchedulePolicy( (CmdletModel.LongTermRetentionPolicy)retentionPolicy, (CmdletModel.SimpleSchedulePolicy)schedulePolicy); Logger.Instance.WriteDebug("Validation of Retention policy with Schedule policy is successful"); @@ -470,12 +477,21 @@ private RestAzureNS.AzureOperationResponse CreateorMod serviceClientRequest.Properties = azureFileShareProtectionPolicy; } - + + // check for MUA + bool isMUAProtected = false; + if (existingPolicy != null) + { + isMUAProtected = AzureWorkloadProviderHelper.checkMUAForModifyPolicy(existingPolicy, serviceClientRequest, isMUAOperation); + } + return ServiceClientAdapter.CreateOrUpdateProtectionPolicy( policyName = policyName ?? policy.Name, serviceClientRequest, vaultName: vaultName, - resourceGroupName: resourceGroupName); + resourceGroupName: resourceGroupName, + auxiliaryAccessToken, + isMUAProtected); } public RPMountScriptDetails ProvisionItemLevelRecoveryAccess() @@ -891,6 +907,31 @@ private RestAzureNS.AzureOperationResponse EnableOrModify AzureFileShareItem item = (AzureFileShareItem)ProviderData[ItemParams.Item]; + string auxiliaryAccessToken = ProviderData.ContainsKey(ResourceGuardParams.Token) ? (string)ProviderData[ResourceGuardParams.Token] : null; + bool isMUAOperation = ProviderData.ContainsKey(ResourceGuardParams.IsMUAOperation) ? (bool)ProviderData[ResourceGuardParams.IsMUAOperation] : false; + + ProtectionPolicyResource oldPolicy = null; + ProtectionPolicyResource newPolicy = null; + if (parameterSetName.Contains("Modify")) + { + Dictionary keyValueDict = HelperUtils.ParseUri(item.PolicyId); + string oldPolicyName = HelperUtils.GetPolicyNameFromPolicyId(keyValueDict, item.PolicyId); + + keyValueDict = HelperUtils.ParseUri(policy.Id); + string newPolicyName = HelperUtils.GetPolicyNameFromPolicyId(keyValueDict, policy.Id); + + // fetch old and new Policy + oldPolicy = ServiceClientAdapter.GetProtectionPolicy( + oldPolicyName, + vaultName: vaultName, + resourceGroupName: vaultResourceGroupName); + + newPolicy = ServiceClientAdapter.GetProtectionPolicy( + newPolicyName, + vaultName: vaultName, + resourceGroupName: vaultResourceGroupName); + } + string containerUri = ""; string protectedItemUri = ""; string sourceResourceId = null; @@ -961,12 +1002,21 @@ private RestAzureNS.AzureOperationResponse EnableOrModify Properties = properties }; + // check for MUA + bool isMUAProtected = false; + if (parameterSetName.Contains("Modify") && oldPolicy != null && newPolicy != null) + { + isMUAProtected = AzureWorkloadProviderHelper.checkMUAForModifyPolicy(oldPolicy, newPolicy, isMUAOperation); + } + return ServiceClientAdapter.CreateOrUpdateProtectedItem( containerUri, protectedItemUri, serviceClientRequest, vaultName: vaultName, - resourceGroupName: vaultResourceGroupName); + resourceGroupName: vaultResourceGroupName, + auxiliaryAccessToken, + isMUAProtected); } private void ValidateAzureStorageBackupManagementType( diff --git a/src/RecoveryServices/RecoveryServices.Backup.Providers/Providers/AzureWorkloadPsBackupProvider.cs b/src/RecoveryServices/RecoveryServices.Backup.Providers/Providers/AzureWorkloadPsBackupProvider.cs index cbdb1b56ae09..bd88657b928c 100644 --- a/src/RecoveryServices/RecoveryServices.Backup.Providers/Providers/AzureWorkloadPsBackupProvider.cs +++ b/src/RecoveryServices/RecoveryServices.Backup.Providers/Providers/AzureWorkloadPsBackupProvider.cs @@ -93,7 +93,7 @@ public RestAzureNS.AzureOperationResponse DisableProtectionWithDeleteData() string vaultResourceGroupName = (string)ProviderData[VaultParams.ResourceGroupName]; bool deleteBackupData = ProviderData.ContainsKey(ItemParams.DeleteBackupData) ? (bool)ProviderData[ItemParams.DeleteBackupData] : false; - + string auxiliaryAccessToken = ProviderData.ContainsKey(ResourceGuardParams.Token) ? (string)ProviderData[ResourceGuardParams.Token] : null; ItemBase itemBase = (ItemBase)ProviderData[ItemParams.Item]; string containerUri = ""; string protectedItemUri = ""; @@ -110,8 +110,6 @@ public RestAzureNS.AzureOperationResponse DisableProtectionWithDeleteData() ValidateAzureWorkloadSQLDatabaseDisableProtectionRequest(itemBase); } - // AzureVmWorkloadSQLDatabaseProtectedItem properties = new AzureVmWorkloadSQLDatabaseProtectedItem(); - Dictionary keyValueDict = HelperUtils.ParseUri(item.Id); containerUri = HelperUtils.GetContainerUri(keyValueDict, item.Id); protectedItemUri = HelperUtils.GetProtectedItemUri(keyValueDict, item.Id); @@ -120,7 +118,9 @@ public RestAzureNS.AzureOperationResponse DisableProtectionWithDeleteData() containerUri, protectedItemUri, vaultName: vaultName, - resourceGroupName: vaultResourceGroupName); + resourceGroupName: vaultResourceGroupName, + auxiliaryAccessToken, + item.Id); } public RestAzureNS.AzureOperationResponse UndeleteProtection() @@ -658,6 +658,10 @@ private RestAzureNS.AzureOperationResponse CreateorMod (bool)ProviderData[PolicyParams.FixForInconsistentItems] : false; ProtectionPolicyResource serviceClientRequest = new ProtectionPolicyResource(); + string auxiliaryAccessToken = ProviderData.ContainsKey(ResourceGuardParams.Token) ? (string)ProviderData[ResourceGuardParams.Token] : null; + bool isMUAOperation = ProviderData.ContainsKey(ResourceGuardParams.IsMUAOperation) ? (bool)ProviderData[ResourceGuardParams.IsMUAOperation] : false; + ProtectionPolicyResource existingPolicy = ProviderData.ContainsKey(PolicyParams.ExistingPolicy) ? (ProtectionPolicyResource)ProviderData[PolicyParams.ExistingPolicy] : null; + if (policy != null) { // do validations @@ -704,7 +708,7 @@ private RestAzureNS.AzureOperationResponse CreateorMod Logger.Instance.WriteDebug("Copy of RetentionTime from with SchedulePolicy to RetentionPolicy is successful"); // Now validate both RetentionPolicy and SchedulePolicy matches or not - PolicyHelpers.ValidateLongTermRetentionPolicyWithSimpleRetentionPolicy( + PolicyHelpers.ValidateLongTermRetentionPolicyWithSimpleSchedulePolicy( (CmdletModel.LongTermRetentionPolicy)((AzureVmWorkloadPolicy)policy).FullBackupRetentionPolicy, (CmdletModel.SimpleSchedulePolicy)((AzureVmWorkloadPolicy)policy).FullBackupSchedulePolicy); Logger.Instance.WriteDebug("Validation of Retention policy with Schedule policy is successful"); @@ -740,7 +744,7 @@ private RestAzureNS.AzureOperationResponse CreateorMod Logger.Instance.WriteDebug("Copy of RetentionTime from with SchedulePolicy to RetentionPolicy is successful"); // Now validate both RetentionPolicy and SchedulePolicy together - PolicyHelpers.ValidateLongTermRetentionPolicyWithSimpleRetentionPolicy( + PolicyHelpers.ValidateLongTermRetentionPolicyWithSimpleSchedulePolicy( (SQLRetentionPolicy)retentionPolicy, (SQLSchedulePolicy)schedulePolicy); Logger.Instance.WriteDebug("Validation of Retention policy with Schedule policy is successful"); @@ -758,11 +762,20 @@ private RestAzureNS.AzureOperationResponse CreateorMod serviceClientRequest.Properties = azureVmWorkloadProtectionPolicy; } + // check for MUA + bool isMUAProtected = false; + if (existingPolicy != null) + { + isMUAProtected = AzureWorkloadProviderHelper.checkMUAForModifyPolicy(existingPolicy, serviceClientRequest, isMUAOperation); + } + return ServiceClientAdapter.CreateOrUpdateProtectionPolicy( policyName = policyName ?? policy.Name, serviceClientRequest, vaultName: vaultName, - resourceGroupName: resourceGroupName); + resourceGroupName: resourceGroupName, + auxiliaryAccessToken, + isMUAProtected); } private RestAzureNS.AzureOperationResponse EnableOrModifyProtection(bool disableWithRetentionData = false) @@ -797,7 +810,32 @@ private RestAzureNS.AzureOperationResponse EnableOrModify properties = new AzureVmWorkloadSQLDatabaseProtectedItem(); } - + + string auxiliaryAccessToken = ProviderData.ContainsKey(ResourceGuardParams.Token) ? (string)ProviderData[ResourceGuardParams.Token] : null; + bool isMUAOperation = ProviderData.ContainsKey(ResourceGuardParams.IsMUAOperation) ? (bool)ProviderData[ResourceGuardParams.IsMUAOperation] : false; + + ProtectionPolicyResource oldPolicy = null; + ProtectionPolicyResource newPolicy = null; + if (isMUAOperation) + { + Dictionary keyValueDict = HelperUtils.ParseUri(item.PolicyId); + string oldPolicyName = HelperUtils.GetPolicyNameFromPolicyId(keyValueDict, item.PolicyId); + + keyValueDict = HelperUtils.ParseUri(policy.Id); + string newPolicyName = HelperUtils.GetPolicyNameFromPolicyId(keyValueDict, policy.Id); + + // fetch old and new Policy + oldPolicy = ServiceClientAdapter.GetProtectionPolicy( + oldPolicyName, + vaultName: vaultName, + resourceGroupName: vaultResourceGroupName); + + newPolicy = ServiceClientAdapter.GetProtectionPolicy( + newPolicyName, + vaultName: vaultName, + resourceGroupName: vaultResourceGroupName); + } + string containerUri = ""; string protectedItemUri = ""; @@ -844,12 +882,21 @@ private RestAzureNS.AzureOperationResponse EnableOrModify Properties = properties }; + // check for MUA + bool isMUAProtected = false; + if (isMUAOperation && oldPolicy != null && newPolicy != null) + { + isMUAProtected = AzureWorkloadProviderHelper.checkMUAForModifyPolicy(oldPolicy, newPolicy, isMUAOperation); + } + return ServiceClientAdapter.CreateOrUpdateProtectedItem( containerUri, protectedItemUri, serviceClientRequest, vaultName: vaultName, - resourceGroupName: vaultResourceGroupName); + resourceGroupName: vaultResourceGroupName, + auxiliaryAccessToken, + isMUAProtected); } public void RegisterContainer() diff --git a/src/RecoveryServices/RecoveryServices.Backup.Providers/Providers/IaasVmPsBackupProvider.cs b/src/RecoveryServices/RecoveryServices.Backup.Providers/Providers/IaasVmPsBackupProvider.cs index aa774c3812ab..fa6f0629f1be 100644 --- a/src/RecoveryServices/RecoveryServices.Backup.Providers/Providers/IaasVmPsBackupProvider.cs +++ b/src/RecoveryServices/RecoveryServices.Backup.Providers/Providers/IaasVmPsBackupProvider.cs @@ -84,6 +84,31 @@ public RestAzureNS.AzureOperationResponse EnableProtectio ItemBase itemBase = (ItemBase)ProviderData[ItemParams.Item]; AzureVmItem item = (AzureVmItem)ProviderData[ItemParams.Item]; + string auxiliaryAccessToken = ProviderData.ContainsKey(ResourceGuardParams.Token) ? (string)ProviderData[ResourceGuardParams.Token] : null; + bool isMUAOperation = ProviderData.ContainsKey(ResourceGuardParams.IsMUAOperation) ? (bool)ProviderData[ResourceGuardParams.IsMUAOperation] : false; + + ProtectionPolicyResource oldPolicy = null; + ProtectionPolicyResource newPolicy = null; + if (parameterSetName.Contains("Modify")) + { + Dictionary keyValueDict = HelperUtils.ParseUri(item.PolicyId); + string oldPolicyName = HelperUtils.GetPolicyNameFromPolicyId(keyValueDict, item.PolicyId); + + keyValueDict = HelperUtils.ParseUri(policy.Id); + string newPolicyName = HelperUtils.GetPolicyNameFromPolicyId(keyValueDict, policy.Id); + + // fetch old and new Policy + oldPolicy = ServiceClientAdapter.GetProtectionPolicy( + oldPolicyName, + vaultName: vaultName, + resourceGroupName: resourceGroupName); + + newPolicy = ServiceClientAdapter.GetProtectionPolicy( + newPolicyName, + vaultName: vaultName, + resourceGroupName: resourceGroupName); + } + bool isDiskExclusionParamPresent = ValidateDiskExclusionParameters( inclusionDisksList, exclusionDisksList, resetDiskExclusionSetting, excludeAllDataDisks); @@ -217,12 +242,21 @@ public RestAzureNS.AzureOperationResponse EnableProtectio Properties = properties }; + // check for MUA + bool isMUAProtected = false; + if (parameterSetName.Contains("Modify") && oldPolicy != null && newPolicy != null) + { + isMUAProtected = AzureWorkloadProviderHelper.checkMUAForModifyPolicy(oldPolicy, newPolicy, isMUAOperation); + } + return ServiceClientAdapter.CreateOrUpdateProtectedItem( containerUri, protectedItemUri, serviceClientRequest, vaultName: vaultName, - resourceGroupName: resourceGroupName); + resourceGroupName: resourceGroupName, + auxiliaryAccessToken, + isMUAProtected); } /// @@ -283,7 +317,7 @@ public RestAzureNS.AzureOperationResponse DisableProtectionWithDeleteData() string vaultName = (string)ProviderData[VaultParams.VaultName]; string resourceGroupName = (string)ProviderData[VaultParams.ResourceGroupName]; bool deleteBackupData = (bool)ProviderData[ItemParams.DeleteBackupData]; - + string auxiliaryAccessToken = ProviderData.ContainsKey(ResourceGuardParams.Token) ? (string)ProviderData[ResourceGuardParams.Token] : null; ItemBase itemBase = (ItemBase)ProviderData[ItemParams.Item]; AzureVmItem item = (AzureVmItem)ProviderData[ItemParams.Item]; @@ -299,10 +333,11 @@ public RestAzureNS.AzureOperationResponse DisableProtectionWithDeleteData() containerUri, protectedItemUri, vaultName: vaultName, - resourceGroupName: resourceGroupName); + resourceGroupName: resourceGroupName, + auxiliaryAccessToken, + item.Id); } - /// /// Triggers the backup operation for the given item /// @@ -407,6 +442,7 @@ public RestAzureNS.AzureOperationResponse TriggerRestore() string targetVNetName = (string)ProviderData[RestoreVMBackupItemParams.TargetVNetName]; string targetVNetResourceGroup = (string)ProviderData[RestoreVMBackupItemParams.TargetVNetResourceGroup]; string targetSubnetName = (string)ProviderData[RestoreVMBackupItemParams.TargetSubnetName]; + string targetSubscriptionId = (string)ProviderData[RestoreVMBackupItemParams.TargetSubscriptionId]; Dictionary uriDict = HelperUtils.ParseUri(rp.Id); string containerUri = HelperUtils.GetContainerUri(uriDict, rp.Id); @@ -479,7 +515,7 @@ public RestAzureNS.AzureOperationResponse TriggerRestore() } } - string targetSubscription = ServiceClientAdapter.SubscriptionId; + string targetSubscription = (targetSubscriptionId != null && targetSubscriptionId != "") ? targetSubscriptionId : ServiceClientAdapter.SubscriptionId; IaasVMRestoreRequest restoreRequest = new IaasVMRestoreRequest() { @@ -791,13 +827,13 @@ public ProtectionPolicyResource CreatePolicy() // Now validate both RetentionPolicy and SchedulePolicy together if (schedulePolicy.GetType() == typeof(CmdletModel.SimpleSchedulePolicy)) { - PolicyHelpers.ValidateLongTermRetentionPolicyWithSimpleRetentionPolicy( + PolicyHelpers.ValidateLongTermRetentionPolicyWithSimpleSchedulePolicy( (CmdletModel.LongTermRetentionPolicy)retentionPolicy, (CmdletModel.SimpleSchedulePolicy)schedulePolicy); } else if (schedulePolicy.GetType() == typeof(CmdletModel.SimpleSchedulePolicyV2)) { - PolicyHelpers.ValidateLongTermRetentionPolicyWithSimpleRetentionPolicy( + PolicyHelpers.ValidateLongTermRetentionPolicyWithSimpleSchedulePolicy( (CmdletModel.LongTermRetentionPolicy)retentionPolicy, (CmdletModel.SimpleSchedulePolicyV2)schedulePolicy); } @@ -855,19 +891,14 @@ public RestAzureNS.AzureOperationResponse ModifyPolicy { string vaultName = (string)ProviderData[VaultParams.VaultName]; string resourceGroupName = (string)ProviderData[VaultParams.ResourceGroupName]; - RetentionPolicyBase retentionPolicy = - ProviderData.ContainsKey(PolicyParams.RetentionPolicy) ? - (RetentionPolicyBase)ProviderData[PolicyParams.RetentionPolicy] : - null; - SchedulePolicyBase schedulePolicy = - ProviderData.ContainsKey(PolicyParams.SchedulePolicy) ? - (SchedulePolicyBase)ProviderData[PolicyParams.SchedulePolicy] : - null; - PolicyBase policy = - ProviderData.ContainsKey(PolicyParams.ProtectionPolicy) ? - (PolicyBase)ProviderData[PolicyParams.ProtectionPolicy] : - null; + string auxiliaryAccessToken = ProviderData.ContainsKey(ResourceGuardParams.Token) ? (string)ProviderData[ResourceGuardParams.Token] : null; + bool isMUAOperation = ProviderData.ContainsKey(ResourceGuardParams.IsMUAOperation) ? (bool)ProviderData[ResourceGuardParams.IsMUAOperation] : false; + ProtectionPolicyResource existingPolicy = ProviderData.ContainsKey(PolicyParams.ExistingPolicy) ? (ProtectionPolicyResource)ProviderData[PolicyParams.ExistingPolicy] : null; + + RetentionPolicyBase retentionPolicy = ProviderData.ContainsKey(PolicyParams.RetentionPolicy) ? (RetentionPolicyBase)ProviderData[PolicyParams.RetentionPolicy] : null; + SchedulePolicyBase schedulePolicy = ProviderData.ContainsKey(PolicyParams.SchedulePolicy) ? (SchedulePolicyBase)ProviderData[PolicyParams.SchedulePolicy] : null; + PolicyBase policy = ProviderData.ContainsKey(PolicyParams.ProtectionPolicy) ? (PolicyBase)ProviderData[PolicyParams.ProtectionPolicy] : null; // do validations ValidateAzureVMProtectionPolicy(policy); @@ -896,13 +927,13 @@ public RestAzureNS.AzureOperationResponse ModifyPolicy // Now validate both RetentionPolicy and SchedulePolicy matches or not if (((AzureVmPolicy)policy).SchedulePolicy.GetType() == typeof(CmdletModel.SimpleSchedulePolicy)) { - PolicyHelpers.ValidateLongTermRetentionPolicyWithSimpleRetentionPolicy( + PolicyHelpers.ValidateLongTermRetentionPolicyWithSimpleSchedulePolicy( (CmdletModel.LongTermRetentionPolicy)((AzureVmPolicy)policy).RetentionPolicy, (CmdletModel.SimpleSchedulePolicy)((AzureVmPolicy)policy).SchedulePolicy); } else if (((AzureVmPolicy)policy).SchedulePolicy.GetType() == typeof(CmdletModel.SimpleSchedulePolicyV2)) { - PolicyHelpers.ValidateLongTermRetentionPolicyWithSimpleRetentionPolicy( + PolicyHelpers.ValidateLongTermRetentionPolicyWithSimpleSchedulePolicy( (CmdletModel.LongTermRetentionPolicy)((AzureVmPolicy)policy).RetentionPolicy, (CmdletModel.SimpleSchedulePolicyV2)((AzureVmPolicy)policy).SchedulePolicy); } @@ -941,11 +972,20 @@ public RestAzureNS.AzureOperationResponse ModifyPolicy } }; + // check for MUA + bool isMUAProtected = false; + if (existingPolicy != null) + { + isMUAProtected = AzureWorkloadProviderHelper.checkMUAForModifyPolicy(existingPolicy, serviceClientRequest, isMUAOperation); + } + return ServiceClientAdapter.CreateOrUpdateProtectionPolicy( policy.Name, serviceClientRequest, vaultName: vaultName, - resourceGroupName: resourceGroupName); + resourceGroupName: resourceGroupName, + auxiliaryAccessToken, + isMUAProtected); } /// diff --git a/src/RecoveryServices/RecoveryServices.Backup.Providers/RecoveryServices.Backup.Providers.csproj b/src/RecoveryServices/RecoveryServices.Backup.Providers/RecoveryServices.Backup.Providers.csproj index 457044078bcc..bb55417c6d66 100644 --- a/src/RecoveryServices/RecoveryServices.Backup.Providers/RecoveryServices.Backup.Providers.csproj +++ b/src/RecoveryServices/RecoveryServices.Backup.Providers/RecoveryServices.Backup.Providers.csproj @@ -12,7 +12,7 @@ - + diff --git a/src/RecoveryServices/RecoveryServices.Backup.ServiceClientAdapter/BMSAPIs/ItemAPIs.cs b/src/RecoveryServices/RecoveryServices.Backup.ServiceClientAdapter/BMSAPIs/ItemAPIs.cs index 7020f44cb31d..e92964e16f8c 100644 --- a/src/RecoveryServices/RecoveryServices.Backup.ServiceClientAdapter/BMSAPIs/ItemAPIs.cs +++ b/src/RecoveryServices/RecoveryServices.Backup.ServiceClientAdapter/BMSAPIs/ItemAPIs.cs @@ -15,6 +15,7 @@ using Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models; using Microsoft.Azure.Commands.RecoveryServices.Backup.Helpers; using Microsoft.Azure.Management.RecoveryServices.Backup.Models; +using Microsoft.Azure.Commands.RecoveryServices.Backup.Properties; using CrrModel = Microsoft.Azure.Management.RecoveryServices.Backup.CrossRegionRestore.Models; using Microsoft.Rest.Azure.OData; using System; @@ -37,8 +38,43 @@ public RestAzureNS.AzureOperationResponse CreateOrUpdateP string protectedItemName, ProtectedItemResource request, string vaultName = null, - string resourceGroupName = null) + string resourceGroupName = null, + string auxiliaryAccessToken = null, + bool isMUAProtected = false) { + Dictionary> customHeaders = new Dictionary>(); + if (isMUAProtected) + { + List resourceGuardMapping = ListResourceGuardMapping(vaultName, resourceGroupName); + string operationRequest = null; + + if (resourceGuardMapping != null && resourceGuardMapping.Count != 0) + { + foreach (ResourceGuardOperationDetail operationDetail in resourceGuardMapping[0].Properties.ResourceGuardOperationDetails) + { + if (operationDetail.VaultCriticalOperation == "Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/write") operationRequest = operationDetail.DefaultResourceRequest; + } + + if (operationRequest != null) + { + request.Properties.ResourceGuardOperationRequests = new List(); + request.Properties.ResourceGuardOperationRequests.Add(operationRequest); + } + } + + if (auxiliaryAccessToken != null && auxiliaryAccessToken != "") + { + if (operationRequest != null) + { + customHeaders.Add("x-ms-authorization-auxiliary", new List { "Bearer " + auxiliaryAccessToken }); + } + else + { + throw new ArgumentException(String.Format(Resources.UnexpectedParameterToken, "ModifyProtection")); + } + } + } + return BmsAdapter.Client.ProtectedItems.CreateOrUpdateWithHttpMessagesAsync( vaultName ?? BmsAdapter.GetResourceName(), resourceGroupName ?? BmsAdapter.GetResourceGroupName(), @@ -46,6 +82,7 @@ public RestAzureNS.AzureOperationResponse CreateOrUpdateP containerName, protectedItemName, request, + customHeaders, cancellationToken: BmsAdapter.CmdletCancellationToken).Result; } @@ -59,14 +96,59 @@ public RestAzureNS.AzureOperationResponse DeleteProtectedItem( string containerName, string protectedItemName, string vaultName = null, - string resourceGroupName = null) + string resourceGroupName = null, + string auxiliaryAccessToken = null, + string protectedItemUri = null) { + Dictionary> customHeaders = new Dictionary>(); + if (auxiliaryAccessToken != null && auxiliaryAccessToken != "") + { + customHeaders.Add("x-ms-authorization-auxiliary", new List { "Bearer " + auxiliaryAccessToken }); + } + + string operationRequest = null; + + // unlock + UnlockDeleteRequest unlockDeleteRequest = new UnlockDeleteRequest(); + + List resourceGuardMapping = ListResourceGuardMapping(vaultName, resourceGroupName); + + if (resourceGuardMapping != null && resourceGuardMapping.Count != 0) + { + foreach (ResourceGuardOperationDetail operationDetail in resourceGuardMapping[0].Properties.ResourceGuardOperationDetails) + { + if (operationDetail.VaultCriticalOperation == "Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/delete") operationRequest = operationDetail.DefaultResourceRequest; + } + + if(operationRequest != null) + { + unlockDeleteRequest.ResourceGuardOperationRequests = new List(); + unlockDeleteRequest.ResourceGuardOperationRequests.Add(operationRequest); + + if(protectedItemUri == null) + { + throw new ArgumentException(String.Format(Resources.ProtectedItemURICantBeNull)); + } + + unlockDeleteRequest.ResourceToBeDeleted = protectedItemUri; + UnlockDeleteResponse unlockDeleteResponse = BmsAdapter.Client.ResourceGuardProxy.UnlockDeleteWithHttpMessagesAsync(vaultName ?? BmsAdapter.GetResourceName(), resourceGroupName ?? BmsAdapter.GetResourceGroupName(), resourceGuardMapping[0].Name, unlockDeleteRequest, customHeaders).Result.Body; + } + else if (auxiliaryAccessToken != null && auxiliaryAccessToken != "") + { + throw new ArgumentException(String.Format(Resources.UnexpectedParameterToken, "Delete protection with DeleteBackupData")); + } + } + else if (auxiliaryAccessToken != null && auxiliaryAccessToken != "") + { + throw new ArgumentException(String.Format(Resources.UnexpectedParameterToken, "Delete protection with DeleteBackupData")); + } + return BmsAdapter.Client.ProtectedItems.DeleteWithHttpMessagesAsync( vaultName ?? BmsAdapter.GetResourceName(), resourceGroupName ?? BmsAdapter.GetResourceGroupName(), AzureFabricName, containerName, - protectedItemName, + protectedItemName, cancellationToken: BmsAdapter.CmdletCancellationToken).Result; } diff --git a/src/RecoveryServices/RecoveryServices.Backup.ServiceClientAdapter/BMSAPIs/PolicyAPIs.cs b/src/RecoveryServices/RecoveryServices.Backup.ServiceClientAdapter/BMSAPIs/PolicyAPIs.cs index 75b4706c7c82..670644043923 100644 --- a/src/RecoveryServices/RecoveryServices.Backup.ServiceClientAdapter/BMSAPIs/PolicyAPIs.cs +++ b/src/RecoveryServices/RecoveryServices.Backup.ServiceClientAdapter/BMSAPIs/PolicyAPIs.cs @@ -15,6 +15,7 @@ using System; using System.Collections.Generic; using Microsoft.Azure.Commands.RecoveryServices.Backup.Helpers; +using Microsoft.Azure.Commands.RecoveryServices.Backup.Properties; using Microsoft.Azure.Management.RecoveryServices.Backup.Models; using RestAzureNS = Microsoft.Rest.Azure; using RestAzureODataNS = Microsoft.Rest.Azure.OData; @@ -34,13 +35,54 @@ public RestAzureNS.AzureOperationResponse string policyName, ProtectionPolicyResource request, string vaultName = null, - string resourceGroupName = null) + string resourceGroupName = null, + string auxiliaryAccessToken = "", + bool isMUAProtected = false) { + Dictionary> customHeaders = new Dictionary>(); + string operationRequest = null; + + if (isMUAProtected) + { + List resourceGuardMapping = ListResourceGuardMapping(vaultName, resourceGroupName); + + if (resourceGuardMapping != null && resourceGuardMapping.Count != 0) + { + foreach (ResourceGuardOperationDetail operationDetail in resourceGuardMapping[0].Properties.ResourceGuardOperationDetails) + { + if (operationDetail.VaultCriticalOperation == "Microsoft.RecoveryServices/vaults/backupPolicies/write") operationRequest = operationDetail.DefaultResourceRequest; + } + + if (operationRequest != null) + { + request.Properties.ResourceGuardOperationRequests = new List(); + request.Properties.ResourceGuardOperationRequests.Add(operationRequest); + } + } + } + + if (auxiliaryAccessToken != null && auxiliaryAccessToken != "") + { + if (operationRequest != null) + { + customHeaders.Add("x-ms-authorization-auxiliary", new List { "Bearer " + auxiliaryAccessToken }); + } + else if (!isMUAProtected) + { + throw new ArgumentException(String.Format(Resources.PolicyUpdateNotCritical)); + } + else + { + throw new ArgumentException(String.Format(Resources.UnexpectedParameterToken, "ModifyPolicy")); + } + } + return BmsAdapter.Client.ProtectionPolicies.CreateOrUpdateWithHttpMessagesAsync( vaultName ?? BmsAdapter.GetResourceName(), resourceGroupName ?? BmsAdapter.GetResourceGroupName(), policyName, request, + customHeaders, cancellationToken: BmsAdapter.CmdletCancellationToken).Result; } diff --git a/src/RecoveryServices/RecoveryServices.Backup.ServiceClientAdapter/BMSAPIs/VaultAPIs.cs b/src/RecoveryServices/RecoveryServices.Backup.ServiceClientAdapter/BMSAPIs/VaultAPIs.cs index dcbb1883a659..ca6b7c43aa74 100644 --- a/src/RecoveryServices/RecoveryServices.Backup.ServiceClientAdapter/BMSAPIs/VaultAPIs.cs +++ b/src/RecoveryServices/RecoveryServices.Backup.ServiceClientAdapter/BMSAPIs/VaultAPIs.cs @@ -19,8 +19,10 @@ using CrrModel = Microsoft.Azure.Management.RecoveryServices.Backup.CrossRegionRestore.Models; using Microsoft.Azure.Management.RecoveryServices.Models; using Microsoft.Rest.Azure.OData; -using Newtonsoft.Json; using RestAzureNS = Microsoft.Rest.Azure; +using System; +using Newtonsoft.Json; +using Microsoft.Azure.Commands.RecoveryServices.Backup.Properties; namespace Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.ServiceClientAdapterNS { @@ -34,16 +36,54 @@ public List ListVaults() } public BackupResourceVaultConfigResource SetVaultProperty(string vaultName, string resourceGroupName, - BackupResourceVaultConfigResource param) - { + BackupResourceVaultConfigResource param, string auxiliaryAccessToken = null, bool isMUAProtected = false) + { + Dictionary> customHeaders = new Dictionary>(); + string operationRequest = null; + + if (isMUAProtected) + { + List resourceGuardMapping = ListResourceGuardMapping(vaultName, resourceGroupName); + if (resourceGuardMapping != null && resourceGuardMapping.Count != 0) + { + foreach (ResourceGuardOperationDetail operationDetail in resourceGuardMapping[0].Properties.ResourceGuardOperationDetails) + { + if (operationDetail.VaultCriticalOperation == "Microsoft.RecoveryServices/vaults/backupconfig/write") operationRequest = operationDetail.DefaultResourceRequest; + } + + if (operationRequest != null) + { + param.Properties.ResourceGuardOperationRequests = new List(); + param.Properties.ResourceGuardOperationRequests.Add(operationRequest); + } + } + } + + if (auxiliaryAccessToken != null && auxiliaryAccessToken != "") + { + if (operationRequest != null) + { + customHeaders.Add("x-ms-authorization-auxiliary", new List { "Bearer " + auxiliaryAccessToken }); + } + else if(!isMUAProtected) + { + throw new ArgumentException(String.Format(Resources.BackupConfigUpdateNotCritical)); + } + else + { + string operationName = "Disabling SoftDelete or SecurityFeatures"; + throw new ArgumentException(String.Format(Resources.UnexpectedParameterToken, operationName)); + } + } + return BmsAdapter.Client.BackupResourceVaultConfigs.UpdateWithHttpMessagesAsync( - vaultName, resourceGroupName, param).Result.Body; + vaultName ?? BmsAdapter.GetResourceName(), resourceGroupName ?? BmsAdapter.GetResourceGroupName(), param, customHeaders).Result.Body; } public BackupResourceVaultConfigResource GetVaultProperty(string vaultName, string resourceGroupName) - { + { return BmsAdapter.Client.BackupResourceVaultConfigs.GetWithHttpMessagesAsync( - vaultName, resourceGroupName).Result.Body; + vaultName ?? BmsAdapter.GetResourceName(), resourceGroupName ?? BmsAdapter.GetResourceGroupName()).Result.Body; } /// @@ -106,7 +146,7 @@ public RestAzureNS.AzureOperationResponse UpdateVaultEncryption(string resouceGr /// Azure Recovery Services Vault public ARSVault GetVault(string resouceGroupName, string vaultName) { - Vault response = RSAdapter.Client.Vaults.GetWithHttpMessagesAsync(resouceGroupName, vaultName, + Vault response = RSAdapter.Client.Vaults.GetWithHttpMessagesAsync(resouceGroupName, vaultName, cancellationToken: RSAdapter.CmdletCancellationToken).Result.Body; ARSVault vault = new ARSVault(response); @@ -135,12 +175,12 @@ public CrrModel.AADPropertiesResource GetAADProperties(string azureRegion, strin { ODataQuery queryParams = null; - if(backupManagementType == BackupManagementType.AzureWorkload) + if (backupManagementType == BackupManagementType.AzureWorkload) { queryParams = new ODataQuery(q => q.BackupManagementType == BackupManagementType.AzureWorkload); } - CrrModel.AADPropertiesResource aadProperties = CrrAdapter.Client.AadProperties.GetWithHttpMessagesAsync(azureRegion, queryParams).Result.Body; + CrrModel.AADPropertiesResource aadProperties = CrrAdapter.Client.AadProperties.GetWithHttpMessagesAsync(azureRegion, queryParams).Result.Body; return aadProperties; } @@ -193,5 +233,102 @@ public void TriggerDataMove(string vaultName, string resourceGroupName, TriggerD Logger.Instance.WriteDebug("Trigger move operation: " + operationStatus.Body.Status); } + + #region ResourceGuardAPIs + + /// + /// Method to fetch resource guard proxy. + /// + /// + /// + /// + /// + public ResourceGuardProxyBaseResource GetResourceGuardMapping(string vaultName, string resourceGroupName, string resourceGuardProxyName) + { + return BmsAdapter.Client.ResourceGuardProxy.GetWithHttpMessagesAsync(vaultName ?? BmsAdapter.GetResourceName(), resourceGroupName ?? BmsAdapter.GetResourceGroupName(), resourceGuardProxyName).Result.Body; + } + + /// + /// Method to create resource guard proxy. + /// + /// + /// + /// + /// + public ResourceGuardProxyBaseResource CreateResourceGuardMapping(string vaultName, string resourceGroupName, string resourceGuardProxyName, ResourceGuardProxyBaseResource param, string auxiliaryAccessToken) + { + Dictionary> customHeaders = new Dictionary>(); + if (auxiliaryAccessToken != null && auxiliaryAccessToken != "") + { + customHeaders.Add("x-ms-authorization-auxiliary", new List { "Bearer " + auxiliaryAccessToken }); + } + + return BmsAdapter.Client.ResourceGuardProxy.PutWithHttpMessagesAsync(vaultName ?? BmsAdapter.GetResourceName(), resourceGroupName ?? BmsAdapter.GetResourceGroupName(), resourceGuardProxyName, param, customHeaders).Result.Body; + } + + /// + /// Method to delete resource guard proxy. + /// + /// + /// + /// + /// + public RestAzureNS.AzureOperationResponse DeleteResourceGuardMapping(string vaultName, string resourceGroupName, string resourceGuardProxyName, string auxiliaryAccessToken) + { + Dictionary> customHeaders = new Dictionary>(); + string operationRequest = null; + + if (auxiliaryAccessToken != null && auxiliaryAccessToken != "") + { + customHeaders.Add("x-ms-authorization-auxiliary", new List { "Bearer " + auxiliaryAccessToken }); + } + + // unlock + UnlockDeleteRequest unlockDeleteRequest = new UnlockDeleteRequest(); + + List resourceGuardMapping = ListResourceGuardMapping(vaultName, resourceGroupName); + + if (resourceGuardMapping != null && resourceGuardMapping.Count != 0) + { + foreach (ResourceGuardOperationDetail operationDetail in resourceGuardMapping[0].Properties.ResourceGuardOperationDetails) + { + if (operationDetail.VaultCriticalOperation == "Microsoft.RecoveryServices/vaults/backupResourceGuardProxies/delete") operationRequest = operationDetail.DefaultResourceRequest; + } + + if (operationRequest != null) + { + unlockDeleteRequest.ResourceGuardOperationRequests = new List(); + unlockDeleteRequest.ResourceGuardOperationRequests.Add(operationRequest); + + UnlockDeleteResponse unlockDeleteResponse = BmsAdapter.Client.ResourceGuardProxy.UnlockDeleteWithHttpMessagesAsync(vaultName ?? BmsAdapter.GetResourceName(), resourceGroupName ?? BmsAdapter.GetResourceGroupName(), resourceGuardProxyName, unlockDeleteRequest, customHeaders).Result.Body; + } + } + else if (auxiliaryAccessToken != null && auxiliaryAccessToken != "") + { + throw new ArgumentException(String.Format(Resources.ResourceGuardMappingNotFound)); + } + + return BmsAdapter.Client.ResourceGuardProxy.DeleteWithHttpMessagesAsync(vaultName ?? BmsAdapter.GetResourceName(), resourceGroupName ?? BmsAdapter.GetResourceGroupName(), resourceGuardProxyName).Result; + } + + /// + /// Method to fetch resource guard proxy list. + /// + /// + /// + /// + public List ListResourceGuardMapping(string vaultName, string resourceGroupName) + { + Func> proxyPagedList = () => BmsAdapter.Client.ResourceGuardProxies.GetWithHttpMessagesAsync(vaultName ?? BmsAdapter.GetResourceName(), resourceGroupName ?? BmsAdapter.GetResourceGroupName()).Result.Body; + + Func> proxyPagedListNext = nextLink => BmsAdapter.Client.ResourceGuardProxies.GetNextWithHttpMessagesAsync( + nextLink, cancellationToken: BmsAdapter.CmdletCancellationToken).Result.Body; + + var proxyList = HelperUtils.GetPagedList(proxyPagedList, proxyPagedListNext); + + return proxyList; + } + + #endregion } } diff --git a/src/RecoveryServices/RecoveryServices.Backup.ServiceClientAdapter/RecoveryServices.Backup.ServiceClientAdapter.csproj b/src/RecoveryServices/RecoveryServices.Backup.ServiceClientAdapter/RecoveryServices.Backup.ServiceClientAdapter.csproj index 51f3887273f2..5d184e592895 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 75e8fbfebf7c..a435a1f0c779 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/AzureWorkload/PolicyTests.cs b/src/RecoveryServices/RecoveryServices.Backup.Test/ScenarioTests/AzureWorkload/PolicyTests.cs index a4faf6d8dfaf..7d396f0344b6 100644 --- a/src/RecoveryServices/RecoveryServices.Backup.Test/ScenarioTests/AzureWorkload/PolicyTests.cs +++ b/src/RecoveryServices/RecoveryServices.Backup.Test/ScenarioTests/AzureWorkload/PolicyTests.cs @@ -21,7 +21,7 @@ namespace Microsoft.Azure.Commands.RecoveryServices.Backup.Test.ScenarioTests { public partial class PolicyTests : RMTestBase { - [Fact(Skip = "To re-record in next release")] + [Fact] [Trait(Category.AcceptanceType, Category.CheckIn)] [Trait(TestConstants.Workload, TestConstants.AzureVmWorkload)] public void TestAzureVmWorkloadPolicy() diff --git a/src/RecoveryServices/RecoveryServices.Backup.Test/ScenarioTests/IaasVm/ContainerTests.cs b/src/RecoveryServices/RecoveryServices.Backup.Test/ScenarioTests/IaasVm/ContainerTests.cs index 60b4f84a8ced..183da915663b 100644 --- a/src/RecoveryServices/RecoveryServices.Backup.Test/ScenarioTests/IaasVm/ContainerTests.cs +++ b/src/RecoveryServices/RecoveryServices.Backup.Test/ScenarioTests/IaasVm/ContainerTests.cs @@ -21,7 +21,7 @@ namespace Microsoft.Azure.Commands.RecoveryServices.Backup.Test.ScenarioTests { public partial class ContainerTests : RMTestBase { - [Fact(Skip = "To re-record in next release")] + [Fact] [Trait(Category.AcceptanceType, Category.CheckIn)] [Trait(TestConstants.Workload, TestConstants.AzureVM)] public void TestAzureVMGetContainers() diff --git a/src/RecoveryServices/RecoveryServices.Backup.Test/ScenarioTests/IaasVm/ItemTests.cs b/src/RecoveryServices/RecoveryServices.Backup.Test/ScenarioTests/IaasVm/ItemTests.cs index 4b73562fd298..fc1cf4680dc9 100644 --- a/src/RecoveryServices/RecoveryServices.Backup.Test/ScenarioTests/IaasVm/ItemTests.cs +++ b/src/RecoveryServices/RecoveryServices.Backup.Test/ScenarioTests/IaasVm/ItemTests.cs @@ -25,7 +25,7 @@ namespace Microsoft.Azure.Commands.RecoveryServices.Backup.Test.ScenarioTests { public partial class ItemTests : RMTestBase { - [Fact(Skip = "To re-record in next release")] + [Fact] [Trait(Category.AcceptanceType, Category.CheckIn)] [Trait(TestConstants.Workload, TestConstants.AzureVM)] public void TestAzureVMGetItems() @@ -43,7 +43,7 @@ public void TestAzureVMProtection() _logger, PsBackupProviderTypes.IaasVm, "Test-AzureVMProtection"); } - [Fact(Skip = "To re-record in next release")] + [Fact] [Trait(Category.AcceptanceType, Category.CheckIn)] [Trait(TestConstants.Workload, TestConstants.AzureVM)] public void TestAzureVMBackup() @@ -52,7 +52,7 @@ public void TestAzureVMBackup() _logger, PsBackupProviderTypes.IaasVm, "Test-AzureVMBackup"); } - [Fact(Skip = "To re-record in next release")] + [Fact] [Trait(Category.AcceptanceType, Category.CheckIn)] [Trait(TestConstants.Workload, TestConstants.AzureVM)] public void TestAzureVMGetRPs() @@ -63,7 +63,7 @@ public void TestAzureVMGetRPs() - [Fact(Skip = "To re-record in next release")] + [Fact] [Trait(Category.AcceptanceType, Category.CheckIn)] [Trait(TestConstants.Workload, TestConstants.AzureVM)] public void TestAzureVMFullRestore() @@ -104,7 +104,7 @@ public void TestAzureVMRPMountScript() Assert.True(AzureSession.Instance.DataStore.FileExists(mountScriptDetails.FilePath)); } - [Fact(Skip = "To re-record in next release")] + [Fact] [Trait(Category.AcceptanceType, Category.CheckIn)] [Trait(TestConstants.Workload, TestConstants.AzureVM)] public void TestAzureVMSetVaultContext() @@ -184,5 +184,14 @@ public void TestAzureManagedVMRestore() TestController.NewInstance.RunPsTest( _logger, PsBackupProviderTypes.IaasVm, "Test-AzureManagedVMRestore"); } + + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + [Trait(TestConstants.Workload, TestConstants.AzureVM)] + public void TestAzureVMMUA() + { + TestController.NewInstance.RunPsTest( + _logger, PsBackupProviderTypes.IaasVm, "Test-AzureVMMUA"); + } } } diff --git a/src/RecoveryServices/RecoveryServices.Backup.Test/ScenarioTests/IaasVm/ItemTests.ps1 b/src/RecoveryServices/RecoveryServices.Backup.Test/ScenarioTests/IaasVm/ItemTests.ps1 index 09d2cdbc6dea..ee1900e69a39 100644 --- a/src/RecoveryServices/RecoveryServices.Backup.Test/ScenarioTests/IaasVm/ItemTests.ps1 +++ b/src/RecoveryServices/RecoveryServices.Backup.Test/ScenarioTests/IaasVm/ItemTests.ps1 @@ -12,6 +12,69 @@ # limitations under the License. # ---------------------------------------------------------------------------------- +function Test-AzureVMMUA +{ + $location = "centraluseuap" + $resourceGroupName = "hiagarg" + $vaultName = "mua-pstest-vault" + $vmName = "VM;iaasvmcontainerv2;hiagarg;hiaganewvm2" + $vmFriendlyName = "hiaganewvm2" + $resGuardId = "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm-pstest-rg/providers/Microsoft.DataProtection/resourceGuards/mua-pstest-rguard" + $lowerRetentionPolicy = "mua-vm-lowerDailyRet" + + try + { + # Setup + $vault = Get-AzRecoveryServicesVault -ResourceGroupName $resourceGroupName -Name $vaultName + + # Enable protection on hiaganewVM2 with default policy + $pol = Get-AzRecoveryServicesBackupProtectionPolicy -VaultId $vault.ID -Name "DefaultPolicy" + Enable-AzRecoveryServicesBackupProtection -Policy $pol -ResourceGroupName $resourceGroupName -Name $vmFriendlyName -VaultId $vault.ID + + # create resource guard mapping + $resGuardMapping = Set-AzRecoveryServicesResourceGuardMapping -ResourceGuardId $resGuardId -VaultId $vault.ID + $mapping = Get-AzRecoveryServicesResourceGuardMapping -VaultId $vault.ID + Assert-True { $mapping.name -eq "VaultProxy" } + + # modify policy + # modify policy with reduce retention count + $pol = Get-AzRecoveryServicesBackupProtectionPolicy -VaultId $vault.ID -WorkloadType AzureVM -BackupManagementType AzureVM + $pol[1].RetentionPolicy.DailySchedule.DurationCountInDays = $pol[1].RetentionPolicy.DailySchedule.DurationCountInDays - 1 + Set-AzRecoveryServicesBackupProtectionPolicy -VaultId $vault.ID -Policy $pol[1] -RetentionPolicy $pol[1].RetentionPolicy + + # modify policy with increase retention count + $pol = Get-AzRecoveryServicesBackupProtectionPolicy -VaultId $vault.ID -WorkloadType AzureVM -BackupManagementType AzureVM + $pol[1].RetentionPolicy.DailySchedule.DurationCountInDays = $pol[1].RetentionPolicy.DailySchedule.DurationCountInDays + 2 + Set-AzRecoveryServicesBackupProtectionPolicy -VaultId $vault.ID -Policy $pol[1] -RetentionPolicy $pol[1].RetentionPolicy + + # modify protection + $pol = Get-AzRecoveryServicesBackupProtectionPolicy -VaultId $vault.ID -Name $lowerRetentionPolicy + $item = Get-AzRecoveryServicesBackupItem -VaultId $vault.ID -BackupManagementType AzureVM -WorkloadType AzureVM + + # modify protection with lower retention policy + Enable-AzRecoveryServicesBackupProtection -Item $item -Policy $pol -VaultId $vault.ID + + # modify protection with regular policy + $pol = Get-AzRecoveryServicesBackupProtectionPolicy -VaultId $vault.ID -Name "DefaultPolicy" + $item = Get-AzRecoveryServicesBackupItem -VaultId $vault.ID -BackupManagementType AzureVM -WorkloadType AzureVM + Enable-AzRecoveryServicesBackupProtection -Item $item -Policy $pol -VaultId $vault.ID + + # dsiable softDelete + Set-AzRecoveryServicesVaultProperty -SoftDeleteFeatureState Disable -VaultId $vault.ID + } + finally + { + #disable protection with RemoveRecoveryPoints + Disable-AzRecoveryServicesBackupProtection -Item $item -RemoveRecoveryPoints -VaultId $vault.ID -Force + + # remove mapping + Remove-AzRecoveryServicesResourceGuardMapping -VaultId $vault.ID + + # enable soft delete + Set-AzRecoveryServicesVaultProperty -SoftDeleteFeatureState Enable -VaultId $vault.ID + } +} + function Test-AzureManagedVMRestore { $location = "centraluseuap" @@ -250,18 +313,15 @@ function Test-AzureBackupDataMove function Test-AzureVMGetItems { - $location = "centraluseuap" #"southeastasia" - $resourceGroupName = "hiagarg" #Create-ResourceGroup $location - $vmName1 = "hiagaNewVm1" - $vmName2 = "hiaganewVM2" - $vaultName = "hiaga-adhoc-vault" - + $location = "southeastasia" + $resourceGroupName = Create-ResourceGroup $location + try { # Setup - $vm = Get-AzVM -ResourceGroupName $resourceGroupName -Name $vmName1 # Create-VM $resourceGroupName $location 1 - $vm2 = Get-AzVM -ResourceGroupName $resourceGroupName -Name $vmName2 # Create-VM $resourceGroupName $location 12 - $vault = Get-AzRecoveryServicesVault -ResourceGroupName $resourceGroupName -Name $vaultName # Create-RecoveryServicesVault $resourceGroupName $location + $vm = Create-VM $resourceGroupName $location 1 + $vm2 = Create-VM $resourceGroupName $location 12 + $vault = Create-RecoveryServicesVault $resourceGroupName $location # disable soft delete for successful cleanup Set-AzRecoveryServicesVaultProperty -VaultId $vault.ID -SoftDeleteFeatureState "Disable" @@ -358,8 +418,7 @@ function Test-AzureVMGetItems finally { # Cleanup - #Cleanup-ResourceGroup $resourceGroupName - # Disable protection with remove recovery points + Cleanup-ResourceGroup $resourceGroupName } } @@ -629,28 +688,33 @@ function Test-AzureVMRPMountScript function Test-AzureVMBackup { - $location = "southeastasia" - $resourceGroupName = Create-ResourceGroup $location - + $location = "centraluseuap" + $resourceGroupName = "hiagarg" + $vaultName = "hiaga-adhoc-vault" + $vmName1 = "VM;iaasvmcontainerv2;hiagarg;hiaga-adhoc-vm" + $vmName2 = "VM;iaasvmcontainerv2;hiagarg;hiaganewvm3" + $vmFriendlyName1 = "hiaga-adhoc-vm" + $vmFriendlyName2 = "hiaganewvm3" + try { # Setup - $vault = Create-RecoveryServicesVault $resourceGroupName $location + $vault = $vault = Get-AzRecoveryServicesVault -ResourceGroupName $resourceGroupName -Name $vaultName + Set-AzRecoveryServicesVaultProperty -VaultId $vault.ID -SoftDeleteFeatureState "Disable" - $vm = Create-VM $resourceGroupName $location - $item = Enable-Protection $vault $vm + + $item = Get-AzRecoveryServicesBackupItem -BackupManagementType AzureVM -WorkloadType AzureVM -VaultId $vault.ID # Trigger backup and wait for completion $backupJob = Backup-AzRecoveryServicesBackupItem ` -VaultId $vault.ID ` - -Item $item | Wait-AzRecoveryServicesBackupJob -VaultId $vault.ID + -Item $item[0] | Wait-AzRecoveryServicesBackupJob -VaultId $vault.ID Assert-True { $backupJob.Status -eq "Completed" } } finally { - # Cleanup - Cleanup-ResourceGroup $resourceGroupName + # no Cleanup } } diff --git a/src/RecoveryServices/RecoveryServices.Backup.Test/ScenarioTests/IaasVm/JobTests.cs b/src/RecoveryServices/RecoveryServices.Backup.Test/ScenarioTests/IaasVm/JobTests.cs index f496c5077ac2..332316332ad5 100644 --- a/src/RecoveryServices/RecoveryServices.Backup.Test/ScenarioTests/IaasVm/JobTests.cs +++ b/src/RecoveryServices/RecoveryServices.Backup.Test/ScenarioTests/IaasVm/JobTests.cs @@ -31,7 +31,7 @@ public JobTests(Xunit.Abstractions.ITestOutputHelper output) XunitTracingInterceptor.AddToContext(_logger); } - [Fact(Skip = "To re-record in next release")] + [Fact] [Trait(Category.AcceptanceType, Category.CheckIn)] [Trait(TestConstants.Workload, TestConstants.AzureVM)] public void TestAzureVMGetJobs() @@ -40,7 +40,7 @@ public void TestAzureVMGetJobs() _logger, PsBackupProviderTypes.IaasVm, "Test-AzureVMGetJobs"); } - [Fact(Skip = "To re-record in next release")] + [Fact] [Trait(Category.AcceptanceType, Category.CheckIn)] [Trait(TestConstants.Workload, TestConstants.AzureVM)] public void TestAzureVMGetJobsTimeFilter() @@ -49,7 +49,7 @@ public void TestAzureVMGetJobsTimeFilter() _logger, PsBackupProviderTypes.IaasVm, "Test-AzureVMGetJobsTimeFilter"); } - [Fact(Skip = "To re-record in next release")] + [Fact] [Trait(Category.AcceptanceType, Category.CheckIn)] [Trait(TestConstants.Workload, TestConstants.AzureVM)] public void TestAzureVMWaitJob() @@ -58,7 +58,7 @@ public void TestAzureVMWaitJob() _logger, PsBackupProviderTypes.IaasVm, "Test-AzureVMWaitJob"); } - [Fact(Skip = "To re-record in next release")] + [Fact] [Trait(Category.AcceptanceType, Category.CheckIn)] [Trait(TestConstants.Workload, TestConstants.AzureVM)] public void TestAzureVMCancelJob() diff --git a/src/RecoveryServices/RecoveryServices.Backup.Test/SessionRecords/Microsoft.Azure.Commands.RecoveryServices.Backup.Test.ScenarioTests.ContainerTests/GetAzureVmWorkloadContainer.json b/src/RecoveryServices/RecoveryServices.Backup.Test/SessionRecords/Microsoft.Azure.Commands.RecoveryServices.Backup.Test.ScenarioTests.ContainerTests/GetAzureVmWorkloadContainer.json index 89fea72788a7..6266109c3451 100644 --- a/src/RecoveryServices/RecoveryServices.Backup.Test/SessionRecords/Microsoft.Azure.Commands.RecoveryServices.Backup.Test.ScenarioTests.ContainerTests/GetAzureVmWorkloadContainer.json +++ b/src/RecoveryServices/RecoveryServices.Backup.Test/SessionRecords/Microsoft.Azure.Commands.RecoveryServices.Backup.Test.ScenarioTests.ContainerTests/GetAzureVmWorkloadContainer.json @@ -7,13 +7,13 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "002e5de8-5227-42af-bfb6-2be5ac84ca3f" + "1f9ae158-4ac8-424f-a81b-8d6d1ddf29a0" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesClient/4.3.2.0" @@ -30,10 +30,10 @@ "nosniff" ], "x-ms-request-id": [ - "8fe9260a-60e9-4fb4-8ab1-abbd94459e3c" + "2232b11a-47f5-4cbf-80e1-fc3f92619d0d" ], "x-ms-client-request-id": [ - "002e5de8-5227-42af-bfb6-2be5ac84ca3f" + "1f9ae158-4ac8-424f-a81b-8d6d1ddf29a0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -45,16 +45,16 @@ "11998" ], "x-ms-correlation-request-id": [ - "8fe9260a-60e9-4fb4-8ab1-abbd94459e3c" + "2232b11a-47f5-4cbf-80e1-fc3f92619d0d" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T091619Z:8fe9260a-60e9-4fb4-8ab1-abbd94459e3c" + "WESTINDIA:20220516T154402Z:2232b11a-47f5-4cbf-80e1-fc3f92619d0d" ], "Date": [ - "Sat, 26 Mar 2022 09:16:18 GMT" + "Mon, 16 May 2022 15:44:02 GMT" ], "Content-Length": [ - "476" + "528" ], "Content-Type": [ "application/json" @@ -63,26 +63,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pstestwlRSV1bca8\",\r\n \"etag\": \"W/\\\"datetime'2022-02-18T07%3A20%3A25.6718658Z'\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateEndpointStateForBackup\": \"None\",\r\n \"privateEndpointStateForSiteRecovery\": \"None\"\r\n },\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"RS0\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pstestwlRSV1bca8\",\r\n \"etag\": \"W/\\\"datetime'2022-02-18T07%3A20%3A25.6718658Z'\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateEndpointStateForBackup\": \"None\",\r\n \"privateEndpointStateForSiteRecovery\": \"None\",\r\n \"networkSettings\": {\r\n \"publicNetworkAccess\": \"Enabled\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"RS0\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupProtectionContainers?$filter=backupManagementType%20eq%20'AzureWorkload'%20and%20status%20eq%20'Registered'&api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHdsUkcxYmNhOC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHdsUlNWMWJjYTgvYmFja3VwUHJvdGVjdGlvbkNvbnRhaW5lcnM/JGZpbHRlcj1iYWNrdXBNYW5hZ2VtZW50VHlwZSUyMGVxJTIwJ0F6dXJlV29ya2xvYWQnJTIwYW5kJTIwc3RhdHVzJTIwZXElMjAnUmVnaXN0ZXJlZCcmYXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupProtectionContainers?$filter=backupManagementType%20eq%20'AzureWorkload'%20and%20status%20eq%20'Registered'&api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHdsUkcxYmNhOC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHdsUlNWMWJjYTgvYmFja3VwUHJvdGVjdGlvbkNvbnRhaW5lcnM/JGZpbHRlcj1iYWNrdXBNYW5hZ2VtZW50VHlwZSUyMGVxJTIwJ0F6dXJlV29ya2xvYWQnJTIwYW5kJTIwc3RhdHVzJTIwZXElMjAnUmVnaXN0ZXJlZCcmYXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "543e3bc1-8196-4753-a9d2-12521a4557c4" + "acfa3f15-d56c-47a8-b480-76ba50c50098" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -96,11 +96,11 @@ "nosniff" ], "x-ms-request-id": [ - "eeae739e-483e-4df7-a88f-0aa97bf29856" + "8ed9f1c0-c3ce-46db-b630-4697c1770650" ], "x-ms-client-request-id": [ - "543e3bc1-8196-4753-a9d2-12521a4557c4", - "543e3bc1-8196-4753-a9d2-12521a4557c4" + "acfa3f15-d56c-47a8-b480-76ba50c50098", + "acfa3f15-d56c-47a8-b480-76ba50c50098" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -115,13 +115,13 @@ "299" ], "x-ms-correlation-request-id": [ - "eeae739e-483e-4df7-a88f-0aa97bf29856" + "8ed9f1c0-c3ce-46db-b630-4697c1770650" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T091620Z:eeae739e-483e-4df7-a88f-0aa97bf29856" + "WESTINDIA:20220516T154404Z:8ed9f1c0-c3ce-46db-b630-4697c1770650" ], "Date": [ - "Sat, 26 Mar 2022 09:16:19 GMT" + "Mon, 16 May 2022 15:44:04 GMT" ], "Content-Length": [ "1161" @@ -137,22 +137,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupProtectionContainers?$filter=backupManagementType%20eq%20'AzureWorkload'%20and%20status%20eq%20'Registered'&api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHdsUkcxYmNhOC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHdsUlNWMWJjYTgvYmFja3VwUHJvdGVjdGlvbkNvbnRhaW5lcnM/JGZpbHRlcj1iYWNrdXBNYW5hZ2VtZW50VHlwZSUyMGVxJTIwJ0F6dXJlV29ya2xvYWQnJTIwYW5kJTIwc3RhdHVzJTIwZXElMjAnUmVnaXN0ZXJlZCcmYXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupProtectionContainers?$filter=backupManagementType%20eq%20'AzureWorkload'%20and%20status%20eq%20'Registered'&api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHdsUkcxYmNhOC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHdsUlNWMWJjYTgvYmFja3VwUHJvdGVjdGlvbkNvbnRhaW5lcnM/JGZpbHRlcj1iYWNrdXBNYW5hZ2VtZW50VHlwZSUyMGVxJTIwJ0F6dXJlV29ya2xvYWQnJTIwYW5kJTIwc3RhdHVzJTIwZXElMjAnUmVnaXN0ZXJlZCcmYXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "62e8a5fd-0e67-4f59-9bf4-525bbfe5d1df" + "3fa5c121-931e-46d3-b2d7-e57028e6b002" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -166,11 +166,11 @@ "nosniff" ], "x-ms-request-id": [ - "8187d3ca-eb9f-4176-8fe7-4c9c9de4a3d4" + "11f28003-d9a3-4013-afbb-7267bdf6c5fd" ], "x-ms-client-request-id": [ - "62e8a5fd-0e67-4f59-9bf4-525bbfe5d1df", - "62e8a5fd-0e67-4f59-9bf4-525bbfe5d1df" + "3fa5c121-931e-46d3-b2d7-e57028e6b002", + "3fa5c121-931e-46d3-b2d7-e57028e6b002" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,13 +185,13 @@ "297" ], "x-ms-correlation-request-id": [ - "8187d3ca-eb9f-4176-8fe7-4c9c9de4a3d4" + "11f28003-d9a3-4013-afbb-7267bdf6c5fd" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T091620Z:8187d3ca-eb9f-4176-8fe7-4c9c9de4a3d4" + "WESTINDIA:20220516T154405Z:11f28003-d9a3-4013-afbb-7267bdf6c5fd" ], "Date": [ - "Sat, 26 Mar 2022 09:16:20 GMT" + "Mon, 16 May 2022 15:44:05 GMT" ], "Content-Length": [ "1161" @@ -207,22 +207,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupProtectionContainers?$filter=friendlyName%20eq%20'sql-pstest-vm'%20and%20backupManagementType%20eq%20'AzureWorkload'%20and%20status%20eq%20'Registered'&api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHdsUkcxYmNhOC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHdsUlNWMWJjYTgvYmFja3VwUHJvdGVjdGlvbkNvbnRhaW5lcnM/JGZpbHRlcj1mcmllbmRseU5hbWUlMjBlcSUyMCdzcWwtcHN0ZXN0LXZtJyUyMGFuZCUyMGJhY2t1cE1hbmFnZW1lbnRUeXBlJTIwZXElMjAnQXp1cmVXb3JrbG9hZCclMjBhbmQlMjBzdGF0dXMlMjBlcSUyMCdSZWdpc3RlcmVkJyZhcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupProtectionContainers?$filter=friendlyName%20eq%20'sql-pstest-vm'%20and%20backupManagementType%20eq%20'AzureWorkload'%20and%20status%20eq%20'Registered'&api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHdsUkcxYmNhOC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHdsUlNWMWJjYTgvYmFja3VwUHJvdGVjdGlvbkNvbnRhaW5lcnM/JGZpbHRlcj1mcmllbmRseU5hbWUlMjBlcSUyMCdzcWwtcHN0ZXN0LXZtJyUyMGFuZCUyMGJhY2t1cE1hbmFnZW1lbnRUeXBlJTIwZXElMjAnQXp1cmVXb3JrbG9hZCclMjBhbmQlMjBzdGF0dXMlMjBlcSUyMCdSZWdpc3RlcmVkJyZhcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "79cea4e8-07cf-41a0-be99-00344e36d57e" + "d358c090-eaa2-4620-99ec-c83b9e69cf00" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -236,11 +236,11 @@ "nosniff" ], "x-ms-request-id": [ - "4bd3c11a-8587-480e-8a60-ace4c5754711" + "5d397975-d221-4ec3-91ed-0f8261dd74f2" ], "x-ms-client-request-id": [ - "79cea4e8-07cf-41a0-be99-00344e36d57e", - "79cea4e8-07cf-41a0-be99-00344e36d57e" + "d358c090-eaa2-4620-99ec-c83b9e69cf00", + "d358c090-eaa2-4620-99ec-c83b9e69cf00" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -255,13 +255,13 @@ "298" ], "x-ms-correlation-request-id": [ - "4bd3c11a-8587-480e-8a60-ace4c5754711" + "5d397975-d221-4ec3-91ed-0f8261dd74f2" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T091620Z:4bd3c11a-8587-480e-8a60-ace4c5754711" + "WESTINDIA:20220516T154404Z:5d397975-d221-4ec3-91ed-0f8261dd74f2" ], "Date": [ - "Sat, 26 Mar 2022 09:16:20 GMT" + "Mon, 16 May 2022 15:44:04 GMT" ], "Content-Length": [ "1161" @@ -277,22 +277,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupProtectionContainers?$filter=friendlyName%20eq%20'sql-pstest-vm'%20and%20backupManagementType%20eq%20'AzureWorkload'%20and%20status%20eq%20'Registered'&api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHdsUkcxYmNhOC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHdsUlNWMWJjYTgvYmFja3VwUHJvdGVjdGlvbkNvbnRhaW5lcnM/JGZpbHRlcj1mcmllbmRseU5hbWUlMjBlcSUyMCdzcWwtcHN0ZXN0LXZtJyUyMGFuZCUyMGJhY2t1cE1hbmFnZW1lbnRUeXBlJTIwZXElMjAnQXp1cmVXb3JrbG9hZCclMjBhbmQlMjBzdGF0dXMlMjBlcSUyMCdSZWdpc3RlcmVkJyZhcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupProtectionContainers?$filter=friendlyName%20eq%20'sql-pstest-vm'%20and%20backupManagementType%20eq%20'AzureWorkload'%20and%20status%20eq%20'Registered'&api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHdsUkcxYmNhOC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHdsUlNWMWJjYTgvYmFja3VwUHJvdGVjdGlvbkNvbnRhaW5lcnM/JGZpbHRlcj1mcmllbmRseU5hbWUlMjBlcSUyMCdzcWwtcHN0ZXN0LXZtJyUyMGFuZCUyMGJhY2t1cE1hbmFnZW1lbnRUeXBlJTIwZXElMjAnQXp1cmVXb3JrbG9hZCclMjBhbmQlMjBzdGF0dXMlMjBlcSUyMCdSZWdpc3RlcmVkJyZhcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1dd819b8-d61e-4a3a-8591-2811ae9da92e" + "7e881f0d-0ffb-4367-b793-09e758a8d8bf" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -306,11 +306,11 @@ "nosniff" ], "x-ms-request-id": [ - "779fc322-b46e-421d-88aa-025ebbe697a5" + "c6fd365b-6979-4945-bb6f-9fcad407d273" ], "x-ms-client-request-id": [ - "1dd819b8-d61e-4a3a-8591-2811ae9da92e", - "1dd819b8-d61e-4a3a-8591-2811ae9da92e" + "7e881f0d-0ffb-4367-b793-09e758a8d8bf", + "7e881f0d-0ffb-4367-b793-09e758a8d8bf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -325,13 +325,13 @@ "296" ], "x-ms-correlation-request-id": [ - "779fc322-b46e-421d-88aa-025ebbe697a5" + "c6fd365b-6979-4945-bb6f-9fcad407d273" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T091621Z:779fc322-b46e-421d-88aa-025ebbe697a5" + "WESTINDIA:20220516T154406Z:c6fd365b-6979-4945-bb6f-9fcad407d273" ], "Date": [ - "Sat, 26 Mar 2022 09:16:21 GMT" + "Mon, 16 May 2022 15:44:05 GMT" ], "Content-Length": [ "1161" diff --git a/src/RecoveryServices/RecoveryServices.Backup.Test/SessionRecords/Microsoft.Azure.Commands.RecoveryServices.Backup.Test.ScenarioTests.ContainerTests/TestAzureFSContainer.json b/src/RecoveryServices/RecoveryServices.Backup.Test/SessionRecords/Microsoft.Azure.Commands.RecoveryServices.Backup.Test.ScenarioTests.ContainerTests/TestAzureFSContainer.json index 887551fc27ec..b458a172190e 100644 --- a/src/RecoveryServices/RecoveryServices.Backup.Test/SessionRecords/Microsoft.Azure.Commands.RecoveryServices.Backup.Test.ScenarioTests.ContainerTests/TestAzureFSContainer.json +++ b/src/RecoveryServices/RecoveryServices.Backup.Test/SessionRecords/Microsoft.Azure.Commands.RecoveryServices.Backup.Test.ScenarioTests.ContainerTests/TestAzureFSContainer.json @@ -7,13 +7,13 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "57605aa1-1a23-44be-a90a-185bd1924557" + "b735cf83-a3de-4741-a280-c6b8ef34cb79" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesClient/4.3.2.0" @@ -30,10 +30,10 @@ "nosniff" ], "x-ms-request-id": [ - "f16c1cf1-9627-41e4-8e67-bcd8c754c3e3" + "b62401ef-2ef2-4a4a-af0b-a94eaeb6081c" ], "x-ms-client-request-id": [ - "57605aa1-1a23-44be-a90a-185bd1924557" + "b735cf83-a3de-4741-a280-c6b8ef34cb79" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -45,16 +45,16 @@ "11999" ], "x-ms-correlation-request-id": [ - "f16c1cf1-9627-41e4-8e67-bcd8c754c3e3" + "b62401ef-2ef2-4a4a-af0b-a94eaeb6081c" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T084816Z:f16c1cf1-9627-41e4-8e67-bcd8c754c3e3" + "JIOINDIAWEST:20220516T154008Z:b62401ef-2ef2-4a4a-af0b-a94eaeb6081c" ], "Date": [ - "Sat, 26 Mar 2022 08:48:16 GMT" + "Mon, 16 May 2022 15:40:07 GMT" ], "Content-Length": [ - "467" + "519" ], "Content-Type": [ "application/json" @@ -63,26 +63,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pstestrsv8895\",\r\n \"etag\": \"W/\\\"datetime'2022-02-18T07%3A20%3A25.5509044Z'\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateEndpointStateForBackup\": \"None\",\r\n \"privateEndpointStateForSiteRecovery\": \"None\"\r\n },\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"RS0\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pstestrsv8895\",\r\n \"etag\": \"W/\\\"datetime'2022-02-18T07%3A20%3A25.5509044Z'\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateEndpointStateForBackup\": \"None\",\r\n \"privateEndpointStateForSiteRecovery\": \"None\",\r\n \"networkSettings\": {\r\n \"publicNetworkAccess\": \"Enabled\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"RS0\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupProtectionContainers?$filter=friendlyName%20eq%20'pstestsa8895'%20and%20backupManagementType%20eq%20'AzureStorage'%20and%20status%20eq%20'Registered'&api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwUHJvdGVjdGlvbkNvbnRhaW5lcnM/JGZpbHRlcj1mcmllbmRseU5hbWUlMjBlcSUyMCdwc3Rlc3RzYTg4OTUnJTIwYW5kJTIwYmFja3VwTWFuYWdlbWVudFR5cGUlMjBlcSUyMCdBenVyZVN0b3JhZ2UnJTIwYW5kJTIwc3RhdHVzJTIwZXElMjAnUmVnaXN0ZXJlZCcmYXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupProtectionContainers?$filter=friendlyName%20eq%20'pstestsa8895'%20and%20backupManagementType%20eq%20'AzureStorage'%20and%20status%20eq%20'Registered'&api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwUHJvdGVjdGlvbkNvbnRhaW5lcnM/JGZpbHRlcj1mcmllbmRseU5hbWUlMjBlcSUyMCdwc3Rlc3RzYTg4OTUnJTIwYW5kJTIwYmFja3VwTWFuYWdlbWVudFR5cGUlMjBlcSUyMCdBenVyZVN0b3JhZ2UnJTIwYW5kJTIwc3RhdHVzJTIwZXElMjAnUmVnaXN0ZXJlZCcmYXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "599d9bf1-4333-4dfc-8de3-62c1beb83dfe" + "5a905a33-4918-45af-906d-33c73f5f3df7" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -96,11 +96,11 @@ "nosniff" ], "x-ms-request-id": [ - "917a5bcf-56ac-4d4c-b165-b2eb8c252d9f" + "8c05886a-1e3c-4d46-8f63-50c4485e9cd3" ], "x-ms-client-request-id": [ - "599d9bf1-4333-4dfc-8de3-62c1beb83dfe", - "599d9bf1-4333-4dfc-8de3-62c1beb83dfe" + "5a905a33-4918-45af-906d-33c73f5f3df7", + "5a905a33-4918-45af-906d-33c73f5f3df7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -115,13 +115,13 @@ "299" ], "x-ms-correlation-request-id": [ - "917a5bcf-56ac-4d4c-b165-b2eb8c252d9f" + "8c05886a-1e3c-4d46-8f63-50c4485e9cd3" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T084817Z:917a5bcf-56ac-4d4c-b165-b2eb8c252d9f" + "JIOINDIAWEST:20220516T154009Z:8c05886a-1e3c-4d46-8f63-50c4485e9cd3" ], "Date": [ - "Sat, 26 Mar 2022 08:48:16 GMT" + "Mon, 16 May 2022 15:40:08 GMT" ], "Content-Length": [ "12" @@ -137,22 +137,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupProtectionContainers?$filter=friendlyName%20eq%20'pstestsa8895'%20and%20backupManagementType%20eq%20'AzureStorage'%20and%20status%20eq%20'Registered'&api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwUHJvdGVjdGlvbkNvbnRhaW5lcnM/JGZpbHRlcj1mcmllbmRseU5hbWUlMjBlcSUyMCdwc3Rlc3RzYTg4OTUnJTIwYW5kJTIwYmFja3VwTWFuYWdlbWVudFR5cGUlMjBlcSUyMCdBenVyZVN0b3JhZ2UnJTIwYW5kJTIwc3RhdHVzJTIwZXElMjAnUmVnaXN0ZXJlZCcmYXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupProtectionContainers?$filter=friendlyName%20eq%20'pstestsa8895'%20and%20backupManagementType%20eq%20'AzureStorage'%20and%20status%20eq%20'Registered'&api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwUHJvdGVjdGlvbkNvbnRhaW5lcnM/JGZpbHRlcj1mcmllbmRseU5hbWUlMjBlcSUyMCdwc3Rlc3RzYTg4OTUnJTIwYW5kJTIwYmFja3VwTWFuYWdlbWVudFR5cGUlMjBlcSUyMCdBenVyZVN0b3JhZ2UnJTIwYW5kJTIwc3RhdHVzJTIwZXElMjAnUmVnaXN0ZXJlZCcmYXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bee7ad52-e02f-4a08-961f-9d174151c791" + "698a2602-3b51-4b66-bc55-ec8461fb226e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -166,11 +166,11 @@ "nosniff" ], "x-ms-request-id": [ - "0b91a2a9-922f-4f00-89d2-e2bc30736940" + "72a4f5d9-ec7e-4855-8e73-a201d13daa45" ], "x-ms-client-request-id": [ - "bee7ad52-e02f-4a08-961f-9d174151c791", - "bee7ad52-e02f-4a08-961f-9d174151c791" + "698a2602-3b51-4b66-bc55-ec8461fb226e", + "698a2602-3b51-4b66-bc55-ec8461fb226e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,13 +185,13 @@ "297" ], "x-ms-correlation-request-id": [ - "0b91a2a9-922f-4f00-89d2-e2bc30736940" + "72a4f5d9-ec7e-4855-8e73-a201d13daa45" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T084937Z:0b91a2a9-922f-4f00-89d2-e2bc30736940" + "JIOINDIAWEST:20220516T154119Z:72a4f5d9-ec7e-4855-8e73-a201d13daa45" ], "Date": [ - "Sat, 26 Mar 2022 08:49:37 GMT" + "Mon, 16 May 2022 15:41:18 GMT" ], "Content-Length": [ "827" @@ -207,22 +207,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupProtectionContainers?$filter=friendlyName%20eq%20'pstestsa8895'%20and%20backupManagementType%20eq%20'AzureStorage'%20and%20status%20eq%20'Registered'&api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwUHJvdGVjdGlvbkNvbnRhaW5lcnM/JGZpbHRlcj1mcmllbmRseU5hbWUlMjBlcSUyMCdwc3Rlc3RzYTg4OTUnJTIwYW5kJTIwYmFja3VwTWFuYWdlbWVudFR5cGUlMjBlcSUyMCdBenVyZVN0b3JhZ2UnJTIwYW5kJTIwc3RhdHVzJTIwZXElMjAnUmVnaXN0ZXJlZCcmYXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupProtectionContainers?$filter=friendlyName%20eq%20'pstestsa8895'%20and%20backupManagementType%20eq%20'AzureStorage'%20and%20status%20eq%20'Registered'&api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwUHJvdGVjdGlvbkNvbnRhaW5lcnM/JGZpbHRlcj1mcmllbmRseU5hbWUlMjBlcSUyMCdwc3Rlc3RzYTg4OTUnJTIwYW5kJTIwYmFja3VwTWFuYWdlbWVudFR5cGUlMjBlcSUyMCdBenVyZVN0b3JhZ2UnJTIwYW5kJTIwc3RhdHVzJTIwZXElMjAnUmVnaXN0ZXJlZCcmYXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d48db579-b8f4-46c9-8377-8407e827c849" + "10b07b93-f3d6-4261-9b15-5da49c07b623" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -236,11 +236,11 @@ "nosniff" ], "x-ms-request-id": [ - "30ee844c-cadf-419f-9abf-a4bc0c622173" + "56db27d7-2a91-440d-bba5-ae1e783791f4" ], "x-ms-client-request-id": [ - "d48db579-b8f4-46c9-8377-8407e827c849", - "d48db579-b8f4-46c9-8377-8407e827c849" + "10b07b93-f3d6-4261-9b15-5da49c07b623", + "10b07b93-f3d6-4261-9b15-5da49c07b623" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -255,13 +255,13 @@ "295" ], "x-ms-correlation-request-id": [ - "30ee844c-cadf-419f-9abf-a4bc0c622173" + "56db27d7-2a91-440d-bba5-ae1e783791f4" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T084939Z:30ee844c-cadf-419f-9abf-a4bc0c622173" + "JIOINDIAWEST:20220516T154122Z:56db27d7-2a91-440d-bba5-ae1e783791f4" ], "Date": [ - "Sat, 26 Mar 2022 08:49:38 GMT" + "Mon, 16 May 2022 15:41:21 GMT" ], "Content-Length": [ "827" @@ -277,22 +277,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupProtectionContainers?$filter=friendlyName%20eq%20'pstestsa8895'%20and%20backupManagementType%20eq%20'AzureStorage'%20and%20status%20eq%20'Registered'&api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwUHJvdGVjdGlvbkNvbnRhaW5lcnM/JGZpbHRlcj1mcmllbmRseU5hbWUlMjBlcSUyMCdwc3Rlc3RzYTg4OTUnJTIwYW5kJTIwYmFja3VwTWFuYWdlbWVudFR5cGUlMjBlcSUyMCdBenVyZVN0b3JhZ2UnJTIwYW5kJTIwc3RhdHVzJTIwZXElMjAnUmVnaXN0ZXJlZCcmYXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupProtectionContainers?$filter=friendlyName%20eq%20'pstestsa8895'%20and%20backupManagementType%20eq%20'AzureStorage'%20and%20status%20eq%20'Registered'&api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwUHJvdGVjdGlvbkNvbnRhaW5lcnM/JGZpbHRlcj1mcmllbmRseU5hbWUlMjBlcSUyMCdwc3Rlc3RzYTg4OTUnJTIwYW5kJTIwYmFja3VwTWFuYWdlbWVudFR5cGUlMjBlcSUyMCdBenVyZVN0b3JhZ2UnJTIwYW5kJTIwc3RhdHVzJTIwZXElMjAnUmVnaXN0ZXJlZCcmYXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5755fd31-4334-4f05-8ada-2c3e5ca99f31" + "cca50489-5215-4f34-b1fd-a2fbf1c4403c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -306,11 +306,11 @@ "nosniff" ], "x-ms-request-id": [ - "00518331-4bed-4956-b922-ca0283919899" + "bf1c4184-0a75-4c76-9be4-ba072c5a4fe8" ], "x-ms-client-request-id": [ - "5755fd31-4334-4f05-8ada-2c3e5ca99f31", - "5755fd31-4334-4f05-8ada-2c3e5ca99f31" + "cca50489-5215-4f34-b1fd-a2fbf1c4403c", + "cca50489-5215-4f34-b1fd-a2fbf1c4403c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -325,13 +325,13 @@ "293" ], "x-ms-correlation-request-id": [ - "00518331-4bed-4956-b922-ca0283919899" + "bf1c4184-0a75-4c76-9be4-ba072c5a4fe8" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T084940Z:00518331-4bed-4956-b922-ca0283919899" + "JIOINDIAWEST:20220516T154123Z:bf1c4184-0a75-4c76-9be4-ba072c5a4fe8" ], "Date": [ - "Sat, 26 Mar 2022 08:49:39 GMT" + "Mon, 16 May 2022 15:41:22 GMT" ], "Content-Length": [ "827" @@ -347,22 +347,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupPolicies/afspolicy1?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwUG9saWNpZXMvYWZzcG9saWN5MT9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupPolicies/afspolicy1?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwUG9saWNpZXMvYWZzcG9saWN5MT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a3e92bf7-7d9d-49de-a6b6-84c859954e27" + "7a25cf68-df03-49f1-a308-c1e37758a619" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -376,11 +376,11 @@ "nosniff" ], "x-ms-request-id": [ - "095155f5-17df-4676-a45d-59611afbe025" + "3d09528e-0162-4e0f-bd59-4196b9edc97b" ], "x-ms-client-request-id": [ - "a3e92bf7-7d9d-49de-a6b6-84c859954e27", - "a3e92bf7-7d9d-49de-a6b6-84c859954e27" + "7a25cf68-df03-49f1-a308-c1e37758a619", + "7a25cf68-df03-49f1-a308-c1e37758a619" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -395,13 +395,13 @@ "299" ], "x-ms-correlation-request-id": [ - "095155f5-17df-4676-a45d-59611afbe025" + "3d09528e-0162-4e0f-bd59-4196b9edc97b" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T084817Z:095155f5-17df-4676-a45d-59611afbe025" + "JIOINDIAWEST:20220516T154010Z:3d09528e-0162-4e0f-bd59-4196b9edc97b" ], "Date": [ - "Sat, 26 Mar 2022 08:48:16 GMT" + "Mon, 16 May 2022 15:40:09 GMT" ], "Content-Length": [ "693" @@ -417,22 +417,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupProtectionContainers?$filter=backupManagementType%20eq%20'AzureStorage'&api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwUHJvdGVjdGlvbkNvbnRhaW5lcnM/JGZpbHRlcj1iYWNrdXBNYW5hZ2VtZW50VHlwZSUyMGVxJTIwJ0F6dXJlU3RvcmFnZScmYXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupProtectionContainers?$filter=backupManagementType%20eq%20'AzureStorage'&api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwUHJvdGVjdGlvbkNvbnRhaW5lcnM/JGZpbHRlcj1iYWNrdXBNYW5hZ2VtZW50VHlwZSUyMGVxJTIwJ0F6dXJlU3RvcmFnZScmYXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d8e78e34-f966-4976-9fbd-58d17bcb5c8a" + "25dd5578-ff1a-4bc5-8226-b46696054475" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -446,11 +446,11 @@ "nosniff" ], "x-ms-request-id": [ - "93d12cb4-726f-4ba9-8caf-e49624001d7c" + "85f61477-cc84-4a11-8cd5-5dcb9c77b9ff" ], "x-ms-client-request-id": [ - "d8e78e34-f966-4976-9fbd-58d17bcb5c8a", - "d8e78e34-f966-4976-9fbd-58d17bcb5c8a" + "25dd5578-ff1a-4bc5-8226-b46696054475", + "25dd5578-ff1a-4bc5-8226-b46696054475" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -465,13 +465,13 @@ "298" ], "x-ms-correlation-request-id": [ - "93d12cb4-726f-4ba9-8caf-e49624001d7c" + "85f61477-cc84-4a11-8cd5-5dcb9c77b9ff" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T084820Z:93d12cb4-726f-4ba9-8caf-e49624001d7c" + "JIOINDIAWEST:20220516T154010Z:85f61477-cc84-4a11-8cd5-5dcb9c77b9ff" ], "Date": [ - "Sat, 26 Mar 2022 08:48:19 GMT" + "Mon, 16 May 2022 15:40:09 GMT" ], "Content-Length": [ "12" @@ -487,22 +487,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers?$filter=backupManagementType%20eq%20'AzureStorage'&api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0YWJsZUNvbnRhaW5lcnM/JGZpbHRlcj1iYWNrdXBNYW5hZ2VtZW50VHlwZSUyMGVxJTIwJ0F6dXJlU3RvcmFnZScmYXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers?$filter=backupManagementType%20eq%20'AzureStorage'&api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0YWJsZUNvbnRhaW5lcnM/JGZpbHRlcj1iYWNrdXBNYW5hZ2VtZW50VHlwZSUyMGVxJTIwJ0F6dXJlU3RvcmFnZScmYXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d8e78e34-f966-4976-9fbd-58d17bcb5c8a" + "25dd5578-ff1a-4bc5-8226-b46696054475" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -516,11 +516,11 @@ "nosniff" ], "x-ms-request-id": [ - "4fa008c4-7abb-42b9-ad64-d8d9a615bc4c" + "173b2e85-2ab0-420c-b083-3c189635f9bb" ], "x-ms-client-request-id": [ - "d8e78e34-f966-4976-9fbd-58d17bcb5c8a", - "d8e78e34-f966-4976-9fbd-58d17bcb5c8a" + "25dd5578-ff1a-4bc5-8226-b46696054475", + "25dd5578-ff1a-4bc5-8226-b46696054475" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -535,16 +535,16 @@ "299" ], "x-ms-correlation-request-id": [ - "4fa008c4-7abb-42b9-ad64-d8d9a615bc4c" + "173b2e85-2ab0-420c-b083-3c189635f9bb" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T084820Z:4fa008c4-7abb-42b9-ad64-d8d9a615bc4c" + "JIOINDIAWEST:20220516T154011Z:173b2e85-2ab0-420c-b083-3c189635f9bb" ], "Date": [ - "Sat, 26 Mar 2022 08:48:20 GMT" + "Mon, 16 May 2022 15:40:10 GMT" ], "Content-Length": [ - "14925" + "16771" ], "Content-Type": [ "application/json" @@ -553,26 +553,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;afstests;02xseacan01otds1\",\r\n \"name\": \"StorageContainer;Storage;afstests;02xseacan01otds1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"02xseacan01otds1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/02xseacan01otds1\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;afstests;afsbackupsa\",\r\n \"name\": \"StorageContainer;Storage;afstests;afsbackupsa\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"afsbackupsa\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/afsbackupsa\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;afstests;storageysci5wbex6jyc\",\r\n \"name\": \"StorageContainer;Storage;afstests;storageysci5wbex6jyc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"storageysci5wbex6jyc\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/storageysci5wbex6jyc\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;akkanaseCMK;0byseapod01otds1\",\r\n \"name\": \"StorageContainer;Storage;akkanaseCMK;0byseapod01otds1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"0byseapod01otds1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseCMK/providers/Microsoft.Storage/storageAccounts/0byseapod01otds1\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;akkanaseGRSVault;frmseapod01otds1\",\r\n \"name\": \"StorageContainer;Storage;akkanaseGRSVault;frmseapod01otds1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"frmseapod01otds1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseGRSVault/providers/Microsoft.Storage/storageAccounts/frmseapod01otds1\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;cmk.system;cmkautomationstore\",\r\n \"name\": \"StorageContainer;Storage;cmk.system;cmkautomationstore\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"cmkautomationstore\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/cmk.system/providers/Microsoft.Storage/storageAccounts/cmkautomationstore\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;disk-bvt-test-rg;hv3seapod01otds1\",\r\n \"name\": \"StorageContainer;Storage;disk-bvt-test-rg;hv3seapod01otds1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"hv3seapod01otds1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/disk-bvt-test-rg/providers/Microsoft.Storage/storageAccounts/hv3seapod01otds1\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;DoNotUse-OSS-BVT-SEA-RG;dontuseossrestoreasfile\",\r\n \"name\": \"StorageContainer;Storage;DoNotUse-OSS-BVT-SEA-RG;dontuseossrestoreasfile\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"dontuseossrestoreasfile\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/DoNotUse-OSS-BVT-SEA-RG/providers/Microsoft.Storage/storageAccounts/dontuseossrestoreasfile\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;iaasvm.encryptedvm;iaasvmencryptedvmdiag170\",\r\n \"name\": \"StorageContainer;Storage;iaasvm.encryptedvm;iaasvmencryptedvmdiag170\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"iaasvmencryptedvmdiag170\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.encryptedvm/providers/Microsoft.Storage/storageAccounts/iaasvmencryptedvmdiag170\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;iaasvm.existing;iaasextstore1\",\r\n \"name\": \"StorageContainer;Storage;iaasvm.existing;iaasextstore1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"iaasextstore1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.existing/providers/Microsoft.Storage/storageAccounts/iaasextstore1\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;iaasvm.new;iaasvmnewdiag1\",\r\n \"name\": \"StorageContainer;Storage;iaasvm.new;iaasvmnewdiag1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"iaasvmnewdiag1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.new/providers/Microsoft.Storage/storageAccounts/iaasvmnewdiag1\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;iaasvmhanaworkload.existing;iaasvmhanaworkloadexisti\",\r\n \"name\": \"StorageContainer;Storage;iaasvmhanaworkload.existing;iaasvmhanaworkloadexisti\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"iaasvmhanaworkloadexisti\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvmhanaworkload.existing/providers/Microsoft.Storage/storageAccounts/iaasvmhanaworkloadexisti\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;pscloudtestrg;pscloudtestrgdiag\",\r\n \"name\": \"StorageContainer;Storage;pscloudtestrg;pscloudtestrgdiag\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"pscloudtestrgdiag\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pscloudtestrg/providers/Microsoft.Storage/storageAccounts/pscloudtestrgdiag\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;PSTestRG1e5a278b;pstestsa1e5a278b\",\r\n \"name\": \"StorageContainer;Storage;PSTestRG1e5a278b;pstestsa1e5a278b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"pstestsa1e5a278b\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG1e5a278b/providers/Microsoft.Storage/storageAccounts/pstestsa1e5a278b\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;PSTestRG235879ba;pstestsa235879ba\",\r\n \"name\": \"StorageContainer;Storage;PSTestRG235879ba;pstestsa235879ba\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"pstestsa235879ba\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG235879ba/providers/Microsoft.Storage/storageAccounts/pstestsa235879ba\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;PSTestRG54bdf8da;pstestsa54bdf8da\",\r\n \"name\": \"StorageContainer;Storage;PSTestRG54bdf8da;pstestsa54bdf8da\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"pstestsa54bdf8da\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG54bdf8da/providers/Microsoft.Storage/storageAccounts/pstestsa54bdf8da\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;PSTestRG59e1706f;pstestsa59e1706f\",\r\n \"name\": \"StorageContainer;Storage;PSTestRG59e1706f;pstestsa59e1706f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"pstestsa59e1706f\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG59e1706f/providers/Microsoft.Storage/storageAccounts/pstestsa59e1706f\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895\",\r\n \"name\": \"StorageContainer;Storage;pstestrg8895;pstestsa8895\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"pstestsa8895\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstestsa8895\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;pstestrg8895;pstesttargetsa8895\",\r\n \"name\": \"StorageContainer;Storage;pstestrg8895;pstesttargetsa8895\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"pstesttargetsa8895\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstesttargetsa8895\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;pstestrg8895;pstesttargetsa8896\",\r\n \"name\": \"StorageContainer;Storage;pstestrg8895;pstesttargetsa8896\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"pstesttargetsa8896\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstesttargetsa8896\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;sambit_rg;sarathsa3\",\r\n \"name\": \"StorageContainer;Storage;sambit_rg;sarathsa3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"sarathsa3\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/sambit_rg/providers/Microsoft.Storage/storageAccounts/sarathsa3\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;afstests;02xseacan01otds1\",\r\n \"name\": \"StorageContainer;Storage;afstests;02xseacan01otds1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"02xseacan01otds1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/02xseacan01otds1\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;afstests;afsbackupsa\",\r\n \"name\": \"StorageContainer;Storage;afstests;afsbackupsa\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"afsbackupsa\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/afsbackupsa\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;afstests;storageysci5wbex6jyc\",\r\n \"name\": \"StorageContainer;Storage;afstests;storageysci5wbex6jyc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"storageysci5wbex6jyc\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/storageysci5wbex6jyc\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;akkanaseCMK;0byseapod01otds1\",\r\n \"name\": \"StorageContainer;Storage;akkanaseCMK;0byseapod01otds1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"0byseapod01otds1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseCMK/providers/Microsoft.Storage/storageAccounts/0byseapod01otds1\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;akkanaseGRSVault;frmseapod01otds1\",\r\n \"name\": \"StorageContainer;Storage;akkanaseGRSVault;frmseapod01otds1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"frmseapod01otds1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseGRSVault/providers/Microsoft.Storage/storageAccounts/frmseapod01otds1\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rglx72s62qimgelno2o6rr34a5ovdikhzq5k6dc7773qrbodtnrdcguic5hpiciscne;clitestva4qmim2g5c3cb2tz\",\r\n \"name\": \"StorageContainer;Storage;clitest.rglx72s62qimgelno2o6rr34a5ovdikhzq5k6dc7773qrbodtnrdcguic5hpiciscne;clitestva4qmim2g5c3cb2tz\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"clitestva4qmim2g5c3cb2tz\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rglx72s62qimgelno2o6rr34a5ovdikhzq5k6dc7773qrbodtnrdcguic5hpiciscne/providers/Microsoft.Storage/storageAccounts/clitestva4qmim2g5c3cb2tz\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgm7e2kiyzoto4iaicwwkdomftb7zki5kh2xxwh6yyskpflgsrpkrygkpwpdcltggyb;clitest7gyg4gqt4sxirqdkc\",\r\n \"name\": \"StorageContainer;Storage;clitest.rgm7e2kiyzoto4iaicwwkdomftb7zki5kh2xxwh6yyskpflgsrpkrygkpwpdcltggyb;clitest7gyg4gqt4sxirqdkc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"clitest7gyg4gqt4sxirqdkc\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rgm7e2kiyzoto4iaicwwkdomftb7zki5kh2xxwh6yyskpflgsrpkrygkpwpdcltggyb/providers/Microsoft.Storage/storageAccounts/clitest7gyg4gqt4sxirqdkc\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;cmk.system;cmkautomationstore\",\r\n \"name\": \"StorageContainer;Storage;cmk.system;cmkautomationstore\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"cmkautomationstore\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/cmk.system/providers/Microsoft.Storage/storageAccounts/cmkautomationstore\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;disk-bvt-test-rg;hv3seapod01otds1\",\r\n \"name\": \"StorageContainer;Storage;disk-bvt-test-rg;hv3seapod01otds1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"hv3seapod01otds1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/disk-bvt-test-rg/providers/Microsoft.Storage/storageAccounts/hv3seapod01otds1\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;DoNotUse-OSS-BVT-SEA-RG;dontuseossrestoreasfile\",\r\n \"name\": \"StorageContainer;Storage;DoNotUse-OSS-BVT-SEA-RG;dontuseossrestoreasfile\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"dontuseossrestoreasfile\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/DoNotUse-OSS-BVT-SEA-RG/providers/Microsoft.Storage/storageAccounts/dontuseossrestoreasfile\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;iaasvm.encryptedvm;iaasvmencryptedvmdiag170\",\r\n \"name\": \"StorageContainer;Storage;iaasvm.encryptedvm;iaasvmencryptedvmdiag170\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"iaasvmencryptedvmdiag170\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.encryptedvm/providers/Microsoft.Storage/storageAccounts/iaasvmencryptedvmdiag170\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;iaasvm.existing;iaasextstore1\",\r\n \"name\": \"StorageContainer;Storage;iaasvm.existing;iaasextstore1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"iaasextstore1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.existing/providers/Microsoft.Storage/storageAccounts/iaasextstore1\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;iaasvm.new;iaasvmnewdiag1\",\r\n \"name\": \"StorageContainer;Storage;iaasvm.new;iaasvmnewdiag1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"iaasvmnewdiag1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.new/providers/Microsoft.Storage/storageAccounts/iaasvmnewdiag1\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;iaasvmhanaworkload.existing;iaasvmhanaworkloadexisti\",\r\n \"name\": \"StorageContainer;Storage;iaasvmhanaworkload.existing;iaasvmhanaworkloadexisti\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"iaasvmhanaworkloadexisti\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvmhanaworkload.existing/providers/Microsoft.Storage/storageAccounts/iaasvmhanaworkloadexisti\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;pscloudtestrg;pscloudtestrgdiag\",\r\n \"name\": \"StorageContainer;Storage;pscloudtestrg;pscloudtestrgdiag\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"pscloudtestrgdiag\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pscloudtestrg/providers/Microsoft.Storage/storageAccounts/pscloudtestrgdiag\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;PSTestRG1e5a278b;pstestsa1e5a278b\",\r\n \"name\": \"StorageContainer;Storage;PSTestRG1e5a278b;pstestsa1e5a278b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"pstestsa1e5a278b\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG1e5a278b/providers/Microsoft.Storage/storageAccounts/pstestsa1e5a278b\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;PSTestRG235879ba;pstestsa235879ba\",\r\n \"name\": \"StorageContainer;Storage;PSTestRG235879ba;pstestsa235879ba\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"pstestsa235879ba\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG235879ba/providers/Microsoft.Storage/storageAccounts/pstestsa235879ba\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;PSTestRG54bdf8da;pstestsa54bdf8da\",\r\n \"name\": \"StorageContainer;Storage;PSTestRG54bdf8da;pstestsa54bdf8da\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"pstestsa54bdf8da\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG54bdf8da/providers/Microsoft.Storage/storageAccounts/pstestsa54bdf8da\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;PSTestRG59e1706f;pstestsa59e1706f\",\r\n \"name\": \"StorageContainer;Storage;PSTestRG59e1706f;pstestsa59e1706f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"pstestsa59e1706f\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG59e1706f/providers/Microsoft.Storage/storageAccounts/pstestsa59e1706f\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895\",\r\n \"name\": \"StorageContainer;Storage;pstestrg8895;pstestsa8895\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"pstestsa8895\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstestsa8895\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;pstestrg8895;pstesttargetsa8895\",\r\n \"name\": \"StorageContainer;Storage;pstestrg8895;pstesttargetsa8895\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"pstesttargetsa8895\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstesttargetsa8895\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;pstestrg8895;pstesttargetsa8896\",\r\n \"name\": \"StorageContainer;Storage;pstestrg8895;pstesttargetsa8896\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"pstesttargetsa8896\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstesttargetsa8896\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;sambit_rg;sarathsa3\",\r\n \"name\": \"StorageContainer;Storage;sambit_rg;sarathsa3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"sarathsa3\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/sambit_rg/providers/Microsoft.Storage/storageAccounts/sarathsa3\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NT9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"containerType\": \"StorageContainer\",\r\n \"sourceResourceId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstestsa8895\",\r\n \"resourceGroup\": \"pstestrg8895\",\r\n \"friendlyName\": \"pstestsa8895\",\r\n \"backupManagementType\": \"AzureStorage\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "d8e78e34-f966-4976-9fbd-58d17bcb5c8a" + "25dd5578-ff1a-4bc5-8226-b46696054475" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -589,23 +589,23 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationResults/bf069870-4060-4545-9f0b-b325b93314f1?api-version=2021-12-01" + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationResults/4edd258b-d336-4e83-ad55-d3ad3532b9c0?api-version=2022-02-01" ], "Retry-After": [ "60" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationsStatus/bf069870-4060-4545-9f0b-b325b93314f1?api-version=2019-05-13-preview" + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationsStatus/4edd258b-d336-4e83-ad55-d3ad3532b9c0?api-version=2019-05-13-preview" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "e64fb738-7bf7-4969-8269-30779220218c" + "552137ba-8e7c-4196-ac35-21b81c8d0e93" ], "x-ms-client-request-id": [ - "d8e78e34-f966-4976-9fbd-58d17bcb5c8a", - "d8e78e34-f966-4976-9fbd-58d17bcb5c8a" + "25dd5578-ff1a-4bc5-8226-b46696054475", + "25dd5578-ff1a-4bc5-8226-b46696054475" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -620,13 +620,13 @@ "1199" ], "x-ms-correlation-request-id": [ - "e64fb738-7bf7-4969-8269-30779220218c" + "552137ba-8e7c-4196-ac35-21b81c8d0e93" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T084821Z:e64fb738-7bf7-4969-8269-30779220218c" + "JIOINDIAWEST:20220516T154012Z:552137ba-8e7c-4196-ac35-21b81c8d0e93" ], "Date": [ - "Sat, 26 Mar 2022 08:48:21 GMT" + "Mon, 16 May 2022 15:40:11 GMT" ], "Content-Length": [ "2" @@ -642,22 +642,22 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895/operationResults/bf069870-4060-4545-9f0b-b325b93314f1?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9vcGVyYXRpb25SZXN1bHRzL2JmMDY5ODcwLTQwNjAtNDU0NS05ZjBiLWIzMjViOTMzMTRmMT9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895/operationResults/4edd258b-d336-4e83-ad55-d3ad3532b9c0?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9vcGVyYXRpb25SZXN1bHRzLzRlZGQyNThiLWQzMzYtNGU4My1hZDU1LWQzYWQzNTMyYjljMD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d8e78e34-f966-4976-9fbd-58d17bcb5c8a" + "25dd5578-ff1a-4bc5-8226-b46696054475" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -668,23 +668,23 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationResults/bf069870-4060-4545-9f0b-b325b93314f1?api-version=2021-12-01" + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationResults/4edd258b-d336-4e83-ad55-d3ad3532b9c0?api-version=2022-02-01" ], "Retry-After": [ "60" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationsStatus/bf069870-4060-4545-9f0b-b325b93314f1?api-version=2019-05-13-preview" + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationsStatus/4edd258b-d336-4e83-ad55-d3ad3532b9c0?api-version=2019-05-13-preview" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "aff9eb08-4343-457d-9855-0dccaa65a7a4" + "cc3a37ed-02f1-4db2-a79d-fcf18d0fa569" ], "x-ms-client-request-id": [ - "d8e78e34-f966-4976-9fbd-58d17bcb5c8a", - "d8e78e34-f966-4976-9fbd-58d17bcb5c8a" + "25dd5578-ff1a-4bc5-8226-b46696054475", + "25dd5578-ff1a-4bc5-8226-b46696054475" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -699,13 +699,13 @@ "299" ], "x-ms-correlation-request-id": [ - "aff9eb08-4343-457d-9855-0dccaa65a7a4" + "cc3a37ed-02f1-4db2-a79d-fcf18d0fa569" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T084821Z:aff9eb08-4343-457d-9855-0dccaa65a7a4" + "JIOINDIAWEST:20220516T154013Z:cc3a37ed-02f1-4db2-a79d-fcf18d0fa569" ], "Date": [ - "Sat, 26 Mar 2022 08:48:21 GMT" + "Mon, 16 May 2022 15:40:12 GMT" ], "Content-Length": [ "2" @@ -721,22 +721,22 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895/operationResults/bf069870-4060-4545-9f0b-b325b93314f1?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9vcGVyYXRpb25SZXN1bHRzL2JmMDY5ODcwLTQwNjAtNDU0NS05ZjBiLWIzMjViOTMzMTRmMT9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895/operationResults/4edd258b-d336-4e83-ad55-d3ad3532b9c0?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9vcGVyYXRpb25SZXN1bHRzLzRlZGQyNThiLWQzMzYtNGU4My1hZDU1LWQzYWQzNTMyYjljMD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d8e78e34-f966-4976-9fbd-58d17bcb5c8a" + "25dd5578-ff1a-4bc5-8226-b46696054475" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -747,23 +747,23 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationResults/bf069870-4060-4545-9f0b-b325b93314f1?api-version=2021-12-01" + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationResults/4edd258b-d336-4e83-ad55-d3ad3532b9c0?api-version=2022-02-01" ], "Retry-After": [ "60" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationsStatus/bf069870-4060-4545-9f0b-b325b93314f1?api-version=2019-05-13-preview" + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationsStatus/4edd258b-d336-4e83-ad55-d3ad3532b9c0?api-version=2019-05-13-preview" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "35f22f37-3309-4509-8e10-5ce476390fd1" + "40a8d9de-2649-473f-8e08-a2e4a94ad35a" ], "x-ms-client-request-id": [ - "d8e78e34-f966-4976-9fbd-58d17bcb5c8a", - "d8e78e34-f966-4976-9fbd-58d17bcb5c8a" + "25dd5578-ff1a-4bc5-8226-b46696054475", + "25dd5578-ff1a-4bc5-8226-b46696054475" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -778,13 +778,13 @@ "298" ], "x-ms-correlation-request-id": [ - "35f22f37-3309-4509-8e10-5ce476390fd1" + "40a8d9de-2649-473f-8e08-a2e4a94ad35a" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T084832Z:35f22f37-3309-4509-8e10-5ce476390fd1" + "JIOINDIAWEST:20220516T154019Z:40a8d9de-2649-473f-8e08-a2e4a94ad35a" ], "Date": [ - "Sat, 26 Mar 2022 08:48:31 GMT" + "Mon, 16 May 2022 15:40:18 GMT" ], "Content-Length": [ "2" @@ -800,22 +800,22 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895/operationResults/bf069870-4060-4545-9f0b-b325b93314f1?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9vcGVyYXRpb25SZXN1bHRzL2JmMDY5ODcwLTQwNjAtNDU0NS05ZjBiLWIzMjViOTMzMTRmMT9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895/operationResults/4edd258b-d336-4e83-ad55-d3ad3532b9c0?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9vcGVyYXRpb25SZXN1bHRzLzRlZGQyNThiLWQzMzYtNGU4My1hZDU1LWQzYWQzNTMyYjljMD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d8e78e34-f966-4976-9fbd-58d17bcb5c8a" + "25dd5578-ff1a-4bc5-8226-b46696054475" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -825,15 +825,24 @@ "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationResults/4edd258b-d336-4e83-ad55-d3ad3532b9c0?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationsStatus/4edd258b-d336-4e83-ad55-d3ad3532b9c0?api-version=2019-05-13-preview" + ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "4f111da2-8fe8-4b32-8f9c-3e1efac4ccd8" + "d6d97e4e-6ebb-47a5-8cac-84ae5f5b300e" ], "x-ms-client-request-id": [ - "d8e78e34-f966-4976-9fbd-58d17bcb5c8a", - "d8e78e34-f966-4976-9fbd-58d17bcb5c8a" + "25dd5578-ff1a-4bc5-8226-b46696054475", + "25dd5578-ff1a-4bc5-8226-b46696054475" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -848,13 +857,83 @@ "297" ], "x-ms-correlation-request-id": [ - "4f111da2-8fe8-4b32-8f9c-3e1efac4ccd8" + "d6d97e4e-6ebb-47a5-8cac-84ae5f5b300e" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T154024Z:d6d97e4e-6ebb-47a5-8cac-84ae5f5b300e" + ], + "Date": [ + "Mon, 16 May 2022 15:40:23 GMT" + ], + "Content-Length": [ + "2" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{}", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895/operationResults/4edd258b-d336-4e83-ad55-d3ad3532b9c0?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9vcGVyYXRpb25SZXN1bHRzLzRlZGQyNThiLWQzMzYtNGU4My1hZDU1LWQzYWQzNTMyYjljMD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "25dd5578-ff1a-4bc5-8226-b46696054475" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "8034eb36-b9c3-4039-8887-9b5ce630a8e6" + ], + "x-ms-client-request-id": [ + "25dd5578-ff1a-4bc5-8226-b46696054475", + "25dd5578-ff1a-4bc5-8226-b46696054475" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "296" + ], + "x-ms-correlation-request-id": [ + "8034eb36-b9c3-4039-8887-9b5ce630a8e6" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T084842Z:4f111da2-8fe8-4b32-8f9c-3e1efac4ccd8" + "JIOINDIAWEST:20220516T154030Z:8034eb36-b9c3-4039-8887-9b5ce630a8e6" ], "Date": [ - "Sat, 26 Mar 2022 08:48:42 GMT" + "Mon, 16 May 2022 15:40:29 GMT" ], "Content-Length": [ "737" @@ -870,22 +949,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895/operationResults/bf069870-4060-4545-9f0b-b325b93314f1?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9vcGVyYXRpb25SZXN1bHRzL2JmMDY5ODcwLTQwNjAtNDU0NS05ZjBiLWIzMjViOTMzMTRmMT9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895/operationResults/4edd258b-d336-4e83-ad55-d3ad3532b9c0?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9vcGVyYXRpb25SZXN1bHRzLzRlZGQyNThiLWQzMzYtNGU4My1hZDU1LWQzYWQzNTMyYjljMD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d8e78e34-f966-4976-9fbd-58d17bcb5c8a" + "25dd5578-ff1a-4bc5-8226-b46696054475" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -899,11 +978,11 @@ "nosniff" ], "x-ms-request-id": [ - "09adc083-01cb-4f9c-9222-7a4193ae414d" + "9d6616ca-3f31-4088-80c4-737170c65b6f" ], "x-ms-client-request-id": [ - "d8e78e34-f966-4976-9fbd-58d17bcb5c8a", - "d8e78e34-f966-4976-9fbd-58d17bcb5c8a" + "25dd5578-ff1a-4bc5-8226-b46696054475", + "25dd5578-ff1a-4bc5-8226-b46696054475" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -915,16 +994,16 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "296" + "295" ], "x-ms-correlation-request-id": [ - "09adc083-01cb-4f9c-9222-7a4193ae414d" + "9d6616ca-3f31-4088-80c4-737170c65b6f" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T084843Z:09adc083-01cb-4f9c-9222-7a4193ae414d" + "JIOINDIAWEST:20220516T154030Z:9d6616ca-3f31-4088-80c4-737170c65b6f" ], "Date": [ - "Sat, 26 Mar 2022 08:48:42 GMT" + "Mon, 16 May 2022 15:40:29 GMT" ], "Content-Length": [ "737" @@ -940,22 +1019,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupProtectableItems?$filter=backupManagementType%20eq%20'AzureStorage'&api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwUHJvdGVjdGFibGVJdGVtcz8kZmlsdGVyPWJhY2t1cE1hbmFnZW1lbnRUeXBlJTIwZXElMjAnQXp1cmVTdG9yYWdlJyZhcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupProtectableItems?$filter=backupManagementType%20eq%20'AzureStorage'&api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwUHJvdGVjdGFibGVJdGVtcz8kZmlsdGVyPWJhY2t1cE1hbmFnZW1lbnRUeXBlJTIwZXElMjAnQXp1cmVTdG9yYWdlJyZhcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d8e78e34-f966-4976-9fbd-58d17bcb5c8a" + "25dd5578-ff1a-4bc5-8226-b46696054475" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -969,11 +1048,11 @@ "nosniff" ], "x-ms-request-id": [ - "865a3fb4-4fcd-45e7-88b5-c996923f96c4" + "d4424450-9e36-4304-9adc-a87e136bd206" ], "x-ms-client-request-id": [ - "d8e78e34-f966-4976-9fbd-58d17bcb5c8a", - "d8e78e34-f966-4976-9fbd-58d17bcb5c8a" + "25dd5578-ff1a-4bc5-8226-b46696054475", + "25dd5578-ff1a-4bc5-8226-b46696054475" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -988,13 +1067,13 @@ "299" ], "x-ms-correlation-request-id": [ - "865a3fb4-4fcd-45e7-88b5-c996923f96c4" + "d4424450-9e36-4304-9adc-a87e136bd206" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T084843Z:865a3fb4-4fcd-45e7-88b5-c996923f96c4" + "JIOINDIAWEST:20220516T154031Z:d4424450-9e36-4304-9adc-a87e136bd206" ], "Date": [ - "Sat, 26 Mar 2022 08:48:42 GMT" + "Mon, 16 May 2022 15:40:30 GMT" ], "Content-Length": [ "947" @@ -1010,22 +1089,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/storagecontainer%3Bstorage%3Bpstestrg8895%3Bpstestsa8895/protectedItems/azurefileshare%3B698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9zdG9yYWdlY29udGFpbmVyJTNCc3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9wcm90ZWN0ZWRJdGVtcy9henVyZWZpbGVzaGFyZSUzQjY5OGRmNTk1OTQ4ZTIzNTVmMmJiNzQ0YTQxY2YyNDVkNGJhMTI1NWQ5Njk5Y2MzYzJhZDFmNTA0NWUxNzc5NTk/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/storagecontainer%3Bstorage%3Bpstestrg8895%3Bpstestsa8895/protectedItems/azurefileshare%3B698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9zdG9yYWdlY29udGFpbmVyJTNCc3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9wcm90ZWN0ZWRJdGVtcy9henVyZWZpbGVzaGFyZSUzQjY5OGRmNTk1OTQ4ZTIzNTVmMmJiNzQ0YTQxY2YyNDVkNGJhMTI1NWQ5Njk5Y2MzYzJhZDFmNTA0NWUxNzc5NTk/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"protectedItemType\": \"AzureFileShareProtectedItem\",\r\n \"sourceResourceId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstestsa8895\",\r\n \"policyId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupPolicies/afspolicy1\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "d8e78e34-f966-4976-9fbd-58d17bcb5c8a" + "25dd5578-ff1a-4bc5-8226-b46696054475" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1042,23 +1121,23 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/storagecontainer;storage;pstestrg8895;pstestsa8895/protectedItems/azurefileshare;698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959/operationResults/13f35fcc-0328-4eb7-bb47-0531630d4b52?api-version=2021-12-01" + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/storagecontainer;storage;pstestrg8895;pstestsa8895/protectedItems/azurefileshare;698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959/operationResults/2eee2302-1053-4c7f-a428-596efdfedd18?api-version=2022-02-01" ], "Retry-After": [ "60" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/storagecontainer;storage;pstestrg8895;pstestsa8895/protectedItems/azurefileshare;698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959/operationsStatus/13f35fcc-0328-4eb7-bb47-0531630d4b52?api-version=2021-12-01" + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/storagecontainer;storage;pstestrg8895;pstestsa8895/protectedItems/azurefileshare;698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959/operationsStatus/2eee2302-1053-4c7f-a428-596efdfedd18?api-version=2022-02-01" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "19fd293b-6b52-41ac-b47f-490690623c65" + "43767c55-9de9-44e7-883f-861c6655bf14" ], "x-ms-client-request-id": [ - "d8e78e34-f966-4976-9fbd-58d17bcb5c8a", - "d8e78e34-f966-4976-9fbd-58d17bcb5c8a" + "25dd5578-ff1a-4bc5-8226-b46696054475", + "25dd5578-ff1a-4bc5-8226-b46696054475" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1070,13 +1149,13 @@ "1198" ], "x-ms-correlation-request-id": [ - "19fd293b-6b52-41ac-b47f-490690623c65" + "43767c55-9de9-44e7-883f-861c6655bf14" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T084844Z:19fd293b-6b52-41ac-b47f-490690623c65" + "JIOINDIAWEST:20220516T154032Z:43767c55-9de9-44e7-883f-861c6655bf14" ], "Date": [ - "Sat, 26 Mar 2022 08:48:43 GMT" + "Mon, 16 May 2022 15:40:31 GMT" ], "Expires": [ "-1" @@ -1089,22 +1168,22 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/13f35fcc-0328-4eb7-bb47-0531630d4b52?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy8xM2YzNWZjYy0wMzI4LTRlYjctYmI0Ny0wNTMxNjMwZDRiNTI/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/2eee2302-1053-4c7f-a428-596efdfedd18?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy8yZWVlMjMwMi0xMDUzLTRjN2YtYTQyOC01OTZlZmRmZWRkMTg/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d8e78e34-f966-4976-9fbd-58d17bcb5c8a" + "25dd5578-ff1a-4bc5-8226-b46696054475" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -1118,11 +1197,11 @@ "nosniff" ], "x-ms-request-id": [ - "b22f0329-b692-4049-be45-e52d8fbee240" + "64c69d56-a33a-4578-ab73-67d1bd258838" ], "x-ms-client-request-id": [ - "d8e78e34-f966-4976-9fbd-58d17bcb5c8a", - "d8e78e34-f966-4976-9fbd-58d17bcb5c8a" + "25dd5578-ff1a-4bc5-8226-b46696054475", + "25dd5578-ff1a-4bc5-8226-b46696054475" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1137,13 +1216,13 @@ "299" ], "x-ms-correlation-request-id": [ - "b22f0329-b692-4049-be45-e52d8fbee240" + "64c69d56-a33a-4578-ab73-67d1bd258838" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T084844Z:b22f0329-b692-4049-be45-e52d8fbee240" + "JIOINDIAWEST:20220516T154033Z:64c69d56-a33a-4578-ab73-67d1bd258838" ], "Date": [ - "Sat, 26 Mar 2022 08:48:43 GMT" + "Mon, 16 May 2022 15:40:32 GMT" ], "Content-Length": [ "187" @@ -1155,26 +1234,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"13f35fcc-0328-4eb7-bb47-0531630d4b52\",\r\n \"name\": \"13f35fcc-0328-4eb7-bb47-0531630d4b52\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-03-26T08:48:44.032676Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"2eee2302-1053-4c7f-a428-596efdfedd18\",\r\n \"name\": \"2eee2302-1053-4c7f-a428-596efdfedd18\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:40:32.342656Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/13f35fcc-0328-4eb7-bb47-0531630d4b52?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy8xM2YzNWZjYy0wMzI4LTRlYjctYmI0Ny0wNTMxNjMwZDRiNTI/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/2eee2302-1053-4c7f-a428-596efdfedd18?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy8yZWVlMjMwMi0xMDUzLTRjN2YtYTQyOC01OTZlZmRmZWRkMTg/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d8e78e34-f966-4976-9fbd-58d17bcb5c8a" + "25dd5578-ff1a-4bc5-8226-b46696054475" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -1188,11 +1267,11 @@ "nosniff" ], "x-ms-request-id": [ - "b3c5c773-8a89-4533-a701-b96f884bd1c1" + "e4485664-0443-42a2-8b53-6679aaf22b18" ], "x-ms-client-request-id": [ - "d8e78e34-f966-4976-9fbd-58d17bcb5c8a", - "d8e78e34-f966-4976-9fbd-58d17bcb5c8a" + "25dd5578-ff1a-4bc5-8226-b46696054475", + "25dd5578-ff1a-4bc5-8226-b46696054475" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1207,13 +1286,13 @@ "298" ], "x-ms-correlation-request-id": [ - "b3c5c773-8a89-4533-a701-b96f884bd1c1" + "e4485664-0443-42a2-8b53-6679aaf22b18" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T084854Z:b3c5c773-8a89-4533-a701-b96f884bd1c1" + "JIOINDIAWEST:20220516T154038Z:e4485664-0443-42a2-8b53-6679aaf22b18" ], "Date": [ - "Sat, 26 Mar 2022 08:48:54 GMT" + "Mon, 16 May 2022 15:40:38 GMT" ], "Content-Length": [ "187" @@ -1225,26 +1304,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"13f35fcc-0328-4eb7-bb47-0531630d4b52\",\r\n \"name\": \"13f35fcc-0328-4eb7-bb47-0531630d4b52\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-03-26T08:48:44.032676Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"2eee2302-1053-4c7f-a428-596efdfedd18\",\r\n \"name\": \"2eee2302-1053-4c7f-a428-596efdfedd18\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:40:32.342656Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/13f35fcc-0328-4eb7-bb47-0531630d4b52?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy8xM2YzNWZjYy0wMzI4LTRlYjctYmI0Ny0wNTMxNjMwZDRiNTI/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/2eee2302-1053-4c7f-a428-596efdfedd18?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy8yZWVlMjMwMi0xMDUzLTRjN2YtYTQyOC01OTZlZmRmZWRkMTg/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d8e78e34-f966-4976-9fbd-58d17bcb5c8a" + "25dd5578-ff1a-4bc5-8226-b46696054475" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -1258,11 +1337,11 @@ "nosniff" ], "x-ms-request-id": [ - "0d7f0ee2-e64b-4aa0-86cb-96b866c000e3" + "fb4f0ca2-fe0d-4565-9bee-a18c24a01c6a" ], "x-ms-client-request-id": [ - "d8e78e34-f966-4976-9fbd-58d17bcb5c8a", - "d8e78e34-f966-4976-9fbd-58d17bcb5c8a" + "25dd5578-ff1a-4bc5-8226-b46696054475", + "25dd5578-ff1a-4bc5-8226-b46696054475" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1277,13 +1356,13 @@ "297" ], "x-ms-correlation-request-id": [ - "0d7f0ee2-e64b-4aa0-86cb-96b866c000e3" + "fb4f0ca2-fe0d-4565-9bee-a18c24a01c6a" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T084905Z:0d7f0ee2-e64b-4aa0-86cb-96b866c000e3" + "JIOINDIAWEST:20220516T154044Z:fb4f0ca2-fe0d-4565-9bee-a18c24a01c6a" ], "Date": [ - "Sat, 26 Mar 2022 08:49:04 GMT" + "Mon, 16 May 2022 15:40:44 GMT" ], "Content-Length": [ "187" @@ -1295,26 +1374,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"13f35fcc-0328-4eb7-bb47-0531630d4b52\",\r\n \"name\": \"13f35fcc-0328-4eb7-bb47-0531630d4b52\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-03-26T08:48:44.032676Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"2eee2302-1053-4c7f-a428-596efdfedd18\",\r\n \"name\": \"2eee2302-1053-4c7f-a428-596efdfedd18\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:40:32.342656Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/13f35fcc-0328-4eb7-bb47-0531630d4b52?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy8xM2YzNWZjYy0wMzI4LTRlYjctYmI0Ny0wNTMxNjMwZDRiNTI/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/2eee2302-1053-4c7f-a428-596efdfedd18?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy8yZWVlMjMwMi0xMDUzLTRjN2YtYTQyOC01OTZlZmRmZWRkMTg/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d8e78e34-f966-4976-9fbd-58d17bcb5c8a" + "25dd5578-ff1a-4bc5-8226-b46696054475" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -1328,11 +1407,11 @@ "nosniff" ], "x-ms-request-id": [ - "2951702e-b810-4881-950b-9a8d685c5334" + "90e4d945-5e4f-4c1a-ac19-aa07dcd5c61a" ], "x-ms-client-request-id": [ - "d8e78e34-f966-4976-9fbd-58d17bcb5c8a", - "d8e78e34-f966-4976-9fbd-58d17bcb5c8a" + "25dd5578-ff1a-4bc5-8226-b46696054475", + "25dd5578-ff1a-4bc5-8226-b46696054475" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1347,13 +1426,13 @@ "296" ], "x-ms-correlation-request-id": [ - "2951702e-b810-4881-950b-9a8d685c5334" + "90e4d945-5e4f-4c1a-ac19-aa07dcd5c61a" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T084915Z:2951702e-b810-4881-950b-9a8d685c5334" + "JIOINDIAWEST:20220516T154049Z:90e4d945-5e4f-4c1a-ac19-aa07dcd5c61a" ], "Date": [ - "Sat, 26 Mar 2022 08:49:15 GMT" + "Mon, 16 May 2022 15:40:49 GMT" ], "Content-Length": [ "187" @@ -1365,26 +1444,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"13f35fcc-0328-4eb7-bb47-0531630d4b52\",\r\n \"name\": \"13f35fcc-0328-4eb7-bb47-0531630d4b52\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-03-26T08:48:44.032676Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"2eee2302-1053-4c7f-a428-596efdfedd18\",\r\n \"name\": \"2eee2302-1053-4c7f-a428-596efdfedd18\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:40:32.342656Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/13f35fcc-0328-4eb7-bb47-0531630d4b52?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy8xM2YzNWZjYy0wMzI4LTRlYjctYmI0Ny0wNTMxNjMwZDRiNTI/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/2eee2302-1053-4c7f-a428-596efdfedd18?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy8yZWVlMjMwMi0xMDUzLTRjN2YtYTQyOC01OTZlZmRmZWRkMTg/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d8e78e34-f966-4976-9fbd-58d17bcb5c8a" + "25dd5578-ff1a-4bc5-8226-b46696054475" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -1398,11 +1477,11 @@ "nosniff" ], "x-ms-request-id": [ - "3e87266f-4b72-4bff-b721-9812e78fcc01" + "07dd8042-7d22-4007-981e-00bbeb06d6f3" ], "x-ms-client-request-id": [ - "d8e78e34-f966-4976-9fbd-58d17bcb5c8a", - "d8e78e34-f966-4976-9fbd-58d17bcb5c8a" + "25dd5578-ff1a-4bc5-8226-b46696054475", + "25dd5578-ff1a-4bc5-8226-b46696054475" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1417,13 +1496,13 @@ "295" ], "x-ms-correlation-request-id": [ - "3e87266f-4b72-4bff-b721-9812e78fcc01" + "07dd8042-7d22-4007-981e-00bbeb06d6f3" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T084926Z:3e87266f-4b72-4bff-b721-9812e78fcc01" + "JIOINDIAWEST:20220516T154055Z:07dd8042-7d22-4007-981e-00bbeb06d6f3" ], "Date": [ - "Sat, 26 Mar 2022 08:49:25 GMT" + "Mon, 16 May 2022 15:40:55 GMT" ], "Content-Length": [ "187" @@ -1435,26 +1514,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"13f35fcc-0328-4eb7-bb47-0531630d4b52\",\r\n \"name\": \"13f35fcc-0328-4eb7-bb47-0531630d4b52\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-03-26T08:48:44.032676Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"2eee2302-1053-4c7f-a428-596efdfedd18\",\r\n \"name\": \"2eee2302-1053-4c7f-a428-596efdfedd18\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:40:32.342656Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/13f35fcc-0328-4eb7-bb47-0531630d4b52?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy8xM2YzNWZjYy0wMzI4LTRlYjctYmI0Ny0wNTMxNjMwZDRiNTI/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/2eee2302-1053-4c7f-a428-596efdfedd18?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy8yZWVlMjMwMi0xMDUzLTRjN2YtYTQyOC01OTZlZmRmZWRkMTg/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d8e78e34-f966-4976-9fbd-58d17bcb5c8a" + "25dd5578-ff1a-4bc5-8226-b46696054475" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -1468,11 +1547,11 @@ "nosniff" ], "x-ms-request-id": [ - "de12c5c8-0762-4d2b-84da-9359d39c5844" + "426b4d31-7dcd-4042-863e-cd0d807556f6" ], "x-ms-client-request-id": [ - "d8e78e34-f966-4976-9fbd-58d17bcb5c8a", - "d8e78e34-f966-4976-9fbd-58d17bcb5c8a" + "25dd5578-ff1a-4bc5-8226-b46696054475", + "25dd5578-ff1a-4bc5-8226-b46696054475" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1487,16 +1566,16 @@ "294" ], "x-ms-correlation-request-id": [ - "de12c5c8-0762-4d2b-84da-9359d39c5844" + "426b4d31-7dcd-4042-863e-cd0d807556f6" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T084936Z:de12c5c8-0762-4d2b-84da-9359d39c5844" + "JIOINDIAWEST:20220516T154100Z:426b4d31-7dcd-4042-863e-cd0d807556f6" ], "Date": [ - "Sat, 26 Mar 2022 08:49:35 GMT" + "Mon, 16 May 2022 15:41:00 GMT" ], "Content-Length": [ - "302" + "187" ], "Content-Type": [ "application/json" @@ -1505,26 +1584,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"13f35fcc-0328-4eb7-bb47-0531630d4b52\",\r\n \"name\": \"13f35fcc-0328-4eb7-bb47-0531630d4b52\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-03-26T08:48:44.032676Z\",\r\n \"endTime\": \"2022-03-26T08:48:44.032676Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"8b5d9156-8fb0-4bd6-9f6c-91682fbd6df1\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"2eee2302-1053-4c7f-a428-596efdfedd18\",\r\n \"name\": \"2eee2302-1053-4c7f-a428-596efdfedd18\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:40:32.342656Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/13f35fcc-0328-4eb7-bb47-0531630d4b52?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy8xM2YzNWZjYy0wMzI4LTRlYjctYmI0Ny0wNTMxNjMwZDRiNTI/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/2eee2302-1053-4c7f-a428-596efdfedd18?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy8yZWVlMjMwMi0xMDUzLTRjN2YtYTQyOC01OTZlZmRmZWRkMTg/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d8e78e34-f966-4976-9fbd-58d17bcb5c8a" + "25dd5578-ff1a-4bc5-8226-b46696054475" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -1538,11 +1617,11 @@ "nosniff" ], "x-ms-request-id": [ - "425ed9ac-8b49-45ba-b32b-e44588e6eca0" + "67f9f2c8-e22c-4866-a62a-8bc0e128c7bf" ], "x-ms-client-request-id": [ - "d8e78e34-f966-4976-9fbd-58d17bcb5c8a", - "d8e78e34-f966-4976-9fbd-58d17bcb5c8a" + "25dd5578-ff1a-4bc5-8226-b46696054475", + "25dd5578-ff1a-4bc5-8226-b46696054475" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1557,13 +1636,223 @@ "293" ], "x-ms-correlation-request-id": [ - "425ed9ac-8b49-45ba-b32b-e44588e6eca0" + "67f9f2c8-e22c-4866-a62a-8bc0e128c7bf" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T154106Z:67f9f2c8-e22c-4866-a62a-8bc0e128c7bf" + ], + "Date": [ + "Mon, 16 May 2022 15:41:05 GMT" + ], + "Content-Length": [ + "187" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"2eee2302-1053-4c7f-a428-596efdfedd18\",\r\n \"name\": \"2eee2302-1053-4c7f-a428-596efdfedd18\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:40:32.342656Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/2eee2302-1053-4c7f-a428-596efdfedd18?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy8yZWVlMjMwMi0xMDUzLTRjN2YtYTQyOC01OTZlZmRmZWRkMTg/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "25dd5578-ff1a-4bc5-8226-b46696054475" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "58282cbb-fafb-4161-abaf-03d0d156599e" + ], + "x-ms-client-request-id": [ + "25dd5578-ff1a-4bc5-8226-b46696054475", + "25dd5578-ff1a-4bc5-8226-b46696054475" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "292" + ], + "x-ms-correlation-request-id": [ + "58282cbb-fafb-4161-abaf-03d0d156599e" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T084936Z:425ed9ac-8b49-45ba-b32b-e44588e6eca0" + "JIOINDIAWEST:20220516T154111Z:58282cbb-fafb-4161-abaf-03d0d156599e" ], "Date": [ - "Sat, 26 Mar 2022 08:49:36 GMT" + "Mon, 16 May 2022 15:41:11 GMT" + ], + "Content-Length": [ + "187" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"2eee2302-1053-4c7f-a428-596efdfedd18\",\r\n \"name\": \"2eee2302-1053-4c7f-a428-596efdfedd18\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:40:32.342656Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/2eee2302-1053-4c7f-a428-596efdfedd18?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy8yZWVlMjMwMi0xMDUzLTRjN2YtYTQyOC01OTZlZmRmZWRkMTg/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "25dd5578-ff1a-4bc5-8226-b46696054475" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "e408f5ee-b708-479d-932f-d77147317d8f" + ], + "x-ms-client-request-id": [ + "25dd5578-ff1a-4bc5-8226-b46696054475", + "25dd5578-ff1a-4bc5-8226-b46696054475" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "291" + ], + "x-ms-correlation-request-id": [ + "e408f5ee-b708-479d-932f-d77147317d8f" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T154117Z:e408f5ee-b708-479d-932f-d77147317d8f" + ], + "Date": [ + "Mon, 16 May 2022 15:41:16 GMT" + ], + "Content-Length": [ + "302" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"2eee2302-1053-4c7f-a428-596efdfedd18\",\r\n \"name\": \"2eee2302-1053-4c7f-a428-596efdfedd18\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-05-16T15:40:32.342656Z\",\r\n \"endTime\": \"2022-05-16T15:40:32.342656Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"e7e468c3-5f49-4bba-937c-665aaccb7908\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/2eee2302-1053-4c7f-a428-596efdfedd18?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy8yZWVlMjMwMi0xMDUzLTRjN2YtYTQyOC01OTZlZmRmZWRkMTg/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "25dd5578-ff1a-4bc5-8226-b46696054475" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "c5370789-af9a-4388-a477-6b33d35af32a" + ], + "x-ms-client-request-id": [ + "25dd5578-ff1a-4bc5-8226-b46696054475", + "25dd5578-ff1a-4bc5-8226-b46696054475" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "290" + ], + "x-ms-correlation-request-id": [ + "c5370789-af9a-4388-a477-6b33d35af32a" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T154118Z:c5370789-af9a-4388-a477-6b33d35af32a" + ], + "Date": [ + "Mon, 16 May 2022 15:41:17 GMT" ], "Content-Length": [ "302" @@ -1575,26 +1864,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"13f35fcc-0328-4eb7-bb47-0531630d4b52\",\r\n \"name\": \"13f35fcc-0328-4eb7-bb47-0531630d4b52\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-03-26T08:48:44.032676Z\",\r\n \"endTime\": \"2022-03-26T08:48:44.032676Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"8b5d9156-8fb0-4bd6-9f6c-91682fbd6df1\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"2eee2302-1053-4c7f-a428-596efdfedd18\",\r\n \"name\": \"2eee2302-1053-4c7f-a428-596efdfedd18\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-05-16T15:40:32.342656Z\",\r\n \"endTime\": \"2022-05-16T15:40:32.342656Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"e7e468c3-5f49-4bba-937c-665aaccb7908\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/8b5d9156-8fb0-4bd6-9f6c-91682fbd6df1?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy84YjVkOTE1Ni04ZmIwLTRiZDYtOWY2Yy05MTY4MmZiZDZkZjE/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e7e468c3-5f49-4bba-937c-665aaccb7908?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lN2U0NjhjMy01ZjQ5LTRiYmEtOTM3Yy02NjVhYWNjYjc5MDg/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d8e78e34-f966-4976-9fbd-58d17bcb5c8a" + "25dd5578-ff1a-4bc5-8226-b46696054475" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -1612,11 +1901,11 @@ "nosniff" ], "x-ms-request-id": [ - "e728b0ac-ac99-498c-ab96-247f869cfcfc" + "63984a54-a3af-4399-b790-15ecab53f2eb" ], "x-ms-client-request-id": [ - "d8e78e34-f966-4976-9fbd-58d17bcb5c8a", - "d8e78e34-f966-4976-9fbd-58d17bcb5c8a" + "25dd5578-ff1a-4bc5-8226-b46696054475", + "25dd5578-ff1a-4bc5-8226-b46696054475" ], "X-Powered-By": [ "ASP.NET" @@ -1628,13 +1917,13 @@ "299" ], "x-ms-correlation-request-id": [ - "e728b0ac-ac99-498c-ab96-247f869cfcfc" + "63984a54-a3af-4399-b790-15ecab53f2eb" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T084937Z:e728b0ac-ac99-498c-ab96-247f869cfcfc" + "JIOINDIAWEST:20220516T154118Z:63984a54-a3af-4399-b790-15ecab53f2eb" ], "Date": [ - "Sat, 26 Mar 2022 08:49:36 GMT" + "Mon, 16 May 2022 15:41:18 GMT" ], "Content-Length": [ "846" @@ -1646,26 +1935,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/8b5d9156-8fb0-4bd6-9f6c-91682fbd6df1\",\r\n \"name\": \"8b5d9156-8fb0-4bd6-9f6c-91682fbd6df1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT42.3312149S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"Storage\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"File Share Name\": \"fs1\",\r\n \"Storage Account Name\": \"pstestsa8895\",\r\n \"Policy Name\": \"afspolicy1\"\r\n }\r\n },\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"ConfigureBackup\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-03-26T08:48:44.032676Z\",\r\n \"endTime\": \"2022-03-26T08:49:26.3638909Z\",\r\n \"activityId\": \"d8e78e34-f966-4976-9fbd-58d17bcb5c8a\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e7e468c3-5f49-4bba-937c-665aaccb7908\",\r\n \"name\": \"e7e468c3-5f49-4bba-937c-665aaccb7908\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT42.5795149S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"Storage\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"File Share Name\": \"fs1\",\r\n \"Storage Account Name\": \"pstestsa8895\",\r\n \"Policy Name\": \"afspolicy1\"\r\n }\r\n },\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"ConfigureBackup\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-05-16T15:40:32.342656Z\",\r\n \"endTime\": \"2022-05-16T15:41:14.9221709Z\",\r\n \"activityId\": \"25dd5578-ff1a-4bc5-8226-b46696054475\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupProtectedItems?$filter=backupManagementType%20eq%20'AzureStorage'%20and%20itemType%20eq%20'AzureFileShare'&api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwUHJvdGVjdGVkSXRlbXM/JGZpbHRlcj1iYWNrdXBNYW5hZ2VtZW50VHlwZSUyMGVxJTIwJ0F6dXJlU3RvcmFnZSclMjBhbmQlMjBpdGVtVHlwZSUyMGVxJTIwJ0F6dXJlRmlsZVNoYXJlJyZhcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupProtectedItems?$filter=backupManagementType%20eq%20'AzureStorage'%20and%20itemType%20eq%20'AzureFileShare'&api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwUHJvdGVjdGVkSXRlbXM/JGZpbHRlcj1iYWNrdXBNYW5hZ2VtZW50VHlwZSUyMGVxJTIwJ0F6dXJlU3RvcmFnZSclMjBhbmQlMjBpdGVtVHlwZSUyMGVxJTIwJ0F6dXJlRmlsZVNoYXJlJyZhcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b09e1a2d-8524-471b-a265-390f1f57ed86" + "18383644-0f52-42ae-b516-21b59fb5ea4c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -1679,11 +1968,11 @@ "nosniff" ], "x-ms-request-id": [ - "bfc56001-44f6-4aeb-a40e-27748f99215f" + "eb87d7c2-0bcd-44d3-a80e-3ea0aafabc47" ], "x-ms-client-request-id": [ - "b09e1a2d-8524-471b-a265-390f1f57ed86", - "b09e1a2d-8524-471b-a265-390f1f57ed86" + "18383644-0f52-42ae-b516-21b59fb5ea4c", + "18383644-0f52-42ae-b516-21b59fb5ea4c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1698,13 +1987,13 @@ "299" ], "x-ms-correlation-request-id": [ - "bfc56001-44f6-4aeb-a40e-27748f99215f" + "eb87d7c2-0bcd-44d3-a80e-3ea0aafabc47" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T084938Z:bfc56001-44f6-4aeb-a40e-27748f99215f" + "JIOINDIAWEST:20220516T154119Z:eb87d7c2-0bcd-44d3-a80e-3ea0aafabc47" ], "Date": [ - "Sat, 26 Mar 2022 08:49:37 GMT" + "Mon, 16 May 2022 15:41:19 GMT" ], "Content-Length": [ "1219" @@ -1720,22 +2009,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3Bstorage%3Bpstestrg8895%3Bpstestsa8895/protectedItems/AzureFileShare%3B698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959?$filter=expand%20eq%20'extendedinfo'&api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCc3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9wcm90ZWN0ZWRJdGVtcy9BenVyZUZpbGVTaGFyZSUzQjY5OGRmNTk1OTQ4ZTIzNTVmMmJiNzQ0YTQxY2YyNDVkNGJhMTI1NWQ5Njk5Y2MzYzJhZDFmNTA0NWUxNzc5NTk/JGZpbHRlcj1leHBhbmQlMjBlcSUyMCdleHRlbmRlZGluZm8nJmFwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3Bstorage%3Bpstestrg8895%3Bpstestsa8895/protectedItems/AzureFileShare%3B698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959?$filter=expand%20eq%20'extendedinfo'&api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCc3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9wcm90ZWN0ZWRJdGVtcy9BenVyZUZpbGVTaGFyZSUzQjY5OGRmNTk1OTQ4ZTIzNTVmMmJiNzQ0YTQxY2YyNDVkNGJhMTI1NWQ5Njk5Y2MzYzJhZDFmNTA0NWUxNzc5NTk/JGZpbHRlcj1leHBhbmQlMjBlcSUyMCdleHRlbmRlZGluZm8nJmFwaS12ZXJzaW9uPTIwMjItMDItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b09e1a2d-8524-471b-a265-390f1f57ed86" + "18383644-0f52-42ae-b516-21b59fb5ea4c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -1749,11 +2038,11 @@ "nosniff" ], "x-ms-request-id": [ - "933e4257-94e7-49ff-9ec4-b9dd5d07d9fe" + "26388b50-3a06-4aed-8e8b-bbd1013a5458" ], "x-ms-client-request-id": [ - "b09e1a2d-8524-471b-a265-390f1f57ed86", - "b09e1a2d-8524-471b-a265-390f1f57ed86" + "18383644-0f52-42ae-b516-21b59fb5ea4c", + "18383644-0f52-42ae-b516-21b59fb5ea4c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1768,13 +2057,13 @@ "299" ], "x-ms-correlation-request-id": [ - "933e4257-94e7-49ff-9ec4-b9dd5d07d9fe" + "26388b50-3a06-4aed-8e8b-bbd1013a5458" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T084938Z:933e4257-94e7-49ff-9ec4-b9dd5d07d9fe" + "JIOINDIAWEST:20220516T154121Z:26388b50-3a06-4aed-8e8b-bbd1013a5458" ], "Date": [ - "Sat, 26 Mar 2022 08:49:38 GMT" + "Mon, 16 May 2022 15:41:20 GMT" ], "Content-Length": [ "1354" @@ -1786,26 +2075,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;storage;pstestrg8895;pstestsa8895/protectedItems/AzureFileShare;698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959\",\r\n \"name\": \"AzureFileShare;698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems\",\r\n \"properties\": {\r\n \"kpisHealths\": {},\r\n \"friendlyName\": \"fs1\",\r\n \"protectionStatus\": \"Healthy\",\r\n \"protectionState\": \"IRPending\",\r\n \"lastBackupStatus\": \"IRPending\",\r\n \"extendedInfo\": {\r\n \"recoveryPointCount\": 0,\r\n \"policyState\": \"Consistent\",\r\n \"resourceState\": \"Active\",\r\n \"resourceStateSyncTime\": \"2022-03-26T08:49:25.8624929Z\"\r\n },\r\n \"protectedItemType\": \"AzureFileShareProtectedItem\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"workloadType\": \"AzureFileShare\",\r\n \"containerName\": \"StorageContainer;storage;pstestrg8895;pstestsa8895\",\r\n \"sourceResourceId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.storage/storageAccounts/pstestsa8895\",\r\n \"policyId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupPolicies/afspolicy1\",\r\n \"isArchiveEnabled\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;storage;pstestrg8895;pstestsa8895/protectedItems/AzureFileShare;698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959\",\r\n \"name\": \"AzureFileShare;698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems\",\r\n \"properties\": {\r\n \"kpisHealths\": {},\r\n \"friendlyName\": \"fs1\",\r\n \"protectionStatus\": \"Healthy\",\r\n \"protectionState\": \"IRPending\",\r\n \"lastBackupStatus\": \"IRPending\",\r\n \"extendedInfo\": {\r\n \"recoveryPointCount\": 0,\r\n \"policyState\": \"Consistent\",\r\n \"resourceState\": \"Active\",\r\n \"resourceStateSyncTime\": \"2022-05-16T15:41:14.6096508Z\"\r\n },\r\n \"protectedItemType\": \"AzureFileShareProtectedItem\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"workloadType\": \"AzureFileShare\",\r\n \"containerName\": \"StorageContainer;storage;pstestrg8895;pstestsa8895\",\r\n \"sourceResourceId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.storage/storageAccounts/pstestsa8895\",\r\n \"policyId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupPolicies/afspolicy1\",\r\n \"isArchiveEnabled\": false\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupProtectionContainers?$filter=backupManagementType%20eq%20'AzureStorage'%20and%20status%20eq%20'Registered'&api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwUHJvdGVjdGlvbkNvbnRhaW5lcnM/JGZpbHRlcj1iYWNrdXBNYW5hZ2VtZW50VHlwZSUyMGVxJTIwJ0F6dXJlU3RvcmFnZSclMjBhbmQlMjBzdGF0dXMlMjBlcSUyMCdSZWdpc3RlcmVkJyZhcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupProtectionContainers?$filter=backupManagementType%20eq%20'AzureStorage'%20and%20status%20eq%20'Registered'&api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwUHJvdGVjdGlvbkNvbnRhaW5lcnM/JGZpbHRlcj1iYWNrdXBNYW5hZ2VtZW50VHlwZSUyMGVxJTIwJ0F6dXJlU3RvcmFnZSclMjBhbmQlMjBzdGF0dXMlMjBlcSUyMCdSZWdpc3RlcmVkJyZhcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a95d3152-d814-4267-b404-eabaf6de8e97" + "385024da-7e37-49d9-8e4c-5bddf8510f02" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -1819,11 +2108,11 @@ "nosniff" ], "x-ms-request-id": [ - "f453046d-d22f-40a4-aaf5-12a6693f05f7" + "32b03a24-5091-4266-9ee5-4cd473780821" ], "x-ms-client-request-id": [ - "a95d3152-d814-4267-b404-eabaf6de8e97", - "a95d3152-d814-4267-b404-eabaf6de8e97" + "385024da-7e37-49d9-8e4c-5bddf8510f02", + "385024da-7e37-49d9-8e4c-5bddf8510f02" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1838,13 +2127,13 @@ "296" ], "x-ms-correlation-request-id": [ - "f453046d-d22f-40a4-aaf5-12a6693f05f7" + "32b03a24-5091-4266-9ee5-4cd473780821" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T084939Z:f453046d-d22f-40a4-aaf5-12a6693f05f7" + "JIOINDIAWEST:20220516T154121Z:32b03a24-5091-4266-9ee5-4cd473780821" ], "Date": [ - "Sat, 26 Mar 2022 08:49:38 GMT" + "Mon, 16 May 2022 15:41:21 GMT" ], "Content-Length": [ "827" @@ -1860,22 +2149,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupProtectionContainers?$filter=backupManagementType%20eq%20'AzureStorage'%20and%20status%20eq%20'Registered'&api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwUHJvdGVjdGlvbkNvbnRhaW5lcnM/JGZpbHRlcj1iYWNrdXBNYW5hZ2VtZW50VHlwZSUyMGVxJTIwJ0F6dXJlU3RvcmFnZSclMjBhbmQlMjBzdGF0dXMlMjBlcSUyMCdSZWdpc3RlcmVkJyZhcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupProtectionContainers?$filter=backupManagementType%20eq%20'AzureStorage'%20and%20status%20eq%20'Registered'&api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwUHJvdGVjdGlvbkNvbnRhaW5lcnM/JGZpbHRlcj1iYWNrdXBNYW5hZ2VtZW50VHlwZSUyMGVxJTIwJ0F6dXJlU3RvcmFnZSclMjBhbmQlMjBzdGF0dXMlMjBlcSUyMCdSZWdpc3RlcmVkJyZhcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f62a53ad-59c2-41f4-8158-93304e7af591" + "b60d9bfc-2691-4501-a6b3-f8a7c0e299c3" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -1889,11 +2178,11 @@ "nosniff" ], "x-ms-request-id": [ - "e89d6c85-b600-41b6-90cf-638d952fd3a5" + "008aa7e7-d488-45db-95a4-9626a3aaafa4" ], "x-ms-client-request-id": [ - "f62a53ad-59c2-41f4-8158-93304e7af591", - "f62a53ad-59c2-41f4-8158-93304e7af591" + "b60d9bfc-2691-4501-a6b3-f8a7c0e299c3", + "b60d9bfc-2691-4501-a6b3-f8a7c0e299c3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1908,13 +2197,13 @@ "294" ], "x-ms-correlation-request-id": [ - "e89d6c85-b600-41b6-90cf-638d952fd3a5" + "008aa7e7-d488-45db-95a4-9626a3aaafa4" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T084939Z:e89d6c85-b600-41b6-90cf-638d952fd3a5" + "JIOINDIAWEST:20220516T154122Z:008aa7e7-d488-45db-95a4-9626a3aaafa4" ], "Date": [ - "Sat, 26 Mar 2022 08:49:39 GMT" + "Mon, 16 May 2022 15:41:22 GMT" ], "Content-Length": [ "827" @@ -1930,22 +2219,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3Bstorage%3Bpstestrg8895%3Bpstestsa8895/protectedItems/AzureFileShare%3B698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959/recoveryPoints?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCc3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9wcm90ZWN0ZWRJdGVtcy9BenVyZUZpbGVTaGFyZSUzQjY5OGRmNTk1OTQ4ZTIzNTVmMmJiNzQ0YTQxY2YyNDVkNGJhMTI1NWQ5Njk5Y2MzYzJhZDFmNTA0NWUxNzc5NTkvcmVjb3ZlcnlQb2ludHM/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3Bstorage%3Bpstestrg8895%3Bpstestsa8895/protectedItems/AzureFileShare%3B698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959/recoveryPoints?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCc3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9wcm90ZWN0ZWRJdGVtcy9BenVyZUZpbGVTaGFyZSUzQjY5OGRmNTk1OTQ4ZTIzNTVmMmJiNzQ0YTQxY2YyNDVkNGJhMTI1NWQ5Njk5Y2MzYzJhZDFmNTA0NWUxNzc5NTkvcmVjb3ZlcnlQb2ludHM/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8a9ac54c-c681-4ab4-9c14-bf595fdceb5f" + "398c1e97-1e96-4e46-8414-970f532af784" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -1959,11 +2248,11 @@ "nosniff" ], "x-ms-request-id": [ - "5b8548c8-ffec-49c0-bb80-da2f31959d20" + "46c1b4d6-ffc2-42c2-afd9-bc8a5b7b55ae" ], "x-ms-client-request-id": [ - "8a9ac54c-c681-4ab4-9c14-bf595fdceb5f", - "8a9ac54c-c681-4ab4-9c14-bf595fdceb5f" + "398c1e97-1e96-4e46-8414-970f532af784", + "398c1e97-1e96-4e46-8414-970f532af784" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1978,13 +2267,13 @@ "299" ], "x-ms-correlation-request-id": [ - "5b8548c8-ffec-49c0-bb80-da2f31959d20" + "46c1b4d6-ffc2-42c2-afd9-bc8a5b7b55ae" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T084940Z:5b8548c8-ffec-49c0-bb80-da2f31959d20" + "JIOINDIAWEST:20220516T154124Z:46c1b4d6-ffc2-42c2-afd9-bc8a5b7b55ae" ], "Date": [ - "Sat, 26 Mar 2022 08:49:40 GMT" + "Mon, 16 May 2022 15:41:23 GMT" ], "Content-Length": [ "12" @@ -2000,22 +2289,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3Bstorage%3Bpstestrg8895%3Bpstestsa8895/protectedItems/AzureFileShare%3B698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCc3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9wcm90ZWN0ZWRJdGVtcy9BenVyZUZpbGVTaGFyZSUzQjY5OGRmNTk1OTQ4ZTIzNTVmMmJiNzQ0YTQxY2YyNDVkNGJhMTI1NWQ5Njk5Y2MzYzJhZDFmNTA0NWUxNzc5NTk/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", - "RequestMethod": "DELETE", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupResourceGuardProxies?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwUmVzb3VyY2VHdWFyZFByb3hpZXM/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8a9ac54c-c681-4ab4-9c14-bf595fdceb5f" + "398c1e97-1e96-4e46-8414-970f532af784" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -2025,70 +2314,67 @@ "Pragma": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperationResults/13798e16-9959-457c-ae0f-446e46aa5932?api-version=2021-12-01" - ], - "Retry-After": [ - "60" - ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/13798e16-9959-457c-ae0f-446e46aa5932?api-version=2021-12-01" - ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "c7614193-82bd-47dd-8e0f-20021465cda6" + "9b0182db-48cd-47ff-a93c-f6101729db8d" ], "x-ms-client-request-id": [ - "8a9ac54c-c681-4ab4-9c14-bf595fdceb5f", - "8a9ac54c-c681-4ab4-9c14-bf595fdceb5f" + "398c1e97-1e96-4e46-8414-970f532af784", + "398c1e97-1e96-4e46-8414-970f532af784" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-IIS/10.0" + ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ - "14999" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" ], "x-ms-correlation-request-id": [ - "c7614193-82bd-47dd-8e0f-20021465cda6" + "9b0182db-48cd-47ff-a93c-f6101729db8d" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T084941Z:c7614193-82bd-47dd-8e0f-20021465cda6" + "JIOINDIAWEST:20220516T154124Z:9b0182db-48cd-47ff-a93c-f6101729db8d" ], "Date": [ - "Sat, 26 Mar 2022 08:49:40 GMT" + "Mon, 16 May 2022 15:41:24 GMT" + ], + "Content-Length": [ + "12" + ], + "Content-Type": [ + "application/json" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, - "ResponseBody": "", - "StatusCode": 202 + "ResponseBody": "{\r\n \"value\": []\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/13798e16-9959-457c-ae0f-446e46aa5932?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy8xMzc5OGUxNi05OTU5LTQ1N2MtYWUwZi00NDZlNDZhYTU5MzI/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", - "RequestMethod": "GET", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3Bstorage%3Bpstestrg8895%3Bpstestsa8895/protectedItems/AzureFileShare%3B698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCc3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9wcm90ZWN0ZWRJdGVtcy9BenVyZUZpbGVTaGFyZSUzQjY5OGRmNTk1OTQ4ZTIzNTVmMmJiNzQ0YTQxY2YyNDVkNGJhMTI1NWQ5Njk5Y2MzYzJhZDFmNTA0NWUxNzc5NTk/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8a9ac54c-c681-4ab4-9c14-bf595fdceb5f" + "398c1e97-1e96-4e46-8414-970f532af784" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -2098,67 +2384,70 @@ "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperationResults/bff7ef5e-f8d2-49b4-88a9-3a905fe8e2d7?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/bff7ef5e-f8d2-49b4-88a9-3a905fe8e2d7?api-version=2022-02-01" + ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "e4b5952a-3e2d-4953-b891-2f02dfe57427" + "12126da3-532c-4562-8f65-2f4622f4b444" ], "x-ms-client-request-id": [ - "8a9ac54c-c681-4ab4-9c14-bf595fdceb5f", - "8a9ac54c-c681-4ab4-9c14-bf595fdceb5f" + "398c1e97-1e96-4e46-8414-970f532af784", + "398c1e97-1e96-4e46-8414-970f532af784" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Server": [ - "Microsoft-IIS/10.0" - ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "292" + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" ], "x-ms-correlation-request-id": [ - "e4b5952a-3e2d-4953-b891-2f02dfe57427" + "12126da3-532c-4562-8f65-2f4622f4b444" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T084941Z:e4b5952a-3e2d-4953-b891-2f02dfe57427" + "JIOINDIAWEST:20220516T154125Z:12126da3-532c-4562-8f65-2f4622f4b444" ], "Date": [ - "Sat, 26 Mar 2022 08:49:41 GMT" - ], - "Content-Length": [ - "188" - ], - "Content-Type": [ - "application/json" + "Mon, 16 May 2022 15:41:25 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, - "ResponseBody": "{\r\n \"id\": \"13798e16-9959-457c-ae0f-446e46aa5932\",\r\n \"name\": \"13798e16-9959-457c-ae0f-446e46aa5932\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-03-26T08:49:41.3890659Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", - "StatusCode": 200 + "ResponseBody": "", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/13798e16-9959-457c-ae0f-446e46aa5932?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy8xMzc5OGUxNi05OTU5LTQ1N2MtYWUwZi00NDZlNDZhYTU5MzI/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/bff7ef5e-f8d2-49b4-88a9-3a905fe8e2d7?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9iZmY3ZWY1ZS1mOGQyLTQ5YjQtODhhOS0zYTkwNWZlOGUyZDc/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8a9ac54c-c681-4ab4-9c14-bf595fdceb5f" + "398c1e97-1e96-4e46-8414-970f532af784" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -2172,11 +2461,11 @@ "nosniff" ], "x-ms-request-id": [ - "2747a5da-e431-471e-8fe9-65a53f6f17a3" + "f01c91f5-b30b-4a77-ac01-c9e89be75867" ], "x-ms-client-request-id": [ - "8a9ac54c-c681-4ab4-9c14-bf595fdceb5f", - "8a9ac54c-c681-4ab4-9c14-bf595fdceb5f" + "398c1e97-1e96-4e46-8414-970f532af784", + "398c1e97-1e96-4e46-8414-970f532af784" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2188,16 +2477,16 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "291" + "289" ], "x-ms-correlation-request-id": [ - "2747a5da-e431-471e-8fe9-65a53f6f17a3" + "f01c91f5-b30b-4a77-ac01-c9e89be75867" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T084952Z:2747a5da-e431-471e-8fe9-65a53f6f17a3" + "JIOINDIAWEST:20220516T154126Z:f01c91f5-b30b-4a77-ac01-c9e89be75867" ], "Date": [ - "Sat, 26 Mar 2022 08:49:51 GMT" + "Mon, 16 May 2022 15:41:25 GMT" ], "Content-Length": [ "188" @@ -2209,26 +2498,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"13798e16-9959-457c-ae0f-446e46aa5932\",\r\n \"name\": \"13798e16-9959-457c-ae0f-446e46aa5932\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-03-26T08:49:41.3890659Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"bff7ef5e-f8d2-49b4-88a9-3a905fe8e2d7\",\r\n \"name\": \"bff7ef5e-f8d2-49b4-88a9-3a905fe8e2d7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:41:25.5289733Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/13798e16-9959-457c-ae0f-446e46aa5932?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy8xMzc5OGUxNi05OTU5LTQ1N2MtYWUwZi00NDZlNDZhYTU5MzI/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/bff7ef5e-f8d2-49b4-88a9-3a905fe8e2d7?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9iZmY3ZWY1ZS1mOGQyLTQ5YjQtODhhOS0zYTkwNWZlOGUyZDc/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8a9ac54c-c681-4ab4-9c14-bf595fdceb5f" + "398c1e97-1e96-4e46-8414-970f532af784" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -2242,11 +2531,11 @@ "nosniff" ], "x-ms-request-id": [ - "52389625-4a10-4354-a211-67aeb38a1b74" + "f7a46c35-839d-4b94-b30d-d42fc3ebb1ce" ], "x-ms-client-request-id": [ - "8a9ac54c-c681-4ab4-9c14-bf595fdceb5f", - "8a9ac54c-c681-4ab4-9c14-bf595fdceb5f" + "398c1e97-1e96-4e46-8414-970f532af784", + "398c1e97-1e96-4e46-8414-970f532af784" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2258,16 +2547,16 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "290" + "288" ], "x-ms-correlation-request-id": [ - "52389625-4a10-4354-a211-67aeb38a1b74" + "f7a46c35-839d-4b94-b30d-d42fc3ebb1ce" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T085002Z:52389625-4a10-4354-a211-67aeb38a1b74" + "JIOINDIAWEST:20220516T154131Z:f7a46c35-839d-4b94-b30d-d42fc3ebb1ce" ], "Date": [ - "Sat, 26 Mar 2022 08:50:02 GMT" + "Mon, 16 May 2022 15:41:31 GMT" ], "Content-Length": [ "188" @@ -2279,26 +2568,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"13798e16-9959-457c-ae0f-446e46aa5932\",\r\n \"name\": \"13798e16-9959-457c-ae0f-446e46aa5932\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-03-26T08:49:41.3890659Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"bff7ef5e-f8d2-49b4-88a9-3a905fe8e2d7\",\r\n \"name\": \"bff7ef5e-f8d2-49b4-88a9-3a905fe8e2d7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:41:25.5289733Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/13798e16-9959-457c-ae0f-446e46aa5932?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy8xMzc5OGUxNi05OTU5LTQ1N2MtYWUwZi00NDZlNDZhYTU5MzI/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/bff7ef5e-f8d2-49b4-88a9-3a905fe8e2d7?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9iZmY3ZWY1ZS1mOGQyLTQ5YjQtODhhOS0zYTkwNWZlOGUyZDc/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8a9ac54c-c681-4ab4-9c14-bf595fdceb5f" + "398c1e97-1e96-4e46-8414-970f532af784" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -2312,11 +2601,11 @@ "nosniff" ], "x-ms-request-id": [ - "eda05af4-8e64-4253-a5cc-8c636cbb752a" + "a02fb2ec-8956-4858-b678-290bbd0d040c" ], "x-ms-client-request-id": [ - "8a9ac54c-c681-4ab4-9c14-bf595fdceb5f", - "8a9ac54c-c681-4ab4-9c14-bf595fdceb5f" + "398c1e97-1e96-4e46-8414-970f532af784", + "398c1e97-1e96-4e46-8414-970f532af784" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2328,16 +2617,16 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "289" + "287" ], "x-ms-correlation-request-id": [ - "eda05af4-8e64-4253-a5cc-8c636cbb752a" + "a02fb2ec-8956-4858-b678-290bbd0d040c" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T085013Z:eda05af4-8e64-4253-a5cc-8c636cbb752a" + "JIOINDIAWEST:20220516T154137Z:a02fb2ec-8956-4858-b678-290bbd0d040c" ], "Date": [ - "Sat, 26 Mar 2022 08:50:12 GMT" + "Mon, 16 May 2022 15:41:36 GMT" ], "Content-Length": [ "304" @@ -2349,26 +2638,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"13798e16-9959-457c-ae0f-446e46aa5932\",\r\n \"name\": \"13798e16-9959-457c-ae0f-446e46aa5932\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-03-26T08:49:41.3890659Z\",\r\n \"endTime\": \"2022-03-26T08:49:41.3890659Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"1b63cf02-c748-4e4c-acb0-fd7b971ed8a6\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"bff7ef5e-f8d2-49b4-88a9-3a905fe8e2d7\",\r\n \"name\": \"bff7ef5e-f8d2-49b4-88a9-3a905fe8e2d7\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-05-16T15:41:25.5289733Z\",\r\n \"endTime\": \"2022-05-16T15:41:25.5289733Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"3d2fdb9c-af98-458d-8c7f-af9e3bade4d5\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/13798e16-9959-457c-ae0f-446e46aa5932?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy8xMzc5OGUxNi05OTU5LTQ1N2MtYWUwZi00NDZlNDZhYTU5MzI/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/bff7ef5e-f8d2-49b4-88a9-3a905fe8e2d7?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9iZmY3ZWY1ZS1mOGQyLTQ5YjQtODhhOS0zYTkwNWZlOGUyZDc/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8a9ac54c-c681-4ab4-9c14-bf595fdceb5f" + "398c1e97-1e96-4e46-8414-970f532af784" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -2382,11 +2671,11 @@ "nosniff" ], "x-ms-request-id": [ - "61fe73eb-fff7-49ae-a917-bb2dfa60ab8d" + "464be64d-cafe-4ab5-8dd6-cb7ee1df193f" ], "x-ms-client-request-id": [ - "8a9ac54c-c681-4ab4-9c14-bf595fdceb5f", - "8a9ac54c-c681-4ab4-9c14-bf595fdceb5f" + "398c1e97-1e96-4e46-8414-970f532af784", + "398c1e97-1e96-4e46-8414-970f532af784" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2398,16 +2687,16 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "288" + "286" ], "x-ms-correlation-request-id": [ - "61fe73eb-fff7-49ae-a917-bb2dfa60ab8d" + "464be64d-cafe-4ab5-8dd6-cb7ee1df193f" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T085013Z:61fe73eb-fff7-49ae-a917-bb2dfa60ab8d" + "JIOINDIAWEST:20220516T154137Z:464be64d-cafe-4ab5-8dd6-cb7ee1df193f" ], "Date": [ - "Sat, 26 Mar 2022 08:50:13 GMT" + "Mon, 16 May 2022 15:41:37 GMT" ], "Content-Length": [ "304" @@ -2419,26 +2708,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"13798e16-9959-457c-ae0f-446e46aa5932\",\r\n \"name\": \"13798e16-9959-457c-ae0f-446e46aa5932\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-03-26T08:49:41.3890659Z\",\r\n \"endTime\": \"2022-03-26T08:49:41.3890659Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"1b63cf02-c748-4e4c-acb0-fd7b971ed8a6\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"bff7ef5e-f8d2-49b4-88a9-3a905fe8e2d7\",\r\n \"name\": \"bff7ef5e-f8d2-49b4-88a9-3a905fe8e2d7\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-05-16T15:41:25.5289733Z\",\r\n \"endTime\": \"2022-05-16T15:41:25.5289733Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"3d2fdb9c-af98-458d-8c7f-af9e3bade4d5\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/1b63cf02-c748-4e4c-acb0-fd7b971ed8a6?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy8xYjYzY2YwMi1jNzQ4LTRlNGMtYWNiMC1mZDdiOTcxZWQ4YTY/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/3d2fdb9c-af98-458d-8c7f-af9e3bade4d5?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy8zZDJmZGI5Yy1hZjk4LTQ1OGQtOGM3Zi1hZjllM2JhZGU0ZDU/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8a9ac54c-c681-4ab4-9c14-bf595fdceb5f" + "398c1e97-1e96-4e46-8414-970f532af784" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -2456,11 +2745,11 @@ "nosniff" ], "x-ms-request-id": [ - "5abc61f6-3721-4808-b4e9-f05b0022487d" + "1259649f-63c0-4a68-8f79-e8292307779e" ], "x-ms-client-request-id": [ - "8a9ac54c-c681-4ab4-9c14-bf595fdceb5f", - "8a9ac54c-c681-4ab4-9c14-bf595fdceb5f" + "398c1e97-1e96-4e46-8414-970f532af784", + "398c1e97-1e96-4e46-8414-970f532af784" ], "X-Powered-By": [ "ASP.NET" @@ -2472,13 +2761,13 @@ "298" ], "x-ms-correlation-request-id": [ - "5abc61f6-3721-4808-b4e9-f05b0022487d" + "1259649f-63c0-4a68-8f79-e8292307779e" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T085014Z:5abc61f6-3721-4808-b4e9-f05b0022487d" + "JIOINDIAWEST:20220516T154138Z:1259649f-63c0-4a68-8f79-e8292307779e" ], "Date": [ - "Sat, 26 Mar 2022 08:50:13 GMT" + "Mon, 16 May 2022 15:41:37 GMT" ], "Content-Length": [ "821" @@ -2490,26 +2779,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/1b63cf02-c748-4e4c-acb0-fd7b971ed8a6\",\r\n \"name\": \"1b63cf02-c748-4e4c-acb0-fd7b971ed8a6\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT21.5540902S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"Storage\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"File Share Name\": \"fs1\",\r\n \"Storage Account Name\": \"pstestsa8895\"\r\n }\r\n },\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"DeleteBackupData\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-03-26T08:49:41.3890659Z\",\r\n \"endTime\": \"2022-03-26T08:50:02.9431561Z\",\r\n \"activityId\": \"8a9ac54c-c681-4ab4-9c14-bf595fdceb5f\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/3d2fdb9c-af98-458d-8c7f-af9e3bade4d5\",\r\n \"name\": \"3d2fdb9c-af98-458d-8c7f-af9e3bade4d5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT11.8207946S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"Storage\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"File Share Name\": \"fs1\",\r\n \"Storage Account Name\": \"pstestsa8895\"\r\n }\r\n },\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"DeleteBackupData\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-05-16T15:41:25.5289733Z\",\r\n \"endTime\": \"2022-05-16T15:41:37.3497679Z\",\r\n \"activityId\": \"398c1e97-1e96-4e46-8414-970f532af784\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NT9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ed748b06-ba8c-4277-892f-4e616aa800f2" + "b13eb5cf-0216-4f94-80d7-72c96d270f64" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -2520,23 +2809,23 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperationResults/2891447b-7d6d-46e5-b6b1-8a6dba31590f?fabricName=Azure?api-version=2021-12-01" + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperationResults/4903fd5f-a6a9-45e2-85ae-5df728a49066?fabricName=Azure?api-version=2022-02-01" ], "Retry-After": [ "60" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationsStatus/2891447b-7d6d-46e5-b6b1-8a6dba31590f?api-version=2019-05-13-preview" + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationsStatus/4903fd5f-a6a9-45e2-85ae-5df728a49066?api-version=2019-05-13-preview" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "9caa5211-a57d-467e-b777-195ff88e0a32" + "aa33ae49-4ba7-4fc2-ab4e-711ca66d5dec" ], "x-ms-client-request-id": [ - "ed748b06-ba8c-4277-892f-4e616aa800f2", - "ed748b06-ba8c-4277-892f-4e616aa800f2" + "b13eb5cf-0216-4f94-80d7-72c96d270f64", + "b13eb5cf-0216-4f94-80d7-72c96d270f64" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2548,13 +2837,13 @@ "14998" ], "x-ms-correlation-request-id": [ - "9caa5211-a57d-467e-b777-195ff88e0a32" + "aa33ae49-4ba7-4fc2-ab4e-711ca66d5dec" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T085014Z:9caa5211-a57d-467e-b777-195ff88e0a32" + "JIOINDIAWEST:20220516T154139Z:aa33ae49-4ba7-4fc2-ab4e-711ca66d5dec" ], "Date": [ - "Sat, 26 Mar 2022 08:50:14 GMT" + "Mon, 16 May 2022 15:41:38 GMT" ], "Expires": [ "-1" @@ -2567,22 +2856,22 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/2891447b-7d6d-46e5-b6b1-8a6dba31590f?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzLzI4OTE0NDdiLTdkNmQtNDZlNS1iNmIxLThhNmRiYTMxNTkwZj9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/4903fd5f-a6a9-45e2-85ae-5df728a49066?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzLzQ5MDNmZDVmLWE2YTktNDVlMi04NWFlLTVkZjcyOGE0OTA2Nj9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ed748b06-ba8c-4277-892f-4e616aa800f2" + "b13eb5cf-0216-4f94-80d7-72c96d270f64" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -2593,7 +2882,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/2891447b-7d6d-46e5-b6b1-8a6dba31590f?api-version=2021-12-01" + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/4903fd5f-a6a9-45e2-85ae-5df728a49066?api-version=2022-02-01" ], "Retry-After": [ "60" @@ -2602,11 +2891,11 @@ "nosniff" ], "x-ms-request-id": [ - "7b87a120-62f3-4596-9beb-34b63fb102ef" + "f3646c78-2866-4a2a-a5da-01c61ede98e3" ], "x-ms-client-request-id": [ - "ed748b06-ba8c-4277-892f-4e616aa800f2", - "ed748b06-ba8c-4277-892f-4e616aa800f2" + "b13eb5cf-0216-4f94-80d7-72c96d270f64", + "b13eb5cf-0216-4f94-80d7-72c96d270f64" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2618,13 +2907,13 @@ "299" ], "x-ms-correlation-request-id": [ - "7b87a120-62f3-4596-9beb-34b63fb102ef" + "f3646c78-2866-4a2a-a5da-01c61ede98e3" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T085014Z:7b87a120-62f3-4596-9beb-34b63fb102ef" + "JIOINDIAWEST:20220516T154139Z:f3646c78-2866-4a2a-a5da-01c61ede98e3" ], "Date": [ - "Sat, 26 Mar 2022 08:50:14 GMT" + "Mon, 16 May 2022 15:41:39 GMT" ], "Expires": [ "-1" @@ -2637,22 +2926,22 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/2891447b-7d6d-46e5-b6b1-8a6dba31590f?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzLzI4OTE0NDdiLTdkNmQtNDZlNS1iNmIxLThhNmRiYTMxNTkwZj9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/4903fd5f-a6a9-45e2-85ae-5df728a49066?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzLzQ5MDNmZDVmLWE2YTktNDVlMi04NWFlLTVkZjcyOGE0OTA2Nj9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ed748b06-ba8c-4277-892f-4e616aa800f2" + "b13eb5cf-0216-4f94-80d7-72c96d270f64" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -2663,7 +2952,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/2891447b-7d6d-46e5-b6b1-8a6dba31590f?api-version=2021-12-01" + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/4903fd5f-a6a9-45e2-85ae-5df728a49066?api-version=2022-02-01" ], "Retry-After": [ "60" @@ -2672,11 +2961,11 @@ "nosniff" ], "x-ms-request-id": [ - "bc207e93-2374-48fd-8582-45903e7f824c" + "524f2ee3-4e15-4a27-b161-a4a59a0ccf41" ], "x-ms-client-request-id": [ - "ed748b06-ba8c-4277-892f-4e616aa800f2", - "ed748b06-ba8c-4277-892f-4e616aa800f2" + "b13eb5cf-0216-4f94-80d7-72c96d270f64", + "b13eb5cf-0216-4f94-80d7-72c96d270f64" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2688,13 +2977,13 @@ "298" ], "x-ms-correlation-request-id": [ - "bc207e93-2374-48fd-8582-45903e7f824c" + "524f2ee3-4e15-4a27-b161-a4a59a0ccf41" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T085025Z:bc207e93-2374-48fd-8582-45903e7f824c" + "JIOINDIAWEST:20220516T154145Z:524f2ee3-4e15-4a27-b161-a4a59a0ccf41" ], "Date": [ - "Sat, 26 Mar 2022 08:50:25 GMT" + "Mon, 16 May 2022 15:41:44 GMT" ], "Expires": [ "-1" @@ -2707,22 +2996,22 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/2891447b-7d6d-46e5-b6b1-8a6dba31590f?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzLzI4OTE0NDdiLTdkNmQtNDZlNS1iNmIxLThhNmRiYTMxNTkwZj9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/4903fd5f-a6a9-45e2-85ae-5df728a49066?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzLzQ5MDNmZDVmLWE2YTktNDVlMi04NWFlLTVkZjcyOGE0OTA2Nj9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ed748b06-ba8c-4277-892f-4e616aa800f2" + "b13eb5cf-0216-4f94-80d7-72c96d270f64" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -2733,7 +3022,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/2891447b-7d6d-46e5-b6b1-8a6dba31590f?api-version=2021-12-01" + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/4903fd5f-a6a9-45e2-85ae-5df728a49066?api-version=2022-02-01" ], "Retry-After": [ "60" @@ -2742,11 +3031,11 @@ "nosniff" ], "x-ms-request-id": [ - "791d7a4c-8e92-4c71-9af8-6336ac4b8d73" + "a2c01313-3a02-4b18-9426-6e20ab7deaa5" ], "x-ms-client-request-id": [ - "ed748b06-ba8c-4277-892f-4e616aa800f2", - "ed748b06-ba8c-4277-892f-4e616aa800f2" + "b13eb5cf-0216-4f94-80d7-72c96d270f64", + "b13eb5cf-0216-4f94-80d7-72c96d270f64" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2758,13 +3047,13 @@ "297" ], "x-ms-correlation-request-id": [ - "791d7a4c-8e92-4c71-9af8-6336ac4b8d73" + "a2c01313-3a02-4b18-9426-6e20ab7deaa5" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T085035Z:791d7a4c-8e92-4c71-9af8-6336ac4b8d73" + "JIOINDIAWEST:20220516T154150Z:a2c01313-3a02-4b18-9426-6e20ab7deaa5" ], "Date": [ - "Sat, 26 Mar 2022 08:50:35 GMT" + "Mon, 16 May 2022 15:41:50 GMT" ], "Expires": [ "-1" @@ -2777,22 +3066,22 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/2891447b-7d6d-46e5-b6b1-8a6dba31590f?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzLzI4OTE0NDdiLTdkNmQtNDZlNS1iNmIxLThhNmRiYTMxNTkwZj9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/4903fd5f-a6a9-45e2-85ae-5df728a49066?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzLzQ5MDNmZDVmLWE2YTktNDVlMi04NWFlLTVkZjcyOGE0OTA2Nj9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ed748b06-ba8c-4277-892f-4e616aa800f2" + "b13eb5cf-0216-4f94-80d7-72c96d270f64" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -2802,15 +3091,21 @@ "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/4903fd5f-a6a9-45e2-85ae-5df728a49066?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "5be4643d-845f-45e5-8aee-5f3db40a5fdf" + "82c09f68-84c0-4191-be1f-6fbc2d15789e" ], "x-ms-client-request-id": [ - "ed748b06-ba8c-4277-892f-4e616aa800f2", - "ed748b06-ba8c-4277-892f-4e616aa800f2" + "b13eb5cf-0216-4f94-80d7-72c96d270f64", + "b13eb5cf-0216-4f94-80d7-72c96d270f64" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2822,35 +3117,41 @@ "296" ], "x-ms-correlation-request-id": [ - "5be4643d-845f-45e5-8aee-5f3db40a5fdf" + "82c09f68-84c0-4191-be1f-6fbc2d15789e" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T085046Z:5be4643d-845f-45e5-8aee-5f3db40a5fdf" + "JIOINDIAWEST:20220516T154156Z:82c09f68-84c0-4191-be1f-6fbc2d15789e" ], "Date": [ - "Sat, 26 Mar 2022 08:50:45 GMT" + "Mon, 16 May 2022 15:41:55 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", - "StatusCode": 204 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/2891447b-7d6d-46e5-b6b1-8a6dba31590f?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzLzI4OTE0NDdiLTdkNmQtNDZlNS1iNmIxLThhNmRiYTMxNTkwZj9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/4903fd5f-a6a9-45e2-85ae-5df728a49066?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzLzQ5MDNmZDVmLWE2YTktNDVlMi04NWFlLTVkZjcyOGE0OTA2Nj9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ed748b06-ba8c-4277-892f-4e616aa800f2" + "b13eb5cf-0216-4f94-80d7-72c96d270f64" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -2864,11 +3165,11 @@ "nosniff" ], "x-ms-request-id": [ - "873f19f7-a428-4d7c-bf04-995e31f531ac" + "75824b04-81b4-42d5-a5ca-bad977f1ef15" ], "x-ms-client-request-id": [ - "ed748b06-ba8c-4277-892f-4e616aa800f2", - "ed748b06-ba8c-4277-892f-4e616aa800f2" + "b13eb5cf-0216-4f94-80d7-72c96d270f64", + "b13eb5cf-0216-4f94-80d7-72c96d270f64" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2880,13 +3181,71 @@ "295" ], "x-ms-correlation-request-id": [ - "873f19f7-a428-4d7c-bf04-995e31f531ac" + "75824b04-81b4-42d5-a5ca-bad977f1ef15" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T154202Z:75824b04-81b4-42d5-a5ca-bad977f1ef15" + ], + "Date": [ + "Mon, 16 May 2022 15:42:01 GMT" + ] + }, + "ResponseBody": "", + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/4903fd5f-a6a9-45e2-85ae-5df728a49066?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzLzQ5MDNmZDVmLWE2YTktNDVlMi04NWFlLTVkZjcyOGE0OTA2Nj9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b13eb5cf-0216-4f94-80d7-72c96d270f64" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "b8d70bfb-4b05-4ab9-a7bd-09ea14eb0b24" + ], + "x-ms-client-request-id": [ + "b13eb5cf-0216-4f94-80d7-72c96d270f64", + "b13eb5cf-0216-4f94-80d7-72c96d270f64" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "294" + ], + "x-ms-correlation-request-id": [ + "b8d70bfb-4b05-4ab9-a7bd-09ea14eb0b24" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T085046Z:873f19f7-a428-4d7c-bf04-995e31f531ac" + "JIOINDIAWEST:20220516T154202Z:b8d70bfb-4b05-4ab9-a7bd-09ea14eb0b24" ], "Date": [ - "Sat, 26 Mar 2022 08:50:45 GMT" + "Mon, 16 May 2022 15:42:02 GMT" ] }, "ResponseBody": "", diff --git a/src/RecoveryServices/RecoveryServices.Backup.Test/SessionRecords/Microsoft.Azure.Commands.RecoveryServices.Backup.Test.ScenarioTests.ContainerTests/TestAzureFSUnregisterContainer.json b/src/RecoveryServices/RecoveryServices.Backup.Test/SessionRecords/Microsoft.Azure.Commands.RecoveryServices.Backup.Test.ScenarioTests.ContainerTests/TestAzureFSUnregisterContainer.json index 002d28cb0812..5d57a5333727 100644 --- a/src/RecoveryServices/RecoveryServices.Backup.Test/SessionRecords/Microsoft.Azure.Commands.RecoveryServices.Backup.Test.ScenarioTests.ContainerTests/TestAzureFSUnregisterContainer.json +++ b/src/RecoveryServices/RecoveryServices.Backup.Test/SessionRecords/Microsoft.Azure.Commands.RecoveryServices.Backup.Test.ScenarioTests.ContainerTests/TestAzureFSUnregisterContainer.json @@ -7,13 +7,13 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5b2c16ca-2d3c-497a-a720-c5b49c92dc6a" + "9091b01f-1d25-41dc-b19c-90f9166edbe7" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesClient/4.3.2.0" @@ -30,10 +30,10 @@ "nosniff" ], "x-ms-request-id": [ - "607b1537-09b6-4b54-8e8e-a26b83e19d82" + "c1e5819d-0971-4a3b-a568-9f746568c67e" ], "x-ms-client-request-id": [ - "5b2c16ca-2d3c-497a-a720-c5b49c92dc6a" + "9091b01f-1d25-41dc-b19c-90f9166edbe7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -42,19 +42,19 @@ "Microsoft-IIS/10.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11998" ], "x-ms-correlation-request-id": [ - "607b1537-09b6-4b54-8e8e-a26b83e19d82" + "c1e5819d-0971-4a3b-a568-9f746568c67e" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T084544Z:607b1537-09b6-4b54-8e8e-a26b83e19d82" + "JIOINDIAWEST:20220516T153759Z:c1e5819d-0971-4a3b-a568-9f746568c67e" ], "Date": [ - "Sat, 26 Mar 2022 08:45:43 GMT" + "Mon, 16 May 2022 15:37:58 GMT" ], "Content-Length": [ - "467" + "519" ], "Content-Type": [ "application/json" @@ -63,26 +63,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pstestrsv8895\",\r\n \"etag\": \"W/\\\"datetime'2022-02-18T07%3A20%3A25.5509044Z'\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateEndpointStateForBackup\": \"None\",\r\n \"privateEndpointStateForSiteRecovery\": \"None\"\r\n },\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"RS0\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pstestrsv8895\",\r\n \"etag\": \"W/\\\"datetime'2022-02-18T07%3A20%3A25.5509044Z'\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateEndpointStateForBackup\": \"None\",\r\n \"privateEndpointStateForSiteRecovery\": \"None\",\r\n \"networkSettings\": {\r\n \"publicNetworkAccess\": \"Enabled\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"RS0\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupProtectionContainers?$filter=friendlyName%20eq%20'pstestsa8895'%20and%20backupManagementType%20eq%20'AzureStorage'%20and%20status%20eq%20'Registered'&api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwUHJvdGVjdGlvbkNvbnRhaW5lcnM/JGZpbHRlcj1mcmllbmRseU5hbWUlMjBlcSUyMCdwc3Rlc3RzYTg4OTUnJTIwYW5kJTIwYmFja3VwTWFuYWdlbWVudFR5cGUlMjBlcSUyMCdBenVyZVN0b3JhZ2UnJTIwYW5kJTIwc3RhdHVzJTIwZXElMjAnUmVnaXN0ZXJlZCcmYXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupProtectionContainers?$filter=friendlyName%20eq%20'pstestsa8895'%20and%20backupManagementType%20eq%20'AzureStorage'%20and%20status%20eq%20'Registered'&api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwUHJvdGVjdGlvbkNvbnRhaW5lcnM/JGZpbHRlcj1mcmllbmRseU5hbWUlMjBlcSUyMCdwc3Rlc3RzYTg4OTUnJTIwYW5kJTIwYmFja3VwTWFuYWdlbWVudFR5cGUlMjBlcSUyMCdBenVyZVN0b3JhZ2UnJTIwYW5kJTIwc3RhdHVzJTIwZXElMjAnUmVnaXN0ZXJlZCcmYXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "12c546e2-c0aa-40b0-9a40-ac51b8bb7ffd" + "c865bed2-3bf4-46c6-84a3-04cfebc9f847" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -96,11 +96,11 @@ "nosniff" ], "x-ms-request-id": [ - "2b599da5-0e9f-4acd-96e4-8159ef6e97e6" + "329a61ff-9926-45a4-aa42-e1685de396e0" ], "x-ms-client-request-id": [ - "12c546e2-c0aa-40b0-9a40-ac51b8bb7ffd", - "12c546e2-c0aa-40b0-9a40-ac51b8bb7ffd" + "c865bed2-3bf4-46c6-84a3-04cfebc9f847", + "c865bed2-3bf4-46c6-84a3-04cfebc9f847" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -115,13 +115,13 @@ "299" ], "x-ms-correlation-request-id": [ - "2b599da5-0e9f-4acd-96e4-8159ef6e97e6" + "329a61ff-9926-45a4-aa42-e1685de396e0" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T084545Z:2b599da5-0e9f-4acd-96e4-8159ef6e97e6" + "JIOINDIAWEST:20220516T153801Z:329a61ff-9926-45a4-aa42-e1685de396e0" ], "Date": [ - "Sat, 26 Mar 2022 08:45:44 GMT" + "Mon, 16 May 2022 15:38:01 GMT" ], "Content-Length": [ "12" @@ -137,22 +137,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupProtectionContainers?$filter=friendlyName%20eq%20'pstestsa8895'%20and%20backupManagementType%20eq%20'AzureStorage'%20and%20status%20eq%20'Registered'&api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwUHJvdGVjdGlvbkNvbnRhaW5lcnM/JGZpbHRlcj1mcmllbmRseU5hbWUlMjBlcSUyMCdwc3Rlc3RzYTg4OTUnJTIwYW5kJTIwYmFja3VwTWFuYWdlbWVudFR5cGUlMjBlcSUyMCdBenVyZVN0b3JhZ2UnJTIwYW5kJTIwc3RhdHVzJTIwZXElMjAnUmVnaXN0ZXJlZCcmYXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupProtectionContainers?$filter=friendlyName%20eq%20'pstestsa8895'%20and%20backupManagementType%20eq%20'AzureStorage'%20and%20status%20eq%20'Registered'&api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwUHJvdGVjdGlvbkNvbnRhaW5lcnM/JGZpbHRlcj1mcmllbmRseU5hbWUlMjBlcSUyMCdwc3Rlc3RzYTg4OTUnJTIwYW5kJTIwYmFja3VwTWFuYWdlbWVudFR5cGUlMjBlcSUyMCdBenVyZVN0b3JhZ2UnJTIwYW5kJTIwc3RhdHVzJTIwZXElMjAnUmVnaXN0ZXJlZCcmYXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "270f88cf-35a6-4a3c-b6b8-ae8d1ef55538" + "efd1793e-8d43-4e45-b33f-2f376bc39d14" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -166,11 +166,11 @@ "nosniff" ], "x-ms-request-id": [ - "2f984ae3-0f0f-48ba-bf6e-1b6e8b239a4a" + "66f59511-4ae4-4863-91e0-057ad2da1029" ], "x-ms-client-request-id": [ - "270f88cf-35a6-4a3c-b6b8-ae8d1ef55538", - "270f88cf-35a6-4a3c-b6b8-ae8d1ef55538" + "efd1793e-8d43-4e45-b33f-2f376bc39d14", + "efd1793e-8d43-4e45-b33f-2f376bc39d14" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,13 +185,13 @@ "297" ], "x-ms-correlation-request-id": [ - "2f984ae3-0f0f-48ba-bf6e-1b6e8b239a4a" + "66f59511-4ae4-4863-91e0-057ad2da1029" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T084703Z:2f984ae3-0f0f-48ba-bf6e-1b6e8b239a4a" + "JIOINDIAWEST:20220516T153906Z:66f59511-4ae4-4863-91e0-057ad2da1029" ], "Date": [ - "Sat, 26 Mar 2022 08:47:03 GMT" + "Mon, 16 May 2022 15:39:06 GMT" ], "Content-Length": [ "827" @@ -207,22 +207,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupProtectionContainers?$filter=friendlyName%20eq%20'pstestsa8895'%20and%20backupManagementType%20eq%20'AzureStorage'%20and%20status%20eq%20'Registered'&api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwUHJvdGVjdGlvbkNvbnRhaW5lcnM/JGZpbHRlcj1mcmllbmRseU5hbWUlMjBlcSUyMCdwc3Rlc3RzYTg4OTUnJTIwYW5kJTIwYmFja3VwTWFuYWdlbWVudFR5cGUlMjBlcSUyMCdBenVyZVN0b3JhZ2UnJTIwYW5kJTIwc3RhdHVzJTIwZXElMjAnUmVnaXN0ZXJlZCcmYXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupProtectionContainers?$filter=friendlyName%20eq%20'pstestsa8895'%20and%20backupManagementType%20eq%20'AzureStorage'%20and%20status%20eq%20'Registered'&api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwUHJvdGVjdGlvbkNvbnRhaW5lcnM/JGZpbHRlcj1mcmllbmRseU5hbWUlMjBlcSUyMCdwc3Rlc3RzYTg4OTUnJTIwYW5kJTIwYmFja3VwTWFuYWdlbWVudFR5cGUlMjBlcSUyMCdBenVyZVN0b3JhZ2UnJTIwYW5kJTIwc3RhdHVzJTIwZXElMjAnUmVnaXN0ZXJlZCcmYXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c0beadfc-7bda-46dd-9a8a-1de88115979b" + "e6827c1a-2c1a-477a-a3d9-56103039cb3e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -236,11 +236,11 @@ "nosniff" ], "x-ms-request-id": [ - "daf5db57-60a8-4159-8c49-df6a051a6a1b" + "5dd09e70-798d-4777-9dc0-2453e901b9f3" ], "x-ms-client-request-id": [ - "c0beadfc-7bda-46dd-9a8a-1de88115979b", - "c0beadfc-7bda-46dd-9a8a-1de88115979b" + "e6827c1a-2c1a-477a-a3d9-56103039cb3e", + "e6827c1a-2c1a-477a-a3d9-56103039cb3e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -255,13 +255,13 @@ "296" ], "x-ms-correlation-request-id": [ - "daf5db57-60a8-4159-8c49-df6a051a6a1b" + "5dd09e70-798d-4777-9dc0-2453e901b9f3" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T084704Z:daf5db57-60a8-4159-8c49-df6a051a6a1b" + "JIOINDIAWEST:20220516T153908Z:5dd09e70-798d-4777-9dc0-2453e901b9f3" ], "Date": [ - "Sat, 26 Mar 2022 08:47:04 GMT" + "Mon, 16 May 2022 15:39:08 GMT" ], "Content-Length": [ "827" @@ -277,22 +277,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupProtectionContainers?$filter=friendlyName%20eq%20'pstestsa8895'%20and%20backupManagementType%20eq%20'AzureStorage'%20and%20status%20eq%20'Registered'&api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwUHJvdGVjdGlvbkNvbnRhaW5lcnM/JGZpbHRlcj1mcmllbmRseU5hbWUlMjBlcSUyMCdwc3Rlc3RzYTg4OTUnJTIwYW5kJTIwYmFja3VwTWFuYWdlbWVudFR5cGUlMjBlcSUyMCdBenVyZVN0b3JhZ2UnJTIwYW5kJTIwc3RhdHVzJTIwZXElMjAnUmVnaXN0ZXJlZCcmYXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupProtectionContainers?$filter=friendlyName%20eq%20'pstestsa8895'%20and%20backupManagementType%20eq%20'AzureStorage'%20and%20status%20eq%20'Registered'&api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwUHJvdGVjdGlvbkNvbnRhaW5lcnM/JGZpbHRlcj1mcmllbmRseU5hbWUlMjBlcSUyMCdwc3Rlc3RzYTg4OTUnJTIwYW5kJTIwYmFja3VwTWFuYWdlbWVudFR5cGUlMjBlcSUyMCdBenVyZVN0b3JhZ2UnJTIwYW5kJTIwc3RhdHVzJTIwZXElMjAnUmVnaXN0ZXJlZCcmYXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1a91b7b1-e699-4be0-b5ae-3a0a82b86a00" + "90322829-a48b-4461-988d-dc8d98c91dde" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -306,11 +306,11 @@ "nosniff" ], "x-ms-request-id": [ - "4c739654-963a-46f8-8699-63aee14a4d90" + "7cb2be4e-0ead-4b56-bfff-ce86ab9d7dba" ], "x-ms-client-request-id": [ - "1a91b7b1-e699-4be0-b5ae-3a0a82b86a00", - "1a91b7b1-e699-4be0-b5ae-3a0a82b86a00" + "90322829-a48b-4461-988d-dc8d98c91dde", + "90322829-a48b-4461-988d-dc8d98c91dde" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -325,13 +325,13 @@ "295" ], "x-ms-correlation-request-id": [ - "4c739654-963a-46f8-8699-63aee14a4d90" + "7cb2be4e-0ead-4b56-bfff-ce86ab9d7dba" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T084810Z:4c739654-963a-46f8-8699-63aee14a4d90" + "JIOINDIAWEST:20220516T153959Z:7cb2be4e-0ead-4b56-bfff-ce86ab9d7dba" ], "Date": [ - "Sat, 26 Mar 2022 08:48:10 GMT" + "Mon, 16 May 2022 15:39:59 GMT" ], "Content-Length": [ "12" @@ -347,22 +347,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupPolicies/afspolicy1?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwUG9saWNpZXMvYWZzcG9saWN5MT9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupPolicies/afspolicy1?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwUG9saWNpZXMvYWZzcG9saWN5MT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0384360f-deec-4027-910e-6f3ce162cf37" + "014d5d1c-dd12-4d2b-9fcc-bb82437b192a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -376,11 +376,11 @@ "nosniff" ], "x-ms-request-id": [ - "0046802f-b93c-48ed-9cc5-1e6e18da81c3" + "15a209ce-5d43-49b0-9fda-6fb231668af3" ], "x-ms-client-request-id": [ - "0384360f-deec-4027-910e-6f3ce162cf37", - "0384360f-deec-4027-910e-6f3ce162cf37" + "014d5d1c-dd12-4d2b-9fcc-bb82437b192a", + "014d5d1c-dd12-4d2b-9fcc-bb82437b192a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -395,13 +395,13 @@ "299" ], "x-ms-correlation-request-id": [ - "0046802f-b93c-48ed-9cc5-1e6e18da81c3" + "15a209ce-5d43-49b0-9fda-6fb231668af3" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T084545Z:0046802f-b93c-48ed-9cc5-1e6e18da81c3" + "JIOINDIAWEST:20220516T153802Z:15a209ce-5d43-49b0-9fda-6fb231668af3" ], "Date": [ - "Sat, 26 Mar 2022 08:45:44 GMT" + "Mon, 16 May 2022 15:38:01 GMT" ], "Content-Length": [ "693" @@ -417,22 +417,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupProtectionContainers?$filter=backupManagementType%20eq%20'AzureStorage'&api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwUHJvdGVjdGlvbkNvbnRhaW5lcnM/JGZpbHRlcj1iYWNrdXBNYW5hZ2VtZW50VHlwZSUyMGVxJTIwJ0F6dXJlU3RvcmFnZScmYXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupProtectionContainers?$filter=backupManagementType%20eq%20'AzureStorage'&api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwUHJvdGVjdGlvbkNvbnRhaW5lcnM/JGZpbHRlcj1iYWNrdXBNYW5hZ2VtZW50VHlwZSUyMGVxJTIwJ0F6dXJlU3RvcmFnZScmYXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "12d6e3a0-e8c4-496c-b6af-21323463ae7d" + "f25f9579-d774-488b-b0d1-c6a4280c455e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -446,11 +446,11 @@ "nosniff" ], "x-ms-request-id": [ - "818ca312-532c-4550-9c3e-ffe28cb44191" + "162eefac-c71f-4e14-80bc-178a12f61fea" ], "x-ms-client-request-id": [ - "12d6e3a0-e8c4-496c-b6af-21323463ae7d", - "12d6e3a0-e8c4-496c-b6af-21323463ae7d" + "f25f9579-d774-488b-b0d1-c6a4280c455e", + "f25f9579-d774-488b-b0d1-c6a4280c455e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -465,13 +465,13 @@ "298" ], "x-ms-correlation-request-id": [ - "818ca312-532c-4550-9c3e-ffe28cb44191" + "162eefac-c71f-4e14-80bc-178a12f61fea" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T084545Z:818ca312-532c-4550-9c3e-ffe28cb44191" + "JIOINDIAWEST:20220516T153803Z:162eefac-c71f-4e14-80bc-178a12f61fea" ], "Date": [ - "Sat, 26 Mar 2022 08:45:44 GMT" + "Mon, 16 May 2022 15:38:02 GMT" ], "Content-Length": [ "12" @@ -487,22 +487,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers?$filter=backupManagementType%20eq%20'AzureStorage'&api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0YWJsZUNvbnRhaW5lcnM/JGZpbHRlcj1iYWNrdXBNYW5hZ2VtZW50VHlwZSUyMGVxJTIwJ0F6dXJlU3RvcmFnZScmYXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers?$filter=backupManagementType%20eq%20'AzureStorage'&api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0YWJsZUNvbnRhaW5lcnM/JGZpbHRlcj1iYWNrdXBNYW5hZ2VtZW50VHlwZSUyMGVxJTIwJ0F6dXJlU3RvcmFnZScmYXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "12d6e3a0-e8c4-496c-b6af-21323463ae7d" + "f25f9579-d774-488b-b0d1-c6a4280c455e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -516,11 +516,11 @@ "nosniff" ], "x-ms-request-id": [ - "76b25822-6d88-4297-84a5-c4a97e093021" + "211a7820-e32b-42ac-bb83-a475f2bbe9b2" ], "x-ms-client-request-id": [ - "12d6e3a0-e8c4-496c-b6af-21323463ae7d", - "12d6e3a0-e8c4-496c-b6af-21323463ae7d" + "f25f9579-d774-488b-b0d1-c6a4280c455e", + "f25f9579-d774-488b-b0d1-c6a4280c455e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -535,16 +535,16 @@ "299" ], "x-ms-correlation-request-id": [ - "76b25822-6d88-4297-84a5-c4a97e093021" + "211a7820-e32b-42ac-bb83-a475f2bbe9b2" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T084546Z:76b25822-6d88-4297-84a5-c4a97e093021" + "JIOINDIAWEST:20220516T153803Z:211a7820-e32b-42ac-bb83-a475f2bbe9b2" ], "Date": [ - "Sat, 26 Mar 2022 08:45:45 GMT" + "Mon, 16 May 2022 15:38:02 GMT" ], "Content-Length": [ - "14925" + "16771" ], "Content-Type": [ "application/json" @@ -553,26 +553,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;afstests;02xseacan01otds1\",\r\n \"name\": \"StorageContainer;Storage;afstests;02xseacan01otds1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"02xseacan01otds1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/02xseacan01otds1\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;afstests;afsbackupsa\",\r\n \"name\": \"StorageContainer;Storage;afstests;afsbackupsa\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"afsbackupsa\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/afsbackupsa\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;afstests;storageysci5wbex6jyc\",\r\n \"name\": \"StorageContainer;Storage;afstests;storageysci5wbex6jyc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"storageysci5wbex6jyc\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/storageysci5wbex6jyc\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;akkanaseCMK;0byseapod01otds1\",\r\n \"name\": \"StorageContainer;Storage;akkanaseCMK;0byseapod01otds1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"0byseapod01otds1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseCMK/providers/Microsoft.Storage/storageAccounts/0byseapod01otds1\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;akkanaseGRSVault;frmseapod01otds1\",\r\n \"name\": \"StorageContainer;Storage;akkanaseGRSVault;frmseapod01otds1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"frmseapod01otds1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseGRSVault/providers/Microsoft.Storage/storageAccounts/frmseapod01otds1\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;cmk.system;cmkautomationstore\",\r\n \"name\": \"StorageContainer;Storage;cmk.system;cmkautomationstore\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"cmkautomationstore\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/cmk.system/providers/Microsoft.Storage/storageAccounts/cmkautomationstore\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;disk-bvt-test-rg;hv3seapod01otds1\",\r\n \"name\": \"StorageContainer;Storage;disk-bvt-test-rg;hv3seapod01otds1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"hv3seapod01otds1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/disk-bvt-test-rg/providers/Microsoft.Storage/storageAccounts/hv3seapod01otds1\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;DoNotUse-OSS-BVT-SEA-RG;dontuseossrestoreasfile\",\r\n \"name\": \"StorageContainer;Storage;DoNotUse-OSS-BVT-SEA-RG;dontuseossrestoreasfile\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"dontuseossrestoreasfile\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/DoNotUse-OSS-BVT-SEA-RG/providers/Microsoft.Storage/storageAccounts/dontuseossrestoreasfile\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;iaasvm.encryptedvm;iaasvmencryptedvmdiag170\",\r\n \"name\": \"StorageContainer;Storage;iaasvm.encryptedvm;iaasvmencryptedvmdiag170\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"iaasvmencryptedvmdiag170\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.encryptedvm/providers/Microsoft.Storage/storageAccounts/iaasvmencryptedvmdiag170\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;iaasvm.existing;iaasextstore1\",\r\n \"name\": \"StorageContainer;Storage;iaasvm.existing;iaasextstore1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"iaasextstore1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.existing/providers/Microsoft.Storage/storageAccounts/iaasextstore1\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;iaasvm.new;iaasvmnewdiag1\",\r\n \"name\": \"StorageContainer;Storage;iaasvm.new;iaasvmnewdiag1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"iaasvmnewdiag1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.new/providers/Microsoft.Storage/storageAccounts/iaasvmnewdiag1\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;iaasvmhanaworkload.existing;iaasvmhanaworkloadexisti\",\r\n \"name\": \"StorageContainer;Storage;iaasvmhanaworkload.existing;iaasvmhanaworkloadexisti\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"iaasvmhanaworkloadexisti\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvmhanaworkload.existing/providers/Microsoft.Storage/storageAccounts/iaasvmhanaworkloadexisti\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;pscloudtestrg;pscloudtestrgdiag\",\r\n \"name\": \"StorageContainer;Storage;pscloudtestrg;pscloudtestrgdiag\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"pscloudtestrgdiag\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pscloudtestrg/providers/Microsoft.Storage/storageAccounts/pscloudtestrgdiag\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;PSTestRG1e5a278b;pstestsa1e5a278b\",\r\n \"name\": \"StorageContainer;Storage;PSTestRG1e5a278b;pstestsa1e5a278b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"pstestsa1e5a278b\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG1e5a278b/providers/Microsoft.Storage/storageAccounts/pstestsa1e5a278b\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;PSTestRG235879ba;pstestsa235879ba\",\r\n \"name\": \"StorageContainer;Storage;PSTestRG235879ba;pstestsa235879ba\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"pstestsa235879ba\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG235879ba/providers/Microsoft.Storage/storageAccounts/pstestsa235879ba\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;PSTestRG54bdf8da;pstestsa54bdf8da\",\r\n \"name\": \"StorageContainer;Storage;PSTestRG54bdf8da;pstestsa54bdf8da\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"pstestsa54bdf8da\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG54bdf8da/providers/Microsoft.Storage/storageAccounts/pstestsa54bdf8da\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;PSTestRG59e1706f;pstestsa59e1706f\",\r\n \"name\": \"StorageContainer;Storage;PSTestRG59e1706f;pstestsa59e1706f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"pstestsa59e1706f\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG59e1706f/providers/Microsoft.Storage/storageAccounts/pstestsa59e1706f\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895\",\r\n \"name\": \"StorageContainer;Storage;pstestrg8895;pstestsa8895\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"pstestsa8895\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstestsa8895\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;pstestrg8895;pstesttargetsa8895\",\r\n \"name\": \"StorageContainer;Storage;pstestrg8895;pstesttargetsa8895\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"pstesttargetsa8895\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstesttargetsa8895\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;pstestrg8895;pstesttargetsa8896\",\r\n \"name\": \"StorageContainer;Storage;pstestrg8895;pstesttargetsa8896\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"pstesttargetsa8896\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstesttargetsa8896\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;sambit_rg;sarathsa3\",\r\n \"name\": \"StorageContainer;Storage;sambit_rg;sarathsa3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"sarathsa3\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/sambit_rg/providers/Microsoft.Storage/storageAccounts/sarathsa3\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;afstests;02xseacan01otds1\",\r\n \"name\": \"StorageContainer;Storage;afstests;02xseacan01otds1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"02xseacan01otds1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/02xseacan01otds1\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;afstests;afsbackupsa\",\r\n \"name\": \"StorageContainer;Storage;afstests;afsbackupsa\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"afsbackupsa\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/afsbackupsa\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;afstests;storageysci5wbex6jyc\",\r\n \"name\": \"StorageContainer;Storage;afstests;storageysci5wbex6jyc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"storageysci5wbex6jyc\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/storageysci5wbex6jyc\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;akkanaseCMK;0byseapod01otds1\",\r\n \"name\": \"StorageContainer;Storage;akkanaseCMK;0byseapod01otds1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"0byseapod01otds1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseCMK/providers/Microsoft.Storage/storageAccounts/0byseapod01otds1\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;akkanaseGRSVault;frmseapod01otds1\",\r\n \"name\": \"StorageContainer;Storage;akkanaseGRSVault;frmseapod01otds1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"frmseapod01otds1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseGRSVault/providers/Microsoft.Storage/storageAccounts/frmseapod01otds1\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rglx72s62qimgelno2o6rr34a5ovdikhzq5k6dc7773qrbodtnrdcguic5hpiciscne;clitestva4qmim2g5c3cb2tz\",\r\n \"name\": \"StorageContainer;Storage;clitest.rglx72s62qimgelno2o6rr34a5ovdikhzq5k6dc7773qrbodtnrdcguic5hpiciscne;clitestva4qmim2g5c3cb2tz\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"clitestva4qmim2g5c3cb2tz\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rglx72s62qimgelno2o6rr34a5ovdikhzq5k6dc7773qrbodtnrdcguic5hpiciscne/providers/Microsoft.Storage/storageAccounts/clitestva4qmim2g5c3cb2tz\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgm7e2kiyzoto4iaicwwkdomftb7zki5kh2xxwh6yyskpflgsrpkrygkpwpdcltggyb;clitest7gyg4gqt4sxirqdkc\",\r\n \"name\": \"StorageContainer;Storage;clitest.rgm7e2kiyzoto4iaicwwkdomftb7zki5kh2xxwh6yyskpflgsrpkrygkpwpdcltggyb;clitest7gyg4gqt4sxirqdkc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"clitest7gyg4gqt4sxirqdkc\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rgm7e2kiyzoto4iaicwwkdomftb7zki5kh2xxwh6yyskpflgsrpkrygkpwpdcltggyb/providers/Microsoft.Storage/storageAccounts/clitest7gyg4gqt4sxirqdkc\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;cmk.system;cmkautomationstore\",\r\n \"name\": \"StorageContainer;Storage;cmk.system;cmkautomationstore\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"cmkautomationstore\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/cmk.system/providers/Microsoft.Storage/storageAccounts/cmkautomationstore\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;disk-bvt-test-rg;hv3seapod01otds1\",\r\n \"name\": \"StorageContainer;Storage;disk-bvt-test-rg;hv3seapod01otds1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"hv3seapod01otds1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/disk-bvt-test-rg/providers/Microsoft.Storage/storageAccounts/hv3seapod01otds1\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;DoNotUse-OSS-BVT-SEA-RG;dontuseossrestoreasfile\",\r\n \"name\": \"StorageContainer;Storage;DoNotUse-OSS-BVT-SEA-RG;dontuseossrestoreasfile\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"dontuseossrestoreasfile\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/DoNotUse-OSS-BVT-SEA-RG/providers/Microsoft.Storage/storageAccounts/dontuseossrestoreasfile\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;iaasvm.encryptedvm;iaasvmencryptedvmdiag170\",\r\n \"name\": \"StorageContainer;Storage;iaasvm.encryptedvm;iaasvmencryptedvmdiag170\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"iaasvmencryptedvmdiag170\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.encryptedvm/providers/Microsoft.Storage/storageAccounts/iaasvmencryptedvmdiag170\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;iaasvm.existing;iaasextstore1\",\r\n \"name\": \"StorageContainer;Storage;iaasvm.existing;iaasextstore1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"iaasextstore1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.existing/providers/Microsoft.Storage/storageAccounts/iaasextstore1\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;iaasvm.new;iaasvmnewdiag1\",\r\n \"name\": \"StorageContainer;Storage;iaasvm.new;iaasvmnewdiag1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"iaasvmnewdiag1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.new/providers/Microsoft.Storage/storageAccounts/iaasvmnewdiag1\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;iaasvmhanaworkload.existing;iaasvmhanaworkloadexisti\",\r\n \"name\": \"StorageContainer;Storage;iaasvmhanaworkload.existing;iaasvmhanaworkloadexisti\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"iaasvmhanaworkloadexisti\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvmhanaworkload.existing/providers/Microsoft.Storage/storageAccounts/iaasvmhanaworkloadexisti\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;pscloudtestrg;pscloudtestrgdiag\",\r\n \"name\": \"StorageContainer;Storage;pscloudtestrg;pscloudtestrgdiag\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"pscloudtestrgdiag\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pscloudtestrg/providers/Microsoft.Storage/storageAccounts/pscloudtestrgdiag\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;PSTestRG1e5a278b;pstestsa1e5a278b\",\r\n \"name\": \"StorageContainer;Storage;PSTestRG1e5a278b;pstestsa1e5a278b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"pstestsa1e5a278b\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG1e5a278b/providers/Microsoft.Storage/storageAccounts/pstestsa1e5a278b\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;PSTestRG235879ba;pstestsa235879ba\",\r\n \"name\": \"StorageContainer;Storage;PSTestRG235879ba;pstestsa235879ba\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"pstestsa235879ba\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG235879ba/providers/Microsoft.Storage/storageAccounts/pstestsa235879ba\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;PSTestRG54bdf8da;pstestsa54bdf8da\",\r\n \"name\": \"StorageContainer;Storage;PSTestRG54bdf8da;pstestsa54bdf8da\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"pstestsa54bdf8da\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG54bdf8da/providers/Microsoft.Storage/storageAccounts/pstestsa54bdf8da\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;PSTestRG59e1706f;pstestsa59e1706f\",\r\n \"name\": \"StorageContainer;Storage;PSTestRG59e1706f;pstestsa59e1706f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"pstestsa59e1706f\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG59e1706f/providers/Microsoft.Storage/storageAccounts/pstestsa59e1706f\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895\",\r\n \"name\": \"StorageContainer;Storage;pstestrg8895;pstestsa8895\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"pstestsa8895\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstestsa8895\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;pstestrg8895;pstesttargetsa8895\",\r\n \"name\": \"StorageContainer;Storage;pstestrg8895;pstesttargetsa8895\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"pstesttargetsa8895\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstesttargetsa8895\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;pstestrg8895;pstesttargetsa8896\",\r\n \"name\": \"StorageContainer;Storage;pstestrg8895;pstesttargetsa8896\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"pstesttargetsa8896\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstesttargetsa8896\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;sambit_rg;sarathsa3\",\r\n \"name\": \"StorageContainer;Storage;sambit_rg;sarathsa3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"sarathsa3\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/sambit_rg/providers/Microsoft.Storage/storageAccounts/sarathsa3\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NT9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"containerType\": \"StorageContainer\",\r\n \"sourceResourceId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstestsa8895\",\r\n \"resourceGroup\": \"pstestrg8895\",\r\n \"friendlyName\": \"pstestsa8895\",\r\n \"backupManagementType\": \"AzureStorage\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "12d6e3a0-e8c4-496c-b6af-21323463ae7d" + "f25f9579-d774-488b-b0d1-c6a4280c455e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -589,23 +589,23 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationResults/c7bf6901-d301-4f58-bd7f-fc0221aad99c?api-version=2021-12-01" + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationResults/10f79309-a038-434a-b164-0e3038f6373f?api-version=2022-02-01" ], "Retry-After": [ "60" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationsStatus/c7bf6901-d301-4f58-bd7f-fc0221aad99c?api-version=2019-05-13-preview" + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationsStatus/10f79309-a038-434a-b164-0e3038f6373f?api-version=2019-05-13-preview" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "8385980e-234c-4fd5-98e2-216ef714929f" + "ad659659-700b-4eac-91ee-dcfb530d6487" ], "x-ms-client-request-id": [ - "12d6e3a0-e8c4-496c-b6af-21323463ae7d", - "12d6e3a0-e8c4-496c-b6af-21323463ae7d" + "f25f9579-d774-488b-b0d1-c6a4280c455e", + "f25f9579-d774-488b-b0d1-c6a4280c455e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -620,13 +620,13 @@ "1199" ], "x-ms-correlation-request-id": [ - "8385980e-234c-4fd5-98e2-216ef714929f" + "ad659659-700b-4eac-91ee-dcfb530d6487" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T084547Z:8385980e-234c-4fd5-98e2-216ef714929f" + "JIOINDIAWEST:20220516T153805Z:ad659659-700b-4eac-91ee-dcfb530d6487" ], "Date": [ - "Sat, 26 Mar 2022 08:45:46 GMT" + "Mon, 16 May 2022 15:38:04 GMT" ], "Content-Length": [ "2" @@ -642,22 +642,22 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895/operationResults/c7bf6901-d301-4f58-bd7f-fc0221aad99c?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9vcGVyYXRpb25SZXN1bHRzL2M3YmY2OTAxLWQzMDEtNGY1OC1iZDdmLWZjMDIyMWFhZDk5Yz9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895/operationResults/10f79309-a038-434a-b164-0e3038f6373f?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9vcGVyYXRpb25SZXN1bHRzLzEwZjc5MzA5LWEwMzgtNDM0YS1iMTY0LTBlMzAzOGY2MzczZj9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "12d6e3a0-e8c4-496c-b6af-21323463ae7d" + "f25f9579-d774-488b-b0d1-c6a4280c455e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -668,23 +668,23 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationResults/c7bf6901-d301-4f58-bd7f-fc0221aad99c?api-version=2021-12-01" + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationResults/10f79309-a038-434a-b164-0e3038f6373f?api-version=2022-02-01" ], "Retry-After": [ "60" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationsStatus/c7bf6901-d301-4f58-bd7f-fc0221aad99c?api-version=2019-05-13-preview" + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationsStatus/10f79309-a038-434a-b164-0e3038f6373f?api-version=2019-05-13-preview" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "2e180421-7cfe-4751-a68a-448e50fbca18" + "552770ba-e81c-4c4a-9150-c04bf0072669" ], "x-ms-client-request-id": [ - "12d6e3a0-e8c4-496c-b6af-21323463ae7d", - "12d6e3a0-e8c4-496c-b6af-21323463ae7d" + "f25f9579-d774-488b-b0d1-c6a4280c455e", + "f25f9579-d774-488b-b0d1-c6a4280c455e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -699,13 +699,13 @@ "299" ], "x-ms-correlation-request-id": [ - "2e180421-7cfe-4751-a68a-448e50fbca18" + "552770ba-e81c-4c4a-9150-c04bf0072669" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T084547Z:2e180421-7cfe-4751-a68a-448e50fbca18" + "JIOINDIAWEST:20220516T153805Z:552770ba-e81c-4c4a-9150-c04bf0072669" ], "Date": [ - "Sat, 26 Mar 2022 08:45:46 GMT" + "Mon, 16 May 2022 15:38:05 GMT" ], "Content-Length": [ "2" @@ -721,22 +721,22 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895/operationResults/c7bf6901-d301-4f58-bd7f-fc0221aad99c?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9vcGVyYXRpb25SZXN1bHRzL2M3YmY2OTAxLWQzMDEtNGY1OC1iZDdmLWZjMDIyMWFhZDk5Yz9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895/operationResults/10f79309-a038-434a-b164-0e3038f6373f?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9vcGVyYXRpb25SZXN1bHRzLzEwZjc5MzA5LWEwMzgtNDM0YS1iMTY0LTBlMzAzOGY2MzczZj9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "12d6e3a0-e8c4-496c-b6af-21323463ae7d" + "f25f9579-d774-488b-b0d1-c6a4280c455e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -747,23 +747,23 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationResults/c7bf6901-d301-4f58-bd7f-fc0221aad99c?api-version=2021-12-01" + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationResults/10f79309-a038-434a-b164-0e3038f6373f?api-version=2022-02-01" ], "Retry-After": [ "60" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationsStatus/c7bf6901-d301-4f58-bd7f-fc0221aad99c?api-version=2019-05-13-preview" + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationsStatus/10f79309-a038-434a-b164-0e3038f6373f?api-version=2019-05-13-preview" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "3c608eea-50f6-4506-b9f8-12b3b0791f1d" + "34367671-c918-4f58-9467-4c0143241172" ], "x-ms-client-request-id": [ - "12d6e3a0-e8c4-496c-b6af-21323463ae7d", - "12d6e3a0-e8c4-496c-b6af-21323463ae7d" + "f25f9579-d774-488b-b0d1-c6a4280c455e", + "f25f9579-d774-488b-b0d1-c6a4280c455e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -778,13 +778,13 @@ "298" ], "x-ms-correlation-request-id": [ - "3c608eea-50f6-4506-b9f8-12b3b0791f1d" + "34367671-c918-4f58-9467-4c0143241172" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T084557Z:3c608eea-50f6-4506-b9f8-12b3b0791f1d" + "JIOINDIAWEST:20220516T153806Z:34367671-c918-4f58-9467-4c0143241172" ], "Date": [ - "Sat, 26 Mar 2022 08:45:57 GMT" + "Mon, 16 May 2022 15:38:05 GMT" ], "Content-Length": [ "2" @@ -800,22 +800,22 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895/operationResults/c7bf6901-d301-4f58-bd7f-fc0221aad99c?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9vcGVyYXRpb25SZXN1bHRzL2M3YmY2OTAxLWQzMDEtNGY1OC1iZDdmLWZjMDIyMWFhZDk5Yz9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895/operationResults/10f79309-a038-434a-b164-0e3038f6373f?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9vcGVyYXRpb25SZXN1bHRzLzEwZjc5MzA5LWEwMzgtNDM0YS1iMTY0LTBlMzAzOGY2MzczZj9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "12d6e3a0-e8c4-496c-b6af-21323463ae7d" + "f25f9579-d774-488b-b0d1-c6a4280c455e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -825,15 +825,24 @@ "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationResults/10f79309-a038-434a-b164-0e3038f6373f?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationsStatus/10f79309-a038-434a-b164-0e3038f6373f?api-version=2019-05-13-preview" + ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "99322f16-a2a1-438b-9d65-f63fada76448" + "d927490c-3eed-4495-92e1-7de58eb1230e" ], "x-ms-client-request-id": [ - "12d6e3a0-e8c4-496c-b6af-21323463ae7d", - "12d6e3a0-e8c4-496c-b6af-21323463ae7d" + "f25f9579-d774-488b-b0d1-c6a4280c455e", + "f25f9579-d774-488b-b0d1-c6a4280c455e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -848,16 +857,16 @@ "297" ], "x-ms-correlation-request-id": [ - "99322f16-a2a1-438b-9d65-f63fada76448" + "d927490c-3eed-4495-92e1-7de58eb1230e" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T084608Z:99322f16-a2a1-438b-9d65-f63fada76448" + "JIOINDIAWEST:20220516T153807Z:d927490c-3eed-4495-92e1-7de58eb1230e" ], "Date": [ - "Sat, 26 Mar 2022 08:46:07 GMT" + "Mon, 16 May 2022 15:38:06 GMT" ], "Content-Length": [ - "737" + "2" ], "Content-Type": [ "application/json" @@ -866,26 +875,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895\",\r\n \"name\": \"StorageContainer;Storage;pstestrg8895;pstestsa8895\",\r\n \"properties\": {\r\n \"sourceResourceId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstestsa8895\",\r\n \"protectedItemCount\": 0,\r\n \"acquireStorageAccountLock\": \"Acquire\",\r\n \"friendlyName\": \"pstestsa8895\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"registrationStatus\": \"Registered\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerType\": \"StorageContainer\",\r\n \"protectableObjectType\": \"StorageContainer\"\r\n }\r\n}", - "StatusCode": 200 + "ResponseBody": "{}", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895/operationResults/c7bf6901-d301-4f58-bd7f-fc0221aad99c?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9vcGVyYXRpb25SZXN1bHRzL2M3YmY2OTAxLWQzMDEtNGY1OC1iZDdmLWZjMDIyMWFhZDk5Yz9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895/operationResults/10f79309-a038-434a-b164-0e3038f6373f?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9vcGVyYXRpb25SZXN1bHRzLzEwZjc5MzA5LWEwMzgtNDM0YS1iMTY0LTBlMzAzOGY2MzczZj9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "12d6e3a0-e8c4-496c-b6af-21323463ae7d" + "f25f9579-d774-488b-b0d1-c6a4280c455e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -895,15 +904,24 @@ "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationResults/10f79309-a038-434a-b164-0e3038f6373f?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationsStatus/10f79309-a038-434a-b164-0e3038f6373f?api-version=2019-05-13-preview" + ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "60b1595d-62a2-411c-9af4-6b992207cb7a" + "ca72aff0-106d-420e-8389-885d1ad498cf" ], "x-ms-client-request-id": [ - "12d6e3a0-e8c4-496c-b6af-21323463ae7d", - "12d6e3a0-e8c4-496c-b6af-21323463ae7d" + "f25f9579-d774-488b-b0d1-c6a4280c455e", + "f25f9579-d774-488b-b0d1-c6a4280c455e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -918,16 +936,16 @@ "296" ], "x-ms-correlation-request-id": [ - "60b1595d-62a2-411c-9af4-6b992207cb7a" + "ca72aff0-106d-420e-8389-885d1ad498cf" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T084608Z:60b1595d-62a2-411c-9af4-6b992207cb7a" + "JIOINDIAWEST:20220516T153807Z:ca72aff0-106d-420e-8389-885d1ad498cf" ], "Date": [ - "Sat, 26 Mar 2022 08:46:08 GMT" + "Mon, 16 May 2022 15:38:06 GMT" ], "Content-Length": [ - "737" + "2" ], "Content-Type": [ "application/json" @@ -936,26 +954,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895\",\r\n \"name\": \"StorageContainer;Storage;pstestrg8895;pstestsa8895\",\r\n \"properties\": {\r\n \"sourceResourceId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstestsa8895\",\r\n \"protectedItemCount\": 0,\r\n \"acquireStorageAccountLock\": \"Acquire\",\r\n \"friendlyName\": \"pstestsa8895\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"registrationStatus\": \"Registered\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerType\": \"StorageContainer\",\r\n \"protectableObjectType\": \"StorageContainer\"\r\n }\r\n}", - "StatusCode": 200 + "ResponseBody": "{}", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupProtectableItems?$filter=backupManagementType%20eq%20'AzureStorage'&api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwUHJvdGVjdGFibGVJdGVtcz8kZmlsdGVyPWJhY2t1cE1hbmFnZW1lbnRUeXBlJTIwZXElMjAnQXp1cmVTdG9yYWdlJyZhcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895/operationResults/10f79309-a038-434a-b164-0e3038f6373f?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9vcGVyYXRpb25SZXN1bHRzLzEwZjc5MzA5LWEwMzgtNDM0YS1iMTY0LTBlMzAzOGY2MzczZj9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "12d6e3a0-e8c4-496c-b6af-21323463ae7d" + "f25f9579-d774-488b-b0d1-c6a4280c455e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -965,15 +983,24 @@ "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationResults/10f79309-a038-434a-b164-0e3038f6373f?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationsStatus/10f79309-a038-434a-b164-0e3038f6373f?api-version=2019-05-13-preview" + ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "8e92b126-3c66-44d0-9646-2a52c6a89b76" + "75ac7143-b9e5-4a0a-ad69-3beac69a3a36" ], "x-ms-client-request-id": [ - "12d6e3a0-e8c4-496c-b6af-21323463ae7d", - "12d6e3a0-e8c4-496c-b6af-21323463ae7d" + "f25f9579-d774-488b-b0d1-c6a4280c455e", + "f25f9579-d774-488b-b0d1-c6a4280c455e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -985,19 +1012,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "299" + "295" ], "x-ms-correlation-request-id": [ - "8e92b126-3c66-44d0-9646-2a52c6a89b76" + "75ac7143-b9e5-4a0a-ad69-3beac69a3a36" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T084609Z:8e92b126-3c66-44d0-9646-2a52c6a89b76" + "JIOINDIAWEST:20220516T153808Z:75ac7143-b9e5-4a0a-ad69-3beac69a3a36" ], "Date": [ - "Sat, 26 Mar 2022 08:46:08 GMT" + "Mon, 16 May 2022 15:38:07 GMT" ], "Content-Length": [ - "947" + "2" ], "Content-Type": [ "application/json" @@ -1006,32 +1033,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/storagecontainer;storage;pstestrg8895;pstestsa8895/protectableItems/azurefileshare;698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959\",\r\n \"name\": \"azurefileshare;698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems\",\r\n \"properties\": {\r\n \"parentContainerFabricId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstestsa8895\",\r\n \"parentContainerFriendlyName\": \"pstestsa8895\",\r\n \"azureFileShareType\": \"XSMB\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"workloadType\": \"AzureFileShare\",\r\n \"protectableItemType\": \"AzureFileShare\",\r\n \"friendlyName\": \"fs1\",\r\n \"protectionState\": \"NotProtected\"\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 + "ResponseBody": "{}", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/storagecontainer%3Bstorage%3Bpstestrg8895%3Bpstestsa8895/protectedItems/azurefileshare%3B698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9zdG9yYWdlY29udGFpbmVyJTNCc3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9wcm90ZWN0ZWRJdGVtcy9henVyZWZpbGVzaGFyZSUzQjY5OGRmNTk1OTQ4ZTIzNTVmMmJiNzQ0YTQxY2YyNDVkNGJhMTI1NWQ5Njk5Y2MzYzJhZDFmNTA0NWUxNzc5NTk/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"protectedItemType\": \"AzureFileShareProtectedItem\",\r\n \"sourceResourceId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstestsa8895\",\r\n \"policyId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupPolicies/afspolicy1\"\r\n }\r\n}", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895/operationResults/10f79309-a038-434a-b164-0e3038f6373f?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9vcGVyYXRpb25SZXN1bHRzLzEwZjc5MzA5LWEwMzgtNDM0YS1iMTY0LTBlMzAzOGY2MzczZj9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "12d6e3a0-e8c4-496c-b6af-21323463ae7d" + "f25f9579-d774-488b-b0d1-c6a4280c455e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "433" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -1042,69 +1063,75 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/storagecontainer;storage;pstestrg8895;pstestsa8895/protectedItems/azurefileshare;698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959/operationResults/fc1d2fec-15a6-4912-9b3b-1c41175ddef9?api-version=2021-12-01" + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationResults/10f79309-a038-434a-b164-0e3038f6373f?api-version=2022-02-01" ], "Retry-After": [ "60" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/storagecontainer;storage;pstestrg8895;pstestsa8895/protectedItems/azurefileshare;698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959/operationsStatus/fc1d2fec-15a6-4912-9b3b-1c41175ddef9?api-version=2021-12-01" + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationsStatus/10f79309-a038-434a-b164-0e3038f6373f?api-version=2019-05-13-preview" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "d3c56be5-8fa4-4952-821b-1ecce0716b3e" + "389f3792-539e-47e1-82c5-b8a4a0e40c5e" ], "x-ms-client-request-id": [ - "12d6e3a0-e8c4-496c-b6af-21323463ae7d", - "12d6e3a0-e8c4-496c-b6af-21323463ae7d" + "f25f9579-d774-488b-b0d1-c6a4280c455e", + "f25f9579-d774-488b-b0d1-c6a4280c455e" ], "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-ratelimit-remaining-subscription-resource-requests": [ + "294" ], "x-ms-correlation-request-id": [ - "d3c56be5-8fa4-4952-821b-1ecce0716b3e" + "389f3792-539e-47e1-82c5-b8a4a0e40c5e" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T084609Z:d3c56be5-8fa4-4952-821b-1ecce0716b3e" + "JIOINDIAWEST:20220516T153808Z:389f3792-539e-47e1-82c5-b8a4a0e40c5e" ], "Date": [ - "Sat, 26 Mar 2022 08:46:09 GMT" + "Mon, 16 May 2022 15:38:07 GMT" + ], + "Content-Length": [ + "2" + ], + "Content-Type": [ + "application/json" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, - "ResponseBody": "", + "ResponseBody": "{}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/fc1d2fec-15a6-4912-9b3b-1c41175ddef9?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9mYzFkMmZlYy0xNWE2LTQ5MTItOWIzYi0xYzQxMTc1ZGRlZjk/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895/operationResults/10f79309-a038-434a-b164-0e3038f6373f?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9vcGVyYXRpb25SZXN1bHRzLzEwZjc5MzA5LWEwMzgtNDM0YS1iMTY0LTBlMzAzOGY2MzczZj9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "12d6e3a0-e8c4-496c-b6af-21323463ae7d" + "f25f9579-d774-488b-b0d1-c6a4280c455e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -1114,15 +1141,24 @@ "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationResults/10f79309-a038-434a-b164-0e3038f6373f?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationsStatus/10f79309-a038-434a-b164-0e3038f6373f?api-version=2019-05-13-preview" + ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "0875e79c-36c8-4fd1-b1af-68b06aaa516e" + "0bc6c171-6df1-43c2-b794-01d5d6deec68" ], "x-ms-client-request-id": [ - "12d6e3a0-e8c4-496c-b6af-21323463ae7d", - "12d6e3a0-e8c4-496c-b6af-21323463ae7d" + "f25f9579-d774-488b-b0d1-c6a4280c455e", + "f25f9579-d774-488b-b0d1-c6a4280c455e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1134,19 +1170,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "299" + "293" ], "x-ms-correlation-request-id": [ - "0875e79c-36c8-4fd1-b1af-68b06aaa516e" + "0bc6c171-6df1-43c2-b794-01d5d6deec68" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T084610Z:0875e79c-36c8-4fd1-b1af-68b06aaa516e" + "JIOINDIAWEST:20220516T153809Z:0bc6c171-6df1-43c2-b794-01d5d6deec68" ], "Date": [ - "Sat, 26 Mar 2022 08:46:09 GMT" + "Mon, 16 May 2022 15:38:09 GMT" ], "Content-Length": [ - "188" + "2" ], "Content-Type": [ "application/json" @@ -1155,26 +1191,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"fc1d2fec-15a6-4912-9b3b-1c41175ddef9\",\r\n \"name\": \"fc1d2fec-15a6-4912-9b3b-1c41175ddef9\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-03-26T08:46:09.5856191Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", - "StatusCode": 200 + "ResponseBody": "{}", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/fc1d2fec-15a6-4912-9b3b-1c41175ddef9?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9mYzFkMmZlYy0xNWE2LTQ5MTItOWIzYi0xYzQxMTc1ZGRlZjk/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895/operationResults/10f79309-a038-434a-b164-0e3038f6373f?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9vcGVyYXRpb25SZXN1bHRzLzEwZjc5MzA5LWEwMzgtNDM0YS1iMTY0LTBlMzAzOGY2MzczZj9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "12d6e3a0-e8c4-496c-b6af-21323463ae7d" + "f25f9579-d774-488b-b0d1-c6a4280c455e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -1184,15 +1220,24 @@ "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationResults/10f79309-a038-434a-b164-0e3038f6373f?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationsStatus/10f79309-a038-434a-b164-0e3038f6373f?api-version=2019-05-13-preview" + ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "3ae5785a-2f4f-4932-8348-acc308b1d261" + "11525cd3-c52c-4bd4-8c1e-cbc06fa98a16" ], "x-ms-client-request-id": [ - "12d6e3a0-e8c4-496c-b6af-21323463ae7d", - "12d6e3a0-e8c4-496c-b6af-21323463ae7d" + "f25f9579-d774-488b-b0d1-c6a4280c455e", + "f25f9579-d774-488b-b0d1-c6a4280c455e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1204,19 +1249,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "298" + "292" ], "x-ms-correlation-request-id": [ - "3ae5785a-2f4f-4932-8348-acc308b1d261" + "11525cd3-c52c-4bd4-8c1e-cbc06fa98a16" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T084620Z:3ae5785a-2f4f-4932-8348-acc308b1d261" + "JIOINDIAWEST:20220516T153809Z:11525cd3-c52c-4bd4-8c1e-cbc06fa98a16" ], "Date": [ - "Sat, 26 Mar 2022 08:46:19 GMT" + "Mon, 16 May 2022 15:38:09 GMT" ], "Content-Length": [ - "188" + "2" ], "Content-Type": [ "application/json" @@ -1225,26 +1270,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"fc1d2fec-15a6-4912-9b3b-1c41175ddef9\",\r\n \"name\": \"fc1d2fec-15a6-4912-9b3b-1c41175ddef9\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-03-26T08:46:09.5856191Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", - "StatusCode": 200 + "ResponseBody": "{}", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/fc1d2fec-15a6-4912-9b3b-1c41175ddef9?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9mYzFkMmZlYy0xNWE2LTQ5MTItOWIzYi0xYzQxMTc1ZGRlZjk/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895/operationResults/10f79309-a038-434a-b164-0e3038f6373f?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9vcGVyYXRpb25SZXN1bHRzLzEwZjc5MzA5LWEwMzgtNDM0YS1iMTY0LTBlMzAzOGY2MzczZj9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "12d6e3a0-e8c4-496c-b6af-21323463ae7d" + "f25f9579-d774-488b-b0d1-c6a4280c455e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -1254,15 +1299,24 @@ "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationResults/10f79309-a038-434a-b164-0e3038f6373f?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationsStatus/10f79309-a038-434a-b164-0e3038f6373f?api-version=2019-05-13-preview" + ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "0e85ac61-ea6d-478b-a238-8f483d0b5d08" + "a5367ad5-62b2-47b8-a6a7-1037d689472b" ], "x-ms-client-request-id": [ - "12d6e3a0-e8c4-496c-b6af-21323463ae7d", - "12d6e3a0-e8c4-496c-b6af-21323463ae7d" + "f25f9579-d774-488b-b0d1-c6a4280c455e", + "f25f9579-d774-488b-b0d1-c6a4280c455e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1274,19 +1328,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "297" + "291" ], "x-ms-correlation-request-id": [ - "0e85ac61-ea6d-478b-a238-8f483d0b5d08" + "a5367ad5-62b2-47b8-a6a7-1037d689472b" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T084630Z:0e85ac61-ea6d-478b-a238-8f483d0b5d08" + "JIOINDIAWEST:20220516T153810Z:a5367ad5-62b2-47b8-a6a7-1037d689472b" ], "Date": [ - "Sat, 26 Mar 2022 08:46:30 GMT" + "Mon, 16 May 2022 15:38:10 GMT" ], "Content-Length": [ - "188" + "2" ], "Content-Type": [ "application/json" @@ -1295,26 +1349,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"fc1d2fec-15a6-4912-9b3b-1c41175ddef9\",\r\n \"name\": \"fc1d2fec-15a6-4912-9b3b-1c41175ddef9\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-03-26T08:46:09.5856191Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", - "StatusCode": 200 + "ResponseBody": "{}", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/fc1d2fec-15a6-4912-9b3b-1c41175ddef9?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9mYzFkMmZlYy0xNWE2LTQ5MTItOWIzYi0xYzQxMTc1ZGRlZjk/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895/operationResults/10f79309-a038-434a-b164-0e3038f6373f?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9vcGVyYXRpb25SZXN1bHRzLzEwZjc5MzA5LWEwMzgtNDM0YS1iMTY0LTBlMzAzOGY2MzczZj9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "12d6e3a0-e8c4-496c-b6af-21323463ae7d" + "f25f9579-d774-488b-b0d1-c6a4280c455e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -1324,15 +1378,24 @@ "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationResults/10f79309-a038-434a-b164-0e3038f6373f?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationsStatus/10f79309-a038-434a-b164-0e3038f6373f?api-version=2019-05-13-preview" + ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "1d4f0370-d61c-4833-b241-de857ab6575e" + "f5d5685c-c3af-4bf0-87a7-d8b75292c6c2" ], "x-ms-client-request-id": [ - "12d6e3a0-e8c4-496c-b6af-21323463ae7d", - "12d6e3a0-e8c4-496c-b6af-21323463ae7d" + "f25f9579-d774-488b-b0d1-c6a4280c455e", + "f25f9579-d774-488b-b0d1-c6a4280c455e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1344,19 +1407,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "296" + "290" ], "x-ms-correlation-request-id": [ - "1d4f0370-d61c-4833-b241-de857ab6575e" + "f5d5685c-c3af-4bf0-87a7-d8b75292c6c2" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T084641Z:1d4f0370-d61c-4833-b241-de857ab6575e" + "JIOINDIAWEST:20220516T153810Z:f5d5685c-c3af-4bf0-87a7-d8b75292c6c2" ], "Date": [ - "Sat, 26 Mar 2022 08:46:41 GMT" + "Mon, 16 May 2022 15:38:10 GMT" ], "Content-Length": [ - "188" + "2" ], "Content-Type": [ "application/json" @@ -1365,26 +1428,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"fc1d2fec-15a6-4912-9b3b-1c41175ddef9\",\r\n \"name\": \"fc1d2fec-15a6-4912-9b3b-1c41175ddef9\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-03-26T08:46:09.5856191Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", - "StatusCode": 200 + "ResponseBody": "{}", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/fc1d2fec-15a6-4912-9b3b-1c41175ddef9?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9mYzFkMmZlYy0xNWE2LTQ5MTItOWIzYi0xYzQxMTc1ZGRlZjk/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895/operationResults/10f79309-a038-434a-b164-0e3038f6373f?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9vcGVyYXRpb25SZXN1bHRzLzEwZjc5MzA5LWEwMzgtNDM0YS1iMTY0LTBlMzAzOGY2MzczZj9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "12d6e3a0-e8c4-496c-b6af-21323463ae7d" + "f25f9579-d774-488b-b0d1-c6a4280c455e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -1394,15 +1457,24 @@ "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationResults/10f79309-a038-434a-b164-0e3038f6373f?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationsStatus/10f79309-a038-434a-b164-0e3038f6373f?api-version=2019-05-13-preview" + ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "b5725a3b-206c-4f32-b39b-c728e8bde733" + "55d0c610-5ba4-40af-9e78-ab7621de165e" ], "x-ms-client-request-id": [ - "12d6e3a0-e8c4-496c-b6af-21323463ae7d", - "12d6e3a0-e8c4-496c-b6af-21323463ae7d" + "f25f9579-d774-488b-b0d1-c6a4280c455e", + "f25f9579-d774-488b-b0d1-c6a4280c455e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1414,19 +1486,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "295" + "289" ], "x-ms-correlation-request-id": [ - "b5725a3b-206c-4f32-b39b-c728e8bde733" + "55d0c610-5ba4-40af-9e78-ab7621de165e" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T084651Z:b5725a3b-206c-4f32-b39b-c728e8bde733" + "JIOINDIAWEST:20220516T153811Z:55d0c610-5ba4-40af-9e78-ab7621de165e" ], "Date": [ - "Sat, 26 Mar 2022 08:46:51 GMT" + "Mon, 16 May 2022 15:38:11 GMT" ], "Content-Length": [ - "188" + "2" ], "Content-Type": [ "application/json" @@ -1435,26 +1507,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"fc1d2fec-15a6-4912-9b3b-1c41175ddef9\",\r\n \"name\": \"fc1d2fec-15a6-4912-9b3b-1c41175ddef9\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-03-26T08:46:09.5856191Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", - "StatusCode": 200 + "ResponseBody": "{}", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/fc1d2fec-15a6-4912-9b3b-1c41175ddef9?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9mYzFkMmZlYy0xNWE2LTQ5MTItOWIzYi0xYzQxMTc1ZGRlZjk/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895/operationResults/10f79309-a038-434a-b164-0e3038f6373f?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9vcGVyYXRpb25SZXN1bHRzLzEwZjc5MzA5LWEwMzgtNDM0YS1iMTY0LTBlMzAzOGY2MzczZj9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "12d6e3a0-e8c4-496c-b6af-21323463ae7d" + "f25f9579-d774-488b-b0d1-c6a4280c455e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -1464,15 +1536,24 @@ "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationResults/10f79309-a038-434a-b164-0e3038f6373f?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationsStatus/10f79309-a038-434a-b164-0e3038f6373f?api-version=2019-05-13-preview" + ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "44449a95-e936-4f85-b684-eb6abf83b2cb" + "2efaeec0-a06c-4c21-8e14-7cc6ab51224d" ], "x-ms-client-request-id": [ - "12d6e3a0-e8c4-496c-b6af-21323463ae7d", - "12d6e3a0-e8c4-496c-b6af-21323463ae7d" + "f25f9579-d774-488b-b0d1-c6a4280c455e", + "f25f9579-d774-488b-b0d1-c6a4280c455e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1484,19 +1565,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "294" + "288" ], "x-ms-correlation-request-id": [ - "44449a95-e936-4f85-b684-eb6abf83b2cb" + "2efaeec0-a06c-4c21-8e14-7cc6ab51224d" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T084701Z:44449a95-e936-4f85-b684-eb6abf83b2cb" + "JIOINDIAWEST:20220516T153812Z:2efaeec0-a06c-4c21-8e14-7cc6ab51224d" ], "Date": [ - "Sat, 26 Mar 2022 08:47:01 GMT" + "Mon, 16 May 2022 15:38:12 GMT" ], "Content-Length": [ - "304" + "2" ], "Content-Type": [ "application/json" @@ -1505,26 +1586,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"fc1d2fec-15a6-4912-9b3b-1c41175ddef9\",\r\n \"name\": \"fc1d2fec-15a6-4912-9b3b-1c41175ddef9\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-03-26T08:46:09.5856191Z\",\r\n \"endTime\": \"2022-03-26T08:46:09.5856191Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"43dad9dd-0648-490d-8f19-adde22975b0a\"\r\n }\r\n}", - "StatusCode": 200 + "ResponseBody": "{}", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/fc1d2fec-15a6-4912-9b3b-1c41175ddef9?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9mYzFkMmZlYy0xNWE2LTQ5MTItOWIzYi0xYzQxMTc1ZGRlZjk/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895/operationResults/10f79309-a038-434a-b164-0e3038f6373f?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9vcGVyYXRpb25SZXN1bHRzLzEwZjc5MzA5LWEwMzgtNDM0YS1iMTY0LTBlMzAzOGY2MzczZj9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "12d6e3a0-e8c4-496c-b6af-21323463ae7d" + "f25f9579-d774-488b-b0d1-c6a4280c455e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -1534,15 +1615,24 @@ "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationResults/10f79309-a038-434a-b164-0e3038f6373f?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationsStatus/10f79309-a038-434a-b164-0e3038f6373f?api-version=2019-05-13-preview" + ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "d90d8c9a-96c8-49ea-b6bd-eac79fef085d" + "257fd81a-f7fa-4a26-9c76-4c1ee73953c3" ], "x-ms-client-request-id": [ - "12d6e3a0-e8c4-496c-b6af-21323463ae7d", - "12d6e3a0-e8c4-496c-b6af-21323463ae7d" + "f25f9579-d774-488b-b0d1-c6a4280c455e", + "f25f9579-d774-488b-b0d1-c6a4280c455e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1554,19 +1644,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "293" + "287" ], "x-ms-correlation-request-id": [ - "d90d8c9a-96c8-49ea-b6bd-eac79fef085d" + "257fd81a-f7fa-4a26-9c76-4c1ee73953c3" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T084702Z:d90d8c9a-96c8-49ea-b6bd-eac79fef085d" + "JIOINDIAWEST:20220516T153812Z:257fd81a-f7fa-4a26-9c76-4c1ee73953c3" ], "Date": [ - "Sat, 26 Mar 2022 08:47:02 GMT" + "Mon, 16 May 2022 15:38:12 GMT" ], "Content-Length": [ - "304" + "2" ], "Content-Type": [ "application/json" @@ -1575,26 +1665,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"fc1d2fec-15a6-4912-9b3b-1c41175ddef9\",\r\n \"name\": \"fc1d2fec-15a6-4912-9b3b-1c41175ddef9\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-03-26T08:46:09.5856191Z\",\r\n \"endTime\": \"2022-03-26T08:46:09.5856191Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"43dad9dd-0648-490d-8f19-adde22975b0a\"\r\n }\r\n}", - "StatusCode": 200 + "ResponseBody": "{}", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/43dad9dd-0648-490d-8f19-adde22975b0a?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy80M2RhZDlkZC0wNjQ4LTQ5MGQtOGYxOS1hZGRlMjI5NzViMGE/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895/operationResults/10f79309-a038-434a-b164-0e3038f6373f?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9vcGVyYXRpb25SZXN1bHRzLzEwZjc5MzA5LWEwMzgtNDM0YS1iMTY0LTBlMzAzOGY2MzczZj9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "12d6e3a0-e8c4-496c-b6af-21323463ae7d" + "f25f9579-d774-488b-b0d1-c6a4280c455e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -1604,40 +1694,48 @@ "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-IIS/10.0" + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationResults/10f79309-a038-434a-b164-0e3038f6373f?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationsStatus/10f79309-a038-434a-b164-0e3038f6373f?api-version=2019-05-13-preview" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "03864e60-3fd2-4246-9d62-1619ab16e34b" + "fa18251e-1528-46a8-8795-98f3ba333914" ], "x-ms-client-request-id": [ - "12d6e3a0-e8c4-496c-b6af-21323463ae7d", - "12d6e3a0-e8c4-496c-b6af-21323463ae7d" - ], - "X-Powered-By": [ - "ASP.NET" + "f25f9579-d774-488b-b0d1-c6a4280c455e", + "f25f9579-d774-488b-b0d1-c6a4280c455e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "299" + "286" ], "x-ms-correlation-request-id": [ - "03864e60-3fd2-4246-9d62-1619ab16e34b" + "fa18251e-1528-46a8-8795-98f3ba333914" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T084703Z:03864e60-3fd2-4246-9d62-1619ab16e34b" + "JIOINDIAWEST:20220516T153813Z:fa18251e-1528-46a8-8795-98f3ba333914" ], "Date": [ - "Sat, 26 Mar 2022 08:47:02 GMT" + "Mon, 16 May 2022 15:38:13 GMT" ], "Content-Length": [ - "847" + "2" ], "Content-Type": [ "application/json" @@ -1646,26 +1744,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/43dad9dd-0648-490d-8f19-adde22975b0a\",\r\n \"name\": \"43dad9dd-0648-490d-8f19-adde22975b0a\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT42.3180023S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"Storage\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"File Share Name\": \"fs1\",\r\n \"Storage Account Name\": \"pstestsa8895\",\r\n \"Policy Name\": \"afspolicy1\"\r\n }\r\n },\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"ConfigureBackup\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-03-26T08:46:09.5856191Z\",\r\n \"endTime\": \"2022-03-26T08:46:51.9036214Z\",\r\n \"activityId\": \"12d6e3a0-e8c4-496c-b6af-21323463ae7d\"\r\n }\r\n}", - "StatusCode": 200 + "ResponseBody": "{}", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupProtectedItems?$filter=backupManagementType%20eq%20'AzureStorage'%20and%20itemType%20eq%20'AzureFileShare'&api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwUHJvdGVjdGVkSXRlbXM/JGZpbHRlcj1iYWNrdXBNYW5hZ2VtZW50VHlwZSUyMGVxJTIwJ0F6dXJlU3RvcmFnZSclMjBhbmQlMjBpdGVtVHlwZSUyMGVxJTIwJ0F6dXJlRmlsZVNoYXJlJyZhcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895/operationResults/10f79309-a038-434a-b164-0e3038f6373f?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9vcGVyYXRpb25SZXN1bHRzLzEwZjc5MzA5LWEwMzgtNDM0YS1iMTY0LTBlMzAzOGY2MzczZj9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "03a75a25-851d-4012-930e-cee1405372bd" + "f25f9579-d774-488b-b0d1-c6a4280c455e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -1675,15 +1773,24 @@ "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationResults/10f79309-a038-434a-b164-0e3038f6373f?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationsStatus/10f79309-a038-434a-b164-0e3038f6373f?api-version=2019-05-13-preview" + ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "9fe1e73c-e326-4f5f-83fb-11a8e2f49899" + "fda2df07-19b1-42dc-9ec6-c830f0a26627" ], "x-ms-client-request-id": [ - "03a75a25-851d-4012-930e-cee1405372bd", - "03a75a25-851d-4012-930e-cee1405372bd" + "f25f9579-d774-488b-b0d1-c6a4280c455e", + "f25f9579-d774-488b-b0d1-c6a4280c455e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1695,19 +1802,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "299" + "285" ], "x-ms-correlation-request-id": [ - "9fe1e73c-e326-4f5f-83fb-11a8e2f49899" + "fda2df07-19b1-42dc-9ec6-c830f0a26627" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T084703Z:9fe1e73c-e326-4f5f-83fb-11a8e2f49899" + "JIOINDIAWEST:20220516T153813Z:fda2df07-19b1-42dc-9ec6-c830f0a26627" ], "Date": [ - "Sat, 26 Mar 2022 08:47:03 GMT" + "Mon, 16 May 2022 15:38:13 GMT" ], "Content-Length": [ - "1219" + "2" ], "Content-Type": [ "application/json" @@ -1716,26 +1823,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;storage;pstestrg8895;pstestsa8895/protectedItems/AzureFileShare;698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959\",\r\n \"name\": \"AzureFileShare;698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems\",\r\n \"properties\": {\r\n \"kpisHealths\": {},\r\n \"friendlyName\": \"fs1\",\r\n \"protectionStatus\": \"Healthy\",\r\n \"protectionState\": \"IRPending\",\r\n \"lastBackupStatus\": \"IRPending\",\r\n \"protectedItemType\": \"AzureFileShareProtectedItem\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"workloadType\": \"AzureFileShare\",\r\n \"containerName\": \"StorageContainer;storage;pstestrg8895;pstestsa8895\",\r\n \"sourceResourceId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.storage/storageAccounts/pstestsa8895\",\r\n \"policyId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupPolicies/afspolicy1\",\r\n \"isArchiveEnabled\": false\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 + "ResponseBody": "{}", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3Bstorage%3Bpstestrg8895%3Bpstestsa8895/protectedItems/AzureFileShare%3B698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959?$filter=expand%20eq%20'extendedinfo'&api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCc3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9wcm90ZWN0ZWRJdGVtcy9BenVyZUZpbGVTaGFyZSUzQjY5OGRmNTk1OTQ4ZTIzNTVmMmJiNzQ0YTQxY2YyNDVkNGJhMTI1NWQ5Njk5Y2MzYzJhZDFmNTA0NWUxNzc5NTk/JGZpbHRlcj1leHBhbmQlMjBlcSUyMCdleHRlbmRlZGluZm8nJmFwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895/operationResults/10f79309-a038-434a-b164-0e3038f6373f?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9vcGVyYXRpb25SZXN1bHRzLzEwZjc5MzA5LWEwMzgtNDM0YS1iMTY0LTBlMzAzOGY2MzczZj9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "03a75a25-851d-4012-930e-cee1405372bd" + "f25f9579-d774-488b-b0d1-c6a4280c455e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -1745,15 +1852,24 @@ "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationResults/10f79309-a038-434a-b164-0e3038f6373f?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationsStatus/10f79309-a038-434a-b164-0e3038f6373f?api-version=2019-05-13-preview" + ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "c51868ea-da75-44c0-85e8-5925f68b1263" + "d77bf670-b68d-4f95-95e6-33c1636902f2" ], "x-ms-client-request-id": [ - "03a75a25-851d-4012-930e-cee1405372bd", - "03a75a25-851d-4012-930e-cee1405372bd" + "f25f9579-d774-488b-b0d1-c6a4280c455e", + "f25f9579-d774-488b-b0d1-c6a4280c455e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1765,19 +1881,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "299" + "284" ], "x-ms-correlation-request-id": [ - "c51868ea-da75-44c0-85e8-5925f68b1263" + "d77bf670-b68d-4f95-95e6-33c1636902f2" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T084704Z:c51868ea-da75-44c0-85e8-5925f68b1263" + "JIOINDIAWEST:20220516T153814Z:d77bf670-b68d-4f95-95e6-33c1636902f2" ], "Date": [ - "Sat, 26 Mar 2022 08:47:03 GMT" + "Mon, 16 May 2022 15:38:14 GMT" ], "Content-Length": [ - "1354" + "2" ], "Content-Type": [ "application/json" @@ -1786,26 +1902,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;storage;pstestrg8895;pstestsa8895/protectedItems/AzureFileShare;698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959\",\r\n \"name\": \"AzureFileShare;698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems\",\r\n \"properties\": {\r\n \"kpisHealths\": {},\r\n \"friendlyName\": \"fs1\",\r\n \"protectionStatus\": \"Healthy\",\r\n \"protectionState\": \"IRPending\",\r\n \"lastBackupStatus\": \"IRPending\",\r\n \"extendedInfo\": {\r\n \"recoveryPointCount\": 0,\r\n \"policyState\": \"Consistent\",\r\n \"resourceState\": \"Active\",\r\n \"resourceStateSyncTime\": \"2022-03-26T08:46:51.6692423Z\"\r\n },\r\n \"protectedItemType\": \"AzureFileShareProtectedItem\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"workloadType\": \"AzureFileShare\",\r\n \"containerName\": \"StorageContainer;storage;pstestrg8895;pstestsa8895\",\r\n \"sourceResourceId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.storage/storageAccounts/pstestsa8895\",\r\n \"policyId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupPolicies/afspolicy1\",\r\n \"isArchiveEnabled\": false\r\n }\r\n}", - "StatusCode": 200 + "ResponseBody": "{}", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3Bstorage%3Bpstestrg8895%3Bpstestsa8895/protectedItems/AzureFileShare%3B698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959/recoveryPoints?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCc3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9wcm90ZWN0ZWRJdGVtcy9BenVyZUZpbGVTaGFyZSUzQjY5OGRmNTk1OTQ4ZTIzNTVmMmJiNzQ0YTQxY2YyNDVkNGJhMTI1NWQ5Njk5Y2MzYzJhZDFmNTA0NWUxNzc5NTkvcmVjb3ZlcnlQb2ludHM/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895/operationResults/10f79309-a038-434a-b164-0e3038f6373f?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9vcGVyYXRpb25SZXN1bHRzLzEwZjc5MzA5LWEwMzgtNDM0YS1iMTY0LTBlMzAzOGY2MzczZj9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0116c2f4-41a2-4df6-b307-d408a172b3dd" + "f25f9579-d774-488b-b0d1-c6a4280c455e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -1815,15 +1931,24 @@ "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationResults/10f79309-a038-434a-b164-0e3038f6373f?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationsStatus/10f79309-a038-434a-b164-0e3038f6373f?api-version=2019-05-13-preview" + ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "9ef13a6b-93aa-425a-96c9-6b0dbd02b0f1" + "f0fd9148-13ea-4cc0-897a-b6e846fb99e4" ], "x-ms-client-request-id": [ - "0116c2f4-41a2-4df6-b307-d408a172b3dd", - "0116c2f4-41a2-4df6-b307-d408a172b3dd" + "f25f9579-d774-488b-b0d1-c6a4280c455e", + "f25f9579-d774-488b-b0d1-c6a4280c455e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1835,19 +1960,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "299" + "283" ], "x-ms-correlation-request-id": [ - "9ef13a6b-93aa-425a-96c9-6b0dbd02b0f1" + "f0fd9148-13ea-4cc0-897a-b6e846fb99e4" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T084705Z:9ef13a6b-93aa-425a-96c9-6b0dbd02b0f1" + "JIOINDIAWEST:20220516T153814Z:f0fd9148-13ea-4cc0-897a-b6e846fb99e4" ], "Date": [ - "Sat, 26 Mar 2022 08:47:04 GMT" + "Mon, 16 May 2022 15:38:14 GMT" ], "Content-Length": [ - "12" + "2" ], "Content-Type": [ "application/json" @@ -1856,26 +1981,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": []\r\n}", - "StatusCode": 200 + "ResponseBody": "{}", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3Bstorage%3Bpstestrg8895%3Bpstestsa8895/protectedItems/AzureFileShare%3B698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCc3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9wcm90ZWN0ZWRJdGVtcy9BenVyZUZpbGVTaGFyZSUzQjY5OGRmNTk1OTQ4ZTIzNTVmMmJiNzQ0YTQxY2YyNDVkNGJhMTI1NWQ5Njk5Y2MzYzJhZDFmNTA0NWUxNzc5NTk/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", - "RequestMethod": "DELETE", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895/operationResults/10f79309-a038-434a-b164-0e3038f6373f?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9vcGVyYXRpb25SZXN1bHRzLzEwZjc5MzA5LWEwMzgtNDM0YS1iMTY0LTBlMzAzOGY2MzczZj9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0116c2f4-41a2-4df6-b307-d408a172b3dd" + "f25f9579-d774-488b-b0d1-c6a4280c455e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -1886,69 +2011,75 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperationResults/e33286c2-bd4d-4945-a7a1-b17782eaa642?api-version=2021-12-01" + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationResults/10f79309-a038-434a-b164-0e3038f6373f?api-version=2022-02-01" ], "Retry-After": [ "60" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/e33286c2-bd4d-4945-a7a1-b17782eaa642?api-version=2021-12-01" + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationsStatus/10f79309-a038-434a-b164-0e3038f6373f?api-version=2019-05-13-preview" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "a39269be-6964-4348-ac7f-5d6ba2a4f3b4" + "95db20a7-d418-47a5-a560-7d80820d9b71" ], "x-ms-client-request-id": [ - "0116c2f4-41a2-4df6-b307-d408a172b3dd", - "0116c2f4-41a2-4df6-b307-d408a172b3dd" + "f25f9579-d774-488b-b0d1-c6a4280c455e", + "f25f9579-d774-488b-b0d1-c6a4280c455e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-IIS/10.0" + ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ - "14999" + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "282" ], "x-ms-correlation-request-id": [ - "a39269be-6964-4348-ac7f-5d6ba2a4f3b4" + "95db20a7-d418-47a5-a560-7d80820d9b71" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T084706Z:a39269be-6964-4348-ac7f-5d6ba2a4f3b4" + "JIOINDIAWEST:20220516T153815Z:95db20a7-d418-47a5-a560-7d80820d9b71" ], "Date": [ - "Sat, 26 Mar 2022 08:47:05 GMT" + "Mon, 16 May 2022 15:38:15 GMT" + ], + "Content-Length": [ + "2" + ], + "Content-Type": [ + "application/json" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, - "ResponseBody": "", + "ResponseBody": "{}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/e33286c2-bd4d-4945-a7a1-b17782eaa642?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9lMzMyODZjMi1iZDRkLTQ5NDUtYTdhMS1iMTc3ODJlYWE2NDI/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895/operationResults/10f79309-a038-434a-b164-0e3038f6373f?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9vcGVyYXRpb25SZXN1bHRzLzEwZjc5MzA5LWEwMzgtNDM0YS1iMTY0LTBlMzAzOGY2MzczZj9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0116c2f4-41a2-4df6-b307-d408a172b3dd" + "f25f9579-d774-488b-b0d1-c6a4280c455e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -1958,15 +2089,24 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], - "x-ms-request-id": [ - "ef6fb682-bd32-425f-bce0-95ef5d0623ec" + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationResults/10f79309-a038-434a-b164-0e3038f6373f?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationsStatus/10f79309-a038-434a-b164-0e3038f6373f?api-version=2019-05-13-preview" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "ccea3c92-86fd-4b1f-8cf7-6ae162b4d6a0" ], "x-ms-client-request-id": [ - "0116c2f4-41a2-4df6-b307-d408a172b3dd", - "0116c2f4-41a2-4df6-b307-d408a172b3dd" + "f25f9579-d774-488b-b0d1-c6a4280c455e", + "f25f9579-d774-488b-b0d1-c6a4280c455e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1978,19 +2118,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "292" + "281" ], "x-ms-correlation-request-id": [ - "ef6fb682-bd32-425f-bce0-95ef5d0623ec" + "ccea3c92-86fd-4b1f-8cf7-6ae162b4d6a0" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T084706Z:ef6fb682-bd32-425f-bce0-95ef5d0623ec" + "JIOINDIAWEST:20220516T153815Z:ccea3c92-86fd-4b1f-8cf7-6ae162b4d6a0" ], "Date": [ - "Sat, 26 Mar 2022 08:47:05 GMT" + "Mon, 16 May 2022 15:38:15 GMT" ], "Content-Length": [ - "188" + "2" ], "Content-Type": [ "application/json" @@ -1999,26 +2139,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"e33286c2-bd4d-4945-a7a1-b17782eaa642\",\r\n \"name\": \"e33286c2-bd4d-4945-a7a1-b17782eaa642\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-03-26T08:47:05.9143952Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", - "StatusCode": 200 + "ResponseBody": "{}", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/e33286c2-bd4d-4945-a7a1-b17782eaa642?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9lMzMyODZjMi1iZDRkLTQ5NDUtYTdhMS1iMTc3ODJlYWE2NDI/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895/operationResults/10f79309-a038-434a-b164-0e3038f6373f?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9vcGVyYXRpb25SZXN1bHRzLzEwZjc5MzA5LWEwMzgtNDM0YS1iMTY0LTBlMzAzOGY2MzczZj9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0116c2f4-41a2-4df6-b307-d408a172b3dd" + "f25f9579-d774-488b-b0d1-c6a4280c455e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -2028,15 +2168,24 @@ "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationResults/10f79309-a038-434a-b164-0e3038f6373f?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationsStatus/10f79309-a038-434a-b164-0e3038f6373f?api-version=2019-05-13-preview" + ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "b376725e-c3c4-48e1-8719-202ecd920933" + "194c2ed4-4069-4d2d-a347-3b73d65f426f" ], "x-ms-client-request-id": [ - "0116c2f4-41a2-4df6-b307-d408a172b3dd", - "0116c2f4-41a2-4df6-b307-d408a172b3dd" + "f25f9579-d774-488b-b0d1-c6a4280c455e", + "f25f9579-d774-488b-b0d1-c6a4280c455e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2048,19 +2197,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "291" + "280" ], "x-ms-correlation-request-id": [ - "b376725e-c3c4-48e1-8719-202ecd920933" + "194c2ed4-4069-4d2d-a347-3b73d65f426f" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T084716Z:b376725e-c3c4-48e1-8719-202ecd920933" + "JIOINDIAWEST:20220516T153816Z:194c2ed4-4069-4d2d-a347-3b73d65f426f" ], "Date": [ - "Sat, 26 Mar 2022 08:47:16 GMT" + "Mon, 16 May 2022 15:38:16 GMT" ], "Content-Length": [ - "188" + "2" ], "Content-Type": [ "application/json" @@ -2069,26 +2218,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"e33286c2-bd4d-4945-a7a1-b17782eaa642\",\r\n \"name\": \"e33286c2-bd4d-4945-a7a1-b17782eaa642\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-03-26T08:47:05.9143952Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", - "StatusCode": 200 + "ResponseBody": "{}", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/e33286c2-bd4d-4945-a7a1-b17782eaa642?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9lMzMyODZjMi1iZDRkLTQ5NDUtYTdhMS1iMTc3ODJlYWE2NDI/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895/operationResults/10f79309-a038-434a-b164-0e3038f6373f?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9vcGVyYXRpb25SZXN1bHRzLzEwZjc5MzA5LWEwMzgtNDM0YS1iMTY0LTBlMzAzOGY2MzczZj9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0116c2f4-41a2-4df6-b307-d408a172b3dd" + "f25f9579-d774-488b-b0d1-c6a4280c455e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -2098,15 +2247,24 @@ "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationResults/10f79309-a038-434a-b164-0e3038f6373f?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationsStatus/10f79309-a038-434a-b164-0e3038f6373f?api-version=2019-05-13-preview" + ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "fb10ddcc-2fe1-4468-adc6-63d8424e5c32" + "4cf08b71-cf84-41b7-999a-ab48e18c89f8" ], "x-ms-client-request-id": [ - "0116c2f4-41a2-4df6-b307-d408a172b3dd", - "0116c2f4-41a2-4df6-b307-d408a172b3dd" + "f25f9579-d774-488b-b0d1-c6a4280c455e", + "f25f9579-d774-488b-b0d1-c6a4280c455e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2118,19 +2276,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "290" + "279" ], "x-ms-correlation-request-id": [ - "fb10ddcc-2fe1-4468-adc6-63d8424e5c32" + "4cf08b71-cf84-41b7-999a-ab48e18c89f8" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T084727Z:fb10ddcc-2fe1-4468-adc6-63d8424e5c32" + "JIOINDIAWEST:20220516T153816Z:4cf08b71-cf84-41b7-999a-ab48e18c89f8" ], "Date": [ - "Sat, 26 Mar 2022 08:47:27 GMT" + "Mon, 16 May 2022 15:38:16 GMT" ], "Content-Length": [ - "188" + "2" ], "Content-Type": [ "application/json" @@ -2139,26 +2297,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"e33286c2-bd4d-4945-a7a1-b17782eaa642\",\r\n \"name\": \"e33286c2-bd4d-4945-a7a1-b17782eaa642\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-03-26T08:47:05.9143952Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", - "StatusCode": 200 + "ResponseBody": "{}", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/e33286c2-bd4d-4945-a7a1-b17782eaa642?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9lMzMyODZjMi1iZDRkLTQ5NDUtYTdhMS1iMTc3ODJlYWE2NDI/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895/operationResults/10f79309-a038-434a-b164-0e3038f6373f?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9vcGVyYXRpb25SZXN1bHRzLzEwZjc5MzA5LWEwMzgtNDM0YS1iMTY0LTBlMzAzOGY2MzczZj9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0116c2f4-41a2-4df6-b307-d408a172b3dd" + "f25f9579-d774-488b-b0d1-c6a4280c455e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -2168,15 +2326,24 @@ "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationResults/10f79309-a038-434a-b164-0e3038f6373f?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationsStatus/10f79309-a038-434a-b164-0e3038f6373f?api-version=2019-05-13-preview" + ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "b61a52f7-bce8-47fc-aed9-944870318b8c" + "1851d38c-33a4-4553-be3e-a6de2be1f3c9" ], "x-ms-client-request-id": [ - "0116c2f4-41a2-4df6-b307-d408a172b3dd", - "0116c2f4-41a2-4df6-b307-d408a172b3dd" + "f25f9579-d774-488b-b0d1-c6a4280c455e", + "f25f9579-d774-488b-b0d1-c6a4280c455e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2188,19 +2355,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "289" + "278" ], "x-ms-correlation-request-id": [ - "b61a52f7-bce8-47fc-aed9-944870318b8c" + "1851d38c-33a4-4553-be3e-a6de2be1f3c9" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T084737Z:b61a52f7-bce8-47fc-aed9-944870318b8c" + "JIOINDIAWEST:20220516T153817Z:1851d38c-33a4-4553-be3e-a6de2be1f3c9" ], "Date": [ - "Sat, 26 Mar 2022 08:47:37 GMT" + "Mon, 16 May 2022 15:38:17 GMT" ], "Content-Length": [ - "304" + "2" ], "Content-Type": [ "application/json" @@ -2209,26 +2376,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"e33286c2-bd4d-4945-a7a1-b17782eaa642\",\r\n \"name\": \"e33286c2-bd4d-4945-a7a1-b17782eaa642\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-03-26T08:47:05.9143952Z\",\r\n \"endTime\": \"2022-03-26T08:47:05.9143952Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"f5a93728-e9a9-418f-b671-9b165ba57d04\"\r\n }\r\n}", - "StatusCode": 200 + "ResponseBody": "{}", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/e33286c2-bd4d-4945-a7a1-b17782eaa642?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9lMzMyODZjMi1iZDRkLTQ5NDUtYTdhMS1iMTc3ODJlYWE2NDI/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895/operationResults/10f79309-a038-434a-b164-0e3038f6373f?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9vcGVyYXRpb25SZXN1bHRzLzEwZjc5MzA5LWEwMzgtNDM0YS1iMTY0LTBlMzAzOGY2MzczZj9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0116c2f4-41a2-4df6-b307-d408a172b3dd" + "f25f9579-d774-488b-b0d1-c6a4280c455e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -2238,15 +2405,24 @@ "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationResults/10f79309-a038-434a-b164-0e3038f6373f?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationsStatus/10f79309-a038-434a-b164-0e3038f6373f?api-version=2019-05-13-preview" + ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "216a38a2-df11-4919-9f6c-7bdec8890495" + "06cdb761-1b68-4e28-8cea-f89591e2a20a" ], "x-ms-client-request-id": [ - "0116c2f4-41a2-4df6-b307-d408a172b3dd", - "0116c2f4-41a2-4df6-b307-d408a172b3dd" + "f25f9579-d774-488b-b0d1-c6a4280c455e", + "f25f9579-d774-488b-b0d1-c6a4280c455e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2258,19 +2434,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "288" + "277" ], "x-ms-correlation-request-id": [ - "216a38a2-df11-4919-9f6c-7bdec8890495" + "06cdb761-1b68-4e28-8cea-f89591e2a20a" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T084737Z:216a38a2-df11-4919-9f6c-7bdec8890495" + "JIOINDIAWEST:20220516T153817Z:06cdb761-1b68-4e28-8cea-f89591e2a20a" ], "Date": [ - "Sat, 26 Mar 2022 08:47:37 GMT" + "Mon, 16 May 2022 15:38:17 GMT" ], "Content-Length": [ - "304" + "2" ], "Content-Type": [ "application/json" @@ -2279,26 +2455,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"e33286c2-bd4d-4945-a7a1-b17782eaa642\",\r\n \"name\": \"e33286c2-bd4d-4945-a7a1-b17782eaa642\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-03-26T08:47:05.9143952Z\",\r\n \"endTime\": \"2022-03-26T08:47:05.9143952Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"f5a93728-e9a9-418f-b671-9b165ba57d04\"\r\n }\r\n}", - "StatusCode": 200 + "ResponseBody": "{}", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/f5a93728-e9a9-418f-b671-9b165ba57d04?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9mNWE5MzcyOC1lOWE5LTQxOGYtYjY3MS05YjE2NWJhNTdkMDQ/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895/operationResults/10f79309-a038-434a-b164-0e3038f6373f?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9vcGVyYXRpb25SZXN1bHRzLzEwZjc5MzA5LWEwMzgtNDM0YS1iMTY0LTBlMzAzOGY2MzczZj9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0116c2f4-41a2-4df6-b307-d408a172b3dd" + "f25f9579-d774-488b-b0d1-c6a4280c455e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -2308,40 +2484,109 @@ "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-IIS/10.0" - ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "d217033e-69bd-4532-a3c0-a4221774371e" + "567a95aa-44b8-4065-9001-bd5788e31d4b" ], "x-ms-client-request-id": [ - "0116c2f4-41a2-4df6-b307-d408a172b3dd", - "0116c2f4-41a2-4df6-b307-d408a172b3dd" + "f25f9579-d774-488b-b0d1-c6a4280c455e", + "f25f9579-d774-488b-b0d1-c6a4280c455e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" ], "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "276" + ], + "x-ms-correlation-request-id": [ + "567a95aa-44b8-4065-9001-bd5788e31d4b" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153818Z:567a95aa-44b8-4065-9001-bd5788e31d4b" + ], + "Date": [ + "Mon, 16 May 2022 15:38:18 GMT" + ], + "Content-Length": [ + "737" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895\",\r\n \"name\": \"StorageContainer;Storage;pstestrg8895;pstestsa8895\",\r\n \"properties\": {\r\n \"sourceResourceId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstestsa8895\",\r\n \"protectedItemCount\": 0,\r\n \"acquireStorageAccountLock\": \"Acquire\",\r\n \"friendlyName\": \"pstestsa8895\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"registrationStatus\": \"Registered\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerType\": \"StorageContainer\",\r\n \"protectableObjectType\": \"StorageContainer\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895/operationResults/10f79309-a038-434a-b164-0e3038f6373f?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9vcGVyYXRpb25SZXN1bHRzLzEwZjc5MzA5LWEwMzgtNDM0YS1iMTY0LTBlMzAzOGY2MzczZj9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f25f9579-d774-488b-b0d1-c6a4280c455e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "6a8bf6e2-0733-4e58-8b43-f1d62ad87f87" + ], + "x-ms-client-request-id": [ + "f25f9579-d774-488b-b0d1-c6a4280c455e", + "f25f9579-d774-488b-b0d1-c6a4280c455e" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "298" + "275" ], "x-ms-correlation-request-id": [ - "d217033e-69bd-4532-a3c0-a4221774371e" + "6a8bf6e2-0733-4e58-8b43-f1d62ad87f87" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T084738Z:d217033e-69bd-4532-a3c0-a4221774371e" + "JIOINDIAWEST:20220516T153819Z:6a8bf6e2-0733-4e58-8b43-f1d62ad87f87" ], "Date": [ - "Sat, 26 Mar 2022 08:47:37 GMT" + "Mon, 16 May 2022 15:38:18 GMT" ], "Content-Length": [ - "821" + "737" ], "Content-Type": [ "application/json" @@ -2350,26 +2595,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/f5a93728-e9a9-418f-b671-9b165ba57d04\",\r\n \"name\": \"f5a93728-e9a9-418f-b671-9b165ba57d04\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT21.6486127S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"Storage\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"File Share Name\": \"fs1\",\r\n \"Storage Account Name\": \"pstestsa8895\"\r\n }\r\n },\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"DeleteBackupData\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-03-26T08:47:05.9143952Z\",\r\n \"endTime\": \"2022-03-26T08:47:27.5630079Z\",\r\n \"activityId\": \"0116c2f4-41a2-4df6-b307-d408a172b3dd\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895\",\r\n \"name\": \"StorageContainer;Storage;pstestrg8895;pstestsa8895\",\r\n \"properties\": {\r\n \"sourceResourceId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstestsa8895\",\r\n \"protectedItemCount\": 0,\r\n \"acquireStorageAccountLock\": \"Acquire\",\r\n \"friendlyName\": \"pstestsa8895\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"registrationStatus\": \"Registered\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerType\": \"StorageContainer\",\r\n \"protectableObjectType\": \"StorageContainer\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NT9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", - "RequestMethod": "DELETE", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupProtectableItems?$filter=backupManagementType%20eq%20'AzureStorage'&api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwUHJvdGVjdGFibGVJdGVtcz8kZmlsdGVyPWJhY2t1cE1hbmFnZW1lbnRUeXBlJTIwZXElMjAnQXp1cmVTdG9yYWdlJyZhcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "24727d24-33bc-4760-a6d6-7de3ad2feeea" + "f25f9579-d774-488b-b0d1-c6a4280c455e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -2379,70 +2624,137 @@ "Pragma": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperationResults/d0937be9-1948-4b44-b320-6fcd3d2e3130?fabricName=Azure?api-version=2021-12-01" + "X-Content-Type-Options": [ + "nosniff" ], - "Retry-After": [ - "60" + "x-ms-request-id": [ + "141100cf-1466-4e22-ba3a-ddc3116a843d" ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationsStatus/d0937be9-1948-4b44-b320-6fcd3d2e3130?api-version=2019-05-13-preview" + "x-ms-client-request-id": [ + "f25f9579-d774-488b-b0d1-c6a4280c455e", + "f25f9579-d774-488b-b0d1-c6a4280c455e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "299" + ], + "x-ms-correlation-request-id": [ + "141100cf-1466-4e22-ba3a-ddc3116a843d" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153819Z:141100cf-1466-4e22-ba3a-ddc3116a843d" + ], + "Date": [ + "Mon, 16 May 2022 15:38:19 GMT" + ], + "Content-Length": [ + "12" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupProtectableItems?$filter=backupManagementType%20eq%20'AzureStorage'&api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwUHJvdGVjdGFibGVJdGVtcz8kZmlsdGVyPWJhY2t1cE1hbmFnZW1lbnRUeXBlJTIwZXElMjAnQXp1cmVTdG9yYWdlJyZhcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f25f9579-d774-488b-b0d1-c6a4280c455e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "38121ebc-695a-4f8f-93d1-b69ba606b5c0" + "418447af-56e5-447c-a9e0-e3a98e0242a4" ], "x-ms-client-request-id": [ - "24727d24-33bc-4760-a6d6-7de3ad2feeea", - "24727d24-33bc-4760-a6d6-7de3ad2feeea" + "f25f9579-d774-488b-b0d1-c6a4280c455e", + "f25f9579-d774-488b-b0d1-c6a4280c455e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-IIS/10.0" + ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ - "14998" + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "298" ], "x-ms-correlation-request-id": [ - "38121ebc-695a-4f8f-93d1-b69ba606b5c0" + "418447af-56e5-447c-a9e0-e3a98e0242a4" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T084738Z:38121ebc-695a-4f8f-93d1-b69ba606b5c0" + "JIOINDIAWEST:20220516T153828Z:418447af-56e5-447c-a9e0-e3a98e0242a4" ], "Date": [ - "Sat, 26 Mar 2022 08:47:38 GMT" + "Mon, 16 May 2022 15:38:27 GMT" + ], + "Content-Length": [ + "947" + ], + "Content-Type": [ + "application/json" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, - "ResponseBody": "", - "StatusCode": 202 + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/storagecontainer;storage;pstestrg8895;pstestsa8895/protectableItems/azurefileshare;698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959\",\r\n \"name\": \"azurefileshare;698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems\",\r\n \"properties\": {\r\n \"parentContainerFabricId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstestsa8895\",\r\n \"parentContainerFriendlyName\": \"pstestsa8895\",\r\n \"azureFileShareType\": \"XSMB\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"workloadType\": \"AzureFileShare\",\r\n \"protectableItemType\": \"AzureFileShare\",\r\n \"friendlyName\": \"fs1\",\r\n \"protectionState\": \"NotProtected\"\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/d0937be9-1948-4b44-b320-6fcd3d2e3130?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzL2QwOTM3YmU5LTE5NDgtNGI0NC1iMzIwLTZmY2QzZDJlMzEzMD9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", - "RequestMethod": "GET", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895/inquire?$filter=workloadType%20eq%20'AzureFileShare'&api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9pbnF1aXJlPyRmaWx0ZXI9d29ya2xvYWRUeXBlJTIwZXElMjAnQXp1cmVGaWxlU2hhcmUnJmFwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "24727d24-33bc-4760-a6d6-7de3ad2feeea" + "f25f9579-d774-488b-b0d1-c6a4280c455e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -2453,20 +2765,23 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/d0937be9-1948-4b44-b320-6fcd3d2e3130?api-version=2021-12-01" + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationResults/62789e51-a10d-4c10-ae24-e9b35c2b56a0?api-version=2022-02-01" ], "Retry-After": [ "60" ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationsStatus/62789e51-a10d-4c10-ae24-e9b35c2b56a0?api-version=2019-05-13-preview" + ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "29743c1b-bc10-4e59-9ff7-547a1e0134c3" + "39c3e4ea-84f0-4bf0-9a65-04091ccd842f" ], "x-ms-client-request-id": [ - "24727d24-33bc-4760-a6d6-7de3ad2feeea", - "24727d24-33bc-4760-a6d6-7de3ad2feeea" + "f25f9579-d774-488b-b0d1-c6a4280c455e", + "f25f9579-d774-488b-b0d1-c6a4280c455e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2474,17 +2789,17 @@ "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "299" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" ], "x-ms-correlation-request-id": [ - "29743c1b-bc10-4e59-9ff7-547a1e0134c3" + "39c3e4ea-84f0-4bf0-9a65-04091ccd842f" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T084739Z:29743c1b-bc10-4e59-9ff7-547a1e0134c3" + "JIOINDIAWEST:20220516T153820Z:39c3e4ea-84f0-4bf0-9a65-04091ccd842f" ], "Date": [ - "Sat, 26 Mar 2022 08:47:38 GMT" + "Mon, 16 May 2022 15:38:20 GMT" ], "Expires": [ "-1" @@ -2497,22 +2812,22 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/d0937be9-1948-4b44-b320-6fcd3d2e3130?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzL2QwOTM3YmU5LTE5NDgtNGI0NC1iMzIwLTZmY2QzZDJlMzEzMD9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/62789e51-a10d-4c10-ae24-e9b35c2b56a0?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzLzYyNzg5ZTUxLWExMGQtNGMxMC1hZTI0LWU5YjM1YzJiNTZhMD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "24727d24-33bc-4760-a6d6-7de3ad2feeea" + "f25f9579-d774-488b-b0d1-c6a4280c455e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -2523,7 +2838,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/d0937be9-1948-4b44-b320-6fcd3d2e3130?api-version=2021-12-01" + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/62789e51-a10d-4c10-ae24-e9b35c2b56a0?api-version=2022-02-01" ], "Retry-After": [ "60" @@ -2532,11 +2847,11 @@ "nosniff" ], "x-ms-request-id": [ - "30a91eea-8f70-4ef3-9ee4-273cfd43cb13" + "7b2caa73-283a-4a00-a9b5-2736af955710" ], "x-ms-client-request-id": [ - "24727d24-33bc-4760-a6d6-7de3ad2feeea", - "24727d24-33bc-4760-a6d6-7de3ad2feeea" + "f25f9579-d774-488b-b0d1-c6a4280c455e", + "f25f9579-d774-488b-b0d1-c6a4280c455e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2545,16 +2860,16 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "298" + "299" ], "x-ms-correlation-request-id": [ - "30a91eea-8f70-4ef3-9ee4-273cfd43cb13" + "7b2caa73-283a-4a00-a9b5-2736af955710" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T084749Z:30a91eea-8f70-4ef3-9ee4-273cfd43cb13" + "JIOINDIAWEST:20220516T153821Z:7b2caa73-283a-4a00-a9b5-2736af955710" ], "Date": [ - "Sat, 26 Mar 2022 08:47:48 GMT" + "Mon, 16 May 2022 15:38:20 GMT" ], "Expires": [ "-1" @@ -2567,22 +2882,22 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/d0937be9-1948-4b44-b320-6fcd3d2e3130?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzL2QwOTM3YmU5LTE5NDgtNGI0NC1iMzIwLTZmY2QzZDJlMzEzMD9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/62789e51-a10d-4c10-ae24-e9b35c2b56a0?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzLzYyNzg5ZTUxLWExMGQtNGMxMC1hZTI0LWU5YjM1YzJiNTZhMD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "24727d24-33bc-4760-a6d6-7de3ad2feeea" + "f25f9579-d774-488b-b0d1-c6a4280c455e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -2593,7 +2908,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/d0937be9-1948-4b44-b320-6fcd3d2e3130?api-version=2021-12-01" + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/62789e51-a10d-4c10-ae24-e9b35c2b56a0?api-version=2022-02-01" ], "Retry-After": [ "60" @@ -2602,11 +2917,11 @@ "nosniff" ], "x-ms-request-id": [ - "d74553a5-2e06-4a2d-b42f-955913a7c59a" + "924e3938-a971-4a12-9b7a-beec65cd6f2e" ], "x-ms-client-request-id": [ - "24727d24-33bc-4760-a6d6-7de3ad2feeea", - "24727d24-33bc-4760-a6d6-7de3ad2feeea" + "f25f9579-d774-488b-b0d1-c6a4280c455e", + "f25f9579-d774-488b-b0d1-c6a4280c455e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2615,16 +2930,16 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "297" + "298" ], "x-ms-correlation-request-id": [ - "d74553a5-2e06-4a2d-b42f-955913a7c59a" + "924e3938-a971-4a12-9b7a-beec65cd6f2e" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T084759Z:d74553a5-2e06-4a2d-b42f-955913a7c59a" + "JIOINDIAWEST:20220516T153821Z:924e3938-a971-4a12-9b7a-beec65cd6f2e" ], "Date": [ - "Sat, 26 Mar 2022 08:47:58 GMT" + "Mon, 16 May 2022 15:38:21 GMT" ], "Expires": [ "-1" @@ -2637,22 +2952,22 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/d0937be9-1948-4b44-b320-6fcd3d2e3130?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzL2QwOTM3YmU5LTE5NDgtNGI0NC1iMzIwLTZmY2QzZDJlMzEzMD9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/62789e51-a10d-4c10-ae24-e9b35c2b56a0?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzLzYyNzg5ZTUxLWExMGQtNGMxMC1hZTI0LWU5YjM1YzJiNTZhMD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "24727d24-33bc-4760-a6d6-7de3ad2feeea" + "f25f9579-d774-488b-b0d1-c6a4280c455e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -2662,15 +2977,21 @@ "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/62789e51-a10d-4c10-ae24-e9b35c2b56a0?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "d5828a7e-de89-4313-a615-c870e18ecbd5" + "4b304f0f-daf8-4ec2-ae4b-aaff2dc0ef29" ], "x-ms-client-request-id": [ - "24727d24-33bc-4760-a6d6-7de3ad2feeea", - "24727d24-33bc-4760-a6d6-7de3ad2feeea" + "f25f9579-d774-488b-b0d1-c6a4280c455e", + "f25f9579-d774-488b-b0d1-c6a4280c455e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2679,38 +3000,44 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "296" + "297" ], "x-ms-correlation-request-id": [ - "d5828a7e-de89-4313-a615-c870e18ecbd5" + "4b304f0f-daf8-4ec2-ae4b-aaff2dc0ef29" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T084810Z:d5828a7e-de89-4313-a615-c870e18ecbd5" + "JIOINDIAWEST:20220516T153822Z:4b304f0f-daf8-4ec2-ae4b-aaff2dc0ef29" ], "Date": [ - "Sat, 26 Mar 2022 08:48:09 GMT" + "Mon, 16 May 2022 15:38:21 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", - "StatusCode": 204 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/d0937be9-1948-4b44-b320-6fcd3d2e3130?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzL2QwOTM3YmU5LTE5NDgtNGI0NC1iMzIwLTZmY2QzZDJlMzEzMD9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/62789e51-a10d-4c10-ae24-e9b35c2b56a0?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzLzYyNzg5ZTUxLWExMGQtNGMxMC1hZTI0LWU5YjM1YzJiNTZhMD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "24727d24-33bc-4760-a6d6-7de3ad2feeea" + "f25f9579-d774-488b-b0d1-c6a4280c455e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -2720,15 +3047,21 @@ "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/62789e51-a10d-4c10-ae24-e9b35c2b56a0?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "809f4235-553f-40ba-9c5e-44c8a4aaa5ef" + "c2866017-189c-4fb4-9d31-fb93f971f8d3" ], "x-ms-client-request-id": [ - "24727d24-33bc-4760-a6d6-7de3ad2feeea", - "24727d24-33bc-4760-a6d6-7de3ad2feeea" + "f25f9579-d774-488b-b0d1-c6a4280c455e", + "f25f9579-d774-488b-b0d1-c6a4280c455e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2737,16 +3070,12031 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "295" + "296" + ], + "x-ms-correlation-request-id": [ + "c2866017-189c-4fb4-9d31-fb93f971f8d3" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153822Z:c2866017-189c-4fb4-9d31-fb93f971f8d3" + ], + "Date": [ + "Mon, 16 May 2022 15:38:22 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/62789e51-a10d-4c10-ae24-e9b35c2b56a0?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzLzYyNzg5ZTUxLWExMGQtNGMxMC1hZTI0LWU5YjM1YzJiNTZhMD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f25f9579-d774-488b-b0d1-c6a4280c455e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/62789e51-a10d-4c10-ae24-e9b35c2b56a0?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "60b8a029-371e-492b-b2fd-fdffc256b001" + ], + "x-ms-client-request-id": [ + "f25f9579-d774-488b-b0d1-c6a4280c455e", + "f25f9579-d774-488b-b0d1-c6a4280c455e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "295" + ], + "x-ms-correlation-request-id": [ + "60b8a029-371e-492b-b2fd-fdffc256b001" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153823Z:60b8a029-371e-492b-b2fd-fdffc256b001" + ], + "Date": [ + "Mon, 16 May 2022 15:38:22 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/62789e51-a10d-4c10-ae24-e9b35c2b56a0?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzLzYyNzg5ZTUxLWExMGQtNGMxMC1hZTI0LWU5YjM1YzJiNTZhMD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f25f9579-d774-488b-b0d1-c6a4280c455e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/62789e51-a10d-4c10-ae24-e9b35c2b56a0?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "ebe4b454-590a-4f41-b41a-0d95c4753790" + ], + "x-ms-client-request-id": [ + "f25f9579-d774-488b-b0d1-c6a4280c455e", + "f25f9579-d774-488b-b0d1-c6a4280c455e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "294" + ], + "x-ms-correlation-request-id": [ + "ebe4b454-590a-4f41-b41a-0d95c4753790" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153823Z:ebe4b454-590a-4f41-b41a-0d95c4753790" + ], + "Date": [ + "Mon, 16 May 2022 15:38:23 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/62789e51-a10d-4c10-ae24-e9b35c2b56a0?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzLzYyNzg5ZTUxLWExMGQtNGMxMC1hZTI0LWU5YjM1YzJiNTZhMD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f25f9579-d774-488b-b0d1-c6a4280c455e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/62789e51-a10d-4c10-ae24-e9b35c2b56a0?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "4a9315e6-65cb-43bf-b602-9052c9fad8a0" + ], + "x-ms-client-request-id": [ + "f25f9579-d774-488b-b0d1-c6a4280c455e", + "f25f9579-d774-488b-b0d1-c6a4280c455e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "293" + ], + "x-ms-correlation-request-id": [ + "4a9315e6-65cb-43bf-b602-9052c9fad8a0" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153824Z:4a9315e6-65cb-43bf-b602-9052c9fad8a0" + ], + "Date": [ + "Mon, 16 May 2022 15:38:23 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/62789e51-a10d-4c10-ae24-e9b35c2b56a0?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzLzYyNzg5ZTUxLWExMGQtNGMxMC1hZTI0LWU5YjM1YzJiNTZhMD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f25f9579-d774-488b-b0d1-c6a4280c455e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/62789e51-a10d-4c10-ae24-e9b35c2b56a0?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "691d74f8-46c9-496f-a5af-ce433bb55c2f" + ], + "x-ms-client-request-id": [ + "f25f9579-d774-488b-b0d1-c6a4280c455e", + "f25f9579-d774-488b-b0d1-c6a4280c455e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "292" + ], + "x-ms-correlation-request-id": [ + "691d74f8-46c9-496f-a5af-ce433bb55c2f" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153824Z:691d74f8-46c9-496f-a5af-ce433bb55c2f" + ], + "Date": [ + "Mon, 16 May 2022 15:38:24 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/62789e51-a10d-4c10-ae24-e9b35c2b56a0?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzLzYyNzg5ZTUxLWExMGQtNGMxMC1hZTI0LWU5YjM1YzJiNTZhMD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f25f9579-d774-488b-b0d1-c6a4280c455e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/62789e51-a10d-4c10-ae24-e9b35c2b56a0?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "65830952-2dd0-4dcc-a7ab-c3784873b006" + ], + "x-ms-client-request-id": [ + "f25f9579-d774-488b-b0d1-c6a4280c455e", + "f25f9579-d774-488b-b0d1-c6a4280c455e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "291" + ], + "x-ms-correlation-request-id": [ + "65830952-2dd0-4dcc-a7ab-c3784873b006" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153825Z:65830952-2dd0-4dcc-a7ab-c3784873b006" + ], + "Date": [ + "Mon, 16 May 2022 15:38:24 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/62789e51-a10d-4c10-ae24-e9b35c2b56a0?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzLzYyNzg5ZTUxLWExMGQtNGMxMC1hZTI0LWU5YjM1YzJiNTZhMD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f25f9579-d774-488b-b0d1-c6a4280c455e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "042a8eb7-5af4-42ec-87a8-623a54b582c4" + ], + "x-ms-client-request-id": [ + "f25f9579-d774-488b-b0d1-c6a4280c455e", + "f25f9579-d774-488b-b0d1-c6a4280c455e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "290" + ], + "x-ms-correlation-request-id": [ + "042a8eb7-5af4-42ec-87a8-623a54b582c4" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153826Z:042a8eb7-5af4-42ec-87a8-623a54b582c4" + ], + "Date": [ + "Mon, 16 May 2022 15:38:25 GMT" + ] + }, + "ResponseBody": "", + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/62789e51-a10d-4c10-ae24-e9b35c2b56a0?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzLzYyNzg5ZTUxLWExMGQtNGMxMC1hZTI0LWU5YjM1YzJiNTZhMD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f25f9579-d774-488b-b0d1-c6a4280c455e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "b2d4e034-7579-4d8c-a43e-6d5e2ad9c344" + ], + "x-ms-client-request-id": [ + "f25f9579-d774-488b-b0d1-c6a4280c455e", + "f25f9579-d774-488b-b0d1-c6a4280c455e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "289" + ], + "x-ms-correlation-request-id": [ + "b2d4e034-7579-4d8c-a43e-6d5e2ad9c344" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153826Z:b2d4e034-7579-4d8c-a43e-6d5e2ad9c344" + ], + "Date": [ + "Mon, 16 May 2022 15:38:25 GMT" + ] + }, + "ResponseBody": "", + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/storagecontainer%3Bstorage%3Bpstestrg8895%3Bpstestsa8895/protectedItems/azurefileshare%3B698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9zdG9yYWdlY29udGFpbmVyJTNCc3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9wcm90ZWN0ZWRJdGVtcy9henVyZWZpbGVzaGFyZSUzQjY5OGRmNTk1OTQ4ZTIzNTVmMmJiNzQ0YTQxY2YyNDVkNGJhMTI1NWQ5Njk5Y2MzYzJhZDFmNTA0NWUxNzc5NTk/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"protectedItemType\": \"AzureFileShareProtectedItem\",\r\n \"sourceResourceId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstestsa8895\",\r\n \"policyId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupPolicies/afspolicy1\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f25f9579-d774-488b-b0d1-c6a4280c455e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "433" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/storagecontainer;storage;pstestrg8895;pstestsa8895/protectedItems/azurefileshare;698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959/operationResults/4d6ba5a5-4ddf-4efd-9959-b8b7cd9aebd4?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/storagecontainer;storage;pstestrg8895;pstestsa8895/protectedItems/azurefileshare;698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959/operationsStatus/4d6ba5a5-4ddf-4efd-9959-b8b7cd9aebd4?api-version=2022-02-01" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "a7c42cbc-bea6-425a-b66f-57d1a348885d" + ], + "x-ms-client-request-id": [ + "f25f9579-d774-488b-b0d1-c6a4280c455e", + "f25f9579-d774-488b-b0d1-c6a4280c455e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-correlation-request-id": [ + "a7c42cbc-bea6-425a-b66f-57d1a348885d" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153830Z:a7c42cbc-bea6-425a-b66f-57d1a348885d" + ], + "Date": [ + "Mon, 16 May 2022 15:38:29 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/4d6ba5a5-4ddf-4efd-9959-b8b7cd9aebd4?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy80ZDZiYTVhNS00ZGRmLTRlZmQtOTk1OS1iOGI3Y2Q5YWViZDQ/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f25f9579-d774-488b-b0d1-c6a4280c455e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "b37f5216-2701-40d4-a97b-8aed440ed028" + ], + "x-ms-client-request-id": [ + "f25f9579-d774-488b-b0d1-c6a4280c455e", + "f25f9579-d774-488b-b0d1-c6a4280c455e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "299" + ], + "x-ms-correlation-request-id": [ + "b37f5216-2701-40d4-a97b-8aed440ed028" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153831Z:b37f5216-2701-40d4-a97b-8aed440ed028" + ], + "Date": [ + "Mon, 16 May 2022 15:38:30 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"4d6ba5a5-4ddf-4efd-9959-b8b7cd9aebd4\",\r\n \"name\": \"4d6ba5a5-4ddf-4efd-9959-b8b7cd9aebd4\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:38:30.0656373Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/4d6ba5a5-4ddf-4efd-9959-b8b7cd9aebd4?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy80ZDZiYTVhNS00ZGRmLTRlZmQtOTk1OS1iOGI3Y2Q5YWViZDQ/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f25f9579-d774-488b-b0d1-c6a4280c455e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "06542a7b-d35e-4fac-9ffc-43314000498e" + ], + "x-ms-client-request-id": [ + "f25f9579-d774-488b-b0d1-c6a4280c455e", + "f25f9579-d774-488b-b0d1-c6a4280c455e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "298" + ], + "x-ms-correlation-request-id": [ + "06542a7b-d35e-4fac-9ffc-43314000498e" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153831Z:06542a7b-d35e-4fac-9ffc-43314000498e" + ], + "Date": [ + "Mon, 16 May 2022 15:38:30 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"4d6ba5a5-4ddf-4efd-9959-b8b7cd9aebd4\",\r\n \"name\": \"4d6ba5a5-4ddf-4efd-9959-b8b7cd9aebd4\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:38:30.0656373Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/4d6ba5a5-4ddf-4efd-9959-b8b7cd9aebd4?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy80ZDZiYTVhNS00ZGRmLTRlZmQtOTk1OS1iOGI3Y2Q5YWViZDQ/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f25f9579-d774-488b-b0d1-c6a4280c455e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "b430545d-d222-4145-8649-8b78fa35c5a9" + ], + "x-ms-client-request-id": [ + "f25f9579-d774-488b-b0d1-c6a4280c455e", + "f25f9579-d774-488b-b0d1-c6a4280c455e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "297" + ], + "x-ms-correlation-request-id": [ + "b430545d-d222-4145-8649-8b78fa35c5a9" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153832Z:b430545d-d222-4145-8649-8b78fa35c5a9" + ], + "Date": [ + "Mon, 16 May 2022 15:38:32 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"4d6ba5a5-4ddf-4efd-9959-b8b7cd9aebd4\",\r\n \"name\": \"4d6ba5a5-4ddf-4efd-9959-b8b7cd9aebd4\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:38:30.0656373Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/4d6ba5a5-4ddf-4efd-9959-b8b7cd9aebd4?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy80ZDZiYTVhNS00ZGRmLTRlZmQtOTk1OS1iOGI3Y2Q5YWViZDQ/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f25f9579-d774-488b-b0d1-c6a4280c455e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "9a697019-5402-4658-a05e-ba2c3c28ba32" + ], + "x-ms-client-request-id": [ + "f25f9579-d774-488b-b0d1-c6a4280c455e", + "f25f9579-d774-488b-b0d1-c6a4280c455e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "296" + ], + "x-ms-correlation-request-id": [ + "9a697019-5402-4658-a05e-ba2c3c28ba32" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153832Z:9a697019-5402-4658-a05e-ba2c3c28ba32" + ], + "Date": [ + "Mon, 16 May 2022 15:38:32 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"4d6ba5a5-4ddf-4efd-9959-b8b7cd9aebd4\",\r\n \"name\": \"4d6ba5a5-4ddf-4efd-9959-b8b7cd9aebd4\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:38:30.0656373Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/4d6ba5a5-4ddf-4efd-9959-b8b7cd9aebd4?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy80ZDZiYTVhNS00ZGRmLTRlZmQtOTk1OS1iOGI3Y2Q5YWViZDQ/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f25f9579-d774-488b-b0d1-c6a4280c455e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "dc5b5b77-86ab-466a-9153-dd74729f2eb0" + ], + "x-ms-client-request-id": [ + "f25f9579-d774-488b-b0d1-c6a4280c455e", + "f25f9579-d774-488b-b0d1-c6a4280c455e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "295" + ], + "x-ms-correlation-request-id": [ + "dc5b5b77-86ab-466a-9153-dd74729f2eb0" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153833Z:dc5b5b77-86ab-466a-9153-dd74729f2eb0" + ], + "Date": [ + "Mon, 16 May 2022 15:38:33 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"4d6ba5a5-4ddf-4efd-9959-b8b7cd9aebd4\",\r\n \"name\": \"4d6ba5a5-4ddf-4efd-9959-b8b7cd9aebd4\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:38:30.0656373Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/4d6ba5a5-4ddf-4efd-9959-b8b7cd9aebd4?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy80ZDZiYTVhNS00ZGRmLTRlZmQtOTk1OS1iOGI3Y2Q5YWViZDQ/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f25f9579-d774-488b-b0d1-c6a4280c455e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "851f6c54-7c43-44d4-8c2e-818baa94ef13" + ], + "x-ms-client-request-id": [ + "f25f9579-d774-488b-b0d1-c6a4280c455e", + "f25f9579-d774-488b-b0d1-c6a4280c455e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "294" + ], + "x-ms-correlation-request-id": [ + "851f6c54-7c43-44d4-8c2e-818baa94ef13" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153833Z:851f6c54-7c43-44d4-8c2e-818baa94ef13" + ], + "Date": [ + "Mon, 16 May 2022 15:38:33 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"4d6ba5a5-4ddf-4efd-9959-b8b7cd9aebd4\",\r\n \"name\": \"4d6ba5a5-4ddf-4efd-9959-b8b7cd9aebd4\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:38:30.0656373Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/4d6ba5a5-4ddf-4efd-9959-b8b7cd9aebd4?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy80ZDZiYTVhNS00ZGRmLTRlZmQtOTk1OS1iOGI3Y2Q5YWViZDQ/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f25f9579-d774-488b-b0d1-c6a4280c455e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "cf1fbf1b-24cd-4e94-b3aa-d5f3fcd248a6" + ], + "x-ms-client-request-id": [ + "f25f9579-d774-488b-b0d1-c6a4280c455e", + "f25f9579-d774-488b-b0d1-c6a4280c455e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "293" + ], + "x-ms-correlation-request-id": [ + "cf1fbf1b-24cd-4e94-b3aa-d5f3fcd248a6" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153834Z:cf1fbf1b-24cd-4e94-b3aa-d5f3fcd248a6" + ], + "Date": [ + "Mon, 16 May 2022 15:38:34 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"4d6ba5a5-4ddf-4efd-9959-b8b7cd9aebd4\",\r\n \"name\": \"4d6ba5a5-4ddf-4efd-9959-b8b7cd9aebd4\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:38:30.0656373Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/4d6ba5a5-4ddf-4efd-9959-b8b7cd9aebd4?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy80ZDZiYTVhNS00ZGRmLTRlZmQtOTk1OS1iOGI3Y2Q5YWViZDQ/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f25f9579-d774-488b-b0d1-c6a4280c455e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "be85734b-c2d3-4cb2-b3d2-8621c184b917" + ], + "x-ms-client-request-id": [ + "f25f9579-d774-488b-b0d1-c6a4280c455e", + "f25f9579-d774-488b-b0d1-c6a4280c455e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "292" + ], + "x-ms-correlation-request-id": [ + "be85734b-c2d3-4cb2-b3d2-8621c184b917" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153834Z:be85734b-c2d3-4cb2-b3d2-8621c184b917" + ], + "Date": [ + "Mon, 16 May 2022 15:38:34 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"4d6ba5a5-4ddf-4efd-9959-b8b7cd9aebd4\",\r\n \"name\": \"4d6ba5a5-4ddf-4efd-9959-b8b7cd9aebd4\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:38:30.0656373Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/4d6ba5a5-4ddf-4efd-9959-b8b7cd9aebd4?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy80ZDZiYTVhNS00ZGRmLTRlZmQtOTk1OS1iOGI3Y2Q5YWViZDQ/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f25f9579-d774-488b-b0d1-c6a4280c455e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "302c7764-8081-4ff5-b7b7-1e983be3112a" + ], + "x-ms-client-request-id": [ + "f25f9579-d774-488b-b0d1-c6a4280c455e", + "f25f9579-d774-488b-b0d1-c6a4280c455e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "291" + ], + "x-ms-correlation-request-id": [ + "302c7764-8081-4ff5-b7b7-1e983be3112a" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153835Z:302c7764-8081-4ff5-b7b7-1e983be3112a" + ], + "Date": [ + "Mon, 16 May 2022 15:38:35 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"4d6ba5a5-4ddf-4efd-9959-b8b7cd9aebd4\",\r\n \"name\": \"4d6ba5a5-4ddf-4efd-9959-b8b7cd9aebd4\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:38:30.0656373Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/4d6ba5a5-4ddf-4efd-9959-b8b7cd9aebd4?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy80ZDZiYTVhNS00ZGRmLTRlZmQtOTk1OS1iOGI3Y2Q5YWViZDQ/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f25f9579-d774-488b-b0d1-c6a4280c455e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "2400663b-0bda-4889-b14c-4de4f76328dc" + ], + "x-ms-client-request-id": [ + "f25f9579-d774-488b-b0d1-c6a4280c455e", + "f25f9579-d774-488b-b0d1-c6a4280c455e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "290" + ], + "x-ms-correlation-request-id": [ + "2400663b-0bda-4889-b14c-4de4f76328dc" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153836Z:2400663b-0bda-4889-b14c-4de4f76328dc" + ], + "Date": [ + "Mon, 16 May 2022 15:38:35 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"4d6ba5a5-4ddf-4efd-9959-b8b7cd9aebd4\",\r\n \"name\": \"4d6ba5a5-4ddf-4efd-9959-b8b7cd9aebd4\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:38:30.0656373Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/4d6ba5a5-4ddf-4efd-9959-b8b7cd9aebd4?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy80ZDZiYTVhNS00ZGRmLTRlZmQtOTk1OS1iOGI3Y2Q5YWViZDQ/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f25f9579-d774-488b-b0d1-c6a4280c455e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "519c1e26-be71-41d3-bc49-afa50d6ef107" + ], + "x-ms-client-request-id": [ + "f25f9579-d774-488b-b0d1-c6a4280c455e", + "f25f9579-d774-488b-b0d1-c6a4280c455e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "289" + ], + "x-ms-correlation-request-id": [ + "519c1e26-be71-41d3-bc49-afa50d6ef107" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153836Z:519c1e26-be71-41d3-bc49-afa50d6ef107" + ], + "Date": [ + "Mon, 16 May 2022 15:38:36 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"4d6ba5a5-4ddf-4efd-9959-b8b7cd9aebd4\",\r\n \"name\": \"4d6ba5a5-4ddf-4efd-9959-b8b7cd9aebd4\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:38:30.0656373Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/4d6ba5a5-4ddf-4efd-9959-b8b7cd9aebd4?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy80ZDZiYTVhNS00ZGRmLTRlZmQtOTk1OS1iOGI3Y2Q5YWViZDQ/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f25f9579-d774-488b-b0d1-c6a4280c455e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "2d1ba9d1-e75b-4cef-aa36-89f3c4623ee8" + ], + "x-ms-client-request-id": [ + "f25f9579-d774-488b-b0d1-c6a4280c455e", + "f25f9579-d774-488b-b0d1-c6a4280c455e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "288" + ], + "x-ms-correlation-request-id": [ + "2d1ba9d1-e75b-4cef-aa36-89f3c4623ee8" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153837Z:2d1ba9d1-e75b-4cef-aa36-89f3c4623ee8" + ], + "Date": [ + "Mon, 16 May 2022 15:38:36 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"4d6ba5a5-4ddf-4efd-9959-b8b7cd9aebd4\",\r\n \"name\": \"4d6ba5a5-4ddf-4efd-9959-b8b7cd9aebd4\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:38:30.0656373Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/4d6ba5a5-4ddf-4efd-9959-b8b7cd9aebd4?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy80ZDZiYTVhNS00ZGRmLTRlZmQtOTk1OS1iOGI3Y2Q5YWViZDQ/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f25f9579-d774-488b-b0d1-c6a4280c455e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "7cd9b978-852d-4005-ad39-1e20f343e14a" + ], + "x-ms-client-request-id": [ + "f25f9579-d774-488b-b0d1-c6a4280c455e", + "f25f9579-d774-488b-b0d1-c6a4280c455e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "287" + ], + "x-ms-correlation-request-id": [ + "7cd9b978-852d-4005-ad39-1e20f343e14a" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153837Z:7cd9b978-852d-4005-ad39-1e20f343e14a" + ], + "Date": [ + "Mon, 16 May 2022 15:38:37 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"4d6ba5a5-4ddf-4efd-9959-b8b7cd9aebd4\",\r\n \"name\": \"4d6ba5a5-4ddf-4efd-9959-b8b7cd9aebd4\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:38:30.0656373Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/4d6ba5a5-4ddf-4efd-9959-b8b7cd9aebd4?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy80ZDZiYTVhNS00ZGRmLTRlZmQtOTk1OS1iOGI3Y2Q5YWViZDQ/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f25f9579-d774-488b-b0d1-c6a4280c455e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "730ecc56-ec3b-40d5-9bc3-532c69d46fd9" + ], + "x-ms-client-request-id": [ + "f25f9579-d774-488b-b0d1-c6a4280c455e", + "f25f9579-d774-488b-b0d1-c6a4280c455e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "286" + ], + "x-ms-correlation-request-id": [ + "730ecc56-ec3b-40d5-9bc3-532c69d46fd9" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153838Z:730ecc56-ec3b-40d5-9bc3-532c69d46fd9" + ], + "Date": [ + "Mon, 16 May 2022 15:38:38 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"4d6ba5a5-4ddf-4efd-9959-b8b7cd9aebd4\",\r\n \"name\": \"4d6ba5a5-4ddf-4efd-9959-b8b7cd9aebd4\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:38:30.0656373Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/4d6ba5a5-4ddf-4efd-9959-b8b7cd9aebd4?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy80ZDZiYTVhNS00ZGRmLTRlZmQtOTk1OS1iOGI3Y2Q5YWViZDQ/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f25f9579-d774-488b-b0d1-c6a4280c455e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "83e5dd25-b7c7-438a-8250-24aae720b7fc" + ], + "x-ms-client-request-id": [ + "f25f9579-d774-488b-b0d1-c6a4280c455e", + "f25f9579-d774-488b-b0d1-c6a4280c455e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "285" + ], + "x-ms-correlation-request-id": [ + "83e5dd25-b7c7-438a-8250-24aae720b7fc" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153838Z:83e5dd25-b7c7-438a-8250-24aae720b7fc" + ], + "Date": [ + "Mon, 16 May 2022 15:38:38 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"4d6ba5a5-4ddf-4efd-9959-b8b7cd9aebd4\",\r\n \"name\": \"4d6ba5a5-4ddf-4efd-9959-b8b7cd9aebd4\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:38:30.0656373Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/4d6ba5a5-4ddf-4efd-9959-b8b7cd9aebd4?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy80ZDZiYTVhNS00ZGRmLTRlZmQtOTk1OS1iOGI3Y2Q5YWViZDQ/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f25f9579-d774-488b-b0d1-c6a4280c455e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "381fe12f-d505-4e91-a079-73bb5a676af1" + ], + "x-ms-client-request-id": [ + "f25f9579-d774-488b-b0d1-c6a4280c455e", + "f25f9579-d774-488b-b0d1-c6a4280c455e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "284" + ], + "x-ms-correlation-request-id": [ + "381fe12f-d505-4e91-a079-73bb5a676af1" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153839Z:381fe12f-d505-4e91-a079-73bb5a676af1" + ], + "Date": [ + "Mon, 16 May 2022 15:38:39 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"4d6ba5a5-4ddf-4efd-9959-b8b7cd9aebd4\",\r\n \"name\": \"4d6ba5a5-4ddf-4efd-9959-b8b7cd9aebd4\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:38:30.0656373Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/4d6ba5a5-4ddf-4efd-9959-b8b7cd9aebd4?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy80ZDZiYTVhNS00ZGRmLTRlZmQtOTk1OS1iOGI3Y2Q5YWViZDQ/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f25f9579-d774-488b-b0d1-c6a4280c455e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "1998d44b-6f29-4787-b9ed-72b7260765bd" + ], + "x-ms-client-request-id": [ + "f25f9579-d774-488b-b0d1-c6a4280c455e", + "f25f9579-d774-488b-b0d1-c6a4280c455e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "283" + ], + "x-ms-correlation-request-id": [ + "1998d44b-6f29-4787-b9ed-72b7260765bd" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153839Z:1998d44b-6f29-4787-b9ed-72b7260765bd" + ], + "Date": [ + "Mon, 16 May 2022 15:38:39 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"4d6ba5a5-4ddf-4efd-9959-b8b7cd9aebd4\",\r\n \"name\": \"4d6ba5a5-4ddf-4efd-9959-b8b7cd9aebd4\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:38:30.0656373Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/4d6ba5a5-4ddf-4efd-9959-b8b7cd9aebd4?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy80ZDZiYTVhNS00ZGRmLTRlZmQtOTk1OS1iOGI3Y2Q5YWViZDQ/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f25f9579-d774-488b-b0d1-c6a4280c455e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "82027e04-9d17-400c-8c5f-bdc2022ea678" + ], + "x-ms-client-request-id": [ + "f25f9579-d774-488b-b0d1-c6a4280c455e", + "f25f9579-d774-488b-b0d1-c6a4280c455e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "282" + ], + "x-ms-correlation-request-id": [ + "82027e04-9d17-400c-8c5f-bdc2022ea678" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153840Z:82027e04-9d17-400c-8c5f-bdc2022ea678" + ], + "Date": [ + "Mon, 16 May 2022 15:38:39 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"4d6ba5a5-4ddf-4efd-9959-b8b7cd9aebd4\",\r\n \"name\": \"4d6ba5a5-4ddf-4efd-9959-b8b7cd9aebd4\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:38:30.0656373Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/4d6ba5a5-4ddf-4efd-9959-b8b7cd9aebd4?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy80ZDZiYTVhNS00ZGRmLTRlZmQtOTk1OS1iOGI3Y2Q5YWViZDQ/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f25f9579-d774-488b-b0d1-c6a4280c455e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "730df4bf-429e-4b0b-b63f-b4c5befbb2d1" + ], + "x-ms-client-request-id": [ + "f25f9579-d774-488b-b0d1-c6a4280c455e", + "f25f9579-d774-488b-b0d1-c6a4280c455e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "281" + ], + "x-ms-correlation-request-id": [ + "730df4bf-429e-4b0b-b63f-b4c5befbb2d1" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153840Z:730df4bf-429e-4b0b-b63f-b4c5befbb2d1" + ], + "Date": [ + "Mon, 16 May 2022 15:38:40 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"4d6ba5a5-4ddf-4efd-9959-b8b7cd9aebd4\",\r\n \"name\": \"4d6ba5a5-4ddf-4efd-9959-b8b7cd9aebd4\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:38:30.0656373Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/4d6ba5a5-4ddf-4efd-9959-b8b7cd9aebd4?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy80ZDZiYTVhNS00ZGRmLTRlZmQtOTk1OS1iOGI3Y2Q5YWViZDQ/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f25f9579-d774-488b-b0d1-c6a4280c455e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "ca838bca-d31d-4e82-823a-b2e2a94b22b7" + ], + "x-ms-client-request-id": [ + "f25f9579-d774-488b-b0d1-c6a4280c455e", + "f25f9579-d774-488b-b0d1-c6a4280c455e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "280" + ], + "x-ms-correlation-request-id": [ + "ca838bca-d31d-4e82-823a-b2e2a94b22b7" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153841Z:ca838bca-d31d-4e82-823a-b2e2a94b22b7" + ], + "Date": [ + "Mon, 16 May 2022 15:38:40 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"4d6ba5a5-4ddf-4efd-9959-b8b7cd9aebd4\",\r\n \"name\": \"4d6ba5a5-4ddf-4efd-9959-b8b7cd9aebd4\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:38:30.0656373Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/4d6ba5a5-4ddf-4efd-9959-b8b7cd9aebd4?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy80ZDZiYTVhNS00ZGRmLTRlZmQtOTk1OS1iOGI3Y2Q5YWViZDQ/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f25f9579-d774-488b-b0d1-c6a4280c455e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "05087700-631f-4b4a-b25a-89b88f1c4ed9" + ], + "x-ms-client-request-id": [ + "f25f9579-d774-488b-b0d1-c6a4280c455e", + "f25f9579-d774-488b-b0d1-c6a4280c455e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "279" + ], + "x-ms-correlation-request-id": [ + "05087700-631f-4b4a-b25a-89b88f1c4ed9" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153841Z:05087700-631f-4b4a-b25a-89b88f1c4ed9" + ], + "Date": [ + "Mon, 16 May 2022 15:38:41 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"4d6ba5a5-4ddf-4efd-9959-b8b7cd9aebd4\",\r\n \"name\": \"4d6ba5a5-4ddf-4efd-9959-b8b7cd9aebd4\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:38:30.0656373Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/4d6ba5a5-4ddf-4efd-9959-b8b7cd9aebd4?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy80ZDZiYTVhNS00ZGRmLTRlZmQtOTk1OS1iOGI3Y2Q5YWViZDQ/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f25f9579-d774-488b-b0d1-c6a4280c455e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "f46b9845-24ea-4aac-b243-e25572d667f9" + ], + "x-ms-client-request-id": [ + "f25f9579-d774-488b-b0d1-c6a4280c455e", + "f25f9579-d774-488b-b0d1-c6a4280c455e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "278" + ], + "x-ms-correlation-request-id": [ + "f46b9845-24ea-4aac-b243-e25572d667f9" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153842Z:f46b9845-24ea-4aac-b243-e25572d667f9" + ], + "Date": [ + "Mon, 16 May 2022 15:38:41 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"4d6ba5a5-4ddf-4efd-9959-b8b7cd9aebd4\",\r\n \"name\": \"4d6ba5a5-4ddf-4efd-9959-b8b7cd9aebd4\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:38:30.0656373Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/4d6ba5a5-4ddf-4efd-9959-b8b7cd9aebd4?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy80ZDZiYTVhNS00ZGRmLTRlZmQtOTk1OS1iOGI3Y2Q5YWViZDQ/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f25f9579-d774-488b-b0d1-c6a4280c455e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "c404836b-e837-46b0-9e56-f46e31bf941d" + ], + "x-ms-client-request-id": [ + "f25f9579-d774-488b-b0d1-c6a4280c455e", + "f25f9579-d774-488b-b0d1-c6a4280c455e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "277" + ], + "x-ms-correlation-request-id": [ + "c404836b-e837-46b0-9e56-f46e31bf941d" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153842Z:c404836b-e837-46b0-9e56-f46e31bf941d" + ], + "Date": [ + "Mon, 16 May 2022 15:38:42 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"4d6ba5a5-4ddf-4efd-9959-b8b7cd9aebd4\",\r\n \"name\": \"4d6ba5a5-4ddf-4efd-9959-b8b7cd9aebd4\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:38:30.0656373Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/4d6ba5a5-4ddf-4efd-9959-b8b7cd9aebd4?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy80ZDZiYTVhNS00ZGRmLTRlZmQtOTk1OS1iOGI3Y2Q5YWViZDQ/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f25f9579-d774-488b-b0d1-c6a4280c455e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "3269b919-c8ff-41bc-bc8e-8171e61e5abb" + ], + "x-ms-client-request-id": [ + "f25f9579-d774-488b-b0d1-c6a4280c455e", + "f25f9579-d774-488b-b0d1-c6a4280c455e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "276" + ], + "x-ms-correlation-request-id": [ + "3269b919-c8ff-41bc-bc8e-8171e61e5abb" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153843Z:3269b919-c8ff-41bc-bc8e-8171e61e5abb" + ], + "Date": [ + "Mon, 16 May 2022 15:38:42 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"4d6ba5a5-4ddf-4efd-9959-b8b7cd9aebd4\",\r\n \"name\": \"4d6ba5a5-4ddf-4efd-9959-b8b7cd9aebd4\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:38:30.0656373Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/4d6ba5a5-4ddf-4efd-9959-b8b7cd9aebd4?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy80ZDZiYTVhNS00ZGRmLTRlZmQtOTk1OS1iOGI3Y2Q5YWViZDQ/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f25f9579-d774-488b-b0d1-c6a4280c455e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "c288468d-7579-4396-90b7-d06514848046" + ], + "x-ms-client-request-id": [ + "f25f9579-d774-488b-b0d1-c6a4280c455e", + "f25f9579-d774-488b-b0d1-c6a4280c455e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "275" + ], + "x-ms-correlation-request-id": [ + "c288468d-7579-4396-90b7-d06514848046" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153843Z:c288468d-7579-4396-90b7-d06514848046" + ], + "Date": [ + "Mon, 16 May 2022 15:38:43 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"4d6ba5a5-4ddf-4efd-9959-b8b7cd9aebd4\",\r\n \"name\": \"4d6ba5a5-4ddf-4efd-9959-b8b7cd9aebd4\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:38:30.0656373Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/4d6ba5a5-4ddf-4efd-9959-b8b7cd9aebd4?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy80ZDZiYTVhNS00ZGRmLTRlZmQtOTk1OS1iOGI3Y2Q5YWViZDQ/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f25f9579-d774-488b-b0d1-c6a4280c455e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "2f95dc41-353e-4b0a-a4c0-a303ae62064f" + ], + "x-ms-client-request-id": [ + "f25f9579-d774-488b-b0d1-c6a4280c455e", + "f25f9579-d774-488b-b0d1-c6a4280c455e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "274" + ], + "x-ms-correlation-request-id": [ + "2f95dc41-353e-4b0a-a4c0-a303ae62064f" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153844Z:2f95dc41-353e-4b0a-a4c0-a303ae62064f" + ], + "Date": [ + "Mon, 16 May 2022 15:38:43 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"4d6ba5a5-4ddf-4efd-9959-b8b7cd9aebd4\",\r\n \"name\": \"4d6ba5a5-4ddf-4efd-9959-b8b7cd9aebd4\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:38:30.0656373Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/4d6ba5a5-4ddf-4efd-9959-b8b7cd9aebd4?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy80ZDZiYTVhNS00ZGRmLTRlZmQtOTk1OS1iOGI3Y2Q5YWViZDQ/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f25f9579-d774-488b-b0d1-c6a4280c455e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "77ca162d-b097-4060-b4fb-f1f25991a524" + ], + "x-ms-client-request-id": [ + "f25f9579-d774-488b-b0d1-c6a4280c455e", + "f25f9579-d774-488b-b0d1-c6a4280c455e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "273" + ], + "x-ms-correlation-request-id": [ + "77ca162d-b097-4060-b4fb-f1f25991a524" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153844Z:77ca162d-b097-4060-b4fb-f1f25991a524" + ], + "Date": [ + "Mon, 16 May 2022 15:38:44 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"4d6ba5a5-4ddf-4efd-9959-b8b7cd9aebd4\",\r\n \"name\": \"4d6ba5a5-4ddf-4efd-9959-b8b7cd9aebd4\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:38:30.0656373Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/4d6ba5a5-4ddf-4efd-9959-b8b7cd9aebd4?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy80ZDZiYTVhNS00ZGRmLTRlZmQtOTk1OS1iOGI3Y2Q5YWViZDQ/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f25f9579-d774-488b-b0d1-c6a4280c455e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "37866144-f25a-459a-ba11-8158b584e994" + ], + "x-ms-client-request-id": [ + "f25f9579-d774-488b-b0d1-c6a4280c455e", + "f25f9579-d774-488b-b0d1-c6a4280c455e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "272" + ], + "x-ms-correlation-request-id": [ + "37866144-f25a-459a-ba11-8158b584e994" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153845Z:37866144-f25a-459a-ba11-8158b584e994" + ], + "Date": [ + "Mon, 16 May 2022 15:38:44 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"4d6ba5a5-4ddf-4efd-9959-b8b7cd9aebd4\",\r\n \"name\": \"4d6ba5a5-4ddf-4efd-9959-b8b7cd9aebd4\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:38:30.0656373Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/4d6ba5a5-4ddf-4efd-9959-b8b7cd9aebd4?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy80ZDZiYTVhNS00ZGRmLTRlZmQtOTk1OS1iOGI3Y2Q5YWViZDQ/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f25f9579-d774-488b-b0d1-c6a4280c455e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "271834cc-b7d6-4d53-84fc-bc1f7915fbd3" + ], + "x-ms-client-request-id": [ + "f25f9579-d774-488b-b0d1-c6a4280c455e", + "f25f9579-d774-488b-b0d1-c6a4280c455e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "271" + ], + "x-ms-correlation-request-id": [ + "271834cc-b7d6-4d53-84fc-bc1f7915fbd3" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153845Z:271834cc-b7d6-4d53-84fc-bc1f7915fbd3" + ], + "Date": [ + "Mon, 16 May 2022 15:38:44 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"4d6ba5a5-4ddf-4efd-9959-b8b7cd9aebd4\",\r\n \"name\": \"4d6ba5a5-4ddf-4efd-9959-b8b7cd9aebd4\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:38:30.0656373Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/4d6ba5a5-4ddf-4efd-9959-b8b7cd9aebd4?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy80ZDZiYTVhNS00ZGRmLTRlZmQtOTk1OS1iOGI3Y2Q5YWViZDQ/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f25f9579-d774-488b-b0d1-c6a4280c455e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "91397040-cac3-41b5-ba35-ed7f10d7fde1" + ], + "x-ms-client-request-id": [ + "f25f9579-d774-488b-b0d1-c6a4280c455e", + "f25f9579-d774-488b-b0d1-c6a4280c455e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "270" + ], + "x-ms-correlation-request-id": [ + "91397040-cac3-41b5-ba35-ed7f10d7fde1" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153846Z:91397040-cac3-41b5-ba35-ed7f10d7fde1" + ], + "Date": [ + "Mon, 16 May 2022 15:38:45 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"4d6ba5a5-4ddf-4efd-9959-b8b7cd9aebd4\",\r\n \"name\": \"4d6ba5a5-4ddf-4efd-9959-b8b7cd9aebd4\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:38:30.0656373Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/4d6ba5a5-4ddf-4efd-9959-b8b7cd9aebd4?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy80ZDZiYTVhNS00ZGRmLTRlZmQtOTk1OS1iOGI3Y2Q5YWViZDQ/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f25f9579-d774-488b-b0d1-c6a4280c455e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "b1674cc9-6c46-4d82-8db4-63501fe94141" + ], + "x-ms-client-request-id": [ + "f25f9579-d774-488b-b0d1-c6a4280c455e", + "f25f9579-d774-488b-b0d1-c6a4280c455e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "269" + ], + "x-ms-correlation-request-id": [ + "b1674cc9-6c46-4d82-8db4-63501fe94141" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153846Z:b1674cc9-6c46-4d82-8db4-63501fe94141" + ], + "Date": [ + "Mon, 16 May 2022 15:38:45 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"4d6ba5a5-4ddf-4efd-9959-b8b7cd9aebd4\",\r\n \"name\": \"4d6ba5a5-4ddf-4efd-9959-b8b7cd9aebd4\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:38:30.0656373Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/4d6ba5a5-4ddf-4efd-9959-b8b7cd9aebd4?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy80ZDZiYTVhNS00ZGRmLTRlZmQtOTk1OS1iOGI3Y2Q5YWViZDQ/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f25f9579-d774-488b-b0d1-c6a4280c455e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "0fb5656d-f87a-45db-bbdd-681b74dd02e3" + ], + "x-ms-client-request-id": [ + "f25f9579-d774-488b-b0d1-c6a4280c455e", + "f25f9579-d774-488b-b0d1-c6a4280c455e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "268" + ], + "x-ms-correlation-request-id": [ + "0fb5656d-f87a-45db-bbdd-681b74dd02e3" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153847Z:0fb5656d-f87a-45db-bbdd-681b74dd02e3" + ], + "Date": [ + "Mon, 16 May 2022 15:38:46 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"4d6ba5a5-4ddf-4efd-9959-b8b7cd9aebd4\",\r\n \"name\": \"4d6ba5a5-4ddf-4efd-9959-b8b7cd9aebd4\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:38:30.0656373Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/4d6ba5a5-4ddf-4efd-9959-b8b7cd9aebd4?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy80ZDZiYTVhNS00ZGRmLTRlZmQtOTk1OS1iOGI3Y2Q5YWViZDQ/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f25f9579-d774-488b-b0d1-c6a4280c455e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "e648ef3a-b5be-446b-8c41-ca987be930bf" + ], + "x-ms-client-request-id": [ + "f25f9579-d774-488b-b0d1-c6a4280c455e", + "f25f9579-d774-488b-b0d1-c6a4280c455e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "267" + ], + "x-ms-correlation-request-id": [ + "e648ef3a-b5be-446b-8c41-ca987be930bf" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153847Z:e648ef3a-b5be-446b-8c41-ca987be930bf" + ], + "Date": [ + "Mon, 16 May 2022 15:38:46 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"4d6ba5a5-4ddf-4efd-9959-b8b7cd9aebd4\",\r\n \"name\": \"4d6ba5a5-4ddf-4efd-9959-b8b7cd9aebd4\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:38:30.0656373Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/4d6ba5a5-4ddf-4efd-9959-b8b7cd9aebd4?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy80ZDZiYTVhNS00ZGRmLTRlZmQtOTk1OS1iOGI3Y2Q5YWViZDQ/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f25f9579-d774-488b-b0d1-c6a4280c455e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "6681eea4-43e2-4871-a1e5-78d58f752ecd" + ], + "x-ms-client-request-id": [ + "f25f9579-d774-488b-b0d1-c6a4280c455e", + "f25f9579-d774-488b-b0d1-c6a4280c455e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "266" + ], + "x-ms-correlation-request-id": [ + "6681eea4-43e2-4871-a1e5-78d58f752ecd" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153848Z:6681eea4-43e2-4871-a1e5-78d58f752ecd" + ], + "Date": [ + "Mon, 16 May 2022 15:38:47 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"4d6ba5a5-4ddf-4efd-9959-b8b7cd9aebd4\",\r\n \"name\": \"4d6ba5a5-4ddf-4efd-9959-b8b7cd9aebd4\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:38:30.0656373Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/4d6ba5a5-4ddf-4efd-9959-b8b7cd9aebd4?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy80ZDZiYTVhNS00ZGRmLTRlZmQtOTk1OS1iOGI3Y2Q5YWViZDQ/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f25f9579-d774-488b-b0d1-c6a4280c455e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "c11f9a32-0134-4554-a748-d95952f54914" + ], + "x-ms-client-request-id": [ + "f25f9579-d774-488b-b0d1-c6a4280c455e", + "f25f9579-d774-488b-b0d1-c6a4280c455e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "265" + ], + "x-ms-correlation-request-id": [ + "c11f9a32-0134-4554-a748-d95952f54914" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153848Z:c11f9a32-0134-4554-a748-d95952f54914" + ], + "Date": [ + "Mon, 16 May 2022 15:38:47 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"4d6ba5a5-4ddf-4efd-9959-b8b7cd9aebd4\",\r\n \"name\": \"4d6ba5a5-4ddf-4efd-9959-b8b7cd9aebd4\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:38:30.0656373Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/4d6ba5a5-4ddf-4efd-9959-b8b7cd9aebd4?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy80ZDZiYTVhNS00ZGRmLTRlZmQtOTk1OS1iOGI3Y2Q5YWViZDQ/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f25f9579-d774-488b-b0d1-c6a4280c455e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "1e46093b-7883-4770-9cd6-0bec95a97005" + ], + "x-ms-client-request-id": [ + "f25f9579-d774-488b-b0d1-c6a4280c455e", + "f25f9579-d774-488b-b0d1-c6a4280c455e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "264" + ], + "x-ms-correlation-request-id": [ + "1e46093b-7883-4770-9cd6-0bec95a97005" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153849Z:1e46093b-7883-4770-9cd6-0bec95a97005" + ], + "Date": [ + "Mon, 16 May 2022 15:38:48 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"4d6ba5a5-4ddf-4efd-9959-b8b7cd9aebd4\",\r\n \"name\": \"4d6ba5a5-4ddf-4efd-9959-b8b7cd9aebd4\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:38:30.0656373Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/4d6ba5a5-4ddf-4efd-9959-b8b7cd9aebd4?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy80ZDZiYTVhNS00ZGRmLTRlZmQtOTk1OS1iOGI3Y2Q5YWViZDQ/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f25f9579-d774-488b-b0d1-c6a4280c455e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "9933fada-92ca-4c02-a824-5762b74dd9ed" + ], + "x-ms-client-request-id": [ + "f25f9579-d774-488b-b0d1-c6a4280c455e", + "f25f9579-d774-488b-b0d1-c6a4280c455e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "263" + ], + "x-ms-correlation-request-id": [ + "9933fada-92ca-4c02-a824-5762b74dd9ed" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153849Z:9933fada-92ca-4c02-a824-5762b74dd9ed" + ], + "Date": [ + "Mon, 16 May 2022 15:38:49 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"4d6ba5a5-4ddf-4efd-9959-b8b7cd9aebd4\",\r\n \"name\": \"4d6ba5a5-4ddf-4efd-9959-b8b7cd9aebd4\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:38:30.0656373Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/4d6ba5a5-4ddf-4efd-9959-b8b7cd9aebd4?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy80ZDZiYTVhNS00ZGRmLTRlZmQtOTk1OS1iOGI3Y2Q5YWViZDQ/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f25f9579-d774-488b-b0d1-c6a4280c455e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "53d693c3-2e2f-43e7-9f82-a18d60b4d790" + ], + "x-ms-client-request-id": [ + "f25f9579-d774-488b-b0d1-c6a4280c455e", + "f25f9579-d774-488b-b0d1-c6a4280c455e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "262" + ], + "x-ms-correlation-request-id": [ + "53d693c3-2e2f-43e7-9f82-a18d60b4d790" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153850Z:53d693c3-2e2f-43e7-9f82-a18d60b4d790" + ], + "Date": [ + "Mon, 16 May 2022 15:38:49 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"4d6ba5a5-4ddf-4efd-9959-b8b7cd9aebd4\",\r\n \"name\": \"4d6ba5a5-4ddf-4efd-9959-b8b7cd9aebd4\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:38:30.0656373Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/4d6ba5a5-4ddf-4efd-9959-b8b7cd9aebd4?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy80ZDZiYTVhNS00ZGRmLTRlZmQtOTk1OS1iOGI3Y2Q5YWViZDQ/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f25f9579-d774-488b-b0d1-c6a4280c455e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "0f8b080a-f143-42e2-a83e-944c3888ba77" + ], + "x-ms-client-request-id": [ + "f25f9579-d774-488b-b0d1-c6a4280c455e", + "f25f9579-d774-488b-b0d1-c6a4280c455e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "261" + ], + "x-ms-correlation-request-id": [ + "0f8b080a-f143-42e2-a83e-944c3888ba77" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153851Z:0f8b080a-f143-42e2-a83e-944c3888ba77" + ], + "Date": [ + "Mon, 16 May 2022 15:38:50 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"4d6ba5a5-4ddf-4efd-9959-b8b7cd9aebd4\",\r\n \"name\": \"4d6ba5a5-4ddf-4efd-9959-b8b7cd9aebd4\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:38:30.0656373Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/4d6ba5a5-4ddf-4efd-9959-b8b7cd9aebd4?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy80ZDZiYTVhNS00ZGRmLTRlZmQtOTk1OS1iOGI3Y2Q5YWViZDQ/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f25f9579-d774-488b-b0d1-c6a4280c455e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "9c1393de-eabc-4735-b97e-b9e83587d614" + ], + "x-ms-client-request-id": [ + "f25f9579-d774-488b-b0d1-c6a4280c455e", + "f25f9579-d774-488b-b0d1-c6a4280c455e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "260" + ], + "x-ms-correlation-request-id": [ + "9c1393de-eabc-4735-b97e-b9e83587d614" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153851Z:9c1393de-eabc-4735-b97e-b9e83587d614" + ], + "Date": [ + "Mon, 16 May 2022 15:38:50 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"4d6ba5a5-4ddf-4efd-9959-b8b7cd9aebd4\",\r\n \"name\": \"4d6ba5a5-4ddf-4efd-9959-b8b7cd9aebd4\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:38:30.0656373Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/4d6ba5a5-4ddf-4efd-9959-b8b7cd9aebd4?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy80ZDZiYTVhNS00ZGRmLTRlZmQtOTk1OS1iOGI3Y2Q5YWViZDQ/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f25f9579-d774-488b-b0d1-c6a4280c455e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "d69ec199-16e0-48e1-8cfc-a6e5695bf4c6" + ], + "x-ms-client-request-id": [ + "f25f9579-d774-488b-b0d1-c6a4280c455e", + "f25f9579-d774-488b-b0d1-c6a4280c455e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "259" + ], + "x-ms-correlation-request-id": [ + "d69ec199-16e0-48e1-8cfc-a6e5695bf4c6" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153852Z:d69ec199-16e0-48e1-8cfc-a6e5695bf4c6" + ], + "Date": [ + "Mon, 16 May 2022 15:38:51 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"4d6ba5a5-4ddf-4efd-9959-b8b7cd9aebd4\",\r\n \"name\": \"4d6ba5a5-4ddf-4efd-9959-b8b7cd9aebd4\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:38:30.0656373Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/4d6ba5a5-4ddf-4efd-9959-b8b7cd9aebd4?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy80ZDZiYTVhNS00ZGRmLTRlZmQtOTk1OS1iOGI3Y2Q5YWViZDQ/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f25f9579-d774-488b-b0d1-c6a4280c455e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "49726800-9aac-4e5f-8e0f-27f65c867ca5" + ], + "x-ms-client-request-id": [ + "f25f9579-d774-488b-b0d1-c6a4280c455e", + "f25f9579-d774-488b-b0d1-c6a4280c455e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "258" + ], + "x-ms-correlation-request-id": [ + "49726800-9aac-4e5f-8e0f-27f65c867ca5" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153852Z:49726800-9aac-4e5f-8e0f-27f65c867ca5" + ], + "Date": [ + "Mon, 16 May 2022 15:38:51 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"4d6ba5a5-4ddf-4efd-9959-b8b7cd9aebd4\",\r\n \"name\": \"4d6ba5a5-4ddf-4efd-9959-b8b7cd9aebd4\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:38:30.0656373Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/4d6ba5a5-4ddf-4efd-9959-b8b7cd9aebd4?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy80ZDZiYTVhNS00ZGRmLTRlZmQtOTk1OS1iOGI3Y2Q5YWViZDQ/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f25f9579-d774-488b-b0d1-c6a4280c455e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "06cb7e92-5d26-43c8-bda5-3c99f1743fbd" + ], + "x-ms-client-request-id": [ + "f25f9579-d774-488b-b0d1-c6a4280c455e", + "f25f9579-d774-488b-b0d1-c6a4280c455e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "257" + ], + "x-ms-correlation-request-id": [ + "06cb7e92-5d26-43c8-bda5-3c99f1743fbd" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153853Z:06cb7e92-5d26-43c8-bda5-3c99f1743fbd" + ], + "Date": [ + "Mon, 16 May 2022 15:38:52 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"4d6ba5a5-4ddf-4efd-9959-b8b7cd9aebd4\",\r\n \"name\": \"4d6ba5a5-4ddf-4efd-9959-b8b7cd9aebd4\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:38:30.0656373Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/4d6ba5a5-4ddf-4efd-9959-b8b7cd9aebd4?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy80ZDZiYTVhNS00ZGRmLTRlZmQtOTk1OS1iOGI3Y2Q5YWViZDQ/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f25f9579-d774-488b-b0d1-c6a4280c455e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "e2703908-7a31-4ada-b06a-febbea259d36" + ], + "x-ms-client-request-id": [ + "f25f9579-d774-488b-b0d1-c6a4280c455e", + "f25f9579-d774-488b-b0d1-c6a4280c455e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "256" + ], + "x-ms-correlation-request-id": [ + "e2703908-7a31-4ada-b06a-febbea259d36" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153853Z:e2703908-7a31-4ada-b06a-febbea259d36" + ], + "Date": [ + "Mon, 16 May 2022 15:38:52 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"4d6ba5a5-4ddf-4efd-9959-b8b7cd9aebd4\",\r\n \"name\": \"4d6ba5a5-4ddf-4efd-9959-b8b7cd9aebd4\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:38:30.0656373Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/4d6ba5a5-4ddf-4efd-9959-b8b7cd9aebd4?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy80ZDZiYTVhNS00ZGRmLTRlZmQtOTk1OS1iOGI3Y2Q5YWViZDQ/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f25f9579-d774-488b-b0d1-c6a4280c455e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "c66c0b6a-fb06-4c5e-867d-d5b726679771" + ], + "x-ms-client-request-id": [ + "f25f9579-d774-488b-b0d1-c6a4280c455e", + "f25f9579-d774-488b-b0d1-c6a4280c455e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "255" + ], + "x-ms-correlation-request-id": [ + "c66c0b6a-fb06-4c5e-867d-d5b726679771" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153854Z:c66c0b6a-fb06-4c5e-867d-d5b726679771" + ], + "Date": [ + "Mon, 16 May 2022 15:38:53 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"4d6ba5a5-4ddf-4efd-9959-b8b7cd9aebd4\",\r\n \"name\": \"4d6ba5a5-4ddf-4efd-9959-b8b7cd9aebd4\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:38:30.0656373Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/4d6ba5a5-4ddf-4efd-9959-b8b7cd9aebd4?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy80ZDZiYTVhNS00ZGRmLTRlZmQtOTk1OS1iOGI3Y2Q5YWViZDQ/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f25f9579-d774-488b-b0d1-c6a4280c455e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "03eeb267-1290-4cc6-844c-09046b9485d1" + ], + "x-ms-client-request-id": [ + "f25f9579-d774-488b-b0d1-c6a4280c455e", + "f25f9579-d774-488b-b0d1-c6a4280c455e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "254" + ], + "x-ms-correlation-request-id": [ + "03eeb267-1290-4cc6-844c-09046b9485d1" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153854Z:03eeb267-1290-4cc6-844c-09046b9485d1" + ], + "Date": [ + "Mon, 16 May 2022 15:38:53 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"4d6ba5a5-4ddf-4efd-9959-b8b7cd9aebd4\",\r\n \"name\": \"4d6ba5a5-4ddf-4efd-9959-b8b7cd9aebd4\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:38:30.0656373Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/4d6ba5a5-4ddf-4efd-9959-b8b7cd9aebd4?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy80ZDZiYTVhNS00ZGRmLTRlZmQtOTk1OS1iOGI3Y2Q5YWViZDQ/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f25f9579-d774-488b-b0d1-c6a4280c455e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "2d8025b7-b22a-4da4-a36d-0a4601d1806a" + ], + "x-ms-client-request-id": [ + "f25f9579-d774-488b-b0d1-c6a4280c455e", + "f25f9579-d774-488b-b0d1-c6a4280c455e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "253" + ], + "x-ms-correlation-request-id": [ + "2d8025b7-b22a-4da4-a36d-0a4601d1806a" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153855Z:2d8025b7-b22a-4da4-a36d-0a4601d1806a" + ], + "Date": [ + "Mon, 16 May 2022 15:38:54 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"4d6ba5a5-4ddf-4efd-9959-b8b7cd9aebd4\",\r\n \"name\": \"4d6ba5a5-4ddf-4efd-9959-b8b7cd9aebd4\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:38:30.0656373Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/4d6ba5a5-4ddf-4efd-9959-b8b7cd9aebd4?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy80ZDZiYTVhNS00ZGRmLTRlZmQtOTk1OS1iOGI3Y2Q5YWViZDQ/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f25f9579-d774-488b-b0d1-c6a4280c455e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "a25d659e-6f69-4deb-acca-82012fb4c36a" + ], + "x-ms-client-request-id": [ + "f25f9579-d774-488b-b0d1-c6a4280c455e", + "f25f9579-d774-488b-b0d1-c6a4280c455e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "252" + ], + "x-ms-correlation-request-id": [ + "a25d659e-6f69-4deb-acca-82012fb4c36a" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153855Z:a25d659e-6f69-4deb-acca-82012fb4c36a" + ], + "Date": [ + "Mon, 16 May 2022 15:38:54 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"4d6ba5a5-4ddf-4efd-9959-b8b7cd9aebd4\",\r\n \"name\": \"4d6ba5a5-4ddf-4efd-9959-b8b7cd9aebd4\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:38:30.0656373Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/4d6ba5a5-4ddf-4efd-9959-b8b7cd9aebd4?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy80ZDZiYTVhNS00ZGRmLTRlZmQtOTk1OS1iOGI3Y2Q5YWViZDQ/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f25f9579-d774-488b-b0d1-c6a4280c455e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "1e001572-985a-4a02-a9d9-623f4c823947" + ], + "x-ms-client-request-id": [ + "f25f9579-d774-488b-b0d1-c6a4280c455e", + "f25f9579-d774-488b-b0d1-c6a4280c455e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "251" + ], + "x-ms-correlation-request-id": [ + "1e001572-985a-4a02-a9d9-623f4c823947" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153856Z:1e001572-985a-4a02-a9d9-623f4c823947" + ], + "Date": [ + "Mon, 16 May 2022 15:38:55 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"4d6ba5a5-4ddf-4efd-9959-b8b7cd9aebd4\",\r\n \"name\": \"4d6ba5a5-4ddf-4efd-9959-b8b7cd9aebd4\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:38:30.0656373Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/4d6ba5a5-4ddf-4efd-9959-b8b7cd9aebd4?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy80ZDZiYTVhNS00ZGRmLTRlZmQtOTk1OS1iOGI3Y2Q5YWViZDQ/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f25f9579-d774-488b-b0d1-c6a4280c455e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "c93a230e-7d14-44b7-a611-574133a53b54" + ], + "x-ms-client-request-id": [ + "f25f9579-d774-488b-b0d1-c6a4280c455e", + "f25f9579-d774-488b-b0d1-c6a4280c455e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "250" + ], + "x-ms-correlation-request-id": [ + "c93a230e-7d14-44b7-a611-574133a53b54" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153856Z:c93a230e-7d14-44b7-a611-574133a53b54" + ], + "Date": [ + "Mon, 16 May 2022 15:38:55 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"4d6ba5a5-4ddf-4efd-9959-b8b7cd9aebd4\",\r\n \"name\": \"4d6ba5a5-4ddf-4efd-9959-b8b7cd9aebd4\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:38:30.0656373Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/4d6ba5a5-4ddf-4efd-9959-b8b7cd9aebd4?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy80ZDZiYTVhNS00ZGRmLTRlZmQtOTk1OS1iOGI3Y2Q5YWViZDQ/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f25f9579-d774-488b-b0d1-c6a4280c455e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "2b8acd91-37db-48d9-9563-dd3644916f48" + ], + "x-ms-client-request-id": [ + "f25f9579-d774-488b-b0d1-c6a4280c455e", + "f25f9579-d774-488b-b0d1-c6a4280c455e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "249" + ], + "x-ms-correlation-request-id": [ + "2b8acd91-37db-48d9-9563-dd3644916f48" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153857Z:2b8acd91-37db-48d9-9563-dd3644916f48" + ], + "Date": [ + "Mon, 16 May 2022 15:38:56 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"4d6ba5a5-4ddf-4efd-9959-b8b7cd9aebd4\",\r\n \"name\": \"4d6ba5a5-4ddf-4efd-9959-b8b7cd9aebd4\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:38:30.0656373Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/4d6ba5a5-4ddf-4efd-9959-b8b7cd9aebd4?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy80ZDZiYTVhNS00ZGRmLTRlZmQtOTk1OS1iOGI3Y2Q5YWViZDQ/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f25f9579-d774-488b-b0d1-c6a4280c455e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "99bf9197-77e4-46ef-b97b-156499cf9c07" + ], + "x-ms-client-request-id": [ + "f25f9579-d774-488b-b0d1-c6a4280c455e", + "f25f9579-d774-488b-b0d1-c6a4280c455e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "248" + ], + "x-ms-correlation-request-id": [ + "99bf9197-77e4-46ef-b97b-156499cf9c07" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153857Z:99bf9197-77e4-46ef-b97b-156499cf9c07" + ], + "Date": [ + "Mon, 16 May 2022 15:38:56 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"4d6ba5a5-4ddf-4efd-9959-b8b7cd9aebd4\",\r\n \"name\": \"4d6ba5a5-4ddf-4efd-9959-b8b7cd9aebd4\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:38:30.0656373Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/4d6ba5a5-4ddf-4efd-9959-b8b7cd9aebd4?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy80ZDZiYTVhNS00ZGRmLTRlZmQtOTk1OS1iOGI3Y2Q5YWViZDQ/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f25f9579-d774-488b-b0d1-c6a4280c455e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "1cdb5277-2b16-4e46-96bd-848f746f0ca3" + ], + "x-ms-client-request-id": [ + "f25f9579-d774-488b-b0d1-c6a4280c455e", + "f25f9579-d774-488b-b0d1-c6a4280c455e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "247" + ], + "x-ms-correlation-request-id": [ + "1cdb5277-2b16-4e46-96bd-848f746f0ca3" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153858Z:1cdb5277-2b16-4e46-96bd-848f746f0ca3" + ], + "Date": [ + "Mon, 16 May 2022 15:38:58 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"4d6ba5a5-4ddf-4efd-9959-b8b7cd9aebd4\",\r\n \"name\": \"4d6ba5a5-4ddf-4efd-9959-b8b7cd9aebd4\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:38:30.0656373Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/4d6ba5a5-4ddf-4efd-9959-b8b7cd9aebd4?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy80ZDZiYTVhNS00ZGRmLTRlZmQtOTk1OS1iOGI3Y2Q5YWViZDQ/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f25f9579-d774-488b-b0d1-c6a4280c455e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "385ff587-d5af-4b15-a8b5-4aca5c20270b" + ], + "x-ms-client-request-id": [ + "f25f9579-d774-488b-b0d1-c6a4280c455e", + "f25f9579-d774-488b-b0d1-c6a4280c455e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "246" + ], + "x-ms-correlation-request-id": [ + "385ff587-d5af-4b15-a8b5-4aca5c20270b" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153858Z:385ff587-d5af-4b15-a8b5-4aca5c20270b" + ], + "Date": [ + "Mon, 16 May 2022 15:38:58 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"4d6ba5a5-4ddf-4efd-9959-b8b7cd9aebd4\",\r\n \"name\": \"4d6ba5a5-4ddf-4efd-9959-b8b7cd9aebd4\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:38:30.0656373Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/4d6ba5a5-4ddf-4efd-9959-b8b7cd9aebd4?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy80ZDZiYTVhNS00ZGRmLTRlZmQtOTk1OS1iOGI3Y2Q5YWViZDQ/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f25f9579-d774-488b-b0d1-c6a4280c455e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "1de63c75-9636-4829-9e40-bea9de76a893" + ], + "x-ms-client-request-id": [ + "f25f9579-d774-488b-b0d1-c6a4280c455e", + "f25f9579-d774-488b-b0d1-c6a4280c455e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "245" + ], + "x-ms-correlation-request-id": [ + "1de63c75-9636-4829-9e40-bea9de76a893" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153859Z:1de63c75-9636-4829-9e40-bea9de76a893" + ], + "Date": [ + "Mon, 16 May 2022 15:38:59 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"4d6ba5a5-4ddf-4efd-9959-b8b7cd9aebd4\",\r\n \"name\": \"4d6ba5a5-4ddf-4efd-9959-b8b7cd9aebd4\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:38:30.0656373Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/4d6ba5a5-4ddf-4efd-9959-b8b7cd9aebd4?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy80ZDZiYTVhNS00ZGRmLTRlZmQtOTk1OS1iOGI3Y2Q5YWViZDQ/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f25f9579-d774-488b-b0d1-c6a4280c455e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "b885ccdf-23a1-44ab-a718-3a27d5c7576d" + ], + "x-ms-client-request-id": [ + "f25f9579-d774-488b-b0d1-c6a4280c455e", + "f25f9579-d774-488b-b0d1-c6a4280c455e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "244" + ], + "x-ms-correlation-request-id": [ + "b885ccdf-23a1-44ab-a718-3a27d5c7576d" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153859Z:b885ccdf-23a1-44ab-a718-3a27d5c7576d" + ], + "Date": [ + "Mon, 16 May 2022 15:38:59 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"4d6ba5a5-4ddf-4efd-9959-b8b7cd9aebd4\",\r\n \"name\": \"4d6ba5a5-4ddf-4efd-9959-b8b7cd9aebd4\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:38:30.0656373Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/4d6ba5a5-4ddf-4efd-9959-b8b7cd9aebd4?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy80ZDZiYTVhNS00ZGRmLTRlZmQtOTk1OS1iOGI3Y2Q5YWViZDQ/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f25f9579-d774-488b-b0d1-c6a4280c455e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "b9ceeefb-d9fe-475c-b2cf-75232a3dfc76" + ], + "x-ms-client-request-id": [ + "f25f9579-d774-488b-b0d1-c6a4280c455e", + "f25f9579-d774-488b-b0d1-c6a4280c455e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "243" + ], + "x-ms-correlation-request-id": [ + "b9ceeefb-d9fe-475c-b2cf-75232a3dfc76" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153900Z:b9ceeefb-d9fe-475c-b2cf-75232a3dfc76" + ], + "Date": [ + "Mon, 16 May 2022 15:39:00 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"4d6ba5a5-4ddf-4efd-9959-b8b7cd9aebd4\",\r\n \"name\": \"4d6ba5a5-4ddf-4efd-9959-b8b7cd9aebd4\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:38:30.0656373Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/4d6ba5a5-4ddf-4efd-9959-b8b7cd9aebd4?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy80ZDZiYTVhNS00ZGRmLTRlZmQtOTk1OS1iOGI3Y2Q5YWViZDQ/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f25f9579-d774-488b-b0d1-c6a4280c455e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "c743c547-a8a0-406b-b810-e638a87750a6" + ], + "x-ms-client-request-id": [ + "f25f9579-d774-488b-b0d1-c6a4280c455e", + "f25f9579-d774-488b-b0d1-c6a4280c455e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "242" + ], + "x-ms-correlation-request-id": [ + "c743c547-a8a0-406b-b810-e638a87750a6" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153900Z:c743c547-a8a0-406b-b810-e638a87750a6" + ], + "Date": [ + "Mon, 16 May 2022 15:39:00 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"4d6ba5a5-4ddf-4efd-9959-b8b7cd9aebd4\",\r\n \"name\": \"4d6ba5a5-4ddf-4efd-9959-b8b7cd9aebd4\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:38:30.0656373Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/4d6ba5a5-4ddf-4efd-9959-b8b7cd9aebd4?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy80ZDZiYTVhNS00ZGRmLTRlZmQtOTk1OS1iOGI3Y2Q5YWViZDQ/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f25f9579-d774-488b-b0d1-c6a4280c455e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "bcd83030-43fe-4048-8060-b6cadd127a35" + ], + "x-ms-client-request-id": [ + "f25f9579-d774-488b-b0d1-c6a4280c455e", + "f25f9579-d774-488b-b0d1-c6a4280c455e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "241" + ], + "x-ms-correlation-request-id": [ + "bcd83030-43fe-4048-8060-b6cadd127a35" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153901Z:bcd83030-43fe-4048-8060-b6cadd127a35" + ], + "Date": [ + "Mon, 16 May 2022 15:39:01 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"4d6ba5a5-4ddf-4efd-9959-b8b7cd9aebd4\",\r\n \"name\": \"4d6ba5a5-4ddf-4efd-9959-b8b7cd9aebd4\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:38:30.0656373Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/4d6ba5a5-4ddf-4efd-9959-b8b7cd9aebd4?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy80ZDZiYTVhNS00ZGRmLTRlZmQtOTk1OS1iOGI3Y2Q5YWViZDQ/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f25f9579-d774-488b-b0d1-c6a4280c455e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "5b6ed799-77f9-49b5-917a-0946c419e37d" + ], + "x-ms-client-request-id": [ + "f25f9579-d774-488b-b0d1-c6a4280c455e", + "f25f9579-d774-488b-b0d1-c6a4280c455e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "240" + ], + "x-ms-correlation-request-id": [ + "5b6ed799-77f9-49b5-917a-0946c419e37d" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153901Z:5b6ed799-77f9-49b5-917a-0946c419e37d" + ], + "Date": [ + "Mon, 16 May 2022 15:39:01 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"4d6ba5a5-4ddf-4efd-9959-b8b7cd9aebd4\",\r\n \"name\": \"4d6ba5a5-4ddf-4efd-9959-b8b7cd9aebd4\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:38:30.0656373Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/4d6ba5a5-4ddf-4efd-9959-b8b7cd9aebd4?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy80ZDZiYTVhNS00ZGRmLTRlZmQtOTk1OS1iOGI3Y2Q5YWViZDQ/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f25f9579-d774-488b-b0d1-c6a4280c455e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "2d18ecfa-a49f-444f-b405-b5f2d22393e1" + ], + "x-ms-client-request-id": [ + "f25f9579-d774-488b-b0d1-c6a4280c455e", + "f25f9579-d774-488b-b0d1-c6a4280c455e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "239" + ], + "x-ms-correlation-request-id": [ + "2d18ecfa-a49f-444f-b405-b5f2d22393e1" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153902Z:2d18ecfa-a49f-444f-b405-b5f2d22393e1" + ], + "Date": [ + "Mon, 16 May 2022 15:39:02 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"4d6ba5a5-4ddf-4efd-9959-b8b7cd9aebd4\",\r\n \"name\": \"4d6ba5a5-4ddf-4efd-9959-b8b7cd9aebd4\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:38:30.0656373Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/4d6ba5a5-4ddf-4efd-9959-b8b7cd9aebd4?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy80ZDZiYTVhNS00ZGRmLTRlZmQtOTk1OS1iOGI3Y2Q5YWViZDQ/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f25f9579-d774-488b-b0d1-c6a4280c455e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "9aeece35-a7fc-4925-a9d4-89728db09b95" + ], + "x-ms-client-request-id": [ + "f25f9579-d774-488b-b0d1-c6a4280c455e", + "f25f9579-d774-488b-b0d1-c6a4280c455e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "238" + ], + "x-ms-correlation-request-id": [ + "9aeece35-a7fc-4925-a9d4-89728db09b95" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153902Z:9aeece35-a7fc-4925-a9d4-89728db09b95" + ], + "Date": [ + "Mon, 16 May 2022 15:39:02 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"4d6ba5a5-4ddf-4efd-9959-b8b7cd9aebd4\",\r\n \"name\": \"4d6ba5a5-4ddf-4efd-9959-b8b7cd9aebd4\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:38:30.0656373Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/4d6ba5a5-4ddf-4efd-9959-b8b7cd9aebd4?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy80ZDZiYTVhNS00ZGRmLTRlZmQtOTk1OS1iOGI3Y2Q5YWViZDQ/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f25f9579-d774-488b-b0d1-c6a4280c455e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "cc8b0de3-6f21-431b-9d9c-9537655b8c1e" + ], + "x-ms-client-request-id": [ + "f25f9579-d774-488b-b0d1-c6a4280c455e", + "f25f9579-d774-488b-b0d1-c6a4280c455e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "237" + ], + "x-ms-correlation-request-id": [ + "cc8b0de3-6f21-431b-9d9c-9537655b8c1e" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153903Z:cc8b0de3-6f21-431b-9d9c-9537655b8c1e" + ], + "Date": [ + "Mon, 16 May 2022 15:39:03 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"4d6ba5a5-4ddf-4efd-9959-b8b7cd9aebd4\",\r\n \"name\": \"4d6ba5a5-4ddf-4efd-9959-b8b7cd9aebd4\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:38:30.0656373Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/4d6ba5a5-4ddf-4efd-9959-b8b7cd9aebd4?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy80ZDZiYTVhNS00ZGRmLTRlZmQtOTk1OS1iOGI3Y2Q5YWViZDQ/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f25f9579-d774-488b-b0d1-c6a4280c455e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "5573c04d-301e-4f1d-9e18-ea40d399b665" + ], + "x-ms-client-request-id": [ + "f25f9579-d774-488b-b0d1-c6a4280c455e", + "f25f9579-d774-488b-b0d1-c6a4280c455e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "236" + ], + "x-ms-correlation-request-id": [ + "5573c04d-301e-4f1d-9e18-ea40d399b665" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153903Z:5573c04d-301e-4f1d-9e18-ea40d399b665" + ], + "Date": [ + "Mon, 16 May 2022 15:39:03 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"4d6ba5a5-4ddf-4efd-9959-b8b7cd9aebd4\",\r\n \"name\": \"4d6ba5a5-4ddf-4efd-9959-b8b7cd9aebd4\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:38:30.0656373Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/4d6ba5a5-4ddf-4efd-9959-b8b7cd9aebd4?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy80ZDZiYTVhNS00ZGRmLTRlZmQtOTk1OS1iOGI3Y2Q5YWViZDQ/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f25f9579-d774-488b-b0d1-c6a4280c455e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "50a9ccdc-0a03-4848-b92e-ac078c5d4f2e" + ], + "x-ms-client-request-id": [ + "f25f9579-d774-488b-b0d1-c6a4280c455e", + "f25f9579-d774-488b-b0d1-c6a4280c455e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "235" + ], + "x-ms-correlation-request-id": [ + "50a9ccdc-0a03-4848-b92e-ac078c5d4f2e" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153904Z:50a9ccdc-0a03-4848-b92e-ac078c5d4f2e" + ], + "Date": [ + "Mon, 16 May 2022 15:39:04 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"4d6ba5a5-4ddf-4efd-9959-b8b7cd9aebd4\",\r\n \"name\": \"4d6ba5a5-4ddf-4efd-9959-b8b7cd9aebd4\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:38:30.0656373Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/4d6ba5a5-4ddf-4efd-9959-b8b7cd9aebd4?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy80ZDZiYTVhNS00ZGRmLTRlZmQtOTk1OS1iOGI3Y2Q5YWViZDQ/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f25f9579-d774-488b-b0d1-c6a4280c455e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "68ed91c9-ca5b-4ce0-9b82-4ce2ce1aeefe" + ], + "x-ms-client-request-id": [ + "f25f9579-d774-488b-b0d1-c6a4280c455e", + "f25f9579-d774-488b-b0d1-c6a4280c455e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "234" + ], + "x-ms-correlation-request-id": [ + "68ed91c9-ca5b-4ce0-9b82-4ce2ce1aeefe" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153905Z:68ed91c9-ca5b-4ce0-9b82-4ce2ce1aeefe" + ], + "Date": [ + "Mon, 16 May 2022 15:39:04 GMT" + ], + "Content-Length": [ + "304" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"4d6ba5a5-4ddf-4efd-9959-b8b7cd9aebd4\",\r\n \"name\": \"4d6ba5a5-4ddf-4efd-9959-b8b7cd9aebd4\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-05-16T15:38:30.0656373Z\",\r\n \"endTime\": \"2022-05-16T15:38:30.0656373Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"c1c539cf-b399-4a31-839c-c246999fbb4d\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/4d6ba5a5-4ddf-4efd-9959-b8b7cd9aebd4?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy80ZDZiYTVhNS00ZGRmLTRlZmQtOTk1OS1iOGI3Y2Q5YWViZDQ/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f25f9579-d774-488b-b0d1-c6a4280c455e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "187af110-c427-44ce-bee4-08ef559478ed" + ], + "x-ms-client-request-id": [ + "f25f9579-d774-488b-b0d1-c6a4280c455e", + "f25f9579-d774-488b-b0d1-c6a4280c455e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "233" + ], + "x-ms-correlation-request-id": [ + "187af110-c427-44ce-bee4-08ef559478ed" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153905Z:187af110-c427-44ce-bee4-08ef559478ed" + ], + "Date": [ + "Mon, 16 May 2022 15:39:05 GMT" + ], + "Content-Length": [ + "304" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"4d6ba5a5-4ddf-4efd-9959-b8b7cd9aebd4\",\r\n \"name\": \"4d6ba5a5-4ddf-4efd-9959-b8b7cd9aebd4\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-05-16T15:38:30.0656373Z\",\r\n \"endTime\": \"2022-05-16T15:38:30.0656373Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"c1c539cf-b399-4a31-839c-c246999fbb4d\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/c1c539cf-b399-4a31-839c-c246999fbb4d?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9jMWM1MzljZi1iMzk5LTRhMzEtODM5Yy1jMjQ2OTk5ZmJiNGQ/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f25f9579-d774-488b-b0d1-c6a4280c455e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.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": [ + "bb25861a-7409-492c-9cee-726226490903" + ], + "x-ms-client-request-id": [ + "f25f9579-d774-488b-b0d1-c6a4280c455e", + "f25f9579-d774-488b-b0d1-c6a4280c455e" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "299" + ], + "x-ms-correlation-request-id": [ + "bb25861a-7409-492c-9cee-726226490903" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153906Z:bb25861a-7409-492c-9cee-726226490903" + ], + "Date": [ + "Mon, 16 May 2022 15:39:05 GMT" + ], + "Content-Length": [ + "847" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/c1c539cf-b399-4a31-839c-c246999fbb4d\",\r\n \"name\": \"c1c539cf-b399-4a31-839c-c246999fbb4d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT34.0089341S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"Storage\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"File Share Name\": \"fs1\",\r\n \"Storage Account Name\": \"pstestsa8895\",\r\n \"Policy Name\": \"afspolicy1\"\r\n }\r\n },\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"ConfigureBackup\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-05-16T15:38:30.0656373Z\",\r\n \"endTime\": \"2022-05-16T15:39:04.0745714Z\",\r\n \"activityId\": \"f25f9579-d774-488b-b0d1-c6a4280c455e\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupProtectedItems?$filter=backupManagementType%20eq%20'AzureStorage'%20and%20itemType%20eq%20'AzureFileShare'&api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwUHJvdGVjdGVkSXRlbXM/JGZpbHRlcj1iYWNrdXBNYW5hZ2VtZW50VHlwZSUyMGVxJTIwJ0F6dXJlU3RvcmFnZSclMjBhbmQlMjBpdGVtVHlwZSUyMGVxJTIwJ0F6dXJlRmlsZVNoYXJlJyZhcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "14f3f31d-b2a8-474d-ab45-429f8c52b842" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "aceaf1e1-ab65-4663-a3fa-42f723fd0099" + ], + "x-ms-client-request-id": [ + "14f3f31d-b2a8-474d-ab45-429f8c52b842", + "14f3f31d-b2a8-474d-ab45-429f8c52b842" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "299" + ], + "x-ms-correlation-request-id": [ + "aceaf1e1-ab65-4663-a3fa-42f723fd0099" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153907Z:aceaf1e1-ab65-4663-a3fa-42f723fd0099" + ], + "Date": [ + "Mon, 16 May 2022 15:39:06 GMT" + ], + "Content-Length": [ + "1219" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;storage;pstestrg8895;pstestsa8895/protectedItems/AzureFileShare;698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959\",\r\n \"name\": \"AzureFileShare;698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems\",\r\n \"properties\": {\r\n \"kpisHealths\": {},\r\n \"friendlyName\": \"fs1\",\r\n \"protectionStatus\": \"Healthy\",\r\n \"protectionState\": \"IRPending\",\r\n \"lastBackupStatus\": \"IRPending\",\r\n \"protectedItemType\": \"AzureFileShareProtectedItem\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"workloadType\": \"AzureFileShare\",\r\n \"containerName\": \"StorageContainer;storage;pstestrg8895;pstestsa8895\",\r\n \"sourceResourceId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.storage/storageAccounts/pstestsa8895\",\r\n \"policyId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupPolicies/afspolicy1\",\r\n \"isArchiveEnabled\": false\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3Bstorage%3Bpstestrg8895%3Bpstestsa8895/protectedItems/AzureFileShare%3B698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959?$filter=expand%20eq%20'extendedinfo'&api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCc3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9wcm90ZWN0ZWRJdGVtcy9BenVyZUZpbGVTaGFyZSUzQjY5OGRmNTk1OTQ4ZTIzNTVmMmJiNzQ0YTQxY2YyNDVkNGJhMTI1NWQ5Njk5Y2MzYzJhZDFmNTA0NWUxNzc5NTk/JGZpbHRlcj1leHBhbmQlMjBlcSUyMCdleHRlbmRlZGluZm8nJmFwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "14f3f31d-b2a8-474d-ab45-429f8c52b842" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "4e73a4ca-d879-432b-8ba7-11b2444f1b1b" + ], + "x-ms-client-request-id": [ + "14f3f31d-b2a8-474d-ab45-429f8c52b842", + "14f3f31d-b2a8-474d-ab45-429f8c52b842" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "299" + ], + "x-ms-correlation-request-id": [ + "4e73a4ca-d879-432b-8ba7-11b2444f1b1b" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153907Z:4e73a4ca-d879-432b-8ba7-11b2444f1b1b" + ], + "Date": [ + "Mon, 16 May 2022 15:39:07 GMT" + ], + "Content-Length": [ + "1354" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;storage;pstestrg8895;pstestsa8895/protectedItems/AzureFileShare;698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959\",\r\n \"name\": \"AzureFileShare;698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems\",\r\n \"properties\": {\r\n \"kpisHealths\": {},\r\n \"friendlyName\": \"fs1\",\r\n \"protectionStatus\": \"Healthy\",\r\n \"protectionState\": \"IRPending\",\r\n \"lastBackupStatus\": \"IRPending\",\r\n \"extendedInfo\": {\r\n \"recoveryPointCount\": 0,\r\n \"policyState\": \"Consistent\",\r\n \"resourceState\": \"Active\",\r\n \"resourceStateSyncTime\": \"2022-05-16T15:39:02.9681844Z\"\r\n },\r\n \"protectedItemType\": \"AzureFileShareProtectedItem\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"workloadType\": \"AzureFileShare\",\r\n \"containerName\": \"StorageContainer;storage;pstestrg8895;pstestsa8895\",\r\n \"sourceResourceId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.storage/storageAccounts/pstestsa8895\",\r\n \"policyId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupPolicies/afspolicy1\",\r\n \"isArchiveEnabled\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3Bstorage%3Bpstestrg8895%3Bpstestsa8895/protectedItems/AzureFileShare%3B698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959/recoveryPoints?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCc3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9wcm90ZWN0ZWRJdGVtcy9BenVyZUZpbGVTaGFyZSUzQjY5OGRmNTk1OTQ4ZTIzNTVmMmJiNzQ0YTQxY2YyNDVkNGJhMTI1NWQ5Njk5Y2MzYzJhZDFmNTA0NWUxNzc5NTkvcmVjb3ZlcnlQb2ludHM/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1a26be24-7700-401a-9a76-67079a5f06ac" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "487c43ef-eed4-4188-9210-7120d0653e36" + ], + "x-ms-client-request-id": [ + "1a26be24-7700-401a-9a76-67079a5f06ac", + "1a26be24-7700-401a-9a76-67079a5f06ac" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "299" + ], + "x-ms-correlation-request-id": [ + "487c43ef-eed4-4188-9210-7120d0653e36" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153909Z:487c43ef-eed4-4188-9210-7120d0653e36" + ], + "Date": [ + "Mon, 16 May 2022 15:39:08 GMT" + ], + "Content-Length": [ + "12" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupResourceGuardProxies?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwUmVzb3VyY2VHdWFyZFByb3hpZXM/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1a26be24-7700-401a-9a76-67079a5f06ac" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "0a116075-d1e5-481f-9ce2-022d8974a56d" + ], + "x-ms-client-request-id": [ + "1a26be24-7700-401a-9a76-67079a5f06ac", + "1a26be24-7700-401a-9a76-67079a5f06ac" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "0a116075-d1e5-481f-9ce2-022d8974a56d" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153909Z:0a116075-d1e5-481f-9ce2-022d8974a56d" + ], + "Date": [ + "Mon, 16 May 2022 15:39:09 GMT" + ], + "Content-Length": [ + "12" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3Bstorage%3Bpstestrg8895%3Bpstestsa8895/protectedItems/AzureFileShare%3B698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCc3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9wcm90ZWN0ZWRJdGVtcy9BenVyZUZpbGVTaGFyZSUzQjY5OGRmNTk1OTQ4ZTIzNTVmMmJiNzQ0YTQxY2YyNDVkNGJhMTI1NWQ5Njk5Y2MzYzJhZDFmNTA0NWUxNzc5NTk/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1a26be24-7700-401a-9a76-67079a5f06ac" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperationResults/a39a543c-ffa2-43a6-8b7c-7674a2e6e671?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/a39a543c-ffa2-43a6-8b7c-7674a2e6e671?api-version=2022-02-01" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "2727ac3d-0425-43c5-b2dc-aac60e02db8e" + ], + "x-ms-client-request-id": [ + "1a26be24-7700-401a-9a76-67079a5f06ac", + "1a26be24-7700-401a-9a76-67079a5f06ac" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-correlation-request-id": [ + "2727ac3d-0425-43c5-b2dc-aac60e02db8e" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153911Z:2727ac3d-0425-43c5-b2dc-aac60e02db8e" + ], + "Date": [ + "Mon, 16 May 2022 15:39:10 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/a39a543c-ffa2-43a6-8b7c-7674a2e6e671?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9hMzlhNTQzYy1mZmEyLTQzYTYtOGI3Yy03Njc0YTJlNmU2NzE/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1a26be24-7700-401a-9a76-67079a5f06ac" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "1b415d75-1e63-4d10-9500-39cd562a5fa9" + ], + "x-ms-client-request-id": [ + "1a26be24-7700-401a-9a76-67079a5f06ac", + "1a26be24-7700-401a-9a76-67079a5f06ac" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "232" + ], + "x-ms-correlation-request-id": [ + "1b415d75-1e63-4d10-9500-39cd562a5fa9" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153911Z:1b415d75-1e63-4d10-9500-39cd562a5fa9" + ], + "Date": [ + "Mon, 16 May 2022 15:39:11 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"a39a543c-ffa2-43a6-8b7c-7674a2e6e671\",\r\n \"name\": \"a39a543c-ffa2-43a6-8b7c-7674a2e6e671\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:39:10.8836722Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/a39a543c-ffa2-43a6-8b7c-7674a2e6e671?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9hMzlhNTQzYy1mZmEyLTQzYTYtOGI3Yy03Njc0YTJlNmU2NzE/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1a26be24-7700-401a-9a76-67079a5f06ac" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "e67ecb9a-8bcf-481a-b221-87f8d4fcb9ba" + ], + "x-ms-client-request-id": [ + "1a26be24-7700-401a-9a76-67079a5f06ac", + "1a26be24-7700-401a-9a76-67079a5f06ac" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "231" + ], + "x-ms-correlation-request-id": [ + "e67ecb9a-8bcf-481a-b221-87f8d4fcb9ba" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153912Z:e67ecb9a-8bcf-481a-b221-87f8d4fcb9ba" + ], + "Date": [ + "Mon, 16 May 2022 15:39:11 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"a39a543c-ffa2-43a6-8b7c-7674a2e6e671\",\r\n \"name\": \"a39a543c-ffa2-43a6-8b7c-7674a2e6e671\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:39:10.8836722Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/a39a543c-ffa2-43a6-8b7c-7674a2e6e671?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9hMzlhNTQzYy1mZmEyLTQzYTYtOGI3Yy03Njc0YTJlNmU2NzE/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1a26be24-7700-401a-9a76-67079a5f06ac" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "d931c091-4671-4ae2-8978-15ba6e1db5dd" + ], + "x-ms-client-request-id": [ + "1a26be24-7700-401a-9a76-67079a5f06ac", + "1a26be24-7700-401a-9a76-67079a5f06ac" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "230" + ], + "x-ms-correlation-request-id": [ + "d931c091-4671-4ae2-8978-15ba6e1db5dd" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153912Z:d931c091-4671-4ae2-8978-15ba6e1db5dd" + ], + "Date": [ + "Mon, 16 May 2022 15:39:12 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"a39a543c-ffa2-43a6-8b7c-7674a2e6e671\",\r\n \"name\": \"a39a543c-ffa2-43a6-8b7c-7674a2e6e671\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:39:10.8836722Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/a39a543c-ffa2-43a6-8b7c-7674a2e6e671?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9hMzlhNTQzYy1mZmEyLTQzYTYtOGI3Yy03Njc0YTJlNmU2NzE/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1a26be24-7700-401a-9a76-67079a5f06ac" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "6c9ded7b-3b84-49af-aeb7-bceb29bba6e4" + ], + "x-ms-client-request-id": [ + "1a26be24-7700-401a-9a76-67079a5f06ac", + "1a26be24-7700-401a-9a76-67079a5f06ac" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "229" + ], + "x-ms-correlation-request-id": [ + "6c9ded7b-3b84-49af-aeb7-bceb29bba6e4" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153913Z:6c9ded7b-3b84-49af-aeb7-bceb29bba6e4" + ], + "Date": [ + "Mon, 16 May 2022 15:39:12 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"a39a543c-ffa2-43a6-8b7c-7674a2e6e671\",\r\n \"name\": \"a39a543c-ffa2-43a6-8b7c-7674a2e6e671\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:39:10.8836722Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/a39a543c-ffa2-43a6-8b7c-7674a2e6e671?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9hMzlhNTQzYy1mZmEyLTQzYTYtOGI3Yy03Njc0YTJlNmU2NzE/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1a26be24-7700-401a-9a76-67079a5f06ac" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "9995c1d3-a67f-404b-a40a-88914d18ac0e" + ], + "x-ms-client-request-id": [ + "1a26be24-7700-401a-9a76-67079a5f06ac", + "1a26be24-7700-401a-9a76-67079a5f06ac" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "228" + ], + "x-ms-correlation-request-id": [ + "9995c1d3-a67f-404b-a40a-88914d18ac0e" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153913Z:9995c1d3-a67f-404b-a40a-88914d18ac0e" + ], + "Date": [ + "Mon, 16 May 2022 15:39:13 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"a39a543c-ffa2-43a6-8b7c-7674a2e6e671\",\r\n \"name\": \"a39a543c-ffa2-43a6-8b7c-7674a2e6e671\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:39:10.8836722Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/a39a543c-ffa2-43a6-8b7c-7674a2e6e671?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9hMzlhNTQzYy1mZmEyLTQzYTYtOGI3Yy03Njc0YTJlNmU2NzE/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1a26be24-7700-401a-9a76-67079a5f06ac" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "a81a53c5-7f6a-40f5-ae18-86a7f2e443ac" + ], + "x-ms-client-request-id": [ + "1a26be24-7700-401a-9a76-67079a5f06ac", + "1a26be24-7700-401a-9a76-67079a5f06ac" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "227" + ], + "x-ms-correlation-request-id": [ + "a81a53c5-7f6a-40f5-ae18-86a7f2e443ac" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153914Z:a81a53c5-7f6a-40f5-ae18-86a7f2e443ac" + ], + "Date": [ + "Mon, 16 May 2022 15:39:13 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"a39a543c-ffa2-43a6-8b7c-7674a2e6e671\",\r\n \"name\": \"a39a543c-ffa2-43a6-8b7c-7674a2e6e671\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:39:10.8836722Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/a39a543c-ffa2-43a6-8b7c-7674a2e6e671?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9hMzlhNTQzYy1mZmEyLTQzYTYtOGI3Yy03Njc0YTJlNmU2NzE/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1a26be24-7700-401a-9a76-67079a5f06ac" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "1131fba0-568c-4d53-b053-9b4a07c8ad11" + ], + "x-ms-client-request-id": [ + "1a26be24-7700-401a-9a76-67079a5f06ac", + "1a26be24-7700-401a-9a76-67079a5f06ac" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "226" + ], + "x-ms-correlation-request-id": [ + "1131fba0-568c-4d53-b053-9b4a07c8ad11" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153914Z:1131fba0-568c-4d53-b053-9b4a07c8ad11" + ], + "Date": [ + "Mon, 16 May 2022 15:39:14 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"a39a543c-ffa2-43a6-8b7c-7674a2e6e671\",\r\n \"name\": \"a39a543c-ffa2-43a6-8b7c-7674a2e6e671\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:39:10.8836722Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/a39a543c-ffa2-43a6-8b7c-7674a2e6e671?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9hMzlhNTQzYy1mZmEyLTQzYTYtOGI3Yy03Njc0YTJlNmU2NzE/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1a26be24-7700-401a-9a76-67079a5f06ac" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "68cb0ebd-87dc-4325-926d-bfa1c6882e75" + ], + "x-ms-client-request-id": [ + "1a26be24-7700-401a-9a76-67079a5f06ac", + "1a26be24-7700-401a-9a76-67079a5f06ac" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "225" + ], + "x-ms-correlation-request-id": [ + "68cb0ebd-87dc-4325-926d-bfa1c6882e75" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153915Z:68cb0ebd-87dc-4325-926d-bfa1c6882e75" + ], + "Date": [ + "Mon, 16 May 2022 15:39:14 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"a39a543c-ffa2-43a6-8b7c-7674a2e6e671\",\r\n \"name\": \"a39a543c-ffa2-43a6-8b7c-7674a2e6e671\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:39:10.8836722Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/a39a543c-ffa2-43a6-8b7c-7674a2e6e671?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9hMzlhNTQzYy1mZmEyLTQzYTYtOGI3Yy03Njc0YTJlNmU2NzE/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1a26be24-7700-401a-9a76-67079a5f06ac" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "6a2c471a-d32f-42e8-bb37-3d0b7c9b77d4" + ], + "x-ms-client-request-id": [ + "1a26be24-7700-401a-9a76-67079a5f06ac", + "1a26be24-7700-401a-9a76-67079a5f06ac" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "224" + ], + "x-ms-correlation-request-id": [ + "6a2c471a-d32f-42e8-bb37-3d0b7c9b77d4" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153915Z:6a2c471a-d32f-42e8-bb37-3d0b7c9b77d4" + ], + "Date": [ + "Mon, 16 May 2022 15:39:15 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"a39a543c-ffa2-43a6-8b7c-7674a2e6e671\",\r\n \"name\": \"a39a543c-ffa2-43a6-8b7c-7674a2e6e671\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:39:10.8836722Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/a39a543c-ffa2-43a6-8b7c-7674a2e6e671?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9hMzlhNTQzYy1mZmEyLTQzYTYtOGI3Yy03Njc0YTJlNmU2NzE/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1a26be24-7700-401a-9a76-67079a5f06ac" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "c0cc3d79-4098-4398-93f4-773a5a0c2a7a" + ], + "x-ms-client-request-id": [ + "1a26be24-7700-401a-9a76-67079a5f06ac", + "1a26be24-7700-401a-9a76-67079a5f06ac" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "223" + ], + "x-ms-correlation-request-id": [ + "c0cc3d79-4098-4398-93f4-773a5a0c2a7a" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153916Z:c0cc3d79-4098-4398-93f4-773a5a0c2a7a" + ], + "Date": [ + "Mon, 16 May 2022 15:39:15 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"a39a543c-ffa2-43a6-8b7c-7674a2e6e671\",\r\n \"name\": \"a39a543c-ffa2-43a6-8b7c-7674a2e6e671\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:39:10.8836722Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/a39a543c-ffa2-43a6-8b7c-7674a2e6e671?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9hMzlhNTQzYy1mZmEyLTQzYTYtOGI3Yy03Njc0YTJlNmU2NzE/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1a26be24-7700-401a-9a76-67079a5f06ac" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "62aa262e-a4e3-470c-9ce7-0ae7a72d0391" + ], + "x-ms-client-request-id": [ + "1a26be24-7700-401a-9a76-67079a5f06ac", + "1a26be24-7700-401a-9a76-67079a5f06ac" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "222" + ], + "x-ms-correlation-request-id": [ + "62aa262e-a4e3-470c-9ce7-0ae7a72d0391" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153916Z:62aa262e-a4e3-470c-9ce7-0ae7a72d0391" + ], + "Date": [ + "Mon, 16 May 2022 15:39:16 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"a39a543c-ffa2-43a6-8b7c-7674a2e6e671\",\r\n \"name\": \"a39a543c-ffa2-43a6-8b7c-7674a2e6e671\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:39:10.8836722Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/a39a543c-ffa2-43a6-8b7c-7674a2e6e671?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9hMzlhNTQzYy1mZmEyLTQzYTYtOGI3Yy03Njc0YTJlNmU2NzE/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1a26be24-7700-401a-9a76-67079a5f06ac" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "da45ced6-991b-4302-9763-c5a5154183f5" + ], + "x-ms-client-request-id": [ + "1a26be24-7700-401a-9a76-67079a5f06ac", + "1a26be24-7700-401a-9a76-67079a5f06ac" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "221" + ], + "x-ms-correlation-request-id": [ + "da45ced6-991b-4302-9763-c5a5154183f5" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153917Z:da45ced6-991b-4302-9763-c5a5154183f5" + ], + "Date": [ + "Mon, 16 May 2022 15:39:16 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"a39a543c-ffa2-43a6-8b7c-7674a2e6e671\",\r\n \"name\": \"a39a543c-ffa2-43a6-8b7c-7674a2e6e671\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:39:10.8836722Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/a39a543c-ffa2-43a6-8b7c-7674a2e6e671?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9hMzlhNTQzYy1mZmEyLTQzYTYtOGI3Yy03Njc0YTJlNmU2NzE/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1a26be24-7700-401a-9a76-67079a5f06ac" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "0605dc98-e7fa-4751-abe6-a8febd38d84e" + ], + "x-ms-client-request-id": [ + "1a26be24-7700-401a-9a76-67079a5f06ac", + "1a26be24-7700-401a-9a76-67079a5f06ac" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "220" + ], + "x-ms-correlation-request-id": [ + "0605dc98-e7fa-4751-abe6-a8febd38d84e" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153917Z:0605dc98-e7fa-4751-abe6-a8febd38d84e" + ], + "Date": [ + "Mon, 16 May 2022 15:39:17 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"a39a543c-ffa2-43a6-8b7c-7674a2e6e671\",\r\n \"name\": \"a39a543c-ffa2-43a6-8b7c-7674a2e6e671\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:39:10.8836722Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/a39a543c-ffa2-43a6-8b7c-7674a2e6e671?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9hMzlhNTQzYy1mZmEyLTQzYTYtOGI3Yy03Njc0YTJlNmU2NzE/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1a26be24-7700-401a-9a76-67079a5f06ac" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "ab804130-6012-48c2-9efb-bf387b0ce761" + ], + "x-ms-client-request-id": [ + "1a26be24-7700-401a-9a76-67079a5f06ac", + "1a26be24-7700-401a-9a76-67079a5f06ac" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "219" + ], + "x-ms-correlation-request-id": [ + "ab804130-6012-48c2-9efb-bf387b0ce761" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153918Z:ab804130-6012-48c2-9efb-bf387b0ce761" + ], + "Date": [ + "Mon, 16 May 2022 15:39:17 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"a39a543c-ffa2-43a6-8b7c-7674a2e6e671\",\r\n \"name\": \"a39a543c-ffa2-43a6-8b7c-7674a2e6e671\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:39:10.8836722Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/a39a543c-ffa2-43a6-8b7c-7674a2e6e671?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9hMzlhNTQzYy1mZmEyLTQzYTYtOGI3Yy03Njc0YTJlNmU2NzE/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1a26be24-7700-401a-9a76-67079a5f06ac" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "2f36db1f-46ed-4471-9012-0bd32e4308dd" + ], + "x-ms-client-request-id": [ + "1a26be24-7700-401a-9a76-67079a5f06ac", + "1a26be24-7700-401a-9a76-67079a5f06ac" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "218" + ], + "x-ms-correlation-request-id": [ + "2f36db1f-46ed-4471-9012-0bd32e4308dd" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153918Z:2f36db1f-46ed-4471-9012-0bd32e4308dd" + ], + "Date": [ + "Mon, 16 May 2022 15:39:18 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"a39a543c-ffa2-43a6-8b7c-7674a2e6e671\",\r\n \"name\": \"a39a543c-ffa2-43a6-8b7c-7674a2e6e671\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:39:10.8836722Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/a39a543c-ffa2-43a6-8b7c-7674a2e6e671?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9hMzlhNTQzYy1mZmEyLTQzYTYtOGI3Yy03Njc0YTJlNmU2NzE/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1a26be24-7700-401a-9a76-67079a5f06ac" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "2726d689-47b1-4ac1-b825-d2a1a1294c01" + ], + "x-ms-client-request-id": [ + "1a26be24-7700-401a-9a76-67079a5f06ac", + "1a26be24-7700-401a-9a76-67079a5f06ac" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "217" + ], + "x-ms-correlation-request-id": [ + "2726d689-47b1-4ac1-b825-d2a1a1294c01" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153919Z:2726d689-47b1-4ac1-b825-d2a1a1294c01" + ], + "Date": [ + "Mon, 16 May 2022 15:39:18 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"a39a543c-ffa2-43a6-8b7c-7674a2e6e671\",\r\n \"name\": \"a39a543c-ffa2-43a6-8b7c-7674a2e6e671\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:39:10.8836722Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/a39a543c-ffa2-43a6-8b7c-7674a2e6e671?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9hMzlhNTQzYy1mZmEyLTQzYTYtOGI3Yy03Njc0YTJlNmU2NzE/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1a26be24-7700-401a-9a76-67079a5f06ac" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "a56b3e87-f2a7-4418-8cb1-f878222be530" + ], + "x-ms-client-request-id": [ + "1a26be24-7700-401a-9a76-67079a5f06ac", + "1a26be24-7700-401a-9a76-67079a5f06ac" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "216" + ], + "x-ms-correlation-request-id": [ + "a56b3e87-f2a7-4418-8cb1-f878222be530" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153919Z:a56b3e87-f2a7-4418-8cb1-f878222be530" + ], + "Date": [ + "Mon, 16 May 2022 15:39:19 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"a39a543c-ffa2-43a6-8b7c-7674a2e6e671\",\r\n \"name\": \"a39a543c-ffa2-43a6-8b7c-7674a2e6e671\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:39:10.8836722Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/a39a543c-ffa2-43a6-8b7c-7674a2e6e671?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9hMzlhNTQzYy1mZmEyLTQzYTYtOGI3Yy03Njc0YTJlNmU2NzE/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1a26be24-7700-401a-9a76-67079a5f06ac" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "29a5b666-93b2-44e7-8548-f04547a9694c" + ], + "x-ms-client-request-id": [ + "1a26be24-7700-401a-9a76-67079a5f06ac", + "1a26be24-7700-401a-9a76-67079a5f06ac" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "215" + ], + "x-ms-correlation-request-id": [ + "29a5b666-93b2-44e7-8548-f04547a9694c" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153920Z:29a5b666-93b2-44e7-8548-f04547a9694c" + ], + "Date": [ + "Mon, 16 May 2022 15:39:19 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"a39a543c-ffa2-43a6-8b7c-7674a2e6e671\",\r\n \"name\": \"a39a543c-ffa2-43a6-8b7c-7674a2e6e671\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:39:10.8836722Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/a39a543c-ffa2-43a6-8b7c-7674a2e6e671?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9hMzlhNTQzYy1mZmEyLTQzYTYtOGI3Yy03Njc0YTJlNmU2NzE/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1a26be24-7700-401a-9a76-67079a5f06ac" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "9e2404db-8759-4965-8c7c-aa7c40cdbcd4" + ], + "x-ms-client-request-id": [ + "1a26be24-7700-401a-9a76-67079a5f06ac", + "1a26be24-7700-401a-9a76-67079a5f06ac" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "214" + ], + "x-ms-correlation-request-id": [ + "9e2404db-8759-4965-8c7c-aa7c40cdbcd4" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153920Z:9e2404db-8759-4965-8c7c-aa7c40cdbcd4" + ], + "Date": [ + "Mon, 16 May 2022 15:39:20 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"a39a543c-ffa2-43a6-8b7c-7674a2e6e671\",\r\n \"name\": \"a39a543c-ffa2-43a6-8b7c-7674a2e6e671\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:39:10.8836722Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/a39a543c-ffa2-43a6-8b7c-7674a2e6e671?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9hMzlhNTQzYy1mZmEyLTQzYTYtOGI3Yy03Njc0YTJlNmU2NzE/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1a26be24-7700-401a-9a76-67079a5f06ac" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "5092877b-b78d-4d51-9ebc-79685d64b50f" + ], + "x-ms-client-request-id": [ + "1a26be24-7700-401a-9a76-67079a5f06ac", + "1a26be24-7700-401a-9a76-67079a5f06ac" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "213" + ], + "x-ms-correlation-request-id": [ + "5092877b-b78d-4d51-9ebc-79685d64b50f" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153921Z:5092877b-b78d-4d51-9ebc-79685d64b50f" + ], + "Date": [ + "Mon, 16 May 2022 15:39:20 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"a39a543c-ffa2-43a6-8b7c-7674a2e6e671\",\r\n \"name\": \"a39a543c-ffa2-43a6-8b7c-7674a2e6e671\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:39:10.8836722Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/a39a543c-ffa2-43a6-8b7c-7674a2e6e671?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9hMzlhNTQzYy1mZmEyLTQzYTYtOGI3Yy03Njc0YTJlNmU2NzE/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1a26be24-7700-401a-9a76-67079a5f06ac" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "4fcd1c1f-ebdb-47fc-a0a3-e0dde08c2c98" + ], + "x-ms-client-request-id": [ + "1a26be24-7700-401a-9a76-67079a5f06ac", + "1a26be24-7700-401a-9a76-67079a5f06ac" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "212" + ], + "x-ms-correlation-request-id": [ + "4fcd1c1f-ebdb-47fc-a0a3-e0dde08c2c98" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153921Z:4fcd1c1f-ebdb-47fc-a0a3-e0dde08c2c98" + ], + "Date": [ + "Mon, 16 May 2022 15:39:21 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"a39a543c-ffa2-43a6-8b7c-7674a2e6e671\",\r\n \"name\": \"a39a543c-ffa2-43a6-8b7c-7674a2e6e671\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:39:10.8836722Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/a39a543c-ffa2-43a6-8b7c-7674a2e6e671?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9hMzlhNTQzYy1mZmEyLTQzYTYtOGI3Yy03Njc0YTJlNmU2NzE/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1a26be24-7700-401a-9a76-67079a5f06ac" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "5f6127e0-3823-4322-8c9c-304d9140b1cf" + ], + "x-ms-client-request-id": [ + "1a26be24-7700-401a-9a76-67079a5f06ac", + "1a26be24-7700-401a-9a76-67079a5f06ac" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "211" + ], + "x-ms-correlation-request-id": [ + "5f6127e0-3823-4322-8c9c-304d9140b1cf" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153922Z:5f6127e0-3823-4322-8c9c-304d9140b1cf" + ], + "Date": [ + "Mon, 16 May 2022 15:39:21 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"a39a543c-ffa2-43a6-8b7c-7674a2e6e671\",\r\n \"name\": \"a39a543c-ffa2-43a6-8b7c-7674a2e6e671\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:39:10.8836722Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/a39a543c-ffa2-43a6-8b7c-7674a2e6e671?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9hMzlhNTQzYy1mZmEyLTQzYTYtOGI3Yy03Njc0YTJlNmU2NzE/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1a26be24-7700-401a-9a76-67079a5f06ac" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "160f14ad-eaf0-4664-bae4-d9b43588d3f9" + ], + "x-ms-client-request-id": [ + "1a26be24-7700-401a-9a76-67079a5f06ac", + "1a26be24-7700-401a-9a76-67079a5f06ac" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "210" + ], + "x-ms-correlation-request-id": [ + "160f14ad-eaf0-4664-bae4-d9b43588d3f9" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153922Z:160f14ad-eaf0-4664-bae4-d9b43588d3f9" + ], + "Date": [ + "Mon, 16 May 2022 15:39:22 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"a39a543c-ffa2-43a6-8b7c-7674a2e6e671\",\r\n \"name\": \"a39a543c-ffa2-43a6-8b7c-7674a2e6e671\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:39:10.8836722Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/a39a543c-ffa2-43a6-8b7c-7674a2e6e671?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9hMzlhNTQzYy1mZmEyLTQzYTYtOGI3Yy03Njc0YTJlNmU2NzE/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1a26be24-7700-401a-9a76-67079a5f06ac" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "5202ccb0-332b-412a-878b-912c3a590da7" + ], + "x-ms-client-request-id": [ + "1a26be24-7700-401a-9a76-67079a5f06ac", + "1a26be24-7700-401a-9a76-67079a5f06ac" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "209" + ], + "x-ms-correlation-request-id": [ + "5202ccb0-332b-412a-878b-912c3a590da7" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153923Z:5202ccb0-332b-412a-878b-912c3a590da7" + ], + "Date": [ + "Mon, 16 May 2022 15:39:22 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"a39a543c-ffa2-43a6-8b7c-7674a2e6e671\",\r\n \"name\": \"a39a543c-ffa2-43a6-8b7c-7674a2e6e671\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:39:10.8836722Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/a39a543c-ffa2-43a6-8b7c-7674a2e6e671?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9hMzlhNTQzYy1mZmEyLTQzYTYtOGI3Yy03Njc0YTJlNmU2NzE/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1a26be24-7700-401a-9a76-67079a5f06ac" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "c7ca74db-bfec-4ae9-89c5-f7ca35fe1b6e" + ], + "x-ms-client-request-id": [ + "1a26be24-7700-401a-9a76-67079a5f06ac", + "1a26be24-7700-401a-9a76-67079a5f06ac" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "208" + ], + "x-ms-correlation-request-id": [ + "c7ca74db-bfec-4ae9-89c5-f7ca35fe1b6e" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153923Z:c7ca74db-bfec-4ae9-89c5-f7ca35fe1b6e" + ], + "Date": [ + "Mon, 16 May 2022 15:39:23 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"a39a543c-ffa2-43a6-8b7c-7674a2e6e671\",\r\n \"name\": \"a39a543c-ffa2-43a6-8b7c-7674a2e6e671\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:39:10.8836722Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/a39a543c-ffa2-43a6-8b7c-7674a2e6e671?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9hMzlhNTQzYy1mZmEyLTQzYTYtOGI3Yy03Njc0YTJlNmU2NzE/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1a26be24-7700-401a-9a76-67079a5f06ac" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "aca4f47d-b49f-4147-a43c-8cbb9109422d" + ], + "x-ms-client-request-id": [ + "1a26be24-7700-401a-9a76-67079a5f06ac", + "1a26be24-7700-401a-9a76-67079a5f06ac" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "207" + ], + "x-ms-correlation-request-id": [ + "aca4f47d-b49f-4147-a43c-8cbb9109422d" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153924Z:aca4f47d-b49f-4147-a43c-8cbb9109422d" + ], + "Date": [ + "Mon, 16 May 2022 15:39:23 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"a39a543c-ffa2-43a6-8b7c-7674a2e6e671\",\r\n \"name\": \"a39a543c-ffa2-43a6-8b7c-7674a2e6e671\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:39:10.8836722Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/a39a543c-ffa2-43a6-8b7c-7674a2e6e671?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9hMzlhNTQzYy1mZmEyLTQzYTYtOGI3Yy03Njc0YTJlNmU2NzE/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1a26be24-7700-401a-9a76-67079a5f06ac" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "977f04c4-7c06-43fd-b199-e17b77a378ce" + ], + "x-ms-client-request-id": [ + "1a26be24-7700-401a-9a76-67079a5f06ac", + "1a26be24-7700-401a-9a76-67079a5f06ac" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "206" + ], + "x-ms-correlation-request-id": [ + "977f04c4-7c06-43fd-b199-e17b77a378ce" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153925Z:977f04c4-7c06-43fd-b199-e17b77a378ce" + ], + "Date": [ + "Mon, 16 May 2022 15:39:24 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"a39a543c-ffa2-43a6-8b7c-7674a2e6e671\",\r\n \"name\": \"a39a543c-ffa2-43a6-8b7c-7674a2e6e671\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:39:10.8836722Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/a39a543c-ffa2-43a6-8b7c-7674a2e6e671?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9hMzlhNTQzYy1mZmEyLTQzYTYtOGI3Yy03Njc0YTJlNmU2NzE/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1a26be24-7700-401a-9a76-67079a5f06ac" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "c1b61efa-985c-445c-a746-52edfb63cbd0" + ], + "x-ms-client-request-id": [ + "1a26be24-7700-401a-9a76-67079a5f06ac", + "1a26be24-7700-401a-9a76-67079a5f06ac" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "205" + ], + "x-ms-correlation-request-id": [ + "c1b61efa-985c-445c-a746-52edfb63cbd0" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153925Z:c1b61efa-985c-445c-a746-52edfb63cbd0" + ], + "Date": [ + "Mon, 16 May 2022 15:39:24 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"a39a543c-ffa2-43a6-8b7c-7674a2e6e671\",\r\n \"name\": \"a39a543c-ffa2-43a6-8b7c-7674a2e6e671\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:39:10.8836722Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/a39a543c-ffa2-43a6-8b7c-7674a2e6e671?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9hMzlhNTQzYy1mZmEyLTQzYTYtOGI3Yy03Njc0YTJlNmU2NzE/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1a26be24-7700-401a-9a76-67079a5f06ac" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "cd9e6b66-1823-450b-94ad-eda8b83d7eb2" + ], + "x-ms-client-request-id": [ + "1a26be24-7700-401a-9a76-67079a5f06ac", + "1a26be24-7700-401a-9a76-67079a5f06ac" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "204" + ], + "x-ms-correlation-request-id": [ + "cd9e6b66-1823-450b-94ad-eda8b83d7eb2" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153926Z:cd9e6b66-1823-450b-94ad-eda8b83d7eb2" + ], + "Date": [ + "Mon, 16 May 2022 15:39:25 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"a39a543c-ffa2-43a6-8b7c-7674a2e6e671\",\r\n \"name\": \"a39a543c-ffa2-43a6-8b7c-7674a2e6e671\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:39:10.8836722Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/a39a543c-ffa2-43a6-8b7c-7674a2e6e671?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9hMzlhNTQzYy1mZmEyLTQzYTYtOGI3Yy03Njc0YTJlNmU2NzE/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1a26be24-7700-401a-9a76-67079a5f06ac" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "0fed2393-244c-44f5-981e-f00bf2260b2c" + ], + "x-ms-client-request-id": [ + "1a26be24-7700-401a-9a76-67079a5f06ac", + "1a26be24-7700-401a-9a76-67079a5f06ac" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "203" + ], + "x-ms-correlation-request-id": [ + "0fed2393-244c-44f5-981e-f00bf2260b2c" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153926Z:0fed2393-244c-44f5-981e-f00bf2260b2c" + ], + "Date": [ + "Mon, 16 May 2022 15:39:25 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"a39a543c-ffa2-43a6-8b7c-7674a2e6e671\",\r\n \"name\": \"a39a543c-ffa2-43a6-8b7c-7674a2e6e671\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:39:10.8836722Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/a39a543c-ffa2-43a6-8b7c-7674a2e6e671?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9hMzlhNTQzYy1mZmEyLTQzYTYtOGI3Yy03Njc0YTJlNmU2NzE/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1a26be24-7700-401a-9a76-67079a5f06ac" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "ad0c52c8-68b1-428f-899f-6e9405c43423" + ], + "x-ms-client-request-id": [ + "1a26be24-7700-401a-9a76-67079a5f06ac", + "1a26be24-7700-401a-9a76-67079a5f06ac" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "202" + ], + "x-ms-correlation-request-id": [ + "ad0c52c8-68b1-428f-899f-6e9405c43423" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153927Z:ad0c52c8-68b1-428f-899f-6e9405c43423" + ], + "Date": [ + "Mon, 16 May 2022 15:39:26 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"a39a543c-ffa2-43a6-8b7c-7674a2e6e671\",\r\n \"name\": \"a39a543c-ffa2-43a6-8b7c-7674a2e6e671\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:39:10.8836722Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/a39a543c-ffa2-43a6-8b7c-7674a2e6e671?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9hMzlhNTQzYy1mZmEyLTQzYTYtOGI3Yy03Njc0YTJlNmU2NzE/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1a26be24-7700-401a-9a76-67079a5f06ac" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "eb38c168-be18-4efd-a953-340f93cff994" + ], + "x-ms-client-request-id": [ + "1a26be24-7700-401a-9a76-67079a5f06ac", + "1a26be24-7700-401a-9a76-67079a5f06ac" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "201" + ], + "x-ms-correlation-request-id": [ + "eb38c168-be18-4efd-a953-340f93cff994" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153927Z:eb38c168-be18-4efd-a953-340f93cff994" + ], + "Date": [ + "Mon, 16 May 2022 15:39:26 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"a39a543c-ffa2-43a6-8b7c-7674a2e6e671\",\r\n \"name\": \"a39a543c-ffa2-43a6-8b7c-7674a2e6e671\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:39:10.8836722Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/a39a543c-ffa2-43a6-8b7c-7674a2e6e671?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9hMzlhNTQzYy1mZmEyLTQzYTYtOGI3Yy03Njc0YTJlNmU2NzE/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1a26be24-7700-401a-9a76-67079a5f06ac" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "bfbccfd2-a4df-45aa-820d-f3cfee40316b" + ], + "x-ms-client-request-id": [ + "1a26be24-7700-401a-9a76-67079a5f06ac", + "1a26be24-7700-401a-9a76-67079a5f06ac" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "200" + ], + "x-ms-correlation-request-id": [ + "bfbccfd2-a4df-45aa-820d-f3cfee40316b" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153928Z:bfbccfd2-a4df-45aa-820d-f3cfee40316b" + ], + "Date": [ + "Mon, 16 May 2022 15:39:28 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"a39a543c-ffa2-43a6-8b7c-7674a2e6e671\",\r\n \"name\": \"a39a543c-ffa2-43a6-8b7c-7674a2e6e671\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:39:10.8836722Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/a39a543c-ffa2-43a6-8b7c-7674a2e6e671?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9hMzlhNTQzYy1mZmEyLTQzYTYtOGI3Yy03Njc0YTJlNmU2NzE/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1a26be24-7700-401a-9a76-67079a5f06ac" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "2876631f-2c5a-4abf-86db-b2b7a53b20ad" + ], + "x-ms-client-request-id": [ + "1a26be24-7700-401a-9a76-67079a5f06ac", + "1a26be24-7700-401a-9a76-67079a5f06ac" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "199" + ], + "x-ms-correlation-request-id": [ + "2876631f-2c5a-4abf-86db-b2b7a53b20ad" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153928Z:2876631f-2c5a-4abf-86db-b2b7a53b20ad" + ], + "Date": [ + "Mon, 16 May 2022 15:39:28 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"a39a543c-ffa2-43a6-8b7c-7674a2e6e671\",\r\n \"name\": \"a39a543c-ffa2-43a6-8b7c-7674a2e6e671\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:39:10.8836722Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/a39a543c-ffa2-43a6-8b7c-7674a2e6e671?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9hMzlhNTQzYy1mZmEyLTQzYTYtOGI3Yy03Njc0YTJlNmU2NzE/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1a26be24-7700-401a-9a76-67079a5f06ac" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "257e3dab-cb75-4fcc-aa4f-db72afdc29b4" + ], + "x-ms-client-request-id": [ + "1a26be24-7700-401a-9a76-67079a5f06ac", + "1a26be24-7700-401a-9a76-67079a5f06ac" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "198" + ], + "x-ms-correlation-request-id": [ + "257e3dab-cb75-4fcc-aa4f-db72afdc29b4" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153929Z:257e3dab-cb75-4fcc-aa4f-db72afdc29b4" + ], + "Date": [ + "Mon, 16 May 2022 15:39:29 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"a39a543c-ffa2-43a6-8b7c-7674a2e6e671\",\r\n \"name\": \"a39a543c-ffa2-43a6-8b7c-7674a2e6e671\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:39:10.8836722Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/a39a543c-ffa2-43a6-8b7c-7674a2e6e671?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9hMzlhNTQzYy1mZmEyLTQzYTYtOGI3Yy03Njc0YTJlNmU2NzE/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1a26be24-7700-401a-9a76-67079a5f06ac" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "94d7883c-e63e-4561-838f-4ced43a50a18" + ], + "x-ms-client-request-id": [ + "1a26be24-7700-401a-9a76-67079a5f06ac", + "1a26be24-7700-401a-9a76-67079a5f06ac" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "197" + ], + "x-ms-correlation-request-id": [ + "94d7883c-e63e-4561-838f-4ced43a50a18" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153929Z:94d7883c-e63e-4561-838f-4ced43a50a18" + ], + "Date": [ + "Mon, 16 May 2022 15:39:29 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"a39a543c-ffa2-43a6-8b7c-7674a2e6e671\",\r\n \"name\": \"a39a543c-ffa2-43a6-8b7c-7674a2e6e671\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:39:10.8836722Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/a39a543c-ffa2-43a6-8b7c-7674a2e6e671?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9hMzlhNTQzYy1mZmEyLTQzYTYtOGI3Yy03Njc0YTJlNmU2NzE/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1a26be24-7700-401a-9a76-67079a5f06ac" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "8029d27d-4c69-47ca-8e21-0d33b95a37ff" + ], + "x-ms-client-request-id": [ + "1a26be24-7700-401a-9a76-67079a5f06ac", + "1a26be24-7700-401a-9a76-67079a5f06ac" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "196" + ], + "x-ms-correlation-request-id": [ + "8029d27d-4c69-47ca-8e21-0d33b95a37ff" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153930Z:8029d27d-4c69-47ca-8e21-0d33b95a37ff" + ], + "Date": [ + "Mon, 16 May 2022 15:39:30 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"a39a543c-ffa2-43a6-8b7c-7674a2e6e671\",\r\n \"name\": \"a39a543c-ffa2-43a6-8b7c-7674a2e6e671\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:39:10.8836722Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/a39a543c-ffa2-43a6-8b7c-7674a2e6e671?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9hMzlhNTQzYy1mZmEyLTQzYTYtOGI3Yy03Njc0YTJlNmU2NzE/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1a26be24-7700-401a-9a76-67079a5f06ac" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "cf1e44b2-fac1-435c-9f5c-71253b49bfcc" + ], + "x-ms-client-request-id": [ + "1a26be24-7700-401a-9a76-67079a5f06ac", + "1a26be24-7700-401a-9a76-67079a5f06ac" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "195" + ], + "x-ms-correlation-request-id": [ + "cf1e44b2-fac1-435c-9f5c-71253b49bfcc" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153930Z:cf1e44b2-fac1-435c-9f5c-71253b49bfcc" + ], + "Date": [ + "Mon, 16 May 2022 15:39:30 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"a39a543c-ffa2-43a6-8b7c-7674a2e6e671\",\r\n \"name\": \"a39a543c-ffa2-43a6-8b7c-7674a2e6e671\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:39:10.8836722Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/a39a543c-ffa2-43a6-8b7c-7674a2e6e671?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9hMzlhNTQzYy1mZmEyLTQzYTYtOGI3Yy03Njc0YTJlNmU2NzE/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1a26be24-7700-401a-9a76-67079a5f06ac" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "bd84022e-6cd2-4274-9bc5-047f316242cf" + ], + "x-ms-client-request-id": [ + "1a26be24-7700-401a-9a76-67079a5f06ac", + "1a26be24-7700-401a-9a76-67079a5f06ac" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "194" + ], + "x-ms-correlation-request-id": [ + "bd84022e-6cd2-4274-9bc5-047f316242cf" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153931Z:bd84022e-6cd2-4274-9bc5-047f316242cf" + ], + "Date": [ + "Mon, 16 May 2022 15:39:31 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"a39a543c-ffa2-43a6-8b7c-7674a2e6e671\",\r\n \"name\": \"a39a543c-ffa2-43a6-8b7c-7674a2e6e671\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:39:10.8836722Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/a39a543c-ffa2-43a6-8b7c-7674a2e6e671?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9hMzlhNTQzYy1mZmEyLTQzYTYtOGI3Yy03Njc0YTJlNmU2NzE/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1a26be24-7700-401a-9a76-67079a5f06ac" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "d64da2d6-fb54-43bc-8ba4-03ae50ff3842" + ], + "x-ms-client-request-id": [ + "1a26be24-7700-401a-9a76-67079a5f06ac", + "1a26be24-7700-401a-9a76-67079a5f06ac" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "193" + ], + "x-ms-correlation-request-id": [ + "d64da2d6-fb54-43bc-8ba4-03ae50ff3842" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153931Z:d64da2d6-fb54-43bc-8ba4-03ae50ff3842" + ], + "Date": [ + "Mon, 16 May 2022 15:39:31 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"a39a543c-ffa2-43a6-8b7c-7674a2e6e671\",\r\n \"name\": \"a39a543c-ffa2-43a6-8b7c-7674a2e6e671\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:39:10.8836722Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/a39a543c-ffa2-43a6-8b7c-7674a2e6e671?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9hMzlhNTQzYy1mZmEyLTQzYTYtOGI3Yy03Njc0YTJlNmU2NzE/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1a26be24-7700-401a-9a76-67079a5f06ac" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "44618ae3-8142-4357-b8f6-b56ac237bdc5" + ], + "x-ms-client-request-id": [ + "1a26be24-7700-401a-9a76-67079a5f06ac", + "1a26be24-7700-401a-9a76-67079a5f06ac" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "192" + ], + "x-ms-correlation-request-id": [ + "44618ae3-8142-4357-b8f6-b56ac237bdc5" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153932Z:44618ae3-8142-4357-b8f6-b56ac237bdc5" + ], + "Date": [ + "Mon, 16 May 2022 15:39:32 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"a39a543c-ffa2-43a6-8b7c-7674a2e6e671\",\r\n \"name\": \"a39a543c-ffa2-43a6-8b7c-7674a2e6e671\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:39:10.8836722Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/a39a543c-ffa2-43a6-8b7c-7674a2e6e671?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9hMzlhNTQzYy1mZmEyLTQzYTYtOGI3Yy03Njc0YTJlNmU2NzE/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1a26be24-7700-401a-9a76-67079a5f06ac" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "40da006c-096c-497c-8fc8-edf34a4a9dc1" + ], + "x-ms-client-request-id": [ + "1a26be24-7700-401a-9a76-67079a5f06ac", + "1a26be24-7700-401a-9a76-67079a5f06ac" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "191" + ], + "x-ms-correlation-request-id": [ + "40da006c-096c-497c-8fc8-edf34a4a9dc1" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153932Z:40da006c-096c-497c-8fc8-edf34a4a9dc1" + ], + "Date": [ + "Mon, 16 May 2022 15:39:32 GMT" + ], + "Content-Length": [ + "304" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"a39a543c-ffa2-43a6-8b7c-7674a2e6e671\",\r\n \"name\": \"a39a543c-ffa2-43a6-8b7c-7674a2e6e671\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-05-16T15:39:10.8836722Z\",\r\n \"endTime\": \"2022-05-16T15:39:10.8836722Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"6dfd01fc-789f-490f-9bdd-fdf4ef407136\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/a39a543c-ffa2-43a6-8b7c-7674a2e6e671?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9hMzlhNTQzYy1mZmEyLTQzYTYtOGI3Yy03Njc0YTJlNmU2NzE/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1a26be24-7700-401a-9a76-67079a5f06ac" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "2105e632-3b02-45a6-8db5-0cb40932f47b" + ], + "x-ms-client-request-id": [ + "1a26be24-7700-401a-9a76-67079a5f06ac", + "1a26be24-7700-401a-9a76-67079a5f06ac" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "190" + ], + "x-ms-correlation-request-id": [ + "2105e632-3b02-45a6-8db5-0cb40932f47b" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153933Z:2105e632-3b02-45a6-8db5-0cb40932f47b" + ], + "Date": [ + "Mon, 16 May 2022 15:39:33 GMT" + ], + "Content-Length": [ + "304" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"a39a543c-ffa2-43a6-8b7c-7674a2e6e671\",\r\n \"name\": \"a39a543c-ffa2-43a6-8b7c-7674a2e6e671\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-05-16T15:39:10.8836722Z\",\r\n \"endTime\": \"2022-05-16T15:39:10.8836722Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"6dfd01fc-789f-490f-9bdd-fdf4ef407136\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/6dfd01fc-789f-490f-9bdd-fdf4ef407136?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy82ZGZkMDFmYy03ODlmLTQ5MGYtOWJkZC1mZGY0ZWY0MDcxMzY/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1a26be24-7700-401a-9a76-67079a5f06ac" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.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": [ + "138508cf-52b8-4f88-97ed-947497748e17" + ], + "x-ms-client-request-id": [ + "1a26be24-7700-401a-9a76-67079a5f06ac", + "1a26be24-7700-401a-9a76-67079a5f06ac" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "298" + ], + "x-ms-correlation-request-id": [ + "138508cf-52b8-4f88-97ed-947497748e17" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153934Z:138508cf-52b8-4f88-97ed-947497748e17" + ], + "Date": [ + "Mon, 16 May 2022 15:39:33 GMT" + ], + "Content-Length": [ + "820" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/6dfd01fc-789f-490f-9bdd-fdf4ef407136\",\r\n \"name\": \"6dfd01fc-789f-490f-9bdd-fdf4ef407136\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT21.5356658S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"Storage\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"File Share Name\": \"fs1\",\r\n \"Storage Account Name\": \"pstestsa8895\"\r\n }\r\n },\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"DeleteBackupData\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-05-16T15:39:10.8836722Z\",\r\n \"endTime\": \"2022-05-16T15:39:32.419338Z\",\r\n \"activityId\": \"1a26be24-7700-401a-9a76-67079a5f06ac\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fb0226d4-1bd5-4e75-887d-1f3495003f41" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperationResults/a8f7f049-716b-4211-949f-f4b338c0a431?fabricName=Azure?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationsStatus/a8f7f049-716b-4211-949f-f4b338c0a431?api-version=2019-05-13-preview" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "359f47e9-f558-4e39-a861-d54e89ee9265" + ], + "x-ms-client-request-id": [ + "fb0226d4-1bd5-4e75-887d-1f3495003f41", + "fb0226d4-1bd5-4e75-887d-1f3495003f41" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14998" + ], + "x-ms-correlation-request-id": [ + "359f47e9-f558-4e39-a861-d54e89ee9265" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153934Z:359f47e9-f558-4e39-a861-d54e89ee9265" + ], + "Date": [ + "Mon, 16 May 2022 15:39:34 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/a8f7f049-716b-4211-949f-f4b338c0a431?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzL2E4ZjdmMDQ5LTcxNmItNDIxMS05NDlmLWY0YjMzOGMwYTQzMT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fb0226d4-1bd5-4e75-887d-1f3495003f41" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/a8f7f049-716b-4211-949f-f4b338c0a431?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "260730f9-4380-4444-bc0e-34e371f77924" + ], + "x-ms-client-request-id": [ + "fb0226d4-1bd5-4e75-887d-1f3495003f41", + "fb0226d4-1bd5-4e75-887d-1f3495003f41" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "288" + ], + "x-ms-correlation-request-id": [ + "260730f9-4380-4444-bc0e-34e371f77924" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153935Z:260730f9-4380-4444-bc0e-34e371f77924" + ], + "Date": [ + "Mon, 16 May 2022 15:39:35 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/a8f7f049-716b-4211-949f-f4b338c0a431?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzL2E4ZjdmMDQ5LTcxNmItNDIxMS05NDlmLWY0YjMzOGMwYTQzMT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fb0226d4-1bd5-4e75-887d-1f3495003f41" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/a8f7f049-716b-4211-949f-f4b338c0a431?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "6d0aaa37-46eb-4f64-beb0-561ca792a8b1" + ], + "x-ms-client-request-id": [ + "fb0226d4-1bd5-4e75-887d-1f3495003f41", + "fb0226d4-1bd5-4e75-887d-1f3495003f41" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "287" + ], + "x-ms-correlation-request-id": [ + "6d0aaa37-46eb-4f64-beb0-561ca792a8b1" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153935Z:6d0aaa37-46eb-4f64-beb0-561ca792a8b1" + ], + "Date": [ + "Mon, 16 May 2022 15:39:35 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/a8f7f049-716b-4211-949f-f4b338c0a431?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzL2E4ZjdmMDQ5LTcxNmItNDIxMS05NDlmLWY0YjMzOGMwYTQzMT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fb0226d4-1bd5-4e75-887d-1f3495003f41" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/a8f7f049-716b-4211-949f-f4b338c0a431?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "6e74fb9b-baf3-4ce4-a3a9-f48bd99156bb" + ], + "x-ms-client-request-id": [ + "fb0226d4-1bd5-4e75-887d-1f3495003f41", + "fb0226d4-1bd5-4e75-887d-1f3495003f41" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "286" + ], + "x-ms-correlation-request-id": [ + "6e74fb9b-baf3-4ce4-a3a9-f48bd99156bb" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153936Z:6e74fb9b-baf3-4ce4-a3a9-f48bd99156bb" + ], + "Date": [ + "Mon, 16 May 2022 15:39:36 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/a8f7f049-716b-4211-949f-f4b338c0a431?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzL2E4ZjdmMDQ5LTcxNmItNDIxMS05NDlmLWY0YjMzOGMwYTQzMT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fb0226d4-1bd5-4e75-887d-1f3495003f41" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/a8f7f049-716b-4211-949f-f4b338c0a431?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "853a3503-9340-4eeb-89de-d446b4a32507" + ], + "x-ms-client-request-id": [ + "fb0226d4-1bd5-4e75-887d-1f3495003f41", + "fb0226d4-1bd5-4e75-887d-1f3495003f41" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "285" + ], + "x-ms-correlation-request-id": [ + "853a3503-9340-4eeb-89de-d446b4a32507" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153936Z:853a3503-9340-4eeb-89de-d446b4a32507" + ], + "Date": [ + "Mon, 16 May 2022 15:39:36 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/a8f7f049-716b-4211-949f-f4b338c0a431?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzL2E4ZjdmMDQ5LTcxNmItNDIxMS05NDlmLWY0YjMzOGMwYTQzMT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fb0226d4-1bd5-4e75-887d-1f3495003f41" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/a8f7f049-716b-4211-949f-f4b338c0a431?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "8d8e48ef-49d0-446b-9fec-3270fbb3325d" + ], + "x-ms-client-request-id": [ + "fb0226d4-1bd5-4e75-887d-1f3495003f41", + "fb0226d4-1bd5-4e75-887d-1f3495003f41" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "284" + ], + "x-ms-correlation-request-id": [ + "8d8e48ef-49d0-446b-9fec-3270fbb3325d" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153937Z:8d8e48ef-49d0-446b-9fec-3270fbb3325d" + ], + "Date": [ + "Mon, 16 May 2022 15:39:37 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/a8f7f049-716b-4211-949f-f4b338c0a431?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzL2E4ZjdmMDQ5LTcxNmItNDIxMS05NDlmLWY0YjMzOGMwYTQzMT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fb0226d4-1bd5-4e75-887d-1f3495003f41" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/a8f7f049-716b-4211-949f-f4b338c0a431?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "50953909-5ee3-4d62-9607-4b9e6c6a05da" + ], + "x-ms-client-request-id": [ + "fb0226d4-1bd5-4e75-887d-1f3495003f41", + "fb0226d4-1bd5-4e75-887d-1f3495003f41" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "283" + ], + "x-ms-correlation-request-id": [ + "50953909-5ee3-4d62-9607-4b9e6c6a05da" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153938Z:50953909-5ee3-4d62-9607-4b9e6c6a05da" + ], + "Date": [ + "Mon, 16 May 2022 15:39:37 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/a8f7f049-716b-4211-949f-f4b338c0a431?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzL2E4ZjdmMDQ5LTcxNmItNDIxMS05NDlmLWY0YjMzOGMwYTQzMT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fb0226d4-1bd5-4e75-887d-1f3495003f41" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/a8f7f049-716b-4211-949f-f4b338c0a431?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "7454f197-663c-461a-98b8-b67765ff0ce1" + ], + "x-ms-client-request-id": [ + "fb0226d4-1bd5-4e75-887d-1f3495003f41", + "fb0226d4-1bd5-4e75-887d-1f3495003f41" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "282" + ], + "x-ms-correlation-request-id": [ + "7454f197-663c-461a-98b8-b67765ff0ce1" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153938Z:7454f197-663c-461a-98b8-b67765ff0ce1" + ], + "Date": [ + "Mon, 16 May 2022 15:39:38 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/a8f7f049-716b-4211-949f-f4b338c0a431?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzL2E4ZjdmMDQ5LTcxNmItNDIxMS05NDlmLWY0YjMzOGMwYTQzMT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fb0226d4-1bd5-4e75-887d-1f3495003f41" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/a8f7f049-716b-4211-949f-f4b338c0a431?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "28941fa2-a589-4fdf-9a68-d37493f4f28f" + ], + "x-ms-client-request-id": [ + "fb0226d4-1bd5-4e75-887d-1f3495003f41", + "fb0226d4-1bd5-4e75-887d-1f3495003f41" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "281" + ], + "x-ms-correlation-request-id": [ + "28941fa2-a589-4fdf-9a68-d37493f4f28f" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153939Z:28941fa2-a589-4fdf-9a68-d37493f4f28f" + ], + "Date": [ + "Mon, 16 May 2022 15:39:38 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/a8f7f049-716b-4211-949f-f4b338c0a431?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzL2E4ZjdmMDQ5LTcxNmItNDIxMS05NDlmLWY0YjMzOGMwYTQzMT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fb0226d4-1bd5-4e75-887d-1f3495003f41" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/a8f7f049-716b-4211-949f-f4b338c0a431?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "570b5980-5ac5-4ed8-8b68-836eaf6ac820" + ], + "x-ms-client-request-id": [ + "fb0226d4-1bd5-4e75-887d-1f3495003f41", + "fb0226d4-1bd5-4e75-887d-1f3495003f41" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "280" + ], + "x-ms-correlation-request-id": [ + "570b5980-5ac5-4ed8-8b68-836eaf6ac820" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153939Z:570b5980-5ac5-4ed8-8b68-836eaf6ac820" + ], + "Date": [ + "Mon, 16 May 2022 15:39:39 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/a8f7f049-716b-4211-949f-f4b338c0a431?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzL2E4ZjdmMDQ5LTcxNmItNDIxMS05NDlmLWY0YjMzOGMwYTQzMT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fb0226d4-1bd5-4e75-887d-1f3495003f41" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/a8f7f049-716b-4211-949f-f4b338c0a431?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "98a21521-0dba-40a4-a82e-7348ed308e28" + ], + "x-ms-client-request-id": [ + "fb0226d4-1bd5-4e75-887d-1f3495003f41", + "fb0226d4-1bd5-4e75-887d-1f3495003f41" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "279" + ], + "x-ms-correlation-request-id": [ + "98a21521-0dba-40a4-a82e-7348ed308e28" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153940Z:98a21521-0dba-40a4-a82e-7348ed308e28" + ], + "Date": [ + "Mon, 16 May 2022 15:39:39 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/a8f7f049-716b-4211-949f-f4b338c0a431?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzL2E4ZjdmMDQ5LTcxNmItNDIxMS05NDlmLWY0YjMzOGMwYTQzMT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fb0226d4-1bd5-4e75-887d-1f3495003f41" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/a8f7f049-716b-4211-949f-f4b338c0a431?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "30d894ac-56d5-4bac-afda-35f32817d174" + ], + "x-ms-client-request-id": [ + "fb0226d4-1bd5-4e75-887d-1f3495003f41", + "fb0226d4-1bd5-4e75-887d-1f3495003f41" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "278" + ], + "x-ms-correlation-request-id": [ + "30d894ac-56d5-4bac-afda-35f32817d174" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153940Z:30d894ac-56d5-4bac-afda-35f32817d174" + ], + "Date": [ + "Mon, 16 May 2022 15:39:40 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/a8f7f049-716b-4211-949f-f4b338c0a431?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzL2E4ZjdmMDQ5LTcxNmItNDIxMS05NDlmLWY0YjMzOGMwYTQzMT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fb0226d4-1bd5-4e75-887d-1f3495003f41" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/a8f7f049-716b-4211-949f-f4b338c0a431?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "d802d79b-3173-4ae6-b747-f1b9197040d4" + ], + "x-ms-client-request-id": [ + "fb0226d4-1bd5-4e75-887d-1f3495003f41", + "fb0226d4-1bd5-4e75-887d-1f3495003f41" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "277" + ], + "x-ms-correlation-request-id": [ + "d802d79b-3173-4ae6-b747-f1b9197040d4" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153941Z:d802d79b-3173-4ae6-b747-f1b9197040d4" + ], + "Date": [ + "Mon, 16 May 2022 15:39:40 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/a8f7f049-716b-4211-949f-f4b338c0a431?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzL2E4ZjdmMDQ5LTcxNmItNDIxMS05NDlmLWY0YjMzOGMwYTQzMT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fb0226d4-1bd5-4e75-887d-1f3495003f41" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/a8f7f049-716b-4211-949f-f4b338c0a431?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "c7df9e8e-ba0e-4341-86cc-35fca5f59513" + ], + "x-ms-client-request-id": [ + "fb0226d4-1bd5-4e75-887d-1f3495003f41", + "fb0226d4-1bd5-4e75-887d-1f3495003f41" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "276" + ], + "x-ms-correlation-request-id": [ + "c7df9e8e-ba0e-4341-86cc-35fca5f59513" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153941Z:c7df9e8e-ba0e-4341-86cc-35fca5f59513" + ], + "Date": [ + "Mon, 16 May 2022 15:39:41 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/a8f7f049-716b-4211-949f-f4b338c0a431?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzL2E4ZjdmMDQ5LTcxNmItNDIxMS05NDlmLWY0YjMzOGMwYTQzMT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fb0226d4-1bd5-4e75-887d-1f3495003f41" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/a8f7f049-716b-4211-949f-f4b338c0a431?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "3620310f-f624-46dd-9609-afa7906602ac" + ], + "x-ms-client-request-id": [ + "fb0226d4-1bd5-4e75-887d-1f3495003f41", + "fb0226d4-1bd5-4e75-887d-1f3495003f41" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "275" + ], + "x-ms-correlation-request-id": [ + "3620310f-f624-46dd-9609-afa7906602ac" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153942Z:3620310f-f624-46dd-9609-afa7906602ac" + ], + "Date": [ + "Mon, 16 May 2022 15:39:41 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/a8f7f049-716b-4211-949f-f4b338c0a431?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzL2E4ZjdmMDQ5LTcxNmItNDIxMS05NDlmLWY0YjMzOGMwYTQzMT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fb0226d4-1bd5-4e75-887d-1f3495003f41" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/a8f7f049-716b-4211-949f-f4b338c0a431?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "8f25987c-bc68-4b68-b53b-492c109f1ce7" + ], + "x-ms-client-request-id": [ + "fb0226d4-1bd5-4e75-887d-1f3495003f41", + "fb0226d4-1bd5-4e75-887d-1f3495003f41" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "274" + ], + "x-ms-correlation-request-id": [ + "8f25987c-bc68-4b68-b53b-492c109f1ce7" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153942Z:8f25987c-bc68-4b68-b53b-492c109f1ce7" + ], + "Date": [ + "Mon, 16 May 2022 15:39:42 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/a8f7f049-716b-4211-949f-f4b338c0a431?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzL2E4ZjdmMDQ5LTcxNmItNDIxMS05NDlmLWY0YjMzOGMwYTQzMT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fb0226d4-1bd5-4e75-887d-1f3495003f41" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/a8f7f049-716b-4211-949f-f4b338c0a431?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "6f3fa90b-bbe3-42b6-9280-caa71cf651c7" + ], + "x-ms-client-request-id": [ + "fb0226d4-1bd5-4e75-887d-1f3495003f41", + "fb0226d4-1bd5-4e75-887d-1f3495003f41" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "273" + ], + "x-ms-correlation-request-id": [ + "6f3fa90b-bbe3-42b6-9280-caa71cf651c7" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153943Z:6f3fa90b-bbe3-42b6-9280-caa71cf651c7" + ], + "Date": [ + "Mon, 16 May 2022 15:39:42 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/a8f7f049-716b-4211-949f-f4b338c0a431?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzL2E4ZjdmMDQ5LTcxNmItNDIxMS05NDlmLWY0YjMzOGMwYTQzMT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fb0226d4-1bd5-4e75-887d-1f3495003f41" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/a8f7f049-716b-4211-949f-f4b338c0a431?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "137ebb76-f7ef-4fd2-b038-186594b32dfb" + ], + "x-ms-client-request-id": [ + "fb0226d4-1bd5-4e75-887d-1f3495003f41", + "fb0226d4-1bd5-4e75-887d-1f3495003f41" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "272" + ], + "x-ms-correlation-request-id": [ + "137ebb76-f7ef-4fd2-b038-186594b32dfb" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153943Z:137ebb76-f7ef-4fd2-b038-186594b32dfb" + ], + "Date": [ + "Mon, 16 May 2022 15:39:43 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/a8f7f049-716b-4211-949f-f4b338c0a431?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzL2E4ZjdmMDQ5LTcxNmItNDIxMS05NDlmLWY0YjMzOGMwYTQzMT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fb0226d4-1bd5-4e75-887d-1f3495003f41" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/a8f7f049-716b-4211-949f-f4b338c0a431?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "fdaababd-5963-4670-ada8-9031f518a88f" + ], + "x-ms-client-request-id": [ + "fb0226d4-1bd5-4e75-887d-1f3495003f41", + "fb0226d4-1bd5-4e75-887d-1f3495003f41" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "271" + ], + "x-ms-correlation-request-id": [ + "fdaababd-5963-4670-ada8-9031f518a88f" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153944Z:fdaababd-5963-4670-ada8-9031f518a88f" + ], + "Date": [ + "Mon, 16 May 2022 15:39:43 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/a8f7f049-716b-4211-949f-f4b338c0a431?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzL2E4ZjdmMDQ5LTcxNmItNDIxMS05NDlmLWY0YjMzOGMwYTQzMT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fb0226d4-1bd5-4e75-887d-1f3495003f41" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/a8f7f049-716b-4211-949f-f4b338c0a431?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "68a33c81-94d3-4b81-b54f-d7042b6c9fc0" + ], + "x-ms-client-request-id": [ + "fb0226d4-1bd5-4e75-887d-1f3495003f41", + "fb0226d4-1bd5-4e75-887d-1f3495003f41" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "270" + ], + "x-ms-correlation-request-id": [ + "68a33c81-94d3-4b81-b54f-d7042b6c9fc0" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153944Z:68a33c81-94d3-4b81-b54f-d7042b6c9fc0" + ], + "Date": [ + "Mon, 16 May 2022 15:39:43 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/a8f7f049-716b-4211-949f-f4b338c0a431?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzL2E4ZjdmMDQ5LTcxNmItNDIxMS05NDlmLWY0YjMzOGMwYTQzMT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fb0226d4-1bd5-4e75-887d-1f3495003f41" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/a8f7f049-716b-4211-949f-f4b338c0a431?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "0da72537-15bb-4a75-a25e-3ee756f6b4a5" + ], + "x-ms-client-request-id": [ + "fb0226d4-1bd5-4e75-887d-1f3495003f41", + "fb0226d4-1bd5-4e75-887d-1f3495003f41" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "269" + ], + "x-ms-correlation-request-id": [ + "0da72537-15bb-4a75-a25e-3ee756f6b4a5" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153945Z:0da72537-15bb-4a75-a25e-3ee756f6b4a5" + ], + "Date": [ + "Mon, 16 May 2022 15:39:44 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/a8f7f049-716b-4211-949f-f4b338c0a431?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzL2E4ZjdmMDQ5LTcxNmItNDIxMS05NDlmLWY0YjMzOGMwYTQzMT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fb0226d4-1bd5-4e75-887d-1f3495003f41" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/a8f7f049-716b-4211-949f-f4b338c0a431?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "d8882e4a-091b-4886-9a74-5b022cf9e754" + ], + "x-ms-client-request-id": [ + "fb0226d4-1bd5-4e75-887d-1f3495003f41", + "fb0226d4-1bd5-4e75-887d-1f3495003f41" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "268" + ], + "x-ms-correlation-request-id": [ + "d8882e4a-091b-4886-9a74-5b022cf9e754" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153945Z:d8882e4a-091b-4886-9a74-5b022cf9e754" + ], + "Date": [ + "Mon, 16 May 2022 15:39:44 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/a8f7f049-716b-4211-949f-f4b338c0a431?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzL2E4ZjdmMDQ5LTcxNmItNDIxMS05NDlmLWY0YjMzOGMwYTQzMT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fb0226d4-1bd5-4e75-887d-1f3495003f41" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/a8f7f049-716b-4211-949f-f4b338c0a431?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "098827bc-c826-4350-896c-0a9a3a32fdfa" + ], + "x-ms-client-request-id": [ + "fb0226d4-1bd5-4e75-887d-1f3495003f41", + "fb0226d4-1bd5-4e75-887d-1f3495003f41" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "267" + ], + "x-ms-correlation-request-id": [ + "098827bc-c826-4350-896c-0a9a3a32fdfa" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153946Z:098827bc-c826-4350-896c-0a9a3a32fdfa" + ], + "Date": [ + "Mon, 16 May 2022 15:39:45 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/a8f7f049-716b-4211-949f-f4b338c0a431?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzL2E4ZjdmMDQ5LTcxNmItNDIxMS05NDlmLWY0YjMzOGMwYTQzMT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fb0226d4-1bd5-4e75-887d-1f3495003f41" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/a8f7f049-716b-4211-949f-f4b338c0a431?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "f5cf5a39-e3c6-42b7-97f3-a7af87281b09" + ], + "x-ms-client-request-id": [ + "fb0226d4-1bd5-4e75-887d-1f3495003f41", + "fb0226d4-1bd5-4e75-887d-1f3495003f41" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "266" + ], + "x-ms-correlation-request-id": [ + "f5cf5a39-e3c6-42b7-97f3-a7af87281b09" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153946Z:f5cf5a39-e3c6-42b7-97f3-a7af87281b09" + ], + "Date": [ + "Mon, 16 May 2022 15:39:45 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/a8f7f049-716b-4211-949f-f4b338c0a431?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzL2E4ZjdmMDQ5LTcxNmItNDIxMS05NDlmLWY0YjMzOGMwYTQzMT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fb0226d4-1bd5-4e75-887d-1f3495003f41" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/a8f7f049-716b-4211-949f-f4b338c0a431?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "b50de930-6c33-46e4-bf60-007d2110a924" + ], + "x-ms-client-request-id": [ + "fb0226d4-1bd5-4e75-887d-1f3495003f41", + "fb0226d4-1bd5-4e75-887d-1f3495003f41" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "265" + ], + "x-ms-correlation-request-id": [ + "b50de930-6c33-46e4-bf60-007d2110a924" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153947Z:b50de930-6c33-46e4-bf60-007d2110a924" + ], + "Date": [ + "Mon, 16 May 2022 15:39:46 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/a8f7f049-716b-4211-949f-f4b338c0a431?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzL2E4ZjdmMDQ5LTcxNmItNDIxMS05NDlmLWY0YjMzOGMwYTQzMT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fb0226d4-1bd5-4e75-887d-1f3495003f41" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/a8f7f049-716b-4211-949f-f4b338c0a431?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "94e243d9-4ee4-4311-92b3-e53b46d80754" + ], + "x-ms-client-request-id": [ + "fb0226d4-1bd5-4e75-887d-1f3495003f41", + "fb0226d4-1bd5-4e75-887d-1f3495003f41" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "264" + ], + "x-ms-correlation-request-id": [ + "94e243d9-4ee4-4311-92b3-e53b46d80754" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153947Z:94e243d9-4ee4-4311-92b3-e53b46d80754" + ], + "Date": [ + "Mon, 16 May 2022 15:39:47 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/a8f7f049-716b-4211-949f-f4b338c0a431?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzL2E4ZjdmMDQ5LTcxNmItNDIxMS05NDlmLWY0YjMzOGMwYTQzMT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fb0226d4-1bd5-4e75-887d-1f3495003f41" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/a8f7f049-716b-4211-949f-f4b338c0a431?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "b0e589b2-cdf9-47af-b4f6-ab5c4f323d6a" + ], + "x-ms-client-request-id": [ + "fb0226d4-1bd5-4e75-887d-1f3495003f41", + "fb0226d4-1bd5-4e75-887d-1f3495003f41" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "263" + ], + "x-ms-correlation-request-id": [ + "b0e589b2-cdf9-47af-b4f6-ab5c4f323d6a" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153948Z:b0e589b2-cdf9-47af-b4f6-ab5c4f323d6a" + ], + "Date": [ + "Mon, 16 May 2022 15:39:47 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/a8f7f049-716b-4211-949f-f4b338c0a431?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzL2E4ZjdmMDQ5LTcxNmItNDIxMS05NDlmLWY0YjMzOGMwYTQzMT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fb0226d4-1bd5-4e75-887d-1f3495003f41" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/a8f7f049-716b-4211-949f-f4b338c0a431?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "e2d4a966-33f7-4780-8349-fce6be2baa39" + ], + "x-ms-client-request-id": [ + "fb0226d4-1bd5-4e75-887d-1f3495003f41", + "fb0226d4-1bd5-4e75-887d-1f3495003f41" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "262" + ], + "x-ms-correlation-request-id": [ + "e2d4a966-33f7-4780-8349-fce6be2baa39" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153948Z:e2d4a966-33f7-4780-8349-fce6be2baa39" + ], + "Date": [ + "Mon, 16 May 2022 15:39:48 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/a8f7f049-716b-4211-949f-f4b338c0a431?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzL2E4ZjdmMDQ5LTcxNmItNDIxMS05NDlmLWY0YjMzOGMwYTQzMT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fb0226d4-1bd5-4e75-887d-1f3495003f41" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/a8f7f049-716b-4211-949f-f4b338c0a431?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "c02ae464-dc48-46f0-9789-5a4e126cc646" + ], + "x-ms-client-request-id": [ + "fb0226d4-1bd5-4e75-887d-1f3495003f41", + "fb0226d4-1bd5-4e75-887d-1f3495003f41" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "261" + ], + "x-ms-correlation-request-id": [ + "c02ae464-dc48-46f0-9789-5a4e126cc646" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153949Z:c02ae464-dc48-46f0-9789-5a4e126cc646" + ], + "Date": [ + "Mon, 16 May 2022 15:39:48 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/a8f7f049-716b-4211-949f-f4b338c0a431?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzL2E4ZjdmMDQ5LTcxNmItNDIxMS05NDlmLWY0YjMzOGMwYTQzMT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fb0226d4-1bd5-4e75-887d-1f3495003f41" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/a8f7f049-716b-4211-949f-f4b338c0a431?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "7e4766fc-863f-41c4-b290-aa8f6a8bbf90" + ], + "x-ms-client-request-id": [ + "fb0226d4-1bd5-4e75-887d-1f3495003f41", + "fb0226d4-1bd5-4e75-887d-1f3495003f41" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "260" + ], + "x-ms-correlation-request-id": [ + "7e4766fc-863f-41c4-b290-aa8f6a8bbf90" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153949Z:7e4766fc-863f-41c4-b290-aa8f6a8bbf90" + ], + "Date": [ + "Mon, 16 May 2022 15:39:49 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/a8f7f049-716b-4211-949f-f4b338c0a431?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzL2E4ZjdmMDQ5LTcxNmItNDIxMS05NDlmLWY0YjMzOGMwYTQzMT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fb0226d4-1bd5-4e75-887d-1f3495003f41" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/a8f7f049-716b-4211-949f-f4b338c0a431?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "a82e170b-5ab2-46c2-8605-4a91c8af521d" + ], + "x-ms-client-request-id": [ + "fb0226d4-1bd5-4e75-887d-1f3495003f41", + "fb0226d4-1bd5-4e75-887d-1f3495003f41" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "259" + ], + "x-ms-correlation-request-id": [ + "a82e170b-5ab2-46c2-8605-4a91c8af521d" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153950Z:a82e170b-5ab2-46c2-8605-4a91c8af521d" + ], + "Date": [ + "Mon, 16 May 2022 15:39:49 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/a8f7f049-716b-4211-949f-f4b338c0a431?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzL2E4ZjdmMDQ5LTcxNmItNDIxMS05NDlmLWY0YjMzOGMwYTQzMT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fb0226d4-1bd5-4e75-887d-1f3495003f41" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/a8f7f049-716b-4211-949f-f4b338c0a431?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "711b0de4-e94e-4ddd-a8c2-6f158a60852f" + ], + "x-ms-client-request-id": [ + "fb0226d4-1bd5-4e75-887d-1f3495003f41", + "fb0226d4-1bd5-4e75-887d-1f3495003f41" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "258" + ], + "x-ms-correlation-request-id": [ + "711b0de4-e94e-4ddd-a8c2-6f158a60852f" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153950Z:711b0de4-e94e-4ddd-a8c2-6f158a60852f" + ], + "Date": [ + "Mon, 16 May 2022 15:39:49 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/a8f7f049-716b-4211-949f-f4b338c0a431?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzL2E4ZjdmMDQ5LTcxNmItNDIxMS05NDlmLWY0YjMzOGMwYTQzMT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fb0226d4-1bd5-4e75-887d-1f3495003f41" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/a8f7f049-716b-4211-949f-f4b338c0a431?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "c03a54a6-7e5f-4f14-8db4-c90953dc4e83" + ], + "x-ms-client-request-id": [ + "fb0226d4-1bd5-4e75-887d-1f3495003f41", + "fb0226d4-1bd5-4e75-887d-1f3495003f41" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "257" + ], + "x-ms-correlation-request-id": [ + "c03a54a6-7e5f-4f14-8db4-c90953dc4e83" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153951Z:c03a54a6-7e5f-4f14-8db4-c90953dc4e83" + ], + "Date": [ + "Mon, 16 May 2022 15:39:50 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/a8f7f049-716b-4211-949f-f4b338c0a431?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzL2E4ZjdmMDQ5LTcxNmItNDIxMS05NDlmLWY0YjMzOGMwYTQzMT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fb0226d4-1bd5-4e75-887d-1f3495003f41" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/a8f7f049-716b-4211-949f-f4b338c0a431?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "b5b9755e-b282-4895-8993-a52d8e58d514" + ], + "x-ms-client-request-id": [ + "fb0226d4-1bd5-4e75-887d-1f3495003f41", + "fb0226d4-1bd5-4e75-887d-1f3495003f41" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "256" + ], + "x-ms-correlation-request-id": [ + "b5b9755e-b282-4895-8993-a52d8e58d514" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153951Z:b5b9755e-b282-4895-8993-a52d8e58d514" + ], + "Date": [ + "Mon, 16 May 2022 15:39:50 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/a8f7f049-716b-4211-949f-f4b338c0a431?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzL2E4ZjdmMDQ5LTcxNmItNDIxMS05NDlmLWY0YjMzOGMwYTQzMT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fb0226d4-1bd5-4e75-887d-1f3495003f41" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/a8f7f049-716b-4211-949f-f4b338c0a431?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "121b3450-aab8-4692-a85a-7589302d57d9" + ], + "x-ms-client-request-id": [ + "fb0226d4-1bd5-4e75-887d-1f3495003f41", + "fb0226d4-1bd5-4e75-887d-1f3495003f41" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "255" + ], + "x-ms-correlation-request-id": [ + "121b3450-aab8-4692-a85a-7589302d57d9" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153952Z:121b3450-aab8-4692-a85a-7589302d57d9" + ], + "Date": [ + "Mon, 16 May 2022 15:39:51 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/a8f7f049-716b-4211-949f-f4b338c0a431?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzL2E4ZjdmMDQ5LTcxNmItNDIxMS05NDlmLWY0YjMzOGMwYTQzMT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fb0226d4-1bd5-4e75-887d-1f3495003f41" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/a8f7f049-716b-4211-949f-f4b338c0a431?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "22cfeaf1-6ed0-4fd5-a79c-fcb5abf69c52" + ], + "x-ms-client-request-id": [ + "fb0226d4-1bd5-4e75-887d-1f3495003f41", + "fb0226d4-1bd5-4e75-887d-1f3495003f41" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "254" + ], + "x-ms-correlation-request-id": [ + "22cfeaf1-6ed0-4fd5-a79c-fcb5abf69c52" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153952Z:22cfeaf1-6ed0-4fd5-a79c-fcb5abf69c52" + ], + "Date": [ + "Mon, 16 May 2022 15:39:51 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/a8f7f049-716b-4211-949f-f4b338c0a431?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzL2E4ZjdmMDQ5LTcxNmItNDIxMS05NDlmLWY0YjMzOGMwYTQzMT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fb0226d4-1bd5-4e75-887d-1f3495003f41" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/a8f7f049-716b-4211-949f-f4b338c0a431?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "88d9ed56-c6f1-4967-97e9-47af0639b3dd" + ], + "x-ms-client-request-id": [ + "fb0226d4-1bd5-4e75-887d-1f3495003f41", + "fb0226d4-1bd5-4e75-887d-1f3495003f41" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "253" + ], + "x-ms-correlation-request-id": [ + "88d9ed56-c6f1-4967-97e9-47af0639b3dd" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153953Z:88d9ed56-c6f1-4967-97e9-47af0639b3dd" + ], + "Date": [ + "Mon, 16 May 2022 15:39:52 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/a8f7f049-716b-4211-949f-f4b338c0a431?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzL2E4ZjdmMDQ5LTcxNmItNDIxMS05NDlmLWY0YjMzOGMwYTQzMT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fb0226d4-1bd5-4e75-887d-1f3495003f41" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/a8f7f049-716b-4211-949f-f4b338c0a431?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "1fdcc939-ac28-43b8-93ff-d675cb5dfc24" + ], + "x-ms-client-request-id": [ + "fb0226d4-1bd5-4e75-887d-1f3495003f41", + "fb0226d4-1bd5-4e75-887d-1f3495003f41" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "252" + ], + "x-ms-correlation-request-id": [ + "1fdcc939-ac28-43b8-93ff-d675cb5dfc24" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153953Z:1fdcc939-ac28-43b8-93ff-d675cb5dfc24" + ], + "Date": [ + "Mon, 16 May 2022 15:39:53 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/a8f7f049-716b-4211-949f-f4b338c0a431?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzL2E4ZjdmMDQ5LTcxNmItNDIxMS05NDlmLWY0YjMzOGMwYTQzMT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fb0226d4-1bd5-4e75-887d-1f3495003f41" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/a8f7f049-716b-4211-949f-f4b338c0a431?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "1d4ef241-58fa-4ebe-8f96-52beb417b683" + ], + "x-ms-client-request-id": [ + "fb0226d4-1bd5-4e75-887d-1f3495003f41", + "fb0226d4-1bd5-4e75-887d-1f3495003f41" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "251" + ], + "x-ms-correlation-request-id": [ + "1d4ef241-58fa-4ebe-8f96-52beb417b683" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153954Z:1d4ef241-58fa-4ebe-8f96-52beb417b683" + ], + "Date": [ + "Mon, 16 May 2022 15:39:53 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/a8f7f049-716b-4211-949f-f4b338c0a431?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzL2E4ZjdmMDQ5LTcxNmItNDIxMS05NDlmLWY0YjMzOGMwYTQzMT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fb0226d4-1bd5-4e75-887d-1f3495003f41" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/a8f7f049-716b-4211-949f-f4b338c0a431?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "72fb33e3-b48e-4d4c-8794-d206bd68b03f" + ], + "x-ms-client-request-id": [ + "fb0226d4-1bd5-4e75-887d-1f3495003f41", + "fb0226d4-1bd5-4e75-887d-1f3495003f41" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "250" + ], + "x-ms-correlation-request-id": [ + "72fb33e3-b48e-4d4c-8794-d206bd68b03f" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153955Z:72fb33e3-b48e-4d4c-8794-d206bd68b03f" + ], + "Date": [ + "Mon, 16 May 2022 15:39:55 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/a8f7f049-716b-4211-949f-f4b338c0a431?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzL2E4ZjdmMDQ5LTcxNmItNDIxMS05NDlmLWY0YjMzOGMwYTQzMT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fb0226d4-1bd5-4e75-887d-1f3495003f41" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/a8f7f049-716b-4211-949f-f4b338c0a431?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "dd2b78bd-dac5-4c0a-89e0-b5bb0b2fa792" + ], + "x-ms-client-request-id": [ + "fb0226d4-1bd5-4e75-887d-1f3495003f41", + "fb0226d4-1bd5-4e75-887d-1f3495003f41" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "249" + ], + "x-ms-correlation-request-id": [ + "dd2b78bd-dac5-4c0a-89e0-b5bb0b2fa792" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153955Z:dd2b78bd-dac5-4c0a-89e0-b5bb0b2fa792" + ], + "Date": [ + "Mon, 16 May 2022 15:39:55 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/a8f7f049-716b-4211-949f-f4b338c0a431?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzL2E4ZjdmMDQ5LTcxNmItNDIxMS05NDlmLWY0YjMzOGMwYTQzMT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fb0226d4-1bd5-4e75-887d-1f3495003f41" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/a8f7f049-716b-4211-949f-f4b338c0a431?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "2a70b860-c880-4ae5-b206-a75a92a1b742" + ], + "x-ms-client-request-id": [ + "fb0226d4-1bd5-4e75-887d-1f3495003f41", + "fb0226d4-1bd5-4e75-887d-1f3495003f41" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "248" + ], + "x-ms-correlation-request-id": [ + "2a70b860-c880-4ae5-b206-a75a92a1b742" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153956Z:2a70b860-c880-4ae5-b206-a75a92a1b742" + ], + "Date": [ + "Mon, 16 May 2022 15:39:56 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/a8f7f049-716b-4211-949f-f4b338c0a431?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzL2E4ZjdmMDQ5LTcxNmItNDIxMS05NDlmLWY0YjMzOGMwYTQzMT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fb0226d4-1bd5-4e75-887d-1f3495003f41" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/a8f7f049-716b-4211-949f-f4b338c0a431?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "bc5ade96-5948-46b9-a972-3c9ecad5f9e8" + ], + "x-ms-client-request-id": [ + "fb0226d4-1bd5-4e75-887d-1f3495003f41", + "fb0226d4-1bd5-4e75-887d-1f3495003f41" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "247" + ], + "x-ms-correlation-request-id": [ + "bc5ade96-5948-46b9-a972-3c9ecad5f9e8" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153956Z:bc5ade96-5948-46b9-a972-3c9ecad5f9e8" + ], + "Date": [ + "Mon, 16 May 2022 15:39:56 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/a8f7f049-716b-4211-949f-f4b338c0a431?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzL2E4ZjdmMDQ5LTcxNmItNDIxMS05NDlmLWY0YjMzOGMwYTQzMT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fb0226d4-1bd5-4e75-887d-1f3495003f41" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/a8f7f049-716b-4211-949f-f4b338c0a431?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "ed4d0cb7-fe4e-48e0-9149-1d943de4e837" + ], + "x-ms-client-request-id": [ + "fb0226d4-1bd5-4e75-887d-1f3495003f41", + "fb0226d4-1bd5-4e75-887d-1f3495003f41" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "246" + ], + "x-ms-correlation-request-id": [ + "ed4d0cb7-fe4e-48e0-9149-1d943de4e837" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153957Z:ed4d0cb7-fe4e-48e0-9149-1d943de4e837" + ], + "Date": [ + "Mon, 16 May 2022 15:39:57 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/a8f7f049-716b-4211-949f-f4b338c0a431?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzL2E4ZjdmMDQ5LTcxNmItNDIxMS05NDlmLWY0YjMzOGMwYTQzMT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fb0226d4-1bd5-4e75-887d-1f3495003f41" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/a8f7f049-716b-4211-949f-f4b338c0a431?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "0137a362-b7a9-4099-9e50-cefc8cd6b459" + ], + "x-ms-client-request-id": [ + "fb0226d4-1bd5-4e75-887d-1f3495003f41", + "fb0226d4-1bd5-4e75-887d-1f3495003f41" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "245" + ], + "x-ms-correlation-request-id": [ + "0137a362-b7a9-4099-9e50-cefc8cd6b459" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153957Z:0137a362-b7a9-4099-9e50-cefc8cd6b459" + ], + "Date": [ + "Mon, 16 May 2022 15:39:57 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/a8f7f049-716b-4211-949f-f4b338c0a431?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzL2E4ZjdmMDQ5LTcxNmItNDIxMS05NDlmLWY0YjMzOGMwYTQzMT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fb0226d4-1bd5-4e75-887d-1f3495003f41" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "e15dfa10-7006-4f52-8a52-494a5113e684" + ], + "x-ms-client-request-id": [ + "fb0226d4-1bd5-4e75-887d-1f3495003f41", + "fb0226d4-1bd5-4e75-887d-1f3495003f41" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "244" + ], + "x-ms-correlation-request-id": [ + "e15dfa10-7006-4f52-8a52-494a5113e684" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153958Z:e15dfa10-7006-4f52-8a52-494a5113e684" + ], + "Date": [ + "Mon, 16 May 2022 15:39:58 GMT" + ] + }, + "ResponseBody": "", + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/a8f7f049-716b-4211-949f-f4b338c0a431?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzL2E4ZjdmMDQ5LTcxNmItNDIxMS05NDlmLWY0YjMzOGMwYTQzMT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fb0226d4-1bd5-4e75-887d-1f3495003f41" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "bddeb9bb-fedc-4d51-88dc-0498a8e0d6ee" + ], + "x-ms-client-request-id": [ + "fb0226d4-1bd5-4e75-887d-1f3495003f41", + "fb0226d4-1bd5-4e75-887d-1f3495003f41" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "243" ], "x-ms-correlation-request-id": [ - "809f4235-553f-40ba-9c5e-44c8a4aaa5ef" + "bddeb9bb-fedc-4d51-88dc-0498a8e0d6ee" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T084810Z:809f4235-553f-40ba-9c5e-44c8a4aaa5ef" + "JIOINDIAWEST:20220516T153958Z:bddeb9bb-fedc-4d51-88dc-0498a8e0d6ee" ], "Date": [ - "Sat, 26 Mar 2022 08:48:10 GMT" + "Mon, 16 May 2022 15:39:58 GMT" ] }, "ResponseBody": "", diff --git a/src/RecoveryServices/RecoveryServices.Backup.Test/SessionRecords/Microsoft.Azure.Commands.RecoveryServices.Backup.Test.ScenarioTests.ContainerTests/TestAzureVMGetContainers.json b/src/RecoveryServices/RecoveryServices.Backup.Test/SessionRecords/Microsoft.Azure.Commands.RecoveryServices.Backup.Test.ScenarioTests.ContainerTests/TestAzureVMGetContainers.json index eb822631bc33..e31bcf64e41c 100644 --- a/src/RecoveryServices/RecoveryServices.Backup.Test/SessionRecords/Microsoft.Azure.Commands.RecoveryServices.Backup.Test.ScenarioTests.ContainerTests/TestAzureVMGetContainers.json +++ b/src/RecoveryServices/RecoveryServices.Backup.Test/SessionRecords/Microsoft.Azure.Commands.RecoveryServices.Backup.Test.ScenarioTests.ContainerTests/TestAzureVMGetContainers.json @@ -1,19 +1,19 @@ { "Entries": [ { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourcegroups/PSTestRG06578997?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlZ3JvdXBzL1BTVGVzdFJHMDY1Nzg5OTc/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourcegroups/PSTestRG03263c8b?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlZ3JvdXBzL1BTVGVzdFJHMDMyNjNjOGI/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3c64cad7-52a3-4b07-bd68-2f9e713d3198" + "10b86a1b-7cae-4227-87cd-3bf3d9ea0ef4" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" @@ -33,13 +33,13 @@ "11999" ], "x-ms-request-id": [ - "9155ecec-447c-43d3-b11e-6005b54b3e06" + "8e8bb219-40c2-41e1-88bf-00b5d1d6df08" ], "x-ms-correlation-request-id": [ - "9155ecec-447c-43d3-b11e-6005b54b3e06" + "8e8bb219-40c2-41e1-88bf-00b5d1d6df08" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T091626Z:9155ecec-447c-43d3-b11e-6005b54b3e06" + "WESTINDIA:20220516T154412Z:8e8bb219-40c2-41e1-88bf-00b5d1d6df08" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -48,7 +48,7 @@ "nosniff" ], "Date": [ - "Sat, 26 Mar 2022 09:16:26 GMT" + "Mon, 16 May 2022 15:44:12 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -60,23 +60,23 @@ "108" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'PSTestRG06578997' could not be found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'PSTestRG03263c8b' could not be found.\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourcegroups/PSTestRG06578997?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlZ3JvdXBzL1BTVGVzdFJHMDY1Nzg5OTc/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourcegroups/PSTestRG03263c8b?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlZ3JvdXBzL1BTVGVzdFJHMDMyNjNjOGI/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "865890c6-e3b5-485c-880c-91475f0c87c9" + "a606f27d-c298-4ee7-97c6-777ab2b1ff0f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" @@ -93,13 +93,13 @@ "11999" ], "x-ms-request-id": [ - "94ab06dd-7473-4755-8d2f-6b0214f56108" + "44675aa5-1739-4a53-80a6-46aeca326f40" ], "x-ms-correlation-request-id": [ - "94ab06dd-7473-4755-8d2f-6b0214f56108" + "44675aa5-1739-4a53-80a6-46aeca326f40" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T092305Z:94ab06dd-7473-4755-8d2f-6b0214f56108" + "WESTINDIA:20220516T154942Z:44675aa5-1739-4a53-80a6-46aeca326f40" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -108,7 +108,7 @@ "nosniff" ], "Date": [ - "Sat, 26 Mar 2022 09:23:05 GMT" + "Mon, 16 May 2022 15:49:41 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -120,23 +120,23 @@ "192" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG06578997\",\r\n \"name\": \"PSTestRG06578997\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG03263c8b\",\r\n \"name\": \"PSTestRG03263c8b\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourcegroups/PSTestRG06578997?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlZ3JvdXBzL1BTVGVzdFJHMDY1Nzg5OTc/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourcegroups/PSTestRG03263c8b?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlZ3JvdXBzL1BTVGVzdFJHMDMyNjNjOGI/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"southeastasia\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "323cecf9-91aa-473a-88be-ffc043ac6387" + "b2ce0562-56a5-44c6-8e0a-5e93aa45a566" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" @@ -159,13 +159,13 @@ "1199" ], "x-ms-request-id": [ - "b27af7f9-9166-468c-8caa-b5f29343df07" + "4909ac10-bfe1-4b6a-9ab0-1aeb85913882" ], "x-ms-correlation-request-id": [ - "b27af7f9-9166-468c-8caa-b5f29343df07" + "4909ac10-bfe1-4b6a-9ab0-1aeb85913882" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T091628Z:b27af7f9-9166-468c-8caa-b5f29343df07" + "WESTINDIA:20220516T154414Z:4909ac10-bfe1-4b6a-9ab0-1aeb85913882" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -174,7 +174,7 @@ "nosniff" ], "Date": [ - "Sat, 26 Mar 2022 09:16:27 GMT" + "Mon, 16 May 2022 15:44:13 GMT" ], "Content-Length": [ "192" @@ -186,26 +186,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG06578997\",\r\n \"name\": \"PSTestRG06578997\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG03263c8b\",\r\n \"name\": \"PSTestRG03263c8b\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG06578997/providers/Microsoft.Compute/virtualMachines/PSTestVM065780?api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMDY1Nzg5OTcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy9QU1Rlc3RWTTA2NTc4MD9hcGktdmVyc2lvbj0yMDIxLTExLTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG03263c8b/providers/Microsoft.Compute/virtualMachines/PSTestVM032630?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMDMyNjNjOGIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy9QU1Rlc3RWTTAzMjYzMD9hcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "87c2fac1-8b53-41c8-8b4e-59a0f0119c65" + "a1886d32-7d3c-41b8-9714-a753f09dffca" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ] }, "ResponseHeaders": { @@ -219,13 +219,13 @@ "gateway" ], "x-ms-request-id": [ - "d58b6ca0-37b4-4f5c-83b7-b9d5f2359440" + "02c0e173-0022-47f7-a82b-a611f2b581fb" ], "x-ms-correlation-request-id": [ - "d58b6ca0-37b4-4f5c-83b7-b9d5f2359440" + "02c0e173-0022-47f7-a82b-a611f2b581fb" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T091629Z:d58b6ca0-37b4-4f5c-83b7-b9d5f2359440" + "WESTINDIA:20220516T154414Z:02c0e173-0022-47f7-a82b-a611f2b581fb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -234,7 +234,7 @@ "nosniff" ], "Date": [ - "Sat, 26 Mar 2022 09:16:29 GMT" + "Mon, 16 May 2022 15:44:13 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -246,23 +246,23 @@ "236" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Compute/virtualMachines/PSTestVM065780' under resource group 'PSTestRG06578997' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Compute/virtualMachines/PSTestVM032630' under resource group 'PSTestRG03263c8b' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG06578997/providers/Microsoft.Compute/virtualMachines/PSTestVM065780?api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMDY1Nzg5OTcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy9QU1Rlc3RWTTA2NTc4MD9hcGktdmVyc2lvbj0yMDIxLTExLTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG03263c8b/providers/Microsoft.Compute/virtualMachines/PSTestVM032630?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMDMyNjNjOGIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy9QU1Rlc3RWTTAzMjYzMD9hcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3810f924-13a6-4bab-93cf-2e790affe89a" + "f0e9455a-b561-4221-8716-faa647493d7e" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ] }, "ResponseHeaders": { @@ -273,35 +273,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/LowCostGet3Min;3996,Microsoft.Compute/LowCostGet30Min;31997" + "Microsoft.Compute/LowCostGet3Min;3998,Microsoft.Compute/LowCostGet30Min;31998" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c8b268b3-8cac-46ad-a042-5710c713edad" + "bfb80f1d-7c6c-4d8c-bc56-1b656d215d7f" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11995" ], "x-ms-correlation-request-id": [ - "bc968a76-1529-4cef-97b2-86323ebabaa2" + "d1b82572-3526-40af-92f4-c710fc109336" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T091936Z:bc968a76-1529-4cef-97b2-86323ebabaa2" + "WESTINDIA:20220516T154630Z:d1b82572-3526-40af-92f4-c710fc109336" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sat, 26 Mar 2022 09:19:36 GMT" + "Mon, 16 May 2022 15:46:30 GMT" ], "Content-Length": [ - "2147" + "2195" ], "Content-Type": [ "application/json; charset=utf-8" @@ -310,26 +310,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"PSTestVM065780\",\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG06578997/providers/Microsoft.Compute/virtualMachines/PSTestVM065780\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"Purpose\": \"PSTest\",\r\n \"MabUsed\": \"Yes\",\r\n \"AutoShutDown\": \"No\",\r\n \"DeleteBy\": \"06-2022\",\r\n \"Owner\": \"sarath\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"5b73ff05-b5a9-434f-8038-2ffe697c029f\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D1_v2\"\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.5006.220305\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"PSTestVM065780_OsDisk_1_6dd7232fe2f14b878fc4f47402d11f4c\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG06578997/providers/Microsoft.Compute/disks/PSTestVM065780_OsDisk_1_6dd7232fe2f14b878fc4f47402d11f4c\"\r\n },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"PSTestVM065780\",\r\n \"adminUsername\": \"demouser\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"AutomaticByOS\",\r\n \"assessmentMode\": \"ImageDefault\"\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/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG06578997/providers/Microsoft.Network/networkInterfaces/PSTestNIC065780\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"timeCreated\": \"2022-03-26T14:46:55.1544465+05:30\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"PSTestVM032630\",\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG03263c8b/providers/Microsoft.Compute/virtualMachines/PSTestVM032630\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"AutoShutDown\": \"No\",\r\n \"DeleteBy\": \"06-2022\",\r\n \"MabUsed\": \"Yes\",\r\n \"Owner\": \"sarath\",\r\n \"Purpose\": \"PSTest\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"78c85114-d598-4a52-85d4-3a4fdd74e356\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D1_v2\"\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.5125.220505\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"PSTestVM032630_OsDisk_1_4baa0bf5da4c4ab58e8304f306e0d4fb\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG03263c8b/providers/Microsoft.Compute/disks/PSTestVM032630_OsDisk_1_4baa0bf5da4c4ab58e8304f306e0d4fb\"\r\n },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"PSTestVM032630\",\r\n \"adminUsername\": \"demouser\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"AutomaticByOS\",\r\n \"assessmentMode\": \"ImageDefault\"\r\n },\r\n \"enableVMAgentPlatformUpdates\": false\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/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG03263c8b/providers/Microsoft.Network/networkInterfaces/PSTestNIC032630\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"timeCreated\": \"2022-05-16T21:14:38.9780958+05:30\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG06578997/providers/Microsoft.Compute/virtualMachines/PSTestVM065780?api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMDY1Nzg5OTcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy9QU1Rlc3RWTTA2NTc4MD9hcGktdmVyc2lvbj0yMDIxLTExLTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG03263c8b/providers/Microsoft.Compute/virtualMachines/PSTestVM032630?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMDMyNjNjOGIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy9QU1Rlc3RWTTAzMjYzMD9hcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a5344135-9150-46e9-ba8c-2ea3838712fc" + "4a08bf04-a9bb-400b-ae19-7e7de0943fed" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ] }, "ResponseHeaders": { @@ -340,35 +340,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/LowCostGet3Min;3994,Microsoft.Compute/LowCostGet30Min;31993" + "Microsoft.Compute/LowCostGet3Min;3994,Microsoft.Compute/LowCostGet30Min;31994" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d38e97b9-e986-4bd5-9ed7-a4b6088ea49e" + "f1284031-09d4-475a-b44a-1b38b6c23428" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11983" + "11986" ], "x-ms-correlation-request-id": [ - "50f42015-ad3f-41d9-92e8-57ec9e5e11c0" + "fd52c5d2-76d6-4d3d-8f7a-165691586266" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T092141Z:50f42015-ad3f-41d9-92e8-57ec9e5e11c0" + "WESTINDIA:20220516T154835Z:fd52c5d2-76d6-4d3d-8f7a-165691586266" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sat, 26 Mar 2022 09:21:40 GMT" + "Mon, 16 May 2022 15:48:34 GMT" ], "Content-Length": [ - "2710" + "2758" ], "Content-Type": [ "application/json; charset=utf-8" @@ -377,26 +377,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"PSTestVM065780\",\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG06578997/providers/Microsoft.Compute/virtualMachines/PSTestVM065780\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"Purpose\": \"PSTest\",\r\n \"MabUsed\": \"Yes\",\r\n \"AutoShutDown\": \"No\",\r\n \"DeleteBy\": \"06-2022\",\r\n \"Owner\": \"sarath\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"5b73ff05-b5a9-434f-8038-2ffe697c029f\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D1_v2\"\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.5006.220305\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"PSTestVM065780_OsDisk_1_6dd7232fe2f14b878fc4f47402d11f4c\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG06578997/providers/Microsoft.Compute/disks/PSTestVM065780_OsDisk_1_6dd7232fe2f14b878fc4f47402d11f4c\"\r\n },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"PSTestVM065780\",\r\n \"adminUsername\": \"demouser\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"AutomaticByOS\",\r\n \"assessmentMode\": \"ImageDefault\"\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/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG06578997/providers/Microsoft.Network/networkInterfaces/PSTestNIC065780\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"timeCreated\": \"2022-03-26T14:46:55.1544465+05:30\"\r\n },\r\n \"resources\": [\r\n {\r\n \"name\": \"BGInfo\",\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG06578997/providers/Microsoft.Compute/virtualMachines/PSTestVM065780/extensions/BGInfo\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"southeastasia\",\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}", + "ResponseBody": "{\r\n \"name\": \"PSTestVM032630\",\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG03263c8b/providers/Microsoft.Compute/virtualMachines/PSTestVM032630\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"AutoShutDown\": \"No\",\r\n \"DeleteBy\": \"06-2022\",\r\n \"MabUsed\": \"Yes\",\r\n \"Owner\": \"sarath\",\r\n \"Purpose\": \"PSTest\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"78c85114-d598-4a52-85d4-3a4fdd74e356\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D1_v2\"\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.5125.220505\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"PSTestVM032630_OsDisk_1_4baa0bf5da4c4ab58e8304f306e0d4fb\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG03263c8b/providers/Microsoft.Compute/disks/PSTestVM032630_OsDisk_1_4baa0bf5da4c4ab58e8304f306e0d4fb\"\r\n },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"PSTestVM032630\",\r\n \"adminUsername\": \"demouser\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"AutomaticByOS\",\r\n \"assessmentMode\": \"ImageDefault\"\r\n },\r\n \"enableVMAgentPlatformUpdates\": false\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/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG03263c8b/providers/Microsoft.Network/networkInterfaces/PSTestNIC032630\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"timeCreated\": \"2022-05-16T21:14:38.9780958+05:30\"\r\n },\r\n \"resources\": [\r\n {\r\n \"name\": \"BGInfo\",\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG03263c8b/providers/Microsoft.Compute/virtualMachines/PSTestVM032630/extensions/BGInfo\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"BGInfo\",\r\n \"typeHandlerVersion\": \"2.2\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG06578997/providers/Microsoft.Network/virtualNetworks/PSTestVNET065780?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMDY1Nzg5OTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy9QU1Rlc3RWTkVUMDY1NzgwP2FwaS12ZXJzaW9uPTIwMjEtMDUtMDE=", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG03263c8b/providers/Microsoft.Network/virtualNetworks/PSTestVNET032630?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMDMyNjNjOGIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy9QU1Rlc3RWTkVUMDMyNjMwP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a4be44e3-0df2-41e7-9790-879f81f2cb11" + "e7ae9796-5a02-4566-8822-0de0ac7b81b1" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ] }, "ResponseHeaders": { @@ -410,13 +410,13 @@ "gateway" ], "x-ms-request-id": [ - "c2cd81db-827e-4b88-acdf-8847f2c1333b" + "4d60fc52-97a7-4a75-aac4-42de44c203b0" ], "x-ms-correlation-request-id": [ - "c2cd81db-827e-4b88-acdf-8847f2c1333b" + "4d60fc52-97a7-4a75-aac4-42de44c203b0" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T091630Z:c2cd81db-827e-4b88-acdf-8847f2c1333b" + "WESTINDIA:20220516T154415Z:4d60fc52-97a7-4a75-aac4-42de44c203b0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -425,7 +425,7 @@ "nosniff" ], "Date": [ - "Sat, 26 Mar 2022 09:16:29 GMT" + "Mon, 16 May 2022 15:44:15 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -437,23 +437,23 @@ "238" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/virtualNetworks/PSTestVNET065780' under resource group 'PSTestRG06578997' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/virtualNetworks/PSTestVNET032630' under resource group 'PSTestRG03263c8b' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG06578997/providers/Microsoft.Network/virtualNetworks/PSTestVNET065780?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMDY1Nzg5OTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy9QU1Rlc3RWTkVUMDY1NzgwP2FwaS12ZXJzaW9uPTIwMjEtMDUtMDE=", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG03263c8b/providers/Microsoft.Network/virtualNetworks/PSTestVNET032630?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMDMyNjNjOGIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy9QU1Rlc3RWTkVUMDMyNjMwP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a4be44e3-0df2-41e7-9790-879f81f2cb11" + "e7ae9796-5a02-4566-8822-0de0ac7b81b1" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ] }, "ResponseHeaders": { @@ -464,16 +464,16 @@ "no-cache" ], "ETag": [ - "W/\"953ae824-acac-4864-807d-e496a703bfaf\"" + "W/\"005de5c8-16e8-4063-8999-4a71b9362008\"" ], "x-ms-request-id": [ - "5e6d50d0-b8ff-4225-8d36-666876ee2db9" + "a3602268-d63a-4637-8ee0-74f724705367" ], "x-ms-correlation-request-id": [ - "7f5aff07-035a-46b2-8586-a95cdbf11eee" + "190ab7d3-355b-4319-bb0d-16621aedc018" ], "x-ms-arm-service-request-id": [ - "a517e093-710f-4510-8d50-d9cc8224c0c0" + "b454946c-f9df-4572-b566-861019d6f198" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -483,16 +483,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11996" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T091638Z:7f5aff07-035a-46b2-8586-a95cdbf11eee" + "WESTINDIA:20220516T154422Z:190ab7d3-355b-4319-bb0d-16621aedc018" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sat, 26 Mar 2022 09:16:37 GMT" + "Mon, 16 May 2022 15:44:22 GMT" ], "Content-Length": [ "1315" @@ -504,26 +504,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"PSTestVNET065780\",\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG06578997/providers/Microsoft.Network/virtualNetworks/PSTestVNET065780\",\r\n \"etag\": \"W/\\\"953ae824-acac-4864-807d-e496a703bfaf\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"0ff3e669-8a11-4e6a-8b0d-a946bf56bfbe\",\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\": \"PSTestSNC065780\",\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG06578997/providers/Microsoft.Network/virtualNetworks/PSTestVNET065780/subnets/PSTestSNC065780\",\r\n \"etag\": \"W/\\\"953ae824-acac-4864-807d-e496a703bfaf\\\"\",\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 },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"PSTestVNET032630\",\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG03263c8b/providers/Microsoft.Network/virtualNetworks/PSTestVNET032630\",\r\n \"etag\": \"W/\\\"005de5c8-16e8-4063-8999-4a71b9362008\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"cfaf90ba-110a-4fe7-9770-317f1e84c11d\",\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\": \"PSTestSNC032630\",\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG03263c8b/providers/Microsoft.Network/virtualNetworks/PSTestVNET032630/subnets/PSTestSNC032630\",\r\n \"etag\": \"W/\\\"005de5c8-16e8-4063-8999-4a71b9362008\\\"\",\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 },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG06578997/providers/Microsoft.Network/virtualNetworks/PSTestVNET065780?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMDY1Nzg5OTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy9QU1Rlc3RWTkVUMDY1NzgwP2FwaS12ZXJzaW9uPTIwMjEtMDUtMDE=", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG03263c8b/providers/Microsoft.Network/virtualNetworks/PSTestVNET032630?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMDMyNjNjOGIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy9QU1Rlc3RWTkVUMDMyNjMwP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a4be44e3-0df2-41e7-9790-879f81f2cb11" + "e7ae9796-5a02-4566-8822-0de0ac7b81b1" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ] }, "ResponseHeaders": { @@ -534,16 +534,16 @@ "no-cache" ], "ETag": [ - "W/\"953ae824-acac-4864-807d-e496a703bfaf\"" + "W/\"005de5c8-16e8-4063-8999-4a71b9362008\"" ], "x-ms-request-id": [ - "22e5e542-3a1b-4d89-8e9f-12983bc6000a" + "7608ce08-5146-496d-b82c-51be3ba7a707" ], "x-ms-correlation-request-id": [ - "4c16c696-1584-47cd-b909-50dcc1adc283" + "834853e1-34ca-4830-97a1-c9cab07decfa" ], "x-ms-arm-service-request-id": [ - "4de89a1f-7016-4dde-8c85-4b133da4d027" + "4f178716-b215-448a-ad78-23abb33ce550" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -553,16 +553,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11995" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T091638Z:4c16c696-1584-47cd-b909-50dcc1adc283" + "WESTINDIA:20220516T154422Z:834853e1-34ca-4830-97a1-c9cab07decfa" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sat, 26 Mar 2022 09:16:37 GMT" + "Mon, 16 May 2022 15:44:22 GMT" ], "Content-Length": [ "1315" @@ -574,26 +574,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"PSTestVNET065780\",\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG06578997/providers/Microsoft.Network/virtualNetworks/PSTestVNET065780\",\r\n \"etag\": \"W/\\\"953ae824-acac-4864-807d-e496a703bfaf\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"0ff3e669-8a11-4e6a-8b0d-a946bf56bfbe\",\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\": \"PSTestSNC065780\",\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG06578997/providers/Microsoft.Network/virtualNetworks/PSTestVNET065780/subnets/PSTestSNC065780\",\r\n \"etag\": \"W/\\\"953ae824-acac-4864-807d-e496a703bfaf\\\"\",\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 },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"PSTestVNET032630\",\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG03263c8b/providers/Microsoft.Network/virtualNetworks/PSTestVNET032630\",\r\n \"etag\": \"W/\\\"005de5c8-16e8-4063-8999-4a71b9362008\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"cfaf90ba-110a-4fe7-9770-317f1e84c11d\",\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\": \"PSTestSNC032630\",\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG03263c8b/providers/Microsoft.Network/virtualNetworks/PSTestVNET032630/subnets/PSTestSNC032630\",\r\n \"etag\": \"W/\\\"005de5c8-16e8-4063-8999-4a71b9362008\\\"\",\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 },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG06578997/providers/Microsoft.Network/virtualNetworks/PSTestVNET065780?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMDY1Nzg5OTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy9QU1Rlc3RWTkVUMDY1NzgwP2FwaS12ZXJzaW9uPTIwMjEtMDUtMDE=", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG03263c8b/providers/Microsoft.Network/virtualNetworks/PSTestVNET032630?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMDMyNjNjOGIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy9QU1Rlc3RWTkVUMDMyNjMwP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=", "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 \"applicationGatewayIpConfigurations\": []\r\n },\r\n \"name\": \"PSTestSNC065780\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"ipAllocations\": []\r\n },\r\n \"location\": \"southeastasia\"\r\n}", + "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 \"applicationGatewayIpConfigurations\": []\r\n },\r\n \"name\": \"PSTestSNC032630\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"ipAllocations\": []\r\n },\r\n \"location\": \"southeastasia\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "a4be44e3-0df2-41e7-9790-879f81f2cb11" + "e7ae9796-5a02-4566-8822-0de0ac7b81b1" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -613,19 +613,19 @@ "3" ], "x-ms-request-id": [ - "85f4b092-990d-4bdd-8f2a-607c45246bb8" + "9602f940-8724-4906-8554-13b67a52bb6a" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/providers/Microsoft.Network/locations/southeastasia/operations/85f4b092-990d-4bdd-8f2a-607c45246bb8?api-version=2021-05-01" + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/providers/Microsoft.Network/locations/southeastasia/operations/9602f940-8724-4906-8554-13b67a52bb6a?api-version=2021-08-01" ], "x-ms-correlation-request-id": [ - "50d0bcdd-9a94-4f55-873f-2ac1dab3b139" + "71481069-14be-48a3-a887-e1d74d9db8f3" ], "Azure-AsyncNotification": [ "Enabled" ], "x-ms-arm-service-request-id": [ - "31b8c363-efd4-4f97-b1d5-b98702e90ada" + "736320ee-6f2d-4605-80d5-7269e72b90ae" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -638,13 +638,13 @@ "1199" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T091634Z:50d0bcdd-9a94-4f55-873f-2ac1dab3b139" + "WESTINDIA:20220516T154419Z:71481069-14be-48a3-a887-e1d74d9db8f3" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sat, 26 Mar 2022 09:16:34 GMT" + "Mon, 16 May 2022 15:44:18 GMT" ], "Content-Length": [ "1313" @@ -656,23 +656,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"PSTestVNET065780\",\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG06578997/providers/Microsoft.Network/virtualNetworks/PSTestVNET065780\",\r\n \"etag\": \"W/\\\"30a51beb-1271-4301-84e2-b21459d7a646\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"0ff3e669-8a11-4e6a-8b0d-a946bf56bfbe\",\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\": \"PSTestSNC065780\",\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG06578997/providers/Microsoft.Network/virtualNetworks/PSTestVNET065780/subnets/PSTestSNC065780\",\r\n \"etag\": \"W/\\\"30a51beb-1271-4301-84e2-b21459d7a646\\\"\",\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 },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"PSTestVNET032630\",\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG03263c8b/providers/Microsoft.Network/virtualNetworks/PSTestVNET032630\",\r\n \"etag\": \"W/\\\"0a901180-91c0-4af1-9965-ef96b0bc5811\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"cfaf90ba-110a-4fe7-9770-317f1e84c11d\",\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\": \"PSTestSNC032630\",\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG03263c8b/providers/Microsoft.Network/virtualNetworks/PSTestVNET032630/subnets/PSTestSNC032630\",\r\n \"etag\": \"W/\\\"0a901180-91c0-4af1-9965-ef96b0bc5811\\\"\",\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 },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/providers/Microsoft.Network/locations/southeastasia/operations/85f4b092-990d-4bdd-8f2a-607c45246bb8?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzg1ZjRiMDkyLTk5MGQtNGJkZC04ZjJhLTYwN2M0NTI0NmJiOD9hcGktdmVyc2lvbj0yMDIxLTA1LTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/providers/Microsoft.Network/locations/southeastasia/operations/9602f940-8724-4906-8554-13b67a52bb6a?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzk2MDJmOTQwLTg3MjQtNDkwNi04NTU0LTEzYjY3YTUyYmI2YT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a4be44e3-0df2-41e7-9790-879f81f2cb11" + "e7ae9796-5a02-4566-8822-0de0ac7b81b1" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ] }, "ResponseHeaders": { @@ -683,13 +683,13 @@ "no-cache" ], "x-ms-request-id": [ - "4c696762-8dea-4857-99d5-c742b0893ece" + "c9661b76-4e02-46aa-8471-58a7eccfb9b9" ], "x-ms-correlation-request-id": [ - "0e3d88f0-9e2b-4cd4-b607-7963dbe43d26" + "4a16f2c4-6393-412f-be32-cee1fda4d780" ], "x-ms-arm-service-request-id": [ - "04ebff70-8fdf-497e-815e-0b0029c15cf5" + "51b7fcb1-4f7c-4d67-8eeb-b40439503a8e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -699,16 +699,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11997" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T091638Z:0e3d88f0-9e2b-4cd4-b607-7963dbe43d26" + "WESTINDIA:20220516T154422Z:4a16f2c4-6393-412f-be32-cee1fda4d780" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sat, 26 Mar 2022 09:16:37 GMT" + "Mon, 16 May 2022 15:44:22 GMT" ], "Content-Length": [ "29" @@ -724,22 +724,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG06578997/providers/Microsoft.Network/publicIPAddresses/pstestpublicdns065780?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMDY1Nzg5OTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BzdGVzdHB1YmxpY2RuczA2NTc4MD9hcGktdmVyc2lvbj0yMDIxLTA1LTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG03263c8b/providers/Microsoft.Network/publicIPAddresses/pstestpublicdns032630?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMDMyNjNjOGIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BzdGVzdHB1YmxpY2RuczAzMjYzMD9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f47f7d13-f6c1-4899-88a4-864565737212" + "ff3f6257-5d51-4d3c-a5a4-e01dff639ffa" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ] }, "ResponseHeaders": { @@ -753,13 +753,13 @@ "gateway" ], "x-ms-request-id": [ - "a0fe5c53-a026-4127-8488-41b3805c1ce2" + "ba0ea20a-3887-4758-b073-d5842671261e" ], "x-ms-correlation-request-id": [ - "a0fe5c53-a026-4127-8488-41b3805c1ce2" + "ba0ea20a-3887-4758-b073-d5842671261e" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T091638Z:a0fe5c53-a026-4127-8488-41b3805c1ce2" + "WESTINDIA:20220516T154422Z:ba0ea20a-3887-4758-b073-d5842671261e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -768,7 +768,7 @@ "nosniff" ], "Date": [ - "Sat, 26 Mar 2022 09:16:37 GMT" + "Mon, 16 May 2022 15:44:22 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -780,23 +780,23 @@ "245" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/publicIPAddresses/pstestpublicdns065780' under resource group 'PSTestRG06578997' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/publicIPAddresses/pstestpublicdns032630' under resource group 'PSTestRG03263c8b' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG06578997/providers/Microsoft.Network/publicIPAddresses/pstestpublicdns065780?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMDY1Nzg5OTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BzdGVzdHB1YmxpY2RuczA2NTc4MD9hcGktdmVyc2lvbj0yMDIxLTA1LTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG03263c8b/providers/Microsoft.Network/publicIPAddresses/pstestpublicdns032630?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMDMyNjNjOGIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BzdGVzdHB1YmxpY2RuczAzMjYzMD9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f47f7d13-f6c1-4899-88a4-864565737212" + "ff3f6257-5d51-4d3c-a5a4-e01dff639ffa" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ] }, "ResponseHeaders": { @@ -807,16 +807,16 @@ "no-cache" ], "ETag": [ - "W/\"f704b94d-1224-4302-a387-677d6e548cf8\"" + "W/\"0243c736-1e3c-4f24-9ddf-550be5da993f\"" ], "x-ms-request-id": [ - "3eccda23-c933-446e-90cc-49b1ffd1508c" + "ce42aad4-d324-4644-b763-8e14673a04e4" ], "x-ms-correlation-request-id": [ - "a6662546-24cd-4557-bbe9-f84f0a50b2fa" + "ef6234ff-dc08-4bc7-9ad9-39dd7e0e8d87" ], "x-ms-arm-service-request-id": [ - "7f178a7e-486d-49db-afbf-546d879e1275" + "5ff63f0a-e2a5-4049-842b-8a1a0cd5468b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -826,19 +826,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11992" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T091642Z:a6662546-24cd-4557-bbe9-f84f0a50b2fa" + "WESTINDIA:20220516T154426Z:ef6234ff-dc08-4bc7-9ad9-39dd7e0e8d87" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sat, 26 Mar 2022 09:16:42 GMT" + "Mon, 16 May 2022 15:44:25 GMT" ], "Content-Length": [ - "696" + "697" ], "Content-Type": [ "application/json; charset=utf-8" @@ -847,26 +847,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"pstestpublicdns065780\",\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG06578997/providers/Microsoft.Network/publicIPAddresses/pstestpublicdns065780\",\r\n \"etag\": \"W/\\\"f704b94d-1224-4302-a387-677d6e548cf8\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"f653c895-18bb-4ed3-82e5-bf4bb0dc27f1\",\r\n \"ipAddress\": \"20.212.0.75\",\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 \"tier\": \"Regional\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"pstestpublicdns032630\",\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG03263c8b/providers/Microsoft.Network/publicIPAddresses/pstestpublicdns032630\",\r\n \"etag\": \"W/\\\"0243c736-1e3c-4f24-9ddf-550be5da993f\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"0495887b-5dce-4edb-9104-b96e77e23d0c\",\r\n \"ipAddress\": \"20.212.22.63\",\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 \"tier\": \"Regional\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG06578997/providers/Microsoft.Network/publicIPAddresses/pstestpublicdns065780?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMDY1Nzg5OTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BzdGVzdHB1YmxpY2RuczA2NTc4MD9hcGktdmVyc2lvbj0yMDIxLTA1LTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG03263c8b/providers/Microsoft.Network/publicIPAddresses/pstestpublicdns032630?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMDMyNjNjOGIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BzdGVzdHB1YmxpY2RuczAzMjYzMD9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f47f7d13-f6c1-4899-88a4-864565737212" + "ff3f6257-5d51-4d3c-a5a4-e01dff639ffa" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ] }, "ResponseHeaders": { @@ -877,16 +877,16 @@ "no-cache" ], "ETag": [ - "W/\"f704b94d-1224-4302-a387-677d6e548cf8\"" + "W/\"0243c736-1e3c-4f24-9ddf-550be5da993f\"" ], "x-ms-request-id": [ - "bf290f73-d00d-4388-8bc1-61847ae270ca" + "4b494807-2c3a-46b4-adb9-e4d1f3e03869" ], "x-ms-correlation-request-id": [ - "4e7c256c-3538-4c93-9625-a7cf40588b35" + "46715eb7-4ec6-4239-aec8-8c7b12f4910d" ], "x-ms-arm-service-request-id": [ - "48424535-b0d2-48e8-a002-7f501b88fc97" + "dbd75202-97ce-40ff-b392-0b86c6d09de2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -896,19 +896,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11991" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T091642Z:4e7c256c-3538-4c93-9625-a7cf40588b35" + "WESTINDIA:20220516T154426Z:46715eb7-4ec6-4239-aec8-8c7b12f4910d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sat, 26 Mar 2022 09:16:42 GMT" + "Mon, 16 May 2022 15:44:26 GMT" ], "Content-Length": [ - "696" + "697" ], "Content-Type": [ "application/json; charset=utf-8" @@ -917,26 +917,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"pstestpublicdns065780\",\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG06578997/providers/Microsoft.Network/publicIPAddresses/pstestpublicdns065780\",\r\n \"etag\": \"W/\\\"f704b94d-1224-4302-a387-677d6e548cf8\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"f653c895-18bb-4ed3-82e5-bf4bb0dc27f1\",\r\n \"ipAddress\": \"20.212.0.75\",\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 \"tier\": \"Regional\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"pstestpublicdns032630\",\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG03263c8b/providers/Microsoft.Network/publicIPAddresses/pstestpublicdns032630\",\r\n \"etag\": \"W/\\\"0243c736-1e3c-4f24-9ddf-550be5da993f\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"0495887b-5dce-4edb-9104-b96e77e23d0c\",\r\n \"ipAddress\": \"20.212.22.63\",\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 \"tier\": \"Regional\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG06578997/providers/Microsoft.Network/publicIPAddresses/pstestpublicdns065780?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMDY1Nzg5OTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BzdGVzdHB1YmxpY2RuczA2NTc4MD9hcGktdmVyc2lvbj0yMDIxLTA1LTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG03263c8b/providers/Microsoft.Network/publicIPAddresses/pstestpublicdns032630?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMDMyNjNjOGIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BzdGVzdHB1YmxpY2RuczAzMjYzMD9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "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\": \"southeastasia\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "f47f7d13-f6c1-4899-88a4-864565737212" + "ff3f6257-5d51-4d3c-a5a4-e01dff639ffa" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -956,19 +956,19 @@ "1" ], "x-ms-request-id": [ - "d01fbf07-d122-48b1-bf61-331758b2848e" + "0fb8ad76-4083-40d5-9568-b353c580f2bf" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/providers/Microsoft.Network/locations/southeastasia/operations/d01fbf07-d122-48b1-bf61-331758b2848e?api-version=2021-05-01" + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/providers/Microsoft.Network/locations/southeastasia/operations/0fb8ad76-4083-40d5-9568-b353c580f2bf?api-version=2021-08-01" ], "x-ms-correlation-request-id": [ - "6bc09729-9e19-4de3-86c8-15377f562fc6" + "9b781053-8a73-423c-b489-3759912f738e" ], "Azure-AsyncNotification": [ "Enabled" ], "x-ms-arm-service-request-id": [ - "6ebe5175-7786-438d-91ad-b67d39e56a55" + "f7e268be-4386-436d-af61-8151f711eea0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -981,13 +981,13 @@ "1198" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T091641Z:6bc09729-9e19-4de3-86c8-15377f562fc6" + "WESTINDIA:20220516T154424Z:9b781053-8a73-423c-b489-3759912f738e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sat, 26 Mar 2022 09:16:40 GMT" + "Mon, 16 May 2022 15:44:24 GMT" ], "Content-Length": [ "662" @@ -999,23 +999,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"pstestpublicdns065780\",\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG06578997/providers/Microsoft.Network/publicIPAddresses/pstestpublicdns065780\",\r\n \"etag\": \"W/\\\"a8f08493-1699-41e8-8597-22fbb4ef8f3c\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"f653c895-18bb-4ed3-82e5-bf4bb0dc27f1\",\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 \"tier\": \"Regional\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"pstestpublicdns032630\",\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG03263c8b/providers/Microsoft.Network/publicIPAddresses/pstestpublicdns032630\",\r\n \"etag\": \"W/\\\"f2730964-22a3-4b28-94e9-04d555a805d5\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"0495887b-5dce-4edb-9104-b96e77e23d0c\",\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 \"tier\": \"Regional\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/providers/Microsoft.Network/locations/southeastasia/operations/d01fbf07-d122-48b1-bf61-331758b2848e?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2QwMWZiZjA3LWQxMjItNDhiMS1iZjYxLTMzMTc1OGIyODQ4ZT9hcGktdmVyc2lvbj0yMDIxLTA1LTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/providers/Microsoft.Network/locations/southeastasia/operations/0fb8ad76-4083-40d5-9568-b353c580f2bf?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmYjhhZDc2LTQwODMtNDBkNS05NTY4LWIzNTNjNTgwZjJiZj9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f47f7d13-f6c1-4899-88a4-864565737212" + "ff3f6257-5d51-4d3c-a5a4-e01dff639ffa" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ] }, "ResponseHeaders": { @@ -1026,32 +1026,32 @@ "no-cache" ], "x-ms-request-id": [ - "9ae53fc5-ec3e-4573-925b-7e8da487fe01" + "8f173795-cc86-4a82-b7a7-7197f002add7" ], "x-ms-correlation-request-id": [ - "3ed06140-463c-4bd3-a75d-bcc8a3c197a8" + "4ad5ed22-7e38-438d-9fba-392cadb14224" ], "x-ms-arm-service-request-id": [ - "05bf267a-6a13-4a17-9d39-406074034a4e" + "a65f5799-243c-419b-b277-0dbc84bd9b10" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" - ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T091642Z:3ed06140-463c-4bd3-a75d-bcc8a3c197a8" + "WESTINDIA:20220516T154425Z:4ad5ed22-7e38-438d-9fba-392cadb14224" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sat, 26 Mar 2022 09:16:42 GMT" + "Mon, 16 May 2022 15:44:25 GMT" ], "Content-Length": [ "29" @@ -1067,22 +1067,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG06578997/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG065780?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMDY1Nzg5OTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtTZWN1cml0eUdyb3Vwcy9QU1Rlc3ROU0cwNjU3ODA/YXBpLXZlcnNpb249MjAyMS0wNS0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG03263c8b/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG032630?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMDMyNjNjOGIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtTZWN1cml0eUdyb3Vwcy9QU1Rlc3ROU0cwMzI2MzA/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4e6e1869-70f6-4a74-9eed-d4a87b9b0753" + "0d7ea935-135b-4e6c-97cd-ca4eb2eb6b6a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ] }, "ResponseHeaders": { @@ -1096,13 +1096,13 @@ "gateway" ], "x-ms-request-id": [ - "35905045-2eb9-48f2-98e3-0de86b362905" + "ff4aafd7-1d37-4786-a05b-a06a59e3a3a3" ], "x-ms-correlation-request-id": [ - "35905045-2eb9-48f2-98e3-0de86b362905" + "ff4aafd7-1d37-4786-a05b-a06a59e3a3a3" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T091642Z:35905045-2eb9-48f2-98e3-0de86b362905" + "WESTINDIA:20220516T154426Z:ff4aafd7-1d37-4786-a05b-a06a59e3a3a3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1111,7 +1111,7 @@ "nosniff" ], "Date": [ - "Sat, 26 Mar 2022 09:16:42 GMT" + "Mon, 16 May 2022 15:44:26 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1123,23 +1123,23 @@ "243" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/networkSecurityGroups/PSTestNSG065780' under resource group 'PSTestRG06578997' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/networkSecurityGroups/PSTestNSG032630' under resource group 'PSTestRG03263c8b' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG06578997/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG065780?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMDY1Nzg5OTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtTZWN1cml0eUdyb3Vwcy9QU1Rlc3ROU0cwNjU3ODA/YXBpLXZlcnNpb249MjAyMS0wNS0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG03263c8b/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG032630?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMDMyNjNjOGIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtTZWN1cml0eUdyb3Vwcy9QU1Rlc3ROU0cwMzI2MzA/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4e6e1869-70f6-4a74-9eed-d4a87b9b0753" + "0d7ea935-135b-4e6c-97cd-ca4eb2eb6b6a" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ] }, "ResponseHeaders": { @@ -1150,16 +1150,16 @@ "no-cache" ], "ETag": [ - "W/\"02bbd1e4-4f8c-46b0-8bad-4c53ccf2ff9a\"" + "W/\"a145faa8-5c47-44f4-849c-aa2b313e8c26\"" ], "x-ms-request-id": [ - "05a7cee1-53ae-4a16-891a-5e9ced9bca49" + "3a74f9b8-bb83-4946-9f95-f93bb576ebb7" ], "x-ms-correlation-request-id": [ - "6856aa89-0d1c-44a3-bbc3-04c59dcf96d9" + "38017101-6525-4787-9c46-df26fdfda208" ], "x-ms-arm-service-request-id": [ - "2d1c9f92-c3e5-4219-a54b-619a24f3deeb" + "741f4ba6-d82a-41af-8bfc-70555561eb75" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1169,16 +1169,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11988" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T091647Z:6856aa89-0d1c-44a3-bbc3-04c59dcf96d9" + "WESTINDIA:20220516T154431Z:38017101-6525-4787-9c46-df26fdfda208" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sat, 26 Mar 2022 09:16:47 GMT" + "Mon, 16 May 2022 15:44:31 GMT" ], "Content-Length": [ "8475" @@ -1190,26 +1190,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"PSTestNSG065780\",\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG06578997/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG065780\",\r\n \"etag\": \"W/\\\"02bbd1e4-4f8c-46b0-8bad-4c53ccf2ff9a\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"0993f8cb-4618-4766-be9b-ff34dd8d477a\",\r\n \"securityRules\": [\r\n {\r\n \"name\": \"PSTestNSGRuleRDP065780\",\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG06578997/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG065780/securityRules/PSTestNSGRuleRDP065780\",\r\n \"etag\": \"W/\\\"02bbd1e4-4f8c-46b0-8bad-4c53ccf2ff9a\\\"\",\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\": \"PSTestNSGRuleWeb065780\",\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG06578997/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG065780/securityRules/PSTestNSGRuleWeb065780\",\r\n \"etag\": \"W/\\\"02bbd1e4-4f8c-46b0-8bad-4c53ccf2ff9a\\\"\",\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/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG06578997/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG065780/defaultSecurityRules/AllowVnetInBound\",\r\n \"etag\": \"W/\\\"02bbd1e4-4f8c-46b0-8bad-4c53ccf2ff9a\\\"\",\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/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG06578997/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG065780/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\r\n \"etag\": \"W/\\\"02bbd1e4-4f8c-46b0-8bad-4c53ccf2ff9a\\\"\",\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/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG06578997/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG065780/defaultSecurityRules/DenyAllInBound\",\r\n \"etag\": \"W/\\\"02bbd1e4-4f8c-46b0-8bad-4c53ccf2ff9a\\\"\",\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/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG06578997/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG065780/defaultSecurityRules/AllowVnetOutBound\",\r\n \"etag\": \"W/\\\"02bbd1e4-4f8c-46b0-8bad-4c53ccf2ff9a\\\"\",\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/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG06578997/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG065780/defaultSecurityRules/AllowInternetOutBound\",\r\n \"etag\": \"W/\\\"02bbd1e4-4f8c-46b0-8bad-4c53ccf2ff9a\\\"\",\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/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG06578997/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG065780/defaultSecurityRules/DenyAllOutBound\",\r\n \"etag\": \"W/\\\"02bbd1e4-4f8c-46b0-8bad-4c53ccf2ff9a\\\"\",\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}", + "ResponseBody": "{\r\n \"name\": \"PSTestNSG032630\",\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG03263c8b/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG032630\",\r\n \"etag\": \"W/\\\"a145faa8-5c47-44f4-849c-aa2b313e8c26\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"b43e7334-ada9-4cdd-8fa5-af09e6b5d241\",\r\n \"securityRules\": [\r\n {\r\n \"name\": \"PSTestNSGRuleRDP032630\",\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG03263c8b/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG032630/securityRules/PSTestNSGRuleRDP032630\",\r\n \"etag\": \"W/\\\"a145faa8-5c47-44f4-849c-aa2b313e8c26\\\"\",\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\": \"PSTestNSGRuleWeb032630\",\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG03263c8b/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG032630/securityRules/PSTestNSGRuleWeb032630\",\r\n \"etag\": \"W/\\\"a145faa8-5c47-44f4-849c-aa2b313e8c26\\\"\",\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/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG03263c8b/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG032630/defaultSecurityRules/AllowVnetInBound\",\r\n \"etag\": \"W/\\\"a145faa8-5c47-44f4-849c-aa2b313e8c26\\\"\",\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/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG03263c8b/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG032630/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\r\n \"etag\": \"W/\\\"a145faa8-5c47-44f4-849c-aa2b313e8c26\\\"\",\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/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG03263c8b/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG032630/defaultSecurityRules/DenyAllInBound\",\r\n \"etag\": \"W/\\\"a145faa8-5c47-44f4-849c-aa2b313e8c26\\\"\",\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/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG03263c8b/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG032630/defaultSecurityRules/AllowVnetOutBound\",\r\n \"etag\": \"W/\\\"a145faa8-5c47-44f4-849c-aa2b313e8c26\\\"\",\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/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG03263c8b/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG032630/defaultSecurityRules/AllowInternetOutBound\",\r\n \"etag\": \"W/\\\"a145faa8-5c47-44f4-849c-aa2b313e8c26\\\"\",\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/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG03263c8b/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG032630/defaultSecurityRules/DenyAllOutBound\",\r\n \"etag\": \"W/\\\"a145faa8-5c47-44f4-849c-aa2b313e8c26\\\"\",\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/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG06578997/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG065780?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMDY1Nzg5OTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtTZWN1cml0eUdyb3Vwcy9QU1Rlc3ROU0cwNjU3ODA/YXBpLXZlcnNpb249MjAyMS0wNS0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG03263c8b/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG032630?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMDMyNjNjOGIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtTZWN1cml0eUdyb3Vwcy9QU1Rlc3ROU0cwMzI2MzA/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4e6e1869-70f6-4a74-9eed-d4a87b9b0753" + "0d7ea935-135b-4e6c-97cd-ca4eb2eb6b6a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ] }, "ResponseHeaders": { @@ -1220,16 +1220,16 @@ "no-cache" ], "ETag": [ - "W/\"02bbd1e4-4f8c-46b0-8bad-4c53ccf2ff9a\"" + "W/\"a145faa8-5c47-44f4-849c-aa2b313e8c26\"" ], "x-ms-request-id": [ - "b27c7de4-149b-4fb7-8165-21007fe789ce" + "f56d8204-4e41-460a-a564-1013ffd43079" ], "x-ms-correlation-request-id": [ - "5e584cb4-bee3-48e5-8b56-df90fc7da35e" + "352b8df8-d5bb-4b11-afec-c35fe068479d" ], "x-ms-arm-service-request-id": [ - "c8de72f6-c213-4192-a39b-717e231bc9b3" + "2d63933e-7de0-4053-be38-22053e5d8df1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1239,16 +1239,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "11987" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T091647Z:5e584cb4-bee3-48e5-8b56-df90fc7da35e" + "WESTINDIA:20220516T154432Z:352b8df8-d5bb-4b11-afec-c35fe068479d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sat, 26 Mar 2022 09:16:47 GMT" + "Mon, 16 May 2022 15:44:31 GMT" ], "Content-Length": [ "8475" @@ -1260,26 +1260,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"PSTestNSG065780\",\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG06578997/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG065780\",\r\n \"etag\": \"W/\\\"02bbd1e4-4f8c-46b0-8bad-4c53ccf2ff9a\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"0993f8cb-4618-4766-be9b-ff34dd8d477a\",\r\n \"securityRules\": [\r\n {\r\n \"name\": \"PSTestNSGRuleRDP065780\",\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG06578997/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG065780/securityRules/PSTestNSGRuleRDP065780\",\r\n \"etag\": \"W/\\\"02bbd1e4-4f8c-46b0-8bad-4c53ccf2ff9a\\\"\",\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\": \"PSTestNSGRuleWeb065780\",\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG06578997/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG065780/securityRules/PSTestNSGRuleWeb065780\",\r\n \"etag\": \"W/\\\"02bbd1e4-4f8c-46b0-8bad-4c53ccf2ff9a\\\"\",\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/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG06578997/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG065780/defaultSecurityRules/AllowVnetInBound\",\r\n \"etag\": \"W/\\\"02bbd1e4-4f8c-46b0-8bad-4c53ccf2ff9a\\\"\",\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/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG06578997/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG065780/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\r\n \"etag\": \"W/\\\"02bbd1e4-4f8c-46b0-8bad-4c53ccf2ff9a\\\"\",\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/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG06578997/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG065780/defaultSecurityRules/DenyAllInBound\",\r\n \"etag\": \"W/\\\"02bbd1e4-4f8c-46b0-8bad-4c53ccf2ff9a\\\"\",\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/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG06578997/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG065780/defaultSecurityRules/AllowVnetOutBound\",\r\n \"etag\": \"W/\\\"02bbd1e4-4f8c-46b0-8bad-4c53ccf2ff9a\\\"\",\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/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG06578997/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG065780/defaultSecurityRules/AllowInternetOutBound\",\r\n \"etag\": \"W/\\\"02bbd1e4-4f8c-46b0-8bad-4c53ccf2ff9a\\\"\",\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/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG06578997/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG065780/defaultSecurityRules/DenyAllOutBound\",\r\n \"etag\": \"W/\\\"02bbd1e4-4f8c-46b0-8bad-4c53ccf2ff9a\\\"\",\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}", + "ResponseBody": "{\r\n \"name\": \"PSTestNSG032630\",\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG03263c8b/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG032630\",\r\n \"etag\": \"W/\\\"a145faa8-5c47-44f4-849c-aa2b313e8c26\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"b43e7334-ada9-4cdd-8fa5-af09e6b5d241\",\r\n \"securityRules\": [\r\n {\r\n \"name\": \"PSTestNSGRuleRDP032630\",\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG03263c8b/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG032630/securityRules/PSTestNSGRuleRDP032630\",\r\n \"etag\": \"W/\\\"a145faa8-5c47-44f4-849c-aa2b313e8c26\\\"\",\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\": \"PSTestNSGRuleWeb032630\",\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG03263c8b/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG032630/securityRules/PSTestNSGRuleWeb032630\",\r\n \"etag\": \"W/\\\"a145faa8-5c47-44f4-849c-aa2b313e8c26\\\"\",\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/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG03263c8b/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG032630/defaultSecurityRules/AllowVnetInBound\",\r\n \"etag\": \"W/\\\"a145faa8-5c47-44f4-849c-aa2b313e8c26\\\"\",\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/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG03263c8b/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG032630/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\r\n \"etag\": \"W/\\\"a145faa8-5c47-44f4-849c-aa2b313e8c26\\\"\",\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/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG03263c8b/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG032630/defaultSecurityRules/DenyAllInBound\",\r\n \"etag\": \"W/\\\"a145faa8-5c47-44f4-849c-aa2b313e8c26\\\"\",\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/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG03263c8b/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG032630/defaultSecurityRules/AllowVnetOutBound\",\r\n \"etag\": \"W/\\\"a145faa8-5c47-44f4-849c-aa2b313e8c26\\\"\",\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/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG03263c8b/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG032630/defaultSecurityRules/AllowInternetOutBound\",\r\n \"etag\": \"W/\\\"a145faa8-5c47-44f4-849c-aa2b313e8c26\\\"\",\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/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG03263c8b/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG032630/defaultSecurityRules/DenyAllOutBound\",\r\n \"etag\": \"W/\\\"a145faa8-5c47-44f4-849c-aa2b313e8c26\\\"\",\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/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG06578997/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG065780?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMDY1Nzg5OTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtTZWN1cml0eUdyb3Vwcy9QU1Rlc3ROU0cwNjU3ODA/YXBpLXZlcnNpb249MjAyMS0wNS0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG03263c8b/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG032630?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMDMyNjNjOGIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtTZWN1cml0eUdyb3Vwcy9QU1Rlc3ROU0cwMzI2MzA/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==", "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\": \"PSTestNSGRuleRDP065780\"\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\": \"PSTestNSGRuleWeb065780\"\r\n }\r\n ]\r\n },\r\n \"location\": \"southeastasia\"\r\n}", + "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\": \"PSTestNSGRuleRDP032630\"\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\": \"PSTestNSGRuleWeb032630\"\r\n }\r\n ]\r\n },\r\n \"location\": \"southeastasia\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "4e6e1869-70f6-4a74-9eed-d4a87b9b0753" + "0d7ea935-135b-4e6c-97cd-ca4eb2eb6b6a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1299,19 +1299,19 @@ "3" ], "x-ms-request-id": [ - "43c4e97d-7ef1-4f8f-a0fa-81fbc837fcb2" + "55e14aca-6970-477f-ba79-d782bcf23abc" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/providers/Microsoft.Network/locations/southeastasia/operations/43c4e97d-7ef1-4f8f-a0fa-81fbc837fcb2?api-version=2021-05-01" + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/providers/Microsoft.Network/locations/southeastasia/operations/55e14aca-6970-477f-ba79-d782bcf23abc?api-version=2021-08-01" ], "x-ms-correlation-request-id": [ - "9ef87ed2-a953-4af1-adbd-2822978b2f9a" + "1444788b-091f-4fda-959b-7c6d23523033" ], "Azure-AsyncNotification": [ "Enabled" ], "x-ms-arm-service-request-id": [ - "0fac5339-589e-474b-a7e8-ebb43cf1451e" + "53c19e66-82a4-482d-9b24-54330aa8af0f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1324,13 +1324,13 @@ "1197" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T091644Z:9ef87ed2-a953-4af1-adbd-2822978b2f9a" + "WESTINDIA:20220516T154428Z:1444788b-091f-4fda-959b-7c6d23523033" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sat, 26 Mar 2022 09:16:44 GMT" + "Mon, 16 May 2022 15:44:27 GMT" ], "Content-Length": [ "8466" @@ -1342,23 +1342,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"PSTestNSG065780\",\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG06578997/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG065780\",\r\n \"etag\": \"W/\\\"d477900e-b04f-4292-8b21-9127ad804814\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"0993f8cb-4618-4766-be9b-ff34dd8d477a\",\r\n \"securityRules\": [\r\n {\r\n \"name\": \"PSTestNSGRuleRDP065780\",\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG06578997/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG065780/securityRules/PSTestNSGRuleRDP065780\",\r\n \"etag\": \"W/\\\"d477900e-b04f-4292-8b21-9127ad804814\\\"\",\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\": \"PSTestNSGRuleWeb065780\",\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG06578997/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG065780/securityRules/PSTestNSGRuleWeb065780\",\r\n \"etag\": \"W/\\\"d477900e-b04f-4292-8b21-9127ad804814\\\"\",\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/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG06578997/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG065780/defaultSecurityRules/AllowVnetInBound\",\r\n \"etag\": \"W/\\\"d477900e-b04f-4292-8b21-9127ad804814\\\"\",\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/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG06578997/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG065780/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\r\n \"etag\": \"W/\\\"d477900e-b04f-4292-8b21-9127ad804814\\\"\",\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/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG06578997/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG065780/defaultSecurityRules/DenyAllInBound\",\r\n \"etag\": \"W/\\\"d477900e-b04f-4292-8b21-9127ad804814\\\"\",\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/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG06578997/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG065780/defaultSecurityRules/AllowVnetOutBound\",\r\n \"etag\": \"W/\\\"d477900e-b04f-4292-8b21-9127ad804814\\\"\",\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/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG06578997/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG065780/defaultSecurityRules/AllowInternetOutBound\",\r\n \"etag\": \"W/\\\"d477900e-b04f-4292-8b21-9127ad804814\\\"\",\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/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG06578997/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG065780/defaultSecurityRules/DenyAllOutBound\",\r\n \"etag\": \"W/\\\"d477900e-b04f-4292-8b21-9127ad804814\\\"\",\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}", + "ResponseBody": "{\r\n \"name\": \"PSTestNSG032630\",\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG03263c8b/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG032630\",\r\n \"etag\": \"W/\\\"d3046180-1ae1-4281-b11b-a207ff72e2f0\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"b43e7334-ada9-4cdd-8fa5-af09e6b5d241\",\r\n \"securityRules\": [\r\n {\r\n \"name\": \"PSTestNSGRuleRDP032630\",\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG03263c8b/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG032630/securityRules/PSTestNSGRuleRDP032630\",\r\n \"etag\": \"W/\\\"d3046180-1ae1-4281-b11b-a207ff72e2f0\\\"\",\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\": \"PSTestNSGRuleWeb032630\",\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG03263c8b/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG032630/securityRules/PSTestNSGRuleWeb032630\",\r\n \"etag\": \"W/\\\"d3046180-1ae1-4281-b11b-a207ff72e2f0\\\"\",\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/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG03263c8b/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG032630/defaultSecurityRules/AllowVnetInBound\",\r\n \"etag\": \"W/\\\"d3046180-1ae1-4281-b11b-a207ff72e2f0\\\"\",\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/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG03263c8b/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG032630/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\r\n \"etag\": \"W/\\\"d3046180-1ae1-4281-b11b-a207ff72e2f0\\\"\",\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/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG03263c8b/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG032630/defaultSecurityRules/DenyAllInBound\",\r\n \"etag\": \"W/\\\"d3046180-1ae1-4281-b11b-a207ff72e2f0\\\"\",\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/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG03263c8b/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG032630/defaultSecurityRules/AllowVnetOutBound\",\r\n \"etag\": \"W/\\\"d3046180-1ae1-4281-b11b-a207ff72e2f0\\\"\",\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/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG03263c8b/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG032630/defaultSecurityRules/AllowInternetOutBound\",\r\n \"etag\": \"W/\\\"d3046180-1ae1-4281-b11b-a207ff72e2f0\\\"\",\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/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG03263c8b/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG032630/defaultSecurityRules/DenyAllOutBound\",\r\n \"etag\": \"W/\\\"d3046180-1ae1-4281-b11b-a207ff72e2f0\\\"\",\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/38304e13-357e-405e-9e9a-220351dcce8c/providers/Microsoft.Network/locations/southeastasia/operations/43c4e97d-7ef1-4f8f-a0fa-81fbc837fcb2?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzQzYzRlOTdkLTdlZjEtNGY4Zi1hMGZhLTgxZmJjODM3ZmNiMj9hcGktdmVyc2lvbj0yMDIxLTA1LTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/providers/Microsoft.Network/locations/southeastasia/operations/55e14aca-6970-477f-ba79-d782bcf23abc?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzU1ZTE0YWNhLTY5NzAtNDc3Zi1iYTc5LWQ3ODJiY2YyM2FiYz9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4e6e1869-70f6-4a74-9eed-d4a87b9b0753" + "0d7ea935-135b-4e6c-97cd-ca4eb2eb6b6a" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ] }, "ResponseHeaders": { @@ -1369,13 +1369,13 @@ "no-cache" ], "x-ms-request-id": [ - "24cd7de1-67c3-41df-884c-b8fd7d3adf0a" + "37fd0f0f-d9c5-4284-8727-1faddbc8e998" ], "x-ms-correlation-request-id": [ - "6cb1efc5-5493-4c19-b7d0-3c00c0955ebf" + "89a4f049-2cff-444c-b3c2-05562a7e8bd5" ], "x-ms-arm-service-request-id": [ - "de017dd6-4200-4825-ac73-7bb0da7ca843" + "1d75eb32-f4f2-4bf2-a53d-58c4a6414201" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1385,16 +1385,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11989" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T091647Z:6cb1efc5-5493-4c19-b7d0-3c00c0955ebf" + "WESTINDIA:20220516T154431Z:89a4f049-2cff-444c-b3c2-05562a7e8bd5" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sat, 26 Mar 2022 09:16:47 GMT" + "Mon, 16 May 2022 15:44:31 GMT" ], "Content-Length": [ "29" @@ -1410,22 +1410,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG06578997/providers/Microsoft.Network/networkInterfaces/PSTestNIC065780?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMDY1Nzg5OTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL1BTVGVzdE5JQzA2NTc4MD9hcGktdmVyc2lvbj0yMDIxLTA1LTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG03263c8b/providers/Microsoft.Network/networkInterfaces/PSTestNIC032630?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMDMyNjNjOGIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL1BTVGVzdE5JQzAzMjYzMD9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a2b0ba62-f3ee-4bf4-8583-7e6c19e1f36c" + "7d68562d-0450-4aaa-a7da-b484005ab8d8" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ] }, "ResponseHeaders": { @@ -1439,13 +1439,13 @@ "gateway" ], "x-ms-request-id": [ - "ea4cf0bb-b265-4c73-a284-fa5ce93bdc96" + "2749d166-1bc4-4d05-b85f-4f49139c7149" ], "x-ms-correlation-request-id": [ - "ea4cf0bb-b265-4c73-a284-fa5ce93bdc96" + "2749d166-1bc4-4d05-b85f-4f49139c7149" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T091648Z:ea4cf0bb-b265-4c73-a284-fa5ce93bdc96" + "WESTINDIA:20220516T154432Z:2749d166-1bc4-4d05-b85f-4f49139c7149" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1454,7 +1454,7 @@ "nosniff" ], "Date": [ - "Sat, 26 Mar 2022 09:16:47 GMT" + "Mon, 16 May 2022 15:44:31 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1466,23 +1466,23 @@ "239" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/networkInterfaces/PSTestNIC065780' under resource group 'PSTestRG06578997' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/networkInterfaces/PSTestNIC032630' under resource group 'PSTestRG03263c8b' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG06578997/providers/Microsoft.Network/networkInterfaces/PSTestNIC065780?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMDY1Nzg5OTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL1BTVGVzdE5JQzA2NTc4MD9hcGktdmVyc2lvbj0yMDIxLTA1LTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG03263c8b/providers/Microsoft.Network/networkInterfaces/PSTestNIC032630?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMDMyNjNjOGIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL1BTVGVzdE5JQzAzMjYzMD9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a2b0ba62-f3ee-4bf4-8583-7e6c19e1f36c" + "7d68562d-0450-4aaa-a7da-b484005ab8d8" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ] }, "ResponseHeaders": { @@ -1493,16 +1493,16 @@ "no-cache" ], "ETag": [ - "W/\"347426f1-e38e-4a3e-b084-d6d1fdf93b88\"" + "W/\"d1908ef0-9f5c-4875-aa21-36d95bd1ab16\"" ], "x-ms-request-id": [ - "6cd170ce-ad3a-4da6-b757-28e7c4fda382" + "f3170ba4-6cb6-491d-a7fe-7cd2fee7daa2" ], "x-ms-correlation-request-id": [ - "c722a090-0500-4079-81ca-c219556c18cf" + "56232455-2c43-4cce-91f0-9f0bd97ea242" ], "x-ms-arm-service-request-id": [ - "94e5d5d9-6f84-41b9-8b48-bc03ea14511f" + "b662d844-7194-4c47-acb4-848ee797e898" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1512,19 +1512,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" + "11985" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T091650Z:c722a090-0500-4079-81ca-c219556c18cf" + "WESTINDIA:20220516T154434Z:56232455-2c43-4cce-91f0-9f0bd97ea242" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sat, 26 Mar 2022 09:16:49 GMT" + "Mon, 16 May 2022 15:44:33 GMT" ], "Content-Length": [ - "2143" + "2165" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1533,26 +1533,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"PSTestNIC065780\",\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG06578997/providers/Microsoft.Network/networkInterfaces/PSTestNIC065780\",\r\n \"etag\": \"W/\\\"347426f1-e38e-4a3e-b084-d6d1fdf93b88\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"e003da56-3db6-4997-8451-d3ef4170194e\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG06578997/providers/Microsoft.Network/networkInterfaces/PSTestNIC065780/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"347426f1-e38e-4a3e-b084-d6d1fdf93b88\\\"\",\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/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG06578997/providers/Microsoft.Network/publicIPAddresses/pstestpublicdns065780\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG06578997/providers/Microsoft.Network/virtualNetworks/PSTestVNET065780/subnets/PSTestSNC065780\"\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\": \"nhtpgdyrrjve3cynvfdl4vv5xg.ix.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"vnetEncryptionSupported\": false,\r\n \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG06578997/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG065780\"\r\n },\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": [],\r\n \"nicType\": \"Standard\"\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"PSTestNIC032630\",\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG03263c8b/providers/Microsoft.Network/networkInterfaces/PSTestNIC032630\",\r\n \"etag\": \"W/\\\"d1908ef0-9f5c-4875-aa21-36d95bd1ab16\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"62c83be0-1421-4367-8b21-c4f31ad75be3\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG03263c8b/providers/Microsoft.Network/networkInterfaces/PSTestNIC032630/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"d1908ef0-9f5c-4875-aa21-36d95bd1ab16\\\"\",\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/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG03263c8b/providers/Microsoft.Network/publicIPAddresses/pstestpublicdns032630\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG03263c8b/providers/Microsoft.Network/virtualNetworks/PSTestVNET032630/subnets/PSTestSNC032630\"\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\": \"xkik5tykchtu5f1qgf5r3bgbdf.ix.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"vnetEncryptionSupported\": false,\r\n \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG03263c8b/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG032630\"\r\n },\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": [],\r\n \"nicType\": \"Standard\"\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"kind\": \"Regular\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG06578997/providers/Microsoft.Network/networkInterfaces/PSTestNIC065780?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMDY1Nzg5OTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL1BTVGVzdE5JQzA2NTc4MD9hcGktdmVyc2lvbj0yMDIxLTA1LTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG03263c8b/providers/Microsoft.Network/networkInterfaces/PSTestNIC032630?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMDMyNjNjOGIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL1BTVGVzdE5JQzAzMjYzMD9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a2b0ba62-f3ee-4bf4-8583-7e6c19e1f36c" + "7d68562d-0450-4aaa-a7da-b484005ab8d8" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ] }, "ResponseHeaders": { @@ -1563,16 +1563,16 @@ "no-cache" ], "ETag": [ - "W/\"347426f1-e38e-4a3e-b084-d6d1fdf93b88\"" + "W/\"d1908ef0-9f5c-4875-aa21-36d95bd1ab16\"" ], "x-ms-request-id": [ - "023e7789-36df-484b-b7b0-aa1e19ad3cf8" + "da6c15df-8d32-4a6e-8e9d-aae3368036aa" ], "x-ms-correlation-request-id": [ - "cb7b6424-d24d-468f-915f-1b7ae96dd1bd" + "2cffb4fc-cfbf-4822-ab52-79b2095c666e" ], "x-ms-arm-service-request-id": [ - "f8456a12-e95e-4588-8fc5-cbb27451b63d" + "7a7944f4-b8bf-426d-9997-f38f968699d7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1582,19 +1582,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" + "11984" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T091650Z:cb7b6424-d24d-468f-915f-1b7ae96dd1bd" + "WESTINDIA:20220516T154434Z:2cffb4fc-cfbf-4822-ab52-79b2095c666e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sat, 26 Mar 2022 09:16:50 GMT" + "Mon, 16 May 2022 15:44:33 GMT" ], "Content-Length": [ - "2143" + "2165" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1603,26 +1603,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"PSTestNIC065780\",\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG06578997/providers/Microsoft.Network/networkInterfaces/PSTestNIC065780\",\r\n \"etag\": \"W/\\\"347426f1-e38e-4a3e-b084-d6d1fdf93b88\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"e003da56-3db6-4997-8451-d3ef4170194e\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG06578997/providers/Microsoft.Network/networkInterfaces/PSTestNIC065780/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"347426f1-e38e-4a3e-b084-d6d1fdf93b88\\\"\",\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/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG06578997/providers/Microsoft.Network/publicIPAddresses/pstestpublicdns065780\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG06578997/providers/Microsoft.Network/virtualNetworks/PSTestVNET065780/subnets/PSTestSNC065780\"\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\": \"nhtpgdyrrjve3cynvfdl4vv5xg.ix.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"vnetEncryptionSupported\": false,\r\n \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG06578997/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG065780\"\r\n },\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": [],\r\n \"nicType\": \"Standard\"\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"PSTestNIC032630\",\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG03263c8b/providers/Microsoft.Network/networkInterfaces/PSTestNIC032630\",\r\n \"etag\": \"W/\\\"d1908ef0-9f5c-4875-aa21-36d95bd1ab16\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"62c83be0-1421-4367-8b21-c4f31ad75be3\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG03263c8b/providers/Microsoft.Network/networkInterfaces/PSTestNIC032630/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"d1908ef0-9f5c-4875-aa21-36d95bd1ab16\\\"\",\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/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG03263c8b/providers/Microsoft.Network/publicIPAddresses/pstestpublicdns032630\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG03263c8b/providers/Microsoft.Network/virtualNetworks/PSTestVNET032630/subnets/PSTestSNC032630\"\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\": \"xkik5tykchtu5f1qgf5r3bgbdf.ix.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"vnetEncryptionSupported\": false,\r\n \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG03263c8b/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG032630\"\r\n },\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": [],\r\n \"nicType\": \"Standard\"\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"kind\": \"Regular\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG06578997/providers/Microsoft.Network/networkInterfaces/PSTestNIC065780?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMDY1Nzg5OTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL1BTVGVzdE5JQzA2NTc4MD9hcGktdmVyc2lvbj0yMDIxLTA1LTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG03263c8b/providers/Microsoft.Network/networkInterfaces/PSTestNIC032630?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMDMyNjNjOGIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL1BTVGVzdE5JQzAzMjYzMD9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"networkSecurityGroup\": {\r\n \"properties\": {\r\n \"securityRules\": []\r\n },\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG06578997/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG065780\",\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 \"applicationGatewayIpConfigurations\": []\r\n },\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG06578997/providers/Microsoft.Network/virtualNetworks/PSTestVNET065780/subnets/PSTestSNC065780\"\r\n },\r\n \"primary\": true,\r\n \"publicIPAddress\": {\r\n \"properties\": {\r\n \"ipTags\": []\r\n },\r\n \"zones\": [],\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG06578997/providers/Microsoft.Network/publicIPAddresses/pstestpublicdns065780\",\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\": \"southeastasia\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"networkSecurityGroup\": {\r\n \"properties\": {\r\n \"securityRules\": []\r\n },\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG03263c8b/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG032630\",\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 \"applicationGatewayIpConfigurations\": []\r\n },\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG03263c8b/providers/Microsoft.Network/virtualNetworks/PSTestVNET032630/subnets/PSTestSNC032630\"\r\n },\r\n \"primary\": true,\r\n \"publicIPAddress\": {\r\n \"properties\": {\r\n \"ipTags\": []\r\n },\r\n \"zones\": [],\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG03263c8b/providers/Microsoft.Network/publicIPAddresses/pstestpublicdns032630\",\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\": \"southeastasia\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "a2b0ba62-f3ee-4bf4-8583-7e6c19e1f36c" + "7d68562d-0450-4aaa-a7da-b484005ab8d8" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1639,19 +1639,19 @@ "no-cache" ], "x-ms-request-id": [ - "af4814d4-0a1c-4d45-95d9-7daae6882878" + "e4de71fc-3202-4403-b82b-29a498f8e9ac" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/providers/Microsoft.Network/locations/southeastasia/operations/af4814d4-0a1c-4d45-95d9-7daae6882878?api-version=2021-05-01" + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/providers/Microsoft.Network/locations/southeastasia/operations/e4de71fc-3202-4403-b82b-29a498f8e9ac?api-version=2021-08-01" ], "x-ms-correlation-request-id": [ - "03e9c51a-edd3-4e88-bf0e-e7bee0e01722" + "6452f82f-4eb0-4a44-876e-614ec9c36465" ], "Azure-AsyncNotification": [ "Enabled" ], "x-ms-arm-service-request-id": [ - "bad1d290-d32a-48ac-ae14-f72404a539a5" + "c6aacca4-db19-4f08-8dfa-6b6df31c27b5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1664,16 +1664,16 @@ "1196" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T091650Z:03e9c51a-edd3-4e88-bf0e-e7bee0e01722" + "WESTINDIA:20220516T154433Z:6452f82f-4eb0-4a44-876e-614ec9c36465" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sat, 26 Mar 2022 09:16:49 GMT" + "Mon, 16 May 2022 15:44:33 GMT" ], "Content-Length": [ - "2143" + "2165" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1682,26 +1682,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"PSTestNIC065780\",\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG06578997/providers/Microsoft.Network/networkInterfaces/PSTestNIC065780\",\r\n \"etag\": \"W/\\\"347426f1-e38e-4a3e-b084-d6d1fdf93b88\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"e003da56-3db6-4997-8451-d3ef4170194e\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG06578997/providers/Microsoft.Network/networkInterfaces/PSTestNIC065780/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"347426f1-e38e-4a3e-b084-d6d1fdf93b88\\\"\",\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/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG06578997/providers/Microsoft.Network/publicIPAddresses/pstestpublicdns065780\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG06578997/providers/Microsoft.Network/virtualNetworks/PSTestVNET065780/subnets/PSTestSNC065780\"\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\": \"nhtpgdyrrjve3cynvfdl4vv5xg.ix.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"vnetEncryptionSupported\": false,\r\n \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG06578997/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG065780\"\r\n },\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": [],\r\n \"nicType\": \"Standard\"\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"PSTestNIC032630\",\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG03263c8b/providers/Microsoft.Network/networkInterfaces/PSTestNIC032630\",\r\n \"etag\": \"W/\\\"d1908ef0-9f5c-4875-aa21-36d95bd1ab16\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"62c83be0-1421-4367-8b21-c4f31ad75be3\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG03263c8b/providers/Microsoft.Network/networkInterfaces/PSTestNIC032630/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"d1908ef0-9f5c-4875-aa21-36d95bd1ab16\\\"\",\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/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG03263c8b/providers/Microsoft.Network/publicIPAddresses/pstestpublicdns032630\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG03263c8b/providers/Microsoft.Network/virtualNetworks/PSTestVNET032630/subnets/PSTestSNC032630\"\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\": \"xkik5tykchtu5f1qgf5r3bgbdf.ix.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"vnetEncryptionSupported\": false,\r\n \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG03263c8b/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG032630\"\r\n },\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": [],\r\n \"nicType\": \"Standard\"\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"kind\": \"Regular\"\r\n}", "StatusCode": 201 }, { "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/providers/Microsoft.Storage/checkNameAvailability?api-version=2021-02-01", "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9jaGVja05hbWVBdmFpbGFiaWxpdHk/YXBpLXZlcnNpb249MjAyMS0wMi0wMQ==", "RequestMethod": "POST", - "RequestBody": "{\r\n \"name\": \"tespstestpste032614460\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n}", + "RequestBody": "{\r\n \"name\": \"tespstestpste051621140\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "3810f924-13a6-4bab-93cf-2e790affe89a" + "f0e9455a-b561-4221-8716-faa647493d7e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.PowerShell.Cmdlets.Compute.Helpers.Storage.StorageManagementClient/4.24.1" + "Microsoft.Azure.PowerShell.Cmdlets.Compute.Helpers.Storage.StorageManagementClient/4.26.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1718,7 +1718,7 @@ "no-cache" ], "x-ms-request-id": [ - "224fe657-07b4-4b9b-a09a-5dc52fa7f9b2" + "363c58d0-cabd-440e-afac-5d5d0b467c2e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1730,16 +1730,16 @@ "11999" ], "x-ms-correlation-request-id": [ - "b045db32-00c6-43eb-af68-4e2d42d3c7f8" + "a8921795-f9ff-446f-9c86-33b6dfff3145" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T091652Z:b045db32-00c6-43eb-af68-4e2d42d3c7f8" + "WESTINDIA:20220516T154436Z:a8921795-f9ff-446f-9c86-33b6dfff3145" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sat, 26 Mar 2022 09:16:51 GMT" + "Mon, 16 May 2022 15:44:35 GMT" ], "Content-Length": [ "22" @@ -1755,22 +1755,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG06578997/providers/Microsoft.Compute/virtualMachines/PSTestVM065780?api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMDY1Nzg5OTcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy9QU1Rlc3RWTTA2NTc4MD9hcGktdmVyc2lvbj0yMDIxLTExLTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG03263c8b/providers/Microsoft.Compute/virtualMachines/PSTestVM032630?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMDMyNjNjOGIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy9QU1Rlc3RWTTAzMjYzMD9hcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D1_v2\"\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\": \"PSTestVM065780\",\r\n \"adminUsername\": \"demouser\",\r\n \"adminPassword\": \"06578997-c9fAa.\",\r\n \"windowsConfiguration\": {}\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG06578997/providers/Microsoft.Network/networkInterfaces/PSTestNIC065780\"\r\n }\r\n ]\r\n }\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"Purpose\": \"PSTest\",\r\n \"MabUsed\": \"Yes\",\r\n \"AutoShutDown\": \"No\",\r\n \"DeleteBy\": \"06-2022\",\r\n \"Owner\": \"sarath\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D1_v2\"\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\": \"PSTestVM032630\",\r\n \"adminUsername\": \"demouser\",\r\n \"adminPassword\": \"03263c8b-a4aAa.\",\r\n \"windowsConfiguration\": {}\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG03263c8b/providers/Microsoft.Network/networkInterfaces/PSTestNIC032630\"\r\n }\r\n ]\r\n }\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"AutoShutDown\": \"No\",\r\n \"DeleteBy\": \"06-2022\",\r\n \"MabUsed\": \"Yes\",\r\n \"Owner\": \"sarath\",\r\n \"Purpose\": \"PSTest\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "3810f924-13a6-4bab-93cf-2e790affe89a" + "f0e9455a-b561-4221-8716-faa647493d7e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1790,7 +1790,7 @@ "10" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/providers/Microsoft.Compute/locations/southeastasia/operations/d5ec15cf-bc22-4519-bc71-66c9d8984d7e?p=bfd1a1fb-212e-46d4-8d6f-4e293087ce8f&api-version=2021-11-01" + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/providers/Microsoft.Compute/locations/southeastasia/operations/61b8ba39-ffd5-4055-aa4d-f2e647317b01?p=bfd1a1fb-212e-46d4-8d6f-4e293087ce8f&api-version=2021-11-01" ], "Azure-AsyncNotification": [ "Enabled" @@ -1802,7 +1802,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d5ec15cf-bc22-4519-bc71-66c9d8984d7e" + "61b8ba39-ffd5-4055-aa4d-f2e647317b01" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -1812,19 +1812,19 @@ "1199" ], "x-ms-correlation-request-id": [ - "00e5cdfd-8645-4142-bed5-5838174efab5" + "59887e48-aa75-449f-a483-e51adaa2a7d9" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T091656Z:00e5cdfd-8645-4142-bed5-5838174efab5" + "WESTINDIA:20220516T154439Z:59887e48-aa75-449f-a483-e51adaa2a7d9" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sat, 26 Mar 2022 09:16:55 GMT" + "Mon, 16 May 2022 15:44:39 GMT" ], "Content-Length": [ - "1874" + "1922" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1833,23 +1833,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"PSTestVM065780\",\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG06578997/providers/Microsoft.Compute/virtualMachines/PSTestVM065780\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"Purpose\": \"PSTest\",\r\n \"MabUsed\": \"Yes\",\r\n \"AutoShutDown\": \"No\",\r\n \"DeleteBy\": \"06-2022\",\r\n \"Owner\": \"sarath\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"5b73ff05-b5a9-434f-8038-2ffe697c029f\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D1_v2\"\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.5006.220305\"\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 \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"PSTestVM065780\",\r\n \"adminUsername\": \"demouser\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"AutomaticByOS\",\r\n \"assessmentMode\": \"ImageDefault\"\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/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG06578997/providers/Microsoft.Network/networkInterfaces/PSTestNIC065780\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\",\r\n \"timeCreated\": \"2022-03-26T14:46:55.1544465+05:30\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"PSTestVM032630\",\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG03263c8b/providers/Microsoft.Compute/virtualMachines/PSTestVM032630\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"AutoShutDown\": \"No\",\r\n \"DeleteBy\": \"06-2022\",\r\n \"MabUsed\": \"Yes\",\r\n \"Owner\": \"sarath\",\r\n \"Purpose\": \"PSTest\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"78c85114-d598-4a52-85d4-3a4fdd74e356\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D1_v2\"\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.5125.220505\"\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 \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"PSTestVM032630\",\r\n \"adminUsername\": \"demouser\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"AutomaticByOS\",\r\n \"assessmentMode\": \"ImageDefault\"\r\n },\r\n \"enableVMAgentPlatformUpdates\": false\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/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG03263c8b/providers/Microsoft.Network/networkInterfaces/PSTestNIC032630\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\",\r\n \"timeCreated\": \"2022-05-16T21:14:38.9780958+05:30\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/providers/Microsoft.Compute/locations/southeastasia/operations/d5ec15cf-bc22-4519-bc71-66c9d8984d7e?p=bfd1a1fb-212e-46d4-8d6f-4e293087ce8f&api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Q1ZWMxNWNmLWJjMjItNDUxOS1iYzcxLTY2YzlkODk4NGQ3ZT9wPWJmZDFhMWZiLTIxMmUtNDZkNC04ZDZmLTRlMjkzMDg3Y2U4ZiZhcGktdmVyc2lvbj0yMDIxLTExLTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/providers/Microsoft.Compute/locations/southeastasia/operations/61b8ba39-ffd5-4055-aa4d-f2e647317b01?p=bfd1a1fb-212e-46d4-8d6f-4e293087ce8f&api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzYxYjhiYTM5LWZmZDUtNDA1NS1hYTRkLWYyZTY0NzMxN2IwMT9wPWJmZDFhMWZiLTIxMmUtNDZkNC04ZDZmLTRlMjkzMDg3Y2U4ZiZhcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3810f924-13a6-4bab-93cf-2e790affe89a" + "f0e9455a-b561-4221-8716-faa647493d7e" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ] }, "ResponseHeaders": { @@ -1869,26 +1869,26 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "bbf8d403-37d4-4c5d-8c24-f0381a3166d5" + "5ea1833d-b184-4574-9f91-a0c024808820" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11998" ], "x-ms-correlation-request-id": [ - "e596ab17-6378-4a99-9765-f578386ea7a9" + "d5119c5e-26c5-4081-b7ed-34df4842eaa8" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T091706Z:e596ab17-6378-4a99-9765-f578386ea7a9" + "WESTINDIA:20220516T154449Z:d5119c5e-26c5-4081-b7ed-34df4842eaa8" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sat, 26 Mar 2022 09:17:05 GMT" + "Mon, 16 May 2022 15:44:49 GMT" ], "Content-Length": [ "134" @@ -1900,23 +1900,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-03-26T14:46:54.7638167+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d5ec15cf-bc22-4519-bc71-66c9d8984d7e\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2022-05-16T21:14:38.6031017+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"61b8ba39-ffd5-4055-aa4d-f2e647317b01\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/providers/Microsoft.Compute/locations/southeastasia/operations/d5ec15cf-bc22-4519-bc71-66c9d8984d7e?p=bfd1a1fb-212e-46d4-8d6f-4e293087ce8f&api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Q1ZWMxNWNmLWJjMjItNDUxOS1iYzcxLTY2YzlkODk4NGQ3ZT9wPWJmZDFhMWZiLTIxMmUtNDZkNC04ZDZmLTRlMjkzMDg3Y2U4ZiZhcGktdmVyc2lvbj0yMDIxLTExLTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/providers/Microsoft.Compute/locations/southeastasia/operations/61b8ba39-ffd5-4055-aa4d-f2e647317b01?p=bfd1a1fb-212e-46d4-8d6f-4e293087ce8f&api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzYxYjhiYTM5LWZmZDUtNDA1NS1hYTRkLWYyZTY0NzMxN2IwMT9wPWJmZDFhMWZiLTIxMmUtNDZkNC04ZDZmLTRlMjkzMDg3Y2U4ZiZhcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3810f924-13a6-4bab-93cf-2e790affe89a" + "f0e9455a-b561-4221-8716-faa647493d7e" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ] }, "ResponseHeaders": { @@ -1933,26 +1933,26 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "5cfaf45d-fe0c-4e6a-8135-8437b361d91e" + "b537d04e-db91-4216-9371-be70e74a3a6a" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11997" ], "x-ms-correlation-request-id": [ - "2f44cc02-0661-4363-8592-fea471a46713" + "bb3f6ad1-4b15-467e-9a2d-0c901be83181" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T091756Z:2f44cc02-0661-4363-8592-fea471a46713" + "WESTINDIA:20220516T154540Z:bb3f6ad1-4b15-467e-9a2d-0c901be83181" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sat, 26 Mar 2022 09:17:55 GMT" + "Mon, 16 May 2022 15:45:39 GMT" ], "Content-Length": [ "134" @@ -1964,23 +1964,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-03-26T14:46:54.7638167+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d5ec15cf-bc22-4519-bc71-66c9d8984d7e\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2022-05-16T21:14:38.6031017+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"61b8ba39-ffd5-4055-aa4d-f2e647317b01\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/providers/Microsoft.Compute/locations/southeastasia/operations/d5ec15cf-bc22-4519-bc71-66c9d8984d7e?p=bfd1a1fb-212e-46d4-8d6f-4e293087ce8f&api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Q1ZWMxNWNmLWJjMjItNDUxOS1iYzcxLTY2YzlkODk4NGQ3ZT9wPWJmZDFhMWZiLTIxMmUtNDZkNC04ZDZmLTRlMjkzMDg3Y2U4ZiZhcGktdmVyc2lvbj0yMDIxLTExLTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/providers/Microsoft.Compute/locations/southeastasia/operations/61b8ba39-ffd5-4055-aa4d-f2e647317b01?p=bfd1a1fb-212e-46d4-8d6f-4e293087ce8f&api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzYxYjhiYTM5LWZmZDUtNDA1NS1hYTRkLWYyZTY0NzMxN2IwMT9wPWJmZDFhMWZiLTIxMmUtNDZkNC04ZDZmLTRlMjkzMDg3Y2U4ZiZhcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3810f924-13a6-4bab-93cf-2e790affe89a" + "f0e9455a-b561-4221-8716-faa647493d7e" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ] }, "ResponseHeaders": { @@ -1997,93 +1997,29 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "702960cc-db85-483f-ace8-14f9eb75442b" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" - ], - "x-ms-correlation-request-id": [ - "a75b1dfa-da65-409a-ab4a-b2ff97512ade" - ], - "x-ms-routing-request-id": [ - "WESTINDIA:20220326T091846Z:a75b1dfa-da65-409a-ab4a-b2ff97512ade" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Sat, 26 Mar 2022 09:18:45 GMT" - ], - "Content-Length": [ - "134" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"startTime\": \"2022-03-26T14:46:54.7638167+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d5ec15cf-bc22-4519-bc71-66c9d8984d7e\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/providers/Microsoft.Compute/locations/southeastasia/operations/d5ec15cf-bc22-4519-bc71-66c9d8984d7e?p=bfd1a1fb-212e-46d4-8d6f-4e293087ce8f&api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Q1ZWMxNWNmLWJjMjItNDUxOS1iYzcxLTY2YzlkODk4NGQ3ZT9wPWJmZDFhMWZiLTIxMmUtNDZkNC04ZDZmLTRlMjkzMDg3Y2U4ZiZhcGktdmVyc2lvbj0yMDIxLTExLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "3810f924-13a6-4bab-93cf-2e790affe89a" - ], - "User-Agent": [ - "FxVersion/4.700.22.11601", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperation3Min;14995,Microsoft.Compute/GetOperation30Min;29995" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-request-id": [ - "34480d75-e0bf-4145-bccb-db75768ecba1" + "88b253af-fa33-4f4f-8f53-3cc6a8b404d5" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11996" ], "x-ms-correlation-request-id": [ - "d1ae80fc-ccff-491e-a70a-1bb06527bbd0" + "7e1e3c01-d1b6-4de1-93b0-580da299a9f0" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T091936Z:d1ae80fc-ccff-491e-a70a-1bb06527bbd0" + "WESTINDIA:20220516T154630Z:7e1e3c01-d1b6-4de1-93b0-580da299a9f0" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sat, 26 Mar 2022 09:19:35 GMT" + "Mon, 16 May 2022 15:46:29 GMT" ], "Content-Length": [ - "183" + "184" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2092,7 +2028,7 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-03-26T14:46:54.7638167+05:30\",\r\n \"endTime\": \"2022-03-26T14:48:54.358497+05:30\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"d5ec15cf-bc22-4519-bc71-66c9d8984d7e\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2022-05-16T21:14:38.6031017+05:30\",\r\n \"endTime\": \"2022-05-16T21:15:49.2593189+05:30\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"61b8ba39-ffd5-4055-aa4d-f2e647317b01\"\r\n}", "StatusCode": 200 }, { @@ -2102,16 +2038,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3810f924-13a6-4bab-93cf-2e790affe89a" + "f0e9455a-b561-4221-8716-faa647493d7e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ] }, "ResponseHeaders": { @@ -2125,32 +2061,32 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "8d76ef5d-2d17-4297-8566-4612360b9f5a_132907502958631452" + "8d76ef5d-2d17-4297-8566-4612360b9f5a_132927459943306577" ], "x-ms-request-id": [ - "6efe7dc2-a4b1-4cf8-9b27-1f8b741cd1c1" + "806cf8ae-c2db-4e5b-8299-4467f0ccddac" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11994" ], "x-ms-correlation-request-id": [ - "87ae861d-e43a-4190-a261-c5c2cb676d0a" + "053915a7-32f3-45ba-beaa-80ef20f27c7a" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T091937Z:87ae861d-e43a-4190-a261-c5c2cb676d0a" + "WESTINDIA:20220516T154631Z:053915a7-32f3-45ba-beaa-80ef20f27c7a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sat, 26 Mar 2022 09:19:36 GMT" + "Mon, 16 May 2022 15:46:31 GMT" ], "Content-Length": [ - "424598" + "429382" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2159,7 +2095,7 @@ "-1" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"128technology\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/128technology\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1580863854728\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1580863854728\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1583411303229\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1583411303229\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1583465680865\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1583465680865\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1585118004523\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1585118004523\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1592878437854\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1592878437854\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1597644262255\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1597644262255\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1598955805825\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1598955805825\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1601633765871\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1601633765871\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1602067018799\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1602067018799\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1604579683207\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1604579683207\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1615257339685\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1615257339685\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1615278064010\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1615278064010\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1615455873642\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1615455873642\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1624590941808\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1624590941808\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1e\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1e\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"2021ai\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/2021ai\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"247commercelimited1611063941652\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/247commercelimited1611063941652\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"3cx-pbx\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/3cx-pbx\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"42crunch1580391915541\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/42crunch1580391915541\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"4psa\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/4psa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"5nine-software-inc\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/5nine-software-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"6124903\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/6124903\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"7isolutions\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/7isolutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"a10networks\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/a10networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"a10networks1596136698788\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/a10networks1596136698788\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"abiquo\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/abiquo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"abzoobainc1598420455082\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/abzoobainc1598420455082\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"accedian\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/accedian\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"accelario1579101623356\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/accelario1579101623356\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"accellion\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/accellion\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"accessdata-group\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/accessdata-group\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"accops\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/accops\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aciworldwide\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aciworldwide\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Acronis\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Acronis\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Acronis.Backup\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Acronis.Backup\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"actian-corp\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/actian-corp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"actian_matrix\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/actian_matrix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"actifio\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/actifio\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"actiphy\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/actiphy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"actiphyinc1627974506603\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/actiphyinc1627974506603\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"activecountermeasuresinc1631039410073\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/activecountermeasuresinc1631039410073\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"activeeon\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/activeeon\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"activeops\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/activeops\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"adastracorporation-4028356\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/adastracorporation-4028356\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"adgs\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/adgs\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"advantech\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/advantech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"advantech-webaccess\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/advantech-webaccess\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"advantys\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/advantys\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aelf\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aelf\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aerospike\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aerospike\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"affinio\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/affinio\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"affirmednetworks1607630812999\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/affirmednetworks1607630812999\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ageniumscale1591804889317\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ageniumscale1591804889317\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aggregion-ltd\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aggregion-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"agiledialogssl1603791911858\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/agiledialogssl1603791911858\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"agolo\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/agolo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ahnlabinc1584495174865\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ahnlabinc1584495174865\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ahnlabinc1584495467593\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ahnlabinc1584495467593\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"airalabrus\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/airalabrus\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aiscaler-cache-control-ddos-and-url-rewriting-\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aiscaler-cache-control-ddos-and-url-rewriting-\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aisundowninc1618516322959\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aisundowninc1618516322959\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"akamai-technologies\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/akamai-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"akumina\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/akumina\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"akumo-software\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/akumo-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"al-tamamunitedtradingcontractingcompany\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/al-tamamunitedtradingcontractingcompany\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"alachisoft\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/alachisoft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"alertlogic\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/alertlogic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"AlertLogic.Extension\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/AlertLogic.Extension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"algolyticstechnologies1606475101268\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/algolyticstechnologies1606475101268\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"alicetrix\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/alicetrix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"alienvault\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/alienvault\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"alldigital-brevity\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/alldigital-brevity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"almalinux\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/almalinux\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"almalinuxosfoundation1628089859865\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/almalinuxosfoundation1628089859865\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"altair-engineering-inc\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/altair-engineering-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"altamira-corporation\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/altamira-corporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"alteryx\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/alteryx\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"altova\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/altova\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"amergint1593131356777\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/amergint1593131356777\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"anjanadatasl1583402861145\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/anjanadatasl1583402861145\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ansys\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ansys\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"antmedia\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/antmedia\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aod\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aod\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"apigee\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/apigee\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"appcara\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appcara\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"appcelerator\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appcelerator\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"appex-networks\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appex-networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"appistry\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appistry\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"appiyo_technologies\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appiyo_technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"appmint_inc\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appmint_inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"apps-4-rent\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/apps-4-rent\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"appscale-marketplace\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appscale-marketplace\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"appsurifyinc1606933045773\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appsurifyinc1606933045773\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aquaforest\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aquaforest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aquantyinc1598537176913\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aquantyinc1598537176913\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aquaveollc1633710529908\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aquaveollc1633710529908\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"arabesque-group\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/arabesque-group\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"arangodb\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/arangodb\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aras\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aras\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"arcblock\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/arcblock\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"arcesb\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/arcesb\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"arcontechsolutionsprivatelimited1623841797810\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/arcontechsolutionsprivatelimited1623841797810\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"arcserveusallc-marketing\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/arcserveusallc-marketing\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"arista-networks\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/arista-networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ariwontollc\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ariwontollc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"array_networks\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/array_networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"artificial-intelligence-techniques-sl\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/artificial-intelligence-techniques-sl\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"arubanetworks-4922182\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/arubanetworks-4922182\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"asdivertissementinc1617837708654\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/asdivertissementinc1617837708654\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"asigra\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/asigra\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aspentechnologyhq-1353108\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aspentechnologyhq-1353108\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"astadia-1148316\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/astadia-1148316\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"asterasoftware1581022936015\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/asterasoftware1581022936015\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"asyscosoftwarebv\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/asyscosoftwarebv\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ataccama\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ataccama\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"athinfosystems1641442221349\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/athinfosystems1641442221349\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"atlgaming\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/atlgaming\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"atmosera\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/atmosera\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"atomicorp\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/atomicorp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"atomizedinc1587939464368\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/atomizedinc1587939464368\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"attunity_cloudbeam\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/attunity_cloudbeam\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"audiocodes\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/audiocodes\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"auraportal\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/auraportal\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"auriq-systems\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/auriq-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"automateio1592914387888\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/automateio1592914387888\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"automationanywhere\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/automationanywhere\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"avanseus\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/avanseus\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"avepoint\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/avepoint\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aveva1\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aveva1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"avi-networks\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/avi-networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aviatrix-systems\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aviatrix-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"awingu\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/awingu\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"axedrasag1590581171549\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/axedrasag1590581171549\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"axsguardablenv\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/axsguardablenv\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"axshco\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/axshco\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"axway\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/axway\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"axxana\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/axxana\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"azhpc\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/azhpc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"azul\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/azul\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"azure-dockit\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/azure-dockit\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"azurecyclecloud\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/azurecyclecloud\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"AzureDatabricks\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/AzureDatabricks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"azureopenshift\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/azureopenshift\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"AzureRT.PIR.Synthetics.ProdTest\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/AzureRT.PIR.Synthetics.ProdTest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"AzureRT.PIRCore.CAPSExtBvt.1\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/AzureRT.PIRCore.CAPSExtBvt.1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"AzureRT.Test\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/AzureRT.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"azuretesting\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/azuretesting\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"azuretesting2\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/azuretesting2\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"azuretesting3\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/azuretesting3\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"AzureTools1type\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/AzureTools1type\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"baas-techbureau\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/baas-techbureau\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"baffle-io\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/baffle-io\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"balabit\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/balabit\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"barracudanetworks\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/barracudanetworks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"basho\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/basho\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"batch\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/batch\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bayware\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bayware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bdy\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bdy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"belindaczsro1588885355210\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/belindaczsro1588885355210\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bellsoft1582871421940\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bellsoft1582871421940\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"betsol\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/betsol\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"beyondtrust\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/beyondtrust\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bi-builders-as\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bi-builders-as\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"big-id\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/big-id\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"biolibinc1622552350258\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/biolibinc1622552350258\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bissantechnology1583581147809\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bissantechnology1583581147809\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bitdefendercybersecurity\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bitdefendercybersecurity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Bitnami\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Bitnami\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bizagi\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bizagi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bizaptyltd1626489237351\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bizaptyltd1626489237351\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bizdataloome\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bizdataloome\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"biztalk360\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/biztalk360\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"black-duck-software\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/black-duck-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"blackbird\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/blackbird\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"blackmagicdesignincorporated1596492193249\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/blackmagicdesignincorporated1596492193249\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"blk-technologies\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/blk-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"blockapps\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/blockapps\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"blockchain-foundry\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/blockchain-foundry\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"blockstack\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/blockstack\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bloombase\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bloombase\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bluecat\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bluecat\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bluejeansnetwork1638333611902\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bluejeansnetwork1638333611902\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"blueprismlimited-4827145\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/blueprismlimited-4827145\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bluesyntaxconsulting1617654548594\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bluesyntaxconsulting1617654548594\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bluetalon\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bluetalon\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bmc.ctm\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bmc.ctm\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bmcctm.test\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bmcctm.test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"boardpacpvtltd\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/boardpacpvtltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bocada\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bocada\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"boemskats\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/boemskats\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"botanalytics\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/botanalytics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bowspritconsultingopcprivatelimited1596291408582\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bowspritconsultingopcprivatelimited1596291408582\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bravura-software-llc\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bravura-software-llc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Brianjac.Symantec.CloudWorkloadProtection\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Brianjac.Symantec.CloudWorkloadProtection\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bricatainc1584472632111\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bricatainc1584472632111\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bright-computing\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bright-computing\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"brightcomputing\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/brightcomputing\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"brocade_communications\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/brocade_communications\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"brutale\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/brutale\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bryte\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bryte\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bssw\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bssw\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bt-americas-inc\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bt-americas-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"buddhalabs\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/buddhalabs\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cadosecurityltd1626856705534\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cadosecurityltd1626856705534\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"calculated_systems\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/calculated_systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"caloudi_corp\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/caloudi_corp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"canadiancentreforcybersecurity1610638436359\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/canadiancentreforcybersecurity1610638436359\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Canonical\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Canonical\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"canonical-test\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/canonical-test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"carto\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/carto\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cask\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cask\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"castaigroupinc1595243474856\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/castaigroupinc1595243474856\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"catechnologies\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/catechnologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"catonetworksltd1641478570665\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/catonetworksltd1641478570665\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cautelalabs\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cautelalabs\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cavirin\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cavirin\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cayosoftinc\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cayosoftinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cdatasoftware\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cdatasoftware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cds\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cds\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"celum-gmbh\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/celum-gmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"center-for-internet-security-inc\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/center-for-internet-security-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"centeritysystems\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/centeritysystems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"centrixeltd1594135951373\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/centrixeltd1594135951373\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"centrocomputerspa1584528117084\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/centrocomputerspa1584528117084\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"certifiedsecuritysolutionsinc\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/certifiedsecuritysolutionsinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"certivox\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/certivox\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cfd-direct\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cfd-direct\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"chain\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/chain\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"checkpoint\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/checkpoint\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"chef-software\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/chef-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Chef.Bootstrap.WindowsAzure\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Chef.Bootstrap.WindowsAzure\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"chunghwatelecom1587573688842\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/chunghwatelecom1587573688842\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cinchy\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cinchy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cinegy-gmbh\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cinegy-gmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ciphertechsinc1646670709341\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ciphertechsinc1646670709341\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"circleci\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/circleci\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cires21\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cires21\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cirruswaveinc1579234787943\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cirruswaveinc1579234787943\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cisco\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cisco\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"citrix\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/citrix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Citrix.ADC\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Citrix.ADC\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"clapsodeughaftungsbeschrnkt1626333173563\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/clapsodeughaftungsbeschrnkt1626333173563\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"clear-linux-project\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/clear-linux-project\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"clone-systems\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/clone-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"clouber\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/clouber\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloud-checkr\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloud-checkr\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloud-cruiser\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloud-cruiser\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloud-infrastructure-services\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloud-infrastructure-services\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudaccelinc1628754426775\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudaccelinc1628754426775\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudbees\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudbees\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudbees-enterprise-jenkins\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudbees-enterprise-jenkins\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudbolt-software\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudbolt-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudboltsoftware1639523402532\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudboltsoftware1639523402532\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudboost\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudboost\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudcover\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudcover\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudenablers-inc\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudenablers-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudentity\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudentity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudera\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudera\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudflare\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudflare\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudhouse\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudhouse\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudinfo-4919088\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudinfo-4919088\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudknox\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudknox\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudlanes\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudlanes\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudlink\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudlink\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"CloudLinkEMC.SecureVM\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/CloudLinkEMC.SecureVM\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudmavensolutions\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudmavensolutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudneeti\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudneeti\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudplan-gmbh\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudplan-gmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudsecurity\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudsecurity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudsoft\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudsoft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudwhizsolutions\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudwhizsolutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudwrxsconsultingltd1631029702055\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudwrxsconsultingltd1631029702055\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"clustrix\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/clustrix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cncf-upstream\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cncf-upstream\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"codaintelligence1606495376525\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/codaintelligence1606495376525\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"codelathe\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/codelathe\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"codenvy\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/codenvy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"codetwo\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/codetwo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cognexcorporation1613759804979\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cognexcorporation1613759804979\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cognitive-scale\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cognitive-scale\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cognizant\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cognizant\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cognosys\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cognosys\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cohesity\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cohesity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cohesitydev1592001764720\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cohesitydev1592001764720\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cohesive\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cohesive\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"coin-sciences-ltd\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/coin-sciences-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"collabcloudlimited\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/collabcloudlimited\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"collibranv1619508098620\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/collibranv1619508098620\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"commscopeinc1632135151062\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/commscopeinc1632135151062\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"commvault\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/commvault\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"compellon\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/compellon\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"composable\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/composable\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"comunity\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/comunity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"concentrationheatandmomentumlimited1616154387047\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/concentrationheatandmomentumlimited1616154387047\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Confer\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Confer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"confluentinc\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/confluentinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"conflux\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/conflux\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"connecting-software\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/connecting-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"consensys\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/consensys\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"containeraider\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/containeraider\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"contiamogmbh\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/contiamogmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"controlcase\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/controlcase\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"controlplane\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/controlplane\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"controlplanecorporation1609967567639\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/controlplanecorporation1609967567639\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"convertigo\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/convertigo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"corda\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/corda\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"core-stack\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/core-stack\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"corent-technology-pvt\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/corent-technology-pvt\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"CoreOS\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/CoreOS\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"couchbase\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/couchbase\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cpanel\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cpanel\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"credativ\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/credativ\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cristiesoftwareltd1599488127561\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cristiesoftwareltd1599488127561\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"crunchyard\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/crunchyard\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"crunchyardltd1623835391104\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/crunchyardltd1623835391104\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cryptocom1585727786636\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cryptocom1585727786636\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cryptosense1605170011574\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cryptosense1605170011574\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cryptzone\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cryptzone\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ctm.bmc.com\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ctm.bmc.com\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cubebackup\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cubebackup\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cyberark\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cyberark\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cybernetica-as\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cybernetica-as\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cyxtera\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cyxtera\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"d4t4_solutions-1164305\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/d4t4_solutions-1164305\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"daceitdbasensetrafficpulse1579892024934\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/daceitdbasensetrafficpulse1579892024934\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"danielsol.AzureTools1\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/danielsol.AzureTools1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Dans.Windows.App\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Dans.Windows.App\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Dans3.Windows.App\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Dans3.Windows.App\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dataart\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dataart\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"databricks\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/databricks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datacore\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datacore\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Datadog.Agent\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Datadog.Agent\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datadynamicsinc1581991927942\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datadynamicsinc1581991927942\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dataguiseinc\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dataguiseinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dataiku\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dataiku\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datalayer\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datalayer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datanomers1584919038987\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datanomers1584919038987\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datanova\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datanova\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datapredsa\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datapredsa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dataroadtechnologiesllc\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dataroadtechnologiesllc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datasciencedojo1586563145740\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datasciencedojo1586563145740\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datastax\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datastax\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datasunrise\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datasunrise\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datavirtualitygmbh\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datavirtualitygmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datometry\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datometry\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dbs-h\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dbs-h\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ddn-whamcloud-5345716\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ddn-whamcloud-5345716\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Debian\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Debian\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dece-4446019\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dece-4446019\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"decisosalesbv\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/decisosalesbv\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"deepcognitioninc1593512758156\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/deepcognitioninc1593512758156\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"deepsiginc1581610210151\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/deepsiginc1581610210151\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"deepsurfacesecurityinc1632943333445\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/deepsurfacesecurityinc1632943333445\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dellemc\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dellemc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dell_software\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dell_software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"delphix\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/delphix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"deltapathlimited1592886319362\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/deltapathlimited1592886319362\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"denodo\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/denodo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"denyall\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/denyall\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"derdack\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/derdack\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"desktopstudioag1580294245574\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/desktopstudioag1580294245574\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"devfactory\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/devfactory\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"device42inc\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/device42inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"deviceauthorityinc\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/deviceauthorityinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"devolutionsinc\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/devolutionsinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"devopsgroup-uk\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/devopsgroup-uk\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"df-portal-user\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/df-portal-user\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dgsecure\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dgsecure\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Dh2ico\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Dh2ico\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dh2icompany\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dh2icompany\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dhi\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dhi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"diagramics\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/diagramics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dicomsystems1584107398321\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dicomsystems1584107398321\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"diehl-metering\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/diehl-metering\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"digisitesystems\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/digisitesystems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"digitaldefenseinc\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/digitaldefenseinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"digitaloffice\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/digitaloffice\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"digitamizeinc\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/digitamizeinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"digitate\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/digitate\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"diladele\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/diladele\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dimensionalmechanics-inc\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dimensionalmechanics-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"diqa\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/diqa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"diyatech\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/diyatech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"diyotta\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/diyotta\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"djiindustrialincus\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/djiindustrialincus\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"docker\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/docker\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dome9\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dome9\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dorabot\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dorabot\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dremiocorporation\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dremiocorporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"drizti\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/drizti\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"drone\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/drone\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dsi\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dsi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dundas\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dundas\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dyadic_security\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dyadic_security\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dynatrace\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dynatrace\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dynatrace.ruxit\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dynatrace.ruxit\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"e-magicinc1587696283171\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/e-magicinc1587696283171\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"eastwind-networks-inc\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/eastwind-networks-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"easysoftwaresro1593005637384\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/easysoftwaresro1593005637384\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ebesllc1637780200500\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ebesllc1637780200500\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ecessa\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ecessa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"edevtech\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/edevtech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"edgelesssystems\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/edgelesssystems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"edgenetworks\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/edgenetworks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"edispheresoftwareprivatelimited1606199736428\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/edispheresoftwareprivatelimited1606199736428\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"education4sight\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/education4sight\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"eecservicesfzllc1604836615706\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/eecservicesfzllc1604836615706\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"egnyte\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/egnyte\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"egress1589289169584\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/egress1589289169584\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"eikonasystemsgmbh1601729310063\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/eikonasystemsgmbh1601729310063\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Elastic\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Elastic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"elasticbox\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/elasticbox\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"elecard\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/elecard\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"electric-cloud\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/electric-cloud\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"elevateiot\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/elevateiot\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"eleven01\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/eleven01\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"elfiqnetworks\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/elfiqnetworks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"emercoin\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/emercoin\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"energisme1601990637842\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/energisme1601990637842\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"enforongo\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/enforongo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"engineering-ingegneriainformatica-spa1626786889850\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/engineering-ingegneriainformatica-spa1626786889850\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"engysltd1624364546407\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/engysltd1624364546407\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"enterprise-ethereum-alliance\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/enterprise-ethereum-alliance\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"enterprisedb-corp\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/enterprisedb-corp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"enterpriseworx-it\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/enterpriseworx-it\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"epicgames\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/epicgames\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"epicgamesinc1633466121071\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/epicgamesinc1633466121071\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"eproe\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/eproe\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"equalum\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/equalum\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"equilibrium\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/equilibrium\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"equinix\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/equinix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ergoninformatikag1581586464404\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ergoninformatikag1581586464404\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"esdenera\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/esdenera\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ESET\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ESET\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"esetresearch1579795941720\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/esetresearch1579795941720\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"esri\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/esri\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"esyon\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/esyon\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ethereum\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ethereum\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"eurolinuxspzoo1620639373013\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/eurolinuxspzoo1620639373013\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"eventtracker\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/eventtracker\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"evertzmicrosystemsltd1586877923009\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/evertzmicrosystemsltd1586877923009\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"evostream-inc\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/evostream-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"exact\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/exact\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"exasol\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/exasol\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"excelero1608461290726\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/excelero1608461290726\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"exivity\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/exivity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"exonar\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/exonar\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"f5-networks\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/f5-networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"falainapteltd1604661424876\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/falainapteltd1604661424876\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"falconstorsoftware\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/falconstorsoftware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fatalsecurity1604924013537\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fatalsecurity1604924013537\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fatpipe-inc\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fatpipe-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fenestrae-1035066\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fenestrae-1035066\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fidesys\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fidesys\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"filecatalyst\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/filecatalyst\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"filemagellc\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/filemagellc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fiorano\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fiorano\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fireeye\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fireeye\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"firehost\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/firehost\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"firemon\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/firemon\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"firstderivativesplc1596469572732\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/firstderivativesplc1596469572732\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"flashgrid-inc\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/flashgrid-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"flexbby\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/flexbby\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"flexbby-5255860\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/flexbby-5255860\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"flexify-io\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/flexify-io\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"flexxibleit\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/flexxibleit\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"flowmon\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/flowmon\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"flynet\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/flynet\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"foghorn-systems\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/foghorn-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"forcepoint-llc\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/forcepoint-llc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"forescout\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/forescout\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"foreseetiab1613650409016\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/foreseetiab1613650409016\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"formpipesoftwareab\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/formpipesoftwareab\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"forscene\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/forscene\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fortanix\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fortanix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fortinet\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fortinet\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fortycloud\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fortycloud\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"forumsystems1599756394904\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/forumsystems1599756394904\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fotopiatechnologies\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fotopiatechnologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"foxiteuropegmbh1585901066320\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/foxiteuropegmbh1585901066320\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"franzinc1593030725310\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/franzinc1593030725310\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fujitsu_fast\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fujitsu_fast\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fw\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fw\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"g2kgroupgmbh-4821943\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/g2kgroupgmbh-4821943\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gapteq\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gapteq\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gatlingcorp\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gatlingcorp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gbs\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gbs\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gemalto-safenet\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gemalto-safenet\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Gemalto.SafeNet.ProtectV\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Gemalto.SafeNet.ProtectV\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"genuagmbhdevid1\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/genuagmbhdevid1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"genua_gmbh\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/genua_gmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"genymobile\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/genymobile\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gigamon-inc\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gigamon-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"GitHub\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/GitHub\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gitlab\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gitlab\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gitlabinc1586447921813\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gitlabinc1586447921813\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gladinet-inc\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gladinet-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"glantoninc1591876792991\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/glantoninc1591876792991\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"globalidsinc1596800540598\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/globalidsinc1596800540598\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"globalscape\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/globalscape\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"globalsolutions\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/globalsolutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gluwareinc\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gluwareinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"graphistry\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/graphistry\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"graphitegtc\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/graphitegtc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"great-software-laboratory-private-limited\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/great-software-laboratory-private-limited\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"greensql\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/greensql\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"greycorbelsolutions\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/greycorbelsolutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gridgain\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gridgain\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"guardicore\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/guardicore\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gxchainfoundationltd\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gxchainfoundationltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"h2o-ai\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/h2o-ai\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hackerbay\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hackerbay\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hackershub\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hackershub\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"haivision\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/haivision\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"haivisionsystemsinc1580780591922\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/haivisionsystemsinc1580780591922\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"haltdoscompvtltd1587136166019\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/haltdoscompvtltd1587136166019\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hanu\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hanu\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"haproxy-technologies\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/haproxy-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"harmanconnectedservicesinc1594928575643\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/harmanconnectedservicesinc1594928575643\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"harpaitalia\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/harpaitalia\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hashhub\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hashhub\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hcl-technologies\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hcl-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"heimdall-data\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/heimdall-data\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"help-systems\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/help-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"helpyio\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/helpyio\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"heretechnologies\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/heretechnologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hewlett-packard\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hewlett-packard\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hillstone-networks\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hillstone-networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hitachi-solutions\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hitachi-solutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hitachivantara\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hitachivantara\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"holo-industrie40softwaregmbh1600957636008\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/holo-industrie40softwaregmbh1600957636008\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hortonworks\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hortonworks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hpe\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hpe\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"HPE.Security.ApplicationDefender\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/HPE.Security.ApplicationDefender\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"huawei\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/huawei\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hubstor-inc\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hubstor-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hush-hush\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hush-hush\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hvr\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hvr\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hyperglance\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hyperglance\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hypergrid\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hypergrid\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hystaxinc\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hystaxinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hytrust\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hytrust\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"i-exceed-technology\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/i-exceed-technology\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iaansys\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iaansys\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ibm\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ibm\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ibm-alliance-global-1560886\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ibm-alliance-global-1560886\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ibm-alliance-usa-ny-armonk-hq-ibmstorage-6201192\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ibm-alliance-usa-ny-armonk-hq-ibmstorage-6201192\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ibm-usa-ny-armonk-hq-6275750-ibmcloud-aiops\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ibm-usa-ny-armonk-hq-6275750-ibmcloud-aiops\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iboss\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iboss\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iconics\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iconics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iconsulting-spa\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iconsulting-spa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"icubeconsultancyservicesinc\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/icubeconsultancyservicesinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iguazio-5069960\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iguazio-5069960\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ikan\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ikan\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iliimbiliimveyazlmsistemlerisanvetica1617000555584\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iliimbiliimveyazlmsistemlerisanvetica1617000555584\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"illuminainc1586452220102\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/illuminainc1586452220102\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"image-technologies\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/image-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"imaginecommunications\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/imaginecommunications\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"imperva\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/imperva\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"impetustechnologiesinc1591959591877\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/impetustechnologiesinc1591959591877\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"imprivatainc1580479939967\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/imprivatainc1580479939967\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"incorta\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/incorta\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"incredibuild\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/incredibuild\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"indexima1594300233028\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/indexima1594300233028\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"industry-weapon\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/industry-weapon\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"industryweapon1587162781833\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/industryweapon1587162781833\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"inenprocesosyplataformasdetisderldecv1615482385424\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/inenprocesosyplataformasdetisderldecv1615482385424\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"inergybv1637141413454\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/inergybv1637141413454\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"infinitesoftwarecorporation1579223971125\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/infinitesoftwarecorporation1579223971125\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"infiotinc1614034091460\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/infiotinc1614034091460\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"influxdata\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/influxdata\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"infoblox\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/infoblox\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"infogix\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/infogix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"infolibrarian\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/infolibrarian\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"informatica\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/informatica\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"informationbuilders\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/informationbuilders\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"informationtechnologies_ltd_1179601\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/informationtechnologies_ltd_1179601\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"infotecsinternetsecuritysoftwaregmbh1636129257584\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/infotecsinternetsecuritysoftwaregmbh1636129257584\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"infront-consulting-group-ltd\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/infront-consulting-group-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"infscapeughaftungsbeschrnkt\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/infscapeughaftungsbeschrnkt\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ingenieurstudiohollaus1579587745438\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ingenieurstudiohollaus1579587745438\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ingrammicro\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ingrammicro\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"innomindssoftware\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/innomindssoftware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"innosepgmbh1618331344164\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/innosepgmbh1618331344164\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"innovatorartificialtechsrl1619180685551\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/innovatorartificialtechsrl1619180685551\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"innovtech\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/innovtech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"instight-technology\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/instight-technology\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"integration-objects\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/integration-objects\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"intel-bigdl\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/intel-bigdl\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"intel-fpga\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/intel-fpga\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"intellicus-technologies-pvt-ltd\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/intellicus-technologies-pvt-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"intelligent-plant-ltd\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/intelligent-plant-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"internationaltrustmachinescorporation1582190033865\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/internationaltrustmachinescorporation1582190033865\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"internet20inc1635882446190\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/internet20inc1635882446190\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"intersystems\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/intersystems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"intigua\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/intigua\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"intigua1638692632641\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/intigua1638692632641\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"introspecioltd1629872641188\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/introspecioltd1629872641188\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iofabric\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iofabric\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ipinfusion1590066770520\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ipinfusion1590066770520\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ipswitch\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ipswitch\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iqsol\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iqsol\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iquate\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iquate\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iquest\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iquest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"irion\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/irion\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ishlangu-load-balancer-adc\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ishlangu-load-balancer-adc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"issp-corporation\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/issp-corporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"isvtestukbigcat\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/isvtestukbigcat\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"isvtestuklegacy\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/isvtestuklegacy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"it4bizdoo\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/it4bizdoo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"itelios\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/itelios\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"itrsgroupltd1620310702149\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/itrsgroupltd1620310702149\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ivanti-inc-pcs\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ivanti-inc-pcs\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ivanti-nzta\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ivanti-nzta\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ivix1595238749040\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ivix1595238749040\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iwnamespace\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iwnamespace\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"izenda\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/izenda\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"jamcracker\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/jamcracker\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"javlinltd1579185328273\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/javlinltd1579185328273\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"jedox\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/jedox\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"jelastic\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/jelastic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"jetnexus\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/jetnexus\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"jetware-srl\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/jetware-srl\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"jfrog\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/jfrog\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"jm-technology-inc\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/jm-technology-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"jogetinc\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/jogetinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"johnsnowlabsinc1646051154808\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/johnsnowlabsinc1646051154808\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"juniper-networks\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/juniper-networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"justanalytics\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/justanalytics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kaazing\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kaazing\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kadenallc\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kadenallc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kali-linux\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kali-linux\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kalkitech\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kalkitech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kaminarioinc1588672951794\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kaminarioinc1588672951794\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Kaspersky.Lab\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Kaspersky.Lab\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"KasperskyLab.SecurityAgent\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/KasperskyLab.SecurityAgent\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kaspersky_lab\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kaspersky_lab\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kazendi\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kazendi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kelverion\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kelverion\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kemptech\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kemptech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kepion\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kepion\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"KevlarExtensions.M365Security.SecureOS\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/KevlarExtensions.M365Security.SecureOS\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"KevlarExtensions.M365SecurityHostIDS\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/KevlarExtensions.M365SecurityHostIDS\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"KevlarExtensions.M365SecurityInventory\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/KevlarExtensions.M365SecurityInventory\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"KevlarExtensions.M365SecurityInventory.NameChangeTest\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/KevlarExtensions.M365SecurityInventory.NameChangeTest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"KevlarExtensions.M365SecurityODL\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/KevlarExtensions.M365SecurityODL\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"KevlarExtensions.M365SecurityTLSExtension\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/KevlarExtensions.M365SecurityTLSExtension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kinetica\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kinetica\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kinvolk\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kinvolk\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"knime\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/knime\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kobalt\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kobalt\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kognillc1600118221163\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kognillc1600118221163\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kognitivsparkinc\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kognitivsparkinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"konginc1581527938760\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/konginc1581527938760\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"konsys-ltd\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/konsys-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"koverseinc1588716263110\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/koverseinc1588716263110\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kryonsystems\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kryonsystems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"krypc-technologies-pvt-ltd\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/krypc-technologies-pvt-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kyligence\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kyligence\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kyvos-insights-inc\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kyvos-insights-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lab3solutions\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lab3solutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lancom-systems\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lancom-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lansa\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lansa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lastline\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lastline\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"leap-orbit\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/leap-orbit\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lenovosoftware1604394104439\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lenovosoftware1604394104439\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"leostream-corporation\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/leostream-corporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lepide-software\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lepide-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"levacloudllc1602151818089\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/levacloudllc1602151818089\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"libelleag\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/libelleag\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"liberatii\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/liberatii\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"libraesva\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/libraesva\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"liebsoft\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/liebsoft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lightning-analyticsinc1582000647396\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lightning-analyticsinc1582000647396\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"linuxbasedsystemsdesignltd1580878904727\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/linuxbasedsystemsdesignltd1580878904727\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"liquid-files\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/liquid-files\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"liquidware\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/liquidware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"literatu\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/literatu\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"litespeedtechnologies\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/litespeedtechnologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"litespeed_technologies\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/litespeed_technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"litionenergiegmbh1580128829115\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/litionenergiegmbh1580128829115\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"litmusautomation1582760223280\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/litmusautomation1582760223280\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"llcitpro\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/llcitpro\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lnw-softgmbh\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lnw-softgmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"loadbalancer\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/loadbalancer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"logicflowag1638535407949\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/logicflowag1638535407949\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"logsign\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/logsign\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"logstarecorp1635838645101\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/logstarecorp1635838645101\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"logtrust\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/logtrust\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"logzio\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/logzio\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"looker\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/looker\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lotus_beta_analytics\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lotus_beta_analytics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lti-lt-infotech\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lti-lt-infotech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"luminate-security\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/luminate-security\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"M365Security.KevlarExtensions\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/M365Security.KevlarExtensions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"M365SecurityInventory\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/M365SecurityInventory\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"machinesense\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/machinesense\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"madhavajay1632269232059\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/madhavajay1632269232059\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"maidenhead-bridge\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/maidenhead-bridge\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"manageengine\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/manageengine\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mapd\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mapd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mapr-technologies\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mapr-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"marand\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/marand\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"marketplace-rdfe-caps\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/marketplace-rdfe-caps\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"marklogic\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/marklogic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"massiveanalytic-\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/massiveanalytic-\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mathworks-deployment\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mathworks-deployment\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mathworks-inc\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mathworks-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"matillion\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/matillion\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mavinglobal\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mavinglobal\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"McAfee.EndpointSecurity\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/McAfee.EndpointSecurity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"McAfee.EndpointSecurity.test3\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/McAfee.EndpointSecurity.test3\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"meanio\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/meanio\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"media3-adobe\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/media3-adobe\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"media3-technologies-llc\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/media3-technologies-llc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mediatekinc1586141563888\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mediatekinc1586141563888\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mendix\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mendix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"merlynnintelligencetechnologies\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/merlynnintelligencetechnologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"meshifyappinc1622759451429\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/meshifyappinc1622759451429\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"messagesolution\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/messagesolution\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"metaswitch\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/metaswitch\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mettainnovations-4900054\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mettainnovations-4900054\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mfe_azure\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mfe_azure\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mfiles\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mfiles\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mico\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mico\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"micro-focus\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/micro-focus\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microlinkpcukltd\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microlinkpcukltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microolap\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microolap\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsecpteltd1634010681688\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsecpteltd1634010681688\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-ads\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-ads\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-agci-gaming\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-agci-gaming\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-aks\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-aks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-avere\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-avere\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-azure-batch\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-azure-batch\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-azure-compute\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-azure-compute\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-azure-hdinsight\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-azure-hdinsight\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-crypto\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-crypto\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-dsvm\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-dsvm\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-hyperv\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-hyperv\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-minecraft\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-minecraft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AdminCenter\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AdminCenter\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AKS\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AKS\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.ActiveDirectory\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.ActiveDirectory\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.ActiveDirectory.LinuxSSH\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.ActiveDirectory.LinuxSSH\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Applications\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Applications\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Automation.HybridWorker\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Automation.HybridWorker\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Automation.HybridWorker.Test\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Automation.HybridWorker.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.AzureDefenderForServers\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.AzureDefenderForServers\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.AzureDefenderForSQL\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.AzureDefenderForSQL\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Backup.Test\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Backup.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Backup.Test.Edp\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Backup.Test.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.ChangeTracking\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.ChangeTracking\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.ChangeTracking.Test\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.ChangeTracking.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.ChangeTrackingAndInventory\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.ChangeTrackingAndInventory\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Chaos\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Chaos\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Compute.Security\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Compute.Security\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.ContainerUpstream\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.ContainerUpstream\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.DefenderForServers.Test\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.DefenderForServers.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.DefenderForServers.Test2\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.DefenderForServers.Test2\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Diagnostics\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Diagnostics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Diagnostics.Build.Test\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Diagnostics.Build.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Diagnostics.Edp\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Diagnostics.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Edp\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test012be407-61ea-4e45-a2c3-71a45999ca21-20191228083800\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test012be407-61ea-4e45-a2c3-71a45999ca21-20191228083800\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test01971384-3044-413b-8b1c-33b5d461bf23-20200107051823\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test01971384-3044-413b-8b1c-33b5d461bf23-20200107051823\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test0225ec7d-b36c-4ac8-82f0-aa4fafaf10a9-20200111051346\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test0225ec7d-b36c-4ac8-82f0-aa4fafaf10a9-20200111051346\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test025e16a1-328d-45a2-b7e3-71f7e4cde046-20191229064028\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test025e16a1-328d-45a2-b7e3-71f7e4cde046-20191229064028\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test02d1f941-5607-4757-8df7-fd8c5631ab45-20200103083810\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test02d1f941-5607-4757-8df7-fd8c5631ab45-20200103083810\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test039abd7f-360c-42a1-ad5d-77527c519286-20191002233412\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test039abd7f-360c-42a1-ad5d-77527c519286-20191002233412\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test04a0f157-c6fb-4595-b6ca-6c82a2338063-20200108101451\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test04a0f157-c6fb-4595-b6ca-6c82a2338063-20200108101451\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test0737f33e-63e0-4ba9-b04b-b93a1de4e997-20200106083639\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test0737f33e-63e0-4ba9-b04b-b93a1de4e997-20200106083639\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test0a44d7be-63fa-418d-a7b6-89a44dd21894-20200107052935\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test0a44d7be-63fa-418d-a7b6-89a44dd21894-20200107052935\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test0d01b487-7f79-4d87-b330-5c025068db45-20191004190331\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test0d01b487-7f79-4d87-b330-5c025068db45-20191004190331\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test0d643748-e6fe-41ad-b4d3-89a289a0cee0-20191003055620\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test0d643748-e6fe-41ad-b4d3-89a289a0cee0-20191003055620\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test0df83c51-5bb9-43f8-8ae9-bc896ea64f78-20200110220221\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test0df83c51-5bb9-43f8-8ae9-bc896ea64f78-20200110220221\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test0f02c246-7e65-4010-9367-ca4530c3897e-20191004190223\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test0f02c246-7e65-4010-9367-ca4530c3897e-20191004190223\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test157494ec-e788-43b0-8d26-a17e39ee07cc-20191002011945\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test157494ec-e788-43b0-8d26-a17e39ee07cc-20191002011945\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test1661d154-b623-4507-8a56-3a89812c456c-20200111083940\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test1661d154-b623-4507-8a56-3a89812c456c-20200111083940\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test17bbd860-f21d-40ab-9026-16e05f2907f0-20200106083451\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test17bbd860-f21d-40ab-9026-16e05f2907f0-20200106083451\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test194e2333-13cd-43e3-b0a4-c8cdcf1a3600-20200110211106\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test194e2333-13cd-43e3-b0a4-c8cdcf1a3600-20200110211106\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test1bc26b19-b8d8-41f9-a26d-818f277bdf93-20200101113139\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test1bc26b19-b8d8-41f9-a26d-818f277bdf93-20200101113139\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test1c840053-9213-4f2a-8f2e-9bf2297908bd-20200108101424\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test1c840053-9213-4f2a-8f2e-9bf2297908bd-20200108101424\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test1d7bba72-69f1-43cd-a38c-41ce0b5f4bae-20200109050041\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test1d7bba72-69f1-43cd-a38c-41ce0b5f4bae-20200109050041\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test1f7a8078-50e7-4a3a-91eb-d178fd4c403b-20191002233353\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test1f7a8078-50e7-4a3a-91eb-d178fd4c403b-20191002233353\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test1fef1fdc-57ba-46a8-a879-475ba7d45a7a-20200106083509\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test1fef1fdc-57ba-46a8-a879-475ba7d45a7a-20200106083509\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test21332f15-f78d-4d31-afac-79b9dc989432-20191231175840\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test21332f15-f78d-4d31-afac-79b9dc989432-20191231175840\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test22f10717-6939-4003-a9ce-38effd8b77d6-20191007191355\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test22f10717-6939-4003-a9ce-38effd8b77d6-20191007191355\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test2334e6e3-bb72-4241-a36f-c2429d69bc0b-20200106050834\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test2334e6e3-bb72-4241-a36f-c2429d69bc0b-20200106050834\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test24fa9eb5-1c59-4425-b61c-30fd638c2a45-20191003203802\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test24fa9eb5-1c59-4425-b61c-30fd638c2a45-20191003203802\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test2521a545-ed61-4a15-bed1-aba7ce1d81ee-20200106050804\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test2521a545-ed61-4a15-bed1-aba7ce1d81ee-20200106050804\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test25c6fe61-1282-43c2-867b-b5039219989c-20200105081851\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test25c6fe61-1282-43c2-867b-b5039219989c-20200105081851\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test27515c8c-6773-4f92-afb0-35691cc6e3b6-20200103083821\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test27515c8c-6773-4f92-afb0-35691cc6e3b6-20200103083821\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test28012680-48e7-4903-877f-2f29464e63d5-20191229033424\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test28012680-48e7-4903-877f-2f29464e63d5-20191229033424\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test29a7a529-d293-4728-9d7f-257ed996e64f-20200108081759\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test29a7a529-d293-4728-9d7f-257ed996e64f-20200108081759\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test2a5f2d2c-b8e3-46c2-850d-a1641c024fe7-20200107084228\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test2a5f2d2c-b8e3-46c2-850d-a1641c024fe7-20200107084228\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test2ce856af-ab17-48f2-ba3e-bcd9af091061-20200110013246\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test2ce856af-ab17-48f2-ba3e-bcd9af091061-20200110013246\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test2e012e83-6361-4365-963f-6ced8a08e91c-20200110211254\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test2e012e83-6361-4365-963f-6ced8a08e91c-20200110211254\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test2ecf67b2-fb63-4461-b6a6-7026c4fb1168-20191002214026\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test2ecf67b2-fb63-4461-b6a6-7026c4fb1168-20191002214026\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test2ede6564-c7cc-44cb-a1a8-902505c9829d-20191003020742\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test2ede6564-c7cc-44cb-a1a8-902505c9829d-20191003020742\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test2f4ebc17-e27e-48d9-9cc3-ff933c21884e-20200106092410\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test2f4ebc17-e27e-48d9-9cc3-ff933c21884e-20200106092410\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test349ee02c-af9b-4663-a963-823b40eefed8-20200108083612\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test349ee02c-af9b-4663-a963-823b40eefed8-20200108083612\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test34cf6b13-b78e-478b-b596-8b661629371d-20191007195455\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test34cf6b13-b78e-478b-b596-8b661629371d-20191007195455\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test36cc5b60-2b23-4a04-bf95-f7865e1141cf-20200110085718\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test36cc5b60-2b23-4a04-bf95-f7865e1141cf-20200110085718\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3712fca9-5cdd-4609-be69-b02aedc5c55c-20200107084115\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3712fca9-5cdd-4609-be69-b02aedc5c55c-20200107084115\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3772d042-92e2-4bcb-99b7-8a6a119cc088-20191231182808\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3772d042-92e2-4bcb-99b7-8a6a119cc088-20191231182808\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test37a6dd64-d44d-465e-85bc-3bc38be90350-20200104083535\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test37a6dd64-d44d-465e-85bc-3bc38be90350-20200104083535\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test381074d5-7156-472b-801a-b35f8fef4cc6-20200105050612\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test381074d5-7156-472b-801a-b35f8fef4cc6-20200105050612\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3877a44d-4c48-40db-80eb-227272d5acd6-20200110103540\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3877a44d-4c48-40db-80eb-227272d5acd6-20200110103540\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test38ecd28e-7018-4672-840c-3044a5e7a6b5-20200111084208\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test38ecd28e-7018-4672-840c-3044a5e7a6b5-20200111084208\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test395a0b49-442a-450c-8a1f-65b0aa3bcf47-20200105083839\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test395a0b49-442a-450c-8a1f-65b0aa3bcf47-20200105083839\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3971b300-edff-44a8-b61b-7f9b7460a8d6-20191003002234\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3971b300-edff-44a8-b61b-7f9b7460a8d6-20191003002234\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3adeec20-7458-4b3d-af26-0b6bc2aae3eb-20200103083751\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3adeec20-7458-4b3d-af26-0b6bc2aae3eb-20200103083751\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3b20dd96-f3e4-4798-998d-8c433c2449a7-20200108083635\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3b20dd96-f3e4-4798-998d-8c433c2449a7-20200108083635\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3ce2fd4a-8b5a-4c7e-b08d-3e48fc0f45e7-20200104083825\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3ce2fd4a-8b5a-4c7e-b08d-3e48fc0f45e7-20200104083825\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3d499ca7-cc8d-41cc-a6dc-ffb1a4ac4942-20200107053004\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3d499ca7-cc8d-41cc-a6dc-ffb1a4ac4942-20200107053004\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3db7240e-5e42-4d6d-b024-cc9fce3c828b-20200105083520\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3db7240e-5e42-4d6d-b024-cc9fce3c828b-20200105083520\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3f6b7341-635f-48d5-a36d-be5dfe3002c4-20200105050937\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3f6b7341-635f-48d5-a36d-be5dfe3002c4-20200105050937\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3fc26934-ede2-4482-ad5e-f66f6135d4a6-20191228055558\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3fc26934-ede2-4482-ad5e-f66f6135d4a6-20191228055558\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test406d077c-6017-4062-bc96-f809147a2331-20200106050748\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test406d077c-6017-4062-bc96-f809147a2331-20200106050748\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test4302336c-e039-4e70-bcb6-9275f6089e4a-20200108144821\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test4302336c-e039-4e70-bcb6-9275f6089e4a-20200108144821\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test453a087e-8435-46db-970a-4ee633cc4c4a-20200102083458\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test453a087e-8435-46db-970a-4ee633cc4c4a-20200102083458\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test46b73afa-2259-4aff-81e1-a58bf24b59aa-20191229033459\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test46b73afa-2259-4aff-81e1-a58bf24b59aa-20191229033459\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test4a3399ee-82ea-46aa-9e3a-5434b588e3b6-20191228013518\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test4a3399ee-82ea-46aa-9e3a-5434b588e3b6-20191228013518\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test4eb7a185-527b-4b9f-93a8-7f1cec9d062e-20191231151207\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test4eb7a185-527b-4b9f-93a8-7f1cec9d062e-20191231151207\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test520a0915-f9f0-4da4-9fa1-1b74fc1470aa-20200102083505\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test520a0915-f9f0-4da4-9fa1-1b74fc1470aa-20200102083505\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test5397960f-023b-4979-9a8b-800d049045a4-20191007195417\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test5397960f-023b-4979-9a8b-800d049045a4-20191007195417\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test55a36387-8a3f-4159-9884-29b97539a253-20200109080443\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test55a36387-8a3f-4159-9884-29b97539a253-20200109080443\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test5645f186-4ee5-4209-af37-423660e3318c-20191231175947\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test5645f186-4ee5-4209-af37-423660e3318c-20191231175947\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test58b4461d-4d2d-4395-b6d2-ab83d4d8c62f-20200111001002\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test58b4461d-4d2d-4395-b6d2-ab83d4d8c62f-20200111001002\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test5b0bf447-d98d-429d-8334-c032d197c743-20191003203846\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test5b0bf447-d98d-429d-8334-c032d197c743-20191003203846\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test5bc90367-1ea2-400b-a40c-321081bae3f3-20200108145035\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test5bc90367-1ea2-400b-a40c-321081bae3f3-20200108145035\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test5bd0562f-e939-456f-a6ee-c848d1aba616-20200101151641\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test5bd0562f-e939-456f-a6ee-c848d1aba616-20200101151641\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test5e4efe90-916c-4c96-802c-1508a5b6da78-20191231151150\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test5e4efe90-916c-4c96-802c-1508a5b6da78-20191231151150\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test5f8f0c10-cc3c-45ec-a068-fb1c7edfa0d9-20200101145958\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test5f8f0c10-cc3c-45ec-a068-fb1c7edfa0d9-20200101145958\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test60a000b7-286c-4b2b-9137-bbc088736419-20200108144920\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test60a000b7-286c-4b2b-9137-bbc088736419-20200108144920\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test6192a01b-ba47-4d08-904a-71647a49a112-20191008041625\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test6192a01b-ba47-4d08-904a-71647a49a112-20191008041625\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test62835538-89c6-4f66-9034-f7a4b176c615-20191007234245\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test62835538-89c6-4f66-9034-f7a4b176c615-20191007234245\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test651e4ad2-ee4a-462e-a506-b56b1969f5d0-20200110230749\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test651e4ad2-ee4a-462e-a506-b56b1969f5d0-20200110230749\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test691d94e5-c40c-4568-94b0-09b08aea42b1-20200106050808\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test691d94e5-c40c-4568-94b0-09b08aea42b1-20200106050808\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test6aa3643c-011a-4180-877f-cad955a8e664-20191007234642\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test6aa3643c-011a-4180-877f-cad955a8e664-20191007234642\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test6cfb469b-8478-468f-9bb5-691affd32abb-20200107083803\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test6cfb469b-8478-468f-9bb5-691affd32abb-20200107083803\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test6d36b6b2-7956-4e62-91c1-c33792fd4bb1-20200110123203\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test6d36b6b2-7956-4e62-91c1-c33792fd4bb1-20200110123203\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test6e28168e-a9c8-4c0a-8b40-60c2a1502d43-20200108052802\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test6e28168e-a9c8-4c0a-8b40-60c2a1502d43-20200108052802\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test6eb763ac-7fbe-4e44-bee7-aad035ee2a7d-20200110084429\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test6eb763ac-7fbe-4e44-bee7-aad035ee2a7d-20200110084429\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test6efec253-f625-46f0-9d74-324f69e963d8-20200107070514\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test6efec253-f625-46f0-9d74-324f69e963d8-20200107070514\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test70fa7e4c-3122-4ff7-aec6-fe75ab660a01-20200108105900\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test70fa7e4c-3122-4ff7-aec6-fe75ab660a01-20200108105900\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test710a5fbf-06c7-46ac-b96d-a29d2586422f-20200108083639\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test710a5fbf-06c7-46ac-b96d-a29d2586422f-20200108083639\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test71d72489-67c6-45e2-b1e6-a19546efc823-20200105112903\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test71d72489-67c6-45e2-b1e6-a19546efc823-20200105112903\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test721fccf1-2b3e-44b6-908f-51b910e88b09-20200111104931\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test721fccf1-2b3e-44b6-908f-51b910e88b09-20200111104931\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test742d0189-9e41-4f1b-8ad3-31c05d34903b-20200111103247\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test742d0189-9e41-4f1b-8ad3-31c05d34903b-20200111103247\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test7836a97c-f56e-48d0-8b5d-61e79aeb3226-20200111071656\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7836a97c-f56e-48d0-8b5d-61e79aeb3226-20200111071656\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test78666b2e-25c8-4a48-931a-3131a0317d73-20191002194352\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test78666b2e-25c8-4a48-931a-3131a0317d73-20191002194352\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test79f13508-fcbd-47b9-988f-1c21ef5e7f2e-20191002015429\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test79f13508-fcbd-47b9-988f-1c21ef5e7f2e-20191002015429\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test79fb90ce-4691-4212-99a7-6e4069bd5984-20191007234256\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test79fb90ce-4691-4212-99a7-6e4069bd5984-20191007234256\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test7a8cf687-6a21-4181-ba98-902fee717bd3-20200104103216\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7a8cf687-6a21-4181-ba98-902fee717bd3-20200104103216\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test7aabf813-6644-483a-b9e0-ba6f8973ba1f-20191002232822\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7aabf813-6644-483a-b9e0-ba6f8973ba1f-20191002232822\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test7c96c10a-0c8f-4ab0-83fd-1ad66a362e33-20191229033458\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7c96c10a-0c8f-4ab0-83fd-1ad66a362e33-20191229033458\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test7e79b6ff-2559-44fe-b3ba-afaa68d63636-20200108112116\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7e79b6ff-2559-44fe-b3ba-afaa68d63636-20200108112116\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test7ea372f7-ea7e-4b9e-bbad-4f35c1567aa2-20200108052736\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7ea372f7-ea7e-4b9e-bbad-4f35c1567aa2-20200108052736\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test7fac3d04-98a5-4fc4-904e-9ea3b86eadc2-20200106050751\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7fac3d04-98a5-4fc4-904e-9ea3b86eadc2-20200106050751\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test7fe20dd6-9ed9-4126-bb1d-031c01ac4550-20200101114504\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7fe20dd6-9ed9-4126-bb1d-031c01ac4550-20200101114504\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test7ff974d9-c841-4249-b05b-bbf663cb4605-20200106084104\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7ff974d9-c841-4249-b05b-bbf663cb4605-20200106084104\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test815bd4d5-fc24-4a47-be20-063c4809902c-20200109050508\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test815bd4d5-fc24-4a47-be20-063c4809902c-20200109050508\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test817654d0-2109-4d95-9284-8c8a9d960d08-20200108053758\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test817654d0-2109-4d95-9284-8c8a9d960d08-20200108053758\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test821ca3b6-dd05-4e80-b3d8-74ba03b2609b-20191231151151\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test821ca3b6-dd05-4e80-b3d8-74ba03b2609b-20191231151151\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test8285dc3e-637d-4d46-9695-adc39cbe7d2f-20200108144457\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test8285dc3e-637d-4d46-9695-adc39cbe7d2f-20200108144457\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test828aae03-9239-4938-a303-c23c42311878-20200102083419\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test828aae03-9239-4938-a303-c23c42311878-20200102083419\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test84afd814-5098-49ab-af99-e50350b5898b-20200110211134\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test84afd814-5098-49ab-af99-e50350b5898b-20200110211134\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test85b08563-b15f-4202-a0bc-f2bc2df2c71a-20200107053335\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test85b08563-b15f-4202-a0bc-f2bc2df2c71a-20200107053335\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test88aac268-c087-4481-b78e-99b920784a33-20200101084853\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test88aac268-c087-4481-b78e-99b920784a33-20200101084853\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test88dbd442-a8cc-4874-81a0-d3192c61df62-20191001224544\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test88dbd442-a8cc-4874-81a0-d3192c61df62-20191001224544\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test894dfb75-a00f-4f0c-894c-cae1c9846ad3-20200105051803\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test894dfb75-a00f-4f0c-894c-cae1c9846ad3-20200105051803\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test8d09bf4d-ee63-4ab1-a986-a4b802418403-20200111051447\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test8d09bf4d-ee63-4ab1-a986-a4b802418403-20200111051447\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test8d4d652b-4f05-4e99-93dd-78b9a36b5c78-20191003203755\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test8d4d652b-4f05-4e99-93dd-78b9a36b5c78-20191003203755\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test8de64739-43d8-4f84-af65-fdb3d0885288-20200108053543\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test8de64739-43d8-4f84-af65-fdb3d0885288-20200108053543\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test8e324c65-a51d-4eeb-9ec8-d5f8662dc041-20191228165107\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test8e324c65-a51d-4eeb-9ec8-d5f8662dc041-20191228165107\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test8e564580-8e53-4300-85f1-bf7f31dd37ff-20200107013348\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test8e564580-8e53-4300-85f1-bf7f31dd37ff-20200107013348\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test8f458ca7-8898-4d58-b93d-bfb0c3da028c-20200109050310\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test8f458ca7-8898-4d58-b93d-bfb0c3da028c-20200109050310\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test901cd6ca-5565-4552-a3de-d204d01935c0-20200108083706\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test901cd6ca-5565-4552-a3de-d204d01935c0-20200108083706\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test907b39e5-4008-4b55-93a0-18e9697b9cf3-20200108053817\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test907b39e5-4008-4b55-93a0-18e9697b9cf3-20200108053817\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test90c2be7c-d7ec-4abf-9fad-fef90fc3ef4d-20191004022234\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test90c2be7c-d7ec-4abf-9fad-fef90fc3ef4d-20191004022234\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test922db678-6ee8-43d5-86ff-6a86e132d332-20200107085231\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test922db678-6ee8-43d5-86ff-6a86e132d332-20200107085231\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test93b88aec-5277-4b1b-910c-7008e972ce91-20200107013304\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test93b88aec-5277-4b1b-910c-7008e972ce91-20200107013304\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test95a9104b-6cba-42d8-82ff-cc37e5ac44db-20200108081723\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test95a9104b-6cba-42d8-82ff-cc37e5ac44db-20200108081723\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test96da1605-19e0-46eb-9ce0-53e840f5e2cb-20200101111729\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test96da1605-19e0-46eb-9ce0-53e840f5e2cb-20200101111729\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test996066b2-7d29-400f-929b-e343a21046f7-20191231151212\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test996066b2-7d29-400f-929b-e343a21046f7-20191231151212\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test99663fff-ed21-4a91-9687-1a6da2abb033-20200106084508\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test99663fff-ed21-4a91-9687-1a6da2abb033-20200106084508\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test9eb5efa5-c3c1-4c13-80a6-11f5eba67372-20200108144852\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test9eb5efa5-c3c1-4c13-80a6-11f5eba67372-20200108144852\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testa3791896-b1fc-491e-ba0d-aefcd8d9e52a-20200105083503\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testa3791896-b1fc-491e-ba0d-aefcd8d9e52a-20200105083503\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testa37ff709-a078-45a0-8187-41733df8e101-20200109050003\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testa37ff709-a078-45a0-8187-41733df8e101-20200109050003\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testa4c5fe4e-936e-4be1-a612-a331aff54a8c-20200111105055\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testa4c5fe4e-936e-4be1-a612-a331aff54a8c-20200111105055\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testa59bce1d-e32c-423d-a86e-945d4aeb98b4-20200107051821\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testa59bce1d-e32c-423d-a86e-945d4aeb98b4-20200107051821\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testa604c059-8279-4f4d-a354-eec27222a06c-20200111051514\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testa604c059-8279-4f4d-a354-eec27222a06c-20200111051514\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testa71fefb1-0d9c-4fb3-8d3d-5dcd12d72b77-20200103103221\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testa71fefb1-0d9c-4fb3-8d3d-5dcd12d72b77-20200103103221\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testa748013d-c5a6-44f9-88eb-43167207c742-20200111051402\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testa748013d-c5a6-44f9-88eb-43167207c742-20200111051402\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testaab67022-4f2b-420d-a06a-2c4045110cdf-20191229033144\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testaab67022-4f2b-420d-a06a-2c4045110cdf-20191229033144\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testacab9541-280f-4491-9f49-ac57653f0a07-20200105083839\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testacab9541-280f-4491-9f49-ac57653f0a07-20200105083839\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testad298437-0349-4cc7-88a9-d8aabcba9df1-20191002233431\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testad298437-0349-4cc7-88a9-d8aabcba9df1-20191002233431\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testadd68286-f9e0-4ab1-a526-d8f3cf0f054e-20200105084128\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testadd68286-f9e0-4ab1-a526-d8f3cf0f054e-20200105084128\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testade4c52b-18f5-4b67-8e93-945358ce4f7d-20191007234259\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testade4c52b-18f5-4b67-8e93-945358ce4f7d-20191007234259\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testae421c1d-0211-4ef2-b372-564ce8ad484a-20200110104035\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testae421c1d-0211-4ef2-b372-564ce8ad484a-20200110104035\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testafbbd8bf-aec5-48bf-8fea-73fa15ccc315-20191001224727\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testafbbd8bf-aec5-48bf-8fea-73fa15ccc315-20191001224727\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testb15148bf-78d2-42d4-ad08-b3ad8fb4b122-20200101084759\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testb15148bf-78d2-42d4-ad08-b3ad8fb4b122-20200101084759\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testb4237708-3688-40ea-85a2-275c05f4d100-20191228083519\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testb4237708-3688-40ea-85a2-275c05f4d100-20191228083519\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testb799a18f-be45-4c5c-8438-163ac2e1f1e7-20191004190529\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testb799a18f-be45-4c5c-8438-163ac2e1f1e7-20191004190529\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testb7cee88a-e5ac-4af4-99c8-7247020b00c3-20200105051201\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testb7cee88a-e5ac-4af4-99c8-7247020b00c3-20200105051201\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testb7df0d9a-27c0-4ca5-b692-08dd90387b98-20200111083443\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testb7df0d9a-27c0-4ca5-b692-08dd90387b98-20200111083443\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testbbf6bf32-4bd0-4381-b8f7-2658f585df4d-20191003203846\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testbbf6bf32-4bd0-4381-b8f7-2658f585df4d-20191003203846\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testbeea1376-166a-4b1a-8923-c907cc9737d9-20200107013336\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testbeea1376-166a-4b1a-8923-c907cc9737d9-20200107013336\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testbf9154e9-6166-48c2-86fe-1f331be606d7-20200107051823\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testbf9154e9-6166-48c2-86fe-1f331be606d7-20200107051823\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc0d7c3c5-23b8-489c-a5e0-ae87c681b696-20200101083539\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc0d7c3c5-23b8-489c-a5e0-ae87c681b696-20200101083539\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc193f31a-5186-4e93-84f6-0e4ab87b73c1-20200107052937\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc193f31a-5186-4e93-84f6-0e4ab87b73c1-20200107052937\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc1c7e8dc-fa8c-47d9-8305-de6d1451b939-20200101085248\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc1c7e8dc-fa8c-47d9-8305-de6d1451b939-20200101085248\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc1d0c917-e2ae-430c-a2ca-383fb0fda046-20191007235839\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc1d0c917-e2ae-430c-a2ca-383fb0fda046-20191007235839\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc23a3fbb-6e95-4c0d-94fc-c8ab14dddf1c-20191231151117\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc23a3fbb-6e95-4c0d-94fc-c8ab14dddf1c-20191231151117\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc2697630-6247-411a-94b3-c2974ad8cbee-20191007195417\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc2697630-6247-411a-94b3-c2974ad8cbee-20191007195417\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc466b80f-670f-4383-89b8-44e0d509fa20-20191002000516\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc466b80f-670f-4383-89b8-44e0d509fa20-20191002000516\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc5c8d9bd-75fa-4db3-9f34-5d7b7098584c-20191003203851\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc5c8d9bd-75fa-4db3-9f34-5d7b7098584c-20191003203851\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc8b6d14b-a5db-48e0-bfad-a2818d432bea-20200104083443\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc8b6d14b-a5db-48e0-bfad-a2818d432bea-20200104083443\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc933efa8-c553-4b93-884f-b7221d9ca789-20191228083750\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc933efa8-c553-4b93-884f-b7221d9ca789-20191228083750\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testcbe8ab80-46ef-49b1-a7bb-4e3d6e50e49f-20200104050811\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testcbe8ab80-46ef-49b1-a7bb-4e3d6e50e49f-20200104050811\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testccc0b5e6-9b0d-451a-8ac4-6f4af293b913-20200106092645\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testccc0b5e6-9b0d-451a-8ac4-6f4af293b913-20200106092645\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testcec64786-04b1-487c-80ec-050da646fb1c-20191005123412\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testcec64786-04b1-487c-80ec-050da646fb1c-20191005123412\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testd104a52f-eba2-401d-8e7f-a841c90f7712-20191228083553\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testd104a52f-eba2-401d-8e7f-a841c90f7712-20191228083553\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testd724cea4-0d3c-4539-b2ff-be08fb23a67e-20200107083714\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testd724cea4-0d3c-4539-b2ff-be08fb23a67e-20200107083714\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testd8e60bac-27ff-4fba-90b8-732c9c5ff91c-20191228083751\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testd8e60bac-27ff-4fba-90b8-732c9c5ff91c-20191228083751\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testd99db4a5-7683-4584-89ad-fefd711de284-20191004190210\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testd99db4a5-7683-4584-89ad-fefd711de284-20191004190210\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testd9b4309a-67bc-4cd8-ac47-094cb20ca6aa-20200101090202\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testd9b4309a-67bc-4cd8-ac47-094cb20ca6aa-20200101090202\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testda3320e0-28f2-4146-a002-e06296362711-20191004190115\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testda3320e0-28f2-4146-a002-e06296362711-20191004190115\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testda714121-3240-4253-90c3-48c43f115c90-20200102083419\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testda714121-3240-4253-90c3-48c43f115c90-20200102083419\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testdb357558-60b4-4ee3-9ec3-ba22c5d827fb-20191004020617\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testdb357558-60b4-4ee3-9ec3-ba22c5d827fb-20191004020617\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testdc7230e9-df6d-4edd-a57c-ef7e0432c463-20191002011345\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testdc7230e9-df6d-4edd-a57c-ef7e0432c463-20191002011345\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testdccb59de-436f-4935-bed6-2e677dcaf36a-20200109111802\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testdccb59de-436f-4935-bed6-2e677dcaf36a-20200109111802\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testde985b23-9333-4f6e-a5e8-82025a38b2af-20200102083510\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testde985b23-9333-4f6e-a5e8-82025a38b2af-20200102083510\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Teste271da3e-cbcb-4ee7-8770-f297f414451f-20191003015540\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Teste271da3e-cbcb-4ee7-8770-f297f414451f-20191003015540\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Teste4070edd-aec0-455d-8a79-aecdb7170b6d-20191007234642\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Teste4070edd-aec0-455d-8a79-aecdb7170b6d-20191007234642\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Teste42f351a-4da0-4f0d-93e9-ef1d98e06659-20200108083633\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Teste42f351a-4da0-4f0d-93e9-ef1d98e06659-20200108083633\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Teste66ca23c-f4bf-4eb3-8418-139364d19e7d-20200107062643\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Teste66ca23c-f4bf-4eb3-8418-139364d19e7d-20200107062643\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Teste78b1ab2-1380-48ab-9923-0276cdb7198b-20191001224742\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Teste78b1ab2-1380-48ab-9923-0276cdb7198b-20191001224742\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Teste8607e14-b4f8-472a-bd5b-893b8d9612e6-20200112045941\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Teste8607e14-b4f8-472a-bd5b-893b8d9612e6-20200112045941\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Teste980b80e-3add-42c0-bc98-a84020b2d128-20200108101640\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Teste980b80e-3add-42c0-bc98-a84020b2d128-20200108101640\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Tested79dba9-2d38-4ea9-a01c-56e94b30ca7a-20191007195447\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Tested79dba9-2d38-4ea9-a01c-56e94b30ca7a-20191007195447\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testee9dcf5f-f7c4-4192-a8f4-28e9bc7d0f7c-20191001225005\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testee9dcf5f-f7c4-4192-a8f4-28e9bc7d0f7c-20191001225005\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testefbb340a-b68b-4200-872b-d05e7d29f92d-20191007195432\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testefbb340a-b68b-4200-872b-d05e7d29f92d-20191007195432\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testf1fc0559-6740-48dd-9501-2b933c731d52-20200103083458\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testf1fc0559-6740-48dd-9501-2b933c731d52-20200103083458\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testf41dfc97-bb51-4fba-86ca-a6f2695c415a-20200107050834\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testf41dfc97-bb51-4fba-86ca-a6f2695c415a-20200107050834\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testf5784447-83ed-4c00-8764-ea0f932aafa2-20200106085748\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testf5784447-83ed-4c00-8764-ea0f932aafa2-20200106085748\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testf6128ef6-c13c-420e-8088-0710888ce88b-20200109050003\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testf6128ef6-c13c-420e-8088-0710888ce88b-20200109050003\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testf863ab2c-ada9-4646-84c7-1f83a82375d7-20191229033226\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testf863ab2c-ada9-4646-84c7-1f83a82375d7-20191229033226\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testfac552a7-418f-4baa-8f51-d199ceff5c68-20200103050817\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testfac552a7-418f-4baa-8f51-d199ceff5c68-20200103050817\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testfb7be054-5c15-494f-822c-b64f9a36e2f3-20200105051753\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testfb7be054-5c15-494f-822c-b64f9a36e2f3-20200105051753\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testfc5c7585-6c9a-4aa4-a7c4-1223a94e00c7-20200104083552\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testfc5c7585-6c9a-4aa4-a7c4-1223a94e00c7-20200104083552\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.FileServer.Edp\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.FileServer.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Geneva\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Geneva\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.KeyVault\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.KeyVault\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.KeyVault.Edp\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.KeyVault.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.LabServices\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.LabServices\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.LabServices.test\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.LabServices.test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.Agent\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.Agent\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.Edp\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.Dev\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.Dev\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.Dev.INT\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.Dev.INT\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.Dev.SCALE\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.Dev.SCALE\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.Dev.TEST\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.Dev.TEST\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.GuestHealth\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.GuestHealth\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.DEV\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.DEV\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.INT\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.INT\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.SCALE\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.SCALE\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.TEST\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.TEST\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.INT.Dev\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.INT.Dev\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.SCALE.Dev\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.SCALE.Dev\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.TEST.Dev\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.TEST.Dev\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.WorkloadInsights.Test\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.WorkloadInsights.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.WorkloadInsightsTest.newnamespace\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.WorkloadInsightsTest.newnamespace\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.Workloads\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.Workloads\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.Workloads.Dev\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.Workloads.Dev\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitoring.DependencyAgent\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitoring.DependencyAgent\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitoring.DependencyAgent.Edp\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitoring.DependencyAgent.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Networking.DNS\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Networking.DNS\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Networking.SDN\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Networking.SDN\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.NetworkWatcher\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.NetworkWatcher\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.NetworkWatcher.Test\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.NetworkWatcher.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.OpenSSH\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.OpenSSH\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Performance.Diagnostics\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Performance.Diagnostics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Performance.Diagnostics.Edp\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Performance.Diagnostics.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.RecoveryServices\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices.Edp\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.RecoveryServices.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices.SiteRecovery\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.RecoveryServices.SiteRecovery\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices.SiteRecovery2\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.RecoveryServices.SiteRecovery2\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices.WorkloadBackup\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.RecoveryServices.WorkloadBackup\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices.WorkloadBackup.Edp\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.RecoveryServices.WorkloadBackup.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.AntimalwareSignature\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.AntimalwareSignature\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.AntimalwareSignature.Edp\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.AntimalwareSignature.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.Dsms\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.Dsms\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.Dsms.Edp\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.Dsms.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.Edp\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.LinuxAttestation\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.LinuxAttestation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.LinuxTestAttestation\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.LinuxTestAttestation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.Monitoring\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.Monitoring\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.Monitoring.Test\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.Monitoring.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.Monitoring.Testing\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.Monitoring.Testing\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.Test\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.TestWindowsAttestation\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.TestWindowsAttestation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.WindowsAttestation\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.WindowsAttestation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.WinTestAttestation\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.WinTestAttestation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Sentinel.DnsExtension.Dev\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Sentinel.DnsExtension.Dev\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.ServiceFabric.MC\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.ServiceFabric.MC\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.ServiceFabric.MC.Test\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.ServiceFabric.MC.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.SiteRecovery.Stage\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.SiteRecovery.Stage\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.SiteRecovery.Test\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.SiteRecovery.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.SiteRecovery2.Test\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.SiteRecovery2.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Test.Identity\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Test.Identity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WindowsFabric.Test\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WindowsFabric.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.ReleasePipeTest\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.ReleasePipeTest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.ReleasePipeTest.INT\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.ReleasePipeTest.INT\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.ReleasePipeTest.TEST\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.ReleasePipeTest.TEST\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test1\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test2\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test2\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test3\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test3\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test4\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test4\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test5\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test5\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test5.INT\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test5.INT\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test5.TEST\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test5.TEST\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.VincentTest\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.VincentTest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.VincentTest2\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.VincentTest2\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.VincentTest3\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.VincentTest3\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.VincentTest4\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.VincentTest4\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Test\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.TestTest\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.TestTest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.TestTest.INT\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.TestTest.INT\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.TestTest.TEST\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.TestTest.TEST\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Windows.ReleasePipeTest.INT\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Windows.ReleasePipeTest.INT\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Windows.ReleasePipeTest.TEST\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Windows.ReleasePipeTest.TEST\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoring\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring.Test\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoring.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoringTest\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoringTest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureData\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureData\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureData.Test\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureData.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.Canary\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights.Canary\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.Corp\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights.Corp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.Linux.Test\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights.Linux.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.LinuxTest\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights.LinuxTest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.Meya0206\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights.Meya0206\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.MeyaCorp\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights.MeyaCorp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.Test\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.Testing\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights.Testing\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureSecurity.JITAccess\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureSecurity.JITAccess\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.CloudBackup.Workload.Extension\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.CloudBackup.Workload.Extension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.CloudBackup.Workload.Extension.Edp\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.CloudBackup.Workload.Extension.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Compute\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Compute.Test\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Compute.TestSar\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute.TestSar\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.CPlat.Core\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.CPlat.Core\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.CPlat.Core.Edp\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.CPlat.Core.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Dcsswe.Extensions\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Dcsswe.Extensions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.EnterpriseCloud.Monitoring\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring.Edp\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.EnterpriseCloud.Monitoring.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring.Test\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.EnterpriseCloud.Monitoring.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Golive.Extensions\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Golive.Extensions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.GuestConfig.Test\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.GuestConfig.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.GuestConfiguration\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.GuestConfiguration\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.GuestConfiguration.Edp\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.GuestConfiguration.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.GuestConfiguration.Test\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.GuestConfiguration.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.HpcCompute\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.HpcCompute\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.HpcCompute.Edp\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.HpcCompute.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.HpcPack\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.HpcPack\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Interceptor\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Interceptor\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.M365\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.M365\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.M365SecurityConfiguration.Kevlar.Test\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.M365SecurityConfiguration.Kevlar.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.ManagedIdentity\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.ManagedIdentity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.ManagedServices\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.ManagedServices\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.ManagedServices.Edp\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.ManagedServices.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.MonitoringAgent.Extension\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.MonitoringAgent.Extension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Network\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Network\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.OSTCExtensions\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.OSTCExtensions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.OSTCExtensions.Edp\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.OSTCExtensions.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.OSTCExtensions.Test\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.OSTCExtensions.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.OSTCExtensions.Testing\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.OSTCExtensions.Testing\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Powershell\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Powershell\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Powershell.Test\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Powershell.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Powershell.Test01\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Powershell.Test01\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.SecurityManagement.Kevlar\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.SecurityManagement.Kevlar\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Sentinel.AzureMonitorAgentExtensions\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Sentinel.AzureMonitorAgentExtensions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.SoftwareUpdateManagement\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.SoftwareUpdateManagement\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.SoftwareUpdateManagement.Test\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.SoftwareUpdateManagement.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.SqlServer.Managability.IaaS.Test\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.SqlServer.Managability.IaaS.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.SqlServer.Management\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.SqlServer.Management\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.SqlServer.Management.Test\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.SqlServer.Management.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.SystemCenter\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.SystemCenter\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.SystemCenter.Test\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.SystemCenter.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Test.Azure.Workloads\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Test.Azure.Workloads\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.TestSqlServer.Edp\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.TestSqlServer.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.ETWTraceListenerService\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.Azure.ETWTraceListenerService\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.RemoteDebug\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.Azure.RemoteDebug\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.RemoteDebug.Json\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.Azure.RemoteDebug.Json\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.ServiceProfiler\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.ServiceProfiler\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.Services\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.Services\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.WindowsAzure.DevTest\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.WindowsAzure.DevTest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.WindowsAzure.DevTest.Test\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.WindowsAzure.DevTest.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.WindowsAzure.RemoteDebug\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.WindowsAzure.RemoteDebug\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.WindowsAzure.Test.RemoteDebug\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.WindowsAzure.Test.RemoteDebug\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Windows.Azure.Extensions\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Windows.Azure.Extensions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Windows.AzureRemoteApp.Test\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Windows.AzureRemoteApp.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Windows.RemoteDesktop\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Windows.RemoteDesktop\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.WindowsAdminCenter\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.WindowsAdminCenter\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.WindowsAdminCenter.Test\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.WindowsAdminCenter.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.WindowsAzure.Compute\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.WindowsAzure.Compute\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.WindowsAzure.Compute.test\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.WindowsAzure.Compute.test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.WVD\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.WVD\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoftagciuk\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoftagciuk\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoftazurecituswarp\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoftazurecituswarp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftAzureSiteRecovery\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftAzureSiteRecovery\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftBizTalkServer\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftBizTalkServer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftCBLMariner\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftCBLMariner\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoftcmotest\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoftcmotest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoftcorporation1602274591143\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoftcorporation1602274591143\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoftcorporation1620407702632\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoftcorporation1620407702632\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftDynamicsAX\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftDynamicsAX\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftDynamicsGP\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftDynamicsGP\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftDynamicsNAV\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftDynamicsNAV\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoftfarmbeats\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoftfarmbeats\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftHybridCloudStorage\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftHybridCloudStorage\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftOSTC\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftOSTC\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftPowerBI\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftPowerBI\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftRServer\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftRServer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftSharePoint\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftSharePoint\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftSQLServer\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftSQLServer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftTestLinuxPPS\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftTestLinuxPPS\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftVisualStudio\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftVisualStudio\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftWindowsDesktop\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsDesktop\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftWindowsServer\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsServer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftWindowsServerHPCPack\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsServerHPCPack\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft_iot_edge\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft_iot_edge\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft_javaeeonazure_test\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft_javaeeonazure_test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microstrategy\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microstrategy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"midasolutions\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/midasolutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"middleware\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/middleware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"midfin\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/midfin\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"midvision\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/midvision\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mihupcommunicationspvtltd1599046998010\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mihupcommunicationspvtltd1599046998010\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mindcti\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mindcti\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"minio\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/minio\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"miraclelinux\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/miraclelinux\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"miracl_linux\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/miracl_linux\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"miri-infotech-pvt-ltd\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/miri-infotech-pvt-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mistio1601460379393\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mistio1601460379393\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mobilab\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mobilab\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"modern-systems\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/modern-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"modexblockchaindatabase\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/modexblockchaindatabase\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"monetdbsolutions1611751313758\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/monetdbsolutions1611751313758\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"monitorapp1579029852605\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/monitorapp1579029852605\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"monitorcomputersystemsltd\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/monitorcomputersystemsltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"moogsoft\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/moogsoft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"morpheus-data\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/morpheus-data\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"moviemasher\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/moviemasher\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mriisoftllc1579457820427\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mriisoftllc1579457820427\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"msopentech\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/msopentech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mtnfog\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mtnfog\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"multima1643619641681\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/multima1643619641681\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"multisoft-ab\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/multisoft-ab\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mvp-systems\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mvp-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mwg_azure\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mwg_azure\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mxhero\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mxhero\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"my-com\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/my-com\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"myarchinc1614657280935\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/myarchinc1614657280935\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"narrativescience\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/narrativescience\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nasuni\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nasuni\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nasunicorporation\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nasunicorporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"navicloudrsoftwarepteltd1601967280369\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/navicloudrsoftwarepteltd1601967280369\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ncache\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ncache\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ncbi\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ncbi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ncomputingglobalinc1604353053068\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ncomputingglobalinc1604353053068\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ndl\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ndl\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ndstriyelotomasyonsistemlerisanvetica1623147454601\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ndstriyelotomasyonsistemlerisanvetica1623147454601\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nebbiolo-technologies-inc\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nebbiolo-technologies-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nec-technologies\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nec-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nefelinetworks1591201080882\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nefelinetworks1591201080882\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"neo4j\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/neo4j\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"neos\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/neos\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"neowaybusinesssolutions-4956350\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/neowaybusinesssolutions-4956350\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netapp\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netapp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netatwork\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netatwork\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netfoundryinc\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netfoundryinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netgate\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netgate\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netikus-net-ltd\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netikus-net-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netiq\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netiq\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netka\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netka\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netmail\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netmail\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netscout\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netscout\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netspi\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netspi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netsweeper\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netsweeper\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"networksexchangetechnologyltd\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/networksexchangetechnologyltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netwrix\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netwrix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netx\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netx\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"neusoft-neteye\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/neusoft-neteye\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"newegginc1646343565758\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/newegginc1646343565758\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"newnetcommunicationtechnologies1589991852134\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/newnetcommunicationtechnologies1589991852134\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"NewRelic.Infrastructure.Extensions\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/NewRelic.Infrastructure.Extensions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"newtglobalconsultingllc1581492268566\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/newtglobalconsultingllc1581492268566\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nextronic-5290868\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nextronic-5290868\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nginxinc\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nginxinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nice-it-management-solutions\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nice-it-management-solutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nicepeopleatwork\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nicepeopleatwork\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nilespartnersinc1617691698386\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nilespartnersinc1617691698386\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"niolabs-5229713\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/niolabs-5229713\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nirvatosoftwarepvtltd1601368706606\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nirvatosoftwarepvtltd1601368706606\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nodejsapi\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nodejsapi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"noianetworklimited1584098036197\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/noianetworklimited1584098036197\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nokiaofamericacorporation1591716055441\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nokiaofamericacorporation1591716055441\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"noobaa\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/noobaa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"norcominformationtechnologygmbhcokgaa\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/norcominformationtechnologygmbhcokgaa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"noricumcloudsolutions1600524477681\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/noricumcloudsolutions1600524477681\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"norsync\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/norsync\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"northbridge-secure\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/northbridge-secure\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nozominetworks1582208017986\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nozominetworks1582208017986\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nri\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nri\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ntegralinc1586961136942\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ntegralinc1586961136942\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ntt-data-intellilink-corporation\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ntt-data-intellilink-corporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nttdata\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nttdata\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nttltd\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nttltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nuco-networks\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nuco-networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"numbersbelieve\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/numbersbelieve\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"numtrallcpublisher\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/numtrallcpublisher\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nuxeo\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nuxeo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nvidia\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nvidia\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"o2mc-real-time-data-platform\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/o2mc-real-time-data-platform\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"objectivity-inc\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/objectivity-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"objectivity1595351622261\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/objectivity1595351622261\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"oceanblue-cloud\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/oceanblue-cloud\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"OctopusDeploy.Tentacle\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/OctopusDeploy.Tentacle\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"odix\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/odix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"odysseuscomputationalsolutions1630242118741\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/odysseuscomputationalsolutions1630242118741\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"odysseyconsultantsltd\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/odysseyconsultantsltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"officeatwork-ag\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/officeatwork-ag\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"omega-software\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/omega-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"onapsis\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/onapsis\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"oncore_cloud_services-4944214\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/oncore_cloud_services-4944214\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"onexgroup\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/onexgroup\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"onspecta\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/onspecta\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ontology\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ontology\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"onyx-point-inc\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/onyx-point-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"op5\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/op5\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"open-connect-systems\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/open-connect-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"opencell\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/opencell\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"openlinkswcom-pago\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/openlinkswcom-pago\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"OpenLogic\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/OpenLogic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"openrefactoryinc1620140917523\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/openrefactoryinc1620140917523\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"openshotstudiosllc\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/openshotstudiosllc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"opentext\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/opentext\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"openvpn\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/openvpn\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"opslogix\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/opslogix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"opswatinc1619007967290\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/opswatinc1619007967290\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"optimitiveslu1618320281443\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/optimitiveslu1618320281443\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"option3\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/option3\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Oracle\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Oracle\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"oraylis\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/oraylis\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"oraylisbi\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/oraylisbi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"orbs-network\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/orbs-network\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"oriana\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/oriana\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"orientdb\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/orientdb\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"oroinc\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/oroinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"osirium-ltd\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/osirium-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"osisoft\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/osisoft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"osnexus\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/osnexus\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"outpost24\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/outpost24\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"outsystems\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/outsystems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ovaledge1618392232783\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ovaledge1618392232783\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pachyderminc1585170006545\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pachyderminc1585170006545\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pacteratechnologiesinc\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pacteratechnologiesinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"paladionnetworkspvtltd1606120508449\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/paladionnetworkspvtltd1606120508449\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"paloaltonetworks\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/paloaltonetworks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"panopta\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/panopta\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"panorama-necto\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/panorama-necto\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"panzura-file-system\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/panzura-file-system\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"parabole\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/parabole\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"paralaxiomtechnologiesprivatelimited1596433357886\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/paralaxiomtechnologiesprivatelimited1596433357886\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"parallels\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/parallels\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"parasoft\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/parasoft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"parkersoftwarelimited1609786657569\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/parkersoftwarelimited1609786657569\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"parsec-for-teams\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/parsec-for-teams\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pasifikciptamandiri\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pasifikciptamandiri\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"passlogy\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/passlogy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"paxata\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/paxata\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pcman\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pcman\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"peer-software-inc\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/peer-software-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"penta-security-systems-inc\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/penta-security-systems-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"percona\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/percona\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"perforce\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/perforce\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"periscope-tech-4791746\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/periscope-tech-4791746\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"piolinkinc1582849368309\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/piolinkinc1582849368309\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pivotal\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pivotal\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pixitmedia1591611150480\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pixitmedia1591611150480\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"plesk\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/plesk\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pmsoftwareinternational1603102514882\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pmsoftwareinternational1603102514882\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pnop\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pnop\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"polarityioinc1628691850891\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/polarityioinc1628691850891\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"portalarchitects\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/portalarchitects\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"portsysinc\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/portsysinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"postgres-pro\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/postgres-pro\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"powerbireach\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/powerbireach\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"prakshepprivatelimited1619949827900\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/prakshepprivatelimited1619949827900\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"prasselsrl1645470739547\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/prasselsrl1645470739547\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"prestashop\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/prestashop\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"prestige_informatique-1090178\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/prestige_informatique-1090178\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"prime-strategy\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/prime-strategy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"primekey\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/primekey\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"primestrategynewyorkinc\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/primestrategynewyorkinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pro-vision\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pro-vision\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"probityinc1581611299345\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/probityinc1581611299345\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"process-one\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/process-one\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"processgold\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/processgold\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"procomputers\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/procomputers\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"procomputerssrl1594239153814\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/procomputerssrl1594239153814\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"profecia\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/profecia\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Profiler.AgentOrchestrationRefactor.Test\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Profiler.AgentOrchestrationRefactor.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Profiler.Master.Test\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Profiler.Master.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"profisee\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/profisee\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"progelspa\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/progelspa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"progresssoftwarecorporation\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/progresssoftwarecorporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"proliongmbh1628175060372\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/proliongmbh1628175060372\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"protegrityusainc1627404648458\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/protegrityusainc1627404648458\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"protiviti\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/protiviti\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"proventeq\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/proventeq\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ptc\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ptc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ptsecurity\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ptsecurity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pulse-secure\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pulse-secure\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pulsesecuretechnologies1638179500151\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pulsesecuretechnologies1638179500151\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"puppet\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/puppet\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"puppeteersoy1601024480557\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/puppeteersoy1601024480557\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"PuppetLabs\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/PuppetLabs\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"PuppetLabs.Test\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/PuppetLabs.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"purestorageinc1578960262525\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/purestorageinc1578960262525\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pydio\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pydio\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pyramidanalytics\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pyramidanalytics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"qlik\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/qlik\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"qnapsystemsinc1601352084032\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/qnapsystemsinc1601352084032\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"qore-technologies\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/qore-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"qs-solutions\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/qs-solutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Qualys\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Qualys\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Qualys.LinuxAgent.GrayLabel\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Qualys.LinuxAgent.GrayLabel\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Qualys.WindowsAgent.GrayLabel\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Qualys.WindowsAgent.GrayLabel\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"qualysguard\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/qualysguard\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"quasardb\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/quasardb\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"qubole-inc\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/qubole-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"quest\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/quest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"racknap\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/racknap\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rackwareinc1619403669255\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rackwareinc1619403669255\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"radiant-logic\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/radiant-logic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"radware\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/radware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"raincode\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/raincode\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rancher\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rancher\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rapid7\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rapid7\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Rapid7.InsightPlatform\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Rapid7.InsightPlatform\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rapidminer\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rapidminer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"raynetgmbh\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/raynetgmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"readymind\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/readymind\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"realm\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/realm\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"reblaze\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/reblaze\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"RedHat\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/RedHat\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"redhat-rhel\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/redhat-rhel\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"redpoint-global\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/redpoint-global\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"refactr\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/refactr\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"refinitiv\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/refinitiv\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"refinitiv-4807503\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/refinitiv-4807503\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"relevance-lab\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/relevance-lab\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"remotelearner\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/remotelearner\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"res\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/res\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"resco\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/resco\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"resemblesystems1582780358300\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/resemblesystems1582780358300\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"responder-corp\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/responder-corp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"revolution-analytics\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/revolution-analytics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rhcsolutions1586957910818\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rhcsolutions1586957910818\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ribboncommunications\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ribboncommunications\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"RightScaleLinux\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/RightScaleLinux\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"RightScaleWindowsServer\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/RightScaleWindowsServer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rimo3\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rimo3\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ringsoftwareresearchanddevelopmentinc1578946072257\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ringsoftwareresearchanddevelopmentinc1578946072257\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"riverbed\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/riverbed\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"RiverbedTechnology\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/RiverbedTechnology\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rmgtechnologiesinc\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rmgtechnologiesinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rocketml\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rocketml\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rocketsoftware\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rocketsoftware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rohdeschwarzcybersecuritygmbh\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rohdeschwarzcybersecuritygmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rohdeschwarzcybersecuritysas\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rohdeschwarzcybersecuritysas\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"roktech\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/roktech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rsa-security-llc\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rsa-security-llc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rsk-labs\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rsk-labs\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rstudio-5237862\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rstudio-5237862\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rtts\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rtts\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rubrik-inc\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rubrik-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"runecastsolutionslimited1614186396822\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/runecastsolutionslimited1614186396822\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"s2ix\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/s2ix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"saama\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/saama\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"saasame-limited\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/saasame-limited\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"safesoftwareinc\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/safesoftwareinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"safeticatechnologiessro\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/safeticatechnologiessro\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"safetica_technologies\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/safetica_technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"safetoopen1585013318137\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/safetoopen1585013318137\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"saltsecurity1583264186232\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/saltsecurity1583264186232\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"saltsecurity1583264669848\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/saltsecurity1583264669848\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"saltstack\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/saltstack\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"samsung-sds\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/samsung-sds\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"samsungelectronics1632860607983\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/samsungelectronics1632860607983\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"samsungsds-cello\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/samsungsds-cello\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"samsungsds_sdbe\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/samsungsds_sdbe\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sandhatatechnologieslimited1615753438737\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sandhatatechnologieslimited1615753438737\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sap\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sap\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sapphiretechnologieslimited1611758579346\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sapphiretechnologieslimited1611758579346\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sas-institute-560503\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sas-institute-560503\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"scaidata\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/scaidata\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"scalearc\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/scalearc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"scalegrid\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/scalegrid\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"scality\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/scality\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"schrockeninc\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/schrockeninc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sci\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sci\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sciencelogicinc1622565452194\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sciencelogicinc1622565452194\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"scientiamobile\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/scientiamobile\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"scontainug1595751515785\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/scontainug1595751515785\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"scubaanalytics\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/scubaanalytics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"scylladb1631195365807\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/scylladb1631195365807\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"seaqserviciossas1579029207572\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/seaqserviciossas1579029207572\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"searchbloxsoftwareinc1594309037050\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/searchbloxsoftwareinc1594309037050\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"secureworks\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/secureworks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"securityonionsolutions\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/securityonionsolutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"securityonionsolutionsllc1624649205155\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/securityonionsolutionsllc1624649205155\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"securosis\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/securosis\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"seequentltd1585781751395\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/seequentltd1585781751395\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"semarchy\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/semarchy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"semperis\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/semperis\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"senhasegura\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/senhasegura\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"SentinelOne.LinuxExtension\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/SentinelOne.LinuxExtension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"SentinelOne.LinuxExtension.Test\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/SentinelOne.LinuxExtension.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"SentinelOne.WindowsExtension\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/SentinelOne.WindowsExtension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"SentinelOne.WindowsExtension.Test\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/SentinelOne.WindowsExtension.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sentriumsl\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sentriumsl\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sentryone\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sentryone\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sepiosystems\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sepiosystems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"seppmailag\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/seppmailag\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"seraumo1620002807288\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/seraumo1620002807288\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"service-control-inc\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/service-control-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sesamesoftwareinc1622125191447\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sesamesoftwareinc1622125191447\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"shadow-soft\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/shadow-soft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"shareshiftneeraj.test\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/shareshiftneeraj.test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sightapps\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sightapps\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"signal-sciences\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/signal-sciences\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"silk\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/silk\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"silver-peak-systems\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/silver-peak-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"simmachinesinc\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/simmachinesinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"simontelephonics\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/simontelephonics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"simpledatalabsinc1635791235920\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/simpledatalabsinc1635791235920\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"simplifierag\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/simplifierag\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"simpligov\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/simpligov\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sinefa\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sinefa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sinequa\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sinequa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sinequa1588262295885\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sinequa1588262295885\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"singapore-telecommunications-limited\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/singapore-telecommunications-limited\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sios_datakeeper\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sios_datakeeper\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"siportalinc1581539156321\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/siportalinc1581539156321\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sisenseltd\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sisenseltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Site24x7\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Site24x7\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sktelecom\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sktelecom\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"skyarc\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/skyarc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"skyboxsecurity1585187406404\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/skyboxsecurity1585187406404\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"skylarkcloud\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/skylarkcloud\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"smartbearsoftware\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/smartbearsoftware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"smartmessage-autoflow\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/smartmessage-autoflow\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"snaplogic\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/snaplogic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"snapt-adc\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/snapt-adc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"snips\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/snips\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"soasta\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/soasta\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"softnas\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/softnas\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"softwarecentralas1642687699196\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/softwarecentralas1642687699196\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"softwarehut\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/softwarehut\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"softwebsolutions-4518310\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/softwebsolutions-4518310\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"soha\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/soha\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"solanolabs\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/solanolabs\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"solar-security\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/solar-security\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"solarwinds\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/solarwinds\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"solvedevops1643693563360\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/solvedevops1643693563360\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sonicwall-inc\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sonicwall-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sophos\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sophos\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sourcegearllc1616101262784\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sourcegearllc1616101262784\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"south-river-technologies\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/south-river-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"southrivertech1586314123192\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/southrivertech1586314123192\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"spacecurve\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/spacecurve\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"spaceliftinc1625499025476\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/spaceliftinc1625499025476\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"spagobi\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/spagobi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sparklinglogic\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sparklinglogic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"spectralcorelimited1619779004178\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/spectralcorelimited1619779004178\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"spektra\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/spektra\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sphere3d\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sphere3d\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"spideroakinc1588278690933\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/spideroakinc1588278690933\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"spirentcommunications1594084187199\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/spirentcommunications1594084187199\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"splunk\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/splunk\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sproutenetworks1593456311717\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sproutenetworks1593456311717\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sqlstream\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sqlstream\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"squadratechnologies\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/squadratechnologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"squaredup\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/squaredup\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"src-solution\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/src-solution\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ssh2appsltd1621588462715\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ssh2appsltd1621588462715\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stackato-platform-as-a-service\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stackato-platform-as-a-service\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Stackify.LinuxAgent.Extension\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Stackify.LinuxAgent.Extension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stackstorm\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stackstorm\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"startekfingerprintmatch\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/startekfingerprintmatch\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"startisolucoesemtecnologialtda1635263523201\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/startisolucoesemtecnologialtda1635263523201\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"starwind\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/starwind\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"StatusMonitor2.Diagnostics.Test\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/StatusMonitor2.Diagnostics.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"StatusReport.Diagnostics.Test\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/StatusReport.Diagnostics.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stealthbits\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stealthbits\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"steelhive\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/steelhive\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stonebondtechnologies\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stonebondtechnologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stonefly\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stonefly\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"storage_made_easy\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/storage_made_easy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stormshield\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stormshield\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"storone1594045543980\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/storone1594045543980\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"storreduce\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/storreduce\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"storwarespzoo1611743234900\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/storwarespzoo1611743234900\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"strangebee1595948424730\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/strangebee1595948424730\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"strataidentity1608323708170\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/strataidentity1608323708170\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stratis-group-ltd\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stratis-group-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stratodesk1611152769936\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stratodesk1611152769936\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stratumn\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stratumn\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"streamsets\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/streamsets\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"striim\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/striim\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stromasys\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stromasys\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"strongboxitllc1594816423884\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/strongboxitllc1594816423884\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"su\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/su\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"subscription.test.krsh\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/subscription.test.krsh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sumologic\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sumologic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sunatogmbh\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sunatogmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sunday\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sunday\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"SUSE\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/SUSE\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"swoopanalytics\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/swoopanalytics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sycom-technologies\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sycom-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sycompatechnologycompanyinc1588192103892\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sycompatechnologycompanyinc1588192103892\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.CloudWorkloadProtection\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.CloudWorkloadProtection\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.CloudWorkloadProtection.Test\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.CloudWorkloadProtection.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.CloudWorkloadProtection.TestOnStage\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.CloudWorkloadProtection.TestOnStage\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.QA\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.QA\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.staging\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.staging\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.test\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.test.ru2.latest\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.test.ru2.latest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.test.ru2final\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.test.ru2final\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.test.ru2latest1\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.test.ru2latest1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.test.ru4mp1\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.test.ru4mp1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.test.ru4mp1.latest\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.test.ru4mp1.latest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.test.ru4mp1final\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.test.ru4mp1final\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"symanteccorporation\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/symanteccorporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"symantectest1\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/symantectest1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"synack-inc\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/synack-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"syncfusion\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/syncfusion\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"syncfusionbigdataplatfor\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/syncfusionbigdataplatfor\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"synechron-technologies\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/synechron-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"synergixinc1585256339250\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/synergixinc1585256339250\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"synnexcorp\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/synnexcorp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"syscomcomputerengineeringco1583913200141\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/syscomcomputerengineeringco1583913200141\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"syte\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/syte\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tableau\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tableau\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tactic\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tactic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"talari-networks\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/talari-networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"talena-inc\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/talena-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"talend\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/talend\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"talon\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/talon\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tamrinc\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tamrinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"taniuminc1646329360287\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/taniuminc1646329360287\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"targit\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/targit\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tata_communications\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tata_communications\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tavanttechnologies\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tavanttechnologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tavendo\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tavendo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"te-systems\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/te-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"techdivision\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/techdivision\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"techlatest\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/techlatest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"technicheltd1606969724100\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/technicheltd1606969724100\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tecknolab\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tecknolab\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"telepat\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/telepat\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"teloscorporation\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/teloscorporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tempered-networks-inc\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tempered-networks-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tenable\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tenable\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tensormakecorpdbaoneclickai1608247756082\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tensormakecorpdbaoneclickai1608247756082\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"teradata\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/teradata\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Teradici\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Teradici\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"teramindinc\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/teramindinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.Gemalto.SafeNet.ProtectV\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.Gemalto.SafeNet.ProtectV\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.Gemalto.SafeNet.ProtectV.Azure\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.Gemalto.SafeNet.ProtectV.Azure\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.HP.AppDefender\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.HP.AppDefender\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.Microsoft.VisualStudio.Services\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.Microsoft.VisualStudio.Services\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.NJHP.AppDefender\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.NJHP.AppDefender\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.SqlServer.Managability\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.SqlServer.Managability\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.SqlServer.Management\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.SqlServer.Management\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.SqlServer.Management.corext\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.SqlServer.Management.corext\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test1.NJHP.AppDefender\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test1.NJHP.AppDefender\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test3.Microsoft.VisualStudio.Services\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test3.Microsoft.VisualStudio.Services\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"testable1603721901088\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/testable1603721901088\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"testpro\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/testpro\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"test_test_mix3pptest0011614206850774\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/test_test_mix3pptest0011614206850774\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"test_test_mneela1628617140187\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/test_test_mneela1628617140187\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"test_test_pmc2pc1\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/test_test_pmc2pc1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thales-vormetric\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thales-vormetric\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thalesdiscplusainc1596561677238\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thalesdiscplusainc1596561677238\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thedatavaluefactoryltd1589348815922\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thedatavaluefactoryltd1589348815922\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thefreebsdfoundation\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thefreebsdfoundation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thehdfgroup1616725197741\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thehdfgroup1616725197741\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"theumag1596442827072\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/theumag1596442827072\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"things-board\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/things-board\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thingscareinc\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thingscareinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thinprintgmbh\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thinprintgmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thorntechnologiesllc\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thorntechnologiesllc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thoughtspot-inc\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thoughtspot-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"threatintelligenceptyltd1586824172898\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/threatintelligenceptyltd1586824172898\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tibco-software\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tibco-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tidal-migrations\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tidal-migrations\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tidalmediainc\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tidalmediainc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tig\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tig\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tiger-technology\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tiger-technology\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tigergraph\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tigergraph\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"timextender\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/timextender\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tmaxsoft\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tmaxsoft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tmaxsoft1608612658335\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tmaxsoft1608612658335\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tomsawyersoftwarecorp1613579206342\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tomsawyersoftwarecorp1613579206342\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"topicus\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/topicus\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"torusware\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/torusware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"totemo\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/totemo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"townsend-security\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/townsend-security\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"transcendinformationinc1609918445926\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/transcendinformationinc1609918445926\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"transientxinc\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/transientxinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"transvault\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/transvault\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"trendmicro\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/trendmicro\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"TrendMicro.DeepSecurity.Test\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/TrendMicro.DeepSecurity.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"TrendMicro.PortalProtect\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/TrendMicro.PortalProtect\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tresorit\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tresorit\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"trifacta\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/trifacta\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tripleblindinc1615730179432\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tripleblindinc1615730179432\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tripwire-inc\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tripwire-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"truata1612259728221\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/truata1612259728221\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"truestack\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/truestack\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tryonsolutionsinc1596650621083\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tryonsolutionsinc1596650621083\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tsa-public-service\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tsa-public-service\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tunnelbiz\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tunnelbiz\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"turbonet\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/turbonet\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"turbonet1581982683964\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/turbonet1581982683964\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"twistlock\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/twistlock\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"typesafe\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/typesafe\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ubeeko\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ubeeko\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ubercloud\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ubercloud\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"uipath-5054924\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/uipath-5054924\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ulex\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ulex\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"unifi-software\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/unifi-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"unifiedstreaming1598872291606\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/unifiedstreaming1598872291606\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"uniprint-net\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/uniprint-net\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"unitrends\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/unitrends\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"unnisoft\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/unnisoft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"unravel-data\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/unravel-data\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"unscramblsingaporepteltd-4999260\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/unscramblsingaporepteltd-4999260\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"untangle\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/untangle\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"upsolver1594188634150\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/upsolver1594188634150\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"usp\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/usp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"valohai\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/valohai\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"valtix\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/valtix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"varmournetworks\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/varmournetworks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"varnish\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/varnish\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vatacommunicationsinc1581644208717\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vatacommunicationsinc1581644208717\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vaultive-inc\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vaultive-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vbot\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vbot\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vcinityinc1587684340545\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vcinityinc1587684340545\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vectraaiinc\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vectraaiinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"veeam\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/veeam\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"velocitydb-inc\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/velocitydb-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"velocloud\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/velocloud\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vembutechnologiespvtltd\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vembutechnologiespvtltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vemn\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vemn\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"veritas\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/veritas\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"versanetworks\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/versanetworks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"versasec\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/versasec\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vidispine\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vidispine\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vidizmo\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vidizmo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vigyanlabs-innovations-pvt-ltd\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vigyanlabs-innovations-pvt-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vigyanlabsinc1581413676614\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vigyanlabsinc1581413676614\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"viptela\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/viptela\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vircom\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vircom\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"virtamovecorp1615909247913\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/virtamovecorp1615909247913\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"virtualpulsesro1607008728942\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/virtualpulsesro1607008728942\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"virtuozzointernationalgmbh1626704951469\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/virtuozzointernationalgmbh1626704951469\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"visualknowledgeshare1591795776234\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/visualknowledgeshare1591795776234\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"visualsoft-center\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/visualsoft-center\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vizixiotplatformretail001\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vizixiotplatformretail001\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vmlabinc1613642184700\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vmlabinc1613642184700\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vmturbo\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vmturbo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vmware-inc\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vmware-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vnomicinc\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vnomicinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"voiceelements\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/voiceelements\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"voleatechgmbh1636966911943\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/voleatechgmbh1636966911943\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"volterraedgeservices\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/volterraedgeservices\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Vormetric\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Vormetric\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vscconsultingptyltd1608535888097\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vscconsultingptyltd1608535888097\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vte\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vte\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vu-llc\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vu-llc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vunetsystemsprivatelimited1646716402131\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vunetsystemsprivatelimited1646716402131\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vyulabsinc\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vyulabsinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"WAD2AI.Diagnostics.Test\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/WAD2AI.Diagnostics.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"WAD2EventHub.Diagnostics.Test\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/WAD2EventHub.Diagnostics.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wallarm\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wallarm\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wallix\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wallix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wandisco\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wandisco\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wanos\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wanos\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wanpath-dba-myworkdrive\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wanpath-dba-myworkdrive\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wardy-it-solutions\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wardy-it-solutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"warewolf-esb\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/warewolf-esb\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"watchguard-technologies\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/watchguard-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"webaloinc\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/webaloinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"websense-apmailpe\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/websense-apmailpe\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"websoft9inc\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/websoft9inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wedoitllc\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wedoitllc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"westernoceansoftwaresprivatelimited\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/westernoceansoftwaresprivatelimited\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wherescapesoftware\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wherescapesoftware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"winmagic_securedoc_cloudvm\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/winmagic_securedoc_cloudvm\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wintellisys-inc-4561600\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wintellisys-inc-4561600\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"witfooinc1590167223060\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/witfooinc1590167223060\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wmspanel\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wmspanel\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wood1595864497589\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wood1595864497589\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"workshare-technology\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/workshare-technology\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"world-programming\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/world-programming\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"worxogo\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/worxogo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wowza\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wowza\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"xcontentptyltd-1329748\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/xcontentptyltd-1329748\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"xendata-inc\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/xendata-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"xfinityinc\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/xfinityinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"xilinx\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/xilinx\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"xoriantcorporationazxteam1\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/xoriantcorporationazxteam1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"xoriantsolutionspvtltd\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/xoriantsolutionspvtltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"xtremedata\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/xtremedata\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"xyzrd-group-ou\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/xyzrd-group-ou\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"yaseensmarket1645449809728\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/yaseensmarket1645449809728\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"yellowfin\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/yellowfin\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"yellowfininternationalptyltd1616363974066\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/yellowfininternationalptyltd1616363974066\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"yokogawarentalleasecorporation\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/yokogawarentalleasecorporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"your-shop-online\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/your-shop-online\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"z1\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/z1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"z4it-aps\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/z4it-aps\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zabbix\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zabbix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zend\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zend\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zenterasystemsinc1605292453288\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zenterasystemsinc1605292453288\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zerodown_software\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zerodown_software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zerto\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zerto\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zettalane_systems-5254599\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zettalane_systems-5254599\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zevenet\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zevenet\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zilliz\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zilliz\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zoomdata\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zoomdata\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zscaler\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zscaler\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zscaler1579058425289\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zscaler1579058425289\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zultysinc1596831546163\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zultysinc1596831546163\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"128technology\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/128technology\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1580863854728\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1580863854728\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1583411303229\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1583411303229\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1583465680865\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1583465680865\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1585118004523\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1585118004523\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1592878437854\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1592878437854\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1597644262255\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1597644262255\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1598955805825\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1598955805825\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1601633765871\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1601633765871\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1602067018799\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1602067018799\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1604579683207\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1604579683207\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1615257339685\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1615257339685\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1615278064010\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1615278064010\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1615455873642\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1615455873642\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1624590941808\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1624590941808\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1640334196980\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1640334196980\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1e\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1e\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"2021ai\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/2021ai\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"247commercelimited1611063941652\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/247commercelimited1611063941652\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"3cx-pbx\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/3cx-pbx\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"42crunch1580391915541\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/42crunch1580391915541\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"4psa\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/4psa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"5nine-software-inc\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/5nine-software-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"6124903\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/6124903\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"7isolutions\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/7isolutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"a10networks\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/a10networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"a10networks1596136698788\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/a10networks1596136698788\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"abiquo\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/abiquo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"abzoobainc1598420455082\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/abzoobainc1598420455082\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"accedian\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/accedian\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"accelario1579101623356\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/accelario1579101623356\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"accellion\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/accellion\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"accessdata-group\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/accessdata-group\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"accops\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/accops\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aciworldwide\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aciworldwide\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Acronis\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Acronis\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Acronis.Backup\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Acronis.Backup\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"actian-corp\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/actian-corp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"actian_matrix\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/actian_matrix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"actifio\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/actifio\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"actiphy\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/actiphy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"actiphyinc1627974506603\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/actiphyinc1627974506603\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"activecountermeasuresinc1631039410073\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/activecountermeasuresinc1631039410073\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"activeeon\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/activeeon\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"activeops\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/activeops\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"adastracorporation-4028356\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/adastracorporation-4028356\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"adgs\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/adgs\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"advantech\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/advantech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"advantech-webaccess\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/advantech-webaccess\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"advantys\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/advantys\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aelf\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aelf\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aerospike\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aerospike\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"affinio\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/affinio\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"affirmednetworks1607630812999\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/affirmednetworks1607630812999\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ageniumscale1591804889317\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ageniumscale1591804889317\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aggregion-ltd\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aggregion-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"agiledialogssl1603791911858\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/agiledialogssl1603791911858\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"agolo\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/agolo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ahnlabinc1584495174865\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ahnlabinc1584495174865\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ahnlabinc1584495467593\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ahnlabinc1584495467593\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"airalabrus\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/airalabrus\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aiscaler-cache-control-ddos-and-url-rewriting-\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aiscaler-cache-control-ddos-and-url-rewriting-\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aisundowninc1618516322959\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aisundowninc1618516322959\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"akamai-technologies\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/akamai-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"akumina\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/akumina\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"akumo-software\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/akumo-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"al-tamamunitedtradingcontractingcompany\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/al-tamamunitedtradingcontractingcompany\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"alachisoft\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/alachisoft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"alertlogic\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/alertlogic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"AlertLogic.Extension\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/AlertLogic.Extension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"algolyticstechnologies1606475101268\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/algolyticstechnologies1606475101268\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"alicetrix\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/alicetrix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"alienvault\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/alienvault\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"alldigital-brevity\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/alldigital-brevity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"almalinux\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/almalinux\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"almalinuxosfoundation1628089859865\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/almalinuxosfoundation1628089859865\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"altair-engineering-inc\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/altair-engineering-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"altamira-corporation\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/altamira-corporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"alteryx\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/alteryx\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"altova\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/altova\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"amergint1593131356777\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/amergint1593131356777\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"anjanadatasl1583402861145\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/anjanadatasl1583402861145\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ansys\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ansys\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"antmedia\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/antmedia\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aod\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aod\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"apigee\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/apigee\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"appcara\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appcara\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"appcelerator\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appcelerator\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"appex-networks\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appex-networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"appistry\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appistry\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"appiyo_technologies\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appiyo_technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"appmint_inc\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appmint_inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"apps-4-rent\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/apps-4-rent\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"appscale-marketplace\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appscale-marketplace\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"appsurifyinc1606933045773\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appsurifyinc1606933045773\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aquaforest\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aquaforest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aquantyinc1598537176913\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aquantyinc1598537176913\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aquaveollc1633710529908\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aquaveollc1633710529908\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"arabesque-group\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/arabesque-group\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"arangodb\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/arangodb\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aras\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aras\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"arcblock\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/arcblock\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"arcesb\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/arcesb\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"arcontechsolutionsprivatelimited1623841797810\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/arcontechsolutionsprivatelimited1623841797810\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"arcserveusallc-marketing\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/arcserveusallc-marketing\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"arista-networks\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/arista-networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ariwontollc\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ariwontollc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"array_networks\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/array_networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"artificial-intelligence-techniques-sl\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/artificial-intelligence-techniques-sl\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"arubanetworks-4922182\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/arubanetworks-4922182\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"asdivertissementinc1617837708654\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/asdivertissementinc1617837708654\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"asigra\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/asigra\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aspentechnologyhq-1353108\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aspentechnologyhq-1353108\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"astadia-1148316\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/astadia-1148316\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"asterasoftware1581022936015\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/asterasoftware1581022936015\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"asyscosoftwarebv\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/asyscosoftwarebv\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ataccama\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ataccama\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"athinfosystems1641442221349\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/athinfosystems1641442221349\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"athinfosystems1648710938250\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/athinfosystems1648710938250\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"atlgaming\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/atlgaming\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"atmosera\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/atmosera\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"atomicorp\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/atomicorp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"atomizedinc1587939464368\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/atomizedinc1587939464368\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"attunity_cloudbeam\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/attunity_cloudbeam\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"audiocodes\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/audiocodes\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"auraportal\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/auraportal\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"auriq-systems\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/auriq-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"automateio1592914387888\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/automateio1592914387888\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"automationanywhere\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/automationanywhere\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"avanseus\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/avanseus\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"avepoint\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/avepoint\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aveva1\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aveva1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"avi-networks\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/avi-networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aviatrix-systems\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aviatrix-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"awingu\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/awingu\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"axedrasag1590581171549\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/axedrasag1590581171549\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"axsguardablenv\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/axsguardablenv\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"axshco\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/axshco\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"axway\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/axway\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"axxana\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/axxana\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"azhpc\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/azhpc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"azul\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/azul\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"azure-dockit\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/azure-dockit\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"azurecyclecloud\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/azurecyclecloud\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"AzureDatabricks\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/AzureDatabricks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"azureopenshift\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/azureopenshift\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"AzureRT.PIR.Synthetics.ProdTest\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/AzureRT.PIR.Synthetics.ProdTest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"AzureRT.Test\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/AzureRT.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"azuretesting\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/azuretesting\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"azuretesting2\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/azuretesting2\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"azuretesting3\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/azuretesting3\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"AzureTools1type\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/AzureTools1type\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"baas-techbureau\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/baas-techbureau\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"baffle-io\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/baffle-io\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"balabit\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/balabit\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"barracudanetworks\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/barracudanetworks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"basho\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/basho\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"batch\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/batch\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bayware\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bayware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bdy\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bdy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"belindaczsro1588885355210\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/belindaczsro1588885355210\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bellsoft1582871421940\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bellsoft1582871421940\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"betsol\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/betsol\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"beyondtrust\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/beyondtrust\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bi-builders-as\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bi-builders-as\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"big-id\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/big-id\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"biolibinc1622552350258\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/biolibinc1622552350258\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bissantechnology1583581147809\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bissantechnology1583581147809\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bitdefendercybersecurity\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bitdefendercybersecurity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Bitnami\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Bitnami\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bizagi\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bizagi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bizaptyltd1626489237351\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bizaptyltd1626489237351\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bizdataloome\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bizdataloome\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"biztalk360\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/biztalk360\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"black-duck-software\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/black-duck-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"blackbird\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/blackbird\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"blackmagicdesignincorporated1596492193249\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/blackmagicdesignincorporated1596492193249\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"blk-technologies\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/blk-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"blockapps\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/blockapps\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"blockchain-foundry\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/blockchain-foundry\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"blockstack\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/blockstack\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bloombase\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bloombase\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bluecat\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bluecat\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bluejeansnetwork1638333611902\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bluejeansnetwork1638333611902\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"blueprismlimited-4827145\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/blueprismlimited-4827145\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bluesyntaxconsulting1617654548594\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bluesyntaxconsulting1617654548594\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bluetalon\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bluetalon\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bmc.ctm\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bmc.ctm\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bmcctm.test\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bmcctm.test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"boardpacpvtltd\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/boardpacpvtltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bocada\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bocada\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"boemskats\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/boemskats\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"botanalytics\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/botanalytics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bowspritconsultingopcprivatelimited1596291408582\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bowspritconsultingopcprivatelimited1596291408582\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bravura-software-llc\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bravura-software-llc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Brianjac.Symantec.CloudWorkloadProtection\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Brianjac.Symantec.CloudWorkloadProtection\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bricatainc1584472632111\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bricatainc1584472632111\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bright-computing\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bright-computing\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"brightcomputing\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/brightcomputing\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"brocade_communications\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/brocade_communications\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"brutale\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/brutale\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bryte\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bryte\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bssw\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bssw\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bt-americas-inc\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bt-americas-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"buddhalabs\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/buddhalabs\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cadosecurityltd1626856705534\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cadosecurityltd1626856705534\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"calculated_systems\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/calculated_systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"caloudi_corp\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/caloudi_corp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"canadiancentreforcybersecurity1610638436359\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/canadiancentreforcybersecurity1610638436359\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Canonical\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Canonical\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"canonical-test\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/canonical-test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"carto\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/carto\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cask\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cask\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"castaigroupinc1595243474856\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/castaigroupinc1595243474856\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"catechnologies\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/catechnologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"catonetworksltd1641478570665\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/catonetworksltd1641478570665\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cautelalabs\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cautelalabs\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cavirin\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cavirin\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cayosoftinc\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cayosoftinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cdatasoftware\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cdatasoftware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cds\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cds\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"celum-gmbh\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/celum-gmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"center-for-internet-security-inc\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/center-for-internet-security-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"centeritysystems\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/centeritysystems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"centrixeltd1594135951373\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/centrixeltd1594135951373\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"centrocomputerspa1584528117084\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/centrocomputerspa1584528117084\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"certifiedsecuritysolutionsinc\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/certifiedsecuritysolutionsinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"certivox\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/certivox\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cfd-direct\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cfd-direct\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"chain\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/chain\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"checkpoint\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/checkpoint\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"chef-software\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/chef-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Chef.Bootstrap.WindowsAzure\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Chef.Bootstrap.WindowsAzure\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"chunghwatelecom1587573688842\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/chunghwatelecom1587573688842\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cinchy\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cinchy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cinegy-gmbh\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cinegy-gmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ciphertechsinc1646670709341\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ciphertechsinc1646670709341\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"circleci\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/circleci\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cires21\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cires21\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cirruswaveinc1579234787943\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cirruswaveinc1579234787943\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cisco\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cisco\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"citrix\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/citrix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Citrix.ADC\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Citrix.ADC\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"clapsodeughaftungsbeschrnkt1626333173563\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/clapsodeughaftungsbeschrnkt1626333173563\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"clear-linux-project\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/clear-linux-project\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"clone-systems\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/clone-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"clouber\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/clouber\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloud-checkr\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloud-checkr\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloud-cruiser\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloud-cruiser\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloud-infrastructure-services\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloud-infrastructure-services\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudaccelinc1628754426775\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudaccelinc1628754426775\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudbees\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudbees\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudbees-enterprise-jenkins\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudbees-enterprise-jenkins\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudbolt-software\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudbolt-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudboltsoftware1639523402532\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudboltsoftware1639523402532\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudboost\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudboost\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudcover\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudcover\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudenablers-inc\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudenablers-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudentity\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudentity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudera\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudera\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudflare\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudflare\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudhouse\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudhouse\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudinfo-4919088\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudinfo-4919088\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudknox\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudknox\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudlanes\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudlanes\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudlink\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudlink\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"CloudLinkEMC.SecureVM\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/CloudLinkEMC.SecureVM\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudmavensolutions\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudmavensolutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudneeti\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudneeti\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudplan-gmbh\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudplan-gmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudsecurity\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudsecurity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudsoft\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudsoft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudwhizsolutions\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudwhizsolutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudwrxsconsultingltd1631029702055\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudwrxsconsultingltd1631029702055\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"clustrix\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/clustrix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cncf-upstream\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cncf-upstream\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"codaintelligence1606495376525\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/codaintelligence1606495376525\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"codelathe\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/codelathe\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"codenvy\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/codenvy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"codetwo\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/codetwo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cognexcorporation1613759804979\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cognexcorporation1613759804979\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cognexcorporation1647410785838\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cognexcorporation1647410785838\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cognitive-scale\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cognitive-scale\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cognizant\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cognizant\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cognosys\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cognosys\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cohesity\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cohesity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cohesitydev1592001764720\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cohesitydev1592001764720\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cohesive\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cohesive\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"coin-sciences-ltd\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/coin-sciences-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"collabcloudlimited\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/collabcloudlimited\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"collibranv1619508098620\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/collibranv1619508098620\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"commscopeinc1632135151062\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/commscopeinc1632135151062\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"commvault\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/commvault\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"compellon\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/compellon\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"composable\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/composable\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"comunity\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/comunity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"concentrationheatandmomentumlimited1616154387047\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/concentrationheatandmomentumlimited1616154387047\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Confer\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Confer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"confluentinc\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/confluentinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"conflux\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/conflux\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"connecting-software\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/connecting-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"consensys\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/consensys\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"containeraider\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/containeraider\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"contiamogmbh\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/contiamogmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"controlcase\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/controlcase\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"controlplane\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/controlplane\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"controlplanecorporation1609967567639\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/controlplanecorporation1609967567639\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"convertigo\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/convertigo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"corda\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/corda\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"core-stack\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/core-stack\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"corent-technology-pvt\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/corent-technology-pvt\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"CoreOS\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/CoreOS\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"couchbase\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/couchbase\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cpanel\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cpanel\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"credativ\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/credativ\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cristiesoftwareltd1599488127561\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cristiesoftwareltd1599488127561\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"crunchyard\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/crunchyard\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"crunchyardltd1623835391104\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/crunchyardltd1623835391104\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cryptocom1585727786636\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cryptocom1585727786636\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cryptosense1605170011574\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cryptosense1605170011574\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cryptzone\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cryptzone\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ctm.bmc.com\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ctm.bmc.com\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ctrliqinc1648673227698\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ctrliqinc1648673227698\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cubebackup\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cubebackup\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cyberark\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cyberark\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cybernetica-as\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cybernetica-as\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cygnalabscorp1646065782458\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cygnalabscorp1646065782458\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cyxtera\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cyxtera\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"d4t4_solutions-1164305\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/d4t4_solutions-1164305\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"daceitdbasensetrafficpulse1579892024934\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/daceitdbasensetrafficpulse1579892024934\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"danielsol.AzureTools1\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/danielsol.AzureTools1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Dans.Windows.App\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Dans.Windows.App\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Dans3.Windows.App\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Dans3.Windows.App\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dataart\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dataart\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"databricks\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/databricks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datacore\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datacore\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Datadog.Agent\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Datadog.Agent\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datadynamicsinc1581991927942\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datadynamicsinc1581991927942\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datagapsinc1585348463636\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datagapsinc1585348463636\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dataguiseinc\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dataguiseinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dataiku\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dataiku\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datalayer\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datalayer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datanomers1584919038987\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datanomers1584919038987\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datanova\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datanova\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datapredsa\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datapredsa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dataroadtechnologiesllc\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dataroadtechnologiesllc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datasciencedojo1586563145740\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datasciencedojo1586563145740\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datastax\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datastax\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datasunrise\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datasunrise\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datavirtualitygmbh\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datavirtualitygmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datometry\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datometry\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dbs-h\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dbs-h\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ddn-whamcloud-5345716\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ddn-whamcloud-5345716\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Debian\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Debian\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dece-4446019\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dece-4446019\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"decisosalesbv\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/decisosalesbv\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"deepcognitioninc1593512758156\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/deepcognitioninc1593512758156\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"deepsiginc1581610210151\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/deepsiginc1581610210151\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"deepsurfacesecurityinc1632943333445\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/deepsurfacesecurityinc1632943333445\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dellemc\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dellemc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dell_software\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dell_software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"delphix\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/delphix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"deltapathlimited1592886319362\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/deltapathlimited1592886319362\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"denodo\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/denodo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"denyall\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/denyall\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"derdack\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/derdack\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"deskpro1650546806675\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/deskpro1650546806675\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"desktopstudioag1580294245574\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/desktopstudioag1580294245574\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"devfactory\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/devfactory\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"device42inc\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/device42inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"deviceauthorityinc\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/deviceauthorityinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"devolutionsinc\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/devolutionsinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"devopsgroup-uk\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/devopsgroup-uk\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"df-portal-user\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/df-portal-user\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dgsecure\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dgsecure\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Dh2ico\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Dh2ico\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dh2icompany\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dh2icompany\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dhi\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dhi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"diagramics\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/diagramics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dicomsystems1584107398321\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dicomsystems1584107398321\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"diehl-metering\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/diehl-metering\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"digisitesystems\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/digisitesystems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"digitaldefenseinc\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/digitaldefenseinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"digitaloffice\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/digitaloffice\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"digitamizeinc\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/digitamizeinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"digitate\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/digitate\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"diladele\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/diladele\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dimensionalmechanics-inc\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dimensionalmechanics-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"diqa\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/diqa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"diyatech\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/diyatech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"diyotta\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/diyotta\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"djiindustrialincus\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/djiindustrialincus\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"docker\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/docker\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dome9\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dome9\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dorabot\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dorabot\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dremiocorporation\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dremiocorporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"drizti\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/drizti\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"drone\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/drone\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dsi\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dsi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dundas\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dundas\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dyadic_security\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dyadic_security\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dynatrace\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dynatrace\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dynatrace.ruxit\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dynatrace.ruxit\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"e-magicinc1587696283171\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/e-magicinc1587696283171\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"eastwind-networks-inc\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/eastwind-networks-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"easysoftwaresro1593005637384\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/easysoftwaresro1593005637384\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ebesllc1637780200500\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ebesllc1637780200500\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ecessa\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ecessa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"edevtech\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/edevtech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"edgelesssystems\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/edgelesssystems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"edgenetworks\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/edgenetworks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"edispheresoftwareprivatelimited1606199736428\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/edispheresoftwareprivatelimited1606199736428\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"education4sight\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/education4sight\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"eecservicesfzllc1604836615706\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/eecservicesfzllc1604836615706\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"egnyte\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/egnyte\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"egress1589289169584\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/egress1589289169584\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"eikonasystemsgmbh1601729310063\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/eikonasystemsgmbh1601729310063\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Elastic\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Elastic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"elasticbox\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/elasticbox\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"elecard\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/elecard\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"electric-cloud\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/electric-cloud\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"elevateiot\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/elevateiot\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"eleven01\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/eleven01\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"elfiqnetworks\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/elfiqnetworks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"emercoin\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/emercoin\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"energisme1601990637842\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/energisme1601990637842\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"enforongo\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/enforongo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"engineering-ingegneriainformatica-spa1626786889850\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/engineering-ingegneriainformatica-spa1626786889850\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"engysltd1624364546407\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/engysltd1624364546407\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"enterprise-ethereum-alliance\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/enterprise-ethereum-alliance\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"enterprisedb-corp\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/enterprisedb-corp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"enterpriseworx-it\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/enterpriseworx-it\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"epicgames\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/epicgames\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"epicgamesinc1633466121071\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/epicgamesinc1633466121071\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"eproe\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/eproe\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"equalum\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/equalum\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"equilibrium\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/equilibrium\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"equinix\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/equinix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ergoninformatikag1581586464404\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ergoninformatikag1581586464404\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"esdenera\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/esdenera\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ESET\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ESET\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"esetresearch1579795941720\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/esetresearch1579795941720\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"esri\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/esri\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"esyon\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/esyon\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ethereum\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ethereum\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"eurolinuxspzoo1620639373013\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/eurolinuxspzoo1620639373013\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"eventtracker\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/eventtracker\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"evertzmicrosystemsltd1586877923009\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/evertzmicrosystemsltd1586877923009\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"evostream-inc\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/evostream-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"exact\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/exact\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"exasol\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/exasol\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"excelero1608461290726\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/excelero1608461290726\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"exivity\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/exivity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"exonar\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/exonar\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"f5-networks\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/f5-networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"falainapteltd1604661424876\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/falainapteltd1604661424876\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"falconstorsoftware\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/falconstorsoftware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fatalsecurity1604924013537\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fatalsecurity1604924013537\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fatpipe-inc\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fatpipe-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fenestrae-1035066\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fenestrae-1035066\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fidesys\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fidesys\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"filecatalyst\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/filecatalyst\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"filemagellc\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/filemagellc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fiorano\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fiorano\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fireeye\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fireeye\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"firehost\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/firehost\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"firemon\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/firemon\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"firstderivativesplc1596469572732\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/firstderivativesplc1596469572732\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"flashgrid-inc\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/flashgrid-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"flexbby\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/flexbby\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"flexbby-5255860\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/flexbby-5255860\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"flexify-io\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/flexify-io\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"flexxibleit\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/flexxibleit\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"flowmon\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/flowmon\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"flynet\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/flynet\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"foghorn-systems\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/foghorn-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"forcepoint-llc\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/forcepoint-llc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"forescout\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/forescout\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"foreseetiab1613650409016\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/foreseetiab1613650409016\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"formpipesoftwareab\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/formpipesoftwareab\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"forscene\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/forscene\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fortanix\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fortanix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fortinet\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fortinet\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fortycloud\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fortycloud\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"forumsystems1599756394904\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/forumsystems1599756394904\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fotopiatechnologies\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fotopiatechnologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"foxiteuropegmbh1585901066320\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/foxiteuropegmbh1585901066320\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"franzinc1593030725310\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/franzinc1593030725310\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fujitsu_fast\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fujitsu_fast\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fw\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fw\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"g2kgroupgmbh-4821943\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/g2kgroupgmbh-4821943\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gapteq\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gapteq\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gatlingcorp\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gatlingcorp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gbs\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gbs\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gemalto-safenet\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gemalto-safenet\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Gemalto.SafeNet.ProtectV\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Gemalto.SafeNet.ProtectV\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"genesistechnologyinc1604912285911\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/genesistechnologyinc1604912285911\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"genuagmbhdevid1\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/genuagmbhdevid1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"genua_gmbh\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/genua_gmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"genymobile\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/genymobile\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gigamon-inc\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gigamon-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"GitHub\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/GitHub\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gitlab\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gitlab\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gitlabinc1586447921813\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gitlabinc1586447921813\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gladinet-inc\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gladinet-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"glantoninc1591876792991\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/glantoninc1591876792991\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"globalidsinc1596800540598\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/globalidsinc1596800540598\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"globalscape\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/globalscape\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"globalsolutions\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/globalsolutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gluwareinc\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gluwareinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"graphistry\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/graphistry\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"graphitegtc\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/graphitegtc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"great-software-laboratory-private-limited\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/great-software-laboratory-private-limited\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"greensql\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/greensql\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"greycorbelsolutions\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/greycorbelsolutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gridgain\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gridgain\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"guardicore\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/guardicore\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gxchainfoundationltd\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gxchainfoundationltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"h2o-ai\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/h2o-ai\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hackerbay\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hackerbay\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hackershub\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hackershub\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"haivision\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/haivision\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"haivisionsystemsinc1580780591922\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/haivisionsystemsinc1580780591922\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"haltdoscompvtltd1587136166019\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/haltdoscompvtltd1587136166019\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hammerspace\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hammerspace\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hanu\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hanu\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"haproxy-technologies\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/haproxy-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"harmanconnectedservicesinc1594928575643\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/harmanconnectedservicesinc1594928575643\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"harpaitalia\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/harpaitalia\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hashhub\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hashhub\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hcl-technologies\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hcl-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"heimdall-data\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/heimdall-data\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"help-systems\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/help-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"helpyio\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/helpyio\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"heretechnologies\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/heretechnologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hewlett-packard\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hewlett-packard\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hillstone-networks\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hillstone-networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hitachi-solutions\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hitachi-solutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hitachivantara\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hitachivantara\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"holo-industrie40softwaregmbh1600957636008\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/holo-industrie40softwaregmbh1600957636008\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hortonworks\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hortonworks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hpe\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hpe\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"HPE.Security.ApplicationDefender\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/HPE.Security.ApplicationDefender\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"huawei\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/huawei\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hubstor-inc\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hubstor-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hush-hush\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hush-hush\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hvr\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hvr\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hyperglance\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hyperglance\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hypergrid\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hypergrid\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hystaxinc\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hystaxinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hytrust\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hytrust\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"i-exceed-technology\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/i-exceed-technology\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iaansys\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iaansys\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ibm\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ibm\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ibm-alliance-global-1560886\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ibm-alliance-global-1560886\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ibm-alliance-usa-ny-armonk-hq-ibmstorage-6201192\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ibm-alliance-usa-ny-armonk-hq-ibmstorage-6201192\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ibm-usa-ny-armonk-hq-6275750-ibmcloud-aiops\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ibm-usa-ny-armonk-hq-6275750-ibmcloud-aiops\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iboss\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iboss\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iconics\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iconics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iconsulting-spa\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iconsulting-spa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"icubeconsultancyservicesinc\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/icubeconsultancyservicesinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iguazio-5069960\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iguazio-5069960\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ikan\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ikan\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iliimbiliimveyazlmsistemlerisanvetica1617000555584\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iliimbiliimveyazlmsistemlerisanvetica1617000555584\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"illuminainc1586452220102\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/illuminainc1586452220102\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"image-technologies\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/image-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"imaginecommunications\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/imaginecommunications\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"imperva\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/imperva\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"impetustechnologiesinc1591959591877\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/impetustechnologiesinc1591959591877\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"imprivatainc1580479939967\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/imprivatainc1580479939967\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"incorta\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/incorta\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"incredibuild\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/incredibuild\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"indexima1594300233028\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/indexima1594300233028\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"industry-weapon\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/industry-weapon\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"industryweapon1587162781833\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/industryweapon1587162781833\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"inenprocesosyplataformasdetisderldecv1615482385424\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/inenprocesosyplataformasdetisderldecv1615482385424\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"inergybv1637141413454\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/inergybv1637141413454\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"infinitesoftwarecorporation1579223971125\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/infinitesoftwarecorporation1579223971125\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"infiotinc1614034091460\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/infiotinc1614034091460\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"influxdata\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/influxdata\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"infoblox\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/infoblox\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"infogix\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/infogix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"infolibrarian\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/infolibrarian\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"informatica\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/informatica\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"informationbuilders\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/informationbuilders\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"informationtechnologies_ltd_1179601\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/informationtechnologies_ltd_1179601\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"infotecsinternetsecuritysoftwaregmbh1636129257584\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/infotecsinternetsecuritysoftwaregmbh1636129257584\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"infront-consulting-group-ltd\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/infront-consulting-group-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"infscapeughaftungsbeschrnkt\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/infscapeughaftungsbeschrnkt\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ingenieurstudiohollaus1579587745438\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ingenieurstudiohollaus1579587745438\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ingrammicro\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ingrammicro\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"innomindssoftware\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/innomindssoftware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"innosepgmbh1618331344164\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/innosepgmbh1618331344164\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"innovatorartificialtechsrl1619180685551\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/innovatorartificialtechsrl1619180685551\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"innovtech\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/innovtech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"instight-technology\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/instight-technology\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"integration-objects\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/integration-objects\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"intel-bigdl\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/intel-bigdl\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"intel-fpga\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/intel-fpga\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"intellicus-technologies-pvt-ltd\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/intellicus-technologies-pvt-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"intelligent-plant-ltd\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/intelligent-plant-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"intel_corporation\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/intel_corporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"internationaltrustmachinescorporation1582190033865\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/internationaltrustmachinescorporation1582190033865\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"internet20inc1635882446190\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/internet20inc1635882446190\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"intersystems\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/intersystems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"intigua\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/intigua\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"intigua1638692632641\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/intigua1638692632641\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"introspecioltd1629872641188\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/introspecioltd1629872641188\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iofabric\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iofabric\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ipinfusion1590066770520\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ipinfusion1590066770520\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ipswitch\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ipswitch\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iqsol\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iqsol\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iquate\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iquate\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iquest\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iquest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"irion\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/irion\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ishlangu-load-balancer-adc\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ishlangu-load-balancer-adc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"issp-corporation\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/issp-corporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"isvtestukbigcat\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/isvtestukbigcat\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"isvtestuklegacy\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/isvtestuklegacy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"it4bizdoo\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/it4bizdoo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"itelios\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/itelios\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"itrsgroupltd1620310702149\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/itrsgroupltd1620310702149\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ivanti-inc-pcs\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ivanti-inc-pcs\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ivanti-nzta\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ivanti-nzta\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ivix1595238749040\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ivix1595238749040\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iwnamespace\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iwnamespace\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"izenda\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/izenda\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"jamcracker\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/jamcracker\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"javlinltd1579185328273\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/javlinltd1579185328273\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"jedox\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/jedox\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"jelastic\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/jelastic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"jetnexus\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/jetnexus\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"jetware-srl\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/jetware-srl\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"jfrog\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/jfrog\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"jm-technology-inc\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/jm-technology-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"jogetinc\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/jogetinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"johnsnowlabsinc1646051154808\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/johnsnowlabsinc1646051154808\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"juniper-networks\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/juniper-networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"justanalytics\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/justanalytics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kaazing\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kaazing\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kadenallc\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kadenallc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kali-linux\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kali-linux\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kalkitech\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kalkitech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kaminarioinc1588672951794\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kaminarioinc1588672951794\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Kaspersky.Lab\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Kaspersky.Lab\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"KasperskyLab.SecurityAgent\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/KasperskyLab.SecurityAgent\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kaspersky_lab\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kaspersky_lab\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kazendi\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kazendi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kelverion\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kelverion\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kemptech\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kemptech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kepion\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kepion\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"KevlarExtensions.M365Security.SecureOS\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/KevlarExtensions.M365Security.SecureOS\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"KevlarExtensions.M365SecurityHostIDS\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/KevlarExtensions.M365SecurityHostIDS\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"KevlarExtensions.M365SecurityInventory\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/KevlarExtensions.M365SecurityInventory\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"KevlarExtensions.M365SecurityInventory.NameChangeTest\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/KevlarExtensions.M365SecurityInventory.NameChangeTest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"KevlarExtensions.M365SecurityODL\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/KevlarExtensions.M365SecurityODL\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"KevlarExtensions.M365SecurityTLSExtension\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/KevlarExtensions.M365SecurityTLSExtension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kinetica\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kinetica\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kinvolk\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kinvolk\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"knime\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/knime\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kobalt\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kobalt\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kognillc1600118221163\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kognillc1600118221163\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kognitivsparkinc\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kognitivsparkinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"konginc1581527938760\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/konginc1581527938760\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"konsys-ltd\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/konsys-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"koverseinc1588716263110\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/koverseinc1588716263110\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kryonsystems\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kryonsystems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"krypc-technologies-pvt-ltd\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/krypc-technologies-pvt-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kyligence\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kyligence\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kyvos-insights-inc\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kyvos-insights-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lab3solutions\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lab3solutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lancom-systems\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lancom-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lansa\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lansa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lastline\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lastline\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"launchnodesltd1644561451121\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/launchnodesltd1644561451121\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"leap-orbit\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/leap-orbit\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lenovosoftware1604394104439\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lenovosoftware1604394104439\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"leostream-corporation\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/leostream-corporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lepide-software\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lepide-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"levacloudllc1602151818089\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/levacloudllc1602151818089\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"libelleag\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/libelleag\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"liberatii\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/liberatii\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"libraesva\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/libraesva\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"liebsoft\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/liebsoft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lightning-analyticsinc1582000647396\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lightning-analyticsinc1582000647396\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"linuxbasedsystemsdesignltd1580878904727\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/linuxbasedsystemsdesignltd1580878904727\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"liquid-files\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/liquid-files\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"liquidware\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/liquidware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"literatu\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/literatu\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"litespeedtechnologies\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/litespeedtechnologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"litespeed_technologies\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/litespeed_technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"litionenergiegmbh1580128829115\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/litionenergiegmbh1580128829115\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"litmusautomation1582760223280\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/litmusautomation1582760223280\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"llcitpro\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/llcitpro\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lnw-softgmbh\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lnw-softgmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"loadbalancer\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/loadbalancer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"logicflowag1638535407949\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/logicflowag1638535407949\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"logsign\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/logsign\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"logstarecorp1635838645101\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/logstarecorp1635838645101\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"logtrust\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/logtrust\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"logzio\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/logzio\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"looker\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/looker\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lotus_beta_analytics\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lotus_beta_analytics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lti-lt-infotech\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lti-lt-infotech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"luminate-security\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/luminate-security\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"M365Security.KevlarExtensions\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/M365Security.KevlarExtensions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"M365SecurityInventory\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/M365SecurityInventory\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"machinesense\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/machinesense\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"madhavajay1632269232059\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/madhavajay1632269232059\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"maidenhead-bridge\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/maidenhead-bridge\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"manageengine\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/manageengine\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mapd\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mapd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"maplelabsinc1623932715330\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/maplelabsinc1623932715330\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mapr-technologies\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mapr-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"marand\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/marand\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"marketplace-rdfe-caps\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/marketplace-rdfe-caps\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"marklogic\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/marklogic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"massiveanalytic-\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/massiveanalytic-\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mathworks-deployment\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mathworks-deployment\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mathworks-inc\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mathworks-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"matillion\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/matillion\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mavinglobal\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mavinglobal\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"McAfee.EndpointSecurity\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/McAfee.EndpointSecurity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"McAfee.EndpointSecurity.test3\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/McAfee.EndpointSecurity.test3\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"meanio\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/meanio\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"media3-adobe\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/media3-adobe\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"media3-technologies-llc\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/media3-technologies-llc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mediatekinc1586141563888\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mediatekinc1586141563888\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mendix\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mendix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"merlynnintelligencetechnologies\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/merlynnintelligencetechnologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"meshifyappinc1622759451429\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/meshifyappinc1622759451429\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"messagesolution\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/messagesolution\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"metaswitch\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/metaswitch\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mettainnovations-4900054\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mettainnovations-4900054\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mfe_azure\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mfe_azure\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mfiles\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mfiles\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mico\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mico\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"micro-focus\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/micro-focus\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microlinkpcukltd\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microlinkpcukltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microolap\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microolap\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsecpteltd1634010681688\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsecpteltd1634010681688\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-ads\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-ads\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-agci-gaming\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-agci-gaming\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-aks\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-aks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-avere\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-avere\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-azure-batch\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-azure-batch\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-azure-compute\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-azure-compute\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-azure-hdinsight\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-azure-hdinsight\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-crypto\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-crypto\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-dsvm\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-dsvm\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-hyperv\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-hyperv\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-minecraft\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-minecraft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AdminCenter\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AdminCenter\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AKS\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AKS\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.ActiveDirectory\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.ActiveDirectory\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.ActiveDirectory.LinuxSSH\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.ActiveDirectory.LinuxSSH\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Applications\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Applications\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Automation.HybridWorker\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Automation.HybridWorker\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Automation.HybridWorker.Test\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Automation.HybridWorker.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.AzureDefenderForServers\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.AzureDefenderForServers\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.AzureDefenderForSQL\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.AzureDefenderForSQL\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.AzureHybridBenefit\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.AzureHybridBenefit\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Backup.Test\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Backup.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Backup.Test.Edp\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Backup.Test.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Batch\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Batch\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.ChangeTracking\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.ChangeTracking\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.ChangeTracking.Test\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.ChangeTracking.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.ChangeTrackingAndInventory\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.ChangeTrackingAndInventory\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Chaos\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Chaos\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Compute.Security\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Compute.Security\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.ContainerUpstream\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.ContainerUpstream\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.DefenderForServers.Test\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.DefenderForServers.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.DefenderForServers.Test2\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.DefenderForServers.Test2\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Diagnostics\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Diagnostics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Diagnostics.Build.Test\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Diagnostics.Build.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Diagnostics.Edp\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Diagnostics.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Edp\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test012be407-61ea-4e45-a2c3-71a45999ca21-20191228083800\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test012be407-61ea-4e45-a2c3-71a45999ca21-20191228083800\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test01971384-3044-413b-8b1c-33b5d461bf23-20200107051823\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test01971384-3044-413b-8b1c-33b5d461bf23-20200107051823\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test0225ec7d-b36c-4ac8-82f0-aa4fafaf10a9-20200111051346\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test0225ec7d-b36c-4ac8-82f0-aa4fafaf10a9-20200111051346\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test025e16a1-328d-45a2-b7e3-71f7e4cde046-20191229064028\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test025e16a1-328d-45a2-b7e3-71f7e4cde046-20191229064028\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test02d1f941-5607-4757-8df7-fd8c5631ab45-20200103083810\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test02d1f941-5607-4757-8df7-fd8c5631ab45-20200103083810\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test039abd7f-360c-42a1-ad5d-77527c519286-20191002233412\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test039abd7f-360c-42a1-ad5d-77527c519286-20191002233412\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test04a0f157-c6fb-4595-b6ca-6c82a2338063-20200108101451\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test04a0f157-c6fb-4595-b6ca-6c82a2338063-20200108101451\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test0737f33e-63e0-4ba9-b04b-b93a1de4e997-20200106083639\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test0737f33e-63e0-4ba9-b04b-b93a1de4e997-20200106083639\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test0a44d7be-63fa-418d-a7b6-89a44dd21894-20200107052935\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test0a44d7be-63fa-418d-a7b6-89a44dd21894-20200107052935\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test0d01b487-7f79-4d87-b330-5c025068db45-20191004190331\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test0d01b487-7f79-4d87-b330-5c025068db45-20191004190331\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test0d643748-e6fe-41ad-b4d3-89a289a0cee0-20191003055620\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test0d643748-e6fe-41ad-b4d3-89a289a0cee0-20191003055620\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test0df83c51-5bb9-43f8-8ae9-bc896ea64f78-20200110220221\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test0df83c51-5bb9-43f8-8ae9-bc896ea64f78-20200110220221\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test0f02c246-7e65-4010-9367-ca4530c3897e-20191004190223\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test0f02c246-7e65-4010-9367-ca4530c3897e-20191004190223\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test157494ec-e788-43b0-8d26-a17e39ee07cc-20191002011945\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test157494ec-e788-43b0-8d26-a17e39ee07cc-20191002011945\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test1661d154-b623-4507-8a56-3a89812c456c-20200111083940\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test1661d154-b623-4507-8a56-3a89812c456c-20200111083940\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test17bbd860-f21d-40ab-9026-16e05f2907f0-20200106083451\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test17bbd860-f21d-40ab-9026-16e05f2907f0-20200106083451\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test194e2333-13cd-43e3-b0a4-c8cdcf1a3600-20200110211106\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test194e2333-13cd-43e3-b0a4-c8cdcf1a3600-20200110211106\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test1bc26b19-b8d8-41f9-a26d-818f277bdf93-20200101113139\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test1bc26b19-b8d8-41f9-a26d-818f277bdf93-20200101113139\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test1c840053-9213-4f2a-8f2e-9bf2297908bd-20200108101424\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test1c840053-9213-4f2a-8f2e-9bf2297908bd-20200108101424\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test1d7bba72-69f1-43cd-a38c-41ce0b5f4bae-20200109050041\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test1d7bba72-69f1-43cd-a38c-41ce0b5f4bae-20200109050041\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test1f7a8078-50e7-4a3a-91eb-d178fd4c403b-20191002233353\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test1f7a8078-50e7-4a3a-91eb-d178fd4c403b-20191002233353\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test1fef1fdc-57ba-46a8-a879-475ba7d45a7a-20200106083509\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test1fef1fdc-57ba-46a8-a879-475ba7d45a7a-20200106083509\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test21332f15-f78d-4d31-afac-79b9dc989432-20191231175840\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test21332f15-f78d-4d31-afac-79b9dc989432-20191231175840\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test22f10717-6939-4003-a9ce-38effd8b77d6-20191007191355\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test22f10717-6939-4003-a9ce-38effd8b77d6-20191007191355\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test2334e6e3-bb72-4241-a36f-c2429d69bc0b-20200106050834\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test2334e6e3-bb72-4241-a36f-c2429d69bc0b-20200106050834\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test24fa9eb5-1c59-4425-b61c-30fd638c2a45-20191003203802\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test24fa9eb5-1c59-4425-b61c-30fd638c2a45-20191003203802\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test2521a545-ed61-4a15-bed1-aba7ce1d81ee-20200106050804\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test2521a545-ed61-4a15-bed1-aba7ce1d81ee-20200106050804\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test25c6fe61-1282-43c2-867b-b5039219989c-20200105081851\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test25c6fe61-1282-43c2-867b-b5039219989c-20200105081851\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test27515c8c-6773-4f92-afb0-35691cc6e3b6-20200103083821\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test27515c8c-6773-4f92-afb0-35691cc6e3b6-20200103083821\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test28012680-48e7-4903-877f-2f29464e63d5-20191229033424\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test28012680-48e7-4903-877f-2f29464e63d5-20191229033424\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test29a7a529-d293-4728-9d7f-257ed996e64f-20200108081759\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test29a7a529-d293-4728-9d7f-257ed996e64f-20200108081759\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test2a5f2d2c-b8e3-46c2-850d-a1641c024fe7-20200107084228\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test2a5f2d2c-b8e3-46c2-850d-a1641c024fe7-20200107084228\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test2ce856af-ab17-48f2-ba3e-bcd9af091061-20200110013246\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test2ce856af-ab17-48f2-ba3e-bcd9af091061-20200110013246\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test2e012e83-6361-4365-963f-6ced8a08e91c-20200110211254\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test2e012e83-6361-4365-963f-6ced8a08e91c-20200110211254\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test2ecf67b2-fb63-4461-b6a6-7026c4fb1168-20191002214026\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test2ecf67b2-fb63-4461-b6a6-7026c4fb1168-20191002214026\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test2ede6564-c7cc-44cb-a1a8-902505c9829d-20191003020742\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test2ede6564-c7cc-44cb-a1a8-902505c9829d-20191003020742\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test2f4ebc17-e27e-48d9-9cc3-ff933c21884e-20200106092410\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test2f4ebc17-e27e-48d9-9cc3-ff933c21884e-20200106092410\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test349ee02c-af9b-4663-a963-823b40eefed8-20200108083612\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test349ee02c-af9b-4663-a963-823b40eefed8-20200108083612\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test34cf6b13-b78e-478b-b596-8b661629371d-20191007195455\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test34cf6b13-b78e-478b-b596-8b661629371d-20191007195455\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test36cc5b60-2b23-4a04-bf95-f7865e1141cf-20200110085718\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test36cc5b60-2b23-4a04-bf95-f7865e1141cf-20200110085718\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3712fca9-5cdd-4609-be69-b02aedc5c55c-20200107084115\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3712fca9-5cdd-4609-be69-b02aedc5c55c-20200107084115\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3772d042-92e2-4bcb-99b7-8a6a119cc088-20191231182808\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3772d042-92e2-4bcb-99b7-8a6a119cc088-20191231182808\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test37a6dd64-d44d-465e-85bc-3bc38be90350-20200104083535\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test37a6dd64-d44d-465e-85bc-3bc38be90350-20200104083535\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test381074d5-7156-472b-801a-b35f8fef4cc6-20200105050612\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test381074d5-7156-472b-801a-b35f8fef4cc6-20200105050612\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3877a44d-4c48-40db-80eb-227272d5acd6-20200110103540\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3877a44d-4c48-40db-80eb-227272d5acd6-20200110103540\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test38ecd28e-7018-4672-840c-3044a5e7a6b5-20200111084208\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test38ecd28e-7018-4672-840c-3044a5e7a6b5-20200111084208\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test395a0b49-442a-450c-8a1f-65b0aa3bcf47-20200105083839\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test395a0b49-442a-450c-8a1f-65b0aa3bcf47-20200105083839\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3971b300-edff-44a8-b61b-7f9b7460a8d6-20191003002234\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3971b300-edff-44a8-b61b-7f9b7460a8d6-20191003002234\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3adeec20-7458-4b3d-af26-0b6bc2aae3eb-20200103083751\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3adeec20-7458-4b3d-af26-0b6bc2aae3eb-20200103083751\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3b20dd96-f3e4-4798-998d-8c433c2449a7-20200108083635\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3b20dd96-f3e4-4798-998d-8c433c2449a7-20200108083635\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3ce2fd4a-8b5a-4c7e-b08d-3e48fc0f45e7-20200104083825\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3ce2fd4a-8b5a-4c7e-b08d-3e48fc0f45e7-20200104083825\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3d499ca7-cc8d-41cc-a6dc-ffb1a4ac4942-20200107053004\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3d499ca7-cc8d-41cc-a6dc-ffb1a4ac4942-20200107053004\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3db7240e-5e42-4d6d-b024-cc9fce3c828b-20200105083520\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3db7240e-5e42-4d6d-b024-cc9fce3c828b-20200105083520\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3f6b7341-635f-48d5-a36d-be5dfe3002c4-20200105050937\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3f6b7341-635f-48d5-a36d-be5dfe3002c4-20200105050937\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3fc26934-ede2-4482-ad5e-f66f6135d4a6-20191228055558\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3fc26934-ede2-4482-ad5e-f66f6135d4a6-20191228055558\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test406d077c-6017-4062-bc96-f809147a2331-20200106050748\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test406d077c-6017-4062-bc96-f809147a2331-20200106050748\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test4302336c-e039-4e70-bcb6-9275f6089e4a-20200108144821\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test4302336c-e039-4e70-bcb6-9275f6089e4a-20200108144821\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test453a087e-8435-46db-970a-4ee633cc4c4a-20200102083458\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test453a087e-8435-46db-970a-4ee633cc4c4a-20200102083458\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test46b73afa-2259-4aff-81e1-a58bf24b59aa-20191229033459\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test46b73afa-2259-4aff-81e1-a58bf24b59aa-20191229033459\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test4a3399ee-82ea-46aa-9e3a-5434b588e3b6-20191228013518\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test4a3399ee-82ea-46aa-9e3a-5434b588e3b6-20191228013518\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test4eb7a185-527b-4b9f-93a8-7f1cec9d062e-20191231151207\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test4eb7a185-527b-4b9f-93a8-7f1cec9d062e-20191231151207\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test520a0915-f9f0-4da4-9fa1-1b74fc1470aa-20200102083505\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test520a0915-f9f0-4da4-9fa1-1b74fc1470aa-20200102083505\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test5397960f-023b-4979-9a8b-800d049045a4-20191007195417\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test5397960f-023b-4979-9a8b-800d049045a4-20191007195417\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test55a36387-8a3f-4159-9884-29b97539a253-20200109080443\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test55a36387-8a3f-4159-9884-29b97539a253-20200109080443\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test5645f186-4ee5-4209-af37-423660e3318c-20191231175947\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test5645f186-4ee5-4209-af37-423660e3318c-20191231175947\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test58b4461d-4d2d-4395-b6d2-ab83d4d8c62f-20200111001002\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test58b4461d-4d2d-4395-b6d2-ab83d4d8c62f-20200111001002\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test5b0bf447-d98d-429d-8334-c032d197c743-20191003203846\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test5b0bf447-d98d-429d-8334-c032d197c743-20191003203846\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test5bc90367-1ea2-400b-a40c-321081bae3f3-20200108145035\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test5bc90367-1ea2-400b-a40c-321081bae3f3-20200108145035\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test5bd0562f-e939-456f-a6ee-c848d1aba616-20200101151641\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test5bd0562f-e939-456f-a6ee-c848d1aba616-20200101151641\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test5e4efe90-916c-4c96-802c-1508a5b6da78-20191231151150\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test5e4efe90-916c-4c96-802c-1508a5b6da78-20191231151150\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test5f8f0c10-cc3c-45ec-a068-fb1c7edfa0d9-20200101145958\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test5f8f0c10-cc3c-45ec-a068-fb1c7edfa0d9-20200101145958\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test60a000b7-286c-4b2b-9137-bbc088736419-20200108144920\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test60a000b7-286c-4b2b-9137-bbc088736419-20200108144920\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test6192a01b-ba47-4d08-904a-71647a49a112-20191008041625\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test6192a01b-ba47-4d08-904a-71647a49a112-20191008041625\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test62835538-89c6-4f66-9034-f7a4b176c615-20191007234245\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test62835538-89c6-4f66-9034-f7a4b176c615-20191007234245\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test651e4ad2-ee4a-462e-a506-b56b1969f5d0-20200110230749\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test651e4ad2-ee4a-462e-a506-b56b1969f5d0-20200110230749\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test691d94e5-c40c-4568-94b0-09b08aea42b1-20200106050808\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test691d94e5-c40c-4568-94b0-09b08aea42b1-20200106050808\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test6aa3643c-011a-4180-877f-cad955a8e664-20191007234642\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test6aa3643c-011a-4180-877f-cad955a8e664-20191007234642\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test6cfb469b-8478-468f-9bb5-691affd32abb-20200107083803\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test6cfb469b-8478-468f-9bb5-691affd32abb-20200107083803\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test6d36b6b2-7956-4e62-91c1-c33792fd4bb1-20200110123203\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test6d36b6b2-7956-4e62-91c1-c33792fd4bb1-20200110123203\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test6e28168e-a9c8-4c0a-8b40-60c2a1502d43-20200108052802\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test6e28168e-a9c8-4c0a-8b40-60c2a1502d43-20200108052802\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test6eb763ac-7fbe-4e44-bee7-aad035ee2a7d-20200110084429\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test6eb763ac-7fbe-4e44-bee7-aad035ee2a7d-20200110084429\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test6efec253-f625-46f0-9d74-324f69e963d8-20200107070514\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test6efec253-f625-46f0-9d74-324f69e963d8-20200107070514\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test70fa7e4c-3122-4ff7-aec6-fe75ab660a01-20200108105900\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test70fa7e4c-3122-4ff7-aec6-fe75ab660a01-20200108105900\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test710a5fbf-06c7-46ac-b96d-a29d2586422f-20200108083639\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test710a5fbf-06c7-46ac-b96d-a29d2586422f-20200108083639\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test71d72489-67c6-45e2-b1e6-a19546efc823-20200105112903\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test71d72489-67c6-45e2-b1e6-a19546efc823-20200105112903\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test721fccf1-2b3e-44b6-908f-51b910e88b09-20200111104931\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test721fccf1-2b3e-44b6-908f-51b910e88b09-20200111104931\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test742d0189-9e41-4f1b-8ad3-31c05d34903b-20200111103247\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test742d0189-9e41-4f1b-8ad3-31c05d34903b-20200111103247\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test7836a97c-f56e-48d0-8b5d-61e79aeb3226-20200111071656\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7836a97c-f56e-48d0-8b5d-61e79aeb3226-20200111071656\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test78666b2e-25c8-4a48-931a-3131a0317d73-20191002194352\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test78666b2e-25c8-4a48-931a-3131a0317d73-20191002194352\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test79f13508-fcbd-47b9-988f-1c21ef5e7f2e-20191002015429\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test79f13508-fcbd-47b9-988f-1c21ef5e7f2e-20191002015429\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test79fb90ce-4691-4212-99a7-6e4069bd5984-20191007234256\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test79fb90ce-4691-4212-99a7-6e4069bd5984-20191007234256\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test7a8cf687-6a21-4181-ba98-902fee717bd3-20200104103216\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7a8cf687-6a21-4181-ba98-902fee717bd3-20200104103216\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test7aabf813-6644-483a-b9e0-ba6f8973ba1f-20191002232822\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7aabf813-6644-483a-b9e0-ba6f8973ba1f-20191002232822\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test7c96c10a-0c8f-4ab0-83fd-1ad66a362e33-20191229033458\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7c96c10a-0c8f-4ab0-83fd-1ad66a362e33-20191229033458\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test7e79b6ff-2559-44fe-b3ba-afaa68d63636-20200108112116\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7e79b6ff-2559-44fe-b3ba-afaa68d63636-20200108112116\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test7ea372f7-ea7e-4b9e-bbad-4f35c1567aa2-20200108052736\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7ea372f7-ea7e-4b9e-bbad-4f35c1567aa2-20200108052736\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test7fac3d04-98a5-4fc4-904e-9ea3b86eadc2-20200106050751\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7fac3d04-98a5-4fc4-904e-9ea3b86eadc2-20200106050751\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test7fe20dd6-9ed9-4126-bb1d-031c01ac4550-20200101114504\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7fe20dd6-9ed9-4126-bb1d-031c01ac4550-20200101114504\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test7ff974d9-c841-4249-b05b-bbf663cb4605-20200106084104\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7ff974d9-c841-4249-b05b-bbf663cb4605-20200106084104\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test815bd4d5-fc24-4a47-be20-063c4809902c-20200109050508\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test815bd4d5-fc24-4a47-be20-063c4809902c-20200109050508\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test817654d0-2109-4d95-9284-8c8a9d960d08-20200108053758\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test817654d0-2109-4d95-9284-8c8a9d960d08-20200108053758\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test821ca3b6-dd05-4e80-b3d8-74ba03b2609b-20191231151151\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test821ca3b6-dd05-4e80-b3d8-74ba03b2609b-20191231151151\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test8285dc3e-637d-4d46-9695-adc39cbe7d2f-20200108144457\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test8285dc3e-637d-4d46-9695-adc39cbe7d2f-20200108144457\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test828aae03-9239-4938-a303-c23c42311878-20200102083419\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test828aae03-9239-4938-a303-c23c42311878-20200102083419\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test84afd814-5098-49ab-af99-e50350b5898b-20200110211134\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test84afd814-5098-49ab-af99-e50350b5898b-20200110211134\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test85b08563-b15f-4202-a0bc-f2bc2df2c71a-20200107053335\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test85b08563-b15f-4202-a0bc-f2bc2df2c71a-20200107053335\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test88aac268-c087-4481-b78e-99b920784a33-20200101084853\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test88aac268-c087-4481-b78e-99b920784a33-20200101084853\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test88dbd442-a8cc-4874-81a0-d3192c61df62-20191001224544\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test88dbd442-a8cc-4874-81a0-d3192c61df62-20191001224544\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test894dfb75-a00f-4f0c-894c-cae1c9846ad3-20200105051803\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test894dfb75-a00f-4f0c-894c-cae1c9846ad3-20200105051803\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test8d09bf4d-ee63-4ab1-a986-a4b802418403-20200111051447\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test8d09bf4d-ee63-4ab1-a986-a4b802418403-20200111051447\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test8d4d652b-4f05-4e99-93dd-78b9a36b5c78-20191003203755\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test8d4d652b-4f05-4e99-93dd-78b9a36b5c78-20191003203755\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test8de64739-43d8-4f84-af65-fdb3d0885288-20200108053543\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test8de64739-43d8-4f84-af65-fdb3d0885288-20200108053543\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test8e324c65-a51d-4eeb-9ec8-d5f8662dc041-20191228165107\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test8e324c65-a51d-4eeb-9ec8-d5f8662dc041-20191228165107\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test8e564580-8e53-4300-85f1-bf7f31dd37ff-20200107013348\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test8e564580-8e53-4300-85f1-bf7f31dd37ff-20200107013348\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test8f458ca7-8898-4d58-b93d-bfb0c3da028c-20200109050310\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test8f458ca7-8898-4d58-b93d-bfb0c3da028c-20200109050310\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test901cd6ca-5565-4552-a3de-d204d01935c0-20200108083706\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test901cd6ca-5565-4552-a3de-d204d01935c0-20200108083706\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test907b39e5-4008-4b55-93a0-18e9697b9cf3-20200108053817\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test907b39e5-4008-4b55-93a0-18e9697b9cf3-20200108053817\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test90c2be7c-d7ec-4abf-9fad-fef90fc3ef4d-20191004022234\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test90c2be7c-d7ec-4abf-9fad-fef90fc3ef4d-20191004022234\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test922db678-6ee8-43d5-86ff-6a86e132d332-20200107085231\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test922db678-6ee8-43d5-86ff-6a86e132d332-20200107085231\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test93b88aec-5277-4b1b-910c-7008e972ce91-20200107013304\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test93b88aec-5277-4b1b-910c-7008e972ce91-20200107013304\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test95a9104b-6cba-42d8-82ff-cc37e5ac44db-20200108081723\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test95a9104b-6cba-42d8-82ff-cc37e5ac44db-20200108081723\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test96da1605-19e0-46eb-9ce0-53e840f5e2cb-20200101111729\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test96da1605-19e0-46eb-9ce0-53e840f5e2cb-20200101111729\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test996066b2-7d29-400f-929b-e343a21046f7-20191231151212\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test996066b2-7d29-400f-929b-e343a21046f7-20191231151212\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test99663fff-ed21-4a91-9687-1a6da2abb033-20200106084508\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test99663fff-ed21-4a91-9687-1a6da2abb033-20200106084508\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test9eb5efa5-c3c1-4c13-80a6-11f5eba67372-20200108144852\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test9eb5efa5-c3c1-4c13-80a6-11f5eba67372-20200108144852\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testa3791896-b1fc-491e-ba0d-aefcd8d9e52a-20200105083503\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testa3791896-b1fc-491e-ba0d-aefcd8d9e52a-20200105083503\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testa37ff709-a078-45a0-8187-41733df8e101-20200109050003\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testa37ff709-a078-45a0-8187-41733df8e101-20200109050003\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testa4c5fe4e-936e-4be1-a612-a331aff54a8c-20200111105055\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testa4c5fe4e-936e-4be1-a612-a331aff54a8c-20200111105055\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testa59bce1d-e32c-423d-a86e-945d4aeb98b4-20200107051821\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testa59bce1d-e32c-423d-a86e-945d4aeb98b4-20200107051821\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testa604c059-8279-4f4d-a354-eec27222a06c-20200111051514\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testa604c059-8279-4f4d-a354-eec27222a06c-20200111051514\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testa71fefb1-0d9c-4fb3-8d3d-5dcd12d72b77-20200103103221\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testa71fefb1-0d9c-4fb3-8d3d-5dcd12d72b77-20200103103221\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testa748013d-c5a6-44f9-88eb-43167207c742-20200111051402\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testa748013d-c5a6-44f9-88eb-43167207c742-20200111051402\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testaab67022-4f2b-420d-a06a-2c4045110cdf-20191229033144\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testaab67022-4f2b-420d-a06a-2c4045110cdf-20191229033144\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testacab9541-280f-4491-9f49-ac57653f0a07-20200105083839\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testacab9541-280f-4491-9f49-ac57653f0a07-20200105083839\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testad298437-0349-4cc7-88a9-d8aabcba9df1-20191002233431\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testad298437-0349-4cc7-88a9-d8aabcba9df1-20191002233431\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testadd68286-f9e0-4ab1-a526-d8f3cf0f054e-20200105084128\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testadd68286-f9e0-4ab1-a526-d8f3cf0f054e-20200105084128\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testade4c52b-18f5-4b67-8e93-945358ce4f7d-20191007234259\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testade4c52b-18f5-4b67-8e93-945358ce4f7d-20191007234259\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testae421c1d-0211-4ef2-b372-564ce8ad484a-20200110104035\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testae421c1d-0211-4ef2-b372-564ce8ad484a-20200110104035\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testafbbd8bf-aec5-48bf-8fea-73fa15ccc315-20191001224727\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testafbbd8bf-aec5-48bf-8fea-73fa15ccc315-20191001224727\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testb15148bf-78d2-42d4-ad08-b3ad8fb4b122-20200101084759\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testb15148bf-78d2-42d4-ad08-b3ad8fb4b122-20200101084759\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testb4237708-3688-40ea-85a2-275c05f4d100-20191228083519\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testb4237708-3688-40ea-85a2-275c05f4d100-20191228083519\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testb799a18f-be45-4c5c-8438-163ac2e1f1e7-20191004190529\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testb799a18f-be45-4c5c-8438-163ac2e1f1e7-20191004190529\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testb7cee88a-e5ac-4af4-99c8-7247020b00c3-20200105051201\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testb7cee88a-e5ac-4af4-99c8-7247020b00c3-20200105051201\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testb7df0d9a-27c0-4ca5-b692-08dd90387b98-20200111083443\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testb7df0d9a-27c0-4ca5-b692-08dd90387b98-20200111083443\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testbbf6bf32-4bd0-4381-b8f7-2658f585df4d-20191003203846\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testbbf6bf32-4bd0-4381-b8f7-2658f585df4d-20191003203846\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testbeea1376-166a-4b1a-8923-c907cc9737d9-20200107013336\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testbeea1376-166a-4b1a-8923-c907cc9737d9-20200107013336\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testbf9154e9-6166-48c2-86fe-1f331be606d7-20200107051823\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testbf9154e9-6166-48c2-86fe-1f331be606d7-20200107051823\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc0d7c3c5-23b8-489c-a5e0-ae87c681b696-20200101083539\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc0d7c3c5-23b8-489c-a5e0-ae87c681b696-20200101083539\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc193f31a-5186-4e93-84f6-0e4ab87b73c1-20200107052937\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc193f31a-5186-4e93-84f6-0e4ab87b73c1-20200107052937\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc1c7e8dc-fa8c-47d9-8305-de6d1451b939-20200101085248\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc1c7e8dc-fa8c-47d9-8305-de6d1451b939-20200101085248\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc1d0c917-e2ae-430c-a2ca-383fb0fda046-20191007235839\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc1d0c917-e2ae-430c-a2ca-383fb0fda046-20191007235839\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc23a3fbb-6e95-4c0d-94fc-c8ab14dddf1c-20191231151117\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc23a3fbb-6e95-4c0d-94fc-c8ab14dddf1c-20191231151117\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc2697630-6247-411a-94b3-c2974ad8cbee-20191007195417\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc2697630-6247-411a-94b3-c2974ad8cbee-20191007195417\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc466b80f-670f-4383-89b8-44e0d509fa20-20191002000516\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc466b80f-670f-4383-89b8-44e0d509fa20-20191002000516\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc5c8d9bd-75fa-4db3-9f34-5d7b7098584c-20191003203851\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc5c8d9bd-75fa-4db3-9f34-5d7b7098584c-20191003203851\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc8b6d14b-a5db-48e0-bfad-a2818d432bea-20200104083443\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc8b6d14b-a5db-48e0-bfad-a2818d432bea-20200104083443\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc933efa8-c553-4b93-884f-b7221d9ca789-20191228083750\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc933efa8-c553-4b93-884f-b7221d9ca789-20191228083750\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testcbe8ab80-46ef-49b1-a7bb-4e3d6e50e49f-20200104050811\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testcbe8ab80-46ef-49b1-a7bb-4e3d6e50e49f-20200104050811\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testccc0b5e6-9b0d-451a-8ac4-6f4af293b913-20200106092645\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testccc0b5e6-9b0d-451a-8ac4-6f4af293b913-20200106092645\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testcec64786-04b1-487c-80ec-050da646fb1c-20191005123412\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testcec64786-04b1-487c-80ec-050da646fb1c-20191005123412\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testd104a52f-eba2-401d-8e7f-a841c90f7712-20191228083553\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testd104a52f-eba2-401d-8e7f-a841c90f7712-20191228083553\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testd724cea4-0d3c-4539-b2ff-be08fb23a67e-20200107083714\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testd724cea4-0d3c-4539-b2ff-be08fb23a67e-20200107083714\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testd8e60bac-27ff-4fba-90b8-732c9c5ff91c-20191228083751\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testd8e60bac-27ff-4fba-90b8-732c9c5ff91c-20191228083751\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testd99db4a5-7683-4584-89ad-fefd711de284-20191004190210\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testd99db4a5-7683-4584-89ad-fefd711de284-20191004190210\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testd9b4309a-67bc-4cd8-ac47-094cb20ca6aa-20200101090202\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testd9b4309a-67bc-4cd8-ac47-094cb20ca6aa-20200101090202\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testda3320e0-28f2-4146-a002-e06296362711-20191004190115\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testda3320e0-28f2-4146-a002-e06296362711-20191004190115\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testda714121-3240-4253-90c3-48c43f115c90-20200102083419\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testda714121-3240-4253-90c3-48c43f115c90-20200102083419\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testdb357558-60b4-4ee3-9ec3-ba22c5d827fb-20191004020617\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testdb357558-60b4-4ee3-9ec3-ba22c5d827fb-20191004020617\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testdc7230e9-df6d-4edd-a57c-ef7e0432c463-20191002011345\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testdc7230e9-df6d-4edd-a57c-ef7e0432c463-20191002011345\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testdccb59de-436f-4935-bed6-2e677dcaf36a-20200109111802\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testdccb59de-436f-4935-bed6-2e677dcaf36a-20200109111802\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testde985b23-9333-4f6e-a5e8-82025a38b2af-20200102083510\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testde985b23-9333-4f6e-a5e8-82025a38b2af-20200102083510\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Teste271da3e-cbcb-4ee7-8770-f297f414451f-20191003015540\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Teste271da3e-cbcb-4ee7-8770-f297f414451f-20191003015540\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Teste4070edd-aec0-455d-8a79-aecdb7170b6d-20191007234642\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Teste4070edd-aec0-455d-8a79-aecdb7170b6d-20191007234642\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Teste42f351a-4da0-4f0d-93e9-ef1d98e06659-20200108083633\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Teste42f351a-4da0-4f0d-93e9-ef1d98e06659-20200108083633\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Teste66ca23c-f4bf-4eb3-8418-139364d19e7d-20200107062643\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Teste66ca23c-f4bf-4eb3-8418-139364d19e7d-20200107062643\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Teste78b1ab2-1380-48ab-9923-0276cdb7198b-20191001224742\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Teste78b1ab2-1380-48ab-9923-0276cdb7198b-20191001224742\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Teste8607e14-b4f8-472a-bd5b-893b8d9612e6-20200112045941\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Teste8607e14-b4f8-472a-bd5b-893b8d9612e6-20200112045941\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Teste980b80e-3add-42c0-bc98-a84020b2d128-20200108101640\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Teste980b80e-3add-42c0-bc98-a84020b2d128-20200108101640\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Tested79dba9-2d38-4ea9-a01c-56e94b30ca7a-20191007195447\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Tested79dba9-2d38-4ea9-a01c-56e94b30ca7a-20191007195447\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testee9dcf5f-f7c4-4192-a8f4-28e9bc7d0f7c-20191001225005\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testee9dcf5f-f7c4-4192-a8f4-28e9bc7d0f7c-20191001225005\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testefbb340a-b68b-4200-872b-d05e7d29f92d-20191007195432\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testefbb340a-b68b-4200-872b-d05e7d29f92d-20191007195432\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testf1fc0559-6740-48dd-9501-2b933c731d52-20200103083458\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testf1fc0559-6740-48dd-9501-2b933c731d52-20200103083458\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testf41dfc97-bb51-4fba-86ca-a6f2695c415a-20200107050834\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testf41dfc97-bb51-4fba-86ca-a6f2695c415a-20200107050834\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testf5784447-83ed-4c00-8764-ea0f932aafa2-20200106085748\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testf5784447-83ed-4c00-8764-ea0f932aafa2-20200106085748\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testf6128ef6-c13c-420e-8088-0710888ce88b-20200109050003\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testf6128ef6-c13c-420e-8088-0710888ce88b-20200109050003\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testf863ab2c-ada9-4646-84c7-1f83a82375d7-20191229033226\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testf863ab2c-ada9-4646-84c7-1f83a82375d7-20191229033226\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testfac552a7-418f-4baa-8f51-d199ceff5c68-20200103050817\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testfac552a7-418f-4baa-8f51-d199ceff5c68-20200103050817\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testfb7be054-5c15-494f-822c-b64f9a36e2f3-20200105051753\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testfb7be054-5c15-494f-822c-b64f9a36e2f3-20200105051753\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testfc5c7585-6c9a-4aa4-a7c4-1223a94e00c7-20200104083552\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testfc5c7585-6c9a-4aa4-a7c4-1223a94e00c7-20200104083552\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.FileServer.Edp\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.FileServer.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.FleetDiagnostics\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.FleetDiagnostics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.FleetDiagnostics.Dev\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.FleetDiagnostics.Dev\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Geneva\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Geneva\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.KeyVault\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.KeyVault\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.KeyVault.Edp\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.KeyVault.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.LabServices\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.LabServices\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.LabServices.test\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.LabServices.test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.Agent\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.Agent\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.Edp\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.Dev\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.Dev\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.Dev.INT\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.Dev.INT\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.Dev.SCALE\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.Dev.SCALE\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.Dev.TEST\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.Dev.TEST\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.GuestHealth\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.GuestHealth\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.DEV\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.DEV\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.INT\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.INT\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.SCALE\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.SCALE\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.TEST\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.TEST\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.INT.Dev\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.INT.Dev\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.SCALE.Dev\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.SCALE.Dev\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.TEST.Dev\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.TEST.Dev\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.WorkloadInsights.Test\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.WorkloadInsights.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.WorkloadInsightsTest.newnamespace\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.WorkloadInsightsTest.newnamespace\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.Workloads\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.Workloads\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.Workloads.Dev\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.Workloads.Dev\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitoring.DependencyAgent\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitoring.DependencyAgent\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitoring.DependencyAgent.Edp\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitoring.DependencyAgent.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Networking.DNS\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Networking.DNS\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Networking.SDN\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Networking.SDN\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.NetworkWatcher\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.NetworkWatcher\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.NetworkWatcher.Test\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.NetworkWatcher.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.OpenSSH\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.OpenSSH\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Performance.Diagnostics\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Performance.Diagnostics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Performance.Diagnostics.Edp\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Performance.Diagnostics.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.RecoveryServices\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices.Edp\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.RecoveryServices.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices.SiteRecovery\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.RecoveryServices.SiteRecovery\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices.SiteRecovery2\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.RecoveryServices.SiteRecovery2\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices.WorkloadBackup\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.RecoveryServices.WorkloadBackup\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices.WorkloadBackup.Edp\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.RecoveryServices.WorkloadBackup.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.AntimalwareSignature\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.AntimalwareSignature\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.AntimalwareSignature.Edp\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.AntimalwareSignature.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.Dsms\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.Dsms\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.Dsms.Edp\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.Dsms.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.Edp\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.LinuxAttestation\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.LinuxAttestation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.LinuxTestAttestation\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.LinuxTestAttestation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.Monitoring\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.Monitoring\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.Monitoring.Test\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.Monitoring.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.Monitoring.Testing\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.Monitoring.Testing\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.Test\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.TestWindowsAttestation\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.TestWindowsAttestation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.WindowsAttestation\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.WindowsAttestation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.WinTestAttestation\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.WinTestAttestation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Sentinel.DnsExtension.Dev\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Sentinel.DnsExtension.Dev\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.ServiceFabric.MC\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.ServiceFabric.MC\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.ServiceFabric.MC.Test\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.ServiceFabric.MC.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.SiteRecovery.Stage\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.SiteRecovery.Stage\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.SiteRecovery.Test\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.SiteRecovery.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.SiteRecovery2.Test\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.SiteRecovery2.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Test.Identity\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Test.Identity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WindowsFabric.Test\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WindowsFabric.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.ReleasePipeTest\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.ReleasePipeTest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.ReleasePipeTest.INT\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.ReleasePipeTest.INT\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.ReleasePipeTest.TEST\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.ReleasePipeTest.TEST\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test1\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test2\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test2\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test3\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test3\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test4\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test4\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test5\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test5\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test5.INT\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test5.INT\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test5.TEST\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test5.TEST\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.VincentTest\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.VincentTest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.VincentTest2\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.VincentTest2\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.VincentTest3\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.VincentTest3\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.VincentTest4\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.VincentTest4\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Test\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.TestTest\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.TestTest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.TestTest.INT\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.TestTest.INT\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.TestTest.TEST\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.TestTest.TEST\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Windows.ReleasePipeTest.INT\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Windows.ReleasePipeTest.INT\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Windows.ReleasePipeTest.TEST\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Windows.ReleasePipeTest.TEST\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoring\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring.Test\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoring.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoringTest\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoringTest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureData\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureData\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureData.Test\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureData.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.Canary\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights.Canary\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.Corp\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights.Corp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.Linux.Test\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights.Linux.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.LinuxTest\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights.LinuxTest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.Meya0206\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights.Meya0206\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.MeyaCorp\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights.MeyaCorp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.Test\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.Testing\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights.Testing\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureSecurity.JITAccess\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureSecurity.JITAccess\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.CloudBackup.Workload.Extension\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.CloudBackup.Workload.Extension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.CloudBackup.Workload.Extension.Edp\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.CloudBackup.Workload.Extension.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Compute\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Compute.Test\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Compute.TestSar\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute.TestSar\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.CPlat.Core\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.CPlat.Core\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.CPlat.Core.Edp\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.CPlat.Core.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Dcsswe.Extensions\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Dcsswe.Extensions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.EnterpriseCloud.Monitoring\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring.Edp\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.EnterpriseCloud.Monitoring.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring.Test\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.EnterpriseCloud.Monitoring.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Golive.Extensions\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Golive.Extensions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.GuestConfig.Test\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.GuestConfig.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.GuestConfiguration\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.GuestConfiguration\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.GuestConfiguration.Edp\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.GuestConfiguration.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.GuestConfiguration.Test\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.GuestConfiguration.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.HpcCompute\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.HpcCompute\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.HpcCompute.Edp\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.HpcCompute.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.HpcPack\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.HpcPack\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Interceptor\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Interceptor\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.M365\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.M365\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.M365SecurityConfiguration.Kevlar.Test\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.M365SecurityConfiguration.Kevlar.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.ManagedIdentity\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.ManagedIdentity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.ManagedServices\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.ManagedServices\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.ManagedServices.Edp\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.ManagedServices.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.MonitoringAgent.Extension\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.MonitoringAgent.Extension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Network\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Network\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.OSTCExtensions\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.OSTCExtensions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.OSTCExtensions.Edp\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.OSTCExtensions.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.OSTCExtensions.Test\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.OSTCExtensions.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.OSTCExtensions.Testing\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.OSTCExtensions.Testing\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Powershell\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Powershell\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Powershell.Test\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Powershell.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Powershell.Test01\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Powershell.Test01\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.SecurityManagement.Kevlar\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.SecurityManagement.Kevlar\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Sentinel.AzureMonitorAgentExtensions\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Sentinel.AzureMonitorAgentExtensions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.SoftwareUpdateManagement\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.SoftwareUpdateManagement\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.SoftwareUpdateManagement.Test\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.SoftwareUpdateManagement.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.SqlServer.Managability.IaaS.Test\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.SqlServer.Managability.IaaS.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.SqlServer.Management\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.SqlServer.Management\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.SqlServer.Management.Test\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.SqlServer.Management.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.SystemCenter\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.SystemCenter\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.SystemCenter.Test\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.SystemCenter.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Test.Azure.Workloads\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Test.Azure.Workloads\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.TestSqlServer.Edp\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.TestSqlServer.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.ETWTraceListenerService\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.Azure.ETWTraceListenerService\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.RemoteDebug\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.Azure.RemoteDebug\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.RemoteDebug.Json\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.Azure.RemoteDebug.Json\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.ServiceProfiler\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.ServiceProfiler\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.Services\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.Services\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.WindowsAzure.DevTest\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.WindowsAzure.DevTest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.WindowsAzure.DevTest.Test\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.WindowsAzure.DevTest.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.WindowsAzure.RemoteDebug\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.WindowsAzure.RemoteDebug\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.WindowsAzure.Test.RemoteDebug\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.WindowsAzure.Test.RemoteDebug\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Windows.Azure.Extensions\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Windows.Azure.Extensions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Windows.AzureRemoteApp.Test\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Windows.AzureRemoteApp.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Windows.RemoteDesktop\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Windows.RemoteDesktop\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.WindowsAdminCenter\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.WindowsAdminCenter\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.WindowsAdminCenter.Test\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.WindowsAdminCenter.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.WindowsAzure.Compute\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.WindowsAzure.Compute\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.WindowsAzure.Compute.test\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.WindowsAzure.Compute.test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.WVD\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.WVD\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoftagciuk\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoftagciuk\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoftazurecituswarp\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoftazurecituswarp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftAzureSiteRecovery\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftAzureSiteRecovery\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftBizTalkServer\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftBizTalkServer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftCBLMariner\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftCBLMariner\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoftcmotest\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoftcmotest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoftcorporation1602274591143\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoftcorporation1602274591143\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoftcorporation1620407702632\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoftcorporation1620407702632\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftDynamicsAX\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftDynamicsAX\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftDynamicsGP\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftDynamicsGP\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftDynamicsNAV\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftDynamicsNAV\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoftfarmbeats\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoftfarmbeats\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftHybridCloudStorage\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftHybridCloudStorage\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftOSTC\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftOSTC\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftPowerBI\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftPowerBI\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftRServer\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftRServer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftSharePoint\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftSharePoint\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftSQLServer\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftSQLServer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftTestLinuxPPS\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftTestLinuxPPS\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftVisualStudio\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftVisualStudio\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftWindowsDesktop\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsDesktop\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftWindowsServer\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsServer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftWindowsServerHPCPack\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsServerHPCPack\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft_iot_edge\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft_iot_edge\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft_javaeeonazure_test\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft_javaeeonazure_test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microstrategy\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microstrategy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"midasolutions\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/midasolutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"middleware\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/middleware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"midfin\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/midfin\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"midvision\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/midvision\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mihupcommunicationspvtltd1599046998010\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mihupcommunicationspvtltd1599046998010\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mindcti\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mindcti\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"minio\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/minio\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"miraclelinux\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/miraclelinux\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"miracl_linux\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/miracl_linux\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"miri-infotech-pvt-ltd\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/miri-infotech-pvt-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mistio1601460379393\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mistio1601460379393\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mobilab\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mobilab\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"modern-systems\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/modern-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"modexblockchaindatabase\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/modexblockchaindatabase\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"monetdbsolutions1611751313758\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/monetdbsolutions1611751313758\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"monitorapp1579029852605\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/monitorapp1579029852605\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"monitorcomputersystemsltd\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/monitorcomputersystemsltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"moogsoft\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/moogsoft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"morpheus-data\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/morpheus-data\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"moviemasher\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/moviemasher\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mriisoftllc1579457820427\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mriisoftllc1579457820427\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"msopentech\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/msopentech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mtnfog\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mtnfog\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"multima1643619641681\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/multima1643619641681\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"multisoft-ab\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/multisoft-ab\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mvp-systems\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mvp-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mwg_azure\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mwg_azure\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mxhero\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mxhero\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"my-com\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/my-com\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"myarchinc1614657280935\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/myarchinc1614657280935\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"narrativescience\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/narrativescience\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nasuni\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nasuni\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nasunicorporation\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nasunicorporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"navicloudrsoftwarepteltd1601967280369\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/navicloudrsoftwarepteltd1601967280369\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ncache\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ncache\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ncbi\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ncbi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ncomputingglobalinc1604353053068\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ncomputingglobalinc1604353053068\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ndl\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ndl\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ndstriyelotomasyonsistemlerisanvetica1623147454601\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ndstriyelotomasyonsistemlerisanvetica1623147454601\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nebbiolo-technologies-inc\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nebbiolo-technologies-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nec-technologies\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nec-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nefelinetworks1591201080882\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nefelinetworks1591201080882\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"neo4j\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/neo4j\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"neos\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/neos\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"neowaybusinesssolutions-4956350\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/neowaybusinesssolutions-4956350\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netapp\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netapp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netatwork\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netatwork\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netfoundryinc\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netfoundryinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netgate\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netgate\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netikus-net-ltd\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netikus-net-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netiq\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netiq\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netka\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netka\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netmail\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netmail\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netscout\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netscout\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netspi\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netspi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netsweeper\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netsweeper\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"networksexchangetechnologyltd\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/networksexchangetechnologyltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netwrix\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netwrix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netx\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netx\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"neusoft-neteye\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/neusoft-neteye\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"newegginc1646343565758\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/newegginc1646343565758\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"newnetcommunicationtechnologies1589991852134\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/newnetcommunicationtechnologies1589991852134\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"NewRelic.Infrastructure.Extensions\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/NewRelic.Infrastructure.Extensions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"newtglobalconsultingllc1581492268566\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/newtglobalconsultingllc1581492268566\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nextronic-5290868\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nextronic-5290868\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nginxinc\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nginxinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nice-it-management-solutions\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nice-it-management-solutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nicepeopleatwork\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nicepeopleatwork\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nilespartnersinc1617691698386\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nilespartnersinc1617691698386\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"niolabs-5229713\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/niolabs-5229713\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nirvatosoftwarepvtltd1601368706606\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nirvatosoftwarepvtltd1601368706606\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nodejsapi\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nodejsapi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"noianetworklimited1584098036197\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/noianetworklimited1584098036197\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nokiaofamericacorporation1591716055441\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nokiaofamericacorporation1591716055441\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"noobaa\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/noobaa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"norcominformationtechnologygmbhcokgaa\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/norcominformationtechnologygmbhcokgaa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"noricumcloudsolutions1600524477681\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/noricumcloudsolutions1600524477681\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"norsync\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/norsync\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"northbridge-secure\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/northbridge-secure\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nozominetworks1582208017986\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nozominetworks1582208017986\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nri\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nri\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ntegralinc1586961136942\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ntegralinc1586961136942\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ntt-data-intellilink-corporation\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ntt-data-intellilink-corporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nttdata\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nttdata\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nttltd\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nttltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nuco-networks\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nuco-networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"numbersbelieve\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/numbersbelieve\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"numtrallcpublisher\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/numtrallcpublisher\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nuxeo\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nuxeo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nvidia\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nvidia\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"o2mc-real-time-data-platform\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/o2mc-real-time-data-platform\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"objectivity-inc\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/objectivity-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"objectivity1595351622261\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/objectivity1595351622261\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"oceanblue-cloud\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/oceanblue-cloud\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"OctopusDeploy.Tentacle\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/OctopusDeploy.Tentacle\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"odix\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/odix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"odysseuscomputationalsolutions1630242118741\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/odysseuscomputationalsolutions1630242118741\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"odysseyconsultantsltd\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/odysseyconsultantsltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"officeatwork-ag\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/officeatwork-ag\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"omega-software\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/omega-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"onapsis\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/onapsis\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"oncore_cloud_services-4944214\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/oncore_cloud_services-4944214\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"onexgroup\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/onexgroup\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"onspecta\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/onspecta\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ontology\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ontology\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"onyx-point-inc\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/onyx-point-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"op5\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/op5\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"open-connect-systems\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/open-connect-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"opencell\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/opencell\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"openlinkswcom-pago\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/openlinkswcom-pago\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"OpenLogic\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/OpenLogic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"openrefactoryinc1620140917523\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/openrefactoryinc1620140917523\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"openshotstudiosllc\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/openshotstudiosllc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"opentext\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/opentext\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"openvpn\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/openvpn\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"opslogix\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/opslogix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"opswatinc1619007967290\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/opswatinc1619007967290\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"optimitiveslu1618320281443\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/optimitiveslu1618320281443\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"option3\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/option3\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Oracle\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Oracle\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"oraylis\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/oraylis\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"oraylisbi\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/oraylisbi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"orbs-network\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/orbs-network\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"oriana\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/oriana\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"orientdb\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/orientdb\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"oroinc\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/oroinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"osirium-ltd\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/osirium-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"osisoft\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/osisoft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"osnexus\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/osnexus\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"outpost24\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/outpost24\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"outsystems\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/outsystems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ovaledge1618392232783\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ovaledge1618392232783\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pachyderminc1585170006545\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pachyderminc1585170006545\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pacteratechnologiesinc\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pacteratechnologiesinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"paladionnetworkspvtltd1606120508449\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/paladionnetworkspvtltd1606120508449\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"paloaltonetworks\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/paloaltonetworks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"panopta\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/panopta\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"panorama-necto\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/panorama-necto\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"panzura-file-system\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/panzura-file-system\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"parabole\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/parabole\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"paralaxiomtechnologiesprivatelimited1596433357886\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/paralaxiomtechnologiesprivatelimited1596433357886\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"parallels\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/parallels\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"parasoft\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/parasoft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"parkersoftwarelimited1609786657569\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/parkersoftwarelimited1609786657569\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"parsec-for-teams\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/parsec-for-teams\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pasifikciptamandiri\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pasifikciptamandiri\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"passlogy\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/passlogy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"paxata\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/paxata\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pcman\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pcman\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"peer-software-inc\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/peer-software-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"penta-security-systems-inc\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/penta-security-systems-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"percona\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/percona\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"perforce\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/perforce\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"periscope-tech-4791746\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/periscope-tech-4791746\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"piolinkinc1582849368309\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/piolinkinc1582849368309\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pivotal\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pivotal\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pixitmedia1591611150480\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pixitmedia1591611150480\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"plesk\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/plesk\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pmsoftwareinternational1603102514882\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pmsoftwareinternational1603102514882\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pnop\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pnop\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"polarityioinc1628691850891\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/polarityioinc1628691850891\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"portalarchitects\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/portalarchitects\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"portsysinc\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/portsysinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"postgres-pro\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/postgres-pro\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"powerbireach\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/powerbireach\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"prakshepprivatelimited1619949827900\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/prakshepprivatelimited1619949827900\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"prasselsrl1645470739547\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/prasselsrl1645470739547\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"prestashop\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/prestashop\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"prestige_informatique-1090178\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/prestige_informatique-1090178\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"prime-strategy\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/prime-strategy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"primekey\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/primekey\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"primestrategynewyorkinc\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/primestrategynewyorkinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pro-vision\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pro-vision\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"probityinc1581611299345\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/probityinc1581611299345\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"process-one\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/process-one\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"processgold\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/processgold\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"procomputers\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/procomputers\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"procomputerssrl1594239153814\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/procomputerssrl1594239153814\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"profecia\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/profecia\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Profiler.AgentOrchestrationRefactor.Test\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Profiler.AgentOrchestrationRefactor.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Profiler.Master.Test\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Profiler.Master.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"profisee\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/profisee\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"progelspa\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/progelspa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"progresssoftwarecorporation\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/progresssoftwarecorporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"proliongmbh1628175060372\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/proliongmbh1628175060372\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"protegrityusainc1627404648458\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/protegrityusainc1627404648458\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"protiviti\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/protiviti\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"proventeq\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/proventeq\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ptc\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ptc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ptsecurity\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ptsecurity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pulse-secure\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pulse-secure\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pulsesecuretechnologies1638179500151\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pulsesecuretechnologies1638179500151\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"puppet\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/puppet\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"puppeteersoy1601024480557\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/puppeteersoy1601024480557\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"PuppetLabs\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/PuppetLabs\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"PuppetLabs.Test\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/PuppetLabs.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"purestorageinc1578960262525\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/purestorageinc1578960262525\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pydio\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pydio\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pyramidanalytics\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pyramidanalytics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"qlik\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/qlik\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"qnapsystemsinc1601352084032\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/qnapsystemsinc1601352084032\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"qore-technologies\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/qore-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"qs-solutions\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/qs-solutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Qualys\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Qualys\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Qualys.LinuxAgent.GrayLabel\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Qualys.LinuxAgent.GrayLabel\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Qualys.WindowsAgent.GrayLabel\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Qualys.WindowsAgent.GrayLabel\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"qualysguard\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/qualysguard\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"quasardb\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/quasardb\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"qubole-inc\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/qubole-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"quest\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/quest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"racknap\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/racknap\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rackwareinc1619403669255\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rackwareinc1619403669255\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"radiant-logic\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/radiant-logic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"radware\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/radware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"raincode\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/raincode\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rancher\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rancher\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rapid7\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rapid7\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Rapid7.InsightPlatform\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Rapid7.InsightPlatform\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rapidminer\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rapidminer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"raynetgmbh\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/raynetgmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"readymind\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/readymind\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"realm\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/realm\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"reblaze\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/reblaze\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"RedHat\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/RedHat\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"redhat-rhel\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/redhat-rhel\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"redpoint-global\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/redpoint-global\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"refactr\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/refactr\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"refinitiv\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/refinitiv\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"refinitiv-4807503\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/refinitiv-4807503\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"relevance-lab\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/relevance-lab\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"remotelearner\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/remotelearner\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"res\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/res\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"resco\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/resco\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"researchgraphptyltd1598252602128\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/researchgraphptyltd1598252602128\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"resemblesystems1582780358300\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/resemblesystems1582780358300\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"responder-corp\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/responder-corp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"revolution-analytics\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/revolution-analytics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rhcsolutions1586957910818\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rhcsolutions1586957910818\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ribboncommunications\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ribboncommunications\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"RightScaleLinux\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/RightScaleLinux\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"RightScaleWindowsServer\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/RightScaleWindowsServer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rimo3\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rimo3\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ringsoftwareresearchanddevelopmentinc1578946072257\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ringsoftwareresearchanddevelopmentinc1578946072257\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"riverbed\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/riverbed\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"RiverbedTechnology\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/RiverbedTechnology\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rmgtechnologiesinc\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rmgtechnologiesinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rocketml\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rocketml\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rocketsoftware\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rocketsoftware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rohdeschwarzcybersecuritygmbh\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rohdeschwarzcybersecuritygmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rohdeschwarzcybersecuritysas\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rohdeschwarzcybersecuritysas\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"roktech\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/roktech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rsa-security-llc\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rsa-security-llc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rsk-labs\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rsk-labs\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rstudio-5237862\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rstudio-5237862\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rtts\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rtts\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rubrik-inc\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rubrik-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"runecastsolutionslimited1614186396822\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/runecastsolutionslimited1614186396822\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"s2ix\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/s2ix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"saama\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/saama\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"saasame-limited\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/saasame-limited\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"safesoftwareinc\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/safesoftwareinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"safeticatechnologiessro\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/safeticatechnologiessro\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"safetica_technologies\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/safetica_technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"safetoopen1585013318137\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/safetoopen1585013318137\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"saltsecurity1583264186232\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/saltsecurity1583264186232\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"saltsecurity1583264669848\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/saltsecurity1583264669848\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"saltstack\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/saltstack\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"samsung-sds\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/samsung-sds\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"samsungelectronics1632860607983\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/samsungelectronics1632860607983\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"samsungsds-cello\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/samsungsds-cello\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"samsungsds_sdbe\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/samsungsds_sdbe\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sandhatatechnologieslimited1615753438737\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sandhatatechnologieslimited1615753438737\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sap\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sap\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sapphiretechnologieslimited1611758579346\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sapphiretechnologieslimited1611758579346\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sas-institute-560503\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sas-institute-560503\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"scaidata\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/scaidata\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"scalearc\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/scalearc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"scalegrid\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/scalegrid\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"scality\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/scality\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"schrockeninc\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/schrockeninc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sci\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sci\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sciencelogicinc1622565452194\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sciencelogicinc1622565452194\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"scientiamobile\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/scientiamobile\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"scontainug1595751515785\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/scontainug1595751515785\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"scubaanalytics\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/scubaanalytics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"scylladb1631195365807\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/scylladb1631195365807\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"seaqserviciossas1579029207572\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/seaqserviciossas1579029207572\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"searchbloxsoftwareinc1594309037050\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/searchbloxsoftwareinc1594309037050\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"secureworks\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/secureworks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"securityonionsolutions\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/securityonionsolutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"securityonionsolutionsllc1624649205155\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/securityonionsolutionsllc1624649205155\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"securosis\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/securosis\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"seequentltd1585781751395\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/seequentltd1585781751395\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"semarchy\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/semarchy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"semperis\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/semperis\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"senhasegura\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/senhasegura\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"SentinelOne.LinuxExtension\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/SentinelOne.LinuxExtension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"SentinelOne.LinuxExtension.Test\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/SentinelOne.LinuxExtension.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"SentinelOne.WindowsExtension\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/SentinelOne.WindowsExtension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"SentinelOne.WindowsExtension.Test\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/SentinelOne.WindowsExtension.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sentriumsl\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sentriumsl\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sentry51llc1616686725591\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sentry51llc1616686725591\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sentryone\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sentryone\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sepiosystems\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sepiosystems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"seppmailag\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/seppmailag\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"seraumo1620002807288\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/seraumo1620002807288\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"service-control-inc\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/service-control-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sesamesoftwareinc1622125191447\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sesamesoftwareinc1622125191447\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"shadow-soft\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/shadow-soft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"shareshiftneeraj.test\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/shareshiftneeraj.test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sightapps\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sightapps\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"signal-sciences\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/signal-sciences\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"silk\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/silk\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"silver-peak-systems\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/silver-peak-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"simmachinesinc\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/simmachinesinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"simontelephonics\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/simontelephonics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"simpledatalabsinc1635791235920\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/simpledatalabsinc1635791235920\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"simplifierag\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/simplifierag\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"simpligov\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/simpligov\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sinefa\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sinefa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sinequa\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sinequa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sinequa1588262295885\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sinequa1588262295885\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"singapore-telecommunications-limited\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/singapore-telecommunications-limited\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sios_datakeeper\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sios_datakeeper\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"siportalinc1581539156321\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/siportalinc1581539156321\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sisenseltd\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sisenseltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Site24x7\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Site24x7\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sktelecom\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sktelecom\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"skyarc\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/skyarc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"skyboxsecurity1585187406404\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/skyboxsecurity1585187406404\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"skylarkcloud\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/skylarkcloud\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"smartbearsoftware\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/smartbearsoftware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"smartmessage-autoflow\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/smartmessage-autoflow\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"snaplogic\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/snaplogic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"snapt-adc\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/snapt-adc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"snips\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/snips\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"soasta\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/soasta\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"softnas\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/softnas\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"softwarecentralas1642687699196\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/softwarecentralas1642687699196\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"softwarehut\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/softwarehut\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"softwebsolutions-4518310\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/softwebsolutions-4518310\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"soha\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/soha\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"solanolabs\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/solanolabs\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"solar-security\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/solar-security\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"solarwinds\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/solarwinds\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"solvedevops1643693563360\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/solvedevops1643693563360\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sonicwall-inc\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sonicwall-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sophos\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sophos\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sourcegearllc1616101262784\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sourcegearllc1616101262784\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"south-river-technologies\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/south-river-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"southrivertech1586314123192\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/southrivertech1586314123192\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"spacecurve\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/spacecurve\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"spaceliftinc1625499025476\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/spaceliftinc1625499025476\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"spagobi\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/spagobi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sparklinglogic\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sparklinglogic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"spectralcorelimited1619779004178\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/spectralcorelimited1619779004178\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"spektra\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/spektra\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sphere3d\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sphere3d\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"spideroakinc1588278690933\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/spideroakinc1588278690933\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"spirentcommunications1594084187199\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/spirentcommunications1594084187199\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"splunk\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/splunk\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sproutenetworks1593456311717\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sproutenetworks1593456311717\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sqlstream\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sqlstream\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"squadratechnologies\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/squadratechnologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"squaredup\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/squaredup\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"src-solution\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/src-solution\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ssh2appsltd1621588462715\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ssh2appsltd1621588462715\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stackato-platform-as-a-service\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stackato-platform-as-a-service\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Stackify.LinuxAgent.Extension\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Stackify.LinuxAgent.Extension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stackstorm\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stackstorm\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"startekfingerprintmatch\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/startekfingerprintmatch\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"startisolucoesemtecnologialtda1635263523201\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/startisolucoesemtecnologialtda1635263523201\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"starwind\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/starwind\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"StatusMonitor2.Diagnostics.Test\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/StatusMonitor2.Diagnostics.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"StatusReport.Diagnostics.Test\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/StatusReport.Diagnostics.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stealthbits\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stealthbits\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"steelhive\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/steelhive\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stonebondtechnologies\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stonebondtechnologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stonefly\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stonefly\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"storage_made_easy\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/storage_made_easy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stormshield\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stormshield\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"storone1594045543980\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/storone1594045543980\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"storreduce\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/storreduce\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"storwarespzoo1611743234900\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/storwarespzoo1611743234900\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"strangebee1595948424730\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/strangebee1595948424730\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"strataidentity1608323708170\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/strataidentity1608323708170\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stratis-group-ltd\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stratis-group-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stratodesk1611152769936\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stratodesk1611152769936\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stratumn\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stratumn\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"streamsets\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/streamsets\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"striim\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/striim\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stromasys\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stromasys\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"strongboxitllc1594816423884\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/strongboxitllc1594816423884\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"su\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/su\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"subscription.test.krsh\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/subscription.test.krsh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sumologic\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sumologic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sunatogmbh\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sunatogmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sunday\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sunday\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"SUSE\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/SUSE\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"SUSE.AzureHybridBenefit\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/SUSE.AzureHybridBenefit\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"swoopanalytics\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/swoopanalytics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sycom-technologies\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sycom-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sycompatechnologycompanyinc1588192103892\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sycompatechnologycompanyinc1588192103892\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.CloudWorkloadProtection\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.CloudWorkloadProtection\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.CloudWorkloadProtection.Test\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.CloudWorkloadProtection.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.CloudWorkloadProtection.TestOnStage\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.CloudWorkloadProtection.TestOnStage\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.QA\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.QA\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.staging\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.staging\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.test\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.test.ru2.latest\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.test.ru2.latest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.test.ru2final\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.test.ru2final\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.test.ru2latest1\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.test.ru2latest1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.test.ru4mp1\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.test.ru4mp1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.test.ru4mp1.latest\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.test.ru4mp1.latest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.test.ru4mp1final\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.test.ru4mp1final\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"symanteccorporation\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/symanteccorporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"symantectest1\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/symantectest1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"synack-inc\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/synack-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"syncfusion\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/syncfusion\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"syncfusionbigdataplatfor\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/syncfusionbigdataplatfor\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"synechron-technologies\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/synechron-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"synergixinc1585256339250\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/synergixinc1585256339250\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"synnexcorp\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/synnexcorp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"syscomcomputerengineeringco1583913200141\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/syscomcomputerengineeringco1583913200141\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"syte\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/syte\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tableau\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tableau\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tactic\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tactic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"talari-networks\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/talari-networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"talena-inc\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/talena-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"talend\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/talend\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"talon\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/talon\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tamrinc\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tamrinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"taniuminc1646329360287\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/taniuminc1646329360287\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"targit\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/targit\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tata_communications\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tata_communications\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tavanttechnologies\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tavanttechnologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tavendo\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tavendo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"te-systems\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/te-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"techdivision\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/techdivision\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"techlatest\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/techlatest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"technicheltd1606969724100\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/technicheltd1606969724100\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tecknolab\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tecknolab\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"telepat\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/telepat\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"teloscorporation\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/teloscorporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tempered-networks-inc\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tempered-networks-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tenable\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tenable\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tensormakecorpdbaoneclickai1608247756082\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tensormakecorpdbaoneclickai1608247756082\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tenthlineinc\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tenthlineinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"teradata\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/teradata\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Teradici\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Teradici\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"teramindinc\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/teramindinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.Gemalto.SafeNet.ProtectV\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.Gemalto.SafeNet.ProtectV\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.Gemalto.SafeNet.ProtectV.Azure\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.Gemalto.SafeNet.ProtectV.Azure\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.HP.AppDefender\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.HP.AppDefender\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.Microsoft.VisualStudio.Services\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.Microsoft.VisualStudio.Services\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.NJHP.AppDefender\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.NJHP.AppDefender\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.SqlServer.Managability\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.SqlServer.Managability\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.SqlServer.Management\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.SqlServer.Management\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.SqlServer.Management.corext\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.SqlServer.Management.corext\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test1.NJHP.AppDefender\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test1.NJHP.AppDefender\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test3.Microsoft.VisualStudio.Services\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test3.Microsoft.VisualStudio.Services\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"testable1603721901088\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/testable1603721901088\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"testpro\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/testpro\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"test_test_mix3pptest0011614206850774\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/test_test_mix3pptest0011614206850774\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"test_test_mneela1628617140187\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/test_test_mneela1628617140187\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"test_test_pmc2pc1\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/test_test_pmc2pc1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thales-vormetric\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thales-vormetric\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thalesdiscplusainc1596561677238\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thalesdiscplusainc1596561677238\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thedatavaluefactoryltd1589348815922\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thedatavaluefactoryltd1589348815922\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thefreebsdfoundation\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thefreebsdfoundation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thehdfgroup1616725197741\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thehdfgroup1616725197741\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"theumag1596442827072\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/theumag1596442827072\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"things-board\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/things-board\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thingscareinc\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thingscareinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thinprintgmbh\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thinprintgmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thorntechnologiesllc\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thorntechnologiesllc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thoughtspot-inc\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thoughtspot-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"threatintelligenceptyltd1586824172898\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/threatintelligenceptyltd1586824172898\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tibco-software\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tibco-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tidal-migrations\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tidal-migrations\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tidalmediainc\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tidalmediainc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tig\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tig\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tiger-technology\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tiger-technology\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tigergraph\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tigergraph\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"timextender\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/timextender\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tmaxsoft\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tmaxsoft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tmaxsoft1608612658335\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tmaxsoft1608612658335\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tomsawyersoftwarecorp1613579206342\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tomsawyersoftwarecorp1613579206342\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"topicus\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/topicus\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"torusware\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/torusware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"totemo\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/totemo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"townsend-security\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/townsend-security\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"transcendinformationinc1609918445926\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/transcendinformationinc1609918445926\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"transientxinc\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/transientxinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"transvault\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/transvault\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"trendmicro\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/trendmicro\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"TrendMicro.DeepSecurity.Test\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/TrendMicro.DeepSecurity.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"TrendMicro.PortalProtect\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/TrendMicro.PortalProtect\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tresorit\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tresorit\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"trifacta\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/trifacta\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tripleblindinc1615730179432\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tripleblindinc1615730179432\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tripwire-inc\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tripwire-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"truata1612259728221\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/truata1612259728221\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"truestack\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/truestack\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tryonsolutionsinc1596650621083\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tryonsolutionsinc1596650621083\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tsa-public-service\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tsa-public-service\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tunnelbiz\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tunnelbiz\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"turbonet\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/turbonet\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"turbonet1581982683964\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/turbonet1581982683964\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"twistlock\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/twistlock\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"typesafe\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/typesafe\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ubeeko\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ubeeko\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ubercloud\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ubercloud\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"uipath-5054924\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/uipath-5054924\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ulex\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ulex\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"unifi-software\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/unifi-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"unifiedstreaming1598872291606\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/unifiedstreaming1598872291606\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"uniprint-net\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/uniprint-net\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"unitrends\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/unitrends\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"unnisoft\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/unnisoft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"unravel-data\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/unravel-data\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"unscramblsingaporepteltd-4999260\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/unscramblsingaporepteltd-4999260\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"untangle\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/untangle\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"upsolver1594188634150\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/upsolver1594188634150\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"usp\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/usp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"valohai\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/valohai\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"valtix\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/valtix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"varmournetworks\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/varmournetworks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"varnish\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/varnish\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vastdata1650451243415\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vastdata1650451243415\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vatacommunicationsinc1581644208717\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vatacommunicationsinc1581644208717\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vaultive-inc\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vaultive-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vbot\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vbot\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vcinityinc1587684340545\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vcinityinc1587684340545\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vectraaiinc\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vectraaiinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"veeam\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/veeam\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"velocitydb-inc\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/velocitydb-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"velocloud\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/velocloud\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vembutechnologiespvtltd\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vembutechnologiespvtltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vemn\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vemn\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"veritas\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/veritas\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"versanetworks\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/versanetworks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"versasec\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/versasec\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vidispine\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vidispine\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vidizmo\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vidizmo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vigyanlabs-innovations-pvt-ltd\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vigyanlabs-innovations-pvt-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vigyanlabsinc1581413676614\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vigyanlabsinc1581413676614\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"viptela\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/viptela\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vircom\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vircom\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"virtamovecorp1615909247913\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/virtamovecorp1615909247913\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"virtualpulsesro1607008728942\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/virtualpulsesro1607008728942\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"virtuozzointernationalgmbh1626704951469\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/virtuozzointernationalgmbh1626704951469\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"visualknowledgeshare1591795776234\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/visualknowledgeshare1591795776234\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"visualsoft-center\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/visualsoft-center\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vizixiotplatformretail001\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vizixiotplatformretail001\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vmlabinc1613642184700\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vmlabinc1613642184700\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vmturbo\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vmturbo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vmware-inc\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vmware-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vnomicinc\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vnomicinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"voiceelements\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/voiceelements\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"voleatechgmbh1636966911943\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/voleatechgmbh1636966911943\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"volterraedgeservices\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/volterraedgeservices\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Vormetric\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Vormetric\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vscconsultingptyltd1608535888097\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vscconsultingptyltd1608535888097\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vte\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vte\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vu-llc\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vu-llc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vunetsystemsprivatelimited1646716402131\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vunetsystemsprivatelimited1646716402131\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vyulabsinc\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vyulabsinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"WAD2AI.Diagnostics.Test\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/WAD2AI.Diagnostics.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"WAD2EventHub.Diagnostics.Test\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/WAD2EventHub.Diagnostics.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wallarm\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wallarm\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wallix\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wallix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wandisco\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wandisco\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wanos\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wanos\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wanpath-dba-myworkdrive\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wanpath-dba-myworkdrive\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wardy-it-solutions\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wardy-it-solutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"warewolf-esb\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/warewolf-esb\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"watchguard-technologies\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/watchguard-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"webaloinc\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/webaloinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"websense-apmailpe\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/websense-apmailpe\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"websoft9inc\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/websoft9inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wedoitllc\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wedoitllc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"westernoceansoftwaresprivatelimited\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/westernoceansoftwaresprivatelimited\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wherescapesoftware\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wherescapesoftware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"winmagic_securedoc_cloudvm\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/winmagic_securedoc_cloudvm\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wintellisys-inc-4561600\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wintellisys-inc-4561600\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"witfooinc1590167223060\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/witfooinc1590167223060\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wmspanel\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wmspanel\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wood1595864497589\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wood1595864497589\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"workshare-technology\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/workshare-technology\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"world-programming\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/world-programming\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"worxogo\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/worxogo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wowza\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wowza\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"xcontentptyltd-1329748\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/xcontentptyltd-1329748\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"xendata-inc\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/xendata-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"xfinityinc\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/xfinityinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"xilinx\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/xilinx\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"xoriantcorporationazxteam1\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/xoriantcorporationazxteam1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"xoriantsolutionspvtltd\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/xoriantsolutionspvtltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"xtremedata\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/xtremedata\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"xyzrd-group-ou\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/xyzrd-group-ou\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"yaseensmarket1645449809728\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/yaseensmarket1645449809728\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"yellowfin\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/yellowfin\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"yellowfininternationalptyltd1616363974066\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/yellowfininternationalptyltd1616363974066\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"yokogawarentalleasecorporation\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/yokogawarentalleasecorporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"your-shop-online\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/your-shop-online\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"z1\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/z1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"z4it-aps\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/z4it-aps\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zabbix\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zabbix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zend\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zend\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zenterasystemsinc1605292453288\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zenterasystemsinc1605292453288\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zerodown_software\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zerodown_software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zerto\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zerto\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zettalane_systems-5254599\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zettalane_systems-5254599\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zevenet\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zevenet\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zilliz\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zilliz\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zoomdata\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zoomdata\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zscaler\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zscaler\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zscaler1579058425289\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zscaler1579058425289\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zultysinc1596831546163\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zultysinc1596831546163\"\r\n }\r\n]", "StatusCode": 200 }, { @@ -2169,16 +2105,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3810f924-13a6-4bab-93cf-2e790affe89a" + "f0e9455a-b561-4221-8716-faa647493d7e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ] }, "ResponseHeaders": { @@ -2198,26 +2134,26 @@ "1f3ad383-bb66-4279-b2a8-fbbcd093a7e3_132836337789816871" ], "x-ms-request-id": [ - "9113390a-012c-4b78-b0a4-39bd4a645906" + "8db8dc18-e814-4bcb-947f-114c9909b2cc" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11993" ], "x-ms-correlation-request-id": [ - "d2b21f27-20a8-44f9-a4e8-a1de3d6f9694" + "eea8a757-d827-4afe-812a-336390d8cec9" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T091938Z:d2b21f27-20a8-44f9-a4e8-a1de3d6f9694" + "WESTINDIA:20220516T154632Z:eea8a757-d827-4afe-812a-336390d8cec9" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sat, 26 Mar 2022 09:19:37 GMT" + "Mon, 16 May 2022 15:46:31 GMT" ], "Content-Length": [ "1089" @@ -2239,16 +2175,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3810f924-13a6-4bab-93cf-2e790affe89a" + "f0e9455a-b561-4221-8716-faa647493d7e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ] }, "ResponseHeaders": { @@ -2268,29 +2204,29 @@ "1f3ad383-bb66-4279-b2a8-fbbcd093a7e3_132836337789816871" ], "x-ms-request-id": [ - "f269c2ba-ab6b-4933-9839-5f00b93018c5" + "13f7eef6-bfd8-423e-a11d-0a4eac40122b" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11992" ], "x-ms-correlation-request-id": [ - "ff86e980-fb78-4d01-a614-27b03ef9c4d1" + "a484e561-131b-48ea-b0b3-967380e0fe81" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T091938Z:ff86e980-fb78-4d01-a614-27b03ef9c4d1" + "WESTINDIA:20220516T154632Z:a484e561-131b-48ea-b0b3-967380e0fe81" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sat, 26 Mar 2022 09:19:37 GMT" + "Mon, 16 May 2022 15:46:31 GMT" ], "Content-Length": [ - "1589" + "1856" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2299,26 +2235,26 @@ "-1" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1.0\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo/Versions/1.0\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1.0.1\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo/Versions/1.0.1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1.1\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo/Versions/1.1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1.2\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo/Versions/1.2\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1.2.2\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo/Versions/1.2.2\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"2.1\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo/Versions/2.1\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1.0\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo/Versions/1.0\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1.0.1\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo/Versions/1.0.1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1.1\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo/Versions/1.1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1.2\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo/Versions/1.2\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1.2.2\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo/Versions/1.2.2\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"2.1\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo/Versions/2.1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"2.2.2\",\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo/Versions/2.2.2\"\r\n }\r\n]", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG06578997/providers/Microsoft.Compute/virtualMachines/PSTestVM065780/extensions/BGInfo?api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMDY1Nzg5OTcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy9QU1Rlc3RWTTA2NTc4MC9leHRlbnNpb25zL0JHSW5mbz9hcGktdmVyc2lvbj0yMDIxLTExLTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG03263c8b/providers/Microsoft.Compute/virtualMachines/PSTestVM032630/extensions/BGInfo?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMDMyNjNjOGIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy9QU1Rlc3RWTTAzMjYzMC9leHRlbnNpb25zL0JHSW5mbz9hcGktdmVyc2lvbj0yMDIxLTExLTAx", "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\": \"southeastasia\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"BGInfo\",\r\n \"typeHandlerVersion\": \"2.2\",\r\n \"autoUpgradeMinorVersion\": true\r\n },\r\n \"location\": \"southeastasia\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "3810f924-13a6-4bab-93cf-2e790affe89a" + "f0e9455a-b561-4221-8716-faa647493d7e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2335,7 +2271,7 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/providers/Microsoft.Compute/locations/southeastasia/operations/b373e825-3eff-472f-a2ff-3f33ab026b91?p=bfd1a1fb-212e-46d4-8d6f-4e293087ce8f&api-version=2021-11-01" + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/providers/Microsoft.Compute/locations/southeastasia/operations/c36b7755-6d9d-401b-a0e4-93f53b5a91a6?p=bfd1a1fb-212e-46d4-8d6f-4e293087ce8f&api-version=2021-11-01" ], "Azure-AsyncNotification": [ "Enabled" @@ -2347,7 +2283,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b373e825-3eff-472f-a2ff-3f33ab026b91" + "c36b7755-6d9d-401b-a0e4-93f53b5a91a6" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -2357,16 +2293,16 @@ "1198" ], "x-ms-correlation-request-id": [ - "0ccbb0ba-0ab2-44bd-82eb-b74d554ba694" + "915549ab-9566-4241-a95d-c0d15ce46c4d" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T091940Z:0ccbb0ba-0ab2-44bd-82eb-b74d554ba694" + "WESTINDIA:20220516T154634Z:915549ab-9566-4241-a95d-c0d15ce46c4d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sat, 26 Mar 2022 09:19:39 GMT" + "Mon, 16 May 2022 15:46:33 GMT" ], "Content-Length": [ "484" @@ -2378,23 +2314,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"BGInfo\",\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG06578997/providers/Microsoft.Compute/virtualMachines/PSTestVM065780/extensions/BGInfo\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"southeastasia\",\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}", + "ResponseBody": "{\r\n \"name\": \"BGInfo\",\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG03263c8b/providers/Microsoft.Compute/virtualMachines/PSTestVM032630/extensions/BGInfo\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Creating\",\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"BGInfo\",\r\n \"typeHandlerVersion\": \"2.2\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/providers/Microsoft.Compute/locations/southeastasia/operations/b373e825-3eff-472f-a2ff-3f33ab026b91?p=bfd1a1fb-212e-46d4-8d6f-4e293087ce8f&api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2IzNzNlODI1LTNlZmYtNDcyZi1hMmZmLTNmMzNhYjAyNmI5MT9wPWJmZDFhMWZiLTIxMmUtNDZkNC04ZDZmLTRlMjkzMDg3Y2U4ZiZhcGktdmVyc2lvbj0yMDIxLTExLTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/providers/Microsoft.Compute/locations/southeastasia/operations/c36b7755-6d9d-401b-a0e4-93f53b5a91a6?p=bfd1a1fb-212e-46d4-8d6f-4e293087ce8f&api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2MzNmI3NzU1LTZkOWQtNDAxYi1hMGU0LTkzZjUzYjVhOTFhNj9wPWJmZDFhMWZiLTIxMmUtNDZkNC04ZDZmLTRlMjkzMDg3Y2U4ZiZhcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3810f924-13a6-4bab-93cf-2e790affe89a" + "f0e9455a-b561-4221-8716-faa647493d7e" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ] }, "ResponseHeaders": { @@ -2405,32 +2341,32 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperation3Min;14995,Microsoft.Compute/GetOperation30Min;29994" + "Microsoft.Compute/GetOperation3Min;14995,Microsoft.Compute/GetOperation30Min;29995" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c9e3f96b-3715-4522-90dd-3fb32472fbc4" + "7d6a6e27-7791-4d30-b327-0bf92238bc24" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "11991" ], "x-ms-correlation-request-id": [ - "0e1f5bf9-acfb-443b-8e53-c6a868fc7389" + "f4994ca9-60ed-4a62-96d9-5d5b0d5abb63" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T092010Z:0e1f5bf9-acfb-443b-8e53-c6a868fc7389" + "WESTINDIA:20220516T154704Z:f4994ca9-60ed-4a62-96d9-5d5b0d5abb63" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sat, 26 Mar 2022 09:20:10 GMT" + "Mon, 16 May 2022 15:47:04 GMT" ], "Content-Length": [ "134" @@ -2442,23 +2378,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-03-26T14:49:39.7494519+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b373e825-3eff-472f-a2ff-3f33ab026b91\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2022-05-16T21:16:33.9936871+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"c36b7755-6d9d-401b-a0e4-93f53b5a91a6\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/providers/Microsoft.Compute/locations/southeastasia/operations/b373e825-3eff-472f-a2ff-3f33ab026b91?p=bfd1a1fb-212e-46d4-8d6f-4e293087ce8f&api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2IzNzNlODI1LTNlZmYtNDcyZi1hMmZmLTNmMzNhYjAyNmI5MT9wPWJmZDFhMWZiLTIxMmUtNDZkNC04ZDZmLTRlMjkzMDg3Y2U4ZiZhcGktdmVyc2lvbj0yMDIxLTExLTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/providers/Microsoft.Compute/locations/southeastasia/operations/c36b7755-6d9d-401b-a0e4-93f53b5a91a6?p=bfd1a1fb-212e-46d4-8d6f-4e293087ce8f&api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2MzNmI3NzU1LTZkOWQtNDAxYi1hMGU0LTkzZjUzYjVhOTFhNj9wPWJmZDFhMWZiLTIxMmUtNDZkNC04ZDZmLTRlMjkzMDg3Y2U4ZiZhcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3810f924-13a6-4bab-93cf-2e790affe89a" + "f0e9455a-b561-4221-8716-faa647493d7e" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ] }, "ResponseHeaders": { @@ -2469,32 +2405,32 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperation3Min;14995,Microsoft.Compute/GetOperation30Min;29993" + "Microsoft.Compute/GetOperation3Min;14995,Microsoft.Compute/GetOperation30Min;29994" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "891b1229-da7d-4cf6-910e-e1e6380232e1" + "ba904fd1-c205-4b25-9a14-abb168ac717b" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "11990" ], "x-ms-correlation-request-id": [ - "146241e4-1e50-4f6b-8272-23ecd6753458" + "a85799d8-a621-46cf-aa83-81f5dd7fd3c1" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T092040Z:146241e4-1e50-4f6b-8272-23ecd6753458" + "WESTINDIA:20220516T154734Z:a85799d8-a621-46cf-aa83-81f5dd7fd3c1" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sat, 26 Mar 2022 09:20:40 GMT" + "Mon, 16 May 2022 15:47:34 GMT" ], "Content-Length": [ "134" @@ -2506,23 +2442,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-03-26T14:49:39.7494519+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b373e825-3eff-472f-a2ff-3f33ab026b91\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2022-05-16T21:16:33.9936871+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"c36b7755-6d9d-401b-a0e4-93f53b5a91a6\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/providers/Microsoft.Compute/locations/southeastasia/operations/b373e825-3eff-472f-a2ff-3f33ab026b91?p=bfd1a1fb-212e-46d4-8d6f-4e293087ce8f&api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2IzNzNlODI1LTNlZmYtNDcyZi1hMmZmLTNmMzNhYjAyNmI5MT9wPWJmZDFhMWZiLTIxMmUtNDZkNC04ZDZmLTRlMjkzMDg3Y2U4ZiZhcGktdmVyc2lvbj0yMDIxLTExLTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/providers/Microsoft.Compute/locations/southeastasia/operations/c36b7755-6d9d-401b-a0e4-93f53b5a91a6?p=bfd1a1fb-212e-46d4-8d6f-4e293087ce8f&api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2MzNmI3NzU1LTZkOWQtNDAxYi1hMGU0LTkzZjUzYjVhOTFhNj9wPWJmZDFhMWZiLTIxMmUtNDZkNC04ZDZmLTRlMjkzMDg3Y2U4ZiZhcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3810f924-13a6-4bab-93cf-2e790affe89a" + "f0e9455a-b561-4221-8716-faa647493d7e" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ] }, "ResponseHeaders": { @@ -2533,32 +2469,32 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperation3Min;14994,Microsoft.Compute/GetOperation30Min;29992" + "Microsoft.Compute/GetOperation3Min;14994,Microsoft.Compute/GetOperation30Min;29993" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "6e11358d-83f9-43de-a97f-3ed879d0158e" + "715d9dad-f188-41d8-a750-dda491c70fde" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" + "11989" ], "x-ms-correlation-request-id": [ - "40cfe387-c106-4bb6-8444-745b60573f03" + "2d6459f8-82ff-4c2f-96b2-661d013ec2d3" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T092110Z:40cfe387-c106-4bb6-8444-745b60573f03" + "WESTINDIA:20220516T154805Z:2d6459f8-82ff-4c2f-96b2-661d013ec2d3" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sat, 26 Mar 2022 09:21:10 GMT" + "Mon, 16 May 2022 15:48:04 GMT" ], "Content-Length": [ "134" @@ -2570,23 +2506,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-03-26T14:49:39.7494519+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b373e825-3eff-472f-a2ff-3f33ab026b91\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2022-05-16T21:16:33.9936871+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"c36b7755-6d9d-401b-a0e4-93f53b5a91a6\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/providers/Microsoft.Compute/locations/southeastasia/operations/b373e825-3eff-472f-a2ff-3f33ab026b91?p=bfd1a1fb-212e-46d4-8d6f-4e293087ce8f&api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2IzNzNlODI1LTNlZmYtNDcyZi1hMmZmLTNmMzNhYjAyNmI5MT9wPWJmZDFhMWZiLTIxMmUtNDZkNC04ZDZmLTRlMjkzMDg3Y2U4ZiZhcGktdmVyc2lvbj0yMDIxLTExLTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/providers/Microsoft.Compute/locations/southeastasia/operations/c36b7755-6d9d-401b-a0e4-93f53b5a91a6?p=bfd1a1fb-212e-46d4-8d6f-4e293087ce8f&api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2MzNmI3NzU1LTZkOWQtNDAxYi1hMGU0LTkzZjUzYjVhOTFhNj9wPWJmZDFhMWZiLTIxMmUtNDZkNC04ZDZmLTRlMjkzMDg3Y2U4ZiZhcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3810f924-13a6-4bab-93cf-2e790affe89a" + "f0e9455a-b561-4221-8716-faa647493d7e" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ] }, "ResponseHeaders": { @@ -2597,32 +2533,32 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperation3Min;14995,Microsoft.Compute/GetOperation30Min;29991" + "Microsoft.Compute/GetOperation3Min;14994,Microsoft.Compute/GetOperation30Min;29992" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "edd58cbc-1b82-4f79-ad95-3b369e70065c" + "593eb34d-cec1-44ef-b4e8-a2380e4fe317" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" + "11988" ], "x-ms-correlation-request-id": [ - "1f6bacf8-25b5-4bd3-9f60-28405fbdf8b1" + "7dfddbe6-d5c4-48b7-a530-e038ca9a380b" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T092140Z:1f6bacf8-25b5-4bd3-9f60-28405fbdf8b1" + "WESTINDIA:20220516T154835Z:7dfddbe6-d5c4-48b7-a530-e038ca9a380b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sat, 26 Mar 2022 09:21:40 GMT" + "Mon, 16 May 2022 15:48:34 GMT" ], "Content-Length": [ "184" @@ -2634,23 +2570,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-03-26T14:49:39.7494519+05:30\",\r\n \"endTime\": \"2022-03-26T14:51:17.2502608+05:30\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"b373e825-3eff-472f-a2ff-3f33ab026b91\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2022-05-16T21:16:33.9936871+05:30\",\r\n \"endTime\": \"2022-05-16T21:18:18.9467573+05:30\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"c36b7755-6d9d-401b-a0e4-93f53b5a91a6\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG06578997/providers/Microsoft.Compute/virtualMachines/PSTestVM065780/extensions/BGInfo?api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMDY1Nzg5OTcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy9QU1Rlc3RWTTA2NTc4MC9leHRlbnNpb25zL0JHSW5mbz9hcGktdmVyc2lvbj0yMDIxLTExLTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG03263c8b/providers/Microsoft.Compute/virtualMachines/PSTestVM032630/extensions/BGInfo?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMDMyNjNjOGIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy9QU1Rlc3RWTTAzMjYzMC9leHRlbnNpb25zL0JHSW5mbz9hcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3810f924-13a6-4bab-93cf-2e790affe89a" + "f0e9455a-b561-4221-8716-faa647493d7e" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ] }, "ResponseHeaders": { @@ -2661,32 +2597,32 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/LowCostGet3Min;3996,Microsoft.Compute/LowCostGet30Min;31995" + "Microsoft.Compute/LowCostGet3Min;3995,Microsoft.Compute/LowCostGet30Min;31995" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "7579cf26-c518-4984-9f62-553e17c5e770" + "9b34e97e-b585-4b96-88b8-ae26c5d21f1a" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11984" + "11987" ], "x-ms-correlation-request-id": [ - "0712cb7d-e4f0-481a-9a5d-9aabad22d1e9" + "92453c2d-3f40-49d4-bc4e-02c2095fcb88" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T092140Z:0712cb7d-e4f0-481a-9a5d-9aabad22d1e9" + "WESTINDIA:20220516T154835Z:92453c2d-3f40-49d4-bc4e-02c2095fcb88" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sat, 26 Mar 2022 09:21:40 GMT" + "Mon, 16 May 2022 15:48:34 GMT" ], "Content-Length": [ "485" @@ -2698,23 +2634,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"BGInfo\",\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG06578997/providers/Microsoft.Compute/virtualMachines/PSTestVM065780/extensions/BGInfo\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"southeastasia\",\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}", + "ResponseBody": "{\r\n \"name\": \"BGInfo\",\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG03263c8b/providers/Microsoft.Compute/virtualMachines/PSTestVM032630/extensions/BGInfo\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"BGInfo\",\r\n \"typeHandlerVersion\": \"2.2\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG06578997/providers/Microsoft.RecoveryServices/vaults/PSTestRSV06578997?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMDY1Nzg5OTcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YwNjU3ODk5Nz9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG03263c8b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV03263c8b?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMDMyNjNjOGIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YwMzI2M2M4Yj9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6be3ec4f-0226-4c21-9b87-4c9d33eaef9c" + "7f266a7d-71d7-470f-a5ac-b134838c1645" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesClient/4.3.2.0" @@ -2731,13 +2667,13 @@ "gateway" ], "x-ms-request-id": [ - "98f1f194-3155-41bc-bc36-48c4349cef65" + "dc1d2894-a9f9-48fc-adc8-7b232fc29d6b" ], "x-ms-correlation-request-id": [ - "98f1f194-3155-41bc-bc36-48c4349cef65" + "dc1d2894-a9f9-48fc-adc8-7b232fc29d6b" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T092143Z:98f1f194-3155-41bc-bc36-48c4349cef65" + "WESTINDIA:20220516T154837Z:dc1d2894-a9f9-48fc-adc8-7b232fc29d6b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2746,7 +2682,7 @@ "nosniff" ], "Date": [ - "Sat, 26 Mar 2022 09:21:42 GMT" + "Mon, 16 May 2022 15:48:36 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2758,23 +2694,23 @@ "239" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.RecoveryServices/vaults/PSTestRSV06578997' under resource group 'PSTestRG06578997' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.RecoveryServices/vaults/PSTestRSV03263c8b' under resource group 'PSTestRG03263c8b' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG06578997/providers/Microsoft.RecoveryServices/vaults/PSTestRSV06578997?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMDY1Nzg5OTcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YwNjU3ODk5Nz9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG03263c8b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV03263c8b?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMDMyNjNjOGIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YwMzI2M2M4Yj9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"southeastasia\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "dc987d1d-3d4e-40f3-a309-587896c444db" + "63338c06-b02a-4603-bfc6-bb7efbb56b30" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesClient/4.3.2.0" @@ -2797,10 +2733,10 @@ "nosniff" ], "x-ms-request-id": [ - "7cda32dd-18b9-465f-82bb-855f16b25017" + "815aca1b-77be-40f8-97a1-208da5772f06" ], "x-ms-client-request-id": [ - "dc987d1d-3d4e-40f3-a309-587896c444db" + "63338c06-b02a-4603-bfc6-bb7efbb56b30" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2812,16 +2748,16 @@ "299" ], "x-ms-correlation-request-id": [ - "7cda32dd-18b9-465f-82bb-855f16b25017" + "815aca1b-77be-40f8-97a1-208da5772f06" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T092217Z:7cda32dd-18b9-465f-82bb-855f16b25017" + "WESTINDIA:20220516T154841Z:815aca1b-77be-40f8-97a1-208da5772f06" ], "Date": [ - "Sat, 26 Mar 2022 09:22:16 GMT" + "Mon, 16 May 2022 15:48:41 GMT" ], "Content-Length": [ - "465" + "518" ], "Content-Type": [ "application/json" @@ -2830,26 +2766,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"location\": \"southeastasia\",\r\n \"name\": \"PSTestRSV06578997\",\r\n \"etag\": \"W/\\\"datetime'2022-03-26T09%3A22%3A16.811231Z'\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateEndpointStateForBackup\": \"None\",\r\n \"privateEndpointStateForSiteRecovery\": \"None\"\r\n },\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG06578997/providers/Microsoft.RecoveryServices/vaults/PSTestRSV06578997\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"location\": \"southeastasia\",\r\n \"name\": \"PSTestRSV03263c8b\",\r\n \"etag\": \"W/\\\"datetime'2022-05-16T15%3A48%3A40.9895788Z'\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateEndpointStateForBackup\": \"None\",\r\n \"privateEndpointStateForSiteRecovery\": \"None\",\r\n \"networkSettings\": {\r\n \"publicNetworkAccess\": \"Enabled\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG03263c8b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV03263c8b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG06578997/providers/Microsoft.RecoveryServices/vaults/PSTestRSV06578997/backupconfig/vaultconfig?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMDY1Nzg5OTcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YwNjU3ODk5Ny9iYWNrdXBjb25maWcvdmF1bHRjb25maWc/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG03263c8b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV03263c8b/backupconfig/vaultconfig?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMDMyNjNjOGIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YwMzI2M2M4Yi9iYWNrdXBjb25maWcvdmF1bHRjb25maWc/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4206f017-47fe-4618-abae-d88779151b9d" + "bd88d2f4-dcc4-41d2-b7ff-b56f5872f69c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -2869,7 +2805,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-client-request-id": [ - "4206f017-47fe-4618-abae-d88779151b9d" + "bd88d2f4-dcc4-41d2-b7ff-b56f5872f69c" ], "Server": [ "Microsoft-IIS/10.0" @@ -2881,13 +2817,13 @@ "299" ], "x-ms-correlation-request-id": [ - "e8282d2b-a77c-4d88-80d0-033890b0b0b8" + "bd048afb-cb2a-486e-9218-ea7fd56050a3" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T092219Z:e8282d2b-a77c-4d88-80d0-033890b0b0b8" + "WESTINDIA:20220516T154843Z:bd048afb-cb2a-486e-9218-ea7fd56050a3" ], "Date": [ - "Sat, 26 Mar 2022 09:22:19 GMT" + "Mon, 16 May 2022 15:48:43 GMT" ], "Content-Length": [ "380" @@ -2899,26 +2835,166 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG06578997/providers/Microsoft.RecoveryServices/vaults/PSTestRSV06578997/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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG03263c8b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV03263c8b/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/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG03263c8b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV03263c8b/backupResourceGuardProxies?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMDMyNjNjOGIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YwMzI2M2M4Yi9iYWNrdXBSZXNvdXJjZUd1YXJkUHJveGllcz9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "bd88d2f4-dcc4-41d2-b7ff-b56f5872f69c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "7c1e1f5f-e0f5-4415-9419-2be085893986" + ], + "x-ms-client-request-id": [ + "bd88d2f4-dcc4-41d2-b7ff-b56f5872f69c", + "bd88d2f4-dcc4-41d2-b7ff-b56f5872f69c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "7c1e1f5f-e0f5-4415-9419-2be085893986" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T154844Z:7c1e1f5f-e0f5-4415-9419-2be085893986" + ], + "Date": [ + "Mon, 16 May 2022 15:48:44 GMT" + ], + "Content-Length": [ + "12" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG03263c8b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV03263c8b/backupResourceGuardProxies?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMDMyNjNjOGIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YwMzI2M2M4Yi9iYWNrdXBSZXNvdXJjZUd1YXJkUHJveGllcz9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "77ffb7b8-0b3e-4cfe-824a-1075ff5510c5" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "db9a819b-5d02-4ea6-b18e-a3ea4c5122ca" + ], + "x-ms-client-request-id": [ + "77ffb7b8-0b3e-4cfe-824a-1075ff5510c5", + "77ffb7b8-0b3e-4cfe-824a-1075ff5510c5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "db9a819b-5d02-4ea6-b18e-a3ea4c5122ca" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T154944Z:db9a819b-5d02-4ea6-b18e-a3ea4c5122ca" + ], + "Date": [ + "Mon, 16 May 2022 15:49:43 GMT" + ], + "Content-Length": [ + "12" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG06578997/providers/Microsoft.RecoveryServices/vaults/PSTestRSV06578997/backupconfig/vaultconfig?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMDY1Nzg5OTcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YwNjU3ODk5Ny9iYWNrdXBjb25maWcvdmF1bHRjb25maWc/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG03263c8b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV03263c8b/backupconfig/vaultconfig?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMDMyNjNjOGIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YwMzI2M2M4Yi9iYWNrdXBjb25maWcvdmF1bHRjb25maWc/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "PATCH", "RequestBody": "{\r\n \"properties\": {\r\n \"enhancedSecurityState\": \"Enabled\",\r\n \"softDeleteFeatureState\": \"Disabled\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "4206f017-47fe-4618-abae-d88779151b9d" + "bd88d2f4-dcc4-41d2-b7ff-b56f5872f69c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2938,11 +3014,11 @@ "nosniff" ], "x-ms-request-id": [ - "2bb64a9c-fbea-4b5f-bb67-d76d0208290b" + "666b1594-94a8-4ed3-a319-05f98d05c6aa" ], "x-ms-client-request-id": [ - "4206f017-47fe-4618-abae-d88779151b9d", - "4206f017-47fe-4618-abae-d88779151b9d" + "bd88d2f4-dcc4-41d2-b7ff-b56f5872f69c", + "bd88d2f4-dcc4-41d2-b7ff-b56f5872f69c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2957,13 +3033,13 @@ "1199" ], "x-ms-correlation-request-id": [ - "2bb64a9c-fbea-4b5f-bb67-d76d0208290b" + "666b1594-94a8-4ed3-a319-05f98d05c6aa" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T092221Z:2bb64a9c-fbea-4b5f-bb67-d76d0208290b" + "WESTINDIA:20220516T154845Z:666b1594-94a8-4ed3-a319-05f98d05c6aa" ], "Date": [ - "Sat, 26 Mar 2022 09:22:21 GMT" + "Mon, 16 May 2022 15:48:45 GMT" ], "Content-Length": [ "381" @@ -2975,26 +3051,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG06578997/providers/Microsoft.RecoveryServices/vaults/PSTestRSV06578997/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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG03263c8b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV03263c8b/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/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG06578997/providers/Microsoft.RecoveryServices/vaults/PSTestRSV06578997/backupProtectionContainers?$filter=friendlyName%20eq%20'PSTestVM065780'%20and%20backupManagementType%20eq%20'AzureIaasVM'%20and%20status%20eq%20'Registered'&api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMDY1Nzg5OTcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YwNjU3ODk5Ny9iYWNrdXBQcm90ZWN0aW9uQ29udGFpbmVycz8kZmlsdGVyPWZyaWVuZGx5TmFtZSUyMGVxJTIwJ1BTVGVzdFZNMDY1NzgwJyUyMGFuZCUyMGJhY2t1cE1hbmFnZW1lbnRUeXBlJTIwZXElMjAnQXp1cmVJYWFzVk0nJTIwYW5kJTIwc3RhdHVzJTIwZXElMjAnUmVnaXN0ZXJlZCcmYXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG03263c8b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV03263c8b/backupProtectionContainers?$filter=friendlyName%20eq%20'PSTestVM032630'%20and%20backupManagementType%20eq%20'AzureIaasVM'%20and%20status%20eq%20'Registered'&api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMDMyNjNjOGIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YwMzI2M2M4Yi9iYWNrdXBQcm90ZWN0aW9uQ29udGFpbmVycz8kZmlsdGVyPWZyaWVuZGx5TmFtZSUyMGVxJTIwJ1BTVGVzdFZNMDMyNjMwJyUyMGFuZCUyMGJhY2t1cE1hbmFnZW1lbnRUeXBlJTIwZXElMjAnQXp1cmVJYWFzVk0nJTIwYW5kJTIwc3RhdHVzJTIwZXElMjAnUmVnaXN0ZXJlZCcmYXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "783012ea-57b6-4cf6-9e8a-68f6fd6304b6" + "42569800-41ce-4b6a-aef2-efd4e7903962" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -3008,11 +3084,11 @@ "nosniff" ], "x-ms-request-id": [ - "7b919faf-e341-4790-aa10-c8894466a442" + "d9ff66e2-1a28-4a08-b3f8-42d3a30f4eed" ], "x-ms-client-request-id": [ - "783012ea-57b6-4cf6-9e8a-68f6fd6304b6", - "783012ea-57b6-4cf6-9e8a-68f6fd6304b6" + "42569800-41ce-4b6a-aef2-efd4e7903962", + "42569800-41ce-4b6a-aef2-efd4e7903962" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3027,13 +3103,13 @@ "299" ], "x-ms-correlation-request-id": [ - "7b919faf-e341-4790-aa10-c8894466a442" + "d9ff66e2-1a28-4a08-b3f8-42d3a30f4eed" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T092226Z:7b919faf-e341-4790-aa10-c8894466a442" + "WESTINDIA:20220516T154851Z:d9ff66e2-1a28-4a08-b3f8-42d3a30f4eed" ], "Date": [ - "Sat, 26 Mar 2022 09:22:26 GMT" + "Mon, 16 May 2022 15:48:51 GMT" ], "Content-Length": [ "12" @@ -3049,22 +3125,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG06578997/providers/Microsoft.RecoveryServices/vaults/PSTestRSV06578997/backupProtectionContainers?$filter=friendlyName%20eq%20'PSTestVM065780'%20and%20backupManagementType%20eq%20'AzureIaasVM'%20and%20status%20eq%20'Registered'&api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMDY1Nzg5OTcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YwNjU3ODk5Ny9iYWNrdXBQcm90ZWN0aW9uQ29udGFpbmVycz8kZmlsdGVyPWZyaWVuZGx5TmFtZSUyMGVxJTIwJ1BTVGVzdFZNMDY1NzgwJyUyMGFuZCUyMGJhY2t1cE1hbmFnZW1lbnRUeXBlJTIwZXElMjAnQXp1cmVJYWFzVk0nJTIwYW5kJTIwc3RhdHVzJTIwZXElMjAnUmVnaXN0ZXJlZCcmYXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG03263c8b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV03263c8b/backupProtectionContainers?$filter=friendlyName%20eq%20'PSTestVM032630'%20and%20backupManagementType%20eq%20'AzureIaasVM'%20and%20status%20eq%20'Registered'&api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMDMyNjNjOGIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YwMzI2M2M4Yi9iYWNrdXBQcm90ZWN0aW9uQ29udGFpbmVycz8kZmlsdGVyPWZyaWVuZGx5TmFtZSUyMGVxJTIwJ1BTVGVzdFZNMDMyNjMwJyUyMGFuZCUyMGJhY2t1cE1hbmFnZW1lbnRUeXBlJTIwZXElMjAnQXp1cmVJYWFzVk0nJTIwYW5kJTIwc3RhdHVzJTIwZXElMjAnUmVnaXN0ZXJlZCcmYXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f31cca00-7ce7-478b-98e2-08b23ab904e2" + "88993225-06f4-484f-8ddf-bd4640b2c12d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -3078,11 +3154,11 @@ "nosniff" ], "x-ms-request-id": [ - "799041ef-716e-4fa0-bbed-5c61288c137d" + "a2a2dfd5-b248-4127-b5ae-f3556541abc7" ], "x-ms-client-request-id": [ - "f31cca00-7ce7-478b-98e2-08b23ab904e2", - "f31cca00-7ce7-478b-98e2-08b23ab904e2" + "88993225-06f4-484f-8ddf-bd4640b2c12d", + "88993225-06f4-484f-8ddf-bd4640b2c12d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3097,13 +3173,13 @@ "298" ], "x-ms-correlation-request-id": [ - "799041ef-716e-4fa0-bbed-5c61288c137d" + "a2a2dfd5-b248-4127-b5ae-f3556541abc7" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T092302Z:799041ef-716e-4fa0-bbed-5c61288c137d" + "WESTINDIA:20220516T154939Z:a2a2dfd5-b248-4127-b5ae-f3556541abc7" ], "Date": [ - "Sat, 26 Mar 2022 09:23:01 GMT" + "Mon, 16 May 2022 15:49:38 GMT" ], "Content-Length": [ "914" @@ -3115,26 +3191,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG06578997/providers/Microsoft.RecoveryServices/vaults/PSTestRSV06578997/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrg06578997;pstestvm065780\",\r\n \"name\": \"IaasVMContainer;iaasvmcontainerv2;pstestrg06578997;pstestvm065780\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers\",\r\n \"properties\": {\r\n \"virtualMachineId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG06578997/providers/Microsoft.Compute/virtualMachines/PSTestVM065780\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"resourceGroup\": \"PSTestRG06578997\",\r\n \"friendlyName\": \"PSTestVM065780\",\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG03263c8b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV03263c8b/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrg03263c8b;pstestvm032630\",\r\n \"name\": \"IaasVMContainer;iaasvmcontainerv2;pstestrg03263c8b;pstestvm032630\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers\",\r\n \"properties\": {\r\n \"virtualMachineId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG03263c8b/providers/Microsoft.Compute/virtualMachines/PSTestVM032630\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"resourceGroup\": \"PSTestRG03263c8b\",\r\n \"friendlyName\": \"PSTestVM032630\",\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/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG06578997/providers/Microsoft.RecoveryServices/vaults/PSTestRSV06578997/backupProtectionContainers?$filter=friendlyName%20eq%20'PSTestVM065780'%20and%20backupManagementType%20eq%20'AzureIaasVM'%20and%20status%20eq%20'Registered'&api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMDY1Nzg5OTcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YwNjU3ODk5Ny9iYWNrdXBQcm90ZWN0aW9uQ29udGFpbmVycz8kZmlsdGVyPWZyaWVuZGx5TmFtZSUyMGVxJTIwJ1BTVGVzdFZNMDY1NzgwJyUyMGFuZCUyMGJhY2t1cE1hbmFnZW1lbnRUeXBlJTIwZXElMjAnQXp1cmVJYWFzVk0nJTIwYW5kJTIwc3RhdHVzJTIwZXElMjAnUmVnaXN0ZXJlZCcmYXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG03263c8b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV03263c8b/backupProtectionContainers?$filter=friendlyName%20eq%20'PSTestVM032630'%20and%20backupManagementType%20eq%20'AzureIaasVM'%20and%20status%20eq%20'Registered'&api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMDMyNjNjOGIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YwMzI2M2M4Yi9iYWNrdXBQcm90ZWN0aW9uQ29udGFpbmVycz8kZmlsdGVyPWZyaWVuZGx5TmFtZSUyMGVxJTIwJ1BTVGVzdFZNMDMyNjMwJyUyMGFuZCUyMGJhY2t1cE1hbmFnZW1lbnRUeXBlJTIwZXElMjAnQXp1cmVJYWFzVk0nJTIwYW5kJTIwc3RhdHVzJTIwZXElMjAnUmVnaXN0ZXJlZCcmYXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "10cce4b7-3cb6-4c08-bc02-f00263d2c7b9" + "d343ae3f-b55b-4aaf-a787-e13318eb6ff2" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -3148,11 +3224,11 @@ "nosniff" ], "x-ms-request-id": [ - "d82462ea-877f-4c34-ab4e-e09b60858de5" + "5638a893-9a47-46ba-bee8-95cc798b676d" ], "x-ms-client-request-id": [ - "10cce4b7-3cb6-4c08-bc02-f00263d2c7b9", - "10cce4b7-3cb6-4c08-bc02-f00263d2c7b9" + "d343ae3f-b55b-4aaf-a787-e13318eb6ff2", + "d343ae3f-b55b-4aaf-a787-e13318eb6ff2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3167,13 +3243,13 @@ "296" ], "x-ms-correlation-request-id": [ - "d82462ea-877f-4c34-ab4e-e09b60858de5" + "5638a893-9a47-46ba-bee8-95cc798b676d" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T092304Z:d82462ea-877f-4c34-ab4e-e09b60858de5" + "WESTINDIA:20220516T154941Z:5638a893-9a47-46ba-bee8-95cc798b676d" ], "Date": [ - "Sat, 26 Mar 2022 09:23:03 GMT" + "Mon, 16 May 2022 15:49:40 GMT" ], "Content-Length": [ "914" @@ -3185,26 +3261,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG06578997/providers/Microsoft.RecoveryServices/vaults/PSTestRSV06578997/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrg06578997;pstestvm065780\",\r\n \"name\": \"IaasVMContainer;iaasvmcontainerv2;pstestrg06578997;pstestvm065780\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers\",\r\n \"properties\": {\r\n \"virtualMachineId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG06578997/providers/Microsoft.Compute/virtualMachines/PSTestVM065780\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"resourceGroup\": \"PSTestRG06578997\",\r\n \"friendlyName\": \"PSTestVM065780\",\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG03263c8b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV03263c8b/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrg03263c8b;pstestvm032630\",\r\n \"name\": \"IaasVMContainer;iaasvmcontainerv2;pstestrg03263c8b;pstestvm032630\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers\",\r\n \"properties\": {\r\n \"virtualMachineId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG03263c8b/providers/Microsoft.Compute/virtualMachines/PSTestVM032630\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"resourceGroup\": \"PSTestRG03263c8b\",\r\n \"friendlyName\": \"PSTestVM032630\",\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/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG06578997/providers/Microsoft.RecoveryServices/vaults/PSTestRSV06578997/backupProtectionContainers?$filter=friendlyName%20eq%20'PSTestVM065780'%20and%20backupManagementType%20eq%20'AzureIaasVM'%20and%20status%20eq%20'Registered'&api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMDY1Nzg5OTcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YwNjU3ODk5Ny9iYWNrdXBQcm90ZWN0aW9uQ29udGFpbmVycz8kZmlsdGVyPWZyaWVuZGx5TmFtZSUyMGVxJTIwJ1BTVGVzdFZNMDY1NzgwJyUyMGFuZCUyMGJhY2t1cE1hbmFnZW1lbnRUeXBlJTIwZXElMjAnQXp1cmVJYWFzVk0nJTIwYW5kJTIwc3RhdHVzJTIwZXElMjAnUmVnaXN0ZXJlZCcmYXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG03263c8b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV03263c8b/backupProtectionContainers?$filter=friendlyName%20eq%20'PSTestVM032630'%20and%20backupManagementType%20eq%20'AzureIaasVM'%20and%20status%20eq%20'Registered'&api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMDMyNjNjOGIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YwMzI2M2M4Yi9iYWNrdXBQcm90ZWN0aW9uQ29udGFpbmVycz8kZmlsdGVyPWZyaWVuZGx5TmFtZSUyMGVxJTIwJ1BTVGVzdFZNMDMyNjMwJyUyMGFuZCUyMGJhY2t1cE1hbmFnZW1lbnRUeXBlJTIwZXElMjAnQXp1cmVJYWFzVk0nJTIwYW5kJTIwc3RhdHVzJTIwZXElMjAnUmVnaXN0ZXJlZCcmYXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c9552255-555f-4690-9756-9f3240b26cda" + "4bc8c9fd-9ab6-42ee-870a-99d7fd081ae4" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -3218,11 +3294,11 @@ "nosniff" ], "x-ms-request-id": [ - "63ea3a42-744c-41fa-b340-e7000378a746" + "2dfe2d58-8555-4f12-ab31-73d79cef8a61" ], "x-ms-client-request-id": [ - "c9552255-555f-4690-9756-9f3240b26cda", - "c9552255-555f-4690-9756-9f3240b26cda" + "4bc8c9fd-9ab6-42ee-870a-99d7fd081ae4", + "4bc8c9fd-9ab6-42ee-870a-99d7fd081ae4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3237,13 +3313,13 @@ "295" ], "x-ms-correlation-request-id": [ - "63ea3a42-744c-41fa-b340-e7000378a746" + "2dfe2d58-8555-4f12-ab31-73d79cef8a61" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T092304Z:63ea3a42-744c-41fa-b340-e7000378a746" + "WESTINDIA:20220516T154941Z:2dfe2d58-8555-4f12-ab31-73d79cef8a61" ], "Date": [ - "Sat, 26 Mar 2022 09:23:04 GMT" + "Mon, 16 May 2022 15:49:40 GMT" ], "Content-Length": [ "914" @@ -3255,26 +3331,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG06578997/providers/Microsoft.RecoveryServices/vaults/PSTestRSV06578997/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrg06578997;pstestvm065780\",\r\n \"name\": \"IaasVMContainer;iaasvmcontainerv2;pstestrg06578997;pstestvm065780\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers\",\r\n \"properties\": {\r\n \"virtualMachineId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG06578997/providers/Microsoft.Compute/virtualMachines/PSTestVM065780\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"resourceGroup\": \"PSTestRG06578997\",\r\n \"friendlyName\": \"PSTestVM065780\",\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG03263c8b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV03263c8b/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrg03263c8b;pstestvm032630\",\r\n \"name\": \"IaasVMContainer;iaasvmcontainerv2;pstestrg03263c8b;pstestvm032630\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers\",\r\n \"properties\": {\r\n \"virtualMachineId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG03263c8b/providers/Microsoft.Compute/virtualMachines/PSTestVM032630\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"resourceGroup\": \"PSTestRG03263c8b\",\r\n \"friendlyName\": \"PSTestVM032630\",\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/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG06578997/providers/Microsoft.RecoveryServices/vaults/PSTestRSV06578997/backupPolicies/DefaultPolicy?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMDY1Nzg5OTcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YwNjU3ODk5Ny9iYWNrdXBQb2xpY2llcy9EZWZhdWx0UG9saWN5P2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG03263c8b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV03263c8b/backupPolicies/DefaultPolicy?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMDMyNjNjOGIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YwMzI2M2M4Yi9iYWNrdXBQb2xpY2llcy9EZWZhdWx0UG9saWN5P2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "965c0404-246f-4bdf-8066-f95469b1493b" + "32118ab9-5bcd-427d-9f0e-21233725026c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -3288,11 +3364,11 @@ "nosniff" ], "x-ms-request-id": [ - "ea1f41c4-a410-4d5f-b362-9d5700373477" + "0790c461-2342-47c7-9a1d-cbe9c17c85e0" ], "x-ms-client-request-id": [ - "965c0404-246f-4bdf-8066-f95469b1493b", - "965c0404-246f-4bdf-8066-f95469b1493b" + "32118ab9-5bcd-427d-9f0e-21233725026c", + "32118ab9-5bcd-427d-9f0e-21233725026c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3307,13 +3383,13 @@ "299" ], "x-ms-correlation-request-id": [ - "ea1f41c4-a410-4d5f-b362-9d5700373477" + "0790c461-2342-47c7-9a1d-cbe9c17c85e0" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T092226Z:ea1f41c4-a410-4d5f-b362-9d5700373477" + "WESTINDIA:20220516T154851Z:0790c461-2342-47c7-9a1d-cbe9c17c85e0" ], "Date": [ - "Sat, 26 Mar 2022 09:22:26 GMT" + "Mon, 16 May 2022 15:48:51 GMT" ], "Content-Length": [ "762" @@ -3325,26 +3401,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG06578997/providers/Microsoft.RecoveryServices/vaults/PSTestRSV06578997/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 \"2022-03-26T19:00:00Z\"\r\n ],\r\n \"scheduleWeeklyFrequency\": 0\r\n },\r\n \"retentionPolicy\": {\r\n \"retentionPolicyType\": \"LongTermRetentionPolicy\",\r\n \"dailySchedule\": {\r\n \"retentionTimes\": [\r\n \"2022-03-26T19:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 30,\r\n \"durationType\": \"Days\"\r\n }\r\n }\r\n },\r\n \"instantRpRetentionRangeInDays\": 2,\r\n \"timeZone\": \"UTC\",\r\n \"protectedItemsCount\": 0\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG03263c8b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV03263c8b/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 \"2022-05-17T01: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 \"2022-05-17T01:30:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 30,\r\n \"durationType\": \"Days\"\r\n }\r\n }\r\n },\r\n \"instantRpRetentionRangeInDays\": 2,\r\n \"timeZone\": \"UTC\",\r\n \"protectedItemsCount\": 0\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG06578997/providers/Microsoft.RecoveryServices/vaults/PSTestRSV06578997/backupProtectableItems?$filter=backupManagementType%20eq%20'AzureIaasVM'&api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMDY1Nzg5OTcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YwNjU3ODk5Ny9iYWNrdXBQcm90ZWN0YWJsZUl0ZW1zPyRmaWx0ZXI9YmFja3VwTWFuYWdlbWVudFR5cGUlMjBlcSUyMCdBenVyZUlhYXNWTScmYXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG03263c8b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV03263c8b/backupProtectableItems?$filter=backupManagementType%20eq%20'AzureIaasVM'&api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMDMyNjNjOGIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YwMzI2M2M4Yi9iYWNrdXBQcm90ZWN0YWJsZUl0ZW1zPyRmaWx0ZXI9YmFja3VwTWFuYWdlbWVudFR5cGUlMjBlcSUyMCdBenVyZUlhYXNWTScmYXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d80fd38b-d8c0-455c-b0e0-9fc3a7587fa6" + "c9309dea-6d4c-4934-9aa0-2ab3ba0c804b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -3358,11 +3434,11 @@ "nosniff" ], "x-ms-request-id": [ - "dbd5fe78-0661-4e8b-aa0b-7ce1e3926b2a" + "8ec7d982-3e14-43f3-91cc-abfb07932339" ], "x-ms-client-request-id": [ - "d80fd38b-d8c0-455c-b0e0-9fc3a7587fa6", - "d80fd38b-d8c0-455c-b0e0-9fc3a7587fa6" + "c9309dea-6d4c-4934-9aa0-2ab3ba0c804b", + "c9309dea-6d4c-4934-9aa0-2ab3ba0c804b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3377,16 +3453,16 @@ "299" ], "x-ms-correlation-request-id": [ - "dbd5fe78-0661-4e8b-aa0b-7ce1e3926b2a" + "8ec7d982-3e14-43f3-91cc-abfb07932339" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T092228Z:dbd5fe78-0661-4e8b-aa0b-7ce1e3926b2a" + "WESTINDIA:20220516T154852Z:8ec7d982-3e14-43f3-91cc-abfb07932339" ], "Date": [ - "Sat, 26 Mar 2022 09:22:28 GMT" + "Mon, 16 May 2022 15:48:52 GMT" ], "Content-Length": [ - "13296" + "19714" ], "Content-Type": [ "application/json" @@ -3395,26 +3471,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG06578997/providers/Microsoft.RecoveryServices/vaults/PSTestRSV06578997/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;cmk.system;cmk-system-vm1/protectableItems/vm;iaasvmcontainerv2;cmk.system;cmk-system-vm1\",\r\n \"name\": \"iaasvmcontainerv2;cmk.system;cmk-system-vm1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems\",\r\n \"properties\": {\r\n \"virtualMachineId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/cmk.system/providers/Microsoft.Compute/virtualMachines/cmk-system-vm1\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"resourceGroup\": \"cmk.system\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"protectableItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"friendlyName\": \"cmk-system-vm1\",\r\n \"protectionState\": \"NotProtected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG06578997/providers/Microsoft.RecoveryServices/vaults/PSTestRSV06578997/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;cmk.system;cmk-system-vm2/protectableItems/vm;iaasvmcontainerv2;cmk.system;cmk-system-vm2\",\r\n \"name\": \"iaasvmcontainerv2;cmk.system;cmk-system-vm2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems\",\r\n \"properties\": {\r\n \"virtualMachineId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/cmk.system/providers/Microsoft.Compute/virtualMachines/cmk-system-vm2\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"resourceGroup\": \"cmk.system\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"protectableItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"friendlyName\": \"cmk-system-vm2\",\r\n \"protectionState\": \"NotProtected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG06578997/providers/Microsoft.RecoveryServices/vaults/PSTestRSV06578997/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;cmk.system;cmk-user-vm1/protectableItems/vm;iaasvmcontainerv2;cmk.system;cmk-user-vm1\",\r\n \"name\": \"iaasvmcontainerv2;cmk.system;cmk-user-vm1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems\",\r\n \"properties\": {\r\n \"virtualMachineId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/cmk.system/providers/Microsoft.Compute/virtualMachines/cmk-user-vm1\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"resourceGroup\": \"cmk.system\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"protectableItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"friendlyName\": \"cmk-user-vm1\",\r\n \"protectionState\": \"NotProtected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG06578997/providers/Microsoft.RecoveryServices/vaults/PSTestRSV06578997/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;cmk.system;cmk-user-vm2/protectableItems/vm;iaasvmcontainerv2;cmk.system;cmk-user-vm2\",\r\n \"name\": \"iaasvmcontainerv2;cmk.system;cmk-user-vm2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems\",\r\n \"properties\": {\r\n \"virtualMachineId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/cmk.system/providers/Microsoft.Compute/virtualMachines/cmk-user-vm2\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"resourceGroup\": \"cmk.system\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"protectableItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"friendlyName\": \"cmk-user-vm2\",\r\n \"protectionState\": \"NotProtected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG06578997/providers/Microsoft.RecoveryServices/vaults/PSTestRSV06578997/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;cmk.vaults;restorevm1/protectableItems/vm;iaasvmcontainerv2;cmk.vaults;restorevm1\",\r\n \"name\": \"iaasvmcontainerv2;cmk.vaults;restorevm1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems\",\r\n \"properties\": {\r\n \"virtualMachineId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/cmk.vaults/providers/Microsoft.Compute/virtualMachines/restorevm1\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"resourceGroup\": \"cmk.vaults\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"protectableItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"friendlyName\": \"restorevm1\",\r\n \"protectionState\": \"NotProtected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG06578997/providers/Microsoft.RecoveryServices/vaults/PSTestRSV06578997/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;iaasvm.encryptedvm;iaasenc-win-v2/protectableItems/vm;iaasvmcontainerv2;iaasvm.encryptedvm;iaasenc-win-v2\",\r\n \"name\": \"iaasvmcontainerv2;iaasvm.encryptedvm;iaasenc-win-v2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems\",\r\n \"properties\": {\r\n \"virtualMachineId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.encryptedvm/providers/Microsoft.Compute/virtualMachines/iaasenc-win-v2\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"resourceGroup\": \"iaasvm.encryptedvm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"protectableItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"friendlyName\": \"iaasenc-win-v2\",\r\n \"protectionState\": \"NotProtected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG06578997/providers/Microsoft.RecoveryServices/vaults/PSTestRSV06578997/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;iaasvm.existing;iaasext-win-3/protectableItems/vm;iaasvmcontainerv2;iaasvm.existing;iaasext-win-3\",\r\n \"name\": \"iaasvmcontainerv2;iaasvm.existing;iaasext-win-3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems\",\r\n \"properties\": {\r\n \"virtualMachineId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.existing/providers/Microsoft.Compute/virtualMachines/iaasext-win-3\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"resourceGroup\": \"iaasvm.existing\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"protectableItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"friendlyName\": \"iaasext-win-3\",\r\n \"protectionState\": \"NotProtected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG06578997/providers/Microsoft.RecoveryServices/vaults/PSTestRSV06578997/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;iaasvm.existing;testvm2/protectableItems/vm;iaasvmcontainerv2;iaasvm.existing;testvm2\",\r\n \"name\": \"iaasvmcontainerv2;iaasvm.existing;testvm2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems\",\r\n \"properties\": {\r\n \"virtualMachineId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.existing/providers/Microsoft.Compute/virtualMachines/Testvm2\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"resourceGroup\": \"iaasvm.existing\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"protectableItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"friendlyName\": \"Testvm2\",\r\n \"protectionState\": \"NotProtected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG06578997/providers/Microsoft.RecoveryServices/vaults/PSTestRSV06578997/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;iaasvm.new;iaasnew-win-v2/protectableItems/vm;iaasvmcontainerv2;iaasvm.new;iaasnew-win-v2\",\r\n \"name\": \"iaasvmcontainerv2;iaasvm.new;iaasnew-win-v2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems\",\r\n \"properties\": {\r\n \"virtualMachineId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.new/providers/Microsoft.Compute/virtualMachines/iaasnew-win-v2\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"resourceGroup\": \"iaasvm.new\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"protectableItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"friendlyName\": \"iaasnew-win-v2\",\r\n \"protectionState\": \"NotProtected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG06578997/providers/Microsoft.RecoveryServices/vaults/PSTestRSV06578997/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;iaasvm.vmbackup;iaasvbkp-win-v2/protectableItems/vm;iaasvmcontainerv2;iaasvm.vmbackup;iaasvbkp-win-v2\",\r\n \"name\": \"iaasvmcontainerv2;iaasvm.vmbackup;iaasvbkp-win-v2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems\",\r\n \"properties\": {\r\n \"virtualMachineId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.vmbackup/providers/Microsoft.Compute/virtualMachines/iaasvbkp-win-v2\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"resourceGroup\": \"iaasvm.vmbackup\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"protectableItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"friendlyName\": \"iaasvbkp-win-v2\",\r\n \"protectionState\": \"NotProtected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG06578997/providers/Microsoft.RecoveryServices/vaults/PSTestRSV06578997/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;iaasvmhanaworkload.existing;iaashanaext/protectableItems/vm;iaasvmcontainerv2;iaasvmhanaworkload.existing;iaashanaext\",\r\n \"name\": \"iaasvmcontainerv2;iaasvmhanaworkload.existing;iaashanaext\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems\",\r\n \"properties\": {\r\n \"virtualMachineId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvmhanaworkload.existing/providers/Microsoft.Compute/virtualMachines/iaashanaext\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"resourceGroup\": \"iaasvmhanaworkload.existing\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"protectableItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"friendlyName\": \"iaashanaext\",\r\n \"protectionState\": \"NotProtected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG06578997/providers/Microsoft.RecoveryServices/vaults/PSTestRSV06578997/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;iaasvmsqlworkload.existing;iaassqlext-win/protectableItems/vm;iaasvmcontainerv2;iaasvmsqlworkload.existing;iaassqlext-win\",\r\n \"name\": \"iaasvmcontainerv2;iaasvmsqlworkload.existing;iaassqlext-win\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems\",\r\n \"properties\": {\r\n \"virtualMachineId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvmsqlworkload.existing/providers/Microsoft.Compute/virtualMachines/iaassqlext-win\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"resourceGroup\": \"iaasvmsqlworkload.existing\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"protectableItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"friendlyName\": \"iaassqlext-win\",\r\n \"protectionState\": \"NotProtected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG06578997/providers/Microsoft.RecoveryServices/vaults/PSTestRSV06578997/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;iaasvmsqlworkload.existing;iaassqlext2-win/protectableItems/vm;iaasvmcontainerv2;iaasvmsqlworkload.existing;iaassqlext2-win\",\r\n \"name\": \"iaasvmcontainerv2;iaasvmsqlworkload.existing;iaassqlext2-win\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems\",\r\n \"properties\": {\r\n \"virtualMachineId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvmsqlworkload.existing/providers/Microsoft.Compute/virtualMachines/iaassqlext2-win\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"resourceGroup\": \"iaasvmsqlworkload.existing\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"protectableItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"friendlyName\": \"iaassqlext2-win\",\r\n \"protectionState\": \"NotProtected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG06578997/providers/Microsoft.RecoveryServices/vaults/PSTestRSV06578997/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrg06578997;pstestvm065780/protectableItems/vm;iaasvmcontainerv2;pstestrg06578997;pstestvm065780\",\r\n \"name\": \"iaasvmcontainerv2;pstestrg06578997;pstestvm065780\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems\",\r\n \"properties\": {\r\n \"virtualMachineId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG06578997/providers/Microsoft.Compute/virtualMachines/PSTestVM065780\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"resourceGroup\": \"PSTestRG06578997\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"protectableItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"friendlyName\": \"PSTestVM065780\",\r\n \"protectionState\": \"NotProtected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG06578997/providers/Microsoft.RecoveryServices/vaults/PSTestRSV06578997/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestwlrg1bca8;sql-pstest-vm/protectableItems/vm;iaasvmcontainerv2;pstestwlrg1bca8;sql-pstest-vm\",\r\n \"name\": \"iaasvmcontainerv2;pstestwlrg1bca8;sql-pstest-vm\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems\",\r\n \"properties\": {\r\n \"virtualMachineId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestwlRG1bca8/providers/Microsoft.Compute/virtualMachines/sql-pstest-vm\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"resourceGroup\": \"pstestwlRG1bca8\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"protectableItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"friendlyName\": \"sql-pstest-vm\",\r\n \"protectionState\": \"NotProtected\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG03263c8b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV03263c8b/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainer;iaasvm.existing.restore;vmerestorehqjj/protectableItems/vm;iaasvmcontainer;iaasvm.existing.restore;vmerestorehqjj\",\r\n \"name\": \"iaasvmcontainer;iaasvm.existing.restore;vmerestorehqjj\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems\",\r\n \"properties\": {\r\n \"virtualMachineId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.existing.restore/providers/Microsoft.ClassicCompute/virtualMachines/vmerestorehqjj\",\r\n \"virtualMachineVersion\": \"ClassicCompute\",\r\n \"resourceGroup\": \"iaasvm.existing.restore\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"protectableItemType\": \"Microsoft.ClassicCompute/virtualMachines\",\r\n \"friendlyName\": \"vmerestorehqjj\",\r\n \"protectionState\": \"NotProtected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG03263c8b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV03263c8b/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainer;iaasvm.existing.restore;vmerestorerity/protectableItems/vm;iaasvmcontainer;iaasvm.existing.restore;vmerestorerity\",\r\n \"name\": \"iaasvmcontainer;iaasvm.existing.restore;vmerestorerity\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems\",\r\n \"properties\": {\r\n \"virtualMachineId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.existing.restore/providers/Microsoft.ClassicCompute/virtualMachines/vmerestorerity\",\r\n \"virtualMachineVersion\": \"ClassicCompute\",\r\n \"resourceGroup\": \"iaasvm.existing.restore\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"protectableItemType\": \"Microsoft.ClassicCompute/virtualMachines\",\r\n \"friendlyName\": \"vmerestorerity\",\r\n \"protectionState\": \"NotProtected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG03263c8b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV03263c8b/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;cmk.iaasvm.restore;cmkvmnres1ynxo/protectableItems/vm;iaasvmcontainerv2;cmk.iaasvm.restore;cmkvmnres1ynxo\",\r\n \"name\": \"iaasvmcontainerv2;cmk.iaasvm.restore;cmkvmnres1ynxo\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems\",\r\n \"properties\": {\r\n \"virtualMachineId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/cmk.iaasvm.restore/providers/Microsoft.Compute/virtualMachines/cmkvmnres1ynxo\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"resourceGroup\": \"cmk.iaasvm.restore\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"protectableItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"friendlyName\": \"cmkvmnres1ynxo\",\r\n \"protectionState\": \"NotProtected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG03263c8b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV03263c8b/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;cmk.iaasvm.restore;cmkvmnres2mjji/protectableItems/vm;iaasvmcontainerv2;cmk.iaasvm.restore;cmkvmnres2mjji\",\r\n \"name\": \"iaasvmcontainerv2;cmk.iaasvm.restore;cmkvmnres2mjji\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems\",\r\n \"properties\": {\r\n \"virtualMachineId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/cmk.iaasvm.restore/providers/Microsoft.Compute/virtualMachines/cmkvmnres2mjji\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"resourceGroup\": \"cmk.iaasvm.restore\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"protectableItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"friendlyName\": \"cmkvmnres2mjji\",\r\n \"protectionState\": \"NotProtected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG03263c8b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV03263c8b/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;cmk.system;cmk-system-vm1/protectableItems/vm;iaasvmcontainerv2;cmk.system;cmk-system-vm1\",\r\n \"name\": \"iaasvmcontainerv2;cmk.system;cmk-system-vm1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems\",\r\n \"properties\": {\r\n \"virtualMachineId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/cmk.system/providers/Microsoft.Compute/virtualMachines/cmk-system-vm1\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"resourceGroup\": \"cmk.system\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"protectableItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"friendlyName\": \"cmk-system-vm1\",\r\n \"protectionState\": \"NotProtected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG03263c8b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV03263c8b/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;cmk.system;cmk-system-vm2/protectableItems/vm;iaasvmcontainerv2;cmk.system;cmk-system-vm2\",\r\n \"name\": \"iaasvmcontainerv2;cmk.system;cmk-system-vm2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems\",\r\n \"properties\": {\r\n \"virtualMachineId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/cmk.system/providers/Microsoft.Compute/virtualMachines/cmk-system-vm2\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"resourceGroup\": \"cmk.system\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"protectableItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"friendlyName\": \"cmk-system-vm2\",\r\n \"protectionState\": \"NotProtected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG03263c8b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV03263c8b/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;cmk.system;cmk-user-vm1/protectableItems/vm;iaasvmcontainerv2;cmk.system;cmk-user-vm1\",\r\n \"name\": \"iaasvmcontainerv2;cmk.system;cmk-user-vm1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems\",\r\n \"properties\": {\r\n \"virtualMachineId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/cmk.system/providers/Microsoft.Compute/virtualMachines/cmk-user-vm1\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"resourceGroup\": \"cmk.system\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"protectableItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"friendlyName\": \"cmk-user-vm1\",\r\n \"protectionState\": \"NotProtected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG03263c8b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV03263c8b/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;cmk.system;cmk-user-vm2/protectableItems/vm;iaasvmcontainerv2;cmk.system;cmk-user-vm2\",\r\n \"name\": \"iaasvmcontainerv2;cmk.system;cmk-user-vm2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems\",\r\n \"properties\": {\r\n \"virtualMachineId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/cmk.system/providers/Microsoft.Compute/virtualMachines/cmk-user-vm2\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"resourceGroup\": \"cmk.system\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"protectableItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"friendlyName\": \"cmk-user-vm2\",\r\n \"protectionState\": \"NotProtected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG03263c8b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV03263c8b/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;cmk.vaults;restorevm1/protectableItems/vm;iaasvmcontainerv2;cmk.vaults;restorevm1\",\r\n \"name\": \"iaasvmcontainerv2;cmk.vaults;restorevm1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems\",\r\n \"properties\": {\r\n \"virtualMachineId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/cmk.vaults/providers/Microsoft.Compute/virtualMachines/restorevm1\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"resourceGroup\": \"cmk.vaults\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"protectableItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"friendlyName\": \"restorevm1\",\r\n \"protectionState\": \"NotProtected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG03263c8b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV03263c8b/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;iaasvm.encryptedvm;iaasenc-win-v2/protectableItems/vm;iaasvmcontainerv2;iaasvm.encryptedvm;iaasenc-win-v2\",\r\n \"name\": \"iaasvmcontainerv2;iaasvm.encryptedvm;iaasenc-win-v2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems\",\r\n \"properties\": {\r\n \"virtualMachineId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.encryptedvm/providers/Microsoft.Compute/virtualMachines/iaasenc-win-v2\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"resourceGroup\": \"iaasvm.encryptedvm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"protectableItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"friendlyName\": \"iaasenc-win-v2\",\r\n \"protectionState\": \"NotProtected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG03263c8b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV03263c8b/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;iaasvm.existing.restore;vmerestorealcq/protectableItems/vm;iaasvmcontainerv2;iaasvm.existing.restore;vmerestorealcq\",\r\n \"name\": \"iaasvmcontainerv2;iaasvm.existing.restore;vmerestorealcq\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems\",\r\n \"properties\": {\r\n \"virtualMachineId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.existing.restore/providers/Microsoft.Compute/virtualMachines/vmerestorealcq\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"resourceGroup\": \"iaasvm.existing.restore\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"protectableItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"friendlyName\": \"vmerestorealcq\",\r\n \"protectionState\": \"NotProtected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG03263c8b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV03263c8b/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;iaasvm.existing;iaasext-win-3/protectableItems/vm;iaasvmcontainerv2;iaasvm.existing;iaasext-win-3\",\r\n \"name\": \"iaasvmcontainerv2;iaasvm.existing;iaasext-win-3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems\",\r\n \"properties\": {\r\n \"virtualMachineId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.existing/providers/Microsoft.Compute/virtualMachines/iaasext-win-3\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"resourceGroup\": \"iaasvm.existing\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"protectableItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"friendlyName\": \"iaasext-win-3\",\r\n \"protectionState\": \"NotProtected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG03263c8b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV03263c8b/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;iaasvm.existing;testvm2/protectableItems/vm;iaasvmcontainerv2;iaasvm.existing;testvm2\",\r\n \"name\": \"iaasvmcontainerv2;iaasvm.existing;testvm2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems\",\r\n \"properties\": {\r\n \"virtualMachineId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.existing/providers/Microsoft.Compute/virtualMachines/Testvm2\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"resourceGroup\": \"iaasvm.existing\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"protectableItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"friendlyName\": \"Testvm2\",\r\n \"protectionState\": \"NotProtected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG03263c8b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV03263c8b/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;iaasvm.new.czr;iaasext-czrozar/protectableItems/vm;iaasvmcontainerv2;iaasvm.new.czr;iaasext-czrozar\",\r\n \"name\": \"iaasvmcontainerv2;iaasvm.new.czr;iaasext-czrozar\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems\",\r\n \"properties\": {\r\n \"virtualMachineId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.new.czr/providers/Microsoft.Compute/virtualMachines/iaasext-czrozar\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"resourceGroup\": \"iaasvm.new.czr\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"protectableItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"friendlyName\": \"iaasext-czrozar\",\r\n \"protectionState\": \"NotProtected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG03263c8b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV03263c8b/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;iaasvm.new.restore;vmnrestorepfyv/protectableItems/vm;iaasvmcontainerv2;iaasvm.new.restore;vmnrestorepfyv\",\r\n \"name\": \"iaasvmcontainerv2;iaasvm.new.restore;vmnrestorepfyv\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems\",\r\n \"properties\": {\r\n \"virtualMachineId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.new.restore/providers/Microsoft.Compute/virtualMachines/vmnrestorepfyv\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"resourceGroup\": \"iaasvm.new.restore\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"protectableItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"friendlyName\": \"vmnrestorepfyv\",\r\n \"protectionState\": \"NotProtected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG03263c8b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV03263c8b/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;iaasvm.new;iaasnew-win-v2/protectableItems/vm;iaasvmcontainerv2;iaasvm.new;iaasnew-win-v2\",\r\n \"name\": \"iaasvmcontainerv2;iaasvm.new;iaasnew-win-v2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems\",\r\n \"properties\": {\r\n \"virtualMachineId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.new/providers/Microsoft.Compute/virtualMachines/iaasnew-win-v2\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"resourceGroup\": \"iaasvm.new\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"protectableItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"friendlyName\": \"iaasnew-win-v2\",\r\n \"protectionState\": \"NotProtected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG03263c8b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV03263c8b/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;iaasvm.vmbackup;iaasvbkp-win-v2/protectableItems/vm;iaasvmcontainerv2;iaasvm.vmbackup;iaasvbkp-win-v2\",\r\n \"name\": \"iaasvmcontainerv2;iaasvm.vmbackup;iaasvbkp-win-v2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems\",\r\n \"properties\": {\r\n \"virtualMachineId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.vmbackup/providers/Microsoft.Compute/virtualMachines/iaasvbkp-win-v2\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"resourceGroup\": \"iaasvm.vmbackup\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"protectableItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"friendlyName\": \"iaasvbkp-win-v2\",\r\n \"protectionState\": \"NotProtected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG03263c8b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV03263c8b/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;iaasvmhanaworkload.existing;iaashanaext/protectableItems/vm;iaasvmcontainerv2;iaasvmhanaworkload.existing;iaashanaext\",\r\n \"name\": \"iaasvmcontainerv2;iaasvmhanaworkload.existing;iaashanaext\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems\",\r\n \"properties\": {\r\n \"virtualMachineId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvmhanaworkload.existing/providers/Microsoft.Compute/virtualMachines/iaashanaext\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"resourceGroup\": \"iaasvmhanaworkload.existing\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"protectableItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"friendlyName\": \"iaashanaext\",\r\n \"protectionState\": \"NotProtected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG03263c8b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV03263c8b/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;iaasvmsqlworkload.existing;iaassqlext-win/protectableItems/vm;iaasvmcontainerv2;iaasvmsqlworkload.existing;iaassqlext-win\",\r\n \"name\": \"iaasvmcontainerv2;iaasvmsqlworkload.existing;iaassqlext-win\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems\",\r\n \"properties\": {\r\n \"virtualMachineId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvmsqlworkload.existing/providers/Microsoft.Compute/virtualMachines/iaassqlext-win\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"resourceGroup\": \"iaasvmsqlworkload.existing\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"protectableItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"friendlyName\": \"iaassqlext-win\",\r\n \"protectionState\": \"NotProtected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG03263c8b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV03263c8b/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;iaasvmsqlworkload.existing;iaassqlext2-win/protectableItems/vm;iaasvmcontainerv2;iaasvmsqlworkload.existing;iaassqlext2-win\",\r\n \"name\": \"iaasvmcontainerv2;iaasvmsqlworkload.existing;iaassqlext2-win\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems\",\r\n \"properties\": {\r\n \"virtualMachineId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvmsqlworkload.existing/providers/Microsoft.Compute/virtualMachines/iaassqlext2-win\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"resourceGroup\": \"iaasvmsqlworkload.existing\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"protectableItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"friendlyName\": \"iaassqlext2-win\",\r\n \"protectionState\": \"NotProtected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG03263c8b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV03263c8b/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrg03263c8b;pstestvm032630/protectableItems/vm;iaasvmcontainerv2;pstestrg03263c8b;pstestvm032630\",\r\n \"name\": \"iaasvmcontainerv2;pstestrg03263c8b;pstestvm032630\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems\",\r\n \"properties\": {\r\n \"virtualMachineId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG03263c8b/providers/Microsoft.Compute/virtualMachines/PSTestVM032630\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"resourceGroup\": \"PSTestRG03263c8b\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"protectableItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"friendlyName\": \"PSTestVM032630\",\r\n \"protectionState\": \"NotProtected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG03263c8b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV03263c8b/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestwlrg1bca8;sql-pstest-vm/protectableItems/vm;iaasvmcontainerv2;pstestwlrg1bca8;sql-pstest-vm\",\r\n \"name\": \"iaasvmcontainerv2;pstestwlrg1bca8;sql-pstest-vm\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems\",\r\n \"properties\": {\r\n \"virtualMachineId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestwlRG1bca8/providers/Microsoft.Compute/virtualMachines/sql-pstest-vm\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"resourceGroup\": \"pstestwlRG1bca8\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"protectableItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"friendlyName\": \"sql-pstest-vm\",\r\n \"protectionState\": \"NotProtected\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG06578997/providers/Microsoft.RecoveryServices/vaults/PSTestRSV06578997/backupFabrics/Azure/protectionContainers/IaasVMContainer%3Biaasvmcontainerv2%3Bpstestrg06578997%3Bpstestvm065780/protectedItems/vm%3Biaasvmcontainerv2%3Bpstestrg06578997%3Bpstestvm065780?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMDY1Nzg5OTcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YwNjU3ODk5Ny9iYWNrdXBGYWJyaWNzL0F6dXJlL3Byb3RlY3Rpb25Db250YWluZXJzL0lhYXNWTUNvbnRhaW5lciUzQmlhYXN2bWNvbnRhaW5lcnYyJTNCcHN0ZXN0cmcwNjU3ODk5NyUzQnBzdGVzdHZtMDY1NzgwL3Byb3RlY3RlZEl0ZW1zL3ZtJTNCaWFhc3ZtY29udGFpbmVydjIlM0Jwc3Rlc3RyZzA2NTc4OTk3JTNCcHN0ZXN0dm0wNjU3ODA/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG03263c8b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV03263c8b/backupFabrics/Azure/protectionContainers/IaasVMContainer%3Biaasvmcontainerv2%3Bpstestrg03263c8b%3Bpstestvm032630/protectedItems/vm%3Biaasvmcontainerv2%3Bpstestrg03263c8b%3Bpstestvm032630?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMDMyNjNjOGIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YwMzI2M2M4Yi9iYWNrdXBGYWJyaWNzL0F6dXJlL3Byb3RlY3Rpb25Db250YWluZXJzL0lhYXNWTUNvbnRhaW5lciUzQmlhYXN2bWNvbnRhaW5lcnYyJTNCcHN0ZXN0cmcwMzI2M2M4YiUzQnBzdGVzdHZtMDMyNjMwL3Byb3RlY3RlZEl0ZW1zL3ZtJTNCaWFhc3ZtY29udGFpbmVydjIlM0Jwc3Rlc3RyZzAzMjYzYzhiJTNCcHN0ZXN0dm0wMzI2MzA/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"protectedItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"sourceResourceId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG06578997/providers/Microsoft.Compute/virtualMachines/PSTestVM065780\",\r\n \"policyId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG06578997/providers/Microsoft.RecoveryServices/vaults/PSTestRSV06578997/backupPolicies/DefaultPolicy\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"protectedItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"sourceResourceId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG03263c8b/providers/Microsoft.Compute/virtualMachines/PSTestVM032630\",\r\n \"policyId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG03263c8b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV03263c8b/backupPolicies/DefaultPolicy\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "d80fd38b-d8c0-455c-b0e0-9fc3a7587fa6" + "c9309dea-6d4c-4934-9aa0-2ab3ba0c804b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3431,23 +3507,23 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG06578997/providers/Microsoft.RecoveryServices/vaults/PSTestRSV06578997/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrg06578997;pstestvm065780/protectedItems/vm;iaasvmcontainerv2;pstestrg06578997;pstestvm065780/operationResults/50762a01-2033-4e46-b01c-31dde765516b?api-version=2021-12-01" + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG03263c8b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV03263c8b/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrg03263c8b;pstestvm032630/protectedItems/vm;iaasvmcontainerv2;pstestrg03263c8b;pstestvm032630/operationResults/fa0a4e45-5064-4f2c-b8f1-8ddf097f45a1?api-version=2022-02-01" ], "Retry-After": [ "60" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG06578997/providers/Microsoft.RecoveryServices/vaults/PSTestRSV06578997/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrg06578997;pstestvm065780/protectedItems/vm;iaasvmcontainerv2;pstestrg06578997;pstestvm065780/operationsStatus/50762a01-2033-4e46-b01c-31dde765516b?api-version=2021-12-01" + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG03263c8b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV03263c8b/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrg03263c8b;pstestvm032630/protectedItems/vm;iaasvmcontainerv2;pstestrg03263c8b;pstestvm032630/operationsStatus/fa0a4e45-5064-4f2c-b8f1-8ddf097f45a1?api-version=2022-02-01" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "3875fd16-2226-4b94-84bd-c9c5e19e28ea" + "9a09a29b-f4cf-40b8-a158-5452ba75fce6" ], "x-ms-client-request-id": [ - "d80fd38b-d8c0-455c-b0e0-9fc3a7587fa6", - "d80fd38b-d8c0-455c-b0e0-9fc3a7587fa6" + "c9309dea-6d4c-4934-9aa0-2ab3ba0c804b", + "c9309dea-6d4c-4934-9aa0-2ab3ba0c804b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3459,13 +3535,13 @@ "1198" ], "x-ms-correlation-request-id": [ - "3875fd16-2226-4b94-84bd-c9c5e19e28ea" + "9a09a29b-f4cf-40b8-a158-5452ba75fce6" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T092229Z:3875fd16-2226-4b94-84bd-c9c5e19e28ea" + "WESTINDIA:20220516T154853Z:9a09a29b-f4cf-40b8-a158-5452ba75fce6" ], "Date": [ - "Sat, 26 Mar 2022 09:22:29 GMT" + "Mon, 16 May 2022 15:48:53 GMT" ], "Expires": [ "-1" @@ -3478,22 +3554,22 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG06578997/providers/Microsoft.RecoveryServices/vaults/PSTestRSV06578997/backupOperations/50762a01-2033-4e46-b01c-31dde765516b?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMDY1Nzg5OTcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YwNjU3ODk5Ny9iYWNrdXBPcGVyYXRpb25zLzUwNzYyYTAxLTIwMzMtNGU0Ni1iMDFjLTMxZGRlNzY1NTE2Yj9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG03263c8b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV03263c8b/backupOperations/fa0a4e45-5064-4f2c-b8f1-8ddf097f45a1?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMDMyNjNjOGIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YwMzI2M2M4Yi9iYWNrdXBPcGVyYXRpb25zL2ZhMGE0ZTQ1LTUwNjQtNGYyYy1iOGYxLThkZGYwOTdmNDVhMT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d80fd38b-d8c0-455c-b0e0-9fc3a7587fa6" + "c9309dea-6d4c-4934-9aa0-2ab3ba0c804b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -3507,11 +3583,11 @@ "nosniff" ], "x-ms-request-id": [ - "1a7a813f-f18d-4619-8da2-541c1e045e09" + "d7903299-15fa-484c-9065-911722aba1f7" ], "x-ms-client-request-id": [ - "d80fd38b-d8c0-455c-b0e0-9fc3a7587fa6", - "d80fd38b-d8c0-455c-b0e0-9fc3a7587fa6" + "c9309dea-6d4c-4934-9aa0-2ab3ba0c804b", + "c9309dea-6d4c-4934-9aa0-2ab3ba0c804b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3526,13 +3602,13 @@ "299" ], "x-ms-correlation-request-id": [ - "1a7a813f-f18d-4619-8da2-541c1e045e09" + "d7903299-15fa-484c-9065-911722aba1f7" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T092229Z:1a7a813f-f18d-4619-8da2-541c1e045e09" + "WESTINDIA:20220516T154854Z:d7903299-15fa-484c-9065-911722aba1f7" ], "Date": [ - "Sat, 26 Mar 2022 09:22:29 GMT" + "Mon, 16 May 2022 15:48:54 GMT" ], "Content-Length": [ "188" @@ -3544,26 +3620,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"50762a01-2033-4e46-b01c-31dde765516b\",\r\n \"name\": \"50762a01-2033-4e46-b01c-31dde765516b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-03-26T09:22:29.0831541Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"fa0a4e45-5064-4f2c-b8f1-8ddf097f45a1\",\r\n \"name\": \"fa0a4e45-5064-4f2c-b8f1-8ddf097f45a1\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:48:53.6126593Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG06578997/providers/Microsoft.RecoveryServices/vaults/PSTestRSV06578997/backupOperations/50762a01-2033-4e46-b01c-31dde765516b?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMDY1Nzg5OTcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YwNjU3ODk5Ny9iYWNrdXBPcGVyYXRpb25zLzUwNzYyYTAxLTIwMzMtNGU0Ni1iMDFjLTMxZGRlNzY1NTE2Yj9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG03263c8b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV03263c8b/backupOperations/fa0a4e45-5064-4f2c-b8f1-8ddf097f45a1?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMDMyNjNjOGIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YwMzI2M2M4Yi9iYWNrdXBPcGVyYXRpb25zL2ZhMGE0ZTQ1LTUwNjQtNGYyYy1iOGYxLThkZGYwOTdmNDVhMT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d80fd38b-d8c0-455c-b0e0-9fc3a7587fa6" + "c9309dea-6d4c-4934-9aa0-2ab3ba0c804b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -3577,11 +3653,11 @@ "nosniff" ], "x-ms-request-id": [ - "7ddff674-1739-44d5-92a4-479167419648" + "bdef50de-652d-4169-bd32-418d1766aca3" ], "x-ms-client-request-id": [ - "d80fd38b-d8c0-455c-b0e0-9fc3a7587fa6", - "d80fd38b-d8c0-455c-b0e0-9fc3a7587fa6" + "c9309dea-6d4c-4934-9aa0-2ab3ba0c804b", + "c9309dea-6d4c-4934-9aa0-2ab3ba0c804b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3596,13 +3672,13 @@ "298" ], "x-ms-correlation-request-id": [ - "7ddff674-1739-44d5-92a4-479167419648" + "bdef50de-652d-4169-bd32-418d1766aca3" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T092240Z:7ddff674-1739-44d5-92a4-479167419648" + "WESTINDIA:20220516T154859Z:bdef50de-652d-4169-bd32-418d1766aca3" ], "Date": [ - "Sat, 26 Mar 2022 09:22:39 GMT" + "Mon, 16 May 2022 15:48:59 GMT" ], "Content-Length": [ "188" @@ -3614,26 +3690,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"50762a01-2033-4e46-b01c-31dde765516b\",\r\n \"name\": \"50762a01-2033-4e46-b01c-31dde765516b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-03-26T09:22:29.0831541Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"fa0a4e45-5064-4f2c-b8f1-8ddf097f45a1\",\r\n \"name\": \"fa0a4e45-5064-4f2c-b8f1-8ddf097f45a1\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:48:53.6126593Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG06578997/providers/Microsoft.RecoveryServices/vaults/PSTestRSV06578997/backupOperations/50762a01-2033-4e46-b01c-31dde765516b?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMDY1Nzg5OTcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YwNjU3ODk5Ny9iYWNrdXBPcGVyYXRpb25zLzUwNzYyYTAxLTIwMzMtNGU0Ni1iMDFjLTMxZGRlNzY1NTE2Yj9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG03263c8b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV03263c8b/backupOperations/fa0a4e45-5064-4f2c-b8f1-8ddf097f45a1?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMDMyNjNjOGIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YwMzI2M2M4Yi9iYWNrdXBPcGVyYXRpb25zL2ZhMGE0ZTQ1LTUwNjQtNGYyYy1iOGYxLThkZGYwOTdmNDVhMT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d80fd38b-d8c0-455c-b0e0-9fc3a7587fa6" + "c9309dea-6d4c-4934-9aa0-2ab3ba0c804b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -3647,11 +3723,11 @@ "nosniff" ], "x-ms-request-id": [ - "fc6ae096-763d-463f-9cdc-654afef121f5" + "ef7de123-99f2-4ea7-aa0e-840a8332a3ce" ], "x-ms-client-request-id": [ - "d80fd38b-d8c0-455c-b0e0-9fc3a7587fa6", - "d80fd38b-d8c0-455c-b0e0-9fc3a7587fa6" + "c9309dea-6d4c-4934-9aa0-2ab3ba0c804b", + "c9309dea-6d4c-4934-9aa0-2ab3ba0c804b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3666,13 +3742,13 @@ "297" ], "x-ms-correlation-request-id": [ - "fc6ae096-763d-463f-9cdc-654afef121f5" + "ef7de123-99f2-4ea7-aa0e-840a8332a3ce" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T092250Z:fc6ae096-763d-463f-9cdc-654afef121f5" + "WESTINDIA:20220516T154905Z:ef7de123-99f2-4ea7-aa0e-840a8332a3ce" ], "Date": [ - "Sat, 26 Mar 2022 09:22:50 GMT" + "Mon, 16 May 2022 15:49:04 GMT" ], "Content-Length": [ "188" @@ -3684,26 +3760,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"50762a01-2033-4e46-b01c-31dde765516b\",\r\n \"name\": \"50762a01-2033-4e46-b01c-31dde765516b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-03-26T09:22:29.0831541Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"fa0a4e45-5064-4f2c-b8f1-8ddf097f45a1\",\r\n \"name\": \"fa0a4e45-5064-4f2c-b8f1-8ddf097f45a1\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:48:53.6126593Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG06578997/providers/Microsoft.RecoveryServices/vaults/PSTestRSV06578997/backupOperations/50762a01-2033-4e46-b01c-31dde765516b?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMDY1Nzg5OTcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YwNjU3ODk5Ny9iYWNrdXBPcGVyYXRpb25zLzUwNzYyYTAxLTIwMzMtNGU0Ni1iMDFjLTMxZGRlNzY1NTE2Yj9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG03263c8b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV03263c8b/backupOperations/fa0a4e45-5064-4f2c-b8f1-8ddf097f45a1?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMDMyNjNjOGIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YwMzI2M2M4Yi9iYWNrdXBPcGVyYXRpb25zL2ZhMGE0ZTQ1LTUwNjQtNGYyYy1iOGYxLThkZGYwOTdmNDVhMT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d80fd38b-d8c0-455c-b0e0-9fc3a7587fa6" + "c9309dea-6d4c-4934-9aa0-2ab3ba0c804b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -3717,11 +3793,11 @@ "nosniff" ], "x-ms-request-id": [ - "611dae9d-09a2-4f26-8365-1d986b76c045" + "47b467d1-d268-469f-b094-eeeea7cee59e" ], "x-ms-client-request-id": [ - "d80fd38b-d8c0-455c-b0e0-9fc3a7587fa6", - "d80fd38b-d8c0-455c-b0e0-9fc3a7587fa6" + "c9309dea-6d4c-4934-9aa0-2ab3ba0c804b", + "c9309dea-6d4c-4934-9aa0-2ab3ba0c804b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3736,16 +3812,16 @@ "296" ], "x-ms-correlation-request-id": [ - "611dae9d-09a2-4f26-8365-1d986b76c045" + "47b467d1-d268-469f-b094-eeeea7cee59e" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T092301Z:611dae9d-09a2-4f26-8365-1d986b76c045" + "WESTINDIA:20220516T154910Z:47b467d1-d268-469f-b094-eeeea7cee59e" ], "Date": [ - "Sat, 26 Mar 2022 09:23:00 GMT" + "Mon, 16 May 2022 15:49:10 GMT" ], "Content-Length": [ - "304" + "188" ], "Content-Type": [ "application/json" @@ -3754,26 +3830,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"50762a01-2033-4e46-b01c-31dde765516b\",\r\n \"name\": \"50762a01-2033-4e46-b01c-31dde765516b\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-03-26T09:22:29.0831541Z\",\r\n \"endTime\": \"2022-03-26T09:22:29.0831541Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"5637de07-af42-48fb-88be-85d57a6e9fd1\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"fa0a4e45-5064-4f2c-b8f1-8ddf097f45a1\",\r\n \"name\": \"fa0a4e45-5064-4f2c-b8f1-8ddf097f45a1\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:48:53.6126593Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG06578997/providers/Microsoft.RecoveryServices/vaults/PSTestRSV06578997/backupOperations/50762a01-2033-4e46-b01c-31dde765516b?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMDY1Nzg5OTcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YwNjU3ODk5Ny9iYWNrdXBPcGVyYXRpb25zLzUwNzYyYTAxLTIwMzMtNGU0Ni1iMDFjLTMxZGRlNzY1NTE2Yj9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG03263c8b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV03263c8b/backupOperations/fa0a4e45-5064-4f2c-b8f1-8ddf097f45a1?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMDMyNjNjOGIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YwMzI2M2M4Yi9iYWNrdXBPcGVyYXRpb25zL2ZhMGE0ZTQ1LTUwNjQtNGYyYy1iOGYxLThkZGYwOTdmNDVhMT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d80fd38b-d8c0-455c-b0e0-9fc3a7587fa6" + "c9309dea-6d4c-4934-9aa0-2ab3ba0c804b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -3787,11 +3863,11 @@ "nosniff" ], "x-ms-request-id": [ - "41fd8a81-08e2-4db6-9639-91b5bf2fb548" + "cf742d9a-74dc-4034-a855-e4b4230889c3" ], "x-ms-client-request-id": [ - "d80fd38b-d8c0-455c-b0e0-9fc3a7587fa6", - "d80fd38b-d8c0-455c-b0e0-9fc3a7587fa6" + "c9309dea-6d4c-4934-9aa0-2ab3ba0c804b", + "c9309dea-6d4c-4934-9aa0-2ab3ba0c804b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3806,16 +3882,16 @@ "295" ], "x-ms-correlation-request-id": [ - "41fd8a81-08e2-4db6-9639-91b5bf2fb548" + "cf742d9a-74dc-4034-a855-e4b4230889c3" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T092301Z:41fd8a81-08e2-4db6-9639-91b5bf2fb548" + "WESTINDIA:20220516T154916Z:cf742d9a-74dc-4034-a855-e4b4230889c3" ], "Date": [ - "Sat, 26 Mar 2022 09:23:00 GMT" + "Mon, 16 May 2022 15:49:15 GMT" ], "Content-Length": [ - "304" + "188" ], "Content-Type": [ "application/json" @@ -3824,26 +3900,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"50762a01-2033-4e46-b01c-31dde765516b\",\r\n \"name\": \"50762a01-2033-4e46-b01c-31dde765516b\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-03-26T09:22:29.0831541Z\",\r\n \"endTime\": \"2022-03-26T09:22:29.0831541Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"5637de07-af42-48fb-88be-85d57a6e9fd1\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"fa0a4e45-5064-4f2c-b8f1-8ddf097f45a1\",\r\n \"name\": \"fa0a4e45-5064-4f2c-b8f1-8ddf097f45a1\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:48:53.6126593Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG06578997/providers/Microsoft.RecoveryServices/vaults/PSTestRSV06578997/backupJobs/5637de07-af42-48fb-88be-85d57a6e9fd1?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMDY1Nzg5OTcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YwNjU3ODk5Ny9iYWNrdXBKb2JzLzU2MzdkZTA3LWFmNDItNDhmYi04OGJlLTg1ZDU3YTZlOWZkMT9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG03263c8b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV03263c8b/backupOperations/fa0a4e45-5064-4f2c-b8f1-8ddf097f45a1?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMDMyNjNjOGIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YwMzI2M2M4Yi9iYWNrdXBPcGVyYXRpb25zL2ZhMGE0ZTQ1LTUwNjQtNGYyYy1iOGYxLThkZGYwOTdmNDVhMT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d80fd38b-d8c0-455c-b0e0-9fc3a7587fa6" + "c9309dea-6d4c-4934-9aa0-2ab3ba0c804b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -3853,40 +3929,39 @@ "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-IIS/10.0" - ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "0ee623f7-f9cf-4794-bdc5-8fed553904b4" + "8997aa87-d0a4-4ab6-a126-7b05b3e2b572" ], "x-ms-client-request-id": [ - "d80fd38b-d8c0-455c-b0e0-9fc3a7587fa6", - "d80fd38b-d8c0-455c-b0e0-9fc3a7587fa6" - ], - "X-Powered-By": [ - "ASP.NET" + "c9309dea-6d4c-4934-9aa0-2ab3ba0c804b", + "c9309dea-6d4c-4934-9aa0-2ab3ba0c804b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "299" + "294" ], "x-ms-correlation-request-id": [ - "0ee623f7-f9cf-4794-bdc5-8fed553904b4" + "8997aa87-d0a4-4ab6-a126-7b05b3e2b572" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T092301Z:0ee623f7-f9cf-4794-bdc5-8fed553904b4" + "WESTINDIA:20220516T154921Z:8997aa87-d0a4-4ab6-a126-7b05b3e2b572" ], "Date": [ - "Sat, 26 Mar 2022 09:23:01 GMT" + "Mon, 16 May 2022 15:49:21 GMT" ], "Content-Length": [ - "839" + "188" ], "Content-Type": [ "application/json" @@ -3895,26 +3970,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG06578997/providers/Microsoft.RecoveryServices/vaults/PSTestRSV06578997/backupJobs/5637de07-af42-48fb-88be-85d57a6e9fd1\",\r\n \"name\": \"5637de07-af42-48fb-88be-85d57a6e9fd1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg06578997;pstestvm065780\",\r\n \"duration\": \"PT31.360171S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm065780\",\r\n \"Policy Name\": \"DefaultPolicy\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm065780\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"ConfigureBackup\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-03-26T09:22:29.0831541Z\",\r\n \"endTime\": \"2022-03-26T09:23:00.4433251Z\",\r\n \"activityId\": \"d80fd38b-d8c0-455c-b0e0-9fc3a7587fa6\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"fa0a4e45-5064-4f2c-b8f1-8ddf097f45a1\",\r\n \"name\": \"fa0a4e45-5064-4f2c-b8f1-8ddf097f45a1\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:48:53.6126593Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG06578997/providers/Microsoft.RecoveryServices/vaults/PSTestRSV06578997/backupProtectedItems?$filter=backupManagementType%20eq%20'AzureIaasVM'%20and%20itemType%20eq%20'VM'&api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMDY1Nzg5OTcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YwNjU3ODk5Ny9iYWNrdXBQcm90ZWN0ZWRJdGVtcz8kZmlsdGVyPWJhY2t1cE1hbmFnZW1lbnRUeXBlJTIwZXElMjAnQXp1cmVJYWFzVk0nJTIwYW5kJTIwaXRlbVR5cGUlMjBlcSUyMCdWTScmYXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG03263c8b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV03263c8b/backupOperations/fa0a4e45-5064-4f2c-b8f1-8ddf097f45a1?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMDMyNjNjOGIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YwMzI2M2M4Yi9iYWNrdXBPcGVyYXRpb25zL2ZhMGE0ZTQ1LTUwNjQtNGYyYy1iOGYxLThkZGYwOTdmNDVhMT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7dd46be0-b2e1-4483-8713-d2168e8fd6eb" + "c9309dea-6d4c-4934-9aa0-2ab3ba0c804b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -3928,11 +4003,11 @@ "nosniff" ], "x-ms-request-id": [ - "e82225b8-5ccc-4ffc-8539-5b11104238b1" + "9588ea18-dbc2-4574-8be1-e4a670ec6484" ], "x-ms-client-request-id": [ - "7dd46be0-b2e1-4483-8713-d2168e8fd6eb", - "7dd46be0-b2e1-4483-8713-d2168e8fd6eb" + "c9309dea-6d4c-4934-9aa0-2ab3ba0c804b", + "c9309dea-6d4c-4934-9aa0-2ab3ba0c804b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3944,19 +4019,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "299" + "293" ], "x-ms-correlation-request-id": [ - "e82225b8-5ccc-4ffc-8539-5b11104238b1" + "9588ea18-dbc2-4574-8be1-e4a670ec6484" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T092302Z:e82225b8-5ccc-4ffc-8539-5b11104238b1" + "WESTINDIA:20220516T154926Z:9588ea18-dbc2-4574-8be1-e4a670ec6484" ], "Date": [ - "Sat, 26 Mar 2022 09:23:02 GMT" + "Mon, 16 May 2022 15:49:26 GMT" ], "Content-Length": [ - "1495" + "188" ], "Content-Type": [ "application/json" @@ -3965,26 +4040,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG06578997/providers/Microsoft.RecoveryServices/vaults/PSTestRSV06578997/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrg06578997;pstestvm065780/protectedItems/VM;iaasvmcontainerv2;pstestrg06578997;pstestvm065780\",\r\n \"name\": \"VM;iaasvmcontainerv2;pstestrg06578997;pstestvm065780\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems\",\r\n \"properties\": {\r\n \"kpisHealths\": {},\r\n \"friendlyName\": \"PSTestVM065780\",\r\n \"virtualMachineId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG06578997/providers/Microsoft.Compute/virtualMachines/PSTestVM065780\",\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\": \"70369312836359\",\r\n \"protectedItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"workloadType\": \"VM\",\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg06578997;pstestvm065780\",\r\n \"sourceResourceId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG06578997/providers/Microsoft.Compute/virtualMachines/PSTestVM065780\",\r\n \"policyId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG06578997/providers/Microsoft.RecoveryServices/vaults/PSTestRSV06578997/backupPolicies/DefaultPolicy\",\r\n \"policyName\": \"DefaultPolicy\",\r\n \"isArchiveEnabled\": false\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"fa0a4e45-5064-4f2c-b8f1-8ddf097f45a1\",\r\n \"name\": \"fa0a4e45-5064-4f2c-b8f1-8ddf097f45a1\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:48:53.6126593Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG06578997/providers/Microsoft.RecoveryServices/vaults/PSTestRSV06578997/backupProtectedItems?$filter=backupManagementType%20eq%20'AzureIaasVM'%20and%20itemType%20eq%20'VM'&api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMDY1Nzg5OTcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YwNjU3ODk5Ny9iYWNrdXBQcm90ZWN0ZWRJdGVtcz8kZmlsdGVyPWJhY2t1cE1hbmFnZW1lbnRUeXBlJTIwZXElMjAnQXp1cmVJYWFzVk0nJTIwYW5kJTIwaXRlbVR5cGUlMjBlcSUyMCdWTScmYXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG03263c8b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV03263c8b/backupOperations/fa0a4e45-5064-4f2c-b8f1-8ddf097f45a1?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMDMyNjNjOGIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YwMzI2M2M4Yi9iYWNrdXBPcGVyYXRpb25zL2ZhMGE0ZTQ1LTUwNjQtNGYyYy1iOGYxLThkZGYwOTdmNDVhMT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a16df90e-cf98-48fe-adfb-ffa6d7afc704" + "c9309dea-6d4c-4934-9aa0-2ab3ba0c804b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -3998,11 +4073,11 @@ "nosniff" ], "x-ms-request-id": [ - "f83d60b1-796e-435b-b001-63608254cb62" + "30e04bd9-cec0-426c-abf0-0420ffe6499b" ], "x-ms-client-request-id": [ - "a16df90e-cf98-48fe-adfb-ffa6d7afc704", - "a16df90e-cf98-48fe-adfb-ffa6d7afc704" + "c9309dea-6d4c-4934-9aa0-2ab3ba0c804b", + "c9309dea-6d4c-4934-9aa0-2ab3ba0c804b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4014,19 +4089,716 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "298" + "292" ], "x-ms-correlation-request-id": [ - "f83d60b1-796e-435b-b001-63608254cb62" + "30e04bd9-cec0-426c-abf0-0420ffe6499b" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T092306Z:f83d60b1-796e-435b-b001-63608254cb62" + "WESTINDIA:20220516T154932Z:30e04bd9-cec0-426c-abf0-0420ffe6499b" ], "Date": [ - "Sat, 26 Mar 2022 09:23:05 GMT" + "Mon, 16 May 2022 15:49:31 GMT" ], "Content-Length": [ - "1495" + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"fa0a4e45-5064-4f2c-b8f1-8ddf097f45a1\",\r\n \"name\": \"fa0a4e45-5064-4f2c-b8f1-8ddf097f45a1\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:48:53.6126593Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG03263c8b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV03263c8b/backupOperations/fa0a4e45-5064-4f2c-b8f1-8ddf097f45a1?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMDMyNjNjOGIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YwMzI2M2M4Yi9iYWNrdXBPcGVyYXRpb25zL2ZhMGE0ZTQ1LTUwNjQtNGYyYy1iOGYxLThkZGYwOTdmNDVhMT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c9309dea-6d4c-4934-9aa0-2ab3ba0c804b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "7f1dbdc8-aa59-4a22-8333-16428432f35a" + ], + "x-ms-client-request-id": [ + "c9309dea-6d4c-4934-9aa0-2ab3ba0c804b", + "c9309dea-6d4c-4934-9aa0-2ab3ba0c804b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "291" + ], + "x-ms-correlation-request-id": [ + "7f1dbdc8-aa59-4a22-8333-16428432f35a" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T154937Z:7f1dbdc8-aa59-4a22-8333-16428432f35a" + ], + "Date": [ + "Mon, 16 May 2022 15:49:36 GMT" + ], + "Content-Length": [ + "304" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"fa0a4e45-5064-4f2c-b8f1-8ddf097f45a1\",\r\n \"name\": \"fa0a4e45-5064-4f2c-b8f1-8ddf097f45a1\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-05-16T15:48:53.6126593Z\",\r\n \"endTime\": \"2022-05-16T15:48:53.6126593Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"9ce887fa-6e5b-440f-8253-2e478c2c1293\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG03263c8b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV03263c8b/backupOperations/fa0a4e45-5064-4f2c-b8f1-8ddf097f45a1?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMDMyNjNjOGIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YwMzI2M2M4Yi9iYWNrdXBPcGVyYXRpb25zL2ZhMGE0ZTQ1LTUwNjQtNGYyYy1iOGYxLThkZGYwOTdmNDVhMT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c9309dea-6d4c-4934-9aa0-2ab3ba0c804b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "12718071-b601-4f2e-a770-676ab55d4b68" + ], + "x-ms-client-request-id": [ + "c9309dea-6d4c-4934-9aa0-2ab3ba0c804b", + "c9309dea-6d4c-4934-9aa0-2ab3ba0c804b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "290" + ], + "x-ms-correlation-request-id": [ + "12718071-b601-4f2e-a770-676ab55d4b68" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T154938Z:12718071-b601-4f2e-a770-676ab55d4b68" + ], + "Date": [ + "Mon, 16 May 2022 15:49:37 GMT" + ], + "Content-Length": [ + "304" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"fa0a4e45-5064-4f2c-b8f1-8ddf097f45a1\",\r\n \"name\": \"fa0a4e45-5064-4f2c-b8f1-8ddf097f45a1\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-05-16T15:48:53.6126593Z\",\r\n \"endTime\": \"2022-05-16T15:48:53.6126593Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"9ce887fa-6e5b-440f-8253-2e478c2c1293\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG03263c8b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV03263c8b/backupJobs/9ce887fa-6e5b-440f-8253-2e478c2c1293?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMDMyNjNjOGIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YwMzI2M2M4Yi9iYWNrdXBKb2JzLzljZTg4N2ZhLTZlNWItNDQwZi04MjUzLTJlNDc4YzJjMTI5Mz9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c9309dea-6d4c-4934-9aa0-2ab3ba0c804b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.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": [ + "375df5b5-8b8e-4de3-97e3-fb8df3752ff8" + ], + "x-ms-client-request-id": [ + "c9309dea-6d4c-4934-9aa0-2ab3ba0c804b", + "c9309dea-6d4c-4934-9aa0-2ab3ba0c804b" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "299" + ], + "x-ms-correlation-request-id": [ + "375df5b5-8b8e-4de3-97e3-fb8df3752ff8" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T154938Z:375df5b5-8b8e-4de3-97e3-fb8df3752ff8" + ], + "Date": [ + "Mon, 16 May 2022 15:49:37 GMT" + ], + "Content-Length": [ + "840" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG03263c8b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV03263c8b/backupJobs/9ce887fa-6e5b-440f-8253-2e478c2c1293\",\r\n \"name\": \"9ce887fa-6e5b-440f-8253-2e478c2c1293\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg03263c8b;pstestvm032630\",\r\n \"duration\": \"PT41.0918545S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm032630\",\r\n \"Policy Name\": \"DefaultPolicy\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm032630\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"ConfigureBackup\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-05-16T15:48:53.6126593Z\",\r\n \"endTime\": \"2022-05-16T15:49:34.7045138Z\",\r\n \"activityId\": \"c9309dea-6d4c-4934-9aa0-2ab3ba0c804b\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG03263c8b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV03263c8b/backupProtectedItems?$filter=backupManagementType%20eq%20'AzureIaasVM'%20and%20itemType%20eq%20'VM'&api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMDMyNjNjOGIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YwMzI2M2M4Yi9iYWNrdXBQcm90ZWN0ZWRJdGVtcz8kZmlsdGVyPWJhY2t1cE1hbmFnZW1lbnRUeXBlJTIwZXElMjAnQXp1cmVJYWFzVk0nJTIwYW5kJTIwaXRlbVR5cGUlMjBlcSUyMCdWTScmYXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "202c2e5f-b9b5-4aa8-808e-9ac53e3f727c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "adfdeb7d-51e1-45fd-a5f0-e9b10905b28a" + ], + "x-ms-client-request-id": [ + "202c2e5f-b9b5-4aa8-808e-9ac53e3f727c", + "202c2e5f-b9b5-4aa8-808e-9ac53e3f727c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "299" + ], + "x-ms-correlation-request-id": [ + "adfdeb7d-51e1-45fd-a5f0-e9b10905b28a" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T154939Z:adfdeb7d-51e1-45fd-a5f0-e9b10905b28a" + ], + "Date": [ + "Mon, 16 May 2022 15:49:38 GMT" + ], + "Content-Length": [ + "1495" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG03263c8b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV03263c8b/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrg03263c8b;pstestvm032630/protectedItems/VM;iaasvmcontainerv2;pstestrg03263c8b;pstestvm032630\",\r\n \"name\": \"VM;iaasvmcontainerv2;pstestrg03263c8b;pstestvm032630\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems\",\r\n \"properties\": {\r\n \"kpisHealths\": {},\r\n \"friendlyName\": \"PSTestVM032630\",\r\n \"virtualMachineId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG03263c8b/providers/Microsoft.Compute/virtualMachines/PSTestVM032630\",\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\": \"17592770144154\",\r\n \"protectedItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"workloadType\": \"VM\",\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg03263c8b;pstestvm032630\",\r\n \"sourceResourceId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG03263c8b/providers/Microsoft.Compute/virtualMachines/PSTestVM032630\",\r\n \"policyId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG03263c8b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV03263c8b/backupPolicies/DefaultPolicy\",\r\n \"policyName\": \"DefaultPolicy\",\r\n \"isArchiveEnabled\": false\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG03263c8b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV03263c8b/backupProtectedItems?$filter=backupManagementType%20eq%20'AzureIaasVM'%20and%20itemType%20eq%20'VM'&api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMDMyNjNjOGIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YwMzI2M2M4Yi9iYWNrdXBQcm90ZWN0ZWRJdGVtcz8kZmlsdGVyPWJhY2t1cE1hbmFnZW1lbnRUeXBlJTIwZXElMjAnQXp1cmVJYWFzVk0nJTIwYW5kJTIwaXRlbVR5cGUlMjBlcSUyMCdWTScmYXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c6492a81-af6e-4aba-b27f-e358cbd46f7e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "c55b45e7-6204-4f5b-86c3-6b15807035d1" + ], + "x-ms-client-request-id": [ + "c6492a81-af6e-4aba-b27f-e358cbd46f7e", + "c6492a81-af6e-4aba-b27f-e358cbd46f7e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "298" + ], + "x-ms-correlation-request-id": [ + "c55b45e7-6204-4f5b-86c3-6b15807035d1" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T154943Z:c55b45e7-6204-4f5b-86c3-6b15807035d1" + ], + "Date": [ + "Mon, 16 May 2022 15:49:42 GMT" + ], + "Content-Length": [ + "1495" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG03263c8b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV03263c8b/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrg03263c8b;pstestvm032630/protectedItems/VM;iaasvmcontainerv2;pstestrg03263c8b;pstestvm032630\",\r\n \"name\": \"VM;iaasvmcontainerv2;pstestrg03263c8b;pstestvm032630\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems\",\r\n \"properties\": {\r\n \"kpisHealths\": {},\r\n \"friendlyName\": \"PSTestVM032630\",\r\n \"virtualMachineId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG03263c8b/providers/Microsoft.Compute/virtualMachines/PSTestVM032630\",\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\": \"17592770144154\",\r\n \"protectedItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"workloadType\": \"VM\",\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg03263c8b;pstestvm032630\",\r\n \"sourceResourceId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG03263c8b/providers/Microsoft.Compute/virtualMachines/PSTestVM032630\",\r\n \"policyId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG03263c8b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV03263c8b/backupPolicies/DefaultPolicy\",\r\n \"policyName\": \"DefaultPolicy\",\r\n \"isArchiveEnabled\": false\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG03263c8b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV03263c8b/backupFabrics/Azure/protectionContainers/IaasVMContainer%3Biaasvmcontainerv2%3Bpstestrg03263c8b%3Bpstestvm032630/protectedItems/VM%3Biaasvmcontainerv2%3Bpstestrg03263c8b%3Bpstestvm032630?$filter=expand%20eq%20'extendedinfo'&api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMDMyNjNjOGIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YwMzI2M2M4Yi9iYWNrdXBGYWJyaWNzL0F6dXJlL3Byb3RlY3Rpb25Db250YWluZXJzL0lhYXNWTUNvbnRhaW5lciUzQmlhYXN2bWNvbnRhaW5lcnYyJTNCcHN0ZXN0cmcwMzI2M2M4YiUzQnBzdGVzdHZtMDMyNjMwL3Byb3RlY3RlZEl0ZW1zL1ZNJTNCaWFhc3ZtY29udGFpbmVydjIlM0Jwc3Rlc3RyZzAzMjYzYzhiJTNCcHN0ZXN0dm0wMzI2MzA/JGZpbHRlcj1leHBhbmQlMjBlcSUyMCdleHRlbmRlZGluZm8nJmFwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "202c2e5f-b9b5-4aa8-808e-9ac53e3f727c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "1ca1acdf-f74e-47de-ba8f-39b32b4791f3" + ], + "x-ms-client-request-id": [ + "202c2e5f-b9b5-4aa8-808e-9ac53e3f727c", + "202c2e5f-b9b5-4aa8-808e-9ac53e3f727c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "299" + ], + "x-ms-correlation-request-id": [ + "1ca1acdf-f74e-47de-ba8f-39b32b4791f3" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T154940Z:1ca1acdf-f74e-47de-ba8f-39b32b4791f3" + ], + "Date": [ + "Mon, 16 May 2022 15:49:39 GMT" + ], + "Content-Length": [ + "1550" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG03263c8b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV03263c8b/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrg03263c8b;pstestvm032630/protectedItems/VM;iaasvmcontainerv2;pstestrg03263c8b;pstestvm032630\",\r\n \"name\": \"VM;iaasvmcontainerv2;pstestrg03263c8b;pstestvm032630\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems\",\r\n \"properties\": {\r\n \"kpisHealths\": {},\r\n \"friendlyName\": \"PSTestVM032630\",\r\n \"virtualMachineId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG03263c8b/providers/Microsoft.Compute/virtualMachines/PSTestVM032630\",\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\": \"17592770144154\",\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;pstestrg03263c8b;pstestvm032630\",\r\n \"sourceResourceId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG03263c8b/providers/Microsoft.Compute/virtualMachines/PSTestVM032630\",\r\n \"policyId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG03263c8b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV03263c8b/backupPolicies/DefaultPolicy\",\r\n \"policyName\": \"DefaultPolicy\",\r\n \"isArchiveEnabled\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG03263c8b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV03263c8b/backupProtectionContainers?$filter=backupManagementType%20eq%20'AzureIaasVM'%20and%20status%20eq%20'Registered'&api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMDMyNjNjOGIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YwMzI2M2M4Yi9iYWNrdXBQcm90ZWN0aW9uQ29udGFpbmVycz8kZmlsdGVyPWJhY2t1cE1hbmFnZW1lbnRUeXBlJTIwZXElMjAnQXp1cmVJYWFzVk0nJTIwYW5kJTIwc3RhdHVzJTIwZXElMjAnUmVnaXN0ZXJlZCcmYXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "311d70be-c1a7-4332-885e-587cfd769a12" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "7f061ccf-161e-4cd8-b755-59ef6a89861f" + ], + "x-ms-client-request-id": [ + "311d70be-c1a7-4332-885e-587cfd769a12", + "311d70be-c1a7-4332-885e-587cfd769a12" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "297" + ], + "x-ms-correlation-request-id": [ + "7f061ccf-161e-4cd8-b755-59ef6a89861f" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T154940Z:7f061ccf-161e-4cd8-b755-59ef6a89861f" + ], + "Date": [ + "Mon, 16 May 2022 15:49:39 GMT" + ], + "Content-Length": [ + "914" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG03263c8b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV03263c8b/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrg03263c8b;pstestvm032630\",\r\n \"name\": \"IaasVMContainer;iaasvmcontainerv2;pstestrg03263c8b;pstestvm032630\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers\",\r\n \"properties\": {\r\n \"virtualMachineId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG03263c8b/providers/Microsoft.Compute/virtualMachines/PSTestVM032630\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"resourceGroup\": \"PSTestRG03263c8b\",\r\n \"friendlyName\": \"PSTestVM032630\",\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/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG03263c8b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV03263c8b/backupProtectionContainers?$filter=backupManagementType%20eq%20'AzureIaasVM'%20and%20status%20eq%20'Registered'&api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMDMyNjNjOGIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YwMzI2M2M4Yi9iYWNrdXBQcm90ZWN0aW9uQ29udGFpbmVycz8kZmlsdGVyPWJhY2t1cE1hbmFnZW1lbnRUeXBlJTIwZXElMjAnQXp1cmVJYWFzVk0nJTIwYW5kJTIwc3RhdHVzJTIwZXElMjAnUmVnaXN0ZXJlZCcmYXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2fb10dff-5c7c-4caf-a5be-efc803787c8d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "b4ee94c6-8d95-4868-8265-84e212e5a9b4" + ], + "x-ms-client-request-id": [ + "2fb10dff-5c7c-4caf-a5be-efc803787c8d", + "2fb10dff-5c7c-4caf-a5be-efc803787c8d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "294" + ], + "x-ms-correlation-request-id": [ + "b4ee94c6-8d95-4868-8265-84e212e5a9b4" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T154941Z:b4ee94c6-8d95-4868-8265-84e212e5a9b4" + ], + "Date": [ + "Mon, 16 May 2022 15:49:41 GMT" + ], + "Content-Length": [ + "914" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG03263c8b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV03263c8b/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrg03263c8b;pstestvm032630\",\r\n \"name\": \"IaasVMContainer;iaasvmcontainerv2;pstestrg03263c8b;pstestvm032630\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers\",\r\n \"properties\": {\r\n \"virtualMachineId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG03263c8b/providers/Microsoft.Compute/virtualMachines/PSTestVM032630\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"resourceGroup\": \"PSTestRG03263c8b\",\r\n \"friendlyName\": \"PSTestVM032630\",\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/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG03263c8b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV03263c8b/backupProtectionContainers?$filter=backupManagementType%20eq%20'AzureIaasVM'%20and%20status%20eq%20'Registered'&api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMDMyNjNjOGIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YwMzI2M2M4Yi9iYWNrdXBQcm90ZWN0aW9uQ29udGFpbmVycz8kZmlsdGVyPWJhY2t1cE1hbmFnZW1lbnRUeXBlJTIwZXElMjAnQXp1cmVJYWFzVk0nJTIwYW5kJTIwc3RhdHVzJTIwZXElMjAnUmVnaXN0ZXJlZCcmYXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "941fb819-db71-4d6d-bf82-157f4a715876" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "b03a8945-8a69-41e1-a225-9c7f22384623" + ], + "x-ms-client-request-id": [ + "941fb819-db71-4d6d-bf82-157f4a715876", + "941fb819-db71-4d6d-bf82-157f4a715876" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "293" + ], + "x-ms-correlation-request-id": [ + "b03a8945-8a69-41e1-a225-9c7f22384623" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T154943Z:b03a8945-8a69-41e1-a225-9c7f22384623" + ], + "Date": [ + "Mon, 16 May 2022 15:49:42 GMT" + ], + "Content-Length": [ + "914" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG03263c8b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV03263c8b/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrg03263c8b;pstestvm032630\",\r\n \"name\": \"IaasVMContainer;iaasvmcontainerv2;pstestrg03263c8b;pstestvm032630\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers\",\r\n \"properties\": {\r\n \"virtualMachineId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG03263c8b/providers/Microsoft.Compute/virtualMachines/PSTestVM032630\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"resourceGroup\": \"PSTestRG03263c8b\",\r\n \"friendlyName\": \"PSTestVM032630\",\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/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG03263c8b/providers/Microsoft.RecoveryServices/vaults?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMDMyNjNjOGIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cz9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0f6f196d-fed2-4a7a-8a2e-60f990d1370d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesClient/4.3.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "b71bb1d6-e245-413c-a0a1-c8f7e4ecbeff" + ], + "x-ms-client-request-id": [ + "0f6f196d-fed2-4a7a-8a2e-60f990d1370d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "b71bb1d6-e245-413c-a0a1-c8f7e4ecbeff" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T154942Z:b71bb1d6-e245-413c-a0a1-c8f7e4ecbeff" + ], + "Date": [ + "Mon, 16 May 2022 15:49:42 GMT" + ], + "Content-Length": [ + "530" ], "Content-Type": [ "application/json" @@ -4035,26 +4807,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG06578997/providers/Microsoft.RecoveryServices/vaults/PSTestRSV06578997/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrg06578997;pstestvm065780/protectedItems/VM;iaasvmcontainerv2;pstestrg06578997;pstestvm065780\",\r\n \"name\": \"VM;iaasvmcontainerv2;pstestrg06578997;pstestvm065780\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems\",\r\n \"properties\": {\r\n \"kpisHealths\": {},\r\n \"friendlyName\": \"PSTestVM065780\",\r\n \"virtualMachineId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG06578997/providers/Microsoft.Compute/virtualMachines/PSTestVM065780\",\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\": \"70369312836359\",\r\n \"protectedItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"workloadType\": \"VM\",\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg06578997;pstestvm065780\",\r\n \"sourceResourceId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG06578997/providers/Microsoft.Compute/virtualMachines/PSTestVM065780\",\r\n \"policyId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG06578997/providers/Microsoft.RecoveryServices/vaults/PSTestRSV06578997/backupPolicies/DefaultPolicy\",\r\n \"policyName\": \"DefaultPolicy\",\r\n \"isArchiveEnabled\": false\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"PSTestRSV03263c8b\",\r\n \"etag\": \"W/\\\"datetime'2022-05-16T15%3A48%3A41.0425622Z'\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateEndpointStateForBackup\": \"None\",\r\n \"privateEndpointStateForSiteRecovery\": \"None\",\r\n \"networkSettings\": {\r\n \"publicNetworkAccess\": \"Enabled\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG03263c8b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV03263c8b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG06578997/providers/Microsoft.RecoveryServices/vaults/PSTestRSV06578997/backupFabrics/Azure/protectionContainers/IaasVMContainer%3Biaasvmcontainerv2%3Bpstestrg06578997%3Bpstestvm065780/protectedItems/VM%3Biaasvmcontainerv2%3Bpstestrg06578997%3Bpstestvm065780?$filter=expand%20eq%20'extendedinfo'&api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMDY1Nzg5OTcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YwNjU3ODk5Ny9iYWNrdXBGYWJyaWNzL0F6dXJlL3Byb3RlY3Rpb25Db250YWluZXJzL0lhYXNWTUNvbnRhaW5lciUzQmlhYXN2bWNvbnRhaW5lcnYyJTNCcHN0ZXN0cmcwNjU3ODk5NyUzQnBzdGVzdHZtMDY1NzgwL3Byb3RlY3RlZEl0ZW1zL1ZNJTNCaWFhc3ZtY29udGFpbmVydjIlM0Jwc3Rlc3RyZzA2NTc4OTk3JTNCcHN0ZXN0dm0wNjU3ODA/JGZpbHRlcj1leHBhbmQlMjBlcSUyMCdleHRlbmRlZGluZm8nJmFwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG03263c8b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV03263c8b/backupFabrics/Azure/protectionContainers/IaasVMContainer%3Biaasvmcontainerv2%3Bpstestrg03263c8b%3Bpstestvm032630/protectedItems/VM%3Biaasvmcontainerv2%3Bpstestrg03263c8b%3Bpstestvm032630/recoveryPoints?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMDMyNjNjOGIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YwMzI2M2M4Yi9iYWNrdXBGYWJyaWNzL0F6dXJlL3Byb3RlY3Rpb25Db250YWluZXJzL0lhYXNWTUNvbnRhaW5lciUzQmlhYXN2bWNvbnRhaW5lcnYyJTNCcHN0ZXN0cmcwMzI2M2M4YiUzQnBzdGVzdHZtMDMyNjMwL3Byb3RlY3RlZEl0ZW1zL1ZNJTNCaWFhc3ZtY29udGFpbmVydjIlM0Jwc3Rlc3RyZzAzMjYzYzhiJTNCcHN0ZXN0dm0wMzI2MzAvcmVjb3ZlcnlQb2ludHM/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7dd46be0-b2e1-4483-8713-d2168e8fd6eb" + "77ffb7b8-0b3e-4cfe-824a-1075ff5510c5" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -4068,11 +4840,11 @@ "nosniff" ], "x-ms-request-id": [ - "e2c538aa-30d7-46fa-aeeb-b3814ca5d07b" + "a0153200-c8d2-4630-a7f4-1cd8d7dc980b" ], "x-ms-client-request-id": [ - "7dd46be0-b2e1-4483-8713-d2168e8fd6eb", - "7dd46be0-b2e1-4483-8713-d2168e8fd6eb" + "77ffb7b8-0b3e-4cfe-824a-1075ff5510c5", + "77ffb7b8-0b3e-4cfe-824a-1075ff5510c5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4087,16 +4859,16 @@ "299" ], "x-ms-correlation-request-id": [ - "e2c538aa-30d7-46fa-aeeb-b3814ca5d07b" + "a0153200-c8d2-4630-a7f4-1cd8d7dc980b" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T092303Z:e2c538aa-30d7-46fa-aeeb-b3814ca5d07b" + "WESTINDIA:20220516T154944Z:a0153200-c8d2-4630-a7f4-1cd8d7dc980b" ], "Date": [ - "Sat, 26 Mar 2022 09:23:02 GMT" + "Mon, 16 May 2022 15:49:43 GMT" ], "Content-Length": [ - "1550" + "12" ], "Content-Type": [ "application/json" @@ -4105,26 +4877,99 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG06578997/providers/Microsoft.RecoveryServices/vaults/PSTestRSV06578997/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrg06578997;pstestvm065780/protectedItems/VM;iaasvmcontainerv2;pstestrg06578997;pstestvm065780\",\r\n \"name\": \"VM;iaasvmcontainerv2;pstestrg06578997;pstestvm065780\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems\",\r\n \"properties\": {\r\n \"kpisHealths\": {},\r\n \"friendlyName\": \"PSTestVM065780\",\r\n \"virtualMachineId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG06578997/providers/Microsoft.Compute/virtualMachines/PSTestVM065780\",\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\": \"70369312836359\",\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;pstestrg06578997;pstestvm065780\",\r\n \"sourceResourceId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG06578997/providers/Microsoft.Compute/virtualMachines/PSTestVM065780\",\r\n \"policyId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG06578997/providers/Microsoft.RecoveryServices/vaults/PSTestRSV06578997/backupPolicies/DefaultPolicy\",\r\n \"policyName\": \"DefaultPolicy\",\r\n \"isArchiveEnabled\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": []\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG06578997/providers/Microsoft.RecoveryServices/vaults/PSTestRSV06578997/backupProtectionContainers?$filter=backupManagementType%20eq%20'AzureIaasVM'%20and%20status%20eq%20'Registered'&api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMDY1Nzg5OTcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YwNjU3ODk5Ny9iYWNrdXBQcm90ZWN0aW9uQ29udGFpbmVycz8kZmlsdGVyPWJhY2t1cE1hbmFnZW1lbnRUeXBlJTIwZXElMjAnQXp1cmVJYWFzVk0nJTIwYW5kJTIwc3RhdHVzJTIwZXElMjAnUmVnaXN0ZXJlZCcmYXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG03263c8b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV03263c8b/backupFabrics/Azure/protectionContainers/IaasVMContainer%3Biaasvmcontainerv2%3Bpstestrg03263c8b%3Bpstestvm032630/protectedItems/VM%3Biaasvmcontainerv2%3Bpstestrg03263c8b%3Bpstestvm032630?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMDMyNjNjOGIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YwMzI2M2M4Yi9iYWNrdXBGYWJyaWNzL0F6dXJlL3Byb3RlY3Rpb25Db250YWluZXJzL0lhYXNWTUNvbnRhaW5lciUzQmlhYXN2bWNvbnRhaW5lcnYyJTNCcHN0ZXN0cmcwMzI2M2M4YiUzQnBzdGVzdHZtMDMyNjMwL3Byb3RlY3RlZEl0ZW1zL1ZNJTNCaWFhc3ZtY29udGFpbmVydjIlM0Jwc3Rlc3RyZzAzMjYzYzhiJTNCcHN0ZXN0dm0wMzI2MzA/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "77ffb7b8-0b3e-4cfe-824a-1075ff5510c5" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG03263c8b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV03263c8b/backupOperationResults/9df25129-7929-4572-a411-7d7ea3dada41?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG03263c8b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV03263c8b/backupOperations/9df25129-7929-4572-a411-7d7ea3dada41?api-version=2022-02-01" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "c071e507-4967-40e0-809d-c1dd923ee0c0" + ], + "x-ms-client-request-id": [ + "77ffb7b8-0b3e-4cfe-824a-1075ff5510c5", + "77ffb7b8-0b3e-4cfe-824a-1075ff5510c5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-correlation-request-id": [ + "c071e507-4967-40e0-809d-c1dd923ee0c0" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T154945Z:c071e507-4967-40e0-809d-c1dd923ee0c0" + ], + "Date": [ + "Mon, 16 May 2022 15:49:44 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG03263c8b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV03263c8b/backupOperations/9df25129-7929-4572-a411-7d7ea3dada41?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMDMyNjNjOGIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YwMzI2M2M4Yi9iYWNrdXBPcGVyYXRpb25zLzlkZjI1MTI5LTc5MjktNDU3Mi1hNDExLTdkN2VhM2RhZGE0MT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6c997615-b93b-4297-8988-0a45470a3882" + "77ffb7b8-0b3e-4cfe-824a-1075ff5510c5" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -4138,11 +4983,11 @@ "nosniff" ], "x-ms-request-id": [ - "ab420f30-4878-482b-a8b1-0750061682f8" + "2d1dea9e-dd9a-4748-8828-4b8e83dfba97" ], "x-ms-client-request-id": [ - "6c997615-b93b-4297-8988-0a45470a3882", - "6c997615-b93b-4297-8988-0a45470a3882" + "77ffb7b8-0b3e-4cfe-824a-1075ff5510c5", + "77ffb7b8-0b3e-4cfe-824a-1075ff5510c5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4154,19 +4999,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "297" + "289" ], "x-ms-correlation-request-id": [ - "ab420f30-4878-482b-a8b1-0750061682f8" + "2d1dea9e-dd9a-4748-8828-4b8e83dfba97" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T092303Z:ab420f30-4878-482b-a8b1-0750061682f8" + "WESTINDIA:20220516T154946Z:2d1dea9e-dd9a-4748-8828-4b8e83dfba97" ], "Date": [ - "Sat, 26 Mar 2022 09:23:02 GMT" + "Mon, 16 May 2022 15:49:45 GMT" ], "Content-Length": [ - "914" + "188" ], "Content-Type": [ "application/json" @@ -4175,26 +5020,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG06578997/providers/Microsoft.RecoveryServices/vaults/PSTestRSV06578997/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrg06578997;pstestvm065780\",\r\n \"name\": \"IaasVMContainer;iaasvmcontainerv2;pstestrg06578997;pstestvm065780\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers\",\r\n \"properties\": {\r\n \"virtualMachineId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG06578997/providers/Microsoft.Compute/virtualMachines/PSTestVM065780\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"resourceGroup\": \"PSTestRG06578997\",\r\n \"friendlyName\": \"PSTestVM065780\",\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}", + "ResponseBody": "{\r\n \"id\": \"9df25129-7929-4572-a411-7d7ea3dada41\",\r\n \"name\": \"9df25129-7929-4572-a411-7d7ea3dada41\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:49:45.4479408Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG06578997/providers/Microsoft.RecoveryServices/vaults/PSTestRSV06578997/backupProtectionContainers?$filter=backupManagementType%20eq%20'AzureIaasVM'%20and%20status%20eq%20'Registered'&api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMDY1Nzg5OTcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YwNjU3ODk5Ny9iYWNrdXBQcm90ZWN0aW9uQ29udGFpbmVycz8kZmlsdGVyPWJhY2t1cE1hbmFnZW1lbnRUeXBlJTIwZXElMjAnQXp1cmVJYWFzVk0nJTIwYW5kJTIwc3RhdHVzJTIwZXElMjAnUmVnaXN0ZXJlZCcmYXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG03263c8b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV03263c8b/backupOperations/9df25129-7929-4572-a411-7d7ea3dada41?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMDMyNjNjOGIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YwMzI2M2M4Yi9iYWNrdXBPcGVyYXRpb25zLzlkZjI1MTI5LTc5MjktNDU3Mi1hNDExLTdkN2VhM2RhZGE0MT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "aa08d243-f6f1-4e89-b600-b71e91e864d1" + "77ffb7b8-0b3e-4cfe-824a-1075ff5510c5" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -4208,11 +5053,11 @@ "nosniff" ], "x-ms-request-id": [ - "61944fbd-9c2d-4f33-868e-70ce23c4c5b2" + "a26dff1d-8602-49d6-88e9-f06fd974ddff" ], "x-ms-client-request-id": [ - "aa08d243-f6f1-4e89-b600-b71e91e864d1", - "aa08d243-f6f1-4e89-b600-b71e91e864d1" + "77ffb7b8-0b3e-4cfe-824a-1075ff5510c5", + "77ffb7b8-0b3e-4cfe-824a-1075ff5510c5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4224,19 +5069,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "294" + "288" ], "x-ms-correlation-request-id": [ - "61944fbd-9c2d-4f33-868e-70ce23c4c5b2" + "a26dff1d-8602-49d6-88e9-f06fd974ddff" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T092305Z:61944fbd-9c2d-4f33-868e-70ce23c4c5b2" + "WESTINDIA:20220516T154951Z:a26dff1d-8602-49d6-88e9-f06fd974ddff" ], "Date": [ - "Sat, 26 Mar 2022 09:23:04 GMT" + "Mon, 16 May 2022 15:49:51 GMT" ], "Content-Length": [ - "914" + "188" ], "Content-Type": [ "application/json" @@ -4245,26 +5090,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG06578997/providers/Microsoft.RecoveryServices/vaults/PSTestRSV06578997/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrg06578997;pstestvm065780\",\r\n \"name\": \"IaasVMContainer;iaasvmcontainerv2;pstestrg06578997;pstestvm065780\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers\",\r\n \"properties\": {\r\n \"virtualMachineId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG06578997/providers/Microsoft.Compute/virtualMachines/PSTestVM065780\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"resourceGroup\": \"PSTestRG06578997\",\r\n \"friendlyName\": \"PSTestVM065780\",\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}", + "ResponseBody": "{\r\n \"id\": \"9df25129-7929-4572-a411-7d7ea3dada41\",\r\n \"name\": \"9df25129-7929-4572-a411-7d7ea3dada41\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:49:45.4479408Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG06578997/providers/Microsoft.RecoveryServices/vaults/PSTestRSV06578997/backupProtectionContainers?$filter=backupManagementType%20eq%20'AzureIaasVM'%20and%20status%20eq%20'Registered'&api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMDY1Nzg5OTcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YwNjU3ODk5Ny9iYWNrdXBQcm90ZWN0aW9uQ29udGFpbmVycz8kZmlsdGVyPWJhY2t1cE1hbmFnZW1lbnRUeXBlJTIwZXElMjAnQXp1cmVJYWFzVk0nJTIwYW5kJTIwc3RhdHVzJTIwZXElMjAnUmVnaXN0ZXJlZCcmYXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG03263c8b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV03263c8b/backupOperations/9df25129-7929-4572-a411-7d7ea3dada41?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMDMyNjNjOGIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YwMzI2M2M4Yi9iYWNrdXBPcGVyYXRpb25zLzlkZjI1MTI5LTc5MjktNDU3Mi1hNDExLTdkN2VhM2RhZGE0MT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "dfe4f857-744d-46e9-8540-6b084a25c412" + "77ffb7b8-0b3e-4cfe-824a-1075ff5510c5" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -4278,11 +5123,11 @@ "nosniff" ], "x-ms-request-id": [ - "6f90751b-68c3-4491-985f-310b97131e44" + "75bbed86-2efa-4174-b29e-bd2196a48d2d" ], "x-ms-client-request-id": [ - "dfe4f857-744d-46e9-8540-6b084a25c412", - "dfe4f857-744d-46e9-8540-6b084a25c412" + "77ffb7b8-0b3e-4cfe-824a-1075ff5510c5", + "77ffb7b8-0b3e-4cfe-824a-1075ff5510c5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4294,19 +5139,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "293" + "287" ], "x-ms-correlation-request-id": [ - "6f90751b-68c3-4491-985f-310b97131e44" + "75bbed86-2efa-4174-b29e-bd2196a48d2d" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T092306Z:6f90751b-68c3-4491-985f-310b97131e44" + "WESTINDIA:20220516T154956Z:75bbed86-2efa-4174-b29e-bd2196a48d2d" ], "Date": [ - "Sat, 26 Mar 2022 09:23:05 GMT" + "Mon, 16 May 2022 15:49:56 GMT" ], "Content-Length": [ - "914" + "188" ], "Content-Type": [ "application/json" @@ -4315,26 +5160,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG06578997/providers/Microsoft.RecoveryServices/vaults/PSTestRSV06578997/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrg06578997;pstestvm065780\",\r\n \"name\": \"IaasVMContainer;iaasvmcontainerv2;pstestrg06578997;pstestvm065780\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers\",\r\n \"properties\": {\r\n \"virtualMachineId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG06578997/providers/Microsoft.Compute/virtualMachines/PSTestVM065780\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"resourceGroup\": \"PSTestRG06578997\",\r\n \"friendlyName\": \"PSTestVM065780\",\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}", + "ResponseBody": "{\r\n \"id\": \"9df25129-7929-4572-a411-7d7ea3dada41\",\r\n \"name\": \"9df25129-7929-4572-a411-7d7ea3dada41\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:49:45.4479408Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG06578997/providers/Microsoft.RecoveryServices/vaults?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMDY1Nzg5OTcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cz9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG03263c8b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV03263c8b/backupOperations/9df25129-7929-4572-a411-7d7ea3dada41?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMDMyNjNjOGIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YwMzI2M2M4Yi9iYWNrdXBPcGVyYXRpb25zLzlkZjI1MTI5LTc5MjktNDU3Mi1hNDExLTdkN2VhM2RhZGE0MT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "743ea03a-fb87-41a6-b6d3-13b745231d76" + "77ffb7b8-0b3e-4cfe-824a-1075ff5510c5" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesClient/4.3.2.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -4348,10 +5193,11 @@ "nosniff" ], "x-ms-request-id": [ - "15bdf5e0-3344-415c-a033-72c1e5ab8f52" + "dd0fb210-e42b-4867-99ef-ff3fb195837d" ], "x-ms-client-request-id": [ - "743ea03a-fb87-41a6-b6d3-13b745231d76" + "77ffb7b8-0b3e-4cfe-824a-1075ff5510c5", + "77ffb7b8-0b3e-4cfe-824a-1075ff5510c5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4359,20 +5205,23 @@ "Server": [ "Microsoft-IIS/10.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "286" ], "x-ms-correlation-request-id": [ - "15bdf5e0-3344-415c-a033-72c1e5ab8f52" + "dd0fb210-e42b-4867-99ef-ff3fb195837d" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T092305Z:15bdf5e0-3344-415c-a033-72c1e5ab8f52" + "WESTINDIA:20220516T155002Z:dd0fb210-e42b-4867-99ef-ff3fb195837d" ], "Date": [ - "Sat, 26 Mar 2022 09:23:04 GMT" + "Mon, 16 May 2022 15:50:01 GMT" ], "Content-Length": [ - "477" + "188" ], "Content-Type": [ "application/json" @@ -4381,26 +5230,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"PSTestRSV06578997\",\r\n \"etag\": \"W/\\\"datetime'2022-03-26T09%3A22%3A16.811231Z'\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateEndpointStateForBackup\": \"None\",\r\n \"privateEndpointStateForSiteRecovery\": \"None\"\r\n },\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG06578997/providers/Microsoft.RecoveryServices/vaults/PSTestRSV06578997\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"9df25129-7929-4572-a411-7d7ea3dada41\",\r\n \"name\": \"9df25129-7929-4572-a411-7d7ea3dada41\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:49:45.4479408Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG06578997/providers/Microsoft.RecoveryServices/vaults/PSTestRSV06578997/backupFabrics/Azure/protectionContainers/IaasVMContainer%3Biaasvmcontainerv2%3Bpstestrg06578997%3Bpstestvm065780/protectedItems/VM%3Biaasvmcontainerv2%3Bpstestrg06578997%3Bpstestvm065780/recoveryPoints?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMDY1Nzg5OTcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YwNjU3ODk5Ny9iYWNrdXBGYWJyaWNzL0F6dXJlL3Byb3RlY3Rpb25Db250YWluZXJzL0lhYXNWTUNvbnRhaW5lciUzQmlhYXN2bWNvbnRhaW5lcnYyJTNCcHN0ZXN0cmcwNjU3ODk5NyUzQnBzdGVzdHZtMDY1NzgwL3Byb3RlY3RlZEl0ZW1zL1ZNJTNCaWFhc3ZtY29udGFpbmVydjIlM0Jwc3Rlc3RyZzA2NTc4OTk3JTNCcHN0ZXN0dm0wNjU3ODAvcmVjb3ZlcnlQb2ludHM/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG03263c8b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV03263c8b/backupOperations/9df25129-7929-4572-a411-7d7ea3dada41?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMDMyNjNjOGIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YwMzI2M2M4Yi9iYWNrdXBPcGVyYXRpb25zLzlkZjI1MTI5LTc5MjktNDU3Mi1hNDExLTdkN2VhM2RhZGE0MT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d96c032d-137b-463a-a4a2-69d8517d7ae9" + "77ffb7b8-0b3e-4cfe-824a-1075ff5510c5" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -4414,11 +5263,11 @@ "nosniff" ], "x-ms-request-id": [ - "132c1006-bc83-44b8-81cf-c80886166b3c" + "e1259ea3-0838-417b-93a9-28e246d768c0" ], "x-ms-client-request-id": [ - "d96c032d-137b-463a-a4a2-69d8517d7ae9", - "d96c032d-137b-463a-a4a2-69d8517d7ae9" + "77ffb7b8-0b3e-4cfe-824a-1075ff5510c5", + "77ffb7b8-0b3e-4cfe-824a-1075ff5510c5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4430,19 +5279,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "299" + "285" ], "x-ms-correlation-request-id": [ - "132c1006-bc83-44b8-81cf-c80886166b3c" + "e1259ea3-0838-417b-93a9-28e246d768c0" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T092306Z:132c1006-bc83-44b8-81cf-c80886166b3c" + "WESTINDIA:20220516T155007Z:e1259ea3-0838-417b-93a9-28e246d768c0" ], "Date": [ - "Sat, 26 Mar 2022 09:23:06 GMT" + "Mon, 16 May 2022 15:50:07 GMT" ], "Content-Length": [ - "12" + "188" ], "Content-Type": [ "application/json" @@ -4451,26 +5300,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseBody": "{\r\n \"id\": \"9df25129-7929-4572-a411-7d7ea3dada41\",\r\n \"name\": \"9df25129-7929-4572-a411-7d7ea3dada41\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:49:45.4479408Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG06578997/providers/Microsoft.RecoveryServices/vaults/PSTestRSV06578997/backupFabrics/Azure/protectionContainers/IaasVMContainer%3Biaasvmcontainerv2%3Bpstestrg06578997%3Bpstestvm065780/protectedItems/VM%3Biaasvmcontainerv2%3Bpstestrg06578997%3Bpstestvm065780?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMDY1Nzg5OTcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YwNjU3ODk5Ny9iYWNrdXBGYWJyaWNzL0F6dXJlL3Byb3RlY3Rpb25Db250YWluZXJzL0lhYXNWTUNvbnRhaW5lciUzQmlhYXN2bWNvbnRhaW5lcnYyJTNCcHN0ZXN0cmcwNjU3ODk5NyUzQnBzdGVzdHZtMDY1NzgwL3Byb3RlY3RlZEl0ZW1zL1ZNJTNCaWFhc3ZtY29udGFpbmVydjIlM0Jwc3Rlc3RyZzA2NTc4OTk3JTNCcHN0ZXN0dm0wNjU3ODA/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", - "RequestMethod": "DELETE", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG03263c8b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV03263c8b/backupOperations/9df25129-7929-4572-a411-7d7ea3dada41?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMDMyNjNjOGIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YwMzI2M2M4Yi9iYWNrdXBPcGVyYXRpb25zLzlkZjI1MTI5LTc5MjktNDU3Mi1hNDExLTdkN2VhM2RhZGE0MT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d96c032d-137b-463a-a4a2-69d8517d7ae9" + "77ffb7b8-0b3e-4cfe-824a-1075ff5510c5" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -4480,70 +5329,137 @@ "Pragma": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG06578997/providers/Microsoft.RecoveryServices/vaults/PSTestRSV06578997/backupOperationResults/7fcd4291-e387-467f-91e2-d7171826fcdd?api-version=2021-12-01" + "X-Content-Type-Options": [ + "nosniff" ], - "Retry-After": [ - "60" + "x-ms-request-id": [ + "8ac1e964-392d-411f-a8b8-bad24b23dc6f" ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG06578997/providers/Microsoft.RecoveryServices/vaults/PSTestRSV06578997/backupOperations/7fcd4291-e387-467f-91e2-d7171826fcdd?api-version=2021-12-01" + "x-ms-client-request-id": [ + "77ffb7b8-0b3e-4cfe-824a-1075ff5510c5", + "77ffb7b8-0b3e-4cfe-824a-1075ff5510c5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "284" + ], + "x-ms-correlation-request-id": [ + "8ac1e964-392d-411f-a8b8-bad24b23dc6f" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T155013Z:8ac1e964-392d-411f-a8b8-bad24b23dc6f" + ], + "Date": [ + "Mon, 16 May 2022 15:50:12 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"9df25129-7929-4572-a411-7d7ea3dada41\",\r\n \"name\": \"9df25129-7929-4572-a411-7d7ea3dada41\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:49:45.4479408Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG03263c8b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV03263c8b/backupOperations/9df25129-7929-4572-a411-7d7ea3dada41?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMDMyNjNjOGIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YwMzI2M2M4Yi9iYWNrdXBPcGVyYXRpb25zLzlkZjI1MTI5LTc5MjktNDU3Mi1hNDExLTdkN2VhM2RhZGE0MT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "77ffb7b8-0b3e-4cfe-824a-1075ff5510c5" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "8026c09f-b7e8-41f5-a0c9-a7acebb14ea9" + "1d144977-d952-4c97-bf8a-ce7d4e2b54b3" ], "x-ms-client-request-id": [ - "d96c032d-137b-463a-a4a2-69d8517d7ae9", - "d96c032d-137b-463a-a4a2-69d8517d7ae9" + "77ffb7b8-0b3e-4cfe-824a-1075ff5510c5", + "77ffb7b8-0b3e-4cfe-824a-1075ff5510c5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-IIS/10.0" + ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ - "14999" + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "283" ], "x-ms-correlation-request-id": [ - "8026c09f-b7e8-41f5-a0c9-a7acebb14ea9" + "1d144977-d952-4c97-bf8a-ce7d4e2b54b3" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T092307Z:8026c09f-b7e8-41f5-a0c9-a7acebb14ea9" + "WESTINDIA:20220516T155018Z:1d144977-d952-4c97-bf8a-ce7d4e2b54b3" ], "Date": [ - "Sat, 26 Mar 2022 09:23:07 GMT" + "Mon, 16 May 2022 15:50:17 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, - "ResponseBody": "", - "StatusCode": 202 + "ResponseBody": "{\r\n \"id\": \"9df25129-7929-4572-a411-7d7ea3dada41\",\r\n \"name\": \"9df25129-7929-4572-a411-7d7ea3dada41\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:49:45.4479408Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG06578997/providers/Microsoft.RecoveryServices/vaults/PSTestRSV06578997/backupOperations/7fcd4291-e387-467f-91e2-d7171826fcdd?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMDY1Nzg5OTcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YwNjU3ODk5Ny9iYWNrdXBPcGVyYXRpb25zLzdmY2Q0MjkxLWUzODctNDY3Zi05MWUyLWQ3MTcxODI2ZmNkZD9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG03263c8b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV03263c8b/backupOperations/9df25129-7929-4572-a411-7d7ea3dada41?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMDMyNjNjOGIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YwMzI2M2M4Yi9iYWNrdXBPcGVyYXRpb25zLzlkZjI1MTI5LTc5MjktNDU3Mi1hNDExLTdkN2VhM2RhZGE0MT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d96c032d-137b-463a-a4a2-69d8517d7ae9" + "77ffb7b8-0b3e-4cfe-824a-1075ff5510c5" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -4557,11 +5473,11 @@ "nosniff" ], "x-ms-request-id": [ - "d8cae8dc-4f3a-4829-8bd1-eac429e86fc9" + "e8116bb3-d075-4859-93ac-2e3dfe085e1f" ], "x-ms-client-request-id": [ - "d96c032d-137b-463a-a4a2-69d8517d7ae9", - "d96c032d-137b-463a-a4a2-69d8517d7ae9" + "77ffb7b8-0b3e-4cfe-824a-1075ff5510c5", + "77ffb7b8-0b3e-4cfe-824a-1075ff5510c5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4573,19 +5489,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "294" + "282" ], "x-ms-correlation-request-id": [ - "d8cae8dc-4f3a-4829-8bd1-eac429e86fc9" + "e8116bb3-d075-4859-93ac-2e3dfe085e1f" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T092308Z:d8cae8dc-4f3a-4829-8bd1-eac429e86fc9" + "WESTINDIA:20220516T155024Z:e8116bb3-d075-4859-93ac-2e3dfe085e1f" ], "Date": [ - "Sat, 26 Mar 2022 09:23:07 GMT" + "Mon, 16 May 2022 15:50:23 GMT" ], "Content-Length": [ - "186" + "188" ], "Content-Type": [ "application/json" @@ -4594,26 +5510,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"7fcd4291-e387-467f-91e2-d7171826fcdd\",\r\n \"name\": \"7fcd4291-e387-467f-91e2-d7171826fcdd\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-03-26T09:23:07.71719Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"9df25129-7929-4572-a411-7d7ea3dada41\",\r\n \"name\": \"9df25129-7929-4572-a411-7d7ea3dada41\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:49:45.4479408Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG06578997/providers/Microsoft.RecoveryServices/vaults/PSTestRSV06578997/backupOperations/7fcd4291-e387-467f-91e2-d7171826fcdd?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMDY1Nzg5OTcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YwNjU3ODk5Ny9iYWNrdXBPcGVyYXRpb25zLzdmY2Q0MjkxLWUzODctNDY3Zi05MWUyLWQ3MTcxODI2ZmNkZD9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG03263c8b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV03263c8b/backupOperations/9df25129-7929-4572-a411-7d7ea3dada41?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMDMyNjNjOGIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YwMzI2M2M4Yi9iYWNrdXBPcGVyYXRpb25zLzlkZjI1MTI5LTc5MjktNDU3Mi1hNDExLTdkN2VhM2RhZGE0MT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d96c032d-137b-463a-a4a2-69d8517d7ae9" + "77ffb7b8-0b3e-4cfe-824a-1075ff5510c5" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -4627,11 +5543,11 @@ "nosniff" ], "x-ms-request-id": [ - "cbb01248-4a90-41a7-8855-af2f9aec5fdd" + "1750f86f-5c87-4501-b58a-ab292b58e960" ], "x-ms-client-request-id": [ - "d96c032d-137b-463a-a4a2-69d8517d7ae9", - "d96c032d-137b-463a-a4a2-69d8517d7ae9" + "77ffb7b8-0b3e-4cfe-824a-1075ff5510c5", + "77ffb7b8-0b3e-4cfe-824a-1075ff5510c5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4643,19 +5559,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "293" + "281" ], "x-ms-correlation-request-id": [ - "cbb01248-4a90-41a7-8855-af2f9aec5fdd" + "1750f86f-5c87-4501-b58a-ab292b58e960" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T092318Z:cbb01248-4a90-41a7-8855-af2f9aec5fdd" + "WESTINDIA:20220516T155029Z:1750f86f-5c87-4501-b58a-ab292b58e960" ], "Date": [ - "Sat, 26 Mar 2022 09:23:17 GMT" + "Mon, 16 May 2022 15:50:28 GMT" ], "Content-Length": [ - "186" + "188" ], "Content-Type": [ "application/json" @@ -4664,26 +5580,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"7fcd4291-e387-467f-91e2-d7171826fcdd\",\r\n \"name\": \"7fcd4291-e387-467f-91e2-d7171826fcdd\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-03-26T09:23:07.71719Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"9df25129-7929-4572-a411-7d7ea3dada41\",\r\n \"name\": \"9df25129-7929-4572-a411-7d7ea3dada41\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:49:45.4479408Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG06578997/providers/Microsoft.RecoveryServices/vaults/PSTestRSV06578997/backupOperations/7fcd4291-e387-467f-91e2-d7171826fcdd?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMDY1Nzg5OTcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YwNjU3ODk5Ny9iYWNrdXBPcGVyYXRpb25zLzdmY2Q0MjkxLWUzODctNDY3Zi05MWUyLWQ3MTcxODI2ZmNkZD9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG03263c8b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV03263c8b/backupOperations/9df25129-7929-4572-a411-7d7ea3dada41?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMDMyNjNjOGIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YwMzI2M2M4Yi9iYWNrdXBPcGVyYXRpb25zLzlkZjI1MTI5LTc5MjktNDU3Mi1hNDExLTdkN2VhM2RhZGE0MT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d96c032d-137b-463a-a4a2-69d8517d7ae9" + "77ffb7b8-0b3e-4cfe-824a-1075ff5510c5" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -4697,11 +5613,11 @@ "nosniff" ], "x-ms-request-id": [ - "ec11f08f-a6b0-4271-b0e2-a6bcefde46e0" + "7ac40508-3307-4702-bf04-eb053f3c66b2" ], "x-ms-client-request-id": [ - "d96c032d-137b-463a-a4a2-69d8517d7ae9", - "d96c032d-137b-463a-a4a2-69d8517d7ae9" + "77ffb7b8-0b3e-4cfe-824a-1075ff5510c5", + "77ffb7b8-0b3e-4cfe-824a-1075ff5510c5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4713,19 +5629,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "292" + "280" ], "x-ms-correlation-request-id": [ - "ec11f08f-a6b0-4271-b0e2-a6bcefde46e0" + "7ac40508-3307-4702-bf04-eb053f3c66b2" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T092329Z:ec11f08f-a6b0-4271-b0e2-a6bcefde46e0" + "WESTINDIA:20220516T155034Z:7ac40508-3307-4702-bf04-eb053f3c66b2" ], "Date": [ - "Sat, 26 Mar 2022 09:23:28 GMT" + "Mon, 16 May 2022 15:50:34 GMT" ], "Content-Length": [ - "186" + "188" ], "Content-Type": [ "application/json" @@ -4734,26 +5650,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"7fcd4291-e387-467f-91e2-d7171826fcdd\",\r\n \"name\": \"7fcd4291-e387-467f-91e2-d7171826fcdd\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-03-26T09:23:07.71719Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"9df25129-7929-4572-a411-7d7ea3dada41\",\r\n \"name\": \"9df25129-7929-4572-a411-7d7ea3dada41\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:49:45.4479408Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG06578997/providers/Microsoft.RecoveryServices/vaults/PSTestRSV06578997/backupOperations/7fcd4291-e387-467f-91e2-d7171826fcdd?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMDY1Nzg5OTcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YwNjU3ODk5Ny9iYWNrdXBPcGVyYXRpb25zLzdmY2Q0MjkxLWUzODctNDY3Zi05MWUyLWQ3MTcxODI2ZmNkZD9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG03263c8b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV03263c8b/backupOperations/9df25129-7929-4572-a411-7d7ea3dada41?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMDMyNjNjOGIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YwMzI2M2M4Yi9iYWNrdXBPcGVyYXRpb25zLzlkZjI1MTI5LTc5MjktNDU3Mi1hNDExLTdkN2VhM2RhZGE0MT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d96c032d-137b-463a-a4a2-69d8517d7ae9" + "77ffb7b8-0b3e-4cfe-824a-1075ff5510c5" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -4767,11 +5683,11 @@ "nosniff" ], "x-ms-request-id": [ - "5688cf6a-21e0-4e09-a3f0-05a408826861" + "dfc5eeec-622f-42f5-a1c3-c4e1b1a8712e" ], "x-ms-client-request-id": [ - "d96c032d-137b-463a-a4a2-69d8517d7ae9", - "d96c032d-137b-463a-a4a2-69d8517d7ae9" + "77ffb7b8-0b3e-4cfe-824a-1075ff5510c5", + "77ffb7b8-0b3e-4cfe-824a-1075ff5510c5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4783,19 +5699,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "291" + "279" ], "x-ms-correlation-request-id": [ - "5688cf6a-21e0-4e09-a3f0-05a408826861" + "dfc5eeec-622f-42f5-a1c3-c4e1b1a8712e" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T092339Z:5688cf6a-21e0-4e09-a3f0-05a408826861" + "WESTINDIA:20220516T155040Z:dfc5eeec-622f-42f5-a1c3-c4e1b1a8712e" ], "Date": [ - "Sat, 26 Mar 2022 09:23:39 GMT" + "Mon, 16 May 2022 15:50:40 GMT" ], "Content-Length": [ - "186" + "188" ], "Content-Type": [ "application/json" @@ -4804,26 +5720,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"7fcd4291-e387-467f-91e2-d7171826fcdd\",\r\n \"name\": \"7fcd4291-e387-467f-91e2-d7171826fcdd\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-03-26T09:23:07.71719Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"9df25129-7929-4572-a411-7d7ea3dada41\",\r\n \"name\": \"9df25129-7929-4572-a411-7d7ea3dada41\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:49:45.4479408Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG06578997/providers/Microsoft.RecoveryServices/vaults/PSTestRSV06578997/backupOperations/7fcd4291-e387-467f-91e2-d7171826fcdd?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMDY1Nzg5OTcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YwNjU3ODk5Ny9iYWNrdXBPcGVyYXRpb25zLzdmY2Q0MjkxLWUzODctNDY3Zi05MWUyLWQ3MTcxODI2ZmNkZD9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG03263c8b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV03263c8b/backupOperations/9df25129-7929-4572-a411-7d7ea3dada41?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMDMyNjNjOGIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YwMzI2M2M4Yi9iYWNrdXBPcGVyYXRpb25zLzlkZjI1MTI5LTc5MjktNDU3Mi1hNDExLTdkN2VhM2RhZGE0MT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d96c032d-137b-463a-a4a2-69d8517d7ae9" + "77ffb7b8-0b3e-4cfe-824a-1075ff5510c5" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -4837,11 +5753,11 @@ "nosniff" ], "x-ms-request-id": [ - "671ba989-03d1-4811-a681-8d1cd8f51dca" + "58cd536f-d88c-46e4-aa08-083c0c61c266" ], "x-ms-client-request-id": [ - "d96c032d-137b-463a-a4a2-69d8517d7ae9", - "d96c032d-137b-463a-a4a2-69d8517d7ae9" + "77ffb7b8-0b3e-4cfe-824a-1075ff5510c5", + "77ffb7b8-0b3e-4cfe-824a-1075ff5510c5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4853,19 +5769,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "290" + "278" ], "x-ms-correlation-request-id": [ - "671ba989-03d1-4811-a681-8d1cd8f51dca" + "58cd536f-d88c-46e4-aa08-083c0c61c266" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T092349Z:671ba989-03d1-4811-a681-8d1cd8f51dca" + "WESTINDIA:20220516T155045Z:58cd536f-d88c-46e4-aa08-083c0c61c266" ], "Date": [ - "Sat, 26 Mar 2022 09:23:49 GMT" + "Mon, 16 May 2022 15:50:45 GMT" ], "Content-Length": [ - "186" + "188" ], "Content-Type": [ "application/json" @@ -4874,26 +5790,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"7fcd4291-e387-467f-91e2-d7171826fcdd\",\r\n \"name\": \"7fcd4291-e387-467f-91e2-d7171826fcdd\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-03-26T09:23:07.71719Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"9df25129-7929-4572-a411-7d7ea3dada41\",\r\n \"name\": \"9df25129-7929-4572-a411-7d7ea3dada41\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:49:45.4479408Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG06578997/providers/Microsoft.RecoveryServices/vaults/PSTestRSV06578997/backupOperations/7fcd4291-e387-467f-91e2-d7171826fcdd?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMDY1Nzg5OTcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YwNjU3ODk5Ny9iYWNrdXBPcGVyYXRpb25zLzdmY2Q0MjkxLWUzODctNDY3Zi05MWUyLWQ3MTcxODI2ZmNkZD9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG03263c8b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV03263c8b/backupOperations/9df25129-7929-4572-a411-7d7ea3dada41?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMDMyNjNjOGIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YwMzI2M2M4Yi9iYWNrdXBPcGVyYXRpb25zLzlkZjI1MTI5LTc5MjktNDU3Mi1hNDExLTdkN2VhM2RhZGE0MT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d96c032d-137b-463a-a4a2-69d8517d7ae9" + "77ffb7b8-0b3e-4cfe-824a-1075ff5510c5" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -4907,11 +5823,11 @@ "nosniff" ], "x-ms-request-id": [ - "b03a58c8-b2d2-4000-a3b1-e702545ce85d" + "cc52f141-fe00-48ea-b8fc-05dc1ad07b0f" ], "x-ms-client-request-id": [ - "d96c032d-137b-463a-a4a2-69d8517d7ae9", - "d96c032d-137b-463a-a4a2-69d8517d7ae9" + "77ffb7b8-0b3e-4cfe-824a-1075ff5510c5", + "77ffb7b8-0b3e-4cfe-824a-1075ff5510c5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4923,19 +5839,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "289" + "277" ], "x-ms-correlation-request-id": [ - "b03a58c8-b2d2-4000-a3b1-e702545ce85d" + "cc52f141-fe00-48ea-b8fc-05dc1ad07b0f" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T092400Z:b03a58c8-b2d2-4000-a3b1-e702545ce85d" + "WESTINDIA:20220516T155051Z:cc52f141-fe00-48ea-b8fc-05dc1ad07b0f" ], "Date": [ - "Sat, 26 Mar 2022 09:23:59 GMT" + "Mon, 16 May 2022 15:50:50 GMT" ], "Content-Length": [ - "186" + "188" ], "Content-Type": [ "application/json" @@ -4944,26 +5860,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"7fcd4291-e387-467f-91e2-d7171826fcdd\",\r\n \"name\": \"7fcd4291-e387-467f-91e2-d7171826fcdd\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-03-26T09:23:07.71719Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"9df25129-7929-4572-a411-7d7ea3dada41\",\r\n \"name\": \"9df25129-7929-4572-a411-7d7ea3dada41\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:49:45.4479408Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG06578997/providers/Microsoft.RecoveryServices/vaults/PSTestRSV06578997/backupOperations/7fcd4291-e387-467f-91e2-d7171826fcdd?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMDY1Nzg5OTcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YwNjU3ODk5Ny9iYWNrdXBPcGVyYXRpb25zLzdmY2Q0MjkxLWUzODctNDY3Zi05MWUyLWQ3MTcxODI2ZmNkZD9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG03263c8b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV03263c8b/backupOperations/9df25129-7929-4572-a411-7d7ea3dada41?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMDMyNjNjOGIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YwMzI2M2M4Yi9iYWNrdXBPcGVyYXRpb25zLzlkZjI1MTI5LTc5MjktNDU3Mi1hNDExLTdkN2VhM2RhZGE0MT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d96c032d-137b-463a-a4a2-69d8517d7ae9" + "77ffb7b8-0b3e-4cfe-824a-1075ff5510c5" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -4977,11 +5893,11 @@ "nosniff" ], "x-ms-request-id": [ - "5420b0da-957f-423a-9206-cefb8308ee64" + "ddc604b8-931e-490e-8cef-45cabde3dbe3" ], "x-ms-client-request-id": [ - "d96c032d-137b-463a-a4a2-69d8517d7ae9", - "d96c032d-137b-463a-a4a2-69d8517d7ae9" + "77ffb7b8-0b3e-4cfe-824a-1075ff5510c5", + "77ffb7b8-0b3e-4cfe-824a-1075ff5510c5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4993,19 +5909,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "288" + "276" ], "x-ms-correlation-request-id": [ - "5420b0da-957f-423a-9206-cefb8308ee64" + "ddc604b8-931e-490e-8cef-45cabde3dbe3" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T092410Z:5420b0da-957f-423a-9206-cefb8308ee64" + "WESTINDIA:20220516T155056Z:ddc604b8-931e-490e-8cef-45cabde3dbe3" ], "Date": [ - "Sat, 26 Mar 2022 09:24:10 GMT" + "Mon, 16 May 2022 15:50:56 GMT" ], "Content-Length": [ - "186" + "188" ], "Content-Type": [ "application/json" @@ -5014,26 +5930,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"7fcd4291-e387-467f-91e2-d7171826fcdd\",\r\n \"name\": \"7fcd4291-e387-467f-91e2-d7171826fcdd\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-03-26T09:23:07.71719Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"9df25129-7929-4572-a411-7d7ea3dada41\",\r\n \"name\": \"9df25129-7929-4572-a411-7d7ea3dada41\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:49:45.4479408Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG06578997/providers/Microsoft.RecoveryServices/vaults/PSTestRSV06578997/backupOperations/7fcd4291-e387-467f-91e2-d7171826fcdd?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMDY1Nzg5OTcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YwNjU3ODk5Ny9iYWNrdXBPcGVyYXRpb25zLzdmY2Q0MjkxLWUzODctNDY3Zi05MWUyLWQ3MTcxODI2ZmNkZD9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG03263c8b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV03263c8b/backupOperations/9df25129-7929-4572-a411-7d7ea3dada41?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMDMyNjNjOGIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YwMzI2M2M4Yi9iYWNrdXBPcGVyYXRpb25zLzlkZjI1MTI5LTc5MjktNDU3Mi1hNDExLTdkN2VhM2RhZGE0MT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d96c032d-137b-463a-a4a2-69d8517d7ae9" + "77ffb7b8-0b3e-4cfe-824a-1075ff5510c5" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -5047,11 +5963,11 @@ "nosniff" ], "x-ms-request-id": [ - "c9f01315-c286-4ba7-bb6c-85f404e20038" + "29aa923b-357b-4ec8-b3c2-58b7832c7148" ], "x-ms-client-request-id": [ - "d96c032d-137b-463a-a4a2-69d8517d7ae9", - "d96c032d-137b-463a-a4a2-69d8517d7ae9" + "77ffb7b8-0b3e-4cfe-824a-1075ff5510c5", + "77ffb7b8-0b3e-4cfe-824a-1075ff5510c5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5063,19 +5979,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "287" + "275" ], "x-ms-correlation-request-id": [ - "c9f01315-c286-4ba7-bb6c-85f404e20038" + "29aa923b-357b-4ec8-b3c2-58b7832c7148" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T092421Z:c9f01315-c286-4ba7-bb6c-85f404e20038" + "WESTINDIA:20220516T155102Z:29aa923b-357b-4ec8-b3c2-58b7832c7148" ], "Date": [ - "Sat, 26 Mar 2022 09:24:20 GMT" + "Mon, 16 May 2022 15:51:01 GMT" ], "Content-Length": [ - "186" + "188" ], "Content-Type": [ "application/json" @@ -5084,26 +6000,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"7fcd4291-e387-467f-91e2-d7171826fcdd\",\r\n \"name\": \"7fcd4291-e387-467f-91e2-d7171826fcdd\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-03-26T09:23:07.71719Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"9df25129-7929-4572-a411-7d7ea3dada41\",\r\n \"name\": \"9df25129-7929-4572-a411-7d7ea3dada41\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:49:45.4479408Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG06578997/providers/Microsoft.RecoveryServices/vaults/PSTestRSV06578997/backupOperations/7fcd4291-e387-467f-91e2-d7171826fcdd?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMDY1Nzg5OTcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YwNjU3ODk5Ny9iYWNrdXBPcGVyYXRpb25zLzdmY2Q0MjkxLWUzODctNDY3Zi05MWUyLWQ3MTcxODI2ZmNkZD9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG03263c8b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV03263c8b/backupOperations/9df25129-7929-4572-a411-7d7ea3dada41?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMDMyNjNjOGIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YwMzI2M2M4Yi9iYWNrdXBPcGVyYXRpb25zLzlkZjI1MTI5LTc5MjktNDU3Mi1hNDExLTdkN2VhM2RhZGE0MT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d96c032d-137b-463a-a4a2-69d8517d7ae9" + "77ffb7b8-0b3e-4cfe-824a-1075ff5510c5" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -5117,11 +6033,11 @@ "nosniff" ], "x-ms-request-id": [ - "44d2bd54-5dda-48f3-8c47-2a82f32618ba" + "a9457cc8-b1c3-492f-8d01-9110ff7483b1" ], "x-ms-client-request-id": [ - "d96c032d-137b-463a-a4a2-69d8517d7ae9", - "d96c032d-137b-463a-a4a2-69d8517d7ae9" + "77ffb7b8-0b3e-4cfe-824a-1075ff5510c5", + "77ffb7b8-0b3e-4cfe-824a-1075ff5510c5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5133,19 +6049,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "286" + "274" ], "x-ms-correlation-request-id": [ - "44d2bd54-5dda-48f3-8c47-2a82f32618ba" + "a9457cc8-b1c3-492f-8d01-9110ff7483b1" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T092431Z:44d2bd54-5dda-48f3-8c47-2a82f32618ba" + "WESTINDIA:20220516T155107Z:a9457cc8-b1c3-492f-8d01-9110ff7483b1" ], "Date": [ - "Sat, 26 Mar 2022 09:24:31 GMT" + "Mon, 16 May 2022 15:51:06 GMT" ], "Content-Length": [ - "186" + "188" ], "Content-Type": [ "application/json" @@ -5154,26 +6070,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"7fcd4291-e387-467f-91e2-d7171826fcdd\",\r\n \"name\": \"7fcd4291-e387-467f-91e2-d7171826fcdd\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-03-26T09:23:07.71719Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"9df25129-7929-4572-a411-7d7ea3dada41\",\r\n \"name\": \"9df25129-7929-4572-a411-7d7ea3dada41\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:49:45.4479408Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG06578997/providers/Microsoft.RecoveryServices/vaults/PSTestRSV06578997/backupOperations/7fcd4291-e387-467f-91e2-d7171826fcdd?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMDY1Nzg5OTcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YwNjU3ODk5Ny9iYWNrdXBPcGVyYXRpb25zLzdmY2Q0MjkxLWUzODctNDY3Zi05MWUyLWQ3MTcxODI2ZmNkZD9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG03263c8b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV03263c8b/backupOperations/9df25129-7929-4572-a411-7d7ea3dada41?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMDMyNjNjOGIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YwMzI2M2M4Yi9iYWNrdXBPcGVyYXRpb25zLzlkZjI1MTI5LTc5MjktNDU3Mi1hNDExLTdkN2VhM2RhZGE0MT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d96c032d-137b-463a-a4a2-69d8517d7ae9" + "77ffb7b8-0b3e-4cfe-824a-1075ff5510c5" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -5187,11 +6103,11 @@ "nosniff" ], "x-ms-request-id": [ - "57eb11b2-8fdb-4c00-bad4-2cfa69619eba" + "1c60c75a-c9b5-4e3a-aba9-199efd045f46" ], "x-ms-client-request-id": [ - "d96c032d-137b-463a-a4a2-69d8517d7ae9", - "d96c032d-137b-463a-a4a2-69d8517d7ae9" + "77ffb7b8-0b3e-4cfe-824a-1075ff5510c5", + "77ffb7b8-0b3e-4cfe-824a-1075ff5510c5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5203,19 +6119,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "285" + "273" ], "x-ms-correlation-request-id": [ - "57eb11b2-8fdb-4c00-bad4-2cfa69619eba" + "1c60c75a-c9b5-4e3a-aba9-199efd045f46" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T092442Z:57eb11b2-8fdb-4c00-bad4-2cfa69619eba" + "WESTINDIA:20220516T155113Z:1c60c75a-c9b5-4e3a-aba9-199efd045f46" ], "Date": [ - "Sat, 26 Mar 2022 09:24:42 GMT" + "Mon, 16 May 2022 15:51:13 GMT" ], "Content-Length": [ - "186" + "188" ], "Content-Type": [ "application/json" @@ -5224,26 +6140,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"7fcd4291-e387-467f-91e2-d7171826fcdd\",\r\n \"name\": \"7fcd4291-e387-467f-91e2-d7171826fcdd\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-03-26T09:23:07.71719Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"9df25129-7929-4572-a411-7d7ea3dada41\",\r\n \"name\": \"9df25129-7929-4572-a411-7d7ea3dada41\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:49:45.4479408Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG06578997/providers/Microsoft.RecoveryServices/vaults/PSTestRSV06578997/backupOperations/7fcd4291-e387-467f-91e2-d7171826fcdd?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMDY1Nzg5OTcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YwNjU3ODk5Ny9iYWNrdXBPcGVyYXRpb25zLzdmY2Q0MjkxLWUzODctNDY3Zi05MWUyLWQ3MTcxODI2ZmNkZD9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG03263c8b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV03263c8b/backupOperations/9df25129-7929-4572-a411-7d7ea3dada41?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMDMyNjNjOGIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YwMzI2M2M4Yi9iYWNrdXBPcGVyYXRpb25zLzlkZjI1MTI5LTc5MjktNDU3Mi1hNDExLTdkN2VhM2RhZGE0MT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d96c032d-137b-463a-a4a2-69d8517d7ae9" + "77ffb7b8-0b3e-4cfe-824a-1075ff5510c5" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -5257,11 +6173,11 @@ "nosniff" ], "x-ms-request-id": [ - "dc50eb4f-0dca-4439-a574-5eb50530d59c" + "f7ee5c40-8bf2-49cf-9f82-2a9c98c5dffe" ], "x-ms-client-request-id": [ - "d96c032d-137b-463a-a4a2-69d8517d7ae9", - "d96c032d-137b-463a-a4a2-69d8517d7ae9" + "77ffb7b8-0b3e-4cfe-824a-1075ff5510c5", + "77ffb7b8-0b3e-4cfe-824a-1075ff5510c5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5273,19 +6189,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "284" + "272" ], "x-ms-correlation-request-id": [ - "dc50eb4f-0dca-4439-a574-5eb50530d59c" + "f7ee5c40-8bf2-49cf-9f82-2a9c98c5dffe" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T092452Z:dc50eb4f-0dca-4439-a574-5eb50530d59c" + "WESTINDIA:20220516T155118Z:f7ee5c40-8bf2-49cf-9f82-2a9c98c5dffe" ], "Date": [ - "Sat, 26 Mar 2022 09:24:52 GMT" + "Mon, 16 May 2022 15:51:18 GMT" ], "Content-Length": [ - "300" + "188" ], "Content-Type": [ "application/json" @@ -5294,26 +6210,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"7fcd4291-e387-467f-91e2-d7171826fcdd\",\r\n \"name\": \"7fcd4291-e387-467f-91e2-d7171826fcdd\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-03-26T09:23:07.71719Z\",\r\n \"endTime\": \"2022-03-26T09:23:07.71719Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"7b95891b-9cb5-4280-95ad-655069a1bb0b\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"9df25129-7929-4572-a411-7d7ea3dada41\",\r\n \"name\": \"9df25129-7929-4572-a411-7d7ea3dada41\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:49:45.4479408Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG06578997/providers/Microsoft.RecoveryServices/vaults/PSTestRSV06578997/backupOperations/7fcd4291-e387-467f-91e2-d7171826fcdd?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMDY1Nzg5OTcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YwNjU3ODk5Ny9iYWNrdXBPcGVyYXRpb25zLzdmY2Q0MjkxLWUzODctNDY3Zi05MWUyLWQ3MTcxODI2ZmNkZD9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG03263c8b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV03263c8b/backupOperations/9df25129-7929-4572-a411-7d7ea3dada41?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMDMyNjNjOGIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YwMzI2M2M4Yi9iYWNrdXBPcGVyYXRpb25zLzlkZjI1MTI5LTc5MjktNDU3Mi1hNDExLTdkN2VhM2RhZGE0MT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d96c032d-137b-463a-a4a2-69d8517d7ae9" + "77ffb7b8-0b3e-4cfe-824a-1075ff5510c5" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -5327,11 +6243,11 @@ "nosniff" ], "x-ms-request-id": [ - "990d3347-c13c-42bd-99c7-ab764e7fba80" + "454fff00-390f-47bc-8253-a89c9554da96" ], "x-ms-client-request-id": [ - "d96c032d-137b-463a-a4a2-69d8517d7ae9", - "d96c032d-137b-463a-a4a2-69d8517d7ae9" + "77ffb7b8-0b3e-4cfe-824a-1075ff5510c5", + "77ffb7b8-0b3e-4cfe-824a-1075ff5510c5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5343,19 +6259,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "283" + "271" ], "x-ms-correlation-request-id": [ - "990d3347-c13c-42bd-99c7-ab764e7fba80" + "454fff00-390f-47bc-8253-a89c9554da96" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T092453Z:990d3347-c13c-42bd-99c7-ab764e7fba80" + "WESTINDIA:20220516T155124Z:454fff00-390f-47bc-8253-a89c9554da96" ], "Date": [ - "Sat, 26 Mar 2022 09:24:52 GMT" + "Mon, 16 May 2022 15:51:23 GMT" ], "Content-Length": [ - "300" + "188" ], "Content-Type": [ "application/json" @@ -5364,26 +6280,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"7fcd4291-e387-467f-91e2-d7171826fcdd\",\r\n \"name\": \"7fcd4291-e387-467f-91e2-d7171826fcdd\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-03-26T09:23:07.71719Z\",\r\n \"endTime\": \"2022-03-26T09:23:07.71719Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"7b95891b-9cb5-4280-95ad-655069a1bb0b\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"9df25129-7929-4572-a411-7d7ea3dada41\",\r\n \"name\": \"9df25129-7929-4572-a411-7d7ea3dada41\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:49:45.4479408Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG06578997/providers/Microsoft.RecoveryServices/vaults/PSTestRSV06578997/backupJobs/7b95891b-9cb5-4280-95ad-655069a1bb0b?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMDY1Nzg5OTcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YwNjU3ODk5Ny9iYWNrdXBKb2JzLzdiOTU4OTFiLTljYjUtNDI4MC05NWFkLTY1NTA2OWExYmIwYj9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG03263c8b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV03263c8b/backupOperations/9df25129-7929-4572-a411-7d7ea3dada41?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMDMyNjNjOGIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YwMzI2M2M4Yi9iYWNrdXBPcGVyYXRpb25zLzlkZjI1MTI5LTc5MjktNDU3Mi1hNDExLTdkN2VhM2RhZGE0MT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d96c032d-137b-463a-a4a2-69d8517d7ae9" + "77ffb7b8-0b3e-4cfe-824a-1075ff5510c5" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -5393,40 +6309,39 @@ "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-IIS/10.0" - ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "cd732bf9-a5a9-4493-8367-dd29fbb0b2e2" + "0bcc14ae-acfd-4106-9735-37e4468c3e9f" ], "x-ms-client-request-id": [ - "d96c032d-137b-463a-a4a2-69d8517d7ae9", - "d96c032d-137b-463a-a4a2-69d8517d7ae9" - ], - "X-Powered-By": [ - "ASP.NET" + "77ffb7b8-0b3e-4cfe-824a-1075ff5510c5", + "77ffb7b8-0b3e-4cfe-824a-1075ff5510c5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "298" + "270" ], "x-ms-correlation-request-id": [ - "cd732bf9-a5a9-4493-8367-dd29fbb0b2e2" + "0bcc14ae-acfd-4106-9735-37e4468c3e9f" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T092453Z:cd732bf9-a5a9-4493-8367-dd29fbb0b2e2" + "WESTINDIA:20220516T155129Z:0bcc14ae-acfd-4106-9735-37e4468c3e9f" ], "Date": [ - "Sat, 26 Mar 2022 09:24:53 GMT" + "Mon, 16 May 2022 15:51:29 GMT" ], "Content-Length": [ - "843" + "188" ], "Content-Type": [ "application/json" @@ -5435,26 +6350,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG06578997/providers/Microsoft.RecoveryServices/vaults/PSTestRSV06578997/backupJobs/7b95891b-9cb5-4280-95ad-655069a1bb0b\",\r\n \"name\": \"7b95891b-9cb5-4280-95ad-655069a1bb0b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg06578997;pstestvm065780\",\r\n \"duration\": \"PT1M41.9358934S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"VM Name\": \"PSTestVM065780\",\r\n \"Number of Recovery Points\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"PSTestVM065780\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"DeleteBackupData\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-03-26T09:23:07.71719Z\",\r\n \"endTime\": \"2022-03-26T09:24:49.6530834Z\",\r\n \"activityId\": \"d96c032d-137b-463a-a4a2-69d8517d7ae9\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"9df25129-7929-4572-a411-7d7ea3dada41\",\r\n \"name\": \"9df25129-7929-4572-a411-7d7ea3dada41\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:49:45.4479408Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG06578997/providers/Microsoft.RecoveryServices/vaults/PSTestRSV06578997?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMDY1Nzg5OTcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YwNjU3ODk5Nz9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", - "RequestMethod": "DELETE", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG03263c8b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV03263c8b/backupOperations/9df25129-7929-4572-a411-7d7ea3dada41?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMDMyNjNjOGIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YwMzI2M2M4Yi9iYWNrdXBPcGVyYXRpb25zLzlkZjI1MTI5LTc5MjktNDU3Mi1hNDExLTdkN2VhM2RhZGE0MT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b2760280-4a81-4dae-ada5-1777d341d8a0" + "77ffb7b8-0b3e-4cfe-824a-1075ff5510c5" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesClient/4.3.2.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -5468,53 +6383,63 @@ "nosniff" ], "x-ms-request-id": [ - "e17ffe24-24ce-45dd-ba52-f877481f01da" + "11bddfc4-544b-4308-a6d7-17cf831a2120" ], "x-ms-client-request-id": [ - "b2760280-4a81-4dae-ada5-1777d341d8a0" + "77ffb7b8-0b3e-4cfe-824a-1075ff5510c5", + "77ffb7b8-0b3e-4cfe-824a-1075ff5510c5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "49" + "269" ], "x-ms-correlation-request-id": [ - "e17ffe24-24ce-45dd-ba52-f877481f01da" + "11bddfc4-544b-4308-a6d7-17cf831a2120" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T092500Z:e17ffe24-24ce-45dd-ba52-f877481f01da" + "WESTINDIA:20220516T155135Z:11bddfc4-544b-4308-a6d7-17cf831a2120" ], "Date": [ - "Sat, 26 Mar 2022 09:24:59 GMT" + "Mon, 16 May 2022 15:51:34 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, - "ResponseBody": "", + "ResponseBody": "{\r\n \"id\": \"9df25129-7929-4572-a411-7d7ea3dada41\",\r\n \"name\": \"9df25129-7929-4572-a411-7d7ea3dada41\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:49:45.4479408Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourcegroups/PSTestRG06578997?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlZ3JvdXBzL1BTVGVzdFJHMDY1Nzg5OTc/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "DELETE", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG03263c8b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV03263c8b/backupOperations/9df25129-7929-4572-a411-7d7ea3dada41?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMDMyNjNjOGIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YwMzI2M2M4Yi9iYWNrdXBPcGVyYXRpb25zLzlkZjI1MTI5LTc5MjktNDU3Mi1hNDExLTdkN2VhM2RhZGE0MT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2f851379-cba8-40be-b4c4-4d3487f80408" + "77ffb7b8-0b3e-4cfe-824a-1075ff5510c5" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -5524,54 +6449,67 @@ "Pragma": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzA2NTc4OTk3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" + "X-Content-Type-Options": [ + "nosniff" ], - "Retry-After": [ - "15" + "x-ms-request-id": [ + "b0066053-b86a-42d3-b24c-d2f380c04f32" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ - "14999" + "x-ms-client-request-id": [ + "77ffb7b8-0b3e-4cfe-824a-1075ff5510c5", + "77ffb7b8-0b3e-4cfe-824a-1075ff5510c5" ], - "x-ms-request-id": [ - "100a652f-cec2-40ca-be17-7d1e9846e2d2" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "268" ], "x-ms-correlation-request-id": [ - "100a652f-cec2-40ca-be17-7d1e9846e2d2" + "b0066053-b86a-42d3-b24c-d2f380c04f32" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T092503Z:100a652f-cec2-40ca-be17-7d1e9846e2d2" + "WESTINDIA:20220516T155140Z:b0066053-b86a-42d3-b24c-d2f380c04f32" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "Date": [ + "Mon, 16 May 2022 15:51:39 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Content-Length": [ + "304" ], - "Date": [ - "Sat, 26 Mar 2022 09:25:02 GMT" + "Content-Type": [ + "application/json" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, - "ResponseBody": "", - "StatusCode": 202 + "ResponseBody": "{\r\n \"id\": \"9df25129-7929-4572-a411-7d7ea3dada41\",\r\n \"name\": \"9df25129-7929-4572-a411-7d7ea3dada41\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-05-16T15:49:45.4479408Z\",\r\n \"endTime\": \"2022-05-16T15:49:45.4479408Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"f4f35fec-5363-4f7f-8876-6481c3868eb5\"\r\n }\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzA2NTc4OTk3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekEyTlRjNE9UazNMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG03263c8b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV03263c8b/backupOperations/9df25129-7929-4572-a411-7d7ea3dada41?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMDMyNjNjOGIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YwMzI2M2M4Yi9iYWNrdXBPcGVyYXRpb25zLzlkZjI1MTI5LTc5MjktNDU3Mi1hNDExLTdkN2VhM2RhZGE0MT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "77ffb7b8-0b3e-4cfe-824a-1075ff5510c5" + ], + "Accept-Language": [ + "en-US" + ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -5581,54 +6519,67 @@ "Pragma": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzA2NTc4OTk3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" + "X-Content-Type-Options": [ + "nosniff" ], - "Retry-After": [ - "15" + "x-ms-request-id": [ + "eccf226a-a8b3-4610-bc1d-014c98707685" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "x-ms-client-request-id": [ + "77ffb7b8-0b3e-4cfe-824a-1075ff5510c5", + "77ffb7b8-0b3e-4cfe-824a-1075ff5510c5" ], - "x-ms-request-id": [ - "f28d702e-ec4d-4ceb-b05a-5b26b99b60e4" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "267" ], "x-ms-correlation-request-id": [ - "f28d702e-ec4d-4ceb-b05a-5b26b99b60e4" + "eccf226a-a8b3-4610-bc1d-014c98707685" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T092518Z:f28d702e-ec4d-4ceb-b05a-5b26b99b60e4" + "WESTINDIA:20220516T155141Z:eccf226a-a8b3-4610-bc1d-014c98707685" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "Date": [ + "Mon, 16 May 2022 15:51:40 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Content-Length": [ + "304" ], - "Date": [ - "Sat, 26 Mar 2022 09:25:17 GMT" + "Content-Type": [ + "application/json" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, - "ResponseBody": "", - "StatusCode": 202 + "ResponseBody": "{\r\n \"id\": \"9df25129-7929-4572-a411-7d7ea3dada41\",\r\n \"name\": \"9df25129-7929-4572-a411-7d7ea3dada41\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-05-16T15:49:45.4479408Z\",\r\n \"endTime\": \"2022-05-16T15:49:45.4479408Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"f4f35fec-5363-4f7f-8876-6481c3868eb5\"\r\n }\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzA2NTc4OTk3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekEyTlRjNE9UazNMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG03263c8b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV03263c8b/backupJobs/f4f35fec-5363-4f7f-8876-6481c3868eb5?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMDMyNjNjOGIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YwMzI2M2M4Yi9iYWNrdXBKb2JzL2Y0ZjM1ZmVjLTUzNjMtNGY3Zi04ODc2LTY0ODFjMzg2OGViNT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "77ffb7b8-0b3e-4cfe-824a-1075ff5510c5" + ], + "Accept-Language": [ + "en-US" + ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -5638,54 +6589,68 @@ "Pragma": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzA2NTc4OTk3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" + "Server": [ + "Microsoft-IIS/10.0", + "Microsoft-IIS/10.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "X-Content-Type-Options": [ + "nosniff" ], "x-ms-request-id": [ - "0653193e-2713-41b0-9d5b-717bf39a2470" + "09899465-3702-4587-911e-8162c4a26d1d" ], - "x-ms-correlation-request-id": [ - "0653193e-2713-41b0-9d5b-717bf39a2470" + "x-ms-client-request-id": [ + "77ffb7b8-0b3e-4cfe-824a-1075ff5510c5", + "77ffb7b8-0b3e-4cfe-824a-1075ff5510c5" ], - "x-ms-routing-request-id": [ - "WESTINDIA:20220326T092533Z:0653193e-2713-41b0-9d5b-717bf39a2470" + "X-Powered-By": [ + "ASP.NET" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ - "nosniff" + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "298" + ], + "x-ms-correlation-request-id": [ + "09899465-3702-4587-911e-8162c4a26d1d" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T155141Z:09899465-3702-4587-911e-8162c4a26d1d" ], "Date": [ - "Sat, 26 Mar 2022 09:25:33 GMT" + "Mon, 16 May 2022 15:51:40 GMT" + ], + "Content-Length": [ + "845" + ], + "Content-Type": [ + "application/json" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, - "ResponseBody": "", - "StatusCode": 202 + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG03263c8b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV03263c8b/backupJobs/f4f35fec-5363-4f7f-8876-6481c3868eb5\",\r\n \"name\": \"f4f35fec-5363-4f7f-8876-6481c3868eb5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg03263c8b;pstestvm032630\",\r\n \"duration\": \"PT1M51.4397953S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"VM Name\": \"PSTestVM032630\",\r\n \"Number of Recovery Points\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"PSTestVM032630\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"DeleteBackupData\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-05-16T15:49:45.4479408Z\",\r\n \"endTime\": \"2022-05-16T15:51:36.8877361Z\",\r\n \"activityId\": \"77ffb7b8-0b3e-4cfe-824a-1075ff5510c5\"\r\n }\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzA2NTc4OTk3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekEyTlRjNE9UazNMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", - "RequestMethod": "GET", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG03263c8b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV03263c8b?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMDMyNjNjOGIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YwMzI2M2M4Yj9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", + "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "e4b00a44-b549-4da9-911d-5c3e95355698" + ], + "Accept-Language": [ + "en-US" + ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" + "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesClient/4.3.2.0" ] }, "ResponseHeaders": { @@ -5695,32 +6660,29 @@ "Pragma": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzA2NTc4OTk3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "X-Content-Type-Options": [ + "nosniff" ], "x-ms-request-id": [ - "8ae1be2e-edeb-4cb0-8415-2b5cacecbbfe" - ], - "x-ms-correlation-request-id": [ - "8ae1be2e-edeb-4cb0-8415-2b5cacecbbfe" + "71cdd172-1445-4d72-aa00-c6cf53f4068c" ], - "x-ms-routing-request-id": [ - "WESTINDIA:20220326T092548Z:8ae1be2e-edeb-4cb0-8415-2b5cacecbbfe" + "x-ms-client-request-id": [ + "e4b00a44-b549-4da9-911d-5c3e95355698" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ - "nosniff" + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "49" + ], + "x-ms-correlation-request-id": [ + "71cdd172-1445-4d72-aa00-c6cf53f4068c" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T155146Z:71cdd172-1445-4d72-aa00-c6cf53f4068c" ], "Date": [ - "Sat, 26 Mar 2022 09:25:48 GMT" + "Mon, 16 May 2022 15:51:46 GMT" ], "Expires": [ "-1" @@ -5730,16 +6692,22 @@ ] }, "ResponseBody": "", - "StatusCode": 202 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzA2NTc4OTk3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekEyTlRjNE9UazNMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", - "RequestMethod": "GET", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourcegroups/PSTestRG03263c8b?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlZ3JvdXBzL1BTVGVzdFJHMDMyNjNjOGI/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "aa41e1a7-6ec9-4c05-b794-9e242ac8a960" + ], + "Accept-Language": [ + "en-US" + ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" @@ -5753,22 +6721,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzA2NTc4OTk3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzAzMjYzQzhCLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" ], "Retry-After": [ "15" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" ], "x-ms-request-id": [ - "e5cf9d8c-9022-471f-8948-2a43e63781a5" + "b8978250-9140-41f7-8389-d4c255814b76" ], "x-ms-correlation-request-id": [ - "e5cf9d8c-9022-471f-8948-2a43e63781a5" + "b8978250-9140-41f7-8389-d4c255814b76" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T092603Z:e5cf9d8c-9022-471f-8948-2a43e63781a5" + "WESTINDIA:20220516T155149Z:b8978250-9140-41f7-8389-d4c255814b76" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5777,7 +6745,7 @@ "nosniff" ], "Date": [ - "Sat, 26 Mar 2022 09:26:02 GMT" + "Mon, 16 May 2022 15:51:48 GMT" ], "Expires": [ "-1" @@ -5790,13 +6758,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzA2NTc4OTk3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekEyTlRjNE9UazNMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzAzMjYzQzhCLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekF6TWpZelF6aENMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" @@ -5810,22 +6778,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzA2NTc4OTk3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzAzMjYzQzhCLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11999" ], "x-ms-request-id": [ - "c476bad1-c9b0-44d8-9c20-5356a126b8a3" + "e4f4e219-a35f-4ae0-9729-b903173bdee1" ], "x-ms-correlation-request-id": [ - "c476bad1-c9b0-44d8-9c20-5356a126b8a3" + "e4f4e219-a35f-4ae0-9729-b903173bdee1" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T092618Z:c476bad1-c9b0-44d8-9c20-5356a126b8a3" + "WESTINDIA:20220516T155204Z:e4f4e219-a35f-4ae0-9729-b903173bdee1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5834,7 +6802,7 @@ "nosniff" ], "Date": [ - "Sat, 26 Mar 2022 09:26:18 GMT" + "Mon, 16 May 2022 15:52:04 GMT" ], "Expires": [ "-1" @@ -5847,13 +6815,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzA2NTc4OTk3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekEyTlRjNE9UazNMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzAzMjYzQzhCLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekF6TWpZelF6aENMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" @@ -5867,22 +6835,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzA2NTc4OTk3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzAzMjYzQzhCLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11998" ], "x-ms-request-id": [ - "a1dc1dbe-835f-400f-92ed-961a0ef869b8" + "f3ebec34-ee48-4e92-8983-724bd93ebf8c" ], "x-ms-correlation-request-id": [ - "a1dc1dbe-835f-400f-92ed-961a0ef869b8" + "f3ebec34-ee48-4e92-8983-724bd93ebf8c" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T092634Z:a1dc1dbe-835f-400f-92ed-961a0ef869b8" + "WESTINDIA:20220516T155219Z:f3ebec34-ee48-4e92-8983-724bd93ebf8c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5891,7 +6859,7 @@ "nosniff" ], "Date": [ - "Sat, 26 Mar 2022 09:26:33 GMT" + "Mon, 16 May 2022 15:52:19 GMT" ], "Expires": [ "-1" @@ -5904,13 +6872,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzA2NTc4OTk3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekEyTlRjNE9UazNMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzAzMjYzQzhCLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekF6TWpZelF6aENMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" @@ -5924,22 +6892,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzA2NTc4OTk3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzAzMjYzQzhCLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11997" ], "x-ms-request-id": [ - "b25b61a1-fa9d-4d79-9d42-d068f17de877" + "61e82116-7489-403f-b1ad-82e1a7ef8dac" ], "x-ms-correlation-request-id": [ - "b25b61a1-fa9d-4d79-9d42-d068f17de877" + "61e82116-7489-403f-b1ad-82e1a7ef8dac" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T092649Z:b25b61a1-fa9d-4d79-9d42-d068f17de877" + "WESTINDIA:20220516T155234Z:61e82116-7489-403f-b1ad-82e1a7ef8dac" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5948,7 +6916,7 @@ "nosniff" ], "Date": [ - "Sat, 26 Mar 2022 09:26:49 GMT" + "Mon, 16 May 2022 15:52:34 GMT" ], "Expires": [ "-1" @@ -5961,13 +6929,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzA2NTc4OTk3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekEyTlRjNE9UazNMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzAzMjYzQzhCLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekF6TWpZelF6aENMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" @@ -5981,22 +6949,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzA2NTc4OTk3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzAzMjYzQzhCLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11996" ], "x-ms-request-id": [ - "9593d5d0-98bd-424a-97ce-5d6a2a0bb521" + "8e571abf-c438-419a-b4db-eaa1ceb5116d" ], "x-ms-correlation-request-id": [ - "9593d5d0-98bd-424a-97ce-5d6a2a0bb521" + "8e571abf-c438-419a-b4db-eaa1ceb5116d" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T092704Z:9593d5d0-98bd-424a-97ce-5d6a2a0bb521" + "WESTINDIA:20220516T155250Z:8e571abf-c438-419a-b4db-eaa1ceb5116d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6005,7 +6973,7 @@ "nosniff" ], "Date": [ - "Sat, 26 Mar 2022 09:27:03 GMT" + "Mon, 16 May 2022 15:52:49 GMT" ], "Expires": [ "-1" @@ -6018,13 +6986,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzA2NTc4OTk3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekEyTlRjNE9UazNMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzAzMjYzQzhCLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekF6TWpZelF6aENMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" @@ -6038,22 +7006,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzA2NTc4OTk3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzAzMjYzQzhCLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11995" ], "x-ms-request-id": [ - "d7e4480b-5d5c-42c7-89b9-caeff6a308ad" + "5efdceee-032e-422a-b8ed-f62bf6d15498" ], "x-ms-correlation-request-id": [ - "d7e4480b-5d5c-42c7-89b9-caeff6a308ad" + "5efdceee-032e-422a-b8ed-f62bf6d15498" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T092719Z:d7e4480b-5d5c-42c7-89b9-caeff6a308ad" + "WESTINDIA:20220516T155305Z:5efdceee-032e-422a-b8ed-f62bf6d15498" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6062,7 +7030,7 @@ "nosniff" ], "Date": [ - "Sat, 26 Mar 2022 09:27:18 GMT" + "Mon, 16 May 2022 15:53:04 GMT" ], "Expires": [ "-1" @@ -6075,13 +7043,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzA2NTc4OTk3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekEyTlRjNE9UazNMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzAzMjYzQzhCLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekF6TWpZelF6aENMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" @@ -6095,22 +7063,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzA2NTc4OTk3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzAzMjYzQzhCLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11994" ], "x-ms-request-id": [ - "3701b5c5-efca-4468-a602-539a8bf6d9d3" + "254b1683-a1c0-40fa-b3d4-665d7def6135" ], "x-ms-correlation-request-id": [ - "3701b5c5-efca-4468-a602-539a8bf6d9d3" + "254b1683-a1c0-40fa-b3d4-665d7def6135" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T092734Z:3701b5c5-efca-4468-a602-539a8bf6d9d3" + "WESTINDIA:20220516T155320Z:254b1683-a1c0-40fa-b3d4-665d7def6135" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6119,7 +7087,7 @@ "nosniff" ], "Date": [ - "Sat, 26 Mar 2022 09:27:34 GMT" + "Mon, 16 May 2022 15:53:19 GMT" ], "Expires": [ "-1" @@ -6132,13 +7100,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzA2NTc4OTk3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekEyTlRjNE9UazNMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzAzMjYzQzhCLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekF6TWpZelF6aENMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" @@ -6152,22 +7120,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzA2NTc4OTk3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzAzMjYzQzhCLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "11993" ], "x-ms-request-id": [ - "e98feca0-ec81-491a-b157-0155b9849a35" + "b3993c7b-300c-4a0c-a39f-2c9433313268" ], "x-ms-correlation-request-id": [ - "e98feca0-ec81-491a-b157-0155b9849a35" + "b3993c7b-300c-4a0c-a39f-2c9433313268" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T092749Z:e98feca0-ec81-491a-b157-0155b9849a35" + "WESTINDIA:20220516T155335Z:b3993c7b-300c-4a0c-a39f-2c9433313268" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6176,7 +7144,7 @@ "nosniff" ], "Date": [ - "Sat, 26 Mar 2022 09:27:49 GMT" + "Mon, 16 May 2022 15:53:35 GMT" ], "Expires": [ "-1" @@ -6189,13 +7157,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzA2NTc4OTk3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekEyTlRjNE9UazNMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzAzMjYzQzhCLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekF6TWpZelF6aENMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" @@ -6209,22 +7177,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzA2NTc4OTk3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzAzMjYzQzhCLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "11992" ], "x-ms-request-id": [ - "8e92730a-406a-4329-ab8b-d7bf1075fac0" + "bd8672bd-57d8-47da-914e-4d93fe5dd354" ], "x-ms-correlation-request-id": [ - "8e92730a-406a-4329-ab8b-d7bf1075fac0" + "bd8672bd-57d8-47da-914e-4d93fe5dd354" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T092805Z:8e92730a-406a-4329-ab8b-d7bf1075fac0" + "WESTINDIA:20220516T155351Z:bd8672bd-57d8-47da-914e-4d93fe5dd354" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6233,7 +7201,7 @@ "nosniff" ], "Date": [ - "Sat, 26 Mar 2022 09:28:05 GMT" + "Mon, 16 May 2022 15:53:50 GMT" ], "Expires": [ "-1" @@ -6246,13 +7214,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzA2NTc4OTk3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekEyTlRjNE9UazNMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzAzMjYzQzhCLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekF6TWpZelF6aENMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" @@ -6266,22 +7234,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzA2NTc4OTk3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzAzMjYzQzhCLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" + "11991" ], "x-ms-request-id": [ - "b54371d1-5773-41bc-8d97-17b3220fe345" + "3bc58fc0-cbe6-4c46-abca-4243c3f40bf4" ], "x-ms-correlation-request-id": [ - "b54371d1-5773-41bc-8d97-17b3220fe345" + "3bc58fc0-cbe6-4c46-abca-4243c3f40bf4" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T092820Z:b54371d1-5773-41bc-8d97-17b3220fe345" + "WESTINDIA:20220516T155406Z:3bc58fc0-cbe6-4c46-abca-4243c3f40bf4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6290,7 +7258,7 @@ "nosniff" ], "Date": [ - "Sat, 26 Mar 2022 09:28:19 GMT" + "Mon, 16 May 2022 15:54:05 GMT" ], "Expires": [ "-1" @@ -6303,13 +7271,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzA2NTc4OTk3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekEyTlRjNE9UazNMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzAzMjYzQzhCLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekF6TWpZelF6aENMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" @@ -6323,22 +7291,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzA2NTc4OTk3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzAzMjYzQzhCLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" + "11990" ], "x-ms-request-id": [ - "fa405c51-a888-4bb9-b19e-5778bab42766" + "b8b27c0a-ce8a-4949-80d9-988468cf37d7" ], "x-ms-correlation-request-id": [ - "fa405c51-a888-4bb9-b19e-5778bab42766" + "b8b27c0a-ce8a-4949-80d9-988468cf37d7" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T092835Z:fa405c51-a888-4bb9-b19e-5778bab42766" + "WESTINDIA:20220516T155421Z:b8b27c0a-ce8a-4949-80d9-988468cf37d7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6347,7 +7315,7 @@ "nosniff" ], "Date": [ - "Sat, 26 Mar 2022 09:28:34 GMT" + "Mon, 16 May 2022 15:54:21 GMT" ], "Expires": [ "-1" @@ -6360,13 +7328,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzA2NTc4OTk3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekEyTlRjNE9UazNMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzAzMjYzQzhCLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekF6TWpZelF6aENMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" @@ -6380,22 +7348,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzA2NTc4OTk3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzAzMjYzQzhCLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11984" + "11989" ], "x-ms-request-id": [ - "ef7626c4-12d6-45d2-9c89-a1affcb5b16d" + "aae9c74f-73d9-44ec-afd9-5bb12abee98d" ], "x-ms-correlation-request-id": [ - "ef7626c4-12d6-45d2-9c89-a1affcb5b16d" + "aae9c74f-73d9-44ec-afd9-5bb12abee98d" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T092850Z:ef7626c4-12d6-45d2-9c89-a1affcb5b16d" + "WESTINDIA:20220516T155436Z:aae9c74f-73d9-44ec-afd9-5bb12abee98d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6404,7 +7372,7 @@ "nosniff" ], "Date": [ - "Sat, 26 Mar 2022 09:28:50 GMT" + "Mon, 16 May 2022 15:54:36 GMT" ], "Expires": [ "-1" @@ -6417,13 +7385,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzA2NTc4OTk3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekEyTlRjNE9UazNMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzAzMjYzQzhCLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekF6TWpZelF6aENMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" @@ -6437,16 +7405,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11983" + "11988" ], "x-ms-request-id": [ - "fcb9b373-590f-4f91-ad16-054f9b219311" + "6fbf71a6-904c-456a-9df4-1866bf72f74a" ], "x-ms-correlation-request-id": [ - "fcb9b373-590f-4f91-ad16-054f9b219311" + "6fbf71a6-904c-456a-9df4-1866bf72f74a" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T092905Z:fcb9b373-590f-4f91-ad16-054f9b219311" + "WESTINDIA:20220516T155451Z:6fbf71a6-904c-456a-9df4-1866bf72f74a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6455,7 +7423,7 @@ "nosniff" ], "Date": [ - "Sat, 26 Mar 2022 09:29:05 GMT" + "Mon, 16 May 2022 15:54:51 GMT" ], "Expires": [ "-1" @@ -6468,13 +7436,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzA2NTc4OTk3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekEyTlRjNE9UazNMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzAzMjYzQzhCLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekF6TWpZelF6aENMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" @@ -6488,16 +7456,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11982" + "11987" ], "x-ms-request-id": [ - "61cc3278-b294-4866-a7d1-691185fb4f20" + "336cc0d5-c5fd-4be5-a692-d9350f61af61" ], "x-ms-correlation-request-id": [ - "61cc3278-b294-4866-a7d1-691185fb4f20" + "336cc0d5-c5fd-4be5-a692-d9350f61af61" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T092906Z:61cc3278-b294-4866-a7d1-691185fb4f20" + "WESTINDIA:20220516T155452Z:336cc0d5-c5fd-4be5-a692-d9350f61af61" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6506,7 +7474,7 @@ "nosniff" ], "Date": [ - "Sat, 26 Mar 2022 09:29:05 GMT" + "Mon, 16 May 2022 15:54:51 GMT" ], "Expires": [ "-1" @@ -6522,6 +7490,6 @@ "Names": {}, "Variables": { "SubscriptionId": "38304e13-357e-405e-9e9a-220351dcce8c", - "NamingSuffix": "06578997-c9f5-4e05-93c2-18337d40f923" + "NamingSuffix": "03263c8b-a4ab-477c-863d-cdc8b227eb4b" } } \ No newline at end of file diff --git a/src/RecoveryServices/RecoveryServices.Backup.Test/SessionRecords/Microsoft.Azure.Commands.RecoveryServices.Backup.Test.ScenarioTests.ItemTests/TestAzureFSBackup.json b/src/RecoveryServices/RecoveryServices.Backup.Test/SessionRecords/Microsoft.Azure.Commands.RecoveryServices.Backup.Test.ScenarioTests.ItemTests/TestAzureFSBackup.json index 9804bfd1cd94..04d0db7df611 100644 --- a/src/RecoveryServices/RecoveryServices.Backup.Test/SessionRecords/Microsoft.Azure.Commands.RecoveryServices.Backup.Test.ScenarioTests.ItemTests/TestAzureFSBackup.json +++ b/src/RecoveryServices/RecoveryServices.Backup.Test/SessionRecords/Microsoft.Azure.Commands.RecoveryServices.Backup.Test.ScenarioTests.ItemTests/TestAzureFSBackup.json @@ -7,13 +7,13 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "18dc92a1-78ab-4347-9e4c-e76ef4666210" + "7161b87e-7be6-4f1a-a165-13447239488f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesClient/4.3.2.0" @@ -30,10 +30,10 @@ "nosniff" ], "x-ms-request-id": [ - "72f4927b-dad6-455b-b79c-95376fbdb098" + "265ed8a6-d85a-4fd3-844a-f3697d9f59b0" ], "x-ms-client-request-id": [ - "18dc92a1-78ab-4347-9e4c-e76ef4666210" + "7161b87e-7be6-4f1a-a165-13447239488f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -42,19 +42,19 @@ "Microsoft-IIS/10.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11998" ], "x-ms-correlation-request-id": [ - "72f4927b-dad6-455b-b79c-95376fbdb098" + "265ed8a6-d85a-4fd3-844a-f3697d9f59b0" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T094728Z:72f4927b-dad6-455b-b79c-95376fbdb098" + "WESTINDIA:20220516T160349Z:265ed8a6-d85a-4fd3-844a-f3697d9f59b0" ], "Date": [ - "Sat, 26 Mar 2022 09:47:28 GMT" + "Mon, 16 May 2022 16:03:48 GMT" ], "Content-Length": [ - "467" + "519" ], "Content-Type": [ "application/json" @@ -63,26 +63,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pstestrsv8895\",\r\n \"etag\": \"W/\\\"datetime'2022-02-18T07%3A20%3A25.5509044Z'\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateEndpointStateForBackup\": \"None\",\r\n \"privateEndpointStateForSiteRecovery\": \"None\"\r\n },\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"RS0\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pstestrsv8895\",\r\n \"etag\": \"W/\\\"datetime'2022-02-18T07%3A20%3A25.5509044Z'\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateEndpointStateForBackup\": \"None\",\r\n \"privateEndpointStateForSiteRecovery\": \"None\",\r\n \"networkSettings\": {\r\n \"publicNetworkAccess\": \"Enabled\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"RS0\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupProtectionContainers?$filter=friendlyName%20eq%20'pstestsa8895'%20and%20backupManagementType%20eq%20'AzureStorage'%20and%20status%20eq%20'Registered'&api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwUHJvdGVjdGlvbkNvbnRhaW5lcnM/JGZpbHRlcj1mcmllbmRseU5hbWUlMjBlcSUyMCdwc3Rlc3RzYTg4OTUnJTIwYW5kJTIwYmFja3VwTWFuYWdlbWVudFR5cGUlMjBlcSUyMCdBenVyZVN0b3JhZ2UnJTIwYW5kJTIwc3RhdHVzJTIwZXElMjAnUmVnaXN0ZXJlZCcmYXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupProtectionContainers?$filter=friendlyName%20eq%20'pstestsa8895'%20and%20backupManagementType%20eq%20'AzureStorage'%20and%20status%20eq%20'Registered'&api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwUHJvdGVjdGlvbkNvbnRhaW5lcnM/JGZpbHRlcj1mcmllbmRseU5hbWUlMjBlcSUyMCdwc3Rlc3RzYTg4OTUnJTIwYW5kJTIwYmFja3VwTWFuYWdlbWVudFR5cGUlMjBlcSUyMCdBenVyZVN0b3JhZ2UnJTIwYW5kJTIwc3RhdHVzJTIwZXElMjAnUmVnaXN0ZXJlZCcmYXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cb17e805-fe7a-43e3-817f-ee3d71f96214" + "387eb5c7-060d-4895-9869-d74a731f800c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -96,11 +96,11 @@ "nosniff" ], "x-ms-request-id": [ - "039e9e30-b747-4fa0-b37d-7c62d3d0d156" + "94655d2f-9c6c-4054-9766-a088d5150b8b" ], "x-ms-client-request-id": [ - "cb17e805-fe7a-43e3-817f-ee3d71f96214", - "cb17e805-fe7a-43e3-817f-ee3d71f96214" + "387eb5c7-060d-4895-9869-d74a731f800c", + "387eb5c7-060d-4895-9869-d74a731f800c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -115,13 +115,13 @@ "299" ], "x-ms-correlation-request-id": [ - "039e9e30-b747-4fa0-b37d-7c62d3d0d156" + "94655d2f-9c6c-4054-9766-a088d5150b8b" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T094729Z:039e9e30-b747-4fa0-b37d-7c62d3d0d156" + "WESTINDIA:20220516T160349Z:94655d2f-9c6c-4054-9766-a088d5150b8b" ], "Date": [ - "Sat, 26 Mar 2022 09:47:29 GMT" + "Mon, 16 May 2022 16:03:49 GMT" ], "Content-Length": [ "12" @@ -137,22 +137,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupProtectionContainers?$filter=friendlyName%20eq%20'pstestsa8895'%20and%20backupManagementType%20eq%20'AzureStorage'%20and%20status%20eq%20'Registered'&api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwUHJvdGVjdGlvbkNvbnRhaW5lcnM/JGZpbHRlcj1mcmllbmRseU5hbWUlMjBlcSUyMCdwc3Rlc3RzYTg4OTUnJTIwYW5kJTIwYmFja3VwTWFuYWdlbWVudFR5cGUlMjBlcSUyMCdBenVyZVN0b3JhZ2UnJTIwYW5kJTIwc3RhdHVzJTIwZXElMjAnUmVnaXN0ZXJlZCcmYXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupProtectionContainers?$filter=friendlyName%20eq%20'pstestsa8895'%20and%20backupManagementType%20eq%20'AzureStorage'%20and%20status%20eq%20'Registered'&api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwUHJvdGVjdGlvbkNvbnRhaW5lcnM/JGZpbHRlcj1mcmllbmRseU5hbWUlMjBlcSUyMCdwc3Rlc3RzYTg4OTUnJTIwYW5kJTIwYmFja3VwTWFuYWdlbWVudFR5cGUlMjBlcSUyMCdBenVyZVN0b3JhZ2UnJTIwYW5kJTIwc3RhdHVzJTIwZXElMjAnUmVnaXN0ZXJlZCcmYXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1f0b0d39-e997-49d5-a409-3f2aee30e727" + "d1d5f1a1-39eb-4f20-8b05-1aaf01d3ae3e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -166,11 +166,11 @@ "nosniff" ], "x-ms-request-id": [ - "ada57940-5e90-4088-a143-541cbe614733" + "55dab1bc-16af-419b-9fd9-39594363e86e" ], "x-ms-client-request-id": [ - "1f0b0d39-e997-49d5-a409-3f2aee30e727", - "1f0b0d39-e997-49d5-a409-3f2aee30e727" + "d1d5f1a1-39eb-4f20-8b05-1aaf01d3ae3e", + "d1d5f1a1-39eb-4f20-8b05-1aaf01d3ae3e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,13 +185,13 @@ "297" ], "x-ms-correlation-request-id": [ - "ada57940-5e90-4088-a143-541cbe614733" + "55dab1bc-16af-419b-9fd9-39594363e86e" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T094848Z:ada57940-5e90-4088-a143-541cbe614733" + "WESTINDIA:20220516T160457Z:55dab1bc-16af-419b-9fd9-39594363e86e" ], "Date": [ - "Sat, 26 Mar 2022 09:48:48 GMT" + "Mon, 16 May 2022 16:04:57 GMT" ], "Content-Length": [ "827" @@ -207,22 +207,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupProtectionContainers?$filter=friendlyName%20eq%20'pstestsa8895'%20and%20backupManagementType%20eq%20'AzureStorage'%20and%20status%20eq%20'Registered'&api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwUHJvdGVjdGlvbkNvbnRhaW5lcnM/JGZpbHRlcj1mcmllbmRseU5hbWUlMjBlcSUyMCdwc3Rlc3RzYTg4OTUnJTIwYW5kJTIwYmFja3VwTWFuYWdlbWVudFR5cGUlMjBlcSUyMCdBenVyZVN0b3JhZ2UnJTIwYW5kJTIwc3RhdHVzJTIwZXElMjAnUmVnaXN0ZXJlZCcmYXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupProtectionContainers?$filter=friendlyName%20eq%20'pstestsa8895'%20and%20backupManagementType%20eq%20'AzureStorage'%20and%20status%20eq%20'Registered'&api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwUHJvdGVjdGlvbkNvbnRhaW5lcnM/JGZpbHRlcj1mcmllbmRseU5hbWUlMjBlcSUyMCdwc3Rlc3RzYTg4OTUnJTIwYW5kJTIwYmFja3VwTWFuYWdlbWVudFR5cGUlMjBlcSUyMCdBenVyZVN0b3JhZ2UnJTIwYW5kJTIwc3RhdHVzJTIwZXElMjAnUmVnaXN0ZXJlZCcmYXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0a684801-8869-468f-a261-1584ffa6d8cd" + "c78875dc-097b-43c3-b759-a08aa5188a3c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -236,11 +236,11 @@ "nosniff" ], "x-ms-request-id": [ - "add6ab88-5335-49af-92e5-cd4ca068bd20" + "4a0d0e3d-73b8-45ee-bf78-92a22575ef3b" ], "x-ms-client-request-id": [ - "0a684801-8869-468f-a261-1584ffa6d8cd", - "0a684801-8869-468f-a261-1584ffa6d8cd" + "c78875dc-097b-43c3-b759-a08aa5188a3c", + "c78875dc-097b-43c3-b759-a08aa5188a3c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -255,13 +255,13 @@ "296" ], "x-ms-correlation-request-id": [ - "add6ab88-5335-49af-92e5-cd4ca068bd20" + "4a0d0e3d-73b8-45ee-bf78-92a22575ef3b" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T094850Z:add6ab88-5335-49af-92e5-cd4ca068bd20" + "WESTINDIA:20220516T160459Z:4a0d0e3d-73b8-45ee-bf78-92a22575ef3b" ], "Date": [ - "Sat, 26 Mar 2022 09:48:49 GMT" + "Mon, 16 May 2022 16:04:58 GMT" ], "Content-Length": [ "827" @@ -277,22 +277,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupPolicies/afspolicy1?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwUG9saWNpZXMvYWZzcG9saWN5MT9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupPolicies/afspolicy1?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwUG9saWNpZXMvYWZzcG9saWN5MT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f76b5e1d-1c08-4bbe-a85c-876c2fc116d1" + "d53c293a-012f-433e-959b-7c5db28ea455" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -306,11 +306,11 @@ "nosniff" ], "x-ms-request-id": [ - "cef2cadc-e5e7-43e2-bd8f-1a248ff2ecc6" + "2c9aeeb6-33df-4f60-9b48-48d753ab3040" ], "x-ms-client-request-id": [ - "f76b5e1d-1c08-4bbe-a85c-876c2fc116d1", - "f76b5e1d-1c08-4bbe-a85c-876c2fc116d1" + "d53c293a-012f-433e-959b-7c5db28ea455", + "d53c293a-012f-433e-959b-7c5db28ea455" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -325,13 +325,13 @@ "299" ], "x-ms-correlation-request-id": [ - "cef2cadc-e5e7-43e2-bd8f-1a248ff2ecc6" + "2c9aeeb6-33df-4f60-9b48-48d753ab3040" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T094730Z:cef2cadc-e5e7-43e2-bd8f-1a248ff2ecc6" + "WESTINDIA:20220516T160350Z:2c9aeeb6-33df-4f60-9b48-48d753ab3040" ], "Date": [ - "Sat, 26 Mar 2022 09:47:29 GMT" + "Mon, 16 May 2022 16:03:50 GMT" ], "Content-Length": [ "693" @@ -347,22 +347,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupProtectionContainers?$filter=backupManagementType%20eq%20'AzureStorage'&api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwUHJvdGVjdGlvbkNvbnRhaW5lcnM/JGZpbHRlcj1iYWNrdXBNYW5hZ2VtZW50VHlwZSUyMGVxJTIwJ0F6dXJlU3RvcmFnZScmYXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupProtectionContainers?$filter=backupManagementType%20eq%20'AzureStorage'&api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwUHJvdGVjdGlvbkNvbnRhaW5lcnM/JGZpbHRlcj1iYWNrdXBNYW5hZ2VtZW50VHlwZSUyMGVxJTIwJ0F6dXJlU3RvcmFnZScmYXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "19f80edc-34d0-4416-bb59-dfd0ac6da4f0" + "a8a5427d-d0da-49e9-b70f-23d8fc1d4ab1" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -376,11 +376,11 @@ "nosniff" ], "x-ms-request-id": [ - "69ba6603-71da-499e-8770-5dfb28017b7a" + "6ab609f5-ae72-49e0-a570-ec817fb8340f" ], "x-ms-client-request-id": [ - "19f80edc-34d0-4416-bb59-dfd0ac6da4f0", - "19f80edc-34d0-4416-bb59-dfd0ac6da4f0" + "a8a5427d-d0da-49e9-b70f-23d8fc1d4ab1", + "a8a5427d-d0da-49e9-b70f-23d8fc1d4ab1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -395,13 +395,13 @@ "298" ], "x-ms-correlation-request-id": [ - "69ba6603-71da-499e-8770-5dfb28017b7a" + "6ab609f5-ae72-49e0-a570-ec817fb8340f" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T094730Z:69ba6603-71da-499e-8770-5dfb28017b7a" + "WESTINDIA:20220516T160350Z:6ab609f5-ae72-49e0-a570-ec817fb8340f" ], "Date": [ - "Sat, 26 Mar 2022 09:47:30 GMT" + "Mon, 16 May 2022 16:03:50 GMT" ], "Content-Length": [ "12" @@ -417,22 +417,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers?$filter=backupManagementType%20eq%20'AzureStorage'&api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0YWJsZUNvbnRhaW5lcnM/JGZpbHRlcj1iYWNrdXBNYW5hZ2VtZW50VHlwZSUyMGVxJTIwJ0F6dXJlU3RvcmFnZScmYXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers?$filter=backupManagementType%20eq%20'AzureStorage'&api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0YWJsZUNvbnRhaW5lcnM/JGZpbHRlcj1iYWNrdXBNYW5hZ2VtZW50VHlwZSUyMGVxJTIwJ0F6dXJlU3RvcmFnZScmYXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "19f80edc-34d0-4416-bb59-dfd0ac6da4f0" + "a8a5427d-d0da-49e9-b70f-23d8fc1d4ab1" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -446,11 +446,11 @@ "nosniff" ], "x-ms-request-id": [ - "a05d99e2-283d-47db-bd56-720fedb1d07a" + "8c366a19-41b4-4af6-83e1-b3c57e949879" ], "x-ms-client-request-id": [ - "19f80edc-34d0-4416-bb59-dfd0ac6da4f0", - "19f80edc-34d0-4416-bb59-dfd0ac6da4f0" + "a8a5427d-d0da-49e9-b70f-23d8fc1d4ab1", + "a8a5427d-d0da-49e9-b70f-23d8fc1d4ab1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -465,16 +465,16 @@ "299" ], "x-ms-correlation-request-id": [ - "a05d99e2-283d-47db-bd56-720fedb1d07a" + "8c366a19-41b4-4af6-83e1-b3c57e949879" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T094730Z:a05d99e2-283d-47db-bd56-720fedb1d07a" + "WESTINDIA:20220516T160351Z:8c366a19-41b4-4af6-83e1-b3c57e949879" ], "Date": [ - "Sat, 26 Mar 2022 09:47:30 GMT" + "Mon, 16 May 2022 16:03:50 GMT" ], "Content-Length": [ - "14925" + "24516" ], "Content-Type": [ "application/json" @@ -483,26 +483,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;afstests;02xseacan01otds1\",\r\n \"name\": \"StorageContainer;Storage;afstests;02xseacan01otds1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"02xseacan01otds1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/02xseacan01otds1\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;afstests;afsbackupsa\",\r\n \"name\": \"StorageContainer;Storage;afstests;afsbackupsa\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"afsbackupsa\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/afsbackupsa\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;afstests;storageysci5wbex6jyc\",\r\n \"name\": \"StorageContainer;Storage;afstests;storageysci5wbex6jyc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"storageysci5wbex6jyc\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/storageysci5wbex6jyc\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;akkanaseCMK;0byseapod01otds1\",\r\n \"name\": \"StorageContainer;Storage;akkanaseCMK;0byseapod01otds1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"0byseapod01otds1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseCMK/providers/Microsoft.Storage/storageAccounts/0byseapod01otds1\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;akkanaseGRSVault;frmseapod01otds1\",\r\n \"name\": \"StorageContainer;Storage;akkanaseGRSVault;frmseapod01otds1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"frmseapod01otds1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseGRSVault/providers/Microsoft.Storage/storageAccounts/frmseapod01otds1\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;cmk.system;cmkautomationstore\",\r\n \"name\": \"StorageContainer;Storage;cmk.system;cmkautomationstore\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"cmkautomationstore\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/cmk.system/providers/Microsoft.Storage/storageAccounts/cmkautomationstore\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;disk-bvt-test-rg;hv3seapod01otds1\",\r\n \"name\": \"StorageContainer;Storage;disk-bvt-test-rg;hv3seapod01otds1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"hv3seapod01otds1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/disk-bvt-test-rg/providers/Microsoft.Storage/storageAccounts/hv3seapod01otds1\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;DoNotUse-OSS-BVT-SEA-RG;dontuseossrestoreasfile\",\r\n \"name\": \"StorageContainer;Storage;DoNotUse-OSS-BVT-SEA-RG;dontuseossrestoreasfile\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"dontuseossrestoreasfile\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/DoNotUse-OSS-BVT-SEA-RG/providers/Microsoft.Storage/storageAccounts/dontuseossrestoreasfile\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;iaasvm.encryptedvm;iaasvmencryptedvmdiag170\",\r\n \"name\": \"StorageContainer;Storage;iaasvm.encryptedvm;iaasvmencryptedvmdiag170\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"iaasvmencryptedvmdiag170\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.encryptedvm/providers/Microsoft.Storage/storageAccounts/iaasvmencryptedvmdiag170\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;iaasvm.existing;iaasextstore1\",\r\n \"name\": \"StorageContainer;Storage;iaasvm.existing;iaasextstore1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"iaasextstore1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.existing/providers/Microsoft.Storage/storageAccounts/iaasextstore1\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;iaasvm.new;iaasvmnewdiag1\",\r\n \"name\": \"StorageContainer;Storage;iaasvm.new;iaasvmnewdiag1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"iaasvmnewdiag1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.new/providers/Microsoft.Storage/storageAccounts/iaasvmnewdiag1\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;iaasvmhanaworkload.existing;iaasvmhanaworkloadexisti\",\r\n \"name\": \"StorageContainer;Storage;iaasvmhanaworkload.existing;iaasvmhanaworkloadexisti\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"iaasvmhanaworkloadexisti\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvmhanaworkload.existing/providers/Microsoft.Storage/storageAccounts/iaasvmhanaworkloadexisti\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;pscloudtestrg;pscloudtestrgdiag\",\r\n \"name\": \"StorageContainer;Storage;pscloudtestrg;pscloudtestrgdiag\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"pscloudtestrgdiag\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pscloudtestrg/providers/Microsoft.Storage/storageAccounts/pscloudtestrgdiag\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;PSTestRG1e5a278b;pstestsa1e5a278b\",\r\n \"name\": \"StorageContainer;Storage;PSTestRG1e5a278b;pstestsa1e5a278b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"pstestsa1e5a278b\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG1e5a278b/providers/Microsoft.Storage/storageAccounts/pstestsa1e5a278b\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;PSTestRG235879ba;pstestsa235879ba\",\r\n \"name\": \"StorageContainer;Storage;PSTestRG235879ba;pstestsa235879ba\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"pstestsa235879ba\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG235879ba/providers/Microsoft.Storage/storageAccounts/pstestsa235879ba\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;PSTestRG54bdf8da;pstestsa54bdf8da\",\r\n \"name\": \"StorageContainer;Storage;PSTestRG54bdf8da;pstestsa54bdf8da\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"pstestsa54bdf8da\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG54bdf8da/providers/Microsoft.Storage/storageAccounts/pstestsa54bdf8da\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;PSTestRG59e1706f;pstestsa59e1706f\",\r\n \"name\": \"StorageContainer;Storage;PSTestRG59e1706f;pstestsa59e1706f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"pstestsa59e1706f\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG59e1706f/providers/Microsoft.Storage/storageAccounts/pstestsa59e1706f\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895\",\r\n \"name\": \"StorageContainer;Storage;pstestrg8895;pstestsa8895\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"pstestsa8895\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstestsa8895\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;pstestrg8895;pstesttargetsa8895\",\r\n \"name\": \"StorageContainer;Storage;pstestrg8895;pstesttargetsa8895\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"pstesttargetsa8895\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstesttargetsa8895\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;pstestrg8895;pstesttargetsa8896\",\r\n \"name\": \"StorageContainer;Storage;pstestrg8895;pstesttargetsa8896\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"pstesttargetsa8896\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstesttargetsa8896\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;sambit_rg;sarathsa3\",\r\n \"name\": \"StorageContainer;Storage;sambit_rg;sarathsa3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"sarathsa3\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/sambit_rg/providers/Microsoft.Storage/storageAccounts/sarathsa3\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;afstests;02xseacan01otds1\",\r\n \"name\": \"StorageContainer;Storage;afstests;02xseacan01otds1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"02xseacan01otds1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/02xseacan01otds1\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;afstests;afsbackupsa\",\r\n \"name\": \"StorageContainer;Storage;afstests;afsbackupsa\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"afsbackupsa\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/afsbackupsa\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;afstests;storageysci5wbex6jyc\",\r\n \"name\": \"StorageContainer;Storage;afstests;storageysci5wbex6jyc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"storageysci5wbex6jyc\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/storageysci5wbex6jyc\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;akkanaseCMK;0byseapod01otds1\",\r\n \"name\": \"StorageContainer;Storage;akkanaseCMK;0byseapod01otds1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"0byseapod01otds1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseCMK/providers/Microsoft.Storage/storageAccounts/0byseapod01otds1\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;akkanaseGRSVault;frmseapod01otds1\",\r\n \"name\": \"StorageContainer;Storage;akkanaseGRSVault;frmseapod01otds1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"frmseapod01otds1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseGRSVault/providers/Microsoft.Storage/storageAccounts/frmseapod01otds1\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rg2z2u2iy224;clitestupktrqr622evq7uzq\",\r\n \"name\": \"StorageContainer;Storage;clitest.rg2z2u2iy224;clitestupktrqr622evq7uzq\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"clitestupktrqr622evq7uzq\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rg2z2u2iy224/providers/Microsoft.Storage/storageAccounts/clitestupktrqr622evq7uzq\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rg3szxf3a3my;clitestjcdqcd3tnqg5bhtr2\",\r\n \"name\": \"StorageContainer;Storage;clitest.rg3szxf3a3my;clitestjcdqcd3tnqg5bhtr2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"clitestjcdqcd3tnqg5bhtr2\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rg3szxf3a3my/providers/Microsoft.Storage/storageAccounts/clitestjcdqcd3tnqg5bhtr2\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rg5daabmbo3e;clitestfky4kz2v5vosldvhe\",\r\n \"name\": \"StorageContainer;Storage;clitest.rg5daabmbo3e;clitestfky4kz2v5vosldvhe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"clitestfky4kz2v5vosldvhe\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rg5daabmbo3e/providers/Microsoft.Storage/storageAccounts/clitestfky4kz2v5vosldvhe\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rg7leptekwovuif35xu6k3mb6lhszl4fkmod7jkg7yckt4v7epruxvjo6ty2hzsurwh;clitest3cgxtcwowikxqlds4\",\r\n \"name\": \"StorageContainer;Storage;clitest.rg7leptekwovuif35xu6k3mb6lhszl4fkmod7jkg7yckt4v7epruxvjo6ty2hzsurwh;clitest3cgxtcwowikxqlds4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"clitest3cgxtcwowikxqlds4\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rg7leptekwovuif35xu6k3mb6lhszl4fkmod7jkg7yckt4v7epruxvjo6ty2hzsurwh/providers/Microsoft.Storage/storageAccounts/clitest3cgxtcwowikxqlds4\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgbwwuivauc5;clitesttmyfbjqgepkrqhedt\",\r\n \"name\": \"StorageContainer;Storage;clitest.rgbwwuivauc5;clitesttmyfbjqgepkrqhedt\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"clitesttmyfbjqgepkrqhedt\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rgbwwuivauc5/providers/Microsoft.Storage/storageAccounts/clitesttmyfbjqgepkrqhedt\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgf6xl2fxqfv;clitestophphng5ygnzbvq3a\",\r\n \"name\": \"StorageContainer;Storage;clitest.rgf6xl2fxqfv;clitestophphng5ygnzbvq3a\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"clitestophphng5ygnzbvq3a\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rgf6xl2fxqfv/providers/Microsoft.Storage/storageAccounts/clitestophphng5ygnzbvq3a\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rglgudxl7bi5;clitestvv2va5tikpqjvoq6o\",\r\n \"name\": \"StorageContainer;Storage;clitest.rglgudxl7bi5;clitestvv2va5tikpqjvoq6o\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"clitestvv2va5tikpqjvoq6o\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rglgudxl7bi5/providers/Microsoft.Storage/storageAccounts/clitestvv2va5tikpqjvoq6o\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rglx72s62qimgelno2o6rr34a5ovdikhzq5k6dc7773qrbodtnrdcguic5hpiciscne;clitestva4qmim2g5c3cb2tz\",\r\n \"name\": \"StorageContainer;Storage;clitest.rglx72s62qimgelno2o6rr34a5ovdikhzq5k6dc7773qrbodtnrdcguic5hpiciscne;clitestva4qmim2g5c3cb2tz\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"clitestva4qmim2g5c3cb2tz\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rglx72s62qimgelno2o6rr34a5ovdikhzq5k6dc7773qrbodtnrdcguic5hpiciscne/providers/Microsoft.Storage/storageAccounts/clitestva4qmim2g5c3cb2tz\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgm7e2kiyzoto4iaicwwkdomftb7zki5kh2xxwh6yyskpflgsrpkrygkpwpdcltggyb;clitest7gyg4gqt4sxirqdkc\",\r\n \"name\": \"StorageContainer;Storage;clitest.rgm7e2kiyzoto4iaicwwkdomftb7zki5kh2xxwh6yyskpflgsrpkrygkpwpdcltggyb;clitest7gyg4gqt4sxirqdkc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"clitest7gyg4gqt4sxirqdkc\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rgm7e2kiyzoto4iaicwwkdomftb7zki5kh2xxwh6yyskpflgsrpkrygkpwpdcltggyb/providers/Microsoft.Storage/storageAccounts/clitest7gyg4gqt4sxirqdkc\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgqhfzt7fh5x;clitestz6nwne7j34dloacko\",\r\n \"name\": \"StorageContainer;Storage;clitest.rgqhfzt7fh5x;clitestz6nwne7j34dloacko\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"clitestz6nwne7j34dloacko\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rgqhfzt7fh5x/providers/Microsoft.Storage/storageAccounts/clitestz6nwne7j34dloacko\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgwsn3drxg3s;clitestukj4en4puxeag7shu\",\r\n \"name\": \"StorageContainer;Storage;clitest.rgwsn3drxg3s;clitestukj4en4puxeag7shu\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"clitestukj4en4puxeag7shu\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rgwsn3drxg3s/providers/Microsoft.Storage/storageAccounts/clitestukj4en4puxeag7shu\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgwsn3drxg3s;clitestw7rgjg33mzx6cc3su\",\r\n \"name\": \"StorageContainer;Storage;clitest.rgwsn3drxg3s;clitestw7rgjg33mzx6cc3su\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"clitestw7rgjg33mzx6cc3su\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rgwsn3drxg3s/providers/Microsoft.Storage/storageAccounts/clitestw7rgjg33mzx6cc3su\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;cmk.system;cmkautomationstore\",\r\n \"name\": \"StorageContainer;Storage;cmk.system;cmkautomationstore\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"cmkautomationstore\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/cmk.system/providers/Microsoft.Storage/storageAccounts/cmkautomationstore\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;disk-bvt-test-rg;hv3seapod01otds1\",\r\n \"name\": \"StorageContainer;Storage;disk-bvt-test-rg;hv3seapod01otds1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"hv3seapod01otds1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/disk-bvt-test-rg/providers/Microsoft.Storage/storageAccounts/hv3seapod01otds1\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;DoNotUse-OSS-BVT-SEA-RG;dontuseossrestoreasfile\",\r\n \"name\": \"StorageContainer;Storage;DoNotUse-OSS-BVT-SEA-RG;dontuseossrestoreasfile\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"dontuseossrestoreasfile\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/DoNotUse-OSS-BVT-SEA-RG/providers/Microsoft.Storage/storageAccounts/dontuseossrestoreasfile\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;iaasvm.encryptedvm;iaasvmencryptedvmdiag170\",\r\n \"name\": \"StorageContainer;Storage;iaasvm.encryptedvm;iaasvmencryptedvmdiag170\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"iaasvmencryptedvmdiag170\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.encryptedvm/providers/Microsoft.Storage/storageAccounts/iaasvmencryptedvmdiag170\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;iaasvm.existing;iaasextstore1\",\r\n \"name\": \"StorageContainer;Storage;iaasvm.existing;iaasextstore1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"iaasextstore1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.existing/providers/Microsoft.Storage/storageAccounts/iaasextstore1\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;iaasvm.new;iaasvmnewdiag1\",\r\n \"name\": \"StorageContainer;Storage;iaasvm.new;iaasvmnewdiag1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"iaasvmnewdiag1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.new/providers/Microsoft.Storage/storageAccounts/iaasvmnewdiag1\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;iaasvmhanaworkload.existing;iaasvmhanaworkloadexisti\",\r\n \"name\": \"StorageContainer;Storage;iaasvmhanaworkload.existing;iaasvmhanaworkloadexisti\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"iaasvmhanaworkloadexisti\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvmhanaworkload.existing/providers/Microsoft.Storage/storageAccounts/iaasvmhanaworkloadexisti\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;pscloudtestrg;pscloudtestrgdiag\",\r\n \"name\": \"StorageContainer;Storage;pscloudtestrg;pscloudtestrgdiag\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"pscloudtestrgdiag\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pscloudtestrg/providers/Microsoft.Storage/storageAccounts/pscloudtestrgdiag\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;PSTestRG1e5a278b;pstestsa1e5a278b\",\r\n \"name\": \"StorageContainer;Storage;PSTestRG1e5a278b;pstestsa1e5a278b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"pstestsa1e5a278b\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG1e5a278b/providers/Microsoft.Storage/storageAccounts/pstestsa1e5a278b\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;PSTestRG235879ba;pstestsa235879ba\",\r\n \"name\": \"StorageContainer;Storage;PSTestRG235879ba;pstestsa235879ba\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"pstestsa235879ba\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG235879ba/providers/Microsoft.Storage/storageAccounts/pstestsa235879ba\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;PSTestRG54bdf8da;pstestsa54bdf8da\",\r\n \"name\": \"StorageContainer;Storage;PSTestRG54bdf8da;pstestsa54bdf8da\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"pstestsa54bdf8da\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG54bdf8da/providers/Microsoft.Storage/storageAccounts/pstestsa54bdf8da\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;PSTestRG59e1706f;pstestsa59e1706f\",\r\n \"name\": \"StorageContainer;Storage;PSTestRG59e1706f;pstestsa59e1706f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"pstestsa59e1706f\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG59e1706f/providers/Microsoft.Storage/storageAccounts/pstestsa59e1706f\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895\",\r\n \"name\": \"StorageContainer;Storage;pstestrg8895;pstestsa8895\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"pstestsa8895\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstestsa8895\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;pstestrg8895;pstesttargetsa8895\",\r\n \"name\": \"StorageContainer;Storage;pstestrg8895;pstesttargetsa8895\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"pstesttargetsa8895\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstesttargetsa8895\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;pstestrg8895;pstesttargetsa8896\",\r\n \"name\": \"StorageContainer;Storage;pstestrg8895;pstesttargetsa8896\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"pstesttargetsa8896\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstesttargetsa8896\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;sambit_rg;sarathsa3\",\r\n \"name\": \"StorageContainer;Storage;sambit_rg;sarathsa3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"sarathsa3\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/sambit_rg/providers/Microsoft.Storage/storageAccounts/sarathsa3\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NT9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"containerType\": \"StorageContainer\",\r\n \"sourceResourceId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstestsa8895\",\r\n \"resourceGroup\": \"pstestrg8895\",\r\n \"friendlyName\": \"pstestsa8895\",\r\n \"backupManagementType\": \"AzureStorage\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "19f80edc-34d0-4416-bb59-dfd0ac6da4f0" + "a8a5427d-d0da-49e9-b70f-23d8fc1d4ab1" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -519,23 +519,23 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationResults/69026ef1-5341-4bc7-a119-25ec05178c4c?api-version=2021-12-01" + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationResults/17bd8dfe-0d60-44b9-ac25-cb0d9d755c4f?api-version=2022-02-01" ], "Retry-After": [ "60" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationsStatus/69026ef1-5341-4bc7-a119-25ec05178c4c?api-version=2019-05-13-preview" + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationsStatus/17bd8dfe-0d60-44b9-ac25-cb0d9d755c4f?api-version=2019-05-13-preview" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "f8444427-2486-43cf-8eec-0118f8909309" + "ee47e7a8-f905-40d4-a15f-1b33a2a2fe9e" ], "x-ms-client-request-id": [ - "19f80edc-34d0-4416-bb59-dfd0ac6da4f0", - "19f80edc-34d0-4416-bb59-dfd0ac6da4f0" + "a8a5427d-d0da-49e9-b70f-23d8fc1d4ab1", + "a8a5427d-d0da-49e9-b70f-23d8fc1d4ab1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -550,13 +550,13 @@ "1199" ], "x-ms-correlation-request-id": [ - "f8444427-2486-43cf-8eec-0118f8909309" + "ee47e7a8-f905-40d4-a15f-1b33a2a2fe9e" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T094731Z:f8444427-2486-43cf-8eec-0118f8909309" + "WESTINDIA:20220516T160352Z:ee47e7a8-f905-40d4-a15f-1b33a2a2fe9e" ], "Date": [ - "Sat, 26 Mar 2022 09:47:31 GMT" + "Mon, 16 May 2022 16:03:51 GMT" ], "Content-Length": [ "2" @@ -572,22 +572,22 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895/operationResults/69026ef1-5341-4bc7-a119-25ec05178c4c?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9vcGVyYXRpb25SZXN1bHRzLzY5MDI2ZWYxLTUzNDEtNGJjNy1hMTE5LTI1ZWMwNTE3OGM0Yz9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895/operationResults/17bd8dfe-0d60-44b9-ac25-cb0d9d755c4f?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9vcGVyYXRpb25SZXN1bHRzLzE3YmQ4ZGZlLTBkNjAtNDRiOS1hYzI1LWNiMGQ5ZDc1NWM0Zj9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "19f80edc-34d0-4416-bb59-dfd0ac6da4f0" + "a8a5427d-d0da-49e9-b70f-23d8fc1d4ab1" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -598,23 +598,23 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationResults/69026ef1-5341-4bc7-a119-25ec05178c4c?api-version=2021-12-01" + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationResults/17bd8dfe-0d60-44b9-ac25-cb0d9d755c4f?api-version=2022-02-01" ], "Retry-After": [ "60" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationsStatus/69026ef1-5341-4bc7-a119-25ec05178c4c?api-version=2019-05-13-preview" + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationsStatus/17bd8dfe-0d60-44b9-ac25-cb0d9d755c4f?api-version=2019-05-13-preview" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "3a5297a4-fdf8-45e8-b9ee-5270bf1f630e" + "5876da78-4bf9-4603-8f39-3ae1b74c15bf" ], "x-ms-client-request-id": [ - "19f80edc-34d0-4416-bb59-dfd0ac6da4f0", - "19f80edc-34d0-4416-bb59-dfd0ac6da4f0" + "a8a5427d-d0da-49e9-b70f-23d8fc1d4ab1", + "a8a5427d-d0da-49e9-b70f-23d8fc1d4ab1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -629,13 +629,13 @@ "299" ], "x-ms-correlation-request-id": [ - "3a5297a4-fdf8-45e8-b9ee-5270bf1f630e" + "5876da78-4bf9-4603-8f39-3ae1b74c15bf" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T094732Z:3a5297a4-fdf8-45e8-b9ee-5270bf1f630e" + "WESTINDIA:20220516T160352Z:5876da78-4bf9-4603-8f39-3ae1b74c15bf" ], "Date": [ - "Sat, 26 Mar 2022 09:47:31 GMT" + "Mon, 16 May 2022 16:03:52 GMT" ], "Content-Length": [ "2" @@ -651,22 +651,22 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895/operationResults/69026ef1-5341-4bc7-a119-25ec05178c4c?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9vcGVyYXRpb25SZXN1bHRzLzY5MDI2ZWYxLTUzNDEtNGJjNy1hMTE5LTI1ZWMwNTE3OGM0Yz9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895/operationResults/17bd8dfe-0d60-44b9-ac25-cb0d9d755c4f?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9vcGVyYXRpb25SZXN1bHRzLzE3YmQ4ZGZlLTBkNjAtNDRiOS1hYzI1LWNiMGQ5ZDc1NWM0Zj9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "19f80edc-34d0-4416-bb59-dfd0ac6da4f0" + "a8a5427d-d0da-49e9-b70f-23d8fc1d4ab1" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -677,23 +677,23 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationResults/69026ef1-5341-4bc7-a119-25ec05178c4c?api-version=2021-12-01" + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationResults/17bd8dfe-0d60-44b9-ac25-cb0d9d755c4f?api-version=2022-02-01" ], "Retry-After": [ "60" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationsStatus/69026ef1-5341-4bc7-a119-25ec05178c4c?api-version=2019-05-13-preview" + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationsStatus/17bd8dfe-0d60-44b9-ac25-cb0d9d755c4f?api-version=2019-05-13-preview" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "5aad93cd-4297-448e-a9a8-1f788ba65a2a" + "33bf705f-4d89-4fae-b5f4-b47418f96a9b" ], "x-ms-client-request-id": [ - "19f80edc-34d0-4416-bb59-dfd0ac6da4f0", - "19f80edc-34d0-4416-bb59-dfd0ac6da4f0" + "a8a5427d-d0da-49e9-b70f-23d8fc1d4ab1", + "a8a5427d-d0da-49e9-b70f-23d8fc1d4ab1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -708,13 +708,13 @@ "298" ], "x-ms-correlation-request-id": [ - "5aad93cd-4297-448e-a9a8-1f788ba65a2a" + "33bf705f-4d89-4fae-b5f4-b47418f96a9b" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T094742Z:5aad93cd-4297-448e-a9a8-1f788ba65a2a" + "WESTINDIA:20220516T160358Z:33bf705f-4d89-4fae-b5f4-b47418f96a9b" ], "Date": [ - "Sat, 26 Mar 2022 09:47:42 GMT" + "Mon, 16 May 2022 16:03:57 GMT" ], "Content-Length": [ "2" @@ -730,22 +730,302 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895/operationResults/69026ef1-5341-4bc7-a119-25ec05178c4c?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9vcGVyYXRpb25SZXN1bHRzLzY5MDI2ZWYxLTUzNDEtNGJjNy1hMTE5LTI1ZWMwNTE3OGM0Yz9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895/operationResults/17bd8dfe-0d60-44b9-ac25-cb0d9d755c4f?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9vcGVyYXRpb25SZXN1bHRzLzE3YmQ4ZGZlLTBkNjAtNDRiOS1hYzI1LWNiMGQ5ZDc1NWM0Zj9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "19f80edc-34d0-4416-bb59-dfd0ac6da4f0" + "a8a5427d-d0da-49e9-b70f-23d8fc1d4ab1" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "8eb469a4-4dde-435d-a788-af9602f27954" + ], + "x-ms-client-request-id": [ + "a8a5427d-d0da-49e9-b70f-23d8fc1d4ab1", + "a8a5427d-d0da-49e9-b70f-23d8fc1d4ab1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "297" + ], + "x-ms-correlation-request-id": [ + "8eb469a4-4dde-435d-a788-af9602f27954" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T160403Z:8eb469a4-4dde-435d-a788-af9602f27954" + ], + "Date": [ + "Mon, 16 May 2022 16:04:03 GMT" + ], + "Content-Length": [ + "737" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895\",\r\n \"name\": \"StorageContainer;Storage;pstestrg8895;pstestsa8895\",\r\n \"properties\": {\r\n \"sourceResourceId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstestsa8895\",\r\n \"protectedItemCount\": 0,\r\n \"acquireStorageAccountLock\": \"Acquire\",\r\n \"friendlyName\": \"pstestsa8895\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"registrationStatus\": \"Registered\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerType\": \"StorageContainer\",\r\n \"protectableObjectType\": \"StorageContainer\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895/operationResults/17bd8dfe-0d60-44b9-ac25-cb0d9d755c4f?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9vcGVyYXRpb25SZXN1bHRzLzE3YmQ4ZGZlLTBkNjAtNDRiOS1hYzI1LWNiMGQ5ZDc1NWM0Zj9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a8a5427d-d0da-49e9-b70f-23d8fc1d4ab1" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "e6256a5e-34a6-4721-b9da-8d4f1a61ed00" + ], + "x-ms-client-request-id": [ + "a8a5427d-d0da-49e9-b70f-23d8fc1d4ab1", + "a8a5427d-d0da-49e9-b70f-23d8fc1d4ab1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "296" + ], + "x-ms-correlation-request-id": [ + "e6256a5e-34a6-4721-b9da-8d4f1a61ed00" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T160404Z:e6256a5e-34a6-4721-b9da-8d4f1a61ed00" + ], + "Date": [ + "Mon, 16 May 2022 16:04:03 GMT" + ], + "Content-Length": [ + "737" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895\",\r\n \"name\": \"StorageContainer;Storage;pstestrg8895;pstestsa8895\",\r\n \"properties\": {\r\n \"sourceResourceId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstestsa8895\",\r\n \"protectedItemCount\": 0,\r\n \"acquireStorageAccountLock\": \"Acquire\",\r\n \"friendlyName\": \"pstestsa8895\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"registrationStatus\": \"Registered\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerType\": \"StorageContainer\",\r\n \"protectableObjectType\": \"StorageContainer\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupProtectableItems?$filter=backupManagementType%20eq%20'AzureStorage'&api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwUHJvdGVjdGFibGVJdGVtcz8kZmlsdGVyPWJhY2t1cE1hbmFnZW1lbnRUeXBlJTIwZXElMjAnQXp1cmVTdG9yYWdlJyZhcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a8a5427d-d0da-49e9-b70f-23d8fc1d4ab1" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "8af1bc59-6198-4c5f-a2e7-20b9a1483c61" + ], + "x-ms-client-request-id": [ + "a8a5427d-d0da-49e9-b70f-23d8fc1d4ab1", + "a8a5427d-d0da-49e9-b70f-23d8fc1d4ab1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "299" + ], + "x-ms-correlation-request-id": [ + "8af1bc59-6198-4c5f-a2e7-20b9a1483c61" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T160404Z:8af1bc59-6198-4c5f-a2e7-20b9a1483c61" + ], + "Date": [ + "Mon, 16 May 2022 16:04:03 GMT" + ], + "Content-Length": [ + "12" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupProtectableItems?$filter=backupManagementType%20eq%20'AzureStorage'&api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwUHJvdGVjdGFibGVJdGVtcz8kZmlsdGVyPWJhY2t1cE1hbmFnZW1lbnRUeXBlJTIwZXElMjAnQXp1cmVTdG9yYWdlJyZhcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a8a5427d-d0da-49e9-b70f-23d8fc1d4ab1" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "9e745cc9-276c-4df2-ad2a-2c6d4d4e4df0" + ], + "x-ms-client-request-id": [ + "a8a5427d-d0da-49e9-b70f-23d8fc1d4ab1", + "a8a5427d-d0da-49e9-b70f-23d8fc1d4ab1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "298" + ], + "x-ms-correlation-request-id": [ + "9e745cc9-276c-4df2-ad2a-2c6d4d4e4df0" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T160412Z:9e745cc9-276c-4df2-ad2a-2c6d4d4e4df0" + ], + "Date": [ + "Mon, 16 May 2022 16:04:11 GMT" + ], + "Content-Length": [ + "947" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/storagecontainer;storage;pstestrg8895;pstestsa8895/protectableItems/azurefileshare;698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959\",\r\n \"name\": \"azurefileshare;698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems\",\r\n \"properties\": {\r\n \"parentContainerFabricId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstestsa8895\",\r\n \"parentContainerFriendlyName\": \"pstestsa8895\",\r\n \"azureFileShareType\": \"XSMB\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"workloadType\": \"AzureFileShare\",\r\n \"protectableItemType\": \"AzureFileShare\",\r\n \"friendlyName\": \"fs1\",\r\n \"protectionState\": \"NotProtected\"\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895/inquire?$filter=workloadType%20eq%20'AzureFileShare'&api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9pbnF1aXJlPyRmaWx0ZXI9d29ya2xvYWRUeXBlJTIwZXElMjAnQXp1cmVGaWxlU2hhcmUnJmFwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a8a5427d-d0da-49e9-b70f-23d8fc1d4ab1" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -756,30 +1036,219 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationResults/69026ef1-5341-4bc7-a119-25ec05178c4c?api-version=2021-12-01" + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationResults/0226ae0f-9be1-4ba7-b7cd-41ba925ba601?api-version=2022-02-01" ], "Retry-After": [ "60" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationsStatus/69026ef1-5341-4bc7-a119-25ec05178c4c?api-version=2019-05-13-preview" + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationsStatus/0226ae0f-9be1-4ba7-b7cd-41ba925ba601?api-version=2019-05-13-preview" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "813d3b71-789a-41dc-b069-d16048fa28f5" + ], + "x-ms-client-request-id": [ + "a8a5427d-d0da-49e9-b70f-23d8fc1d4ab1", + "a8a5427d-d0da-49e9-b70f-23d8fc1d4ab1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "813d3b71-789a-41dc-b069-d16048fa28f5" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T160405Z:813d3b71-789a-41dc-b069-d16048fa28f5" + ], + "Date": [ + "Mon, 16 May 2022 16:04:04 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/0226ae0f-9be1-4ba7-b7cd-41ba925ba601?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzLzAyMjZhZTBmLTliZTEtNGJhNy1iN2NkLTQxYmE5MjViYTYwMT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a8a5427d-d0da-49e9-b70f-23d8fc1d4ab1" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/0226ae0f-9be1-4ba7-b7cd-41ba925ba601?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "01bc9a0d-b38b-48da-a4a9-4a5a8b0b96bb" + ], + "x-ms-client-request-id": [ + "a8a5427d-d0da-49e9-b70f-23d8fc1d4ab1", + "a8a5427d-d0da-49e9-b70f-23d8fc1d4ab1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "299" + ], + "x-ms-correlation-request-id": [ + "01bc9a0d-b38b-48da-a4a9-4a5a8b0b96bb" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T160405Z:01bc9a0d-b38b-48da-a4a9-4a5a8b0b96bb" + ], + "Date": [ + "Mon, 16 May 2022 16:04:05 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/0226ae0f-9be1-4ba7-b7cd-41ba925ba601?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzLzAyMjZhZTBmLTliZTEtNGJhNy1iN2NkLTQxYmE5MjViYTYwMT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a8a5427d-d0da-49e9-b70f-23d8fc1d4ab1" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "54916651-d79d-4459-ab64-cd6ba723e188" + ], + "x-ms-client-request-id": [ + "a8a5427d-d0da-49e9-b70f-23d8fc1d4ab1", + "a8a5427d-d0da-49e9-b70f-23d8fc1d4ab1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "298" + ], + "x-ms-correlation-request-id": [ + "54916651-d79d-4459-ab64-cd6ba723e188" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T160411Z:54916651-d79d-4459-ab64-cd6ba723e188" + ], + "Date": [ + "Mon, 16 May 2022 16:04:10 GMT" + ] + }, + "ResponseBody": "", + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/0226ae0f-9be1-4ba7-b7cd-41ba925ba601?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzLzAyMjZhZTBmLTliZTEtNGJhNy1iN2NkLTQxYmE5MjViYTYwMT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a8a5427d-d0da-49e9-b70f-23d8fc1d4ab1" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "ef36418b-c053-4ef2-b422-eb43ea822840" + "d51e0dd6-bd00-4740-bf79-998df70a5ec9" ], "x-ms-client-request-id": [ - "19f80edc-34d0-4416-bb59-dfd0ac6da4f0", - "19f80edc-34d0-4416-bb59-dfd0ac6da4f0" + "a8a5427d-d0da-49e9-b70f-23d8fc1d4ab1", + "a8a5427d-d0da-49e9-b70f-23d8fc1d4ab1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Server": [ - "Microsoft-IIS/10.0" - ], "X-Powered-By": [ "ASP.NET" ], @@ -787,44 +1256,41 @@ "297" ], "x-ms-correlation-request-id": [ - "ef36418b-c053-4ef2-b422-eb43ea822840" + "d51e0dd6-bd00-4740-bf79-998df70a5ec9" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T094753Z:ef36418b-c053-4ef2-b422-eb43ea822840" + "WESTINDIA:20220516T160411Z:d51e0dd6-bd00-4740-bf79-998df70a5ec9" ], "Date": [ - "Sat, 26 Mar 2022 09:47:52 GMT" - ], - "Content-Length": [ - "2" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" + "Mon, 16 May 2022 16:04:10 GMT" ] }, - "ResponseBody": "{}", - "StatusCode": 202 + "ResponseBody": "", + "StatusCode": 204 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895/operationResults/69026ef1-5341-4bc7-a119-25ec05178c4c?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9vcGVyYXRpb25SZXN1bHRzLzY5MDI2ZWYxLTUzNDEtNGJjNy1hMTE5LTI1ZWMwNTE3OGM0Yz9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/storagecontainer%3Bstorage%3Bpstestrg8895%3Bpstestsa8895/protectedItems/azurefileshare%3B698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9zdG9yYWdlY29udGFpbmVyJTNCc3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9wcm90ZWN0ZWRJdGVtcy9henVyZWZpbGVzaGFyZSUzQjY5OGRmNTk1OTQ4ZTIzNTVmMmJiNzQ0YTQxY2YyNDVkNGJhMTI1NWQ5Njk5Y2MzYzJhZDFmNTA0NWUxNzc5NTk/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"protectedItemType\": \"AzureFileShareProtectedItem\",\r\n \"sourceResourceId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstestsa8895\",\r\n \"policyId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupPolicies/afspolicy1\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "19f80edc-34d0-4416-bb59-dfd0ac6da4f0" + "a8a5427d-d0da-49e9-b70f-23d8fc1d4ab1" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "433" ] }, "ResponseHeaders": { @@ -834,67 +1300,70 @@ "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/storagecontainer;storage;pstestrg8895;pstestsa8895/protectedItems/azurefileshare;698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959/operationResults/3778a364-7118-4e6e-bc3c-9cbd5ad18b18?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/storagecontainer;storage;pstestrg8895;pstestsa8895/protectedItems/azurefileshare;698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959/operationsStatus/3778a364-7118-4e6e-bc3c-9cbd5ad18b18?api-version=2022-02-01" + ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "4b437f67-4821-4d37-b1ac-bf50857b7b0a" + "cd08f5e3-adf8-44b5-8eba-041590521d45" ], "x-ms-client-request-id": [ - "19f80edc-34d0-4416-bb59-dfd0ac6da4f0", - "19f80edc-34d0-4416-bb59-dfd0ac6da4f0" + "a8a5427d-d0da-49e9-b70f-23d8fc1d4ab1", + "a8a5427d-d0da-49e9-b70f-23d8fc1d4ab1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Server": [ - "Microsoft-IIS/10.0" - ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "296" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" ], "x-ms-correlation-request-id": [ - "4b437f67-4821-4d37-b1ac-bf50857b7b0a" + "cd08f5e3-adf8-44b5-8eba-041590521d45" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T094803Z:4b437f67-4821-4d37-b1ac-bf50857b7b0a" + "WESTINDIA:20220516T160413Z:cd08f5e3-adf8-44b5-8eba-041590521d45" ], "Date": [ - "Sat, 26 Mar 2022 09:48:02 GMT" - ], - "Content-Length": [ - "737" - ], - "Content-Type": [ - "application/json" + "Mon, 16 May 2022 16:04:12 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895\",\r\n \"name\": \"StorageContainer;Storage;pstestrg8895;pstestsa8895\",\r\n \"properties\": {\r\n \"sourceResourceId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstestsa8895\",\r\n \"protectedItemCount\": 0,\r\n \"acquireStorageAccountLock\": \"Acquire\",\r\n \"friendlyName\": \"pstestsa8895\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"registrationStatus\": \"Registered\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerType\": \"StorageContainer\",\r\n \"protectableObjectType\": \"StorageContainer\"\r\n }\r\n}", - "StatusCode": 200 + "ResponseBody": "", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895/operationResults/69026ef1-5341-4bc7-a119-25ec05178c4c?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9vcGVyYXRpb25SZXN1bHRzLzY5MDI2ZWYxLTUzNDEtNGJjNy1hMTE5LTI1ZWMwNTE3OGM0Yz9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/3778a364-7118-4e6e-bc3c-9cbd5ad18b18?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy8zNzc4YTM2NC03MTE4LTRlNmUtYmMzYy05Y2JkNWFkMThiMTg/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "19f80edc-34d0-4416-bb59-dfd0ac6da4f0" + "a8a5427d-d0da-49e9-b70f-23d8fc1d4ab1" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -908,11 +1377,11 @@ "nosniff" ], "x-ms-request-id": [ - "a1023ab1-937a-4a95-a861-38e28e19825f" + "71d79c34-2ff7-411b-bcc8-0d06c46bf89b" ], "x-ms-client-request-id": [ - "19f80edc-34d0-4416-bb59-dfd0ac6da4f0", - "19f80edc-34d0-4416-bb59-dfd0ac6da4f0" + "a8a5427d-d0da-49e9-b70f-23d8fc1d4ab1", + "a8a5427d-d0da-49e9-b70f-23d8fc1d4ab1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -924,19 +1393,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "295" + "299" ], "x-ms-correlation-request-id": [ - "a1023ab1-937a-4a95-a861-38e28e19825f" + "71d79c34-2ff7-411b-bcc8-0d06c46bf89b" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T094804Z:a1023ab1-937a-4a95-a861-38e28e19825f" + "WESTINDIA:20220516T160413Z:71d79c34-2ff7-411b-bcc8-0d06c46bf89b" ], "Date": [ - "Sat, 26 Mar 2022 09:48:03 GMT" + "Mon, 16 May 2022 16:04:12 GMT" ], "Content-Length": [ - "737" + "188" ], "Content-Type": [ "application/json" @@ -945,26 +1414,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895\",\r\n \"name\": \"StorageContainer;Storage;pstestrg8895;pstestsa8895\",\r\n \"properties\": {\r\n \"sourceResourceId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstestsa8895\",\r\n \"protectedItemCount\": 0,\r\n \"acquireStorageAccountLock\": \"Acquire\",\r\n \"friendlyName\": \"pstestsa8895\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"registrationStatus\": \"Registered\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerType\": \"StorageContainer\",\r\n \"protectableObjectType\": \"StorageContainer\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"3778a364-7118-4e6e-bc3c-9cbd5ad18b18\",\r\n \"name\": \"3778a364-7118-4e6e-bc3c-9cbd5ad18b18\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T16:04:12.9402938Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupProtectableItems?$filter=backupManagementType%20eq%20'AzureStorage'&api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwUHJvdGVjdGFibGVJdGVtcz8kZmlsdGVyPWJhY2t1cE1hbmFnZW1lbnRUeXBlJTIwZXElMjAnQXp1cmVTdG9yYWdlJyZhcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/3778a364-7118-4e6e-bc3c-9cbd5ad18b18?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy8zNzc4YTM2NC03MTE4LTRlNmUtYmMzYy05Y2JkNWFkMThiMTg/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "19f80edc-34d0-4416-bb59-dfd0ac6da4f0" + "a8a5427d-d0da-49e9-b70f-23d8fc1d4ab1" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -978,11 +1447,11 @@ "nosniff" ], "x-ms-request-id": [ - "c5640122-503b-436a-850b-299a0c6c5a4c" + "9c8c3df4-ce1c-4bbd-82f6-2ed3bcd60761" ], "x-ms-client-request-id": [ - "19f80edc-34d0-4416-bb59-dfd0ac6da4f0", - "19f80edc-34d0-4416-bb59-dfd0ac6da4f0" + "a8a5427d-d0da-49e9-b70f-23d8fc1d4ab1", + "a8a5427d-d0da-49e9-b70f-23d8fc1d4ab1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -994,19 +1463,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "299" + "298" ], "x-ms-correlation-request-id": [ - "c5640122-503b-436a-850b-299a0c6c5a4c" + "9c8c3df4-ce1c-4bbd-82f6-2ed3bcd60761" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T094804Z:c5640122-503b-436a-850b-299a0c6c5a4c" + "WESTINDIA:20220516T160422Z:9c8c3df4-ce1c-4bbd-82f6-2ed3bcd60761" ], "Date": [ - "Sat, 26 Mar 2022 09:48:03 GMT" + "Mon, 16 May 2022 16:04:22 GMT" ], "Content-Length": [ - "947" + "188" ], "Content-Type": [ "application/json" @@ -1015,32 +1484,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/storagecontainer;storage;pstestrg8895;pstestsa8895/protectableItems/azurefileshare;698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959\",\r\n \"name\": \"azurefileshare;698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems\",\r\n \"properties\": {\r\n \"parentContainerFabricId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstestsa8895\",\r\n \"parentContainerFriendlyName\": \"pstestsa8895\",\r\n \"azureFileShareType\": \"XSMB\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"workloadType\": \"AzureFileShare\",\r\n \"protectableItemType\": \"AzureFileShare\",\r\n \"friendlyName\": \"fs1\",\r\n \"protectionState\": \"NotProtected\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"3778a364-7118-4e6e-bc3c-9cbd5ad18b18\",\r\n \"name\": \"3778a364-7118-4e6e-bc3c-9cbd5ad18b18\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T16:04:12.9402938Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/storagecontainer%3Bstorage%3Bpstestrg8895%3Bpstestsa8895/protectedItems/azurefileshare%3B698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9zdG9yYWdlY29udGFpbmVyJTNCc3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9wcm90ZWN0ZWRJdGVtcy9henVyZWZpbGVzaGFyZSUzQjY5OGRmNTk1OTQ4ZTIzNTVmMmJiNzQ0YTQxY2YyNDVkNGJhMTI1NWQ5Njk5Y2MzYzJhZDFmNTA0NWUxNzc5NTk/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"protectedItemType\": \"AzureFileShareProtectedItem\",\r\n \"sourceResourceId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstestsa8895\",\r\n \"policyId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupPolicies/afspolicy1\"\r\n }\r\n}", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/3778a364-7118-4e6e-bc3c-9cbd5ad18b18?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy8zNzc4YTM2NC03MTE4LTRlNmUtYmMzYy05Y2JkNWFkMThiMTg/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "19f80edc-34d0-4416-bb59-dfd0ac6da4f0" + "a8a5427d-d0da-49e9-b70f-23d8fc1d4ab1" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "433" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -1050,70 +1513,67 @@ "Pragma": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/storagecontainer;storage;pstestrg8895;pstestsa8895/protectedItems/azurefileshare;698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959/operationResults/e0c24681-3a56-45d3-a167-b84856285288?api-version=2021-12-01" - ], - "Retry-After": [ - "60" - ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/storagecontainer;storage;pstestrg8895;pstestsa8895/protectedItems/azurefileshare;698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959/operationsStatus/e0c24681-3a56-45d3-a167-b84856285288?api-version=2021-12-01" - ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "658162be-ff6e-4122-bc8b-949508500572" + "3d6aca7f-1ac2-4154-8c68-ccbfd1017dc6" ], "x-ms-client-request-id": [ - "19f80edc-34d0-4416-bb59-dfd0ac6da4f0", - "19f80edc-34d0-4416-bb59-dfd0ac6da4f0" + "a8a5427d-d0da-49e9-b70f-23d8fc1d4ab1", + "a8a5427d-d0da-49e9-b70f-23d8fc1d4ab1" ], "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-ratelimit-remaining-subscription-resource-requests": [ + "297" ], "x-ms-correlation-request-id": [ - "658162be-ff6e-4122-bc8b-949508500572" + "3d6aca7f-1ac2-4154-8c68-ccbfd1017dc6" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T094805Z:658162be-ff6e-4122-bc8b-949508500572" + "WESTINDIA:20220516T160428Z:3d6aca7f-1ac2-4154-8c68-ccbfd1017dc6" ], "Date": [ - "Sat, 26 Mar 2022 09:48:04 GMT" + "Mon, 16 May 2022 16:04:27 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, - "ResponseBody": "", - "StatusCode": 202 + "ResponseBody": "{\r\n \"id\": \"3778a364-7118-4e6e-bc3c-9cbd5ad18b18\",\r\n \"name\": \"3778a364-7118-4e6e-bc3c-9cbd5ad18b18\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T16:04:12.9402938Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/e0c24681-3a56-45d3-a167-b84856285288?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9lMGMyNDY4MS0zYTU2LTQ1ZDMtYTE2Ny1iODQ4NTYyODUyODg/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/3778a364-7118-4e6e-bc3c-9cbd5ad18b18?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy8zNzc4YTM2NC03MTE4LTRlNmUtYmMzYy05Y2JkNWFkMThiMTg/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "19f80edc-34d0-4416-bb59-dfd0ac6da4f0" + "a8a5427d-d0da-49e9-b70f-23d8fc1d4ab1" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -1127,11 +1587,11 @@ "nosniff" ], "x-ms-request-id": [ - "ae38fd6d-18fd-439a-83b4-e31d22cc0ce8" + "51a8a6b9-28ce-4124-a864-ea3da3090e2c" ], "x-ms-client-request-id": [ - "19f80edc-34d0-4416-bb59-dfd0ac6da4f0", - "19f80edc-34d0-4416-bb59-dfd0ac6da4f0" + "a8a5427d-d0da-49e9-b70f-23d8fc1d4ab1", + "a8a5427d-d0da-49e9-b70f-23d8fc1d4ab1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1143,16 +1603,16 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "299" + "296" ], "x-ms-correlation-request-id": [ - "ae38fd6d-18fd-439a-83b4-e31d22cc0ce8" + "51a8a6b9-28ce-4124-a864-ea3da3090e2c" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T094805Z:ae38fd6d-18fd-439a-83b4-e31d22cc0ce8" + "WESTINDIA:20220516T160433Z:51a8a6b9-28ce-4124-a864-ea3da3090e2c" ], "Date": [ - "Sat, 26 Mar 2022 09:48:05 GMT" + "Mon, 16 May 2022 16:04:33 GMT" ], "Content-Length": [ "188" @@ -1164,26 +1624,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"e0c24681-3a56-45d3-a167-b84856285288\",\r\n \"name\": \"e0c24681-3a56-45d3-a167-b84856285288\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-03-26T09:48:05.1830658Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"3778a364-7118-4e6e-bc3c-9cbd5ad18b18\",\r\n \"name\": \"3778a364-7118-4e6e-bc3c-9cbd5ad18b18\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T16:04:12.9402938Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/e0c24681-3a56-45d3-a167-b84856285288?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9lMGMyNDY4MS0zYTU2LTQ1ZDMtYTE2Ny1iODQ4NTYyODUyODg/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/3778a364-7118-4e6e-bc3c-9cbd5ad18b18?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy8zNzc4YTM2NC03MTE4LTRlNmUtYmMzYy05Y2JkNWFkMThiMTg/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "19f80edc-34d0-4416-bb59-dfd0ac6da4f0" + "a8a5427d-d0da-49e9-b70f-23d8fc1d4ab1" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -1197,11 +1657,11 @@ "nosniff" ], "x-ms-request-id": [ - "5bfb0d84-24e1-4a9b-a14c-66852d6c469d" + "d667c869-1069-4f0d-a385-eb4d1aa7ce7c" ], "x-ms-client-request-id": [ - "19f80edc-34d0-4416-bb59-dfd0ac6da4f0", - "19f80edc-34d0-4416-bb59-dfd0ac6da4f0" + "a8a5427d-d0da-49e9-b70f-23d8fc1d4ab1", + "a8a5427d-d0da-49e9-b70f-23d8fc1d4ab1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1213,16 +1673,16 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "298" + "295" ], "x-ms-correlation-request-id": [ - "5bfb0d84-24e1-4a9b-a14c-66852d6c469d" + "d667c869-1069-4f0d-a385-eb4d1aa7ce7c" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T094816Z:5bfb0d84-24e1-4a9b-a14c-66852d6c469d" + "WESTINDIA:20220516T160439Z:d667c869-1069-4f0d-a385-eb4d1aa7ce7c" ], "Date": [ - "Sat, 26 Mar 2022 09:48:15 GMT" + "Mon, 16 May 2022 16:04:38 GMT" ], "Content-Length": [ "188" @@ -1234,26 +1694,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"e0c24681-3a56-45d3-a167-b84856285288\",\r\n \"name\": \"e0c24681-3a56-45d3-a167-b84856285288\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-03-26T09:48:05.1830658Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"3778a364-7118-4e6e-bc3c-9cbd5ad18b18\",\r\n \"name\": \"3778a364-7118-4e6e-bc3c-9cbd5ad18b18\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T16:04:12.9402938Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/e0c24681-3a56-45d3-a167-b84856285288?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9lMGMyNDY4MS0zYTU2LTQ1ZDMtYTE2Ny1iODQ4NTYyODUyODg/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/3778a364-7118-4e6e-bc3c-9cbd5ad18b18?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy8zNzc4YTM2NC03MTE4LTRlNmUtYmMzYy05Y2JkNWFkMThiMTg/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "19f80edc-34d0-4416-bb59-dfd0ac6da4f0" + "a8a5427d-d0da-49e9-b70f-23d8fc1d4ab1" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -1267,11 +1727,11 @@ "nosniff" ], "x-ms-request-id": [ - "a8ed4be3-c309-4bf7-9c65-6f31f8a186a6" + "03f3195f-7bb9-4a10-94ca-558173578726" ], "x-ms-client-request-id": [ - "19f80edc-34d0-4416-bb59-dfd0ac6da4f0", - "19f80edc-34d0-4416-bb59-dfd0ac6da4f0" + "a8a5427d-d0da-49e9-b70f-23d8fc1d4ab1", + "a8a5427d-d0da-49e9-b70f-23d8fc1d4ab1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1283,16 +1743,16 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "297" + "294" ], "x-ms-correlation-request-id": [ - "a8ed4be3-c309-4bf7-9c65-6f31f8a186a6" + "03f3195f-7bb9-4a10-94ca-558173578726" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T094826Z:a8ed4be3-c309-4bf7-9c65-6f31f8a186a6" + "WESTINDIA:20220516T160444Z:03f3195f-7bb9-4a10-94ca-558173578726" ], "Date": [ - "Sat, 26 Mar 2022 09:48:26 GMT" + "Mon, 16 May 2022 16:04:43 GMT" ], "Content-Length": [ "188" @@ -1304,26 +1764,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"e0c24681-3a56-45d3-a167-b84856285288\",\r\n \"name\": \"e0c24681-3a56-45d3-a167-b84856285288\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-03-26T09:48:05.1830658Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"3778a364-7118-4e6e-bc3c-9cbd5ad18b18\",\r\n \"name\": \"3778a364-7118-4e6e-bc3c-9cbd5ad18b18\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T16:04:12.9402938Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/e0c24681-3a56-45d3-a167-b84856285288?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9lMGMyNDY4MS0zYTU2LTQ1ZDMtYTE2Ny1iODQ4NTYyODUyODg/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/3778a364-7118-4e6e-bc3c-9cbd5ad18b18?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy8zNzc4YTM2NC03MTE4LTRlNmUtYmMzYy05Y2JkNWFkMThiMTg/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "19f80edc-34d0-4416-bb59-dfd0ac6da4f0" + "a8a5427d-d0da-49e9-b70f-23d8fc1d4ab1" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -1337,11 +1797,11 @@ "nosniff" ], "x-ms-request-id": [ - "5337f32e-3b3d-426b-a0a6-7185fd0455d3" + "56a9f6d1-a20d-45d6-97d8-97b924dde90a" ], "x-ms-client-request-id": [ - "19f80edc-34d0-4416-bb59-dfd0ac6da4f0", - "19f80edc-34d0-4416-bb59-dfd0ac6da4f0" + "a8a5427d-d0da-49e9-b70f-23d8fc1d4ab1", + "a8a5427d-d0da-49e9-b70f-23d8fc1d4ab1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1353,16 +1813,16 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "296" + "293" ], "x-ms-correlation-request-id": [ - "5337f32e-3b3d-426b-a0a6-7185fd0455d3" + "56a9f6d1-a20d-45d6-97d8-97b924dde90a" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T094837Z:5337f32e-3b3d-426b-a0a6-7185fd0455d3" + "WESTINDIA:20220516T160450Z:56a9f6d1-a20d-45d6-97d8-97b924dde90a" ], "Date": [ - "Sat, 26 Mar 2022 09:48:36 GMT" + "Mon, 16 May 2022 16:04:49 GMT" ], "Content-Length": [ "188" @@ -1374,26 +1834,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"e0c24681-3a56-45d3-a167-b84856285288\",\r\n \"name\": \"e0c24681-3a56-45d3-a167-b84856285288\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-03-26T09:48:05.1830658Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"3778a364-7118-4e6e-bc3c-9cbd5ad18b18\",\r\n \"name\": \"3778a364-7118-4e6e-bc3c-9cbd5ad18b18\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T16:04:12.9402938Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/e0c24681-3a56-45d3-a167-b84856285288?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9lMGMyNDY4MS0zYTU2LTQ1ZDMtYTE2Ny1iODQ4NTYyODUyODg/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/3778a364-7118-4e6e-bc3c-9cbd5ad18b18?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy8zNzc4YTM2NC03MTE4LTRlNmUtYmMzYy05Y2JkNWFkMThiMTg/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "19f80edc-34d0-4416-bb59-dfd0ac6da4f0" + "a8a5427d-d0da-49e9-b70f-23d8fc1d4ab1" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -1407,11 +1867,11 @@ "nosniff" ], "x-ms-request-id": [ - "1c018381-1176-4dea-aaaf-abdf91ef5168" + "7c34c023-bef2-484a-81d8-e9da1d0a3935" ], "x-ms-client-request-id": [ - "19f80edc-34d0-4416-bb59-dfd0ac6da4f0", - "19f80edc-34d0-4416-bb59-dfd0ac6da4f0" + "a8a5427d-d0da-49e9-b70f-23d8fc1d4ab1", + "a8a5427d-d0da-49e9-b70f-23d8fc1d4ab1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1423,16 +1883,16 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "295" + "292" ], "x-ms-correlation-request-id": [ - "1c018381-1176-4dea-aaaf-abdf91ef5168" + "7c34c023-bef2-484a-81d8-e9da1d0a3935" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T094847Z:1c018381-1176-4dea-aaaf-abdf91ef5168" + "WESTINDIA:20220516T160455Z:7c34c023-bef2-484a-81d8-e9da1d0a3935" ], "Date": [ - "Sat, 26 Mar 2022 09:48:47 GMT" + "Mon, 16 May 2022 16:04:55 GMT" ], "Content-Length": [ "304" @@ -1444,26 +1904,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"e0c24681-3a56-45d3-a167-b84856285288\",\r\n \"name\": \"e0c24681-3a56-45d3-a167-b84856285288\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-03-26T09:48:05.1830658Z\",\r\n \"endTime\": \"2022-03-26T09:48:05.1830658Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"4201e88b-7d2b-4785-a36e-5f10ca833965\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"3778a364-7118-4e6e-bc3c-9cbd5ad18b18\",\r\n \"name\": \"3778a364-7118-4e6e-bc3c-9cbd5ad18b18\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-05-16T16:04:12.9402938Z\",\r\n \"endTime\": \"2022-05-16T16:04:12.9402938Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"ba7830ae-f040-47e1-b8b5-b978c251dca8\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/e0c24681-3a56-45d3-a167-b84856285288?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9lMGMyNDY4MS0zYTU2LTQ1ZDMtYTE2Ny1iODQ4NTYyODUyODg/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/3778a364-7118-4e6e-bc3c-9cbd5ad18b18?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy8zNzc4YTM2NC03MTE4LTRlNmUtYmMzYy05Y2JkNWFkMThiMTg/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "19f80edc-34d0-4416-bb59-dfd0ac6da4f0" + "a8a5427d-d0da-49e9-b70f-23d8fc1d4ab1" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -1477,11 +1937,11 @@ "nosniff" ], "x-ms-request-id": [ - "deb24cd3-8338-4f03-b40e-bf66aa21843f" + "1aaa0319-c8c0-4079-a1e6-9399c4236c64" ], "x-ms-client-request-id": [ - "19f80edc-34d0-4416-bb59-dfd0ac6da4f0", - "19f80edc-34d0-4416-bb59-dfd0ac6da4f0" + "a8a5427d-d0da-49e9-b70f-23d8fc1d4ab1", + "a8a5427d-d0da-49e9-b70f-23d8fc1d4ab1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1493,16 +1953,16 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "294" + "291" ], "x-ms-correlation-request-id": [ - "deb24cd3-8338-4f03-b40e-bf66aa21843f" + "1aaa0319-c8c0-4079-a1e6-9399c4236c64" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T094848Z:deb24cd3-8338-4f03-b40e-bf66aa21843f" + "WESTINDIA:20220516T160456Z:1aaa0319-c8c0-4079-a1e6-9399c4236c64" ], "Date": [ - "Sat, 26 Mar 2022 09:48:47 GMT" + "Mon, 16 May 2022 16:04:56 GMT" ], "Content-Length": [ "304" @@ -1514,26 +1974,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"e0c24681-3a56-45d3-a167-b84856285288\",\r\n \"name\": \"e0c24681-3a56-45d3-a167-b84856285288\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-03-26T09:48:05.1830658Z\",\r\n \"endTime\": \"2022-03-26T09:48:05.1830658Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"4201e88b-7d2b-4785-a36e-5f10ca833965\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"3778a364-7118-4e6e-bc3c-9cbd5ad18b18\",\r\n \"name\": \"3778a364-7118-4e6e-bc3c-9cbd5ad18b18\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-05-16T16:04:12.9402938Z\",\r\n \"endTime\": \"2022-05-16T16:04:12.9402938Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"ba7830ae-f040-47e1-b8b5-b978c251dca8\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/4201e88b-7d2b-4785-a36e-5f10ca833965?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy80MjAxZTg4Yi03ZDJiLTQ3ODUtYTM2ZS01ZjEwY2E4MzM5NjU/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/ba7830ae-f040-47e1-b8b5-b978c251dca8?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9iYTc4MzBhZS1mMDQwLTQ3ZTEtYjhiNS1iOTc4YzI1MWRjYTg/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "19f80edc-34d0-4416-bb59-dfd0ac6da4f0" + "a8a5427d-d0da-49e9-b70f-23d8fc1d4ab1" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -1551,11 +2011,11 @@ "nosniff" ], "x-ms-request-id": [ - "bcfd9123-50c5-4317-b03c-f5682f0cb240" + "80c286c0-dd0f-4752-ad9b-7da46a2751a2" ], "x-ms-client-request-id": [ - "19f80edc-34d0-4416-bb59-dfd0ac6da4f0", - "19f80edc-34d0-4416-bb59-dfd0ac6da4f0" + "a8a5427d-d0da-49e9-b70f-23d8fc1d4ab1", + "a8a5427d-d0da-49e9-b70f-23d8fc1d4ab1" ], "X-Powered-By": [ "ASP.NET" @@ -1567,13 +2027,13 @@ "299" ], "x-ms-correlation-request-id": [ - "bcfd9123-50c5-4317-b03c-f5682f0cb240" + "80c286c0-dd0f-4752-ad9b-7da46a2751a2" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T094848Z:bcfd9123-50c5-4317-b03c-f5682f0cb240" + "WESTINDIA:20220516T160456Z:80c286c0-dd0f-4752-ad9b-7da46a2751a2" ], "Date": [ - "Sat, 26 Mar 2022 09:48:47 GMT" + "Mon, 16 May 2022 16:04:56 GMT" ], "Content-Length": [ "847" @@ -1585,26 +2045,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/4201e88b-7d2b-4785-a36e-5f10ca833965\",\r\n \"name\": \"4201e88b-7d2b-4785-a36e-5f10ca833965\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT42.1570008S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"Storage\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"File Share Name\": \"fs1\",\r\n \"Storage Account Name\": \"pstestsa8895\",\r\n \"Policy Name\": \"afspolicy1\"\r\n }\r\n },\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"ConfigureBackup\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-03-26T09:48:05.1830658Z\",\r\n \"endTime\": \"2022-03-26T09:48:47.3400666Z\",\r\n \"activityId\": \"19f80edc-34d0-4416-bb59-dfd0ac6da4f0\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/ba7830ae-f040-47e1-b8b5-b978c251dca8\",\r\n \"name\": \"ba7830ae-f040-47e1-b8b5-b978c251dca8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT41.9274137S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"Storage\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"File Share Name\": \"fs1\",\r\n \"Storage Account Name\": \"pstestsa8895\",\r\n \"Policy Name\": \"afspolicy1\"\r\n }\r\n },\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"ConfigureBackup\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-05-16T16:04:12.9402938Z\",\r\n \"endTime\": \"2022-05-16T16:04:54.8677075Z\",\r\n \"activityId\": \"a8a5427d-d0da-49e9-b70f-23d8fc1d4ab1\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupProtectedItems?$filter=backupManagementType%20eq%20'AzureStorage'%20and%20itemType%20eq%20'AzureFileShare'&api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwUHJvdGVjdGVkSXRlbXM/JGZpbHRlcj1iYWNrdXBNYW5hZ2VtZW50VHlwZSUyMGVxJTIwJ0F6dXJlU3RvcmFnZSclMjBhbmQlMjBpdGVtVHlwZSUyMGVxJTIwJ0F6dXJlRmlsZVNoYXJlJyZhcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupProtectedItems?$filter=backupManagementType%20eq%20'AzureStorage'%20and%20itemType%20eq%20'AzureFileShare'&api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwUHJvdGVjdGVkSXRlbXM/JGZpbHRlcj1iYWNrdXBNYW5hZ2VtZW50VHlwZSUyMGVxJTIwJ0F6dXJlU3RvcmFnZSclMjBhbmQlMjBpdGVtVHlwZSUyMGVxJTIwJ0F6dXJlRmlsZVNoYXJlJyZhcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b4040c2d-fc3b-4409-8016-76ffcca6da20" + "54c75176-8c80-4b88-b139-deda281f34d0" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -1618,11 +2078,11 @@ "nosniff" ], "x-ms-request-id": [ - "79205812-b6fd-4b8d-8a8d-0e553ddd6267" + "d83e5bca-fbca-4d85-a084-e35037c32a5b" ], "x-ms-client-request-id": [ - "b4040c2d-fc3b-4409-8016-76ffcca6da20", - "b4040c2d-fc3b-4409-8016-76ffcca6da20" + "54c75176-8c80-4b88-b139-deda281f34d0", + "54c75176-8c80-4b88-b139-deda281f34d0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1637,13 +2097,13 @@ "299" ], "x-ms-correlation-request-id": [ - "79205812-b6fd-4b8d-8a8d-0e553ddd6267" + "d83e5bca-fbca-4d85-a084-e35037c32a5b" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T094849Z:79205812-b6fd-4b8d-8a8d-0e553ddd6267" + "WESTINDIA:20220516T160457Z:d83e5bca-fbca-4d85-a084-e35037c32a5b" ], "Date": [ - "Sat, 26 Mar 2022 09:48:48 GMT" + "Mon, 16 May 2022 16:04:57 GMT" ], "Content-Length": [ "1219" @@ -1659,22 +2119,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3Bstorage%3Bpstestrg8895%3Bpstestsa8895/protectedItems/AzureFileShare%3B698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959?$filter=expand%20eq%20'extendedinfo'&api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCc3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9wcm90ZWN0ZWRJdGVtcy9BenVyZUZpbGVTaGFyZSUzQjY5OGRmNTk1OTQ4ZTIzNTVmMmJiNzQ0YTQxY2YyNDVkNGJhMTI1NWQ5Njk5Y2MzYzJhZDFmNTA0NWUxNzc5NTk/JGZpbHRlcj1leHBhbmQlMjBlcSUyMCdleHRlbmRlZGluZm8nJmFwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3Bstorage%3Bpstestrg8895%3Bpstestsa8895/protectedItems/AzureFileShare%3B698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959?$filter=expand%20eq%20'extendedinfo'&api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCc3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9wcm90ZWN0ZWRJdGVtcy9BenVyZUZpbGVTaGFyZSUzQjY5OGRmNTk1OTQ4ZTIzNTVmMmJiNzQ0YTQxY2YyNDVkNGJhMTI1NWQ5Njk5Y2MzYzJhZDFmNTA0NWUxNzc5NTk/JGZpbHRlcj1leHBhbmQlMjBlcSUyMCdleHRlbmRlZGluZm8nJmFwaS12ZXJzaW9uPTIwMjItMDItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b4040c2d-fc3b-4409-8016-76ffcca6da20" + "54c75176-8c80-4b88-b139-deda281f34d0" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -1688,11 +2148,11 @@ "nosniff" ], "x-ms-request-id": [ - "c9638057-d795-40da-b321-1f7446e92e82" + "d01cc134-1ea9-4385-8d1b-0cb2e610ff50" ], "x-ms-client-request-id": [ - "b4040c2d-fc3b-4409-8016-76ffcca6da20", - "b4040c2d-fc3b-4409-8016-76ffcca6da20" + "54c75176-8c80-4b88-b139-deda281f34d0", + "54c75176-8c80-4b88-b139-deda281f34d0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1707,13 +2167,13 @@ "299" ], "x-ms-correlation-request-id": [ - "c9638057-d795-40da-b321-1f7446e92e82" + "d01cc134-1ea9-4385-8d1b-0cb2e610ff50" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T094850Z:c9638057-d795-40da-b321-1f7446e92e82" + "WESTINDIA:20220516T160458Z:d01cc134-1ea9-4385-8d1b-0cb2e610ff50" ], "Date": [ - "Sat, 26 Mar 2022 09:48:49 GMT" + "Mon, 16 May 2022 16:04:58 GMT" ], "Content-Length": [ "1354" @@ -1725,26 +2185,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;storage;pstestrg8895;pstestsa8895/protectedItems/AzureFileShare;698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959\",\r\n \"name\": \"AzureFileShare;698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems\",\r\n \"properties\": {\r\n \"kpisHealths\": {},\r\n \"friendlyName\": \"fs1\",\r\n \"protectionStatus\": \"Healthy\",\r\n \"protectionState\": \"IRPending\",\r\n \"lastBackupStatus\": \"IRPending\",\r\n \"extendedInfo\": {\r\n \"recoveryPointCount\": 0,\r\n \"policyState\": \"Consistent\",\r\n \"resourceState\": \"Active\",\r\n \"resourceStateSyncTime\": \"2022-03-26T09:48:47.0744372Z\"\r\n },\r\n \"protectedItemType\": \"AzureFileShareProtectedItem\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"workloadType\": \"AzureFileShare\",\r\n \"containerName\": \"StorageContainer;storage;pstestrg8895;pstestsa8895\",\r\n \"sourceResourceId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.storage/storageAccounts/pstestsa8895\",\r\n \"policyId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupPolicies/afspolicy1\",\r\n \"isArchiveEnabled\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;storage;pstestrg8895;pstestsa8895/protectedItems/AzureFileShare;698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959\",\r\n \"name\": \"AzureFileShare;698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems\",\r\n \"properties\": {\r\n \"kpisHealths\": {},\r\n \"friendlyName\": \"fs1\",\r\n \"protectionStatus\": \"Healthy\",\r\n \"protectionState\": \"IRPending\",\r\n \"lastBackupStatus\": \"IRPending\",\r\n \"extendedInfo\": {\r\n \"recoveryPointCount\": 0,\r\n \"policyState\": \"Consistent\",\r\n \"resourceState\": \"Active\",\r\n \"resourceStateSyncTime\": \"2022-05-16T16:04:54.6333139Z\"\r\n },\r\n \"protectedItemType\": \"AzureFileShareProtectedItem\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"workloadType\": \"AzureFileShare\",\r\n \"containerName\": \"StorageContainer;storage;pstestrg8895;pstestsa8895\",\r\n \"sourceResourceId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.storage/storageAccounts/pstestsa8895\",\r\n \"policyId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupPolicies/afspolicy1\",\r\n \"isArchiveEnabled\": false\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3Bstorage%3Bpstestrg8895%3Bpstestsa8895/protectedItems/AzureFileShare%3B698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959/backup?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCc3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9wcm90ZWN0ZWRJdGVtcy9BenVyZUZpbGVTaGFyZSUzQjY5OGRmNTk1OTQ4ZTIzNTVmMmJiNzQ0YTQxY2YyNDVkNGJhMTI1NWQ5Njk5Y2MzYzJhZDFmNTA0NWUxNzc5NTkvYmFja3VwP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3Bstorage%3Bpstestrg8895%3Bpstestsa8895/protectedItems/AzureFileShare%3B698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959/backup?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCc3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9wcm90ZWN0ZWRJdGVtcy9BenVyZUZpbGVTaGFyZSUzQjY5OGRmNTk1OTQ4ZTIzNTVmMmJiNzQ0YTQxY2YyNDVkNGJhMTI1NWQ5Njk5Y2MzYzJhZDFmNTA0NWUxNzc5NTkvYmFja3VwP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", "RequestMethod": "POST", "RequestBody": "{\r\n \"properties\": {\r\n \"objectType\": \"AzureFileShareBackupRequest\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "e37c471d-8bcb-4433-8823-ba496c36e726" + "f2025029-bbc3-4768-b9e4-1511456350b1" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1761,23 +2221,23 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;storage;pstestrg8895;pstestsa8895/protectedItems/AzureFileShare;698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959/operationResults/d06ba8d4-64b8-4ed7-8359-2041e72ca4f8?api-version=2021-12-01" + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;storage;pstestrg8895;pstestsa8895/protectedItems/AzureFileShare;698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959/operationResults/40d38f49-4cb0-4d06-b64f-87ab101d9c76?api-version=2022-02-01" ], "Retry-After": [ "60" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;storage;pstestrg8895;pstestsa8895/protectedItems/AzureFileShare;698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959/operationsStatus/d06ba8d4-64b8-4ed7-8359-2041e72ca4f8?api-version=2021-12-01" + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;storage;pstestrg8895;pstestsa8895/protectedItems/AzureFileShare;698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959/operationsStatus/40d38f49-4cb0-4d06-b64f-87ab101d9c76?api-version=2022-02-01" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "0d273736-ca6a-4c8b-864b-a0d9b466d6f7" + "bc54d054-1207-4938-8e63-bb8db7f89152" ], "x-ms-client-request-id": [ - "e37c471d-8bcb-4433-8823-ba496c36e726", - "e37c471d-8bcb-4433-8823-ba496c36e726" + "f2025029-bbc3-4768-b9e4-1511456350b1", + "f2025029-bbc3-4768-b9e4-1511456350b1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1786,16 +2246,16 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1198" ], "x-ms-correlation-request-id": [ - "0d273736-ca6a-4c8b-864b-a0d9b466d6f7" + "bc54d054-1207-4938-8e63-bb8db7f89152" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T094851Z:0d273736-ca6a-4c8b-864b-a0d9b466d6f7" + "WESTINDIA:20220516T160459Z:bc54d054-1207-4938-8e63-bb8db7f89152" ], "Date": [ - "Sat, 26 Mar 2022 09:48:50 GMT" + "Mon, 16 May 2022 16:04:59 GMT" ], "Expires": [ "-1" @@ -1808,22 +2268,22 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/d06ba8d4-64b8-4ed7-8359-2041e72ca4f8?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9kMDZiYThkNC02NGI4LTRlZDctODM1OS0yMDQxZTcyY2E0Zjg/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/40d38f49-4cb0-4d06-b64f-87ab101d9c76?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy80MGQzOGY0OS00Y2IwLTRkMDYtYjY0Zi04N2FiMTAxZDljNzY/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e37c471d-8bcb-4433-8823-ba496c36e726" + "f2025029-bbc3-4768-b9e4-1511456350b1" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -1837,11 +2297,11 @@ "nosniff" ], "x-ms-request-id": [ - "208843dc-2323-41b7-ae05-b08603039ae8" + "60a8faef-8b6f-4872-9336-f3944fa29287" ], "x-ms-client-request-id": [ - "e37c471d-8bcb-4433-8823-ba496c36e726", - "e37c471d-8bcb-4433-8823-ba496c36e726" + "f2025029-bbc3-4768-b9e4-1511456350b1", + "f2025029-bbc3-4768-b9e4-1511456350b1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1853,19 +2313,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "293" + "290" ], "x-ms-correlation-request-id": [ - "208843dc-2323-41b7-ae05-b08603039ae8" + "60a8faef-8b6f-4872-9336-f3944fa29287" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T094851Z:208843dc-2323-41b7-ae05-b08603039ae8" + "WESTINDIA:20220516T160500Z:60a8faef-8b6f-4872-9336-f3944fa29287" ], "Date": [ - "Sat, 26 Mar 2022 09:48:51 GMT" + "Mon, 16 May 2022 16:04:59 GMT" ], "Content-Length": [ - "302" + "304" ], "Content-Type": [ "application/json" @@ -1874,26 +2334,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"d06ba8d4-64b8-4ed7-8359-2041e72ca4f8\",\r\n \"name\": \"d06ba8d4-64b8-4ed7-8359-2041e72ca4f8\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-03-26T09:48:51.192171Z\",\r\n \"endTime\": \"2022-03-26T09:48:51.192171Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"3c9f5cc5-4f78-416f-9834-ec1dd0c300c2\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"40d38f49-4cb0-4d06-b64f-87ab101d9c76\",\r\n \"name\": \"40d38f49-4cb0-4d06-b64f-87ab101d9c76\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-05-16T16:04:59.7478141Z\",\r\n \"endTime\": \"2022-05-16T16:04:59.7478141Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"dd8c8ceb-f455-4994-94e4-51dad2c1e548\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/d06ba8d4-64b8-4ed7-8359-2041e72ca4f8?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9kMDZiYThkNC02NGI4LTRlZDctODM1OS0yMDQxZTcyY2E0Zjg/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/40d38f49-4cb0-4d06-b64f-87ab101d9c76?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy80MGQzOGY0OS00Y2IwLTRkMDYtYjY0Zi04N2FiMTAxZDljNzY/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e37c471d-8bcb-4433-8823-ba496c36e726" + "f2025029-bbc3-4768-b9e4-1511456350b1" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -1907,11 +2367,11 @@ "nosniff" ], "x-ms-request-id": [ - "12d7a10a-8e3d-47f4-bcfa-9e4801a4e97d" + "cb67d85e-fd13-49ce-9d53-717f31e2b144" ], "x-ms-client-request-id": [ - "e37c471d-8bcb-4433-8823-ba496c36e726", - "e37c471d-8bcb-4433-8823-ba496c36e726" + "f2025029-bbc3-4768-b9e4-1511456350b1", + "f2025029-bbc3-4768-b9e4-1511456350b1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1923,19 +2383,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "292" + "289" ], "x-ms-correlation-request-id": [ - "12d7a10a-8e3d-47f4-bcfa-9e4801a4e97d" + "cb67d85e-fd13-49ce-9d53-717f31e2b144" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T094852Z:12d7a10a-8e3d-47f4-bcfa-9e4801a4e97d" + "WESTINDIA:20220516T160500Z:cb67d85e-fd13-49ce-9d53-717f31e2b144" ], "Date": [ - "Sat, 26 Mar 2022 09:48:51 GMT" + "Mon, 16 May 2022 16:05:00 GMT" ], "Content-Length": [ - "302" + "304" ], "Content-Type": [ "application/json" @@ -1944,26 +2404,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"d06ba8d4-64b8-4ed7-8359-2041e72ca4f8\",\r\n \"name\": \"d06ba8d4-64b8-4ed7-8359-2041e72ca4f8\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-03-26T09:48:51.192171Z\",\r\n \"endTime\": \"2022-03-26T09:48:51.192171Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"3c9f5cc5-4f78-416f-9834-ec1dd0c300c2\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"40d38f49-4cb0-4d06-b64f-87ab101d9c76\",\r\n \"name\": \"40d38f49-4cb0-4d06-b64f-87ab101d9c76\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-05-16T16:04:59.7478141Z\",\r\n \"endTime\": \"2022-05-16T16:04:59.7478141Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"dd8c8ceb-f455-4994-94e4-51dad2c1e548\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/3c9f5cc5-4f78-416f-9834-ec1dd0c300c2?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy8zYzlmNWNjNS00Zjc4LTQxNmYtOTgzNC1lYzFkZDBjMzAwYzI/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/dd8c8ceb-f455-4994-94e4-51dad2c1e548?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9kZDhjOGNlYi1mNDU1LTQ5OTQtOTRlNC01MWRhZDJjMWU1NDg/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e37c471d-8bcb-4433-8823-ba496c36e726" + "f2025029-bbc3-4768-b9e4-1511456350b1" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -1981,11 +2441,11 @@ "nosniff" ], "x-ms-request-id": [ - "d55bb8e9-e693-4106-96e9-9a1699adb85c" + "abb36771-ff06-4c1c-8789-8ebe12ac6044" ], "x-ms-client-request-id": [ - "e37c471d-8bcb-4433-8823-ba496c36e726", - "e37c471d-8bcb-4433-8823-ba496c36e726" + "f2025029-bbc3-4768-b9e4-1511456350b1", + "f2025029-bbc3-4768-b9e4-1511456350b1" ], "X-Powered-By": [ "ASP.NET" @@ -1997,16 +2457,16 @@ "298" ], "x-ms-correlation-request-id": [ - "d55bb8e9-e693-4106-96e9-9a1699adb85c" + "abb36771-ff06-4c1c-8789-8ebe12ac6044" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T094852Z:d55bb8e9-e693-4106-96e9-9a1699adb85c" + "WESTINDIA:20220516T160501Z:abb36771-ff06-4c1c-8789-8ebe12ac6044" ], "Date": [ - "Sat, 26 Mar 2022 09:48:51 GMT" + "Mon, 16 May 2022 16:05:00 GMT" ], "Content-Length": [ - "863" + "864" ], "Content-Type": [ "application/json" @@ -2015,26 +2475,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/3c9f5cc5-4f78-416f-9834-ec1dd0c300c2\",\r\n \"name\": \"3c9f5cc5-4f78-416f-9834-ec1dd0c300c2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT1.3036928S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"MicrosoftStorage\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"File Share Name\": \"fs1\",\r\n \"Whether job is adhoc or scheduled.\": \"True\"\r\n }\r\n },\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-03-26T09:48:51.192171Z\",\r\n \"activityId\": \"e37c471d-8bcb-4433-8823-ba496c36e726\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/dd8c8ceb-f455-4994-94e4-51dad2c1e548\",\r\n \"name\": \"dd8c8ceb-f455-4994-94e4-51dad2c1e548\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT1.4421256S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"MicrosoftStorage\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"File Share Name\": \"fs1\",\r\n \"Whether job is adhoc or scheduled.\": \"True\"\r\n }\r\n },\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T16:04:59.7478141Z\",\r\n \"activityId\": \"f2025029-bbc3-4768-b9e4-1511456350b1\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/3c9f5cc5-4f78-416f-9834-ec1dd0c300c2?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy8zYzlmNWNjNS00Zjc4LTQxNmYtOTgzNC1lYzFkZDBjMzAwYzI/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/dd8c8ceb-f455-4994-94e4-51dad2c1e548?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9kZDhjOGNlYi1mNDU1LTQ5OTQtOTRlNC01MWRhZDJjMWU1NDg/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e37c471d-8bcb-4433-8823-ba496c36e726" + "f2025029-bbc3-4768-b9e4-1511456350b1" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -2052,11 +2512,11 @@ "nosniff" ], "x-ms-request-id": [ - "c4e14b4a-56b4-4496-ad68-d6bf3e1e2c04" + "b5784152-b620-4fc1-bbbf-118300ce13a4" ], "x-ms-client-request-id": [ - "e37c471d-8bcb-4433-8823-ba496c36e726", - "e37c471d-8bcb-4433-8823-ba496c36e726" + "f2025029-bbc3-4768-b9e4-1511456350b1", + "f2025029-bbc3-4768-b9e4-1511456350b1" ], "X-Powered-By": [ "ASP.NET" @@ -2068,16 +2528,16 @@ "297" ], "x-ms-correlation-request-id": [ - "c4e14b4a-56b4-4496-ad68-d6bf3e1e2c04" + "b5784152-b620-4fc1-bbbf-118300ce13a4" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T094853Z:c4e14b4a-56b4-4496-ad68-d6bf3e1e2c04" + "WESTINDIA:20220516T160501Z:b5784152-b620-4fc1-bbbf-118300ce13a4" ], "Date": [ - "Sat, 26 Mar 2022 09:48:52 GMT" + "Mon, 16 May 2022 16:05:01 GMT" ], "Content-Length": [ - "863" + "864" ], "Content-Type": [ "application/json" @@ -2086,26 +2546,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/3c9f5cc5-4f78-416f-9834-ec1dd0c300c2\",\r\n \"name\": \"3c9f5cc5-4f78-416f-9834-ec1dd0c300c2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT1.7814241S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"MicrosoftStorage\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"File Share Name\": \"fs1\",\r\n \"Whether job is adhoc or scheduled.\": \"True\"\r\n }\r\n },\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-03-26T09:48:51.192171Z\",\r\n \"activityId\": \"e37c471d-8bcb-4433-8823-ba496c36e726\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/dd8c8ceb-f455-4994-94e4-51dad2c1e548\",\r\n \"name\": \"dd8c8ceb-f455-4994-94e4-51dad2c1e548\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT1.8466026S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"MicrosoftStorage\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"File Share Name\": \"fs1\",\r\n \"Whether job is adhoc or scheduled.\": \"True\"\r\n }\r\n },\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T16:04:59.7478141Z\",\r\n \"activityId\": \"f2025029-bbc3-4768-b9e4-1511456350b1\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/3c9f5cc5-4f78-416f-9834-ec1dd0c300c2?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy8zYzlmNWNjNS00Zjc4LTQxNmYtOTgzNC1lYzFkZDBjMzAwYzI/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/dd8c8ceb-f455-4994-94e4-51dad2c1e548?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9kZDhjOGNlYi1mNDU1LTQ5OTQtOTRlNC01MWRhZDJjMWU1NDg/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e37c471d-8bcb-4433-8823-ba496c36e726" + "f2025029-bbc3-4768-b9e4-1511456350b1" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -2123,11 +2583,11 @@ "nosniff" ], "x-ms-request-id": [ - "69055ded-6ec6-480b-bac1-ecfefd20bf22" + "30d233c5-85e1-47a6-b34c-e1b8a13c3683" ], "x-ms-client-request-id": [ - "e37c471d-8bcb-4433-8823-ba496c36e726", - "e37c471d-8bcb-4433-8823-ba496c36e726" + "f2025029-bbc3-4768-b9e4-1511456350b1", + "f2025029-bbc3-4768-b9e4-1511456350b1" ], "X-Powered-By": [ "ASP.NET" @@ -2139,16 +2599,16 @@ "296" ], "x-ms-correlation-request-id": [ - "69055ded-6ec6-480b-bac1-ecfefd20bf22" + "30d233c5-85e1-47a6-b34c-e1b8a13c3683" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T094954Z:69055ded-6ec6-480b-bac1-ecfefd20bf22" + "WESTINDIA:20220516T160532Z:30d233c5-85e1-47a6-b34c-e1b8a13c3683" ], "Date": [ - "Sat, 26 Mar 2022 09:49:54 GMT" + "Mon, 16 May 2022 16:05:31 GMT" ], "Content-Length": [ - "902" + "903" ], "Content-Type": [ "application/json" @@ -2157,26 +2617,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/3c9f5cc5-4f78-416f-9834-ec1dd0c300c2\",\r\n \"name\": \"3c9f5cc5-4f78-416f-9834-ec1dd0c300c2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT2.5571821S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"MicrosoftStorage\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"status\": \"Completed\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"File Share Name\": \"fs1\",\r\n \"Whether job is adhoc or scheduled.\": \"True\"\r\n }\r\n },\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-03-26T09:48:51.192171Z\",\r\n \"endTime\": \"2022-03-26T09:48:53.7493531Z\",\r\n \"activityId\": \"e37c471d-8bcb-4433-8823-ba496c36e726\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/dd8c8ceb-f455-4994-94e4-51dad2c1e548\",\r\n \"name\": \"dd8c8ceb-f455-4994-94e4-51dad2c1e548\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT2.1561885S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"MicrosoftStorage\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"status\": \"Completed\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"File Share Name\": \"fs1\",\r\n \"Whether job is adhoc or scheduled.\": \"True\"\r\n }\r\n },\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-05-16T16:04:59.7478141Z\",\r\n \"endTime\": \"2022-05-16T16:05:01.9040026Z\",\r\n \"activityId\": \"f2025029-bbc3-4768-b9e4-1511456350b1\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3Bstorage%3Bpstestrg8895%3Bpstestsa8895/protectedItems/AzureFileShare%3B698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959/recoveryPoints?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCc3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9wcm90ZWN0ZWRJdGVtcy9BenVyZUZpbGVTaGFyZSUzQjY5OGRmNTk1OTQ4ZTIzNTVmMmJiNzQ0YTQxY2YyNDVkNGJhMTI1NWQ5Njk5Y2MzYzJhZDFmNTA0NWUxNzc5NTkvcmVjb3ZlcnlQb2ludHM/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3Bstorage%3Bpstestrg8895%3Bpstestsa8895/protectedItems/AzureFileShare%3B698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959/recoveryPoints?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCc3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9wcm90ZWN0ZWRJdGVtcy9BenVyZUZpbGVTaGFyZSUzQjY5OGRmNTk1OTQ4ZTIzNTVmMmJiNzQ0YTQxY2YyNDVkNGJhMTI1NWQ5Njk5Y2MzYzJhZDFmNTA0NWUxNzc5NTkvcmVjb3ZlcnlQb2ludHM/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f7dc25b6-2271-4e15-a667-67ab7c0a9ecd" + "c01fbcb7-97ce-4515-94cf-651d23e79b31" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -2190,11 +2650,11 @@ "nosniff" ], "x-ms-request-id": [ - "2fb590d9-947c-443c-8430-8f496865bfa3" + "a50eb732-31e4-4df6-8fe7-8ccfb2c27fa4" ], "x-ms-client-request-id": [ - "f7dc25b6-2271-4e15-a667-67ab7c0a9ecd", - "f7dc25b6-2271-4e15-a667-67ab7c0a9ecd" + "c01fbcb7-97ce-4515-94cf-651d23e79b31", + "c01fbcb7-97ce-4515-94cf-651d23e79b31" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2209,13 +2669,13 @@ "299" ], "x-ms-correlation-request-id": [ - "2fb590d9-947c-443c-8430-8f496865bfa3" + "a50eb732-31e4-4df6-8fe7-8ccfb2c27fa4" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T094954Z:2fb590d9-947c-443c-8430-8f496865bfa3" + "WESTINDIA:20220516T160532Z:a50eb732-31e4-4df6-8fe7-8ccfb2c27fa4" ], "Date": [ - "Sat, 26 Mar 2022 09:49:54 GMT" + "Mon, 16 May 2022 16:05:31 GMT" ], "Content-Length": [ "792" @@ -2227,26 +2687,96 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;storage;pstestrg8895;pstestsa8895/protectedItems/AzureFileShare;698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959/recoveryPoints/34527755029776\",\r\n \"name\": \"34527755029776\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints\",\r\n \"properties\": {\r\n \"objectType\": \"AzureFileShareRecoveryPoint\",\r\n \"recoveryPointType\": \"FileSystemConsistent\",\r\n \"recoveryPointTime\": \"2022-03-26T09:48:52Z\",\r\n \"fileShareSnapshotUri\": \"https://pstestsa8895.file.core.windows.net/fs1?sharesnapshot=2022-03-26T09:48:52.0000000Z\",\r\n \"recoveryPointSizeInGB\": 1\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;storage;pstestrg8895;pstestsa8895/protectedItems/AzureFileShare;698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959/recoveryPoints/24672007572512\",\r\n \"name\": \"24672007572512\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints\",\r\n \"properties\": {\r\n \"objectType\": \"AzureFileShareRecoveryPoint\",\r\n \"recoveryPointType\": \"FileSystemConsistent\",\r\n \"recoveryPointTime\": \"2022-05-16T16:05:00Z\",\r\n \"fileShareSnapshotUri\": \"https://pstestsa8895.file.core.windows.net/fs1?sharesnapshot=2022-05-16T16:05:00.0000000Z\",\r\n \"recoveryPointSizeInGB\": 1\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupResourceGuardProxies?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwUmVzb3VyY2VHdWFyZFByb3hpZXM/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c01fbcb7-97ce-4515-94cf-651d23e79b31" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "f1e04541-5925-4a8f-af36-575e0a6651b8" + ], + "x-ms-client-request-id": [ + "c01fbcb7-97ce-4515-94cf-651d23e79b31", + "c01fbcb7-97ce-4515-94cf-651d23e79b31" + ], + "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": [ + "f1e04541-5925-4a8f-af36-575e0a6651b8" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T160533Z:f1e04541-5925-4a8f-af36-575e0a6651b8" + ], + "Date": [ + "Mon, 16 May 2022 16:05:32 GMT" + ], + "Content-Length": [ + "12" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3Bstorage%3Bpstestrg8895%3Bpstestsa8895/protectedItems/AzureFileShare%3B698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCc3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9wcm90ZWN0ZWRJdGVtcy9BenVyZUZpbGVTaGFyZSUzQjY5OGRmNTk1OTQ4ZTIzNTVmMmJiNzQ0YTQxY2YyNDVkNGJhMTI1NWQ5Njk5Y2MzYzJhZDFmNTA0NWUxNzc5NTk/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3Bstorage%3Bpstestrg8895%3Bpstestsa8895/protectedItems/AzureFileShare%3B698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCc3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9wcm90ZWN0ZWRJdGVtcy9BenVyZUZpbGVTaGFyZSUzQjY5OGRmNTk1OTQ4ZTIzNTVmMmJiNzQ0YTQxY2YyNDVkNGJhMTI1NWQ5Njk5Y2MzYzJhZDFmNTA0NWUxNzc5NTk/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f7dc25b6-2271-4e15-a667-67ab7c0a9ecd" + "c01fbcb7-97ce-4515-94cf-651d23e79b31" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -2257,23 +2787,23 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperationResults/24db72b0-753e-49a1-b217-3754ab26dbbf?api-version=2021-12-01" + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperationResults/1a4ae24a-d53f-4f5e-a27e-8b1192db1ea0?api-version=2022-02-01" ], "Retry-After": [ "60" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/24db72b0-753e-49a1-b217-3754ab26dbbf?api-version=2021-12-01" + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/1a4ae24a-d53f-4f5e-a27e-8b1192db1ea0?api-version=2022-02-01" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "8cc1e484-e6ad-4188-8ab5-325b4de036dd" + "eb39a140-e846-4270-9a4c-9f916f107d65" ], "x-ms-client-request-id": [ - "f7dc25b6-2271-4e15-a667-67ab7c0a9ecd", - "f7dc25b6-2271-4e15-a667-67ab7c0a9ecd" + "c01fbcb7-97ce-4515-94cf-651d23e79b31", + "c01fbcb7-97ce-4515-94cf-651d23e79b31" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2282,16 +2812,16 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14998" + "14999" ], "x-ms-correlation-request-id": [ - "8cc1e484-e6ad-4188-8ab5-325b4de036dd" + "eb39a140-e846-4270-9a4c-9f916f107d65" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T094955Z:8cc1e484-e6ad-4188-8ab5-325b4de036dd" + "WESTINDIA:20220516T160534Z:eb39a140-e846-4270-9a4c-9f916f107d65" ], "Date": [ - "Sat, 26 Mar 2022 09:49:55 GMT" + "Mon, 16 May 2022 16:05:33 GMT" ], "Expires": [ "-1" @@ -2304,22 +2834,22 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/24db72b0-753e-49a1-b217-3754ab26dbbf?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy8yNGRiNzJiMC03NTNlLTQ5YTEtYjIxNy0zNzU0YWIyNmRiYmY/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/1a4ae24a-d53f-4f5e-a27e-8b1192db1ea0?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy8xYTRhZTI0YS1kNTNmLTRmNWUtYTI3ZS04YjExOTJkYjFlYTA/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f7dc25b6-2271-4e15-a667-67ab7c0a9ecd" + "c01fbcb7-97ce-4515-94cf-651d23e79b31" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -2333,11 +2863,11 @@ "nosniff" ], "x-ms-request-id": [ - "0eaa331d-0c2c-4f6d-9770-674eb6963221" + "f7f64ac7-49c2-44cf-88f9-d45956a64c7a" ], "x-ms-client-request-id": [ - "f7dc25b6-2271-4e15-a667-67ab7c0a9ecd", - "f7dc25b6-2271-4e15-a667-67ab7c0a9ecd" + "c01fbcb7-97ce-4515-94cf-651d23e79b31", + "c01fbcb7-97ce-4515-94cf-651d23e79b31" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2349,16 +2879,16 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "291" + "288" ], "x-ms-correlation-request-id": [ - "0eaa331d-0c2c-4f6d-9770-674eb6963221" + "f7f64ac7-49c2-44cf-88f9-d45956a64c7a" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T094956Z:0eaa331d-0c2c-4f6d-9770-674eb6963221" + "WESTINDIA:20220516T160534Z:f7f64ac7-49c2-44cf-88f9-d45956a64c7a" ], "Date": [ - "Sat, 26 Mar 2022 09:49:56 GMT" + "Mon, 16 May 2022 16:05:33 GMT" ], "Content-Length": [ "188" @@ -2370,26 +2900,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"24db72b0-753e-49a1-b217-3754ab26dbbf\",\r\n \"name\": \"24db72b0-753e-49a1-b217-3754ab26dbbf\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-03-26T09:49:55.5447063Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"1a4ae24a-d53f-4f5e-a27e-8b1192db1ea0\",\r\n \"name\": \"1a4ae24a-d53f-4f5e-a27e-8b1192db1ea0\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T16:05:33.8553609Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/24db72b0-753e-49a1-b217-3754ab26dbbf?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy8yNGRiNzJiMC03NTNlLTQ5YTEtYjIxNy0zNzU0YWIyNmRiYmY/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/1a4ae24a-d53f-4f5e-a27e-8b1192db1ea0?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy8xYTRhZTI0YS1kNTNmLTRmNWUtYTI3ZS04YjExOTJkYjFlYTA/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f7dc25b6-2271-4e15-a667-67ab7c0a9ecd" + "c01fbcb7-97ce-4515-94cf-651d23e79b31" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -2403,11 +2933,11 @@ "nosniff" ], "x-ms-request-id": [ - "11e8fa10-3d29-4237-b877-6847c7633768" + "53a7e080-1370-4326-9cf6-2a3f28604f6f" ], "x-ms-client-request-id": [ - "f7dc25b6-2271-4e15-a667-67ab7c0a9ecd", - "f7dc25b6-2271-4e15-a667-67ab7c0a9ecd" + "c01fbcb7-97ce-4515-94cf-651d23e79b31", + "c01fbcb7-97ce-4515-94cf-651d23e79b31" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2419,16 +2949,16 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "290" + "287" ], "x-ms-correlation-request-id": [ - "11e8fa10-3d29-4237-b877-6847c7633768" + "53a7e080-1370-4326-9cf6-2a3f28604f6f" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T095006Z:11e8fa10-3d29-4237-b877-6847c7633768" + "WESTINDIA:20220516T160540Z:53a7e080-1370-4326-9cf6-2a3f28604f6f" ], "Date": [ - "Sat, 26 Mar 2022 09:50:06 GMT" + "Mon, 16 May 2022 16:05:39 GMT" ], "Content-Length": [ "188" @@ -2440,26 +2970,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"24db72b0-753e-49a1-b217-3754ab26dbbf\",\r\n \"name\": \"24db72b0-753e-49a1-b217-3754ab26dbbf\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-03-26T09:49:55.5447063Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"1a4ae24a-d53f-4f5e-a27e-8b1192db1ea0\",\r\n \"name\": \"1a4ae24a-d53f-4f5e-a27e-8b1192db1ea0\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T16:05:33.8553609Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/24db72b0-753e-49a1-b217-3754ab26dbbf?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy8yNGRiNzJiMC03NTNlLTQ5YTEtYjIxNy0zNzU0YWIyNmRiYmY/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/1a4ae24a-d53f-4f5e-a27e-8b1192db1ea0?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy8xYTRhZTI0YS1kNTNmLTRmNWUtYTI3ZS04YjExOTJkYjFlYTA/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f7dc25b6-2271-4e15-a667-67ab7c0a9ecd" + "c01fbcb7-97ce-4515-94cf-651d23e79b31" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -2473,11 +3003,11 @@ "nosniff" ], "x-ms-request-id": [ - "447aae87-cd95-47aa-b409-cfd59af0d697" + "bd00b280-5dc4-42f2-880c-d6cb71a59898" ], "x-ms-client-request-id": [ - "f7dc25b6-2271-4e15-a667-67ab7c0a9ecd", - "f7dc25b6-2271-4e15-a667-67ab7c0a9ecd" + "c01fbcb7-97ce-4515-94cf-651d23e79b31", + "c01fbcb7-97ce-4515-94cf-651d23e79b31" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2489,16 +3019,16 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "289" + "286" ], "x-ms-correlation-request-id": [ - "447aae87-cd95-47aa-b409-cfd59af0d697" + "bd00b280-5dc4-42f2-880c-d6cb71a59898" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T095017Z:447aae87-cd95-47aa-b409-cfd59af0d697" + "WESTINDIA:20220516T160545Z:bd00b280-5dc4-42f2-880c-d6cb71a59898" ], "Date": [ - "Sat, 26 Mar 2022 09:50:16 GMT" + "Mon, 16 May 2022 16:05:45 GMT" ], "Content-Length": [ "188" @@ -2510,26 +3040,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"24db72b0-753e-49a1-b217-3754ab26dbbf\",\r\n \"name\": \"24db72b0-753e-49a1-b217-3754ab26dbbf\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-03-26T09:49:55.5447063Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"1a4ae24a-d53f-4f5e-a27e-8b1192db1ea0\",\r\n \"name\": \"1a4ae24a-d53f-4f5e-a27e-8b1192db1ea0\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T16:05:33.8553609Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/24db72b0-753e-49a1-b217-3754ab26dbbf?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy8yNGRiNzJiMC03NTNlLTQ5YTEtYjIxNy0zNzU0YWIyNmRiYmY/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/1a4ae24a-d53f-4f5e-a27e-8b1192db1ea0?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy8xYTRhZTI0YS1kNTNmLTRmNWUtYTI3ZS04YjExOTJkYjFlYTA/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f7dc25b6-2271-4e15-a667-67ab7c0a9ecd" + "c01fbcb7-97ce-4515-94cf-651d23e79b31" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -2543,11 +3073,11 @@ "nosniff" ], "x-ms-request-id": [ - "ce539b3e-240c-4cd4-9517-40da64f32f2b" + "8d0757d9-4d5b-419c-8a75-cb67218e4ab5" ], "x-ms-client-request-id": [ - "f7dc25b6-2271-4e15-a667-67ab7c0a9ecd", - "f7dc25b6-2271-4e15-a667-67ab7c0a9ecd" + "c01fbcb7-97ce-4515-94cf-651d23e79b31", + "c01fbcb7-97ce-4515-94cf-651d23e79b31" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2559,16 +3089,16 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "288" + "285" ], "x-ms-correlation-request-id": [ - "ce539b3e-240c-4cd4-9517-40da64f32f2b" + "8d0757d9-4d5b-419c-8a75-cb67218e4ab5" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T095027Z:ce539b3e-240c-4cd4-9517-40da64f32f2b" + "WESTINDIA:20220516T160550Z:8d0757d9-4d5b-419c-8a75-cb67218e4ab5" ], "Date": [ - "Sat, 26 Mar 2022 09:50:27 GMT" + "Mon, 16 May 2022 16:05:50 GMT" ], "Content-Length": [ "304" @@ -2580,26 +3110,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"24db72b0-753e-49a1-b217-3754ab26dbbf\",\r\n \"name\": \"24db72b0-753e-49a1-b217-3754ab26dbbf\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-03-26T09:49:55.5447063Z\",\r\n \"endTime\": \"2022-03-26T09:49:55.5447063Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"3f3f7b1d-de21-4404-8972-7a5230043480\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"1a4ae24a-d53f-4f5e-a27e-8b1192db1ea0\",\r\n \"name\": \"1a4ae24a-d53f-4f5e-a27e-8b1192db1ea0\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-05-16T16:05:33.8553609Z\",\r\n \"endTime\": \"2022-05-16T16:05:33.8553609Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"02580b0e-2339-4ffa-aea1-82e2018e58c9\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/24db72b0-753e-49a1-b217-3754ab26dbbf?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy8yNGRiNzJiMC03NTNlLTQ5YTEtYjIxNy0zNzU0YWIyNmRiYmY/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/1a4ae24a-d53f-4f5e-a27e-8b1192db1ea0?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy8xYTRhZTI0YS1kNTNmLTRmNWUtYTI3ZS04YjExOTJkYjFlYTA/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f7dc25b6-2271-4e15-a667-67ab7c0a9ecd" + "c01fbcb7-97ce-4515-94cf-651d23e79b31" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -2613,11 +3143,11 @@ "nosniff" ], "x-ms-request-id": [ - "be5a747d-185b-4530-9d84-8a2b8a13ca95" + "24759188-c6a0-45f8-938c-fd69d00c8c70" ], "x-ms-client-request-id": [ - "f7dc25b6-2271-4e15-a667-67ab7c0a9ecd", - "f7dc25b6-2271-4e15-a667-67ab7c0a9ecd" + "c01fbcb7-97ce-4515-94cf-651d23e79b31", + "c01fbcb7-97ce-4515-94cf-651d23e79b31" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2629,16 +3159,16 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "287" + "284" ], "x-ms-correlation-request-id": [ - "be5a747d-185b-4530-9d84-8a2b8a13ca95" + "24759188-c6a0-45f8-938c-fd69d00c8c70" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T095028Z:be5a747d-185b-4530-9d84-8a2b8a13ca95" + "WESTINDIA:20220516T160551Z:24759188-c6a0-45f8-938c-fd69d00c8c70" ], "Date": [ - "Sat, 26 Mar 2022 09:50:27 GMT" + "Mon, 16 May 2022 16:05:51 GMT" ], "Content-Length": [ "304" @@ -2650,26 +3180,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"24db72b0-753e-49a1-b217-3754ab26dbbf\",\r\n \"name\": \"24db72b0-753e-49a1-b217-3754ab26dbbf\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-03-26T09:49:55.5447063Z\",\r\n \"endTime\": \"2022-03-26T09:49:55.5447063Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"3f3f7b1d-de21-4404-8972-7a5230043480\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"1a4ae24a-d53f-4f5e-a27e-8b1192db1ea0\",\r\n \"name\": \"1a4ae24a-d53f-4f5e-a27e-8b1192db1ea0\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-05-16T16:05:33.8553609Z\",\r\n \"endTime\": \"2022-05-16T16:05:33.8553609Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"02580b0e-2339-4ffa-aea1-82e2018e58c9\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/3f3f7b1d-de21-4404-8972-7a5230043480?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy8zZjNmN2IxZC1kZTIxLTQ0MDQtODk3Mi03YTUyMzAwNDM0ODA/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/02580b0e-2339-4ffa-aea1-82e2018e58c9?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy8wMjU4MGIwZS0yMzM5LTRmZmEtYWVhMS04MmUyMDE4ZTU4Yzk/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f7dc25b6-2271-4e15-a667-67ab7c0a9ecd" + "c01fbcb7-97ce-4515-94cf-651d23e79b31" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -2687,11 +3217,11 @@ "nosniff" ], "x-ms-request-id": [ - "0c30df9b-87ab-4cb1-852d-048143238c9e" + "b3bc143a-da64-43b8-821f-aaed2d15c657" ], "x-ms-client-request-id": [ - "f7dc25b6-2271-4e15-a667-67ab7c0a9ecd", - "f7dc25b6-2271-4e15-a667-67ab7c0a9ecd" + "c01fbcb7-97ce-4515-94cf-651d23e79b31", + "c01fbcb7-97ce-4515-94cf-651d23e79b31" ], "X-Powered-By": [ "ASP.NET" @@ -2703,13 +3233,13 @@ "295" ], "x-ms-correlation-request-id": [ - "0c30df9b-87ab-4cb1-852d-048143238c9e" + "b3bc143a-da64-43b8-821f-aaed2d15c657" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T095028Z:0c30df9b-87ab-4cb1-852d-048143238c9e" + "WESTINDIA:20220516T160551Z:b3bc143a-da64-43b8-821f-aaed2d15c657" ], "Date": [ - "Sat, 26 Mar 2022 09:50:27 GMT" + "Mon, 16 May 2022 16:05:51 GMT" ], "Content-Length": [ "821" @@ -2721,26 +3251,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/3f3f7b1d-de21-4404-8972-7a5230043480\",\r\n \"name\": \"3f3f7b1d-de21-4404-8972-7a5230043480\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT21.6914953S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"Storage\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"File Share Name\": \"fs1\",\r\n \"Storage Account Name\": \"pstestsa8895\"\r\n }\r\n },\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"DeleteBackupData\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-03-26T09:49:55.5447063Z\",\r\n \"endTime\": \"2022-03-26T09:50:17.2362016Z\",\r\n \"activityId\": \"f7dc25b6-2271-4e15-a667-67ab7c0a9ecd\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/02580b0e-2339-4ffa-aea1-82e2018e58c9\",\r\n \"name\": \"02580b0e-2339-4ffa-aea1-82e2018e58c9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT11.9518238S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"Storage\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"File Share Name\": \"fs1\",\r\n \"Storage Account Name\": \"pstestsa8895\"\r\n }\r\n },\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"DeleteBackupData\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-05-16T16:05:33.8553609Z\",\r\n \"endTime\": \"2022-05-16T16:05:45.8071847Z\",\r\n \"activityId\": \"c01fbcb7-97ce-4515-94cf-651d23e79b31\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NT9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f6701f77-4f4e-4283-ab8e-626480b8258b" + "9443324c-93e0-47f9-a9db-da305d49c589" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -2751,23 +3281,23 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperationResults/077a4c4b-0404-41ec-83b9-26a1fe430786?fabricName=Azure?api-version=2021-12-01" + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperationResults/f78afd26-1f6f-4998-a752-2e66a0f070de?fabricName=Azure?api-version=2022-02-01" ], "Retry-After": [ "60" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationsStatus/077a4c4b-0404-41ec-83b9-26a1fe430786?api-version=2019-05-13-preview" + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationsStatus/f78afd26-1f6f-4998-a752-2e66a0f070de?api-version=2019-05-13-preview" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "493ed913-d819-4f7c-8a96-ac832ea7a46f" + "208e3f7d-57ce-4eb9-b909-d0e1ae6911bc" ], "x-ms-client-request-id": [ - "f6701f77-4f4e-4283-ab8e-626480b8258b", - "f6701f77-4f4e-4283-ab8e-626480b8258b" + "9443324c-93e0-47f9-a9db-da305d49c589", + "9443324c-93e0-47f9-a9db-da305d49c589" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2776,16 +3306,16 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14997" + "14998" ], "x-ms-correlation-request-id": [ - "493ed913-d819-4f7c-8a96-ac832ea7a46f" + "208e3f7d-57ce-4eb9-b909-d0e1ae6911bc" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T095029Z:493ed913-d819-4f7c-8a96-ac832ea7a46f" + "WESTINDIA:20220516T160552Z:208e3f7d-57ce-4eb9-b909-d0e1ae6911bc" ], "Date": [ - "Sat, 26 Mar 2022 09:50:28 GMT" + "Mon, 16 May 2022 16:05:52 GMT" ], "Expires": [ "-1" @@ -2798,22 +3328,22 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/077a4c4b-0404-41ec-83b9-26a1fe430786?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzLzA3N2E0YzRiLTA0MDQtNDFlYy04M2I5LTI2YTFmZTQzMDc4Nj9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/f78afd26-1f6f-4998-a752-2e66a0f070de?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzL2Y3OGFmZDI2LTFmNmYtNDk5OC1hNzUyLTJlNjZhMGYwNzBkZT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f6701f77-4f4e-4283-ab8e-626480b8258b" + "9443324c-93e0-47f9-a9db-da305d49c589" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -2824,7 +3354,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/077a4c4b-0404-41ec-83b9-26a1fe430786?api-version=2021-12-01" + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/f78afd26-1f6f-4998-a752-2e66a0f070de?api-version=2022-02-01" ], "Retry-After": [ "60" @@ -2833,11 +3363,11 @@ "nosniff" ], "x-ms-request-id": [ - "ba81622c-0085-4641-85f5-459964294369" + "8b0d0690-58c1-4b47-a7e6-18a8aad727e5" ], "x-ms-client-request-id": [ - "f6701f77-4f4e-4283-ab8e-626480b8258b", - "f6701f77-4f4e-4283-ab8e-626480b8258b" + "9443324c-93e0-47f9-a9db-da305d49c589", + "9443324c-93e0-47f9-a9db-da305d49c589" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2846,16 +3376,16 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "299" + "296" ], "x-ms-correlation-request-id": [ - "ba81622c-0085-4641-85f5-459964294369" + "8b0d0690-58c1-4b47-a7e6-18a8aad727e5" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T095029Z:ba81622c-0085-4641-85f5-459964294369" + "WESTINDIA:20220516T160552Z:8b0d0690-58c1-4b47-a7e6-18a8aad727e5" ], "Date": [ - "Sat, 26 Mar 2022 09:50:29 GMT" + "Mon, 16 May 2022 16:05:52 GMT" ], "Expires": [ "-1" @@ -2868,22 +3398,22 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/077a4c4b-0404-41ec-83b9-26a1fe430786?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzLzA3N2E0YzRiLTA0MDQtNDFlYy04M2I5LTI2YTFmZTQzMDc4Nj9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/f78afd26-1f6f-4998-a752-2e66a0f070de?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzL2Y3OGFmZDI2LTFmNmYtNDk5OC1hNzUyLTJlNjZhMGYwNzBkZT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f6701f77-4f4e-4283-ab8e-626480b8258b" + "9443324c-93e0-47f9-a9db-da305d49c589" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -2894,7 +3424,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/077a4c4b-0404-41ec-83b9-26a1fe430786?api-version=2021-12-01" + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/f78afd26-1f6f-4998-a752-2e66a0f070de?api-version=2022-02-01" ], "Retry-After": [ "60" @@ -2903,11 +3433,11 @@ "nosniff" ], "x-ms-request-id": [ - "45a8459a-1005-45bc-b37f-e441e41c9d9e" + "badf9f26-cb99-49f3-b70f-278732fd1e3d" ], "x-ms-client-request-id": [ - "f6701f77-4f4e-4283-ab8e-626480b8258b", - "f6701f77-4f4e-4283-ab8e-626480b8258b" + "9443324c-93e0-47f9-a9db-da305d49c589", + "9443324c-93e0-47f9-a9db-da305d49c589" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2916,16 +3446,16 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "298" + "295" ], "x-ms-correlation-request-id": [ - "45a8459a-1005-45bc-b37f-e441e41c9d9e" + "badf9f26-cb99-49f3-b70f-278732fd1e3d" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T095040Z:45a8459a-1005-45bc-b37f-e441e41c9d9e" + "WESTINDIA:20220516T160558Z:badf9f26-cb99-49f3-b70f-278732fd1e3d" ], "Date": [ - "Sat, 26 Mar 2022 09:50:39 GMT" + "Mon, 16 May 2022 16:05:58 GMT" ], "Expires": [ "-1" @@ -2938,22 +3468,22 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/077a4c4b-0404-41ec-83b9-26a1fe430786?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzLzA3N2E0YzRiLTA0MDQtNDFlYy04M2I5LTI2YTFmZTQzMDc4Nj9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/f78afd26-1f6f-4998-a752-2e66a0f070de?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzL2Y3OGFmZDI2LTFmNmYtNDk5OC1hNzUyLTJlNjZhMGYwNzBkZT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f6701f77-4f4e-4283-ab8e-626480b8258b" + "9443324c-93e0-47f9-a9db-da305d49c589" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -2964,7 +3494,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/077a4c4b-0404-41ec-83b9-26a1fe430786?api-version=2021-12-01" + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/f78afd26-1f6f-4998-a752-2e66a0f070de?api-version=2022-02-01" ], "Retry-After": [ "60" @@ -2973,11 +3503,11 @@ "nosniff" ], "x-ms-request-id": [ - "e3824d31-bc1c-42a5-ad69-f016b953f5bf" + "aade5255-9edb-4861-9e23-6eb01246e191" ], "x-ms-client-request-id": [ - "f6701f77-4f4e-4283-ab8e-626480b8258b", - "f6701f77-4f4e-4283-ab8e-626480b8258b" + "9443324c-93e0-47f9-a9db-da305d49c589", + "9443324c-93e0-47f9-a9db-da305d49c589" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2986,16 +3516,16 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "297" + "294" ], "x-ms-correlation-request-id": [ - "e3824d31-bc1c-42a5-ad69-f016b953f5bf" + "aade5255-9edb-4861-9e23-6eb01246e191" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T095050Z:e3824d31-bc1c-42a5-ad69-f016b953f5bf" + "WESTINDIA:20220516T160604Z:aade5255-9edb-4861-9e23-6eb01246e191" ], "Date": [ - "Sat, 26 Mar 2022 09:50:49 GMT" + "Mon, 16 May 2022 16:06:03 GMT" ], "Expires": [ "-1" @@ -3008,22 +3538,22 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/077a4c4b-0404-41ec-83b9-26a1fe430786?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzLzA3N2E0YzRiLTA0MDQtNDFlYy04M2I5LTI2YTFmZTQzMDc4Nj9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/f78afd26-1f6f-4998-a752-2e66a0f070de?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzL2Y3OGFmZDI2LTFmNmYtNDk5OC1hNzUyLTJlNjZhMGYwNzBkZT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f6701f77-4f4e-4283-ab8e-626480b8258b" + "9443324c-93e0-47f9-a9db-da305d49c589" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -3033,15 +3563,21 @@ "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/f78afd26-1f6f-4998-a752-2e66a0f070de?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "a47d2783-1f33-4404-8fce-d54394ef97d8" + "ff98f9cf-f88f-4ec2-852b-f74a346c32f8" ], "x-ms-client-request-id": [ - "f6701f77-4f4e-4283-ab8e-626480b8258b", - "f6701f77-4f4e-4283-ab8e-626480b8258b" + "9443324c-93e0-47f9-a9db-da305d49c589", + "9443324c-93e0-47f9-a9db-da305d49c589" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3050,38 +3586,102 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "296" + "293" + ], + "x-ms-correlation-request-id": [ + "ff98f9cf-f88f-4ec2-852b-f74a346c32f8" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T160609Z:ff98f9cf-f88f-4ec2-852b-f74a346c32f8" + ], + "Date": [ + "Mon, 16 May 2022 16:06:08 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/f78afd26-1f6f-4998-a752-2e66a0f070de?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzL2Y3OGFmZDI2LTFmNmYtNDk5OC1hNzUyLTJlNjZhMGYwNzBkZT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9443324c-93e0-47f9-a9db-da305d49c589" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "4f331de1-e248-4726-9d7a-30a4e9e03fe0" + ], + "x-ms-client-request-id": [ + "9443324c-93e0-47f9-a9db-da305d49c589", + "9443324c-93e0-47f9-a9db-da305d49c589" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "292" ], "x-ms-correlation-request-id": [ - "a47d2783-1f33-4404-8fce-d54394ef97d8" + "4f331de1-e248-4726-9d7a-30a4e9e03fe0" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T095101Z:a47d2783-1f33-4404-8fce-d54394ef97d8" + "WESTINDIA:20220516T160614Z:4f331de1-e248-4726-9d7a-30a4e9e03fe0" ], "Date": [ - "Sat, 26 Mar 2022 09:51:01 GMT" + "Mon, 16 May 2022 16:06:14 GMT" ] }, "ResponseBody": "", "StatusCode": 204 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/077a4c4b-0404-41ec-83b9-26a1fe430786?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzLzA3N2E0YzRiLTA0MDQtNDFlYy04M2I5LTI2YTFmZTQzMDc4Nj9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/f78afd26-1f6f-4998-a752-2e66a0f070de?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzL2Y3OGFmZDI2LTFmNmYtNDk5OC1hNzUyLTJlNjZhMGYwNzBkZT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f6701f77-4f4e-4283-ab8e-626480b8258b" + "9443324c-93e0-47f9-a9db-da305d49c589" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -3095,11 +3695,11 @@ "nosniff" ], "x-ms-request-id": [ - "3e07c063-c23a-486c-b5ec-9b6aeaea354b" + "8bff7905-d2a1-4aa4-995c-1ac41496c4fb" ], "x-ms-client-request-id": [ - "f6701f77-4f4e-4283-ab8e-626480b8258b", - "f6701f77-4f4e-4283-ab8e-626480b8258b" + "9443324c-93e0-47f9-a9db-da305d49c589", + "9443324c-93e0-47f9-a9db-da305d49c589" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3108,16 +3708,16 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "295" + "291" ], "x-ms-correlation-request-id": [ - "3e07c063-c23a-486c-b5ec-9b6aeaea354b" + "8bff7905-d2a1-4aa4-995c-1ac41496c4fb" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T095101Z:3e07c063-c23a-486c-b5ec-9b6aeaea354b" + "WESTINDIA:20220516T160615Z:8bff7905-d2a1-4aa4-995c-1ac41496c4fb" ], "Date": [ - "Sat, 26 Mar 2022 09:51:01 GMT" + "Mon, 16 May 2022 16:06:14 GMT" ] }, "ResponseBody": "", diff --git a/src/RecoveryServices/RecoveryServices.Backup.Test/SessionRecords/Microsoft.Azure.Commands.RecoveryServices.Backup.Test.ScenarioTests.ItemTests/TestAzureFSFullRestore.json b/src/RecoveryServices/RecoveryServices.Backup.Test/SessionRecords/Microsoft.Azure.Commands.RecoveryServices.Backup.Test.ScenarioTests.ItemTests/TestAzureFSFullRestore.json index 6967507e22d2..560fd6537a86 100644 --- a/src/RecoveryServices/RecoveryServices.Backup.Test/SessionRecords/Microsoft.Azure.Commands.RecoveryServices.Backup.Test.ScenarioTests.ItemTests/TestAzureFSFullRestore.json +++ b/src/RecoveryServices/RecoveryServices.Backup.Test/SessionRecords/Microsoft.Azure.Commands.RecoveryServices.Backup.Test.ScenarioTests.ItemTests/TestAzureFSFullRestore.json @@ -7,13 +7,13 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "aa316931-3769-48e0-bfa0-efa853a75ad3" + "edf6adf9-e326-486a-8766-7370f55972ed" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesClient/4.3.2.0" @@ -30,10 +30,10 @@ "nosniff" ], "x-ms-request-id": [ - "175eaf1f-55e5-4374-861b-83489581971c" + "f6353991-94b9-43d4-b3dc-1acb9015f647" ], "x-ms-client-request-id": [ - "aa316931-3769-48e0-bfa0-efa853a75ad3" + "edf6adf9-e326-486a-8766-7370f55972ed" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -42,19 +42,19 @@ "Microsoft-IIS/10.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11997" ], "x-ms-correlation-request-id": [ - "175eaf1f-55e5-4374-861b-83489581971c" + "f6353991-94b9-43d4-b3dc-1acb9015f647" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T095417Z:175eaf1f-55e5-4374-861b-83489581971c" + "JIOINDIAWEST:20220516T160915Z:f6353991-94b9-43d4-b3dc-1acb9015f647" ], "Date": [ - "Sat, 26 Mar 2022 09:54:17 GMT" + "Mon, 16 May 2022 16:09:14 GMT" ], "Content-Length": [ - "467" + "519" ], "Content-Type": [ "application/json" @@ -63,26 +63,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pstestrsv8895\",\r\n \"etag\": \"W/\\\"datetime'2022-02-18T07%3A20%3A25.5509044Z'\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateEndpointStateForBackup\": \"None\",\r\n \"privateEndpointStateForSiteRecovery\": \"None\"\r\n },\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"RS0\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pstestrsv8895\",\r\n \"etag\": \"W/\\\"datetime'2022-02-18T07%3A20%3A25.5509044Z'\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateEndpointStateForBackup\": \"None\",\r\n \"privateEndpointStateForSiteRecovery\": \"None\",\r\n \"networkSettings\": {\r\n \"publicNetworkAccess\": \"Enabled\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"RS0\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupProtectionContainers?$filter=friendlyName%20eq%20'pstestsa8895'%20and%20backupManagementType%20eq%20'AzureStorage'%20and%20status%20eq%20'Registered'&api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwUHJvdGVjdGlvbkNvbnRhaW5lcnM/JGZpbHRlcj1mcmllbmRseU5hbWUlMjBlcSUyMCdwc3Rlc3RzYTg4OTUnJTIwYW5kJTIwYmFja3VwTWFuYWdlbWVudFR5cGUlMjBlcSUyMCdBenVyZVN0b3JhZ2UnJTIwYW5kJTIwc3RhdHVzJTIwZXElMjAnUmVnaXN0ZXJlZCcmYXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupProtectionContainers?$filter=friendlyName%20eq%20'pstestsa8895'%20and%20backupManagementType%20eq%20'AzureStorage'%20and%20status%20eq%20'Registered'&api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwUHJvdGVjdGlvbkNvbnRhaW5lcnM/JGZpbHRlcj1mcmllbmRseU5hbWUlMjBlcSUyMCdwc3Rlc3RzYTg4OTUnJTIwYW5kJTIwYmFja3VwTWFuYWdlbWVudFR5cGUlMjBlcSUyMCdBenVyZVN0b3JhZ2UnJTIwYW5kJTIwc3RhdHVzJTIwZXElMjAnUmVnaXN0ZXJlZCcmYXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "676cf773-0fa9-4a3a-a6e0-eeb11bffae5c" + "be8e93d6-b51c-4e63-94c5-a320161afebc" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -96,11 +96,11 @@ "nosniff" ], "x-ms-request-id": [ - "4e5d70d5-ca09-4f85-8bc9-d3cadd21e9d4" + "8c92e36d-6c7f-4672-b27c-2229affda53b" ], "x-ms-client-request-id": [ - "676cf773-0fa9-4a3a-a6e0-eeb11bffae5c", - "676cf773-0fa9-4a3a-a6e0-eeb11bffae5c" + "be8e93d6-b51c-4e63-94c5-a320161afebc", + "be8e93d6-b51c-4e63-94c5-a320161afebc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -115,13 +115,13 @@ "299" ], "x-ms-correlation-request-id": [ - "4e5d70d5-ca09-4f85-8bc9-d3cadd21e9d4" + "8c92e36d-6c7f-4672-b27c-2229affda53b" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T095418Z:4e5d70d5-ca09-4f85-8bc9-d3cadd21e9d4" + "JIOINDIAWEST:20220516T160917Z:8c92e36d-6c7f-4672-b27c-2229affda53b" ], "Date": [ - "Sat, 26 Mar 2022 09:54:17 GMT" + "Mon, 16 May 2022 16:09:16 GMT" ], "Content-Length": [ "12" @@ -137,22 +137,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupProtectionContainers?$filter=friendlyName%20eq%20'pstestsa8895'%20and%20backupManagementType%20eq%20'AzureStorage'%20and%20status%20eq%20'Registered'&api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwUHJvdGVjdGlvbkNvbnRhaW5lcnM/JGZpbHRlcj1mcmllbmRseU5hbWUlMjBlcSUyMCdwc3Rlc3RzYTg4OTUnJTIwYW5kJTIwYmFja3VwTWFuYWdlbWVudFR5cGUlMjBlcSUyMCdBenVyZVN0b3JhZ2UnJTIwYW5kJTIwc3RhdHVzJTIwZXElMjAnUmVnaXN0ZXJlZCcmYXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupProtectionContainers?$filter=friendlyName%20eq%20'pstestsa8895'%20and%20backupManagementType%20eq%20'AzureStorage'%20and%20status%20eq%20'Registered'&api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwUHJvdGVjdGlvbkNvbnRhaW5lcnM/JGZpbHRlcj1mcmllbmRseU5hbWUlMjBlcSUyMCdwc3Rlc3RzYTg4OTUnJTIwYW5kJTIwYmFja3VwTWFuYWdlbWVudFR5cGUlMjBlcSUyMCdBenVyZVN0b3JhZ2UnJTIwYW5kJTIwc3RhdHVzJTIwZXElMjAnUmVnaXN0ZXJlZCcmYXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "683ef7a9-a364-476f-a220-ed2ea7594743" + "b760e9e2-6b04-4349-b0ac-b027dd6e77bc" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -166,11 +166,11 @@ "nosniff" ], "x-ms-request-id": [ - "4ecc8cbd-2551-4453-8fde-9094a7a2c230" + "5fc9f381-e162-450a-9719-22916ae1c63b" ], "x-ms-client-request-id": [ - "683ef7a9-a364-476f-a220-ed2ea7594743", - "683ef7a9-a364-476f-a220-ed2ea7594743" + "b760e9e2-6b04-4349-b0ac-b027dd6e77bc", + "b760e9e2-6b04-4349-b0ac-b027dd6e77bc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,13 +185,13 @@ "297" ], "x-ms-correlation-request-id": [ - "4ecc8cbd-2551-4453-8fde-9094a7a2c230" + "5fc9f381-e162-450a-9719-22916ae1c63b" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T095536Z:4ecc8cbd-2551-4453-8fde-9094a7a2c230" + "JIOINDIAWEST:20220516T161035Z:5fc9f381-e162-450a-9719-22916ae1c63b" ], "Date": [ - "Sat, 26 Mar 2022 09:55:35 GMT" + "Mon, 16 May 2022 16:10:34 GMT" ], "Content-Length": [ "827" @@ -207,22 +207,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupProtectionContainers?$filter=friendlyName%20eq%20'pstestsa8895'%20and%20backupManagementType%20eq%20'AzureStorage'%20and%20status%20eq%20'Registered'&api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwUHJvdGVjdGlvbkNvbnRhaW5lcnM/JGZpbHRlcj1mcmllbmRseU5hbWUlMjBlcSUyMCdwc3Rlc3RzYTg4OTUnJTIwYW5kJTIwYmFja3VwTWFuYWdlbWVudFR5cGUlMjBlcSUyMCdBenVyZVN0b3JhZ2UnJTIwYW5kJTIwc3RhdHVzJTIwZXElMjAnUmVnaXN0ZXJlZCcmYXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupProtectionContainers?$filter=friendlyName%20eq%20'pstestsa8895'%20and%20backupManagementType%20eq%20'AzureStorage'%20and%20status%20eq%20'Registered'&api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwUHJvdGVjdGlvbkNvbnRhaW5lcnM/JGZpbHRlcj1mcmllbmRseU5hbWUlMjBlcSUyMCdwc3Rlc3RzYTg4OTUnJTIwYW5kJTIwYmFja3VwTWFuYWdlbWVudFR5cGUlMjBlcSUyMCdBenVyZVN0b3JhZ2UnJTIwYW5kJTIwc3RhdHVzJTIwZXElMjAnUmVnaXN0ZXJlZCcmYXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e5a20c90-088e-49f2-bdd6-978d707415bf" + "9a07b63a-915a-4e90-bfb6-192c34bc0096" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -236,11 +236,11 @@ "nosniff" ], "x-ms-request-id": [ - "d8325c58-5a23-47d6-ae63-2671ea86aec5" + "83285ba1-5799-41b6-a684-c02cba7bcff4" ], "x-ms-client-request-id": [ - "e5a20c90-088e-49f2-bdd6-978d707415bf", - "e5a20c90-088e-49f2-bdd6-978d707415bf" + "9a07b63a-915a-4e90-bfb6-192c34bc0096", + "9a07b63a-915a-4e90-bfb6-192c34bc0096" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -255,13 +255,13 @@ "296" ], "x-ms-correlation-request-id": [ - "d8325c58-5a23-47d6-ae63-2671ea86aec5" + "83285ba1-5799-41b6-a684-c02cba7bcff4" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T095537Z:d8325c58-5a23-47d6-ae63-2671ea86aec5" + "JIOINDIAWEST:20220516T161037Z:83285ba1-5799-41b6-a684-c02cba7bcff4" ], "Date": [ - "Sat, 26 Mar 2022 09:55:36 GMT" + "Mon, 16 May 2022 16:10:36 GMT" ], "Content-Length": [ "827" @@ -277,22 +277,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupPolicies/afspolicy1?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwUG9saWNpZXMvYWZzcG9saWN5MT9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupPolicies/afspolicy1?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwUG9saWNpZXMvYWZzcG9saWN5MT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "07647538-8d2d-494f-a5fe-1ed7321762d3" + "484b7b8c-b7a9-46c7-aada-1ecff1488fd0" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -306,11 +306,11 @@ "nosniff" ], "x-ms-request-id": [ - "84e1e3b6-4e9a-40b2-8d9d-b130923766c5" + "b6f2f110-ae81-4219-9137-1e27ba21ff38" ], "x-ms-client-request-id": [ - "07647538-8d2d-494f-a5fe-1ed7321762d3", - "07647538-8d2d-494f-a5fe-1ed7321762d3" + "484b7b8c-b7a9-46c7-aada-1ecff1488fd0", + "484b7b8c-b7a9-46c7-aada-1ecff1488fd0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -325,13 +325,13 @@ "299" ], "x-ms-correlation-request-id": [ - "84e1e3b6-4e9a-40b2-8d9d-b130923766c5" + "b6f2f110-ae81-4219-9137-1e27ba21ff38" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T095418Z:84e1e3b6-4e9a-40b2-8d9d-b130923766c5" + "JIOINDIAWEST:20220516T160917Z:b6f2f110-ae81-4219-9137-1e27ba21ff38" ], "Date": [ - "Sat, 26 Mar 2022 09:54:17 GMT" + "Mon, 16 May 2022 16:09:17 GMT" ], "Content-Length": [ "693" @@ -347,22 +347,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupProtectionContainers?$filter=backupManagementType%20eq%20'AzureStorage'&api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwUHJvdGVjdGlvbkNvbnRhaW5lcnM/JGZpbHRlcj1iYWNrdXBNYW5hZ2VtZW50VHlwZSUyMGVxJTIwJ0F6dXJlU3RvcmFnZScmYXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupProtectionContainers?$filter=backupManagementType%20eq%20'AzureStorage'&api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwUHJvdGVjdGlvbkNvbnRhaW5lcnM/JGZpbHRlcj1iYWNrdXBNYW5hZ2VtZW50VHlwZSUyMGVxJTIwJ0F6dXJlU3RvcmFnZScmYXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c6f1d089-4a93-47b8-a09c-8e0808468896" + "a8f88a84-d257-4df1-b7d8-425088904579" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -376,11 +376,11 @@ "nosniff" ], "x-ms-request-id": [ - "72cea727-72d5-4bf2-b417-ebda64a869f3" + "710258d2-f045-4b16-8ec7-fb3896307b6e" ], "x-ms-client-request-id": [ - "c6f1d089-4a93-47b8-a09c-8e0808468896", - "c6f1d089-4a93-47b8-a09c-8e0808468896" + "a8f88a84-d257-4df1-b7d8-425088904579", + "a8f88a84-d257-4df1-b7d8-425088904579" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -395,13 +395,13 @@ "298" ], "x-ms-correlation-request-id": [ - "72cea727-72d5-4bf2-b417-ebda64a869f3" + "710258d2-f045-4b16-8ec7-fb3896307b6e" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T095418Z:72cea727-72d5-4bf2-b417-ebda64a869f3" + "JIOINDIAWEST:20220516T160918Z:710258d2-f045-4b16-8ec7-fb3896307b6e" ], "Date": [ - "Sat, 26 Mar 2022 09:54:18 GMT" + "Mon, 16 May 2022 16:09:17 GMT" ], "Content-Length": [ "12" @@ -417,22 +417,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers?$filter=backupManagementType%20eq%20'AzureStorage'&api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0YWJsZUNvbnRhaW5lcnM/JGZpbHRlcj1iYWNrdXBNYW5hZ2VtZW50VHlwZSUyMGVxJTIwJ0F6dXJlU3RvcmFnZScmYXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers?$filter=backupManagementType%20eq%20'AzureStorage'&api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0YWJsZUNvbnRhaW5lcnM/JGZpbHRlcj1iYWNrdXBNYW5hZ2VtZW50VHlwZSUyMGVxJTIwJ0F6dXJlU3RvcmFnZScmYXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c6f1d089-4a93-47b8-a09c-8e0808468896" + "a8f88a84-d257-4df1-b7d8-425088904579" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -446,11 +446,11 @@ "nosniff" ], "x-ms-request-id": [ - "fea8f519-3b54-48bb-ba5d-a66b2a123817" + "a50fffed-dae4-4d03-9e1b-dd514c5ec7c9" ], "x-ms-client-request-id": [ - "c6f1d089-4a93-47b8-a09c-8e0808468896", - "c6f1d089-4a93-47b8-a09c-8e0808468896" + "a8f88a84-d257-4df1-b7d8-425088904579", + "a8f88a84-d257-4df1-b7d8-425088904579" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -465,16 +465,16 @@ "299" ], "x-ms-correlation-request-id": [ - "fea8f519-3b54-48bb-ba5d-a66b2a123817" + "a50fffed-dae4-4d03-9e1b-dd514c5ec7c9" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T095419Z:fea8f519-3b54-48bb-ba5d-a66b2a123817" + "JIOINDIAWEST:20220516T160919Z:a50fffed-dae4-4d03-9e1b-dd514c5ec7c9" ], "Date": [ - "Sat, 26 Mar 2022 09:54:18 GMT" + "Mon, 16 May 2022 16:09:18 GMT" ], "Content-Length": [ - "14925" + "24516" ], "Content-Type": [ "application/json" @@ -483,26 +483,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;afstests;02xseacan01otds1\",\r\n \"name\": \"StorageContainer;Storage;afstests;02xseacan01otds1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"02xseacan01otds1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/02xseacan01otds1\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;afstests;afsbackupsa\",\r\n \"name\": \"StorageContainer;Storage;afstests;afsbackupsa\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"afsbackupsa\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/afsbackupsa\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;afstests;storageysci5wbex6jyc\",\r\n \"name\": \"StorageContainer;Storage;afstests;storageysci5wbex6jyc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"storageysci5wbex6jyc\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/storageysci5wbex6jyc\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;akkanaseCMK;0byseapod01otds1\",\r\n \"name\": \"StorageContainer;Storage;akkanaseCMK;0byseapod01otds1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"0byseapod01otds1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseCMK/providers/Microsoft.Storage/storageAccounts/0byseapod01otds1\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;akkanaseGRSVault;frmseapod01otds1\",\r\n \"name\": \"StorageContainer;Storage;akkanaseGRSVault;frmseapod01otds1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"frmseapod01otds1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseGRSVault/providers/Microsoft.Storage/storageAccounts/frmseapod01otds1\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;cmk.system;cmkautomationstore\",\r\n \"name\": \"StorageContainer;Storage;cmk.system;cmkautomationstore\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"cmkautomationstore\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/cmk.system/providers/Microsoft.Storage/storageAccounts/cmkautomationstore\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;disk-bvt-test-rg;hv3seapod01otds1\",\r\n \"name\": \"StorageContainer;Storage;disk-bvt-test-rg;hv3seapod01otds1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"hv3seapod01otds1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/disk-bvt-test-rg/providers/Microsoft.Storage/storageAccounts/hv3seapod01otds1\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;DoNotUse-OSS-BVT-SEA-RG;dontuseossrestoreasfile\",\r\n \"name\": \"StorageContainer;Storage;DoNotUse-OSS-BVT-SEA-RG;dontuseossrestoreasfile\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"dontuseossrestoreasfile\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/DoNotUse-OSS-BVT-SEA-RG/providers/Microsoft.Storage/storageAccounts/dontuseossrestoreasfile\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;iaasvm.encryptedvm;iaasvmencryptedvmdiag170\",\r\n \"name\": \"StorageContainer;Storage;iaasvm.encryptedvm;iaasvmencryptedvmdiag170\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"iaasvmencryptedvmdiag170\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.encryptedvm/providers/Microsoft.Storage/storageAccounts/iaasvmencryptedvmdiag170\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;iaasvm.existing;iaasextstore1\",\r\n \"name\": \"StorageContainer;Storage;iaasvm.existing;iaasextstore1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"iaasextstore1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.existing/providers/Microsoft.Storage/storageAccounts/iaasextstore1\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;iaasvm.new;iaasvmnewdiag1\",\r\n \"name\": \"StorageContainer;Storage;iaasvm.new;iaasvmnewdiag1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"iaasvmnewdiag1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.new/providers/Microsoft.Storage/storageAccounts/iaasvmnewdiag1\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;iaasvmhanaworkload.existing;iaasvmhanaworkloadexisti\",\r\n \"name\": \"StorageContainer;Storage;iaasvmhanaworkload.existing;iaasvmhanaworkloadexisti\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"iaasvmhanaworkloadexisti\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvmhanaworkload.existing/providers/Microsoft.Storage/storageAccounts/iaasvmhanaworkloadexisti\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;pscloudtestrg;pscloudtestrgdiag\",\r\n \"name\": \"StorageContainer;Storage;pscloudtestrg;pscloudtestrgdiag\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"pscloudtestrgdiag\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pscloudtestrg/providers/Microsoft.Storage/storageAccounts/pscloudtestrgdiag\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;PSTestRG1e5a278b;pstestsa1e5a278b\",\r\n \"name\": \"StorageContainer;Storage;PSTestRG1e5a278b;pstestsa1e5a278b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"pstestsa1e5a278b\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG1e5a278b/providers/Microsoft.Storage/storageAccounts/pstestsa1e5a278b\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;PSTestRG235879ba;pstestsa235879ba\",\r\n \"name\": \"StorageContainer;Storage;PSTestRG235879ba;pstestsa235879ba\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"pstestsa235879ba\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG235879ba/providers/Microsoft.Storage/storageAccounts/pstestsa235879ba\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;PSTestRG54bdf8da;pstestsa54bdf8da\",\r\n \"name\": \"StorageContainer;Storage;PSTestRG54bdf8da;pstestsa54bdf8da\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"pstestsa54bdf8da\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG54bdf8da/providers/Microsoft.Storage/storageAccounts/pstestsa54bdf8da\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;PSTestRG59e1706f;pstestsa59e1706f\",\r\n \"name\": \"StorageContainer;Storage;PSTestRG59e1706f;pstestsa59e1706f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"pstestsa59e1706f\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG59e1706f/providers/Microsoft.Storage/storageAccounts/pstestsa59e1706f\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895\",\r\n \"name\": \"StorageContainer;Storage;pstestrg8895;pstestsa8895\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"pstestsa8895\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstestsa8895\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;pstestrg8895;pstesttargetsa8895\",\r\n \"name\": \"StorageContainer;Storage;pstestrg8895;pstesttargetsa8895\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"pstesttargetsa8895\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstesttargetsa8895\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;pstestrg8895;pstesttargetsa8896\",\r\n \"name\": \"StorageContainer;Storage;pstestrg8895;pstesttargetsa8896\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"pstesttargetsa8896\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstesttargetsa8896\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;sambit_rg;sarathsa3\",\r\n \"name\": \"StorageContainer;Storage;sambit_rg;sarathsa3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"sarathsa3\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/sambit_rg/providers/Microsoft.Storage/storageAccounts/sarathsa3\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;afstests;02xseacan01otds1\",\r\n \"name\": \"StorageContainer;Storage;afstests;02xseacan01otds1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"02xseacan01otds1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/02xseacan01otds1\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;afstests;afsbackupsa\",\r\n \"name\": \"StorageContainer;Storage;afstests;afsbackupsa\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"afsbackupsa\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/afsbackupsa\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;afstests;storageysci5wbex6jyc\",\r\n \"name\": \"StorageContainer;Storage;afstests;storageysci5wbex6jyc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"storageysci5wbex6jyc\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/storageysci5wbex6jyc\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;akkanaseCMK;0byseapod01otds1\",\r\n \"name\": \"StorageContainer;Storage;akkanaseCMK;0byseapod01otds1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"0byseapod01otds1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseCMK/providers/Microsoft.Storage/storageAccounts/0byseapod01otds1\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;akkanaseGRSVault;frmseapod01otds1\",\r\n \"name\": \"StorageContainer;Storage;akkanaseGRSVault;frmseapod01otds1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"frmseapod01otds1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseGRSVault/providers/Microsoft.Storage/storageAccounts/frmseapod01otds1\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rg2z2u2iy224;clitestupktrqr622evq7uzq\",\r\n \"name\": \"StorageContainer;Storage;clitest.rg2z2u2iy224;clitestupktrqr622evq7uzq\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"clitestupktrqr622evq7uzq\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rg2z2u2iy224/providers/Microsoft.Storage/storageAccounts/clitestupktrqr622evq7uzq\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rg3szxf3a3my;clitestjcdqcd3tnqg5bhtr2\",\r\n \"name\": \"StorageContainer;Storage;clitest.rg3szxf3a3my;clitestjcdqcd3tnqg5bhtr2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"clitestjcdqcd3tnqg5bhtr2\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rg3szxf3a3my/providers/Microsoft.Storage/storageAccounts/clitestjcdqcd3tnqg5bhtr2\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rg5daabmbo3e;clitestfky4kz2v5vosldvhe\",\r\n \"name\": \"StorageContainer;Storage;clitest.rg5daabmbo3e;clitestfky4kz2v5vosldvhe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"clitestfky4kz2v5vosldvhe\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rg5daabmbo3e/providers/Microsoft.Storage/storageAccounts/clitestfky4kz2v5vosldvhe\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rg7leptekwovuif35xu6k3mb6lhszl4fkmod7jkg7yckt4v7epruxvjo6ty2hzsurwh;clitest3cgxtcwowikxqlds4\",\r\n \"name\": \"StorageContainer;Storage;clitest.rg7leptekwovuif35xu6k3mb6lhszl4fkmod7jkg7yckt4v7epruxvjo6ty2hzsurwh;clitest3cgxtcwowikxqlds4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"clitest3cgxtcwowikxqlds4\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rg7leptekwovuif35xu6k3mb6lhszl4fkmod7jkg7yckt4v7epruxvjo6ty2hzsurwh/providers/Microsoft.Storage/storageAccounts/clitest3cgxtcwowikxqlds4\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgbwwuivauc5;clitesttmyfbjqgepkrqhedt\",\r\n \"name\": \"StorageContainer;Storage;clitest.rgbwwuivauc5;clitesttmyfbjqgepkrqhedt\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"clitesttmyfbjqgepkrqhedt\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rgbwwuivauc5/providers/Microsoft.Storage/storageAccounts/clitesttmyfbjqgepkrqhedt\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgf6xl2fxqfv;clitestophphng5ygnzbvq3a\",\r\n \"name\": \"StorageContainer;Storage;clitest.rgf6xl2fxqfv;clitestophphng5ygnzbvq3a\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"clitestophphng5ygnzbvq3a\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rgf6xl2fxqfv/providers/Microsoft.Storage/storageAccounts/clitestophphng5ygnzbvq3a\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rglgudxl7bi5;clitestvv2va5tikpqjvoq6o\",\r\n \"name\": \"StorageContainer;Storage;clitest.rglgudxl7bi5;clitestvv2va5tikpqjvoq6o\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"clitestvv2va5tikpqjvoq6o\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rglgudxl7bi5/providers/Microsoft.Storage/storageAccounts/clitestvv2va5tikpqjvoq6o\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rglx72s62qimgelno2o6rr34a5ovdikhzq5k6dc7773qrbodtnrdcguic5hpiciscne;clitestva4qmim2g5c3cb2tz\",\r\n \"name\": \"StorageContainer;Storage;clitest.rglx72s62qimgelno2o6rr34a5ovdikhzq5k6dc7773qrbodtnrdcguic5hpiciscne;clitestva4qmim2g5c3cb2tz\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"clitestva4qmim2g5c3cb2tz\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rglx72s62qimgelno2o6rr34a5ovdikhzq5k6dc7773qrbodtnrdcguic5hpiciscne/providers/Microsoft.Storage/storageAccounts/clitestva4qmim2g5c3cb2tz\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgm7e2kiyzoto4iaicwwkdomftb7zki5kh2xxwh6yyskpflgsrpkrygkpwpdcltggyb;clitest7gyg4gqt4sxirqdkc\",\r\n \"name\": \"StorageContainer;Storage;clitest.rgm7e2kiyzoto4iaicwwkdomftb7zki5kh2xxwh6yyskpflgsrpkrygkpwpdcltggyb;clitest7gyg4gqt4sxirqdkc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"clitest7gyg4gqt4sxirqdkc\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rgm7e2kiyzoto4iaicwwkdomftb7zki5kh2xxwh6yyskpflgsrpkrygkpwpdcltggyb/providers/Microsoft.Storage/storageAccounts/clitest7gyg4gqt4sxirqdkc\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgqhfzt7fh5x;clitestz6nwne7j34dloacko\",\r\n \"name\": \"StorageContainer;Storage;clitest.rgqhfzt7fh5x;clitestz6nwne7j34dloacko\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"clitestz6nwne7j34dloacko\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rgqhfzt7fh5x/providers/Microsoft.Storage/storageAccounts/clitestz6nwne7j34dloacko\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgwsn3drxg3s;clitestukj4en4puxeag7shu\",\r\n \"name\": \"StorageContainer;Storage;clitest.rgwsn3drxg3s;clitestukj4en4puxeag7shu\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"clitestukj4en4puxeag7shu\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rgwsn3drxg3s/providers/Microsoft.Storage/storageAccounts/clitestukj4en4puxeag7shu\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgwsn3drxg3s;clitestw7rgjg33mzx6cc3su\",\r\n \"name\": \"StorageContainer;Storage;clitest.rgwsn3drxg3s;clitestw7rgjg33mzx6cc3su\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"clitestw7rgjg33mzx6cc3su\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rgwsn3drxg3s/providers/Microsoft.Storage/storageAccounts/clitestw7rgjg33mzx6cc3su\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;cmk.system;cmkautomationstore\",\r\n \"name\": \"StorageContainer;Storage;cmk.system;cmkautomationstore\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"cmkautomationstore\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/cmk.system/providers/Microsoft.Storage/storageAccounts/cmkautomationstore\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;disk-bvt-test-rg;hv3seapod01otds1\",\r\n \"name\": \"StorageContainer;Storage;disk-bvt-test-rg;hv3seapod01otds1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"hv3seapod01otds1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/disk-bvt-test-rg/providers/Microsoft.Storage/storageAccounts/hv3seapod01otds1\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;DoNotUse-OSS-BVT-SEA-RG;dontuseossrestoreasfile\",\r\n \"name\": \"StorageContainer;Storage;DoNotUse-OSS-BVT-SEA-RG;dontuseossrestoreasfile\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"dontuseossrestoreasfile\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/DoNotUse-OSS-BVT-SEA-RG/providers/Microsoft.Storage/storageAccounts/dontuseossrestoreasfile\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;iaasvm.encryptedvm;iaasvmencryptedvmdiag170\",\r\n \"name\": \"StorageContainer;Storage;iaasvm.encryptedvm;iaasvmencryptedvmdiag170\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"iaasvmencryptedvmdiag170\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.encryptedvm/providers/Microsoft.Storage/storageAccounts/iaasvmencryptedvmdiag170\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;iaasvm.existing;iaasextstore1\",\r\n \"name\": \"StorageContainer;Storage;iaasvm.existing;iaasextstore1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"iaasextstore1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.existing/providers/Microsoft.Storage/storageAccounts/iaasextstore1\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;iaasvm.new;iaasvmnewdiag1\",\r\n \"name\": \"StorageContainer;Storage;iaasvm.new;iaasvmnewdiag1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"iaasvmnewdiag1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.new/providers/Microsoft.Storage/storageAccounts/iaasvmnewdiag1\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;iaasvmhanaworkload.existing;iaasvmhanaworkloadexisti\",\r\n \"name\": \"StorageContainer;Storage;iaasvmhanaworkload.existing;iaasvmhanaworkloadexisti\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"iaasvmhanaworkloadexisti\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvmhanaworkload.existing/providers/Microsoft.Storage/storageAccounts/iaasvmhanaworkloadexisti\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;pscloudtestrg;pscloudtestrgdiag\",\r\n \"name\": \"StorageContainer;Storage;pscloudtestrg;pscloudtestrgdiag\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"pscloudtestrgdiag\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pscloudtestrg/providers/Microsoft.Storage/storageAccounts/pscloudtestrgdiag\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;PSTestRG1e5a278b;pstestsa1e5a278b\",\r\n \"name\": \"StorageContainer;Storage;PSTestRG1e5a278b;pstestsa1e5a278b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"pstestsa1e5a278b\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG1e5a278b/providers/Microsoft.Storage/storageAccounts/pstestsa1e5a278b\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;PSTestRG235879ba;pstestsa235879ba\",\r\n \"name\": \"StorageContainer;Storage;PSTestRG235879ba;pstestsa235879ba\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"pstestsa235879ba\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG235879ba/providers/Microsoft.Storage/storageAccounts/pstestsa235879ba\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;PSTestRG54bdf8da;pstestsa54bdf8da\",\r\n \"name\": \"StorageContainer;Storage;PSTestRG54bdf8da;pstestsa54bdf8da\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"pstestsa54bdf8da\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG54bdf8da/providers/Microsoft.Storage/storageAccounts/pstestsa54bdf8da\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;PSTestRG59e1706f;pstestsa59e1706f\",\r\n \"name\": \"StorageContainer;Storage;PSTestRG59e1706f;pstestsa59e1706f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"pstestsa59e1706f\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG59e1706f/providers/Microsoft.Storage/storageAccounts/pstestsa59e1706f\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895\",\r\n \"name\": \"StorageContainer;Storage;pstestrg8895;pstestsa8895\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"pstestsa8895\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstestsa8895\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;pstestrg8895;pstesttargetsa8895\",\r\n \"name\": \"StorageContainer;Storage;pstestrg8895;pstesttargetsa8895\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"pstesttargetsa8895\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstesttargetsa8895\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;pstestrg8895;pstesttargetsa8896\",\r\n \"name\": \"StorageContainer;Storage;pstestrg8895;pstesttargetsa8896\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"pstesttargetsa8896\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstesttargetsa8896\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;sambit_rg;sarathsa3\",\r\n \"name\": \"StorageContainer;Storage;sambit_rg;sarathsa3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"sarathsa3\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/sambit_rg/providers/Microsoft.Storage/storageAccounts/sarathsa3\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NT9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"containerType\": \"StorageContainer\",\r\n \"sourceResourceId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstestsa8895\",\r\n \"resourceGroup\": \"pstestrg8895\",\r\n \"friendlyName\": \"pstestsa8895\",\r\n \"backupManagementType\": \"AzureStorage\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "c6f1d089-4a93-47b8-a09c-8e0808468896" + "a8f88a84-d257-4df1-b7d8-425088904579" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -519,23 +519,23 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationResults/a38a133a-f34a-4ab2-909c-0fcdfdd24c78?api-version=2021-12-01" + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationResults/f880a0b3-7748-484b-909e-b17e56586773?api-version=2022-02-01" ], "Retry-After": [ "60" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationsStatus/a38a133a-f34a-4ab2-909c-0fcdfdd24c78?api-version=2019-05-13-preview" + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationsStatus/f880a0b3-7748-484b-909e-b17e56586773?api-version=2019-05-13-preview" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "3d2d3098-aeca-4e83-a8a7-465cd2392097" + "aafb659f-fa95-4973-8e9f-adfaedafac0c" ], "x-ms-client-request-id": [ - "c6f1d089-4a93-47b8-a09c-8e0808468896", - "c6f1d089-4a93-47b8-a09c-8e0808468896" + "a8f88a84-d257-4df1-b7d8-425088904579", + "a8f88a84-d257-4df1-b7d8-425088904579" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -547,16 +547,16 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1199" ], "x-ms-correlation-request-id": [ - "3d2d3098-aeca-4e83-a8a7-465cd2392097" + "aafb659f-fa95-4973-8e9f-adfaedafac0c" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T095420Z:3d2d3098-aeca-4e83-a8a7-465cd2392097" + "JIOINDIAWEST:20220516T160920Z:aafb659f-fa95-4973-8e9f-adfaedafac0c" ], "Date": [ - "Sat, 26 Mar 2022 09:54:19 GMT" + "Mon, 16 May 2022 16:09:19 GMT" ], "Content-Length": [ "2" @@ -572,22 +572,22 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895/operationResults/a38a133a-f34a-4ab2-909c-0fcdfdd24c78?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9vcGVyYXRpb25SZXN1bHRzL2EzOGExMzNhLWYzNGEtNGFiMi05MDljLTBmY2RmZGQyNGM3OD9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895/operationResults/f880a0b3-7748-484b-909e-b17e56586773?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9vcGVyYXRpb25SZXN1bHRzL2Y4ODBhMGIzLTc3NDgtNDg0Yi05MDllLWIxN2U1NjU4Njc3Mz9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c6f1d089-4a93-47b8-a09c-8e0808468896" + "a8f88a84-d257-4df1-b7d8-425088904579" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -598,23 +598,23 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationResults/a38a133a-f34a-4ab2-909c-0fcdfdd24c78?api-version=2021-12-01" + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationResults/f880a0b3-7748-484b-909e-b17e56586773?api-version=2022-02-01" ], "Retry-After": [ "60" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationsStatus/a38a133a-f34a-4ab2-909c-0fcdfdd24c78?api-version=2019-05-13-preview" + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationsStatus/f880a0b3-7748-484b-909e-b17e56586773?api-version=2019-05-13-preview" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "39a9a908-4694-495e-963f-e241912b2c35" + "ad2ec080-927b-49f7-8eac-642b01b63426" ], "x-ms-client-request-id": [ - "c6f1d089-4a93-47b8-a09c-8e0808468896", - "c6f1d089-4a93-47b8-a09c-8e0808468896" + "a8f88a84-d257-4df1-b7d8-425088904579", + "a8f88a84-d257-4df1-b7d8-425088904579" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -629,13 +629,13 @@ "299" ], "x-ms-correlation-request-id": [ - "39a9a908-4694-495e-963f-e241912b2c35" + "ad2ec080-927b-49f7-8eac-642b01b63426" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T095420Z:39a9a908-4694-495e-963f-e241912b2c35" + "JIOINDIAWEST:20220516T160921Z:ad2ec080-927b-49f7-8eac-642b01b63426" ], "Date": [ - "Sat, 26 Mar 2022 09:54:19 GMT" + "Mon, 16 May 2022 16:09:20 GMT" ], "Content-Length": [ "2" @@ -651,22 +651,22 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895/operationResults/a38a133a-f34a-4ab2-909c-0fcdfdd24c78?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9vcGVyYXRpb25SZXN1bHRzL2EzOGExMzNhLWYzNGEtNGFiMi05MDljLTBmY2RmZGQyNGM3OD9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895/operationResults/f880a0b3-7748-484b-909e-b17e56586773?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9vcGVyYXRpb25SZXN1bHRzL2Y4ODBhMGIzLTc3NDgtNDg0Yi05MDllLWIxN2U1NjU4Njc3Mz9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c6f1d089-4a93-47b8-a09c-8e0808468896" + "a8f88a84-d257-4df1-b7d8-425088904579" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -677,23 +677,23 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationResults/a38a133a-f34a-4ab2-909c-0fcdfdd24c78?api-version=2021-12-01" + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationResults/f880a0b3-7748-484b-909e-b17e56586773?api-version=2022-02-01" ], "Retry-After": [ "60" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationsStatus/a38a133a-f34a-4ab2-909c-0fcdfdd24c78?api-version=2019-05-13-preview" + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationsStatus/f880a0b3-7748-484b-909e-b17e56586773?api-version=2019-05-13-preview" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "535f014f-4b13-4d13-adc8-5faf962d0220" + "0483389b-bd54-4ccd-bf11-301fe4a0ccb8" ], "x-ms-client-request-id": [ - "c6f1d089-4a93-47b8-a09c-8e0808468896", - "c6f1d089-4a93-47b8-a09c-8e0808468896" + "a8f88a84-d257-4df1-b7d8-425088904579", + "a8f88a84-d257-4df1-b7d8-425088904579" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -708,13 +708,13 @@ "298" ], "x-ms-correlation-request-id": [ - "535f014f-4b13-4d13-adc8-5faf962d0220" + "0483389b-bd54-4ccd-bf11-301fe4a0ccb8" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T095431Z:535f014f-4b13-4d13-adc8-5faf962d0220" + "JIOINDIAWEST:20220516T160926Z:0483389b-bd54-4ccd-bf11-301fe4a0ccb8" ], "Date": [ - "Sat, 26 Mar 2022 09:54:30 GMT" + "Mon, 16 May 2022 16:09:25 GMT" ], "Content-Length": [ "2" @@ -730,22 +730,22 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895/operationResults/a38a133a-f34a-4ab2-909c-0fcdfdd24c78?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9vcGVyYXRpb25SZXN1bHRzL2EzOGExMzNhLWYzNGEtNGFiMi05MDljLTBmY2RmZGQyNGM3OD9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895/operationResults/f880a0b3-7748-484b-909e-b17e56586773?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9vcGVyYXRpb25SZXN1bHRzL2Y4ODBhMGIzLTc3NDgtNDg0Yi05MDllLWIxN2U1NjU4Njc3Mz9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c6f1d089-4a93-47b8-a09c-8e0808468896" + "a8f88a84-d257-4df1-b7d8-425088904579" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -759,11 +759,11 @@ "nosniff" ], "x-ms-request-id": [ - "68e578b8-b0b0-4fa2-a0e4-6d061d2dadc8" + "a7839ec7-9ecd-4b99-a017-911aaf9dad96" ], "x-ms-client-request-id": [ - "c6f1d089-4a93-47b8-a09c-8e0808468896", - "c6f1d089-4a93-47b8-a09c-8e0808468896" + "a8f88a84-d257-4df1-b7d8-425088904579", + "a8f88a84-d257-4df1-b7d8-425088904579" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -778,13 +778,13 @@ "297" ], "x-ms-correlation-request-id": [ - "68e578b8-b0b0-4fa2-a0e4-6d061d2dadc8" + "a7839ec7-9ecd-4b99-a017-911aaf9dad96" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T095441Z:68e578b8-b0b0-4fa2-a0e4-6d061d2dadc8" + "JIOINDIAWEST:20220516T160932Z:a7839ec7-9ecd-4b99-a017-911aaf9dad96" ], "Date": [ - "Sat, 26 Mar 2022 09:54:40 GMT" + "Mon, 16 May 2022 16:09:32 GMT" ], "Content-Length": [ "737" @@ -800,22 +800,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895/operationResults/a38a133a-f34a-4ab2-909c-0fcdfdd24c78?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9vcGVyYXRpb25SZXN1bHRzL2EzOGExMzNhLWYzNGEtNGFiMi05MDljLTBmY2RmZGQyNGM3OD9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895/operationResults/f880a0b3-7748-484b-909e-b17e56586773?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9vcGVyYXRpb25SZXN1bHRzL2Y4ODBhMGIzLTc3NDgtNDg0Yi05MDllLWIxN2U1NjU4Njc3Mz9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c6f1d089-4a93-47b8-a09c-8e0808468896" + "a8f88a84-d257-4df1-b7d8-425088904579" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -829,11 +829,11 @@ "nosniff" ], "x-ms-request-id": [ - "cc05bbc5-7cdb-48b3-82da-428711100e42" + "46f472d7-cc36-4c69-ac7f-5f4f97c3c4c7" ], "x-ms-client-request-id": [ - "c6f1d089-4a93-47b8-a09c-8e0808468896", - "c6f1d089-4a93-47b8-a09c-8e0808468896" + "a8f88a84-d257-4df1-b7d8-425088904579", + "a8f88a84-d257-4df1-b7d8-425088904579" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -848,13 +848,13 @@ "296" ], "x-ms-correlation-request-id": [ - "cc05bbc5-7cdb-48b3-82da-428711100e42" + "46f472d7-cc36-4c69-ac7f-5f4f97c3c4c7" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T095441Z:cc05bbc5-7cdb-48b3-82da-428711100e42" + "JIOINDIAWEST:20220516T160932Z:46f472d7-cc36-4c69-ac7f-5f4f97c3c4c7" ], "Date": [ - "Sat, 26 Mar 2022 09:54:41 GMT" + "Mon, 16 May 2022 16:09:32 GMT" ], "Content-Length": [ "737" @@ -870,22 +870,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupProtectableItems?$filter=backupManagementType%20eq%20'AzureStorage'&api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwUHJvdGVjdGFibGVJdGVtcz8kZmlsdGVyPWJhY2t1cE1hbmFnZW1lbnRUeXBlJTIwZXElMjAnQXp1cmVTdG9yYWdlJyZhcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupProtectableItems?$filter=backupManagementType%20eq%20'AzureStorage'&api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwUHJvdGVjdGFibGVJdGVtcz8kZmlsdGVyPWJhY2t1cE1hbmFnZW1lbnRUeXBlJTIwZXElMjAnQXp1cmVTdG9yYWdlJyZhcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c6f1d089-4a93-47b8-a09c-8e0808468896" + "a8f88a84-d257-4df1-b7d8-425088904579" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -899,11 +899,11 @@ "nosniff" ], "x-ms-request-id": [ - "9370ceca-ed8a-4641-8641-dd4d4b7b034c" + "046fd97b-53c2-4607-bb62-49e4a40dd2d2" ], "x-ms-client-request-id": [ - "c6f1d089-4a93-47b8-a09c-8e0808468896", - "c6f1d089-4a93-47b8-a09c-8e0808468896" + "a8f88a84-d257-4df1-b7d8-425088904579", + "a8f88a84-d257-4df1-b7d8-425088904579" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -918,16 +918,16 @@ "299" ], "x-ms-correlation-request-id": [ - "9370ceca-ed8a-4641-8641-dd4d4b7b034c" + "046fd97b-53c2-4607-bb62-49e4a40dd2d2" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T095442Z:9370ceca-ed8a-4641-8641-dd4d4b7b034c" + "JIOINDIAWEST:20220516T160933Z:046fd97b-53c2-4607-bb62-49e4a40dd2d2" ], "Date": [ - "Sat, 26 Mar 2022 09:54:41 GMT" + "Mon, 16 May 2022 16:09:33 GMT" ], "Content-Length": [ - "947" + "12" ], "Content-Type": [ "application/json" @@ -936,32 +936,96 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/storagecontainer;storage;pstestrg8895;pstestsa8895/protectableItems/azurefileshare;698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959\",\r\n \"name\": \"azurefileshare;698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems\",\r\n \"properties\": {\r\n \"parentContainerFabricId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstestsa8895\",\r\n \"parentContainerFriendlyName\": \"pstestsa8895\",\r\n \"azureFileShareType\": \"XSMB\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"workloadType\": \"AzureFileShare\",\r\n \"protectableItemType\": \"AzureFileShare\",\r\n \"friendlyName\": \"fs1\",\r\n \"protectionState\": \"NotProtected\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": []\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/storagecontainer%3Bstorage%3Bpstestrg8895%3Bpstestsa8895/protectedItems/azurefileshare%3B698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9zdG9yYWdlY29udGFpbmVyJTNCc3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9wcm90ZWN0ZWRJdGVtcy9henVyZWZpbGVzaGFyZSUzQjY5OGRmNTk1OTQ4ZTIzNTVmMmJiNzQ0YTQxY2YyNDVkNGJhMTI1NWQ5Njk5Y2MzYzJhZDFmNTA0NWUxNzc5NTk/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"protectedItemType\": \"AzureFileShareProtectedItem\",\r\n \"sourceResourceId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstestsa8895\",\r\n \"policyId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupPolicies/afspolicy1\"\r\n }\r\n}", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupProtectableItems?$filter=backupManagementType%20eq%20'AzureStorage'&api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwUHJvdGVjdGFibGVJdGVtcz8kZmlsdGVyPWJhY2t1cE1hbmFnZW1lbnRUeXBlJTIwZXElMjAnQXp1cmVTdG9yYWdlJyZhcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c6f1d089-4a93-47b8-a09c-8e0808468896" + "a8f88a84-d257-4df1-b7d8-425088904579" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "application/json; charset=utf-8" + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "116941e1-b1c9-4404-b1fd-8b2406ac1a79" + ], + "x-ms-client-request-id": [ + "a8f88a84-d257-4df1-b7d8-425088904579", + "a8f88a84-d257-4df1-b7d8-425088904579" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "298" + ], + "x-ms-correlation-request-id": [ + "116941e1-b1c9-4404-b1fd-8b2406ac1a79" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T160947Z:116941e1-b1c9-4404-b1fd-8b2406ac1a79" + ], + "Date": [ + "Mon, 16 May 2022 16:09:46 GMT" ], "Content-Length": [ - "433" + "947" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/storagecontainer;storage;pstestrg8895;pstestsa8895/protectableItems/azurefileshare;698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959\",\r\n \"name\": \"azurefileshare;698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems\",\r\n \"properties\": {\r\n \"parentContainerFabricId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstestsa8895\",\r\n \"parentContainerFriendlyName\": \"pstestsa8895\",\r\n \"azureFileShareType\": \"XSMB\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"workloadType\": \"AzureFileShare\",\r\n \"protectableItemType\": \"AzureFileShare\",\r\n \"friendlyName\": \"fs1\",\r\n \"protectionState\": \"NotProtected\"\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895/inquire?$filter=workloadType%20eq%20'AzureFileShare'&api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9pbnF1aXJlPyRmaWx0ZXI9d29ya2xvYWRUeXBlJTIwZXElMjAnQXp1cmVGaWxlU2hhcmUnJmFwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a8f88a84-d257-4df1-b7d8-425088904579" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -972,23 +1036,23 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/storagecontainer;storage;pstestrg8895;pstestsa8895/protectedItems/azurefileshare;698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959/operationResults/68cad588-5c7c-45db-88c3-5e977aa1c875?api-version=2021-12-01" + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationResults/3ef801d1-2758-4faf-baaf-7a86d789b1e6?api-version=2022-02-01" ], "Retry-After": [ "60" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/storagecontainer;storage;pstestrg8895;pstestsa8895/protectedItems/azurefileshare;698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959/operationsStatus/68cad588-5c7c-45db-88c3-5e977aa1c875?api-version=2021-12-01" + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationsStatus/3ef801d1-2758-4faf-baaf-7a86d789b1e6?api-version=2019-05-13-preview" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "cfbf56c1-cfef-4e1e-8fee-cc9cc647a78f" + "9ba65151-495e-40b0-96fc-2a18454c79ec" ], "x-ms-client-request-id": [ - "c6f1d089-4a93-47b8-a09c-8e0808468896", - "c6f1d089-4a93-47b8-a09c-8e0808468896" + "a8f88a84-d257-4df1-b7d8-425088904579", + "a8f88a84-d257-4df1-b7d8-425088904579" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -997,16 +1061,16 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1199" ], "x-ms-correlation-request-id": [ - "cfbf56c1-cfef-4e1e-8fee-cc9cc647a78f" + "9ba65151-495e-40b0-96fc-2a18454c79ec" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T095442Z:cfbf56c1-cfef-4e1e-8fee-cc9cc647a78f" + "JIOINDIAWEST:20220516T160934Z:9ba65151-495e-40b0-96fc-2a18454c79ec" ], "Date": [ - "Sat, 26 Mar 2022 09:54:42 GMT" + "Mon, 16 May 2022 16:09:34 GMT" ], "Expires": [ "-1" @@ -1019,22 +1083,22 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/68cad588-5c7c-45db-88c3-5e977aa1c875?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy82OGNhZDU4OC01YzdjLTQ1ZGItODhjMy01ZTk3N2FhMWM4NzU/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/3ef801d1-2758-4faf-baaf-7a86d789b1e6?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzLzNlZjgwMWQxLTI3NTgtNGZhZi1iYWFmLTdhODZkNzg5YjFlNj9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c6f1d089-4a93-47b8-a09c-8e0808468896" + "a8f88a84-d257-4df1-b7d8-425088904579" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -1044,22 +1108,25 @@ "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/3ef801d1-2758-4faf-baaf-7a86d789b1e6?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "5dda86be-b6df-4e7d-b634-7d1d02387153" + "41398e7e-36a6-491a-9476-2d6f00f51cb3" ], "x-ms-client-request-id": [ - "c6f1d089-4a93-47b8-a09c-8e0808468896", - "c6f1d089-4a93-47b8-a09c-8e0808468896" + "a8f88a84-d257-4df1-b7d8-425088904579", + "a8f88a84-d257-4df1-b7d8-425088904579" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Server": [ - "Microsoft-IIS/10.0" - ], "X-Powered-By": [ "ASP.NET" ], @@ -1067,44 +1134,41 @@ "299" ], "x-ms-correlation-request-id": [ - "5dda86be-b6df-4e7d-b634-7d1d02387153" + "41398e7e-36a6-491a-9476-2d6f00f51cb3" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T095443Z:5dda86be-b6df-4e7d-b634-7d1d02387153" + "JIOINDIAWEST:20220516T160934Z:41398e7e-36a6-491a-9476-2d6f00f51cb3" ], "Date": [ - "Sat, 26 Mar 2022 09:54:42 GMT" - ], - "Content-Length": [ - "188" - ], - "Content-Type": [ - "application/json" + "Mon, 16 May 2022 16:09:34 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, - "ResponseBody": "{\r\n \"id\": \"68cad588-5c7c-45db-88c3-5e977aa1c875\",\r\n \"name\": \"68cad588-5c7c-45db-88c3-5e977aa1c875\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-03-26T09:54:42.6900537Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", - "StatusCode": 200 + "ResponseBody": "", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/68cad588-5c7c-45db-88c3-5e977aa1c875?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy82OGNhZDU4OC01YzdjLTQ1ZGItODhjMy01ZTk3N2FhMWM4NzU/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/3ef801d1-2758-4faf-baaf-7a86d789b1e6?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzLzNlZjgwMWQxLTI3NTgtNGZhZi1iYWFmLTdhODZkNzg5YjFlNj9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c6f1d089-4a93-47b8-a09c-8e0808468896" + "a8f88a84-d257-4df1-b7d8-425088904579" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -1114,22 +1178,25 @@ "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/3ef801d1-2758-4faf-baaf-7a86d789b1e6?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "b22501ff-3b6f-4dcc-aab0-25f89c381ecf" + "cfa6990d-6ed1-4254-94d9-e5a2d7a92770" ], "x-ms-client-request-id": [ - "c6f1d089-4a93-47b8-a09c-8e0808468896", - "c6f1d089-4a93-47b8-a09c-8e0808468896" + "a8f88a84-d257-4df1-b7d8-425088904579", + "a8f88a84-d257-4df1-b7d8-425088904579" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Server": [ - "Microsoft-IIS/10.0" - ], "X-Powered-By": [ "ASP.NET" ], @@ -1137,44 +1204,41 @@ "298" ], "x-ms-correlation-request-id": [ - "b22501ff-3b6f-4dcc-aab0-25f89c381ecf" + "cfa6990d-6ed1-4254-94d9-e5a2d7a92770" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T095453Z:b22501ff-3b6f-4dcc-aab0-25f89c381ecf" + "JIOINDIAWEST:20220516T160940Z:cfa6990d-6ed1-4254-94d9-e5a2d7a92770" ], "Date": [ - "Sat, 26 Mar 2022 09:54:52 GMT" - ], - "Content-Length": [ - "188" - ], - "Content-Type": [ - "application/json" + "Mon, 16 May 2022 16:09:40 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, - "ResponseBody": "{\r\n \"id\": \"68cad588-5c7c-45db-88c3-5e977aa1c875\",\r\n \"name\": \"68cad588-5c7c-45db-88c3-5e977aa1c875\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-03-26T09:54:42.6900537Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", - "StatusCode": 200 + "ResponseBody": "", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/68cad588-5c7c-45db-88c3-5e977aa1c875?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy82OGNhZDU4OC01YzdjLTQ1ZGItODhjMy01ZTk3N2FhMWM4NzU/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/3ef801d1-2758-4faf-baaf-7a86d789b1e6?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzLzNlZjgwMWQxLTI3NTgtNGZhZi1iYWFmLTdhODZkNzg5YjFlNj9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c6f1d089-4a93-47b8-a09c-8e0808468896" + "a8f88a84-d257-4df1-b7d8-425088904579" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -1188,18 +1252,15 @@ "nosniff" ], "x-ms-request-id": [ - "3b9341a9-f68f-447e-9a8c-50b00eb5316c" + "c3851f78-efcc-4b0c-bae1-bc7681a24499" ], "x-ms-client-request-id": [ - "c6f1d089-4a93-47b8-a09c-8e0808468896", - "c6f1d089-4a93-47b8-a09c-8e0808468896" + "a8f88a84-d257-4df1-b7d8-425088904579", + "a8f88a84-d257-4df1-b7d8-425088904579" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Server": [ - "Microsoft-IIS/10.0" - ], "X-Powered-By": [ "ASP.NET" ], @@ -1207,44 +1268,35 @@ "297" ], "x-ms-correlation-request-id": [ - "3b9341a9-f68f-447e-9a8c-50b00eb5316c" + "c3851f78-efcc-4b0c-bae1-bc7681a24499" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T095504Z:3b9341a9-f68f-447e-9a8c-50b00eb5316c" + "JIOINDIAWEST:20220516T160945Z:c3851f78-efcc-4b0c-bae1-bc7681a24499" ], "Date": [ - "Sat, 26 Mar 2022 09:55:04 GMT" - ], - "Content-Length": [ - "188" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" + "Mon, 16 May 2022 16:09:45 GMT" ] }, - "ResponseBody": "{\r\n \"id\": \"68cad588-5c7c-45db-88c3-5e977aa1c875\",\r\n \"name\": \"68cad588-5c7c-45db-88c3-5e977aa1c875\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-03-26T09:54:42.6900537Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", - "StatusCode": 200 + "ResponseBody": "", + "StatusCode": 204 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/68cad588-5c7c-45db-88c3-5e977aa1c875?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy82OGNhZDU4OC01YzdjLTQ1ZGItODhjMy01ZTk3N2FhMWM4NzU/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/3ef801d1-2758-4faf-baaf-7a86d789b1e6?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzLzNlZjgwMWQxLTI3NTgtNGZhZi1iYWFmLTdhODZkNzg5YjFlNj9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c6f1d089-4a93-47b8-a09c-8e0808468896" + "a8f88a84-d257-4df1-b7d8-425088904579" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -1258,18 +1310,15 @@ "nosniff" ], "x-ms-request-id": [ - "54b37588-e293-466d-9101-0c8d4badac11" + "4a7a04a4-7015-44f5-9b56-dd5427b8ec84" ], "x-ms-client-request-id": [ - "c6f1d089-4a93-47b8-a09c-8e0808468896", - "c6f1d089-4a93-47b8-a09c-8e0808468896" + "a8f88a84-d257-4df1-b7d8-425088904579", + "a8f88a84-d257-4df1-b7d8-425088904579" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Server": [ - "Microsoft-IIS/10.0" - ], "X-Powered-By": [ "ASP.NET" ], @@ -1277,44 +1326,41 @@ "296" ], "x-ms-correlation-request-id": [ - "54b37588-e293-466d-9101-0c8d4badac11" + "4a7a04a4-7015-44f5-9b56-dd5427b8ec84" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T095514Z:54b37588-e293-466d-9101-0c8d4badac11" + "JIOINDIAWEST:20220516T160946Z:4a7a04a4-7015-44f5-9b56-dd5427b8ec84" ], "Date": [ - "Sat, 26 Mar 2022 09:55:14 GMT" - ], - "Content-Length": [ - "188" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" + "Mon, 16 May 2022 16:09:46 GMT" ] }, - "ResponseBody": "{\r\n \"id\": \"68cad588-5c7c-45db-88c3-5e977aa1c875\",\r\n \"name\": \"68cad588-5c7c-45db-88c3-5e977aa1c875\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-03-26T09:54:42.6900537Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", - "StatusCode": 200 + "ResponseBody": "", + "StatusCode": 204 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/68cad588-5c7c-45db-88c3-5e977aa1c875?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy82OGNhZDU4OC01YzdjLTQ1ZGItODhjMy01ZTk3N2FhMWM4NzU/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/storagecontainer%3Bstorage%3Bpstestrg8895%3Bpstestsa8895/protectedItems/azurefileshare%3B698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9zdG9yYWdlY29udGFpbmVyJTNCc3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9wcm90ZWN0ZWRJdGVtcy9henVyZWZpbGVzaGFyZSUzQjY5OGRmNTk1OTQ4ZTIzNTVmMmJiNzQ0YTQxY2YyNDVkNGJhMTI1NWQ5Njk5Y2MzYzJhZDFmNTA0NWUxNzc5NTk/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"protectedItemType\": \"AzureFileShareProtectedItem\",\r\n \"sourceResourceId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstestsa8895\",\r\n \"policyId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupPolicies/afspolicy1\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "c6f1d089-4a93-47b8-a09c-8e0808468896" + "a8f88a84-d257-4df1-b7d8-425088904579" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "433" ] }, "ResponseHeaders": { @@ -1324,67 +1370,70 @@ "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/storagecontainer;storage;pstestrg8895;pstestsa8895/protectedItems/azurefileshare;698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959/operationResults/9ccf176a-2e03-4c94-aee6-b4803bde02e7?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/storagecontainer;storage;pstestrg8895;pstestsa8895/protectedItems/azurefileshare;698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959/operationsStatus/9ccf176a-2e03-4c94-aee6-b4803bde02e7?api-version=2022-02-01" + ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "83888e17-1e04-4497-8cec-4a9ca95b1abd" + "82f49d81-bf21-4330-be2d-c679bcc17569" ], "x-ms-client-request-id": [ - "c6f1d089-4a93-47b8-a09c-8e0808468896", - "c6f1d089-4a93-47b8-a09c-8e0808468896" + "a8f88a84-d257-4df1-b7d8-425088904579", + "a8f88a84-d257-4df1-b7d8-425088904579" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Server": [ - "Microsoft-IIS/10.0" - ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "295" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" ], "x-ms-correlation-request-id": [ - "83888e17-1e04-4497-8cec-4a9ca95b1abd" + "82f49d81-bf21-4330-be2d-c679bcc17569" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T095524Z:83888e17-1e04-4497-8cec-4a9ca95b1abd" + "JIOINDIAWEST:20220516T160948Z:82f49d81-bf21-4330-be2d-c679bcc17569" ], "Date": [ - "Sat, 26 Mar 2022 09:55:24 GMT" - ], - "Content-Length": [ - "188" - ], - "Content-Type": [ - "application/json" + "Mon, 16 May 2022 16:09:48 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, - "ResponseBody": "{\r\n \"id\": \"68cad588-5c7c-45db-88c3-5e977aa1c875\",\r\n \"name\": \"68cad588-5c7c-45db-88c3-5e977aa1c875\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-03-26T09:54:42.6900537Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", - "StatusCode": 200 + "ResponseBody": "", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/68cad588-5c7c-45db-88c3-5e977aa1c875?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy82OGNhZDU4OC01YzdjLTQ1ZGItODhjMy01ZTk3N2FhMWM4NzU/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/9ccf176a-2e03-4c94-aee6-b4803bde02e7?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy85Y2NmMTc2YS0yZTAzLTRjOTQtYWVlNi1iNDgwM2JkZTAyZTc/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c6f1d089-4a93-47b8-a09c-8e0808468896" + "a8f88a84-d257-4df1-b7d8-425088904579" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -1398,11 +1447,11 @@ "nosniff" ], "x-ms-request-id": [ - "f86e46c9-eb60-4fc4-bd97-b80ea2e04623" + "6f8417cc-6907-4fae-9653-be4897be435e" ], "x-ms-client-request-id": [ - "c6f1d089-4a93-47b8-a09c-8e0808468896", - "c6f1d089-4a93-47b8-a09c-8e0808468896" + "a8f88a84-d257-4df1-b7d8-425088904579", + "a8f88a84-d257-4df1-b7d8-425088904579" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1414,19 +1463,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "294" + "299" ], "x-ms-correlation-request-id": [ - "f86e46c9-eb60-4fc4-bd97-b80ea2e04623" + "6f8417cc-6907-4fae-9653-be4897be435e" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T095535Z:f86e46c9-eb60-4fc4-bd97-b80ea2e04623" + "JIOINDIAWEST:20220516T160948Z:6f8417cc-6907-4fae-9653-be4897be435e" ], "Date": [ - "Sat, 26 Mar 2022 09:55:34 GMT" + "Mon, 16 May 2022 16:09:48 GMT" ], "Content-Length": [ - "304" + "187" ], "Content-Type": [ "application/json" @@ -1435,26 +1484,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"68cad588-5c7c-45db-88c3-5e977aa1c875\",\r\n \"name\": \"68cad588-5c7c-45db-88c3-5e977aa1c875\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-03-26T09:54:42.6900537Z\",\r\n \"endTime\": \"2022-03-26T09:54:42.6900537Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"43171772-b9f5-4743-8375-50d28f1d1db7\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"9ccf176a-2e03-4c94-aee6-b4803bde02e7\",\r\n \"name\": \"9ccf176a-2e03-4c94-aee6-b4803bde02e7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T16:09:47.935131Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/68cad588-5c7c-45db-88c3-5e977aa1c875?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy82OGNhZDU4OC01YzdjLTQ1ZGItODhjMy01ZTk3N2FhMWM4NzU/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/9ccf176a-2e03-4c94-aee6-b4803bde02e7?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy85Y2NmMTc2YS0yZTAzLTRjOTQtYWVlNi1iNDgwM2JkZTAyZTc/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c6f1d089-4a93-47b8-a09c-8e0808468896" + "a8f88a84-d257-4df1-b7d8-425088904579" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -1468,11 +1517,11 @@ "nosniff" ], "x-ms-request-id": [ - "35405668-8946-4ac6-8d5a-5a14fa4abf26" + "c52d6448-1051-4ea7-b002-5c62b532eaf8" ], "x-ms-client-request-id": [ - "c6f1d089-4a93-47b8-a09c-8e0808468896", - "c6f1d089-4a93-47b8-a09c-8e0808468896" + "a8f88a84-d257-4df1-b7d8-425088904579", + "a8f88a84-d257-4df1-b7d8-425088904579" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1484,19 +1533,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "293" + "298" ], "x-ms-correlation-request-id": [ - "35405668-8946-4ac6-8d5a-5a14fa4abf26" + "c52d6448-1051-4ea7-b002-5c62b532eaf8" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T095535Z:35405668-8946-4ac6-8d5a-5a14fa4abf26" + "JIOINDIAWEST:20220516T160954Z:c52d6448-1051-4ea7-b002-5c62b532eaf8" ], "Date": [ - "Sat, 26 Mar 2022 09:55:34 GMT" + "Mon, 16 May 2022 16:09:54 GMT" ], "Content-Length": [ - "304" + "187" ], "Content-Type": [ "application/json" @@ -1505,26 +1554,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"68cad588-5c7c-45db-88c3-5e977aa1c875\",\r\n \"name\": \"68cad588-5c7c-45db-88c3-5e977aa1c875\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-03-26T09:54:42.6900537Z\",\r\n \"endTime\": \"2022-03-26T09:54:42.6900537Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"43171772-b9f5-4743-8375-50d28f1d1db7\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"9ccf176a-2e03-4c94-aee6-b4803bde02e7\",\r\n \"name\": \"9ccf176a-2e03-4c94-aee6-b4803bde02e7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T16:09:47.935131Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/43171772-b9f5-4743-8375-50d28f1d1db7?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy80MzE3MTc3Mi1iOWY1LTQ3NDMtODM3NS01MGQyOGYxZDFkYjc/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/9ccf176a-2e03-4c94-aee6-b4803bde02e7?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy85Y2NmMTc2YS0yZTAzLTRjOTQtYWVlNi1iNDgwM2JkZTAyZTc/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c6f1d089-4a93-47b8-a09c-8e0808468896" + "a8f88a84-d257-4df1-b7d8-425088904579" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -1534,40 +1583,39 @@ "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-IIS/10.0" - ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "ec1782ec-a25a-4255-a7ae-a2034f8cf975" + "e52b416c-19ec-4297-9c6c-98e5f33fee44" ], "x-ms-client-request-id": [ - "c6f1d089-4a93-47b8-a09c-8e0808468896", - "c6f1d089-4a93-47b8-a09c-8e0808468896" - ], - "X-Powered-By": [ - "ASP.NET" + "a8f88a84-d257-4df1-b7d8-425088904579", + "a8f88a84-d257-4df1-b7d8-425088904579" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "299" + "297" ], "x-ms-correlation-request-id": [ - "ec1782ec-a25a-4255-a7ae-a2034f8cf975" + "e52b416c-19ec-4297-9c6c-98e5f33fee44" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T095535Z:ec1782ec-a25a-4255-a7ae-a2034f8cf975" + "JIOINDIAWEST:20220516T160959Z:e52b416c-19ec-4297-9c6c-98e5f33fee44" ], "Date": [ - "Sat, 26 Mar 2022 09:55:35 GMT" + "Mon, 16 May 2022 16:09:59 GMT" ], "Content-Length": [ - "847" + "187" ], "Content-Type": [ "application/json" @@ -1576,26 +1624,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/43171772-b9f5-4743-8375-50d28f1d1db7\",\r\n \"name\": \"43171772-b9f5-4743-8375-50d28f1d1db7\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT42.9972104S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"Storage\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"File Share Name\": \"fs1\",\r\n \"Storage Account Name\": \"pstestsa8895\",\r\n \"Policy Name\": \"afspolicy1\"\r\n }\r\n },\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"ConfigureBackup\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-03-26T09:54:42.6900537Z\",\r\n \"endTime\": \"2022-03-26T09:55:25.6872641Z\",\r\n \"activityId\": \"c6f1d089-4a93-47b8-a09c-8e0808468896\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"9ccf176a-2e03-4c94-aee6-b4803bde02e7\",\r\n \"name\": \"9ccf176a-2e03-4c94-aee6-b4803bde02e7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T16:09:47.935131Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupProtectedItems?$filter=backupManagementType%20eq%20'AzureStorage'%20and%20itemType%20eq%20'AzureFileShare'&api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwUHJvdGVjdGVkSXRlbXM/JGZpbHRlcj1iYWNrdXBNYW5hZ2VtZW50VHlwZSUyMGVxJTIwJ0F6dXJlU3RvcmFnZSclMjBhbmQlMjBpdGVtVHlwZSUyMGVxJTIwJ0F6dXJlRmlsZVNoYXJlJyZhcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/9ccf176a-2e03-4c94-aee6-b4803bde02e7?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy85Y2NmMTc2YS0yZTAzLTRjOTQtYWVlNi1iNDgwM2JkZTAyZTc/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e7047526-5f52-4810-9cba-5579f6c63df8" + "a8f88a84-d257-4df1-b7d8-425088904579" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -1609,11 +1657,11 @@ "nosniff" ], "x-ms-request-id": [ - "b8ca459e-d3d2-433c-89f6-df455a48b15e" + "f2797a43-252f-41e5-8468-d733382bcf3e" ], "x-ms-client-request-id": [ - "e7047526-5f52-4810-9cba-5579f6c63df8", - "e7047526-5f52-4810-9cba-5579f6c63df8" + "a8f88a84-d257-4df1-b7d8-425088904579", + "a8f88a84-d257-4df1-b7d8-425088904579" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1625,19 +1673,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "299" + "296" ], "x-ms-correlation-request-id": [ - "b8ca459e-d3d2-433c-89f6-df455a48b15e" + "f2797a43-252f-41e5-8468-d733382bcf3e" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T095536Z:b8ca459e-d3d2-433c-89f6-df455a48b15e" + "JIOINDIAWEST:20220516T161005Z:f2797a43-252f-41e5-8468-d733382bcf3e" ], "Date": [ - "Sat, 26 Mar 2022 09:55:36 GMT" + "Mon, 16 May 2022 16:10:05 GMT" ], "Content-Length": [ - "1219" + "187" ], "Content-Type": [ "application/json" @@ -1646,26 +1694,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;storage;pstestrg8895;pstestsa8895/protectedItems/AzureFileShare;698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959\",\r\n \"name\": \"AzureFileShare;698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems\",\r\n \"properties\": {\r\n \"kpisHealths\": {},\r\n \"friendlyName\": \"fs1\",\r\n \"protectionStatus\": \"Healthy\",\r\n \"protectionState\": \"IRPending\",\r\n \"lastBackupStatus\": \"IRPending\",\r\n \"protectedItemType\": \"AzureFileShareProtectedItem\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"workloadType\": \"AzureFileShare\",\r\n \"containerName\": \"StorageContainer;storage;pstestrg8895;pstestsa8895\",\r\n \"sourceResourceId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.storage/storageAccounts/pstestsa8895\",\r\n \"policyId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupPolicies/afspolicy1\",\r\n \"isArchiveEnabled\": false\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"9ccf176a-2e03-4c94-aee6-b4803bde02e7\",\r\n \"name\": \"9ccf176a-2e03-4c94-aee6-b4803bde02e7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T16:09:47.935131Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3Bstorage%3Bpstestrg8895%3Bpstestsa8895/protectedItems/AzureFileShare%3B698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959?$filter=expand%20eq%20'extendedinfo'&api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCc3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9wcm90ZWN0ZWRJdGVtcy9BenVyZUZpbGVTaGFyZSUzQjY5OGRmNTk1OTQ4ZTIzNTVmMmJiNzQ0YTQxY2YyNDVkNGJhMTI1NWQ5Njk5Y2MzYzJhZDFmNTA0NWUxNzc5NTk/JGZpbHRlcj1leHBhbmQlMjBlcSUyMCdleHRlbmRlZGluZm8nJmFwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/9ccf176a-2e03-4c94-aee6-b4803bde02e7?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy85Y2NmMTc2YS0yZTAzLTRjOTQtYWVlNi1iNDgwM2JkZTAyZTc/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e7047526-5f52-4810-9cba-5579f6c63df8" + "a8f88a84-d257-4df1-b7d8-425088904579" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -1679,11 +1727,11 @@ "nosniff" ], "x-ms-request-id": [ - "66867d44-5947-4303-ad2b-ff65d237bd05" + "63a40287-4b89-4acd-9c59-8f3afdb8bdff" ], "x-ms-client-request-id": [ - "e7047526-5f52-4810-9cba-5579f6c63df8", - "e7047526-5f52-4810-9cba-5579f6c63df8" + "a8f88a84-d257-4df1-b7d8-425088904579", + "a8f88a84-d257-4df1-b7d8-425088904579" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1695,19 +1743,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "299" + "295" ], "x-ms-correlation-request-id": [ - "66867d44-5947-4303-ad2b-ff65d237bd05" + "63a40287-4b89-4acd-9c59-8f3afdb8bdff" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T095537Z:66867d44-5947-4303-ad2b-ff65d237bd05" + "JIOINDIAWEST:20220516T161011Z:63a40287-4b89-4acd-9c59-8f3afdb8bdff" ], "Date": [ - "Sat, 26 Mar 2022 09:55:36 GMT" + "Mon, 16 May 2022 16:10:10 GMT" ], "Content-Length": [ - "1354" + "187" ], "Content-Type": [ "application/json" @@ -1716,32 +1764,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;storage;pstestrg8895;pstestsa8895/protectedItems/AzureFileShare;698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959\",\r\n \"name\": \"AzureFileShare;698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems\",\r\n \"properties\": {\r\n \"kpisHealths\": {},\r\n \"friendlyName\": \"fs1\",\r\n \"protectionStatus\": \"Healthy\",\r\n \"protectionState\": \"IRPending\",\r\n \"lastBackupStatus\": \"IRPending\",\r\n \"extendedInfo\": {\r\n \"recoveryPointCount\": 0,\r\n \"policyState\": \"Consistent\",\r\n \"resourceState\": \"Active\",\r\n \"resourceStateSyncTime\": \"2022-03-26T09:55:25.0656051Z\"\r\n },\r\n \"protectedItemType\": \"AzureFileShareProtectedItem\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"workloadType\": \"AzureFileShare\",\r\n \"containerName\": \"StorageContainer;storage;pstestrg8895;pstestsa8895\",\r\n \"sourceResourceId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.storage/storageAccounts/pstestsa8895\",\r\n \"policyId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupPolicies/afspolicy1\",\r\n \"isArchiveEnabled\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"9ccf176a-2e03-4c94-aee6-b4803bde02e7\",\r\n \"name\": \"9ccf176a-2e03-4c94-aee6-b4803bde02e7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T16:09:47.935131Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3Bstorage%3Bpstestrg8895%3Bpstestsa8895/protectedItems/AzureFileShare%3B698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959/backup?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCc3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9wcm90ZWN0ZWRJdGVtcy9BenVyZUZpbGVTaGFyZSUzQjY5OGRmNTk1OTQ4ZTIzNTVmMmJiNzQ0YTQxY2YyNDVkNGJhMTI1NWQ5Njk5Y2MzYzJhZDFmNTA0NWUxNzc5NTkvYmFja3VwP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", - "RequestMethod": "POST", - "RequestBody": "{\r\n \"properties\": {\r\n \"objectType\": \"AzureFileShareBackupRequest\"\r\n }\r\n}", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/9ccf176a-2e03-4c94-aee6-b4803bde02e7?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy85Y2NmMTc2YS0yZTAzLTRjOTQtYWVlNi1iNDgwM2JkZTAyZTc/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0b1781fe-3a7f-4e4a-bdc4-7593fab735d5" + "a8f88a84-d257-4df1-b7d8-425088904579" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "77" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -1751,70 +1793,67 @@ "Pragma": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;storage;pstestrg8895;pstestsa8895/protectedItems/AzureFileShare;698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959/operationResults/b0745382-c2f6-401f-b5aa-457a240aeb29?api-version=2021-12-01" - ], - "Retry-After": [ - "60" - ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;storage;pstestrg8895;pstestsa8895/protectedItems/AzureFileShare;698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959/operationsStatus/b0745382-c2f6-401f-b5aa-457a240aeb29?api-version=2021-12-01" - ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "75be1422-a2ff-4d0e-abad-e4c7a880e095" + "557bb46e-28cf-426f-ac10-238f464aeab5" ], "x-ms-client-request-id": [ - "0b1781fe-3a7f-4e4a-bdc4-7593fab735d5", - "0b1781fe-3a7f-4e4a-bdc4-7593fab735d5" + "a8f88a84-d257-4df1-b7d8-425088904579", + "a8f88a84-d257-4df1-b7d8-425088904579" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-IIS/10.0" + ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "294" ], "x-ms-correlation-request-id": [ - "75be1422-a2ff-4d0e-abad-e4c7a880e095" + "557bb46e-28cf-426f-ac10-238f464aeab5" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T095538Z:75be1422-a2ff-4d0e-abad-e4c7a880e095" + "JIOINDIAWEST:20220516T161016Z:557bb46e-28cf-426f-ac10-238f464aeab5" ], "Date": [ - "Sat, 26 Mar 2022 09:55:37 GMT" + "Mon, 16 May 2022 16:10:16 GMT" + ], + "Content-Length": [ + "187" + ], + "Content-Type": [ + "application/json" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, - "ResponseBody": "", - "StatusCode": 202 + "ResponseBody": "{\r\n \"id\": \"9ccf176a-2e03-4c94-aee6-b4803bde02e7\",\r\n \"name\": \"9ccf176a-2e03-4c94-aee6-b4803bde02e7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T16:09:47.935131Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/b0745382-c2f6-401f-b5aa-457a240aeb29?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9iMDc0NTM4Mi1jMmY2LTQwMWYtYjVhYS00NTdhMjQwYWViMjk/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/9ccf176a-2e03-4c94-aee6-b4803bde02e7?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy85Y2NmMTc2YS0yZTAzLTRjOTQtYWVlNi1iNDgwM2JkZTAyZTc/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0b1781fe-3a7f-4e4a-bdc4-7593fab735d5" + "a8f88a84-d257-4df1-b7d8-425088904579" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -1828,11 +1867,11 @@ "nosniff" ], "x-ms-request-id": [ - "0b60f9ff-9196-4dfd-96a1-de707fe556ed" + "ac6ea4a0-b298-4026-ae73-552017f0f639" ], "x-ms-client-request-id": [ - "0b1781fe-3a7f-4e4a-bdc4-7593fab735d5", - "0b1781fe-3a7f-4e4a-bdc4-7593fab735d5" + "a8f88a84-d257-4df1-b7d8-425088904579", + "a8f88a84-d257-4df1-b7d8-425088904579" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1844,19 +1883,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "292" + "293" ], "x-ms-correlation-request-id": [ - "0b60f9ff-9196-4dfd-96a1-de707fe556ed" + "ac6ea4a0-b298-4026-ae73-552017f0f639" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T095538Z:0b60f9ff-9196-4dfd-96a1-de707fe556ed" + "JIOINDIAWEST:20220516T161022Z:ac6ea4a0-b298-4026-ae73-552017f0f639" ], "Date": [ - "Sat, 26 Mar 2022 09:55:37 GMT" + "Mon, 16 May 2022 16:10:21 GMT" ], "Content-Length": [ - "302" + "187" ], "Content-Type": [ "application/json" @@ -1865,26 +1904,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"b0745382-c2f6-401f-b5aa-457a240aeb29\",\r\n \"name\": \"b0745382-c2f6-401f-b5aa-457a240aeb29\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-03-26T09:55:38.226849Z\",\r\n \"endTime\": \"2022-03-26T09:55:38.226849Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"9bce39eb-167f-437f-a250-d175a0b5a9de\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"9ccf176a-2e03-4c94-aee6-b4803bde02e7\",\r\n \"name\": \"9ccf176a-2e03-4c94-aee6-b4803bde02e7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T16:09:47.935131Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/b0745382-c2f6-401f-b5aa-457a240aeb29?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9iMDc0NTM4Mi1jMmY2LTQwMWYtYjVhYS00NTdhMjQwYWViMjk/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/9ccf176a-2e03-4c94-aee6-b4803bde02e7?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy85Y2NmMTc2YS0yZTAzLTRjOTQtYWVlNi1iNDgwM2JkZTAyZTc/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0b1781fe-3a7f-4e4a-bdc4-7593fab735d5" + "a8f88a84-d257-4df1-b7d8-425088904579" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -1898,11 +1937,11 @@ "nosniff" ], "x-ms-request-id": [ - "00e6a823-fee8-4f36-94b3-5d9dd26d979c" + "0fbbb704-c7a6-4059-8c75-f35881bcd86b" ], "x-ms-client-request-id": [ - "0b1781fe-3a7f-4e4a-bdc4-7593fab735d5", - "0b1781fe-3a7f-4e4a-bdc4-7593fab735d5" + "a8f88a84-d257-4df1-b7d8-425088904579", + "a8f88a84-d257-4df1-b7d8-425088904579" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1914,19 +1953,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "291" + "292" ], "x-ms-correlation-request-id": [ - "00e6a823-fee8-4f36-94b3-5d9dd26d979c" + "0fbbb704-c7a6-4059-8c75-f35881bcd86b" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T095539Z:00e6a823-fee8-4f36-94b3-5d9dd26d979c" + "JIOINDIAWEST:20220516T161027Z:0fbbb704-c7a6-4059-8c75-f35881bcd86b" ], "Date": [ - "Sat, 26 Mar 2022 09:55:38 GMT" + "Mon, 16 May 2022 16:10:27 GMT" ], "Content-Length": [ - "302" + "187" ], "Content-Type": [ "application/json" @@ -1935,26 +1974,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"b0745382-c2f6-401f-b5aa-457a240aeb29\",\r\n \"name\": \"b0745382-c2f6-401f-b5aa-457a240aeb29\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-03-26T09:55:38.226849Z\",\r\n \"endTime\": \"2022-03-26T09:55:38.226849Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"9bce39eb-167f-437f-a250-d175a0b5a9de\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"9ccf176a-2e03-4c94-aee6-b4803bde02e7\",\r\n \"name\": \"9ccf176a-2e03-4c94-aee6-b4803bde02e7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T16:09:47.935131Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/9bce39eb-167f-437f-a250-d175a0b5a9de?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy85YmNlMzllYi0xNjdmLTQzN2YtYTI1MC1kMTc1YTBiNWE5ZGU/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/9ccf176a-2e03-4c94-aee6-b4803bde02e7?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy85Y2NmMTc2YS0yZTAzLTRjOTQtYWVlNi1iNDgwM2JkZTAyZTc/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0b1781fe-3a7f-4e4a-bdc4-7593fab735d5" + "a8f88a84-d257-4df1-b7d8-425088904579" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -1964,40 +2003,39 @@ "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-IIS/10.0" - ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "87fffeb8-cd81-4de8-b274-77551cf12fad" + "4cc96f2c-4b07-4225-81a7-f7740f34635a" ], "x-ms-client-request-id": [ - "0b1781fe-3a7f-4e4a-bdc4-7593fab735d5", - "0b1781fe-3a7f-4e4a-bdc4-7593fab735d5" - ], - "X-Powered-By": [ - "ASP.NET" + "a8f88a84-d257-4df1-b7d8-425088904579", + "a8f88a84-d257-4df1-b7d8-425088904579" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "298" + "291" ], "x-ms-correlation-request-id": [ - "87fffeb8-cd81-4de8-b274-77551cf12fad" + "4cc96f2c-4b07-4225-81a7-f7740f34635a" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T095539Z:87fffeb8-cd81-4de8-b274-77551cf12fad" + "JIOINDIAWEST:20220516T161033Z:4cc96f2c-4b07-4225-81a7-f7740f34635a" ], "Date": [ - "Sat, 26 Mar 2022 09:55:38 GMT" + "Mon, 16 May 2022 16:10:32 GMT" ], "Content-Length": [ - "863" + "302" ], "Content-Type": [ "application/json" @@ -2006,26 +2044,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/9bce39eb-167f-437f-a250-d175a0b5a9de\",\r\n \"name\": \"9bce39eb-167f-437f-a250-d175a0b5a9de\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT1.2570904S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"MicrosoftStorage\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"File Share Name\": \"fs1\",\r\n \"Whether job is adhoc or scheduled.\": \"True\"\r\n }\r\n },\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-03-26T09:55:38.226849Z\",\r\n \"activityId\": \"0b1781fe-3a7f-4e4a-bdc4-7593fab735d5\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"9ccf176a-2e03-4c94-aee6-b4803bde02e7\",\r\n \"name\": \"9ccf176a-2e03-4c94-aee6-b4803bde02e7\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-05-16T16:09:47.935131Z\",\r\n \"endTime\": \"2022-05-16T16:09:47.935131Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"5b75fd41-2203-49ef-a8cd-b5fb969fa522\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/9bce39eb-167f-437f-a250-d175a0b5a9de?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy85YmNlMzllYi0xNjdmLTQzN2YtYTI1MC1kMTc1YTBiNWE5ZGU/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/9ccf176a-2e03-4c94-aee6-b4803bde02e7?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy85Y2NmMTc2YS0yZTAzLTRjOTQtYWVlNi1iNDgwM2JkZTAyZTc/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0b1781fe-3a7f-4e4a-bdc4-7593fab735d5" + "a8f88a84-d257-4df1-b7d8-425088904579" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -2035,40 +2073,39 @@ "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-IIS/10.0" - ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "5a94b42a-d0c3-4702-96ea-731d1ed6713e" + "d89dcdac-873f-4b64-a684-2a55ffbf214f" ], "x-ms-client-request-id": [ - "0b1781fe-3a7f-4e4a-bdc4-7593fab735d5", - "0b1781fe-3a7f-4e4a-bdc4-7593fab735d5" - ], - "X-Powered-By": [ - "ASP.NET" + "a8f88a84-d257-4df1-b7d8-425088904579", + "a8f88a84-d257-4df1-b7d8-425088904579" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "297" + "290" ], "x-ms-correlation-request-id": [ - "5a94b42a-d0c3-4702-96ea-731d1ed6713e" + "d89dcdac-873f-4b64-a684-2a55ffbf214f" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T095539Z:5a94b42a-d0c3-4702-96ea-731d1ed6713e" + "JIOINDIAWEST:20220516T161034Z:d89dcdac-873f-4b64-a684-2a55ffbf214f" ], "Date": [ - "Sat, 26 Mar 2022 09:55:38 GMT" + "Mon, 16 May 2022 16:10:33 GMT" ], "Content-Length": [ - "863" + "302" ], "Content-Type": [ "application/json" @@ -2077,26 +2114,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/9bce39eb-167f-437f-a250-d175a0b5a9de\",\r\n \"name\": \"9bce39eb-167f-437f-a250-d175a0b5a9de\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT1.6317086S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"MicrosoftStorage\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"File Share Name\": \"fs1\",\r\n \"Whether job is adhoc or scheduled.\": \"True\"\r\n }\r\n },\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-03-26T09:55:38.226849Z\",\r\n \"activityId\": \"0b1781fe-3a7f-4e4a-bdc4-7593fab735d5\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"9ccf176a-2e03-4c94-aee6-b4803bde02e7\",\r\n \"name\": \"9ccf176a-2e03-4c94-aee6-b4803bde02e7\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-05-16T16:09:47.935131Z\",\r\n \"endTime\": \"2022-05-16T16:09:47.935131Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"5b75fd41-2203-49ef-a8cd-b5fb969fa522\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/9bce39eb-167f-437f-a250-d175a0b5a9de?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy85YmNlMzllYi0xNjdmLTQzN2YtYTI1MC1kMTc1YTBiNWE5ZGU/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/5b75fd41-2203-49ef-a8cd-b5fb969fa522?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy81Yjc1ZmQ0MS0yMjAzLTQ5ZWYtYThjZC1iNWZiOTY5ZmE1MjI/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0b1781fe-3a7f-4e4a-bdc4-7593fab735d5" + "a8f88a84-d257-4df1-b7d8-425088904579" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -2114,11 +2151,11 @@ "nosniff" ], "x-ms-request-id": [ - "518dad18-0729-4623-8b30-5b0ef73bf0f3" + "bac0df17-d264-4454-b7fa-34c41e6e7242" ], "x-ms-client-request-id": [ - "0b1781fe-3a7f-4e4a-bdc4-7593fab735d5", - "0b1781fe-3a7f-4e4a-bdc4-7593fab735d5" + "a8f88a84-d257-4df1-b7d8-425088904579", + "a8f88a84-d257-4df1-b7d8-425088904579" ], "X-Powered-By": [ "ASP.NET" @@ -2127,19 +2164,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "296" + "299" ], "x-ms-correlation-request-id": [ - "518dad18-0729-4623-8b30-5b0ef73bf0f3" + "bac0df17-d264-4454-b7fa-34c41e6e7242" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T095640Z:518dad18-0729-4623-8b30-5b0ef73bf0f3" + "JIOINDIAWEST:20220516T161034Z:bac0df17-d264-4454-b7fa-34c41e6e7242" ], "Date": [ - "Sat, 26 Mar 2022 09:56:40 GMT" + "Mon, 16 May 2022 16:10:34 GMT" ], "Content-Length": [ - "902" + "846" ], "Content-Type": [ "application/json" @@ -2148,26 +2185,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/9bce39eb-167f-437f-a250-d175a0b5a9de\",\r\n \"name\": \"9bce39eb-167f-437f-a250-d175a0b5a9de\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT2.6940355S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"MicrosoftStorage\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"status\": \"Completed\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"File Share Name\": \"fs1\",\r\n \"Whether job is adhoc or scheduled.\": \"True\"\r\n }\r\n },\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-03-26T09:55:38.226849Z\",\r\n \"endTime\": \"2022-03-26T09:55:40.9208845Z\",\r\n \"activityId\": \"0b1781fe-3a7f-4e4a-bdc4-7593fab735d5\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/5b75fd41-2203-49ef-a8cd-b5fb969fa522\",\r\n \"name\": \"5b75fd41-2203-49ef-a8cd-b5fb969fa522\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT42.8868836S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"Storage\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"File Share Name\": \"fs1\",\r\n \"Storage Account Name\": \"pstestsa8895\",\r\n \"Policy Name\": \"afspolicy1\"\r\n }\r\n },\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"ConfigureBackup\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-05-16T16:09:47.935131Z\",\r\n \"endTime\": \"2022-05-16T16:10:30.8220146Z\",\r\n \"activityId\": \"a8f88a84-d257-4df1-b7d8-425088904579\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3Bstorage%3Bpstestrg8895%3Bpstestsa8895/protectedItems/AzureFileShare%3B698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959/recoveryPoints?$filter=startDate%20eq%20'2022-03-26%2009:54:38%20AM'%20and%20endDate%20eq%20'2022-03-26%2009:56:40%20AM'&api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCc3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9wcm90ZWN0ZWRJdGVtcy9BenVyZUZpbGVTaGFyZSUzQjY5OGRmNTk1OTQ4ZTIzNTVmMmJiNzQ0YTQxY2YyNDVkNGJhMTI1NWQ5Njk5Y2MzYzJhZDFmNTA0NWUxNzc5NTkvcmVjb3ZlcnlQb2ludHM/JGZpbHRlcj1zdGFydERhdGUlMjBlcSUyMCcyMDIyLTAzLTI2JTIwMDk6NTQ6MzglMjBBTSclMjBhbmQlMjBlbmREYXRlJTIwZXElMjAnMjAyMi0wMy0yNiUyMDA5OjU2OjQwJTIwQU0nJmFwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupProtectedItems?$filter=backupManagementType%20eq%20'AzureStorage'%20and%20itemType%20eq%20'AzureFileShare'&api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwUHJvdGVjdGVkSXRlbXM/JGZpbHRlcj1iYWNrdXBNYW5hZ2VtZW50VHlwZSUyMGVxJTIwJ0F6dXJlU3RvcmFnZSclMjBhbmQlMjBpdGVtVHlwZSUyMGVxJTIwJ0F6dXJlRmlsZVNoYXJlJyZhcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a50acb8d-353a-4ee4-acff-0309ca3dfaf8" + "6f7d8529-7186-4b41-a2d1-37440c261e69" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -2181,11 +2218,11 @@ "nosniff" ], "x-ms-request-id": [ - "2a59d8cd-5e30-4884-8713-5827b5525f18" + "8dbb6f6c-d01b-4510-81d5-55046428268c" ], "x-ms-client-request-id": [ - "a50acb8d-353a-4ee4-acff-0309ca3dfaf8", - "a50acb8d-353a-4ee4-acff-0309ca3dfaf8" + "6f7d8529-7186-4b41-a2d1-37440c261e69", + "6f7d8529-7186-4b41-a2d1-37440c261e69" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2200,16 +2237,16 @@ "299" ], "x-ms-correlation-request-id": [ - "2a59d8cd-5e30-4884-8713-5827b5525f18" + "8dbb6f6c-d01b-4510-81d5-55046428268c" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T095641Z:2a59d8cd-5e30-4884-8713-5827b5525f18" + "JIOINDIAWEST:20220516T161036Z:8dbb6f6c-d01b-4510-81d5-55046428268c" ], "Date": [ - "Sat, 26 Mar 2022 09:56:40 GMT" + "Mon, 16 May 2022 16:10:35 GMT" ], "Content-Length": [ - "792" + "1219" ], "Content-Type": [ "application/json" @@ -2218,26 +2255,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;storage;pstestrg8895;pstestsa8895/protectedItems/AzureFileShare;698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959/recoveryPoints/33475003016675\",\r\n \"name\": \"33475003016675\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints\",\r\n \"properties\": {\r\n \"objectType\": \"AzureFileShareRecoveryPoint\",\r\n \"recoveryPointType\": \"FileSystemConsistent\",\r\n \"recoveryPointTime\": \"2022-03-26T09:55:39Z\",\r\n \"fileShareSnapshotUri\": \"https://pstestsa8895.file.core.windows.net/fs1?sharesnapshot=2022-03-26T09:55:39.0000000Z\",\r\n \"recoveryPointSizeInGB\": 1\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;storage;pstestrg8895;pstestsa8895/protectedItems/AzureFileShare;698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959\",\r\n \"name\": \"AzureFileShare;698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems\",\r\n \"properties\": {\r\n \"kpisHealths\": {},\r\n \"friendlyName\": \"fs1\",\r\n \"protectionStatus\": \"Healthy\",\r\n \"protectionState\": \"IRPending\",\r\n \"lastBackupStatus\": \"IRPending\",\r\n \"protectedItemType\": \"AzureFileShareProtectedItem\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"workloadType\": \"AzureFileShare\",\r\n \"containerName\": \"StorageContainer;storage;pstestrg8895;pstestsa8895\",\r\n \"sourceResourceId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.storage/storageAccounts/pstestsa8895\",\r\n \"policyId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupPolicies/afspolicy1\",\r\n \"isArchiveEnabled\": false\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resources?$filter=resourceType%20eq%20'Microsoft.ClassicStorage%2FstorageAccounts'&api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5DbGFzc2ljU3RvcmFnZSUyRnN0b3JhZ2VBY2NvdW50cycmYXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3Bstorage%3Bpstestrg8895%3Bpstestsa8895/protectedItems/AzureFileShare%3B698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959?$filter=expand%20eq%20'extendedinfo'&api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCc3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9wcm90ZWN0ZWRJdGVtcy9BenVyZUZpbGVTaGFyZSUzQjY5OGRmNTk1OTQ4ZTIzNTVmMmJiNzQ0YTQxY2YyNDVkNGJhMTI1NWQ5Njk5Y2MzYzJhZDFmNTA0NWUxNzc5NTk/JGZpbHRlcj1leHBhbmQlMjBlcSUyMCdleHRlbmRlZGluZm8nJmFwaS12ZXJzaW9uPTIwMjItMDItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ef85bfee-a58f-425b-bdf6-6efd860f2fcd" + "6f7d8529-7186-4b41-a2d1-37440c261e69" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -2247,57 +2284,73 @@ "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "X-Content-Type-Options": [ + "nosniff" ], "x-ms-request-id": [ - "f2fc51bb-594e-4a1a-ad3e-848cd1de217f" + "17ba55e6-8d62-4dcb-b3de-b6d29cc1465e" ], - "x-ms-correlation-request-id": [ - "f2fc51bb-594e-4a1a-ad3e-848cd1de217f" - ], - "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T095641Z:f2fc51bb-594e-4a1a-ad3e-848cd1de217f" + "x-ms-client-request-id": [ + "6f7d8529-7186-4b41-a2d1-37440c261e69", + "6f7d8529-7186-4b41-a2d1-37440c261e69" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ - "nosniff" + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "299" + ], + "x-ms-correlation-request-id": [ + "17ba55e6-8d62-4dcb-b3de-b6d29cc1465e" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T161036Z:17ba55e6-8d62-4dcb-b3de-b6d29cc1465e" ], "Date": [ - "Sat, 26 Mar 2022 09:56:40 GMT" + "Mon, 16 May 2022 16:10:36 GMT" + ], + "Content-Length": [ + "1354" ], "Content-Type": [ - "application/json; charset=utf-8" + "application/json" ], "Expires": [ "-1" - ], - "Content-Length": [ - "268" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.existing/providers/Microsoft.ClassicStorage/storageAccounts/iaasextstore2\",\r\n \"name\": \"iaasextstore2\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"southeastasia\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;storage;pstestrg8895;pstestsa8895/protectedItems/AzureFileShare;698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959\",\r\n \"name\": \"AzureFileShare;698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems\",\r\n \"properties\": {\r\n \"kpisHealths\": {},\r\n \"friendlyName\": \"fs1\",\r\n \"protectionStatus\": \"Healthy\",\r\n \"protectionState\": \"IRPending\",\r\n \"lastBackupStatus\": \"IRPending\",\r\n \"extendedInfo\": {\r\n \"recoveryPointCount\": 0,\r\n \"policyState\": \"Consistent\",\r\n \"resourceState\": \"Active\",\r\n \"resourceStateSyncTime\": \"2022-05-16T16:10:30.5563462Z\"\r\n },\r\n \"protectedItemType\": \"AzureFileShareProtectedItem\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"workloadType\": \"AzureFileShare\",\r\n \"containerName\": \"StorageContainer;storage;pstestrg8895;pstestsa8895\",\r\n \"sourceResourceId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.storage/storageAccounts/pstestsa8895\",\r\n \"policyId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupPolicies/afspolicy1\",\r\n \"isArchiveEnabled\": false\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resources?$filter=resourceType%20eq%20'Microsoft.ClassicStorage%2FstorageAccounts'&api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5DbGFzc2ljU3RvcmFnZSUyRnN0b3JhZ2VBY2NvdW50cycmYXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3Bstorage%3Bpstestrg8895%3Bpstestsa8895/protectedItems/AzureFileShare%3B698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959/backup?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCc3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9wcm90ZWN0ZWRJdGVtcy9BenVyZUZpbGVTaGFyZSUzQjY5OGRmNTk1OTQ4ZTIzNTVmMmJiNzQ0YTQxY2YyNDVkNGJhMTI1NWQ5Njk5Y2MzYzJhZDFmNTA0NWUxNzc5NTkvYmFja3VwP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"properties\": {\r\n \"objectType\": \"AzureFileShareBackupRequest\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "875fb7d6-5caf-4a93-8aa9-ce8dcad33c8f" + "2721bcfc-6b0f-4564-91a3-42f7de103707" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "77" ] }, "ResponseHeaders": { @@ -2307,57 +2360,70 @@ "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;storage;pstestrg8895;pstestsa8895/protectedItems/AzureFileShare;698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959/operationResults/51696b78-d8d1-43aa-8ad3-7e38d1747bd8?api-version=2022-02-01" ], - "x-ms-request-id": [ - "ed1a7c21-72b2-447b-a93f-518f360ab678" + "Retry-After": [ + "60" ], - "x-ms-correlation-request-id": [ - "ed1a7c21-72b2-447b-a93f-518f360ab678" + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;storage;pstestrg8895;pstestsa8895/protectedItems/AzureFileShare;698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959/operationsStatus/51696b78-d8d1-43aa-8ad3-7e38d1747bd8?api-version=2022-02-01" ], - "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T095745Z:ed1a7c21-72b2-447b-a93f-518f360ab678" + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "cb8c0eb5-cb1b-41a2-9800-0f3984c92df2" + ], + "x-ms-client-request-id": [ + "2721bcfc-6b0f-4564-91a3-42f7de103707", + "2721bcfc-6b0f-4564-91a3-42f7de103707" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ - "nosniff" + "X-Powered-By": [ + "ASP.NET" ], - "Date": [ - "Sat, 26 Mar 2022 09:57:45 GMT" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" ], - "Content-Type": [ - "application/json; charset=utf-8" + "x-ms-correlation-request-id": [ + "cb8c0eb5-cb1b-41a2-9800-0f3984c92df2" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T161038Z:cb8c0eb5-cb1b-41a2-9800-0f3984c92df2" + ], + "Date": [ + "Mon, 16 May 2022 16:10:37 GMT" ], "Expires": [ "-1" ], "Content-Length": [ - "268" + "0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.existing/providers/Microsoft.ClassicStorage/storageAccounts/iaasextstore2\",\r\n \"name\": \"iaasextstore2\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"southeastasia\"\r\n }\r\n ]\r\n}", - "StatusCode": 200 + "ResponseBody": "", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resources?$filter=resourceType%20eq%20'Microsoft.ClassicStorage%2FstorageAccounts'&api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5DbGFzc2ljU3RvcmFnZSUyRnN0b3JhZ2VBY2NvdW50cycmYXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/51696b78-d8d1-43aa-8ad3-7e38d1747bd8?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy81MTY5NmI3OC1kOGQxLTQzYWEtOGFkMy03ZTM4ZDE3NDdiZDg/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "875fb7d6-5caf-4a93-8aa9-ce8dcad33c8f" + "2721bcfc-6b0f-4564-91a3-42f7de103707" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -2367,57 +2433,67 @@ "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "X-Content-Type-Options": [ + "nosniff" ], "x-ms-request-id": [ - "784d92e3-514d-4787-80db-93be756e5038" - ], - "x-ms-correlation-request-id": [ - "784d92e3-514d-4787-80db-93be756e5038" + "46d7746f-1e59-4b11-b5d1-2e994352f4ad" ], - "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T095745Z:784d92e3-514d-4787-80db-93be756e5038" + "x-ms-client-request-id": [ + "2721bcfc-6b0f-4564-91a3-42f7de103707", + "2721bcfc-6b0f-4564-91a3-42f7de103707" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ - "nosniff" + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "289" + ], + "x-ms-correlation-request-id": [ + "46d7746f-1e59-4b11-b5d1-2e994352f4ad" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T161038Z:46d7746f-1e59-4b11-b5d1-2e994352f4ad" ], "Date": [ - "Sat, 26 Mar 2022 09:57:45 GMT" + "Mon, 16 May 2022 16:10:38 GMT" + ], + "Content-Length": [ + "188" ], "Content-Type": [ - "application/json; charset=utf-8" + "application/json" ], "Expires": [ "-1" - ], - "Content-Length": [ - "268" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.existing/providers/Microsoft.ClassicStorage/storageAccounts/iaasextstore2\",\r\n \"name\": \"iaasextstore2\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"southeastasia\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"51696b78-d8d1-43aa-8ad3-7e38d1747bd8\",\r\n \"name\": \"51696b78-d8d1-43aa-8ad3-7e38d1747bd8\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T16:10:38.2041702Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resources?$filter=resourceType%20eq%20'Microsoft.ClassicStorage%2FstorageAccounts'&api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5DbGFzc2ljU3RvcmFnZSUyRnN0b3JhZ2VBY2NvdW50cycmYXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/51696b78-d8d1-43aa-8ad3-7e38d1747bd8?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy81MTY5NmI3OC1kOGQxLTQzYWEtOGFkMy03ZTM4ZDE3NDdiZDg/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bbfb3d3c-8482-49e1-94e1-71481f000bf8" + "2721bcfc-6b0f-4564-91a3-42f7de103707" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -2427,57 +2503,67 @@ "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "X-Content-Type-Options": [ + "nosniff" ], "x-ms-request-id": [ - "2a7609aa-e209-4dab-ab38-3ee303c6a366" + "32a940be-e3df-4952-b22d-0978b82e1004" ], - "x-ms-correlation-request-id": [ - "2a7609aa-e209-4dab-ab38-3ee303c6a366" - ], - "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T095849Z:2a7609aa-e209-4dab-ab38-3ee303c6a366" + "x-ms-client-request-id": [ + "2721bcfc-6b0f-4564-91a3-42f7de103707", + "2721bcfc-6b0f-4564-91a3-42f7de103707" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ - "nosniff" + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "288" + ], + "x-ms-correlation-request-id": [ + "32a940be-e3df-4952-b22d-0978b82e1004" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T161044Z:32a940be-e3df-4952-b22d-0978b82e1004" ], "Date": [ - "Sat, 26 Mar 2022 09:58:48 GMT" + "Mon, 16 May 2022 16:10:43 GMT" + ], + "Content-Length": [ + "304" ], "Content-Type": [ - "application/json; charset=utf-8" + "application/json" ], "Expires": [ "-1" - ], - "Content-Length": [ - "268" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.existing/providers/Microsoft.ClassicStorage/storageAccounts/iaasextstore2\",\r\n \"name\": \"iaasextstore2\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"southeastasia\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"51696b78-d8d1-43aa-8ad3-7e38d1747bd8\",\r\n \"name\": \"51696b78-d8d1-43aa-8ad3-7e38d1747bd8\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-05-16T16:10:38.2041702Z\",\r\n \"endTime\": \"2022-05-16T16:10:38.2041702Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"f1723a12-4e8e-4ecd-aad4-df22fefc41fe\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resources?$filter=resourceType%20eq%20'Microsoft.ClassicStorage%2FstorageAccounts'&api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5DbGFzc2ljU3RvcmFnZSUyRnN0b3JhZ2VBY2NvdW50cycmYXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/51696b78-d8d1-43aa-8ad3-7e38d1747bd8?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy81MTY5NmI3OC1kOGQxLTQzYWEtOGFkMy03ZTM4ZDE3NDdiZDg/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bbfb3d3c-8482-49e1-94e1-71481f000bf8" + "2721bcfc-6b0f-4564-91a3-42f7de103707" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -2487,57 +2573,67 @@ "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "X-Content-Type-Options": [ + "nosniff" ], "x-ms-request-id": [ - "5e5c015f-bd3a-44a7-b51b-90b003e22631" - ], - "x-ms-correlation-request-id": [ - "5e5c015f-bd3a-44a7-b51b-90b003e22631" + "4b31cece-089c-4bf7-871d-c5534afff823" ], - "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T095849Z:5e5c015f-bd3a-44a7-b51b-90b003e22631" + "x-ms-client-request-id": [ + "2721bcfc-6b0f-4564-91a3-42f7de103707", + "2721bcfc-6b0f-4564-91a3-42f7de103707" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ - "nosniff" + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "287" + ], + "x-ms-correlation-request-id": [ + "4b31cece-089c-4bf7-871d-c5534afff823" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T161045Z:4b31cece-089c-4bf7-871d-c5534afff823" ], "Date": [ - "Sat, 26 Mar 2022 09:58:48 GMT" + "Mon, 16 May 2022 16:10:44 GMT" + ], + "Content-Length": [ + "304" ], "Content-Type": [ - "application/json; charset=utf-8" + "application/json" ], "Expires": [ "-1" - ], - "Content-Length": [ - "268" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.existing/providers/Microsoft.ClassicStorage/storageAccounts/iaasextstore2\",\r\n \"name\": \"iaasextstore2\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"southeastasia\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"51696b78-d8d1-43aa-8ad3-7e38d1747bd8\",\r\n \"name\": \"51696b78-d8d1-43aa-8ad3-7e38d1747bd8\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-05-16T16:10:38.2041702Z\",\r\n \"endTime\": \"2022-05-16T16:10:38.2041702Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"f1723a12-4e8e-4ecd-aad4-df22fefc41fe\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resources?$filter=resourceType%20eq%20'Microsoft.ClassicStorage%2FstorageAccounts'&api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5DbGFzc2ljU3RvcmFnZSUyRnN0b3JhZ2VBY2NvdW50cycmYXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/f1723a12-4e8e-4ecd-aad4-df22fefc41fe?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9mMTcyM2ExMi00ZThlLTRlY2QtYWFkNC1kZjIyZmVmYzQxZmU/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "710f4ec8-20fe-4fdd-9de3-b7169babc8eb" + "2721bcfc-6b0f-4564-91a3-42f7de103707" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -2547,57 +2643,68 @@ "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "Server": [ + "Microsoft-IIS/10.0", + "Microsoft-IIS/10.0" + ], + "X-Content-Type-Options": [ + "nosniff" ], "x-ms-request-id": [ - "8efcc2d9-3831-4651-b836-842d4d15b9fe" + "54abb3b6-bdee-4ab7-85cd-359d3bb1f2af" ], - "x-ms-correlation-request-id": [ - "8efcc2d9-3831-4651-b836-842d4d15b9fe" + "x-ms-client-request-id": [ + "2721bcfc-6b0f-4564-91a3-42f7de103707", + "2721bcfc-6b0f-4564-91a3-42f7de103707" ], - "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T095953Z:8efcc2d9-3831-4651-b836-842d4d15b9fe" + "X-Powered-By": [ + "ASP.NET" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ - "nosniff" + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "298" + ], + "x-ms-correlation-request-id": [ + "54abb3b6-bdee-4ab7-85cd-359d3bb1f2af" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T161045Z:54abb3b6-bdee-4ab7-85cd-359d3bb1f2af" ], "Date": [ - "Sat, 26 Mar 2022 09:59:52 GMT" + "Mon, 16 May 2022 16:10:44 GMT" + ], + "Content-Length": [ + "903" ], "Content-Type": [ - "application/json; charset=utf-8" + "application/json" ], "Expires": [ "-1" - ], - "Content-Length": [ - "268" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.existing/providers/Microsoft.ClassicStorage/storageAccounts/iaasextstore2\",\r\n \"name\": \"iaasextstore2\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"southeastasia\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/f1723a12-4e8e-4ecd-aad4-df22fefc41fe\",\r\n \"name\": \"f1723a12-4e8e-4ecd-aad4-df22fefc41fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT3.2333372S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"MicrosoftStorage\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"status\": \"Completed\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"File Share Name\": \"fs1\",\r\n \"Whether job is adhoc or scheduled.\": \"True\"\r\n }\r\n },\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-05-16T16:10:38.6329612Z\",\r\n \"endTime\": \"2022-05-16T16:10:41.8662984Z\",\r\n \"activityId\": \"2721bcfc-6b0f-4564-91a3-42f7de103707\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resources?$filter=resourceType%20eq%20'Microsoft.ClassicStorage%2FstorageAccounts'&api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5DbGFzc2ljU3RvcmFnZSUyRnN0b3JhZ2VBY2NvdW50cycmYXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/f1723a12-4e8e-4ecd-aad4-df22fefc41fe?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9mMTcyM2ExMi00ZThlLTRlY2QtYWFkNC1kZjIyZmVmYzQxZmU/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e6a21136-a7ea-4f38-97e5-47524c628ec0" + "2721bcfc-6b0f-4564-91a3-42f7de103707" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -2607,54 +2714,135 @@ "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" + "Server": [ + "Microsoft-IIS/10.0", + "Microsoft-IIS/10.0" + ], + "X-Content-Type-Options": [ + "nosniff" ], "x-ms-request-id": [ - "499722c1-3218-4a55-968e-3daca3f3aa44" + "86ac69f7-a257-484a-a36b-0fe0c9223fce" ], - "x-ms-correlation-request-id": [ - "499722c1-3218-4a55-968e-3daca3f3aa44" + "x-ms-client-request-id": [ + "2721bcfc-6b0f-4564-91a3-42f7de103707", + "2721bcfc-6b0f-4564-91a3-42f7de103707" ], - "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T100057Z:499722c1-3218-4a55-968e-3daca3f3aa44" + "X-Powered-By": [ + "ASP.NET" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ - "nosniff" + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "297" + ], + "x-ms-correlation-request-id": [ + "86ac69f7-a257-484a-a36b-0fe0c9223fce" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T161046Z:86ac69f7-a257-484a-a36b-0fe0c9223fce" ], "Date": [ - "Sat, 26 Mar 2022 10:00:56 GMT" + "Mon, 16 May 2022 16:10:45 GMT" + ], + "Content-Length": [ + "903" ], "Content-Type": [ - "application/json; charset=utf-8" + "application/json" ], "Expires": [ "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/f1723a12-4e8e-4ecd-aad4-df22fefc41fe\",\r\n \"name\": \"f1723a12-4e8e-4ecd-aad4-df22fefc41fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT3.2333372S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"MicrosoftStorage\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"status\": \"Completed\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"File Share Name\": \"fs1\",\r\n \"Whether job is adhoc or scheduled.\": \"True\"\r\n }\r\n },\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-05-16T16:10:38.6329612Z\",\r\n \"endTime\": \"2022-05-16T16:10:41.8662984Z\",\r\n \"activityId\": \"2721bcfc-6b0f-4564-91a3-42f7de103707\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3Bstorage%3Bpstestrg8895%3Bpstestsa8895/protectedItems/AzureFileShare%3B698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959/recoveryPoints?$filter=startDate%20eq%20'2022-05-16%2004:09:38%20PM'%20and%20endDate%20eq%20'2022-05-16%2004:11:41%20PM'&api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCc3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9wcm90ZWN0ZWRJdGVtcy9BenVyZUZpbGVTaGFyZSUzQjY5OGRmNTk1OTQ4ZTIzNTVmMmJiNzQ0YTQxY2YyNDVkNGJhMTI1NWQ5Njk5Y2MzYzJhZDFmNTA0NWUxNzc5NTkvcmVjb3ZlcnlQb2ludHM/JGZpbHRlcj1zdGFydERhdGUlMjBlcSUyMCcyMDIyLTA1LTE2JTIwMDQ6MDk6MzglMjBQTSclMjBhbmQlMjBlbmREYXRlJTIwZXElMjAnMjAyMi0wNS0xNiUyMDA0OjExOjQxJTIwUE0nJmFwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3c5d8074-38e9-45a0-a6f7-e358e2ff4bd9" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "2e68953e-d8af-4ae6-a09d-8867f017b63a" + ], + "x-ms-client-request-id": [ + "3c5d8074-38e9-45a0-a6f7-e358e2ff4bd9", + "3c5d8074-38e9-45a0-a6f7-e358e2ff4bd9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "299" + ], + "x-ms-correlation-request-id": [ + "2e68953e-d8af-4ae6-a09d-8867f017b63a" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T161046Z:2e68953e-d8af-4ae6-a09d-8867f017b63a" + ], + "Date": [ + "Mon, 16 May 2022 16:10:46 GMT" ], "Content-Length": [ - "268" + "792" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.existing/providers/Microsoft.ClassicStorage/storageAccounts/iaasextstore2\",\r\n \"name\": \"iaasextstore2\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"southeastasia\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;storage;pstestrg8895;pstestsa8895/protectedItems/AzureFileShare;698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959/recoveryPoints/18866357498473\",\r\n \"name\": \"18866357498473\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints\",\r\n \"properties\": {\r\n \"objectType\": \"AzureFileShareRecoveryPoint\",\r\n \"recoveryPointType\": \"FileSystemConsistent\",\r\n \"recoveryPointTime\": \"2022-05-16T16:10:39Z\",\r\n \"fileShareSnapshotUri\": \"https://pstestsa8895.file.core.windows.net/fs1?sharesnapshot=2022-05-16T16:10:39.0000000Z\",\r\n \"recoveryPointSizeInGB\": 1\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resources?$filter=resourceType%20eq%20'Microsoft.Storage%2FstorageAccounts'&api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5TdG9yYWdlJTJGc3RvcmFnZUFjY291bnRzJyZhcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resources?$filter=resourceType%20eq%20'Microsoft.ClassicStorage%2FstorageAccounts'&api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5DbGFzc2ljU3RvcmFnZSUyRnN0b3JhZ2VBY2NvdW50cycmYXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ef85bfee-a58f-425b-bdf6-6efd860f2fcd" + "91ca1cd7-c0c8-483b-b1ed-64f85417e18a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" @@ -2668,16 +2856,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11998" ], "x-ms-request-id": [ - "9d12e25c-58d0-4885-849c-9dd86232a37e" + "83ec4a93-3bac-4211-ad05-d30f591288d8" ], "x-ms-correlation-request-id": [ - "9d12e25c-58d0-4885-849c-9dd86232a37e" + "83ec4a93-3bac-4211-ad05-d30f591288d8" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T095641Z:9d12e25c-58d0-4885-849c-9dd86232a37e" + "JIOINDIAWEST:20220516T161047Z:83ec4a93-3bac-4211-ad05-d30f591288d8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2686,7 +2874,7 @@ "nosniff" ], "Date": [ - "Sat, 26 Mar 2022 09:56:41 GMT" + "Mon, 16 May 2022 16:10:47 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2695,26 +2883,26 @@ "-1" ], "Content-Length": [ - "32912" + "268" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.existing.crr/providers/Microsoft.Storage/storageAccounts/iaasvmexistingcrrdiag\",\r\n \"name\": \"iaasvmexistingcrrdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"MAB Used\": \"Yes\",\r\n \"DeleteBy\": \"01-2030\",\r\n \"Delete By\": \"01-2030\",\r\n \"Owner\": \"chgonugu\",\r\n \"Purpose\": \"Testing\",\r\n \"AutoShutdown\": \"false\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.existing.crr/providers/Microsoft.Storage/storageAccounts/iaasvmexistingcrrdiag112\",\r\n \"name\": \"iaasvmexistingcrrdiag112\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {\r\n \"Owner\": \"chgonugu\",\r\n \"Purpose\": \"Testing\",\r\n \"MabUsed\": \"Yes\",\r\n \"DeleteBy\": \"01-2025\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.existing.crr/providers/Microsoft.Storage/storageAccounts/iaasvmexistingcrr\",\r\n \"name\": \"iaasvmexistingcrr\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/sambit_rg/providers/Microsoft.Storage/storageAccounts/sarathsa3\",\r\n \"name\": \"sarathsa3\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvmhanaworkload.existing/providers/Microsoft.Storage/storageAccounts/iaasvmhanaworkloadexisti\",\r\n \"name\": \"iaasvmhanaworkloadexisti\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"AutoShutdown\": \"No\",\r\n \"BVT Used\": \"Yes\",\r\n \"Owner\": \"chgonugu\",\r\n \"Purpose\": \"BVT\",\r\n \"DeleteBy\": \"01-2030\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/afsnavigationtest\",\r\n \"name\": \"afsnavigationtest\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/afstbackuptestsa\",\r\n \"name\": \"afstbackuptestsa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.encryptedvm/providers/Microsoft.Storage/storageAccounts/iaasvmencryptedvmdiag170\",\r\n \"name\": \"iaasvmencryptedvmdiag170\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.existing/providers/Microsoft.Storage/storageAccounts/iaasvmexistingdiag1\",\r\n \"name\": \"iaasvmexistingdiag1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.existing/providers/Microsoft.Storage/storageAccounts/iaasextstore1\",\r\n \"name\": \"iaasextstore1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.new/providers/Microsoft.Storage/storageAccounts/iaasvmnewdiag1\",\r\n \"name\": \"iaasvmnewdiag1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.new/providers/Microsoft.Storage/storageAccounts/iaasnewstore1\",\r\n \"name\": \"iaasnewstore1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/IaasVMNavigationTest-RG/providers/Microsoft.Storage/storageAccounts/aasavigationestdiag\",\r\n \"name\": \"aasavigationestdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/IaasVMNavigationTest-RG/providers/Microsoft.Storage/storageAccounts/iaasvmnavigationstore\",\r\n \"name\": \"iaasvmnavigationstore\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pscloudtestrg/providers/Microsoft.Storage/storageAccounts/pscloudtestrgdiag\",\r\n \"name\": \"pscloudtestrgdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MAB Used\": \" Yes\",\r\n \"MABUsed\": \" Yes\",\r\n \"DeleteBy\": \"01-2030\",\r\n \"Purpose\": \"PS bvt\",\r\n \"Owner\": \"sarath\",\r\n \"AutoShutdown\": \"No\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pscloudtestrg/providers/Microsoft.Storage/storageAccounts/psbvtsa2\",\r\n \"name\": \"psbvtsa2\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstestsa8895\",\r\n \"name\": \"pstestsa8895\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstesttargetsa8895\",\r\n \"name\": \"pstesttargetsa8895\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstesttargetsa8896\",\r\n \"name\": \"pstesttargetsa8896\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/afsbackupsa\",\r\n \"name\": \"afsbackupsa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"Owner\": \"sarath\",\r\n \"Purpose\": \" BVT\",\r\n \"DeleteBy\": \"01-2025\",\r\n \"AutoShutdown\": \"No\",\r\n \"MAB Used\": \" Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG54bdf8da/providers/Microsoft.Storage/storageAccounts/pstestsa54bdf8da\",\r\n \"name\": \"pstestsa54bdf8da\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG1e5a278b/providers/Microsoft.Storage/storageAccounts/pstestsa1e5a278b\",\r\n \"name\": \"pstestsa1e5a278b\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG59e1706f/providers/Microsoft.Storage/storageAccounts/pstestsa59e1706f\",\r\n \"name\": \"pstestsa59e1706f\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/storageysci5wbex6jyc\",\r\n \"name\": \"storageysci5wbex6jyc\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/prnookal-rg/providers/Microsoft.Storage/storageAccounts/prnookaltestnob\",\r\n \"name\": \"prnookaltestnob\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"isMABUsed\": \"Yes\",\r\n \" Owner\": \"prnookal@microsoft.com\",\r\n \"DeletBy\": \"12-2021\",\r\n \"Purpose\": \" Testing\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/afsbackupsa1\",\r\n \"name\": \"afsbackupsa1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"Mab Used\": \"yes\",\r\n \"Owner\": \"akkanase\",\r\n \"Purpose\": \"Testing\",\r\n \"DeleteBy\": \"01-2022\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/afsbackupsa2\",\r\n \"name\": \"afsbackupsa2\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseTest/providers/Microsoft.Storage/storageAccounts/afsfilesharetest\",\r\n \"name\": \"afsfilesharetest\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/afsbackupsa3\",\r\n \"name\": \"afsbackupsa3\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/afsbackupsa0\",\r\n \"name\": \"afsbackupsa0\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pscloudtest-diskbackup-existing/providers/Microsoft.Storage/storageAccounts/1vnseapod01otds1\",\r\n \"name\": \"1vnseapod01otds1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGZRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseAFSTest/providers/Microsoft.Storage/storageAccounts/akkanaseafssa\",\r\n \"name\": \"akkanaseafssa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MAB Used\": \"Yes\",\r\n \"Owner\": \"akkanase\",\r\n \"Purpose\": \"Testing\",\r\n \"Delete By\": \"05-202\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseAFSTest/providers/Microsoft.Storage/storageAccounts/akkanasembpd2\",\r\n \"name\": \"akkanasembpd2\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MAB Used\": \"Yes\",\r\n \"Purpose\": \"Testing\",\r\n \"Owner\": \"akkanase\",\r\n \"Delete By\": \"05-2022\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseCMK/providers/Microsoft.Storage/storageAccounts/akkanase\",\r\n \"name\": \"akkanase\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"DeleteBy\": \"05-2023\",\r\n \"Owner\": \"akkanase\",\r\n \"Purpose\": \"Testing\",\r\n \"MAB Used\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/cmk.system/providers/Microsoft.Storage/storageAccounts/cmkautomationstore\",\r\n \"name\": \"cmkautomationstore\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"Delete By\": \"05-2050\",\r\n \"MAB Used\": \" Yes\",\r\n \"Owner\": \"akkanase\",\r\n \"Purpose\": \" BVT\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG235879ba/providers/Microsoft.Storage/storageAccounts/pstestsa235879ba\",\r\n \"name\": \"pstestsa235879ba\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/disk-bvt-test-rg/providers/Microsoft.Storage/storageAccounts/hv3seapod01otds1\",\r\n \"name\": \"hv3seapod01otds1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGZRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/DoNotUse-OSS-BVT-SEA-RG/providers/Microsoft.Storage/storageAccounts/dontuseossrestoreasfile\",\r\n \"name\": \"dontuseossrestoreasfile\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MAB Used\": \" Yes\",\r\n \" Owner\": \"akkanase\",\r\n \"Purpose\": \"BV\",\r\n \"Delete By\": \"05-2020\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseAFSTest/providers/Microsoft.Storage/storageAccounts/akkanaseafsa2\",\r\n \"name\": \"akkanaseafsa2\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseCMK/providers/Microsoft.Storage/storageAccounts/0byseapod01otds1\",\r\n \"name\": \"0byseapod01otds1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGZRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/9exwuspod01otds1\",\r\n \"name\": \"9exwuspod01otds1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/02xseacan01otds1\",\r\n \"name\": \"02xseacan01otds1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGZRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseMAB/providers/Microsoft.Storage/storageAccounts/dnhccypod01otds1\",\r\n \"name\": \"dnhccypod01otds1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rguzio7xhypi/providers/Microsoft.Storage/storageAccounts/clitest4b24ibpr3ztyhwo23\",\r\n \"name\": \"clitest4b24ibpr3ztyhwo23\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rgsiaa3ljqg5/providers/Microsoft.Storage/storageAccounts/clitestgd6i34czs3jb3rdtc\",\r\n \"name\": \"clitestgd6i34czs3jb3rdtc\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rgjxpjikqjjw/providers/Microsoft.Storage/storageAccounts/clitestjkhq2kpsal665atqe\",\r\n \"name\": \"clitestjkhq2kpsal665atqe\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rgwwhxyyhl2u/providers/Microsoft.Storage/storageAccounts/clitestdggdsdbtfa6vq5n5o\",\r\n \"name\": \"clitestdggdsdbtfa6vq5n5o\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rgm44mrkvygk/providers/Microsoft.Storage/storageAccounts/clitestodvd3xsftt63go6dk\",\r\n \"name\": \"clitestodvd3xsftt63go6dk\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rgdy7jf3qqzd/providers/Microsoft.Storage/storageAccounts/clitestnbsma3ftf2yugilxq\",\r\n \"name\": \"clitestnbsma3ftf2yugilxq\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rgl5tlzqo2pt/providers/Microsoft.Storage/storageAccounts/clitestgn64zidsnwe3ndjp5\",\r\n \"name\": \"clitestgn64zidsnwe3ndjp5\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rg73eqbdp4g5/providers/Microsoft.Storage/storageAccounts/clitestzfhrqsr4m24iwnjy7\",\r\n \"name\": \"clitestzfhrqsr4m24iwnjy7\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rg73eqbdp4g5/providers/Microsoft.Storage/storageAccounts/clitestukhlrarahpoebmaln\",\r\n \"name\": \"clitestukhlrarahpoebmaln\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/prnookal-prod/providers/Microsoft.Storage/storageAccounts/prnookalprod\",\r\n \"name\": \"prnookalprod\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"japaneast\",\r\n \"tags\": {\r\n \"IsMabUsed\": \"Yes\",\r\n \"Owner\": \"prnookal\",\r\n \"DeleteBy\": \"12-2021\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/cloud-shell-storage-centralindia/providers/Microsoft.Storage/storageAccounts/csg10032000d221b981\",\r\n \"name\": \"csg10032000d221b981\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centralindia\",\r\n \"tags\": {\r\n \"ms-resource-usage\": \"azure-cloud-shell\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/cloud-shell-storage-centralindia/providers/Microsoft.Storage/storageAccounts/csg10032000b56ab138\",\r\n \"name\": \"csg10032000b56ab138\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centralindia\",\r\n \"tags\": {\r\n \"ms-resource-usage\": \"azure-cloud-shell\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/cloud-shell-storage-centralindia/providers/Microsoft.Storage/storageAccounts/csg10033fffacb0d110\",\r\n \"name\": \"csg10033fffacb0d110\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centralindia\",\r\n \"tags\": {\r\n \"ms-resource-usage\": \"azure-cloud-shell\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/cloud-shell-storage-centralindia/providers/Microsoft.Storage/storageAccounts/csg1003bffda7dcd176\",\r\n \"name\": \"csg1003bffda7dcd176\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centralindia\",\r\n \"tags\": {\r\n \"ms-resource-usage\": \"azure-cloud-shell\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvmsqlworkload.existing.crr/providers/Microsoft.Storage/storageAccounts/iaasvmsqlworkloadexistin\",\r\n \"name\": \"iaasvmsqlworkloadexistin\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {\r\n \"Owner\": \"chgonugu\",\r\n \"Purpose\": \"BVT\",\r\n \"MabUsed\": \"Yes\",\r\n \"DeleteBy\": \"12-2099\",\r\n \"AutoShutdown\": \"No\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/Blob-Backup/providers/Microsoft.Storage/storageAccounts/testblobbackup\",\r\n \"name\": \"testblobbackup\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/fzejupmyclivaultasrcache\",\r\n \"name\": \"fzejupmyclivaultasrcache\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseCcyGrs/providers/Microsoft.Storage/storageAccounts/storeimqyzvpnwrv5a\",\r\n \"name\": \"storeimqyzvpnwrv5a\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/sarath-rg/providers/Microsoft.Storage/storageAccounts/clitestingsa\",\r\n \"name\": \"clitestingsa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/sarath-rg/providers/Microsoft.Storage/storageAccounts/axiccypod01otds1\",\r\n \"name\": \"axiccypod01otds1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseZRS/providers/Microsoft.Storage/storageAccounts/akanasezrsstorag\",\r\n \"name\": \"akanasezrsstorag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {\r\n \"Purpose\": \"Testing\",\r\n \"Owner\": \"akkanase\",\r\n \"Mab Used\": \"yes\",\r\n \"DeleteBy\": \"01-2025\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/sarath-rg/providers/Microsoft.Storage/storageAccounts/sarathsacli\",\r\n \"name\": \"sarathsacli\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm-clitest-rg/providers/Microsoft.Storage/storageAccounts/iaasvmclitestsa\",\r\n \"name\": \"iaasvmclitestsa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"Owner\": \"akneema\",\r\n \"MABUsed\": \"Yes\",\r\n \"Purpose\": \"CLITest\",\r\n \"DeleteBy\": \"12-9999\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.Storage/storageAccounts/hiagasa\",\r\n \"name\": \"hiagasa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\",\r\n \"Purpose\": \"Testing\",\r\n \"DeleteBy\": \"01-2099\",\r\n \"Owner\": \"hiaga\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.Storage/storageAccounts/akneemasaecy\",\r\n \"name\": \"akneemasaecy\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {\r\n \"Owner\": \"akneema\",\r\n \"Purpose\": \"Testing\",\r\n \"MABUsed\": \"Yes\",\r\n \"DeleteBy\": \"12-9999\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/oss-clitest-rg/providers/Microsoft.Storage/storageAccounts/ossclitestsa\",\r\n \"name\": \"ossclitestsa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"Owner\": \"akneema\",\r\n \"Purpose\": \"Testing\",\r\n \"MABUsed\": \"Yes\",\r\n \"DeleteBy\": \"12-9999\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/oss-pstest-rg/providers/Microsoft.Storage/storageAccounts/osspstestsa\",\r\n \"name\": \"osspstestsa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"MABUsed\": \"Ye\",\r\n \"Owne\": \"hiaga\",\r\n \"Purpose\": \"esting\",\r\n \"Del\": \"01-2099\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/cli-track2-rg/providers/Microsoft.Storage/storageAccounts/clitrack2sa\",\r\n \"name\": \"clitrack2sa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"Owner\": \"akneema\",\r\n \"Purpose\": \"Testing\",\r\n \"DeleteBy\": \"12-9999\",\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm-pstest-rg/providers/Microsoft.Storage/storageAccounts/iaasvmpstestsa\",\r\n \"name\": \"iaasvmpstestsa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"MABUsed\": \"yes\",\r\n \"Owner\": \"hiaga\",\r\n \"Purpose\": \"testing\",\r\n \"DeleteBy\": \"01-2099\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/DontUse-BlobRestore-BVT-CCY-RG/providers/Microsoft.Storage/storageAccounts/dontuseblobbvtccyrstrall\",\r\n \"name\": \"dontuseblobbvtccyrstrall\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/DontUse-BlobRestore-BVT-CCY-RG/providers/Microsoft.Storage/storageAccounts/dontuseblobbvtccyprefix\",\r\n \"name\": \"dontuseblobbvtccyprefix\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/DontUse-BlobRestore-BVT-CCY-RG/providers/Microsoft.Storage/storageAccounts/dontuseblobbvtccycontnr\",\r\n \"name\": \"dontuseblobbvtccycontnr\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/oss-clicloudtest-rg/providers/Microsoft.Storage/storageAccounts/ossclicloudtestsa\",\r\n \"name\": \"ossclicloudtestsa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"Owner\": \"akneema\",\r\n \"Purpose\": \"Testing\",\r\n \"DeleteBy\": \"12-9999\",\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/prnookal-wcus/providers/Microsoft.Storage/storageAccounts/prnookalwcus\",\r\n \"name\": \"prnookalwcus\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"Owner\": \"prnookal\",\r\n \"DeleteBy\": \"12-2021\",\r\n \"IsMabUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PORTAL.DPP.BVT.BLOB.RESTORE.EXISTING/providers/Microsoft.Storage/storageAccounts/blobsaforrestoreall\",\r\n \"name\": \"blobsaforrestoreall\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PORTAL.DPP.BVT.BLOB.RESTORE.EXISTING/providers/Microsoft.Storage/storageAccounts/blobrestoreopcontainers\",\r\n \"name\": \"blobrestoreopcontainers\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PORTAL.DPP.BVT.BLOB.RESTORE.EXISTING/providers/Microsoft.Storage/storageAccounts/blobrestoreopprefix\",\r\n \"name\": \"blobrestoreopprefix\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PORTAL.DPP.BVT.BLOB.RESTORE.EXISTING/providers/Microsoft.Storage/storageAccounts/blobrestoreopcontainer\",\r\n \"name\": \"blobrestoreopcontainer\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PORTAL.DPP.BVT.BLOB.RESTORE.EXISTING/providers/Microsoft.Storage/storageAccounts/blobrestoreopall\",\r\n \"name\": \"blobrestoreopall\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PORTAL.DPP.BVT.BLOB.RESTORE.EXISTING/providers/Microsoft.Storage/storageAccounts/bloboprestorecontainers\",\r\n \"name\": \"bloboprestorecontainers\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PORTAL.DPP.BVT.BLOB.RESTORE.EXISTING/providers/Microsoft.Storage/storageAccounts/bloboprestoreall\",\r\n \"name\": \"bloboprestoreall\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagargeus/providers/Microsoft.Storage/storageAccounts/hiagargeus\",\r\n \"name\": \"hiagargeus\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akneema-we-rg/providers/Microsoft.Storage/storageAccounts/gb8wepod01otds1\",\r\n \"name\": \"gb8wepod01otds1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGZRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akneema/providers/Microsoft.Storage/storageAccounts/uvqccypod01otds1\",\r\n \"name\": \"uvqccypod01otds1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagaCZR-rg/providers/Microsoft.Storage/storageAccounts/cliczrlrssa\",\r\n \"name\": \"cliczrlrssa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {\r\n \"Owner\": \"akneema\",\r\n \"Purpose\": \"Testing\",\r\n \"DeleteBy\": \"12-9999\",\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseGRSVault/providers/Microsoft.Storage/storageAccounts/frmseapod01otds1\",\r\n \"name\": \"frmseapod01otds1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGZRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseZRS/providers/Microsoft.Storage/storageAccounts/rfoccypod01otds1\",\r\n \"name\": \"rfoccypod01otds1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akneema-we-rg/providers/Microsoft.Storage/storageAccounts/m3dccypod01otds01\",\r\n \"name\": \"m3dccypod01otds01\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/AdkayethBugbash/providers/Microsoft.Storage/storageAccounts/adkayethsfsa\",\r\n \"name\": \"adkayethsfsa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/AdkayethBugbash/providers/Microsoft.Storage/storageAccounts/adkayathesfsabugbash\",\r\n \"name\": \"adkayathesfsabugbash\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.existing/providers/Microsoft.ClassicStorage/storageAccounts/iaasextstore2\",\r\n \"name\": \"iaasextstore2\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"southeastasia\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resources?$filter=resourceType%20eq%20'Microsoft.Storage%2FstorageAccounts'&api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5TdG9yYWdlJTJGc3RvcmFnZUFjY291bnRzJyZhcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resources?$filter=resourceType%20eq%20'Microsoft.ClassicStorage%2FstorageAccounts'&api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5DbGFzc2ljU3RvcmFnZSUyRnN0b3JhZ2VBY2NvdW50cycmYXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "875fb7d6-5caf-4a93-8aa9-ce8dcad33c8f" + "0624898d-8cee-4015-bfda-78fbce0120fa" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" @@ -2728,16 +2916,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11996" ], "x-ms-request-id": [ - "49def40d-61c3-4fb3-b9a8-82c96afe2d6d" + "1ad4c1d3-bef9-48c5-8d61-d5086f6ad9ce" ], "x-ms-correlation-request-id": [ - "49def40d-61c3-4fb3-b9a8-82c96afe2d6d" + "1ad4c1d3-bef9-48c5-8d61-d5086f6ad9ce" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T095745Z:49def40d-61c3-4fb3-b9a8-82c96afe2d6d" + "JIOINDIAWEST:20220516T161153Z:1ad4c1d3-bef9-48c5-8d61-d5086f6ad9ce" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2746,7 +2934,7 @@ "nosniff" ], "Date": [ - "Sat, 26 Mar 2022 09:57:45 GMT" + "Mon, 16 May 2022 16:11:52 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2755,26 +2943,26 @@ "-1" ], "Content-Length": [ - "32912" + "268" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.existing.crr/providers/Microsoft.Storage/storageAccounts/iaasvmexistingcrrdiag\",\r\n \"name\": \"iaasvmexistingcrrdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"MAB Used\": \"Yes\",\r\n \"DeleteBy\": \"01-2030\",\r\n \"Delete By\": \"01-2030\",\r\n \"Owner\": \"chgonugu\",\r\n \"Purpose\": \"Testing\",\r\n \"AutoShutdown\": \"false\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.existing.crr/providers/Microsoft.Storage/storageAccounts/iaasvmexistingcrrdiag112\",\r\n \"name\": \"iaasvmexistingcrrdiag112\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {\r\n \"Owner\": \"chgonugu\",\r\n \"Purpose\": \"Testing\",\r\n \"MabUsed\": \"Yes\",\r\n \"DeleteBy\": \"01-2025\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.existing.crr/providers/Microsoft.Storage/storageAccounts/iaasvmexistingcrr\",\r\n \"name\": \"iaasvmexistingcrr\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/sambit_rg/providers/Microsoft.Storage/storageAccounts/sarathsa3\",\r\n \"name\": \"sarathsa3\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvmhanaworkload.existing/providers/Microsoft.Storage/storageAccounts/iaasvmhanaworkloadexisti\",\r\n \"name\": \"iaasvmhanaworkloadexisti\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"AutoShutdown\": \"No\",\r\n \"BVT Used\": \"Yes\",\r\n \"Owner\": \"chgonugu\",\r\n \"Purpose\": \"BVT\",\r\n \"DeleteBy\": \"01-2030\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/afsnavigationtest\",\r\n \"name\": \"afsnavigationtest\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/afstbackuptestsa\",\r\n \"name\": \"afstbackuptestsa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.encryptedvm/providers/Microsoft.Storage/storageAccounts/iaasvmencryptedvmdiag170\",\r\n \"name\": \"iaasvmencryptedvmdiag170\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.existing/providers/Microsoft.Storage/storageAccounts/iaasvmexistingdiag1\",\r\n \"name\": \"iaasvmexistingdiag1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.existing/providers/Microsoft.Storage/storageAccounts/iaasextstore1\",\r\n \"name\": \"iaasextstore1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.new/providers/Microsoft.Storage/storageAccounts/iaasvmnewdiag1\",\r\n \"name\": \"iaasvmnewdiag1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.new/providers/Microsoft.Storage/storageAccounts/iaasnewstore1\",\r\n \"name\": \"iaasnewstore1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/IaasVMNavigationTest-RG/providers/Microsoft.Storage/storageAccounts/aasavigationestdiag\",\r\n \"name\": \"aasavigationestdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/IaasVMNavigationTest-RG/providers/Microsoft.Storage/storageAccounts/iaasvmnavigationstore\",\r\n \"name\": \"iaasvmnavigationstore\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pscloudtestrg/providers/Microsoft.Storage/storageAccounts/pscloudtestrgdiag\",\r\n \"name\": \"pscloudtestrgdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MAB Used\": \" Yes\",\r\n \"MABUsed\": \" Yes\",\r\n \"DeleteBy\": \"01-2030\",\r\n \"Purpose\": \"PS bvt\",\r\n \"Owner\": \"sarath\",\r\n \"AutoShutdown\": \"No\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pscloudtestrg/providers/Microsoft.Storage/storageAccounts/psbvtsa2\",\r\n \"name\": \"psbvtsa2\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstestsa8895\",\r\n \"name\": \"pstestsa8895\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstesttargetsa8895\",\r\n \"name\": \"pstesttargetsa8895\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstesttargetsa8896\",\r\n \"name\": \"pstesttargetsa8896\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/afsbackupsa\",\r\n \"name\": \"afsbackupsa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"Owner\": \"sarath\",\r\n \"Purpose\": \" BVT\",\r\n \"DeleteBy\": \"01-2025\",\r\n \"AutoShutdown\": \"No\",\r\n \"MAB Used\": \" Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG54bdf8da/providers/Microsoft.Storage/storageAccounts/pstestsa54bdf8da\",\r\n \"name\": \"pstestsa54bdf8da\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG1e5a278b/providers/Microsoft.Storage/storageAccounts/pstestsa1e5a278b\",\r\n \"name\": \"pstestsa1e5a278b\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG59e1706f/providers/Microsoft.Storage/storageAccounts/pstestsa59e1706f\",\r\n \"name\": \"pstestsa59e1706f\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/storageysci5wbex6jyc\",\r\n \"name\": \"storageysci5wbex6jyc\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/prnookal-rg/providers/Microsoft.Storage/storageAccounts/prnookaltestnob\",\r\n \"name\": \"prnookaltestnob\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"isMABUsed\": \"Yes\",\r\n \" Owner\": \"prnookal@microsoft.com\",\r\n \"DeletBy\": \"12-2021\",\r\n \"Purpose\": \" Testing\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/afsbackupsa1\",\r\n \"name\": \"afsbackupsa1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"Mab Used\": \"yes\",\r\n \"Owner\": \"akkanase\",\r\n \"Purpose\": \"Testing\",\r\n \"DeleteBy\": \"01-2022\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/afsbackupsa2\",\r\n \"name\": \"afsbackupsa2\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseTest/providers/Microsoft.Storage/storageAccounts/afsfilesharetest\",\r\n \"name\": \"afsfilesharetest\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/afsbackupsa3\",\r\n \"name\": \"afsbackupsa3\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/afsbackupsa0\",\r\n \"name\": \"afsbackupsa0\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pscloudtest-diskbackup-existing/providers/Microsoft.Storage/storageAccounts/1vnseapod01otds1\",\r\n \"name\": \"1vnseapod01otds1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGZRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseAFSTest/providers/Microsoft.Storage/storageAccounts/akkanaseafssa\",\r\n \"name\": \"akkanaseafssa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MAB Used\": \"Yes\",\r\n \"Owner\": \"akkanase\",\r\n \"Purpose\": \"Testing\",\r\n \"Delete By\": \"05-202\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseAFSTest/providers/Microsoft.Storage/storageAccounts/akkanasembpd2\",\r\n \"name\": \"akkanasembpd2\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MAB Used\": \"Yes\",\r\n \"Purpose\": \"Testing\",\r\n \"Owner\": \"akkanase\",\r\n \"Delete By\": \"05-2022\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseCMK/providers/Microsoft.Storage/storageAccounts/akkanase\",\r\n \"name\": \"akkanase\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"DeleteBy\": \"05-2023\",\r\n \"Owner\": \"akkanase\",\r\n \"Purpose\": \"Testing\",\r\n \"MAB Used\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/cmk.system/providers/Microsoft.Storage/storageAccounts/cmkautomationstore\",\r\n \"name\": \"cmkautomationstore\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"Delete By\": \"05-2050\",\r\n \"MAB Used\": \" Yes\",\r\n \"Owner\": \"akkanase\",\r\n \"Purpose\": \" BVT\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG235879ba/providers/Microsoft.Storage/storageAccounts/pstestsa235879ba\",\r\n \"name\": \"pstestsa235879ba\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/disk-bvt-test-rg/providers/Microsoft.Storage/storageAccounts/hv3seapod01otds1\",\r\n \"name\": \"hv3seapod01otds1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGZRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/DoNotUse-OSS-BVT-SEA-RG/providers/Microsoft.Storage/storageAccounts/dontuseossrestoreasfile\",\r\n \"name\": \"dontuseossrestoreasfile\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MAB Used\": \" Yes\",\r\n \" Owner\": \"akkanase\",\r\n \"Purpose\": \"BV\",\r\n \"Delete By\": \"05-2020\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseAFSTest/providers/Microsoft.Storage/storageAccounts/akkanaseafsa2\",\r\n \"name\": \"akkanaseafsa2\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseCMK/providers/Microsoft.Storage/storageAccounts/0byseapod01otds1\",\r\n \"name\": \"0byseapod01otds1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGZRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/9exwuspod01otds1\",\r\n \"name\": \"9exwuspod01otds1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/02xseacan01otds1\",\r\n \"name\": \"02xseacan01otds1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGZRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseMAB/providers/Microsoft.Storage/storageAccounts/dnhccypod01otds1\",\r\n \"name\": \"dnhccypod01otds1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rguzio7xhypi/providers/Microsoft.Storage/storageAccounts/clitest4b24ibpr3ztyhwo23\",\r\n \"name\": \"clitest4b24ibpr3ztyhwo23\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rgsiaa3ljqg5/providers/Microsoft.Storage/storageAccounts/clitestgd6i34czs3jb3rdtc\",\r\n \"name\": \"clitestgd6i34czs3jb3rdtc\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rgjxpjikqjjw/providers/Microsoft.Storage/storageAccounts/clitestjkhq2kpsal665atqe\",\r\n \"name\": \"clitestjkhq2kpsal665atqe\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rgwwhxyyhl2u/providers/Microsoft.Storage/storageAccounts/clitestdggdsdbtfa6vq5n5o\",\r\n \"name\": \"clitestdggdsdbtfa6vq5n5o\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rgm44mrkvygk/providers/Microsoft.Storage/storageAccounts/clitestodvd3xsftt63go6dk\",\r\n \"name\": \"clitestodvd3xsftt63go6dk\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rgdy7jf3qqzd/providers/Microsoft.Storage/storageAccounts/clitestnbsma3ftf2yugilxq\",\r\n \"name\": \"clitestnbsma3ftf2yugilxq\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rgl5tlzqo2pt/providers/Microsoft.Storage/storageAccounts/clitestgn64zidsnwe3ndjp5\",\r\n \"name\": \"clitestgn64zidsnwe3ndjp5\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rg73eqbdp4g5/providers/Microsoft.Storage/storageAccounts/clitestzfhrqsr4m24iwnjy7\",\r\n \"name\": \"clitestzfhrqsr4m24iwnjy7\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rg73eqbdp4g5/providers/Microsoft.Storage/storageAccounts/clitestukhlrarahpoebmaln\",\r\n \"name\": \"clitestukhlrarahpoebmaln\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/prnookal-prod/providers/Microsoft.Storage/storageAccounts/prnookalprod\",\r\n \"name\": \"prnookalprod\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"japaneast\",\r\n \"tags\": {\r\n \"IsMabUsed\": \"Yes\",\r\n \"Owner\": \"prnookal\",\r\n \"DeleteBy\": \"12-2021\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/cloud-shell-storage-centralindia/providers/Microsoft.Storage/storageAccounts/csg10032000d221b981\",\r\n \"name\": \"csg10032000d221b981\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centralindia\",\r\n \"tags\": {\r\n \"ms-resource-usage\": \"azure-cloud-shell\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/cloud-shell-storage-centralindia/providers/Microsoft.Storage/storageAccounts/csg10032000b56ab138\",\r\n \"name\": \"csg10032000b56ab138\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centralindia\",\r\n \"tags\": {\r\n \"ms-resource-usage\": \"azure-cloud-shell\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/cloud-shell-storage-centralindia/providers/Microsoft.Storage/storageAccounts/csg10033fffacb0d110\",\r\n \"name\": \"csg10033fffacb0d110\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centralindia\",\r\n \"tags\": {\r\n \"ms-resource-usage\": \"azure-cloud-shell\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/cloud-shell-storage-centralindia/providers/Microsoft.Storage/storageAccounts/csg1003bffda7dcd176\",\r\n \"name\": \"csg1003bffda7dcd176\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centralindia\",\r\n \"tags\": {\r\n \"ms-resource-usage\": \"azure-cloud-shell\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvmsqlworkload.existing.crr/providers/Microsoft.Storage/storageAccounts/iaasvmsqlworkloadexistin\",\r\n \"name\": \"iaasvmsqlworkloadexistin\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {\r\n \"Owner\": \"chgonugu\",\r\n \"Purpose\": \"BVT\",\r\n \"MabUsed\": \"Yes\",\r\n \"DeleteBy\": \"12-2099\",\r\n \"AutoShutdown\": \"No\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/Blob-Backup/providers/Microsoft.Storage/storageAccounts/testblobbackup\",\r\n \"name\": \"testblobbackup\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/fzejupmyclivaultasrcache\",\r\n \"name\": \"fzejupmyclivaultasrcache\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseCcyGrs/providers/Microsoft.Storage/storageAccounts/storeimqyzvpnwrv5a\",\r\n \"name\": \"storeimqyzvpnwrv5a\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/sarath-rg/providers/Microsoft.Storage/storageAccounts/clitestingsa\",\r\n \"name\": \"clitestingsa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/sarath-rg/providers/Microsoft.Storage/storageAccounts/axiccypod01otds1\",\r\n \"name\": \"axiccypod01otds1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseZRS/providers/Microsoft.Storage/storageAccounts/akanasezrsstorag\",\r\n \"name\": \"akanasezrsstorag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {\r\n \"Purpose\": \"Testing\",\r\n \"Owner\": \"akkanase\",\r\n \"Mab Used\": \"yes\",\r\n \"DeleteBy\": \"01-2025\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/sarath-rg/providers/Microsoft.Storage/storageAccounts/sarathsacli\",\r\n \"name\": \"sarathsacli\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm-clitest-rg/providers/Microsoft.Storage/storageAccounts/iaasvmclitestsa\",\r\n \"name\": \"iaasvmclitestsa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"Owner\": \"akneema\",\r\n \"MABUsed\": \"Yes\",\r\n \"Purpose\": \"CLITest\",\r\n \"DeleteBy\": \"12-9999\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.Storage/storageAccounts/hiagasa\",\r\n \"name\": \"hiagasa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\",\r\n \"Purpose\": \"Testing\",\r\n \"DeleteBy\": \"01-2099\",\r\n \"Owner\": \"hiaga\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.Storage/storageAccounts/akneemasaecy\",\r\n \"name\": \"akneemasaecy\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {\r\n \"Owner\": \"akneema\",\r\n \"Purpose\": \"Testing\",\r\n \"MABUsed\": \"Yes\",\r\n \"DeleteBy\": \"12-9999\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/oss-clitest-rg/providers/Microsoft.Storage/storageAccounts/ossclitestsa\",\r\n \"name\": \"ossclitestsa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"Owner\": \"akneema\",\r\n \"Purpose\": \"Testing\",\r\n \"MABUsed\": \"Yes\",\r\n \"DeleteBy\": \"12-9999\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/oss-pstest-rg/providers/Microsoft.Storage/storageAccounts/osspstestsa\",\r\n \"name\": \"osspstestsa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"MABUsed\": \"Ye\",\r\n \"Owne\": \"hiaga\",\r\n \"Purpose\": \"esting\",\r\n \"Del\": \"01-2099\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/cli-track2-rg/providers/Microsoft.Storage/storageAccounts/clitrack2sa\",\r\n \"name\": \"clitrack2sa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"Owner\": \"akneema\",\r\n \"Purpose\": \"Testing\",\r\n \"DeleteBy\": \"12-9999\",\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm-pstest-rg/providers/Microsoft.Storage/storageAccounts/iaasvmpstestsa\",\r\n \"name\": \"iaasvmpstestsa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"MABUsed\": \"yes\",\r\n \"Owner\": \"hiaga\",\r\n \"Purpose\": \"testing\",\r\n \"DeleteBy\": \"01-2099\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/DontUse-BlobRestore-BVT-CCY-RG/providers/Microsoft.Storage/storageAccounts/dontuseblobbvtccyrstrall\",\r\n \"name\": \"dontuseblobbvtccyrstrall\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/DontUse-BlobRestore-BVT-CCY-RG/providers/Microsoft.Storage/storageAccounts/dontuseblobbvtccyprefix\",\r\n \"name\": \"dontuseblobbvtccyprefix\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/DontUse-BlobRestore-BVT-CCY-RG/providers/Microsoft.Storage/storageAccounts/dontuseblobbvtccycontnr\",\r\n \"name\": \"dontuseblobbvtccycontnr\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/oss-clicloudtest-rg/providers/Microsoft.Storage/storageAccounts/ossclicloudtestsa\",\r\n \"name\": \"ossclicloudtestsa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"Owner\": \"akneema\",\r\n \"Purpose\": \"Testing\",\r\n \"DeleteBy\": \"12-9999\",\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/prnookal-wcus/providers/Microsoft.Storage/storageAccounts/prnookalwcus\",\r\n \"name\": \"prnookalwcus\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"Owner\": \"prnookal\",\r\n \"DeleteBy\": \"12-2021\",\r\n \"IsMabUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PORTAL.DPP.BVT.BLOB.RESTORE.EXISTING/providers/Microsoft.Storage/storageAccounts/blobsaforrestoreall\",\r\n \"name\": \"blobsaforrestoreall\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PORTAL.DPP.BVT.BLOB.RESTORE.EXISTING/providers/Microsoft.Storage/storageAccounts/blobrestoreopcontainers\",\r\n \"name\": \"blobrestoreopcontainers\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PORTAL.DPP.BVT.BLOB.RESTORE.EXISTING/providers/Microsoft.Storage/storageAccounts/blobrestoreopprefix\",\r\n \"name\": \"blobrestoreopprefix\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PORTAL.DPP.BVT.BLOB.RESTORE.EXISTING/providers/Microsoft.Storage/storageAccounts/blobrestoreopcontainer\",\r\n \"name\": \"blobrestoreopcontainer\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PORTAL.DPP.BVT.BLOB.RESTORE.EXISTING/providers/Microsoft.Storage/storageAccounts/blobrestoreopall\",\r\n \"name\": \"blobrestoreopall\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PORTAL.DPP.BVT.BLOB.RESTORE.EXISTING/providers/Microsoft.Storage/storageAccounts/bloboprestorecontainers\",\r\n \"name\": \"bloboprestorecontainers\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PORTAL.DPP.BVT.BLOB.RESTORE.EXISTING/providers/Microsoft.Storage/storageAccounts/bloboprestoreall\",\r\n \"name\": \"bloboprestoreall\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagargeus/providers/Microsoft.Storage/storageAccounts/hiagargeus\",\r\n \"name\": \"hiagargeus\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akneema-we-rg/providers/Microsoft.Storage/storageAccounts/gb8wepod01otds1\",\r\n \"name\": \"gb8wepod01otds1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGZRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akneema/providers/Microsoft.Storage/storageAccounts/uvqccypod01otds1\",\r\n \"name\": \"uvqccypod01otds1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagaCZR-rg/providers/Microsoft.Storage/storageAccounts/cliczrlrssa\",\r\n \"name\": \"cliczrlrssa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {\r\n \"Owner\": \"akneema\",\r\n \"Purpose\": \"Testing\",\r\n \"DeleteBy\": \"12-9999\",\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseGRSVault/providers/Microsoft.Storage/storageAccounts/frmseapod01otds1\",\r\n \"name\": \"frmseapod01otds1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGZRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseZRS/providers/Microsoft.Storage/storageAccounts/rfoccypod01otds1\",\r\n \"name\": \"rfoccypod01otds1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akneema-we-rg/providers/Microsoft.Storage/storageAccounts/m3dccypod01otds01\",\r\n \"name\": \"m3dccypod01otds01\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/AdkayethBugbash/providers/Microsoft.Storage/storageAccounts/adkayethsfsa\",\r\n \"name\": \"adkayethsfsa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/AdkayethBugbash/providers/Microsoft.Storage/storageAccounts/adkayathesfsabugbash\",\r\n \"name\": \"adkayathesfsabugbash\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.existing/providers/Microsoft.ClassicStorage/storageAccounts/iaasextstore2\",\r\n \"name\": \"iaasextstore2\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"southeastasia\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resources?$filter=resourceType%20eq%20'Microsoft.Storage%2FstorageAccounts'&api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5TdG9yYWdlJTJGc3RvcmFnZUFjY291bnRzJyZhcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resources?$filter=resourceType%20eq%20'Microsoft.ClassicStorage%2FstorageAccounts'&api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5DbGFzc2ljU3RvcmFnZSUyRnN0b3JhZ2VBY2NvdW50cycmYXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "875fb7d6-5caf-4a93-8aa9-ce8dcad33c8f" + "0624898d-8cee-4015-bfda-78fbce0120fa" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" @@ -2788,16 +2976,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11994" ], "x-ms-request-id": [ - "3bc77dc3-9877-4272-8805-0a861f8e789b" + "842c6660-d29a-4909-91f7-52b1f76c246e" ], "x-ms-correlation-request-id": [ - "3bc77dc3-9877-4272-8805-0a861f8e789b" + "842c6660-d29a-4909-91f7-52b1f76c246e" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T095745Z:3bc77dc3-9877-4272-8805-0a861f8e789b" + "JIOINDIAWEST:20220516T161153Z:842c6660-d29a-4909-91f7-52b1f76c246e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2806,7 +2994,7 @@ "nosniff" ], "Date": [ - "Sat, 26 Mar 2022 09:57:45 GMT" + "Mon, 16 May 2022 16:11:52 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2815,26 +3003,26 @@ "-1" ], "Content-Length": [ - "32912" + "268" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.existing.crr/providers/Microsoft.Storage/storageAccounts/iaasvmexistingcrrdiag\",\r\n \"name\": \"iaasvmexistingcrrdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"MAB Used\": \"Yes\",\r\n \"DeleteBy\": \"01-2030\",\r\n \"Delete By\": \"01-2030\",\r\n \"Owner\": \"chgonugu\",\r\n \"Purpose\": \"Testing\",\r\n \"AutoShutdown\": \"false\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.existing.crr/providers/Microsoft.Storage/storageAccounts/iaasvmexistingcrrdiag112\",\r\n \"name\": \"iaasvmexistingcrrdiag112\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {\r\n \"Owner\": \"chgonugu\",\r\n \"Purpose\": \"Testing\",\r\n \"MabUsed\": \"Yes\",\r\n \"DeleteBy\": \"01-2025\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.existing.crr/providers/Microsoft.Storage/storageAccounts/iaasvmexistingcrr\",\r\n \"name\": \"iaasvmexistingcrr\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/sambit_rg/providers/Microsoft.Storage/storageAccounts/sarathsa3\",\r\n \"name\": \"sarathsa3\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvmhanaworkload.existing/providers/Microsoft.Storage/storageAccounts/iaasvmhanaworkloadexisti\",\r\n \"name\": \"iaasvmhanaworkloadexisti\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"AutoShutdown\": \"No\",\r\n \"BVT Used\": \"Yes\",\r\n \"Owner\": \"chgonugu\",\r\n \"Purpose\": \"BVT\",\r\n \"DeleteBy\": \"01-2030\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/afsnavigationtest\",\r\n \"name\": \"afsnavigationtest\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/afstbackuptestsa\",\r\n \"name\": \"afstbackuptestsa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.encryptedvm/providers/Microsoft.Storage/storageAccounts/iaasvmencryptedvmdiag170\",\r\n \"name\": \"iaasvmencryptedvmdiag170\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.existing/providers/Microsoft.Storage/storageAccounts/iaasvmexistingdiag1\",\r\n \"name\": \"iaasvmexistingdiag1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.existing/providers/Microsoft.Storage/storageAccounts/iaasextstore1\",\r\n \"name\": \"iaasextstore1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.new/providers/Microsoft.Storage/storageAccounts/iaasvmnewdiag1\",\r\n \"name\": \"iaasvmnewdiag1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.new/providers/Microsoft.Storage/storageAccounts/iaasnewstore1\",\r\n \"name\": \"iaasnewstore1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/IaasVMNavigationTest-RG/providers/Microsoft.Storage/storageAccounts/aasavigationestdiag\",\r\n \"name\": \"aasavigationestdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/IaasVMNavigationTest-RG/providers/Microsoft.Storage/storageAccounts/iaasvmnavigationstore\",\r\n \"name\": \"iaasvmnavigationstore\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pscloudtestrg/providers/Microsoft.Storage/storageAccounts/pscloudtestrgdiag\",\r\n \"name\": \"pscloudtestrgdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MAB Used\": \" Yes\",\r\n \"MABUsed\": \" Yes\",\r\n \"DeleteBy\": \"01-2030\",\r\n \"Purpose\": \"PS bvt\",\r\n \"Owner\": \"sarath\",\r\n \"AutoShutdown\": \"No\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pscloudtestrg/providers/Microsoft.Storage/storageAccounts/psbvtsa2\",\r\n \"name\": \"psbvtsa2\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstestsa8895\",\r\n \"name\": \"pstestsa8895\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstesttargetsa8895\",\r\n \"name\": \"pstesttargetsa8895\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstesttargetsa8896\",\r\n \"name\": \"pstesttargetsa8896\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/afsbackupsa\",\r\n \"name\": \"afsbackupsa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"Owner\": \"sarath\",\r\n \"Purpose\": \" BVT\",\r\n \"DeleteBy\": \"01-2025\",\r\n \"AutoShutdown\": \"No\",\r\n \"MAB Used\": \" Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG54bdf8da/providers/Microsoft.Storage/storageAccounts/pstestsa54bdf8da\",\r\n \"name\": \"pstestsa54bdf8da\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG1e5a278b/providers/Microsoft.Storage/storageAccounts/pstestsa1e5a278b\",\r\n \"name\": \"pstestsa1e5a278b\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG59e1706f/providers/Microsoft.Storage/storageAccounts/pstestsa59e1706f\",\r\n \"name\": \"pstestsa59e1706f\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/storageysci5wbex6jyc\",\r\n \"name\": \"storageysci5wbex6jyc\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/prnookal-rg/providers/Microsoft.Storage/storageAccounts/prnookaltestnob\",\r\n \"name\": \"prnookaltestnob\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"isMABUsed\": \"Yes\",\r\n \" Owner\": \"prnookal@microsoft.com\",\r\n \"DeletBy\": \"12-2021\",\r\n \"Purpose\": \" Testing\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/afsbackupsa1\",\r\n \"name\": \"afsbackupsa1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"Mab Used\": \"yes\",\r\n \"Owner\": \"akkanase\",\r\n \"Purpose\": \"Testing\",\r\n \"DeleteBy\": \"01-2022\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/afsbackupsa2\",\r\n \"name\": \"afsbackupsa2\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseTest/providers/Microsoft.Storage/storageAccounts/afsfilesharetest\",\r\n \"name\": \"afsfilesharetest\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/afsbackupsa3\",\r\n \"name\": \"afsbackupsa3\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/afsbackupsa0\",\r\n \"name\": \"afsbackupsa0\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pscloudtest-diskbackup-existing/providers/Microsoft.Storage/storageAccounts/1vnseapod01otds1\",\r\n \"name\": \"1vnseapod01otds1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGZRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseAFSTest/providers/Microsoft.Storage/storageAccounts/akkanaseafssa\",\r\n \"name\": \"akkanaseafssa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MAB Used\": \"Yes\",\r\n \"Owner\": \"akkanase\",\r\n \"Purpose\": \"Testing\",\r\n \"Delete By\": \"05-202\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseAFSTest/providers/Microsoft.Storage/storageAccounts/akkanasembpd2\",\r\n \"name\": \"akkanasembpd2\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MAB Used\": \"Yes\",\r\n \"Purpose\": \"Testing\",\r\n \"Owner\": \"akkanase\",\r\n \"Delete By\": \"05-2022\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseCMK/providers/Microsoft.Storage/storageAccounts/akkanase\",\r\n \"name\": \"akkanase\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"DeleteBy\": \"05-2023\",\r\n \"Owner\": \"akkanase\",\r\n \"Purpose\": \"Testing\",\r\n \"MAB Used\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/cmk.system/providers/Microsoft.Storage/storageAccounts/cmkautomationstore\",\r\n \"name\": \"cmkautomationstore\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"Delete By\": \"05-2050\",\r\n \"MAB Used\": \" Yes\",\r\n \"Owner\": \"akkanase\",\r\n \"Purpose\": \" BVT\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG235879ba/providers/Microsoft.Storage/storageAccounts/pstestsa235879ba\",\r\n \"name\": \"pstestsa235879ba\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/disk-bvt-test-rg/providers/Microsoft.Storage/storageAccounts/hv3seapod01otds1\",\r\n \"name\": \"hv3seapod01otds1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGZRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/DoNotUse-OSS-BVT-SEA-RG/providers/Microsoft.Storage/storageAccounts/dontuseossrestoreasfile\",\r\n \"name\": \"dontuseossrestoreasfile\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MAB Used\": \" Yes\",\r\n \" Owner\": \"akkanase\",\r\n \"Purpose\": \"BV\",\r\n \"Delete By\": \"05-2020\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseAFSTest/providers/Microsoft.Storage/storageAccounts/akkanaseafsa2\",\r\n \"name\": \"akkanaseafsa2\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseCMK/providers/Microsoft.Storage/storageAccounts/0byseapod01otds1\",\r\n \"name\": \"0byseapod01otds1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGZRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/9exwuspod01otds1\",\r\n \"name\": \"9exwuspod01otds1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/02xseacan01otds1\",\r\n \"name\": \"02xseacan01otds1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGZRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseMAB/providers/Microsoft.Storage/storageAccounts/dnhccypod01otds1\",\r\n \"name\": \"dnhccypod01otds1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rguzio7xhypi/providers/Microsoft.Storage/storageAccounts/clitest4b24ibpr3ztyhwo23\",\r\n \"name\": \"clitest4b24ibpr3ztyhwo23\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rgsiaa3ljqg5/providers/Microsoft.Storage/storageAccounts/clitestgd6i34czs3jb3rdtc\",\r\n \"name\": \"clitestgd6i34czs3jb3rdtc\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rgjxpjikqjjw/providers/Microsoft.Storage/storageAccounts/clitestjkhq2kpsal665atqe\",\r\n \"name\": \"clitestjkhq2kpsal665atqe\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rgwwhxyyhl2u/providers/Microsoft.Storage/storageAccounts/clitestdggdsdbtfa6vq5n5o\",\r\n \"name\": \"clitestdggdsdbtfa6vq5n5o\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rgm44mrkvygk/providers/Microsoft.Storage/storageAccounts/clitestodvd3xsftt63go6dk\",\r\n \"name\": \"clitestodvd3xsftt63go6dk\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rgdy7jf3qqzd/providers/Microsoft.Storage/storageAccounts/clitestnbsma3ftf2yugilxq\",\r\n \"name\": \"clitestnbsma3ftf2yugilxq\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rgl5tlzqo2pt/providers/Microsoft.Storage/storageAccounts/clitestgn64zidsnwe3ndjp5\",\r\n \"name\": \"clitestgn64zidsnwe3ndjp5\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rg73eqbdp4g5/providers/Microsoft.Storage/storageAccounts/clitestzfhrqsr4m24iwnjy7\",\r\n \"name\": \"clitestzfhrqsr4m24iwnjy7\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rg73eqbdp4g5/providers/Microsoft.Storage/storageAccounts/clitestukhlrarahpoebmaln\",\r\n \"name\": \"clitestukhlrarahpoebmaln\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/prnookal-prod/providers/Microsoft.Storage/storageAccounts/prnookalprod\",\r\n \"name\": \"prnookalprod\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"japaneast\",\r\n \"tags\": {\r\n \"IsMabUsed\": \"Yes\",\r\n \"Owner\": \"prnookal\",\r\n \"DeleteBy\": \"12-2021\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/cloud-shell-storage-centralindia/providers/Microsoft.Storage/storageAccounts/csg10032000d221b981\",\r\n \"name\": \"csg10032000d221b981\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centralindia\",\r\n \"tags\": {\r\n \"ms-resource-usage\": \"azure-cloud-shell\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/cloud-shell-storage-centralindia/providers/Microsoft.Storage/storageAccounts/csg10032000b56ab138\",\r\n \"name\": \"csg10032000b56ab138\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centralindia\",\r\n \"tags\": {\r\n \"ms-resource-usage\": \"azure-cloud-shell\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/cloud-shell-storage-centralindia/providers/Microsoft.Storage/storageAccounts/csg10033fffacb0d110\",\r\n \"name\": \"csg10033fffacb0d110\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centralindia\",\r\n \"tags\": {\r\n \"ms-resource-usage\": \"azure-cloud-shell\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/cloud-shell-storage-centralindia/providers/Microsoft.Storage/storageAccounts/csg1003bffda7dcd176\",\r\n \"name\": \"csg1003bffda7dcd176\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centralindia\",\r\n \"tags\": {\r\n \"ms-resource-usage\": \"azure-cloud-shell\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvmsqlworkload.existing.crr/providers/Microsoft.Storage/storageAccounts/iaasvmsqlworkloadexistin\",\r\n \"name\": \"iaasvmsqlworkloadexistin\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {\r\n \"Owner\": \"chgonugu\",\r\n \"Purpose\": \"BVT\",\r\n \"MabUsed\": \"Yes\",\r\n \"DeleteBy\": \"12-2099\",\r\n \"AutoShutdown\": \"No\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/Blob-Backup/providers/Microsoft.Storage/storageAccounts/testblobbackup\",\r\n \"name\": \"testblobbackup\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/fzejupmyclivaultasrcache\",\r\n \"name\": \"fzejupmyclivaultasrcache\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseCcyGrs/providers/Microsoft.Storage/storageAccounts/storeimqyzvpnwrv5a\",\r\n \"name\": \"storeimqyzvpnwrv5a\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/sarath-rg/providers/Microsoft.Storage/storageAccounts/clitestingsa\",\r\n \"name\": \"clitestingsa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/sarath-rg/providers/Microsoft.Storage/storageAccounts/axiccypod01otds1\",\r\n \"name\": \"axiccypod01otds1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseZRS/providers/Microsoft.Storage/storageAccounts/akanasezrsstorag\",\r\n \"name\": \"akanasezrsstorag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {\r\n \"Purpose\": \"Testing\",\r\n \"Owner\": \"akkanase\",\r\n \"Mab Used\": \"yes\",\r\n \"DeleteBy\": \"01-2025\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/sarath-rg/providers/Microsoft.Storage/storageAccounts/sarathsacli\",\r\n \"name\": \"sarathsacli\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm-clitest-rg/providers/Microsoft.Storage/storageAccounts/iaasvmclitestsa\",\r\n \"name\": \"iaasvmclitestsa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"Owner\": \"akneema\",\r\n \"MABUsed\": \"Yes\",\r\n \"Purpose\": \"CLITest\",\r\n \"DeleteBy\": \"12-9999\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.Storage/storageAccounts/hiagasa\",\r\n \"name\": \"hiagasa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\",\r\n \"Purpose\": \"Testing\",\r\n \"DeleteBy\": \"01-2099\",\r\n \"Owner\": \"hiaga\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.Storage/storageAccounts/akneemasaecy\",\r\n \"name\": \"akneemasaecy\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {\r\n \"Owner\": \"akneema\",\r\n \"Purpose\": \"Testing\",\r\n \"MABUsed\": \"Yes\",\r\n \"DeleteBy\": \"12-9999\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/oss-clitest-rg/providers/Microsoft.Storage/storageAccounts/ossclitestsa\",\r\n \"name\": \"ossclitestsa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"Owner\": \"akneema\",\r\n \"Purpose\": \"Testing\",\r\n \"MABUsed\": \"Yes\",\r\n \"DeleteBy\": \"12-9999\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/oss-pstest-rg/providers/Microsoft.Storage/storageAccounts/osspstestsa\",\r\n \"name\": \"osspstestsa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"MABUsed\": \"Ye\",\r\n \"Owne\": \"hiaga\",\r\n \"Purpose\": \"esting\",\r\n \"Del\": \"01-2099\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/cli-track2-rg/providers/Microsoft.Storage/storageAccounts/clitrack2sa\",\r\n \"name\": \"clitrack2sa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"Owner\": \"akneema\",\r\n \"Purpose\": \"Testing\",\r\n \"DeleteBy\": \"12-9999\",\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm-pstest-rg/providers/Microsoft.Storage/storageAccounts/iaasvmpstestsa\",\r\n \"name\": \"iaasvmpstestsa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"MABUsed\": \"yes\",\r\n \"Owner\": \"hiaga\",\r\n \"Purpose\": \"testing\",\r\n \"DeleteBy\": \"01-2099\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/DontUse-BlobRestore-BVT-CCY-RG/providers/Microsoft.Storage/storageAccounts/dontuseblobbvtccyrstrall\",\r\n \"name\": \"dontuseblobbvtccyrstrall\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/DontUse-BlobRestore-BVT-CCY-RG/providers/Microsoft.Storage/storageAccounts/dontuseblobbvtccyprefix\",\r\n \"name\": \"dontuseblobbvtccyprefix\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/DontUse-BlobRestore-BVT-CCY-RG/providers/Microsoft.Storage/storageAccounts/dontuseblobbvtccycontnr\",\r\n \"name\": \"dontuseblobbvtccycontnr\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/oss-clicloudtest-rg/providers/Microsoft.Storage/storageAccounts/ossclicloudtestsa\",\r\n \"name\": \"ossclicloudtestsa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"Owner\": \"akneema\",\r\n \"Purpose\": \"Testing\",\r\n \"DeleteBy\": \"12-9999\",\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/prnookal-wcus/providers/Microsoft.Storage/storageAccounts/prnookalwcus\",\r\n \"name\": \"prnookalwcus\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"Owner\": \"prnookal\",\r\n \"DeleteBy\": \"12-2021\",\r\n \"IsMabUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PORTAL.DPP.BVT.BLOB.RESTORE.EXISTING/providers/Microsoft.Storage/storageAccounts/blobsaforrestoreall\",\r\n \"name\": \"blobsaforrestoreall\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PORTAL.DPP.BVT.BLOB.RESTORE.EXISTING/providers/Microsoft.Storage/storageAccounts/blobrestoreopcontainers\",\r\n \"name\": \"blobrestoreopcontainers\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PORTAL.DPP.BVT.BLOB.RESTORE.EXISTING/providers/Microsoft.Storage/storageAccounts/blobrestoreopprefix\",\r\n \"name\": \"blobrestoreopprefix\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PORTAL.DPP.BVT.BLOB.RESTORE.EXISTING/providers/Microsoft.Storage/storageAccounts/blobrestoreopcontainer\",\r\n \"name\": \"blobrestoreopcontainer\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PORTAL.DPP.BVT.BLOB.RESTORE.EXISTING/providers/Microsoft.Storage/storageAccounts/blobrestoreopall\",\r\n \"name\": \"blobrestoreopall\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PORTAL.DPP.BVT.BLOB.RESTORE.EXISTING/providers/Microsoft.Storage/storageAccounts/bloboprestorecontainers\",\r\n \"name\": \"bloboprestorecontainers\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PORTAL.DPP.BVT.BLOB.RESTORE.EXISTING/providers/Microsoft.Storage/storageAccounts/bloboprestoreall\",\r\n \"name\": \"bloboprestoreall\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagargeus/providers/Microsoft.Storage/storageAccounts/hiagargeus\",\r\n \"name\": \"hiagargeus\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akneema-we-rg/providers/Microsoft.Storage/storageAccounts/gb8wepod01otds1\",\r\n \"name\": \"gb8wepod01otds1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGZRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akneema/providers/Microsoft.Storage/storageAccounts/uvqccypod01otds1\",\r\n \"name\": \"uvqccypod01otds1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagaCZR-rg/providers/Microsoft.Storage/storageAccounts/cliczrlrssa\",\r\n \"name\": \"cliczrlrssa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {\r\n \"Owner\": \"akneema\",\r\n \"Purpose\": \"Testing\",\r\n \"DeleteBy\": \"12-9999\",\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseGRSVault/providers/Microsoft.Storage/storageAccounts/frmseapod01otds1\",\r\n \"name\": \"frmseapod01otds1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGZRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseZRS/providers/Microsoft.Storage/storageAccounts/rfoccypod01otds1\",\r\n \"name\": \"rfoccypod01otds1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akneema-we-rg/providers/Microsoft.Storage/storageAccounts/m3dccypod01otds01\",\r\n \"name\": \"m3dccypod01otds01\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/AdkayethBugbash/providers/Microsoft.Storage/storageAccounts/adkayethsfsa\",\r\n \"name\": \"adkayethsfsa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/AdkayethBugbash/providers/Microsoft.Storage/storageAccounts/adkayathesfsabugbash\",\r\n \"name\": \"adkayathesfsabugbash\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.existing/providers/Microsoft.ClassicStorage/storageAccounts/iaasextstore2\",\r\n \"name\": \"iaasextstore2\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"southeastasia\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resources?$filter=resourceType%20eq%20'Microsoft.Storage%2FstorageAccounts'&api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5TdG9yYWdlJTJGc3RvcmFnZUFjY291bnRzJyZhcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resources?$filter=resourceType%20eq%20'Microsoft.ClassicStorage%2FstorageAccounts'&api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5DbGFzc2ljU3RvcmFnZSUyRnN0b3JhZ2VBY2NvdW50cycmYXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bbfb3d3c-8482-49e1-94e1-71481f000bf8" + "fd770b01-8b83-4071-aad7-cf86d08a24cd" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" @@ -2848,16 +3036,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11992" ], "x-ms-request-id": [ - "fc62e94c-2166-427a-a110-794e389b6d5e" + "dd0f34e8-efcf-4024-87e1-916927341ebc" ], "x-ms-correlation-request-id": [ - "fc62e94c-2166-427a-a110-794e389b6d5e" + "dd0f34e8-efcf-4024-87e1-916927341ebc" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T095849Z:fc62e94c-2166-427a-a110-794e389b6d5e" + "JIOINDIAWEST:20220516T161258Z:dd0f34e8-efcf-4024-87e1-916927341ebc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2866,7 +3054,7 @@ "nosniff" ], "Date": [ - "Sat, 26 Mar 2022 09:58:48 GMT" + "Mon, 16 May 2022 16:12:58 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2875,26 +3063,26 @@ "-1" ], "Content-Length": [ - "32912" + "268" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.existing.crr/providers/Microsoft.Storage/storageAccounts/iaasvmexistingcrrdiag\",\r\n \"name\": \"iaasvmexistingcrrdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"MAB Used\": \"Yes\",\r\n \"DeleteBy\": \"01-2030\",\r\n \"Delete By\": \"01-2030\",\r\n \"Owner\": \"chgonugu\",\r\n \"Purpose\": \"Testing\",\r\n \"AutoShutdown\": \"false\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.existing.crr/providers/Microsoft.Storage/storageAccounts/iaasvmexistingcrrdiag112\",\r\n \"name\": \"iaasvmexistingcrrdiag112\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {\r\n \"Owner\": \"chgonugu\",\r\n \"Purpose\": \"Testing\",\r\n \"MabUsed\": \"Yes\",\r\n \"DeleteBy\": \"01-2025\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.existing.crr/providers/Microsoft.Storage/storageAccounts/iaasvmexistingcrr\",\r\n \"name\": \"iaasvmexistingcrr\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/sambit_rg/providers/Microsoft.Storage/storageAccounts/sarathsa3\",\r\n \"name\": \"sarathsa3\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvmhanaworkload.existing/providers/Microsoft.Storage/storageAccounts/iaasvmhanaworkloadexisti\",\r\n \"name\": \"iaasvmhanaworkloadexisti\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"AutoShutdown\": \"No\",\r\n \"BVT Used\": \"Yes\",\r\n \"Owner\": \"chgonugu\",\r\n \"Purpose\": \"BVT\",\r\n \"DeleteBy\": \"01-2030\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/afsnavigationtest\",\r\n \"name\": \"afsnavigationtest\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/afstbackuptestsa\",\r\n \"name\": \"afstbackuptestsa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.encryptedvm/providers/Microsoft.Storage/storageAccounts/iaasvmencryptedvmdiag170\",\r\n \"name\": \"iaasvmencryptedvmdiag170\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.existing/providers/Microsoft.Storage/storageAccounts/iaasvmexistingdiag1\",\r\n \"name\": \"iaasvmexistingdiag1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.existing/providers/Microsoft.Storage/storageAccounts/iaasextstore1\",\r\n \"name\": \"iaasextstore1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.new/providers/Microsoft.Storage/storageAccounts/iaasvmnewdiag1\",\r\n \"name\": \"iaasvmnewdiag1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.new/providers/Microsoft.Storage/storageAccounts/iaasnewstore1\",\r\n \"name\": \"iaasnewstore1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/IaasVMNavigationTest-RG/providers/Microsoft.Storage/storageAccounts/aasavigationestdiag\",\r\n \"name\": \"aasavigationestdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/IaasVMNavigationTest-RG/providers/Microsoft.Storage/storageAccounts/iaasvmnavigationstore\",\r\n \"name\": \"iaasvmnavigationstore\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pscloudtestrg/providers/Microsoft.Storage/storageAccounts/pscloudtestrgdiag\",\r\n \"name\": \"pscloudtestrgdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MAB Used\": \" Yes\",\r\n \"MABUsed\": \" Yes\",\r\n \"DeleteBy\": \"01-2030\",\r\n \"Purpose\": \"PS bvt\",\r\n \"Owner\": \"sarath\",\r\n \"AutoShutdown\": \"No\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pscloudtestrg/providers/Microsoft.Storage/storageAccounts/psbvtsa2\",\r\n \"name\": \"psbvtsa2\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstestsa8895\",\r\n \"name\": \"pstestsa8895\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstesttargetsa8895\",\r\n \"name\": \"pstesttargetsa8895\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstesttargetsa8896\",\r\n \"name\": \"pstesttargetsa8896\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/afsbackupsa\",\r\n \"name\": \"afsbackupsa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"Owner\": \"sarath\",\r\n \"Purpose\": \" BVT\",\r\n \"DeleteBy\": \"01-2025\",\r\n \"AutoShutdown\": \"No\",\r\n \"MAB Used\": \" Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG54bdf8da/providers/Microsoft.Storage/storageAccounts/pstestsa54bdf8da\",\r\n \"name\": \"pstestsa54bdf8da\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG1e5a278b/providers/Microsoft.Storage/storageAccounts/pstestsa1e5a278b\",\r\n \"name\": \"pstestsa1e5a278b\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG59e1706f/providers/Microsoft.Storage/storageAccounts/pstestsa59e1706f\",\r\n \"name\": \"pstestsa59e1706f\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/storageysci5wbex6jyc\",\r\n \"name\": \"storageysci5wbex6jyc\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/prnookal-rg/providers/Microsoft.Storage/storageAccounts/prnookaltestnob\",\r\n \"name\": \"prnookaltestnob\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"isMABUsed\": \"Yes\",\r\n \" Owner\": \"prnookal@microsoft.com\",\r\n \"DeletBy\": \"12-2021\",\r\n \"Purpose\": \" Testing\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/afsbackupsa1\",\r\n \"name\": \"afsbackupsa1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"Mab Used\": \"yes\",\r\n \"Owner\": \"akkanase\",\r\n \"Purpose\": \"Testing\",\r\n \"DeleteBy\": \"01-2022\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/afsbackupsa2\",\r\n \"name\": \"afsbackupsa2\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseTest/providers/Microsoft.Storage/storageAccounts/afsfilesharetest\",\r\n \"name\": \"afsfilesharetest\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/afsbackupsa3\",\r\n \"name\": \"afsbackupsa3\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/afsbackupsa0\",\r\n \"name\": \"afsbackupsa0\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pscloudtest-diskbackup-existing/providers/Microsoft.Storage/storageAccounts/1vnseapod01otds1\",\r\n \"name\": \"1vnseapod01otds1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGZRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseAFSTest/providers/Microsoft.Storage/storageAccounts/akkanaseafssa\",\r\n \"name\": \"akkanaseafssa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MAB Used\": \"Yes\",\r\n \"Owner\": \"akkanase\",\r\n \"Purpose\": \"Testing\",\r\n \"Delete By\": \"05-202\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseAFSTest/providers/Microsoft.Storage/storageAccounts/akkanasembpd2\",\r\n \"name\": \"akkanasembpd2\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MAB Used\": \"Yes\",\r\n \"Purpose\": \"Testing\",\r\n \"Owner\": \"akkanase\",\r\n \"Delete By\": \"05-2022\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseCMK/providers/Microsoft.Storage/storageAccounts/akkanase\",\r\n \"name\": \"akkanase\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"DeleteBy\": \"05-2023\",\r\n \"Owner\": \"akkanase\",\r\n \"Purpose\": \"Testing\",\r\n \"MAB Used\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/cmk.system/providers/Microsoft.Storage/storageAccounts/cmkautomationstore\",\r\n \"name\": \"cmkautomationstore\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"Delete By\": \"05-2050\",\r\n \"MAB Used\": \" Yes\",\r\n \"Owner\": \"akkanase\",\r\n \"Purpose\": \" BVT\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG235879ba/providers/Microsoft.Storage/storageAccounts/pstestsa235879ba\",\r\n \"name\": \"pstestsa235879ba\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/disk-bvt-test-rg/providers/Microsoft.Storage/storageAccounts/hv3seapod01otds1\",\r\n \"name\": \"hv3seapod01otds1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGZRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/DoNotUse-OSS-BVT-SEA-RG/providers/Microsoft.Storage/storageAccounts/dontuseossrestoreasfile\",\r\n \"name\": \"dontuseossrestoreasfile\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MAB Used\": \" Yes\",\r\n \" Owner\": \"akkanase\",\r\n \"Purpose\": \"BV\",\r\n \"Delete By\": \"05-2020\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseAFSTest/providers/Microsoft.Storage/storageAccounts/akkanaseafsa2\",\r\n \"name\": \"akkanaseafsa2\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseCMK/providers/Microsoft.Storage/storageAccounts/0byseapod01otds1\",\r\n \"name\": \"0byseapod01otds1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGZRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/9exwuspod01otds1\",\r\n \"name\": \"9exwuspod01otds1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/02xseacan01otds1\",\r\n \"name\": \"02xseacan01otds1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGZRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseMAB/providers/Microsoft.Storage/storageAccounts/dnhccypod01otds1\",\r\n \"name\": \"dnhccypod01otds1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rguzio7xhypi/providers/Microsoft.Storage/storageAccounts/clitest4b24ibpr3ztyhwo23\",\r\n \"name\": \"clitest4b24ibpr3ztyhwo23\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rgsiaa3ljqg5/providers/Microsoft.Storage/storageAccounts/clitestgd6i34czs3jb3rdtc\",\r\n \"name\": \"clitestgd6i34czs3jb3rdtc\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rgjxpjikqjjw/providers/Microsoft.Storage/storageAccounts/clitestjkhq2kpsal665atqe\",\r\n \"name\": \"clitestjkhq2kpsal665atqe\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rgwwhxyyhl2u/providers/Microsoft.Storage/storageAccounts/clitestdggdsdbtfa6vq5n5o\",\r\n \"name\": \"clitestdggdsdbtfa6vq5n5o\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rgm44mrkvygk/providers/Microsoft.Storage/storageAccounts/clitestodvd3xsftt63go6dk\",\r\n \"name\": \"clitestodvd3xsftt63go6dk\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rgdy7jf3qqzd/providers/Microsoft.Storage/storageAccounts/clitestnbsma3ftf2yugilxq\",\r\n \"name\": \"clitestnbsma3ftf2yugilxq\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rgl5tlzqo2pt/providers/Microsoft.Storage/storageAccounts/clitestgn64zidsnwe3ndjp5\",\r\n \"name\": \"clitestgn64zidsnwe3ndjp5\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rg73eqbdp4g5/providers/Microsoft.Storage/storageAccounts/clitestzfhrqsr4m24iwnjy7\",\r\n \"name\": \"clitestzfhrqsr4m24iwnjy7\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rg73eqbdp4g5/providers/Microsoft.Storage/storageAccounts/clitestukhlrarahpoebmaln\",\r\n \"name\": \"clitestukhlrarahpoebmaln\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/prnookal-prod/providers/Microsoft.Storage/storageAccounts/prnookalprod\",\r\n \"name\": \"prnookalprod\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"japaneast\",\r\n \"tags\": {\r\n \"IsMabUsed\": \"Yes\",\r\n \"Owner\": \"prnookal\",\r\n \"DeleteBy\": \"12-2021\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/cloud-shell-storage-centralindia/providers/Microsoft.Storage/storageAccounts/csg10032000d221b981\",\r\n \"name\": \"csg10032000d221b981\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centralindia\",\r\n \"tags\": {\r\n \"ms-resource-usage\": \"azure-cloud-shell\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/cloud-shell-storage-centralindia/providers/Microsoft.Storage/storageAccounts/csg10032000b56ab138\",\r\n \"name\": \"csg10032000b56ab138\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centralindia\",\r\n \"tags\": {\r\n \"ms-resource-usage\": \"azure-cloud-shell\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/cloud-shell-storage-centralindia/providers/Microsoft.Storage/storageAccounts/csg10033fffacb0d110\",\r\n \"name\": \"csg10033fffacb0d110\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centralindia\",\r\n \"tags\": {\r\n \"ms-resource-usage\": \"azure-cloud-shell\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/cloud-shell-storage-centralindia/providers/Microsoft.Storage/storageAccounts/csg1003bffda7dcd176\",\r\n \"name\": \"csg1003bffda7dcd176\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centralindia\",\r\n \"tags\": {\r\n \"ms-resource-usage\": \"azure-cloud-shell\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvmsqlworkload.existing.crr/providers/Microsoft.Storage/storageAccounts/iaasvmsqlworkloadexistin\",\r\n \"name\": \"iaasvmsqlworkloadexistin\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {\r\n \"Owner\": \"chgonugu\",\r\n \"Purpose\": \"BVT\",\r\n \"MabUsed\": \"Yes\",\r\n \"DeleteBy\": \"12-2099\",\r\n \"AutoShutdown\": \"No\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/Blob-Backup/providers/Microsoft.Storage/storageAccounts/testblobbackup\",\r\n \"name\": \"testblobbackup\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/fzejupmyclivaultasrcache\",\r\n \"name\": \"fzejupmyclivaultasrcache\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseCcyGrs/providers/Microsoft.Storage/storageAccounts/storeimqyzvpnwrv5a\",\r\n \"name\": \"storeimqyzvpnwrv5a\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/sarath-rg/providers/Microsoft.Storage/storageAccounts/clitestingsa\",\r\n \"name\": \"clitestingsa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/sarath-rg/providers/Microsoft.Storage/storageAccounts/axiccypod01otds1\",\r\n \"name\": \"axiccypod01otds1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseZRS/providers/Microsoft.Storage/storageAccounts/akanasezrsstorag\",\r\n \"name\": \"akanasezrsstorag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {\r\n \"Purpose\": \"Testing\",\r\n \"Owner\": \"akkanase\",\r\n \"Mab Used\": \"yes\",\r\n \"DeleteBy\": \"01-2025\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/sarath-rg/providers/Microsoft.Storage/storageAccounts/sarathsacli\",\r\n \"name\": \"sarathsacli\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm-clitest-rg/providers/Microsoft.Storage/storageAccounts/iaasvmclitestsa\",\r\n \"name\": \"iaasvmclitestsa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"Owner\": \"akneema\",\r\n \"MABUsed\": \"Yes\",\r\n \"Purpose\": \"CLITest\",\r\n \"DeleteBy\": \"12-9999\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.Storage/storageAccounts/hiagasa\",\r\n \"name\": \"hiagasa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\",\r\n \"Purpose\": \"Testing\",\r\n \"DeleteBy\": \"01-2099\",\r\n \"Owner\": \"hiaga\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.Storage/storageAccounts/akneemasaecy\",\r\n \"name\": \"akneemasaecy\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {\r\n \"Owner\": \"akneema\",\r\n \"Purpose\": \"Testing\",\r\n \"MABUsed\": \"Yes\",\r\n \"DeleteBy\": \"12-9999\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/oss-clitest-rg/providers/Microsoft.Storage/storageAccounts/ossclitestsa\",\r\n \"name\": \"ossclitestsa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"Owner\": \"akneema\",\r\n \"Purpose\": \"Testing\",\r\n \"MABUsed\": \"Yes\",\r\n \"DeleteBy\": \"12-9999\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/oss-pstest-rg/providers/Microsoft.Storage/storageAccounts/osspstestsa\",\r\n \"name\": \"osspstestsa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"MABUsed\": \"Ye\",\r\n \"Owne\": \"hiaga\",\r\n \"Purpose\": \"esting\",\r\n \"Del\": \"01-2099\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/cli-track2-rg/providers/Microsoft.Storage/storageAccounts/clitrack2sa\",\r\n \"name\": \"clitrack2sa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"Owner\": \"akneema\",\r\n \"Purpose\": \"Testing\",\r\n \"DeleteBy\": \"12-9999\",\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm-pstest-rg/providers/Microsoft.Storage/storageAccounts/iaasvmpstestsa\",\r\n \"name\": \"iaasvmpstestsa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"MABUsed\": \"yes\",\r\n \"Owner\": \"hiaga\",\r\n \"Purpose\": \"testing\",\r\n \"DeleteBy\": \"01-2099\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/DontUse-BlobRestore-BVT-CCY-RG/providers/Microsoft.Storage/storageAccounts/dontuseblobbvtccyrstrall\",\r\n \"name\": \"dontuseblobbvtccyrstrall\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/DontUse-BlobRestore-BVT-CCY-RG/providers/Microsoft.Storage/storageAccounts/dontuseblobbvtccyprefix\",\r\n \"name\": \"dontuseblobbvtccyprefix\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/DontUse-BlobRestore-BVT-CCY-RG/providers/Microsoft.Storage/storageAccounts/dontuseblobbvtccycontnr\",\r\n \"name\": \"dontuseblobbvtccycontnr\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/oss-clicloudtest-rg/providers/Microsoft.Storage/storageAccounts/ossclicloudtestsa\",\r\n \"name\": \"ossclicloudtestsa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"Owner\": \"akneema\",\r\n \"Purpose\": \"Testing\",\r\n \"DeleteBy\": \"12-9999\",\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/prnookal-wcus/providers/Microsoft.Storage/storageAccounts/prnookalwcus\",\r\n \"name\": \"prnookalwcus\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"Owner\": \"prnookal\",\r\n \"DeleteBy\": \"12-2021\",\r\n \"IsMabUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PORTAL.DPP.BVT.BLOB.RESTORE.EXISTING/providers/Microsoft.Storage/storageAccounts/blobsaforrestoreall\",\r\n \"name\": \"blobsaforrestoreall\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PORTAL.DPP.BVT.BLOB.RESTORE.EXISTING/providers/Microsoft.Storage/storageAccounts/blobrestoreopcontainers\",\r\n \"name\": \"blobrestoreopcontainers\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PORTAL.DPP.BVT.BLOB.RESTORE.EXISTING/providers/Microsoft.Storage/storageAccounts/blobrestoreopprefix\",\r\n \"name\": \"blobrestoreopprefix\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PORTAL.DPP.BVT.BLOB.RESTORE.EXISTING/providers/Microsoft.Storage/storageAccounts/blobrestoreopcontainer\",\r\n \"name\": \"blobrestoreopcontainer\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PORTAL.DPP.BVT.BLOB.RESTORE.EXISTING/providers/Microsoft.Storage/storageAccounts/blobrestoreopall\",\r\n \"name\": \"blobrestoreopall\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PORTAL.DPP.BVT.BLOB.RESTORE.EXISTING/providers/Microsoft.Storage/storageAccounts/bloboprestorecontainers\",\r\n \"name\": \"bloboprestorecontainers\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PORTAL.DPP.BVT.BLOB.RESTORE.EXISTING/providers/Microsoft.Storage/storageAccounts/bloboprestoreall\",\r\n \"name\": \"bloboprestoreall\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagargeus/providers/Microsoft.Storage/storageAccounts/hiagargeus\",\r\n \"name\": \"hiagargeus\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akneema-we-rg/providers/Microsoft.Storage/storageAccounts/gb8wepod01otds1\",\r\n \"name\": \"gb8wepod01otds1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGZRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akneema/providers/Microsoft.Storage/storageAccounts/uvqccypod01otds1\",\r\n \"name\": \"uvqccypod01otds1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagaCZR-rg/providers/Microsoft.Storage/storageAccounts/cliczrlrssa\",\r\n \"name\": \"cliczrlrssa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {\r\n \"Owner\": \"akneema\",\r\n \"Purpose\": \"Testing\",\r\n \"DeleteBy\": \"12-9999\",\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseGRSVault/providers/Microsoft.Storage/storageAccounts/frmseapod01otds1\",\r\n \"name\": \"frmseapod01otds1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGZRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseZRS/providers/Microsoft.Storage/storageAccounts/rfoccypod01otds1\",\r\n \"name\": \"rfoccypod01otds1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akneema-we-rg/providers/Microsoft.Storage/storageAccounts/m3dccypod01otds01\",\r\n \"name\": \"m3dccypod01otds01\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/AdkayethBugbash/providers/Microsoft.Storage/storageAccounts/adkayethsfsa\",\r\n \"name\": \"adkayethsfsa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/AdkayethBugbash/providers/Microsoft.Storage/storageAccounts/adkayathesfsabugbash\",\r\n \"name\": \"adkayathesfsabugbash\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.existing/providers/Microsoft.ClassicStorage/storageAccounts/iaasextstore2\",\r\n \"name\": \"iaasextstore2\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"southeastasia\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resources?$filter=resourceType%20eq%20'Microsoft.Storage%2FstorageAccounts'&api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5TdG9yYWdlJTJGc3RvcmFnZUFjY291bnRzJyZhcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resources?$filter=resourceType%20eq%20'Microsoft.ClassicStorage%2FstorageAccounts'&api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5DbGFzc2ljU3RvcmFnZSUyRnN0b3JhZ2VBY2NvdW50cycmYXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bbfb3d3c-8482-49e1-94e1-71481f000bf8" + "fd770b01-8b83-4071-aad7-cf86d08a24cd" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" @@ -2908,16 +3096,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11990" ], "x-ms-request-id": [ - "34ffe9b1-2646-4b5f-ad5f-1cd59a071fdc" + "35ba41d7-d27c-4067-a1bd-56970581a369" ], "x-ms-correlation-request-id": [ - "34ffe9b1-2646-4b5f-ad5f-1cd59a071fdc" + "35ba41d7-d27c-4067-a1bd-56970581a369" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T095849Z:34ffe9b1-2646-4b5f-ad5f-1cd59a071fdc" + "JIOINDIAWEST:20220516T161258Z:35ba41d7-d27c-4067-a1bd-56970581a369" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2926,7 +3114,7 @@ "nosniff" ], "Date": [ - "Sat, 26 Mar 2022 09:58:49 GMT" + "Mon, 16 May 2022 16:12:58 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2935,26 +3123,26 @@ "-1" ], "Content-Length": [ - "32912" + "268" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.existing.crr/providers/Microsoft.Storage/storageAccounts/iaasvmexistingcrrdiag\",\r\n \"name\": \"iaasvmexistingcrrdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"MAB Used\": \"Yes\",\r\n \"DeleteBy\": \"01-2030\",\r\n \"Delete By\": \"01-2030\",\r\n \"Owner\": \"chgonugu\",\r\n \"Purpose\": \"Testing\",\r\n \"AutoShutdown\": \"false\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.existing.crr/providers/Microsoft.Storage/storageAccounts/iaasvmexistingcrrdiag112\",\r\n \"name\": \"iaasvmexistingcrrdiag112\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {\r\n \"Owner\": \"chgonugu\",\r\n \"Purpose\": \"Testing\",\r\n \"MabUsed\": \"Yes\",\r\n \"DeleteBy\": \"01-2025\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.existing.crr/providers/Microsoft.Storage/storageAccounts/iaasvmexistingcrr\",\r\n \"name\": \"iaasvmexistingcrr\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/sambit_rg/providers/Microsoft.Storage/storageAccounts/sarathsa3\",\r\n \"name\": \"sarathsa3\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvmhanaworkload.existing/providers/Microsoft.Storage/storageAccounts/iaasvmhanaworkloadexisti\",\r\n \"name\": \"iaasvmhanaworkloadexisti\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"AutoShutdown\": \"No\",\r\n \"BVT Used\": \"Yes\",\r\n \"Owner\": \"chgonugu\",\r\n \"Purpose\": \"BVT\",\r\n \"DeleteBy\": \"01-2030\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/afsnavigationtest\",\r\n \"name\": \"afsnavigationtest\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/afstbackuptestsa\",\r\n \"name\": \"afstbackuptestsa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.encryptedvm/providers/Microsoft.Storage/storageAccounts/iaasvmencryptedvmdiag170\",\r\n \"name\": \"iaasvmencryptedvmdiag170\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.existing/providers/Microsoft.Storage/storageAccounts/iaasvmexistingdiag1\",\r\n \"name\": \"iaasvmexistingdiag1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.existing/providers/Microsoft.Storage/storageAccounts/iaasextstore1\",\r\n \"name\": \"iaasextstore1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.new/providers/Microsoft.Storage/storageAccounts/iaasvmnewdiag1\",\r\n \"name\": \"iaasvmnewdiag1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.new/providers/Microsoft.Storage/storageAccounts/iaasnewstore1\",\r\n \"name\": \"iaasnewstore1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/IaasVMNavigationTest-RG/providers/Microsoft.Storage/storageAccounts/aasavigationestdiag\",\r\n \"name\": \"aasavigationestdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/IaasVMNavigationTest-RG/providers/Microsoft.Storage/storageAccounts/iaasvmnavigationstore\",\r\n \"name\": \"iaasvmnavigationstore\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pscloudtestrg/providers/Microsoft.Storage/storageAccounts/pscloudtestrgdiag\",\r\n \"name\": \"pscloudtestrgdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MAB Used\": \" Yes\",\r\n \"MABUsed\": \" Yes\",\r\n \"DeleteBy\": \"01-2030\",\r\n \"Purpose\": \"PS bvt\",\r\n \"Owner\": \"sarath\",\r\n \"AutoShutdown\": \"No\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pscloudtestrg/providers/Microsoft.Storage/storageAccounts/psbvtsa2\",\r\n \"name\": \"psbvtsa2\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstestsa8895\",\r\n \"name\": \"pstestsa8895\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstesttargetsa8895\",\r\n \"name\": \"pstesttargetsa8895\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstesttargetsa8896\",\r\n \"name\": \"pstesttargetsa8896\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/afsbackupsa\",\r\n \"name\": \"afsbackupsa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"Owner\": \"sarath\",\r\n \"Purpose\": \" BVT\",\r\n \"DeleteBy\": \"01-2025\",\r\n \"AutoShutdown\": \"No\",\r\n \"MAB Used\": \" Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG54bdf8da/providers/Microsoft.Storage/storageAccounts/pstestsa54bdf8da\",\r\n \"name\": \"pstestsa54bdf8da\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG1e5a278b/providers/Microsoft.Storage/storageAccounts/pstestsa1e5a278b\",\r\n \"name\": \"pstestsa1e5a278b\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG59e1706f/providers/Microsoft.Storage/storageAccounts/pstestsa59e1706f\",\r\n \"name\": \"pstestsa59e1706f\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/storageysci5wbex6jyc\",\r\n \"name\": \"storageysci5wbex6jyc\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/prnookal-rg/providers/Microsoft.Storage/storageAccounts/prnookaltestnob\",\r\n \"name\": \"prnookaltestnob\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"isMABUsed\": \"Yes\",\r\n \" Owner\": \"prnookal@microsoft.com\",\r\n \"DeletBy\": \"12-2021\",\r\n \"Purpose\": \" Testing\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/afsbackupsa1\",\r\n \"name\": \"afsbackupsa1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"Mab Used\": \"yes\",\r\n \"Owner\": \"akkanase\",\r\n \"Purpose\": \"Testing\",\r\n \"DeleteBy\": \"01-2022\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/afsbackupsa2\",\r\n \"name\": \"afsbackupsa2\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseTest/providers/Microsoft.Storage/storageAccounts/afsfilesharetest\",\r\n \"name\": \"afsfilesharetest\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/afsbackupsa3\",\r\n \"name\": \"afsbackupsa3\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/afsbackupsa0\",\r\n \"name\": \"afsbackupsa0\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pscloudtest-diskbackup-existing/providers/Microsoft.Storage/storageAccounts/1vnseapod01otds1\",\r\n \"name\": \"1vnseapod01otds1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGZRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseAFSTest/providers/Microsoft.Storage/storageAccounts/akkanaseafssa\",\r\n \"name\": \"akkanaseafssa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MAB Used\": \"Yes\",\r\n \"Owner\": \"akkanase\",\r\n \"Purpose\": \"Testing\",\r\n \"Delete By\": \"05-202\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseAFSTest/providers/Microsoft.Storage/storageAccounts/akkanasembpd2\",\r\n \"name\": \"akkanasembpd2\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MAB Used\": \"Yes\",\r\n \"Purpose\": \"Testing\",\r\n \"Owner\": \"akkanase\",\r\n \"Delete By\": \"05-2022\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseCMK/providers/Microsoft.Storage/storageAccounts/akkanase\",\r\n \"name\": \"akkanase\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"DeleteBy\": \"05-2023\",\r\n \"Owner\": \"akkanase\",\r\n \"Purpose\": \"Testing\",\r\n \"MAB Used\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/cmk.system/providers/Microsoft.Storage/storageAccounts/cmkautomationstore\",\r\n \"name\": \"cmkautomationstore\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"Delete By\": \"05-2050\",\r\n \"MAB Used\": \" Yes\",\r\n \"Owner\": \"akkanase\",\r\n \"Purpose\": \" BVT\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG235879ba/providers/Microsoft.Storage/storageAccounts/pstestsa235879ba\",\r\n \"name\": \"pstestsa235879ba\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/disk-bvt-test-rg/providers/Microsoft.Storage/storageAccounts/hv3seapod01otds1\",\r\n \"name\": \"hv3seapod01otds1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGZRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/DoNotUse-OSS-BVT-SEA-RG/providers/Microsoft.Storage/storageAccounts/dontuseossrestoreasfile\",\r\n \"name\": \"dontuseossrestoreasfile\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MAB Used\": \" Yes\",\r\n \" Owner\": \"akkanase\",\r\n \"Purpose\": \"BV\",\r\n \"Delete By\": \"05-2020\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseAFSTest/providers/Microsoft.Storage/storageAccounts/akkanaseafsa2\",\r\n \"name\": \"akkanaseafsa2\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseCMK/providers/Microsoft.Storage/storageAccounts/0byseapod01otds1\",\r\n \"name\": \"0byseapod01otds1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGZRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/9exwuspod01otds1\",\r\n \"name\": \"9exwuspod01otds1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/02xseacan01otds1\",\r\n \"name\": \"02xseacan01otds1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGZRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseMAB/providers/Microsoft.Storage/storageAccounts/dnhccypod01otds1\",\r\n \"name\": \"dnhccypod01otds1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rguzio7xhypi/providers/Microsoft.Storage/storageAccounts/clitest4b24ibpr3ztyhwo23\",\r\n \"name\": \"clitest4b24ibpr3ztyhwo23\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rgsiaa3ljqg5/providers/Microsoft.Storage/storageAccounts/clitestgd6i34czs3jb3rdtc\",\r\n \"name\": \"clitestgd6i34czs3jb3rdtc\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rgjxpjikqjjw/providers/Microsoft.Storage/storageAccounts/clitestjkhq2kpsal665atqe\",\r\n \"name\": \"clitestjkhq2kpsal665atqe\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rgwwhxyyhl2u/providers/Microsoft.Storage/storageAccounts/clitestdggdsdbtfa6vq5n5o\",\r\n \"name\": \"clitestdggdsdbtfa6vq5n5o\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rgm44mrkvygk/providers/Microsoft.Storage/storageAccounts/clitestodvd3xsftt63go6dk\",\r\n \"name\": \"clitestodvd3xsftt63go6dk\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rgdy7jf3qqzd/providers/Microsoft.Storage/storageAccounts/clitestnbsma3ftf2yugilxq\",\r\n \"name\": \"clitestnbsma3ftf2yugilxq\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rgl5tlzqo2pt/providers/Microsoft.Storage/storageAccounts/clitestgn64zidsnwe3ndjp5\",\r\n \"name\": \"clitestgn64zidsnwe3ndjp5\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rg73eqbdp4g5/providers/Microsoft.Storage/storageAccounts/clitestzfhrqsr4m24iwnjy7\",\r\n \"name\": \"clitestzfhrqsr4m24iwnjy7\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rg73eqbdp4g5/providers/Microsoft.Storage/storageAccounts/clitestukhlrarahpoebmaln\",\r\n \"name\": \"clitestukhlrarahpoebmaln\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/prnookal-prod/providers/Microsoft.Storage/storageAccounts/prnookalprod\",\r\n \"name\": \"prnookalprod\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"japaneast\",\r\n \"tags\": {\r\n \"IsMabUsed\": \"Yes\",\r\n \"Owner\": \"prnookal\",\r\n \"DeleteBy\": \"12-2021\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/cloud-shell-storage-centralindia/providers/Microsoft.Storage/storageAccounts/csg10032000d221b981\",\r\n \"name\": \"csg10032000d221b981\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centralindia\",\r\n \"tags\": {\r\n \"ms-resource-usage\": \"azure-cloud-shell\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/cloud-shell-storage-centralindia/providers/Microsoft.Storage/storageAccounts/csg10032000b56ab138\",\r\n \"name\": \"csg10032000b56ab138\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centralindia\",\r\n \"tags\": {\r\n \"ms-resource-usage\": \"azure-cloud-shell\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/cloud-shell-storage-centralindia/providers/Microsoft.Storage/storageAccounts/csg10033fffacb0d110\",\r\n \"name\": \"csg10033fffacb0d110\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centralindia\",\r\n \"tags\": {\r\n \"ms-resource-usage\": \"azure-cloud-shell\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/cloud-shell-storage-centralindia/providers/Microsoft.Storage/storageAccounts/csg1003bffda7dcd176\",\r\n \"name\": \"csg1003bffda7dcd176\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centralindia\",\r\n \"tags\": {\r\n \"ms-resource-usage\": \"azure-cloud-shell\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvmsqlworkload.existing.crr/providers/Microsoft.Storage/storageAccounts/iaasvmsqlworkloadexistin\",\r\n \"name\": \"iaasvmsqlworkloadexistin\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {\r\n \"Owner\": \"chgonugu\",\r\n \"Purpose\": \"BVT\",\r\n \"MabUsed\": \"Yes\",\r\n \"DeleteBy\": \"12-2099\",\r\n \"AutoShutdown\": \"No\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/Blob-Backup/providers/Microsoft.Storage/storageAccounts/testblobbackup\",\r\n \"name\": \"testblobbackup\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/fzejupmyclivaultasrcache\",\r\n \"name\": \"fzejupmyclivaultasrcache\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseCcyGrs/providers/Microsoft.Storage/storageAccounts/storeimqyzvpnwrv5a\",\r\n \"name\": \"storeimqyzvpnwrv5a\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/sarath-rg/providers/Microsoft.Storage/storageAccounts/clitestingsa\",\r\n \"name\": \"clitestingsa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/sarath-rg/providers/Microsoft.Storage/storageAccounts/axiccypod01otds1\",\r\n \"name\": \"axiccypod01otds1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseZRS/providers/Microsoft.Storage/storageAccounts/akanasezrsstorag\",\r\n \"name\": \"akanasezrsstorag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {\r\n \"Purpose\": \"Testing\",\r\n \"Owner\": \"akkanase\",\r\n \"Mab Used\": \"yes\",\r\n \"DeleteBy\": \"01-2025\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/sarath-rg/providers/Microsoft.Storage/storageAccounts/sarathsacli\",\r\n \"name\": \"sarathsacli\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm-clitest-rg/providers/Microsoft.Storage/storageAccounts/iaasvmclitestsa\",\r\n \"name\": \"iaasvmclitestsa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"Owner\": \"akneema\",\r\n \"MABUsed\": \"Yes\",\r\n \"Purpose\": \"CLITest\",\r\n \"DeleteBy\": \"12-9999\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.Storage/storageAccounts/hiagasa\",\r\n \"name\": \"hiagasa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\",\r\n \"Purpose\": \"Testing\",\r\n \"DeleteBy\": \"01-2099\",\r\n \"Owner\": \"hiaga\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.Storage/storageAccounts/akneemasaecy\",\r\n \"name\": \"akneemasaecy\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {\r\n \"Owner\": \"akneema\",\r\n \"Purpose\": \"Testing\",\r\n \"MABUsed\": \"Yes\",\r\n \"DeleteBy\": \"12-9999\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/oss-clitest-rg/providers/Microsoft.Storage/storageAccounts/ossclitestsa\",\r\n \"name\": \"ossclitestsa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"Owner\": \"akneema\",\r\n \"Purpose\": \"Testing\",\r\n \"MABUsed\": \"Yes\",\r\n \"DeleteBy\": \"12-9999\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/oss-pstest-rg/providers/Microsoft.Storage/storageAccounts/osspstestsa\",\r\n \"name\": \"osspstestsa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"MABUsed\": \"Ye\",\r\n \"Owne\": \"hiaga\",\r\n \"Purpose\": \"esting\",\r\n \"Del\": \"01-2099\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/cli-track2-rg/providers/Microsoft.Storage/storageAccounts/clitrack2sa\",\r\n \"name\": \"clitrack2sa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"Owner\": \"akneema\",\r\n \"Purpose\": \"Testing\",\r\n \"DeleteBy\": \"12-9999\",\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm-pstest-rg/providers/Microsoft.Storage/storageAccounts/iaasvmpstestsa\",\r\n \"name\": \"iaasvmpstestsa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"MABUsed\": \"yes\",\r\n \"Owner\": \"hiaga\",\r\n \"Purpose\": \"testing\",\r\n \"DeleteBy\": \"01-2099\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/DontUse-BlobRestore-BVT-CCY-RG/providers/Microsoft.Storage/storageAccounts/dontuseblobbvtccyrstrall\",\r\n \"name\": \"dontuseblobbvtccyrstrall\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/DontUse-BlobRestore-BVT-CCY-RG/providers/Microsoft.Storage/storageAccounts/dontuseblobbvtccyprefix\",\r\n \"name\": \"dontuseblobbvtccyprefix\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/DontUse-BlobRestore-BVT-CCY-RG/providers/Microsoft.Storage/storageAccounts/dontuseblobbvtccycontnr\",\r\n \"name\": \"dontuseblobbvtccycontnr\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/oss-clicloudtest-rg/providers/Microsoft.Storage/storageAccounts/ossclicloudtestsa\",\r\n \"name\": \"ossclicloudtestsa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"Owner\": \"akneema\",\r\n \"Purpose\": \"Testing\",\r\n \"DeleteBy\": \"12-9999\",\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/prnookal-wcus/providers/Microsoft.Storage/storageAccounts/prnookalwcus\",\r\n \"name\": \"prnookalwcus\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"Owner\": \"prnookal\",\r\n \"DeleteBy\": \"12-2021\",\r\n \"IsMabUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PORTAL.DPP.BVT.BLOB.RESTORE.EXISTING/providers/Microsoft.Storage/storageAccounts/blobsaforrestoreall\",\r\n \"name\": \"blobsaforrestoreall\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PORTAL.DPP.BVT.BLOB.RESTORE.EXISTING/providers/Microsoft.Storage/storageAccounts/blobrestoreopcontainers\",\r\n \"name\": \"blobrestoreopcontainers\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PORTAL.DPP.BVT.BLOB.RESTORE.EXISTING/providers/Microsoft.Storage/storageAccounts/blobrestoreopprefix\",\r\n \"name\": \"blobrestoreopprefix\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PORTAL.DPP.BVT.BLOB.RESTORE.EXISTING/providers/Microsoft.Storage/storageAccounts/blobrestoreopcontainer\",\r\n \"name\": \"blobrestoreopcontainer\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PORTAL.DPP.BVT.BLOB.RESTORE.EXISTING/providers/Microsoft.Storage/storageAccounts/blobrestoreopall\",\r\n \"name\": \"blobrestoreopall\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PORTAL.DPP.BVT.BLOB.RESTORE.EXISTING/providers/Microsoft.Storage/storageAccounts/bloboprestorecontainers\",\r\n \"name\": \"bloboprestorecontainers\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PORTAL.DPP.BVT.BLOB.RESTORE.EXISTING/providers/Microsoft.Storage/storageAccounts/bloboprestoreall\",\r\n \"name\": \"bloboprestoreall\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagargeus/providers/Microsoft.Storage/storageAccounts/hiagargeus\",\r\n \"name\": \"hiagargeus\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akneema-we-rg/providers/Microsoft.Storage/storageAccounts/gb8wepod01otds1\",\r\n \"name\": \"gb8wepod01otds1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGZRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akneema/providers/Microsoft.Storage/storageAccounts/uvqccypod01otds1\",\r\n \"name\": \"uvqccypod01otds1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagaCZR-rg/providers/Microsoft.Storage/storageAccounts/cliczrlrssa\",\r\n \"name\": \"cliczrlrssa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {\r\n \"Owner\": \"akneema\",\r\n \"Purpose\": \"Testing\",\r\n \"DeleteBy\": \"12-9999\",\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseGRSVault/providers/Microsoft.Storage/storageAccounts/frmseapod01otds1\",\r\n \"name\": \"frmseapod01otds1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGZRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseZRS/providers/Microsoft.Storage/storageAccounts/rfoccypod01otds1\",\r\n \"name\": \"rfoccypod01otds1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akneema-we-rg/providers/Microsoft.Storage/storageAccounts/m3dccypod01otds01\",\r\n \"name\": \"m3dccypod01otds01\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/AdkayethBugbash/providers/Microsoft.Storage/storageAccounts/adkayethsfsa\",\r\n \"name\": \"adkayethsfsa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/AdkayethBugbash/providers/Microsoft.Storage/storageAccounts/adkayathesfsabugbash\",\r\n \"name\": \"adkayathesfsabugbash\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.existing/providers/Microsoft.ClassicStorage/storageAccounts/iaasextstore2\",\r\n \"name\": \"iaasextstore2\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"southeastasia\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resources?$filter=resourceType%20eq%20'Microsoft.Storage%2FstorageAccounts'&api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5TdG9yYWdlJTJGc3RvcmFnZUFjY291bnRzJyZhcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resources?$filter=resourceType%20eq%20'Microsoft.ClassicStorage%2FstorageAccounts'&api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5DbGFzc2ljU3RvcmFnZSUyRnN0b3JhZ2VBY2NvdW50cycmYXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "710f4ec8-20fe-4fdd-9de3-b7169babc8eb" + "3c145b4f-4a12-4ba6-9964-2936d8bc94e4" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" @@ -2968,16 +3156,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "11988" ], "x-ms-request-id": [ - "5f1b7b16-1c89-4156-9cbc-0845b2c27fa5" + "65a9a0a2-ef9c-4273-9ef1-31a05fbeaec4" ], "x-ms-correlation-request-id": [ - "5f1b7b16-1c89-4156-9cbc-0845b2c27fa5" + "65a9a0a2-ef9c-4273-9ef1-31a05fbeaec4" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T095953Z:5f1b7b16-1c89-4156-9cbc-0845b2c27fa5" + "JIOINDIAWEST:20220516T161403Z:65a9a0a2-ef9c-4273-9ef1-31a05fbeaec4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2986,7 +3174,7 @@ "nosniff" ], "Date": [ - "Sat, 26 Mar 2022 09:59:52 GMT" + "Mon, 16 May 2022 16:14:03 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2995,26 +3183,26 @@ "-1" ], "Content-Length": [ - "32912" + "268" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.existing.crr/providers/Microsoft.Storage/storageAccounts/iaasvmexistingcrrdiag\",\r\n \"name\": \"iaasvmexistingcrrdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"MAB Used\": \"Yes\",\r\n \"DeleteBy\": \"01-2030\",\r\n \"Delete By\": \"01-2030\",\r\n \"Owner\": \"chgonugu\",\r\n \"Purpose\": \"Testing\",\r\n \"AutoShutdown\": \"false\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.existing.crr/providers/Microsoft.Storage/storageAccounts/iaasvmexistingcrrdiag112\",\r\n \"name\": \"iaasvmexistingcrrdiag112\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {\r\n \"Owner\": \"chgonugu\",\r\n \"Purpose\": \"Testing\",\r\n \"MabUsed\": \"Yes\",\r\n \"DeleteBy\": \"01-2025\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.existing.crr/providers/Microsoft.Storage/storageAccounts/iaasvmexistingcrr\",\r\n \"name\": \"iaasvmexistingcrr\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/sambit_rg/providers/Microsoft.Storage/storageAccounts/sarathsa3\",\r\n \"name\": \"sarathsa3\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvmhanaworkload.existing/providers/Microsoft.Storage/storageAccounts/iaasvmhanaworkloadexisti\",\r\n \"name\": \"iaasvmhanaworkloadexisti\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"AutoShutdown\": \"No\",\r\n \"BVT Used\": \"Yes\",\r\n \"Owner\": \"chgonugu\",\r\n \"Purpose\": \"BVT\",\r\n \"DeleteBy\": \"01-2030\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/afsnavigationtest\",\r\n \"name\": \"afsnavigationtest\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/afstbackuptestsa\",\r\n \"name\": \"afstbackuptestsa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.encryptedvm/providers/Microsoft.Storage/storageAccounts/iaasvmencryptedvmdiag170\",\r\n \"name\": \"iaasvmencryptedvmdiag170\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.existing/providers/Microsoft.Storage/storageAccounts/iaasvmexistingdiag1\",\r\n \"name\": \"iaasvmexistingdiag1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.existing/providers/Microsoft.Storage/storageAccounts/iaasextstore1\",\r\n \"name\": \"iaasextstore1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.new/providers/Microsoft.Storage/storageAccounts/iaasvmnewdiag1\",\r\n \"name\": \"iaasvmnewdiag1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.new/providers/Microsoft.Storage/storageAccounts/iaasnewstore1\",\r\n \"name\": \"iaasnewstore1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/IaasVMNavigationTest-RG/providers/Microsoft.Storage/storageAccounts/aasavigationestdiag\",\r\n \"name\": \"aasavigationestdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/IaasVMNavigationTest-RG/providers/Microsoft.Storage/storageAccounts/iaasvmnavigationstore\",\r\n \"name\": \"iaasvmnavigationstore\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pscloudtestrg/providers/Microsoft.Storage/storageAccounts/pscloudtestrgdiag\",\r\n \"name\": \"pscloudtestrgdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MAB Used\": \" Yes\",\r\n \"MABUsed\": \" Yes\",\r\n \"DeleteBy\": \"01-2030\",\r\n \"Purpose\": \"PS bvt\",\r\n \"Owner\": \"sarath\",\r\n \"AutoShutdown\": \"No\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pscloudtestrg/providers/Microsoft.Storage/storageAccounts/psbvtsa2\",\r\n \"name\": \"psbvtsa2\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstestsa8895\",\r\n \"name\": \"pstestsa8895\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstesttargetsa8895\",\r\n \"name\": \"pstesttargetsa8895\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstesttargetsa8896\",\r\n \"name\": \"pstesttargetsa8896\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/afsbackupsa\",\r\n \"name\": \"afsbackupsa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"Owner\": \"sarath\",\r\n \"Purpose\": \" BVT\",\r\n \"DeleteBy\": \"01-2025\",\r\n \"AutoShutdown\": \"No\",\r\n \"MAB Used\": \" Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG54bdf8da/providers/Microsoft.Storage/storageAccounts/pstestsa54bdf8da\",\r\n \"name\": \"pstestsa54bdf8da\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG1e5a278b/providers/Microsoft.Storage/storageAccounts/pstestsa1e5a278b\",\r\n \"name\": \"pstestsa1e5a278b\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG59e1706f/providers/Microsoft.Storage/storageAccounts/pstestsa59e1706f\",\r\n \"name\": \"pstestsa59e1706f\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/storageysci5wbex6jyc\",\r\n \"name\": \"storageysci5wbex6jyc\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/prnookal-rg/providers/Microsoft.Storage/storageAccounts/prnookaltestnob\",\r\n \"name\": \"prnookaltestnob\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"isMABUsed\": \"Yes\",\r\n \" Owner\": \"prnookal@microsoft.com\",\r\n \"DeletBy\": \"12-2021\",\r\n \"Purpose\": \" Testing\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/afsbackupsa1\",\r\n \"name\": \"afsbackupsa1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"Mab Used\": \"yes\",\r\n \"Owner\": \"akkanase\",\r\n \"Purpose\": \"Testing\",\r\n \"DeleteBy\": \"01-2022\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/afsbackupsa2\",\r\n \"name\": \"afsbackupsa2\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseTest/providers/Microsoft.Storage/storageAccounts/afsfilesharetest\",\r\n \"name\": \"afsfilesharetest\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/afsbackupsa3\",\r\n \"name\": \"afsbackupsa3\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/afsbackupsa0\",\r\n \"name\": \"afsbackupsa0\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pscloudtest-diskbackup-existing/providers/Microsoft.Storage/storageAccounts/1vnseapod01otds1\",\r\n \"name\": \"1vnseapod01otds1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGZRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseAFSTest/providers/Microsoft.Storage/storageAccounts/akkanaseafssa\",\r\n \"name\": \"akkanaseafssa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MAB Used\": \"Yes\",\r\n \"Owner\": \"akkanase\",\r\n \"Purpose\": \"Testing\",\r\n \"Delete By\": \"05-202\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseAFSTest/providers/Microsoft.Storage/storageAccounts/akkanasembpd2\",\r\n \"name\": \"akkanasembpd2\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MAB Used\": \"Yes\",\r\n \"Purpose\": \"Testing\",\r\n \"Owner\": \"akkanase\",\r\n \"Delete By\": \"05-2022\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseCMK/providers/Microsoft.Storage/storageAccounts/akkanase\",\r\n \"name\": \"akkanase\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"DeleteBy\": \"05-2023\",\r\n \"Owner\": \"akkanase\",\r\n \"Purpose\": \"Testing\",\r\n \"MAB Used\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/cmk.system/providers/Microsoft.Storage/storageAccounts/cmkautomationstore\",\r\n \"name\": \"cmkautomationstore\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"Delete By\": \"05-2050\",\r\n \"MAB Used\": \" Yes\",\r\n \"Owner\": \"akkanase\",\r\n \"Purpose\": \" BVT\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG235879ba/providers/Microsoft.Storage/storageAccounts/pstestsa235879ba\",\r\n \"name\": \"pstestsa235879ba\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/disk-bvt-test-rg/providers/Microsoft.Storage/storageAccounts/hv3seapod01otds1\",\r\n \"name\": \"hv3seapod01otds1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGZRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/DoNotUse-OSS-BVT-SEA-RG/providers/Microsoft.Storage/storageAccounts/dontuseossrestoreasfile\",\r\n \"name\": \"dontuseossrestoreasfile\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MAB Used\": \" Yes\",\r\n \" Owner\": \"akkanase\",\r\n \"Purpose\": \"BV\",\r\n \"Delete By\": \"05-2020\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseAFSTest/providers/Microsoft.Storage/storageAccounts/akkanaseafsa2\",\r\n \"name\": \"akkanaseafsa2\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseCMK/providers/Microsoft.Storage/storageAccounts/0byseapod01otds1\",\r\n \"name\": \"0byseapod01otds1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGZRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/9exwuspod01otds1\",\r\n \"name\": \"9exwuspod01otds1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/02xseacan01otds1\",\r\n \"name\": \"02xseacan01otds1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGZRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseMAB/providers/Microsoft.Storage/storageAccounts/dnhccypod01otds1\",\r\n \"name\": \"dnhccypod01otds1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rguzio7xhypi/providers/Microsoft.Storage/storageAccounts/clitest4b24ibpr3ztyhwo23\",\r\n \"name\": \"clitest4b24ibpr3ztyhwo23\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rgsiaa3ljqg5/providers/Microsoft.Storage/storageAccounts/clitestgd6i34czs3jb3rdtc\",\r\n \"name\": \"clitestgd6i34czs3jb3rdtc\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rgjxpjikqjjw/providers/Microsoft.Storage/storageAccounts/clitestjkhq2kpsal665atqe\",\r\n \"name\": \"clitestjkhq2kpsal665atqe\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rgwwhxyyhl2u/providers/Microsoft.Storage/storageAccounts/clitestdggdsdbtfa6vq5n5o\",\r\n \"name\": \"clitestdggdsdbtfa6vq5n5o\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rgm44mrkvygk/providers/Microsoft.Storage/storageAccounts/clitestodvd3xsftt63go6dk\",\r\n \"name\": \"clitestodvd3xsftt63go6dk\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rgdy7jf3qqzd/providers/Microsoft.Storage/storageAccounts/clitestnbsma3ftf2yugilxq\",\r\n \"name\": \"clitestnbsma3ftf2yugilxq\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rgl5tlzqo2pt/providers/Microsoft.Storage/storageAccounts/clitestgn64zidsnwe3ndjp5\",\r\n \"name\": \"clitestgn64zidsnwe3ndjp5\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rg73eqbdp4g5/providers/Microsoft.Storage/storageAccounts/clitestzfhrqsr4m24iwnjy7\",\r\n \"name\": \"clitestzfhrqsr4m24iwnjy7\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rg73eqbdp4g5/providers/Microsoft.Storage/storageAccounts/clitestukhlrarahpoebmaln\",\r\n \"name\": \"clitestukhlrarahpoebmaln\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/prnookal-prod/providers/Microsoft.Storage/storageAccounts/prnookalprod\",\r\n \"name\": \"prnookalprod\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"japaneast\",\r\n \"tags\": {\r\n \"IsMabUsed\": \"Yes\",\r\n \"Owner\": \"prnookal\",\r\n \"DeleteBy\": \"12-2021\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/cloud-shell-storage-centralindia/providers/Microsoft.Storage/storageAccounts/csg10032000d221b981\",\r\n \"name\": \"csg10032000d221b981\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centralindia\",\r\n \"tags\": {\r\n \"ms-resource-usage\": \"azure-cloud-shell\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/cloud-shell-storage-centralindia/providers/Microsoft.Storage/storageAccounts/csg10032000b56ab138\",\r\n \"name\": \"csg10032000b56ab138\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centralindia\",\r\n \"tags\": {\r\n \"ms-resource-usage\": \"azure-cloud-shell\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/cloud-shell-storage-centralindia/providers/Microsoft.Storage/storageAccounts/csg10033fffacb0d110\",\r\n \"name\": \"csg10033fffacb0d110\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centralindia\",\r\n \"tags\": {\r\n \"ms-resource-usage\": \"azure-cloud-shell\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/cloud-shell-storage-centralindia/providers/Microsoft.Storage/storageAccounts/csg1003bffda7dcd176\",\r\n \"name\": \"csg1003bffda7dcd176\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centralindia\",\r\n \"tags\": {\r\n \"ms-resource-usage\": \"azure-cloud-shell\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvmsqlworkload.existing.crr/providers/Microsoft.Storage/storageAccounts/iaasvmsqlworkloadexistin\",\r\n \"name\": \"iaasvmsqlworkloadexistin\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {\r\n \"Owner\": \"chgonugu\",\r\n \"Purpose\": \"BVT\",\r\n \"MabUsed\": \"Yes\",\r\n \"DeleteBy\": \"12-2099\",\r\n \"AutoShutdown\": \"No\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/Blob-Backup/providers/Microsoft.Storage/storageAccounts/testblobbackup\",\r\n \"name\": \"testblobbackup\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/fzejupmyclivaultasrcache\",\r\n \"name\": \"fzejupmyclivaultasrcache\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseCcyGrs/providers/Microsoft.Storage/storageAccounts/storeimqyzvpnwrv5a\",\r\n \"name\": \"storeimqyzvpnwrv5a\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/sarath-rg/providers/Microsoft.Storage/storageAccounts/clitestingsa\",\r\n \"name\": \"clitestingsa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/sarath-rg/providers/Microsoft.Storage/storageAccounts/axiccypod01otds1\",\r\n \"name\": \"axiccypod01otds1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseZRS/providers/Microsoft.Storage/storageAccounts/akanasezrsstorag\",\r\n \"name\": \"akanasezrsstorag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {\r\n \"Purpose\": \"Testing\",\r\n \"Owner\": \"akkanase\",\r\n \"Mab Used\": \"yes\",\r\n \"DeleteBy\": \"01-2025\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/sarath-rg/providers/Microsoft.Storage/storageAccounts/sarathsacli\",\r\n \"name\": \"sarathsacli\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm-clitest-rg/providers/Microsoft.Storage/storageAccounts/iaasvmclitestsa\",\r\n \"name\": \"iaasvmclitestsa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"Owner\": \"akneema\",\r\n \"MABUsed\": \"Yes\",\r\n \"Purpose\": \"CLITest\",\r\n \"DeleteBy\": \"12-9999\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.Storage/storageAccounts/hiagasa\",\r\n \"name\": \"hiagasa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\",\r\n \"Purpose\": \"Testing\",\r\n \"DeleteBy\": \"01-2099\",\r\n \"Owner\": \"hiaga\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.Storage/storageAccounts/akneemasaecy\",\r\n \"name\": \"akneemasaecy\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {\r\n \"Owner\": \"akneema\",\r\n \"Purpose\": \"Testing\",\r\n \"MABUsed\": \"Yes\",\r\n \"DeleteBy\": \"12-9999\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/oss-clitest-rg/providers/Microsoft.Storage/storageAccounts/ossclitestsa\",\r\n \"name\": \"ossclitestsa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"Owner\": \"akneema\",\r\n \"Purpose\": \"Testing\",\r\n \"MABUsed\": \"Yes\",\r\n \"DeleteBy\": \"12-9999\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/oss-pstest-rg/providers/Microsoft.Storage/storageAccounts/osspstestsa\",\r\n \"name\": \"osspstestsa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"MABUsed\": \"Ye\",\r\n \"Owne\": \"hiaga\",\r\n \"Purpose\": \"esting\",\r\n \"Del\": \"01-2099\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/cli-track2-rg/providers/Microsoft.Storage/storageAccounts/clitrack2sa\",\r\n \"name\": \"clitrack2sa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"Owner\": \"akneema\",\r\n \"Purpose\": \"Testing\",\r\n \"DeleteBy\": \"12-9999\",\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm-pstest-rg/providers/Microsoft.Storage/storageAccounts/iaasvmpstestsa\",\r\n \"name\": \"iaasvmpstestsa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"MABUsed\": \"yes\",\r\n \"Owner\": \"hiaga\",\r\n \"Purpose\": \"testing\",\r\n \"DeleteBy\": \"01-2099\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/DontUse-BlobRestore-BVT-CCY-RG/providers/Microsoft.Storage/storageAccounts/dontuseblobbvtccyrstrall\",\r\n \"name\": \"dontuseblobbvtccyrstrall\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/DontUse-BlobRestore-BVT-CCY-RG/providers/Microsoft.Storage/storageAccounts/dontuseblobbvtccyprefix\",\r\n \"name\": \"dontuseblobbvtccyprefix\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/DontUse-BlobRestore-BVT-CCY-RG/providers/Microsoft.Storage/storageAccounts/dontuseblobbvtccycontnr\",\r\n \"name\": \"dontuseblobbvtccycontnr\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/oss-clicloudtest-rg/providers/Microsoft.Storage/storageAccounts/ossclicloudtestsa\",\r\n \"name\": \"ossclicloudtestsa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"Owner\": \"akneema\",\r\n \"Purpose\": \"Testing\",\r\n \"DeleteBy\": \"12-9999\",\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/prnookal-wcus/providers/Microsoft.Storage/storageAccounts/prnookalwcus\",\r\n \"name\": \"prnookalwcus\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"Owner\": \"prnookal\",\r\n \"DeleteBy\": \"12-2021\",\r\n \"IsMabUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PORTAL.DPP.BVT.BLOB.RESTORE.EXISTING/providers/Microsoft.Storage/storageAccounts/blobsaforrestoreall\",\r\n \"name\": \"blobsaforrestoreall\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PORTAL.DPP.BVT.BLOB.RESTORE.EXISTING/providers/Microsoft.Storage/storageAccounts/blobrestoreopcontainers\",\r\n \"name\": \"blobrestoreopcontainers\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PORTAL.DPP.BVT.BLOB.RESTORE.EXISTING/providers/Microsoft.Storage/storageAccounts/blobrestoreopprefix\",\r\n \"name\": \"blobrestoreopprefix\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PORTAL.DPP.BVT.BLOB.RESTORE.EXISTING/providers/Microsoft.Storage/storageAccounts/blobrestoreopcontainer\",\r\n \"name\": \"blobrestoreopcontainer\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PORTAL.DPP.BVT.BLOB.RESTORE.EXISTING/providers/Microsoft.Storage/storageAccounts/blobrestoreopall\",\r\n \"name\": \"blobrestoreopall\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PORTAL.DPP.BVT.BLOB.RESTORE.EXISTING/providers/Microsoft.Storage/storageAccounts/bloboprestorecontainers\",\r\n \"name\": \"bloboprestorecontainers\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PORTAL.DPP.BVT.BLOB.RESTORE.EXISTING/providers/Microsoft.Storage/storageAccounts/bloboprestoreall\",\r\n \"name\": \"bloboprestoreall\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagargeus/providers/Microsoft.Storage/storageAccounts/hiagargeus\",\r\n \"name\": \"hiagargeus\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akneema-we-rg/providers/Microsoft.Storage/storageAccounts/gb8wepod01otds1\",\r\n \"name\": \"gb8wepod01otds1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGZRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akneema/providers/Microsoft.Storage/storageAccounts/uvqccypod01otds1\",\r\n \"name\": \"uvqccypod01otds1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagaCZR-rg/providers/Microsoft.Storage/storageAccounts/cliczrlrssa\",\r\n \"name\": \"cliczrlrssa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {\r\n \"Owner\": \"akneema\",\r\n \"Purpose\": \"Testing\",\r\n \"DeleteBy\": \"12-9999\",\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseGRSVault/providers/Microsoft.Storage/storageAccounts/frmseapod01otds1\",\r\n \"name\": \"frmseapod01otds1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGZRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseZRS/providers/Microsoft.Storage/storageAccounts/rfoccypod01otds1\",\r\n \"name\": \"rfoccypod01otds1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akneema-we-rg/providers/Microsoft.Storage/storageAccounts/m3dccypod01otds01\",\r\n \"name\": \"m3dccypod01otds01\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/AdkayethBugbash/providers/Microsoft.Storage/storageAccounts/adkayethsfsa\",\r\n \"name\": \"adkayethsfsa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/AdkayethBugbash/providers/Microsoft.Storage/storageAccounts/adkayathesfsabugbash\",\r\n \"name\": \"adkayathesfsabugbash\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.existing/providers/Microsoft.ClassicStorage/storageAccounts/iaasextstore2\",\r\n \"name\": \"iaasextstore2\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"southeastasia\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resources?$filter=resourceType%20eq%20'Microsoft.Storage%2FstorageAccounts'&api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5TdG9yYWdlJTJGc3RvcmFnZUFjY291bnRzJyZhcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resources?$filter=resourceType%20eq%20'Microsoft.ClassicStorage%2FstorageAccounts'&api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5DbGFzc2ljU3RvcmFnZSUyRnN0b3JhZ2VBY2NvdW50cycmYXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e6a21136-a7ea-4f38-97e5-47524c628ec0" + "57aec408-aec2-4f48-b16d-5e219ca4d292" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" @@ -3028,16 +3216,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" + "11986" ], "x-ms-request-id": [ - "4739ff1d-bd23-4690-a662-02cec7159b8b" + "0fb20262-0cdb-444e-8b2f-aaa977e8c3a9" ], "x-ms-correlation-request-id": [ - "4739ff1d-bd23-4690-a662-02cec7159b8b" + "0fb20262-0cdb-444e-8b2f-aaa977e8c3a9" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T100057Z:4739ff1d-bd23-4690-a662-02cec7159b8b" + "JIOINDIAWEST:20220516T161509Z:0fb20262-0cdb-444e-8b2f-aaa977e8c3a9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3046,7 +3234,7 @@ "nosniff" ], "Date": [ - "Sat, 26 Mar 2022 10:00:56 GMT" + "Mon, 16 May 2022 16:15:08 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3055,35 +3243,29 @@ "-1" ], "Content-Length": [ - "32912" + "268" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.existing.crr/providers/Microsoft.Storage/storageAccounts/iaasvmexistingcrrdiag\",\r\n \"name\": \"iaasvmexistingcrrdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"MAB Used\": \"Yes\",\r\n \"DeleteBy\": \"01-2030\",\r\n \"Delete By\": \"01-2030\",\r\n \"Owner\": \"chgonugu\",\r\n \"Purpose\": \"Testing\",\r\n \"AutoShutdown\": \"false\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.existing.crr/providers/Microsoft.Storage/storageAccounts/iaasvmexistingcrrdiag112\",\r\n \"name\": \"iaasvmexistingcrrdiag112\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {\r\n \"Owner\": \"chgonugu\",\r\n \"Purpose\": \"Testing\",\r\n \"MabUsed\": \"Yes\",\r\n \"DeleteBy\": \"01-2025\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.existing.crr/providers/Microsoft.Storage/storageAccounts/iaasvmexistingcrr\",\r\n \"name\": \"iaasvmexistingcrr\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/sambit_rg/providers/Microsoft.Storage/storageAccounts/sarathsa3\",\r\n \"name\": \"sarathsa3\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvmhanaworkload.existing/providers/Microsoft.Storage/storageAccounts/iaasvmhanaworkloadexisti\",\r\n \"name\": \"iaasvmhanaworkloadexisti\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"AutoShutdown\": \"No\",\r\n \"BVT Used\": \"Yes\",\r\n \"Owner\": \"chgonugu\",\r\n \"Purpose\": \"BVT\",\r\n \"DeleteBy\": \"01-2030\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/afsnavigationtest\",\r\n \"name\": \"afsnavigationtest\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/afstbackuptestsa\",\r\n \"name\": \"afstbackuptestsa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.encryptedvm/providers/Microsoft.Storage/storageAccounts/iaasvmencryptedvmdiag170\",\r\n \"name\": \"iaasvmencryptedvmdiag170\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.existing/providers/Microsoft.Storage/storageAccounts/iaasvmexistingdiag1\",\r\n \"name\": \"iaasvmexistingdiag1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.existing/providers/Microsoft.Storage/storageAccounts/iaasextstore1\",\r\n \"name\": \"iaasextstore1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.new/providers/Microsoft.Storage/storageAccounts/iaasvmnewdiag1\",\r\n \"name\": \"iaasvmnewdiag1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.new/providers/Microsoft.Storage/storageAccounts/iaasnewstore1\",\r\n \"name\": \"iaasnewstore1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/IaasVMNavigationTest-RG/providers/Microsoft.Storage/storageAccounts/aasavigationestdiag\",\r\n \"name\": \"aasavigationestdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/IaasVMNavigationTest-RG/providers/Microsoft.Storage/storageAccounts/iaasvmnavigationstore\",\r\n \"name\": \"iaasvmnavigationstore\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pscloudtestrg/providers/Microsoft.Storage/storageAccounts/pscloudtestrgdiag\",\r\n \"name\": \"pscloudtestrgdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MAB Used\": \" Yes\",\r\n \"MABUsed\": \" Yes\",\r\n \"DeleteBy\": \"01-2030\",\r\n \"Purpose\": \"PS bvt\",\r\n \"Owner\": \"sarath\",\r\n \"AutoShutdown\": \"No\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pscloudtestrg/providers/Microsoft.Storage/storageAccounts/psbvtsa2\",\r\n \"name\": \"psbvtsa2\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstestsa8895\",\r\n \"name\": \"pstestsa8895\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstesttargetsa8895\",\r\n \"name\": \"pstesttargetsa8895\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstesttargetsa8896\",\r\n \"name\": \"pstesttargetsa8896\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/afsbackupsa\",\r\n \"name\": \"afsbackupsa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"Owner\": \"sarath\",\r\n \"Purpose\": \" BVT\",\r\n \"DeleteBy\": \"01-2025\",\r\n \"AutoShutdown\": \"No\",\r\n \"MAB Used\": \" Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG54bdf8da/providers/Microsoft.Storage/storageAccounts/pstestsa54bdf8da\",\r\n \"name\": \"pstestsa54bdf8da\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG1e5a278b/providers/Microsoft.Storage/storageAccounts/pstestsa1e5a278b\",\r\n \"name\": \"pstestsa1e5a278b\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG59e1706f/providers/Microsoft.Storage/storageAccounts/pstestsa59e1706f\",\r\n \"name\": \"pstestsa59e1706f\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/storageysci5wbex6jyc\",\r\n \"name\": \"storageysci5wbex6jyc\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/prnookal-rg/providers/Microsoft.Storage/storageAccounts/prnookaltestnob\",\r\n \"name\": \"prnookaltestnob\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"isMABUsed\": \"Yes\",\r\n \" Owner\": \"prnookal@microsoft.com\",\r\n \"DeletBy\": \"12-2021\",\r\n \"Purpose\": \" Testing\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/afsbackupsa1\",\r\n \"name\": \"afsbackupsa1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"Mab Used\": \"yes\",\r\n \"Owner\": \"akkanase\",\r\n \"Purpose\": \"Testing\",\r\n \"DeleteBy\": \"01-2022\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/afsbackupsa2\",\r\n \"name\": \"afsbackupsa2\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseTest/providers/Microsoft.Storage/storageAccounts/afsfilesharetest\",\r\n \"name\": \"afsfilesharetest\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/afsbackupsa3\",\r\n \"name\": \"afsbackupsa3\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/afsbackupsa0\",\r\n \"name\": \"afsbackupsa0\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pscloudtest-diskbackup-existing/providers/Microsoft.Storage/storageAccounts/1vnseapod01otds1\",\r\n \"name\": \"1vnseapod01otds1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGZRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseAFSTest/providers/Microsoft.Storage/storageAccounts/akkanaseafssa\",\r\n \"name\": \"akkanaseafssa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MAB Used\": \"Yes\",\r\n \"Owner\": \"akkanase\",\r\n \"Purpose\": \"Testing\",\r\n \"Delete By\": \"05-202\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseAFSTest/providers/Microsoft.Storage/storageAccounts/akkanasembpd2\",\r\n \"name\": \"akkanasembpd2\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MAB Used\": \"Yes\",\r\n \"Purpose\": \"Testing\",\r\n \"Owner\": \"akkanase\",\r\n \"Delete By\": \"05-2022\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseCMK/providers/Microsoft.Storage/storageAccounts/akkanase\",\r\n \"name\": \"akkanase\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"DeleteBy\": \"05-2023\",\r\n \"Owner\": \"akkanase\",\r\n \"Purpose\": \"Testing\",\r\n \"MAB Used\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/cmk.system/providers/Microsoft.Storage/storageAccounts/cmkautomationstore\",\r\n \"name\": \"cmkautomationstore\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"Delete By\": \"05-2050\",\r\n \"MAB Used\": \" Yes\",\r\n \"Owner\": \"akkanase\",\r\n \"Purpose\": \" BVT\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG235879ba/providers/Microsoft.Storage/storageAccounts/pstestsa235879ba\",\r\n \"name\": \"pstestsa235879ba\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/disk-bvt-test-rg/providers/Microsoft.Storage/storageAccounts/hv3seapod01otds1\",\r\n \"name\": \"hv3seapod01otds1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGZRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/DoNotUse-OSS-BVT-SEA-RG/providers/Microsoft.Storage/storageAccounts/dontuseossrestoreasfile\",\r\n \"name\": \"dontuseossrestoreasfile\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MAB Used\": \" Yes\",\r\n \" Owner\": \"akkanase\",\r\n \"Purpose\": \"BV\",\r\n \"Delete By\": \"05-2020\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseAFSTest/providers/Microsoft.Storage/storageAccounts/akkanaseafsa2\",\r\n \"name\": \"akkanaseafsa2\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseCMK/providers/Microsoft.Storage/storageAccounts/0byseapod01otds1\",\r\n \"name\": \"0byseapod01otds1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGZRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/9exwuspod01otds1\",\r\n \"name\": \"9exwuspod01otds1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/02xseacan01otds1\",\r\n \"name\": \"02xseacan01otds1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGZRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseMAB/providers/Microsoft.Storage/storageAccounts/dnhccypod01otds1\",\r\n \"name\": \"dnhccypod01otds1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rguzio7xhypi/providers/Microsoft.Storage/storageAccounts/clitest4b24ibpr3ztyhwo23\",\r\n \"name\": \"clitest4b24ibpr3ztyhwo23\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rgsiaa3ljqg5/providers/Microsoft.Storage/storageAccounts/clitestgd6i34czs3jb3rdtc\",\r\n \"name\": \"clitestgd6i34czs3jb3rdtc\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rgjxpjikqjjw/providers/Microsoft.Storage/storageAccounts/clitestjkhq2kpsal665atqe\",\r\n \"name\": \"clitestjkhq2kpsal665atqe\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rgwwhxyyhl2u/providers/Microsoft.Storage/storageAccounts/clitestdggdsdbtfa6vq5n5o\",\r\n \"name\": \"clitestdggdsdbtfa6vq5n5o\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rgm44mrkvygk/providers/Microsoft.Storage/storageAccounts/clitestodvd3xsftt63go6dk\",\r\n \"name\": \"clitestodvd3xsftt63go6dk\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rgdy7jf3qqzd/providers/Microsoft.Storage/storageAccounts/clitestnbsma3ftf2yugilxq\",\r\n \"name\": \"clitestnbsma3ftf2yugilxq\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rgl5tlzqo2pt/providers/Microsoft.Storage/storageAccounts/clitestgn64zidsnwe3ndjp5\",\r\n \"name\": \"clitestgn64zidsnwe3ndjp5\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rg73eqbdp4g5/providers/Microsoft.Storage/storageAccounts/clitestzfhrqsr4m24iwnjy7\",\r\n \"name\": \"clitestzfhrqsr4m24iwnjy7\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rg73eqbdp4g5/providers/Microsoft.Storage/storageAccounts/clitestukhlrarahpoebmaln\",\r\n \"name\": \"clitestukhlrarahpoebmaln\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/prnookal-prod/providers/Microsoft.Storage/storageAccounts/prnookalprod\",\r\n \"name\": \"prnookalprod\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"japaneast\",\r\n \"tags\": {\r\n \"IsMabUsed\": \"Yes\",\r\n \"Owner\": \"prnookal\",\r\n \"DeleteBy\": \"12-2021\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/cloud-shell-storage-centralindia/providers/Microsoft.Storage/storageAccounts/csg10032000d221b981\",\r\n \"name\": \"csg10032000d221b981\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centralindia\",\r\n \"tags\": {\r\n \"ms-resource-usage\": \"azure-cloud-shell\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/cloud-shell-storage-centralindia/providers/Microsoft.Storage/storageAccounts/csg10032000b56ab138\",\r\n \"name\": \"csg10032000b56ab138\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centralindia\",\r\n \"tags\": {\r\n \"ms-resource-usage\": \"azure-cloud-shell\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/cloud-shell-storage-centralindia/providers/Microsoft.Storage/storageAccounts/csg10033fffacb0d110\",\r\n \"name\": \"csg10033fffacb0d110\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centralindia\",\r\n \"tags\": {\r\n \"ms-resource-usage\": \"azure-cloud-shell\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/cloud-shell-storage-centralindia/providers/Microsoft.Storage/storageAccounts/csg1003bffda7dcd176\",\r\n \"name\": \"csg1003bffda7dcd176\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centralindia\",\r\n \"tags\": {\r\n \"ms-resource-usage\": \"azure-cloud-shell\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvmsqlworkload.existing.crr/providers/Microsoft.Storage/storageAccounts/iaasvmsqlworkloadexistin\",\r\n \"name\": \"iaasvmsqlworkloadexistin\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {\r\n \"Owner\": \"chgonugu\",\r\n \"Purpose\": \"BVT\",\r\n \"MabUsed\": \"Yes\",\r\n \"DeleteBy\": \"12-2099\",\r\n \"AutoShutdown\": \"No\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/Blob-Backup/providers/Microsoft.Storage/storageAccounts/testblobbackup\",\r\n \"name\": \"testblobbackup\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/fzejupmyclivaultasrcache\",\r\n \"name\": \"fzejupmyclivaultasrcache\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseCcyGrs/providers/Microsoft.Storage/storageAccounts/storeimqyzvpnwrv5a\",\r\n \"name\": \"storeimqyzvpnwrv5a\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/sarath-rg/providers/Microsoft.Storage/storageAccounts/clitestingsa\",\r\n \"name\": \"clitestingsa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/sarath-rg/providers/Microsoft.Storage/storageAccounts/axiccypod01otds1\",\r\n \"name\": \"axiccypod01otds1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseZRS/providers/Microsoft.Storage/storageAccounts/akanasezrsstorag\",\r\n \"name\": \"akanasezrsstorag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {\r\n \"Purpose\": \"Testing\",\r\n \"Owner\": \"akkanase\",\r\n \"Mab Used\": \"yes\",\r\n \"DeleteBy\": \"01-2025\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/sarath-rg/providers/Microsoft.Storage/storageAccounts/sarathsacli\",\r\n \"name\": \"sarathsacli\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm-clitest-rg/providers/Microsoft.Storage/storageAccounts/iaasvmclitestsa\",\r\n \"name\": \"iaasvmclitestsa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"Owner\": \"akneema\",\r\n \"MABUsed\": \"Yes\",\r\n \"Purpose\": \"CLITest\",\r\n \"DeleteBy\": \"12-9999\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.Storage/storageAccounts/hiagasa\",\r\n \"name\": \"hiagasa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\",\r\n \"Purpose\": \"Testing\",\r\n \"DeleteBy\": \"01-2099\",\r\n \"Owner\": \"hiaga\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.Storage/storageAccounts/akneemasaecy\",\r\n \"name\": \"akneemasaecy\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {\r\n \"Owner\": \"akneema\",\r\n \"Purpose\": \"Testing\",\r\n \"MABUsed\": \"Yes\",\r\n \"DeleteBy\": \"12-9999\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/oss-clitest-rg/providers/Microsoft.Storage/storageAccounts/ossclitestsa\",\r\n \"name\": \"ossclitestsa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"Owner\": \"akneema\",\r\n \"Purpose\": \"Testing\",\r\n \"MABUsed\": \"Yes\",\r\n \"DeleteBy\": \"12-9999\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/oss-pstest-rg/providers/Microsoft.Storage/storageAccounts/osspstestsa\",\r\n \"name\": \"osspstestsa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"MABUsed\": \"Ye\",\r\n \"Owne\": \"hiaga\",\r\n \"Purpose\": \"esting\",\r\n \"Del\": \"01-2099\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/cli-track2-rg/providers/Microsoft.Storage/storageAccounts/clitrack2sa\",\r\n \"name\": \"clitrack2sa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"Owner\": \"akneema\",\r\n \"Purpose\": \"Testing\",\r\n \"DeleteBy\": \"12-9999\",\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm-pstest-rg/providers/Microsoft.Storage/storageAccounts/iaasvmpstestsa\",\r\n \"name\": \"iaasvmpstestsa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"MABUsed\": \"yes\",\r\n \"Owner\": \"hiaga\",\r\n \"Purpose\": \"testing\",\r\n \"DeleteBy\": \"01-2099\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/DontUse-BlobRestore-BVT-CCY-RG/providers/Microsoft.Storage/storageAccounts/dontuseblobbvtccyrstrall\",\r\n \"name\": \"dontuseblobbvtccyrstrall\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/DontUse-BlobRestore-BVT-CCY-RG/providers/Microsoft.Storage/storageAccounts/dontuseblobbvtccyprefix\",\r\n \"name\": \"dontuseblobbvtccyprefix\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/DontUse-BlobRestore-BVT-CCY-RG/providers/Microsoft.Storage/storageAccounts/dontuseblobbvtccycontnr\",\r\n \"name\": \"dontuseblobbvtccycontnr\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/oss-clicloudtest-rg/providers/Microsoft.Storage/storageAccounts/ossclicloudtestsa\",\r\n \"name\": \"ossclicloudtestsa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"Owner\": \"akneema\",\r\n \"Purpose\": \"Testing\",\r\n \"DeleteBy\": \"12-9999\",\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/prnookal-wcus/providers/Microsoft.Storage/storageAccounts/prnookalwcus\",\r\n \"name\": \"prnookalwcus\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"Owner\": \"prnookal\",\r\n \"DeleteBy\": \"12-2021\",\r\n \"IsMabUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PORTAL.DPP.BVT.BLOB.RESTORE.EXISTING/providers/Microsoft.Storage/storageAccounts/blobsaforrestoreall\",\r\n \"name\": \"blobsaforrestoreall\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PORTAL.DPP.BVT.BLOB.RESTORE.EXISTING/providers/Microsoft.Storage/storageAccounts/blobrestoreopcontainers\",\r\n \"name\": \"blobrestoreopcontainers\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PORTAL.DPP.BVT.BLOB.RESTORE.EXISTING/providers/Microsoft.Storage/storageAccounts/blobrestoreopprefix\",\r\n \"name\": \"blobrestoreopprefix\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PORTAL.DPP.BVT.BLOB.RESTORE.EXISTING/providers/Microsoft.Storage/storageAccounts/blobrestoreopcontainer\",\r\n \"name\": \"blobrestoreopcontainer\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PORTAL.DPP.BVT.BLOB.RESTORE.EXISTING/providers/Microsoft.Storage/storageAccounts/blobrestoreopall\",\r\n \"name\": \"blobrestoreopall\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PORTAL.DPP.BVT.BLOB.RESTORE.EXISTING/providers/Microsoft.Storage/storageAccounts/bloboprestorecontainers\",\r\n \"name\": \"bloboprestorecontainers\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PORTAL.DPP.BVT.BLOB.RESTORE.EXISTING/providers/Microsoft.Storage/storageAccounts/bloboprestoreall\",\r\n \"name\": \"bloboprestoreall\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagargeus/providers/Microsoft.Storage/storageAccounts/hiagargeus\",\r\n \"name\": \"hiagargeus\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akneema-we-rg/providers/Microsoft.Storage/storageAccounts/gb8wepod01otds1\",\r\n \"name\": \"gb8wepod01otds1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGZRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akneema/providers/Microsoft.Storage/storageAccounts/uvqccypod01otds1\",\r\n \"name\": \"uvqccypod01otds1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagaCZR-rg/providers/Microsoft.Storage/storageAccounts/cliczrlrssa\",\r\n \"name\": \"cliczrlrssa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {\r\n \"Owner\": \"akneema\",\r\n \"Purpose\": \"Testing\",\r\n \"DeleteBy\": \"12-9999\",\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseGRSVault/providers/Microsoft.Storage/storageAccounts/frmseapod01otds1\",\r\n \"name\": \"frmseapod01otds1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGZRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseZRS/providers/Microsoft.Storage/storageAccounts/rfoccypod01otds1\",\r\n \"name\": \"rfoccypod01otds1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akneema-we-rg/providers/Microsoft.Storage/storageAccounts/m3dccypod01otds01\",\r\n \"name\": \"m3dccypod01otds01\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/AdkayethBugbash/providers/Microsoft.Storage/storageAccounts/adkayethsfsa\",\r\n \"name\": \"adkayethsfsa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/AdkayethBugbash/providers/Microsoft.Storage/storageAccounts/adkayathesfsabugbash\",\r\n \"name\": \"adkayathesfsabugbash\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.existing/providers/Microsoft.ClassicStorage/storageAccounts/iaasextstore2\",\r\n \"name\": \"iaasextstore2\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"southeastasia\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3Bstorage%3Bpstestrg8895%3Bpstestsa8895/protectedItems/AzureFileShare%3B698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959/recoveryPoints/33475003016675/restore?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCc3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9wcm90ZWN0ZWRJdGVtcy9BenVyZUZpbGVTaGFyZSUzQjY5OGRmNTk1OTQ4ZTIzNTVmMmJiNzQ0YTQxY2YyNDVkNGJhMTI1NWQ5Njk5Y2MzYzJhZDFmNTA0NWUxNzc5NTkvcmVjb3ZlcnlQb2ludHMvMzM0NzUwMDMwMTY2NzUvcmVzdG9yZT9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", - "RequestMethod": "POST", - "RequestBody": "{\r\n \"properties\": {\r\n \"objectType\": \"AzureFileShareRestoreRequest\",\r\n \"recoveryType\": \"OriginalLocation\",\r\n \"sourceResourceId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstestsa8895\",\r\n \"copyOptions\": \"Overwrite\",\r\n \"restoreRequestType\": \"ItemLevelRestore\",\r\n \"restoreFileSpecs\": [\r\n {\r\n \"path\": \"file1.txt\",\r\n \"fileSpecType\": \"File\"\r\n },\r\n {\r\n \"path\": \"file2.txt\",\r\n \"fileSpecType\": \"File\"\r\n }\r\n ]\r\n }\r\n}", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resources?$filter=resourceType%20eq%20'Microsoft.Storage%2FstorageAccounts'&api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5TdG9yYWdlJTJGc3RvcmFnZUFjY291bnRzJyZhcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ef85bfee-a58f-425b-bdf6-6efd860f2fcd" + "91ca1cd7-c0c8-483b-b1ed-64f85417e18a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "560" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" ] }, "ResponseHeaders": { @@ -3093,76 +3275,57 @@ "Pragma": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;storage;pstestrg8895;pstestsa8895/protectedItems/AzureFileShare;698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959/operationResults/263e6342-e9d5-4653-b55c-acaf87dcb360?api-version=2021-12-01" - ], - "Retry-After": [ - "60" - ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;storage;pstestrg8895;pstestsa8895/protectedItems/AzureFileShare;698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959/operationsStatus/263e6342-e9d5-4653-b55c-acaf87dcb360?api-version=2021-12-01" - ], - "X-Content-Type-Options": [ - "nosniff" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" ], "x-ms-request-id": [ - "0cc25ff9-28b9-4f31-ae3d-538ffa4670d8" + "66051541-5bf0-45bf-a8df-a60b84c8f074" ], - "x-ms-client-request-id": [ - "ef85bfee-a58f-425b-bdf6-6efd860f2fcd", - "ef85bfee-a58f-425b-bdf6-6efd860f2fcd" + "x-ms-correlation-request-id": [ + "66051541-5bf0-45bf-a8df-a60b84c8f074" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T161047Z:66051541-5bf0-45bf-a8df-a60b84c8f074" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" - ], - "x-ms-correlation-request-id": [ - "0cc25ff9-28b9-4f31-ae3d-538ffa4670d8" - ], - "x-ms-routing-request-id": [ - "WESTINDIA:20220326T095642Z:0cc25ff9-28b9-4f31-ae3d-538ffa4670d8" + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Sat, 26 Mar 2022 09:56:41 GMT" + "Mon, 16 May 2022 16:10:47 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" ], "Expires": [ "-1" ], "Content-Length": [ - "0" + "34499" ] }, - "ResponseBody": "", - "StatusCode": 202 + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.existing.crr/providers/Microsoft.Storage/storageAccounts/iaasvmexistingcrrdiag\",\r\n \"name\": \"iaasvmexistingcrrdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"MAB Used\": \"Yes\",\r\n \"DeleteBy\": \"01-2030\",\r\n \"Delete By\": \"01-2030\",\r\n \"Owner\": \"chgonugu\",\r\n \"Purpose\": \"Testing\",\r\n \"AutoShutdown\": \"false\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.existing.crr/providers/Microsoft.Storage/storageAccounts/iaasvmexistingcrrdiag112\",\r\n \"name\": \"iaasvmexistingcrrdiag112\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {\r\n \"Owner\": \"chgonugu\",\r\n \"Purpose\": \"Testing\",\r\n \"MabUsed\": \"Yes\",\r\n \"DeleteBy\": \"01-2025\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.existing.crr/providers/Microsoft.Storage/storageAccounts/iaasvmexistingcrr\",\r\n \"name\": \"iaasvmexistingcrr\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/sambit_rg/providers/Microsoft.Storage/storageAccounts/sarathsa3\",\r\n \"name\": \"sarathsa3\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvmhanaworkload.existing/providers/Microsoft.Storage/storageAccounts/iaasvmhanaworkloadexisti\",\r\n \"name\": \"iaasvmhanaworkloadexisti\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"AutoShutdown\": \"No\",\r\n \"BVT Used\": \"Yes\",\r\n \"Owner\": \"chgonugu\",\r\n \"Purpose\": \"BVT\",\r\n \"DeleteBy\": \"01-2030\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/afsnavigationtest\",\r\n \"name\": \"afsnavigationtest\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/afstbackuptestsa\",\r\n \"name\": \"afstbackuptestsa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.encryptedvm/providers/Microsoft.Storage/storageAccounts/iaasvmencryptedvmdiag170\",\r\n \"name\": \"iaasvmencryptedvmdiag170\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.existing/providers/Microsoft.Storage/storageAccounts/iaasvmexistingdiag1\",\r\n \"name\": \"iaasvmexistingdiag1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.existing/providers/Microsoft.Storage/storageAccounts/iaasextstore1\",\r\n \"name\": \"iaasextstore1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.new/providers/Microsoft.Storage/storageAccounts/iaasvmnewdiag1\",\r\n \"name\": \"iaasvmnewdiag1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.new/providers/Microsoft.Storage/storageAccounts/iaasnewstore1\",\r\n \"name\": \"iaasnewstore1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/IaasVMNavigationTest-RG/providers/Microsoft.Storage/storageAccounts/aasavigationestdiag\",\r\n \"name\": \"aasavigationestdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/IaasVMNavigationTest-RG/providers/Microsoft.Storage/storageAccounts/iaasvmnavigationstore\",\r\n \"name\": \"iaasvmnavigationstore\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pscloudtestrg/providers/Microsoft.Storage/storageAccounts/pscloudtestrgdiag\",\r\n \"name\": \"pscloudtestrgdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MAB Used\": \" Yes\",\r\n \"MABUsed\": \" Yes\",\r\n \"DeleteBy\": \"01-2030\",\r\n \"Purpose\": \"PS bvt\",\r\n \"Owner\": \"sarath\",\r\n \"AutoShutdown\": \"No\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pscloudtestrg/providers/Microsoft.Storage/storageAccounts/psbvtsa2\",\r\n \"name\": \"psbvtsa2\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstestsa8895\",\r\n \"name\": \"pstestsa8895\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstesttargetsa8895\",\r\n \"name\": \"pstesttargetsa8895\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstesttargetsa8896\",\r\n \"name\": \"pstesttargetsa8896\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/afsbackupsa\",\r\n \"name\": \"afsbackupsa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"Owner\": \"sarath\",\r\n \"Purpose\": \" BVT\",\r\n \"DeleteBy\": \"01-2025\",\r\n \"AutoShutdown\": \"No\",\r\n \"MAB Used\": \" Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG54bdf8da/providers/Microsoft.Storage/storageAccounts/pstestsa54bdf8da\",\r\n \"name\": \"pstestsa54bdf8da\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG1e5a278b/providers/Microsoft.Storage/storageAccounts/pstestsa1e5a278b\",\r\n \"name\": \"pstestsa1e5a278b\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG59e1706f/providers/Microsoft.Storage/storageAccounts/pstestsa59e1706f\",\r\n \"name\": \"pstestsa59e1706f\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/storageysci5wbex6jyc\",\r\n \"name\": \"storageysci5wbex6jyc\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/prnookal-rg/providers/Microsoft.Storage/storageAccounts/prnookaltestnob\",\r\n \"name\": \"prnookaltestnob\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"isMABUsed\": \"Yes\",\r\n \" Owner\": \"prnookal@microsoft.com\",\r\n \"DeletBy\": \"12-2021\",\r\n \"Purpose\": \" Testing\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/afsbackupsa1\",\r\n \"name\": \"afsbackupsa1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"Mab Used\": \"yes\",\r\n \"Owner\": \"akkanase\",\r\n \"Purpose\": \"Testing\",\r\n \"DeleteBy\": \"01-2022\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/afsbackupsa2\",\r\n \"name\": \"afsbackupsa2\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseTest/providers/Microsoft.Storage/storageAccounts/afsfilesharetest\",\r\n \"name\": \"afsfilesharetest\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/afsbackupsa3\",\r\n \"name\": \"afsbackupsa3\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/afsbackupsa0\",\r\n \"name\": \"afsbackupsa0\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pscloudtest-diskbackup-existing/providers/Microsoft.Storage/storageAccounts/1vnseapod01otds1\",\r\n \"name\": \"1vnseapod01otds1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGZRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseAFSTest/providers/Microsoft.Storage/storageAccounts/akkanaseafssa\",\r\n \"name\": \"akkanaseafssa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MAB Used\": \"Yes\",\r\n \"Owner\": \"akkanase\",\r\n \"Purpose\": \"Testing\",\r\n \"Delete By\": \"05-202\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseAFSTest/providers/Microsoft.Storage/storageAccounts/akkanasembpd2\",\r\n \"name\": \"akkanasembpd2\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MAB Used\": \"Yes\",\r\n \"Purpose\": \"Testing\",\r\n \"Owner\": \"akkanase\",\r\n \"Delete By\": \"05-2022\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseCMK/providers/Microsoft.Storage/storageAccounts/akkanase\",\r\n \"name\": \"akkanase\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"DeleteBy\": \"05-2023\",\r\n \"Owner\": \"akkanase\",\r\n \"Purpose\": \"Testing\",\r\n \"MAB Used\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/cmk.system/providers/Microsoft.Storage/storageAccounts/cmkautomationstore\",\r\n \"name\": \"cmkautomationstore\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"Delete By\": \"05-2050\",\r\n \"MAB Used\": \" Yes\",\r\n \"Owner\": \"akkanase\",\r\n \"Purpose\": \" BVT\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG235879ba/providers/Microsoft.Storage/storageAccounts/pstestsa235879ba\",\r\n \"name\": \"pstestsa235879ba\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/disk-bvt-test-rg/providers/Microsoft.Storage/storageAccounts/hv3seapod01otds1\",\r\n \"name\": \"hv3seapod01otds1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGZRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/DoNotUse-OSS-BVT-SEA-RG/providers/Microsoft.Storage/storageAccounts/dontuseossrestoreasfile\",\r\n \"name\": \"dontuseossrestoreasfile\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MAB Used\": \" Yes\",\r\n \" Owner\": \"akkanase\",\r\n \"Purpose\": \"BV\",\r\n \"Delete By\": \"05-2020\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseAFSTest/providers/Microsoft.Storage/storageAccounts/akkanaseafsa2\",\r\n \"name\": \"akkanaseafsa2\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseCMK/providers/Microsoft.Storage/storageAccounts/0byseapod01otds1\",\r\n \"name\": \"0byseapod01otds1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGZRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/9exwuspod01otds1\",\r\n \"name\": \"9exwuspod01otds1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/02xseacan01otds1\",\r\n \"name\": \"02xseacan01otds1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGZRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseMAB/providers/Microsoft.Storage/storageAccounts/dnhccypod01otds1\",\r\n \"name\": \"dnhccypod01otds1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rguzio7xhypi/providers/Microsoft.Storage/storageAccounts/clitest4b24ibpr3ztyhwo23\",\r\n \"name\": \"clitest4b24ibpr3ztyhwo23\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rgsiaa3ljqg5/providers/Microsoft.Storage/storageAccounts/clitestgd6i34czs3jb3rdtc\",\r\n \"name\": \"clitestgd6i34czs3jb3rdtc\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rgjxpjikqjjw/providers/Microsoft.Storage/storageAccounts/clitestjkhq2kpsal665atqe\",\r\n \"name\": \"clitestjkhq2kpsal665atqe\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rgwwhxyyhl2u/providers/Microsoft.Storage/storageAccounts/clitestdggdsdbtfa6vq5n5o\",\r\n \"name\": \"clitestdggdsdbtfa6vq5n5o\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rgm44mrkvygk/providers/Microsoft.Storage/storageAccounts/clitestodvd3xsftt63go6dk\",\r\n \"name\": \"clitestodvd3xsftt63go6dk\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rgdy7jf3qqzd/providers/Microsoft.Storage/storageAccounts/clitestnbsma3ftf2yugilxq\",\r\n \"name\": \"clitestnbsma3ftf2yugilxq\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rgl5tlzqo2pt/providers/Microsoft.Storage/storageAccounts/clitestgn64zidsnwe3ndjp5\",\r\n \"name\": \"clitestgn64zidsnwe3ndjp5\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rg73eqbdp4g5/providers/Microsoft.Storage/storageAccounts/clitestzfhrqsr4m24iwnjy7\",\r\n \"name\": \"clitestzfhrqsr4m24iwnjy7\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rg73eqbdp4g5/providers/Microsoft.Storage/storageAccounts/clitestukhlrarahpoebmaln\",\r\n \"name\": \"clitestukhlrarahpoebmaln\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/prnookal-prod/providers/Microsoft.Storage/storageAccounts/prnookalprod\",\r\n \"name\": \"prnookalprod\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"japaneast\",\r\n \"tags\": {\r\n \"IsMabUsed\": \"Yes\",\r\n \"Owner\": \"prnookal\",\r\n \"DeleteBy\": \"12-2021\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/cloud-shell-storage-centralindia/providers/Microsoft.Storage/storageAccounts/csg10032000d221b981\",\r\n \"name\": \"csg10032000d221b981\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centralindia\",\r\n \"tags\": {\r\n \"ms-resource-usage\": \"azure-cloud-shell\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/cloud-shell-storage-centralindia/providers/Microsoft.Storage/storageAccounts/csg10032000b56ab138\",\r\n \"name\": \"csg10032000b56ab138\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centralindia\",\r\n \"tags\": {\r\n \"ms-resource-usage\": \"azure-cloud-shell\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/cloud-shell-storage-centralindia/providers/Microsoft.Storage/storageAccounts/csg10033fffacb0d110\",\r\n \"name\": \"csg10033fffacb0d110\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centralindia\",\r\n \"tags\": {\r\n \"ms-resource-usage\": \"azure-cloud-shell\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/cloud-shell-storage-centralindia/providers/Microsoft.Storage/storageAccounts/csg1003bffda7dcd176\",\r\n \"name\": \"csg1003bffda7dcd176\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centralindia\",\r\n \"tags\": {\r\n \"ms-resource-usage\": \"azure-cloud-shell\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/cloud-shell-storage-centralindia/providers/Microsoft.Storage/storageAccounts/csg100320004f433d62\",\r\n \"name\": \"csg100320004f433d62\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centralindia\",\r\n \"tags\": {\r\n \"ms-resource-usage\": \"azure-cloud-shell\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvmsqlworkload.existing.crr/providers/Microsoft.Storage/storageAccounts/iaasvmsqlworkloadexistin\",\r\n \"name\": \"iaasvmsqlworkloadexistin\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {\r\n \"Owner\": \"chgonugu\",\r\n \"Purpose\": \"BVT\",\r\n \"MabUsed\": \"Yes\",\r\n \"DeleteBy\": \"12-2099\",\r\n \"AutoShutdown\": \"No\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/Blob-Backup/providers/Microsoft.Storage/storageAccounts/testblobbackup\",\r\n \"name\": \"testblobbackup\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/fzejupmyclivaultasrcache\",\r\n \"name\": \"fzejupmyclivaultasrcache\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rgm7e2kiyzoto4iaicwwkdomftb7zki5kh2xxwh6yyskpflgsrpkrygkpwpdcltggyb/providers/Microsoft.Storage/storageAccounts/clitest7gyg4gqt4sxirqdkc\",\r\n \"name\": \"clitest7gyg4gqt4sxirqdkc\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rglx72s62qimgelno2o6rr34a5ovdikhzq5k6dc7773qrbodtnrdcguic5hpiciscne/providers/Microsoft.Storage/storageAccounts/clitestva4qmim2g5c3cb2tz\",\r\n \"name\": \"clitestva4qmim2g5c3cb2tz\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rg7leptekwovuif35xu6k3mb6lhszl4fkmod7jkg7yckt4v7epruxvjo6ty2hzsurwh/providers/Microsoft.Storage/storageAccounts/clitest3cgxtcwowikxqlds4\",\r\n \"name\": \"clitest3cgxtcwowikxqlds4\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseCcyGrs/providers/Microsoft.Storage/storageAccounts/storeimqyzvpnwrv5a\",\r\n \"name\": \"storeimqyzvpnwrv5a\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/sarath-rg/providers/Microsoft.Storage/storageAccounts/clitestingsa\",\r\n \"name\": \"clitestingsa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/sarath-rg/providers/Microsoft.Storage/storageAccounts/axiccypod01otds1\",\r\n \"name\": \"axiccypod01otds1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseZRS/providers/Microsoft.Storage/storageAccounts/akanasezrsstorag\",\r\n \"name\": \"akanasezrsstorag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {\r\n \"Purpose\": \"Testing\",\r\n \"Owner\": \"akkanase\",\r\n \"Mab Used\": \"yes\",\r\n \"DeleteBy\": \"01-2025\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/sarath-rg/providers/Microsoft.Storage/storageAccounts/sarathsacli\",\r\n \"name\": \"sarathsacli\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm-clitest-rg/providers/Microsoft.Storage/storageAccounts/iaasvmclitestsa\",\r\n \"name\": \"iaasvmclitestsa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"Owner\": \"akneema\",\r\n \"MABUsed\": \"Yes\",\r\n \"Purpose\": \"CLITest\",\r\n \"DeleteBy\": \"12-9999\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.Storage/storageAccounts/hiagasa\",\r\n \"name\": \"hiagasa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\",\r\n \"Purpose\": \"Testing\",\r\n \"DeleteBy\": \"01-2099\",\r\n \"Owner\": \"hiaga\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.Storage/storageAccounts/akneemasaecy\",\r\n \"name\": \"akneemasaecy\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {\r\n \"Owner\": \"akneema\",\r\n \"Purpose\": \"Testing\",\r\n \"MABUsed\": \"Yes\",\r\n \"DeleteBy\": \"12-9999\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/oss-clitest-rg/providers/Microsoft.Storage/storageAccounts/ossclitestsa\",\r\n \"name\": \"ossclitestsa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"Owner\": \"akneema\",\r\n \"Purpose\": \"Testing\",\r\n \"MABUsed\": \"Yes\",\r\n \"DeleteBy\": \"12-9999\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/oss-pstest-rg/providers/Microsoft.Storage/storageAccounts/osspstestsa\",\r\n \"name\": \"osspstestsa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"MABUsed\": \"Ye\",\r\n \"Owne\": \"hiaga\",\r\n \"Purpose\": \"esting\",\r\n \"Del\": \"01-2099\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/cli-track2-rg/providers/Microsoft.Storage/storageAccounts/clitrack2sa\",\r\n \"name\": \"clitrack2sa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"Owner\": \"akneema\",\r\n \"Purpose\": \"Testing\",\r\n \"DeleteBy\": \"12-9999\",\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm-pstest-rg/providers/Microsoft.Storage/storageAccounts/iaasvmpstestsa\",\r\n \"name\": \"iaasvmpstestsa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"MABUsed\": \"yes\",\r\n \"Owner\": \"hiaga\",\r\n \"Purpose\": \"testing\",\r\n \"DeleteBy\": \"01-2099\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/DontUse-BlobRestore-BVT-CCY-RG/providers/Microsoft.Storage/storageAccounts/dontuseblobbvtccyrstrall\",\r\n \"name\": \"dontuseblobbvtccyrstrall\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/DontUse-BlobRestore-BVT-CCY-RG/providers/Microsoft.Storage/storageAccounts/dontuseblobbvtccyprefix\",\r\n \"name\": \"dontuseblobbvtccyprefix\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/DontUse-BlobRestore-BVT-CCY-RG/providers/Microsoft.Storage/storageAccounts/dontuseblobbvtccycontnr\",\r\n \"name\": \"dontuseblobbvtccycontnr\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/oss-clicloudtest-rg/providers/Microsoft.Storage/storageAccounts/ossclicloudtestsa\",\r\n \"name\": \"ossclicloudtestsa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"Owner\": \"akneema\",\r\n \"Purpose\": \"Testing\",\r\n \"DeleteBy\": \"12-9999\",\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/prnookal-wcus/providers/Microsoft.Storage/storageAccounts/prnookalwcus\",\r\n \"name\": \"prnookalwcus\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"Owner\": \"prnookal\",\r\n \"DeleteBy\": \"12-2021\",\r\n \"IsMabUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PORTAL.DPP.BVT.BLOB.RESTORE.EXISTING/providers/Microsoft.Storage/storageAccounts/blobsaforrestoreall\",\r\n \"name\": \"blobsaforrestoreall\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PORTAL.DPP.BVT.BLOB.RESTORE.EXISTING/providers/Microsoft.Storage/storageAccounts/blobrestoreopcontainers\",\r\n \"name\": \"blobrestoreopcontainers\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PORTAL.DPP.BVT.BLOB.RESTORE.EXISTING/providers/Microsoft.Storage/storageAccounts/blobrestoreopprefix\",\r\n \"name\": \"blobrestoreopprefix\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PORTAL.DPP.BVT.BLOB.RESTORE.EXISTING/providers/Microsoft.Storage/storageAccounts/blobrestoreopcontainer\",\r\n \"name\": \"blobrestoreopcontainer\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PORTAL.DPP.BVT.BLOB.RESTORE.EXISTING/providers/Microsoft.Storage/storageAccounts/blobrestoreopall\",\r\n \"name\": \"blobrestoreopall\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PORTAL.DPP.BVT.BLOB.RESTORE.EXISTING/providers/Microsoft.Storage/storageAccounts/bloboprestorecontainers\",\r\n \"name\": \"bloboprestorecontainers\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PORTAL.DPP.BVT.BLOB.RESTORE.EXISTING/providers/Microsoft.Storage/storageAccounts/bloboprestoreall\",\r\n \"name\": \"bloboprestoreall\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagargeus/providers/Microsoft.Storage/storageAccounts/hiagargeus\",\r\n \"name\": \"hiagargeus\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akneema-we-rg/providers/Microsoft.Storage/storageAccounts/gb8wepod01otds1\",\r\n \"name\": \"gb8wepod01otds1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGZRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akneema/providers/Microsoft.Storage/storageAccounts/uvqccypod01otds1\",\r\n \"name\": \"uvqccypod01otds1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagaCZR-rg/providers/Microsoft.Storage/storageAccounts/cliczrlrssa\",\r\n \"name\": \"cliczrlrssa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {\r\n \"Owner\": \"akneema\",\r\n \"Purpose\": \"Testing\",\r\n \"DeleteBy\": \"12-9999\",\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseGRSVault/providers/Microsoft.Storage/storageAccounts/frmseapod01otds1\",\r\n \"name\": \"frmseapod01otds1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGZRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseZRS/providers/Microsoft.Storage/storageAccounts/rfoccypod01otds1\",\r\n \"name\": \"rfoccypod01otds1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akneema-we-rg/providers/Microsoft.Storage/storageAccounts/m3dccypod01otds01\",\r\n \"name\": \"m3dccypod01otds01\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/AdkayethBugbash/providers/Microsoft.Storage/storageAccounts/adkayethsfsa\",\r\n \"name\": \"adkayethsfsa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/AdkayethBugbash/providers/Microsoft.Storage/storageAccounts/adkayathesfsabugbash\",\r\n \"name\": \"adkayathesfsabugbash\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n }\r\n ]\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3Bstorage%3Bpstestrg8895%3Bpstestsa8895/protectedItems/AzureFileShare%3B698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959/recoveryPoints/33475003016675/restore?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCc3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9wcm90ZWN0ZWRJdGVtcy9BenVyZUZpbGVTaGFyZSUzQjY5OGRmNTk1OTQ4ZTIzNTVmMmJiNzQ0YTQxY2YyNDVkNGJhMTI1NWQ5Njk5Y2MzYzJhZDFmNTA0NWUxNzc5NTkvcmVjb3ZlcnlQb2ludHMvMzM0NzUwMDMwMTY2NzUvcmVzdG9yZT9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", - "RequestMethod": "POST", - "RequestBody": "{\r\n \"properties\": {\r\n \"objectType\": \"AzureFileShareRestoreRequest\",\r\n \"recoveryType\": \"AlternateLocation\",\r\n \"sourceResourceId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstestsa8895\",\r\n \"copyOptions\": \"Overwrite\",\r\n \"restoreRequestType\": \"ItemLevelRestore\",\r\n \"restoreFileSpecs\": [\r\n {\r\n \"path\": \"pstestfolder1bca8f8e\",\r\n \"fileSpecType\": \"Directory\",\r\n \"targetFolderPath\": \"pstestfolder3rty7d7s\"\r\n }\r\n ],\r\n \"targetDetails\": {\r\n \"name\": \"fs1\",\r\n \"targetResourceId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstesttargetsa8896\"\r\n }\r\n }\r\n}", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resources?$filter=resourceType%20eq%20'Microsoft.Storage%2FstorageAccounts'&api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5TdG9yYWdlJTJGc3RvcmFnZUFjY291bnRzJyZhcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "875fb7d6-5caf-4a93-8aa9-ce8dcad33c8f" + "0624898d-8cee-4015-bfda-78fbce0120fa" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "775" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" ] }, "ResponseHeaders": { @@ -3172,76 +3335,57 @@ "Pragma": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;storage;pstestrg8895;pstestsa8895/protectedItems/AzureFileShare;698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959/operationResults/2d99d9cc-0921-4577-b6cc-ebff7dd126f5?api-version=2021-12-01" - ], - "Retry-After": [ - "60" - ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;storage;pstestrg8895;pstestsa8895/protectedItems/AzureFileShare;698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959/operationsStatus/2d99d9cc-0921-4577-b6cc-ebff7dd126f5?api-version=2021-12-01" - ], - "X-Content-Type-Options": [ - "nosniff" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" ], "x-ms-request-id": [ - "8337af7d-835b-4038-938a-82b1391d1df8" + "a215dd45-caf0-41ba-a5f4-3da0cb6c8626" ], - "x-ms-client-request-id": [ - "875fb7d6-5caf-4a93-8aa9-ce8dcad33c8f", - "875fb7d6-5caf-4a93-8aa9-ce8dcad33c8f" + "x-ms-correlation-request-id": [ + "a215dd45-caf0-41ba-a5f4-3da0cb6c8626" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T161153Z:a215dd45-caf0-41ba-a5f4-3da0cb6c8626" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" - ], - "x-ms-correlation-request-id": [ - "8337af7d-835b-4038-938a-82b1391d1df8" - ], - "x-ms-routing-request-id": [ - "WESTINDIA:20220326T095746Z:8337af7d-835b-4038-938a-82b1391d1df8" + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Sat, 26 Mar 2022 09:57:46 GMT" + "Mon, 16 May 2022 16:11:52 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" ], "Expires": [ "-1" ], "Content-Length": [ - "0" + "34499" ] }, - "ResponseBody": "", - "StatusCode": 202 + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.existing.crr/providers/Microsoft.Storage/storageAccounts/iaasvmexistingcrrdiag\",\r\n \"name\": \"iaasvmexistingcrrdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"MAB Used\": \"Yes\",\r\n \"DeleteBy\": \"01-2030\",\r\n \"Delete By\": \"01-2030\",\r\n \"Owner\": \"chgonugu\",\r\n \"Purpose\": \"Testing\",\r\n \"AutoShutdown\": \"false\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.existing.crr/providers/Microsoft.Storage/storageAccounts/iaasvmexistingcrrdiag112\",\r\n \"name\": \"iaasvmexistingcrrdiag112\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {\r\n \"Owner\": \"chgonugu\",\r\n \"Purpose\": \"Testing\",\r\n \"MabUsed\": \"Yes\",\r\n \"DeleteBy\": \"01-2025\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.existing.crr/providers/Microsoft.Storage/storageAccounts/iaasvmexistingcrr\",\r\n \"name\": \"iaasvmexistingcrr\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/sambit_rg/providers/Microsoft.Storage/storageAccounts/sarathsa3\",\r\n \"name\": \"sarathsa3\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvmhanaworkload.existing/providers/Microsoft.Storage/storageAccounts/iaasvmhanaworkloadexisti\",\r\n \"name\": \"iaasvmhanaworkloadexisti\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"AutoShutdown\": \"No\",\r\n \"BVT Used\": \"Yes\",\r\n \"Owner\": \"chgonugu\",\r\n \"Purpose\": \"BVT\",\r\n \"DeleteBy\": \"01-2030\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/afsnavigationtest\",\r\n \"name\": \"afsnavigationtest\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/afstbackuptestsa\",\r\n \"name\": \"afstbackuptestsa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.encryptedvm/providers/Microsoft.Storage/storageAccounts/iaasvmencryptedvmdiag170\",\r\n \"name\": \"iaasvmencryptedvmdiag170\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.existing/providers/Microsoft.Storage/storageAccounts/iaasvmexistingdiag1\",\r\n \"name\": \"iaasvmexistingdiag1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.existing/providers/Microsoft.Storage/storageAccounts/iaasextstore1\",\r\n \"name\": \"iaasextstore1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.new/providers/Microsoft.Storage/storageAccounts/iaasvmnewdiag1\",\r\n \"name\": \"iaasvmnewdiag1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.new/providers/Microsoft.Storage/storageAccounts/iaasnewstore1\",\r\n \"name\": \"iaasnewstore1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/IaasVMNavigationTest-RG/providers/Microsoft.Storage/storageAccounts/aasavigationestdiag\",\r\n \"name\": \"aasavigationestdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/IaasVMNavigationTest-RG/providers/Microsoft.Storage/storageAccounts/iaasvmnavigationstore\",\r\n \"name\": \"iaasvmnavigationstore\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pscloudtestrg/providers/Microsoft.Storage/storageAccounts/pscloudtestrgdiag\",\r\n \"name\": \"pscloudtestrgdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MAB Used\": \" Yes\",\r\n \"MABUsed\": \" Yes\",\r\n \"DeleteBy\": \"01-2030\",\r\n \"Purpose\": \"PS bvt\",\r\n \"Owner\": \"sarath\",\r\n \"AutoShutdown\": \"No\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pscloudtestrg/providers/Microsoft.Storage/storageAccounts/psbvtsa2\",\r\n \"name\": \"psbvtsa2\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstestsa8895\",\r\n \"name\": \"pstestsa8895\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstesttargetsa8895\",\r\n \"name\": \"pstesttargetsa8895\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstesttargetsa8896\",\r\n \"name\": \"pstesttargetsa8896\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/afsbackupsa\",\r\n \"name\": \"afsbackupsa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"Owner\": \"sarath\",\r\n \"Purpose\": \" BVT\",\r\n \"DeleteBy\": \"01-2025\",\r\n \"AutoShutdown\": \"No\",\r\n \"MAB Used\": \" Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG54bdf8da/providers/Microsoft.Storage/storageAccounts/pstestsa54bdf8da\",\r\n \"name\": \"pstestsa54bdf8da\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG1e5a278b/providers/Microsoft.Storage/storageAccounts/pstestsa1e5a278b\",\r\n \"name\": \"pstestsa1e5a278b\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG59e1706f/providers/Microsoft.Storage/storageAccounts/pstestsa59e1706f\",\r\n \"name\": \"pstestsa59e1706f\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/storageysci5wbex6jyc\",\r\n \"name\": \"storageysci5wbex6jyc\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/prnookal-rg/providers/Microsoft.Storage/storageAccounts/prnookaltestnob\",\r\n \"name\": \"prnookaltestnob\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"isMABUsed\": \"Yes\",\r\n \" Owner\": \"prnookal@microsoft.com\",\r\n \"DeletBy\": \"12-2021\",\r\n \"Purpose\": \" Testing\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/afsbackupsa1\",\r\n \"name\": \"afsbackupsa1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"Mab Used\": \"yes\",\r\n \"Owner\": \"akkanase\",\r\n \"Purpose\": \"Testing\",\r\n \"DeleteBy\": \"01-2022\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/afsbackupsa2\",\r\n \"name\": \"afsbackupsa2\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseTest/providers/Microsoft.Storage/storageAccounts/afsfilesharetest\",\r\n \"name\": \"afsfilesharetest\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/afsbackupsa3\",\r\n \"name\": \"afsbackupsa3\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/afsbackupsa0\",\r\n \"name\": \"afsbackupsa0\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pscloudtest-diskbackup-existing/providers/Microsoft.Storage/storageAccounts/1vnseapod01otds1\",\r\n \"name\": \"1vnseapod01otds1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGZRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseAFSTest/providers/Microsoft.Storage/storageAccounts/akkanaseafssa\",\r\n \"name\": \"akkanaseafssa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MAB Used\": \"Yes\",\r\n \"Owner\": \"akkanase\",\r\n \"Purpose\": \"Testing\",\r\n \"Delete By\": \"05-202\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseAFSTest/providers/Microsoft.Storage/storageAccounts/akkanasembpd2\",\r\n \"name\": \"akkanasembpd2\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MAB Used\": \"Yes\",\r\n \"Purpose\": \"Testing\",\r\n \"Owner\": \"akkanase\",\r\n \"Delete By\": \"05-2022\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseCMK/providers/Microsoft.Storage/storageAccounts/akkanase\",\r\n \"name\": \"akkanase\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"DeleteBy\": \"05-2023\",\r\n \"Owner\": \"akkanase\",\r\n \"Purpose\": \"Testing\",\r\n \"MAB Used\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/cmk.system/providers/Microsoft.Storage/storageAccounts/cmkautomationstore\",\r\n \"name\": \"cmkautomationstore\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"Delete By\": \"05-2050\",\r\n \"MAB Used\": \" Yes\",\r\n \"Owner\": \"akkanase\",\r\n \"Purpose\": \" BVT\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG235879ba/providers/Microsoft.Storage/storageAccounts/pstestsa235879ba\",\r\n \"name\": \"pstestsa235879ba\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/disk-bvt-test-rg/providers/Microsoft.Storage/storageAccounts/hv3seapod01otds1\",\r\n \"name\": \"hv3seapod01otds1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGZRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/DoNotUse-OSS-BVT-SEA-RG/providers/Microsoft.Storage/storageAccounts/dontuseossrestoreasfile\",\r\n \"name\": \"dontuseossrestoreasfile\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MAB Used\": \" Yes\",\r\n \" Owner\": \"akkanase\",\r\n \"Purpose\": \"BV\",\r\n \"Delete By\": \"05-2020\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseAFSTest/providers/Microsoft.Storage/storageAccounts/akkanaseafsa2\",\r\n \"name\": \"akkanaseafsa2\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseCMK/providers/Microsoft.Storage/storageAccounts/0byseapod01otds1\",\r\n \"name\": \"0byseapod01otds1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGZRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/9exwuspod01otds1\",\r\n \"name\": \"9exwuspod01otds1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/02xseacan01otds1\",\r\n \"name\": \"02xseacan01otds1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGZRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseMAB/providers/Microsoft.Storage/storageAccounts/dnhccypod01otds1\",\r\n \"name\": \"dnhccypod01otds1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rguzio7xhypi/providers/Microsoft.Storage/storageAccounts/clitest4b24ibpr3ztyhwo23\",\r\n \"name\": \"clitest4b24ibpr3ztyhwo23\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rgsiaa3ljqg5/providers/Microsoft.Storage/storageAccounts/clitestgd6i34czs3jb3rdtc\",\r\n \"name\": \"clitestgd6i34czs3jb3rdtc\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rgjxpjikqjjw/providers/Microsoft.Storage/storageAccounts/clitestjkhq2kpsal665atqe\",\r\n \"name\": \"clitestjkhq2kpsal665atqe\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rgwwhxyyhl2u/providers/Microsoft.Storage/storageAccounts/clitestdggdsdbtfa6vq5n5o\",\r\n \"name\": \"clitestdggdsdbtfa6vq5n5o\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rgm44mrkvygk/providers/Microsoft.Storage/storageAccounts/clitestodvd3xsftt63go6dk\",\r\n \"name\": \"clitestodvd3xsftt63go6dk\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rgdy7jf3qqzd/providers/Microsoft.Storage/storageAccounts/clitestnbsma3ftf2yugilxq\",\r\n \"name\": \"clitestnbsma3ftf2yugilxq\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rgl5tlzqo2pt/providers/Microsoft.Storage/storageAccounts/clitestgn64zidsnwe3ndjp5\",\r\n \"name\": \"clitestgn64zidsnwe3ndjp5\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rg73eqbdp4g5/providers/Microsoft.Storage/storageAccounts/clitestzfhrqsr4m24iwnjy7\",\r\n \"name\": \"clitestzfhrqsr4m24iwnjy7\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rg73eqbdp4g5/providers/Microsoft.Storage/storageAccounts/clitestukhlrarahpoebmaln\",\r\n \"name\": \"clitestukhlrarahpoebmaln\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/prnookal-prod/providers/Microsoft.Storage/storageAccounts/prnookalprod\",\r\n \"name\": \"prnookalprod\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"japaneast\",\r\n \"tags\": {\r\n \"IsMabUsed\": \"Yes\",\r\n \"Owner\": \"prnookal\",\r\n \"DeleteBy\": \"12-2021\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/cloud-shell-storage-centralindia/providers/Microsoft.Storage/storageAccounts/csg10032000d221b981\",\r\n \"name\": \"csg10032000d221b981\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centralindia\",\r\n \"tags\": {\r\n \"ms-resource-usage\": \"azure-cloud-shell\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/cloud-shell-storage-centralindia/providers/Microsoft.Storage/storageAccounts/csg10032000b56ab138\",\r\n \"name\": \"csg10032000b56ab138\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centralindia\",\r\n \"tags\": {\r\n \"ms-resource-usage\": \"azure-cloud-shell\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/cloud-shell-storage-centralindia/providers/Microsoft.Storage/storageAccounts/csg10033fffacb0d110\",\r\n \"name\": \"csg10033fffacb0d110\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centralindia\",\r\n \"tags\": {\r\n \"ms-resource-usage\": \"azure-cloud-shell\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/cloud-shell-storage-centralindia/providers/Microsoft.Storage/storageAccounts/csg1003bffda7dcd176\",\r\n \"name\": \"csg1003bffda7dcd176\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centralindia\",\r\n \"tags\": {\r\n \"ms-resource-usage\": \"azure-cloud-shell\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/cloud-shell-storage-centralindia/providers/Microsoft.Storage/storageAccounts/csg100320004f433d62\",\r\n \"name\": \"csg100320004f433d62\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centralindia\",\r\n \"tags\": {\r\n \"ms-resource-usage\": \"azure-cloud-shell\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvmsqlworkload.existing.crr/providers/Microsoft.Storage/storageAccounts/iaasvmsqlworkloadexistin\",\r\n \"name\": \"iaasvmsqlworkloadexistin\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {\r\n \"Owner\": \"chgonugu\",\r\n \"Purpose\": \"BVT\",\r\n \"MabUsed\": \"Yes\",\r\n \"DeleteBy\": \"12-2099\",\r\n \"AutoShutdown\": \"No\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/Blob-Backup/providers/Microsoft.Storage/storageAccounts/testblobbackup\",\r\n \"name\": \"testblobbackup\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/fzejupmyclivaultasrcache\",\r\n \"name\": \"fzejupmyclivaultasrcache\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rgm7e2kiyzoto4iaicwwkdomftb7zki5kh2xxwh6yyskpflgsrpkrygkpwpdcltggyb/providers/Microsoft.Storage/storageAccounts/clitest7gyg4gqt4sxirqdkc\",\r\n \"name\": \"clitest7gyg4gqt4sxirqdkc\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rglx72s62qimgelno2o6rr34a5ovdikhzq5k6dc7773qrbodtnrdcguic5hpiciscne/providers/Microsoft.Storage/storageAccounts/clitestva4qmim2g5c3cb2tz\",\r\n \"name\": \"clitestva4qmim2g5c3cb2tz\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rg7leptekwovuif35xu6k3mb6lhszl4fkmod7jkg7yckt4v7epruxvjo6ty2hzsurwh/providers/Microsoft.Storage/storageAccounts/clitest3cgxtcwowikxqlds4\",\r\n \"name\": \"clitest3cgxtcwowikxqlds4\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseCcyGrs/providers/Microsoft.Storage/storageAccounts/storeimqyzvpnwrv5a\",\r\n \"name\": \"storeimqyzvpnwrv5a\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/sarath-rg/providers/Microsoft.Storage/storageAccounts/clitestingsa\",\r\n \"name\": \"clitestingsa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/sarath-rg/providers/Microsoft.Storage/storageAccounts/axiccypod01otds1\",\r\n \"name\": \"axiccypod01otds1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseZRS/providers/Microsoft.Storage/storageAccounts/akanasezrsstorag\",\r\n \"name\": \"akanasezrsstorag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {\r\n \"Purpose\": \"Testing\",\r\n \"Owner\": \"akkanase\",\r\n \"Mab Used\": \"yes\",\r\n \"DeleteBy\": \"01-2025\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/sarath-rg/providers/Microsoft.Storage/storageAccounts/sarathsacli\",\r\n \"name\": \"sarathsacli\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm-clitest-rg/providers/Microsoft.Storage/storageAccounts/iaasvmclitestsa\",\r\n \"name\": \"iaasvmclitestsa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"Owner\": \"akneema\",\r\n \"MABUsed\": \"Yes\",\r\n \"Purpose\": \"CLITest\",\r\n \"DeleteBy\": \"12-9999\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.Storage/storageAccounts/hiagasa\",\r\n \"name\": \"hiagasa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\",\r\n \"Purpose\": \"Testing\",\r\n \"DeleteBy\": \"01-2099\",\r\n \"Owner\": \"hiaga\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.Storage/storageAccounts/akneemasaecy\",\r\n \"name\": \"akneemasaecy\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {\r\n \"Owner\": \"akneema\",\r\n \"Purpose\": \"Testing\",\r\n \"MABUsed\": \"Yes\",\r\n \"DeleteBy\": \"12-9999\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/oss-clitest-rg/providers/Microsoft.Storage/storageAccounts/ossclitestsa\",\r\n \"name\": \"ossclitestsa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"Owner\": \"akneema\",\r\n \"Purpose\": \"Testing\",\r\n \"MABUsed\": \"Yes\",\r\n \"DeleteBy\": \"12-9999\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/oss-pstest-rg/providers/Microsoft.Storage/storageAccounts/osspstestsa\",\r\n \"name\": \"osspstestsa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"MABUsed\": \"Ye\",\r\n \"Owne\": \"hiaga\",\r\n \"Purpose\": \"esting\",\r\n \"Del\": \"01-2099\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/cli-track2-rg/providers/Microsoft.Storage/storageAccounts/clitrack2sa\",\r\n \"name\": \"clitrack2sa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"Owner\": \"akneema\",\r\n \"Purpose\": \"Testing\",\r\n \"DeleteBy\": \"12-9999\",\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm-pstest-rg/providers/Microsoft.Storage/storageAccounts/iaasvmpstestsa\",\r\n \"name\": \"iaasvmpstestsa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"MABUsed\": \"yes\",\r\n \"Owner\": \"hiaga\",\r\n \"Purpose\": \"testing\",\r\n \"DeleteBy\": \"01-2099\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/DontUse-BlobRestore-BVT-CCY-RG/providers/Microsoft.Storage/storageAccounts/dontuseblobbvtccyrstrall\",\r\n \"name\": \"dontuseblobbvtccyrstrall\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/DontUse-BlobRestore-BVT-CCY-RG/providers/Microsoft.Storage/storageAccounts/dontuseblobbvtccyprefix\",\r\n \"name\": \"dontuseblobbvtccyprefix\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/DontUse-BlobRestore-BVT-CCY-RG/providers/Microsoft.Storage/storageAccounts/dontuseblobbvtccycontnr\",\r\n \"name\": \"dontuseblobbvtccycontnr\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/oss-clicloudtest-rg/providers/Microsoft.Storage/storageAccounts/ossclicloudtestsa\",\r\n \"name\": \"ossclicloudtestsa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"Owner\": \"akneema\",\r\n \"Purpose\": \"Testing\",\r\n \"DeleteBy\": \"12-9999\",\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/prnookal-wcus/providers/Microsoft.Storage/storageAccounts/prnookalwcus\",\r\n \"name\": \"prnookalwcus\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"Owner\": \"prnookal\",\r\n \"DeleteBy\": \"12-2021\",\r\n \"IsMabUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PORTAL.DPP.BVT.BLOB.RESTORE.EXISTING/providers/Microsoft.Storage/storageAccounts/blobsaforrestoreall\",\r\n \"name\": \"blobsaforrestoreall\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PORTAL.DPP.BVT.BLOB.RESTORE.EXISTING/providers/Microsoft.Storage/storageAccounts/blobrestoreopcontainers\",\r\n \"name\": \"blobrestoreopcontainers\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PORTAL.DPP.BVT.BLOB.RESTORE.EXISTING/providers/Microsoft.Storage/storageAccounts/blobrestoreopprefix\",\r\n \"name\": \"blobrestoreopprefix\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PORTAL.DPP.BVT.BLOB.RESTORE.EXISTING/providers/Microsoft.Storage/storageAccounts/blobrestoreopcontainer\",\r\n \"name\": \"blobrestoreopcontainer\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PORTAL.DPP.BVT.BLOB.RESTORE.EXISTING/providers/Microsoft.Storage/storageAccounts/blobrestoreopall\",\r\n \"name\": \"blobrestoreopall\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PORTAL.DPP.BVT.BLOB.RESTORE.EXISTING/providers/Microsoft.Storage/storageAccounts/bloboprestorecontainers\",\r\n \"name\": \"bloboprestorecontainers\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PORTAL.DPP.BVT.BLOB.RESTORE.EXISTING/providers/Microsoft.Storage/storageAccounts/bloboprestoreall\",\r\n \"name\": \"bloboprestoreall\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagargeus/providers/Microsoft.Storage/storageAccounts/hiagargeus\",\r\n \"name\": \"hiagargeus\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akneema-we-rg/providers/Microsoft.Storage/storageAccounts/gb8wepod01otds1\",\r\n \"name\": \"gb8wepod01otds1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGZRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akneema/providers/Microsoft.Storage/storageAccounts/uvqccypod01otds1\",\r\n \"name\": \"uvqccypod01otds1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagaCZR-rg/providers/Microsoft.Storage/storageAccounts/cliczrlrssa\",\r\n \"name\": \"cliczrlrssa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {\r\n \"Owner\": \"akneema\",\r\n \"Purpose\": \"Testing\",\r\n \"DeleteBy\": \"12-9999\",\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseGRSVault/providers/Microsoft.Storage/storageAccounts/frmseapod01otds1\",\r\n \"name\": \"frmseapod01otds1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGZRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseZRS/providers/Microsoft.Storage/storageAccounts/rfoccypod01otds1\",\r\n \"name\": \"rfoccypod01otds1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akneema-we-rg/providers/Microsoft.Storage/storageAccounts/m3dccypod01otds01\",\r\n \"name\": \"m3dccypod01otds01\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/AdkayethBugbash/providers/Microsoft.Storage/storageAccounts/adkayethsfsa\",\r\n \"name\": \"adkayethsfsa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/AdkayethBugbash/providers/Microsoft.Storage/storageAccounts/adkayathesfsabugbash\",\r\n \"name\": \"adkayathesfsabugbash\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n }\r\n ]\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3Bstorage%3Bpstestrg8895%3Bpstestsa8895/protectedItems/AzureFileShare%3B698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959/recoveryPoints/33475003016675/restore?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCc3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9wcm90ZWN0ZWRJdGVtcy9BenVyZUZpbGVTaGFyZSUzQjY5OGRmNTk1OTQ4ZTIzNTVmMmJiNzQ0YTQxY2YyNDVkNGJhMTI1NWQ5Njk5Y2MzYzJhZDFmNTA0NWUxNzc5NTkvcmVjb3ZlcnlQb2ludHMvMzM0NzUwMDMwMTY2NzUvcmVzdG9yZT9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", - "RequestMethod": "POST", - "RequestBody": "{\r\n \"properties\": {\r\n \"objectType\": \"AzureFileShareRestoreRequest\",\r\n \"recoveryType\": \"AlternateLocation\",\r\n \"sourceResourceId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstestsa8895\",\r\n \"copyOptions\": \"Overwrite\",\r\n \"restoreRequestType\": \"FullShareRestore\",\r\n \"restoreFileSpecs\": [\r\n {\r\n \"targetFolderPath\": \"pstestfolder3rty7d7s\"\r\n }\r\n ],\r\n \"targetDetails\": {\r\n \"name\": \"fs1\",\r\n \"targetResourceId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstesttargetsa8896\"\r\n }\r\n }\r\n}", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resources?$filter=resourceType%20eq%20'Microsoft.Storage%2FstorageAccounts'&api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5TdG9yYWdlJTJGc3RvcmFnZUFjY291bnRzJyZhcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bbfb3d3c-8482-49e1-94e1-71481f000bf8" + "0624898d-8cee-4015-bfda-78fbce0120fa" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "696" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" ] }, "ResponseHeaders": { @@ -3251,24 +3395,646 @@ "Pragma": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;storage;pstestrg8895;pstestsa8895/protectedItems/AzureFileShare;698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959/operationResults/1b7e1e78-04b5-43fa-b657-0e90c57521ed?api-version=2021-12-01" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" ], - "Retry-After": [ - "60" + "x-ms-request-id": [ + "f941ba83-b00b-49bd-b293-b101bea3ca1e" ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;storage;pstestrg8895;pstestsa8895/protectedItems/AzureFileShare;698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959/operationsStatus/1b7e1e78-04b5-43fa-b657-0e90c57521ed?api-version=2021-12-01" + "x-ms-correlation-request-id": [ + "f941ba83-b00b-49bd-b293-b101bea3ca1e" ], - "X-Content-Type-Options": [ - "nosniff" + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T161153Z:f941ba83-b00b-49bd-b293-b101bea3ca1e" ], - "x-ms-request-id": [ - "4545d732-d04e-489d-851f-66c3f21efd2d" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 16 May 2022 16:11:52 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "34499" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.existing.crr/providers/Microsoft.Storage/storageAccounts/iaasvmexistingcrrdiag\",\r\n \"name\": \"iaasvmexistingcrrdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"MAB Used\": \"Yes\",\r\n \"DeleteBy\": \"01-2030\",\r\n \"Delete By\": \"01-2030\",\r\n \"Owner\": \"chgonugu\",\r\n \"Purpose\": \"Testing\",\r\n \"AutoShutdown\": \"false\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.existing.crr/providers/Microsoft.Storage/storageAccounts/iaasvmexistingcrrdiag112\",\r\n \"name\": \"iaasvmexistingcrrdiag112\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {\r\n \"Owner\": \"chgonugu\",\r\n \"Purpose\": \"Testing\",\r\n \"MabUsed\": \"Yes\",\r\n \"DeleteBy\": \"01-2025\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.existing.crr/providers/Microsoft.Storage/storageAccounts/iaasvmexistingcrr\",\r\n \"name\": \"iaasvmexistingcrr\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/sambit_rg/providers/Microsoft.Storage/storageAccounts/sarathsa3\",\r\n \"name\": \"sarathsa3\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvmhanaworkload.existing/providers/Microsoft.Storage/storageAccounts/iaasvmhanaworkloadexisti\",\r\n \"name\": \"iaasvmhanaworkloadexisti\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"AutoShutdown\": \"No\",\r\n \"BVT Used\": \"Yes\",\r\n \"Owner\": \"chgonugu\",\r\n \"Purpose\": \"BVT\",\r\n \"DeleteBy\": \"01-2030\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/afsnavigationtest\",\r\n \"name\": \"afsnavigationtest\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/afstbackuptestsa\",\r\n \"name\": \"afstbackuptestsa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.encryptedvm/providers/Microsoft.Storage/storageAccounts/iaasvmencryptedvmdiag170\",\r\n \"name\": \"iaasvmencryptedvmdiag170\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.existing/providers/Microsoft.Storage/storageAccounts/iaasvmexistingdiag1\",\r\n \"name\": \"iaasvmexistingdiag1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.existing/providers/Microsoft.Storage/storageAccounts/iaasextstore1\",\r\n \"name\": \"iaasextstore1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.new/providers/Microsoft.Storage/storageAccounts/iaasvmnewdiag1\",\r\n \"name\": \"iaasvmnewdiag1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.new/providers/Microsoft.Storage/storageAccounts/iaasnewstore1\",\r\n \"name\": \"iaasnewstore1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/IaasVMNavigationTest-RG/providers/Microsoft.Storage/storageAccounts/aasavigationestdiag\",\r\n \"name\": \"aasavigationestdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/IaasVMNavigationTest-RG/providers/Microsoft.Storage/storageAccounts/iaasvmnavigationstore\",\r\n \"name\": \"iaasvmnavigationstore\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pscloudtestrg/providers/Microsoft.Storage/storageAccounts/pscloudtestrgdiag\",\r\n \"name\": \"pscloudtestrgdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MAB Used\": \" Yes\",\r\n \"MABUsed\": \" Yes\",\r\n \"DeleteBy\": \"01-2030\",\r\n \"Purpose\": \"PS bvt\",\r\n \"Owner\": \"sarath\",\r\n \"AutoShutdown\": \"No\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pscloudtestrg/providers/Microsoft.Storage/storageAccounts/psbvtsa2\",\r\n \"name\": \"psbvtsa2\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstestsa8895\",\r\n \"name\": \"pstestsa8895\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstesttargetsa8895\",\r\n \"name\": \"pstesttargetsa8895\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstesttargetsa8896\",\r\n \"name\": \"pstesttargetsa8896\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/afsbackupsa\",\r\n \"name\": \"afsbackupsa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"Owner\": \"sarath\",\r\n \"Purpose\": \" BVT\",\r\n \"DeleteBy\": \"01-2025\",\r\n \"AutoShutdown\": \"No\",\r\n \"MAB Used\": \" Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG54bdf8da/providers/Microsoft.Storage/storageAccounts/pstestsa54bdf8da\",\r\n \"name\": \"pstestsa54bdf8da\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG1e5a278b/providers/Microsoft.Storage/storageAccounts/pstestsa1e5a278b\",\r\n \"name\": \"pstestsa1e5a278b\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG59e1706f/providers/Microsoft.Storage/storageAccounts/pstestsa59e1706f\",\r\n \"name\": \"pstestsa59e1706f\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/storageysci5wbex6jyc\",\r\n \"name\": \"storageysci5wbex6jyc\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/prnookal-rg/providers/Microsoft.Storage/storageAccounts/prnookaltestnob\",\r\n \"name\": \"prnookaltestnob\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"isMABUsed\": \"Yes\",\r\n \" Owner\": \"prnookal@microsoft.com\",\r\n \"DeletBy\": \"12-2021\",\r\n \"Purpose\": \" Testing\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/afsbackupsa1\",\r\n \"name\": \"afsbackupsa1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"Mab Used\": \"yes\",\r\n \"Owner\": \"akkanase\",\r\n \"Purpose\": \"Testing\",\r\n \"DeleteBy\": \"01-2022\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/afsbackupsa2\",\r\n \"name\": \"afsbackupsa2\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseTest/providers/Microsoft.Storage/storageAccounts/afsfilesharetest\",\r\n \"name\": \"afsfilesharetest\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/afsbackupsa3\",\r\n \"name\": \"afsbackupsa3\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/afsbackupsa0\",\r\n \"name\": \"afsbackupsa0\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pscloudtest-diskbackup-existing/providers/Microsoft.Storage/storageAccounts/1vnseapod01otds1\",\r\n \"name\": \"1vnseapod01otds1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGZRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseAFSTest/providers/Microsoft.Storage/storageAccounts/akkanaseafssa\",\r\n \"name\": \"akkanaseafssa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MAB Used\": \"Yes\",\r\n \"Owner\": \"akkanase\",\r\n \"Purpose\": \"Testing\",\r\n \"Delete By\": \"05-202\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseAFSTest/providers/Microsoft.Storage/storageAccounts/akkanasembpd2\",\r\n \"name\": \"akkanasembpd2\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MAB Used\": \"Yes\",\r\n \"Purpose\": \"Testing\",\r\n \"Owner\": \"akkanase\",\r\n \"Delete By\": \"05-2022\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseCMK/providers/Microsoft.Storage/storageAccounts/akkanase\",\r\n \"name\": \"akkanase\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"DeleteBy\": \"05-2023\",\r\n \"Owner\": \"akkanase\",\r\n \"Purpose\": \"Testing\",\r\n \"MAB Used\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/cmk.system/providers/Microsoft.Storage/storageAccounts/cmkautomationstore\",\r\n \"name\": \"cmkautomationstore\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"Delete By\": \"05-2050\",\r\n \"MAB Used\": \" Yes\",\r\n \"Owner\": \"akkanase\",\r\n \"Purpose\": \" BVT\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG235879ba/providers/Microsoft.Storage/storageAccounts/pstestsa235879ba\",\r\n \"name\": \"pstestsa235879ba\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/disk-bvt-test-rg/providers/Microsoft.Storage/storageAccounts/hv3seapod01otds1\",\r\n \"name\": \"hv3seapod01otds1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGZRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/DoNotUse-OSS-BVT-SEA-RG/providers/Microsoft.Storage/storageAccounts/dontuseossrestoreasfile\",\r\n \"name\": \"dontuseossrestoreasfile\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MAB Used\": \" Yes\",\r\n \" Owner\": \"akkanase\",\r\n \"Purpose\": \"BV\",\r\n \"Delete By\": \"05-2020\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseAFSTest/providers/Microsoft.Storage/storageAccounts/akkanaseafsa2\",\r\n \"name\": \"akkanaseafsa2\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseCMK/providers/Microsoft.Storage/storageAccounts/0byseapod01otds1\",\r\n \"name\": \"0byseapod01otds1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGZRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/9exwuspod01otds1\",\r\n \"name\": \"9exwuspod01otds1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/02xseacan01otds1\",\r\n \"name\": \"02xseacan01otds1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGZRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseMAB/providers/Microsoft.Storage/storageAccounts/dnhccypod01otds1\",\r\n \"name\": \"dnhccypod01otds1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rguzio7xhypi/providers/Microsoft.Storage/storageAccounts/clitest4b24ibpr3ztyhwo23\",\r\n \"name\": \"clitest4b24ibpr3ztyhwo23\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rgsiaa3ljqg5/providers/Microsoft.Storage/storageAccounts/clitestgd6i34czs3jb3rdtc\",\r\n \"name\": \"clitestgd6i34czs3jb3rdtc\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rgjxpjikqjjw/providers/Microsoft.Storage/storageAccounts/clitestjkhq2kpsal665atqe\",\r\n \"name\": \"clitestjkhq2kpsal665atqe\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rgwwhxyyhl2u/providers/Microsoft.Storage/storageAccounts/clitestdggdsdbtfa6vq5n5o\",\r\n \"name\": \"clitestdggdsdbtfa6vq5n5o\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rgm44mrkvygk/providers/Microsoft.Storage/storageAccounts/clitestodvd3xsftt63go6dk\",\r\n \"name\": \"clitestodvd3xsftt63go6dk\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rgdy7jf3qqzd/providers/Microsoft.Storage/storageAccounts/clitestnbsma3ftf2yugilxq\",\r\n \"name\": \"clitestnbsma3ftf2yugilxq\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rgl5tlzqo2pt/providers/Microsoft.Storage/storageAccounts/clitestgn64zidsnwe3ndjp5\",\r\n \"name\": \"clitestgn64zidsnwe3ndjp5\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rg73eqbdp4g5/providers/Microsoft.Storage/storageAccounts/clitestzfhrqsr4m24iwnjy7\",\r\n \"name\": \"clitestzfhrqsr4m24iwnjy7\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rg73eqbdp4g5/providers/Microsoft.Storage/storageAccounts/clitestukhlrarahpoebmaln\",\r\n \"name\": \"clitestukhlrarahpoebmaln\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/prnookal-prod/providers/Microsoft.Storage/storageAccounts/prnookalprod\",\r\n \"name\": \"prnookalprod\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"japaneast\",\r\n \"tags\": {\r\n \"IsMabUsed\": \"Yes\",\r\n \"Owner\": \"prnookal\",\r\n \"DeleteBy\": \"12-2021\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/cloud-shell-storage-centralindia/providers/Microsoft.Storage/storageAccounts/csg10032000d221b981\",\r\n \"name\": \"csg10032000d221b981\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centralindia\",\r\n \"tags\": {\r\n \"ms-resource-usage\": \"azure-cloud-shell\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/cloud-shell-storage-centralindia/providers/Microsoft.Storage/storageAccounts/csg10032000b56ab138\",\r\n \"name\": \"csg10032000b56ab138\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centralindia\",\r\n \"tags\": {\r\n \"ms-resource-usage\": \"azure-cloud-shell\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/cloud-shell-storage-centralindia/providers/Microsoft.Storage/storageAccounts/csg10033fffacb0d110\",\r\n \"name\": \"csg10033fffacb0d110\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centralindia\",\r\n \"tags\": {\r\n \"ms-resource-usage\": \"azure-cloud-shell\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/cloud-shell-storage-centralindia/providers/Microsoft.Storage/storageAccounts/csg1003bffda7dcd176\",\r\n \"name\": \"csg1003bffda7dcd176\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centralindia\",\r\n \"tags\": {\r\n \"ms-resource-usage\": \"azure-cloud-shell\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/cloud-shell-storage-centralindia/providers/Microsoft.Storage/storageAccounts/csg100320004f433d62\",\r\n \"name\": \"csg100320004f433d62\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centralindia\",\r\n \"tags\": {\r\n \"ms-resource-usage\": \"azure-cloud-shell\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvmsqlworkload.existing.crr/providers/Microsoft.Storage/storageAccounts/iaasvmsqlworkloadexistin\",\r\n \"name\": \"iaasvmsqlworkloadexistin\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {\r\n \"Owner\": \"chgonugu\",\r\n \"Purpose\": \"BVT\",\r\n \"MabUsed\": \"Yes\",\r\n \"DeleteBy\": \"12-2099\",\r\n \"AutoShutdown\": \"No\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/Blob-Backup/providers/Microsoft.Storage/storageAccounts/testblobbackup\",\r\n \"name\": \"testblobbackup\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/fzejupmyclivaultasrcache\",\r\n \"name\": \"fzejupmyclivaultasrcache\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rgm7e2kiyzoto4iaicwwkdomftb7zki5kh2xxwh6yyskpflgsrpkrygkpwpdcltggyb/providers/Microsoft.Storage/storageAccounts/clitest7gyg4gqt4sxirqdkc\",\r\n \"name\": \"clitest7gyg4gqt4sxirqdkc\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rglx72s62qimgelno2o6rr34a5ovdikhzq5k6dc7773qrbodtnrdcguic5hpiciscne/providers/Microsoft.Storage/storageAccounts/clitestva4qmim2g5c3cb2tz\",\r\n \"name\": \"clitestva4qmim2g5c3cb2tz\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rg7leptekwovuif35xu6k3mb6lhszl4fkmod7jkg7yckt4v7epruxvjo6ty2hzsurwh/providers/Microsoft.Storage/storageAccounts/clitest3cgxtcwowikxqlds4\",\r\n \"name\": \"clitest3cgxtcwowikxqlds4\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseCcyGrs/providers/Microsoft.Storage/storageAccounts/storeimqyzvpnwrv5a\",\r\n \"name\": \"storeimqyzvpnwrv5a\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/sarath-rg/providers/Microsoft.Storage/storageAccounts/clitestingsa\",\r\n \"name\": \"clitestingsa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/sarath-rg/providers/Microsoft.Storage/storageAccounts/axiccypod01otds1\",\r\n \"name\": \"axiccypod01otds1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseZRS/providers/Microsoft.Storage/storageAccounts/akanasezrsstorag\",\r\n \"name\": \"akanasezrsstorag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {\r\n \"Purpose\": \"Testing\",\r\n \"Owner\": \"akkanase\",\r\n \"Mab Used\": \"yes\",\r\n \"DeleteBy\": \"01-2025\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/sarath-rg/providers/Microsoft.Storage/storageAccounts/sarathsacli\",\r\n \"name\": \"sarathsacli\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm-clitest-rg/providers/Microsoft.Storage/storageAccounts/iaasvmclitestsa\",\r\n \"name\": \"iaasvmclitestsa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"Owner\": \"akneema\",\r\n \"MABUsed\": \"Yes\",\r\n \"Purpose\": \"CLITest\",\r\n \"DeleteBy\": \"12-9999\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.Storage/storageAccounts/hiagasa\",\r\n \"name\": \"hiagasa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\",\r\n \"Purpose\": \"Testing\",\r\n \"DeleteBy\": \"01-2099\",\r\n \"Owner\": \"hiaga\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.Storage/storageAccounts/akneemasaecy\",\r\n \"name\": \"akneemasaecy\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {\r\n \"Owner\": \"akneema\",\r\n \"Purpose\": \"Testing\",\r\n \"MABUsed\": \"Yes\",\r\n \"DeleteBy\": \"12-9999\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/oss-clitest-rg/providers/Microsoft.Storage/storageAccounts/ossclitestsa\",\r\n \"name\": \"ossclitestsa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"Owner\": \"akneema\",\r\n \"Purpose\": \"Testing\",\r\n \"MABUsed\": \"Yes\",\r\n \"DeleteBy\": \"12-9999\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/oss-pstest-rg/providers/Microsoft.Storage/storageAccounts/osspstestsa\",\r\n \"name\": \"osspstestsa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"MABUsed\": \"Ye\",\r\n \"Owne\": \"hiaga\",\r\n \"Purpose\": \"esting\",\r\n \"Del\": \"01-2099\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/cli-track2-rg/providers/Microsoft.Storage/storageAccounts/clitrack2sa\",\r\n \"name\": \"clitrack2sa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"Owner\": \"akneema\",\r\n \"Purpose\": \"Testing\",\r\n \"DeleteBy\": \"12-9999\",\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm-pstest-rg/providers/Microsoft.Storage/storageAccounts/iaasvmpstestsa\",\r\n \"name\": \"iaasvmpstestsa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"MABUsed\": \"yes\",\r\n \"Owner\": \"hiaga\",\r\n \"Purpose\": \"testing\",\r\n \"DeleteBy\": \"01-2099\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/DontUse-BlobRestore-BVT-CCY-RG/providers/Microsoft.Storage/storageAccounts/dontuseblobbvtccyrstrall\",\r\n \"name\": \"dontuseblobbvtccyrstrall\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/DontUse-BlobRestore-BVT-CCY-RG/providers/Microsoft.Storage/storageAccounts/dontuseblobbvtccyprefix\",\r\n \"name\": \"dontuseblobbvtccyprefix\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/DontUse-BlobRestore-BVT-CCY-RG/providers/Microsoft.Storage/storageAccounts/dontuseblobbvtccycontnr\",\r\n \"name\": \"dontuseblobbvtccycontnr\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/oss-clicloudtest-rg/providers/Microsoft.Storage/storageAccounts/ossclicloudtestsa\",\r\n \"name\": \"ossclicloudtestsa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"Owner\": \"akneema\",\r\n \"Purpose\": \"Testing\",\r\n \"DeleteBy\": \"12-9999\",\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/prnookal-wcus/providers/Microsoft.Storage/storageAccounts/prnookalwcus\",\r\n \"name\": \"prnookalwcus\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"Owner\": \"prnookal\",\r\n \"DeleteBy\": \"12-2021\",\r\n \"IsMabUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PORTAL.DPP.BVT.BLOB.RESTORE.EXISTING/providers/Microsoft.Storage/storageAccounts/blobsaforrestoreall\",\r\n \"name\": \"blobsaforrestoreall\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PORTAL.DPP.BVT.BLOB.RESTORE.EXISTING/providers/Microsoft.Storage/storageAccounts/blobrestoreopcontainers\",\r\n \"name\": \"blobrestoreopcontainers\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PORTAL.DPP.BVT.BLOB.RESTORE.EXISTING/providers/Microsoft.Storage/storageAccounts/blobrestoreopprefix\",\r\n \"name\": \"blobrestoreopprefix\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PORTAL.DPP.BVT.BLOB.RESTORE.EXISTING/providers/Microsoft.Storage/storageAccounts/blobrestoreopcontainer\",\r\n \"name\": \"blobrestoreopcontainer\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PORTAL.DPP.BVT.BLOB.RESTORE.EXISTING/providers/Microsoft.Storage/storageAccounts/blobrestoreopall\",\r\n \"name\": \"blobrestoreopall\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PORTAL.DPP.BVT.BLOB.RESTORE.EXISTING/providers/Microsoft.Storage/storageAccounts/bloboprestorecontainers\",\r\n \"name\": \"bloboprestorecontainers\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PORTAL.DPP.BVT.BLOB.RESTORE.EXISTING/providers/Microsoft.Storage/storageAccounts/bloboprestoreall\",\r\n \"name\": \"bloboprestoreall\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagargeus/providers/Microsoft.Storage/storageAccounts/hiagargeus\",\r\n \"name\": \"hiagargeus\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akneema-we-rg/providers/Microsoft.Storage/storageAccounts/gb8wepod01otds1\",\r\n \"name\": \"gb8wepod01otds1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGZRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akneema/providers/Microsoft.Storage/storageAccounts/uvqccypod01otds1\",\r\n \"name\": \"uvqccypod01otds1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagaCZR-rg/providers/Microsoft.Storage/storageAccounts/cliczrlrssa\",\r\n \"name\": \"cliczrlrssa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {\r\n \"Owner\": \"akneema\",\r\n \"Purpose\": \"Testing\",\r\n \"DeleteBy\": \"12-9999\",\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseGRSVault/providers/Microsoft.Storage/storageAccounts/frmseapod01otds1\",\r\n \"name\": \"frmseapod01otds1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGZRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseZRS/providers/Microsoft.Storage/storageAccounts/rfoccypod01otds1\",\r\n \"name\": \"rfoccypod01otds1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akneema-we-rg/providers/Microsoft.Storage/storageAccounts/m3dccypod01otds01\",\r\n \"name\": \"m3dccypod01otds01\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/AdkayethBugbash/providers/Microsoft.Storage/storageAccounts/adkayethsfsa\",\r\n \"name\": \"adkayethsfsa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/AdkayethBugbash/providers/Microsoft.Storage/storageAccounts/adkayathesfsabugbash\",\r\n \"name\": \"adkayathesfsabugbash\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resources?$filter=resourceType%20eq%20'Microsoft.Storage%2FstorageAccounts'&api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5TdG9yYWdlJTJGc3RvcmFnZUFjY291bnRzJyZhcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fd770b01-8b83-4071-aad7-cf86d08a24cd" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11991" + ], + "x-ms-request-id": [ + "3e8f6798-43c4-41fc-a898-1606a65fbf2f" + ], + "x-ms-correlation-request-id": [ + "3e8f6798-43c4-41fc-a898-1606a65fbf2f" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T161258Z:3e8f6798-43c4-41fc-a898-1606a65fbf2f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 16 May 2022 16:12:58 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "34499" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.existing.crr/providers/Microsoft.Storage/storageAccounts/iaasvmexistingcrrdiag\",\r\n \"name\": \"iaasvmexistingcrrdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"MAB Used\": \"Yes\",\r\n \"DeleteBy\": \"01-2030\",\r\n \"Delete By\": \"01-2030\",\r\n \"Owner\": \"chgonugu\",\r\n \"Purpose\": \"Testing\",\r\n \"AutoShutdown\": \"false\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.existing.crr/providers/Microsoft.Storage/storageAccounts/iaasvmexistingcrrdiag112\",\r\n \"name\": \"iaasvmexistingcrrdiag112\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {\r\n \"Owner\": \"chgonugu\",\r\n \"Purpose\": \"Testing\",\r\n \"MabUsed\": \"Yes\",\r\n \"DeleteBy\": \"01-2025\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.existing.crr/providers/Microsoft.Storage/storageAccounts/iaasvmexistingcrr\",\r\n \"name\": \"iaasvmexistingcrr\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/sambit_rg/providers/Microsoft.Storage/storageAccounts/sarathsa3\",\r\n \"name\": \"sarathsa3\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvmhanaworkload.existing/providers/Microsoft.Storage/storageAccounts/iaasvmhanaworkloadexisti\",\r\n \"name\": \"iaasvmhanaworkloadexisti\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"AutoShutdown\": \"No\",\r\n \"BVT Used\": \"Yes\",\r\n \"Owner\": \"chgonugu\",\r\n \"Purpose\": \"BVT\",\r\n \"DeleteBy\": \"01-2030\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/afsnavigationtest\",\r\n \"name\": \"afsnavigationtest\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/afstbackuptestsa\",\r\n \"name\": \"afstbackuptestsa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.encryptedvm/providers/Microsoft.Storage/storageAccounts/iaasvmencryptedvmdiag170\",\r\n \"name\": \"iaasvmencryptedvmdiag170\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.existing/providers/Microsoft.Storage/storageAccounts/iaasvmexistingdiag1\",\r\n \"name\": \"iaasvmexistingdiag1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.existing/providers/Microsoft.Storage/storageAccounts/iaasextstore1\",\r\n \"name\": \"iaasextstore1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.new/providers/Microsoft.Storage/storageAccounts/iaasvmnewdiag1\",\r\n \"name\": \"iaasvmnewdiag1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.new/providers/Microsoft.Storage/storageAccounts/iaasnewstore1\",\r\n \"name\": \"iaasnewstore1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/IaasVMNavigationTest-RG/providers/Microsoft.Storage/storageAccounts/aasavigationestdiag\",\r\n \"name\": \"aasavigationestdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/IaasVMNavigationTest-RG/providers/Microsoft.Storage/storageAccounts/iaasvmnavigationstore\",\r\n \"name\": \"iaasvmnavigationstore\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pscloudtestrg/providers/Microsoft.Storage/storageAccounts/pscloudtestrgdiag\",\r\n \"name\": \"pscloudtestrgdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MAB Used\": \" Yes\",\r\n \"MABUsed\": \" Yes\",\r\n \"DeleteBy\": \"01-2030\",\r\n \"Purpose\": \"PS bvt\",\r\n \"Owner\": \"sarath\",\r\n \"AutoShutdown\": \"No\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pscloudtestrg/providers/Microsoft.Storage/storageAccounts/psbvtsa2\",\r\n \"name\": \"psbvtsa2\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstestsa8895\",\r\n \"name\": \"pstestsa8895\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstesttargetsa8895\",\r\n \"name\": \"pstesttargetsa8895\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstesttargetsa8896\",\r\n \"name\": \"pstesttargetsa8896\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/afsbackupsa\",\r\n \"name\": \"afsbackupsa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"Owner\": \"sarath\",\r\n \"Purpose\": \" BVT\",\r\n \"DeleteBy\": \"01-2025\",\r\n \"AutoShutdown\": \"No\",\r\n \"MAB Used\": \" Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG54bdf8da/providers/Microsoft.Storage/storageAccounts/pstestsa54bdf8da\",\r\n \"name\": \"pstestsa54bdf8da\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG1e5a278b/providers/Microsoft.Storage/storageAccounts/pstestsa1e5a278b\",\r\n \"name\": \"pstestsa1e5a278b\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG59e1706f/providers/Microsoft.Storage/storageAccounts/pstestsa59e1706f\",\r\n \"name\": \"pstestsa59e1706f\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/storageysci5wbex6jyc\",\r\n \"name\": \"storageysci5wbex6jyc\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/prnookal-rg/providers/Microsoft.Storage/storageAccounts/prnookaltestnob\",\r\n \"name\": \"prnookaltestnob\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"isMABUsed\": \"Yes\",\r\n \" Owner\": \"prnookal@microsoft.com\",\r\n \"DeletBy\": \"12-2021\",\r\n \"Purpose\": \" Testing\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/afsbackupsa1\",\r\n \"name\": \"afsbackupsa1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"Mab Used\": \"yes\",\r\n \"Owner\": \"akkanase\",\r\n \"Purpose\": \"Testing\",\r\n \"DeleteBy\": \"01-2022\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/afsbackupsa2\",\r\n \"name\": \"afsbackupsa2\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseTest/providers/Microsoft.Storage/storageAccounts/afsfilesharetest\",\r\n \"name\": \"afsfilesharetest\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/afsbackupsa3\",\r\n \"name\": \"afsbackupsa3\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/afsbackupsa0\",\r\n \"name\": \"afsbackupsa0\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pscloudtest-diskbackup-existing/providers/Microsoft.Storage/storageAccounts/1vnseapod01otds1\",\r\n \"name\": \"1vnseapod01otds1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGZRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseAFSTest/providers/Microsoft.Storage/storageAccounts/akkanaseafssa\",\r\n \"name\": \"akkanaseafssa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MAB Used\": \"Yes\",\r\n \"Owner\": \"akkanase\",\r\n \"Purpose\": \"Testing\",\r\n \"Delete By\": \"05-202\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseAFSTest/providers/Microsoft.Storage/storageAccounts/akkanasembpd2\",\r\n \"name\": \"akkanasembpd2\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MAB Used\": \"Yes\",\r\n \"Purpose\": \"Testing\",\r\n \"Owner\": \"akkanase\",\r\n \"Delete By\": \"05-2022\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseCMK/providers/Microsoft.Storage/storageAccounts/akkanase\",\r\n \"name\": \"akkanase\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"DeleteBy\": \"05-2023\",\r\n \"Owner\": \"akkanase\",\r\n \"Purpose\": \"Testing\",\r\n \"MAB Used\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/cmk.system/providers/Microsoft.Storage/storageAccounts/cmkautomationstore\",\r\n \"name\": \"cmkautomationstore\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"Delete By\": \"05-2050\",\r\n \"MAB Used\": \" Yes\",\r\n \"Owner\": \"akkanase\",\r\n \"Purpose\": \" BVT\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG235879ba/providers/Microsoft.Storage/storageAccounts/pstestsa235879ba\",\r\n \"name\": \"pstestsa235879ba\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/disk-bvt-test-rg/providers/Microsoft.Storage/storageAccounts/hv3seapod01otds1\",\r\n \"name\": \"hv3seapod01otds1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGZRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/DoNotUse-OSS-BVT-SEA-RG/providers/Microsoft.Storage/storageAccounts/dontuseossrestoreasfile\",\r\n \"name\": \"dontuseossrestoreasfile\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MAB Used\": \" Yes\",\r\n \" Owner\": \"akkanase\",\r\n \"Purpose\": \"BV\",\r\n \"Delete By\": \"05-2020\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseAFSTest/providers/Microsoft.Storage/storageAccounts/akkanaseafsa2\",\r\n \"name\": \"akkanaseafsa2\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseCMK/providers/Microsoft.Storage/storageAccounts/0byseapod01otds1\",\r\n \"name\": \"0byseapod01otds1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGZRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/9exwuspod01otds1\",\r\n \"name\": \"9exwuspod01otds1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/02xseacan01otds1\",\r\n \"name\": \"02xseacan01otds1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGZRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseMAB/providers/Microsoft.Storage/storageAccounts/dnhccypod01otds1\",\r\n \"name\": \"dnhccypod01otds1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rguzio7xhypi/providers/Microsoft.Storage/storageAccounts/clitest4b24ibpr3ztyhwo23\",\r\n \"name\": \"clitest4b24ibpr3ztyhwo23\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rgsiaa3ljqg5/providers/Microsoft.Storage/storageAccounts/clitestgd6i34czs3jb3rdtc\",\r\n \"name\": \"clitestgd6i34czs3jb3rdtc\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rgjxpjikqjjw/providers/Microsoft.Storage/storageAccounts/clitestjkhq2kpsal665atqe\",\r\n \"name\": \"clitestjkhq2kpsal665atqe\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rgwwhxyyhl2u/providers/Microsoft.Storage/storageAccounts/clitestdggdsdbtfa6vq5n5o\",\r\n \"name\": \"clitestdggdsdbtfa6vq5n5o\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rgm44mrkvygk/providers/Microsoft.Storage/storageAccounts/clitestodvd3xsftt63go6dk\",\r\n \"name\": \"clitestodvd3xsftt63go6dk\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rgdy7jf3qqzd/providers/Microsoft.Storage/storageAccounts/clitestnbsma3ftf2yugilxq\",\r\n \"name\": \"clitestnbsma3ftf2yugilxq\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rgl5tlzqo2pt/providers/Microsoft.Storage/storageAccounts/clitestgn64zidsnwe3ndjp5\",\r\n \"name\": \"clitestgn64zidsnwe3ndjp5\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rg73eqbdp4g5/providers/Microsoft.Storage/storageAccounts/clitestzfhrqsr4m24iwnjy7\",\r\n \"name\": \"clitestzfhrqsr4m24iwnjy7\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rg73eqbdp4g5/providers/Microsoft.Storage/storageAccounts/clitestukhlrarahpoebmaln\",\r\n \"name\": \"clitestukhlrarahpoebmaln\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/prnookal-prod/providers/Microsoft.Storage/storageAccounts/prnookalprod\",\r\n \"name\": \"prnookalprod\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"japaneast\",\r\n \"tags\": {\r\n \"IsMabUsed\": \"Yes\",\r\n \"Owner\": \"prnookal\",\r\n \"DeleteBy\": \"12-2021\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/cloud-shell-storage-centralindia/providers/Microsoft.Storage/storageAccounts/csg10032000d221b981\",\r\n \"name\": \"csg10032000d221b981\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centralindia\",\r\n \"tags\": {\r\n \"ms-resource-usage\": \"azure-cloud-shell\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/cloud-shell-storage-centralindia/providers/Microsoft.Storage/storageAccounts/csg10032000b56ab138\",\r\n \"name\": \"csg10032000b56ab138\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centralindia\",\r\n \"tags\": {\r\n \"ms-resource-usage\": \"azure-cloud-shell\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/cloud-shell-storage-centralindia/providers/Microsoft.Storage/storageAccounts/csg10033fffacb0d110\",\r\n \"name\": \"csg10033fffacb0d110\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centralindia\",\r\n \"tags\": {\r\n \"ms-resource-usage\": \"azure-cloud-shell\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/cloud-shell-storage-centralindia/providers/Microsoft.Storage/storageAccounts/csg1003bffda7dcd176\",\r\n \"name\": \"csg1003bffda7dcd176\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centralindia\",\r\n \"tags\": {\r\n \"ms-resource-usage\": \"azure-cloud-shell\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/cloud-shell-storage-centralindia/providers/Microsoft.Storage/storageAccounts/csg100320004f433d62\",\r\n \"name\": \"csg100320004f433d62\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centralindia\",\r\n \"tags\": {\r\n \"ms-resource-usage\": \"azure-cloud-shell\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvmsqlworkload.existing.crr/providers/Microsoft.Storage/storageAccounts/iaasvmsqlworkloadexistin\",\r\n \"name\": \"iaasvmsqlworkloadexistin\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {\r\n \"Owner\": \"chgonugu\",\r\n \"Purpose\": \"BVT\",\r\n \"MabUsed\": \"Yes\",\r\n \"DeleteBy\": \"12-2099\",\r\n \"AutoShutdown\": \"No\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/Blob-Backup/providers/Microsoft.Storage/storageAccounts/testblobbackup\",\r\n \"name\": \"testblobbackup\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/fzejupmyclivaultasrcache\",\r\n \"name\": \"fzejupmyclivaultasrcache\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rgm7e2kiyzoto4iaicwwkdomftb7zki5kh2xxwh6yyskpflgsrpkrygkpwpdcltggyb/providers/Microsoft.Storage/storageAccounts/clitest7gyg4gqt4sxirqdkc\",\r\n \"name\": \"clitest7gyg4gqt4sxirqdkc\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rglx72s62qimgelno2o6rr34a5ovdikhzq5k6dc7773qrbodtnrdcguic5hpiciscne/providers/Microsoft.Storage/storageAccounts/clitestva4qmim2g5c3cb2tz\",\r\n \"name\": \"clitestva4qmim2g5c3cb2tz\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rg7leptekwovuif35xu6k3mb6lhszl4fkmod7jkg7yckt4v7epruxvjo6ty2hzsurwh/providers/Microsoft.Storage/storageAccounts/clitest3cgxtcwowikxqlds4\",\r\n \"name\": \"clitest3cgxtcwowikxqlds4\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseCcyGrs/providers/Microsoft.Storage/storageAccounts/storeimqyzvpnwrv5a\",\r\n \"name\": \"storeimqyzvpnwrv5a\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/sarath-rg/providers/Microsoft.Storage/storageAccounts/clitestingsa\",\r\n \"name\": \"clitestingsa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/sarath-rg/providers/Microsoft.Storage/storageAccounts/axiccypod01otds1\",\r\n \"name\": \"axiccypod01otds1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseZRS/providers/Microsoft.Storage/storageAccounts/akanasezrsstorag\",\r\n \"name\": \"akanasezrsstorag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {\r\n \"Purpose\": \"Testing\",\r\n \"Owner\": \"akkanase\",\r\n \"Mab Used\": \"yes\",\r\n \"DeleteBy\": \"01-2025\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/sarath-rg/providers/Microsoft.Storage/storageAccounts/sarathsacli\",\r\n \"name\": \"sarathsacli\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm-clitest-rg/providers/Microsoft.Storage/storageAccounts/iaasvmclitestsa\",\r\n \"name\": \"iaasvmclitestsa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"Owner\": \"akneema\",\r\n \"MABUsed\": \"Yes\",\r\n \"Purpose\": \"CLITest\",\r\n \"DeleteBy\": \"12-9999\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.Storage/storageAccounts/hiagasa\",\r\n \"name\": \"hiagasa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\",\r\n \"Purpose\": \"Testing\",\r\n \"DeleteBy\": \"01-2099\",\r\n \"Owner\": \"hiaga\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.Storage/storageAccounts/akneemasaecy\",\r\n \"name\": \"akneemasaecy\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {\r\n \"Owner\": \"akneema\",\r\n \"Purpose\": \"Testing\",\r\n \"MABUsed\": \"Yes\",\r\n \"DeleteBy\": \"12-9999\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/oss-clitest-rg/providers/Microsoft.Storage/storageAccounts/ossclitestsa\",\r\n \"name\": \"ossclitestsa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"Owner\": \"akneema\",\r\n \"Purpose\": \"Testing\",\r\n \"MABUsed\": \"Yes\",\r\n \"DeleteBy\": \"12-9999\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/oss-pstest-rg/providers/Microsoft.Storage/storageAccounts/osspstestsa\",\r\n \"name\": \"osspstestsa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"MABUsed\": \"Ye\",\r\n \"Owne\": \"hiaga\",\r\n \"Purpose\": \"esting\",\r\n \"Del\": \"01-2099\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/cli-track2-rg/providers/Microsoft.Storage/storageAccounts/clitrack2sa\",\r\n \"name\": \"clitrack2sa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"Owner\": \"akneema\",\r\n \"Purpose\": \"Testing\",\r\n \"DeleteBy\": \"12-9999\",\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm-pstest-rg/providers/Microsoft.Storage/storageAccounts/iaasvmpstestsa\",\r\n \"name\": \"iaasvmpstestsa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"MABUsed\": \"yes\",\r\n \"Owner\": \"hiaga\",\r\n \"Purpose\": \"testing\",\r\n \"DeleteBy\": \"01-2099\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/DontUse-BlobRestore-BVT-CCY-RG/providers/Microsoft.Storage/storageAccounts/dontuseblobbvtccyrstrall\",\r\n \"name\": \"dontuseblobbvtccyrstrall\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/DontUse-BlobRestore-BVT-CCY-RG/providers/Microsoft.Storage/storageAccounts/dontuseblobbvtccyprefix\",\r\n \"name\": \"dontuseblobbvtccyprefix\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/DontUse-BlobRestore-BVT-CCY-RG/providers/Microsoft.Storage/storageAccounts/dontuseblobbvtccycontnr\",\r\n \"name\": \"dontuseblobbvtccycontnr\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/oss-clicloudtest-rg/providers/Microsoft.Storage/storageAccounts/ossclicloudtestsa\",\r\n \"name\": \"ossclicloudtestsa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"Owner\": \"akneema\",\r\n \"Purpose\": \"Testing\",\r\n \"DeleteBy\": \"12-9999\",\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/prnookal-wcus/providers/Microsoft.Storage/storageAccounts/prnookalwcus\",\r\n \"name\": \"prnookalwcus\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"Owner\": \"prnookal\",\r\n \"DeleteBy\": \"12-2021\",\r\n \"IsMabUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PORTAL.DPP.BVT.BLOB.RESTORE.EXISTING/providers/Microsoft.Storage/storageAccounts/blobsaforrestoreall\",\r\n \"name\": \"blobsaforrestoreall\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PORTAL.DPP.BVT.BLOB.RESTORE.EXISTING/providers/Microsoft.Storage/storageAccounts/blobrestoreopcontainers\",\r\n \"name\": \"blobrestoreopcontainers\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PORTAL.DPP.BVT.BLOB.RESTORE.EXISTING/providers/Microsoft.Storage/storageAccounts/blobrestoreopprefix\",\r\n \"name\": \"blobrestoreopprefix\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PORTAL.DPP.BVT.BLOB.RESTORE.EXISTING/providers/Microsoft.Storage/storageAccounts/blobrestoreopcontainer\",\r\n \"name\": \"blobrestoreopcontainer\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PORTAL.DPP.BVT.BLOB.RESTORE.EXISTING/providers/Microsoft.Storage/storageAccounts/blobrestoreopall\",\r\n \"name\": \"blobrestoreopall\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PORTAL.DPP.BVT.BLOB.RESTORE.EXISTING/providers/Microsoft.Storage/storageAccounts/bloboprestorecontainers\",\r\n \"name\": \"bloboprestorecontainers\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PORTAL.DPP.BVT.BLOB.RESTORE.EXISTING/providers/Microsoft.Storage/storageAccounts/bloboprestoreall\",\r\n \"name\": \"bloboprestoreall\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagargeus/providers/Microsoft.Storage/storageAccounts/hiagargeus\",\r\n \"name\": \"hiagargeus\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akneema-we-rg/providers/Microsoft.Storage/storageAccounts/gb8wepod01otds1\",\r\n \"name\": \"gb8wepod01otds1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGZRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akneema/providers/Microsoft.Storage/storageAccounts/uvqccypod01otds1\",\r\n \"name\": \"uvqccypod01otds1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagaCZR-rg/providers/Microsoft.Storage/storageAccounts/cliczrlrssa\",\r\n \"name\": \"cliczrlrssa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {\r\n \"Owner\": \"akneema\",\r\n \"Purpose\": \"Testing\",\r\n \"DeleteBy\": \"12-9999\",\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseGRSVault/providers/Microsoft.Storage/storageAccounts/frmseapod01otds1\",\r\n \"name\": \"frmseapod01otds1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGZRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseZRS/providers/Microsoft.Storage/storageAccounts/rfoccypod01otds1\",\r\n \"name\": \"rfoccypod01otds1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akneema-we-rg/providers/Microsoft.Storage/storageAccounts/m3dccypod01otds01\",\r\n \"name\": \"m3dccypod01otds01\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/AdkayethBugbash/providers/Microsoft.Storage/storageAccounts/adkayethsfsa\",\r\n \"name\": \"adkayethsfsa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/AdkayethBugbash/providers/Microsoft.Storage/storageAccounts/adkayathesfsabugbash\",\r\n \"name\": \"adkayathesfsabugbash\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resources?$filter=resourceType%20eq%20'Microsoft.Storage%2FstorageAccounts'&api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5TdG9yYWdlJTJGc3RvcmFnZUFjY291bnRzJyZhcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fd770b01-8b83-4071-aad7-cf86d08a24cd" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11989" + ], + "x-ms-request-id": [ + "0edea7bb-24ee-41d9-bc91-a058243e18a6" + ], + "x-ms-correlation-request-id": [ + "0edea7bb-24ee-41d9-bc91-a058243e18a6" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T161258Z:0edea7bb-24ee-41d9-bc91-a058243e18a6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 16 May 2022 16:12:58 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "34499" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.existing.crr/providers/Microsoft.Storage/storageAccounts/iaasvmexistingcrrdiag\",\r\n \"name\": \"iaasvmexistingcrrdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"MAB Used\": \"Yes\",\r\n \"DeleteBy\": \"01-2030\",\r\n \"Delete By\": \"01-2030\",\r\n \"Owner\": \"chgonugu\",\r\n \"Purpose\": \"Testing\",\r\n \"AutoShutdown\": \"false\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.existing.crr/providers/Microsoft.Storage/storageAccounts/iaasvmexistingcrrdiag112\",\r\n \"name\": \"iaasvmexistingcrrdiag112\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {\r\n \"Owner\": \"chgonugu\",\r\n \"Purpose\": \"Testing\",\r\n \"MabUsed\": \"Yes\",\r\n \"DeleteBy\": \"01-2025\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.existing.crr/providers/Microsoft.Storage/storageAccounts/iaasvmexistingcrr\",\r\n \"name\": \"iaasvmexistingcrr\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/sambit_rg/providers/Microsoft.Storage/storageAccounts/sarathsa3\",\r\n \"name\": \"sarathsa3\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvmhanaworkload.existing/providers/Microsoft.Storage/storageAccounts/iaasvmhanaworkloadexisti\",\r\n \"name\": \"iaasvmhanaworkloadexisti\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"AutoShutdown\": \"No\",\r\n \"BVT Used\": \"Yes\",\r\n \"Owner\": \"chgonugu\",\r\n \"Purpose\": \"BVT\",\r\n \"DeleteBy\": \"01-2030\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/afsnavigationtest\",\r\n \"name\": \"afsnavigationtest\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/afstbackuptestsa\",\r\n \"name\": \"afstbackuptestsa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.encryptedvm/providers/Microsoft.Storage/storageAccounts/iaasvmencryptedvmdiag170\",\r\n \"name\": \"iaasvmencryptedvmdiag170\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.existing/providers/Microsoft.Storage/storageAccounts/iaasvmexistingdiag1\",\r\n \"name\": \"iaasvmexistingdiag1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.existing/providers/Microsoft.Storage/storageAccounts/iaasextstore1\",\r\n \"name\": \"iaasextstore1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.new/providers/Microsoft.Storage/storageAccounts/iaasvmnewdiag1\",\r\n \"name\": \"iaasvmnewdiag1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.new/providers/Microsoft.Storage/storageAccounts/iaasnewstore1\",\r\n \"name\": \"iaasnewstore1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/IaasVMNavigationTest-RG/providers/Microsoft.Storage/storageAccounts/aasavigationestdiag\",\r\n \"name\": \"aasavigationestdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/IaasVMNavigationTest-RG/providers/Microsoft.Storage/storageAccounts/iaasvmnavigationstore\",\r\n \"name\": \"iaasvmnavigationstore\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pscloudtestrg/providers/Microsoft.Storage/storageAccounts/pscloudtestrgdiag\",\r\n \"name\": \"pscloudtestrgdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MAB Used\": \" Yes\",\r\n \"MABUsed\": \" Yes\",\r\n \"DeleteBy\": \"01-2030\",\r\n \"Purpose\": \"PS bvt\",\r\n \"Owner\": \"sarath\",\r\n \"AutoShutdown\": \"No\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pscloudtestrg/providers/Microsoft.Storage/storageAccounts/psbvtsa2\",\r\n \"name\": \"psbvtsa2\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstestsa8895\",\r\n \"name\": \"pstestsa8895\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstesttargetsa8895\",\r\n \"name\": \"pstesttargetsa8895\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstesttargetsa8896\",\r\n \"name\": \"pstesttargetsa8896\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/afsbackupsa\",\r\n \"name\": \"afsbackupsa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"Owner\": \"sarath\",\r\n \"Purpose\": \" BVT\",\r\n \"DeleteBy\": \"01-2025\",\r\n \"AutoShutdown\": \"No\",\r\n \"MAB Used\": \" Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG54bdf8da/providers/Microsoft.Storage/storageAccounts/pstestsa54bdf8da\",\r\n \"name\": \"pstestsa54bdf8da\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG1e5a278b/providers/Microsoft.Storage/storageAccounts/pstestsa1e5a278b\",\r\n \"name\": \"pstestsa1e5a278b\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG59e1706f/providers/Microsoft.Storage/storageAccounts/pstestsa59e1706f\",\r\n \"name\": \"pstestsa59e1706f\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/storageysci5wbex6jyc\",\r\n \"name\": \"storageysci5wbex6jyc\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/prnookal-rg/providers/Microsoft.Storage/storageAccounts/prnookaltestnob\",\r\n \"name\": \"prnookaltestnob\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"isMABUsed\": \"Yes\",\r\n \" Owner\": \"prnookal@microsoft.com\",\r\n \"DeletBy\": \"12-2021\",\r\n \"Purpose\": \" Testing\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/afsbackupsa1\",\r\n \"name\": \"afsbackupsa1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"Mab Used\": \"yes\",\r\n \"Owner\": \"akkanase\",\r\n \"Purpose\": \"Testing\",\r\n \"DeleteBy\": \"01-2022\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/afsbackupsa2\",\r\n \"name\": \"afsbackupsa2\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseTest/providers/Microsoft.Storage/storageAccounts/afsfilesharetest\",\r\n \"name\": \"afsfilesharetest\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/afsbackupsa3\",\r\n \"name\": \"afsbackupsa3\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/afsbackupsa0\",\r\n \"name\": \"afsbackupsa0\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pscloudtest-diskbackup-existing/providers/Microsoft.Storage/storageAccounts/1vnseapod01otds1\",\r\n \"name\": \"1vnseapod01otds1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGZRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseAFSTest/providers/Microsoft.Storage/storageAccounts/akkanaseafssa\",\r\n \"name\": \"akkanaseafssa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MAB Used\": \"Yes\",\r\n \"Owner\": \"akkanase\",\r\n \"Purpose\": \"Testing\",\r\n \"Delete By\": \"05-202\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseAFSTest/providers/Microsoft.Storage/storageAccounts/akkanasembpd2\",\r\n \"name\": \"akkanasembpd2\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MAB Used\": \"Yes\",\r\n \"Purpose\": \"Testing\",\r\n \"Owner\": \"akkanase\",\r\n \"Delete By\": \"05-2022\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseCMK/providers/Microsoft.Storage/storageAccounts/akkanase\",\r\n \"name\": \"akkanase\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"DeleteBy\": \"05-2023\",\r\n \"Owner\": \"akkanase\",\r\n \"Purpose\": \"Testing\",\r\n \"MAB Used\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/cmk.system/providers/Microsoft.Storage/storageAccounts/cmkautomationstore\",\r\n \"name\": \"cmkautomationstore\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"Delete By\": \"05-2050\",\r\n \"MAB Used\": \" Yes\",\r\n \"Owner\": \"akkanase\",\r\n \"Purpose\": \" BVT\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG235879ba/providers/Microsoft.Storage/storageAccounts/pstestsa235879ba\",\r\n \"name\": \"pstestsa235879ba\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/disk-bvt-test-rg/providers/Microsoft.Storage/storageAccounts/hv3seapod01otds1\",\r\n \"name\": \"hv3seapod01otds1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGZRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/DoNotUse-OSS-BVT-SEA-RG/providers/Microsoft.Storage/storageAccounts/dontuseossrestoreasfile\",\r\n \"name\": \"dontuseossrestoreasfile\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MAB Used\": \" Yes\",\r\n \" Owner\": \"akkanase\",\r\n \"Purpose\": \"BV\",\r\n \"Delete By\": \"05-2020\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseAFSTest/providers/Microsoft.Storage/storageAccounts/akkanaseafsa2\",\r\n \"name\": \"akkanaseafsa2\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseCMK/providers/Microsoft.Storage/storageAccounts/0byseapod01otds1\",\r\n \"name\": \"0byseapod01otds1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGZRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/9exwuspod01otds1\",\r\n \"name\": \"9exwuspod01otds1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/02xseacan01otds1\",\r\n \"name\": \"02xseacan01otds1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGZRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseMAB/providers/Microsoft.Storage/storageAccounts/dnhccypod01otds1\",\r\n \"name\": \"dnhccypod01otds1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rguzio7xhypi/providers/Microsoft.Storage/storageAccounts/clitest4b24ibpr3ztyhwo23\",\r\n \"name\": \"clitest4b24ibpr3ztyhwo23\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rgsiaa3ljqg5/providers/Microsoft.Storage/storageAccounts/clitestgd6i34czs3jb3rdtc\",\r\n \"name\": \"clitestgd6i34czs3jb3rdtc\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rgjxpjikqjjw/providers/Microsoft.Storage/storageAccounts/clitestjkhq2kpsal665atqe\",\r\n \"name\": \"clitestjkhq2kpsal665atqe\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rgwwhxyyhl2u/providers/Microsoft.Storage/storageAccounts/clitestdggdsdbtfa6vq5n5o\",\r\n \"name\": \"clitestdggdsdbtfa6vq5n5o\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rgm44mrkvygk/providers/Microsoft.Storage/storageAccounts/clitestodvd3xsftt63go6dk\",\r\n \"name\": \"clitestodvd3xsftt63go6dk\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rgdy7jf3qqzd/providers/Microsoft.Storage/storageAccounts/clitestnbsma3ftf2yugilxq\",\r\n \"name\": \"clitestnbsma3ftf2yugilxq\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rgl5tlzqo2pt/providers/Microsoft.Storage/storageAccounts/clitestgn64zidsnwe3ndjp5\",\r\n \"name\": \"clitestgn64zidsnwe3ndjp5\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rg73eqbdp4g5/providers/Microsoft.Storage/storageAccounts/clitestzfhrqsr4m24iwnjy7\",\r\n \"name\": \"clitestzfhrqsr4m24iwnjy7\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rg73eqbdp4g5/providers/Microsoft.Storage/storageAccounts/clitestukhlrarahpoebmaln\",\r\n \"name\": \"clitestukhlrarahpoebmaln\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/prnookal-prod/providers/Microsoft.Storage/storageAccounts/prnookalprod\",\r\n \"name\": \"prnookalprod\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"japaneast\",\r\n \"tags\": {\r\n \"IsMabUsed\": \"Yes\",\r\n \"Owner\": \"prnookal\",\r\n \"DeleteBy\": \"12-2021\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/cloud-shell-storage-centralindia/providers/Microsoft.Storage/storageAccounts/csg10032000d221b981\",\r\n \"name\": \"csg10032000d221b981\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centralindia\",\r\n \"tags\": {\r\n \"ms-resource-usage\": \"azure-cloud-shell\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/cloud-shell-storage-centralindia/providers/Microsoft.Storage/storageAccounts/csg10032000b56ab138\",\r\n \"name\": \"csg10032000b56ab138\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centralindia\",\r\n \"tags\": {\r\n \"ms-resource-usage\": \"azure-cloud-shell\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/cloud-shell-storage-centralindia/providers/Microsoft.Storage/storageAccounts/csg10033fffacb0d110\",\r\n \"name\": \"csg10033fffacb0d110\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centralindia\",\r\n \"tags\": {\r\n \"ms-resource-usage\": \"azure-cloud-shell\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/cloud-shell-storage-centralindia/providers/Microsoft.Storage/storageAccounts/csg1003bffda7dcd176\",\r\n \"name\": \"csg1003bffda7dcd176\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centralindia\",\r\n \"tags\": {\r\n \"ms-resource-usage\": \"azure-cloud-shell\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/cloud-shell-storage-centralindia/providers/Microsoft.Storage/storageAccounts/csg100320004f433d62\",\r\n \"name\": \"csg100320004f433d62\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centralindia\",\r\n \"tags\": {\r\n \"ms-resource-usage\": \"azure-cloud-shell\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvmsqlworkload.existing.crr/providers/Microsoft.Storage/storageAccounts/iaasvmsqlworkloadexistin\",\r\n \"name\": \"iaasvmsqlworkloadexistin\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {\r\n \"Owner\": \"chgonugu\",\r\n \"Purpose\": \"BVT\",\r\n \"MabUsed\": \"Yes\",\r\n \"DeleteBy\": \"12-2099\",\r\n \"AutoShutdown\": \"No\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/Blob-Backup/providers/Microsoft.Storage/storageAccounts/testblobbackup\",\r\n \"name\": \"testblobbackup\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/fzejupmyclivaultasrcache\",\r\n \"name\": \"fzejupmyclivaultasrcache\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rgm7e2kiyzoto4iaicwwkdomftb7zki5kh2xxwh6yyskpflgsrpkrygkpwpdcltggyb/providers/Microsoft.Storage/storageAccounts/clitest7gyg4gqt4sxirqdkc\",\r\n \"name\": \"clitest7gyg4gqt4sxirqdkc\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rglx72s62qimgelno2o6rr34a5ovdikhzq5k6dc7773qrbodtnrdcguic5hpiciscne/providers/Microsoft.Storage/storageAccounts/clitestva4qmim2g5c3cb2tz\",\r\n \"name\": \"clitestva4qmim2g5c3cb2tz\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rg7leptekwovuif35xu6k3mb6lhszl4fkmod7jkg7yckt4v7epruxvjo6ty2hzsurwh/providers/Microsoft.Storage/storageAccounts/clitest3cgxtcwowikxqlds4\",\r\n \"name\": \"clitest3cgxtcwowikxqlds4\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseCcyGrs/providers/Microsoft.Storage/storageAccounts/storeimqyzvpnwrv5a\",\r\n \"name\": \"storeimqyzvpnwrv5a\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/sarath-rg/providers/Microsoft.Storage/storageAccounts/clitestingsa\",\r\n \"name\": \"clitestingsa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/sarath-rg/providers/Microsoft.Storage/storageAccounts/axiccypod01otds1\",\r\n \"name\": \"axiccypod01otds1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseZRS/providers/Microsoft.Storage/storageAccounts/akanasezrsstorag\",\r\n \"name\": \"akanasezrsstorag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {\r\n \"Purpose\": \"Testing\",\r\n \"Owner\": \"akkanase\",\r\n \"Mab Used\": \"yes\",\r\n \"DeleteBy\": \"01-2025\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/sarath-rg/providers/Microsoft.Storage/storageAccounts/sarathsacli\",\r\n \"name\": \"sarathsacli\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm-clitest-rg/providers/Microsoft.Storage/storageAccounts/iaasvmclitestsa\",\r\n \"name\": \"iaasvmclitestsa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"Owner\": \"akneema\",\r\n \"MABUsed\": \"Yes\",\r\n \"Purpose\": \"CLITest\",\r\n \"DeleteBy\": \"12-9999\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.Storage/storageAccounts/hiagasa\",\r\n \"name\": \"hiagasa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\",\r\n \"Purpose\": \"Testing\",\r\n \"DeleteBy\": \"01-2099\",\r\n \"Owner\": \"hiaga\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.Storage/storageAccounts/akneemasaecy\",\r\n \"name\": \"akneemasaecy\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {\r\n \"Owner\": \"akneema\",\r\n \"Purpose\": \"Testing\",\r\n \"MABUsed\": \"Yes\",\r\n \"DeleteBy\": \"12-9999\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/oss-clitest-rg/providers/Microsoft.Storage/storageAccounts/ossclitestsa\",\r\n \"name\": \"ossclitestsa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"Owner\": \"akneema\",\r\n \"Purpose\": \"Testing\",\r\n \"MABUsed\": \"Yes\",\r\n \"DeleteBy\": \"12-9999\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/oss-pstest-rg/providers/Microsoft.Storage/storageAccounts/osspstestsa\",\r\n \"name\": \"osspstestsa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"MABUsed\": \"Ye\",\r\n \"Owne\": \"hiaga\",\r\n \"Purpose\": \"esting\",\r\n \"Del\": \"01-2099\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/cli-track2-rg/providers/Microsoft.Storage/storageAccounts/clitrack2sa\",\r\n \"name\": \"clitrack2sa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"Owner\": \"akneema\",\r\n \"Purpose\": \"Testing\",\r\n \"DeleteBy\": \"12-9999\",\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm-pstest-rg/providers/Microsoft.Storage/storageAccounts/iaasvmpstestsa\",\r\n \"name\": \"iaasvmpstestsa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"MABUsed\": \"yes\",\r\n \"Owner\": \"hiaga\",\r\n \"Purpose\": \"testing\",\r\n \"DeleteBy\": \"01-2099\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/DontUse-BlobRestore-BVT-CCY-RG/providers/Microsoft.Storage/storageAccounts/dontuseblobbvtccyrstrall\",\r\n \"name\": \"dontuseblobbvtccyrstrall\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/DontUse-BlobRestore-BVT-CCY-RG/providers/Microsoft.Storage/storageAccounts/dontuseblobbvtccyprefix\",\r\n \"name\": \"dontuseblobbvtccyprefix\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/DontUse-BlobRestore-BVT-CCY-RG/providers/Microsoft.Storage/storageAccounts/dontuseblobbvtccycontnr\",\r\n \"name\": \"dontuseblobbvtccycontnr\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/oss-clicloudtest-rg/providers/Microsoft.Storage/storageAccounts/ossclicloudtestsa\",\r\n \"name\": \"ossclicloudtestsa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"Owner\": \"akneema\",\r\n \"Purpose\": \"Testing\",\r\n \"DeleteBy\": \"12-9999\",\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/prnookal-wcus/providers/Microsoft.Storage/storageAccounts/prnookalwcus\",\r\n \"name\": \"prnookalwcus\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"Owner\": \"prnookal\",\r\n \"DeleteBy\": \"12-2021\",\r\n \"IsMabUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PORTAL.DPP.BVT.BLOB.RESTORE.EXISTING/providers/Microsoft.Storage/storageAccounts/blobsaforrestoreall\",\r\n \"name\": \"blobsaforrestoreall\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PORTAL.DPP.BVT.BLOB.RESTORE.EXISTING/providers/Microsoft.Storage/storageAccounts/blobrestoreopcontainers\",\r\n \"name\": \"blobrestoreopcontainers\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PORTAL.DPP.BVT.BLOB.RESTORE.EXISTING/providers/Microsoft.Storage/storageAccounts/blobrestoreopprefix\",\r\n \"name\": \"blobrestoreopprefix\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PORTAL.DPP.BVT.BLOB.RESTORE.EXISTING/providers/Microsoft.Storage/storageAccounts/blobrestoreopcontainer\",\r\n \"name\": \"blobrestoreopcontainer\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PORTAL.DPP.BVT.BLOB.RESTORE.EXISTING/providers/Microsoft.Storage/storageAccounts/blobrestoreopall\",\r\n \"name\": \"blobrestoreopall\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PORTAL.DPP.BVT.BLOB.RESTORE.EXISTING/providers/Microsoft.Storage/storageAccounts/bloboprestorecontainers\",\r\n \"name\": \"bloboprestorecontainers\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PORTAL.DPP.BVT.BLOB.RESTORE.EXISTING/providers/Microsoft.Storage/storageAccounts/bloboprestoreall\",\r\n \"name\": \"bloboprestoreall\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagargeus/providers/Microsoft.Storage/storageAccounts/hiagargeus\",\r\n \"name\": \"hiagargeus\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akneema-we-rg/providers/Microsoft.Storage/storageAccounts/gb8wepod01otds1\",\r\n \"name\": \"gb8wepod01otds1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGZRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akneema/providers/Microsoft.Storage/storageAccounts/uvqccypod01otds1\",\r\n \"name\": \"uvqccypod01otds1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagaCZR-rg/providers/Microsoft.Storage/storageAccounts/cliczrlrssa\",\r\n \"name\": \"cliczrlrssa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {\r\n \"Owner\": \"akneema\",\r\n \"Purpose\": \"Testing\",\r\n \"DeleteBy\": \"12-9999\",\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseGRSVault/providers/Microsoft.Storage/storageAccounts/frmseapod01otds1\",\r\n \"name\": \"frmseapod01otds1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGZRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseZRS/providers/Microsoft.Storage/storageAccounts/rfoccypod01otds1\",\r\n \"name\": \"rfoccypod01otds1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akneema-we-rg/providers/Microsoft.Storage/storageAccounts/m3dccypod01otds01\",\r\n \"name\": \"m3dccypod01otds01\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/AdkayethBugbash/providers/Microsoft.Storage/storageAccounts/adkayethsfsa\",\r\n \"name\": \"adkayethsfsa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/AdkayethBugbash/providers/Microsoft.Storage/storageAccounts/adkayathesfsabugbash\",\r\n \"name\": \"adkayathesfsabugbash\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resources?$filter=resourceType%20eq%20'Microsoft.Storage%2FstorageAccounts'&api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5TdG9yYWdlJTJGc3RvcmFnZUFjY291bnRzJyZhcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3c145b4f-4a12-4ba6-9964-2936d8bc94e4" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11987" + ], + "x-ms-request-id": [ + "5a61820e-7fa6-44e2-aaeb-1b8964e4a9d2" + ], + "x-ms-correlation-request-id": [ + "5a61820e-7fa6-44e2-aaeb-1b8964e4a9d2" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T161403Z:5a61820e-7fa6-44e2-aaeb-1b8964e4a9d2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 16 May 2022 16:14:03 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "34499" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.existing.crr/providers/Microsoft.Storage/storageAccounts/iaasvmexistingcrrdiag\",\r\n \"name\": \"iaasvmexistingcrrdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"MAB Used\": \"Yes\",\r\n \"DeleteBy\": \"01-2030\",\r\n \"Delete By\": \"01-2030\",\r\n \"Owner\": \"chgonugu\",\r\n \"Purpose\": \"Testing\",\r\n \"AutoShutdown\": \"false\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.existing.crr/providers/Microsoft.Storage/storageAccounts/iaasvmexistingcrrdiag112\",\r\n \"name\": \"iaasvmexistingcrrdiag112\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {\r\n \"Owner\": \"chgonugu\",\r\n \"Purpose\": \"Testing\",\r\n \"MabUsed\": \"Yes\",\r\n \"DeleteBy\": \"01-2025\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.existing.crr/providers/Microsoft.Storage/storageAccounts/iaasvmexistingcrr\",\r\n \"name\": \"iaasvmexistingcrr\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/sambit_rg/providers/Microsoft.Storage/storageAccounts/sarathsa3\",\r\n \"name\": \"sarathsa3\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvmhanaworkload.existing/providers/Microsoft.Storage/storageAccounts/iaasvmhanaworkloadexisti\",\r\n \"name\": \"iaasvmhanaworkloadexisti\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"AutoShutdown\": \"No\",\r\n \"BVT Used\": \"Yes\",\r\n \"Owner\": \"chgonugu\",\r\n \"Purpose\": \"BVT\",\r\n \"DeleteBy\": \"01-2030\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/afsnavigationtest\",\r\n \"name\": \"afsnavigationtest\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/afstbackuptestsa\",\r\n \"name\": \"afstbackuptestsa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.encryptedvm/providers/Microsoft.Storage/storageAccounts/iaasvmencryptedvmdiag170\",\r\n \"name\": \"iaasvmencryptedvmdiag170\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.existing/providers/Microsoft.Storage/storageAccounts/iaasvmexistingdiag1\",\r\n \"name\": \"iaasvmexistingdiag1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.existing/providers/Microsoft.Storage/storageAccounts/iaasextstore1\",\r\n \"name\": \"iaasextstore1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.new/providers/Microsoft.Storage/storageAccounts/iaasvmnewdiag1\",\r\n \"name\": \"iaasvmnewdiag1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.new/providers/Microsoft.Storage/storageAccounts/iaasnewstore1\",\r\n \"name\": \"iaasnewstore1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/IaasVMNavigationTest-RG/providers/Microsoft.Storage/storageAccounts/aasavigationestdiag\",\r\n \"name\": \"aasavigationestdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/IaasVMNavigationTest-RG/providers/Microsoft.Storage/storageAccounts/iaasvmnavigationstore\",\r\n \"name\": \"iaasvmnavigationstore\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pscloudtestrg/providers/Microsoft.Storage/storageAccounts/pscloudtestrgdiag\",\r\n \"name\": \"pscloudtestrgdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MAB Used\": \" Yes\",\r\n \"MABUsed\": \" Yes\",\r\n \"DeleteBy\": \"01-2030\",\r\n \"Purpose\": \"PS bvt\",\r\n \"Owner\": \"sarath\",\r\n \"AutoShutdown\": \"No\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pscloudtestrg/providers/Microsoft.Storage/storageAccounts/psbvtsa2\",\r\n \"name\": \"psbvtsa2\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstestsa8895\",\r\n \"name\": \"pstestsa8895\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstesttargetsa8895\",\r\n \"name\": \"pstesttargetsa8895\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstesttargetsa8896\",\r\n \"name\": \"pstesttargetsa8896\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/afsbackupsa\",\r\n \"name\": \"afsbackupsa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"Owner\": \"sarath\",\r\n \"Purpose\": \" BVT\",\r\n \"DeleteBy\": \"01-2025\",\r\n \"AutoShutdown\": \"No\",\r\n \"MAB Used\": \" Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG54bdf8da/providers/Microsoft.Storage/storageAccounts/pstestsa54bdf8da\",\r\n \"name\": \"pstestsa54bdf8da\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG1e5a278b/providers/Microsoft.Storage/storageAccounts/pstestsa1e5a278b\",\r\n \"name\": \"pstestsa1e5a278b\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG59e1706f/providers/Microsoft.Storage/storageAccounts/pstestsa59e1706f\",\r\n \"name\": \"pstestsa59e1706f\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/storageysci5wbex6jyc\",\r\n \"name\": \"storageysci5wbex6jyc\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/prnookal-rg/providers/Microsoft.Storage/storageAccounts/prnookaltestnob\",\r\n \"name\": \"prnookaltestnob\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"isMABUsed\": \"Yes\",\r\n \" Owner\": \"prnookal@microsoft.com\",\r\n \"DeletBy\": \"12-2021\",\r\n \"Purpose\": \" Testing\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/afsbackupsa1\",\r\n \"name\": \"afsbackupsa1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"Mab Used\": \"yes\",\r\n \"Owner\": \"akkanase\",\r\n \"Purpose\": \"Testing\",\r\n \"DeleteBy\": \"01-2022\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/afsbackupsa2\",\r\n \"name\": \"afsbackupsa2\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseTest/providers/Microsoft.Storage/storageAccounts/afsfilesharetest\",\r\n \"name\": \"afsfilesharetest\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/afsbackupsa3\",\r\n \"name\": \"afsbackupsa3\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/afsbackupsa0\",\r\n \"name\": \"afsbackupsa0\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pscloudtest-diskbackup-existing/providers/Microsoft.Storage/storageAccounts/1vnseapod01otds1\",\r\n \"name\": \"1vnseapod01otds1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGZRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseAFSTest/providers/Microsoft.Storage/storageAccounts/akkanaseafssa\",\r\n \"name\": \"akkanaseafssa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MAB Used\": \"Yes\",\r\n \"Owner\": \"akkanase\",\r\n \"Purpose\": \"Testing\",\r\n \"Delete By\": \"05-202\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseAFSTest/providers/Microsoft.Storage/storageAccounts/akkanasembpd2\",\r\n \"name\": \"akkanasembpd2\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MAB Used\": \"Yes\",\r\n \"Purpose\": \"Testing\",\r\n \"Owner\": \"akkanase\",\r\n \"Delete By\": \"05-2022\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseCMK/providers/Microsoft.Storage/storageAccounts/akkanase\",\r\n \"name\": \"akkanase\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"DeleteBy\": \"05-2023\",\r\n \"Owner\": \"akkanase\",\r\n \"Purpose\": \"Testing\",\r\n \"MAB Used\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/cmk.system/providers/Microsoft.Storage/storageAccounts/cmkautomationstore\",\r\n \"name\": \"cmkautomationstore\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"Delete By\": \"05-2050\",\r\n \"MAB Used\": \" Yes\",\r\n \"Owner\": \"akkanase\",\r\n \"Purpose\": \" BVT\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG235879ba/providers/Microsoft.Storage/storageAccounts/pstestsa235879ba\",\r\n \"name\": \"pstestsa235879ba\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/disk-bvt-test-rg/providers/Microsoft.Storage/storageAccounts/hv3seapod01otds1\",\r\n \"name\": \"hv3seapod01otds1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGZRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/DoNotUse-OSS-BVT-SEA-RG/providers/Microsoft.Storage/storageAccounts/dontuseossrestoreasfile\",\r\n \"name\": \"dontuseossrestoreasfile\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MAB Used\": \" Yes\",\r\n \" Owner\": \"akkanase\",\r\n \"Purpose\": \"BV\",\r\n \"Delete By\": \"05-2020\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseAFSTest/providers/Microsoft.Storage/storageAccounts/akkanaseafsa2\",\r\n \"name\": \"akkanaseafsa2\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseCMK/providers/Microsoft.Storage/storageAccounts/0byseapod01otds1\",\r\n \"name\": \"0byseapod01otds1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGZRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/9exwuspod01otds1\",\r\n \"name\": \"9exwuspod01otds1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/02xseacan01otds1\",\r\n \"name\": \"02xseacan01otds1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGZRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseMAB/providers/Microsoft.Storage/storageAccounts/dnhccypod01otds1\",\r\n \"name\": \"dnhccypod01otds1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rguzio7xhypi/providers/Microsoft.Storage/storageAccounts/clitest4b24ibpr3ztyhwo23\",\r\n \"name\": \"clitest4b24ibpr3ztyhwo23\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rgsiaa3ljqg5/providers/Microsoft.Storage/storageAccounts/clitestgd6i34czs3jb3rdtc\",\r\n \"name\": \"clitestgd6i34czs3jb3rdtc\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rgjxpjikqjjw/providers/Microsoft.Storage/storageAccounts/clitestjkhq2kpsal665atqe\",\r\n \"name\": \"clitestjkhq2kpsal665atqe\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rgwwhxyyhl2u/providers/Microsoft.Storage/storageAccounts/clitestdggdsdbtfa6vq5n5o\",\r\n \"name\": \"clitestdggdsdbtfa6vq5n5o\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rgm44mrkvygk/providers/Microsoft.Storage/storageAccounts/clitestodvd3xsftt63go6dk\",\r\n \"name\": \"clitestodvd3xsftt63go6dk\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rgdy7jf3qqzd/providers/Microsoft.Storage/storageAccounts/clitestnbsma3ftf2yugilxq\",\r\n \"name\": \"clitestnbsma3ftf2yugilxq\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rgl5tlzqo2pt/providers/Microsoft.Storage/storageAccounts/clitestgn64zidsnwe3ndjp5\",\r\n \"name\": \"clitestgn64zidsnwe3ndjp5\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rg73eqbdp4g5/providers/Microsoft.Storage/storageAccounts/clitestzfhrqsr4m24iwnjy7\",\r\n \"name\": \"clitestzfhrqsr4m24iwnjy7\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rg73eqbdp4g5/providers/Microsoft.Storage/storageAccounts/clitestukhlrarahpoebmaln\",\r\n \"name\": \"clitestukhlrarahpoebmaln\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/prnookal-prod/providers/Microsoft.Storage/storageAccounts/prnookalprod\",\r\n \"name\": \"prnookalprod\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"japaneast\",\r\n \"tags\": {\r\n \"IsMabUsed\": \"Yes\",\r\n \"Owner\": \"prnookal\",\r\n \"DeleteBy\": \"12-2021\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/cloud-shell-storage-centralindia/providers/Microsoft.Storage/storageAccounts/csg10032000d221b981\",\r\n \"name\": \"csg10032000d221b981\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centralindia\",\r\n \"tags\": {\r\n \"ms-resource-usage\": \"azure-cloud-shell\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/cloud-shell-storage-centralindia/providers/Microsoft.Storage/storageAccounts/csg10032000b56ab138\",\r\n \"name\": \"csg10032000b56ab138\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centralindia\",\r\n \"tags\": {\r\n \"ms-resource-usage\": \"azure-cloud-shell\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/cloud-shell-storage-centralindia/providers/Microsoft.Storage/storageAccounts/csg10033fffacb0d110\",\r\n \"name\": \"csg10033fffacb0d110\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centralindia\",\r\n \"tags\": {\r\n \"ms-resource-usage\": \"azure-cloud-shell\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/cloud-shell-storage-centralindia/providers/Microsoft.Storage/storageAccounts/csg1003bffda7dcd176\",\r\n \"name\": \"csg1003bffda7dcd176\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centralindia\",\r\n \"tags\": {\r\n \"ms-resource-usage\": \"azure-cloud-shell\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/cloud-shell-storage-centralindia/providers/Microsoft.Storage/storageAccounts/csg100320004f433d62\",\r\n \"name\": \"csg100320004f433d62\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centralindia\",\r\n \"tags\": {\r\n \"ms-resource-usage\": \"azure-cloud-shell\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvmsqlworkload.existing.crr/providers/Microsoft.Storage/storageAccounts/iaasvmsqlworkloadexistin\",\r\n \"name\": \"iaasvmsqlworkloadexistin\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {\r\n \"Owner\": \"chgonugu\",\r\n \"Purpose\": \"BVT\",\r\n \"MabUsed\": \"Yes\",\r\n \"DeleteBy\": \"12-2099\",\r\n \"AutoShutdown\": \"No\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/Blob-Backup/providers/Microsoft.Storage/storageAccounts/testblobbackup\",\r\n \"name\": \"testblobbackup\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/fzejupmyclivaultasrcache\",\r\n \"name\": \"fzejupmyclivaultasrcache\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rgm7e2kiyzoto4iaicwwkdomftb7zki5kh2xxwh6yyskpflgsrpkrygkpwpdcltggyb/providers/Microsoft.Storage/storageAccounts/clitest7gyg4gqt4sxirqdkc\",\r\n \"name\": \"clitest7gyg4gqt4sxirqdkc\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rglx72s62qimgelno2o6rr34a5ovdikhzq5k6dc7773qrbodtnrdcguic5hpiciscne/providers/Microsoft.Storage/storageAccounts/clitestva4qmim2g5c3cb2tz\",\r\n \"name\": \"clitestva4qmim2g5c3cb2tz\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rg7leptekwovuif35xu6k3mb6lhszl4fkmod7jkg7yckt4v7epruxvjo6ty2hzsurwh/providers/Microsoft.Storage/storageAccounts/clitest3cgxtcwowikxqlds4\",\r\n \"name\": \"clitest3cgxtcwowikxqlds4\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseCcyGrs/providers/Microsoft.Storage/storageAccounts/storeimqyzvpnwrv5a\",\r\n \"name\": \"storeimqyzvpnwrv5a\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/sarath-rg/providers/Microsoft.Storage/storageAccounts/clitestingsa\",\r\n \"name\": \"clitestingsa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/sarath-rg/providers/Microsoft.Storage/storageAccounts/axiccypod01otds1\",\r\n \"name\": \"axiccypod01otds1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseZRS/providers/Microsoft.Storage/storageAccounts/akanasezrsstorag\",\r\n \"name\": \"akanasezrsstorag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {\r\n \"Purpose\": \"Testing\",\r\n \"Owner\": \"akkanase\",\r\n \"Mab Used\": \"yes\",\r\n \"DeleteBy\": \"01-2025\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/sarath-rg/providers/Microsoft.Storage/storageAccounts/sarathsacli\",\r\n \"name\": \"sarathsacli\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm-clitest-rg/providers/Microsoft.Storage/storageAccounts/iaasvmclitestsa\",\r\n \"name\": \"iaasvmclitestsa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"Owner\": \"akneema\",\r\n \"MABUsed\": \"Yes\",\r\n \"Purpose\": \"CLITest\",\r\n \"DeleteBy\": \"12-9999\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.Storage/storageAccounts/hiagasa\",\r\n \"name\": \"hiagasa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\",\r\n \"Purpose\": \"Testing\",\r\n \"DeleteBy\": \"01-2099\",\r\n \"Owner\": \"hiaga\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.Storage/storageAccounts/akneemasaecy\",\r\n \"name\": \"akneemasaecy\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {\r\n \"Owner\": \"akneema\",\r\n \"Purpose\": \"Testing\",\r\n \"MABUsed\": \"Yes\",\r\n \"DeleteBy\": \"12-9999\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/oss-clitest-rg/providers/Microsoft.Storage/storageAccounts/ossclitestsa\",\r\n \"name\": \"ossclitestsa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"Owner\": \"akneema\",\r\n \"Purpose\": \"Testing\",\r\n \"MABUsed\": \"Yes\",\r\n \"DeleteBy\": \"12-9999\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/oss-pstest-rg/providers/Microsoft.Storage/storageAccounts/osspstestsa\",\r\n \"name\": \"osspstestsa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"MABUsed\": \"Ye\",\r\n \"Owne\": \"hiaga\",\r\n \"Purpose\": \"esting\",\r\n \"Del\": \"01-2099\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/cli-track2-rg/providers/Microsoft.Storage/storageAccounts/clitrack2sa\",\r\n \"name\": \"clitrack2sa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"Owner\": \"akneema\",\r\n \"Purpose\": \"Testing\",\r\n \"DeleteBy\": \"12-9999\",\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm-pstest-rg/providers/Microsoft.Storage/storageAccounts/iaasvmpstestsa\",\r\n \"name\": \"iaasvmpstestsa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"MABUsed\": \"yes\",\r\n \"Owner\": \"hiaga\",\r\n \"Purpose\": \"testing\",\r\n \"DeleteBy\": \"01-2099\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/DontUse-BlobRestore-BVT-CCY-RG/providers/Microsoft.Storage/storageAccounts/dontuseblobbvtccyrstrall\",\r\n \"name\": \"dontuseblobbvtccyrstrall\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/DontUse-BlobRestore-BVT-CCY-RG/providers/Microsoft.Storage/storageAccounts/dontuseblobbvtccyprefix\",\r\n \"name\": \"dontuseblobbvtccyprefix\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/DontUse-BlobRestore-BVT-CCY-RG/providers/Microsoft.Storage/storageAccounts/dontuseblobbvtccycontnr\",\r\n \"name\": \"dontuseblobbvtccycontnr\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/oss-clicloudtest-rg/providers/Microsoft.Storage/storageAccounts/ossclicloudtestsa\",\r\n \"name\": \"ossclicloudtestsa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"Owner\": \"akneema\",\r\n \"Purpose\": \"Testing\",\r\n \"DeleteBy\": \"12-9999\",\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/prnookal-wcus/providers/Microsoft.Storage/storageAccounts/prnookalwcus\",\r\n \"name\": \"prnookalwcus\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"Owner\": \"prnookal\",\r\n \"DeleteBy\": \"12-2021\",\r\n \"IsMabUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PORTAL.DPP.BVT.BLOB.RESTORE.EXISTING/providers/Microsoft.Storage/storageAccounts/blobsaforrestoreall\",\r\n \"name\": \"blobsaforrestoreall\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PORTAL.DPP.BVT.BLOB.RESTORE.EXISTING/providers/Microsoft.Storage/storageAccounts/blobrestoreopcontainers\",\r\n \"name\": \"blobrestoreopcontainers\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PORTAL.DPP.BVT.BLOB.RESTORE.EXISTING/providers/Microsoft.Storage/storageAccounts/blobrestoreopprefix\",\r\n \"name\": \"blobrestoreopprefix\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PORTAL.DPP.BVT.BLOB.RESTORE.EXISTING/providers/Microsoft.Storage/storageAccounts/blobrestoreopcontainer\",\r\n \"name\": \"blobrestoreopcontainer\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PORTAL.DPP.BVT.BLOB.RESTORE.EXISTING/providers/Microsoft.Storage/storageAccounts/blobrestoreopall\",\r\n \"name\": \"blobrestoreopall\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PORTAL.DPP.BVT.BLOB.RESTORE.EXISTING/providers/Microsoft.Storage/storageAccounts/bloboprestorecontainers\",\r\n \"name\": \"bloboprestorecontainers\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PORTAL.DPP.BVT.BLOB.RESTORE.EXISTING/providers/Microsoft.Storage/storageAccounts/bloboprestoreall\",\r\n \"name\": \"bloboprestoreall\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagargeus/providers/Microsoft.Storage/storageAccounts/hiagargeus\",\r\n \"name\": \"hiagargeus\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akneema-we-rg/providers/Microsoft.Storage/storageAccounts/gb8wepod01otds1\",\r\n \"name\": \"gb8wepod01otds1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGZRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akneema/providers/Microsoft.Storage/storageAccounts/uvqccypod01otds1\",\r\n \"name\": \"uvqccypod01otds1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagaCZR-rg/providers/Microsoft.Storage/storageAccounts/cliczrlrssa\",\r\n \"name\": \"cliczrlrssa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {\r\n \"Owner\": \"akneema\",\r\n \"Purpose\": \"Testing\",\r\n \"DeleteBy\": \"12-9999\",\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseGRSVault/providers/Microsoft.Storage/storageAccounts/frmseapod01otds1\",\r\n \"name\": \"frmseapod01otds1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGZRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseZRS/providers/Microsoft.Storage/storageAccounts/rfoccypod01otds1\",\r\n \"name\": \"rfoccypod01otds1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akneema-we-rg/providers/Microsoft.Storage/storageAccounts/m3dccypod01otds01\",\r\n \"name\": \"m3dccypod01otds01\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/AdkayethBugbash/providers/Microsoft.Storage/storageAccounts/adkayethsfsa\",\r\n \"name\": \"adkayethsfsa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/AdkayethBugbash/providers/Microsoft.Storage/storageAccounts/adkayathesfsabugbash\",\r\n \"name\": \"adkayathesfsabugbash\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resources?$filter=resourceType%20eq%20'Microsoft.Storage%2FstorageAccounts'&api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5TdG9yYWdlJTJGc3RvcmFnZUFjY291bnRzJyZhcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "57aec408-aec2-4f48-b16d-5e219ca4d292" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11985" + ], + "x-ms-request-id": [ + "4e00fb83-10eb-41a1-8889-424712c689e2" + ], + "x-ms-correlation-request-id": [ + "4e00fb83-10eb-41a1-8889-424712c689e2" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T161509Z:4e00fb83-10eb-41a1-8889-424712c689e2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 16 May 2022 16:15:08 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "34499" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.existing.crr/providers/Microsoft.Storage/storageAccounts/iaasvmexistingcrrdiag\",\r\n \"name\": \"iaasvmexistingcrrdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"MAB Used\": \"Yes\",\r\n \"DeleteBy\": \"01-2030\",\r\n \"Delete By\": \"01-2030\",\r\n \"Owner\": \"chgonugu\",\r\n \"Purpose\": \"Testing\",\r\n \"AutoShutdown\": \"false\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.existing.crr/providers/Microsoft.Storage/storageAccounts/iaasvmexistingcrrdiag112\",\r\n \"name\": \"iaasvmexistingcrrdiag112\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {\r\n \"Owner\": \"chgonugu\",\r\n \"Purpose\": \"Testing\",\r\n \"MabUsed\": \"Yes\",\r\n \"DeleteBy\": \"01-2025\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.existing.crr/providers/Microsoft.Storage/storageAccounts/iaasvmexistingcrr\",\r\n \"name\": \"iaasvmexistingcrr\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/sambit_rg/providers/Microsoft.Storage/storageAccounts/sarathsa3\",\r\n \"name\": \"sarathsa3\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvmhanaworkload.existing/providers/Microsoft.Storage/storageAccounts/iaasvmhanaworkloadexisti\",\r\n \"name\": \"iaasvmhanaworkloadexisti\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"AutoShutdown\": \"No\",\r\n \"BVT Used\": \"Yes\",\r\n \"Owner\": \"chgonugu\",\r\n \"Purpose\": \"BVT\",\r\n \"DeleteBy\": \"01-2030\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/afsnavigationtest\",\r\n \"name\": \"afsnavigationtest\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/afstbackuptestsa\",\r\n \"name\": \"afstbackuptestsa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.encryptedvm/providers/Microsoft.Storage/storageAccounts/iaasvmencryptedvmdiag170\",\r\n \"name\": \"iaasvmencryptedvmdiag170\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.existing/providers/Microsoft.Storage/storageAccounts/iaasvmexistingdiag1\",\r\n \"name\": \"iaasvmexistingdiag1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.existing/providers/Microsoft.Storage/storageAccounts/iaasextstore1\",\r\n \"name\": \"iaasextstore1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.new/providers/Microsoft.Storage/storageAccounts/iaasvmnewdiag1\",\r\n \"name\": \"iaasvmnewdiag1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.new/providers/Microsoft.Storage/storageAccounts/iaasnewstore1\",\r\n \"name\": \"iaasnewstore1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/IaasVMNavigationTest-RG/providers/Microsoft.Storage/storageAccounts/aasavigationestdiag\",\r\n \"name\": \"aasavigationestdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/IaasVMNavigationTest-RG/providers/Microsoft.Storage/storageAccounts/iaasvmnavigationstore\",\r\n \"name\": \"iaasvmnavigationstore\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pscloudtestrg/providers/Microsoft.Storage/storageAccounts/pscloudtestrgdiag\",\r\n \"name\": \"pscloudtestrgdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MAB Used\": \" Yes\",\r\n \"MABUsed\": \" Yes\",\r\n \"DeleteBy\": \"01-2030\",\r\n \"Purpose\": \"PS bvt\",\r\n \"Owner\": \"sarath\",\r\n \"AutoShutdown\": \"No\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pscloudtestrg/providers/Microsoft.Storage/storageAccounts/psbvtsa2\",\r\n \"name\": \"psbvtsa2\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstestsa8895\",\r\n \"name\": \"pstestsa8895\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstesttargetsa8895\",\r\n \"name\": \"pstesttargetsa8895\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstesttargetsa8896\",\r\n \"name\": \"pstesttargetsa8896\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/afsbackupsa\",\r\n \"name\": \"afsbackupsa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"Owner\": \"sarath\",\r\n \"Purpose\": \" BVT\",\r\n \"DeleteBy\": \"01-2025\",\r\n \"AutoShutdown\": \"No\",\r\n \"MAB Used\": \" Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG54bdf8da/providers/Microsoft.Storage/storageAccounts/pstestsa54bdf8da\",\r\n \"name\": \"pstestsa54bdf8da\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG1e5a278b/providers/Microsoft.Storage/storageAccounts/pstestsa1e5a278b\",\r\n \"name\": \"pstestsa1e5a278b\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG59e1706f/providers/Microsoft.Storage/storageAccounts/pstestsa59e1706f\",\r\n \"name\": \"pstestsa59e1706f\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/storageysci5wbex6jyc\",\r\n \"name\": \"storageysci5wbex6jyc\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/prnookal-rg/providers/Microsoft.Storage/storageAccounts/prnookaltestnob\",\r\n \"name\": \"prnookaltestnob\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"isMABUsed\": \"Yes\",\r\n \" Owner\": \"prnookal@microsoft.com\",\r\n \"DeletBy\": \"12-2021\",\r\n \"Purpose\": \" Testing\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/afsbackupsa1\",\r\n \"name\": \"afsbackupsa1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"Mab Used\": \"yes\",\r\n \"Owner\": \"akkanase\",\r\n \"Purpose\": \"Testing\",\r\n \"DeleteBy\": \"01-2022\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/afsbackupsa2\",\r\n \"name\": \"afsbackupsa2\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseTest/providers/Microsoft.Storage/storageAccounts/afsfilesharetest\",\r\n \"name\": \"afsfilesharetest\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/afsbackupsa3\",\r\n \"name\": \"afsbackupsa3\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/afsbackupsa0\",\r\n \"name\": \"afsbackupsa0\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pscloudtest-diskbackup-existing/providers/Microsoft.Storage/storageAccounts/1vnseapod01otds1\",\r\n \"name\": \"1vnseapod01otds1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGZRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseAFSTest/providers/Microsoft.Storage/storageAccounts/akkanaseafssa\",\r\n \"name\": \"akkanaseafssa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MAB Used\": \"Yes\",\r\n \"Owner\": \"akkanase\",\r\n \"Purpose\": \"Testing\",\r\n \"Delete By\": \"05-202\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseAFSTest/providers/Microsoft.Storage/storageAccounts/akkanasembpd2\",\r\n \"name\": \"akkanasembpd2\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MAB Used\": \"Yes\",\r\n \"Purpose\": \"Testing\",\r\n \"Owner\": \"akkanase\",\r\n \"Delete By\": \"05-2022\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseCMK/providers/Microsoft.Storage/storageAccounts/akkanase\",\r\n \"name\": \"akkanase\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"DeleteBy\": \"05-2023\",\r\n \"Owner\": \"akkanase\",\r\n \"Purpose\": \"Testing\",\r\n \"MAB Used\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/cmk.system/providers/Microsoft.Storage/storageAccounts/cmkautomationstore\",\r\n \"name\": \"cmkautomationstore\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"Delete By\": \"05-2050\",\r\n \"MAB Used\": \" Yes\",\r\n \"Owner\": \"akkanase\",\r\n \"Purpose\": \" BVT\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG235879ba/providers/Microsoft.Storage/storageAccounts/pstestsa235879ba\",\r\n \"name\": \"pstestsa235879ba\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/disk-bvt-test-rg/providers/Microsoft.Storage/storageAccounts/hv3seapod01otds1\",\r\n \"name\": \"hv3seapod01otds1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGZRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/DoNotUse-OSS-BVT-SEA-RG/providers/Microsoft.Storage/storageAccounts/dontuseossrestoreasfile\",\r\n \"name\": \"dontuseossrestoreasfile\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MAB Used\": \" Yes\",\r\n \" Owner\": \"akkanase\",\r\n \"Purpose\": \"BV\",\r\n \"Delete By\": \"05-2020\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseAFSTest/providers/Microsoft.Storage/storageAccounts/akkanaseafsa2\",\r\n \"name\": \"akkanaseafsa2\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseCMK/providers/Microsoft.Storage/storageAccounts/0byseapod01otds1\",\r\n \"name\": \"0byseapod01otds1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGZRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/9exwuspod01otds1\",\r\n \"name\": \"9exwuspod01otds1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/02xseacan01otds1\",\r\n \"name\": \"02xseacan01otds1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGZRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseMAB/providers/Microsoft.Storage/storageAccounts/dnhccypod01otds1\",\r\n \"name\": \"dnhccypod01otds1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rguzio7xhypi/providers/Microsoft.Storage/storageAccounts/clitest4b24ibpr3ztyhwo23\",\r\n \"name\": \"clitest4b24ibpr3ztyhwo23\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rgsiaa3ljqg5/providers/Microsoft.Storage/storageAccounts/clitestgd6i34czs3jb3rdtc\",\r\n \"name\": \"clitestgd6i34czs3jb3rdtc\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rgjxpjikqjjw/providers/Microsoft.Storage/storageAccounts/clitestjkhq2kpsal665atqe\",\r\n \"name\": \"clitestjkhq2kpsal665atqe\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rgwwhxyyhl2u/providers/Microsoft.Storage/storageAccounts/clitestdggdsdbtfa6vq5n5o\",\r\n \"name\": \"clitestdggdsdbtfa6vq5n5o\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rgm44mrkvygk/providers/Microsoft.Storage/storageAccounts/clitestodvd3xsftt63go6dk\",\r\n \"name\": \"clitestodvd3xsftt63go6dk\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rgdy7jf3qqzd/providers/Microsoft.Storage/storageAccounts/clitestnbsma3ftf2yugilxq\",\r\n \"name\": \"clitestnbsma3ftf2yugilxq\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rgl5tlzqo2pt/providers/Microsoft.Storage/storageAccounts/clitestgn64zidsnwe3ndjp5\",\r\n \"name\": \"clitestgn64zidsnwe3ndjp5\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rg73eqbdp4g5/providers/Microsoft.Storage/storageAccounts/clitestzfhrqsr4m24iwnjy7\",\r\n \"name\": \"clitestzfhrqsr4m24iwnjy7\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rg73eqbdp4g5/providers/Microsoft.Storage/storageAccounts/clitestukhlrarahpoebmaln\",\r\n \"name\": \"clitestukhlrarahpoebmaln\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/prnookal-prod/providers/Microsoft.Storage/storageAccounts/prnookalprod\",\r\n \"name\": \"prnookalprod\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"japaneast\",\r\n \"tags\": {\r\n \"IsMabUsed\": \"Yes\",\r\n \"Owner\": \"prnookal\",\r\n \"DeleteBy\": \"12-2021\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/cloud-shell-storage-centralindia/providers/Microsoft.Storage/storageAccounts/csg10032000d221b981\",\r\n \"name\": \"csg10032000d221b981\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centralindia\",\r\n \"tags\": {\r\n \"ms-resource-usage\": \"azure-cloud-shell\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/cloud-shell-storage-centralindia/providers/Microsoft.Storage/storageAccounts/csg10032000b56ab138\",\r\n \"name\": \"csg10032000b56ab138\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centralindia\",\r\n \"tags\": {\r\n \"ms-resource-usage\": \"azure-cloud-shell\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/cloud-shell-storage-centralindia/providers/Microsoft.Storage/storageAccounts/csg10033fffacb0d110\",\r\n \"name\": \"csg10033fffacb0d110\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centralindia\",\r\n \"tags\": {\r\n \"ms-resource-usage\": \"azure-cloud-shell\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/cloud-shell-storage-centralindia/providers/Microsoft.Storage/storageAccounts/csg1003bffda7dcd176\",\r\n \"name\": \"csg1003bffda7dcd176\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centralindia\",\r\n \"tags\": {\r\n \"ms-resource-usage\": \"azure-cloud-shell\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/cloud-shell-storage-centralindia/providers/Microsoft.Storage/storageAccounts/csg100320004f433d62\",\r\n \"name\": \"csg100320004f433d62\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centralindia\",\r\n \"tags\": {\r\n \"ms-resource-usage\": \"azure-cloud-shell\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvmsqlworkload.existing.crr/providers/Microsoft.Storage/storageAccounts/iaasvmsqlworkloadexistin\",\r\n \"name\": \"iaasvmsqlworkloadexistin\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {\r\n \"Owner\": \"chgonugu\",\r\n \"Purpose\": \"BVT\",\r\n \"MabUsed\": \"Yes\",\r\n \"DeleteBy\": \"12-2099\",\r\n \"AutoShutdown\": \"No\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/Blob-Backup/providers/Microsoft.Storage/storageAccounts/testblobbackup\",\r\n \"name\": \"testblobbackup\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/fzejupmyclivaultasrcache\",\r\n \"name\": \"fzejupmyclivaultasrcache\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rgm7e2kiyzoto4iaicwwkdomftb7zki5kh2xxwh6yyskpflgsrpkrygkpwpdcltggyb/providers/Microsoft.Storage/storageAccounts/clitest7gyg4gqt4sxirqdkc\",\r\n \"name\": \"clitest7gyg4gqt4sxirqdkc\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rglx72s62qimgelno2o6rr34a5ovdikhzq5k6dc7773qrbodtnrdcguic5hpiciscne/providers/Microsoft.Storage/storageAccounts/clitestva4qmim2g5c3cb2tz\",\r\n \"name\": \"clitestva4qmim2g5c3cb2tz\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rg7leptekwovuif35xu6k3mb6lhszl4fkmod7jkg7yckt4v7epruxvjo6ty2hzsurwh/providers/Microsoft.Storage/storageAccounts/clitest3cgxtcwowikxqlds4\",\r\n \"name\": \"clitest3cgxtcwowikxqlds4\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseCcyGrs/providers/Microsoft.Storage/storageAccounts/storeimqyzvpnwrv5a\",\r\n \"name\": \"storeimqyzvpnwrv5a\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/sarath-rg/providers/Microsoft.Storage/storageAccounts/clitestingsa\",\r\n \"name\": \"clitestingsa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/sarath-rg/providers/Microsoft.Storage/storageAccounts/axiccypod01otds1\",\r\n \"name\": \"axiccypod01otds1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseZRS/providers/Microsoft.Storage/storageAccounts/akanasezrsstorag\",\r\n \"name\": \"akanasezrsstorag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {\r\n \"Purpose\": \"Testing\",\r\n \"Owner\": \"akkanase\",\r\n \"Mab Used\": \"yes\",\r\n \"DeleteBy\": \"01-2025\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/sarath-rg/providers/Microsoft.Storage/storageAccounts/sarathsacli\",\r\n \"name\": \"sarathsacli\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm-clitest-rg/providers/Microsoft.Storage/storageAccounts/iaasvmclitestsa\",\r\n \"name\": \"iaasvmclitestsa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"Owner\": \"akneema\",\r\n \"MABUsed\": \"Yes\",\r\n \"Purpose\": \"CLITest\",\r\n \"DeleteBy\": \"12-9999\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.Storage/storageAccounts/hiagasa\",\r\n \"name\": \"hiagasa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\",\r\n \"Purpose\": \"Testing\",\r\n \"DeleteBy\": \"01-2099\",\r\n \"Owner\": \"hiaga\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.Storage/storageAccounts/akneemasaecy\",\r\n \"name\": \"akneemasaecy\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {\r\n \"Owner\": \"akneema\",\r\n \"Purpose\": \"Testing\",\r\n \"MABUsed\": \"Yes\",\r\n \"DeleteBy\": \"12-9999\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/oss-clitest-rg/providers/Microsoft.Storage/storageAccounts/ossclitestsa\",\r\n \"name\": \"ossclitestsa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"Owner\": \"akneema\",\r\n \"Purpose\": \"Testing\",\r\n \"MABUsed\": \"Yes\",\r\n \"DeleteBy\": \"12-9999\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/oss-pstest-rg/providers/Microsoft.Storage/storageAccounts/osspstestsa\",\r\n \"name\": \"osspstestsa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"MABUsed\": \"Ye\",\r\n \"Owne\": \"hiaga\",\r\n \"Purpose\": \"esting\",\r\n \"Del\": \"01-2099\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/cli-track2-rg/providers/Microsoft.Storage/storageAccounts/clitrack2sa\",\r\n \"name\": \"clitrack2sa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"Owner\": \"akneema\",\r\n \"Purpose\": \"Testing\",\r\n \"DeleteBy\": \"12-9999\",\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm-pstest-rg/providers/Microsoft.Storage/storageAccounts/iaasvmpstestsa\",\r\n \"name\": \"iaasvmpstestsa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"MABUsed\": \"yes\",\r\n \"Owner\": \"hiaga\",\r\n \"Purpose\": \"testing\",\r\n \"DeleteBy\": \"01-2099\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/DontUse-BlobRestore-BVT-CCY-RG/providers/Microsoft.Storage/storageAccounts/dontuseblobbvtccyrstrall\",\r\n \"name\": \"dontuseblobbvtccyrstrall\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/DontUse-BlobRestore-BVT-CCY-RG/providers/Microsoft.Storage/storageAccounts/dontuseblobbvtccyprefix\",\r\n \"name\": \"dontuseblobbvtccyprefix\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/DontUse-BlobRestore-BVT-CCY-RG/providers/Microsoft.Storage/storageAccounts/dontuseblobbvtccycontnr\",\r\n \"name\": \"dontuseblobbvtccycontnr\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/oss-clicloudtest-rg/providers/Microsoft.Storage/storageAccounts/ossclicloudtestsa\",\r\n \"name\": \"ossclicloudtestsa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"Owner\": \"akneema\",\r\n \"Purpose\": \"Testing\",\r\n \"DeleteBy\": \"12-9999\",\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/prnookal-wcus/providers/Microsoft.Storage/storageAccounts/prnookalwcus\",\r\n \"name\": \"prnookalwcus\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"Owner\": \"prnookal\",\r\n \"DeleteBy\": \"12-2021\",\r\n \"IsMabUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PORTAL.DPP.BVT.BLOB.RESTORE.EXISTING/providers/Microsoft.Storage/storageAccounts/blobsaforrestoreall\",\r\n \"name\": \"blobsaforrestoreall\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PORTAL.DPP.BVT.BLOB.RESTORE.EXISTING/providers/Microsoft.Storage/storageAccounts/blobrestoreopcontainers\",\r\n \"name\": \"blobrestoreopcontainers\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PORTAL.DPP.BVT.BLOB.RESTORE.EXISTING/providers/Microsoft.Storage/storageAccounts/blobrestoreopprefix\",\r\n \"name\": \"blobrestoreopprefix\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PORTAL.DPP.BVT.BLOB.RESTORE.EXISTING/providers/Microsoft.Storage/storageAccounts/blobrestoreopcontainer\",\r\n \"name\": \"blobrestoreopcontainer\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PORTAL.DPP.BVT.BLOB.RESTORE.EXISTING/providers/Microsoft.Storage/storageAccounts/blobrestoreopall\",\r\n \"name\": \"blobrestoreopall\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PORTAL.DPP.BVT.BLOB.RESTORE.EXISTING/providers/Microsoft.Storage/storageAccounts/bloboprestorecontainers\",\r\n \"name\": \"bloboprestorecontainers\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PORTAL.DPP.BVT.BLOB.RESTORE.EXISTING/providers/Microsoft.Storage/storageAccounts/bloboprestoreall\",\r\n \"name\": \"bloboprestoreall\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagargeus/providers/Microsoft.Storage/storageAccounts/hiagargeus\",\r\n \"name\": \"hiagargeus\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akneema-we-rg/providers/Microsoft.Storage/storageAccounts/gb8wepod01otds1\",\r\n \"name\": \"gb8wepod01otds1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGZRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akneema/providers/Microsoft.Storage/storageAccounts/uvqccypod01otds1\",\r\n \"name\": \"uvqccypod01otds1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagaCZR-rg/providers/Microsoft.Storage/storageAccounts/cliczrlrssa\",\r\n \"name\": \"cliczrlrssa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {\r\n \"Owner\": \"akneema\",\r\n \"Purpose\": \"Testing\",\r\n \"DeleteBy\": \"12-9999\",\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseGRSVault/providers/Microsoft.Storage/storageAccounts/frmseapod01otds1\",\r\n \"name\": \"frmseapod01otds1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGZRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseZRS/providers/Microsoft.Storage/storageAccounts/rfoccypod01otds1\",\r\n \"name\": \"rfoccypod01otds1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akneema-we-rg/providers/Microsoft.Storage/storageAccounts/m3dccypod01otds01\",\r\n \"name\": \"m3dccypod01otds01\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/AdkayethBugbash/providers/Microsoft.Storage/storageAccounts/adkayethsfsa\",\r\n \"name\": \"adkayethsfsa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/AdkayethBugbash/providers/Microsoft.Storage/storageAccounts/adkayathesfsabugbash\",\r\n \"name\": \"adkayathesfsabugbash\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3Bstorage%3Bpstestrg8895%3Bpstestsa8895/protectedItems/AzureFileShare%3B698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959/recoveryPoints/18866357498473/restore?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCc3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9wcm90ZWN0ZWRJdGVtcy9BenVyZUZpbGVTaGFyZSUzQjY5OGRmNTk1OTQ4ZTIzNTVmMmJiNzQ0YTQxY2YyNDVkNGJhMTI1NWQ5Njk5Y2MzYzJhZDFmNTA0NWUxNzc5NTkvcmVjb3ZlcnlQb2ludHMvMTg4NjYzNTc0OTg0NzMvcmVzdG9yZT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"properties\": {\r\n \"objectType\": \"AzureFileShareRestoreRequest\",\r\n \"recoveryType\": \"OriginalLocation\",\r\n \"sourceResourceId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstestsa8895\",\r\n \"copyOptions\": \"Overwrite\",\r\n \"restoreRequestType\": \"ItemLevelRestore\",\r\n \"restoreFileSpecs\": [\r\n {\r\n \"path\": \"file1.txt\",\r\n \"fileSpecType\": \"File\"\r\n },\r\n {\r\n \"path\": \"file2.txt\",\r\n \"fileSpecType\": \"File\"\r\n }\r\n ]\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "91ca1cd7-c0c8-483b-b1ed-64f85417e18a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "560" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;storage;pstestrg8895;pstestsa8895/protectedItems/AzureFileShare;698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959/operationResults/7545d00f-cbd6-40f9-8617-1163682b8dad?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;storage;pstestrg8895;pstestsa8895/protectedItems/AzureFileShare;698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959/operationsStatus/7545d00f-cbd6-40f9-8617-1163682b8dad?api-version=2022-02-01" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "dc31d436-3d3f-41c4-9e1a-6256e160edc1" + ], + "x-ms-client-request-id": [ + "91ca1cd7-c0c8-483b-b1ed-64f85417e18a", + "91ca1cd7-c0c8-483b-b1ed-64f85417e18a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-correlation-request-id": [ + "dc31d436-3d3f-41c4-9e1a-6256e160edc1" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T161048Z:dc31d436-3d3f-41c4-9e1a-6256e160edc1" + ], + "Date": [ + "Mon, 16 May 2022 16:10:48 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3Bstorage%3Bpstestrg8895%3Bpstestsa8895/protectedItems/AzureFileShare%3B698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959/recoveryPoints/18866357498473/restore?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCc3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9wcm90ZWN0ZWRJdGVtcy9BenVyZUZpbGVTaGFyZSUzQjY5OGRmNTk1OTQ4ZTIzNTVmMmJiNzQ0YTQxY2YyNDVkNGJhMTI1NWQ5Njk5Y2MzYzJhZDFmNTA0NWUxNzc5NTkvcmVjb3ZlcnlQb2ludHMvMTg4NjYzNTc0OTg0NzMvcmVzdG9yZT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"properties\": {\r\n \"objectType\": \"AzureFileShareRestoreRequest\",\r\n \"recoveryType\": \"AlternateLocation\",\r\n \"sourceResourceId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstestsa8895\",\r\n \"copyOptions\": \"Overwrite\",\r\n \"restoreRequestType\": \"ItemLevelRestore\",\r\n \"restoreFileSpecs\": [\r\n {\r\n \"path\": \"pstestfolder1bca8f8e\",\r\n \"fileSpecType\": \"Directory\",\r\n \"targetFolderPath\": \"pstestfolder3rty7d7s\"\r\n }\r\n ],\r\n \"targetDetails\": {\r\n \"name\": \"fs1\",\r\n \"targetResourceId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstesttargetsa8896\"\r\n }\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0624898d-8cee-4015-bfda-78fbce0120fa" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "775" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;storage;pstestrg8895;pstestsa8895/protectedItems/AzureFileShare;698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959/operationResults/db848432-40e4-4f16-a776-94ef9bcee00d?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;storage;pstestrg8895;pstestsa8895/protectedItems/AzureFileShare;698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959/operationsStatus/db848432-40e4-4f16-a776-94ef9bcee00d?api-version=2022-02-01" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "636e435b-0942-46bc-b1f5-85981486bd4f" + ], + "x-ms-client-request-id": [ + "0624898d-8cee-4015-bfda-78fbce0120fa", + "0624898d-8cee-4015-bfda-78fbce0120fa" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" + ], + "x-ms-correlation-request-id": [ + "636e435b-0942-46bc-b1f5-85981486bd4f" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T161154Z:636e435b-0942-46bc-b1f5-85981486bd4f" + ], + "Date": [ + "Mon, 16 May 2022 16:11:53 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3Bstorage%3Bpstestrg8895%3Bpstestsa8895/protectedItems/AzureFileShare%3B698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959/recoveryPoints/18866357498473/restore?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCc3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9wcm90ZWN0ZWRJdGVtcy9BenVyZUZpbGVTaGFyZSUzQjY5OGRmNTk1OTQ4ZTIzNTVmMmJiNzQ0YTQxY2YyNDVkNGJhMTI1NWQ5Njk5Y2MzYzJhZDFmNTA0NWUxNzc5NTkvcmVjb3ZlcnlQb2ludHMvMTg4NjYzNTc0OTg0NzMvcmVzdG9yZT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"properties\": {\r\n \"objectType\": \"AzureFileShareRestoreRequest\",\r\n \"recoveryType\": \"AlternateLocation\",\r\n \"sourceResourceId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstestsa8895\",\r\n \"copyOptions\": \"Overwrite\",\r\n \"restoreRequestType\": \"FullShareRestore\",\r\n \"restoreFileSpecs\": [\r\n {\r\n \"targetFolderPath\": \"pstestfolder3rty7d7s\"\r\n }\r\n ],\r\n \"targetDetails\": {\r\n \"name\": \"fs1\",\r\n \"targetResourceId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstesttargetsa8896\"\r\n }\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fd770b01-8b83-4071-aad7-cf86d08a24cd" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "696" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;storage;pstestrg8895;pstestsa8895/protectedItems/AzureFileShare;698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959/operationResults/1d4dca3f-981a-48d3-b43d-a696efa85068?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;storage;pstestrg8895;pstestsa8895/protectedItems/AzureFileShare;698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959/operationsStatus/1d4dca3f-981a-48d3-b43d-a696efa85068?api-version=2022-02-01" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "53fe3574-ebb6-49b2-8450-96d4854b5170" + ], + "x-ms-client-request-id": [ + "fd770b01-8b83-4071-aad7-cf86d08a24cd", + "fd770b01-8b83-4071-aad7-cf86d08a24cd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1195" + ], + "x-ms-correlation-request-id": [ + "53fe3574-ebb6-49b2-8450-96d4854b5170" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T161259Z:53fe3574-ebb6-49b2-8450-96d4854b5170" + ], + "Date": [ + "Mon, 16 May 2022 16:12:59 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3Bstorage%3Bpstestrg8895%3Bpstestsa8895/protectedItems/AzureFileShare%3B698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959/recoveryPoints/18866357498473/restore?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCc3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9wcm90ZWN0ZWRJdGVtcy9BenVyZUZpbGVTaGFyZSUzQjY5OGRmNTk1OTQ4ZTIzNTVmMmJiNzQ0YTQxY2YyNDVkNGJhMTI1NWQ5Njk5Y2MzYzJhZDFmNTA0NWUxNzc5NTkvcmVjb3ZlcnlQb2ludHMvMTg4NjYzNTc0OTg0NzMvcmVzdG9yZT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"properties\": {\r\n \"objectType\": \"AzureFileShareRestoreRequest\",\r\n \"recoveryType\": \"OriginalLocation\",\r\n \"sourceResourceId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstestsa8895\",\r\n \"copyOptions\": \"Overwrite\",\r\n \"restoreRequestType\": \"ItemLevelRestore\",\r\n \"restoreFileSpecs\": [\r\n {\r\n \"path\": \"pstestfolder1bca8f8e/pstestfile1bca8f8e.txt\",\r\n \"fileSpecType\": \"File\"\r\n }\r\n ]\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3c145b4f-4a12-4ba6-9964-2936d8bc94e4" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "513" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;storage;pstestrg8895;pstestsa8895/protectedItems/AzureFileShare;698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959/operationResults/dc1ab121-d353-452a-8425-f6323bacccd5?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;storage;pstestrg8895;pstestsa8895/protectedItems/AzureFileShare;698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959/operationsStatus/dc1ab121-d353-452a-8425-f6323bacccd5?api-version=2022-02-01" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "b41ae4a7-7340-4311-8111-8caecf29523e" + ], + "x-ms-client-request-id": [ + "3c145b4f-4a12-4ba6-9964-2936d8bc94e4", + "3c145b4f-4a12-4ba6-9964-2936d8bc94e4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1194" + ], + "x-ms-correlation-request-id": [ + "b41ae4a7-7340-4311-8111-8caecf29523e" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T161405Z:b41ae4a7-7340-4311-8111-8caecf29523e" + ], + "Date": [ + "Mon, 16 May 2022 16:14:04 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3Bstorage%3Bpstestrg8895%3Bpstestsa8895/protectedItems/AzureFileShare%3B698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959/recoveryPoints/18866357498473/restore?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCc3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9wcm90ZWN0ZWRJdGVtcy9BenVyZUZpbGVTaGFyZSUzQjY5OGRmNTk1OTQ4ZTIzNTVmMmJiNzQ0YTQxY2YyNDVkNGJhMTI1NWQ5Njk5Y2MzYzJhZDFmNTA0NWUxNzc5NTkvcmVjb3ZlcnlQb2ludHMvMTg4NjYzNTc0OTg0NzMvcmVzdG9yZT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"properties\": {\r\n \"objectType\": \"AzureFileShareRestoreRequest\",\r\n \"recoveryType\": \"OriginalLocation\",\r\n \"sourceResourceId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstestsa8895\",\r\n \"copyOptions\": \"Overwrite\",\r\n \"restoreRequestType\": \"FullShareRestore\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "57aec408-aec2-4f48-b16d-5e219ca4d292" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "364" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;storage;pstestrg8895;pstestsa8895/protectedItems/AzureFileShare;698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959/operationResults/aa81b692-e218-414e-b213-3ec4d943bdbc?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;storage;pstestrg8895;pstestsa8895/protectedItems/AzureFileShare;698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959/operationsStatus/aa81b692-e218-414e-b213-3ec4d943bdbc?api-version=2022-02-01" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "f0390b29-85a6-42a2-9235-2b764dbd0536" ], "x-ms-client-request-id": [ - "bbfb3d3c-8482-49e1-94e1-71481f000bf8", - "bbfb3d3c-8482-49e1-94e1-71481f000bf8" + "57aec408-aec2-4f48-b16d-5e219ca4d292", + "57aec408-aec2-4f48-b16d-5e219ca4d292" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3277,16 +4043,16 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1193" ], "x-ms-correlation-request-id": [ - "4545d732-d04e-489d-851f-66c3f21efd2d" + "f0390b29-85a6-42a2-9235-2b764dbd0536" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T095850Z:4545d732-d04e-489d-851f-66c3f21efd2d" + "JIOINDIAWEST:20220516T161510Z:f0390b29-85a6-42a2-9235-2b764dbd0536" ], "Date": [ - "Sat, 26 Mar 2022 09:58:49 GMT" + "Mon, 16 May 2022 16:15:10 GMT" ], "Expires": [ "-1" @@ -3295,32 +4061,294 @@ "0" ] }, - "ResponseBody": "", - "StatusCode": 202 + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;storage;pstestrg8895;pstestsa8895/protectedItems/AzureFileShare;698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959/operationsStatus/7545d00f-cbd6-40f9-8617-1163682b8dad?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyO3N0b3JhZ2U7cHN0ZXN0cmc4ODk1O3BzdGVzdHNhODg5NS9wcm90ZWN0ZWRJdGVtcy9BenVyZUZpbGVTaGFyZTs2OThkZjU5NTk0OGUyMzU1ZjJiYjc0NGE0MWNmMjQ1ZDRiYTEyNTVkOTY5OWNjM2MyYWQxZjUwNDVlMTc3OTU5L29wZXJhdGlvbnNTdGF0dXMvNzU0NWQwMGYtY2JkNi00MGY5LTg2MTctMTE2MzY4MmI4ZGFkP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "91ca1cd7-c0c8-483b-b1ed-64f85417e18a" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "c67444e4-f551-4547-9486-07ae22e60ac3" + ], + "x-ms-client-request-id": [ + "91ca1cd7-c0c8-483b-b1ed-64f85417e18a", + "91ca1cd7-c0c8-483b-b1ed-64f85417e18a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "299" + ], + "x-ms-correlation-request-id": [ + "c67444e4-f551-4547-9486-07ae22e60ac3" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T161149Z:c67444e4-f551-4547-9486-07ae22e60ac3" + ], + "Date": [ + "Mon, 16 May 2022 16:11:49 GMT" + ], + "Content-Length": [ + "304" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"7545d00f-cbd6-40f9-8617-1163682b8dad\",\r\n \"name\": \"7545d00f-cbd6-40f9-8617-1163682b8dad\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-05-16T16:10:48.6038834Z\",\r\n \"endTime\": \"2022-05-16T16:10:48.6038834Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"7545d00f-cbd6-40f9-8617-1163682b8dad\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;storage;pstestrg8895;pstestsa8895/protectedItems/AzureFileShare;698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959/operationResults/7545d00f-cbd6-40f9-8617-1163682b8dad?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyO3N0b3JhZ2U7cHN0ZXN0cmc4ODk1O3BzdGVzdHNhODg5NS9wcm90ZWN0ZWRJdGVtcy9BenVyZUZpbGVTaGFyZTs2OThkZjU5NTk0OGUyMzU1ZjJiYjc0NGE0MWNmMjQ1ZDRiYTEyNTVkOTY5OWNjM2MyYWQxZjUwNDVlMTc3OTU5L29wZXJhdGlvblJlc3VsdHMvNzU0NWQwMGYtY2JkNi00MGY5LTg2MTctMTE2MzY4MmI4ZGFkP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "91ca1cd7-c0c8-483b-b1ed-64f85417e18a" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "60" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;storage;pstestrg8895;pstestsa8895/protectedItems/AzureFileShare;698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959/operationsStatus/7545d00f-cbd6-40f9-8617-1163682b8dad?api-version=2022-02-01" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "14f64886-edd2-4915-be96-ffdec007ad11" + ], + "x-ms-client-request-id": [ + "91ca1cd7-c0c8-483b-b1ed-64f85417e18a", + "91ca1cd7-c0c8-483b-b1ed-64f85417e18a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "299" + ], + "x-ms-correlation-request-id": [ + "14f64886-edd2-4915-be96-ffdec007ad11" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T161150Z:14f64886-edd2-4915-be96-ffdec007ad11" + ], + "Date": [ + "Mon, 16 May 2022 16:11:49 GMT" + ] + }, + "ResponseBody": "", + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/7545d00f-cbd6-40f9-8617-1163682b8dad?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy83NTQ1ZDAwZi1jYmQ2LTQwZjktODYxNy0xMTYzNjgyYjhkYWQ/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "91ca1cd7-c0c8-483b-b1ed-64f85417e18a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "b05623a6-333c-4ca5-930e-0cd610488435" + ], + "x-ms-client-request-id": [ + "91ca1cd7-c0c8-483b-b1ed-64f85417e18a", + "91ca1cd7-c0c8-483b-b1ed-64f85417e18a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "286" + ], + "x-ms-correlation-request-id": [ + "b05623a6-333c-4ca5-930e-0cd610488435" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T161151Z:b05623a6-333c-4ca5-930e-0cd610488435" + ], + "Date": [ + "Mon, 16 May 2022 16:11:50 GMT" + ], + "Content-Length": [ + "304" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"7545d00f-cbd6-40f9-8617-1163682b8dad\",\r\n \"name\": \"7545d00f-cbd6-40f9-8617-1163682b8dad\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-05-16T16:10:48.6038834Z\",\r\n \"endTime\": \"2022-05-16T16:10:48.6038834Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"7545d00f-cbd6-40f9-8617-1163682b8dad\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/7545d00f-cbd6-40f9-8617-1163682b8dad?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy83NTQ1ZDAwZi1jYmQ2LTQwZjktODYxNy0xMTYzNjgyYjhkYWQ/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "91ca1cd7-c0c8-483b-b1ed-64f85417e18a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "5b521fbe-4d4b-4c8a-b798-86c9610de107" + ], + "x-ms-client-request-id": [ + "91ca1cd7-c0c8-483b-b1ed-64f85417e18a", + "91ca1cd7-c0c8-483b-b1ed-64f85417e18a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "285" + ], + "x-ms-correlation-request-id": [ + "5b521fbe-4d4b-4c8a-b798-86c9610de107" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T161151Z:5b521fbe-4d4b-4c8a-b798-86c9610de107" + ], + "Date": [ + "Mon, 16 May 2022 16:11:51 GMT" + ], + "Content-Length": [ + "304" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"7545d00f-cbd6-40f9-8617-1163682b8dad\",\r\n \"name\": \"7545d00f-cbd6-40f9-8617-1163682b8dad\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-05-16T16:10:48.6038834Z\",\r\n \"endTime\": \"2022-05-16T16:10:48.6038834Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"7545d00f-cbd6-40f9-8617-1163682b8dad\"\r\n }\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3Bstorage%3Bpstestrg8895%3Bpstestsa8895/protectedItems/AzureFileShare%3B698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959/recoveryPoints/33475003016675/restore?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCc3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9wcm90ZWN0ZWRJdGVtcy9BenVyZUZpbGVTaGFyZSUzQjY5OGRmNTk1OTQ4ZTIzNTVmMmJiNzQ0YTQxY2YyNDVkNGJhMTI1NWQ5Njk5Y2MzYzJhZDFmNTA0NWUxNzc5NTkvcmVjb3ZlcnlQb2ludHMvMzM0NzUwMDMwMTY2NzUvcmVzdG9yZT9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", - "RequestMethod": "POST", - "RequestBody": "{\r\n \"properties\": {\r\n \"objectType\": \"AzureFileShareRestoreRequest\",\r\n \"recoveryType\": \"OriginalLocation\",\r\n \"sourceResourceId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstestsa8895\",\r\n \"copyOptions\": \"Overwrite\",\r\n \"restoreRequestType\": \"ItemLevelRestore\",\r\n \"restoreFileSpecs\": [\r\n {\r\n \"path\": \"pstestfolder1bca8f8e/pstestfile1bca8f8e.txt\",\r\n \"fileSpecType\": \"File\"\r\n }\r\n ]\r\n }\r\n}", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/7545d00f-cbd6-40f9-8617-1163682b8dad?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy83NTQ1ZDAwZi1jYmQ2LTQwZjktODYxNy0xMTYzNjgyYjhkYWQ/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "710f4ec8-20fe-4fdd-9de3-b7169babc8eb" + "91ca1cd7-c0c8-483b-b1ed-64f85417e18a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "513" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -3330,76 +4358,68 @@ "Pragma": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;storage;pstestrg8895;pstestsa8895/protectedItems/AzureFileShare;698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959/operationResults/73e4797a-0b90-4144-bbfe-20e4f073ef2e?api-version=2021-12-01" - ], - "Retry-After": [ - "60" - ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;storage;pstestrg8895;pstestsa8895/protectedItems/AzureFileShare;698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959/operationsStatus/73e4797a-0b90-4144-bbfe-20e4f073ef2e?api-version=2021-12-01" + "Server": [ + "Microsoft-IIS/10.0", + "Microsoft-IIS/10.0" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "73147133-923e-4e70-a75a-b191549399c7" + "fbe1da0b-c10c-40de-915e-b554c810bbf8" ], "x-ms-client-request-id": [ - "710f4ec8-20fe-4fdd-9de3-b7169babc8eb", - "710f4ec8-20fe-4fdd-9de3-b7169babc8eb" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "91ca1cd7-c0c8-483b-b1ed-64f85417e18a", + "91ca1cd7-c0c8-483b-b1ed-64f85417e18a" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "296" ], "x-ms-correlation-request-id": [ - "73147133-923e-4e70-a75a-b191549399c7" + "fbe1da0b-c10c-40de-915e-b554c810bbf8" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T095954Z:73147133-923e-4e70-a75a-b191549399c7" + "JIOINDIAWEST:20220516T161152Z:fbe1da0b-c10c-40de-915e-b554c810bbf8" ], "Date": [ - "Sat, 26 Mar 2022 09:59:54 GMT" + "Mon, 16 May 2022 16:11:51 GMT" + ], + "Content-Length": [ + "1113" + ], + "Content-Type": [ + "application/json" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, - "ResponseBody": "", - "StatusCode": 202 + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/7545d00f-cbd6-40f9-8617-1163682b8dad\",\r\n \"name\": \"7545d00f-cbd6-40f9-8617-1163682b8dad\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"duration\": \"PT33.092223S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"RestoreRecoveryPointTime\": \"5/16/2022 4:10:40 PM\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"2\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-05-16T16:10:48.6038834Z\",\r\n \"endTime\": \"2022-05-16T16:11:21.6961064Z\",\r\n \"activityId\": \"91ca1cd7-c0c8-483b-b1ed-64f85417e18a\"\r\n }\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3Bstorage%3Bpstestrg8895%3Bpstestsa8895/protectedItems/AzureFileShare%3B698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959/recoveryPoints/33475003016675/restore?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCc3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9wcm90ZWN0ZWRJdGVtcy9BenVyZUZpbGVTaGFyZSUzQjY5OGRmNTk1OTQ4ZTIzNTVmMmJiNzQ0YTQxY2YyNDVkNGJhMTI1NWQ5Njk5Y2MzYzJhZDFmNTA0NWUxNzc5NTkvcmVjb3ZlcnlQb2ludHMvMzM0NzUwMDMwMTY2NzUvcmVzdG9yZT9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", - "RequestMethod": "POST", - "RequestBody": "{\r\n \"properties\": {\r\n \"objectType\": \"AzureFileShareRestoreRequest\",\r\n \"recoveryType\": \"OriginalLocation\",\r\n \"sourceResourceId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstestsa8895\",\r\n \"copyOptions\": \"Overwrite\",\r\n \"restoreRequestType\": \"FullShareRestore\"\r\n }\r\n}", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/7545d00f-cbd6-40f9-8617-1163682b8dad?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy83NTQ1ZDAwZi1jYmQ2LTQwZjktODYxNy0xMTYzNjgyYjhkYWQ/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e6a21136-a7ea-4f38-97e5-47524c628ec0" + "91ca1cd7-c0c8-483b-b1ed-64f85417e18a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "364" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -3409,67 +4429,65 @@ "Pragma": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;storage;pstestrg8895;pstestsa8895/protectedItems/AzureFileShare;698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959/operationResults/dcf9fa8e-efbd-4fc0-9f79-958a357e0cb8?api-version=2021-12-01" - ], - "Retry-After": [ - "60" - ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;storage;pstestrg8895;pstestsa8895/protectedItems/AzureFileShare;698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959/operationsStatus/dcf9fa8e-efbd-4fc0-9f79-958a357e0cb8?api-version=2021-12-01" + "Server": [ + "Microsoft-IIS/10.0", + "Microsoft-IIS/10.0" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "7fcba868-d00e-491f-84d3-ad3927ebea30" + "156dbba5-50b9-4768-a23a-1480db0473ef" ], "x-ms-client-request-id": [ - "e6a21136-a7ea-4f38-97e5-47524c628ec0", - "e6a21136-a7ea-4f38-97e5-47524c628ec0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "91ca1cd7-c0c8-483b-b1ed-64f85417e18a", + "91ca1cd7-c0c8-483b-b1ed-64f85417e18a" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "295" ], "x-ms-correlation-request-id": [ - "7fcba868-d00e-491f-84d3-ad3927ebea30" + "156dbba5-50b9-4768-a23a-1480db0473ef" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T100057Z:7fcba868-d00e-491f-84d3-ad3927ebea30" + "JIOINDIAWEST:20220516T161152Z:156dbba5-50b9-4768-a23a-1480db0473ef" ], "Date": [ - "Sat, 26 Mar 2022 10:00:57 GMT" + "Mon, 16 May 2022 16:11:52 GMT" + ], + "Content-Length": [ + "1113" + ], + "Content-Type": [ + "application/json" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, - "ResponseBody": "", - "StatusCode": 202 + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/7545d00f-cbd6-40f9-8617-1163682b8dad\",\r\n \"name\": \"7545d00f-cbd6-40f9-8617-1163682b8dad\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"duration\": \"PT33.092223S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"RestoreRecoveryPointTime\": \"5/16/2022 4:10:40 PM\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"2\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-05-16T16:10:48.6038834Z\",\r\n \"endTime\": \"2022-05-16T16:11:21.6961064Z\",\r\n \"activityId\": \"91ca1cd7-c0c8-483b-b1ed-64f85417e18a\"\r\n }\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;storage;pstestrg8895;pstestsa8895/protectedItems/AzureFileShare;698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959/operationsStatus/263e6342-e9d5-4653-b55c-acaf87dcb360?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyO3N0b3JhZ2U7cHN0ZXN0cmc4ODk1O3BzdGVzdHNhODg5NS9wcm90ZWN0ZWRJdGVtcy9BenVyZUZpbGVTaGFyZTs2OThkZjU5NTk0OGUyMzU1ZjJiYjc0NGE0MWNmMjQ1ZDRiYTEyNTVkOTY5OWNjM2MyYWQxZjUwNDVlMTc3OTU5L29wZXJhdGlvbnNTdGF0dXMvMjYzZTYzNDItZTlkNS00NjUzLWI1NWMtYWNhZjg3ZGNiMzYwP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;storage;pstestrg8895;pstestsa8895/protectedItems/AzureFileShare;698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959/operationsStatus/db848432-40e4-4f16-a776-94ef9bcee00d?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyO3N0b3JhZ2U7cHN0ZXN0cmc4ODk1O3BzdGVzdHNhODg5NS9wcm90ZWN0ZWRJdGVtcy9BenVyZUZpbGVTaGFyZTs2OThkZjU5NTk0OGUyMzU1ZjJiYjc0NGE0MWNmMjQ1ZDRiYTEyNTVkOTY5OWNjM2MyYWQxZjUwNDVlMTc3OTU5L29wZXJhdGlvbnNTdGF0dXMvZGI4NDg0MzItNDBlNC00ZjE2LWE3NzYtOTRlZjliY2VlMDBkP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ef85bfee-a58f-425b-bdf6-6efd860f2fcd" + "0624898d-8cee-4015-bfda-78fbce0120fa" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -3483,11 +4501,11 @@ "nosniff" ], "x-ms-request-id": [ - "4467d37d-60bc-4086-80ee-d0e1d83fc00a" + "6817d005-1e49-4710-a5eb-896ee589b1fe" ], "x-ms-client-request-id": [ - "ef85bfee-a58f-425b-bdf6-6efd860f2fcd", - "ef85bfee-a58f-425b-bdf6-6efd860f2fcd" + "0624898d-8cee-4015-bfda-78fbce0120fa", + "0624898d-8cee-4015-bfda-78fbce0120fa" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3499,19 +4517,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "299" + "298" ], "x-ms-correlation-request-id": [ - "4467d37d-60bc-4086-80ee-d0e1d83fc00a" + "6817d005-1e49-4710-a5eb-896ee589b1fe" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T095743Z:4467d37d-60bc-4086-80ee-d0e1d83fc00a" + "JIOINDIAWEST:20220516T161255Z:6817d005-1e49-4710-a5eb-896ee589b1fe" ], "Date": [ - "Sat, 26 Mar 2022 09:57:42 GMT" + "Mon, 16 May 2022 16:12:54 GMT" ], "Content-Length": [ - "304" + "302" ], "Content-Type": [ "application/json" @@ -3520,23 +4538,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"263e6342-e9d5-4653-b55c-acaf87dcb360\",\r\n \"name\": \"263e6342-e9d5-4653-b55c-acaf87dcb360\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-03-26T09:56:42.4412607Z\",\r\n \"endTime\": \"2022-03-26T09:56:42.4412607Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"263e6342-e9d5-4653-b55c-acaf87dcb360\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"db848432-40e4-4f16-a776-94ef9bcee00d\",\r\n \"name\": \"db848432-40e4-4f16-a776-94ef9bcee00d\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-05-16T16:11:54.379616Z\",\r\n \"endTime\": \"2022-05-16T16:11:54.379616Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"db848432-40e4-4f16-a776-94ef9bcee00d\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;storage;pstestrg8895;pstestsa8895/protectedItems/AzureFileShare;698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959/operationResults/263e6342-e9d5-4653-b55c-acaf87dcb360?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyO3N0b3JhZ2U7cHN0ZXN0cmc4ODk1O3BzdGVzdHNhODg5NS9wcm90ZWN0ZWRJdGVtcy9BenVyZUZpbGVTaGFyZTs2OThkZjU5NTk0OGUyMzU1ZjJiYjc0NGE0MWNmMjQ1ZDRiYTEyNTVkOTY5OWNjM2MyYWQxZjUwNDVlMTc3OTU5L29wZXJhdGlvblJlc3VsdHMvMjYzZTYzNDItZTlkNS00NjUzLWI1NWMtYWNhZjg3ZGNiMzYwP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;storage;pstestrg8895;pstestsa8895/protectedItems/AzureFileShare;698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959/operationResults/db848432-40e4-4f16-a776-94ef9bcee00d?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyO3N0b3JhZ2U7cHN0ZXN0cmc4ODk1O3BzdGVzdHNhODg5NS9wcm90ZWN0ZWRJdGVtcy9BenVyZUZpbGVTaGFyZTs2OThkZjU5NTk0OGUyMzU1ZjJiYjc0NGE0MWNmMjQ1ZDRiYTEyNTVkOTY5OWNjM2MyYWQxZjUwNDVlMTc3OTU5L29wZXJhdGlvblJlc3VsdHMvZGI4NDg0MzItNDBlNC00ZjE2LWE3NzYtOTRlZjliY2VlMDBkP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ef85bfee-a58f-425b-bdf6-6efd860f2fcd" + "0624898d-8cee-4015-bfda-78fbce0120fa" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -3550,17 +4568,17 @@ "60" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;storage;pstestrg8895;pstestsa8895/protectedItems/AzureFileShare;698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959/operationsStatus/263e6342-e9d5-4653-b55c-acaf87dcb360?api-version=2021-12-01" + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;storage;pstestrg8895;pstestsa8895/protectedItems/AzureFileShare;698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959/operationsStatus/db848432-40e4-4f16-a776-94ef9bcee00d?api-version=2022-02-01" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "275ab837-6a64-40cb-aadb-11b486aa86ce" + "579d2a0a-2879-4f78-a823-c61b6e353571" ], "x-ms-client-request-id": [ - "ef85bfee-a58f-425b-bdf6-6efd860f2fcd", - "ef85bfee-a58f-425b-bdf6-6efd860f2fcd" + "0624898d-8cee-4015-bfda-78fbce0120fa", + "0624898d-8cee-4015-bfda-78fbce0120fa" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3569,38 +4587,38 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "299" + "298" ], "x-ms-correlation-request-id": [ - "275ab837-6a64-40cb-aadb-11b486aa86ce" + "579d2a0a-2879-4f78-a823-c61b6e353571" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T095743Z:275ab837-6a64-40cb-aadb-11b486aa86ce" + "JIOINDIAWEST:20220516T161255Z:579d2a0a-2879-4f78-a823-c61b6e353571" ], "Date": [ - "Sat, 26 Mar 2022 09:57:42 GMT" + "Mon, 16 May 2022 16:12:55 GMT" ] }, "ResponseBody": "", "StatusCode": 204 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/263e6342-e9d5-4653-b55c-acaf87dcb360?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy8yNjNlNjM0Mi1lOWQ1LTQ2NTMtYjU1Yy1hY2FmODdkY2IzNjA/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/db848432-40e4-4f16-a776-94ef9bcee00d?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9kYjg0ODQzMi00MGU0LTRmMTYtYTc3Ni05NGVmOWJjZWUwMGQ/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ef85bfee-a58f-425b-bdf6-6efd860f2fcd" + "0624898d-8cee-4015-bfda-78fbce0120fa" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -3614,11 +4632,11 @@ "nosniff" ], "x-ms-request-id": [ - "9499ba58-50f1-40da-86ea-3d1b6d1ac2fe" + "3f771b03-ecb1-4cf5-b5b8-21eb4d620248" ], "x-ms-client-request-id": [ - "ef85bfee-a58f-425b-bdf6-6efd860f2fcd", - "ef85bfee-a58f-425b-bdf6-6efd860f2fcd" + "0624898d-8cee-4015-bfda-78fbce0120fa", + "0624898d-8cee-4015-bfda-78fbce0120fa" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3630,19 +4648,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "290" + "284" ], "x-ms-correlation-request-id": [ - "9499ba58-50f1-40da-86ea-3d1b6d1ac2fe" + "3f771b03-ecb1-4cf5-b5b8-21eb4d620248" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T095744Z:9499ba58-50f1-40da-86ea-3d1b6d1ac2fe" + "JIOINDIAWEST:20220516T161256Z:3f771b03-ecb1-4cf5-b5b8-21eb4d620248" ], "Date": [ - "Sat, 26 Mar 2022 09:57:44 GMT" + "Mon, 16 May 2022 16:12:56 GMT" ], "Content-Length": [ - "304" + "302" ], "Content-Type": [ "application/json" @@ -3651,26 +4669,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"263e6342-e9d5-4653-b55c-acaf87dcb360\",\r\n \"name\": \"263e6342-e9d5-4653-b55c-acaf87dcb360\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-03-26T09:56:42.4412607Z\",\r\n \"endTime\": \"2022-03-26T09:56:42.4412607Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"263e6342-e9d5-4653-b55c-acaf87dcb360\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"db848432-40e4-4f16-a776-94ef9bcee00d\",\r\n \"name\": \"db848432-40e4-4f16-a776-94ef9bcee00d\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-05-16T16:11:54.379616Z\",\r\n \"endTime\": \"2022-05-16T16:11:54.379616Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"db848432-40e4-4f16-a776-94ef9bcee00d\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/263e6342-e9d5-4653-b55c-acaf87dcb360?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy8yNjNlNjM0Mi1lOWQ1LTQ2NTMtYjU1Yy1hY2FmODdkY2IzNjA/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/db848432-40e4-4f16-a776-94ef9bcee00d?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9kYjg0ODQzMi00MGU0LTRmMTYtYTc3Ni05NGVmOWJjZWUwMGQ/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ef85bfee-a58f-425b-bdf6-6efd860f2fcd" + "0624898d-8cee-4015-bfda-78fbce0120fa" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -3684,11 +4702,11 @@ "nosniff" ], "x-ms-request-id": [ - "f77de1e3-dec2-47ee-9eb7-18c8170ac7f8" + "797d72c0-1f78-448f-809d-ce3069b367ac" ], "x-ms-client-request-id": [ - "ef85bfee-a58f-425b-bdf6-6efd860f2fcd", - "ef85bfee-a58f-425b-bdf6-6efd860f2fcd" + "0624898d-8cee-4015-bfda-78fbce0120fa", + "0624898d-8cee-4015-bfda-78fbce0120fa" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3700,19 +4718,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "289" + "283" ], "x-ms-correlation-request-id": [ - "f77de1e3-dec2-47ee-9eb7-18c8170ac7f8" + "797d72c0-1f78-448f-809d-ce3069b367ac" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T095744Z:f77de1e3-dec2-47ee-9eb7-18c8170ac7f8" + "JIOINDIAWEST:20220516T161256Z:797d72c0-1f78-448f-809d-ce3069b367ac" ], "Date": [ - "Sat, 26 Mar 2022 09:57:44 GMT" + "Mon, 16 May 2022 16:12:56 GMT" ], "Content-Length": [ - "304" + "302" ], "Content-Type": [ "application/json" @@ -3721,26 +4739,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"263e6342-e9d5-4653-b55c-acaf87dcb360\",\r\n \"name\": \"263e6342-e9d5-4653-b55c-acaf87dcb360\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-03-26T09:56:42.4412607Z\",\r\n \"endTime\": \"2022-03-26T09:56:42.4412607Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"263e6342-e9d5-4653-b55c-acaf87dcb360\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"db848432-40e4-4f16-a776-94ef9bcee00d\",\r\n \"name\": \"db848432-40e4-4f16-a776-94ef9bcee00d\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-05-16T16:11:54.379616Z\",\r\n \"endTime\": \"2022-05-16T16:11:54.379616Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"db848432-40e4-4f16-a776-94ef9bcee00d\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/263e6342-e9d5-4653-b55c-acaf87dcb360?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy8yNjNlNjM0Mi1lOWQ1LTQ2NTMtYjU1Yy1hY2FmODdkY2IzNjA/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/db848432-40e4-4f16-a776-94ef9bcee00d?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9kYjg0ODQzMi00MGU0LTRmMTYtYTc3Ni05NGVmOWJjZWUwMGQ/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ef85bfee-a58f-425b-bdf6-6efd860f2fcd" + "0624898d-8cee-4015-bfda-78fbce0120fa" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -3758,11 +4776,11 @@ "nosniff" ], "x-ms-request-id": [ - "bbc21606-1281-4228-8c34-68ff68dff1d1" + "6fd4678c-b21f-473c-8939-84ecac546a78" ], "x-ms-client-request-id": [ - "ef85bfee-a58f-425b-bdf6-6efd860f2fcd", - "ef85bfee-a58f-425b-bdf6-6efd860f2fcd" + "0624898d-8cee-4015-bfda-78fbce0120fa", + "0624898d-8cee-4015-bfda-78fbce0120fa" ], "X-Powered-By": [ "ASP.NET" @@ -3771,19 +4789,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "295" + "294" ], "x-ms-correlation-request-id": [ - "bbc21606-1281-4228-8c34-68ff68dff1d1" + "6fd4678c-b21f-473c-8939-84ecac546a78" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T095745Z:bbc21606-1281-4228-8c34-68ff68dff1d1" + "JIOINDIAWEST:20220516T161257Z:6fd4678c-b21f-473c-8939-84ecac546a78" ], "Date": [ - "Sat, 26 Mar 2022 09:57:45 GMT" + "Mon, 16 May 2022 16:12:57 GMT" ], "Content-Length": [ - "1114" + "1218" ], "Content-Type": [ "application/json" @@ -3792,26 +4810,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/263e6342-e9d5-4653-b55c-acaf87dcb360\",\r\n \"name\": \"263e6342-e9d5-4653-b55c-acaf87dcb360\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"duration\": \"PT46.9891146S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"RestoreRecoveryPointTime\": \"3/26/2022 9:55:40 AM\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"2\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-03-26T09:56:42.4412607Z\",\r\n \"endTime\": \"2022-03-26T09:57:29.4303753Z\",\r\n \"activityId\": \"ef85bfee-a58f-425b-bdf6-6efd860f2fcd\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/db848432-40e4-4f16-a776-94ef9bcee00d\",\r\n \"name\": \"db848432-40e4-4f16-a776-94ef9bcee00d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"duration\": \"PT45.7601296S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"RestoreRecoveryPointTime\": \"5/16/2022 4:10:40 PM\",\r\n \"Target File Share Name\": \"fs1\",\r\n \"Target Storage Account Name\": \"pstesttargetsa8896\",\r\n \"Job Type\": \"Recover to an alternate file share\",\r\n \"RestoreDestination\": \"pstesttargetsa8896/fs1/pstestfolder3rty7d7s\",\r\n \"Data Transferred (in MB)\": \"1\",\r\n \"Number Of Restored Files\": \"1\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-05-16T16:11:54.379616Z\",\r\n \"endTime\": \"2022-05-16T16:12:40.1397456Z\",\r\n \"activityId\": \"0624898d-8cee-4015-bfda-78fbce0120fa\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/263e6342-e9d5-4653-b55c-acaf87dcb360?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy8yNjNlNjM0Mi1lOWQ1LTQ2NTMtYjU1Yy1hY2FmODdkY2IzNjA/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/db848432-40e4-4f16-a776-94ef9bcee00d?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9kYjg0ODQzMi00MGU0LTRmMTYtYTc3Ni05NGVmOWJjZWUwMGQ/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ef85bfee-a58f-425b-bdf6-6efd860f2fcd" + "0624898d-8cee-4015-bfda-78fbce0120fa" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -3829,11 +4847,11 @@ "nosniff" ], "x-ms-request-id": [ - "d03e309c-30ad-498f-8c42-8adb1986213f" + "38d54d63-0528-4049-a0f5-89f289685a01" ], "x-ms-client-request-id": [ - "ef85bfee-a58f-425b-bdf6-6efd860f2fcd", - "ef85bfee-a58f-425b-bdf6-6efd860f2fcd" + "0624898d-8cee-4015-bfda-78fbce0120fa", + "0624898d-8cee-4015-bfda-78fbce0120fa" ], "X-Powered-By": [ "ASP.NET" @@ -3842,19 +4860,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "294" + "293" ], "x-ms-correlation-request-id": [ - "d03e309c-30ad-498f-8c42-8adb1986213f" + "38d54d63-0528-4049-a0f5-89f289685a01" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T095745Z:d03e309c-30ad-498f-8c42-8adb1986213f" + "JIOINDIAWEST:20220516T161258Z:38d54d63-0528-4049-a0f5-89f289685a01" ], "Date": [ - "Sat, 26 Mar 2022 09:57:45 GMT" + "Mon, 16 May 2022 16:12:57 GMT" ], "Content-Length": [ - "1114" + "1218" ], "Content-Type": [ "application/json" @@ -3863,23 +4881,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/263e6342-e9d5-4653-b55c-acaf87dcb360\",\r\n \"name\": \"263e6342-e9d5-4653-b55c-acaf87dcb360\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"duration\": \"PT46.9891146S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"RestoreRecoveryPointTime\": \"3/26/2022 9:55:40 AM\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"2\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-03-26T09:56:42.4412607Z\",\r\n \"endTime\": \"2022-03-26T09:57:29.4303753Z\",\r\n \"activityId\": \"ef85bfee-a58f-425b-bdf6-6efd860f2fcd\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/db848432-40e4-4f16-a776-94ef9bcee00d\",\r\n \"name\": \"db848432-40e4-4f16-a776-94ef9bcee00d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"duration\": \"PT45.7601296S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"RestoreRecoveryPointTime\": \"5/16/2022 4:10:40 PM\",\r\n \"Target File Share Name\": \"fs1\",\r\n \"Target Storage Account Name\": \"pstesttargetsa8896\",\r\n \"Job Type\": \"Recover to an alternate file share\",\r\n \"RestoreDestination\": \"pstesttargetsa8896/fs1/pstestfolder3rty7d7s\",\r\n \"Data Transferred (in MB)\": \"1\",\r\n \"Number Of Restored Files\": \"1\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-05-16T16:11:54.379616Z\",\r\n \"endTime\": \"2022-05-16T16:12:40.1397456Z\",\r\n \"activityId\": \"0624898d-8cee-4015-bfda-78fbce0120fa\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;storage;pstestrg8895;pstestsa8895/protectedItems/AzureFileShare;698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959/operationsStatus/2d99d9cc-0921-4577-b6cc-ebff7dd126f5?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyO3N0b3JhZ2U7cHN0ZXN0cmc4ODk1O3BzdGVzdHNhODg5NS9wcm90ZWN0ZWRJdGVtcy9BenVyZUZpbGVTaGFyZTs2OThkZjU5NTk0OGUyMzU1ZjJiYjc0NGE0MWNmMjQ1ZDRiYTEyNTVkOTY5OWNjM2MyYWQxZjUwNDVlMTc3OTU5L29wZXJhdGlvbnNTdGF0dXMvMmQ5OWQ5Y2MtMDkyMS00NTc3LWI2Y2MtZWJmZjdkZDEyNmY1P2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;storage;pstestrg8895;pstestsa8895/protectedItems/AzureFileShare;698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959/operationsStatus/1d4dca3f-981a-48d3-b43d-a696efa85068?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyO3N0b3JhZ2U7cHN0ZXN0cmc4ODk1O3BzdGVzdHNhODg5NS9wcm90ZWN0ZWRJdGVtcy9BenVyZUZpbGVTaGFyZTs2OThkZjU5NTk0OGUyMzU1ZjJiYjc0NGE0MWNmMjQ1ZDRiYTEyNTVkOTY5OWNjM2MyYWQxZjUwNDVlMTc3OTU5L29wZXJhdGlvbnNTdGF0dXMvMWQ0ZGNhM2YtOTgxYS00OGQzLWI0M2QtYTY5NmVmYTg1MDY4P2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "875fb7d6-5caf-4a93-8aa9-ce8dcad33c8f" + "fd770b01-8b83-4071-aad7-cf86d08a24cd" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -3893,11 +4911,11 @@ "nosniff" ], "x-ms-request-id": [ - "eb70784f-5d35-4067-b952-b0049dc4c3ba" + "b5da3208-6d2e-4b76-826d-7d7f8f9dbcc9" ], "x-ms-client-request-id": [ - "875fb7d6-5caf-4a93-8aa9-ce8dcad33c8f", - "875fb7d6-5caf-4a93-8aa9-ce8dcad33c8f" + "fd770b01-8b83-4071-aad7-cf86d08a24cd", + "fd770b01-8b83-4071-aad7-cf86d08a24cd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3909,16 +4927,16 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "298" + "297" ], "x-ms-correlation-request-id": [ - "eb70784f-5d35-4067-b952-b0049dc4c3ba" + "b5da3208-6d2e-4b76-826d-7d7f8f9dbcc9" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T095847Z:eb70784f-5d35-4067-b952-b0049dc4c3ba" + "JIOINDIAWEST:20220516T161400Z:b5da3208-6d2e-4b76-826d-7d7f8f9dbcc9" ], "Date": [ - "Sat, 26 Mar 2022 09:58:47 GMT" + "Mon, 16 May 2022 16:13:59 GMT" ], "Content-Length": [ "304" @@ -3930,23 +4948,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"2d99d9cc-0921-4577-b6cc-ebff7dd126f5\",\r\n \"name\": \"2d99d9cc-0921-4577-b6cc-ebff7dd126f5\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-03-26T09:57:46.4191668Z\",\r\n \"endTime\": \"2022-03-26T09:57:46.4191668Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"2d99d9cc-0921-4577-b6cc-ebff7dd126f5\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"1d4dca3f-981a-48d3-b43d-a696efa85068\",\r\n \"name\": \"1d4dca3f-981a-48d3-b43d-a696efa85068\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-05-16T16:12:59.2449561Z\",\r\n \"endTime\": \"2022-05-16T16:12:59.2449561Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"1d4dca3f-981a-48d3-b43d-a696efa85068\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;storage;pstestrg8895;pstestsa8895/protectedItems/AzureFileShare;698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959/operationResults/2d99d9cc-0921-4577-b6cc-ebff7dd126f5?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyO3N0b3JhZ2U7cHN0ZXN0cmc4ODk1O3BzdGVzdHNhODg5NS9wcm90ZWN0ZWRJdGVtcy9BenVyZUZpbGVTaGFyZTs2OThkZjU5NTk0OGUyMzU1ZjJiYjc0NGE0MWNmMjQ1ZDRiYTEyNTVkOTY5OWNjM2MyYWQxZjUwNDVlMTc3OTU5L29wZXJhdGlvblJlc3VsdHMvMmQ5OWQ5Y2MtMDkyMS00NTc3LWI2Y2MtZWJmZjdkZDEyNmY1P2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;storage;pstestrg8895;pstestsa8895/protectedItems/AzureFileShare;698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959/operationResults/1d4dca3f-981a-48d3-b43d-a696efa85068?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyO3N0b3JhZ2U7cHN0ZXN0cmc4ODk1O3BzdGVzdHNhODg5NS9wcm90ZWN0ZWRJdGVtcy9BenVyZUZpbGVTaGFyZTs2OThkZjU5NTk0OGUyMzU1ZjJiYjc0NGE0MWNmMjQ1ZDRiYTEyNTVkOTY5OWNjM2MyYWQxZjUwNDVlMTc3OTU5L29wZXJhdGlvblJlc3VsdHMvMWQ0ZGNhM2YtOTgxYS00OGQzLWI0M2QtYTY5NmVmYTg1MDY4P2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "875fb7d6-5caf-4a93-8aa9-ce8dcad33c8f" + "fd770b01-8b83-4071-aad7-cf86d08a24cd" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -3960,17 +4978,17 @@ "60" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;storage;pstestrg8895;pstestsa8895/protectedItems/AzureFileShare;698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959/operationsStatus/2d99d9cc-0921-4577-b6cc-ebff7dd126f5?api-version=2021-12-01" + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;storage;pstestrg8895;pstestsa8895/protectedItems/AzureFileShare;698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959/operationsStatus/1d4dca3f-981a-48d3-b43d-a696efa85068?api-version=2022-02-01" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "405f3a41-838e-4c26-83ce-fe20b18a01f9" + "c8da118e-8e92-4db3-aaa4-d519f862f36b" ], "x-ms-client-request-id": [ - "875fb7d6-5caf-4a93-8aa9-ce8dcad33c8f", - "875fb7d6-5caf-4a93-8aa9-ce8dcad33c8f" + "fd770b01-8b83-4071-aad7-cf86d08a24cd", + "fd770b01-8b83-4071-aad7-cf86d08a24cd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3979,38 +4997,38 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "298" + "297" ], "x-ms-correlation-request-id": [ - "405f3a41-838e-4c26-83ce-fe20b18a01f9" + "c8da118e-8e92-4db3-aaa4-d519f862f36b" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T095847Z:405f3a41-838e-4c26-83ce-fe20b18a01f9" + "JIOINDIAWEST:20220516T161401Z:c8da118e-8e92-4db3-aaa4-d519f862f36b" ], "Date": [ - "Sat, 26 Mar 2022 09:58:47 GMT" + "Mon, 16 May 2022 16:14:00 GMT" ] }, "ResponseBody": "", "StatusCode": 204 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/2d99d9cc-0921-4577-b6cc-ebff7dd126f5?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy8yZDk5ZDljYy0wOTIxLTQ1NzctYjZjYy1lYmZmN2RkMTI2ZjU/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/1d4dca3f-981a-48d3-b43d-a696efa85068?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy8xZDRkY2EzZi05ODFhLTQ4ZDMtYjQzZC1hNjk2ZWZhODUwNjg/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "875fb7d6-5caf-4a93-8aa9-ce8dcad33c8f" + "fd770b01-8b83-4071-aad7-cf86d08a24cd" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -4024,11 +5042,11 @@ "nosniff" ], "x-ms-request-id": [ - "5838d0e4-5d32-42ec-b6bc-c261bfa72bbe" + "18814edf-7ecd-4260-9dbc-afe7303074c9" ], "x-ms-client-request-id": [ - "875fb7d6-5caf-4a93-8aa9-ce8dcad33c8f", - "875fb7d6-5caf-4a93-8aa9-ce8dcad33c8f" + "fd770b01-8b83-4071-aad7-cf86d08a24cd", + "fd770b01-8b83-4071-aad7-cf86d08a24cd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4040,16 +5058,16 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "288" + "282" ], "x-ms-correlation-request-id": [ - "5838d0e4-5d32-42ec-b6bc-c261bfa72bbe" + "18814edf-7ecd-4260-9dbc-afe7303074c9" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T095848Z:5838d0e4-5d32-42ec-b6bc-c261bfa72bbe" + "JIOINDIAWEST:20220516T161401Z:18814edf-7ecd-4260-9dbc-afe7303074c9" ], "Date": [ - "Sat, 26 Mar 2022 09:58:47 GMT" + "Mon, 16 May 2022 16:14:00 GMT" ], "Content-Length": [ "304" @@ -4061,26 +5079,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"2d99d9cc-0921-4577-b6cc-ebff7dd126f5\",\r\n \"name\": \"2d99d9cc-0921-4577-b6cc-ebff7dd126f5\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-03-26T09:57:46.4191668Z\",\r\n \"endTime\": \"2022-03-26T09:57:46.4191668Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"2d99d9cc-0921-4577-b6cc-ebff7dd126f5\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"1d4dca3f-981a-48d3-b43d-a696efa85068\",\r\n \"name\": \"1d4dca3f-981a-48d3-b43d-a696efa85068\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-05-16T16:12:59.2449561Z\",\r\n \"endTime\": \"2022-05-16T16:12:59.2449561Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"1d4dca3f-981a-48d3-b43d-a696efa85068\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/2d99d9cc-0921-4577-b6cc-ebff7dd126f5?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy8yZDk5ZDljYy0wOTIxLTQ1NzctYjZjYy1lYmZmN2RkMTI2ZjU/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/1d4dca3f-981a-48d3-b43d-a696efa85068?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy8xZDRkY2EzZi05ODFhLTQ4ZDMtYjQzZC1hNjk2ZWZhODUwNjg/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "875fb7d6-5caf-4a93-8aa9-ce8dcad33c8f" + "fd770b01-8b83-4071-aad7-cf86d08a24cd" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -4094,11 +5112,11 @@ "nosniff" ], "x-ms-request-id": [ - "5178acfb-ebfd-4122-a80b-3b2145c89fb8" + "78efe9ca-d3e5-4245-8684-63b67a7a2f47" ], "x-ms-client-request-id": [ - "875fb7d6-5caf-4a93-8aa9-ce8dcad33c8f", - "875fb7d6-5caf-4a93-8aa9-ce8dcad33c8f" + "fd770b01-8b83-4071-aad7-cf86d08a24cd", + "fd770b01-8b83-4071-aad7-cf86d08a24cd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4110,16 +5128,16 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "287" + "281" ], "x-ms-correlation-request-id": [ - "5178acfb-ebfd-4122-a80b-3b2145c89fb8" + "78efe9ca-d3e5-4245-8684-63b67a7a2f47" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T095848Z:5178acfb-ebfd-4122-a80b-3b2145c89fb8" + "JIOINDIAWEST:20220516T161402Z:78efe9ca-d3e5-4245-8684-63b67a7a2f47" ], "Date": [ - "Sat, 26 Mar 2022 09:58:48 GMT" + "Mon, 16 May 2022 16:14:01 GMT" ], "Content-Length": [ "304" @@ -4131,26 +5149,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"2d99d9cc-0921-4577-b6cc-ebff7dd126f5\",\r\n \"name\": \"2d99d9cc-0921-4577-b6cc-ebff7dd126f5\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-03-26T09:57:46.4191668Z\",\r\n \"endTime\": \"2022-03-26T09:57:46.4191668Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"2d99d9cc-0921-4577-b6cc-ebff7dd126f5\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"1d4dca3f-981a-48d3-b43d-a696efa85068\",\r\n \"name\": \"1d4dca3f-981a-48d3-b43d-a696efa85068\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-05-16T16:12:59.2449561Z\",\r\n \"endTime\": \"2022-05-16T16:12:59.2449561Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"1d4dca3f-981a-48d3-b43d-a696efa85068\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/2d99d9cc-0921-4577-b6cc-ebff7dd126f5?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy8yZDk5ZDljYy0wOTIxLTQ1NzctYjZjYy1lYmZmN2RkMTI2ZjU/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/1d4dca3f-981a-48d3-b43d-a696efa85068?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy8xZDRkY2EzZi05ODFhLTQ4ZDMtYjQzZC1hNjk2ZWZhODUwNjg/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "875fb7d6-5caf-4a93-8aa9-ce8dcad33c8f" + "fd770b01-8b83-4071-aad7-cf86d08a24cd" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -4168,11 +5186,11 @@ "nosniff" ], "x-ms-request-id": [ - "74a269f0-8c97-4ca7-ad2f-fa1c3df33b9d" + "4490571d-29fb-4ea6-9ae9-f921eff7e01c" ], "x-ms-client-request-id": [ - "875fb7d6-5caf-4a93-8aa9-ce8dcad33c8f", - "875fb7d6-5caf-4a93-8aa9-ce8dcad33c8f" + "fd770b01-8b83-4071-aad7-cf86d08a24cd", + "fd770b01-8b83-4071-aad7-cf86d08a24cd" ], "X-Powered-By": [ "ASP.NET" @@ -4181,16 +5199,16 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "293" + "292" ], "x-ms-correlation-request-id": [ - "74a269f0-8c97-4ca7-ad2f-fa1c3df33b9d" + "4490571d-29fb-4ea6-9ae9-f921eff7e01c" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T095848Z:74a269f0-8c97-4ca7-ad2f-fa1c3df33b9d" + "JIOINDIAWEST:20220516T161402Z:4490571d-29fb-4ea6-9ae9-f921eff7e01c" ], "Date": [ - "Sat, 26 Mar 2022 09:58:48 GMT" + "Mon, 16 May 2022 16:14:02 GMT" ], "Content-Length": [ "1219" @@ -4202,26 +5220,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/2d99d9cc-0921-4577-b6cc-ebff7dd126f5\",\r\n \"name\": \"2d99d9cc-0921-4577-b6cc-ebff7dd126f5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"duration\": \"PT32.7308836S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"RestoreRecoveryPointTime\": \"3/26/2022 9:55:40 AM\",\r\n \"Target File Share Name\": \"fs1\",\r\n \"Target Storage Account Name\": \"pstesttargetsa8896\",\r\n \"Job Type\": \"Recover to an alternate file share\",\r\n \"RestoreDestination\": \"pstesttargetsa8896/fs1/pstestfolder3rty7d7s\",\r\n \"Data Transferred (in MB)\": \"1\",\r\n \"Number Of Restored Files\": \"1\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-03-26T09:57:46.4191668Z\",\r\n \"endTime\": \"2022-03-26T09:58:19.1500504Z\",\r\n \"activityId\": \"875fb7d6-5caf-4a93-8aa9-ce8dcad33c8f\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/1d4dca3f-981a-48d3-b43d-a696efa85068\",\r\n \"name\": \"1d4dca3f-981a-48d3-b43d-a696efa85068\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"duration\": \"PT32.8787453S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"RestoreRecoveryPointTime\": \"5/16/2022 4:10:40 PM\",\r\n \"Target File Share Name\": \"fs1\",\r\n \"Target Storage Account Name\": \"pstesttargetsa8896\",\r\n \"Job Type\": \"Recover to an alternate file share\",\r\n \"RestoreDestination\": \"pstesttargetsa8896/fs1/pstestfolder3rty7d7s\",\r\n \"Data Transferred (in MB)\": \"1\",\r\n \"Number Of Restored Files\": \"3\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-05-16T16:12:59.2449561Z\",\r\n \"endTime\": \"2022-05-16T16:13:32.1237014Z\",\r\n \"activityId\": \"fd770b01-8b83-4071-aad7-cf86d08a24cd\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/2d99d9cc-0921-4577-b6cc-ebff7dd126f5?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy8yZDk5ZDljYy0wOTIxLTQ1NzctYjZjYy1lYmZmN2RkMTI2ZjU/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/1d4dca3f-981a-48d3-b43d-a696efa85068?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy8xZDRkY2EzZi05ODFhLTQ4ZDMtYjQzZC1hNjk2ZWZhODUwNjg/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "875fb7d6-5caf-4a93-8aa9-ce8dcad33c8f" + "fd770b01-8b83-4071-aad7-cf86d08a24cd" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -4239,11 +5257,11 @@ "nosniff" ], "x-ms-request-id": [ - "e252bd9e-cc3a-4504-aa3c-e3227ca2ef19" + "67855108-92cb-466c-8143-a6f81579f5b4" ], "x-ms-client-request-id": [ - "875fb7d6-5caf-4a93-8aa9-ce8dcad33c8f", - "875fb7d6-5caf-4a93-8aa9-ce8dcad33c8f" + "fd770b01-8b83-4071-aad7-cf86d08a24cd", + "fd770b01-8b83-4071-aad7-cf86d08a24cd" ], "X-Powered-By": [ "ASP.NET" @@ -4252,16 +5270,16 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "292" + "291" ], "x-ms-correlation-request-id": [ - "e252bd9e-cc3a-4504-aa3c-e3227ca2ef19" + "67855108-92cb-466c-8143-a6f81579f5b4" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T095849Z:e252bd9e-cc3a-4504-aa3c-e3227ca2ef19" + "JIOINDIAWEST:20220516T161403Z:67855108-92cb-466c-8143-a6f81579f5b4" ], "Date": [ - "Sat, 26 Mar 2022 09:58:48 GMT" + "Mon, 16 May 2022 16:14:02 GMT" ], "Content-Length": [ "1219" @@ -4273,23 +5291,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/2d99d9cc-0921-4577-b6cc-ebff7dd126f5\",\r\n \"name\": \"2d99d9cc-0921-4577-b6cc-ebff7dd126f5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"duration\": \"PT32.7308836S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"RestoreRecoveryPointTime\": \"3/26/2022 9:55:40 AM\",\r\n \"Target File Share Name\": \"fs1\",\r\n \"Target Storage Account Name\": \"pstesttargetsa8896\",\r\n \"Job Type\": \"Recover to an alternate file share\",\r\n \"RestoreDestination\": \"pstesttargetsa8896/fs1/pstestfolder3rty7d7s\",\r\n \"Data Transferred (in MB)\": \"1\",\r\n \"Number Of Restored Files\": \"1\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-03-26T09:57:46.4191668Z\",\r\n \"endTime\": \"2022-03-26T09:58:19.1500504Z\",\r\n \"activityId\": \"875fb7d6-5caf-4a93-8aa9-ce8dcad33c8f\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/1d4dca3f-981a-48d3-b43d-a696efa85068\",\r\n \"name\": \"1d4dca3f-981a-48d3-b43d-a696efa85068\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"duration\": \"PT32.8787453S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"RestoreRecoveryPointTime\": \"5/16/2022 4:10:40 PM\",\r\n \"Target File Share Name\": \"fs1\",\r\n \"Target Storage Account Name\": \"pstesttargetsa8896\",\r\n \"Job Type\": \"Recover to an alternate file share\",\r\n \"RestoreDestination\": \"pstesttargetsa8896/fs1/pstestfolder3rty7d7s\",\r\n \"Data Transferred (in MB)\": \"1\",\r\n \"Number Of Restored Files\": \"3\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-05-16T16:12:59.2449561Z\",\r\n \"endTime\": \"2022-05-16T16:13:32.1237014Z\",\r\n \"activityId\": \"fd770b01-8b83-4071-aad7-cf86d08a24cd\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;storage;pstestrg8895;pstestsa8895/protectedItems/AzureFileShare;698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959/operationsStatus/1b7e1e78-04b5-43fa-b657-0e90c57521ed?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyO3N0b3JhZ2U7cHN0ZXN0cmc4ODk1O3BzdGVzdHNhODg5NS9wcm90ZWN0ZWRJdGVtcy9BenVyZUZpbGVTaGFyZTs2OThkZjU5NTk0OGUyMzU1ZjJiYjc0NGE0MWNmMjQ1ZDRiYTEyNTVkOTY5OWNjM2MyYWQxZjUwNDVlMTc3OTU5L29wZXJhdGlvbnNTdGF0dXMvMWI3ZTFlNzgtMDRiNS00M2ZhLWI2NTctMGU5MGM1NzUyMWVkP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;storage;pstestrg8895;pstestsa8895/protectedItems/AzureFileShare;698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959/operationsStatus/dc1ab121-d353-452a-8425-f6323bacccd5?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyO3N0b3JhZ2U7cHN0ZXN0cmc4ODk1O3BzdGVzdHNhODg5NS9wcm90ZWN0ZWRJdGVtcy9BenVyZUZpbGVTaGFyZTs2OThkZjU5NTk0OGUyMzU1ZjJiYjc0NGE0MWNmMjQ1ZDRiYTEyNTVkOTY5OWNjM2MyYWQxZjUwNDVlMTc3OTU5L29wZXJhdGlvbnNTdGF0dXMvZGMxYWIxMjEtZDM1My00NTJhLTg0MjUtZjYzMjNiYWNjY2Q1P2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bbfb3d3c-8482-49e1-94e1-71481f000bf8" + "3c145b4f-4a12-4ba6-9964-2936d8bc94e4" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -4303,11 +5321,11 @@ "nosniff" ], "x-ms-request-id": [ - "701b5092-7331-4dec-9fab-d8f0ce90390c" + "f793bc8e-2494-4dd9-9c14-4967d7fc8106" ], "x-ms-client-request-id": [ - "bbfb3d3c-8482-49e1-94e1-71481f000bf8", - "bbfb3d3c-8482-49e1-94e1-71481f000bf8" + "3c145b4f-4a12-4ba6-9964-2936d8bc94e4", + "3c145b4f-4a12-4ba6-9964-2936d8bc94e4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4319,16 +5337,16 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "297" + "296" ], "x-ms-correlation-request-id": [ - "701b5092-7331-4dec-9fab-d8f0ce90390c" + "f793bc8e-2494-4dd9-9c14-4967d7fc8106" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T095951Z:701b5092-7331-4dec-9fab-d8f0ce90390c" + "JIOINDIAWEST:20220516T161506Z:f793bc8e-2494-4dd9-9c14-4967d7fc8106" ], "Date": [ - "Sat, 26 Mar 2022 09:59:50 GMT" + "Mon, 16 May 2022 16:15:05 GMT" ], "Content-Length": [ "304" @@ -4340,23 +5358,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"1b7e1e78-04b5-43fa-b657-0e90c57521ed\",\r\n \"name\": \"1b7e1e78-04b5-43fa-b657-0e90c57521ed\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-03-26T09:58:50.1950909Z\",\r\n \"endTime\": \"2022-03-26T09:58:50.1950909Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"1b7e1e78-04b5-43fa-b657-0e90c57521ed\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"dc1ab121-d353-452a-8425-f6323bacccd5\",\r\n \"name\": \"dc1ab121-d353-452a-8425-f6323bacccd5\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-05-16T16:14:04.7970599Z\",\r\n \"endTime\": \"2022-05-16T16:14:04.7970599Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"dc1ab121-d353-452a-8425-f6323bacccd5\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;storage;pstestrg8895;pstestsa8895/protectedItems/AzureFileShare;698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959/operationResults/1b7e1e78-04b5-43fa-b657-0e90c57521ed?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyO3N0b3JhZ2U7cHN0ZXN0cmc4ODk1O3BzdGVzdHNhODg5NS9wcm90ZWN0ZWRJdGVtcy9BenVyZUZpbGVTaGFyZTs2OThkZjU5NTk0OGUyMzU1ZjJiYjc0NGE0MWNmMjQ1ZDRiYTEyNTVkOTY5OWNjM2MyYWQxZjUwNDVlMTc3OTU5L29wZXJhdGlvblJlc3VsdHMvMWI3ZTFlNzgtMDRiNS00M2ZhLWI2NTctMGU5MGM1NzUyMWVkP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;storage;pstestrg8895;pstestsa8895/protectedItems/AzureFileShare;698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959/operationResults/dc1ab121-d353-452a-8425-f6323bacccd5?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyO3N0b3JhZ2U7cHN0ZXN0cmc4ODk1O3BzdGVzdHNhODg5NS9wcm90ZWN0ZWRJdGVtcy9BenVyZUZpbGVTaGFyZTs2OThkZjU5NTk0OGUyMzU1ZjJiYjc0NGE0MWNmMjQ1ZDRiYTEyNTVkOTY5OWNjM2MyYWQxZjUwNDVlMTc3OTU5L29wZXJhdGlvblJlc3VsdHMvZGMxYWIxMjEtZDM1My00NTJhLTg0MjUtZjYzMjNiYWNjY2Q1P2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bbfb3d3c-8482-49e1-94e1-71481f000bf8" + "3c145b4f-4a12-4ba6-9964-2936d8bc94e4" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -4370,17 +5388,17 @@ "60" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;storage;pstestrg8895;pstestsa8895/protectedItems/AzureFileShare;698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959/operationsStatus/1b7e1e78-04b5-43fa-b657-0e90c57521ed?api-version=2021-12-01" + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;storage;pstestrg8895;pstestsa8895/protectedItems/AzureFileShare;698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959/operationsStatus/dc1ab121-d353-452a-8425-f6323bacccd5?api-version=2022-02-01" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "a41c5bb3-057b-4774-a0b8-c6a365fa98f2" + "38162e53-398d-46fe-892b-bb6a86a9d643" ], "x-ms-client-request-id": [ - "bbfb3d3c-8482-49e1-94e1-71481f000bf8", - "bbfb3d3c-8482-49e1-94e1-71481f000bf8" + "3c145b4f-4a12-4ba6-9964-2936d8bc94e4", + "3c145b4f-4a12-4ba6-9964-2936d8bc94e4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4389,38 +5407,38 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "297" + "296" ], "x-ms-correlation-request-id": [ - "a41c5bb3-057b-4774-a0b8-c6a365fa98f2" + "38162e53-398d-46fe-892b-bb6a86a9d643" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T095951Z:a41c5bb3-057b-4774-a0b8-c6a365fa98f2" + "JIOINDIAWEST:20220516T161506Z:38162e53-398d-46fe-892b-bb6a86a9d643" ], "Date": [ - "Sat, 26 Mar 2022 09:59:50 GMT" + "Mon, 16 May 2022 16:15:06 GMT" ] }, "ResponseBody": "", "StatusCode": 204 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/1b7e1e78-04b5-43fa-b657-0e90c57521ed?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy8xYjdlMWU3OC0wNGI1LTQzZmEtYjY1Ny0wZTkwYzU3NTIxZWQ/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/dc1ab121-d353-452a-8425-f6323bacccd5?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9kYzFhYjEyMS1kMzUzLTQ1MmEtODQyNS1mNjMyM2JhY2NjZDU/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bbfb3d3c-8482-49e1-94e1-71481f000bf8" + "3c145b4f-4a12-4ba6-9964-2936d8bc94e4" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -4434,11 +5452,11 @@ "nosniff" ], "x-ms-request-id": [ - "d225fbd6-470a-47c8-a357-f85647fd482e" + "57f1af47-74b6-4dea-a071-dbeee7e2de10" ], "x-ms-client-request-id": [ - "bbfb3d3c-8482-49e1-94e1-71481f000bf8", - "bbfb3d3c-8482-49e1-94e1-71481f000bf8" + "3c145b4f-4a12-4ba6-9964-2936d8bc94e4", + "3c145b4f-4a12-4ba6-9964-2936d8bc94e4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4450,16 +5468,16 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "286" + "280" ], "x-ms-correlation-request-id": [ - "d225fbd6-470a-47c8-a357-f85647fd482e" + "57f1af47-74b6-4dea-a071-dbeee7e2de10" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T095951Z:d225fbd6-470a-47c8-a357-f85647fd482e" + "JIOINDIAWEST:20220516T161507Z:57f1af47-74b6-4dea-a071-dbeee7e2de10" ], "Date": [ - "Sat, 26 Mar 2022 09:59:50 GMT" + "Mon, 16 May 2022 16:15:06 GMT" ], "Content-Length": [ "304" @@ -4471,26 +5489,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"1b7e1e78-04b5-43fa-b657-0e90c57521ed\",\r\n \"name\": \"1b7e1e78-04b5-43fa-b657-0e90c57521ed\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-03-26T09:58:50.1950909Z\",\r\n \"endTime\": \"2022-03-26T09:58:50.1950909Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"1b7e1e78-04b5-43fa-b657-0e90c57521ed\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"dc1ab121-d353-452a-8425-f6323bacccd5\",\r\n \"name\": \"dc1ab121-d353-452a-8425-f6323bacccd5\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-05-16T16:14:04.7970599Z\",\r\n \"endTime\": \"2022-05-16T16:14:04.7970599Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"dc1ab121-d353-452a-8425-f6323bacccd5\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/1b7e1e78-04b5-43fa-b657-0e90c57521ed?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy8xYjdlMWU3OC0wNGI1LTQzZmEtYjY1Ny0wZTkwYzU3NTIxZWQ/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/dc1ab121-d353-452a-8425-f6323bacccd5?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9kYzFhYjEyMS1kMzUzLTQ1MmEtODQyNS1mNjMyM2JhY2NjZDU/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bbfb3d3c-8482-49e1-94e1-71481f000bf8" + "3c145b4f-4a12-4ba6-9964-2936d8bc94e4" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -4504,11 +5522,11 @@ "nosniff" ], "x-ms-request-id": [ - "21a26fb1-e972-46bf-bfdb-1b1d5c4e92fd" + "0b1ba036-1cdf-4a2c-a4e6-2ecf1fb78eb9" ], "x-ms-client-request-id": [ - "bbfb3d3c-8482-49e1-94e1-71481f000bf8", - "bbfb3d3c-8482-49e1-94e1-71481f000bf8" + "3c145b4f-4a12-4ba6-9964-2936d8bc94e4", + "3c145b4f-4a12-4ba6-9964-2936d8bc94e4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4520,16 +5538,16 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "285" + "279" ], "x-ms-correlation-request-id": [ - "21a26fb1-e972-46bf-bfdb-1b1d5c4e92fd" + "0b1ba036-1cdf-4a2c-a4e6-2ecf1fb78eb9" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T095952Z:21a26fb1-e972-46bf-bfdb-1b1d5c4e92fd" + "JIOINDIAWEST:20220516T161508Z:0b1ba036-1cdf-4a2c-a4e6-2ecf1fb78eb9" ], "Date": [ - "Sat, 26 Mar 2022 09:59:51 GMT" + "Mon, 16 May 2022 16:15:07 GMT" ], "Content-Length": [ "304" @@ -4541,26 +5559,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"1b7e1e78-04b5-43fa-b657-0e90c57521ed\",\r\n \"name\": \"1b7e1e78-04b5-43fa-b657-0e90c57521ed\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-03-26T09:58:50.1950909Z\",\r\n \"endTime\": \"2022-03-26T09:58:50.1950909Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"1b7e1e78-04b5-43fa-b657-0e90c57521ed\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"dc1ab121-d353-452a-8425-f6323bacccd5\",\r\n \"name\": \"dc1ab121-d353-452a-8425-f6323bacccd5\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-05-16T16:14:04.7970599Z\",\r\n \"endTime\": \"2022-05-16T16:14:04.7970599Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"dc1ab121-d353-452a-8425-f6323bacccd5\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/1b7e1e78-04b5-43fa-b657-0e90c57521ed?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy8xYjdlMWU3OC0wNGI1LTQzZmEtYjY1Ny0wZTkwYzU3NTIxZWQ/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/dc1ab121-d353-452a-8425-f6323bacccd5?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9kYzFhYjEyMS1kMzUzLTQ1MmEtODQyNS1mNjMyM2JhY2NjZDU/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bbfb3d3c-8482-49e1-94e1-71481f000bf8" + "3c145b4f-4a12-4ba6-9964-2936d8bc94e4" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -4578,11 +5596,11 @@ "nosniff" ], "x-ms-request-id": [ - "9c599f6f-520b-4a0e-ad56-046157e03531" + "b104baa9-7d18-42ce-93aa-45b6d7b75bd1" ], "x-ms-client-request-id": [ - "bbfb3d3c-8482-49e1-94e1-71481f000bf8", - "bbfb3d3c-8482-49e1-94e1-71481f000bf8" + "3c145b4f-4a12-4ba6-9964-2936d8bc94e4", + "3c145b4f-4a12-4ba6-9964-2936d8bc94e4" ], "X-Powered-By": [ "ASP.NET" @@ -4591,19 +5609,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "291" + "290" ], "x-ms-correlation-request-id": [ - "9c599f6f-520b-4a0e-ad56-046157e03531" + "b104baa9-7d18-42ce-93aa-45b6d7b75bd1" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T095952Z:9c599f6f-520b-4a0e-ad56-046157e03531" + "JIOINDIAWEST:20220516T161508Z:b104baa9-7d18-42ce-93aa-45b6d7b75bd1" ], "Date": [ - "Sat, 26 Mar 2022 09:59:51 GMT" + "Mon, 16 May 2022 16:15:08 GMT" ], "Content-Length": [ - "1219" + "1114" ], "Content-Type": [ "application/json" @@ -4612,26 +5630,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/1b7e1e78-04b5-43fa-b657-0e90c57521ed\",\r\n \"name\": \"1b7e1e78-04b5-43fa-b657-0e90c57521ed\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"duration\": \"PT32.4384942S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"RestoreRecoveryPointTime\": \"3/26/2022 9:55:40 AM\",\r\n \"Target File Share Name\": \"fs1\",\r\n \"Target Storage Account Name\": \"pstesttargetsa8896\",\r\n \"Job Type\": \"Recover to an alternate file share\",\r\n \"RestoreDestination\": \"pstesttargetsa8896/fs1/pstestfolder3rty7d7s\",\r\n \"Data Transferred (in MB)\": \"1\",\r\n \"Number Of Restored Files\": \"3\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-03-26T09:58:50.1950909Z\",\r\n \"endTime\": \"2022-03-26T09:59:22.6335851Z\",\r\n \"activityId\": \"bbfb3d3c-8482-49e1-94e1-71481f000bf8\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/dc1ab121-d353-452a-8425-f6323bacccd5\",\r\n \"name\": \"dc1ab121-d353-452a-8425-f6323bacccd5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"duration\": \"PT32.7085456S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"RestoreRecoveryPointTime\": \"5/16/2022 4:10:40 PM\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"1\",\r\n \"Number Of Restored Files\": \"1\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-05-16T16:14:04.7970599Z\",\r\n \"endTime\": \"2022-05-16T16:14:37.5056055Z\",\r\n \"activityId\": \"3c145b4f-4a12-4ba6-9964-2936d8bc94e4\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/1b7e1e78-04b5-43fa-b657-0e90c57521ed?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy8xYjdlMWU3OC0wNGI1LTQzZmEtYjY1Ny0wZTkwYzU3NTIxZWQ/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/dc1ab121-d353-452a-8425-f6323bacccd5?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9kYzFhYjEyMS1kMzUzLTQ1MmEtODQyNS1mNjMyM2JhY2NjZDU/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bbfb3d3c-8482-49e1-94e1-71481f000bf8" + "3c145b4f-4a12-4ba6-9964-2936d8bc94e4" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -4649,11 +5667,11 @@ "nosniff" ], "x-ms-request-id": [ - "eff489df-f752-401c-a440-8f83ffde09b2" + "ccee48d6-ed0e-4023-95da-4b449f787ed4" ], "x-ms-client-request-id": [ - "bbfb3d3c-8482-49e1-94e1-71481f000bf8", - "bbfb3d3c-8482-49e1-94e1-71481f000bf8" + "3c145b4f-4a12-4ba6-9964-2936d8bc94e4", + "3c145b4f-4a12-4ba6-9964-2936d8bc94e4" ], "X-Powered-By": [ "ASP.NET" @@ -4662,19 +5680,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "290" + "289" ], "x-ms-correlation-request-id": [ - "eff489df-f752-401c-a440-8f83ffde09b2" + "ccee48d6-ed0e-4023-95da-4b449f787ed4" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T095953Z:eff489df-f752-401c-a440-8f83ffde09b2" + "JIOINDIAWEST:20220516T161509Z:ccee48d6-ed0e-4023-95da-4b449f787ed4" ], "Date": [ - "Sat, 26 Mar 2022 09:59:53 GMT" + "Mon, 16 May 2022 16:15:09 GMT" ], "Content-Length": [ - "1219" + "1114" ], "Content-Type": [ "application/json" @@ -4683,23 +5701,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/1b7e1e78-04b5-43fa-b657-0e90c57521ed\",\r\n \"name\": \"1b7e1e78-04b5-43fa-b657-0e90c57521ed\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"duration\": \"PT32.4384942S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"RestoreRecoveryPointTime\": \"3/26/2022 9:55:40 AM\",\r\n \"Target File Share Name\": \"fs1\",\r\n \"Target Storage Account Name\": \"pstesttargetsa8896\",\r\n \"Job Type\": \"Recover to an alternate file share\",\r\n \"RestoreDestination\": \"pstesttargetsa8896/fs1/pstestfolder3rty7d7s\",\r\n \"Data Transferred (in MB)\": \"1\",\r\n \"Number Of Restored Files\": \"3\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-03-26T09:58:50.1950909Z\",\r\n \"endTime\": \"2022-03-26T09:59:22.6335851Z\",\r\n \"activityId\": \"bbfb3d3c-8482-49e1-94e1-71481f000bf8\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/dc1ab121-d353-452a-8425-f6323bacccd5\",\r\n \"name\": \"dc1ab121-d353-452a-8425-f6323bacccd5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"duration\": \"PT32.7085456S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"RestoreRecoveryPointTime\": \"5/16/2022 4:10:40 PM\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"1\",\r\n \"Number Of Restored Files\": \"1\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-05-16T16:14:04.7970599Z\",\r\n \"endTime\": \"2022-05-16T16:14:37.5056055Z\",\r\n \"activityId\": \"3c145b4f-4a12-4ba6-9964-2936d8bc94e4\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;storage;pstestrg8895;pstestsa8895/protectedItems/AzureFileShare;698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959/operationsStatus/73e4797a-0b90-4144-bbfe-20e4f073ef2e?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyO3N0b3JhZ2U7cHN0ZXN0cmc4ODk1O3BzdGVzdHNhODg5NS9wcm90ZWN0ZWRJdGVtcy9BenVyZUZpbGVTaGFyZTs2OThkZjU5NTk0OGUyMzU1ZjJiYjc0NGE0MWNmMjQ1ZDRiYTEyNTVkOTY5OWNjM2MyYWQxZjUwNDVlMTc3OTU5L29wZXJhdGlvbnNTdGF0dXMvNzNlNDc5N2EtMGI5MC00MTQ0LWJiZmUtMjBlNGYwNzNlZjJlP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;storage;pstestrg8895;pstestsa8895/protectedItems/AzureFileShare;698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959/operationsStatus/aa81b692-e218-414e-b213-3ec4d943bdbc?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyO3N0b3JhZ2U7cHN0ZXN0cmc4ODk1O3BzdGVzdHNhODg5NS9wcm90ZWN0ZWRJdGVtcy9BenVyZUZpbGVTaGFyZTs2OThkZjU5NTk0OGUyMzU1ZjJiYjc0NGE0MWNmMjQ1ZDRiYTEyNTVkOTY5OWNjM2MyYWQxZjUwNDVlMTc3OTU5L29wZXJhdGlvbnNTdGF0dXMvYWE4MWI2OTItZTIxOC00MTRlLWIyMTMtM2VjNGQ5NDNiZGJjP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "710f4ec8-20fe-4fdd-9de3-b7169babc8eb" + "57aec408-aec2-4f48-b16d-5e219ca4d292" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -4713,11 +5731,11 @@ "nosniff" ], "x-ms-request-id": [ - "a1e7dfbe-ddb0-41df-a8d0-db6d8ea477d0" + "18d3e4a4-bed7-4c21-950a-ed9ba8bbe398" ], "x-ms-client-request-id": [ - "710f4ec8-20fe-4fdd-9de3-b7169babc8eb", - "710f4ec8-20fe-4fdd-9de3-b7169babc8eb" + "57aec408-aec2-4f48-b16d-5e219ca4d292", + "57aec408-aec2-4f48-b16d-5e219ca4d292" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4729,16 +5747,16 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "296" + "295" ], "x-ms-correlation-request-id": [ - "a1e7dfbe-ddb0-41df-a8d0-db6d8ea477d0" + "18d3e4a4-bed7-4c21-950a-ed9ba8bbe398" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T100055Z:a1e7dfbe-ddb0-41df-a8d0-db6d8ea477d0" + "JIOINDIAWEST:20220516T161611Z:18d3e4a4-bed7-4c21-950a-ed9ba8bbe398" ], "Date": [ - "Sat, 26 Mar 2022 10:00:54 GMT" + "Mon, 16 May 2022 16:16:10 GMT" ], "Content-Length": [ "304" @@ -4750,23 +5768,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"73e4797a-0b90-4144-bbfe-20e4f073ef2e\",\r\n \"name\": \"73e4797a-0b90-4144-bbfe-20e4f073ef2e\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-03-26T09:59:53.7784997Z\",\r\n \"endTime\": \"2022-03-26T09:59:53.7784997Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"73e4797a-0b90-4144-bbfe-20e4f073ef2e\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"aa81b692-e218-414e-b213-3ec4d943bdbc\",\r\n \"name\": \"aa81b692-e218-414e-b213-3ec4d943bdbc\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-05-16T16:15:10.6525425Z\",\r\n \"endTime\": \"2022-05-16T16:15:10.6525425Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"aa81b692-e218-414e-b213-3ec4d943bdbc\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;storage;pstestrg8895;pstestsa8895/protectedItems/AzureFileShare;698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959/operationResults/73e4797a-0b90-4144-bbfe-20e4f073ef2e?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyO3N0b3JhZ2U7cHN0ZXN0cmc4ODk1O3BzdGVzdHNhODg5NS9wcm90ZWN0ZWRJdGVtcy9BenVyZUZpbGVTaGFyZTs2OThkZjU5NTk0OGUyMzU1ZjJiYjc0NGE0MWNmMjQ1ZDRiYTEyNTVkOTY5OWNjM2MyYWQxZjUwNDVlMTc3OTU5L29wZXJhdGlvblJlc3VsdHMvNzNlNDc5N2EtMGI5MC00MTQ0LWJiZmUtMjBlNGYwNzNlZjJlP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;storage;pstestrg8895;pstestsa8895/protectedItems/AzureFileShare;698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959/operationResults/aa81b692-e218-414e-b213-3ec4d943bdbc?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyO3N0b3JhZ2U7cHN0ZXN0cmc4ODk1O3BzdGVzdHNhODg5NS9wcm90ZWN0ZWRJdGVtcy9BenVyZUZpbGVTaGFyZTs2OThkZjU5NTk0OGUyMzU1ZjJiYjc0NGE0MWNmMjQ1ZDRiYTEyNTVkOTY5OWNjM2MyYWQxZjUwNDVlMTc3OTU5L29wZXJhdGlvblJlc3VsdHMvYWE4MWI2OTItZTIxOC00MTRlLWIyMTMtM2VjNGQ5NDNiZGJjP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "710f4ec8-20fe-4fdd-9de3-b7169babc8eb" + "57aec408-aec2-4f48-b16d-5e219ca4d292" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -4780,17 +5798,17 @@ "60" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;storage;pstestrg8895;pstestsa8895/protectedItems/AzureFileShare;698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959/operationsStatus/73e4797a-0b90-4144-bbfe-20e4f073ef2e?api-version=2021-12-01" + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;storage;pstestrg8895;pstestsa8895/protectedItems/AzureFileShare;698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959/operationsStatus/aa81b692-e218-414e-b213-3ec4d943bdbc?api-version=2022-02-01" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "9e57de50-5c97-4bbc-9b0c-02adcfff9a9f" + "a8377ca7-eff7-44e6-9031-0c91a790a5a1" ], "x-ms-client-request-id": [ - "710f4ec8-20fe-4fdd-9de3-b7169babc8eb", - "710f4ec8-20fe-4fdd-9de3-b7169babc8eb" + "57aec408-aec2-4f48-b16d-5e219ca4d292", + "57aec408-aec2-4f48-b16d-5e219ca4d292" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4799,108 +5817,38 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "296" + "295" ], "x-ms-correlation-request-id": [ - "9e57de50-5c97-4bbc-9b0c-02adcfff9a9f" + "a8377ca7-eff7-44e6-9031-0c91a790a5a1" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T100055Z:9e57de50-5c97-4bbc-9b0c-02adcfff9a9f" + "JIOINDIAWEST:20220516T161612Z:a8377ca7-eff7-44e6-9031-0c91a790a5a1" ], "Date": [ - "Sat, 26 Mar 2022 10:00:55 GMT" + "Mon, 16 May 2022 16:16:11 GMT" ] }, "ResponseBody": "", "StatusCode": 204 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/73e4797a-0b90-4144-bbfe-20e4f073ef2e?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy83M2U0Nzk3YS0wYjkwLTQxNDQtYmJmZS0yMGU0ZjA3M2VmMmU/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "710f4ec8-20fe-4fdd-9de3-b7169babc8eb" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.700.22.11601", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "x-ms-request-id": [ - "014903cf-579e-4d64-ba5a-58289b193e00" - ], - "x-ms-client-request-id": [ - "710f4ec8-20fe-4fdd-9de3-b7169babc8eb", - "710f4ec8-20fe-4fdd-9de3-b7169babc8eb" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "284" - ], - "x-ms-correlation-request-id": [ - "014903cf-579e-4d64-ba5a-58289b193e00" - ], - "x-ms-routing-request-id": [ - "WESTINDIA:20220326T100055Z:014903cf-579e-4d64-ba5a-58289b193e00" - ], - "Date": [ - "Sat, 26 Mar 2022 10:00:55 GMT" - ], - "Content-Length": [ - "304" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"73e4797a-0b90-4144-bbfe-20e4f073ef2e\",\r\n \"name\": \"73e4797a-0b90-4144-bbfe-20e4f073ef2e\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-03-26T09:59:53.7784997Z\",\r\n \"endTime\": \"2022-03-26T09:59:53.7784997Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"73e4797a-0b90-4144-bbfe-20e4f073ef2e\"\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/73e4797a-0b90-4144-bbfe-20e4f073ef2e?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy83M2U0Nzk3YS0wYjkwLTQxNDQtYmJmZS0yMGU0ZjA3M2VmMmU/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/aa81b692-e218-414e-b213-3ec4d943bdbc?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9hYTgxYjY5Mi1lMjE4LTQxNGUtYjIxMy0zZWM0ZDk0M2JkYmM/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "710f4ec8-20fe-4fdd-9de3-b7169babc8eb" + "57aec408-aec2-4f48-b16d-5e219ca4d292" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -4914,11 +5862,11 @@ "nosniff" ], "x-ms-request-id": [ - "e9cc751c-a067-4931-8175-1a8068f50f9e" + "45227bb2-6b32-48c5-ad57-da0bdedfaf27" ], "x-ms-client-request-id": [ - "710f4ec8-20fe-4fdd-9de3-b7169babc8eb", - "710f4ec8-20fe-4fdd-9de3-b7169babc8eb" + "57aec408-aec2-4f48-b16d-5e219ca4d292", + "57aec408-aec2-4f48-b16d-5e219ca4d292" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4930,90 +5878,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "283" - ], - "x-ms-correlation-request-id": [ - "e9cc751c-a067-4931-8175-1a8068f50f9e" - ], - "x-ms-routing-request-id": [ - "WESTINDIA:20220326T100056Z:e9cc751c-a067-4931-8175-1a8068f50f9e" - ], - "Date": [ - "Sat, 26 Mar 2022 10:00:55 GMT" - ], - "Content-Length": [ - "304" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"73e4797a-0b90-4144-bbfe-20e4f073ef2e\",\r\n \"name\": \"73e4797a-0b90-4144-bbfe-20e4f073ef2e\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-03-26T09:59:53.7784997Z\",\r\n \"endTime\": \"2022-03-26T09:59:53.7784997Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"73e4797a-0b90-4144-bbfe-20e4f073ef2e\"\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/73e4797a-0b90-4144-bbfe-20e4f073ef2e?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy83M2U0Nzk3YS0wYjkwLTQxNDQtYmJmZS0yMGU0ZjA3M2VmMmU/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "710f4ec8-20fe-4fdd-9de3-b7169babc8eb" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.700.22.11601", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.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": [ - "3910e41f-80ae-4fb6-9d20-049d39ec277a" - ], - "x-ms-client-request-id": [ - "710f4ec8-20fe-4fdd-9de3-b7169babc8eb", - "710f4ec8-20fe-4fdd-9de3-b7169babc8eb" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "289" + "278" ], "x-ms-correlation-request-id": [ - "3910e41f-80ae-4fb6-9d20-049d39ec277a" + "45227bb2-6b32-48c5-ad57-da0bdedfaf27" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T100056Z:3910e41f-80ae-4fb6-9d20-049d39ec277a" + "JIOINDIAWEST:20220516T161613Z:45227bb2-6b32-48c5-ad57-da0bdedfaf27" ], "Date": [ - "Sat, 26 Mar 2022 10:00:56 GMT" + "Mon, 16 May 2022 16:16:12 GMT" ], "Content-Length": [ - "1114" + "304" ], "Content-Type": [ "application/json" @@ -5022,26 +5899,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/73e4797a-0b90-4144-bbfe-20e4f073ef2e\",\r\n \"name\": \"73e4797a-0b90-4144-bbfe-20e4f073ef2e\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"duration\": \"PT33.0240721S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"RestoreRecoveryPointTime\": \"3/26/2022 9:55:40 AM\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"1\",\r\n \"Number Of Restored Files\": \"1\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-03-26T09:59:53.7784997Z\",\r\n \"endTime\": \"2022-03-26T10:00:26.8025718Z\",\r\n \"activityId\": \"710f4ec8-20fe-4fdd-9de3-b7169babc8eb\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"aa81b692-e218-414e-b213-3ec4d943bdbc\",\r\n \"name\": \"aa81b692-e218-414e-b213-3ec4d943bdbc\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-05-16T16:15:10.6525425Z\",\r\n \"endTime\": \"2022-05-16T16:15:10.6525425Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"aa81b692-e218-414e-b213-3ec4d943bdbc\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/73e4797a-0b90-4144-bbfe-20e4f073ef2e?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy83M2U0Nzk3YS0wYjkwLTQxNDQtYmJmZS0yMGU0ZjA3M2VmMmU/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/aa81b692-e218-414e-b213-3ec4d943bdbc?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9hYTgxYjY5Mi1lMjE4LTQxNGUtYjIxMy0zZWM0ZDk0M2JkYmM/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "710f4ec8-20fe-4fdd-9de3-b7169babc8eb" + "57aec408-aec2-4f48-b16d-5e219ca4d292" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -5051,40 +5928,39 @@ "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-IIS/10.0" - ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "061d6bff-e73d-4719-b3f9-a6fea24628d0" + "0f5f1baf-1d13-404a-8f74-aa0b35eb009f" ], "x-ms-client-request-id": [ - "710f4ec8-20fe-4fdd-9de3-b7169babc8eb", - "710f4ec8-20fe-4fdd-9de3-b7169babc8eb" - ], - "X-Powered-By": [ - "ASP.NET" + "57aec408-aec2-4f48-b16d-5e219ca4d292", + "57aec408-aec2-4f48-b16d-5e219ca4d292" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "288" + "277" ], "x-ms-correlation-request-id": [ - "061d6bff-e73d-4719-b3f9-a6fea24628d0" + "0f5f1baf-1d13-404a-8f74-aa0b35eb009f" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T100057Z:061d6bff-e73d-4719-b3f9-a6fea24628d0" + "JIOINDIAWEST:20220516T161613Z:0f5f1baf-1d13-404a-8f74-aa0b35eb009f" ], "Date": [ - "Sat, 26 Mar 2022 10:00:56 GMT" + "Mon, 16 May 2022 16:16:12 GMT" ], "Content-Length": [ - "1114" + "304" ], "Content-Type": [ "application/json" @@ -5093,23 +5969,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/73e4797a-0b90-4144-bbfe-20e4f073ef2e\",\r\n \"name\": \"73e4797a-0b90-4144-bbfe-20e4f073ef2e\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"duration\": \"PT33.0240721S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"RestoreRecoveryPointTime\": \"3/26/2022 9:55:40 AM\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"1\",\r\n \"Number Of Restored Files\": \"1\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-03-26T09:59:53.7784997Z\",\r\n \"endTime\": \"2022-03-26T10:00:26.8025718Z\",\r\n \"activityId\": \"710f4ec8-20fe-4fdd-9de3-b7169babc8eb\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"aa81b692-e218-414e-b213-3ec4d943bdbc\",\r\n \"name\": \"aa81b692-e218-414e-b213-3ec4d943bdbc\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-05-16T16:15:10.6525425Z\",\r\n \"endTime\": \"2022-05-16T16:15:10.6525425Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"aa81b692-e218-414e-b213-3ec4d943bdbc\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;storage;pstestrg8895;pstestsa8895/protectedItems/AzureFileShare;698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959/operationsStatus/dcf9fa8e-efbd-4fc0-9f79-958a357e0cb8?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyO3N0b3JhZ2U7cHN0ZXN0cmc4ODk1O3BzdGVzdHNhODg5NS9wcm90ZWN0ZWRJdGVtcy9BenVyZUZpbGVTaGFyZTs2OThkZjU5NTk0OGUyMzU1ZjJiYjc0NGE0MWNmMjQ1ZDRiYTEyNTVkOTY5OWNjM2MyYWQxZjUwNDVlMTc3OTU5L29wZXJhdGlvbnNTdGF0dXMvZGNmOWZhOGUtZWZiZC00ZmMwLTlmNzktOTU4YTM1N2UwY2I4P2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/aa81b692-e218-414e-b213-3ec4d943bdbc?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9hYTgxYjY5Mi1lMjE4LTQxNGUtYjIxMy0zZWM0ZDk0M2JkYmM/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e6a21136-a7ea-4f38-97e5-47524c628ec0" + "57aec408-aec2-4f48-b16d-5e219ca4d292" + ], + "Accept-Language": [ + "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -5119,39 +5998,40 @@ "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-IIS/10.0", + "Microsoft-IIS/10.0" + ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "5bd183f5-eecf-46dd-a1eb-5682dc790988" + "8b4ee54a-8b37-44ba-aa12-e8c889da2cd1" ], "x-ms-client-request-id": [ - "e6a21136-a7ea-4f38-97e5-47524c628ec0", - "e6a21136-a7ea-4f38-97e5-47524c628ec0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-IIS/10.0" + "57aec408-aec2-4f48-b16d-5e219ca4d292", + "57aec408-aec2-4f48-b16d-5e219ca4d292" ], "X-Powered-By": [ "ASP.NET" ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "295" + "288" ], "x-ms-correlation-request-id": [ - "5bd183f5-eecf-46dd-a1eb-5682dc790988" + "8b4ee54a-8b37-44ba-aa12-e8c889da2cd1" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T100158Z:5bd183f5-eecf-46dd-a1eb-5682dc790988" + "JIOINDIAWEST:20220516T161614Z:8b4ee54a-8b37-44ba-aa12-e8c889da2cd1" ], "Date": [ - "Sat, 26 Mar 2022 10:01:58 GMT" + "Mon, 16 May 2022 16:16:14 GMT" ], "Content-Length": [ - "304" + "1114" ], "Content-Type": [ "application/json" @@ -5160,23 +6040,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"dcf9fa8e-efbd-4fc0-9f79-958a357e0cb8\",\r\n \"name\": \"dcf9fa8e-efbd-4fc0-9f79-958a357e0cb8\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-03-26T10:00:57.7071283Z\",\r\n \"endTime\": \"2022-03-26T10:00:57.7071283Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"dcf9fa8e-efbd-4fc0-9f79-958a357e0cb8\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/aa81b692-e218-414e-b213-3ec4d943bdbc\",\r\n \"name\": \"aa81b692-e218-414e-b213-3ec4d943bdbc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"duration\": \"PT32.1682148S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"RestoreRecoveryPointTime\": \"5/16/2022 4:10:40 PM\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"1\",\r\n \"Number Of Restored Files\": \"3\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-05-16T16:15:10.6525425Z\",\r\n \"endTime\": \"2022-05-16T16:15:42.8207573Z\",\r\n \"activityId\": \"57aec408-aec2-4f48-b16d-5e219ca4d292\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;storage;pstestrg8895;pstestsa8895/protectedItems/AzureFileShare;698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959/operationResults/dcf9fa8e-efbd-4fc0-9f79-958a357e0cb8?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyO3N0b3JhZ2U7cHN0ZXN0cmc4ODk1O3BzdGVzdHNhODg5NS9wcm90ZWN0ZWRJdGVtcy9BenVyZUZpbGVTaGFyZTs2OThkZjU5NTk0OGUyMzU1ZjJiYjc0NGE0MWNmMjQ1ZDRiYTEyNTVkOTY5OWNjM2MyYWQxZjUwNDVlMTc3OTU5L29wZXJhdGlvblJlc3VsdHMvZGNmOWZhOGUtZWZiZC00ZmMwLTlmNzktOTU4YTM1N2UwY2I4P2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/aa81b692-e218-414e-b213-3ec4d943bdbc?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9hYTgxYjY5Mi1lMjE4LTQxNGUtYjIxMy0zZWM0ZDk0M2JkYmM/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e6a21136-a7ea-4f38-97e5-47524c628ec0" + "57aec408-aec2-4f48-b16d-5e219ca4d292" + ], + "Accept-Language": [ + "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -5186,61 +6069,68 @@ "Pragma": [ "no-cache" ], - "Retry-After": [ - "60" - ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;storage;pstestrg8895;pstestsa8895/protectedItems/AzureFileShare;698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959/operationsStatus/dcf9fa8e-efbd-4fc0-9f79-958a357e0cb8?api-version=2021-12-01" + "Server": [ + "Microsoft-IIS/10.0", + "Microsoft-IIS/10.0" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "4dfed0d9-f3ef-4b8e-8546-a49b3e91d5da" + "0217597c-f4df-4928-857c-5367241f485e" ], "x-ms-client-request-id": [ - "e6a21136-a7ea-4f38-97e5-47524c628ec0", - "e6a21136-a7ea-4f38-97e5-47524c628ec0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "57aec408-aec2-4f48-b16d-5e219ca4d292", + "57aec408-aec2-4f48-b16d-5e219ca4d292" ], "X-Powered-By": [ "ASP.NET" ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "295" + "287" ], "x-ms-correlation-request-id": [ - "4dfed0d9-f3ef-4b8e-8546-a49b3e91d5da" + "0217597c-f4df-4928-857c-5367241f485e" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T100159Z:4dfed0d9-f3ef-4b8e-8546-a49b3e91d5da" + "JIOINDIAWEST:20220516T161614Z:0217597c-f4df-4928-857c-5367241f485e" ], "Date": [ - "Sat, 26 Mar 2022 10:01:58 GMT" + "Mon, 16 May 2022 16:16:14 GMT" + ], + "Content-Length": [ + "1114" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" ] }, - "ResponseBody": "", - "StatusCode": 204 + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/aa81b692-e218-414e-b213-3ec4d943bdbc\",\r\n \"name\": \"aa81b692-e218-414e-b213-3ec4d943bdbc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"duration\": \"PT32.1682148S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"RestoreRecoveryPointTime\": \"5/16/2022 4:10:40 PM\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"1\",\r\n \"Number Of Restored Files\": \"3\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-05-16T16:15:10.6525425Z\",\r\n \"endTime\": \"2022-05-16T16:15:42.8207573Z\",\r\n \"activityId\": \"57aec408-aec2-4f48-b16d-5e219ca4d292\"\r\n }\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/dcf9fa8e-efbd-4fc0-9f79-958a357e0cb8?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9kY2Y5ZmE4ZS1lZmJkLTRmYzAtOWY3OS05NThhMzU3ZTBjYjg/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3Bstorage%3Bpstestrg8895%3Bpstestsa8895/protectedItems/AzureFileShare%3B698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959/recoveryPoints?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCc3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9wcm90ZWN0ZWRJdGVtcy9BenVyZUZpbGVTaGFyZSUzQjY5OGRmNTk1OTQ4ZTIzNTVmMmJiNzQ0YTQxY2YyNDVkNGJhMTI1NWQ5Njk5Y2MzYzJhZDFmNTA0NWUxNzc5NTkvcmVjb3ZlcnlQb2ludHM/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e6a21136-a7ea-4f38-97e5-47524c628ec0" + "d3cc3871-20de-46a0-af46-a46c57b19417" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -5254,11 +6144,11 @@ "nosniff" ], "x-ms-request-id": [ - "70ed3f27-a638-431c-a5da-9976a32c1d4e" + "1f59d3a1-b978-49d8-89e8-4db0a00a55bb" ], "x-ms-client-request-id": [ - "e6a21136-a7ea-4f38-97e5-47524c628ec0", - "e6a21136-a7ea-4f38-97e5-47524c628ec0" + "d3cc3871-20de-46a0-af46-a46c57b19417", + "d3cc3871-20de-46a0-af46-a46c57b19417" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5270,19 +6160,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "282" + "298" ], "x-ms-correlation-request-id": [ - "70ed3f27-a638-431c-a5da-9976a32c1d4e" + "1f59d3a1-b978-49d8-89e8-4db0a00a55bb" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T100159Z:70ed3f27-a638-431c-a5da-9976a32c1d4e" + "JIOINDIAWEST:20220516T161615Z:1f59d3a1-b978-49d8-89e8-4db0a00a55bb" ], "Date": [ - "Sat, 26 Mar 2022 10:01:58 GMT" + "Mon, 16 May 2022 16:16:15 GMT" ], "Content-Length": [ - "304" + "792" ], "Content-Type": [ "application/json" @@ -5291,26 +6181,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"dcf9fa8e-efbd-4fc0-9f79-958a357e0cb8\",\r\n \"name\": \"dcf9fa8e-efbd-4fc0-9f79-958a357e0cb8\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-03-26T10:00:57.7071283Z\",\r\n \"endTime\": \"2022-03-26T10:00:57.7071283Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"dcf9fa8e-efbd-4fc0-9f79-958a357e0cb8\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;storage;pstestrg8895;pstestsa8895/protectedItems/AzureFileShare;698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959/recoveryPoints/18866357498473\",\r\n \"name\": \"18866357498473\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints\",\r\n \"properties\": {\r\n \"objectType\": \"AzureFileShareRecoveryPoint\",\r\n \"recoveryPointType\": \"FileSystemConsistent\",\r\n \"recoveryPointTime\": \"2022-05-16T16:10:39Z\",\r\n \"fileShareSnapshotUri\": \"https://pstestsa8895.file.core.windows.net/fs1?sharesnapshot=2022-05-16T16:10:39.0000000Z\",\r\n \"recoveryPointSizeInGB\": 1\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/dcf9fa8e-efbd-4fc0-9f79-958a357e0cb8?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9kY2Y5ZmE4ZS1lZmJkLTRmYzAtOWY3OS05NThhMzU3ZTBjYjg/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupResourceGuardProxies?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwUmVzb3VyY2VHdWFyZFByb3hpZXM/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e6a21136-a7ea-4f38-97e5-47524c628ec0" + "d3cc3871-20de-46a0-af46-a46c57b19417" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -5324,11 +6214,11 @@ "nosniff" ], "x-ms-request-id": [ - "54b695a2-a550-482c-8fca-70fd3b255dc9" + "d031ed5e-880c-48de-bbb4-4bb843d454e2" ], "x-ms-client-request-id": [ - "e6a21136-a7ea-4f38-97e5-47524c628ec0", - "e6a21136-a7ea-4f38-97e5-47524c628ec0" + "d3cc3871-20de-46a0-af46-a46c57b19417", + "d3cc3871-20de-46a0-af46-a46c57b19417" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5339,20 +6229,20 @@ "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "281" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" ], "x-ms-correlation-request-id": [ - "54b695a2-a550-482c-8fca-70fd3b255dc9" + "d031ed5e-880c-48de-bbb4-4bb843d454e2" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T100200Z:54b695a2-a550-482c-8fca-70fd3b255dc9" + "JIOINDIAWEST:20220516T161615Z:d031ed5e-880c-48de-bbb4-4bb843d454e2" ], "Date": [ - "Sat, 26 Mar 2022 10:01:59 GMT" + "Mon, 16 May 2022 16:16:15 GMT" ], "Content-Length": [ - "304" + "12" ], "Content-Type": [ "application/json" @@ -5361,26 +6251,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"dcf9fa8e-efbd-4fc0-9f79-958a357e0cb8\",\r\n \"name\": \"dcf9fa8e-efbd-4fc0-9f79-958a357e0cb8\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-03-26T10:00:57.7071283Z\",\r\n \"endTime\": \"2022-03-26T10:00:57.7071283Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"dcf9fa8e-efbd-4fc0-9f79-958a357e0cb8\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": []\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/dcf9fa8e-efbd-4fc0-9f79-958a357e0cb8?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9kY2Y5ZmE4ZS1lZmJkLTRmYzAtOWY3OS05NThhMzU3ZTBjYjg/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", - "RequestMethod": "GET", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3Bstorage%3Bpstestrg8895%3Bpstestsa8895/protectedItems/AzureFileShare%3B698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCc3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9wcm90ZWN0ZWRJdGVtcy9BenVyZUZpbGVTaGFyZSUzQjY5OGRmNTk1OTQ4ZTIzNTVmMmJiNzQ0YTQxY2YyNDVkNGJhMTI1NWQ5Njk5Y2MzYzJhZDFmNTA0NWUxNzc5NTk/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e6a21136-a7ea-4f38-97e5-47524c628ec0" + "d3cc3871-20de-46a0-af46-a46c57b19417" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -5390,68 +6280,70 @@ "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-IIS/10.0" + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperationResults/b67d4cd0-341c-4615-ab2c-c92c87c60f23?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/b67d4cd0-341c-4615-ab2c-c92c87c60f23?api-version=2022-02-01" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "0fe27217-9331-44c8-a0b0-2fa56b0c0de4" + "965de464-dc03-427e-b7bf-b66ed9caf743" ], "x-ms-client-request-id": [ - "e6a21136-a7ea-4f38-97e5-47524c628ec0", - "e6a21136-a7ea-4f38-97e5-47524c628ec0" - ], - "X-Powered-By": [ - "ASP.NET" + "d3cc3871-20de-46a0-af46-a46c57b19417", + "d3cc3871-20de-46a0-af46-a46c57b19417" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "287" + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" ], "x-ms-correlation-request-id": [ - "0fe27217-9331-44c8-a0b0-2fa56b0c0de4" + "965de464-dc03-427e-b7bf-b66ed9caf743" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T100200Z:0fe27217-9331-44c8-a0b0-2fa56b0c0de4" + "JIOINDIAWEST:20220516T161616Z:965de464-dc03-427e-b7bf-b66ed9caf743" ], "Date": [ - "Sat, 26 Mar 2022 10:01:59 GMT" - ], - "Content-Length": [ - "1114" - ], - "Content-Type": [ - "application/json" + "Mon, 16 May 2022 16:16:16 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/dcf9fa8e-efbd-4fc0-9f79-958a357e0cb8\",\r\n \"name\": \"dcf9fa8e-efbd-4fc0-9f79-958a357e0cb8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"duration\": \"PT32.8679589S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"RestoreRecoveryPointTime\": \"3/26/2022 9:55:40 AM\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"1\",\r\n \"Number Of Restored Files\": \"3\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-03-26T10:00:57.7071283Z\",\r\n \"endTime\": \"2022-03-26T10:01:30.5750872Z\",\r\n \"activityId\": \"e6a21136-a7ea-4f38-97e5-47524c628ec0\"\r\n }\r\n}", - "StatusCode": 200 + "ResponseBody": "", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/dcf9fa8e-efbd-4fc0-9f79-958a357e0cb8?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9kY2Y5ZmE4ZS1lZmJkLTRmYzAtOWY3OS05NThhMzU3ZTBjYjg/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/b67d4cd0-341c-4615-ab2c-c92c87c60f23?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9iNjdkNGNkMC0zNDFjLTQ2MTUtYWIyYy1jOTJjODdjNjBmMjM/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e6a21136-a7ea-4f38-97e5-47524c628ec0" + "d3cc3871-20de-46a0-af46-a46c57b19417" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -5461,40 +6353,39 @@ "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-IIS/10.0" - ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "ef35bfe7-a3c3-43da-98f7-af5ffddceeab" + "71d96606-e93b-41fd-934f-bc8cefa8792b" ], "x-ms-client-request-id": [ - "e6a21136-a7ea-4f38-97e5-47524c628ec0", - "e6a21136-a7ea-4f38-97e5-47524c628ec0" - ], - "X-Powered-By": [ - "ASP.NET" + "d3cc3871-20de-46a0-af46-a46c57b19417", + "d3cc3871-20de-46a0-af46-a46c57b19417" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "286" + "276" ], "x-ms-correlation-request-id": [ - "ef35bfe7-a3c3-43da-98f7-af5ffddceeab" + "71d96606-e93b-41fd-934f-bc8cefa8792b" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T100200Z:ef35bfe7-a3c3-43da-98f7-af5ffddceeab" + "JIOINDIAWEST:20220516T161617Z:71d96606-e93b-41fd-934f-bc8cefa8792b" ], "Date": [ - "Sat, 26 Mar 2022 10:01:59 GMT" + "Mon, 16 May 2022 16:16:17 GMT" ], "Content-Length": [ - "1114" + "188" ], "Content-Type": [ "application/json" @@ -5503,26 +6394,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/dcf9fa8e-efbd-4fc0-9f79-958a357e0cb8\",\r\n \"name\": \"dcf9fa8e-efbd-4fc0-9f79-958a357e0cb8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"duration\": \"PT32.8679589S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"RestoreRecoveryPointTime\": \"3/26/2022 9:55:40 AM\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"1\",\r\n \"Number Of Restored Files\": \"3\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-03-26T10:00:57.7071283Z\",\r\n \"endTime\": \"2022-03-26T10:01:30.5750872Z\",\r\n \"activityId\": \"e6a21136-a7ea-4f38-97e5-47524c628ec0\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"b67d4cd0-341c-4615-ab2c-c92c87c60f23\",\r\n \"name\": \"b67d4cd0-341c-4615-ab2c-c92c87c60f23\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T16:16:16.5428763Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3Bstorage%3Bpstestrg8895%3Bpstestsa8895/protectedItems/AzureFileShare%3B698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959/recoveryPoints?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCc3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9wcm90ZWN0ZWRJdGVtcy9BenVyZUZpbGVTaGFyZSUzQjY5OGRmNTk1OTQ4ZTIzNTVmMmJiNzQ0YTQxY2YyNDVkNGJhMTI1NWQ5Njk5Y2MzYzJhZDFmNTA0NWUxNzc5NTkvcmVjb3ZlcnlQb2ludHM/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/b67d4cd0-341c-4615-ab2c-c92c87c60f23?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9iNjdkNGNkMC0zNDFjLTQ2MTUtYWIyYy1jOTJjODdjNjBmMjM/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "71d8a62f-abbe-481c-b07e-91bdcaf80a25" + "d3cc3871-20de-46a0-af46-a46c57b19417" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -5536,11 +6427,11 @@ "nosniff" ], "x-ms-request-id": [ - "42dee886-6c35-4a00-82a8-89d3319ba63e" + "4f23d7ed-ba8b-4acd-8cf8-03bdcbe08daa" ], "x-ms-client-request-id": [ - "71d8a62f-abbe-481c-b07e-91bdcaf80a25", - "71d8a62f-abbe-481c-b07e-91bdcaf80a25" + "d3cc3871-20de-46a0-af46-a46c57b19417", + "d3cc3871-20de-46a0-af46-a46c57b19417" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5552,19 +6443,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "298" + "275" ], "x-ms-correlation-request-id": [ - "42dee886-6c35-4a00-82a8-89d3319ba63e" + "4f23d7ed-ba8b-4acd-8cf8-03bdcbe08daa" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T100201Z:42dee886-6c35-4a00-82a8-89d3319ba63e" + "JIOINDIAWEST:20220516T161622Z:4f23d7ed-ba8b-4acd-8cf8-03bdcbe08daa" ], "Date": [ - "Sat, 26 Mar 2022 10:02:00 GMT" + "Mon, 16 May 2022 16:16:22 GMT" ], "Content-Length": [ - "792" + "188" ], "Content-Type": [ "application/json" @@ -5573,26 +6464,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;storage;pstestrg8895;pstestsa8895/protectedItems/AzureFileShare;698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959/recoveryPoints/33475003016675\",\r\n \"name\": \"33475003016675\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints\",\r\n \"properties\": {\r\n \"objectType\": \"AzureFileShareRecoveryPoint\",\r\n \"recoveryPointType\": \"FileSystemConsistent\",\r\n \"recoveryPointTime\": \"2022-03-26T09:55:39Z\",\r\n \"fileShareSnapshotUri\": \"https://pstestsa8895.file.core.windows.net/fs1?sharesnapshot=2022-03-26T09:55:39.0000000Z\",\r\n \"recoveryPointSizeInGB\": 1\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"b67d4cd0-341c-4615-ab2c-c92c87c60f23\",\r\n \"name\": \"b67d4cd0-341c-4615-ab2c-c92c87c60f23\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T16:16:16.5428763Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3Bstorage%3Bpstestrg8895%3Bpstestsa8895/protectedItems/AzureFileShare%3B698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCc3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9wcm90ZWN0ZWRJdGVtcy9BenVyZUZpbGVTaGFyZSUzQjY5OGRmNTk1OTQ4ZTIzNTVmMmJiNzQ0YTQxY2YyNDVkNGJhMTI1NWQ5Njk5Y2MzYzJhZDFmNTA0NWUxNzc5NTk/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", - "RequestMethod": "DELETE", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/b67d4cd0-341c-4615-ab2c-c92c87c60f23?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9iNjdkNGNkMC0zNDFjLTQ2MTUtYWIyYy1jOTJjODdjNjBmMjM/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "71d8a62f-abbe-481c-b07e-91bdcaf80a25" + "d3cc3871-20de-46a0-af46-a46c57b19417" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -5602,70 +6493,67 @@ "Pragma": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperationResults/f062ed1f-e9fa-4f46-8f17-7a702021f5cf?api-version=2021-12-01" - ], - "Retry-After": [ - "60" - ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/f062ed1f-e9fa-4f46-8f17-7a702021f5cf?api-version=2021-12-01" - ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "30e94654-b74e-4071-af25-b107cec9e56e" + "7f31008a-db0d-4041-880a-4bf9379a1632" ], "x-ms-client-request-id": [ - "71d8a62f-abbe-481c-b07e-91bdcaf80a25", - "71d8a62f-abbe-481c-b07e-91bdcaf80a25" + "d3cc3871-20de-46a0-af46-a46c57b19417", + "d3cc3871-20de-46a0-af46-a46c57b19417" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-IIS/10.0" + ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ - "14999" + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "274" ], "x-ms-correlation-request-id": [ - "30e94654-b74e-4071-af25-b107cec9e56e" + "7f31008a-db0d-4041-880a-4bf9379a1632" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T100202Z:30e94654-b74e-4071-af25-b107cec9e56e" + "JIOINDIAWEST:20220516T161628Z:7f31008a-db0d-4041-880a-4bf9379a1632" ], "Date": [ - "Sat, 26 Mar 2022 10:02:01 GMT" + "Mon, 16 May 2022 16:16:28 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, - "ResponseBody": "", - "StatusCode": 202 + "ResponseBody": "{\r\n \"id\": \"b67d4cd0-341c-4615-ab2c-c92c87c60f23\",\r\n \"name\": \"b67d4cd0-341c-4615-ab2c-c92c87c60f23\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T16:16:16.5428763Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/f062ed1f-e9fa-4f46-8f17-7a702021f5cf?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9mMDYyZWQxZi1lOWZhLTRmNDYtOGYxNy03YTcwMjAyMWY1Y2Y/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/b67d4cd0-341c-4615-ab2c-c92c87c60f23?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9iNjdkNGNkMC0zNDFjLTQ2MTUtYWIyYy1jOTJjODdjNjBmMjM/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "71d8a62f-abbe-481c-b07e-91bdcaf80a25" + "d3cc3871-20de-46a0-af46-a46c57b19417" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -5679,11 +6567,11 @@ "nosniff" ], "x-ms-request-id": [ - "43019332-3fc0-4bbe-9d36-17319eea0eed" + "19db51f9-185d-4df3-a088-f3e1031b0f76" ], "x-ms-client-request-id": [ - "71d8a62f-abbe-481c-b07e-91bdcaf80a25", - "71d8a62f-abbe-481c-b07e-91bdcaf80a25" + "d3cc3871-20de-46a0-af46-a46c57b19417", + "d3cc3871-20de-46a0-af46-a46c57b19417" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5695,19 +6583,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "280" + "273" ], "x-ms-correlation-request-id": [ - "43019332-3fc0-4bbe-9d36-17319eea0eed" + "19db51f9-185d-4df3-a088-f3e1031b0f76" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T100202Z:43019332-3fc0-4bbe-9d36-17319eea0eed" + "JIOINDIAWEST:20220516T161633Z:19db51f9-185d-4df3-a088-f3e1031b0f76" ], "Date": [ - "Sat, 26 Mar 2022 10:02:01 GMT" + "Mon, 16 May 2022 16:16:33 GMT" ], "Content-Length": [ - "187" + "188" ], "Content-Type": [ "application/json" @@ -5716,26 +6604,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"f062ed1f-e9fa-4f46-8f17-7a702021f5cf\",\r\n \"name\": \"f062ed1f-e9fa-4f46-8f17-7a702021f5cf\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-03-26T10:02:01.813618Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"b67d4cd0-341c-4615-ab2c-c92c87c60f23\",\r\n \"name\": \"b67d4cd0-341c-4615-ab2c-c92c87c60f23\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T16:16:16.5428763Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/f062ed1f-e9fa-4f46-8f17-7a702021f5cf?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9mMDYyZWQxZi1lOWZhLTRmNDYtOGYxNy03YTcwMjAyMWY1Y2Y/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/b67d4cd0-341c-4615-ab2c-c92c87c60f23?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9iNjdkNGNkMC0zNDFjLTQ2MTUtYWIyYy1jOTJjODdjNjBmMjM/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "71d8a62f-abbe-481c-b07e-91bdcaf80a25" + "d3cc3871-20de-46a0-af46-a46c57b19417" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -5749,11 +6637,11 @@ "nosniff" ], "x-ms-request-id": [ - "09c80606-fb45-4ade-a6d4-704e448b1774" + "922cf438-05ce-4162-8def-1802ca22335b" ], "x-ms-client-request-id": [ - "71d8a62f-abbe-481c-b07e-91bdcaf80a25", - "71d8a62f-abbe-481c-b07e-91bdcaf80a25" + "d3cc3871-20de-46a0-af46-a46c57b19417", + "d3cc3871-20de-46a0-af46-a46c57b19417" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5765,19 +6653,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "279" + "272" ], "x-ms-correlation-request-id": [ - "09c80606-fb45-4ade-a6d4-704e448b1774" + "922cf438-05ce-4162-8def-1802ca22335b" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T100212Z:09c80606-fb45-4ade-a6d4-704e448b1774" + "JIOINDIAWEST:20220516T161639Z:922cf438-05ce-4162-8def-1802ca22335b" ], "Date": [ - "Sat, 26 Mar 2022 10:02:12 GMT" + "Mon, 16 May 2022 16:16:39 GMT" ], "Content-Length": [ - "187" + "304" ], "Content-Type": [ "application/json" @@ -5786,26 +6674,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"f062ed1f-e9fa-4f46-8f17-7a702021f5cf\",\r\n \"name\": \"f062ed1f-e9fa-4f46-8f17-7a702021f5cf\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-03-26T10:02:01.813618Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"b67d4cd0-341c-4615-ab2c-c92c87c60f23\",\r\n \"name\": \"b67d4cd0-341c-4615-ab2c-c92c87c60f23\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-05-16T16:16:16.5428763Z\",\r\n \"endTime\": \"2022-05-16T16:16:16.5428763Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"36b2b11b-3412-4e47-a0a8-c5e60b2bf87b\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/f062ed1f-e9fa-4f46-8f17-7a702021f5cf?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9mMDYyZWQxZi1lOWZhLTRmNDYtOGYxNy03YTcwMjAyMWY1Y2Y/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/b67d4cd0-341c-4615-ab2c-c92c87c60f23?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9iNjdkNGNkMC0zNDFjLTQ2MTUtYWIyYy1jOTJjODdjNjBmMjM/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "71d8a62f-abbe-481c-b07e-91bdcaf80a25" + "d3cc3871-20de-46a0-af46-a46c57b19417" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -5819,11 +6707,11 @@ "nosniff" ], "x-ms-request-id": [ - "0f935fa0-c393-49b4-ba0a-a628365542ac" + "9024391c-732a-463d-b857-90864aee00a6" ], "x-ms-client-request-id": [ - "71d8a62f-abbe-481c-b07e-91bdcaf80a25", - "71d8a62f-abbe-481c-b07e-91bdcaf80a25" + "d3cc3871-20de-46a0-af46-a46c57b19417", + "d3cc3871-20de-46a0-af46-a46c57b19417" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5835,19 +6723,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "278" + "271" ], "x-ms-correlation-request-id": [ - "0f935fa0-c393-49b4-ba0a-a628365542ac" + "9024391c-732a-463d-b857-90864aee00a6" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T100223Z:0f935fa0-c393-49b4-ba0a-a628365542ac" + "JIOINDIAWEST:20220516T161639Z:9024391c-732a-463d-b857-90864aee00a6" ], "Date": [ - "Sat, 26 Mar 2022 10:02:22 GMT" + "Mon, 16 May 2022 16:16:39 GMT" ], "Content-Length": [ - "187" + "304" ], "Content-Type": [ "application/json" @@ -5856,26 +6744,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"f062ed1f-e9fa-4f46-8f17-7a702021f5cf\",\r\n \"name\": \"f062ed1f-e9fa-4f46-8f17-7a702021f5cf\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-03-26T10:02:01.813618Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"b67d4cd0-341c-4615-ab2c-c92c87c60f23\",\r\n \"name\": \"b67d4cd0-341c-4615-ab2c-c92c87c60f23\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-05-16T16:16:16.5428763Z\",\r\n \"endTime\": \"2022-05-16T16:16:16.5428763Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"36b2b11b-3412-4e47-a0a8-c5e60b2bf87b\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/f062ed1f-e9fa-4f46-8f17-7a702021f5cf?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9mMDYyZWQxZi1lOWZhLTRmNDYtOGYxNy03YTcwMjAyMWY1Y2Y/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/36b2b11b-3412-4e47-a0a8-c5e60b2bf87b?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy8zNmIyYjExYi0zNDEyLTRlNDctYTBhOC1jNWU2MGIyYmY4N2I/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "71d8a62f-abbe-481c-b07e-91bdcaf80a25" + "d3cc3871-20de-46a0-af46-a46c57b19417" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -5885,39 +6773,40 @@ "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-IIS/10.0", + "Microsoft-IIS/10.0" + ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "4970b330-c41c-4e84-8b1f-9d8bd2b5efc8" + "41268f1b-ba74-4cb9-af19-84775fbe15e8" ], "x-ms-client-request-id": [ - "71d8a62f-abbe-481c-b07e-91bdcaf80a25", - "71d8a62f-abbe-481c-b07e-91bdcaf80a25" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-IIS/10.0" + "d3cc3871-20de-46a0-af46-a46c57b19417", + "d3cc3871-20de-46a0-af46-a46c57b19417" ], "X-Powered-By": [ "ASP.NET" ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "277" + "286" ], "x-ms-correlation-request-id": [ - "4970b330-c41c-4e84-8b1f-9d8bd2b5efc8" + "41268f1b-ba74-4cb9-af19-84775fbe15e8" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T100233Z:4970b330-c41c-4e84-8b1f-9d8bd2b5efc8" + "JIOINDIAWEST:20220516T161640Z:41268f1b-ba74-4cb9-af19-84775fbe15e8" ], "Date": [ - "Sat, 26 Mar 2022 10:02:33 GMT" + "Mon, 16 May 2022 16:16:40 GMT" ], "Content-Length": [ - "302" + "821" ], "Content-Type": [ "application/json" @@ -5926,26 +6815,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"f062ed1f-e9fa-4f46-8f17-7a702021f5cf\",\r\n \"name\": \"f062ed1f-e9fa-4f46-8f17-7a702021f5cf\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-03-26T10:02:01.813618Z\",\r\n \"endTime\": \"2022-03-26T10:02:01.813618Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"bd282af2-74ee-44f1-b8b6-ba10c38748d6\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/36b2b11b-3412-4e47-a0a8-c5e60b2bf87b\",\r\n \"name\": \"36b2b11b-3412-4e47-a0a8-c5e60b2bf87b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT21.7936461S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"Storage\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"File Share Name\": \"fs1\",\r\n \"Storage Account Name\": \"pstestsa8895\"\r\n }\r\n },\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"DeleteBackupData\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-05-16T16:16:16.5428763Z\",\r\n \"endTime\": \"2022-05-16T16:16:38.3365224Z\",\r\n \"activityId\": \"d3cc3871-20de-46a0-af46-a46c57b19417\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/f062ed1f-e9fa-4f46-8f17-7a702021f5cf?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9mMDYyZWQxZi1lOWZhLTRmNDYtOGYxNy03YTcwMjAyMWY1Y2Y/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", - "RequestMethod": "GET", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "71d8a62f-abbe-481c-b07e-91bdcaf80a25" + "ba873114-3421-47e8-819f-dfcc0804f6f9" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -5955,67 +6844,70 @@ "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperationResults/d8f6c9ee-baa9-42bd-955a-b73acf2ef98e?fabricName=Azure?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationsStatus/d8f6c9ee-baa9-42bd-955a-b73acf2ef98e?api-version=2019-05-13-preview" + ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "c4bdc589-657c-4cde-84fe-0a14371ba2c0" + "debe3456-e997-4fe0-a620-9dc0a6d37593" ], "x-ms-client-request-id": [ - "71d8a62f-abbe-481c-b07e-91bdcaf80a25", - "71d8a62f-abbe-481c-b07e-91bdcaf80a25" + "ba873114-3421-47e8-819f-dfcc0804f6f9", + "ba873114-3421-47e8-819f-dfcc0804f6f9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Server": [ - "Microsoft-IIS/10.0" - ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "276" + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14998" ], "x-ms-correlation-request-id": [ - "c4bdc589-657c-4cde-84fe-0a14371ba2c0" + "debe3456-e997-4fe0-a620-9dc0a6d37593" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T100233Z:c4bdc589-657c-4cde-84fe-0a14371ba2c0" + "JIOINDIAWEST:20220516T161641Z:debe3456-e997-4fe0-a620-9dc0a6d37593" ], "Date": [ - "Sat, 26 Mar 2022 10:02:33 GMT" - ], - "Content-Length": [ - "302" - ], - "Content-Type": [ - "application/json" + "Mon, 16 May 2022 16:16:40 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, - "ResponseBody": "{\r\n \"id\": \"f062ed1f-e9fa-4f46-8f17-7a702021f5cf\",\r\n \"name\": \"f062ed1f-e9fa-4f46-8f17-7a702021f5cf\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-03-26T10:02:01.813618Z\",\r\n \"endTime\": \"2022-03-26T10:02:01.813618Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"bd282af2-74ee-44f1-b8b6-ba10c38748d6\"\r\n }\r\n}", - "StatusCode": 200 + "ResponseBody": "", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/bd282af2-74ee-44f1-b8b6-ba10c38748d6?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9iZDI4MmFmMi03NGVlLTQ0ZjEtYjhiNi1iYTEwYzM4NzQ4ZDY/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/d8f6c9ee-baa9-42bd-955a-b73acf2ef98e?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzL2Q4ZjZjOWVlLWJhYTktNDJiZC05NTVhLWI3M2FjZjJlZjk4ZT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "71d8a62f-abbe-481c-b07e-91bdcaf80a25" + "ba873114-3421-47e8-819f-dfcc0804f6f9" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -6025,68 +6917,67 @@ "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-IIS/10.0" + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/d8f6c9ee-baa9-42bd-955a-b73acf2ef98e?api-version=2022-02-01" + ], + "Retry-After": [ + "60" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "0690bb73-a93e-4e28-913b-a67ef8d66808" + "5f27df0b-cac5-4f95-9792-de40977304ac" ], "x-ms-client-request-id": [ - "71d8a62f-abbe-481c-b07e-91bdcaf80a25", - "71d8a62f-abbe-481c-b07e-91bdcaf80a25" - ], - "X-Powered-By": [ - "ASP.NET" + "ba873114-3421-47e8-819f-dfcc0804f6f9", + "ba873114-3421-47e8-819f-dfcc0804f6f9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Powered-By": [ + "ASP.NET" + ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "285" + "295" ], "x-ms-correlation-request-id": [ - "0690bb73-a93e-4e28-913b-a67ef8d66808" + "5f27df0b-cac5-4f95-9792-de40977304ac" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T100234Z:0690bb73-a93e-4e28-913b-a67ef8d66808" + "JIOINDIAWEST:20220516T161641Z:5f27df0b-cac5-4f95-9792-de40977304ac" ], "Date": [ - "Sat, 26 Mar 2022 10:02:33 GMT" - ], - "Content-Length": [ - "820" - ], - "Content-Type": [ - "application/json" + "Mon, 16 May 2022 16:16:41 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/bd282af2-74ee-44f1-b8b6-ba10c38748d6\",\r\n \"name\": \"bd282af2-74ee-44f1-b8b6-ba10c38748d6\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT22.1462265S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"Storage\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"File Share Name\": \"fs1\",\r\n \"Storage Account Name\": \"pstestsa8895\"\r\n }\r\n },\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"DeleteBackupData\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-03-26T10:02:01.813618Z\",\r\n \"endTime\": \"2022-03-26T10:02:23.9598445Z\",\r\n \"activityId\": \"71d8a62f-abbe-481c-b07e-91bdcaf80a25\"\r\n }\r\n}", - "StatusCode": 200 + "ResponseBody": "", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NT9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", - "RequestMethod": "DELETE", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/d8f6c9ee-baa9-42bd-955a-b73acf2ef98e?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzL2Q4ZjZjOWVlLWJhYTktNDJiZC05NTVhLWI3M2FjZjJlZjk4ZT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5ce376ee-c10b-422f-ac6e-2529304b8317" + "ba873114-3421-47e8-819f-dfcc0804f6f9" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -6097,23 +6988,20 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperationResults/e931974a-b450-4387-9be0-8f776d8a857c?fabricName=Azure?api-version=2021-12-01" + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/d8f6c9ee-baa9-42bd-955a-b73acf2ef98e?api-version=2022-02-01" ], "Retry-After": [ "60" ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationsStatus/e931974a-b450-4387-9be0-8f776d8a857c?api-version=2019-05-13-preview" - ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "4af7f870-c8da-4169-8c46-67135273bd64" + "40d3a1ba-d636-4758-894c-99da0177ff5c" ], "x-ms-client-request-id": [ - "5ce376ee-c10b-422f-ac6e-2529304b8317", - "5ce376ee-c10b-422f-ac6e-2529304b8317" + "ba873114-3421-47e8-819f-dfcc0804f6f9", + "ba873114-3421-47e8-819f-dfcc0804f6f9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6121,17 +7009,17 @@ "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ - "14998" + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "294" ], "x-ms-correlation-request-id": [ - "4af7f870-c8da-4169-8c46-67135273bd64" + "40d3a1ba-d636-4758-894c-99da0177ff5c" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T100234Z:4af7f870-c8da-4169-8c46-67135273bd64" + "JIOINDIAWEST:20220516T161647Z:40d3a1ba-d636-4758-894c-99da0177ff5c" ], "Date": [ - "Sat, 26 Mar 2022 10:02:34 GMT" + "Mon, 16 May 2022 16:16:46 GMT" ], "Expires": [ "-1" @@ -6144,22 +7032,22 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/e931974a-b450-4387-9be0-8f776d8a857c?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzL2U5MzE5NzRhLWI0NTAtNDM4Ny05YmUwLThmNzc2ZDhhODU3Yz9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/d8f6c9ee-baa9-42bd-955a-b73acf2ef98e?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzL2Q4ZjZjOWVlLWJhYTktNDJiZC05NTVhLWI3M2FjZjJlZjk4ZT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5ce376ee-c10b-422f-ac6e-2529304b8317" + "ba873114-3421-47e8-819f-dfcc0804f6f9" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -6170,7 +7058,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/e931974a-b450-4387-9be0-8f776d8a857c?api-version=2021-12-01" + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/d8f6c9ee-baa9-42bd-955a-b73acf2ef98e?api-version=2022-02-01" ], "Retry-After": [ "60" @@ -6179,11 +7067,11 @@ "nosniff" ], "x-ms-request-id": [ - "84b9e79a-e892-4e59-a69b-cb6c5d373fea" + "82c8b9cd-4d46-4897-abdf-9043b259922d" ], "x-ms-client-request-id": [ - "5ce376ee-c10b-422f-ac6e-2529304b8317", - "5ce376ee-c10b-422f-ac6e-2529304b8317" + "ba873114-3421-47e8-819f-dfcc0804f6f9", + "ba873114-3421-47e8-819f-dfcc0804f6f9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6192,16 +7080,16 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "299" + "293" ], "x-ms-correlation-request-id": [ - "84b9e79a-e892-4e59-a69b-cb6c5d373fea" + "82c8b9cd-4d46-4897-abdf-9043b259922d" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T100235Z:84b9e79a-e892-4e59-a69b-cb6c5d373fea" + "JIOINDIAWEST:20220516T161652Z:82c8b9cd-4d46-4897-abdf-9043b259922d" ], "Date": [ - "Sat, 26 Mar 2022 10:02:34 GMT" + "Mon, 16 May 2022 16:16:52 GMT" ], "Expires": [ "-1" @@ -6214,22 +7102,22 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/e931974a-b450-4387-9be0-8f776d8a857c?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzL2U5MzE5NzRhLWI0NTAtNDM4Ny05YmUwLThmNzc2ZDhhODU3Yz9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/d8f6c9ee-baa9-42bd-955a-b73acf2ef98e?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzL2Q4ZjZjOWVlLWJhYTktNDJiZC05NTVhLWI3M2FjZjJlZjk4ZT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5ce376ee-c10b-422f-ac6e-2529304b8317" + "ba873114-3421-47e8-819f-dfcc0804f6f9" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -6240,7 +7128,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/e931974a-b450-4387-9be0-8f776d8a857c?api-version=2021-12-01" + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/d8f6c9ee-baa9-42bd-955a-b73acf2ef98e?api-version=2022-02-01" ], "Retry-After": [ "60" @@ -6249,11 +7137,11 @@ "nosniff" ], "x-ms-request-id": [ - "389de98f-9ad7-46e5-b66b-ab158f9da282" + "a9666fec-9459-40e3-84da-004bc93eb406" ], "x-ms-client-request-id": [ - "5ce376ee-c10b-422f-ac6e-2529304b8317", - "5ce376ee-c10b-422f-ac6e-2529304b8317" + "ba873114-3421-47e8-819f-dfcc0804f6f9", + "ba873114-3421-47e8-819f-dfcc0804f6f9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6262,16 +7150,16 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "298" + "292" ], "x-ms-correlation-request-id": [ - "389de98f-9ad7-46e5-b66b-ab158f9da282" + "a9666fec-9459-40e3-84da-004bc93eb406" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T100245Z:389de98f-9ad7-46e5-b66b-ab158f9da282" + "JIOINDIAWEST:20220516T161658Z:a9666fec-9459-40e3-84da-004bc93eb406" ], "Date": [ - "Sat, 26 Mar 2022 10:02:45 GMT" + "Mon, 16 May 2022 16:16:58 GMT" ], "Expires": [ "-1" @@ -6284,22 +7172,22 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/e931974a-b450-4387-9be0-8f776d8a857c?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzL2U5MzE5NzRhLWI0NTAtNDM4Ny05YmUwLThmNzc2ZDhhODU3Yz9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/d8f6c9ee-baa9-42bd-955a-b73acf2ef98e?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzL2Q4ZjZjOWVlLWJhYTktNDJiZC05NTVhLWI3M2FjZjJlZjk4ZT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5ce376ee-c10b-422f-ac6e-2529304b8317" + "ba873114-3421-47e8-819f-dfcc0804f6f9" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -6310,7 +7198,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/e931974a-b450-4387-9be0-8f776d8a857c?api-version=2021-12-01" + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/d8f6c9ee-baa9-42bd-955a-b73acf2ef98e?api-version=2022-02-01" ], "Retry-After": [ "60" @@ -6319,11 +7207,11 @@ "nosniff" ], "x-ms-request-id": [ - "549157bd-bbb2-43f4-9f24-778aa64f5a70" + "fa26d954-4f30-45fb-bbb8-29bc251d34d6" ], "x-ms-client-request-id": [ - "5ce376ee-c10b-422f-ac6e-2529304b8317", - "5ce376ee-c10b-422f-ac6e-2529304b8317" + "ba873114-3421-47e8-819f-dfcc0804f6f9", + "ba873114-3421-47e8-819f-dfcc0804f6f9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6332,16 +7220,16 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "297" + "291" ], "x-ms-correlation-request-id": [ - "549157bd-bbb2-43f4-9f24-778aa64f5a70" + "fa26d954-4f30-45fb-bbb8-29bc251d34d6" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T100256Z:549157bd-bbb2-43f4-9f24-778aa64f5a70" + "JIOINDIAWEST:20220516T161704Z:fa26d954-4f30-45fb-bbb8-29bc251d34d6" ], "Date": [ - "Sat, 26 Mar 2022 10:02:55 GMT" + "Mon, 16 May 2022 16:17:03 GMT" ], "Expires": [ "-1" @@ -6354,22 +7242,22 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/e931974a-b450-4387-9be0-8f776d8a857c?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzL2U5MzE5NzRhLWI0NTAtNDM4Ny05YmUwLThmNzc2ZDhhODU3Yz9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/d8f6c9ee-baa9-42bd-955a-b73acf2ef98e?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzL2Q4ZjZjOWVlLWJhYTktNDJiZC05NTVhLWI3M2FjZjJlZjk4ZT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5ce376ee-c10b-422f-ac6e-2529304b8317" + "ba873114-3421-47e8-819f-dfcc0804f6f9" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -6383,11 +7271,11 @@ "nosniff" ], "x-ms-request-id": [ - "b21831be-6a04-47e6-9e65-bbe33b2285ad" + "ddeeb81c-f182-4eec-846e-5eb2bf9bf893" ], "x-ms-client-request-id": [ - "5ce376ee-c10b-422f-ac6e-2529304b8317", - "5ce376ee-c10b-422f-ac6e-2529304b8317" + "ba873114-3421-47e8-819f-dfcc0804f6f9", + "ba873114-3421-47e8-819f-dfcc0804f6f9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6396,38 +7284,38 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "296" + "290" ], "x-ms-correlation-request-id": [ - "b21831be-6a04-47e6-9e65-bbe33b2285ad" + "ddeeb81c-f182-4eec-846e-5eb2bf9bf893" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T100306Z:b21831be-6a04-47e6-9e65-bbe33b2285ad" + "JIOINDIAWEST:20220516T161709Z:ddeeb81c-f182-4eec-846e-5eb2bf9bf893" ], "Date": [ - "Sat, 26 Mar 2022 10:03:05 GMT" + "Mon, 16 May 2022 16:17:09 GMT" ] }, "ResponseBody": "", "StatusCode": 204 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/e931974a-b450-4387-9be0-8f776d8a857c?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzL2U5MzE5NzRhLWI0NTAtNDM4Ny05YmUwLThmNzc2ZDhhODU3Yz9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/d8f6c9ee-baa9-42bd-955a-b73acf2ef98e?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzL2Q4ZjZjOWVlLWJhYTktNDJiZC05NTVhLWI3M2FjZjJlZjk4ZT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5ce376ee-c10b-422f-ac6e-2529304b8317" + "ba873114-3421-47e8-819f-dfcc0804f6f9" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -6441,11 +7329,11 @@ "nosniff" ], "x-ms-request-id": [ - "45815610-0d11-426c-8e2c-02e0db277eab" + "e40d4452-ff8c-4abd-b7fe-49c90e2fbf05" ], "x-ms-client-request-id": [ - "5ce376ee-c10b-422f-ac6e-2529304b8317", - "5ce376ee-c10b-422f-ac6e-2529304b8317" + "ba873114-3421-47e8-819f-dfcc0804f6f9", + "ba873114-3421-47e8-819f-dfcc0804f6f9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6454,16 +7342,16 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "295" + "289" ], "x-ms-correlation-request-id": [ - "45815610-0d11-426c-8e2c-02e0db277eab" + "e40d4452-ff8c-4abd-b7fe-49c90e2fbf05" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T100306Z:45815610-0d11-426c-8e2c-02e0db277eab" + "JIOINDIAWEST:20220516T161710Z:e40d4452-ff8c-4abd-b7fe-49c90e2fbf05" ], "Date": [ - "Sat, 26 Mar 2022 10:03:05 GMT" + "Mon, 16 May 2022 16:17:09 GMT" ] }, "ResponseBody": "", diff --git a/src/RecoveryServices/RecoveryServices.Backup.Test/SessionRecords/Microsoft.Azure.Commands.RecoveryServices.Backup.Test.ScenarioTests.ItemTests/TestAzureFSGetRPs.json b/src/RecoveryServices/RecoveryServices.Backup.Test/SessionRecords/Microsoft.Azure.Commands.RecoveryServices.Backup.Test.ScenarioTests.ItemTests/TestAzureFSGetRPs.json index 6d00abd50ba7..ba662cf144b7 100644 --- a/src/RecoveryServices/RecoveryServices.Backup.Test/SessionRecords/Microsoft.Azure.Commands.RecoveryServices.Backup.Test.ScenarioTests.ItemTests/TestAzureFSGetRPs.json +++ b/src/RecoveryServices/RecoveryServices.Backup.Test/SessionRecords/Microsoft.Azure.Commands.RecoveryServices.Backup.Test.ScenarioTests.ItemTests/TestAzureFSGetRPs.json @@ -7,13 +7,13 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "db297fdc-c67c-44db-9719-83078b13a54f" + "83304650-149c-46a4-8b83-0a0c9aff9380" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesClient/4.3.2.0" @@ -30,10 +30,10 @@ "nosniff" ], "x-ms-request-id": [ - "d5a1cbee-e4cb-42e1-9434-3d352383b8f9" + "626c339b-5f92-4179-b3df-89f655cb1b61" ], "x-ms-client-request-id": [ - "db297fdc-c67c-44db-9719-83078b13a54f" + "83304650-149c-46a4-8b83-0a0c9aff9380" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -42,19 +42,19 @@ "Microsoft-IIS/10.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11998" ], "x-ms-correlation-request-id": [ - "d5a1cbee-e4cb-42e1-9434-3d352383b8f9" + "626c339b-5f92-4179-b3df-89f655cb1b61" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T114242Z:d5a1cbee-e4cb-42e1-9434-3d352383b8f9" + "JIOINDIAWEST:20220516T170836Z:626c339b-5f92-4179-b3df-89f655cb1b61" ], "Date": [ - "Sat, 26 Mar 2022 11:42:41 GMT" + "Mon, 16 May 2022 17:08:36 GMT" ], "Content-Length": [ - "467" + "519" ], "Content-Type": [ "application/json" @@ -63,26 +63,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pstestrsv8895\",\r\n \"etag\": \"W/\\\"datetime'2022-02-18T07%3A20%3A25.5509044Z'\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateEndpointStateForBackup\": \"None\",\r\n \"privateEndpointStateForSiteRecovery\": \"None\"\r\n },\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"RS0\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pstestrsv8895\",\r\n \"etag\": \"W/\\\"datetime'2022-02-18T07%3A20%3A25.5509044Z'\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateEndpointStateForBackup\": \"None\",\r\n \"privateEndpointStateForSiteRecovery\": \"None\",\r\n \"networkSettings\": {\r\n \"publicNetworkAccess\": \"Enabled\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"RS0\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupProtectionContainers?$filter=friendlyName%20eq%20'pstestsa8895'%20and%20backupManagementType%20eq%20'AzureStorage'%20and%20status%20eq%20'Registered'&api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwUHJvdGVjdGlvbkNvbnRhaW5lcnM/JGZpbHRlcj1mcmllbmRseU5hbWUlMjBlcSUyMCdwc3Rlc3RzYTg4OTUnJTIwYW5kJTIwYmFja3VwTWFuYWdlbWVudFR5cGUlMjBlcSUyMCdBenVyZVN0b3JhZ2UnJTIwYW5kJTIwc3RhdHVzJTIwZXElMjAnUmVnaXN0ZXJlZCcmYXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupProtectionContainers?$filter=friendlyName%20eq%20'pstestsa8895'%20and%20backupManagementType%20eq%20'AzureStorage'%20and%20status%20eq%20'Registered'&api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwUHJvdGVjdGlvbkNvbnRhaW5lcnM/JGZpbHRlcj1mcmllbmRseU5hbWUlMjBlcSUyMCdwc3Rlc3RzYTg4OTUnJTIwYW5kJTIwYmFja3VwTWFuYWdlbWVudFR5cGUlMjBlcSUyMCdBenVyZVN0b3JhZ2UnJTIwYW5kJTIwc3RhdHVzJTIwZXElMjAnUmVnaXN0ZXJlZCcmYXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "dd93a574-230a-4040-853d-f8afa800199e" + "3116bfe0-9940-4da3-bc7d-8f5854d2a35c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -96,11 +96,11 @@ "nosniff" ], "x-ms-request-id": [ - "61ec7beb-bb27-47da-a2e0-63495eaa8ba6" + "41975452-77d5-4bab-9c47-30361fb83b29" ], "x-ms-client-request-id": [ - "dd93a574-230a-4040-853d-f8afa800199e", - "dd93a574-230a-4040-853d-f8afa800199e" + "3116bfe0-9940-4da3-bc7d-8f5854d2a35c", + "3116bfe0-9940-4da3-bc7d-8f5854d2a35c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -115,13 +115,13 @@ "299" ], "x-ms-correlation-request-id": [ - "61ec7beb-bb27-47da-a2e0-63495eaa8ba6" + "41975452-77d5-4bab-9c47-30361fb83b29" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T114243Z:61ec7beb-bb27-47da-a2e0-63495eaa8ba6" + "WESTINDIA:20220516T170837Z:41975452-77d5-4bab-9c47-30361fb83b29" ], "Date": [ - "Sat, 26 Mar 2022 11:42:42 GMT" + "Mon, 16 May 2022 17:08:37 GMT" ], "Content-Length": [ "12" @@ -137,22 +137,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupProtectionContainers?$filter=friendlyName%20eq%20'pstestsa8895'%20and%20backupManagementType%20eq%20'AzureStorage'%20and%20status%20eq%20'Registered'&api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwUHJvdGVjdGlvbkNvbnRhaW5lcnM/JGZpbHRlcj1mcmllbmRseU5hbWUlMjBlcSUyMCdwc3Rlc3RzYTg4OTUnJTIwYW5kJTIwYmFja3VwTWFuYWdlbWVudFR5cGUlMjBlcSUyMCdBenVyZVN0b3JhZ2UnJTIwYW5kJTIwc3RhdHVzJTIwZXElMjAnUmVnaXN0ZXJlZCcmYXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupProtectionContainers?$filter=friendlyName%20eq%20'pstestsa8895'%20and%20backupManagementType%20eq%20'AzureStorage'%20and%20status%20eq%20'Registered'&api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwUHJvdGVjdGlvbkNvbnRhaW5lcnM/JGZpbHRlcj1mcmllbmRseU5hbWUlMjBlcSUyMCdwc3Rlc3RzYTg4OTUnJTIwYW5kJTIwYmFja3VwTWFuYWdlbWVudFR5cGUlMjBlcSUyMCdBenVyZVN0b3JhZ2UnJTIwYW5kJTIwc3RhdHVzJTIwZXElMjAnUmVnaXN0ZXJlZCcmYXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "375f241d-7526-4911-92bc-4110d9cc0334" + "739bd40f-f57b-4758-b112-bcb77122e721" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -166,11 +166,11 @@ "nosniff" ], "x-ms-request-id": [ - "1aa9f683-fd9c-4e83-99d5-68d54d06609e" + "386730c1-f0b1-47c5-b977-601d40cdd93a" ], "x-ms-client-request-id": [ - "375f241d-7526-4911-92bc-4110d9cc0334", - "375f241d-7526-4911-92bc-4110d9cc0334" + "739bd40f-f57b-4758-b112-bcb77122e721", + "739bd40f-f57b-4758-b112-bcb77122e721" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,13 +185,13 @@ "297" ], "x-ms-correlation-request-id": [ - "1aa9f683-fd9c-4e83-99d5-68d54d06609e" + "386730c1-f0b1-47c5-b977-601d40cdd93a" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T114411Z:1aa9f683-fd9c-4e83-99d5-68d54d06609e" + "WESTINDIA:20220516T171012Z:386730c1-f0b1-47c5-b977-601d40cdd93a" ], "Date": [ - "Sat, 26 Mar 2022 11:44:11 GMT" + "Mon, 16 May 2022 17:10:12 GMT" ], "Content-Length": [ "827" @@ -207,22 +207,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupProtectionContainers?$filter=friendlyName%20eq%20'pstestsa8895'%20and%20backupManagementType%20eq%20'AzureStorage'%20and%20status%20eq%20'Registered'&api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwUHJvdGVjdGlvbkNvbnRhaW5lcnM/JGZpbHRlcj1mcmllbmRseU5hbWUlMjBlcSUyMCdwc3Rlc3RzYTg4OTUnJTIwYW5kJTIwYmFja3VwTWFuYWdlbWVudFR5cGUlMjBlcSUyMCdBenVyZVN0b3JhZ2UnJTIwYW5kJTIwc3RhdHVzJTIwZXElMjAnUmVnaXN0ZXJlZCcmYXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupProtectionContainers?$filter=friendlyName%20eq%20'pstestsa8895'%20and%20backupManagementType%20eq%20'AzureStorage'%20and%20status%20eq%20'Registered'&api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwUHJvdGVjdGlvbkNvbnRhaW5lcnM/JGZpbHRlcj1mcmllbmRseU5hbWUlMjBlcSUyMCdwc3Rlc3RzYTg4OTUnJTIwYW5kJTIwYmFja3VwTWFuYWdlbWVudFR5cGUlMjBlcSUyMCdBenVyZVN0b3JhZ2UnJTIwYW5kJTIwc3RhdHVzJTIwZXElMjAnUmVnaXN0ZXJlZCcmYXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d186cdc1-37c0-4d52-a04c-ac376a8e375d" + "33c6715a-62b7-46f2-a084-f965ffd1f4f8" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -236,11 +236,11 @@ "nosniff" ], "x-ms-request-id": [ - "2e1104b9-59c0-44a1-a430-3d9cdf6bcd51" + "ecb63820-52a2-471d-b827-bd5b20743a83" ], "x-ms-client-request-id": [ - "d186cdc1-37c0-4d52-a04c-ac376a8e375d", - "d186cdc1-37c0-4d52-a04c-ac376a8e375d" + "33c6715a-62b7-46f2-a084-f965ffd1f4f8", + "33c6715a-62b7-46f2-a084-f965ffd1f4f8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -255,13 +255,13 @@ "296" ], "x-ms-correlation-request-id": [ - "2e1104b9-59c0-44a1-a430-3d9cdf6bcd51" + "ecb63820-52a2-471d-b827-bd5b20743a83" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T114413Z:2e1104b9-59c0-44a1-a430-3d9cdf6bcd51" + "WESTINDIA:20220516T171014Z:ecb63820-52a2-471d-b827-bd5b20743a83" ], "Date": [ - "Sat, 26 Mar 2022 11:44:12 GMT" + "Mon, 16 May 2022 17:10:14 GMT" ], "Content-Length": [ "827" @@ -277,22 +277,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupPolicies/afspolicy1?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwUG9saWNpZXMvYWZzcG9saWN5MT9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupPolicies/afspolicy1?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwUG9saWNpZXMvYWZzcG9saWN5MT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d541dce3-6fb2-47bd-8706-cc0bf3534085" + "a74b1695-c874-483a-a9d8-7cb7a37a7856" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -306,11 +306,11 @@ "nosniff" ], "x-ms-request-id": [ - "5edb4636-6f30-4624-bc0f-7c8cd3385e06" + "0247da24-db03-4c1a-a5cf-5cdbde339d28" ], "x-ms-client-request-id": [ - "d541dce3-6fb2-47bd-8706-cc0bf3534085", - "d541dce3-6fb2-47bd-8706-cc0bf3534085" + "a74b1695-c874-483a-a9d8-7cb7a37a7856", + "a74b1695-c874-483a-a9d8-7cb7a37a7856" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -325,13 +325,13 @@ "299" ], "x-ms-correlation-request-id": [ - "5edb4636-6f30-4624-bc0f-7c8cd3385e06" + "0247da24-db03-4c1a-a5cf-5cdbde339d28" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T114243Z:5edb4636-6f30-4624-bc0f-7c8cd3385e06" + "WESTINDIA:20220516T170838Z:0247da24-db03-4c1a-a5cf-5cdbde339d28" ], "Date": [ - "Sat, 26 Mar 2022 11:42:42 GMT" + "Mon, 16 May 2022 17:08:37 GMT" ], "Content-Length": [ "693" @@ -347,22 +347,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupProtectionContainers?$filter=backupManagementType%20eq%20'AzureStorage'&api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwUHJvdGVjdGlvbkNvbnRhaW5lcnM/JGZpbHRlcj1iYWNrdXBNYW5hZ2VtZW50VHlwZSUyMGVxJTIwJ0F6dXJlU3RvcmFnZScmYXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupProtectionContainers?$filter=backupManagementType%20eq%20'AzureStorage'&api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwUHJvdGVjdGlvbkNvbnRhaW5lcnM/JGZpbHRlcj1iYWNrdXBNYW5hZ2VtZW50VHlwZSUyMGVxJTIwJ0F6dXJlU3RvcmFnZScmYXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8759066b-eca1-45a9-81d6-201da03960ad" + "c49e88a3-878d-4510-b22d-0afe8d278cdf" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -376,11 +376,11 @@ "nosniff" ], "x-ms-request-id": [ - "2836204f-1565-4c84-a5ab-527f02d4544f" + "876db130-20ec-4967-a599-21f3d974f7cd" ], "x-ms-client-request-id": [ - "8759066b-eca1-45a9-81d6-201da03960ad", - "8759066b-eca1-45a9-81d6-201da03960ad" + "c49e88a3-878d-4510-b22d-0afe8d278cdf", + "c49e88a3-878d-4510-b22d-0afe8d278cdf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -395,13 +395,13 @@ "298" ], "x-ms-correlation-request-id": [ - "2836204f-1565-4c84-a5ab-527f02d4544f" + "876db130-20ec-4967-a599-21f3d974f7cd" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T114243Z:2836204f-1565-4c84-a5ab-527f02d4544f" + "WESTINDIA:20220516T170839Z:876db130-20ec-4967-a599-21f3d974f7cd" ], "Date": [ - "Sat, 26 Mar 2022 11:42:43 GMT" + "Mon, 16 May 2022 17:08:38 GMT" ], "Content-Length": [ "12" @@ -417,22 +417,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers?$filter=backupManagementType%20eq%20'AzureStorage'&api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0YWJsZUNvbnRhaW5lcnM/JGZpbHRlcj1iYWNrdXBNYW5hZ2VtZW50VHlwZSUyMGVxJTIwJ0F6dXJlU3RvcmFnZScmYXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers?$filter=backupManagementType%20eq%20'AzureStorage'&api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0YWJsZUNvbnRhaW5lcnM/JGZpbHRlcj1iYWNrdXBNYW5hZ2VtZW50VHlwZSUyMGVxJTIwJ0F6dXJlU3RvcmFnZScmYXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8759066b-eca1-45a9-81d6-201da03960ad" + "c49e88a3-878d-4510-b22d-0afe8d278cdf" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -446,11 +446,11 @@ "nosniff" ], "x-ms-request-id": [ - "8fa53400-4a9a-4c50-bb16-10ca777a7a03" + "c0443864-efe8-49b0-b346-aa7b9550ac30" ], "x-ms-client-request-id": [ - "8759066b-eca1-45a9-81d6-201da03960ad", - "8759066b-eca1-45a9-81d6-201da03960ad" + "c49e88a3-878d-4510-b22d-0afe8d278cdf", + "c49e88a3-878d-4510-b22d-0afe8d278cdf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -465,16 +465,16 @@ "299" ], "x-ms-correlation-request-id": [ - "8fa53400-4a9a-4c50-bb16-10ca777a7a03" + "c0443864-efe8-49b0-b346-aa7b9550ac30" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T114244Z:8fa53400-4a9a-4c50-bb16-10ca777a7a03" + "WESTINDIA:20220516T170839Z:c0443864-efe8-49b0-b346-aa7b9550ac30" ], "Date": [ - "Sat, 26 Mar 2022 11:42:43 GMT" + "Mon, 16 May 2022 17:08:38 GMT" ], "Content-Length": [ - "14925" + "24516" ], "Content-Type": [ "application/json" @@ -483,26 +483,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;afstests;02xseacan01otds1\",\r\n \"name\": \"StorageContainer;Storage;afstests;02xseacan01otds1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"02xseacan01otds1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/02xseacan01otds1\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;afstests;afsbackupsa\",\r\n \"name\": \"StorageContainer;Storage;afstests;afsbackupsa\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"afsbackupsa\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/afsbackupsa\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;afstests;storageysci5wbex6jyc\",\r\n \"name\": \"StorageContainer;Storage;afstests;storageysci5wbex6jyc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"storageysci5wbex6jyc\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/storageysci5wbex6jyc\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;akkanaseCMK;0byseapod01otds1\",\r\n \"name\": \"StorageContainer;Storage;akkanaseCMK;0byseapod01otds1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"0byseapod01otds1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseCMK/providers/Microsoft.Storage/storageAccounts/0byseapod01otds1\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;akkanaseGRSVault;frmseapod01otds1\",\r\n \"name\": \"StorageContainer;Storage;akkanaseGRSVault;frmseapod01otds1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"frmseapod01otds1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseGRSVault/providers/Microsoft.Storage/storageAccounts/frmseapod01otds1\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;cmk.system;cmkautomationstore\",\r\n \"name\": \"StorageContainer;Storage;cmk.system;cmkautomationstore\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"cmkautomationstore\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/cmk.system/providers/Microsoft.Storage/storageAccounts/cmkautomationstore\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;disk-bvt-test-rg;hv3seapod01otds1\",\r\n \"name\": \"StorageContainer;Storage;disk-bvt-test-rg;hv3seapod01otds1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"hv3seapod01otds1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/disk-bvt-test-rg/providers/Microsoft.Storage/storageAccounts/hv3seapod01otds1\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;DoNotUse-OSS-BVT-SEA-RG;dontuseossrestoreasfile\",\r\n \"name\": \"StorageContainer;Storage;DoNotUse-OSS-BVT-SEA-RG;dontuseossrestoreasfile\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"dontuseossrestoreasfile\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/DoNotUse-OSS-BVT-SEA-RG/providers/Microsoft.Storage/storageAccounts/dontuseossrestoreasfile\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;iaasvm.encryptedvm;iaasvmencryptedvmdiag170\",\r\n \"name\": \"StorageContainer;Storage;iaasvm.encryptedvm;iaasvmencryptedvmdiag170\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"iaasvmencryptedvmdiag170\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.encryptedvm/providers/Microsoft.Storage/storageAccounts/iaasvmencryptedvmdiag170\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;iaasvm.existing;iaasextstore1\",\r\n \"name\": \"StorageContainer;Storage;iaasvm.existing;iaasextstore1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"iaasextstore1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.existing/providers/Microsoft.Storage/storageAccounts/iaasextstore1\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;iaasvm.new;iaasvmnewdiag1\",\r\n \"name\": \"StorageContainer;Storage;iaasvm.new;iaasvmnewdiag1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"iaasvmnewdiag1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.new/providers/Microsoft.Storage/storageAccounts/iaasvmnewdiag1\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;iaasvmhanaworkload.existing;iaasvmhanaworkloadexisti\",\r\n \"name\": \"StorageContainer;Storage;iaasvmhanaworkload.existing;iaasvmhanaworkloadexisti\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"iaasvmhanaworkloadexisti\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvmhanaworkload.existing/providers/Microsoft.Storage/storageAccounts/iaasvmhanaworkloadexisti\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;pscloudtestrg;pscloudtestrgdiag\",\r\n \"name\": \"StorageContainer;Storage;pscloudtestrg;pscloudtestrgdiag\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"pscloudtestrgdiag\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pscloudtestrg/providers/Microsoft.Storage/storageAccounts/pscloudtestrgdiag\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;PSTestRG1e5a278b;pstestsa1e5a278b\",\r\n \"name\": \"StorageContainer;Storage;PSTestRG1e5a278b;pstestsa1e5a278b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"pstestsa1e5a278b\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG1e5a278b/providers/Microsoft.Storage/storageAccounts/pstestsa1e5a278b\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;PSTestRG235879ba;pstestsa235879ba\",\r\n \"name\": \"StorageContainer;Storage;PSTestRG235879ba;pstestsa235879ba\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"pstestsa235879ba\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG235879ba/providers/Microsoft.Storage/storageAccounts/pstestsa235879ba\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;PSTestRG54bdf8da;pstestsa54bdf8da\",\r\n \"name\": \"StorageContainer;Storage;PSTestRG54bdf8da;pstestsa54bdf8da\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"pstestsa54bdf8da\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG54bdf8da/providers/Microsoft.Storage/storageAccounts/pstestsa54bdf8da\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;PSTestRG59e1706f;pstestsa59e1706f\",\r\n \"name\": \"StorageContainer;Storage;PSTestRG59e1706f;pstestsa59e1706f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"pstestsa59e1706f\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG59e1706f/providers/Microsoft.Storage/storageAccounts/pstestsa59e1706f\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895\",\r\n \"name\": \"StorageContainer;Storage;pstestrg8895;pstestsa8895\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"pstestsa8895\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstestsa8895\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;pstestrg8895;pstesttargetsa8895\",\r\n \"name\": \"StorageContainer;Storage;pstestrg8895;pstesttargetsa8895\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"pstesttargetsa8895\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstesttargetsa8895\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;pstestrg8895;pstesttargetsa8896\",\r\n \"name\": \"StorageContainer;Storage;pstestrg8895;pstesttargetsa8896\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"pstesttargetsa8896\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstesttargetsa8896\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;sambit_rg;sarathsa3\",\r\n \"name\": \"StorageContainer;Storage;sambit_rg;sarathsa3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"sarathsa3\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/sambit_rg/providers/Microsoft.Storage/storageAccounts/sarathsa3\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;afstests;02xseacan01otds1\",\r\n \"name\": \"StorageContainer;Storage;afstests;02xseacan01otds1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"02xseacan01otds1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/02xseacan01otds1\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;afstests;afsbackupsa\",\r\n \"name\": \"StorageContainer;Storage;afstests;afsbackupsa\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"afsbackupsa\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/afsbackupsa\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;afstests;storageysci5wbex6jyc\",\r\n \"name\": \"StorageContainer;Storage;afstests;storageysci5wbex6jyc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"storageysci5wbex6jyc\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/storageysci5wbex6jyc\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;akkanaseCMK;0byseapod01otds1\",\r\n \"name\": \"StorageContainer;Storage;akkanaseCMK;0byseapod01otds1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"0byseapod01otds1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseCMK/providers/Microsoft.Storage/storageAccounts/0byseapod01otds1\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;akkanaseGRSVault;frmseapod01otds1\",\r\n \"name\": \"StorageContainer;Storage;akkanaseGRSVault;frmseapod01otds1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"frmseapod01otds1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseGRSVault/providers/Microsoft.Storage/storageAccounts/frmseapod01otds1\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rg2z2u2iy224;clitestupktrqr622evq7uzq\",\r\n \"name\": \"StorageContainer;Storage;clitest.rg2z2u2iy224;clitestupktrqr622evq7uzq\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"clitestupktrqr622evq7uzq\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rg2z2u2iy224/providers/Microsoft.Storage/storageAccounts/clitestupktrqr622evq7uzq\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rg3szxf3a3my;clitestjcdqcd3tnqg5bhtr2\",\r\n \"name\": \"StorageContainer;Storage;clitest.rg3szxf3a3my;clitestjcdqcd3tnqg5bhtr2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"clitestjcdqcd3tnqg5bhtr2\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rg3szxf3a3my/providers/Microsoft.Storage/storageAccounts/clitestjcdqcd3tnqg5bhtr2\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rg5daabmbo3e;clitestfky4kz2v5vosldvhe\",\r\n \"name\": \"StorageContainer;Storage;clitest.rg5daabmbo3e;clitestfky4kz2v5vosldvhe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"clitestfky4kz2v5vosldvhe\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rg5daabmbo3e/providers/Microsoft.Storage/storageAccounts/clitestfky4kz2v5vosldvhe\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rg7leptekwovuif35xu6k3mb6lhszl4fkmod7jkg7yckt4v7epruxvjo6ty2hzsurwh;clitest3cgxtcwowikxqlds4\",\r\n \"name\": \"StorageContainer;Storage;clitest.rg7leptekwovuif35xu6k3mb6lhszl4fkmod7jkg7yckt4v7epruxvjo6ty2hzsurwh;clitest3cgxtcwowikxqlds4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"clitest3cgxtcwowikxqlds4\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rg7leptekwovuif35xu6k3mb6lhszl4fkmod7jkg7yckt4v7epruxvjo6ty2hzsurwh/providers/Microsoft.Storage/storageAccounts/clitest3cgxtcwowikxqlds4\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgbwwuivauc5;clitesttmyfbjqgepkrqhedt\",\r\n \"name\": \"StorageContainer;Storage;clitest.rgbwwuivauc5;clitesttmyfbjqgepkrqhedt\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"clitesttmyfbjqgepkrqhedt\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rgbwwuivauc5/providers/Microsoft.Storage/storageAccounts/clitesttmyfbjqgepkrqhedt\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgf6xl2fxqfv;clitestophphng5ygnzbvq3a\",\r\n \"name\": \"StorageContainer;Storage;clitest.rgf6xl2fxqfv;clitestophphng5ygnzbvq3a\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"clitestophphng5ygnzbvq3a\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rgf6xl2fxqfv/providers/Microsoft.Storage/storageAccounts/clitestophphng5ygnzbvq3a\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rglgudxl7bi5;clitestvv2va5tikpqjvoq6o\",\r\n \"name\": \"StorageContainer;Storage;clitest.rglgudxl7bi5;clitestvv2va5tikpqjvoq6o\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"clitestvv2va5tikpqjvoq6o\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rglgudxl7bi5/providers/Microsoft.Storage/storageAccounts/clitestvv2va5tikpqjvoq6o\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rglx72s62qimgelno2o6rr34a5ovdikhzq5k6dc7773qrbodtnrdcguic5hpiciscne;clitestva4qmim2g5c3cb2tz\",\r\n \"name\": \"StorageContainer;Storage;clitest.rglx72s62qimgelno2o6rr34a5ovdikhzq5k6dc7773qrbodtnrdcguic5hpiciscne;clitestva4qmim2g5c3cb2tz\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"clitestva4qmim2g5c3cb2tz\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rglx72s62qimgelno2o6rr34a5ovdikhzq5k6dc7773qrbodtnrdcguic5hpiciscne/providers/Microsoft.Storage/storageAccounts/clitestva4qmim2g5c3cb2tz\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgm7e2kiyzoto4iaicwwkdomftb7zki5kh2xxwh6yyskpflgsrpkrygkpwpdcltggyb;clitest7gyg4gqt4sxirqdkc\",\r\n \"name\": \"StorageContainer;Storage;clitest.rgm7e2kiyzoto4iaicwwkdomftb7zki5kh2xxwh6yyskpflgsrpkrygkpwpdcltggyb;clitest7gyg4gqt4sxirqdkc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"clitest7gyg4gqt4sxirqdkc\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rgm7e2kiyzoto4iaicwwkdomftb7zki5kh2xxwh6yyskpflgsrpkrygkpwpdcltggyb/providers/Microsoft.Storage/storageAccounts/clitest7gyg4gqt4sxirqdkc\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgqhfzt7fh5x;clitestz6nwne7j34dloacko\",\r\n \"name\": \"StorageContainer;Storage;clitest.rgqhfzt7fh5x;clitestz6nwne7j34dloacko\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"clitestz6nwne7j34dloacko\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rgqhfzt7fh5x/providers/Microsoft.Storage/storageAccounts/clitestz6nwne7j34dloacko\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgwsn3drxg3s;clitestukj4en4puxeag7shu\",\r\n \"name\": \"StorageContainer;Storage;clitest.rgwsn3drxg3s;clitestukj4en4puxeag7shu\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"clitestukj4en4puxeag7shu\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rgwsn3drxg3s/providers/Microsoft.Storage/storageAccounts/clitestukj4en4puxeag7shu\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgwsn3drxg3s;clitestw7rgjg33mzx6cc3su\",\r\n \"name\": \"StorageContainer;Storage;clitest.rgwsn3drxg3s;clitestw7rgjg33mzx6cc3su\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"clitestw7rgjg33mzx6cc3su\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rgwsn3drxg3s/providers/Microsoft.Storage/storageAccounts/clitestw7rgjg33mzx6cc3su\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;cmk.system;cmkautomationstore\",\r\n \"name\": \"StorageContainer;Storage;cmk.system;cmkautomationstore\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"cmkautomationstore\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/cmk.system/providers/Microsoft.Storage/storageAccounts/cmkautomationstore\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;disk-bvt-test-rg;hv3seapod01otds1\",\r\n \"name\": \"StorageContainer;Storage;disk-bvt-test-rg;hv3seapod01otds1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"hv3seapod01otds1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/disk-bvt-test-rg/providers/Microsoft.Storage/storageAccounts/hv3seapod01otds1\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;DoNotUse-OSS-BVT-SEA-RG;dontuseossrestoreasfile\",\r\n \"name\": \"StorageContainer;Storage;DoNotUse-OSS-BVT-SEA-RG;dontuseossrestoreasfile\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"dontuseossrestoreasfile\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/DoNotUse-OSS-BVT-SEA-RG/providers/Microsoft.Storage/storageAccounts/dontuseossrestoreasfile\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;iaasvm.encryptedvm;iaasvmencryptedvmdiag170\",\r\n \"name\": \"StorageContainer;Storage;iaasvm.encryptedvm;iaasvmencryptedvmdiag170\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"iaasvmencryptedvmdiag170\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.encryptedvm/providers/Microsoft.Storage/storageAccounts/iaasvmencryptedvmdiag170\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;iaasvm.existing;iaasextstore1\",\r\n \"name\": \"StorageContainer;Storage;iaasvm.existing;iaasextstore1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"iaasextstore1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.existing/providers/Microsoft.Storage/storageAccounts/iaasextstore1\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;iaasvm.new;iaasvmnewdiag1\",\r\n \"name\": \"StorageContainer;Storage;iaasvm.new;iaasvmnewdiag1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"iaasvmnewdiag1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.new/providers/Microsoft.Storage/storageAccounts/iaasvmnewdiag1\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;iaasvmhanaworkload.existing;iaasvmhanaworkloadexisti\",\r\n \"name\": \"StorageContainer;Storage;iaasvmhanaworkload.existing;iaasvmhanaworkloadexisti\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"iaasvmhanaworkloadexisti\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvmhanaworkload.existing/providers/Microsoft.Storage/storageAccounts/iaasvmhanaworkloadexisti\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;pscloudtestrg;pscloudtestrgdiag\",\r\n \"name\": \"StorageContainer;Storage;pscloudtestrg;pscloudtestrgdiag\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"pscloudtestrgdiag\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pscloudtestrg/providers/Microsoft.Storage/storageAccounts/pscloudtestrgdiag\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;PSTestRG1e5a278b;pstestsa1e5a278b\",\r\n \"name\": \"StorageContainer;Storage;PSTestRG1e5a278b;pstestsa1e5a278b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"pstestsa1e5a278b\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG1e5a278b/providers/Microsoft.Storage/storageAccounts/pstestsa1e5a278b\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;PSTestRG235879ba;pstestsa235879ba\",\r\n \"name\": \"StorageContainer;Storage;PSTestRG235879ba;pstestsa235879ba\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"pstestsa235879ba\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG235879ba/providers/Microsoft.Storage/storageAccounts/pstestsa235879ba\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;PSTestRG54bdf8da;pstestsa54bdf8da\",\r\n \"name\": \"StorageContainer;Storage;PSTestRG54bdf8da;pstestsa54bdf8da\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"pstestsa54bdf8da\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG54bdf8da/providers/Microsoft.Storage/storageAccounts/pstestsa54bdf8da\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;PSTestRG59e1706f;pstestsa59e1706f\",\r\n \"name\": \"StorageContainer;Storage;PSTestRG59e1706f;pstestsa59e1706f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"pstestsa59e1706f\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG59e1706f/providers/Microsoft.Storage/storageAccounts/pstestsa59e1706f\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895\",\r\n \"name\": \"StorageContainer;Storage;pstestrg8895;pstestsa8895\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"pstestsa8895\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstestsa8895\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;pstestrg8895;pstesttargetsa8895\",\r\n \"name\": \"StorageContainer;Storage;pstestrg8895;pstesttargetsa8895\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"pstesttargetsa8895\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstesttargetsa8895\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;pstestrg8895;pstesttargetsa8896\",\r\n \"name\": \"StorageContainer;Storage;pstestrg8895;pstesttargetsa8896\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"pstesttargetsa8896\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstesttargetsa8896\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;sambit_rg;sarathsa3\",\r\n \"name\": \"StorageContainer;Storage;sambit_rg;sarathsa3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"sarathsa3\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/sambit_rg/providers/Microsoft.Storage/storageAccounts/sarathsa3\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NT9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"containerType\": \"StorageContainer\",\r\n \"sourceResourceId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstestsa8895\",\r\n \"resourceGroup\": \"pstestrg8895\",\r\n \"friendlyName\": \"pstestsa8895\",\r\n \"backupManagementType\": \"AzureStorage\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "8759066b-eca1-45a9-81d6-201da03960ad" + "c49e88a3-878d-4510-b22d-0afe8d278cdf" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -519,23 +519,23 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationResults/349bd6e0-1b5c-4fa5-b757-40ef87902621?api-version=2021-12-01" + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationResults/979e0785-e10f-45b8-b3e7-a0f2b12eb596?api-version=2022-02-01" ], "Retry-After": [ "60" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationsStatus/349bd6e0-1b5c-4fa5-b757-40ef87902621?api-version=2019-05-13-preview" + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationsStatus/979e0785-e10f-45b8-b3e7-a0f2b12eb596?api-version=2019-05-13-preview" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "550256ed-dd2d-4f6b-a253-d7b23167b921" + "5059b37e-78c4-44d6-970c-9ff4b946677a" ], "x-ms-client-request-id": [ - "8759066b-eca1-45a9-81d6-201da03960ad", - "8759066b-eca1-45a9-81d6-201da03960ad" + "c49e88a3-878d-4510-b22d-0afe8d278cdf", + "c49e88a3-878d-4510-b22d-0afe8d278cdf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -550,13 +550,13 @@ "1199" ], "x-ms-correlation-request-id": [ - "550256ed-dd2d-4f6b-a253-d7b23167b921" + "5059b37e-78c4-44d6-970c-9ff4b946677a" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T114244Z:550256ed-dd2d-4f6b-a253-d7b23167b921" + "WESTINDIA:20220516T170840Z:5059b37e-78c4-44d6-970c-9ff4b946677a" ], "Date": [ - "Sat, 26 Mar 2022 11:42:44 GMT" + "Mon, 16 May 2022 17:08:39 GMT" ], "Content-Length": [ "2" @@ -572,22 +572,22 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895/operationResults/349bd6e0-1b5c-4fa5-b757-40ef87902621?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9vcGVyYXRpb25SZXN1bHRzLzM0OWJkNmUwLTFiNWMtNGZhNS1iNzU3LTQwZWY4NzkwMjYyMT9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895/operationResults/979e0785-e10f-45b8-b3e7-a0f2b12eb596?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9vcGVyYXRpb25SZXN1bHRzLzk3OWUwNzg1LWUxMGYtNDViOC1iM2U3LWEwZjJiMTJlYjU5Nj9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8759066b-eca1-45a9-81d6-201da03960ad" + "c49e88a3-878d-4510-b22d-0afe8d278cdf" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -598,23 +598,23 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationResults/349bd6e0-1b5c-4fa5-b757-40ef87902621?api-version=2021-12-01" + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationResults/979e0785-e10f-45b8-b3e7-a0f2b12eb596?api-version=2022-02-01" ], "Retry-After": [ "60" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationsStatus/349bd6e0-1b5c-4fa5-b757-40ef87902621?api-version=2019-05-13-preview" + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationsStatus/979e0785-e10f-45b8-b3e7-a0f2b12eb596?api-version=2019-05-13-preview" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "4e0fd77e-0d5a-4f77-b9cd-fac226a38be6" + "60445e5b-436e-47bc-8010-310c4c089e05" ], "x-ms-client-request-id": [ - "8759066b-eca1-45a9-81d6-201da03960ad", - "8759066b-eca1-45a9-81d6-201da03960ad" + "c49e88a3-878d-4510-b22d-0afe8d278cdf", + "c49e88a3-878d-4510-b22d-0afe8d278cdf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -629,13 +629,13 @@ "299" ], "x-ms-correlation-request-id": [ - "4e0fd77e-0d5a-4f77-b9cd-fac226a38be6" + "60445e5b-436e-47bc-8010-310c4c089e05" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T114245Z:4e0fd77e-0d5a-4f77-b9cd-fac226a38be6" + "WESTINDIA:20220516T170840Z:60445e5b-436e-47bc-8010-310c4c089e05" ], "Date": [ - "Sat, 26 Mar 2022 11:42:44 GMT" + "Mon, 16 May 2022 17:08:40 GMT" ], "Content-Length": [ "2" @@ -651,22 +651,22 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895/operationResults/349bd6e0-1b5c-4fa5-b757-40ef87902621?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9vcGVyYXRpb25SZXN1bHRzLzM0OWJkNmUwLTFiNWMtNGZhNS1iNzU3LTQwZWY4NzkwMjYyMT9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895/operationResults/979e0785-e10f-45b8-b3e7-a0f2b12eb596?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9vcGVyYXRpb25SZXN1bHRzLzk3OWUwNzg1LWUxMGYtNDViOC1iM2U3LWEwZjJiMTJlYjU5Nj9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8759066b-eca1-45a9-81d6-201da03960ad" + "c49e88a3-878d-4510-b22d-0afe8d278cdf" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -677,23 +677,23 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationResults/349bd6e0-1b5c-4fa5-b757-40ef87902621?api-version=2021-12-01" + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationResults/979e0785-e10f-45b8-b3e7-a0f2b12eb596?api-version=2022-02-01" ], "Retry-After": [ "60" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationsStatus/349bd6e0-1b5c-4fa5-b757-40ef87902621?api-version=2019-05-13-preview" + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationsStatus/979e0785-e10f-45b8-b3e7-a0f2b12eb596?api-version=2019-05-13-preview" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "866c7675-91d0-4a94-81cc-1292fa91d2e3" + "d4c261de-82ce-40f6-b780-af80daa63982" ], "x-ms-client-request-id": [ - "8759066b-eca1-45a9-81d6-201da03960ad", - "8759066b-eca1-45a9-81d6-201da03960ad" + "c49e88a3-878d-4510-b22d-0afe8d278cdf", + "c49e88a3-878d-4510-b22d-0afe8d278cdf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -708,13 +708,13 @@ "298" ], "x-ms-correlation-request-id": [ - "866c7675-91d0-4a94-81cc-1292fa91d2e3" + "d4c261de-82ce-40f6-b780-af80daa63982" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T114255Z:866c7675-91d0-4a94-81cc-1292fa91d2e3" + "WESTINDIA:20220516T170846Z:d4c261de-82ce-40f6-b780-af80daa63982" ], "Date": [ - "Sat, 26 Mar 2022 11:42:55 GMT" + "Mon, 16 May 2022 17:08:45 GMT" ], "Content-Length": [ "2" @@ -730,22 +730,22 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895/operationResults/349bd6e0-1b5c-4fa5-b757-40ef87902621?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9vcGVyYXRpb25SZXN1bHRzLzM0OWJkNmUwLTFiNWMtNGZhNS1iNzU3LTQwZWY4NzkwMjYyMT9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895/operationResults/979e0785-e10f-45b8-b3e7-a0f2b12eb596?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9vcGVyYXRpb25SZXN1bHRzLzk3OWUwNzg1LWUxMGYtNDViOC1iM2U3LWEwZjJiMTJlYjU5Nj9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8759066b-eca1-45a9-81d6-201da03960ad" + "c49e88a3-878d-4510-b22d-0afe8d278cdf" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -756,23 +756,23 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationResults/349bd6e0-1b5c-4fa5-b757-40ef87902621?api-version=2021-12-01" + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationResults/979e0785-e10f-45b8-b3e7-a0f2b12eb596?api-version=2022-02-01" ], "Retry-After": [ "60" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationsStatus/349bd6e0-1b5c-4fa5-b757-40ef87902621?api-version=2019-05-13-preview" + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationsStatus/979e0785-e10f-45b8-b3e7-a0f2b12eb596?api-version=2019-05-13-preview" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "5594cbef-d809-4a52-b261-454ace9d13ac" + "ffb587df-af29-4603-8165-49cc323e9897" ], "x-ms-client-request-id": [ - "8759066b-eca1-45a9-81d6-201da03960ad", - "8759066b-eca1-45a9-81d6-201da03960ad" + "c49e88a3-878d-4510-b22d-0afe8d278cdf", + "c49e88a3-878d-4510-b22d-0afe8d278cdf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -787,13 +787,13 @@ "297" ], "x-ms-correlation-request-id": [ - "5594cbef-d809-4a52-b261-454ace9d13ac" + "ffb587df-af29-4603-8165-49cc323e9897" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T114306Z:5594cbef-d809-4a52-b261-454ace9d13ac" + "WESTINDIA:20220516T170851Z:ffb587df-af29-4603-8165-49cc323e9897" ], "Date": [ - "Sat, 26 Mar 2022 11:43:05 GMT" + "Mon, 16 May 2022 17:08:51 GMT" ], "Content-Length": [ "2" @@ -809,22 +809,22 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895/operationResults/349bd6e0-1b5c-4fa5-b757-40ef87902621?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9vcGVyYXRpb25SZXN1bHRzLzM0OWJkNmUwLTFiNWMtNGZhNS1iNzU3LTQwZWY4NzkwMjYyMT9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895/operationResults/979e0785-e10f-45b8-b3e7-a0f2b12eb596?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9vcGVyYXRpb25SZXN1bHRzLzk3OWUwNzg1LWUxMGYtNDViOC1iM2U3LWEwZjJiMTJlYjU5Nj9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8759066b-eca1-45a9-81d6-201da03960ad" + "c49e88a3-878d-4510-b22d-0afe8d278cdf" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -834,15 +834,24 @@ "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationResults/979e0785-e10f-45b8-b3e7-a0f2b12eb596?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationsStatus/979e0785-e10f-45b8-b3e7-a0f2b12eb596?api-version=2019-05-13-preview" + ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "93fc6896-4671-4d50-bd2d-7914d1095ab1" + "7dae9367-0dab-47cd-814d-7a67bc88fe72" ], "x-ms-client-request-id": [ - "8759066b-eca1-45a9-81d6-201da03960ad", - "8759066b-eca1-45a9-81d6-201da03960ad" + "c49e88a3-878d-4510-b22d-0afe8d278cdf", + "c49e88a3-878d-4510-b22d-0afe8d278cdf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -857,16 +866,16 @@ "296" ], "x-ms-correlation-request-id": [ - "93fc6896-4671-4d50-bd2d-7914d1095ab1" + "7dae9367-0dab-47cd-814d-7a67bc88fe72" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T114316Z:93fc6896-4671-4d50-bd2d-7914d1095ab1" + "WESTINDIA:20220516T170857Z:7dae9367-0dab-47cd-814d-7a67bc88fe72" ], "Date": [ - "Sat, 26 Mar 2022 11:43:15 GMT" + "Mon, 16 May 2022 17:08:57 GMT" ], "Content-Length": [ - "737" + "2" ], "Content-Type": [ "application/json" @@ -875,26 +884,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895\",\r\n \"name\": \"StorageContainer;Storage;pstestrg8895;pstestsa8895\",\r\n \"properties\": {\r\n \"sourceResourceId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstestsa8895\",\r\n \"protectedItemCount\": 0,\r\n \"acquireStorageAccountLock\": \"Acquire\",\r\n \"friendlyName\": \"pstestsa8895\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"registrationStatus\": \"Registered\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerType\": \"StorageContainer\",\r\n \"protectableObjectType\": \"StorageContainer\"\r\n }\r\n}", - "StatusCode": 200 + "ResponseBody": "{}", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895/operationResults/349bd6e0-1b5c-4fa5-b757-40ef87902621?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9vcGVyYXRpb25SZXN1bHRzLzM0OWJkNmUwLTFiNWMtNGZhNS1iNzU3LTQwZWY4NzkwMjYyMT9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895/operationResults/979e0785-e10f-45b8-b3e7-a0f2b12eb596?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9vcGVyYXRpb25SZXN1bHRzLzk3OWUwNzg1LWUxMGYtNDViOC1iM2U3LWEwZjJiMTJlYjU5Nj9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8759066b-eca1-45a9-81d6-201da03960ad" + "c49e88a3-878d-4510-b22d-0afe8d278cdf" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -904,15 +913,24 @@ "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationResults/979e0785-e10f-45b8-b3e7-a0f2b12eb596?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationsStatus/979e0785-e10f-45b8-b3e7-a0f2b12eb596?api-version=2019-05-13-preview" + ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "d5a1f767-41c1-496f-a68c-6bc6a64af707" + "8ef059e6-7c14-4024-b30f-cdf67afb8409" ], "x-ms-client-request-id": [ - "8759066b-eca1-45a9-81d6-201da03960ad", - "8759066b-eca1-45a9-81d6-201da03960ad" + "c49e88a3-878d-4510-b22d-0afe8d278cdf", + "c49e88a3-878d-4510-b22d-0afe8d278cdf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -927,16 +945,16 @@ "295" ], "x-ms-correlation-request-id": [ - "d5a1f767-41c1-496f-a68c-6bc6a64af707" + "8ef059e6-7c14-4024-b30f-cdf67afb8409" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T114316Z:d5a1f767-41c1-496f-a68c-6bc6a64af707" + "WESTINDIA:20220516T170903Z:8ef059e6-7c14-4024-b30f-cdf67afb8409" ], "Date": [ - "Sat, 26 Mar 2022 11:43:16 GMT" + "Mon, 16 May 2022 17:09:02 GMT" ], "Content-Length": [ - "737" + "2" ], "Content-Type": [ "application/json" @@ -945,26 +963,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895\",\r\n \"name\": \"StorageContainer;Storage;pstestrg8895;pstestsa8895\",\r\n \"properties\": {\r\n \"sourceResourceId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstestsa8895\",\r\n \"protectedItemCount\": 0,\r\n \"acquireStorageAccountLock\": \"Acquire\",\r\n \"friendlyName\": \"pstestsa8895\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"registrationStatus\": \"Registered\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerType\": \"StorageContainer\",\r\n \"protectableObjectType\": \"StorageContainer\"\r\n }\r\n}", - "StatusCode": 200 + "ResponseBody": "{}", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupProtectableItems?$filter=backupManagementType%20eq%20'AzureStorage'&api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwUHJvdGVjdGFibGVJdGVtcz8kZmlsdGVyPWJhY2t1cE1hbmFnZW1lbnRUeXBlJTIwZXElMjAnQXp1cmVTdG9yYWdlJyZhcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895/operationResults/979e0785-e10f-45b8-b3e7-a0f2b12eb596?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9vcGVyYXRpb25SZXN1bHRzLzk3OWUwNzg1LWUxMGYtNDViOC1iM2U3LWEwZjJiMTJlYjU5Nj9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8759066b-eca1-45a9-81d6-201da03960ad" + "c49e88a3-878d-4510-b22d-0afe8d278cdf" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -974,15 +992,24 @@ "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationResults/979e0785-e10f-45b8-b3e7-a0f2b12eb596?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationsStatus/979e0785-e10f-45b8-b3e7-a0f2b12eb596?api-version=2019-05-13-preview" + ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "efd93659-0a38-45f1-84fe-42540f7dc3b4" + "35a3ac20-6a15-4ea3-b47a-63559bc0964b" ], "x-ms-client-request-id": [ - "8759066b-eca1-45a9-81d6-201da03960ad", - "8759066b-eca1-45a9-81d6-201da03960ad" + "c49e88a3-878d-4510-b22d-0afe8d278cdf", + "c49e88a3-878d-4510-b22d-0afe8d278cdf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -994,19 +1021,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "299" + "294" ], "x-ms-correlation-request-id": [ - "efd93659-0a38-45f1-84fe-42540f7dc3b4" + "35a3ac20-6a15-4ea3-b47a-63559bc0964b" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T114317Z:efd93659-0a38-45f1-84fe-42540f7dc3b4" + "WESTINDIA:20220516T170908Z:35a3ac20-6a15-4ea3-b47a-63559bc0964b" ], "Date": [ - "Sat, 26 Mar 2022 11:43:16 GMT" + "Mon, 16 May 2022 17:09:08 GMT" ], "Content-Length": [ - "947" + "2" ], "Content-Type": [ "application/json" @@ -1015,32 +1042,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/storagecontainer;storage;pstestrg8895;pstestsa8895/protectableItems/azurefileshare;698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959\",\r\n \"name\": \"azurefileshare;698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems\",\r\n \"properties\": {\r\n \"parentContainerFabricId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstestsa8895\",\r\n \"parentContainerFriendlyName\": \"pstestsa8895\",\r\n \"azureFileShareType\": \"XSMB\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"workloadType\": \"AzureFileShare\",\r\n \"protectableItemType\": \"AzureFileShare\",\r\n \"friendlyName\": \"fs1\",\r\n \"protectionState\": \"NotProtected\"\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 + "ResponseBody": "{}", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/storagecontainer%3Bstorage%3Bpstestrg8895%3Bpstestsa8895/protectedItems/azurefileshare%3B698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9zdG9yYWdlY29udGFpbmVyJTNCc3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9wcm90ZWN0ZWRJdGVtcy9henVyZWZpbGVzaGFyZSUzQjY5OGRmNTk1OTQ4ZTIzNTVmMmJiNzQ0YTQxY2YyNDVkNGJhMTI1NWQ5Njk5Y2MzYzJhZDFmNTA0NWUxNzc5NTk/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"protectedItemType\": \"AzureFileShareProtectedItem\",\r\n \"sourceResourceId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstestsa8895\",\r\n \"policyId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupPolicies/afspolicy1\"\r\n }\r\n}", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895/operationResults/979e0785-e10f-45b8-b3e7-a0f2b12eb596?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9vcGVyYXRpb25SZXN1bHRzLzk3OWUwNzg1LWUxMGYtNDViOC1iM2U3LWEwZjJiMTJlYjU5Nj9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8759066b-eca1-45a9-81d6-201da03960ad" + "c49e88a3-878d-4510-b22d-0afe8d278cdf" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "433" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -1051,69 +1072,75 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/storagecontainer;storage;pstestrg8895;pstestsa8895/protectedItems/azurefileshare;698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959/operationResults/9b1690a6-3625-4628-9a60-28816892b133?api-version=2021-12-01" + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationResults/979e0785-e10f-45b8-b3e7-a0f2b12eb596?api-version=2022-02-01" ], "Retry-After": [ "60" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/storagecontainer;storage;pstestrg8895;pstestsa8895/protectedItems/azurefileshare;698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959/operationsStatus/9b1690a6-3625-4628-9a60-28816892b133?api-version=2021-12-01" + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationsStatus/979e0785-e10f-45b8-b3e7-a0f2b12eb596?api-version=2019-05-13-preview" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "b33995be-2443-44fe-b58a-8d8f23e98507" + "ea3fcaf9-cb30-44f3-b7b8-9540171520a9" ], "x-ms-client-request-id": [ - "8759066b-eca1-45a9-81d6-201da03960ad", - "8759066b-eca1-45a9-81d6-201da03960ad" + "c49e88a3-878d-4510-b22d-0afe8d278cdf", + "c49e88a3-878d-4510-b22d-0afe8d278cdf" ], "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-ratelimit-remaining-subscription-resource-requests": [ + "293" ], "x-ms-correlation-request-id": [ - "b33995be-2443-44fe-b58a-8d8f23e98507" + "ea3fcaf9-cb30-44f3-b7b8-9540171520a9" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T114318Z:b33995be-2443-44fe-b58a-8d8f23e98507" + "WESTINDIA:20220516T170913Z:ea3fcaf9-cb30-44f3-b7b8-9540171520a9" ], "Date": [ - "Sat, 26 Mar 2022 11:43:17 GMT" + "Mon, 16 May 2022 17:09:13 GMT" + ], + "Content-Length": [ + "2" + ], + "Content-Type": [ + "application/json" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, - "ResponseBody": "", + "ResponseBody": "{}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/9b1690a6-3625-4628-9a60-28816892b133?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy85YjE2OTBhNi0zNjI1LTQ2MjgtOWE2MC0yODgxNjg5MmIxMzM/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895/operationResults/979e0785-e10f-45b8-b3e7-a0f2b12eb596?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9vcGVyYXRpb25SZXN1bHRzLzk3OWUwNzg1LWUxMGYtNDViOC1iM2U3LWEwZjJiMTJlYjU5Nj9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8759066b-eca1-45a9-81d6-201da03960ad" + "c49e88a3-878d-4510-b22d-0afe8d278cdf" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -1123,15 +1150,24 @@ "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationResults/979e0785-e10f-45b8-b3e7-a0f2b12eb596?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationsStatus/979e0785-e10f-45b8-b3e7-a0f2b12eb596?api-version=2019-05-13-preview" + ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "2c48f4f1-b325-45d5-acbc-1c2fe839b5c9" + "deb5a8dc-67fc-4fdd-b553-85368f51ab19" ], "x-ms-client-request-id": [ - "8759066b-eca1-45a9-81d6-201da03960ad", - "8759066b-eca1-45a9-81d6-201da03960ad" + "c49e88a3-878d-4510-b22d-0afe8d278cdf", + "c49e88a3-878d-4510-b22d-0afe8d278cdf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1143,19 +1179,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "299" + "292" ], "x-ms-correlation-request-id": [ - "2c48f4f1-b325-45d5-acbc-1c2fe839b5c9" + "deb5a8dc-67fc-4fdd-b553-85368f51ab19" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T114318Z:2c48f4f1-b325-45d5-acbc-1c2fe839b5c9" + "WESTINDIA:20220516T170919Z:deb5a8dc-67fc-4fdd-b553-85368f51ab19" ], "Date": [ - "Sat, 26 Mar 2022 11:43:17 GMT" + "Mon, 16 May 2022 17:09:18 GMT" ], "Content-Length": [ - "188" + "2" ], "Content-Type": [ "application/json" @@ -1164,26 +1200,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"9b1690a6-3625-4628-9a60-28816892b133\",\r\n \"name\": \"9b1690a6-3625-4628-9a60-28816892b133\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-03-26T11:43:17.9872298Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", - "StatusCode": 200 + "ResponseBody": "{}", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/9b1690a6-3625-4628-9a60-28816892b133?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy85YjE2OTBhNi0zNjI1LTQ2MjgtOWE2MC0yODgxNjg5MmIxMzM/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895/operationResults/979e0785-e10f-45b8-b3e7-a0f2b12eb596?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9vcGVyYXRpb25SZXN1bHRzLzk3OWUwNzg1LWUxMGYtNDViOC1iM2U3LWEwZjJiMTJlYjU5Nj9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8759066b-eca1-45a9-81d6-201da03960ad" + "c49e88a3-878d-4510-b22d-0afe8d278cdf" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -1197,11 +1233,11 @@ "nosniff" ], "x-ms-request-id": [ - "3cfa3380-4972-4408-834a-980f56549f9c" + "b1c3382c-fe55-4132-b49b-1fcb4c6b3468" ], "x-ms-client-request-id": [ - "8759066b-eca1-45a9-81d6-201da03960ad", - "8759066b-eca1-45a9-81d6-201da03960ad" + "c49e88a3-878d-4510-b22d-0afe8d278cdf", + "c49e88a3-878d-4510-b22d-0afe8d278cdf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1213,19 +1249,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "298" + "291" ], "x-ms-correlation-request-id": [ - "3cfa3380-4972-4408-834a-980f56549f9c" + "b1c3382c-fe55-4132-b49b-1fcb4c6b3468" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T114328Z:3cfa3380-4972-4408-834a-980f56549f9c" + "WESTINDIA:20220516T170924Z:b1c3382c-fe55-4132-b49b-1fcb4c6b3468" ], "Date": [ - "Sat, 26 Mar 2022 11:43:28 GMT" + "Mon, 16 May 2022 17:09:24 GMT" ], "Content-Length": [ - "188" + "737" ], "Content-Type": [ "application/json" @@ -1234,26 +1270,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"9b1690a6-3625-4628-9a60-28816892b133\",\r\n \"name\": \"9b1690a6-3625-4628-9a60-28816892b133\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-03-26T11:43:17.9872298Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895\",\r\n \"name\": \"StorageContainer;Storage;pstestrg8895;pstestsa8895\",\r\n \"properties\": {\r\n \"sourceResourceId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstestsa8895\",\r\n \"protectedItemCount\": 0,\r\n \"acquireStorageAccountLock\": \"Acquire\",\r\n \"friendlyName\": \"pstestsa8895\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"registrationStatus\": \"Registered\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerType\": \"StorageContainer\",\r\n \"protectableObjectType\": \"StorageContainer\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/9b1690a6-3625-4628-9a60-28816892b133?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy85YjE2OTBhNi0zNjI1LTQ2MjgtOWE2MC0yODgxNjg5MmIxMzM/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895/operationResults/979e0785-e10f-45b8-b3e7-a0f2b12eb596?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9vcGVyYXRpb25SZXN1bHRzLzk3OWUwNzg1LWUxMGYtNDViOC1iM2U3LWEwZjJiMTJlYjU5Nj9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8759066b-eca1-45a9-81d6-201da03960ad" + "c49e88a3-878d-4510-b22d-0afe8d278cdf" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -1267,11 +1303,11 @@ "nosniff" ], "x-ms-request-id": [ - "af723b0e-fb31-4105-813a-3c875c1502ce" + "d109e91c-05cc-4eb1-9d7b-08cb73079dc6" ], "x-ms-client-request-id": [ - "8759066b-eca1-45a9-81d6-201da03960ad", - "8759066b-eca1-45a9-81d6-201da03960ad" + "c49e88a3-878d-4510-b22d-0afe8d278cdf", + "c49e88a3-878d-4510-b22d-0afe8d278cdf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1283,19 +1319,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "297" + "290" ], "x-ms-correlation-request-id": [ - "af723b0e-fb31-4105-813a-3c875c1502ce" + "d109e91c-05cc-4eb1-9d7b-08cb73079dc6" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T114339Z:af723b0e-fb31-4105-813a-3c875c1502ce" + "WESTINDIA:20220516T170925Z:d109e91c-05cc-4eb1-9d7b-08cb73079dc6" ], "Date": [ - "Sat, 26 Mar 2022 11:43:38 GMT" + "Mon, 16 May 2022 17:09:24 GMT" ], "Content-Length": [ - "188" + "737" ], "Content-Type": [ "application/json" @@ -1304,26 +1340,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"9b1690a6-3625-4628-9a60-28816892b133\",\r\n \"name\": \"9b1690a6-3625-4628-9a60-28816892b133\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-03-26T11:43:17.9872298Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895\",\r\n \"name\": \"StorageContainer;Storage;pstestrg8895;pstestsa8895\",\r\n \"properties\": {\r\n \"sourceResourceId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstestsa8895\",\r\n \"protectedItemCount\": 0,\r\n \"acquireStorageAccountLock\": \"Acquire\",\r\n \"friendlyName\": \"pstestsa8895\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"registrationStatus\": \"Registered\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerType\": \"StorageContainer\",\r\n \"protectableObjectType\": \"StorageContainer\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/9b1690a6-3625-4628-9a60-28816892b133?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy85YjE2OTBhNi0zNjI1LTQ2MjgtOWE2MC0yODgxNjg5MmIxMzM/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupProtectableItems?$filter=backupManagementType%20eq%20'AzureStorage'&api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwUHJvdGVjdGFibGVJdGVtcz8kZmlsdGVyPWJhY2t1cE1hbmFnZW1lbnRUeXBlJTIwZXElMjAnQXp1cmVTdG9yYWdlJyZhcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8759066b-eca1-45a9-81d6-201da03960ad" + "c49e88a3-878d-4510-b22d-0afe8d278cdf" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -1337,11 +1373,11 @@ "nosniff" ], "x-ms-request-id": [ - "78d00574-595b-4d35-9edc-87a9a7c166dc" + "13567a6a-def0-49a5-9859-2e315227179d" ], "x-ms-client-request-id": [ - "8759066b-eca1-45a9-81d6-201da03960ad", - "8759066b-eca1-45a9-81d6-201da03960ad" + "c49e88a3-878d-4510-b22d-0afe8d278cdf", + "c49e88a3-878d-4510-b22d-0afe8d278cdf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1353,19 +1389,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "296" + "299" ], "x-ms-correlation-request-id": [ - "78d00574-595b-4d35-9edc-87a9a7c166dc" + "13567a6a-def0-49a5-9859-2e315227179d" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T114349Z:78d00574-595b-4d35-9edc-87a9a7c166dc" + "WESTINDIA:20220516T170925Z:13567a6a-def0-49a5-9859-2e315227179d" ], "Date": [ - "Sat, 26 Mar 2022 11:43:48 GMT" + "Mon, 16 May 2022 17:09:25 GMT" ], "Content-Length": [ - "188" + "947" ], "Content-Type": [ "application/json" @@ -1374,26 +1410,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"9b1690a6-3625-4628-9a60-28816892b133\",\r\n \"name\": \"9b1690a6-3625-4628-9a60-28816892b133\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-03-26T11:43:17.9872298Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/storagecontainer;storage;pstestrg8895;pstestsa8895/protectableItems/azurefileshare;698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959\",\r\n \"name\": \"azurefileshare;698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems\",\r\n \"properties\": {\r\n \"parentContainerFabricId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstestsa8895\",\r\n \"parentContainerFriendlyName\": \"pstestsa8895\",\r\n \"azureFileShareType\": \"XSMB\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"workloadType\": \"AzureFileShare\",\r\n \"protectableItemType\": \"AzureFileShare\",\r\n \"friendlyName\": \"fs1\",\r\n \"protectionState\": \"NotProtected\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/9b1690a6-3625-4628-9a60-28816892b133?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy85YjE2OTBhNi0zNjI1LTQ2MjgtOWE2MC0yODgxNjg5MmIxMzM/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/storagecontainer%3Bstorage%3Bpstestrg8895%3Bpstestsa8895/protectedItems/azurefileshare%3B698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9zdG9yYWdlY29udGFpbmVyJTNCc3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9wcm90ZWN0ZWRJdGVtcy9henVyZWZpbGVzaGFyZSUzQjY5OGRmNTk1OTQ4ZTIzNTVmMmJiNzQ0YTQxY2YyNDVkNGJhMTI1NWQ5Njk5Y2MzYzJhZDFmNTA0NWUxNzc5NTk/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"protectedItemType\": \"AzureFileShareProtectedItem\",\r\n \"sourceResourceId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstestsa8895\",\r\n \"policyId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupPolicies/afspolicy1\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "8759066b-eca1-45a9-81d6-201da03960ad" + "c49e88a3-878d-4510-b22d-0afe8d278cdf" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "433" ] }, "ResponseHeaders": { @@ -1403,67 +1445,70 @@ "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/storagecontainer;storage;pstestrg8895;pstestsa8895/protectedItems/azurefileshare;698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959/operationResults/6a0a4e2a-1f78-48bb-9c10-1f2f48e082fd?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/storagecontainer;storage;pstestrg8895;pstestsa8895/protectedItems/azurefileshare;698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959/operationsStatus/6a0a4e2a-1f78-48bb-9c10-1f2f48e082fd?api-version=2022-02-01" + ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "67c8052e-36a5-47a6-a9ba-763fd840c847" + "b8d4c478-0e2d-4be7-8de5-9c26eb5758f7" ], "x-ms-client-request-id": [ - "8759066b-eca1-45a9-81d6-201da03960ad", - "8759066b-eca1-45a9-81d6-201da03960ad" + "c49e88a3-878d-4510-b22d-0afe8d278cdf", + "c49e88a3-878d-4510-b22d-0afe8d278cdf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Server": [ - "Microsoft-IIS/10.0" - ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "295" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" ], "x-ms-correlation-request-id": [ - "67c8052e-36a5-47a6-a9ba-763fd840c847" + "b8d4c478-0e2d-4be7-8de5-9c26eb5758f7" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T114400Z:67c8052e-36a5-47a6-a9ba-763fd840c847" + "WESTINDIA:20220516T170926Z:b8d4c478-0e2d-4be7-8de5-9c26eb5758f7" ], "Date": [ - "Sat, 26 Mar 2022 11:44:00 GMT" - ], - "Content-Length": [ - "188" - ], - "Content-Type": [ - "application/json" + "Mon, 16 May 2022 17:09:25 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, - "ResponseBody": "{\r\n \"id\": \"9b1690a6-3625-4628-9a60-28816892b133\",\r\n \"name\": \"9b1690a6-3625-4628-9a60-28816892b133\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-03-26T11:43:17.9872298Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", - "StatusCode": 200 + "ResponseBody": "", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/9b1690a6-3625-4628-9a60-28816892b133?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy85YjE2OTBhNi0zNjI1LTQ2MjgtOWE2MC0yODgxNjg5MmIxMzM/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/6a0a4e2a-1f78-48bb-9c10-1f2f48e082fd?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy82YTBhNGUyYS0xZjc4LTQ4YmItOWMxMC0xZjJmNDhlMDgyZmQ/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8759066b-eca1-45a9-81d6-201da03960ad" + "c49e88a3-878d-4510-b22d-0afe8d278cdf" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -1477,11 +1522,11 @@ "nosniff" ], "x-ms-request-id": [ - "0a542db6-fe4c-4169-b6fb-121c7e8e63ba" + "261cb740-dcbb-47f2-a311-cfe57e8e8ab7" ], "x-ms-client-request-id": [ - "8759066b-eca1-45a9-81d6-201da03960ad", - "8759066b-eca1-45a9-81d6-201da03960ad" + "c49e88a3-878d-4510-b22d-0afe8d278cdf", + "c49e88a3-878d-4510-b22d-0afe8d278cdf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1493,19 +1538,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "294" + "299" ], "x-ms-correlation-request-id": [ - "0a542db6-fe4c-4169-b6fb-121c7e8e63ba" + "261cb740-dcbb-47f2-a311-cfe57e8e8ab7" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T114410Z:0a542db6-fe4c-4169-b6fb-121c7e8e63ba" + "WESTINDIA:20220516T170927Z:261cb740-dcbb-47f2-a311-cfe57e8e8ab7" ], "Date": [ - "Sat, 26 Mar 2022 11:44:10 GMT" + "Mon, 16 May 2022 17:09:26 GMT" ], "Content-Length": [ - "304" + "188" ], "Content-Type": [ "application/json" @@ -1514,26 +1559,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"9b1690a6-3625-4628-9a60-28816892b133\",\r\n \"name\": \"9b1690a6-3625-4628-9a60-28816892b133\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-03-26T11:43:17.9872298Z\",\r\n \"endTime\": \"2022-03-26T11:43:17.9872298Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"2cb366bc-7712-4e3c-a2da-7771844320c5\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"6a0a4e2a-1f78-48bb-9c10-1f2f48e082fd\",\r\n \"name\": \"6a0a4e2a-1f78-48bb-9c10-1f2f48e082fd\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T17:09:26.3812794Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/9b1690a6-3625-4628-9a60-28816892b133?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy85YjE2OTBhNi0zNjI1LTQ2MjgtOWE2MC0yODgxNjg5MmIxMzM/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/6a0a4e2a-1f78-48bb-9c10-1f2f48e082fd?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy82YTBhNGUyYS0xZjc4LTQ4YmItOWMxMC0xZjJmNDhlMDgyZmQ/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8759066b-eca1-45a9-81d6-201da03960ad" + "c49e88a3-878d-4510-b22d-0afe8d278cdf" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -1547,11 +1592,11 @@ "nosniff" ], "x-ms-request-id": [ - "9e4e7339-88ec-4222-a962-4428a2f8bdd3" + "67343373-36d3-4966-9415-599c9de0e2db" ], "x-ms-client-request-id": [ - "8759066b-eca1-45a9-81d6-201da03960ad", - "8759066b-eca1-45a9-81d6-201da03960ad" + "c49e88a3-878d-4510-b22d-0afe8d278cdf", + "c49e88a3-878d-4510-b22d-0afe8d278cdf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1563,19 +1608,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "293" + "298" ], "x-ms-correlation-request-id": [ - "9e4e7339-88ec-4222-a962-4428a2f8bdd3" + "67343373-36d3-4966-9415-599c9de0e2db" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T114410Z:9e4e7339-88ec-4222-a962-4428a2f8bdd3" + "WESTINDIA:20220516T170932Z:67343373-36d3-4966-9415-599c9de0e2db" ], "Date": [ - "Sat, 26 Mar 2022 11:44:10 GMT" + "Mon, 16 May 2022 17:09:31 GMT" ], "Content-Length": [ - "304" + "188" ], "Content-Type": [ "application/json" @@ -1584,26 +1629,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"9b1690a6-3625-4628-9a60-28816892b133\",\r\n \"name\": \"9b1690a6-3625-4628-9a60-28816892b133\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-03-26T11:43:17.9872298Z\",\r\n \"endTime\": \"2022-03-26T11:43:17.9872298Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"2cb366bc-7712-4e3c-a2da-7771844320c5\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"6a0a4e2a-1f78-48bb-9c10-1f2f48e082fd\",\r\n \"name\": \"6a0a4e2a-1f78-48bb-9c10-1f2f48e082fd\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T17:09:26.3812794Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/2cb366bc-7712-4e3c-a2da-7771844320c5?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy8yY2IzNjZiYy03NzEyLTRlM2MtYTJkYS03NzcxODQ0MzIwYzU/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/6a0a4e2a-1f78-48bb-9c10-1f2f48e082fd?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy82YTBhNGUyYS0xZjc4LTQ4YmItOWMxMC0xZjJmNDhlMDgyZmQ/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8759066b-eca1-45a9-81d6-201da03960ad" + "c49e88a3-878d-4510-b22d-0afe8d278cdf" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -1613,40 +1658,39 @@ "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-IIS/10.0" - ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "497e9e32-3d64-4b4f-a742-babdd0368598" + "a907adc9-0e81-4f79-bcf1-80cee57c99e0" ], "x-ms-client-request-id": [ - "8759066b-eca1-45a9-81d6-201da03960ad", - "8759066b-eca1-45a9-81d6-201da03960ad" - ], - "X-Powered-By": [ - "ASP.NET" + "c49e88a3-878d-4510-b22d-0afe8d278cdf", + "c49e88a3-878d-4510-b22d-0afe8d278cdf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "299" + "297" ], "x-ms-correlation-request-id": [ - "497e9e32-3d64-4b4f-a742-babdd0368598" + "a907adc9-0e81-4f79-bcf1-80cee57c99e0" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T114411Z:497e9e32-3d64-4b4f-a742-babdd0368598" + "WESTINDIA:20220516T170938Z:a907adc9-0e81-4f79-bcf1-80cee57c99e0" ], "Date": [ - "Sat, 26 Mar 2022 11:44:11 GMT" + "Mon, 16 May 2022 17:09:37 GMT" ], "Content-Length": [ - "847" + "188" ], "Content-Type": [ "application/json" @@ -1655,26 +1699,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/2cb366bc-7712-4e3c-a2da-7771844320c5\",\r\n \"name\": \"2cb366bc-7712-4e3c-a2da-7771844320c5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT41.9916463S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"Storage\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"File Share Name\": \"fs1\",\r\n \"Storage Account Name\": \"pstestsa8895\",\r\n \"Policy Name\": \"afspolicy1\"\r\n }\r\n },\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"ConfigureBackup\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-03-26T11:43:17.9872298Z\",\r\n \"endTime\": \"2022-03-26T11:43:59.9788761Z\",\r\n \"activityId\": \"8759066b-eca1-45a9-81d6-201da03960ad\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"6a0a4e2a-1f78-48bb-9c10-1f2f48e082fd\",\r\n \"name\": \"6a0a4e2a-1f78-48bb-9c10-1f2f48e082fd\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T17:09:26.3812794Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupProtectedItems?$filter=backupManagementType%20eq%20'AzureStorage'%20and%20itemType%20eq%20'AzureFileShare'&api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwUHJvdGVjdGVkSXRlbXM/JGZpbHRlcj1iYWNrdXBNYW5hZ2VtZW50VHlwZSUyMGVxJTIwJ0F6dXJlU3RvcmFnZSclMjBhbmQlMjBpdGVtVHlwZSUyMGVxJTIwJ0F6dXJlRmlsZVNoYXJlJyZhcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/6a0a4e2a-1f78-48bb-9c10-1f2f48e082fd?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy82YTBhNGUyYS0xZjc4LTQ4YmItOWMxMC0xZjJmNDhlMDgyZmQ/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a27932a4-ede0-4516-abbe-35dcee3d329c" + "c49e88a3-878d-4510-b22d-0afe8d278cdf" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -1688,11 +1732,11 @@ "nosniff" ], "x-ms-request-id": [ - "3f192eda-70a3-409a-bea8-c81d5975080c" + "4c4a5df3-12db-4310-bc21-1003cc8cdd35" ], "x-ms-client-request-id": [ - "a27932a4-ede0-4516-abbe-35dcee3d329c", - "a27932a4-ede0-4516-abbe-35dcee3d329c" + "c49e88a3-878d-4510-b22d-0afe8d278cdf", + "c49e88a3-878d-4510-b22d-0afe8d278cdf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1704,19 +1748,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "299" + "296" ], "x-ms-correlation-request-id": [ - "3f192eda-70a3-409a-bea8-c81d5975080c" + "4c4a5df3-12db-4310-bc21-1003cc8cdd35" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T114412Z:3f192eda-70a3-409a-bea8-c81d5975080c" + "WESTINDIA:20220516T170943Z:4c4a5df3-12db-4310-bc21-1003cc8cdd35" ], "Date": [ - "Sat, 26 Mar 2022 11:44:11 GMT" + "Mon, 16 May 2022 17:09:42 GMT" ], "Content-Length": [ - "1219" + "188" ], "Content-Type": [ "application/json" @@ -1725,26 +1769,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;storage;pstestrg8895;pstestsa8895/protectedItems/AzureFileShare;698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959\",\r\n \"name\": \"AzureFileShare;698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems\",\r\n \"properties\": {\r\n \"kpisHealths\": {},\r\n \"friendlyName\": \"fs1\",\r\n \"protectionStatus\": \"Healthy\",\r\n \"protectionState\": \"IRPending\",\r\n \"lastBackupStatus\": \"IRPending\",\r\n \"protectedItemType\": \"AzureFileShareProtectedItem\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"workloadType\": \"AzureFileShare\",\r\n \"containerName\": \"StorageContainer;storage;pstestrg8895;pstestsa8895\",\r\n \"sourceResourceId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.storage/storageAccounts/pstestsa8895\",\r\n \"policyId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupPolicies/afspolicy1\",\r\n \"isArchiveEnabled\": false\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"6a0a4e2a-1f78-48bb-9c10-1f2f48e082fd\",\r\n \"name\": \"6a0a4e2a-1f78-48bb-9c10-1f2f48e082fd\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T17:09:26.3812794Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3Bstorage%3Bpstestrg8895%3Bpstestsa8895/protectedItems/AzureFileShare%3B698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959?$filter=expand%20eq%20'extendedinfo'&api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCc3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9wcm90ZWN0ZWRJdGVtcy9BenVyZUZpbGVTaGFyZSUzQjY5OGRmNTk1OTQ4ZTIzNTVmMmJiNzQ0YTQxY2YyNDVkNGJhMTI1NWQ5Njk5Y2MzYzJhZDFmNTA0NWUxNzc5NTk/JGZpbHRlcj1leHBhbmQlMjBlcSUyMCdleHRlbmRlZGluZm8nJmFwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/6a0a4e2a-1f78-48bb-9c10-1f2f48e082fd?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy82YTBhNGUyYS0xZjc4LTQ4YmItOWMxMC0xZjJmNDhlMDgyZmQ/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a27932a4-ede0-4516-abbe-35dcee3d329c" + "c49e88a3-878d-4510-b22d-0afe8d278cdf" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -1758,11 +1802,11 @@ "nosniff" ], "x-ms-request-id": [ - "c39940cb-4e69-4982-b328-df59172535cd" + "3e43b798-640e-4084-a5af-2bd20d041f4c" ], "x-ms-client-request-id": [ - "a27932a4-ede0-4516-abbe-35dcee3d329c", - "a27932a4-ede0-4516-abbe-35dcee3d329c" + "c49e88a3-878d-4510-b22d-0afe8d278cdf", + "c49e88a3-878d-4510-b22d-0afe8d278cdf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1774,19 +1818,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "299" + "295" ], "x-ms-correlation-request-id": [ - "c39940cb-4e69-4982-b328-df59172535cd" + "3e43b798-640e-4084-a5af-2bd20d041f4c" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T114412Z:c39940cb-4e69-4982-b328-df59172535cd" + "WESTINDIA:20220516T170948Z:3e43b798-640e-4084-a5af-2bd20d041f4c" ], "Date": [ - "Sat, 26 Mar 2022 11:44:12 GMT" + "Mon, 16 May 2022 17:09:48 GMT" ], "Content-Length": [ - "1352" + "188" ], "Content-Type": [ "application/json" @@ -1795,32 +1839,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;storage;pstestrg8895;pstestsa8895/protectedItems/AzureFileShare;698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959\",\r\n \"name\": \"AzureFileShare;698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems\",\r\n \"properties\": {\r\n \"kpisHealths\": {},\r\n \"friendlyName\": \"fs1\",\r\n \"protectionStatus\": \"Healthy\",\r\n \"protectionState\": \"IRPending\",\r\n \"lastBackupStatus\": \"IRPending\",\r\n \"extendedInfo\": {\r\n \"recoveryPointCount\": 0,\r\n \"policyState\": \"Consistent\",\r\n \"resourceState\": \"Active\",\r\n \"resourceStateSyncTime\": \"2022-03-26T11:43:59.66636Z\"\r\n },\r\n \"protectedItemType\": \"AzureFileShareProtectedItem\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"workloadType\": \"AzureFileShare\",\r\n \"containerName\": \"StorageContainer;storage;pstestrg8895;pstestsa8895\",\r\n \"sourceResourceId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.storage/storageAccounts/pstestsa8895\",\r\n \"policyId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupPolicies/afspolicy1\",\r\n \"isArchiveEnabled\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"6a0a4e2a-1f78-48bb-9c10-1f2f48e082fd\",\r\n \"name\": \"6a0a4e2a-1f78-48bb-9c10-1f2f48e082fd\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T17:09:26.3812794Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3Bstorage%3Bpstestrg8895%3Bpstestsa8895/protectedItems/AzureFileShare%3B698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959/backup?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCc3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9wcm90ZWN0ZWRJdGVtcy9BenVyZUZpbGVTaGFyZSUzQjY5OGRmNTk1OTQ4ZTIzNTVmMmJiNzQ0YTQxY2YyNDVkNGJhMTI1NWQ5Njk5Y2MzYzJhZDFmNTA0NWUxNzc5NTkvYmFja3VwP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", - "RequestMethod": "POST", - "RequestBody": "{\r\n \"properties\": {\r\n \"objectType\": \"AzureFileShareBackupRequest\"\r\n }\r\n}", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/6a0a4e2a-1f78-48bb-9c10-1f2f48e082fd?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy82YTBhNGUyYS0xZjc4LTQ4YmItOWMxMC0xZjJmNDhlMDgyZmQ/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f6816d6c-4c6d-4541-bce0-18f44cb38253" + "c49e88a3-878d-4510-b22d-0afe8d278cdf" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "77" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -1830,70 +1868,67 @@ "Pragma": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;storage;pstestrg8895;pstestsa8895/protectedItems/AzureFileShare;698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959/operationResults/c6448831-ab30-4402-925d-461f53621aaf?api-version=2021-12-01" - ], - "Retry-After": [ - "60" - ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;storage;pstestrg8895;pstestsa8895/protectedItems/AzureFileShare;698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959/operationsStatus/c6448831-ab30-4402-925d-461f53621aaf?api-version=2021-12-01" - ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "35ce95b9-49cd-4f0d-878d-5667b2281107" + "8fdf4905-1c9d-4fc2-a11d-bf803b483cce" ], "x-ms-client-request-id": [ - "f6816d6c-4c6d-4541-bce0-18f44cb38253", - "f6816d6c-4c6d-4541-bce0-18f44cb38253" + "c49e88a3-878d-4510-b22d-0afe8d278cdf", + "c49e88a3-878d-4510-b22d-0afe8d278cdf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-IIS/10.0" + ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "294" ], "x-ms-correlation-request-id": [ - "35ce95b9-49cd-4f0d-878d-5667b2281107" + "8fdf4905-1c9d-4fc2-a11d-bf803b483cce" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T114413Z:35ce95b9-49cd-4f0d-878d-5667b2281107" + "WESTINDIA:20220516T170954Z:8fdf4905-1c9d-4fc2-a11d-bf803b483cce" ], "Date": [ - "Sat, 26 Mar 2022 11:44:13 GMT" + "Mon, 16 May 2022 17:09:54 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, - "ResponseBody": "", - "StatusCode": 202 + "ResponseBody": "{\r\n \"id\": \"6a0a4e2a-1f78-48bb-9c10-1f2f48e082fd\",\r\n \"name\": \"6a0a4e2a-1f78-48bb-9c10-1f2f48e082fd\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T17:09:26.3812794Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/c6448831-ab30-4402-925d-461f53621aaf?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9jNjQ0ODgzMS1hYjMwLTQ0MDItOTI1ZC00NjFmNTM2MjFhYWY/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/6a0a4e2a-1f78-48bb-9c10-1f2f48e082fd?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy82YTBhNGUyYS0xZjc4LTQ4YmItOWMxMC0xZjJmNDhlMDgyZmQ/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f6816d6c-4c6d-4541-bce0-18f44cb38253" + "c49e88a3-878d-4510-b22d-0afe8d278cdf" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -1907,11 +1942,11 @@ "nosniff" ], "x-ms-request-id": [ - "580147f3-961d-4d2c-9ce7-97c23de82319" + "0c3aae83-9913-4999-8722-d0c27a7b2f1f" ], "x-ms-client-request-id": [ - "f6816d6c-4c6d-4541-bce0-18f44cb38253", - "f6816d6c-4c6d-4541-bce0-18f44cb38253" + "c49e88a3-878d-4510-b22d-0afe8d278cdf", + "c49e88a3-878d-4510-b22d-0afe8d278cdf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1923,16 +1958,16 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "292" + "293" ], "x-ms-correlation-request-id": [ - "580147f3-961d-4d2c-9ce7-97c23de82319" + "0c3aae83-9913-4999-8722-d0c27a7b2f1f" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T114413Z:580147f3-961d-4d2c-9ce7-97c23de82319" + "WESTINDIA:20220516T171000Z:0c3aae83-9913-4999-8722-d0c27a7b2f1f" ], "Date": [ - "Sat, 26 Mar 2022 11:44:13 GMT" + "Mon, 16 May 2022 17:10:00 GMT" ], "Content-Length": [ "188" @@ -1944,26 +1979,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"c6448831-ab30-4402-925d-461f53621aaf\",\r\n \"name\": \"c6448831-ab30-4402-925d-461f53621aaf\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-03-26T11:44:13.5125722Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"6a0a4e2a-1f78-48bb-9c10-1f2f48e082fd\",\r\n \"name\": \"6a0a4e2a-1f78-48bb-9c10-1f2f48e082fd\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T17:09:26.3812794Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/c6448831-ab30-4402-925d-461f53621aaf?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9jNjQ0ODgzMS1hYjMwLTQ0MDItOTI1ZC00NjFmNTM2MjFhYWY/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/6a0a4e2a-1f78-48bb-9c10-1f2f48e082fd?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy82YTBhNGUyYS0xZjc4LTQ4YmItOWMxMC0xZjJmNDhlMDgyZmQ/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f6816d6c-4c6d-4541-bce0-18f44cb38253" + "c49e88a3-878d-4510-b22d-0afe8d278cdf" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -1977,11 +2012,11 @@ "nosniff" ], "x-ms-request-id": [ - "c32294e2-e401-4744-b32a-85d79302016a" + "404201e9-f828-4ab3-9349-b16fec18325b" ], "x-ms-client-request-id": [ - "f6816d6c-4c6d-4541-bce0-18f44cb38253", - "f6816d6c-4c6d-4541-bce0-18f44cb38253" + "c49e88a3-878d-4510-b22d-0afe8d278cdf", + "c49e88a3-878d-4510-b22d-0afe8d278cdf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1993,19 +2028,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "291" + "292" ], "x-ms-correlation-request-id": [ - "c32294e2-e401-4744-b32a-85d79302016a" + "404201e9-f828-4ab3-9349-b16fec18325b" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T114424Z:c32294e2-e401-4744-b32a-85d79302016a" + "WESTINDIA:20220516T171005Z:404201e9-f828-4ab3-9349-b16fec18325b" ], "Date": [ - "Sat, 26 Mar 2022 11:44:23 GMT" + "Mon, 16 May 2022 17:10:05 GMT" ], "Content-Length": [ - "304" + "188" ], "Content-Type": [ "application/json" @@ -2014,26 +2049,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"c6448831-ab30-4402-925d-461f53621aaf\",\r\n \"name\": \"c6448831-ab30-4402-925d-461f53621aaf\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-03-26T11:44:13.5125722Z\",\r\n \"endTime\": \"2022-03-26T11:44:13.5125722Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"55ce6a55-3392-44e5-bc91-94b6e6eeac17\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"6a0a4e2a-1f78-48bb-9c10-1f2f48e082fd\",\r\n \"name\": \"6a0a4e2a-1f78-48bb-9c10-1f2f48e082fd\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T17:09:26.3812794Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/c6448831-ab30-4402-925d-461f53621aaf?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9jNjQ0ODgzMS1hYjMwLTQ0MDItOTI1ZC00NjFmNTM2MjFhYWY/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/6a0a4e2a-1f78-48bb-9c10-1f2f48e082fd?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy82YTBhNGUyYS0xZjc4LTQ4YmItOWMxMC0xZjJmNDhlMDgyZmQ/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f6816d6c-4c6d-4541-bce0-18f44cb38253" + "c49e88a3-878d-4510-b22d-0afe8d278cdf" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -2047,11 +2082,11 @@ "nosniff" ], "x-ms-request-id": [ - "d2c8bc23-e33a-41a3-879f-cf785b451d8f" + "79906bf7-6e1e-45be-91f6-22bdce881749" ], "x-ms-client-request-id": [ - "f6816d6c-4c6d-4541-bce0-18f44cb38253", - "f6816d6c-4c6d-4541-bce0-18f44cb38253" + "c49e88a3-878d-4510-b22d-0afe8d278cdf", + "c49e88a3-878d-4510-b22d-0afe8d278cdf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2063,16 +2098,16 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "290" + "291" ], "x-ms-correlation-request-id": [ - "d2c8bc23-e33a-41a3-879f-cf785b451d8f" + "79906bf7-6e1e-45be-91f6-22bdce881749" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T114424Z:d2c8bc23-e33a-41a3-879f-cf785b451d8f" + "WESTINDIA:20220516T171011Z:79906bf7-6e1e-45be-91f6-22bdce881749" ], "Date": [ - "Sat, 26 Mar 2022 11:44:23 GMT" + "Mon, 16 May 2022 17:10:11 GMT" ], "Content-Length": [ "304" @@ -2084,26 +2119,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"c6448831-ab30-4402-925d-461f53621aaf\",\r\n \"name\": \"c6448831-ab30-4402-925d-461f53621aaf\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-03-26T11:44:13.5125722Z\",\r\n \"endTime\": \"2022-03-26T11:44:13.5125722Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"55ce6a55-3392-44e5-bc91-94b6e6eeac17\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"6a0a4e2a-1f78-48bb-9c10-1f2f48e082fd\",\r\n \"name\": \"6a0a4e2a-1f78-48bb-9c10-1f2f48e082fd\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-05-16T17:09:26.3812794Z\",\r\n \"endTime\": \"2022-05-16T17:09:26.3812794Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"c65a9895-57e1-4ea3-b5bc-cb779c1d3777\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/55ce6a55-3392-44e5-bc91-94b6e6eeac17?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy81NWNlNmE1NS0zMzkyLTQ0ZTUtYmM5MS05NGI2ZTZlZWFjMTc/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/6a0a4e2a-1f78-48bb-9c10-1f2f48e082fd?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy82YTBhNGUyYS0xZjc4LTQ4YmItOWMxMC0xZjJmNDhlMDgyZmQ/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f6816d6c-4c6d-4541-bce0-18f44cb38253" + "c49e88a3-878d-4510-b22d-0afe8d278cdf" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -2113,40 +2148,39 @@ "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-IIS/10.0" - ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "b865e33f-a241-4b8c-a7bd-a8fac5df40b7" + "db3b7d90-052c-4951-8488-6eac9c902dbe" ], "x-ms-client-request-id": [ - "f6816d6c-4c6d-4541-bce0-18f44cb38253", - "f6816d6c-4c6d-4541-bce0-18f44cb38253" - ], - "X-Powered-By": [ - "ASP.NET" + "c49e88a3-878d-4510-b22d-0afe8d278cdf", + "c49e88a3-878d-4510-b22d-0afe8d278cdf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "298" + "290" ], "x-ms-correlation-request-id": [ - "b865e33f-a241-4b8c-a7bd-a8fac5df40b7" + "db3b7d90-052c-4951-8488-6eac9c902dbe" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T114424Z:b865e33f-a241-4b8c-a7bd-a8fac5df40b7" + "WESTINDIA:20220516T171011Z:db3b7d90-052c-4951-8488-6eac9c902dbe" ], "Date": [ - "Sat, 26 Mar 2022 11:44:24 GMT" + "Mon, 16 May 2022 17:10:11 GMT" ], "Content-Length": [ - "903" + "304" ], "Content-Type": [ "application/json" @@ -2155,26 +2189,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/55ce6a55-3392-44e5-bc91-94b6e6eeac17\",\r\n \"name\": \"55ce6a55-3392-44e5-bc91-94b6e6eeac17\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT2.4698902S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"MicrosoftStorage\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"status\": \"Completed\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"File Share Name\": \"fs1\",\r\n \"Whether job is adhoc or scheduled.\": \"True\"\r\n }\r\n },\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-03-26T11:44:13.5125722Z\",\r\n \"endTime\": \"2022-03-26T11:44:15.9824624Z\",\r\n \"activityId\": \"f6816d6c-4c6d-4541-bce0-18f44cb38253\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"6a0a4e2a-1f78-48bb-9c10-1f2f48e082fd\",\r\n \"name\": \"6a0a4e2a-1f78-48bb-9c10-1f2f48e082fd\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-05-16T17:09:26.3812794Z\",\r\n \"endTime\": \"2022-05-16T17:09:26.3812794Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"c65a9895-57e1-4ea3-b5bc-cb779c1d3777\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/55ce6a55-3392-44e5-bc91-94b6e6eeac17?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy81NWNlNmE1NS0zMzkyLTQ0ZTUtYmM5MS05NGI2ZTZlZWFjMTc/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/c65a9895-57e1-4ea3-b5bc-cb779c1d3777?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9jNjVhOTg5NS01N2UxLTRlYTMtYjViYy1jYjc3OWMxZDM3Nzc/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f6816d6c-4c6d-4541-bce0-18f44cb38253" + "c49e88a3-878d-4510-b22d-0afe8d278cdf" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -2192,11 +2226,11 @@ "nosniff" ], "x-ms-request-id": [ - "c330179f-363a-4b71-b9ba-f5b95703e9ca" + "65db2d26-5e29-44b7-aa80-5d4b7533c5f9" ], "x-ms-client-request-id": [ - "f6816d6c-4c6d-4541-bce0-18f44cb38253", - "f6816d6c-4c6d-4541-bce0-18f44cb38253" + "c49e88a3-878d-4510-b22d-0afe8d278cdf", + "c49e88a3-878d-4510-b22d-0afe8d278cdf" ], "X-Powered-By": [ "ASP.NET" @@ -2205,19 +2239,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "297" + "299" ], "x-ms-correlation-request-id": [ - "c330179f-363a-4b71-b9ba-f5b95703e9ca" + "65db2d26-5e29-44b7-aa80-5d4b7533c5f9" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T114425Z:c330179f-363a-4b71-b9ba-f5b95703e9ca" + "WESTINDIA:20220516T171012Z:65db2d26-5e29-44b7-aa80-5d4b7533c5f9" ], "Date": [ - "Sat, 26 Mar 2022 11:44:24 GMT" + "Mon, 16 May 2022 17:10:11 GMT" ], "Content-Length": [ - "903" + "847" ], "Content-Type": [ "application/json" @@ -2226,26 +2260,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/55ce6a55-3392-44e5-bc91-94b6e6eeac17\",\r\n \"name\": \"55ce6a55-3392-44e5-bc91-94b6e6eeac17\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT2.4698902S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"MicrosoftStorage\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"status\": \"Completed\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"File Share Name\": \"fs1\",\r\n \"Whether job is adhoc or scheduled.\": \"True\"\r\n }\r\n },\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-03-26T11:44:13.5125722Z\",\r\n \"endTime\": \"2022-03-26T11:44:15.9824624Z\",\r\n \"activityId\": \"f6816d6c-4c6d-4541-bce0-18f44cb38253\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/c65a9895-57e1-4ea3-b5bc-cb779c1d3777\",\r\n \"name\": \"c65a9895-57e1-4ea3-b5bc-cb779c1d3777\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT42.2589251S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"Storage\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"File Share Name\": \"fs1\",\r\n \"Storage Account Name\": \"pstestsa8895\",\r\n \"Policy Name\": \"afspolicy1\"\r\n }\r\n },\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"ConfigureBackup\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-05-16T17:09:26.3812794Z\",\r\n \"endTime\": \"2022-05-16T17:10:08.6402045Z\",\r\n \"activityId\": \"c49e88a3-878d-4510-b22d-0afe8d278cdf\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3Bstorage%3Bpstestrg8895%3Bpstestsa8895/protectedItems/AzureFileShare%3B698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959/recoveryPoints?$filter=startDate%20eq%20'2022-03-26%2011:43:13%20AM'%20and%20endDate%20eq%20'2022-03-26%2011:45:15%20AM'&api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCc3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9wcm90ZWN0ZWRJdGVtcy9BenVyZUZpbGVTaGFyZSUzQjY5OGRmNTk1OTQ4ZTIzNTVmMmJiNzQ0YTQxY2YyNDVkNGJhMTI1NWQ5Njk5Y2MzYzJhZDFmNTA0NWUxNzc5NTkvcmVjb3ZlcnlQb2ludHM/JGZpbHRlcj1zdGFydERhdGUlMjBlcSUyMCcyMDIyLTAzLTI2JTIwMTE6NDM6MTMlMjBBTSclMjBhbmQlMjBlbmREYXRlJTIwZXElMjAnMjAyMi0wMy0yNiUyMDExOjQ1OjE1JTIwQU0nJmFwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupProtectedItems?$filter=backupManagementType%20eq%20'AzureStorage'%20and%20itemType%20eq%20'AzureFileShare'&api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwUHJvdGVjdGVkSXRlbXM/JGZpbHRlcj1iYWNrdXBNYW5hZ2VtZW50VHlwZSUyMGVxJTIwJ0F6dXJlU3RvcmFnZSclMjBhbmQlMjBpdGVtVHlwZSUyMGVxJTIwJ0F6dXJlRmlsZVNoYXJlJyZhcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "404072c8-6f74-45ce-95fd-0c653299270a" + "e36ecf14-04dc-4c1e-99a1-06fcd5ac76e0" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -2259,11 +2293,11 @@ "nosniff" ], "x-ms-request-id": [ - "33309a7d-92e3-469c-8a46-3a24be2978d9" + "0d69d639-1714-4b7d-801e-e2f7e9702b7e" ], "x-ms-client-request-id": [ - "404072c8-6f74-45ce-95fd-0c653299270a", - "404072c8-6f74-45ce-95fd-0c653299270a" + "e36ecf14-04dc-4c1e-99a1-06fcd5ac76e0", + "e36ecf14-04dc-4c1e-99a1-06fcd5ac76e0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2278,16 +2312,16 @@ "299" ], "x-ms-correlation-request-id": [ - "33309a7d-92e3-469c-8a46-3a24be2978d9" + "0d69d639-1714-4b7d-801e-e2f7e9702b7e" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T114425Z:33309a7d-92e3-469c-8a46-3a24be2978d9" + "WESTINDIA:20220516T171013Z:0d69d639-1714-4b7d-801e-e2f7e9702b7e" ], "Date": [ - "Sat, 26 Mar 2022 11:44:25 GMT" + "Mon, 16 May 2022 17:10:12 GMT" ], "Content-Length": [ - "792" + "1219" ], "Content-Type": [ "application/json" @@ -2296,26 +2330,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;storage;pstestrg8895;pstestsa8895/protectedItems/AzureFileShare;698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959/recoveryPoints/25386515809052\",\r\n \"name\": \"25386515809052\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints\",\r\n \"properties\": {\r\n \"objectType\": \"AzureFileShareRecoveryPoint\",\r\n \"recoveryPointType\": \"FileSystemConsistent\",\r\n \"recoveryPointTime\": \"2022-03-26T11:44:14Z\",\r\n \"fileShareSnapshotUri\": \"https://pstestsa8895.file.core.windows.net/fs1?sharesnapshot=2022-03-26T11:44:14.0000000Z\",\r\n \"recoveryPointSizeInGB\": 1\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;storage;pstestrg8895;pstestsa8895/protectedItems/AzureFileShare;698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959\",\r\n \"name\": \"AzureFileShare;698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems\",\r\n \"properties\": {\r\n \"kpisHealths\": {},\r\n \"friendlyName\": \"fs1\",\r\n \"protectionStatus\": \"Healthy\",\r\n \"protectionState\": \"IRPending\",\r\n \"lastBackupStatus\": \"IRPending\",\r\n \"protectedItemType\": \"AzureFileShareProtectedItem\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"workloadType\": \"AzureFileShare\",\r\n \"containerName\": \"StorageContainer;storage;pstestrg8895;pstestsa8895\",\r\n \"sourceResourceId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.storage/storageAccounts/pstestsa8895\",\r\n \"policyId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupPolicies/afspolicy1\",\r\n \"isArchiveEnabled\": false\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3Bstorage%3Bpstestrg8895%3Bpstestsa8895/protectedItems/AzureFileShare%3B698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959/recoveryPoints/25386515809052?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCc3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9wcm90ZWN0ZWRJdGVtcy9BenVyZUZpbGVTaGFyZSUzQjY5OGRmNTk1OTQ4ZTIzNTVmMmJiNzQ0YTQxY2YyNDVkNGJhMTI1NWQ5Njk5Y2MzYzJhZDFmNTA0NWUxNzc5NTkvcmVjb3ZlcnlQb2ludHMvMjUzODY1MTU4MDkwNTI/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3Bstorage%3Bpstestrg8895%3Bpstestsa8895/protectedItems/AzureFileShare%3B698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959?$filter=expand%20eq%20'extendedinfo'&api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCc3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9wcm90ZWN0ZWRJdGVtcy9BenVyZUZpbGVTaGFyZSUzQjY5OGRmNTk1OTQ4ZTIzNTVmMmJiNzQ0YTQxY2YyNDVkNGJhMTI1NWQ5Njk5Y2MzYzJhZDFmNTA0NWUxNzc5NTk/JGZpbHRlcj1leHBhbmQlMjBlcSUyMCdleHRlbmRlZGluZm8nJmFwaS12ZXJzaW9uPTIwMjItMDItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7cbe0088-ef15-4eaf-9cff-19da4fb2e42d" + "e36ecf14-04dc-4c1e-99a1-06fcd5ac76e0" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -2329,11 +2363,11 @@ "nosniff" ], "x-ms-request-id": [ - "902efcd2-ab62-4be3-bb76-ebcfdf2c6a70" + "ca8d2944-e8ae-4df0-b056-68e1280a32eb" ], "x-ms-client-request-id": [ - "7cbe0088-ef15-4eaf-9cff-19da4fb2e42d", - "7cbe0088-ef15-4eaf-9cff-19da4fb2e42d" + "e36ecf14-04dc-4c1e-99a1-06fcd5ac76e0", + "e36ecf14-04dc-4c1e-99a1-06fcd5ac76e0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2345,19 +2379,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "298" + "299" ], "x-ms-correlation-request-id": [ - "902efcd2-ab62-4be3-bb76-ebcfdf2c6a70" + "ca8d2944-e8ae-4df0-b056-68e1280a32eb" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T114426Z:902efcd2-ab62-4be3-bb76-ebcfdf2c6a70" + "WESTINDIA:20220516T171014Z:ca8d2944-e8ae-4df0-b056-68e1280a32eb" ], "Date": [ - "Sat, 26 Mar 2022 11:44:25 GMT" + "Mon, 16 May 2022 17:10:13 GMT" ], "Content-Length": [ - "780" + "1354" ], "Content-Type": [ "application/json" @@ -2366,26 +2400,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;storage;pstestrg8895;pstestsa8895/protectedItems/AzureFileShare;698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959/recoveryPoints/25386515809052\",\r\n \"name\": \"25386515809052\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints\",\r\n \"properties\": {\r\n \"objectType\": \"AzureFileShareRecoveryPoint\",\r\n \"recoveryPointType\": \"FileSystemConsistent\",\r\n \"recoveryPointTime\": \"2022-03-26T11:44:14Z\",\r\n \"fileShareSnapshotUri\": \"https://pstestsa8895.file.core.windows.net/fs1?sharesnapshot=2022-03-26T11:44:14.0000000Z\",\r\n \"recoveryPointSizeInGB\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;storage;pstestrg8895;pstestsa8895/protectedItems/AzureFileShare;698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959\",\r\n \"name\": \"AzureFileShare;698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems\",\r\n \"properties\": {\r\n \"kpisHealths\": {},\r\n \"friendlyName\": \"fs1\",\r\n \"protectionStatus\": \"Healthy\",\r\n \"protectionState\": \"IRPending\",\r\n \"lastBackupStatus\": \"IRPending\",\r\n \"extendedInfo\": {\r\n \"recoveryPointCount\": 0,\r\n \"policyState\": \"Consistent\",\r\n \"resourceState\": \"Active\",\r\n \"resourceStateSyncTime\": \"2022-05-16T17:10:08.3910119Z\"\r\n },\r\n \"protectedItemType\": \"AzureFileShareProtectedItem\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"workloadType\": \"AzureFileShare\",\r\n \"containerName\": \"StorageContainer;storage;pstestrg8895;pstestsa8895\",\r\n \"sourceResourceId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.storage/storageAccounts/pstestsa8895\",\r\n \"policyId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupPolicies/afspolicy1\",\r\n \"isArchiveEnabled\": false\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3Bstorage%3Bpstestrg8895%3Bpstestsa8895/protectedItems/AzureFileShare%3B698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959/recoveryPoints?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCc3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9wcm90ZWN0ZWRJdGVtcy9BenVyZUZpbGVTaGFyZSUzQjY5OGRmNTk1OTQ4ZTIzNTVmMmJiNzQ0YTQxY2YyNDVkNGJhMTI1NWQ5Njk5Y2MzYzJhZDFmNTA0NWUxNzc5NTkvcmVjb3ZlcnlQb2ludHM/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3Bstorage%3Bpstestrg8895%3Bpstestsa8895/protectedItems/AzureFileShare%3B698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959/backup?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCc3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9wcm90ZWN0ZWRJdGVtcy9BenVyZUZpbGVTaGFyZSUzQjY5OGRmNTk1OTQ4ZTIzNTVmMmJiNzQ0YTQxY2YyNDVkNGJhMTI1NWQ5Njk5Y2MzYzJhZDFmNTA0NWUxNzc5NTkvYmFja3VwP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"properties\": {\r\n \"objectType\": \"AzureFileShareBackupRequest\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "53077ffa-db9c-42b2-ab20-153a65d4b3ee" + "7c61bd15-889d-41c7-bdd4-b7e91f856b76" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "77" ] }, "ResponseHeaders": { @@ -2395,15 +2435,581 @@ "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;storage;pstestrg8895;pstestsa8895/protectedItems/AzureFileShare;698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959/operationResults/d5c40b00-c8bc-4955-95c7-ff162088806e?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;storage;pstestrg8895;pstestsa8895/protectedItems/AzureFileShare;698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959/operationsStatus/d5c40b00-c8bc-4955-95c7-ff162088806e?api-version=2022-02-01" + ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "5c6df713-89f2-43e0-9ce2-72d2d2f323e0" + "f7409576-6fb7-4ee8-ac0a-ec97f7e9e545" ], "x-ms-client-request-id": [ - "53077ffa-db9c-42b2-ab20-153a65d4b3ee", - "53077ffa-db9c-42b2-ab20-153a65d4b3ee" + "7c61bd15-889d-41c7-bdd4-b7e91f856b76", + "7c61bd15-889d-41c7-bdd4-b7e91f856b76" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "f7409576-6fb7-4ee8-ac0a-ec97f7e9e545" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T171015Z:f7409576-6fb7-4ee8-ac0a-ec97f7e9e545" + ], + "Date": [ + "Mon, 16 May 2022 17:10:14 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/d5c40b00-c8bc-4955-95c7-ff162088806e?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9kNWM0MGIwMC1jOGJjLTQ5NTUtOTVjNy1mZjE2MjA4ODgwNmU/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7c61bd15-889d-41c7-bdd4-b7e91f856b76" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "203ef1cb-4287-4cd8-a87e-ae60e70242ef" + ], + "x-ms-client-request-id": [ + "7c61bd15-889d-41c7-bdd4-b7e91f856b76", + "7c61bd15-889d-41c7-bdd4-b7e91f856b76" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "289" + ], + "x-ms-correlation-request-id": [ + "203ef1cb-4287-4cd8-a87e-ae60e70242ef" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T171015Z:203ef1cb-4287-4cd8-a87e-ae60e70242ef" + ], + "Date": [ + "Mon, 16 May 2022 17:10:15 GMT" + ], + "Content-Length": [ + "304" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"d5c40b00-c8bc-4955-95c7-ff162088806e\",\r\n \"name\": \"d5c40b00-c8bc-4955-95c7-ff162088806e\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-05-16T17:10:15.2306768Z\",\r\n \"endTime\": \"2022-05-16T17:10:15.2306768Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"2838af75-688a-4d7a-880d-e49c7a7de080\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/d5c40b00-c8bc-4955-95c7-ff162088806e?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9kNWM0MGIwMC1jOGJjLTQ5NTUtOTVjNy1mZjE2MjA4ODgwNmU/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7c61bd15-889d-41c7-bdd4-b7e91f856b76" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "6db05c99-c6ee-4b68-9cad-3a485f822327" + ], + "x-ms-client-request-id": [ + "7c61bd15-889d-41c7-bdd4-b7e91f856b76", + "7c61bd15-889d-41c7-bdd4-b7e91f856b76" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "288" + ], + "x-ms-correlation-request-id": [ + "6db05c99-c6ee-4b68-9cad-3a485f822327" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T171016Z:6db05c99-c6ee-4b68-9cad-3a485f822327" + ], + "Date": [ + "Mon, 16 May 2022 17:10:15 GMT" + ], + "Content-Length": [ + "304" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"d5c40b00-c8bc-4955-95c7-ff162088806e\",\r\n \"name\": \"d5c40b00-c8bc-4955-95c7-ff162088806e\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-05-16T17:10:15.2306768Z\",\r\n \"endTime\": \"2022-05-16T17:10:15.2306768Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"2838af75-688a-4d7a-880d-e49c7a7de080\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/2838af75-688a-4d7a-880d-e49c7a7de080?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy8yODM4YWY3NS02ODhhLTRkN2EtODgwZC1lNDljN2E3ZGUwODA/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7c61bd15-889d-41c7-bdd4-b7e91f856b76" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.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": [ + "e6507236-993a-4984-ab71-7626050f7025" + ], + "x-ms-client-request-id": [ + "7c61bd15-889d-41c7-bdd4-b7e91f856b76", + "7c61bd15-889d-41c7-bdd4-b7e91f856b76" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "298" + ], + "x-ms-correlation-request-id": [ + "e6507236-993a-4984-ab71-7626050f7025" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T171016Z:e6507236-993a-4984-ab71-7626050f7025" + ], + "Date": [ + "Mon, 16 May 2022 17:10:16 GMT" + ], + "Content-Length": [ + "864" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/2838af75-688a-4d7a-880d-e49c7a7de080\",\r\n \"name\": \"2838af75-688a-4d7a-880d-e49c7a7de080\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT1.6206507S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"MicrosoftStorage\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"File Share Name\": \"fs1\",\r\n \"Whether job is adhoc or scheduled.\": \"True\"\r\n }\r\n },\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T17:10:15.2306768Z\",\r\n \"activityId\": \"7c61bd15-889d-41c7-bdd4-b7e91f856b76\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/2838af75-688a-4d7a-880d-e49c7a7de080?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy8yODM4YWY3NS02ODhhLTRkN2EtODgwZC1lNDljN2E3ZGUwODA/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7c61bd15-889d-41c7-bdd4-b7e91f856b76" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.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": [ + "3a5288ea-649c-4741-8bee-42ed06bf2161" + ], + "x-ms-client-request-id": [ + "7c61bd15-889d-41c7-bdd4-b7e91f856b76", + "7c61bd15-889d-41c7-bdd4-b7e91f856b76" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "297" + ], + "x-ms-correlation-request-id": [ + "3a5288ea-649c-4741-8bee-42ed06bf2161" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T171017Z:3a5288ea-649c-4741-8bee-42ed06bf2161" + ], + "Date": [ + "Mon, 16 May 2022 17:10:16 GMT" + ], + "Content-Length": [ + "864" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/2838af75-688a-4d7a-880d-e49c7a7de080\",\r\n \"name\": \"2838af75-688a-4d7a-880d-e49c7a7de080\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT2.0894364S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"MicrosoftStorage\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"File Share Name\": \"fs1\",\r\n \"Whether job is adhoc or scheduled.\": \"True\"\r\n }\r\n },\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T17:10:15.2306768Z\",\r\n \"activityId\": \"7c61bd15-889d-41c7-bdd4-b7e91f856b76\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/2838af75-688a-4d7a-880d-e49c7a7de080?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy8yODM4YWY3NS02ODhhLTRkN2EtODgwZC1lNDljN2E3ZGUwODA/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7c61bd15-889d-41c7-bdd4-b7e91f856b76" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.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": [ + "9492abd6-8fec-4878-989b-5e6bd6143f27" + ], + "x-ms-client-request-id": [ + "7c61bd15-889d-41c7-bdd4-b7e91f856b76", + "7c61bd15-889d-41c7-bdd4-b7e91f856b76" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "296" + ], + "x-ms-correlation-request-id": [ + "9492abd6-8fec-4878-989b-5e6bd6143f27" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T171047Z:9492abd6-8fec-4878-989b-5e6bd6143f27" + ], + "Date": [ + "Mon, 16 May 2022 17:10:47 GMT" + ], + "Content-Length": [ + "903" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/2838af75-688a-4d7a-880d-e49c7a7de080\",\r\n \"name\": \"2838af75-688a-4d7a-880d-e49c7a7de080\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT3.7824543S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"MicrosoftStorage\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"status\": \"Completed\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"File Share Name\": \"fs1\",\r\n \"Whether job is adhoc or scheduled.\": \"True\"\r\n }\r\n },\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-05-16T17:10:15.2306768Z\",\r\n \"endTime\": \"2022-05-16T17:10:19.0131311Z\",\r\n \"activityId\": \"7c61bd15-889d-41c7-bdd4-b7e91f856b76\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3Bstorage%3Bpstestrg8895%3Bpstestsa8895/protectedItems/AzureFileShare%3B698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959/recoveryPoints?$filter=startDate%20eq%20'2022-05-16%2005:09:15%20PM'%20and%20endDate%20eq%20'2022-05-16%2005:11:19%20PM'&api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCc3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9wcm90ZWN0ZWRJdGVtcy9BenVyZUZpbGVTaGFyZSUzQjY5OGRmNTk1OTQ4ZTIzNTVmMmJiNzQ0YTQxY2YyNDVkNGJhMTI1NWQ5Njk5Y2MzYzJhZDFmNTA0NWUxNzc5NTkvcmVjb3ZlcnlQb2ludHM/JGZpbHRlcj1zdGFydERhdGUlMjBlcSUyMCcyMDIyLTA1LTE2JTIwMDU6MDk6MTUlMjBQTSclMjBhbmQlMjBlbmREYXRlJTIwZXElMjAnMjAyMi0wNS0xNiUyMDA1OjExOjE5JTIwUE0nJmFwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8b76c151-7959-4b50-8311-9f88813467df" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "d503f5d5-013c-4802-a977-43fa3c055000" + ], + "x-ms-client-request-id": [ + "8b76c151-7959-4b50-8311-9f88813467df", + "8b76c151-7959-4b50-8311-9f88813467df" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "299" + ], + "x-ms-correlation-request-id": [ + "d503f5d5-013c-4802-a977-43fa3c055000" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T171048Z:d503f5d5-013c-4802-a977-43fa3c055000" + ], + "Date": [ + "Mon, 16 May 2022 17:10:48 GMT" + ], + "Content-Length": [ + "792" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;storage;pstestrg8895;pstestsa8895/protectedItems/AzureFileShare;698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959/recoveryPoints/31226548248491\",\r\n \"name\": \"31226548248491\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints\",\r\n \"properties\": {\r\n \"objectType\": \"AzureFileShareRecoveryPoint\",\r\n \"recoveryPointType\": \"FileSystemConsistent\",\r\n \"recoveryPointTime\": \"2022-05-16T17:10:16Z\",\r\n \"fileShareSnapshotUri\": \"https://pstestsa8895.file.core.windows.net/fs1?sharesnapshot=2022-05-16T17:10:16.0000000Z\",\r\n \"recoveryPointSizeInGB\": 1\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3Bstorage%3Bpstestrg8895%3Bpstestsa8895/protectedItems/AzureFileShare%3B698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959/recoveryPoints/31226548248491?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCc3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9wcm90ZWN0ZWRJdGVtcy9BenVyZUZpbGVTaGFyZSUzQjY5OGRmNTk1OTQ4ZTIzNTVmMmJiNzQ0YTQxY2YyNDVkNGJhMTI1NWQ5Njk5Y2MzYzJhZDFmNTA0NWUxNzc5NTkvcmVjb3ZlcnlQb2ludHMvMzEyMjY1NDgyNDg0OTE/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "11364977-5533-42ce-b111-05224f5bffc0" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "411524bf-d6fe-4166-af55-a7dfaccd9002" + ], + "x-ms-client-request-id": [ + "11364977-5533-42ce-b111-05224f5bffc0", + "11364977-5533-42ce-b111-05224f5bffc0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "298" + ], + "x-ms-correlation-request-id": [ + "411524bf-d6fe-4166-af55-a7dfaccd9002" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T171049Z:411524bf-d6fe-4166-af55-a7dfaccd9002" + ], + "Date": [ + "Mon, 16 May 2022 17:10:49 GMT" + ], + "Content-Length": [ + "780" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;storage;pstestrg8895;pstestsa8895/protectedItems/AzureFileShare;698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959/recoveryPoints/31226548248491\",\r\n \"name\": \"31226548248491\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints\",\r\n \"properties\": {\r\n \"objectType\": \"AzureFileShareRecoveryPoint\",\r\n \"recoveryPointType\": \"FileSystemConsistent\",\r\n \"recoveryPointTime\": \"2022-05-16T17:10:16Z\",\r\n \"fileShareSnapshotUri\": \"https://pstestsa8895.file.core.windows.net/fs1?sharesnapshot=2022-05-16T17:10:16.0000000Z\",\r\n \"recoveryPointSizeInGB\": 1\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3Bstorage%3Bpstestrg8895%3Bpstestsa8895/protectedItems/AzureFileShare%3B698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959/recoveryPoints?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCc3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9wcm90ZWN0ZWRJdGVtcy9BenVyZUZpbGVTaGFyZSUzQjY5OGRmNTk1OTQ4ZTIzNTVmMmJiNzQ0YTQxY2YyNDVkNGJhMTI1NWQ5Njk5Y2MzYzJhZDFmNTA0NWUxNzc5NTkvcmVjb3ZlcnlQb2ludHM/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5f6f9b45-3003-445a-91d9-fa2c3d9d8c3d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "4ce0fd7c-c088-4e82-8922-ae8dd154a1b8" + ], + "x-ms-client-request-id": [ + "5f6f9b45-3003-445a-91d9-fa2c3d9d8c3d", + "5f6f9b45-3003-445a-91d9-fa2c3d9d8c3d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2418,13 +3024,13 @@ "297" ], "x-ms-correlation-request-id": [ - "5c6df713-89f2-43e0-9ce2-72d2d2f323e0" + "4ce0fd7c-c088-4e82-8922-ae8dd154a1b8" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T114426Z:5c6df713-89f2-43e0-9ce2-72d2d2f323e0" + "WESTINDIA:20220516T171049Z:4ce0fd7c-c088-4e82-8922-ae8dd154a1b8" ], "Date": [ - "Sat, 26 Mar 2022 11:44:26 GMT" + "Mon, 16 May 2022 17:10:49 GMT" ], "Content-Length": [ "792" @@ -2436,26 +3042,96 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;storage;pstestrg8895;pstestsa8895/protectedItems/AzureFileShare;698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959/recoveryPoints/25386515809052\",\r\n \"name\": \"25386515809052\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints\",\r\n \"properties\": {\r\n \"objectType\": \"AzureFileShareRecoveryPoint\",\r\n \"recoveryPointType\": \"FileSystemConsistent\",\r\n \"recoveryPointTime\": \"2022-03-26T11:44:14Z\",\r\n \"fileShareSnapshotUri\": \"https://pstestsa8895.file.core.windows.net/fs1?sharesnapshot=2022-03-26T11:44:14.0000000Z\",\r\n \"recoveryPointSizeInGB\": 1\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;storage;pstestrg8895;pstestsa8895/protectedItems/AzureFileShare;698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959/recoveryPoints/31226548248491\",\r\n \"name\": \"31226548248491\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints\",\r\n \"properties\": {\r\n \"objectType\": \"AzureFileShareRecoveryPoint\",\r\n \"recoveryPointType\": \"FileSystemConsistent\",\r\n \"recoveryPointTime\": \"2022-05-16T17:10:16Z\",\r\n \"fileShareSnapshotUri\": \"https://pstestsa8895.file.core.windows.net/fs1?sharesnapshot=2022-05-16T17:10:16.0000000Z\",\r\n \"recoveryPointSizeInGB\": 1\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupResourceGuardProxies?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwUmVzb3VyY2VHdWFyZFByb3hpZXM/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5f6f9b45-3003-445a-91d9-fa2c3d9d8c3d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "a779decc-2862-4c39-9fed-7bc775a10c91" + ], + "x-ms-client-request-id": [ + "5f6f9b45-3003-445a-91d9-fa2c3d9d8c3d", + "5f6f9b45-3003-445a-91d9-fa2c3d9d8c3d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "a779decc-2862-4c39-9fed-7bc775a10c91" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T171050Z:a779decc-2862-4c39-9fed-7bc775a10c91" + ], + "Date": [ + "Mon, 16 May 2022 17:10:50 GMT" + ], + "Content-Length": [ + "12" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3Bstorage%3Bpstestrg8895%3Bpstestsa8895/protectedItems/AzureFileShare%3B698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCc3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9wcm90ZWN0ZWRJdGVtcy9BenVyZUZpbGVTaGFyZSUzQjY5OGRmNTk1OTQ4ZTIzNTVmMmJiNzQ0YTQxY2YyNDVkNGJhMTI1NWQ5Njk5Y2MzYzJhZDFmNTA0NWUxNzc5NTk/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3Bstorage%3Bpstestrg8895%3Bpstestsa8895/protectedItems/AzureFileShare%3B698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCc3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9wcm90ZWN0ZWRJdGVtcy9BenVyZUZpbGVTaGFyZSUzQjY5OGRmNTk1OTQ4ZTIzNTVmMmJiNzQ0YTQxY2YyNDVkNGJhMTI1NWQ5Njk5Y2MzYzJhZDFmNTA0NWUxNzc5NTk/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "53077ffa-db9c-42b2-ab20-153a65d4b3ee" + "5f6f9b45-3003-445a-91d9-fa2c3d9d8c3d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -2466,23 +3142,23 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperationResults/5a5ef372-43b7-4b1f-9365-302de03f4a7f?api-version=2021-12-01" + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperationResults/c4683d8a-b19e-4938-8a3a-10dc845719ee?api-version=2022-02-01" ], "Retry-After": [ "60" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/5a5ef372-43b7-4b1f-9365-302de03f4a7f?api-version=2021-12-01" + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/c4683d8a-b19e-4938-8a3a-10dc845719ee?api-version=2022-02-01" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "41544a93-e821-497f-b246-29cb45ffa926" + "5b851f25-0f6b-4b1a-97e9-eb45e61001f8" ], "x-ms-client-request-id": [ - "53077ffa-db9c-42b2-ab20-153a65d4b3ee", - "53077ffa-db9c-42b2-ab20-153a65d4b3ee" + "5f6f9b45-3003-445a-91d9-fa2c3d9d8c3d", + "5f6f9b45-3003-445a-91d9-fa2c3d9d8c3d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2494,13 +3170,13 @@ "14999" ], "x-ms-correlation-request-id": [ - "41544a93-e821-497f-b246-29cb45ffa926" + "5b851f25-0f6b-4b1a-97e9-eb45e61001f8" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T114427Z:41544a93-e821-497f-b246-29cb45ffa926" + "WESTINDIA:20220516T171050Z:5b851f25-0f6b-4b1a-97e9-eb45e61001f8" ], "Date": [ - "Sat, 26 Mar 2022 11:44:26 GMT" + "Mon, 16 May 2022 17:10:50 GMT" ], "Expires": [ "-1" @@ -2513,22 +3189,22 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/5a5ef372-43b7-4b1f-9365-302de03f4a7f?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy81YTVlZjM3Mi00M2I3LTRiMWYtOTM2NS0zMDJkZTAzZjRhN2Y/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/c4683d8a-b19e-4938-8a3a-10dc845719ee?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9jNDY4M2Q4YS1iMTllLTQ5MzgtOGEzYS0xMGRjODQ1NzE5ZWU/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "53077ffa-db9c-42b2-ab20-153a65d4b3ee" + "5f6f9b45-3003-445a-91d9-fa2c3d9d8c3d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -2542,11 +3218,11 @@ "nosniff" ], "x-ms-request-id": [ - "dbec8b99-6755-44da-aac3-4cf293bc34c0" + "bf9c7fc5-f965-44c8-ad84-bb0e9a0b615c" ], "x-ms-client-request-id": [ - "53077ffa-db9c-42b2-ab20-153a65d4b3ee", - "53077ffa-db9c-42b2-ab20-153a65d4b3ee" + "5f6f9b45-3003-445a-91d9-fa2c3d9d8c3d", + "5f6f9b45-3003-445a-91d9-fa2c3d9d8c3d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2558,16 +3234,16 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "289" + "287" ], "x-ms-correlation-request-id": [ - "dbec8b99-6755-44da-aac3-4cf293bc34c0" + "bf9c7fc5-f965-44c8-ad84-bb0e9a0b615c" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T114427Z:dbec8b99-6755-44da-aac3-4cf293bc34c0" + "WESTINDIA:20220516T171051Z:bf9c7fc5-f965-44c8-ad84-bb0e9a0b615c" ], "Date": [ - "Sat, 26 Mar 2022 11:44:27 GMT" + "Mon, 16 May 2022 17:10:51 GMT" ], "Content-Length": [ "188" @@ -2579,26 +3255,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"5a5ef372-43b7-4b1f-9365-302de03f4a7f\",\r\n \"name\": \"5a5ef372-43b7-4b1f-9365-302de03f4a7f\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-03-26T11:44:27.2615668Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"c4683d8a-b19e-4938-8a3a-10dc845719ee\",\r\n \"name\": \"c4683d8a-b19e-4938-8a3a-10dc845719ee\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T17:10:50.5182694Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/5a5ef372-43b7-4b1f-9365-302de03f4a7f?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy81YTVlZjM3Mi00M2I3LTRiMWYtOTM2NS0zMDJkZTAzZjRhN2Y/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/c4683d8a-b19e-4938-8a3a-10dc845719ee?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9jNDY4M2Q4YS1iMTllLTQ5MzgtOGEzYS0xMGRjODQ1NzE5ZWU/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "53077ffa-db9c-42b2-ab20-153a65d4b3ee" + "5f6f9b45-3003-445a-91d9-fa2c3d9d8c3d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -2612,11 +3288,11 @@ "nosniff" ], "x-ms-request-id": [ - "649ec126-1aa1-41ee-82dd-84f7e8ad2688" + "8baea2b8-5a9b-4fbb-a4a9-5a4e5c05ae99" ], "x-ms-client-request-id": [ - "53077ffa-db9c-42b2-ab20-153a65d4b3ee", - "53077ffa-db9c-42b2-ab20-153a65d4b3ee" + "5f6f9b45-3003-445a-91d9-fa2c3d9d8c3d", + "5f6f9b45-3003-445a-91d9-fa2c3d9d8c3d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2628,16 +3304,16 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "288" + "286" ], "x-ms-correlation-request-id": [ - "649ec126-1aa1-41ee-82dd-84f7e8ad2688" + "8baea2b8-5a9b-4fbb-a4a9-5a4e5c05ae99" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T114438Z:649ec126-1aa1-41ee-82dd-84f7e8ad2688" + "WESTINDIA:20220516T171056Z:8baea2b8-5a9b-4fbb-a4a9-5a4e5c05ae99" ], "Date": [ - "Sat, 26 Mar 2022 11:44:38 GMT" + "Mon, 16 May 2022 17:10:56 GMT" ], "Content-Length": [ "188" @@ -2649,26 +3325,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"5a5ef372-43b7-4b1f-9365-302de03f4a7f\",\r\n \"name\": \"5a5ef372-43b7-4b1f-9365-302de03f4a7f\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-03-26T11:44:27.2615668Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"c4683d8a-b19e-4938-8a3a-10dc845719ee\",\r\n \"name\": \"c4683d8a-b19e-4938-8a3a-10dc845719ee\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T17:10:50.5182694Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/5a5ef372-43b7-4b1f-9365-302de03f4a7f?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy81YTVlZjM3Mi00M2I3LTRiMWYtOTM2NS0zMDJkZTAzZjRhN2Y/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/c4683d8a-b19e-4938-8a3a-10dc845719ee?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9jNDY4M2Q4YS1iMTllLTQ5MzgtOGEzYS0xMGRjODQ1NzE5ZWU/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "53077ffa-db9c-42b2-ab20-153a65d4b3ee" + "5f6f9b45-3003-445a-91d9-fa2c3d9d8c3d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -2682,11 +3358,11 @@ "nosniff" ], "x-ms-request-id": [ - "56c10ba8-7580-4e1b-bb31-ee7b4e7945a8" + "ea606d85-4f22-4db3-bbd3-cac059c7c04e" ], "x-ms-client-request-id": [ - "53077ffa-db9c-42b2-ab20-153a65d4b3ee", - "53077ffa-db9c-42b2-ab20-153a65d4b3ee" + "5f6f9b45-3003-445a-91d9-fa2c3d9d8c3d", + "5f6f9b45-3003-445a-91d9-fa2c3d9d8c3d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2698,16 +3374,16 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "287" + "285" ], "x-ms-correlation-request-id": [ - "56c10ba8-7580-4e1b-bb31-ee7b4e7945a8" + "ea606d85-4f22-4db3-bbd3-cac059c7c04e" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T114448Z:56c10ba8-7580-4e1b-bb31-ee7b4e7945a8" + "WESTINDIA:20220516T171102Z:ea606d85-4f22-4db3-bbd3-cac059c7c04e" ], "Date": [ - "Sat, 26 Mar 2022 11:44:48 GMT" + "Mon, 16 May 2022 17:11:01 GMT" ], "Content-Length": [ "188" @@ -2719,26 +3395,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"5a5ef372-43b7-4b1f-9365-302de03f4a7f\",\r\n \"name\": \"5a5ef372-43b7-4b1f-9365-302de03f4a7f\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-03-26T11:44:27.2615668Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"c4683d8a-b19e-4938-8a3a-10dc845719ee\",\r\n \"name\": \"c4683d8a-b19e-4938-8a3a-10dc845719ee\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T17:10:50.5182694Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/5a5ef372-43b7-4b1f-9365-302de03f4a7f?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy81YTVlZjM3Mi00M2I3LTRiMWYtOTM2NS0zMDJkZTAzZjRhN2Y/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/c4683d8a-b19e-4938-8a3a-10dc845719ee?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9jNDY4M2Q4YS1iMTllLTQ5MzgtOGEzYS0xMGRjODQ1NzE5ZWU/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "53077ffa-db9c-42b2-ab20-153a65d4b3ee" + "5f6f9b45-3003-445a-91d9-fa2c3d9d8c3d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -2752,11 +3428,11 @@ "nosniff" ], "x-ms-request-id": [ - "bf08c410-cb04-41c1-a0f1-a0b8a0c6f2c9" + "4152ead8-d17c-4263-968a-278f2522168b" ], "x-ms-client-request-id": [ - "53077ffa-db9c-42b2-ab20-153a65d4b3ee", - "53077ffa-db9c-42b2-ab20-153a65d4b3ee" + "5f6f9b45-3003-445a-91d9-fa2c3d9d8c3d", + "5f6f9b45-3003-445a-91d9-fa2c3d9d8c3d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2768,16 +3444,86 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "286" + "284" + ], + "x-ms-correlation-request-id": [ + "4152ead8-d17c-4263-968a-278f2522168b" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T171107Z:4152ead8-d17c-4263-968a-278f2522168b" + ], + "Date": [ + "Mon, 16 May 2022 17:11:07 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"c4683d8a-b19e-4938-8a3a-10dc845719ee\",\r\n \"name\": \"c4683d8a-b19e-4938-8a3a-10dc845719ee\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T17:10:50.5182694Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/c4683d8a-b19e-4938-8a3a-10dc845719ee?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9jNDY4M2Q4YS1iMTllLTQ5MzgtOGEzYS0xMGRjODQ1NzE5ZWU/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5f6f9b45-3003-445a-91d9-fa2c3d9d8c3d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "47a4c343-22a0-413d-994e-1980a480486a" + ], + "x-ms-client-request-id": [ + "5f6f9b45-3003-445a-91d9-fa2c3d9d8c3d", + "5f6f9b45-3003-445a-91d9-fa2c3d9d8c3d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "283" ], "x-ms-correlation-request-id": [ - "bf08c410-cb04-41c1-a0f1-a0b8a0c6f2c9" + "47a4c343-22a0-413d-994e-1980a480486a" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T114458Z:bf08c410-cb04-41c1-a0f1-a0b8a0c6f2c9" + "WESTINDIA:20220516T171112Z:47a4c343-22a0-413d-994e-1980a480486a" ], "Date": [ - "Sat, 26 Mar 2022 11:44:58 GMT" + "Mon, 16 May 2022 17:11:12 GMT" ], "Content-Length": [ "304" @@ -2789,26 +3535,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"5a5ef372-43b7-4b1f-9365-302de03f4a7f\",\r\n \"name\": \"5a5ef372-43b7-4b1f-9365-302de03f4a7f\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-03-26T11:44:27.2615668Z\",\r\n \"endTime\": \"2022-03-26T11:44:27.2615668Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"e6d2abcb-6faf-4731-bec3-f45a4a300ae6\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"c4683d8a-b19e-4938-8a3a-10dc845719ee\",\r\n \"name\": \"c4683d8a-b19e-4938-8a3a-10dc845719ee\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-05-16T17:10:50.5182694Z\",\r\n \"endTime\": \"2022-05-16T17:10:50.5182694Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"6f15d3a9-f718-4a8c-9298-cd5ee5a4dbc7\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/5a5ef372-43b7-4b1f-9365-302de03f4a7f?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy81YTVlZjM3Mi00M2I3LTRiMWYtOTM2NS0zMDJkZTAzZjRhN2Y/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/c4683d8a-b19e-4938-8a3a-10dc845719ee?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9jNDY4M2Q4YS1iMTllLTQ5MzgtOGEzYS0xMGRjODQ1NzE5ZWU/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "53077ffa-db9c-42b2-ab20-153a65d4b3ee" + "5f6f9b45-3003-445a-91d9-fa2c3d9d8c3d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -2822,11 +3568,11 @@ "nosniff" ], "x-ms-request-id": [ - "2824553b-6eb3-4fe2-9bb2-8a81fa88a7a4" + "f50116d1-178b-49ea-b76e-872ca0c48a95" ], "x-ms-client-request-id": [ - "53077ffa-db9c-42b2-ab20-153a65d4b3ee", - "53077ffa-db9c-42b2-ab20-153a65d4b3ee" + "5f6f9b45-3003-445a-91d9-fa2c3d9d8c3d", + "5f6f9b45-3003-445a-91d9-fa2c3d9d8c3d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2838,16 +3584,16 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "285" + "282" ], "x-ms-correlation-request-id": [ - "2824553b-6eb3-4fe2-9bb2-8a81fa88a7a4" + "f50116d1-178b-49ea-b76e-872ca0c48a95" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T114459Z:2824553b-6eb3-4fe2-9bb2-8a81fa88a7a4" + "WESTINDIA:20220516T171113Z:f50116d1-178b-49ea-b76e-872ca0c48a95" ], "Date": [ - "Sat, 26 Mar 2022 11:44:58 GMT" + "Mon, 16 May 2022 17:11:12 GMT" ], "Content-Length": [ "304" @@ -2859,26 +3605,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"5a5ef372-43b7-4b1f-9365-302de03f4a7f\",\r\n \"name\": \"5a5ef372-43b7-4b1f-9365-302de03f4a7f\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-03-26T11:44:27.2615668Z\",\r\n \"endTime\": \"2022-03-26T11:44:27.2615668Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"e6d2abcb-6faf-4731-bec3-f45a4a300ae6\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"c4683d8a-b19e-4938-8a3a-10dc845719ee\",\r\n \"name\": \"c4683d8a-b19e-4938-8a3a-10dc845719ee\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-05-16T17:10:50.5182694Z\",\r\n \"endTime\": \"2022-05-16T17:10:50.5182694Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"6f15d3a9-f718-4a8c-9298-cd5ee5a4dbc7\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e6d2abcb-6faf-4731-bec3-f45a4a300ae6?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lNmQyYWJjYi02ZmFmLTQ3MzEtYmVjMy1mNDVhNGEzMDBhZTY/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/6f15d3a9-f718-4a8c-9298-cd5ee5a4dbc7?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy82ZjE1ZDNhOS1mNzE4LTRhOGMtOTI5OC1jZDVlZTVhNGRiYzc/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "53077ffa-db9c-42b2-ab20-153a65d4b3ee" + "5f6f9b45-3003-445a-91d9-fa2c3d9d8c3d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -2896,11 +3642,11 @@ "nosniff" ], "x-ms-request-id": [ - "af5ddd87-e0cb-4c5e-92d4-c25a39c38d57" + "e7c4a6f6-b715-478d-90eb-5de29ff1399b" ], "x-ms-client-request-id": [ - "53077ffa-db9c-42b2-ab20-153a65d4b3ee", - "53077ffa-db9c-42b2-ab20-153a65d4b3ee" + "5f6f9b45-3003-445a-91d9-fa2c3d9d8c3d", + "5f6f9b45-3003-445a-91d9-fa2c3d9d8c3d" ], "X-Powered-By": [ "ASP.NET" @@ -2909,16 +3655,16 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "296" + "295" ], "x-ms-correlation-request-id": [ - "af5ddd87-e0cb-4c5e-92d4-c25a39c38d57" + "e7c4a6f6-b715-478d-90eb-5de29ff1399b" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T114459Z:af5ddd87-e0cb-4c5e-92d4-c25a39c38d57" + "WESTINDIA:20220516T171113Z:e7c4a6f6-b715-478d-90eb-5de29ff1399b" ], "Date": [ - "Sat, 26 Mar 2022 11:44:58 GMT" + "Mon, 16 May 2022 17:11:13 GMT" ], "Content-Length": [ "821" @@ -2930,26 +3676,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e6d2abcb-6faf-4731-bec3-f45a4a300ae6\",\r\n \"name\": \"e6d2abcb-6faf-4731-bec3-f45a4a300ae6\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT21.5238886S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"Storage\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"File Share Name\": \"fs1\",\r\n \"Storage Account Name\": \"pstestsa8895\"\r\n }\r\n },\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"DeleteBackupData\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-03-26T11:44:27.2615668Z\",\r\n \"endTime\": \"2022-03-26T11:44:48.7854554Z\",\r\n \"activityId\": \"53077ffa-db9c-42b2-ab20-153a65d4b3ee\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/6f15d3a9-f718-4a8c-9298-cd5ee5a4dbc7\",\r\n \"name\": \"6f15d3a9-f718-4a8c-9298-cd5ee5a4dbc7\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT21.4380468S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"Storage\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"File Share Name\": \"fs1\",\r\n \"Storage Account Name\": \"pstestsa8895\"\r\n }\r\n },\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"DeleteBackupData\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-05-16T17:10:50.5182694Z\",\r\n \"endTime\": \"2022-05-16T17:11:11.9563162Z\",\r\n \"activityId\": \"5f6f9b45-3003-445a-91d9-fa2c3d9d8c3d\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NT9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5a94137e-4cc3-4b7a-9a6e-e75660179c73" + "20493238-aa87-44e8-8f2e-fe7b989033b5" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -2960,23 +3706,23 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperationResults/0defd780-aca2-48d3-a0d9-228439345172?fabricName=Azure?api-version=2021-12-01" + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperationResults/41140eba-dc94-4cbb-8f4a-a7e0fd5c56fa?fabricName=Azure?api-version=2022-02-01" ], "Retry-After": [ "60" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationsStatus/0defd780-aca2-48d3-a0d9-228439345172?api-version=2019-05-13-preview" + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationsStatus/41140eba-dc94-4cbb-8f4a-a7e0fd5c56fa?api-version=2019-05-13-preview" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "e81f90f2-7191-49ae-a621-978ee97e107c" + "a4287775-bede-4fbf-aa7b-43bcb2019425" ], "x-ms-client-request-id": [ - "5a94137e-4cc3-4b7a-9a6e-e75660179c73", - "5a94137e-4cc3-4b7a-9a6e-e75660179c73" + "20493238-aa87-44e8-8f2e-fe7b989033b5", + "20493238-aa87-44e8-8f2e-fe7b989033b5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2988,13 +3734,13 @@ "14998" ], "x-ms-correlation-request-id": [ - "e81f90f2-7191-49ae-a621-978ee97e107c" + "a4287775-bede-4fbf-aa7b-43bcb2019425" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T114500Z:e81f90f2-7191-49ae-a621-978ee97e107c" + "WESTINDIA:20220516T171114Z:a4287775-bede-4fbf-aa7b-43bcb2019425" ], "Date": [ - "Sat, 26 Mar 2022 11:44:59 GMT" + "Mon, 16 May 2022 17:11:13 GMT" ], "Expires": [ "-1" @@ -3007,22 +3753,22 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/0defd780-aca2-48d3-a0d9-228439345172?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzLzBkZWZkNzgwLWFjYTItNDhkMy1hMGQ5LTIyODQzOTM0NTE3Mj9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/41140eba-dc94-4cbb-8f4a-a7e0fd5c56fa?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzLzQxMTQwZWJhLWRjOTQtNGNiYi04ZjRhLWE3ZTBmZDVjNTZmYT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5a94137e-4cc3-4b7a-9a6e-e75660179c73" + "20493238-aa87-44e8-8f2e-fe7b989033b5" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -3033,7 +3779,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/0defd780-aca2-48d3-a0d9-228439345172?api-version=2021-12-01" + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/41140eba-dc94-4cbb-8f4a-a7e0fd5c56fa?api-version=2022-02-01" ], "Retry-After": [ "60" @@ -3042,11 +3788,11 @@ "nosniff" ], "x-ms-request-id": [ - "08d82362-71da-4835-a98e-64fb4a8e62bb" + "a6486e27-a2a8-46ca-ac98-d762f54de5a4" ], "x-ms-client-request-id": [ - "5a94137e-4cc3-4b7a-9a6e-e75660179c73", - "5a94137e-4cc3-4b7a-9a6e-e75660179c73" + "20493238-aa87-44e8-8f2e-fe7b989033b5", + "20493238-aa87-44e8-8f2e-fe7b989033b5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3058,13 +3804,13 @@ "299" ], "x-ms-correlation-request-id": [ - "08d82362-71da-4835-a98e-64fb4a8e62bb" + "a6486e27-a2a8-46ca-ac98-d762f54de5a4" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T114500Z:08d82362-71da-4835-a98e-64fb4a8e62bb" + "WESTINDIA:20220516T171114Z:a6486e27-a2a8-46ca-ac98-d762f54de5a4" ], "Date": [ - "Sat, 26 Mar 2022 11:44:59 GMT" + "Mon, 16 May 2022 17:11:14 GMT" ], "Expires": [ "-1" @@ -3077,22 +3823,22 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/0defd780-aca2-48d3-a0d9-228439345172?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzLzBkZWZkNzgwLWFjYTItNDhkMy1hMGQ5LTIyODQzOTM0NTE3Mj9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/41140eba-dc94-4cbb-8f4a-a7e0fd5c56fa?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzLzQxMTQwZWJhLWRjOTQtNGNiYi04ZjRhLWE3ZTBmZDVjNTZmYT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5a94137e-4cc3-4b7a-9a6e-e75660179c73" + "20493238-aa87-44e8-8f2e-fe7b989033b5" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -3103,7 +3849,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/0defd780-aca2-48d3-a0d9-228439345172?api-version=2021-12-01" + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/41140eba-dc94-4cbb-8f4a-a7e0fd5c56fa?api-version=2022-02-01" ], "Retry-After": [ "60" @@ -3112,11 +3858,11 @@ "nosniff" ], "x-ms-request-id": [ - "5f52f43a-4a44-4398-af45-076f1573c810" + "6b879f68-257d-4b4e-a90c-9117188e2002" ], "x-ms-client-request-id": [ - "5a94137e-4cc3-4b7a-9a6e-e75660179c73", - "5a94137e-4cc3-4b7a-9a6e-e75660179c73" + "20493238-aa87-44e8-8f2e-fe7b989033b5", + "20493238-aa87-44e8-8f2e-fe7b989033b5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3128,13 +3874,13 @@ "298" ], "x-ms-correlation-request-id": [ - "5f52f43a-4a44-4398-af45-076f1573c810" + "6b879f68-257d-4b4e-a90c-9117188e2002" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T114510Z:5f52f43a-4a44-4398-af45-076f1573c810" + "WESTINDIA:20220516T171120Z:6b879f68-257d-4b4e-a90c-9117188e2002" ], "Date": [ - "Sat, 26 Mar 2022 11:45:10 GMT" + "Mon, 16 May 2022 17:11:19 GMT" ], "Expires": [ "-1" @@ -3147,22 +3893,22 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/0defd780-aca2-48d3-a0d9-228439345172?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzLzBkZWZkNzgwLWFjYTItNDhkMy1hMGQ5LTIyODQzOTM0NTE3Mj9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/41140eba-dc94-4cbb-8f4a-a7e0fd5c56fa?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzLzQxMTQwZWJhLWRjOTQtNGNiYi04ZjRhLWE3ZTBmZDVjNTZmYT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5a94137e-4cc3-4b7a-9a6e-e75660179c73" + "20493238-aa87-44e8-8f2e-fe7b989033b5" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -3173,7 +3919,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/0defd780-aca2-48d3-a0d9-228439345172?api-version=2021-12-01" + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/41140eba-dc94-4cbb-8f4a-a7e0fd5c56fa?api-version=2022-02-01" ], "Retry-After": [ "60" @@ -3182,11 +3928,11 @@ "nosniff" ], "x-ms-request-id": [ - "7ebe57c9-225e-4592-a4d0-e4be7de528b6" + "175fd5e0-80ba-4854-9f73-a8ad6f64b240" ], "x-ms-client-request-id": [ - "5a94137e-4cc3-4b7a-9a6e-e75660179c73", - "5a94137e-4cc3-4b7a-9a6e-e75660179c73" + "20493238-aa87-44e8-8f2e-fe7b989033b5", + "20493238-aa87-44e8-8f2e-fe7b989033b5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3198,13 +3944,13 @@ "297" ], "x-ms-correlation-request-id": [ - "7ebe57c9-225e-4592-a4d0-e4be7de528b6" + "175fd5e0-80ba-4854-9f73-a8ad6f64b240" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T114521Z:7ebe57c9-225e-4592-a4d0-e4be7de528b6" + "WESTINDIA:20220516T171125Z:175fd5e0-80ba-4854-9f73-a8ad6f64b240" ], "Date": [ - "Sat, 26 Mar 2022 11:45:21 GMT" + "Mon, 16 May 2022 17:11:24 GMT" ], "Expires": [ "-1" @@ -3217,22 +3963,22 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/0defd780-aca2-48d3-a0d9-228439345172?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzLzBkZWZkNzgwLWFjYTItNDhkMy1hMGQ5LTIyODQzOTM0NTE3Mj9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/41140eba-dc94-4cbb-8f4a-a7e0fd5c56fa?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzLzQxMTQwZWJhLWRjOTQtNGNiYi04ZjRhLWE3ZTBmZDVjNTZmYT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5a94137e-4cc3-4b7a-9a6e-e75660179c73" + "20493238-aa87-44e8-8f2e-fe7b989033b5" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -3242,15 +3988,21 @@ "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/41140eba-dc94-4cbb-8f4a-a7e0fd5c56fa?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "f83ee95a-0ee0-4da3-9442-1a80ed06254f" + "7e44f42a-5fed-462f-b76e-4cd3bff11085" ], "x-ms-client-request-id": [ - "5a94137e-4cc3-4b7a-9a6e-e75660179c73", - "5a94137e-4cc3-4b7a-9a6e-e75660179c73" + "20493238-aa87-44e8-8f2e-fe7b989033b5", + "20493238-aa87-44e8-8f2e-fe7b989033b5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3262,35 +4014,41 @@ "296" ], "x-ms-correlation-request-id": [ - "f83ee95a-0ee0-4da3-9442-1a80ed06254f" + "7e44f42a-5fed-462f-b76e-4cd3bff11085" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T114531Z:f83ee95a-0ee0-4da3-9442-1a80ed06254f" + "WESTINDIA:20220516T171131Z:7e44f42a-5fed-462f-b76e-4cd3bff11085" ], "Date": [ - "Sat, 26 Mar 2022 11:45:31 GMT" + "Mon, 16 May 2022 17:11:30 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", - "StatusCode": 204 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/0defd780-aca2-48d3-a0d9-228439345172?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzLzBkZWZkNzgwLWFjYTItNDhkMy1hMGQ5LTIyODQzOTM0NTE3Mj9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/41140eba-dc94-4cbb-8f4a-a7e0fd5c56fa?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzLzQxMTQwZWJhLWRjOTQtNGNiYi04ZjRhLWE3ZTBmZDVjNTZmYT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5a94137e-4cc3-4b7a-9a6e-e75660179c73" + "20493238-aa87-44e8-8f2e-fe7b989033b5" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -3300,15 +4058,21 @@ "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/41140eba-dc94-4cbb-8f4a-a7e0fd5c56fa?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "5768605a-cb25-4b50-b5a4-bb4afea72fbb" + "175230da-22ac-48f6-98bc-d35cb45dcd12" ], "x-ms-client-request-id": [ - "5a94137e-4cc3-4b7a-9a6e-e75660179c73", - "5a94137e-4cc3-4b7a-9a6e-e75660179c73" + "20493238-aa87-44e8-8f2e-fe7b989033b5", + "20493238-aa87-44e8-8f2e-fe7b989033b5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3320,13 +4084,135 @@ "295" ], "x-ms-correlation-request-id": [ - "5768605a-cb25-4b50-b5a4-bb4afea72fbb" + "175230da-22ac-48f6-98bc-d35cb45dcd12" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T171136Z:175230da-22ac-48f6-98bc-d35cb45dcd12" + ], + "Date": [ + "Mon, 16 May 2022 17:11:36 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/41140eba-dc94-4cbb-8f4a-a7e0fd5c56fa?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzLzQxMTQwZWJhLWRjOTQtNGNiYi04ZjRhLWE3ZTBmZDVjNTZmYT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "20493238-aa87-44e8-8f2e-fe7b989033b5" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "d0b7390f-790b-4ebe-b576-bf1aa0a19b34" + ], + "x-ms-client-request-id": [ + "20493238-aa87-44e8-8f2e-fe7b989033b5", + "20493238-aa87-44e8-8f2e-fe7b989033b5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "294" + ], + "x-ms-correlation-request-id": [ + "d0b7390f-790b-4ebe-b576-bf1aa0a19b34" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T171141Z:d0b7390f-790b-4ebe-b576-bf1aa0a19b34" + ], + "Date": [ + "Mon, 16 May 2022 17:11:41 GMT" + ] + }, + "ResponseBody": "", + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/41140eba-dc94-4cbb-8f4a-a7e0fd5c56fa?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzLzQxMTQwZWJhLWRjOTQtNGNiYi04ZjRhLWE3ZTBmZDVjNTZmYT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "20493238-aa87-44e8-8f2e-fe7b989033b5" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "d98c91fc-960b-45fc-95bd-fc424a1559dc" + ], + "x-ms-client-request-id": [ + "20493238-aa87-44e8-8f2e-fe7b989033b5", + "20493238-aa87-44e8-8f2e-fe7b989033b5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "293" + ], + "x-ms-correlation-request-id": [ + "d98c91fc-960b-45fc-95bd-fc424a1559dc" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T114532Z:5768605a-cb25-4b50-b5a4-bb4afea72fbb" + "WESTINDIA:20220516T171142Z:d98c91fc-960b-45fc-95bd-fc424a1559dc" ], "Date": [ - "Sat, 26 Mar 2022 11:45:31 GMT" + "Mon, 16 May 2022 17:11:42 GMT" ] }, "ResponseBody": "", diff --git a/src/RecoveryServices/RecoveryServices.Backup.Test/SessionRecords/Microsoft.Azure.Commands.RecoveryServices.Backup.Test.ScenarioTests.ItemTests/TestAzureFSItem.json b/src/RecoveryServices/RecoveryServices.Backup.Test/SessionRecords/Microsoft.Azure.Commands.RecoveryServices.Backup.Test.ScenarioTests.ItemTests/TestAzureFSItem.json index 723916033410..76205b47d42f 100644 --- a/src/RecoveryServices/RecoveryServices.Backup.Test/SessionRecords/Microsoft.Azure.Commands.RecoveryServices.Backup.Test.ScenarioTests.ItemTests/TestAzureFSItem.json +++ b/src/RecoveryServices/RecoveryServices.Backup.Test/SessionRecords/Microsoft.Azure.Commands.RecoveryServices.Backup.Test.ScenarioTests.ItemTests/TestAzureFSItem.json @@ -7,13 +7,13 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f82492ac-f760-4b46-8c60-92bad3de783c" + "0e3138eb-b269-45dd-bcbb-4a9ad55adca7" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesClient/4.3.2.0" @@ -30,10 +30,10 @@ "nosniff" ], "x-ms-request-id": [ - "4339e205-42c6-45e1-85e0-f0703477ca83" + "1cf6e632-3c2b-4280-abf9-14d7d9ba80a8" ], "x-ms-client-request-id": [ - "f82492ac-f760-4b46-8c60-92bad3de783c" + "0e3138eb-b269-45dd-bcbb-4a9ad55adca7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -45,16 +45,16 @@ "11999" ], "x-ms-correlation-request-id": [ - "4339e205-42c6-45e1-85e0-f0703477ca83" + "1cf6e632-3c2b-4280-abf9-14d7d9ba80a8" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T080313Z:4339e205-42c6-45e1-85e0-f0703477ca83" + "JIOINDIAWEST:20220516T153309Z:1cf6e632-3c2b-4280-abf9-14d7d9ba80a8" ], "Date": [ - "Sat, 26 Mar 2022 08:03:12 GMT" + "Mon, 16 May 2022 15:33:08 GMT" ], "Content-Length": [ - "467" + "519" ], "Content-Type": [ "application/json" @@ -63,26 +63,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pstestrsv8895\",\r\n \"etag\": \"W/\\\"datetime'2022-02-18T07%3A20%3A25.5509044Z'\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateEndpointStateForBackup\": \"None\",\r\n \"privateEndpointStateForSiteRecovery\": \"None\"\r\n },\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"RS0\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pstestrsv8895\",\r\n \"etag\": \"W/\\\"datetime'2022-02-18T07%3A20%3A25.5509044Z'\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateEndpointStateForBackup\": \"None\",\r\n \"privateEndpointStateForSiteRecovery\": \"None\",\r\n \"networkSettings\": {\r\n \"publicNetworkAccess\": \"Enabled\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"RS0\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupProtectionContainers?$filter=friendlyName%20eq%20'pstestsa8895'%20and%20backupManagementType%20eq%20'AzureStorage'%20and%20status%20eq%20'Registered'&api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwUHJvdGVjdGlvbkNvbnRhaW5lcnM/JGZpbHRlcj1mcmllbmRseU5hbWUlMjBlcSUyMCdwc3Rlc3RzYTg4OTUnJTIwYW5kJTIwYmFja3VwTWFuYWdlbWVudFR5cGUlMjBlcSUyMCdBenVyZVN0b3JhZ2UnJTIwYW5kJTIwc3RhdHVzJTIwZXElMjAnUmVnaXN0ZXJlZCcmYXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupProtectionContainers?$filter=friendlyName%20eq%20'pstestsa8895'%20and%20backupManagementType%20eq%20'AzureStorage'%20and%20status%20eq%20'Registered'&api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwUHJvdGVjdGlvbkNvbnRhaW5lcnM/JGZpbHRlcj1mcmllbmRseU5hbWUlMjBlcSUyMCdwc3Rlc3RzYTg4OTUnJTIwYW5kJTIwYmFja3VwTWFuYWdlbWVudFR5cGUlMjBlcSUyMCdBenVyZVN0b3JhZ2UnJTIwYW5kJTIwc3RhdHVzJTIwZXElMjAnUmVnaXN0ZXJlZCcmYXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ab18e773-4e56-4844-a59a-fea72594ab79" + "6c6f5524-f711-44f4-aee3-54d0b31355a1" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -96,11 +96,11 @@ "nosniff" ], "x-ms-request-id": [ - "8e95c543-8d4e-4a90-9840-d1877612c3d0" + "1a9ad918-5f28-4977-b9f8-cef4564f594b" ], "x-ms-client-request-id": [ - "ab18e773-4e56-4844-a59a-fea72594ab79", - "ab18e773-4e56-4844-a59a-fea72594ab79" + "6c6f5524-f711-44f4-aee3-54d0b31355a1", + "6c6f5524-f711-44f4-aee3-54d0b31355a1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -115,13 +115,13 @@ "299" ], "x-ms-correlation-request-id": [ - "8e95c543-8d4e-4a90-9840-d1877612c3d0" + "1a9ad918-5f28-4977-b9f8-cef4564f594b" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T080314Z:8e95c543-8d4e-4a90-9840-d1877612c3d0" + "JIOINDIAWEST:20220516T153310Z:1a9ad918-5f28-4977-b9f8-cef4564f594b" ], "Date": [ - "Sat, 26 Mar 2022 08:03:14 GMT" + "Mon, 16 May 2022 15:33:09 GMT" ], "Content-Length": [ "12" @@ -137,22 +137,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupProtectionContainers?$filter=friendlyName%20eq%20'pstestsa8895'%20and%20backupManagementType%20eq%20'AzureStorage'%20and%20status%20eq%20'Registered'&api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwUHJvdGVjdGlvbkNvbnRhaW5lcnM/JGZpbHRlcj1mcmllbmRseU5hbWUlMjBlcSUyMCdwc3Rlc3RzYTg4OTUnJTIwYW5kJTIwYmFja3VwTWFuYWdlbWVudFR5cGUlMjBlcSUyMCdBenVyZVN0b3JhZ2UnJTIwYW5kJTIwc3RhdHVzJTIwZXElMjAnUmVnaXN0ZXJlZCcmYXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupProtectionContainers?$filter=friendlyName%20eq%20'pstestsa8895'%20and%20backupManagementType%20eq%20'AzureStorage'%20and%20status%20eq%20'Registered'&api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwUHJvdGVjdGlvbkNvbnRhaW5lcnM/JGZpbHRlcj1mcmllbmRseU5hbWUlMjBlcSUyMCdwc3Rlc3RzYTg4OTUnJTIwYW5kJTIwYmFja3VwTWFuYWdlbWVudFR5cGUlMjBlcSUyMCdBenVyZVN0b3JhZ2UnJTIwYW5kJTIwc3RhdHVzJTIwZXElMjAnUmVnaXN0ZXJlZCcmYXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b95f8c0b-d0f3-4eb4-8be1-eba4c1669b1f" + "a182faa1-f77b-4f36-a54f-88e8af5775d4" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -166,11 +166,11 @@ "nosniff" ], "x-ms-request-id": [ - "013a626a-58e7-4730-b090-c3fcf91fa536" + "f90c057d-bf53-47ad-aef5-4c4a807cfc85" ], "x-ms-client-request-id": [ - "b95f8c0b-d0f3-4eb4-8be1-eba4c1669b1f", - "b95f8c0b-d0f3-4eb4-8be1-eba4c1669b1f" + "a182faa1-f77b-4f36-a54f-88e8af5775d4", + "a182faa1-f77b-4f36-a54f-88e8af5775d4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,13 +185,13 @@ "297" ], "x-ms-correlation-request-id": [ - "013a626a-58e7-4730-b090-c3fcf91fa536" + "f90c057d-bf53-47ad-aef5-4c4a807cfc85" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T080433Z:013a626a-58e7-4730-b090-c3fcf91fa536" + "JIOINDIAWEST:20220516T153419Z:f90c057d-bf53-47ad-aef5-4c4a807cfc85" ], "Date": [ - "Sat, 26 Mar 2022 08:04:32 GMT" + "Mon, 16 May 2022 15:34:19 GMT" ], "Content-Length": [ "827" @@ -207,22 +207,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupProtectionContainers?$filter=friendlyName%20eq%20'pstestsa8895'%20and%20backupManagementType%20eq%20'AzureStorage'%20and%20status%20eq%20'Registered'&api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwUHJvdGVjdGlvbkNvbnRhaW5lcnM/JGZpbHRlcj1mcmllbmRseU5hbWUlMjBlcSUyMCdwc3Rlc3RzYTg4OTUnJTIwYW5kJTIwYmFja3VwTWFuYWdlbWVudFR5cGUlMjBlcSUyMCdBenVyZVN0b3JhZ2UnJTIwYW5kJTIwc3RhdHVzJTIwZXElMjAnUmVnaXN0ZXJlZCcmYXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupProtectionContainers?$filter=friendlyName%20eq%20'pstestsa8895'%20and%20backupManagementType%20eq%20'AzureStorage'%20and%20status%20eq%20'Registered'&api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwUHJvdGVjdGlvbkNvbnRhaW5lcnM/JGZpbHRlcj1mcmllbmRseU5hbWUlMjBlcSUyMCdwc3Rlc3RzYTg4OTUnJTIwYW5kJTIwYmFja3VwTWFuYWdlbWVudFR5cGUlMjBlcSUyMCdBenVyZVN0b3JhZ2UnJTIwYW5kJTIwc3RhdHVzJTIwZXElMjAnUmVnaXN0ZXJlZCcmYXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6b0d8083-b5d9-4b7f-927d-ef02451130c4" + "06e2afc5-69d8-448d-83fd-c8fccce71bc6" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -236,11 +236,11 @@ "nosniff" ], "x-ms-request-id": [ - "c691f1fc-f491-48d2-be10-a1b92d9c853b" + "59ff207d-a4f4-4fd8-a18b-41541b81881a" ], "x-ms-client-request-id": [ - "6b0d8083-b5d9-4b7f-927d-ef02451130c4", - "6b0d8083-b5d9-4b7f-927d-ef02451130c4" + "06e2afc5-69d8-448d-83fd-c8fccce71bc6", + "06e2afc5-69d8-448d-83fd-c8fccce71bc6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -255,13 +255,13 @@ "296" ], "x-ms-correlation-request-id": [ - "c691f1fc-f491-48d2-be10-a1b92d9c853b" + "59ff207d-a4f4-4fd8-a18b-41541b81881a" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T080435Z:c691f1fc-f491-48d2-be10-a1b92d9c853b" + "JIOINDIAWEST:20220516T153423Z:59ff207d-a4f4-4fd8-a18b-41541b81881a" ], "Date": [ - "Sat, 26 Mar 2022 08:04:34 GMT" + "Mon, 16 May 2022 15:34:22 GMT" ], "Content-Length": [ "827" @@ -277,22 +277,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupPolicies/afspolicy1?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwUG9saWNpZXMvYWZzcG9saWN5MT9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupPolicies/afspolicy1?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwUG9saWNpZXMvYWZzcG9saWN5MT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "229f8eb0-5017-48d2-b3fd-34bb34e86043" + "efa28d59-5aa1-4ba8-b797-dab76f3f3f90" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -306,11 +306,11 @@ "nosniff" ], "x-ms-request-id": [ - "62293165-48ad-4f99-94e4-205f11e42f94" + "9eebe83a-4d44-430d-829a-c8e18b5d0315" ], "x-ms-client-request-id": [ - "229f8eb0-5017-48d2-b3fd-34bb34e86043", - "229f8eb0-5017-48d2-b3fd-34bb34e86043" + "efa28d59-5aa1-4ba8-b797-dab76f3f3f90", + "efa28d59-5aa1-4ba8-b797-dab76f3f3f90" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -325,13 +325,13 @@ "299" ], "x-ms-correlation-request-id": [ - "62293165-48ad-4f99-94e4-205f11e42f94" + "9eebe83a-4d44-430d-829a-c8e18b5d0315" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T080314Z:62293165-48ad-4f99-94e4-205f11e42f94" + "JIOINDIAWEST:20220516T153311Z:9eebe83a-4d44-430d-829a-c8e18b5d0315" ], "Date": [ - "Sat, 26 Mar 2022 08:03:14 GMT" + "Mon, 16 May 2022 15:33:10 GMT" ], "Content-Length": [ "693" @@ -347,22 +347,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupPolicies/afspolicy1?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwUG9saWNpZXMvYWZzcG9saWN5MT9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupPolicies/afspolicy1?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwUG9saWNpZXMvYWZzcG9saWN5MT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b2ac4d34-e607-4047-a942-8b4e7f9f7f29" + "29cd6f16-f3c0-4539-bbbb-23a2826c7676" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -376,11 +376,11 @@ "nosniff" ], "x-ms-request-id": [ - "5bdd19ac-0529-41cb-b3bb-66bad0aa694a" + "193966e1-5f34-408e-b354-856ded40b321" ], "x-ms-client-request-id": [ - "b2ac4d34-e607-4047-a942-8b4e7f9f7f29", - "b2ac4d34-e607-4047-a942-8b4e7f9f7f29" + "29cd6f16-f3c0-4539-bbbb-23a2826c7676", + "29cd6f16-f3c0-4539-bbbb-23a2826c7676" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -395,13 +395,13 @@ "298" ], "x-ms-correlation-request-id": [ - "5bdd19ac-0529-41cb-b3bb-66bad0aa694a" + "193966e1-5f34-408e-b354-856ded40b321" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T080435Z:5bdd19ac-0529-41cb-b3bb-66bad0aa694a" + "JIOINDIAWEST:20220516T153422Z:193966e1-5f34-408e-b354-856ded40b321" ], "Date": [ - "Sat, 26 Mar 2022 08:04:34 GMT" + "Mon, 16 May 2022 15:34:21 GMT" ], "Content-Length": [ "693" @@ -417,22 +417,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupProtectionContainers?$filter=backupManagementType%20eq%20'AzureStorage'&api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwUHJvdGVjdGlvbkNvbnRhaW5lcnM/JGZpbHRlcj1iYWNrdXBNYW5hZ2VtZW50VHlwZSUyMGVxJTIwJ0F6dXJlU3RvcmFnZScmYXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupProtectionContainers?$filter=backupManagementType%20eq%20'AzureStorage'&api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwUHJvdGVjdGlvbkNvbnRhaW5lcnM/JGZpbHRlcj1iYWNrdXBNYW5hZ2VtZW50VHlwZSUyMGVxJTIwJ0F6dXJlU3RvcmFnZScmYXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9ee7925b-c730-4d4e-a557-85424b0f8ec1" + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -446,11 +446,11 @@ "nosniff" ], "x-ms-request-id": [ - "91c538e1-1158-4adc-b9ef-a5198dec0823" + "207a1b68-889f-4cc1-b4d2-ed590236ca39" ], "x-ms-client-request-id": [ - "9ee7925b-c730-4d4e-a557-85424b0f8ec1", - "9ee7925b-c730-4d4e-a557-85424b0f8ec1" + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f", + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -465,13 +465,13 @@ "298" ], "x-ms-correlation-request-id": [ - "91c538e1-1158-4adc-b9ef-a5198dec0823" + "207a1b68-889f-4cc1-b4d2-ed590236ca39" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T080315Z:91c538e1-1158-4adc-b9ef-a5198dec0823" + "JIOINDIAWEST:20220516T153312Z:207a1b68-889f-4cc1-b4d2-ed590236ca39" ], "Date": [ - "Sat, 26 Mar 2022 08:03:15 GMT" + "Mon, 16 May 2022 15:33:11 GMT" ], "Content-Length": [ "12" @@ -487,22 +487,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers?$filter=backupManagementType%20eq%20'AzureStorage'&api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0YWJsZUNvbnRhaW5lcnM/JGZpbHRlcj1iYWNrdXBNYW5hZ2VtZW50VHlwZSUyMGVxJTIwJ0F6dXJlU3RvcmFnZScmYXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers?$filter=backupManagementType%20eq%20'AzureStorage'&api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0YWJsZUNvbnRhaW5lcnM/JGZpbHRlcj1iYWNrdXBNYW5hZ2VtZW50VHlwZSUyMGVxJTIwJ0F6dXJlU3RvcmFnZScmYXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9ee7925b-c730-4d4e-a557-85424b0f8ec1" + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -516,11 +516,11 @@ "nosniff" ], "x-ms-request-id": [ - "7d4c5893-6ce0-49f8-891e-2b974304bc59" + "02e5fabc-a455-457a-a99f-056676459c1c" ], "x-ms-client-request-id": [ - "9ee7925b-c730-4d4e-a557-85424b0f8ec1", - "9ee7925b-c730-4d4e-a557-85424b0f8ec1" + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f", + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -535,16 +535,16 @@ "299" ], "x-ms-correlation-request-id": [ - "7d4c5893-6ce0-49f8-891e-2b974304bc59" + "02e5fabc-a455-457a-a99f-056676459c1c" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T080316Z:7d4c5893-6ce0-49f8-891e-2b974304bc59" + "JIOINDIAWEST:20220516T153313Z:02e5fabc-a455-457a-a99f-056676459c1c" ], "Date": [ - "Sat, 26 Mar 2022 08:03:15 GMT" + "Mon, 16 May 2022 15:33:12 GMT" ], "Content-Length": [ - "14925" + "16771" ], "Content-Type": [ "application/json" @@ -553,26 +553,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;afstests;02xseacan01otds1\",\r\n \"name\": \"StorageContainer;Storage;afstests;02xseacan01otds1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"02xseacan01otds1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/02xseacan01otds1\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;afstests;afsbackupsa\",\r\n \"name\": \"StorageContainer;Storage;afstests;afsbackupsa\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"afsbackupsa\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/afsbackupsa\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;afstests;storageysci5wbex6jyc\",\r\n \"name\": \"StorageContainer;Storage;afstests;storageysci5wbex6jyc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"storageysci5wbex6jyc\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/storageysci5wbex6jyc\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;akkanaseCMK;0byseapod01otds1\",\r\n \"name\": \"StorageContainer;Storage;akkanaseCMK;0byseapod01otds1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"0byseapod01otds1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseCMK/providers/Microsoft.Storage/storageAccounts/0byseapod01otds1\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;akkanaseGRSVault;frmseapod01otds1\",\r\n \"name\": \"StorageContainer;Storage;akkanaseGRSVault;frmseapod01otds1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"frmseapod01otds1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseGRSVault/providers/Microsoft.Storage/storageAccounts/frmseapod01otds1\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;cmk.system;cmkautomationstore\",\r\n \"name\": \"StorageContainer;Storage;cmk.system;cmkautomationstore\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"cmkautomationstore\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/cmk.system/providers/Microsoft.Storage/storageAccounts/cmkautomationstore\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;disk-bvt-test-rg;hv3seapod01otds1\",\r\n \"name\": \"StorageContainer;Storage;disk-bvt-test-rg;hv3seapod01otds1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"hv3seapod01otds1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/disk-bvt-test-rg/providers/Microsoft.Storage/storageAccounts/hv3seapod01otds1\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;DoNotUse-OSS-BVT-SEA-RG;dontuseossrestoreasfile\",\r\n \"name\": \"StorageContainer;Storage;DoNotUse-OSS-BVT-SEA-RG;dontuseossrestoreasfile\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"dontuseossrestoreasfile\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/DoNotUse-OSS-BVT-SEA-RG/providers/Microsoft.Storage/storageAccounts/dontuseossrestoreasfile\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;iaasvm.encryptedvm;iaasvmencryptedvmdiag170\",\r\n \"name\": \"StorageContainer;Storage;iaasvm.encryptedvm;iaasvmencryptedvmdiag170\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"iaasvmencryptedvmdiag170\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.encryptedvm/providers/Microsoft.Storage/storageAccounts/iaasvmencryptedvmdiag170\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;iaasvm.existing;iaasextstore1\",\r\n \"name\": \"StorageContainer;Storage;iaasvm.existing;iaasextstore1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"iaasextstore1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.existing/providers/Microsoft.Storage/storageAccounts/iaasextstore1\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;iaasvm.new;iaasvmnewdiag1\",\r\n \"name\": \"StorageContainer;Storage;iaasvm.new;iaasvmnewdiag1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"iaasvmnewdiag1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.new/providers/Microsoft.Storage/storageAccounts/iaasvmnewdiag1\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;iaasvmhanaworkload.existing;iaasvmhanaworkloadexisti\",\r\n \"name\": \"StorageContainer;Storage;iaasvmhanaworkload.existing;iaasvmhanaworkloadexisti\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"iaasvmhanaworkloadexisti\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvmhanaworkload.existing/providers/Microsoft.Storage/storageAccounts/iaasvmhanaworkloadexisti\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;pscloudtestrg;pscloudtestrgdiag\",\r\n \"name\": \"StorageContainer;Storage;pscloudtestrg;pscloudtestrgdiag\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"pscloudtestrgdiag\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pscloudtestrg/providers/Microsoft.Storage/storageAccounts/pscloudtestrgdiag\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;PSTestRG1e5a278b;pstestsa1e5a278b\",\r\n \"name\": \"StorageContainer;Storage;PSTestRG1e5a278b;pstestsa1e5a278b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"pstestsa1e5a278b\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG1e5a278b/providers/Microsoft.Storage/storageAccounts/pstestsa1e5a278b\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;PSTestRG235879ba;pstestsa235879ba\",\r\n \"name\": \"StorageContainer;Storage;PSTestRG235879ba;pstestsa235879ba\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"pstestsa235879ba\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG235879ba/providers/Microsoft.Storage/storageAccounts/pstestsa235879ba\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;PSTestRG54bdf8da;pstestsa54bdf8da\",\r\n \"name\": \"StorageContainer;Storage;PSTestRG54bdf8da;pstestsa54bdf8da\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"pstestsa54bdf8da\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG54bdf8da/providers/Microsoft.Storage/storageAccounts/pstestsa54bdf8da\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;PSTestRG59e1706f;pstestsa59e1706f\",\r\n \"name\": \"StorageContainer;Storage;PSTestRG59e1706f;pstestsa59e1706f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"pstestsa59e1706f\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG59e1706f/providers/Microsoft.Storage/storageAccounts/pstestsa59e1706f\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895\",\r\n \"name\": \"StorageContainer;Storage;pstestrg8895;pstestsa8895\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"pstestsa8895\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstestsa8895\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;pstestrg8895;pstesttargetsa8895\",\r\n \"name\": \"StorageContainer;Storage;pstestrg8895;pstesttargetsa8895\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"pstesttargetsa8895\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstesttargetsa8895\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;pstestrg8895;pstesttargetsa8896\",\r\n \"name\": \"StorageContainer;Storage;pstestrg8895;pstesttargetsa8896\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"pstesttargetsa8896\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstesttargetsa8896\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;sambit_rg;sarathsa3\",\r\n \"name\": \"StorageContainer;Storage;sambit_rg;sarathsa3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"sarathsa3\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/sambit_rg/providers/Microsoft.Storage/storageAccounts/sarathsa3\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;afstests;02xseacan01otds1\",\r\n \"name\": \"StorageContainer;Storage;afstests;02xseacan01otds1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"02xseacan01otds1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/02xseacan01otds1\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;afstests;afsbackupsa\",\r\n \"name\": \"StorageContainer;Storage;afstests;afsbackupsa\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"afsbackupsa\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/afsbackupsa\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;afstests;storageysci5wbex6jyc\",\r\n \"name\": \"StorageContainer;Storage;afstests;storageysci5wbex6jyc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"storageysci5wbex6jyc\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/storageysci5wbex6jyc\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;akkanaseCMK;0byseapod01otds1\",\r\n \"name\": \"StorageContainer;Storage;akkanaseCMK;0byseapod01otds1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"0byseapod01otds1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseCMK/providers/Microsoft.Storage/storageAccounts/0byseapod01otds1\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;akkanaseGRSVault;frmseapod01otds1\",\r\n \"name\": \"StorageContainer;Storage;akkanaseGRSVault;frmseapod01otds1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"frmseapod01otds1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseGRSVault/providers/Microsoft.Storage/storageAccounts/frmseapod01otds1\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rglx72s62qimgelno2o6rr34a5ovdikhzq5k6dc7773qrbodtnrdcguic5hpiciscne;clitestva4qmim2g5c3cb2tz\",\r\n \"name\": \"StorageContainer;Storage;clitest.rglx72s62qimgelno2o6rr34a5ovdikhzq5k6dc7773qrbodtnrdcguic5hpiciscne;clitestva4qmim2g5c3cb2tz\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"clitestva4qmim2g5c3cb2tz\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rglx72s62qimgelno2o6rr34a5ovdikhzq5k6dc7773qrbodtnrdcguic5hpiciscne/providers/Microsoft.Storage/storageAccounts/clitestva4qmim2g5c3cb2tz\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgm7e2kiyzoto4iaicwwkdomftb7zki5kh2xxwh6yyskpflgsrpkrygkpwpdcltggyb;clitest7gyg4gqt4sxirqdkc\",\r\n \"name\": \"StorageContainer;Storage;clitest.rgm7e2kiyzoto4iaicwwkdomftb7zki5kh2xxwh6yyskpflgsrpkrygkpwpdcltggyb;clitest7gyg4gqt4sxirqdkc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"clitest7gyg4gqt4sxirqdkc\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rgm7e2kiyzoto4iaicwwkdomftb7zki5kh2xxwh6yyskpflgsrpkrygkpwpdcltggyb/providers/Microsoft.Storage/storageAccounts/clitest7gyg4gqt4sxirqdkc\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;cmk.system;cmkautomationstore\",\r\n \"name\": \"StorageContainer;Storage;cmk.system;cmkautomationstore\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"cmkautomationstore\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/cmk.system/providers/Microsoft.Storage/storageAccounts/cmkautomationstore\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;disk-bvt-test-rg;hv3seapod01otds1\",\r\n \"name\": \"StorageContainer;Storage;disk-bvt-test-rg;hv3seapod01otds1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"hv3seapod01otds1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/disk-bvt-test-rg/providers/Microsoft.Storage/storageAccounts/hv3seapod01otds1\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;DoNotUse-OSS-BVT-SEA-RG;dontuseossrestoreasfile\",\r\n \"name\": \"StorageContainer;Storage;DoNotUse-OSS-BVT-SEA-RG;dontuseossrestoreasfile\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"dontuseossrestoreasfile\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/DoNotUse-OSS-BVT-SEA-RG/providers/Microsoft.Storage/storageAccounts/dontuseossrestoreasfile\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;iaasvm.encryptedvm;iaasvmencryptedvmdiag170\",\r\n \"name\": \"StorageContainer;Storage;iaasvm.encryptedvm;iaasvmencryptedvmdiag170\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"iaasvmencryptedvmdiag170\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.encryptedvm/providers/Microsoft.Storage/storageAccounts/iaasvmencryptedvmdiag170\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;iaasvm.existing;iaasextstore1\",\r\n \"name\": \"StorageContainer;Storage;iaasvm.existing;iaasextstore1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"iaasextstore1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.existing/providers/Microsoft.Storage/storageAccounts/iaasextstore1\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;iaasvm.new;iaasvmnewdiag1\",\r\n \"name\": \"StorageContainer;Storage;iaasvm.new;iaasvmnewdiag1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"iaasvmnewdiag1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.new/providers/Microsoft.Storage/storageAccounts/iaasvmnewdiag1\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;iaasvmhanaworkload.existing;iaasvmhanaworkloadexisti\",\r\n \"name\": \"StorageContainer;Storage;iaasvmhanaworkload.existing;iaasvmhanaworkloadexisti\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"iaasvmhanaworkloadexisti\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvmhanaworkload.existing/providers/Microsoft.Storage/storageAccounts/iaasvmhanaworkloadexisti\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;pscloudtestrg;pscloudtestrgdiag\",\r\n \"name\": \"StorageContainer;Storage;pscloudtestrg;pscloudtestrgdiag\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"pscloudtestrgdiag\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pscloudtestrg/providers/Microsoft.Storage/storageAccounts/pscloudtestrgdiag\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;PSTestRG1e5a278b;pstestsa1e5a278b\",\r\n \"name\": \"StorageContainer;Storage;PSTestRG1e5a278b;pstestsa1e5a278b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"pstestsa1e5a278b\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG1e5a278b/providers/Microsoft.Storage/storageAccounts/pstestsa1e5a278b\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;PSTestRG235879ba;pstestsa235879ba\",\r\n \"name\": \"StorageContainer;Storage;PSTestRG235879ba;pstestsa235879ba\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"pstestsa235879ba\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG235879ba/providers/Microsoft.Storage/storageAccounts/pstestsa235879ba\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;PSTestRG54bdf8da;pstestsa54bdf8da\",\r\n \"name\": \"StorageContainer;Storage;PSTestRG54bdf8da;pstestsa54bdf8da\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"pstestsa54bdf8da\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG54bdf8da/providers/Microsoft.Storage/storageAccounts/pstestsa54bdf8da\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;PSTestRG59e1706f;pstestsa59e1706f\",\r\n \"name\": \"StorageContainer;Storage;PSTestRG59e1706f;pstestsa59e1706f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"pstestsa59e1706f\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG59e1706f/providers/Microsoft.Storage/storageAccounts/pstestsa59e1706f\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895\",\r\n \"name\": \"StorageContainer;Storage;pstestrg8895;pstestsa8895\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"pstestsa8895\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstestsa8895\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;pstestrg8895;pstesttargetsa8895\",\r\n \"name\": \"StorageContainer;Storage;pstestrg8895;pstesttargetsa8895\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"pstesttargetsa8895\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstesttargetsa8895\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;pstestrg8895;pstesttargetsa8896\",\r\n \"name\": \"StorageContainer;Storage;pstestrg8895;pstesttargetsa8896\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"pstesttargetsa8896\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstesttargetsa8896\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;sambit_rg;sarathsa3\",\r\n \"name\": \"StorageContainer;Storage;sambit_rg;sarathsa3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"sarathsa3\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/sambit_rg/providers/Microsoft.Storage/storageAccounts/sarathsa3\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NT9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"containerType\": \"StorageContainer\",\r\n \"sourceResourceId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstestsa8895\",\r\n \"resourceGroup\": \"pstestrg8895\",\r\n \"friendlyName\": \"pstestsa8895\",\r\n \"backupManagementType\": \"AzureStorage\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "9ee7925b-c730-4d4e-a557-85424b0f8ec1" + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -589,23 +589,23 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationResults/920e8050-5d8c-48cc-bbdf-cb8141790d50?api-version=2021-12-01" + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationResults/37843642-a76e-4750-b8f3-9aebeb5f1b77?api-version=2022-02-01" ], "Retry-After": [ "60" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationsStatus/920e8050-5d8c-48cc-bbdf-cb8141790d50?api-version=2019-05-13-preview" + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationsStatus/37843642-a76e-4750-b8f3-9aebeb5f1b77?api-version=2019-05-13-preview" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "4ceb2e95-823e-4ca8-917c-819a5fe7b0ca" + "648dfd2a-bb53-49ea-9e68-5b0f454f423a" ], "x-ms-client-request-id": [ - "9ee7925b-c730-4d4e-a557-85424b0f8ec1", - "9ee7925b-c730-4d4e-a557-85424b0f8ec1" + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f", + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -620,13 +620,13 @@ "1199" ], "x-ms-correlation-request-id": [ - "4ceb2e95-823e-4ca8-917c-819a5fe7b0ca" + "648dfd2a-bb53-49ea-9e68-5b0f454f423a" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T080317Z:4ceb2e95-823e-4ca8-917c-819a5fe7b0ca" + "JIOINDIAWEST:20220516T153314Z:648dfd2a-bb53-49ea-9e68-5b0f454f423a" ], "Date": [ - "Sat, 26 Mar 2022 08:03:17 GMT" + "Mon, 16 May 2022 15:33:13 GMT" ], "Content-Length": [ "2" @@ -642,22 +642,22 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895/operationResults/920e8050-5d8c-48cc-bbdf-cb8141790d50?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9vcGVyYXRpb25SZXN1bHRzLzkyMGU4MDUwLTVkOGMtNDhjYy1iYmRmLWNiODE0MTc5MGQ1MD9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895/operationResults/37843642-a76e-4750-b8f3-9aebeb5f1b77?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9vcGVyYXRpb25SZXN1bHRzLzM3ODQzNjQyLWE3NmUtNDc1MC1iOGYzLTlhZWJlYjVmMWI3Nz9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9ee7925b-c730-4d4e-a557-85424b0f8ec1" + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -668,23 +668,23 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationResults/920e8050-5d8c-48cc-bbdf-cb8141790d50?api-version=2021-12-01" + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationResults/37843642-a76e-4750-b8f3-9aebeb5f1b77?api-version=2022-02-01" ], "Retry-After": [ "60" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationsStatus/920e8050-5d8c-48cc-bbdf-cb8141790d50?api-version=2019-05-13-preview" + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationsStatus/37843642-a76e-4750-b8f3-9aebeb5f1b77?api-version=2019-05-13-preview" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "d13189e1-5799-495a-b341-4d62c8b9e2d3" + "29d117b4-8fc8-4753-b07c-5afffbf5c37d" ], "x-ms-client-request-id": [ - "9ee7925b-c730-4d4e-a557-85424b0f8ec1", - "9ee7925b-c730-4d4e-a557-85424b0f8ec1" + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f", + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -699,13 +699,13 @@ "299" ], "x-ms-correlation-request-id": [ - "d13189e1-5799-495a-b341-4d62c8b9e2d3" + "29d117b4-8fc8-4753-b07c-5afffbf5c37d" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T080318Z:d13189e1-5799-495a-b341-4d62c8b9e2d3" + "JIOINDIAWEST:20220516T153315Z:29d117b4-8fc8-4753-b07c-5afffbf5c37d" ], "Date": [ - "Sat, 26 Mar 2022 08:03:18 GMT" + "Mon, 16 May 2022 15:33:14 GMT" ], "Content-Length": [ "2" @@ -721,22 +721,22 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895/operationResults/920e8050-5d8c-48cc-bbdf-cb8141790d50?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9vcGVyYXRpb25SZXN1bHRzLzkyMGU4MDUwLTVkOGMtNDhjYy1iYmRmLWNiODE0MTc5MGQ1MD9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895/operationResults/37843642-a76e-4750-b8f3-9aebeb5f1b77?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9vcGVyYXRpb25SZXN1bHRzLzM3ODQzNjQyLWE3NmUtNDc1MC1iOGYzLTlhZWJlYjVmMWI3Nz9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9ee7925b-c730-4d4e-a557-85424b0f8ec1" + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -747,23 +747,23 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationResults/920e8050-5d8c-48cc-bbdf-cb8141790d50?api-version=2021-12-01" + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationResults/37843642-a76e-4750-b8f3-9aebeb5f1b77?api-version=2022-02-01" ], "Retry-After": [ "60" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationsStatus/920e8050-5d8c-48cc-bbdf-cb8141790d50?api-version=2019-05-13-preview" + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationsStatus/37843642-a76e-4750-b8f3-9aebeb5f1b77?api-version=2019-05-13-preview" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "68fb624c-97cb-43ef-b9b1-7aeffc832722" + "5c88dee5-d34d-4aca-8ee3-9ec0ca3d4622" ], "x-ms-client-request-id": [ - "9ee7925b-c730-4d4e-a557-85424b0f8ec1", - "9ee7925b-c730-4d4e-a557-85424b0f8ec1" + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f", + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -778,13 +778,13 @@ "298" ], "x-ms-correlation-request-id": [ - "68fb624c-97cb-43ef-b9b1-7aeffc832722" + "5c88dee5-d34d-4aca-8ee3-9ec0ca3d4622" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T080323Z:68fb624c-97cb-43ef-b9b1-7aeffc832722" + "JIOINDIAWEST:20220516T153316Z:5c88dee5-d34d-4aca-8ee3-9ec0ca3d4622" ], "Date": [ - "Sat, 26 Mar 2022 08:03:23 GMT" + "Mon, 16 May 2022 15:33:15 GMT" ], "Content-Length": [ "2" @@ -800,22 +800,22 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895/operationResults/920e8050-5d8c-48cc-bbdf-cb8141790d50?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9vcGVyYXRpb25SZXN1bHRzLzkyMGU4MDUwLTVkOGMtNDhjYy1iYmRmLWNiODE0MTc5MGQ1MD9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895/operationResults/37843642-a76e-4750-b8f3-9aebeb5f1b77?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9vcGVyYXRpb25SZXN1bHRzLzM3ODQzNjQyLWE3NmUtNDc1MC1iOGYzLTlhZWJlYjVmMWI3Nz9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9ee7925b-c730-4d4e-a557-85424b0f8ec1" + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -826,23 +826,23 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationResults/920e8050-5d8c-48cc-bbdf-cb8141790d50?api-version=2021-12-01" + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationResults/37843642-a76e-4750-b8f3-9aebeb5f1b77?api-version=2022-02-01" ], "Retry-After": [ "60" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationsStatus/920e8050-5d8c-48cc-bbdf-cb8141790d50?api-version=2019-05-13-preview" + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationsStatus/37843642-a76e-4750-b8f3-9aebeb5f1b77?api-version=2019-05-13-preview" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "3da4c232-d736-4432-b4d5-378e289b6765" + "1d5924dc-324a-4bd8-a889-2f98554b4666" ], "x-ms-client-request-id": [ - "9ee7925b-c730-4d4e-a557-85424b0f8ec1", - "9ee7925b-c730-4d4e-a557-85424b0f8ec1" + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f", + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -857,13 +857,13 @@ "297" ], "x-ms-correlation-request-id": [ - "3da4c232-d736-4432-b4d5-378e289b6765" + "1d5924dc-324a-4bd8-a889-2f98554b4666" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T080329Z:3da4c232-d736-4432-b4d5-378e289b6765" + "JIOINDIAWEST:20220516T153316Z:1d5924dc-324a-4bd8-a889-2f98554b4666" ], "Date": [ - "Sat, 26 Mar 2022 08:03:28 GMT" + "Mon, 16 May 2022 15:33:15 GMT" ], "Content-Length": [ "2" @@ -879,22 +879,22 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895/operationResults/920e8050-5d8c-48cc-bbdf-cb8141790d50?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9vcGVyYXRpb25SZXN1bHRzLzkyMGU4MDUwLTVkOGMtNDhjYy1iYmRmLWNiODE0MTc5MGQ1MD9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895/operationResults/37843642-a76e-4750-b8f3-9aebeb5f1b77?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9vcGVyYXRpb25SZXN1bHRzLzM3ODQzNjQyLWE3NmUtNDc1MC1iOGYzLTlhZWJlYjVmMWI3Nz9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9ee7925b-c730-4d4e-a557-85424b0f8ec1" + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -905,23 +905,23 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationResults/920e8050-5d8c-48cc-bbdf-cb8141790d50?api-version=2021-12-01" + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationResults/37843642-a76e-4750-b8f3-9aebeb5f1b77?api-version=2022-02-01" ], "Retry-After": [ "60" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationsStatus/920e8050-5d8c-48cc-bbdf-cb8141790d50?api-version=2019-05-13-preview" + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationsStatus/37843642-a76e-4750-b8f3-9aebeb5f1b77?api-version=2019-05-13-preview" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "e3d5b315-40bc-405a-bd50-ebcccd6da5f6" + "0cad7b5e-9a6c-4524-b352-2f1141983233" ], "x-ms-client-request-id": [ - "9ee7925b-c730-4d4e-a557-85424b0f8ec1", - "9ee7925b-c730-4d4e-a557-85424b0f8ec1" + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f", + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -936,13 +936,13 @@ "296" ], "x-ms-correlation-request-id": [ - "e3d5b315-40bc-405a-bd50-ebcccd6da5f6" + "0cad7b5e-9a6c-4524-b352-2f1141983233" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T080335Z:e3d5b315-40bc-405a-bd50-ebcccd6da5f6" + "JIOINDIAWEST:20220516T153317Z:0cad7b5e-9a6c-4524-b352-2f1141983233" ], "Date": [ - "Sat, 26 Mar 2022 08:03:34 GMT" + "Mon, 16 May 2022 15:33:16 GMT" ], "Content-Length": [ "2" @@ -958,22 +958,22 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895/operationResults/920e8050-5d8c-48cc-bbdf-cb8141790d50?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9vcGVyYXRpb25SZXN1bHRzLzkyMGU4MDUwLTVkOGMtNDhjYy1iYmRmLWNiODE0MTc5MGQ1MD9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895/operationResults/37843642-a76e-4750-b8f3-9aebeb5f1b77?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9vcGVyYXRpb25SZXN1bHRzLzM3ODQzNjQyLWE3NmUtNDc1MC1iOGYzLTlhZWJlYjVmMWI3Nz9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9ee7925b-c730-4d4e-a557-85424b0f8ec1" + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -984,23 +984,23 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationResults/920e8050-5d8c-48cc-bbdf-cb8141790d50?api-version=2021-12-01" + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationResults/37843642-a76e-4750-b8f3-9aebeb5f1b77?api-version=2022-02-01" ], "Retry-After": [ "60" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationsStatus/920e8050-5d8c-48cc-bbdf-cb8141790d50?api-version=2019-05-13-preview" + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationsStatus/37843642-a76e-4750-b8f3-9aebeb5f1b77?api-version=2019-05-13-preview" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "1eeb5ee7-e082-425f-abf9-4c47f86c002a" + "da293696-895f-42d2-972b-2ab8bd0dbace" ], "x-ms-client-request-id": [ - "9ee7925b-c730-4d4e-a557-85424b0f8ec1", - "9ee7925b-c730-4d4e-a557-85424b0f8ec1" + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f", + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1015,13 +1015,13 @@ "295" ], "x-ms-correlation-request-id": [ - "1eeb5ee7-e082-425f-abf9-4c47f86c002a" + "da293696-895f-42d2-972b-2ab8bd0dbace" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T080341Z:1eeb5ee7-e082-425f-abf9-4c47f86c002a" + "JIOINDIAWEST:20220516T153317Z:da293696-895f-42d2-972b-2ab8bd0dbace" ], "Date": [ - "Sat, 26 Mar 2022 08:03:40 GMT" + "Mon, 16 May 2022 15:33:16 GMT" ], "Content-Length": [ "2" @@ -1037,22 +1037,22 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895/operationResults/920e8050-5d8c-48cc-bbdf-cb8141790d50?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9vcGVyYXRpb25SZXN1bHRzLzkyMGU4MDUwLTVkOGMtNDhjYy1iYmRmLWNiODE0MTc5MGQ1MD9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895/operationResults/37843642-a76e-4750-b8f3-9aebeb5f1b77?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9vcGVyYXRpb25SZXN1bHRzLzM3ODQzNjQyLWE3NmUtNDc1MC1iOGYzLTlhZWJlYjVmMWI3Nz9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9ee7925b-c730-4d4e-a557-85424b0f8ec1" + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -1062,15 +1062,24 @@ "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationResults/37843642-a76e-4750-b8f3-9aebeb5f1b77?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationsStatus/37843642-a76e-4750-b8f3-9aebeb5f1b77?api-version=2019-05-13-preview" + ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "bf3a380e-5713-41ee-b98a-bc3ddd9847ae" + "2587f12f-b14e-4b5e-bc55-3bf4c6df9396" ], "x-ms-client-request-id": [ - "9ee7925b-c730-4d4e-a557-85424b0f8ec1", - "9ee7925b-c730-4d4e-a557-85424b0f8ec1" + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f", + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1085,16 +1094,16 @@ "294" ], "x-ms-correlation-request-id": [ - "bf3a380e-5713-41ee-b98a-bc3ddd9847ae" + "2587f12f-b14e-4b5e-bc55-3bf4c6df9396" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T080346Z:bf3a380e-5713-41ee-b98a-bc3ddd9847ae" + "JIOINDIAWEST:20220516T153318Z:2587f12f-b14e-4b5e-bc55-3bf4c6df9396" ], "Date": [ - "Sat, 26 Mar 2022 08:03:46 GMT" + "Mon, 16 May 2022 15:33:17 GMT" ], "Content-Length": [ - "737" + "2" ], "Content-Type": [ "application/json" @@ -1103,26 +1112,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895\",\r\n \"name\": \"StorageContainer;Storage;pstestrg8895;pstestsa8895\",\r\n \"properties\": {\r\n \"sourceResourceId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstestsa8895\",\r\n \"protectedItemCount\": 0,\r\n \"acquireStorageAccountLock\": \"Acquire\",\r\n \"friendlyName\": \"pstestsa8895\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"registrationStatus\": \"Registered\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerType\": \"StorageContainer\",\r\n \"protectableObjectType\": \"StorageContainer\"\r\n }\r\n}", - "StatusCode": 200 + "ResponseBody": "{}", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895/operationResults/920e8050-5d8c-48cc-bbdf-cb8141790d50?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9vcGVyYXRpb25SZXN1bHRzLzkyMGU4MDUwLTVkOGMtNDhjYy1iYmRmLWNiODE0MTc5MGQ1MD9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895/operationResults/37843642-a76e-4750-b8f3-9aebeb5f1b77?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9vcGVyYXRpb25SZXN1bHRzLzM3ODQzNjQyLWE3NmUtNDc1MC1iOGYzLTlhZWJlYjVmMWI3Nz9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9ee7925b-c730-4d4e-a557-85424b0f8ec1" + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -1132,15 +1141,24 @@ "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationResults/37843642-a76e-4750-b8f3-9aebeb5f1b77?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationsStatus/37843642-a76e-4750-b8f3-9aebeb5f1b77?api-version=2019-05-13-preview" + ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "3b591ecd-5db0-4979-bb52-d56c3ec2edb2" + "ae78011b-b06f-4e82-bd85-f1bae68f0633" ], "x-ms-client-request-id": [ - "9ee7925b-c730-4d4e-a557-85424b0f8ec1", - "9ee7925b-c730-4d4e-a557-85424b0f8ec1" + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f", + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1155,16 +1173,16 @@ "293" ], "x-ms-correlation-request-id": [ - "3b591ecd-5db0-4979-bb52-d56c3ec2edb2" + "ae78011b-b06f-4e82-bd85-f1bae68f0633" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T080346Z:3b591ecd-5db0-4979-bb52-d56c3ec2edb2" + "JIOINDIAWEST:20220516T153318Z:ae78011b-b06f-4e82-bd85-f1bae68f0633" ], "Date": [ - "Sat, 26 Mar 2022 08:03:46 GMT" + "Mon, 16 May 2022 15:33:18 GMT" ], "Content-Length": [ - "737" + "2" ], "Content-Type": [ "application/json" @@ -1173,26 +1191,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895\",\r\n \"name\": \"StorageContainer;Storage;pstestrg8895;pstestsa8895\",\r\n \"properties\": {\r\n \"sourceResourceId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstestsa8895\",\r\n \"protectedItemCount\": 0,\r\n \"acquireStorageAccountLock\": \"Acquire\",\r\n \"friendlyName\": \"pstestsa8895\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"registrationStatus\": \"Registered\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerType\": \"StorageContainer\",\r\n \"protectableObjectType\": \"StorageContainer\"\r\n }\r\n}", - "StatusCode": 200 + "ResponseBody": "{}", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupProtectableItems?$filter=backupManagementType%20eq%20'AzureStorage'&api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwUHJvdGVjdGFibGVJdGVtcz8kZmlsdGVyPWJhY2t1cE1hbmFnZW1lbnRUeXBlJTIwZXElMjAnQXp1cmVTdG9yYWdlJyZhcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895/operationResults/37843642-a76e-4750-b8f3-9aebeb5f1b77?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9vcGVyYXRpb25SZXN1bHRzLzM3ODQzNjQyLWE3NmUtNDc1MC1iOGYzLTlhZWJlYjVmMWI3Nz9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9ee7925b-c730-4d4e-a557-85424b0f8ec1" + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -1202,15 +1220,24 @@ "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationResults/37843642-a76e-4750-b8f3-9aebeb5f1b77?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationsStatus/37843642-a76e-4750-b8f3-9aebeb5f1b77?api-version=2019-05-13-preview" + ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "7446bcd4-65e8-4002-aca6-6da516509a24" + "79defc18-e780-49f5-999a-ac21473f6eef" ], "x-ms-client-request-id": [ - "9ee7925b-c730-4d4e-a557-85424b0f8ec1", - "9ee7925b-c730-4d4e-a557-85424b0f8ec1" + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f", + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1222,19 +1249,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "299" + "292" ], "x-ms-correlation-request-id": [ - "7446bcd4-65e8-4002-aca6-6da516509a24" + "79defc18-e780-49f5-999a-ac21473f6eef" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T080347Z:7446bcd4-65e8-4002-aca6-6da516509a24" + "JIOINDIAWEST:20220516T153319Z:79defc18-e780-49f5-999a-ac21473f6eef" ], "Date": [ - "Sat, 26 Mar 2022 08:03:47 GMT" + "Mon, 16 May 2022 15:33:18 GMT" ], "Content-Length": [ - "947" + "2" ], "Content-Type": [ "application/json" @@ -1243,32 +1270,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/storagecontainer;storage;pstestrg8895;pstestsa8895/protectableItems/azurefileshare;698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959\",\r\n \"name\": \"azurefileshare;698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems\",\r\n \"properties\": {\r\n \"parentContainerFabricId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstestsa8895\",\r\n \"parentContainerFriendlyName\": \"pstestsa8895\",\r\n \"azureFileShareType\": \"XSMB\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"workloadType\": \"AzureFileShare\",\r\n \"protectableItemType\": \"AzureFileShare\",\r\n \"friendlyName\": \"fs1\",\r\n \"protectionState\": \"NotProtected\"\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 + "ResponseBody": "{}", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/storagecontainer%3Bstorage%3Bpstestrg8895%3Bpstestsa8895/protectedItems/azurefileshare%3B698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9zdG9yYWdlY29udGFpbmVyJTNCc3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9wcm90ZWN0ZWRJdGVtcy9henVyZWZpbGVzaGFyZSUzQjY5OGRmNTk1OTQ4ZTIzNTVmMmJiNzQ0YTQxY2YyNDVkNGJhMTI1NWQ5Njk5Y2MzYzJhZDFmNTA0NWUxNzc5NTk/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"protectedItemType\": \"AzureFileShareProtectedItem\",\r\n \"sourceResourceId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstestsa8895\",\r\n \"policyId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupPolicies/afspolicy1\"\r\n }\r\n}", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895/operationResults/37843642-a76e-4750-b8f3-9aebeb5f1b77?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9vcGVyYXRpb25SZXN1bHRzLzM3ODQzNjQyLWE3NmUtNDc1MC1iOGYzLTlhZWJlYjVmMWI3Nz9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9ee7925b-c730-4d4e-a557-85424b0f8ec1" + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "433" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -1279,69 +1300,75 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/storagecontainer;storage;pstestrg8895;pstestsa8895/protectedItems/azurefileshare;698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959/operationResults/728f1a0f-6e48-40aa-98d0-17395ef9b59a?api-version=2021-12-01" + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationResults/37843642-a76e-4750-b8f3-9aebeb5f1b77?api-version=2022-02-01" ], "Retry-After": [ "60" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/storagecontainer;storage;pstestrg8895;pstestsa8895/protectedItems/azurefileshare;698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959/operationsStatus/728f1a0f-6e48-40aa-98d0-17395ef9b59a?api-version=2021-12-01" + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationsStatus/37843642-a76e-4750-b8f3-9aebeb5f1b77?api-version=2019-05-13-preview" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "0197a929-d8c4-4773-9850-de684552694b" + "883db9ae-6c57-42ab-be44-d693e85de287" ], "x-ms-client-request-id": [ - "9ee7925b-c730-4d4e-a557-85424b0f8ec1", - "9ee7925b-c730-4d4e-a557-85424b0f8ec1" + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f", + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f" ], "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-ratelimit-remaining-subscription-resource-requests": [ + "291" ], "x-ms-correlation-request-id": [ - "0197a929-d8c4-4773-9850-de684552694b" + "883db9ae-6c57-42ab-be44-d693e85de287" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T080348Z:0197a929-d8c4-4773-9850-de684552694b" + "JIOINDIAWEST:20220516T153319Z:883db9ae-6c57-42ab-be44-d693e85de287" ], "Date": [ - "Sat, 26 Mar 2022 08:03:48 GMT" + "Mon, 16 May 2022 15:33:19 GMT" + ], + "Content-Length": [ + "2" + ], + "Content-Type": [ + "application/json" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, - "ResponseBody": "", + "ResponseBody": "{}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/728f1a0f-6e48-40aa-98d0-17395ef9b59a?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy83MjhmMWEwZi02ZTQ4LTQwYWEtOThkMC0xNzM5NWVmOWI1OWE/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895/operationResults/37843642-a76e-4750-b8f3-9aebeb5f1b77?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9vcGVyYXRpb25SZXN1bHRzLzM3ODQzNjQyLWE3NmUtNDc1MC1iOGYzLTlhZWJlYjVmMWI3Nz9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9ee7925b-c730-4d4e-a557-85424b0f8ec1" + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -1351,15 +1378,24 @@ "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationResults/37843642-a76e-4750-b8f3-9aebeb5f1b77?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationsStatus/37843642-a76e-4750-b8f3-9aebeb5f1b77?api-version=2019-05-13-preview" + ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "7637432d-059c-4084-800f-1dcf7b5a6a6b" + "3aad81bb-667d-4fca-aeee-06cd67d58019" ], "x-ms-client-request-id": [ - "9ee7925b-c730-4d4e-a557-85424b0f8ec1", - "9ee7925b-c730-4d4e-a557-85424b0f8ec1" + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f", + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1371,19 +1407,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "299" + "290" ], "x-ms-correlation-request-id": [ - "7637432d-059c-4084-800f-1dcf7b5a6a6b" + "3aad81bb-667d-4fca-aeee-06cd67d58019" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T080348Z:7637432d-059c-4084-800f-1dcf7b5a6a6b" + "JIOINDIAWEST:20220516T153320Z:3aad81bb-667d-4fca-aeee-06cd67d58019" ], "Date": [ - "Sat, 26 Mar 2022 08:03:48 GMT" + "Mon, 16 May 2022 15:33:19 GMT" ], "Content-Length": [ - "188" + "2" ], "Content-Type": [ "application/json" @@ -1392,26 +1428,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"728f1a0f-6e48-40aa-98d0-17395ef9b59a\",\r\n \"name\": \"728f1a0f-6e48-40aa-98d0-17395ef9b59a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-03-26T08:03:48.1427742Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", - "StatusCode": 200 + "ResponseBody": "{}", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/728f1a0f-6e48-40aa-98d0-17395ef9b59a?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy83MjhmMWEwZi02ZTQ4LTQwYWEtOThkMC0xNzM5NWVmOWI1OWE/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895/operationResults/37843642-a76e-4750-b8f3-9aebeb5f1b77?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9vcGVyYXRpb25SZXN1bHRzLzM3ODQzNjQyLWE3NmUtNDc1MC1iOGYzLTlhZWJlYjVmMWI3Nz9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9ee7925b-c730-4d4e-a557-85424b0f8ec1" + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -1421,15 +1457,24 @@ "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationResults/37843642-a76e-4750-b8f3-9aebeb5f1b77?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationsStatus/37843642-a76e-4750-b8f3-9aebeb5f1b77?api-version=2019-05-13-preview" + ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "1cf6b8bb-0c9c-43e1-bc1a-2f9fadf76f2a" + "eaac1ef7-2395-41ce-be95-0a52c688811f" ], "x-ms-client-request-id": [ - "9ee7925b-c730-4d4e-a557-85424b0f8ec1", - "9ee7925b-c730-4d4e-a557-85424b0f8ec1" + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f", + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1441,19 +1486,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "298" + "289" ], "x-ms-correlation-request-id": [ - "1cf6b8bb-0c9c-43e1-bc1a-2f9fadf76f2a" + "eaac1ef7-2395-41ce-be95-0a52c688811f" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T080354Z:1cf6b8bb-0c9c-43e1-bc1a-2f9fadf76f2a" + "JIOINDIAWEST:20220516T153321Z:eaac1ef7-2395-41ce-be95-0a52c688811f" ], "Date": [ - "Sat, 26 Mar 2022 08:03:54 GMT" + "Mon, 16 May 2022 15:33:20 GMT" ], "Content-Length": [ - "188" + "2" ], "Content-Type": [ "application/json" @@ -1462,26 +1507,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"728f1a0f-6e48-40aa-98d0-17395ef9b59a\",\r\n \"name\": \"728f1a0f-6e48-40aa-98d0-17395ef9b59a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-03-26T08:03:48.1427742Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", - "StatusCode": 200 + "ResponseBody": "{}", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/728f1a0f-6e48-40aa-98d0-17395ef9b59a?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy83MjhmMWEwZi02ZTQ4LTQwYWEtOThkMC0xNzM5NWVmOWI1OWE/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895/operationResults/37843642-a76e-4750-b8f3-9aebeb5f1b77?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9vcGVyYXRpb25SZXN1bHRzLzM3ODQzNjQyLWE3NmUtNDc1MC1iOGYzLTlhZWJlYjVmMWI3Nz9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9ee7925b-c730-4d4e-a557-85424b0f8ec1" + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -1491,15 +1536,24 @@ "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationResults/37843642-a76e-4750-b8f3-9aebeb5f1b77?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationsStatus/37843642-a76e-4750-b8f3-9aebeb5f1b77?api-version=2019-05-13-preview" + ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "08f8bc5b-73c4-41f7-be4d-34d098a30b80" + "230206eb-9e1c-4377-aba7-a20e54fb66a4" ], "x-ms-client-request-id": [ - "9ee7925b-c730-4d4e-a557-85424b0f8ec1", - "9ee7925b-c730-4d4e-a557-85424b0f8ec1" + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f", + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1511,19 +1565,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "297" + "288" ], "x-ms-correlation-request-id": [ - "08f8bc5b-73c4-41f7-be4d-34d098a30b80" + "230206eb-9e1c-4377-aba7-a20e54fb66a4" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T080359Z:08f8bc5b-73c4-41f7-be4d-34d098a30b80" + "JIOINDIAWEST:20220516T153321Z:230206eb-9e1c-4377-aba7-a20e54fb66a4" ], "Date": [ - "Sat, 26 Mar 2022 08:03:59 GMT" + "Mon, 16 May 2022 15:33:20 GMT" ], "Content-Length": [ - "188" + "2" ], "Content-Type": [ "application/json" @@ -1532,26 +1586,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"728f1a0f-6e48-40aa-98d0-17395ef9b59a\",\r\n \"name\": \"728f1a0f-6e48-40aa-98d0-17395ef9b59a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-03-26T08:03:48.1427742Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", - "StatusCode": 200 + "ResponseBody": "{}", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/728f1a0f-6e48-40aa-98d0-17395ef9b59a?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy83MjhmMWEwZi02ZTQ4LTQwYWEtOThkMC0xNzM5NWVmOWI1OWE/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895/operationResults/37843642-a76e-4750-b8f3-9aebeb5f1b77?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9vcGVyYXRpb25SZXN1bHRzLzM3ODQzNjQyLWE3NmUtNDc1MC1iOGYzLTlhZWJlYjVmMWI3Nz9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9ee7925b-c730-4d4e-a557-85424b0f8ec1" + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -1561,15 +1615,24 @@ "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationResults/37843642-a76e-4750-b8f3-9aebeb5f1b77?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationsStatus/37843642-a76e-4750-b8f3-9aebeb5f1b77?api-version=2019-05-13-preview" + ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "54b88e3c-f3cb-4177-9384-02a194c3a315" + "0c7b12a2-66e2-4b1e-b906-4065db05c9cc" ], "x-ms-client-request-id": [ - "9ee7925b-c730-4d4e-a557-85424b0f8ec1", - "9ee7925b-c730-4d4e-a557-85424b0f8ec1" + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f", + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1581,19 +1644,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "296" + "287" ], "x-ms-correlation-request-id": [ - "54b88e3c-f3cb-4177-9384-02a194c3a315" + "0c7b12a2-66e2-4b1e-b906-4065db05c9cc" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T080405Z:54b88e3c-f3cb-4177-9384-02a194c3a315" + "JIOINDIAWEST:20220516T153322Z:0c7b12a2-66e2-4b1e-b906-4065db05c9cc" ], "Date": [ - "Sat, 26 Mar 2022 08:04:04 GMT" + "Mon, 16 May 2022 15:33:21 GMT" ], "Content-Length": [ - "188" + "2" ], "Content-Type": [ "application/json" @@ -1602,26 +1665,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"728f1a0f-6e48-40aa-98d0-17395ef9b59a\",\r\n \"name\": \"728f1a0f-6e48-40aa-98d0-17395ef9b59a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-03-26T08:03:48.1427742Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", - "StatusCode": 200 + "ResponseBody": "{}", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/728f1a0f-6e48-40aa-98d0-17395ef9b59a?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy83MjhmMWEwZi02ZTQ4LTQwYWEtOThkMC0xNzM5NWVmOWI1OWE/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895/operationResults/37843642-a76e-4750-b8f3-9aebeb5f1b77?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9vcGVyYXRpb25SZXN1bHRzLzM3ODQzNjQyLWE3NmUtNDc1MC1iOGYzLTlhZWJlYjVmMWI3Nz9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9ee7925b-c730-4d4e-a557-85424b0f8ec1" + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -1631,15 +1694,24 @@ "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationResults/37843642-a76e-4750-b8f3-9aebeb5f1b77?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationsStatus/37843642-a76e-4750-b8f3-9aebeb5f1b77?api-version=2019-05-13-preview" + ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "bae796eb-7c02-4c23-ab45-d6be56ffd45a" + "ebbf373c-4616-4b20-b8ae-cda7d3e7c9cf" ], "x-ms-client-request-id": [ - "9ee7925b-c730-4d4e-a557-85424b0f8ec1", - "9ee7925b-c730-4d4e-a557-85424b0f8ec1" + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f", + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1651,19 +1723,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "295" + "286" ], "x-ms-correlation-request-id": [ - "bae796eb-7c02-4c23-ab45-d6be56ffd45a" + "ebbf373c-4616-4b20-b8ae-cda7d3e7c9cf" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T080410Z:bae796eb-7c02-4c23-ab45-d6be56ffd45a" + "JIOINDIAWEST:20220516T153322Z:ebbf373c-4616-4b20-b8ae-cda7d3e7c9cf" ], "Date": [ - "Sat, 26 Mar 2022 08:04:10 GMT" + "Mon, 16 May 2022 15:33:21 GMT" ], "Content-Length": [ - "188" + "2" ], "Content-Type": [ "application/json" @@ -1672,26 +1744,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"728f1a0f-6e48-40aa-98d0-17395ef9b59a\",\r\n \"name\": \"728f1a0f-6e48-40aa-98d0-17395ef9b59a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-03-26T08:03:48.1427742Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", - "StatusCode": 200 + "ResponseBody": "{}", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/728f1a0f-6e48-40aa-98d0-17395ef9b59a?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy83MjhmMWEwZi02ZTQ4LTQwYWEtOThkMC0xNzM5NWVmOWI1OWE/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895/operationResults/37843642-a76e-4750-b8f3-9aebeb5f1b77?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9vcGVyYXRpb25SZXN1bHRzLzM3ODQzNjQyLWE3NmUtNDc1MC1iOGYzLTlhZWJlYjVmMWI3Nz9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9ee7925b-c730-4d4e-a557-85424b0f8ec1" + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -1701,15 +1773,24 @@ "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationResults/37843642-a76e-4750-b8f3-9aebeb5f1b77?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationsStatus/37843642-a76e-4750-b8f3-9aebeb5f1b77?api-version=2019-05-13-preview" + ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "ba279d67-ee67-4bf4-aaf5-814cce27fe27" + "0e80d1ef-0ec7-49ff-a2ef-8edcc1307d38" ], "x-ms-client-request-id": [ - "9ee7925b-c730-4d4e-a557-85424b0f8ec1", - "9ee7925b-c730-4d4e-a557-85424b0f8ec1" + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f", + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1721,19 +1802,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "294" + "285" ], "x-ms-correlation-request-id": [ - "ba279d67-ee67-4bf4-aaf5-814cce27fe27" + "0e80d1ef-0ec7-49ff-a2ef-8edcc1307d38" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T080415Z:ba279d67-ee67-4bf4-aaf5-814cce27fe27" + "JIOINDIAWEST:20220516T153323Z:0e80d1ef-0ec7-49ff-a2ef-8edcc1307d38" ], "Date": [ - "Sat, 26 Mar 2022 08:04:15 GMT" + "Mon, 16 May 2022 15:33:22 GMT" ], "Content-Length": [ - "188" + "2" ], "Content-Type": [ "application/json" @@ -1742,26 +1823,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"728f1a0f-6e48-40aa-98d0-17395ef9b59a\",\r\n \"name\": \"728f1a0f-6e48-40aa-98d0-17395ef9b59a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-03-26T08:03:48.1427742Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", - "StatusCode": 200 + "ResponseBody": "{}", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/728f1a0f-6e48-40aa-98d0-17395ef9b59a?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy83MjhmMWEwZi02ZTQ4LTQwYWEtOThkMC0xNzM5NWVmOWI1OWE/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895/operationResults/37843642-a76e-4750-b8f3-9aebeb5f1b77?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9vcGVyYXRpb25SZXN1bHRzLzM3ODQzNjQyLWE3NmUtNDc1MC1iOGYzLTlhZWJlYjVmMWI3Nz9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9ee7925b-c730-4d4e-a557-85424b0f8ec1" + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -1771,15 +1852,24 @@ "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationResults/37843642-a76e-4750-b8f3-9aebeb5f1b77?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationsStatus/37843642-a76e-4750-b8f3-9aebeb5f1b77?api-version=2019-05-13-preview" + ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "87e2059f-03fe-4978-bc0e-dc49b8aacf25" + "813a64f7-52a2-402c-8dad-529e4c4a2cb8" ], "x-ms-client-request-id": [ - "9ee7925b-c730-4d4e-a557-85424b0f8ec1", - "9ee7925b-c730-4d4e-a557-85424b0f8ec1" + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f", + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1791,19 +1881,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "293" + "284" ], "x-ms-correlation-request-id": [ - "87e2059f-03fe-4978-bc0e-dc49b8aacf25" + "813a64f7-52a2-402c-8dad-529e4c4a2cb8" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T080421Z:87e2059f-03fe-4978-bc0e-dc49b8aacf25" + "JIOINDIAWEST:20220516T153323Z:813a64f7-52a2-402c-8dad-529e4c4a2cb8" ], "Date": [ - "Sat, 26 Mar 2022 08:04:20 GMT" + "Mon, 16 May 2022 15:33:22 GMT" ], "Content-Length": [ - "188" + "2" ], "Content-Type": [ "application/json" @@ -1812,26 +1902,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"728f1a0f-6e48-40aa-98d0-17395ef9b59a\",\r\n \"name\": \"728f1a0f-6e48-40aa-98d0-17395ef9b59a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-03-26T08:03:48.1427742Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", - "StatusCode": 200 + "ResponseBody": "{}", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/728f1a0f-6e48-40aa-98d0-17395ef9b59a?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy83MjhmMWEwZi02ZTQ4LTQwYWEtOThkMC0xNzM5NWVmOWI1OWE/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895/operationResults/37843642-a76e-4750-b8f3-9aebeb5f1b77?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9vcGVyYXRpb25SZXN1bHRzLzM3ODQzNjQyLWE3NmUtNDc1MC1iOGYzLTlhZWJlYjVmMWI3Nz9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9ee7925b-c730-4d4e-a557-85424b0f8ec1" + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -1841,15 +1931,24 @@ "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationResults/37843642-a76e-4750-b8f3-9aebeb5f1b77?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationsStatus/37843642-a76e-4750-b8f3-9aebeb5f1b77?api-version=2019-05-13-preview" + ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "c01f06e2-00b3-4525-86f3-94d778a6a224" + "6a1e6389-9616-4c42-b1c8-5e28abcfc9d4" ], "x-ms-client-request-id": [ - "9ee7925b-c730-4d4e-a557-85424b0f8ec1", - "9ee7925b-c730-4d4e-a557-85424b0f8ec1" + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f", + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1861,19 +1960,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "292" + "283" ], "x-ms-correlation-request-id": [ - "c01f06e2-00b3-4525-86f3-94d778a6a224" + "6a1e6389-9616-4c42-b1c8-5e28abcfc9d4" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T080426Z:c01f06e2-00b3-4525-86f3-94d778a6a224" + "JIOINDIAWEST:20220516T153324Z:6a1e6389-9616-4c42-b1c8-5e28abcfc9d4" ], "Date": [ - "Sat, 26 Mar 2022 08:04:26 GMT" + "Mon, 16 May 2022 15:33:24 GMT" ], "Content-Length": [ - "188" + "2" ], "Content-Type": [ "application/json" @@ -1882,26 +1981,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"728f1a0f-6e48-40aa-98d0-17395ef9b59a\",\r\n \"name\": \"728f1a0f-6e48-40aa-98d0-17395ef9b59a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-03-26T08:03:48.1427742Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", - "StatusCode": 200 + "ResponseBody": "{}", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/728f1a0f-6e48-40aa-98d0-17395ef9b59a?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy83MjhmMWEwZi02ZTQ4LTQwYWEtOThkMC0xNzM5NWVmOWI1OWE/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895/operationResults/37843642-a76e-4750-b8f3-9aebeb5f1b77?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9vcGVyYXRpb25SZXN1bHRzLzM3ODQzNjQyLWE3NmUtNDc1MC1iOGYzLTlhZWJlYjVmMWI3Nz9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9ee7925b-c730-4d4e-a557-85424b0f8ec1" + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -1911,15 +2010,24 @@ "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationResults/37843642-a76e-4750-b8f3-9aebeb5f1b77?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationsStatus/37843642-a76e-4750-b8f3-9aebeb5f1b77?api-version=2019-05-13-preview" + ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "c6634ad7-3f66-42e5-b9a0-b2fa312e76bc" + "b691b28c-2c22-4545-ad31-073bb22a4f11" ], "x-ms-client-request-id": [ - "9ee7925b-c730-4d4e-a557-85424b0f8ec1", - "9ee7925b-c730-4d4e-a557-85424b0f8ec1" + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f", + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1931,19 +2039,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "291" + "282" ], "x-ms-correlation-request-id": [ - "c6634ad7-3f66-42e5-b9a0-b2fa312e76bc" + "b691b28c-2c22-4545-ad31-073bb22a4f11" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T080432Z:c6634ad7-3f66-42e5-b9a0-b2fa312e76bc" + "JIOINDIAWEST:20220516T153324Z:b691b28c-2c22-4545-ad31-073bb22a4f11" ], "Date": [ - "Sat, 26 Mar 2022 08:04:31 GMT" + "Mon, 16 May 2022 15:33:24 GMT" ], "Content-Length": [ - "304" + "2" ], "Content-Type": [ "application/json" @@ -1952,26 +2060,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"728f1a0f-6e48-40aa-98d0-17395ef9b59a\",\r\n \"name\": \"728f1a0f-6e48-40aa-98d0-17395ef9b59a\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-03-26T08:03:48.1427742Z\",\r\n \"endTime\": \"2022-03-26T08:03:48.1427742Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"3b0005a9-06c9-4e8d-93cb-8a09dfae0b17\"\r\n }\r\n}", - "StatusCode": 200 + "ResponseBody": "{}", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/728f1a0f-6e48-40aa-98d0-17395ef9b59a?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy83MjhmMWEwZi02ZTQ4LTQwYWEtOThkMC0xNzM5NWVmOWI1OWE/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895/operationResults/37843642-a76e-4750-b8f3-9aebeb5f1b77?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9vcGVyYXRpb25SZXN1bHRzLzM3ODQzNjQyLWE3NmUtNDc1MC1iOGYzLTlhZWJlYjVmMWI3Nz9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9ee7925b-c730-4d4e-a557-85424b0f8ec1" + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -1981,15 +2089,24 @@ "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationResults/37843642-a76e-4750-b8f3-9aebeb5f1b77?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationsStatus/37843642-a76e-4750-b8f3-9aebeb5f1b77?api-version=2019-05-13-preview" + ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "57424ce2-6135-47b3-b10a-3fff55ab0232" + "b1970952-b028-46e7-80d4-9a33de97af3a" ], "x-ms-client-request-id": [ - "9ee7925b-c730-4d4e-a557-85424b0f8ec1", - "9ee7925b-c730-4d4e-a557-85424b0f8ec1" + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f", + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2001,19 +2118,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "290" + "281" ], "x-ms-correlation-request-id": [ - "57424ce2-6135-47b3-b10a-3fff55ab0232" + "b1970952-b028-46e7-80d4-9a33de97af3a" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T080432Z:57424ce2-6135-47b3-b10a-3fff55ab0232" + "JIOINDIAWEST:20220516T153325Z:b1970952-b028-46e7-80d4-9a33de97af3a" ], "Date": [ - "Sat, 26 Mar 2022 08:04:31 GMT" + "Mon, 16 May 2022 15:33:25 GMT" ], "Content-Length": [ - "304" + "2" ], "Content-Type": [ "application/json" @@ -2022,26 +2139,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"728f1a0f-6e48-40aa-98d0-17395ef9b59a\",\r\n \"name\": \"728f1a0f-6e48-40aa-98d0-17395ef9b59a\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-03-26T08:03:48.1427742Z\",\r\n \"endTime\": \"2022-03-26T08:03:48.1427742Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"3b0005a9-06c9-4e8d-93cb-8a09dfae0b17\"\r\n }\r\n}", - "StatusCode": 200 + "ResponseBody": "{}", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/3b0005a9-06c9-4e8d-93cb-8a09dfae0b17?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy8zYjAwMDVhOS0wNmM5LTRlOGQtOTNjYi04YTA5ZGZhZTBiMTc/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895/operationResults/37843642-a76e-4750-b8f3-9aebeb5f1b77?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9vcGVyYXRpb25SZXN1bHRzLzM3ODQzNjQyLWE3NmUtNDc1MC1iOGYzLTlhZWJlYjVmMWI3Nz9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9ee7925b-c730-4d4e-a557-85424b0f8ec1" + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -2051,40 +2168,48 @@ "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-IIS/10.0" + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationResults/37843642-a76e-4750-b8f3-9aebeb5f1b77?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationsStatus/37843642-a76e-4750-b8f3-9aebeb5f1b77?api-version=2019-05-13-preview" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "3570cbc5-1bf5-4761-8b8d-d6d6daaf461a" + "a1730d76-c1b7-491e-a51e-9f87a34b9f7d" ], "x-ms-client-request-id": [ - "9ee7925b-c730-4d4e-a557-85424b0f8ec1", - "9ee7925b-c730-4d4e-a557-85424b0f8ec1" - ], - "X-Powered-By": [ - "ASP.NET" + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f", + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "299" + "280" ], "x-ms-correlation-request-id": [ - "3570cbc5-1bf5-4761-8b8d-d6d6daaf461a" + "a1730d76-c1b7-491e-a51e-9f87a34b9f7d" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T080433Z:3570cbc5-1bf5-4761-8b8d-d6d6daaf461a" + "JIOINDIAWEST:20220516T153325Z:a1730d76-c1b7-491e-a51e-9f87a34b9f7d" ], "Date": [ - "Sat, 26 Mar 2022 08:04:32 GMT" + "Mon, 16 May 2022 15:33:25 GMT" ], "Content-Length": [ - "847" + "2" ], "Content-Type": [ "application/json" @@ -2093,26 +2218,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/3b0005a9-06c9-4e8d-93cb-8a09dfae0b17\",\r\n \"name\": \"3b0005a9-06c9-4e8d-93cb-8a09dfae0b17\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT42.9964142S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"Storage\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"File Share Name\": \"fs1\",\r\n \"Storage Account Name\": \"pstestsa8895\",\r\n \"Policy Name\": \"afspolicy1\"\r\n }\r\n },\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"ConfigureBackup\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-03-26T08:03:48.1427742Z\",\r\n \"endTime\": \"2022-03-26T08:04:31.1391884Z\",\r\n \"activityId\": \"9ee7925b-c730-4d4e-a557-85424b0f8ec1\"\r\n }\r\n}", - "StatusCode": 200 + "ResponseBody": "{}", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupProtectedItems?$filter=backupManagementType%20eq%20'AzureStorage'%20and%20itemType%20eq%20'AzureFileShare'&api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwUHJvdGVjdGVkSXRlbXM/JGZpbHRlcj1iYWNrdXBNYW5hZ2VtZW50VHlwZSUyMGVxJTIwJ0F6dXJlU3RvcmFnZSclMjBhbmQlMjBpdGVtVHlwZSUyMGVxJTIwJ0F6dXJlRmlsZVNoYXJlJyZhcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895/operationResults/37843642-a76e-4750-b8f3-9aebeb5f1b77?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9vcGVyYXRpb25SZXN1bHRzLzM3ODQzNjQyLWE3NmUtNDc1MC1iOGYzLTlhZWJlYjVmMWI3Nz9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "950a02cd-1f86-4d65-ab8b-3296432f5e03" + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -2122,15 +2247,24 @@ "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationResults/37843642-a76e-4750-b8f3-9aebeb5f1b77?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationsStatus/37843642-a76e-4750-b8f3-9aebeb5f1b77?api-version=2019-05-13-preview" + ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "c5e285ef-5530-4dc2-80e1-fda0b720415b" + "2fe54549-6b66-49bf-8c61-a49f365fa592" ], "x-ms-client-request-id": [ - "950a02cd-1f86-4d65-ab8b-3296432f5e03", - "950a02cd-1f86-4d65-ab8b-3296432f5e03" + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f", + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2142,19 +2276,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "299" + "279" ], "x-ms-correlation-request-id": [ - "c5e285ef-5530-4dc2-80e1-fda0b720415b" + "2fe54549-6b66-49bf-8c61-a49f365fa592" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T080434Z:c5e285ef-5530-4dc2-80e1-fda0b720415b" + "JIOINDIAWEST:20220516T153326Z:2fe54549-6b66-49bf-8c61-a49f365fa592" ], "Date": [ - "Sat, 26 Mar 2022 08:04:33 GMT" + "Mon, 16 May 2022 15:33:26 GMT" ], "Content-Length": [ - "1219" + "2" ], "Content-Type": [ "application/json" @@ -2163,26 +2297,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;storage;pstestrg8895;pstestsa8895/protectedItems/AzureFileShare;698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959\",\r\n \"name\": \"AzureFileShare;698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems\",\r\n \"properties\": {\r\n \"kpisHealths\": {},\r\n \"friendlyName\": \"fs1\",\r\n \"protectionStatus\": \"Healthy\",\r\n \"protectionState\": \"IRPending\",\r\n \"lastBackupStatus\": \"IRPending\",\r\n \"protectedItemType\": \"AzureFileShareProtectedItem\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"workloadType\": \"AzureFileShare\",\r\n \"containerName\": \"StorageContainer;storage;pstestrg8895;pstestsa8895\",\r\n \"sourceResourceId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.storage/storageAccounts/pstestsa8895\",\r\n \"policyId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupPolicies/afspolicy1\",\r\n \"isArchiveEnabled\": false\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 + "ResponseBody": "{}", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupProtectedItems?$filter=backupManagementType%20eq%20'AzureStorage'%20and%20itemType%20eq%20'AzureFileShare'&api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwUHJvdGVjdGVkSXRlbXM/JGZpbHRlcj1iYWNrdXBNYW5hZ2VtZW50VHlwZSUyMGVxJTIwJ0F6dXJlU3RvcmFnZSclMjBhbmQlMjBpdGVtVHlwZSUyMGVxJTIwJ0F6dXJlRmlsZVNoYXJlJyZhcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895/operationResults/37843642-a76e-4750-b8f3-9aebeb5f1b77?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9vcGVyYXRpb25SZXN1bHRzLzM3ODQzNjQyLWE3NmUtNDc1MC1iOGYzLTlhZWJlYjVmMWI3Nz9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "80bc7de2-6e27-4934-82fc-bca987d613ee" + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -2192,15 +2326,24 @@ "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationResults/37843642-a76e-4750-b8f3-9aebeb5f1b77?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationsStatus/37843642-a76e-4750-b8f3-9aebeb5f1b77?api-version=2019-05-13-preview" + ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "25b1803f-1639-4984-9a66-0596225a1fa3" + "fec52d4f-fa06-40d9-af17-0208e251d00a" ], "x-ms-client-request-id": [ - "80bc7de2-6e27-4934-82fc-bca987d613ee", - "80bc7de2-6e27-4934-82fc-bca987d613ee" + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f", + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2212,19 +2355,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "298" + "278" ], "x-ms-correlation-request-id": [ - "25b1803f-1639-4984-9a66-0596225a1fa3" + "fec52d4f-fa06-40d9-af17-0208e251d00a" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T080436Z:25b1803f-1639-4984-9a66-0596225a1fa3" + "JIOINDIAWEST:20220516T153326Z:fec52d4f-fa06-40d9-af17-0208e251d00a" ], "Date": [ - "Sat, 26 Mar 2022 08:04:35 GMT" + "Mon, 16 May 2022 15:33:26 GMT" ], "Content-Length": [ - "1219" + "2" ], "Content-Type": [ "application/json" @@ -2233,26 +2376,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;storage;pstestrg8895;pstestsa8895/protectedItems/AzureFileShare;698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959\",\r\n \"name\": \"AzureFileShare;698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems\",\r\n \"properties\": {\r\n \"kpisHealths\": {},\r\n \"friendlyName\": \"fs1\",\r\n \"protectionStatus\": \"Healthy\",\r\n \"protectionState\": \"IRPending\",\r\n \"lastBackupStatus\": \"IRPending\",\r\n \"protectedItemType\": \"AzureFileShareProtectedItem\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"workloadType\": \"AzureFileShare\",\r\n \"containerName\": \"StorageContainer;storage;pstestrg8895;pstestsa8895\",\r\n \"sourceResourceId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.storage/storageAccounts/pstestsa8895\",\r\n \"policyId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupPolicies/afspolicy1\",\r\n \"isArchiveEnabled\": false\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 + "ResponseBody": "{}", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupProtectedItems?$filter=backupManagementType%20eq%20'AzureStorage'%20and%20itemType%20eq%20'AzureFileShare'&api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwUHJvdGVjdGVkSXRlbXM/JGZpbHRlcj1iYWNrdXBNYW5hZ2VtZW50VHlwZSUyMGVxJTIwJ0F6dXJlU3RvcmFnZSclMjBhbmQlMjBpdGVtVHlwZSUyMGVxJTIwJ0F6dXJlRmlsZVNoYXJlJyZhcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895/operationResults/37843642-a76e-4750-b8f3-9aebeb5f1b77?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9vcGVyYXRpb25SZXN1bHRzLzM3ODQzNjQyLWE3NmUtNDc1MC1iOGYzLTlhZWJlYjVmMWI3Nz9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2ca7b72c-4f54-4270-9cb6-fe223b704843" + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -2262,15 +2405,24 @@ "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationResults/37843642-a76e-4750-b8f3-9aebeb5f1b77?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationsStatus/37843642-a76e-4750-b8f3-9aebeb5f1b77?api-version=2019-05-13-preview" + ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "decaa19e-60d5-4c13-be9d-16d97fe13d3e" + "9f633cc9-9388-4435-ae95-f1d974074143" ], "x-ms-client-request-id": [ - "2ca7b72c-4f54-4270-9cb6-fe223b704843", - "2ca7b72c-4f54-4270-9cb6-fe223b704843" + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f", + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2282,19 +2434,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "297" + "277" ], "x-ms-correlation-request-id": [ - "decaa19e-60d5-4c13-be9d-16d97fe13d3e" + "9f633cc9-9388-4435-ae95-f1d974074143" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T080436Z:decaa19e-60d5-4c13-be9d-16d97fe13d3e" + "JIOINDIAWEST:20220516T153327Z:9f633cc9-9388-4435-ae95-f1d974074143" ], "Date": [ - "Sat, 26 Mar 2022 08:04:35 GMT" + "Mon, 16 May 2022 15:33:27 GMT" ], "Content-Length": [ - "1219" + "2" ], "Content-Type": [ "application/json" @@ -2303,26 +2455,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;storage;pstestrg8895;pstestsa8895/protectedItems/AzureFileShare;698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959\",\r\n \"name\": \"AzureFileShare;698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems\",\r\n \"properties\": {\r\n \"kpisHealths\": {},\r\n \"friendlyName\": \"fs1\",\r\n \"protectionStatus\": \"Healthy\",\r\n \"protectionState\": \"IRPending\",\r\n \"lastBackupStatus\": \"IRPending\",\r\n \"protectedItemType\": \"AzureFileShareProtectedItem\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"workloadType\": \"AzureFileShare\",\r\n \"containerName\": \"StorageContainer;storage;pstestrg8895;pstestsa8895\",\r\n \"sourceResourceId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.storage/storageAccounts/pstestsa8895\",\r\n \"policyId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupPolicies/afspolicy1\",\r\n \"isArchiveEnabled\": false\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 + "ResponseBody": "{}", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupProtectedItems?$filter=backupManagementType%20eq%20'AzureStorage'%20and%20itemType%20eq%20'AzureFileShare'&api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwUHJvdGVjdGVkSXRlbXM/JGZpbHRlcj1iYWNrdXBNYW5hZ2VtZW50VHlwZSUyMGVxJTIwJ0F6dXJlU3RvcmFnZSclMjBhbmQlMjBpdGVtVHlwZSUyMGVxJTIwJ0F6dXJlRmlsZVNoYXJlJyZhcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895/operationResults/37843642-a76e-4750-b8f3-9aebeb5f1b77?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9vcGVyYXRpb25SZXN1bHRzLzM3ODQzNjQyLWE3NmUtNDc1MC1iOGYzLTlhZWJlYjVmMWI3Nz9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d596996c-b2f9-44be-bf12-a9c5f245d22d" + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -2332,15 +2484,24 @@ "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationResults/37843642-a76e-4750-b8f3-9aebeb5f1b77?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationsStatus/37843642-a76e-4750-b8f3-9aebeb5f1b77?api-version=2019-05-13-preview" + ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "c5466860-f57f-4f06-9391-6ef0429339a4" + "d5908253-bc84-489f-bb1c-cb9d932117c1" ], "x-ms-client-request-id": [ - "d596996c-b2f9-44be-bf12-a9c5f245d22d", - "d596996c-b2f9-44be-bf12-a9c5f245d22d" + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f", + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2352,19 +2513,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "296" + "276" ], "x-ms-correlation-request-id": [ - "c5466860-f57f-4f06-9391-6ef0429339a4" + "d5908253-bc84-489f-bb1c-cb9d932117c1" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T080437Z:c5466860-f57f-4f06-9391-6ef0429339a4" + "JIOINDIAWEST:20220516T153327Z:d5908253-bc84-489f-bb1c-cb9d932117c1" ], "Date": [ - "Sat, 26 Mar 2022 08:04:36 GMT" + "Mon, 16 May 2022 15:33:27 GMT" ], "Content-Length": [ - "1219" + "2" ], "Content-Type": [ "application/json" @@ -2373,26 +2534,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;storage;pstestrg8895;pstestsa8895/protectedItems/AzureFileShare;698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959\",\r\n \"name\": \"AzureFileShare;698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems\",\r\n \"properties\": {\r\n \"kpisHealths\": {},\r\n \"friendlyName\": \"fs1\",\r\n \"protectionStatus\": \"Healthy\",\r\n \"protectionState\": \"IRPending\",\r\n \"lastBackupStatus\": \"IRPending\",\r\n \"protectedItemType\": \"AzureFileShareProtectedItem\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"workloadType\": \"AzureFileShare\",\r\n \"containerName\": \"StorageContainer;storage;pstestrg8895;pstestsa8895\",\r\n \"sourceResourceId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.storage/storageAccounts/pstestsa8895\",\r\n \"policyId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupPolicies/afspolicy1\",\r\n \"isArchiveEnabled\": false\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 + "ResponseBody": "{}", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupProtectedItems?$filter=backupManagementType%20eq%20'AzureStorage'%20and%20itemType%20eq%20'AzureFileShare'&api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwUHJvdGVjdGVkSXRlbXM/JGZpbHRlcj1iYWNrdXBNYW5hZ2VtZW50VHlwZSUyMGVxJTIwJ0F6dXJlU3RvcmFnZSclMjBhbmQlMjBpdGVtVHlwZSUyMGVxJTIwJ0F6dXJlRmlsZVNoYXJlJyZhcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895/operationResults/37843642-a76e-4750-b8f3-9aebeb5f1b77?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9vcGVyYXRpb25SZXN1bHRzLzM3ODQzNjQyLWE3NmUtNDc1MC1iOGYzLTlhZWJlYjVmMWI3Nz9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0a4de565-f59d-4f08-b774-22a85ef3e903" + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -2402,15 +2563,24 @@ "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationResults/37843642-a76e-4750-b8f3-9aebeb5f1b77?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationsStatus/37843642-a76e-4750-b8f3-9aebeb5f1b77?api-version=2019-05-13-preview" + ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "48141991-c9bc-42b2-9a51-9a9bf1e0b9f8" + "2a8a3b18-0e72-452e-a04f-944cfbc7ac8e" ], "x-ms-client-request-id": [ - "0a4de565-f59d-4f08-b774-22a85ef3e903", - "0a4de565-f59d-4f08-b774-22a85ef3e903" + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f", + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2422,19 +2592,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "295" + "275" ], "x-ms-correlation-request-id": [ - "48141991-c9bc-42b2-9a51-9a9bf1e0b9f8" + "2a8a3b18-0e72-452e-a04f-944cfbc7ac8e" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T080437Z:48141991-c9bc-42b2-9a51-9a9bf1e0b9f8" + "JIOINDIAWEST:20220516T153328Z:2a8a3b18-0e72-452e-a04f-944cfbc7ac8e" ], "Date": [ - "Sat, 26 Mar 2022 08:04:36 GMT" + "Mon, 16 May 2022 15:33:28 GMT" ], "Content-Length": [ - "1219" + "2" ], "Content-Type": [ "application/json" @@ -2443,26 +2613,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;storage;pstestrg8895;pstestsa8895/protectedItems/AzureFileShare;698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959\",\r\n \"name\": \"AzureFileShare;698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems\",\r\n \"properties\": {\r\n \"kpisHealths\": {},\r\n \"friendlyName\": \"fs1\",\r\n \"protectionStatus\": \"Healthy\",\r\n \"protectionState\": \"IRPending\",\r\n \"lastBackupStatus\": \"IRPending\",\r\n \"protectedItemType\": \"AzureFileShareProtectedItem\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"workloadType\": \"AzureFileShare\",\r\n \"containerName\": \"StorageContainer;storage;pstestrg8895;pstestsa8895\",\r\n \"sourceResourceId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.storage/storageAccounts/pstestsa8895\",\r\n \"policyId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupPolicies/afspolicy1\",\r\n \"isArchiveEnabled\": false\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 + "ResponseBody": "{}", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupProtectedItems?$filter=backupManagementType%20eq%20'AzureStorage'%20and%20itemType%20eq%20'AzureFileShare'&api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwUHJvdGVjdGVkSXRlbXM/JGZpbHRlcj1iYWNrdXBNYW5hZ2VtZW50VHlwZSUyMGVxJTIwJ0F6dXJlU3RvcmFnZSclMjBhbmQlMjBpdGVtVHlwZSUyMGVxJTIwJ0F6dXJlRmlsZVNoYXJlJyZhcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895/operationResults/37843642-a76e-4750-b8f3-9aebeb5f1b77?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9vcGVyYXRpb25SZXN1bHRzLzM3ODQzNjQyLWE3NmUtNDc1MC1iOGYzLTlhZWJlYjVmMWI3Nz9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2696a023-f127-456d-982a-148f3e1382cf" + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -2472,15 +2642,24 @@ "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationResults/37843642-a76e-4750-b8f3-9aebeb5f1b77?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationsStatus/37843642-a76e-4750-b8f3-9aebeb5f1b77?api-version=2019-05-13-preview" + ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "97bac2b0-1e3c-4590-99a1-31067598d8f1" + "ceb926d6-cf7f-4fc7-a3cb-06b01ba839ab" ], "x-ms-client-request-id": [ - "2696a023-f127-456d-982a-148f3e1382cf", - "2696a023-f127-456d-982a-148f3e1382cf" + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f", + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2492,19 +2671,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "294" + "274" ], "x-ms-correlation-request-id": [ - "97bac2b0-1e3c-4590-99a1-31067598d8f1" + "ceb926d6-cf7f-4fc7-a3cb-06b01ba839ab" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T080438Z:97bac2b0-1e3c-4590-99a1-31067598d8f1" + "JIOINDIAWEST:20220516T153328Z:ceb926d6-cf7f-4fc7-a3cb-06b01ba839ab" ], "Date": [ - "Sat, 26 Mar 2022 08:04:37 GMT" + "Mon, 16 May 2022 15:33:28 GMT" ], "Content-Length": [ - "1219" + "2" ], "Content-Type": [ "application/json" @@ -2513,26 +2692,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;storage;pstestrg8895;pstestsa8895/protectedItems/AzureFileShare;698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959\",\r\n \"name\": \"AzureFileShare;698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems\",\r\n \"properties\": {\r\n \"kpisHealths\": {},\r\n \"friendlyName\": \"fs1\",\r\n \"protectionStatus\": \"Healthy\",\r\n \"protectionState\": \"IRPending\",\r\n \"lastBackupStatus\": \"IRPending\",\r\n \"protectedItemType\": \"AzureFileShareProtectedItem\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"workloadType\": \"AzureFileShare\",\r\n \"containerName\": \"StorageContainer;storage;pstestrg8895;pstestsa8895\",\r\n \"sourceResourceId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.storage/storageAccounts/pstestsa8895\",\r\n \"policyId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupPolicies/afspolicy1\",\r\n \"isArchiveEnabled\": false\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 + "ResponseBody": "{}", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupProtectedItems?$filter=backupManagementType%20eq%20'AzureStorage'%20and%20itemType%20eq%20'AzureFileShare'&api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwUHJvdGVjdGVkSXRlbXM/JGZpbHRlcj1iYWNrdXBNYW5hZ2VtZW50VHlwZSUyMGVxJTIwJ0F6dXJlU3RvcmFnZSclMjBhbmQlMjBpdGVtVHlwZSUyMGVxJTIwJ0F6dXJlRmlsZVNoYXJlJyZhcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895/operationResults/37843642-a76e-4750-b8f3-9aebeb5f1b77?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9vcGVyYXRpb25SZXN1bHRzLzM3ODQzNjQyLWE3NmUtNDc1MC1iOGYzLTlhZWJlYjVmMWI3Nz9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ba143ee2-794a-49cb-8aee-03ae96f23423" + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -2542,15 +2721,24 @@ "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationResults/37843642-a76e-4750-b8f3-9aebeb5f1b77?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationsStatus/37843642-a76e-4750-b8f3-9aebeb5f1b77?api-version=2019-05-13-preview" + ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "8eff8d83-9d0d-4df2-b3fd-f2f975469b1b" + "793897ab-ad6a-4be7-b235-c912e105c53d" ], "x-ms-client-request-id": [ - "ba143ee2-794a-49cb-8aee-03ae96f23423", - "ba143ee2-794a-49cb-8aee-03ae96f23423" + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f", + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2562,19 +2750,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "293" + "273" ], "x-ms-correlation-request-id": [ - "8eff8d83-9d0d-4df2-b3fd-f2f975469b1b" + "793897ab-ad6a-4be7-b235-c912e105c53d" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T080439Z:8eff8d83-9d0d-4df2-b3fd-f2f975469b1b" + "JIOINDIAWEST:20220516T153329Z:793897ab-ad6a-4be7-b235-c912e105c53d" ], "Date": [ - "Sat, 26 Mar 2022 08:04:38 GMT" + "Mon, 16 May 2022 15:33:29 GMT" ], "Content-Length": [ - "1219" + "2" ], "Content-Type": [ "application/json" @@ -2583,26 +2771,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;storage;pstestrg8895;pstestsa8895/protectedItems/AzureFileShare;698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959\",\r\n \"name\": \"AzureFileShare;698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems\",\r\n \"properties\": {\r\n \"kpisHealths\": {},\r\n \"friendlyName\": \"fs1\",\r\n \"protectionStatus\": \"Healthy\",\r\n \"protectionState\": \"IRPending\",\r\n \"lastBackupStatus\": \"IRPending\",\r\n \"protectedItemType\": \"AzureFileShareProtectedItem\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"workloadType\": \"AzureFileShare\",\r\n \"containerName\": \"StorageContainer;storage;pstestrg8895;pstestsa8895\",\r\n \"sourceResourceId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.storage/storageAccounts/pstestsa8895\",\r\n \"policyId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupPolicies/afspolicy1\",\r\n \"isArchiveEnabled\": false\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 + "ResponseBody": "{}", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupProtectedItems?$filter=backupManagementType%20eq%20'AzureStorage'%20and%20itemType%20eq%20'AzureFileShare'&api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwUHJvdGVjdGVkSXRlbXM/JGZpbHRlcj1iYWNrdXBNYW5hZ2VtZW50VHlwZSUyMGVxJTIwJ0F6dXJlU3RvcmFnZSclMjBhbmQlMjBpdGVtVHlwZSUyMGVxJTIwJ0F6dXJlRmlsZVNoYXJlJyZhcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895/operationResults/37843642-a76e-4750-b8f3-9aebeb5f1b77?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9vcGVyYXRpb25SZXN1bHRzLzM3ODQzNjQyLWE3NmUtNDc1MC1iOGYzLTlhZWJlYjVmMWI3Nz9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "98e888af-cf9c-4d6d-8667-5f1d083c36ba" + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -2612,15 +2800,24 @@ "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationResults/37843642-a76e-4750-b8f3-9aebeb5f1b77?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationsStatus/37843642-a76e-4750-b8f3-9aebeb5f1b77?api-version=2019-05-13-preview" + ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "b93c6f84-4169-41d7-ae74-b5e2e589e38f" + "56f5f540-69c8-4fbb-b5b8-57313f743d47" ], "x-ms-client-request-id": [ - "98e888af-cf9c-4d6d-8667-5f1d083c36ba", - "98e888af-cf9c-4d6d-8667-5f1d083c36ba" + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f", + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2632,19 +2829,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "291" + "272" ], "x-ms-correlation-request-id": [ - "b93c6f84-4169-41d7-ae74-b5e2e589e38f" + "56f5f540-69c8-4fbb-b5b8-57313f743d47" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T080440Z:b93c6f84-4169-41d7-ae74-b5e2e589e38f" + "JIOINDIAWEST:20220516T153329Z:56f5f540-69c8-4fbb-b5b8-57313f743d47" ], "Date": [ - "Sat, 26 Mar 2022 08:04:39 GMT" + "Mon, 16 May 2022 15:33:29 GMT" ], "Content-Length": [ - "1219" + "2" ], "Content-Type": [ "application/json" @@ -2653,26 +2850,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;storage;pstestrg8895;pstestsa8895/protectedItems/AzureFileShare;698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959\",\r\n \"name\": \"AzureFileShare;698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems\",\r\n \"properties\": {\r\n \"kpisHealths\": {},\r\n \"friendlyName\": \"fs1\",\r\n \"protectionStatus\": \"Healthy\",\r\n \"protectionState\": \"IRPending\",\r\n \"lastBackupStatus\": \"IRPending\",\r\n \"protectedItemType\": \"AzureFileShareProtectedItem\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"workloadType\": \"AzureFileShare\",\r\n \"containerName\": \"StorageContainer;storage;pstestrg8895;pstestsa8895\",\r\n \"sourceResourceId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.storage/storageAccounts/pstestsa8895\",\r\n \"policyId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupPolicies/afspolicy1\",\r\n \"isArchiveEnabled\": false\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 + "ResponseBody": "{}", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3Bstorage%3Bpstestrg8895%3Bpstestsa8895/protectedItems/AzureFileShare%3B698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959?$filter=expand%20eq%20'extendedinfo'&api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCc3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9wcm90ZWN0ZWRJdGVtcy9BenVyZUZpbGVTaGFyZSUzQjY5OGRmNTk1OTQ4ZTIzNTVmMmJiNzQ0YTQxY2YyNDVkNGJhMTI1NWQ5Njk5Y2MzYzJhZDFmNTA0NWUxNzc5NTk/JGZpbHRlcj1leHBhbmQlMjBlcSUyMCdleHRlbmRlZGluZm8nJmFwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895/operationResults/37843642-a76e-4750-b8f3-9aebeb5f1b77?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9vcGVyYXRpb25SZXN1bHRzLzM3ODQzNjQyLWE3NmUtNDc1MC1iOGYzLTlhZWJlYjVmMWI3Nz9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "950a02cd-1f86-4d65-ab8b-3296432f5e03" + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -2682,15 +2879,24 @@ "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationResults/37843642-a76e-4750-b8f3-9aebeb5f1b77?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationsStatus/37843642-a76e-4750-b8f3-9aebeb5f1b77?api-version=2019-05-13-preview" + ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "a56fb83c-d8de-4acf-9b8a-e84932366a1e" + "07b526af-e4b8-4918-9d91-233b5d36829e" ], "x-ms-client-request-id": [ - "950a02cd-1f86-4d65-ab8b-3296432f5e03", - "950a02cd-1f86-4d65-ab8b-3296432f5e03" + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f", + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2702,19 +2908,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "299" + "271" ], "x-ms-correlation-request-id": [ - "a56fb83c-d8de-4acf-9b8a-e84932366a1e" + "07b526af-e4b8-4918-9d91-233b5d36829e" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T080434Z:a56fb83c-d8de-4acf-9b8a-e84932366a1e" + "JIOINDIAWEST:20220516T153330Z:07b526af-e4b8-4918-9d91-233b5d36829e" ], "Date": [ - "Sat, 26 Mar 2022 08:04:33 GMT" + "Mon, 16 May 2022 15:33:30 GMT" ], "Content-Length": [ - "1354" + "2" ], "Content-Type": [ "application/json" @@ -2723,26 +2929,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;storage;pstestrg8895;pstestsa8895/protectedItems/AzureFileShare;698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959\",\r\n \"name\": \"AzureFileShare;698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems\",\r\n \"properties\": {\r\n \"kpisHealths\": {},\r\n \"friendlyName\": \"fs1\",\r\n \"protectionStatus\": \"Healthy\",\r\n \"protectionState\": \"IRPending\",\r\n \"lastBackupStatus\": \"IRPending\",\r\n \"extendedInfo\": {\r\n \"recoveryPointCount\": 0,\r\n \"policyState\": \"Consistent\",\r\n \"resourceState\": \"Active\",\r\n \"resourceStateSyncTime\": \"2022-03-26T08:04:30.4044695Z\"\r\n },\r\n \"protectedItemType\": \"AzureFileShareProtectedItem\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"workloadType\": \"AzureFileShare\",\r\n \"containerName\": \"StorageContainer;storage;pstestrg8895;pstestsa8895\",\r\n \"sourceResourceId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.storage/storageAccounts/pstestsa8895\",\r\n \"policyId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupPolicies/afspolicy1\",\r\n \"isArchiveEnabled\": false\r\n }\r\n}", - "StatusCode": 200 + "ResponseBody": "{}", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3Bstorage%3Bpstestrg8895%3Bpstestsa8895/protectedItems/AzureFileShare%3B698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959?$filter=expand%20eq%20'extendedinfo'&api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCc3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9wcm90ZWN0ZWRJdGVtcy9BenVyZUZpbGVTaGFyZSUzQjY5OGRmNTk1OTQ4ZTIzNTVmMmJiNzQ0YTQxY2YyNDVkNGJhMTI1NWQ5Njk5Y2MzYzJhZDFmNTA0NWUxNzc5NTk/JGZpbHRlcj1leHBhbmQlMjBlcSUyMCdleHRlbmRlZGluZm8nJmFwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895/operationResults/37843642-a76e-4750-b8f3-9aebeb5f1b77?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9vcGVyYXRpb25SZXN1bHRzLzM3ODQzNjQyLWE3NmUtNDc1MC1iOGYzLTlhZWJlYjVmMWI3Nz9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0a4de565-f59d-4f08-b774-22a85ef3e903" + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -2752,15 +2958,24 @@ "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationResults/37843642-a76e-4750-b8f3-9aebeb5f1b77?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationsStatus/37843642-a76e-4750-b8f3-9aebeb5f1b77?api-version=2019-05-13-preview" + ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "0b96afb9-9336-4871-aa61-39efb19b821d" + "7a596de2-3d10-4baa-b8b3-c18c8cc68328" ], "x-ms-client-request-id": [ - "0a4de565-f59d-4f08-b774-22a85ef3e903", - "0a4de565-f59d-4f08-b774-22a85ef3e903" + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f", + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2772,19 +2987,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "298" + "270" ], "x-ms-correlation-request-id": [ - "0b96afb9-9336-4871-aa61-39efb19b821d" + "7a596de2-3d10-4baa-b8b3-c18c8cc68328" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T080438Z:0b96afb9-9336-4871-aa61-39efb19b821d" + "JIOINDIAWEST:20220516T153330Z:7a596de2-3d10-4baa-b8b3-c18c8cc68328" ], "Date": [ - "Sat, 26 Mar 2022 08:04:37 GMT" + "Mon, 16 May 2022 15:33:30 GMT" ], "Content-Length": [ - "1354" + "2" ], "Content-Type": [ "application/json" @@ -2793,26 +3008,184 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;storage;pstestrg8895;pstestsa8895/protectedItems/AzureFileShare;698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959\",\r\n \"name\": \"AzureFileShare;698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems\",\r\n \"properties\": {\r\n \"kpisHealths\": {},\r\n \"friendlyName\": \"fs1\",\r\n \"protectionStatus\": \"Healthy\",\r\n \"protectionState\": \"IRPending\",\r\n \"lastBackupStatus\": \"IRPending\",\r\n \"extendedInfo\": {\r\n \"recoveryPointCount\": 0,\r\n \"policyState\": \"Consistent\",\r\n \"resourceState\": \"Active\",\r\n \"resourceStateSyncTime\": \"2022-03-26T08:04:30.4044695Z\"\r\n },\r\n \"protectedItemType\": \"AzureFileShareProtectedItem\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"workloadType\": \"AzureFileShare\",\r\n \"containerName\": \"StorageContainer;storage;pstestrg8895;pstestsa8895\",\r\n \"sourceResourceId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.storage/storageAccounts/pstestsa8895\",\r\n \"policyId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupPolicies/afspolicy1\",\r\n \"isArchiveEnabled\": false\r\n }\r\n}", - "StatusCode": 200 + "ResponseBody": "{}", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895/operationResults/37843642-a76e-4750-b8f3-9aebeb5f1b77?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9vcGVyYXRpb25SZXN1bHRzLzM3ODQzNjQyLWE3NmUtNDc1MC1iOGYzLTlhZWJlYjVmMWI3Nz9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationResults/37843642-a76e-4750-b8f3-9aebeb5f1b77?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationsStatus/37843642-a76e-4750-b8f3-9aebeb5f1b77?api-version=2019-05-13-preview" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "3c6fec8b-15f1-42d7-bd65-a1265c4404a7" + ], + "x-ms-client-request-id": [ + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f", + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "269" + ], + "x-ms-correlation-request-id": [ + "3c6fec8b-15f1-42d7-bd65-a1265c4404a7" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153331Z:3c6fec8b-15f1-42d7-bd65-a1265c4404a7" + ], + "Date": [ + "Mon, 16 May 2022 15:33:31 GMT" + ], + "Content-Length": [ + "2" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{}", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895/operationResults/37843642-a76e-4750-b8f3-9aebeb5f1b77?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9vcGVyYXRpb25SZXN1bHRzLzM3ODQzNjQyLWE3NmUtNDc1MC1iOGYzLTlhZWJlYjVmMWI3Nz9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationResults/37843642-a76e-4750-b8f3-9aebeb5f1b77?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationsStatus/37843642-a76e-4750-b8f3-9aebeb5f1b77?api-version=2019-05-13-preview" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "04f9878c-18eb-49b8-b677-51b920eb189d" + ], + "x-ms-client-request-id": [ + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f", + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "268" + ], + "x-ms-correlation-request-id": [ + "04f9878c-18eb-49b8-b677-51b920eb189d" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153332Z:04f9878c-18eb-49b8-b677-51b920eb189d" + ], + "Date": [ + "Mon, 16 May 2022 15:33:32 GMT" + ], + "Content-Length": [ + "2" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{}", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3Bstorage%3Bpstestrg8895%3Bpstestsa8895/protectedItems/AzureFileShare%3B698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959?$filter=expand%20eq%20'extendedinfo'&api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCc3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9wcm90ZWN0ZWRJdGVtcy9BenVyZUZpbGVTaGFyZSUzQjY5OGRmNTk1OTQ4ZTIzNTVmMmJiNzQ0YTQxY2YyNDVkNGJhMTI1NWQ5Njk5Y2MzYzJhZDFmNTA0NWUxNzc5NTk/JGZpbHRlcj1leHBhbmQlMjBlcSUyMCdleHRlbmRlZGluZm8nJmFwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895/operationResults/37843642-a76e-4750-b8f3-9aebeb5f1b77?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9vcGVyYXRpb25SZXN1bHRzLzM3ODQzNjQyLWE3NmUtNDc1MC1iOGYzLTlhZWJlYjVmMWI3Nz9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2696a023-f127-456d-982a-148f3e1382cf" + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -2822,67 +3195,13650 @@ "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationResults/37843642-a76e-4750-b8f3-9aebeb5f1b77?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationsStatus/37843642-a76e-4750-b8f3-9aebeb5f1b77?api-version=2019-05-13-preview" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "c11bfced-595d-4407-84c2-38cb24d17297" + ], + "x-ms-client-request-id": [ + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f", + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "267" + ], + "x-ms-correlation-request-id": [ + "c11bfced-595d-4407-84c2-38cb24d17297" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153332Z:c11bfced-595d-4407-84c2-38cb24d17297" + ], + "Date": [ + "Mon, 16 May 2022 15:33:32 GMT" + ], + "Content-Length": [ + "2" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{}", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895/operationResults/37843642-a76e-4750-b8f3-9aebeb5f1b77?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9vcGVyYXRpb25SZXN1bHRzLzM3ODQzNjQyLWE3NmUtNDc1MC1iOGYzLTlhZWJlYjVmMWI3Nz9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationResults/37843642-a76e-4750-b8f3-9aebeb5f1b77?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationsStatus/37843642-a76e-4750-b8f3-9aebeb5f1b77?api-version=2019-05-13-preview" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "d171e892-1247-4a73-89e8-b423196c4778" + ], + "x-ms-client-request-id": [ + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f", + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "266" + ], + "x-ms-correlation-request-id": [ + "d171e892-1247-4a73-89e8-b423196c4778" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153333Z:d171e892-1247-4a73-89e8-b423196c4778" + ], + "Date": [ + "Mon, 16 May 2022 15:33:33 GMT" + ], + "Content-Length": [ + "2" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{}", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895/operationResults/37843642-a76e-4750-b8f3-9aebeb5f1b77?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9vcGVyYXRpb25SZXN1bHRzLzM3ODQzNjQyLWE3NmUtNDc1MC1iOGYzLTlhZWJlYjVmMWI3Nz9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationResults/37843642-a76e-4750-b8f3-9aebeb5f1b77?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationsStatus/37843642-a76e-4750-b8f3-9aebeb5f1b77?api-version=2019-05-13-preview" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "baa5dd8e-49b8-4b67-9a59-d6033044e81c" + ], + "x-ms-client-request-id": [ + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f", + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "265" + ], + "x-ms-correlation-request-id": [ + "baa5dd8e-49b8-4b67-9a59-d6033044e81c" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153333Z:baa5dd8e-49b8-4b67-9a59-d6033044e81c" + ], + "Date": [ + "Mon, 16 May 2022 15:33:33 GMT" + ], + "Content-Length": [ + "2" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{}", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895/operationResults/37843642-a76e-4750-b8f3-9aebeb5f1b77?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9vcGVyYXRpb25SZXN1bHRzLzM3ODQzNjQyLWE3NmUtNDc1MC1iOGYzLTlhZWJlYjVmMWI3Nz9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationResults/37843642-a76e-4750-b8f3-9aebeb5f1b77?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationsStatus/37843642-a76e-4750-b8f3-9aebeb5f1b77?api-version=2019-05-13-preview" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "b2a2a5d1-5668-49ab-8daa-1f506639b0cd" + ], + "x-ms-client-request-id": [ + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f", + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "264" + ], + "x-ms-correlation-request-id": [ + "b2a2a5d1-5668-49ab-8daa-1f506639b0cd" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153335Z:b2a2a5d1-5668-49ab-8daa-1f506639b0cd" + ], + "Date": [ + "Mon, 16 May 2022 15:33:35 GMT" + ], + "Content-Length": [ + "2" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{}", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895/operationResults/37843642-a76e-4750-b8f3-9aebeb5f1b77?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9vcGVyYXRpb25SZXN1bHRzLzM3ODQzNjQyLWE3NmUtNDc1MC1iOGYzLTlhZWJlYjVmMWI3Nz9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationResults/37843642-a76e-4750-b8f3-9aebeb5f1b77?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationsStatus/37843642-a76e-4750-b8f3-9aebeb5f1b77?api-version=2019-05-13-preview" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "0086e07c-b51d-46d2-917d-f84e340cd9a8" + ], + "x-ms-client-request-id": [ + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f", + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "263" + ], + "x-ms-correlation-request-id": [ + "0086e07c-b51d-46d2-917d-f84e340cd9a8" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153336Z:0086e07c-b51d-46d2-917d-f84e340cd9a8" + ], + "Date": [ + "Mon, 16 May 2022 15:33:36 GMT" + ], + "Content-Length": [ + "2" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{}", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895/operationResults/37843642-a76e-4750-b8f3-9aebeb5f1b77?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9vcGVyYXRpb25SZXN1bHRzLzM3ODQzNjQyLWE3NmUtNDc1MC1iOGYzLTlhZWJlYjVmMWI3Nz9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationResults/37843642-a76e-4750-b8f3-9aebeb5f1b77?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationsStatus/37843642-a76e-4750-b8f3-9aebeb5f1b77?api-version=2019-05-13-preview" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "5b6b5f1f-5a50-45cc-aa13-4fdd8a68024b" + ], + "x-ms-client-request-id": [ + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f", + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "262" + ], + "x-ms-correlation-request-id": [ + "5b6b5f1f-5a50-45cc-aa13-4fdd8a68024b" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153337Z:5b6b5f1f-5a50-45cc-aa13-4fdd8a68024b" + ], + "Date": [ + "Mon, 16 May 2022 15:33:36 GMT" + ], + "Content-Length": [ + "2" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{}", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895/operationResults/37843642-a76e-4750-b8f3-9aebeb5f1b77?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9vcGVyYXRpb25SZXN1bHRzLzM3ODQzNjQyLWE3NmUtNDc1MC1iOGYzLTlhZWJlYjVmMWI3Nz9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationResults/37843642-a76e-4750-b8f3-9aebeb5f1b77?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationsStatus/37843642-a76e-4750-b8f3-9aebeb5f1b77?api-version=2019-05-13-preview" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "e56882d1-f694-451f-88ba-3df1bb9ceeab" + ], + "x-ms-client-request-id": [ + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f", + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "261" + ], + "x-ms-correlation-request-id": [ + "e56882d1-f694-451f-88ba-3df1bb9ceeab" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153337Z:e56882d1-f694-451f-88ba-3df1bb9ceeab" + ], + "Date": [ + "Mon, 16 May 2022 15:33:37 GMT" + ], + "Content-Length": [ + "2" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{}", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895/operationResults/37843642-a76e-4750-b8f3-9aebeb5f1b77?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9vcGVyYXRpb25SZXN1bHRzLzM3ODQzNjQyLWE3NmUtNDc1MC1iOGYzLTlhZWJlYjVmMWI3Nz9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationResults/37843642-a76e-4750-b8f3-9aebeb5f1b77?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationsStatus/37843642-a76e-4750-b8f3-9aebeb5f1b77?api-version=2019-05-13-preview" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "4ba61745-a5a2-43e4-b714-ffd259a4da57" + ], + "x-ms-client-request-id": [ + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f", + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "260" + ], + "x-ms-correlation-request-id": [ + "4ba61745-a5a2-43e4-b714-ffd259a4da57" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153338Z:4ba61745-a5a2-43e4-b714-ffd259a4da57" + ], + "Date": [ + "Mon, 16 May 2022 15:33:38 GMT" + ], + "Content-Length": [ + "2" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{}", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895/operationResults/37843642-a76e-4750-b8f3-9aebeb5f1b77?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9vcGVyYXRpb25SZXN1bHRzLzM3ODQzNjQyLWE3NmUtNDc1MC1iOGYzLTlhZWJlYjVmMWI3Nz9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationResults/37843642-a76e-4750-b8f3-9aebeb5f1b77?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationsStatus/37843642-a76e-4750-b8f3-9aebeb5f1b77?api-version=2019-05-13-preview" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "fc076aa7-f3a6-4b3a-87ff-005f5b72a429" + ], + "x-ms-client-request-id": [ + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f", + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "259" + ], + "x-ms-correlation-request-id": [ + "fc076aa7-f3a6-4b3a-87ff-005f5b72a429" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153338Z:fc076aa7-f3a6-4b3a-87ff-005f5b72a429" + ], + "Date": [ + "Mon, 16 May 2022 15:33:38 GMT" + ], + "Content-Length": [ + "2" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{}", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895/operationResults/37843642-a76e-4750-b8f3-9aebeb5f1b77?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9vcGVyYXRpb25SZXN1bHRzLzM3ODQzNjQyLWE3NmUtNDc1MC1iOGYzLTlhZWJlYjVmMWI3Nz9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationResults/37843642-a76e-4750-b8f3-9aebeb5f1b77?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationsStatus/37843642-a76e-4750-b8f3-9aebeb5f1b77?api-version=2019-05-13-preview" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "fcaff8c1-03c2-4d80-9537-b67cc5f51870" + ], + "x-ms-client-request-id": [ + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f", + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "258" + ], + "x-ms-correlation-request-id": [ + "fcaff8c1-03c2-4d80-9537-b67cc5f51870" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153339Z:fcaff8c1-03c2-4d80-9537-b67cc5f51870" + ], + "Date": [ + "Mon, 16 May 2022 15:33:39 GMT" + ], + "Content-Length": [ + "2" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{}", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895/operationResults/37843642-a76e-4750-b8f3-9aebeb5f1b77?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9vcGVyYXRpb25SZXN1bHRzLzM3ODQzNjQyLWE3NmUtNDc1MC1iOGYzLTlhZWJlYjVmMWI3Nz9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationResults/37843642-a76e-4750-b8f3-9aebeb5f1b77?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationsStatus/37843642-a76e-4750-b8f3-9aebeb5f1b77?api-version=2019-05-13-preview" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "2dffbde3-ba90-4180-8258-24190ace163c" + ], + "x-ms-client-request-id": [ + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f", + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "257" + ], + "x-ms-correlation-request-id": [ + "2dffbde3-ba90-4180-8258-24190ace163c" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153339Z:2dffbde3-ba90-4180-8258-24190ace163c" + ], + "Date": [ + "Mon, 16 May 2022 15:33:39 GMT" + ], + "Content-Length": [ + "2" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{}", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895/operationResults/37843642-a76e-4750-b8f3-9aebeb5f1b77?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9vcGVyYXRpb25SZXN1bHRzLzM3ODQzNjQyLWE3NmUtNDc1MC1iOGYzLTlhZWJlYjVmMWI3Nz9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationResults/37843642-a76e-4750-b8f3-9aebeb5f1b77?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationsStatus/37843642-a76e-4750-b8f3-9aebeb5f1b77?api-version=2019-05-13-preview" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "1dadbf00-f713-4954-9a62-5cf36d20d105" + ], + "x-ms-client-request-id": [ + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f", + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "256" + ], + "x-ms-correlation-request-id": [ + "1dadbf00-f713-4954-9a62-5cf36d20d105" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153340Z:1dadbf00-f713-4954-9a62-5cf36d20d105" + ], + "Date": [ + "Mon, 16 May 2022 15:33:40 GMT" + ], + "Content-Length": [ + "2" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{}", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895/operationResults/37843642-a76e-4750-b8f3-9aebeb5f1b77?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9vcGVyYXRpb25SZXN1bHRzLzM3ODQzNjQyLWE3NmUtNDc1MC1iOGYzLTlhZWJlYjVmMWI3Nz9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationResults/37843642-a76e-4750-b8f3-9aebeb5f1b77?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationsStatus/37843642-a76e-4750-b8f3-9aebeb5f1b77?api-version=2019-05-13-preview" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "e1e82412-594a-434b-ae96-70807e427fd3" + ], + "x-ms-client-request-id": [ + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f", + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "255" + ], + "x-ms-correlation-request-id": [ + "e1e82412-594a-434b-ae96-70807e427fd3" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153340Z:e1e82412-594a-434b-ae96-70807e427fd3" + ], + "Date": [ + "Mon, 16 May 2022 15:33:40 GMT" + ], + "Content-Length": [ + "2" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{}", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895/operationResults/37843642-a76e-4750-b8f3-9aebeb5f1b77?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9vcGVyYXRpb25SZXN1bHRzLzM3ODQzNjQyLWE3NmUtNDc1MC1iOGYzLTlhZWJlYjVmMWI3Nz9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationResults/37843642-a76e-4750-b8f3-9aebeb5f1b77?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationsStatus/37843642-a76e-4750-b8f3-9aebeb5f1b77?api-version=2019-05-13-preview" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "066346e0-da77-493f-ab02-9daf83c89ad7" + ], + "x-ms-client-request-id": [ + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f", + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "254" + ], + "x-ms-correlation-request-id": [ + "066346e0-da77-493f-ab02-9daf83c89ad7" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153341Z:066346e0-da77-493f-ab02-9daf83c89ad7" + ], + "Date": [ + "Mon, 16 May 2022 15:33:41 GMT" + ], + "Content-Length": [ + "2" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{}", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895/operationResults/37843642-a76e-4750-b8f3-9aebeb5f1b77?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9vcGVyYXRpb25SZXN1bHRzLzM3ODQzNjQyLWE3NmUtNDc1MC1iOGYzLTlhZWJlYjVmMWI3Nz9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "ee1270db-c8c9-4d40-ace3-b948bf604225" + ], + "x-ms-client-request-id": [ + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f", + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "253" + ], + "x-ms-correlation-request-id": [ + "ee1270db-c8c9-4d40-ace3-b948bf604225" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153341Z:ee1270db-c8c9-4d40-ace3-b948bf604225" + ], + "Date": [ + "Mon, 16 May 2022 15:33:41 GMT" + ], + "Content-Length": [ + "737" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895\",\r\n \"name\": \"StorageContainer;Storage;pstestrg8895;pstestsa8895\",\r\n \"properties\": {\r\n \"sourceResourceId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstestsa8895\",\r\n \"protectedItemCount\": 0,\r\n \"acquireStorageAccountLock\": \"Acquire\",\r\n \"friendlyName\": \"pstestsa8895\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"registrationStatus\": \"Registered\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerType\": \"StorageContainer\",\r\n \"protectableObjectType\": \"StorageContainer\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895/operationResults/37843642-a76e-4750-b8f3-9aebeb5f1b77?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9vcGVyYXRpb25SZXN1bHRzLzM3ODQzNjQyLWE3NmUtNDc1MC1iOGYzLTlhZWJlYjVmMWI3Nz9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "cf0039df-05ef-44a5-9763-56c9cfa63ac5" + ], + "x-ms-client-request-id": [ + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f", + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "252" + ], + "x-ms-correlation-request-id": [ + "cf0039df-05ef-44a5-9763-56c9cfa63ac5" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153342Z:cf0039df-05ef-44a5-9763-56c9cfa63ac5" + ], + "Date": [ + "Mon, 16 May 2022 15:33:42 GMT" + ], + "Content-Length": [ + "737" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895\",\r\n \"name\": \"StorageContainer;Storage;pstestrg8895;pstestsa8895\",\r\n \"properties\": {\r\n \"sourceResourceId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstestsa8895\",\r\n \"protectedItemCount\": 0,\r\n \"acquireStorageAccountLock\": \"Acquire\",\r\n \"friendlyName\": \"pstestsa8895\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"registrationStatus\": \"Registered\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerType\": \"StorageContainer\",\r\n \"protectableObjectType\": \"StorageContainer\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupProtectableItems?$filter=backupManagementType%20eq%20'AzureStorage'&api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwUHJvdGVjdGFibGVJdGVtcz8kZmlsdGVyPWJhY2t1cE1hbmFnZW1lbnRUeXBlJTIwZXElMjAnQXp1cmVTdG9yYWdlJyZhcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "88937b65-2070-4b66-994c-9c4bb2aabcf7" + ], + "x-ms-client-request-id": [ + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f", + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "299" + ], + "x-ms-correlation-request-id": [ + "88937b65-2070-4b66-994c-9c4bb2aabcf7" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153343Z:88937b65-2070-4b66-994c-9c4bb2aabcf7" + ], + "Date": [ + "Mon, 16 May 2022 15:33:42 GMT" + ], + "Content-Length": [ + "947" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/storagecontainer;storage;pstestrg8895;pstestsa8895/protectableItems/azurefileshare;698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959\",\r\n \"name\": \"azurefileshare;698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems\",\r\n \"properties\": {\r\n \"parentContainerFabricId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstestsa8895\",\r\n \"parentContainerFriendlyName\": \"pstestsa8895\",\r\n \"azureFileShareType\": \"XSMB\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"workloadType\": \"AzureFileShare\",\r\n \"protectableItemType\": \"AzureFileShare\",\r\n \"friendlyName\": \"fs1\",\r\n \"protectionState\": \"NotProtected\"\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/storagecontainer%3Bstorage%3Bpstestrg8895%3Bpstestsa8895/protectedItems/azurefileshare%3B698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9zdG9yYWdlY29udGFpbmVyJTNCc3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9wcm90ZWN0ZWRJdGVtcy9henVyZWZpbGVzaGFyZSUzQjY5OGRmNTk1OTQ4ZTIzNTVmMmJiNzQ0YTQxY2YyNDVkNGJhMTI1NWQ5Njk5Y2MzYzJhZDFmNTA0NWUxNzc5NTk/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"protectedItemType\": \"AzureFileShareProtectedItem\",\r\n \"sourceResourceId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstestsa8895\",\r\n \"policyId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupPolicies/afspolicy1\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "433" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/storagecontainer;storage;pstestrg8895;pstestsa8895/protectedItems/azurefileshare;698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959/operationResults/0a9d52f5-01e3-493d-bf4c-71e84c268299?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/storagecontainer;storage;pstestrg8895;pstestsa8895/protectedItems/azurefileshare;698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959/operationsStatus/0a9d52f5-01e3-493d-bf4c-71e84c268299?api-version=2022-02-01" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "fe675404-ce20-4c67-aef6-6b272ef8824b" + ], + "x-ms-client-request-id": [ + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f", + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-correlation-request-id": [ + "fe675404-ce20-4c67-aef6-6b272ef8824b" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153344Z:fe675404-ce20-4c67-aef6-6b272ef8824b" + ], + "Date": [ + "Mon, 16 May 2022 15:33:44 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/0a9d52f5-01e3-493d-bf4c-71e84c268299?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy8wYTlkNTJmNS0wMWUzLTQ5M2QtYmY0Yy03MWU4NGMyNjgyOTk/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "0dc077a9-d607-426e-b1d9-55c4db38dc8b" + ], + "x-ms-client-request-id": [ + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f", + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "299" + ], + "x-ms-correlation-request-id": [ + "0dc077a9-d607-426e-b1d9-55c4db38dc8b" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153345Z:0dc077a9-d607-426e-b1d9-55c4db38dc8b" + ], + "Date": [ + "Mon, 16 May 2022 15:33:45 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"0a9d52f5-01e3-493d-bf4c-71e84c268299\",\r\n \"name\": \"0a9d52f5-01e3-493d-bf4c-71e84c268299\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:33:44.4505291Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/0a9d52f5-01e3-493d-bf4c-71e84c268299?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy8wYTlkNTJmNS0wMWUzLTQ5M2QtYmY0Yy03MWU4NGMyNjgyOTk/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "abb3abcd-1b2a-4825-9799-6c14ccb51768" + ], + "x-ms-client-request-id": [ + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f", + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "298" + ], + "x-ms-correlation-request-id": [ + "abb3abcd-1b2a-4825-9799-6c14ccb51768" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153345Z:abb3abcd-1b2a-4825-9799-6c14ccb51768" + ], + "Date": [ + "Mon, 16 May 2022 15:33:45 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"0a9d52f5-01e3-493d-bf4c-71e84c268299\",\r\n \"name\": \"0a9d52f5-01e3-493d-bf4c-71e84c268299\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:33:44.4505291Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/0a9d52f5-01e3-493d-bf4c-71e84c268299?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy8wYTlkNTJmNS0wMWUzLTQ5M2QtYmY0Yy03MWU4NGMyNjgyOTk/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "d40a84b0-3c2b-4cc2-a74f-f66d1718f4bc" + ], + "x-ms-client-request-id": [ + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f", + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "297" + ], + "x-ms-correlation-request-id": [ + "d40a84b0-3c2b-4cc2-a74f-f66d1718f4bc" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153346Z:d40a84b0-3c2b-4cc2-a74f-f66d1718f4bc" + ], + "Date": [ + "Mon, 16 May 2022 15:33:46 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"0a9d52f5-01e3-493d-bf4c-71e84c268299\",\r\n \"name\": \"0a9d52f5-01e3-493d-bf4c-71e84c268299\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:33:44.4505291Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/0a9d52f5-01e3-493d-bf4c-71e84c268299?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy8wYTlkNTJmNS0wMWUzLTQ5M2QtYmY0Yy03MWU4NGMyNjgyOTk/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "68443517-965e-43d5-83b8-cc3dfc4ee391" + ], + "x-ms-client-request-id": [ + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f", + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "296" + ], + "x-ms-correlation-request-id": [ + "68443517-965e-43d5-83b8-cc3dfc4ee391" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153346Z:68443517-965e-43d5-83b8-cc3dfc4ee391" + ], + "Date": [ + "Mon, 16 May 2022 15:33:46 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"0a9d52f5-01e3-493d-bf4c-71e84c268299\",\r\n \"name\": \"0a9d52f5-01e3-493d-bf4c-71e84c268299\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:33:44.4505291Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/0a9d52f5-01e3-493d-bf4c-71e84c268299?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy8wYTlkNTJmNS0wMWUzLTQ5M2QtYmY0Yy03MWU4NGMyNjgyOTk/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "e3a3ed26-a3a5-47b0-919d-5fce30fbaeb3" + ], + "x-ms-client-request-id": [ + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f", + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "295" + ], + "x-ms-correlation-request-id": [ + "e3a3ed26-a3a5-47b0-919d-5fce30fbaeb3" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153347Z:e3a3ed26-a3a5-47b0-919d-5fce30fbaeb3" + ], + "Date": [ + "Mon, 16 May 2022 15:33:47 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"0a9d52f5-01e3-493d-bf4c-71e84c268299\",\r\n \"name\": \"0a9d52f5-01e3-493d-bf4c-71e84c268299\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:33:44.4505291Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/0a9d52f5-01e3-493d-bf4c-71e84c268299?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy8wYTlkNTJmNS0wMWUzLTQ5M2QtYmY0Yy03MWU4NGMyNjgyOTk/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "994d4371-9988-477a-8cf8-20689feb4e9d" + ], + "x-ms-client-request-id": [ + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f", + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "294" + ], + "x-ms-correlation-request-id": [ + "994d4371-9988-477a-8cf8-20689feb4e9d" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153348Z:994d4371-9988-477a-8cf8-20689feb4e9d" + ], + "Date": [ + "Mon, 16 May 2022 15:33:47 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"0a9d52f5-01e3-493d-bf4c-71e84c268299\",\r\n \"name\": \"0a9d52f5-01e3-493d-bf4c-71e84c268299\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:33:44.4505291Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/0a9d52f5-01e3-493d-bf4c-71e84c268299?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy8wYTlkNTJmNS0wMWUzLTQ5M2QtYmY0Yy03MWU4NGMyNjgyOTk/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "ec65acd9-196d-4210-83e1-032ce66d4d60" + ], + "x-ms-client-request-id": [ + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f", + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "293" + ], + "x-ms-correlation-request-id": [ + "ec65acd9-196d-4210-83e1-032ce66d4d60" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153348Z:ec65acd9-196d-4210-83e1-032ce66d4d60" + ], + "Date": [ + "Mon, 16 May 2022 15:33:48 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"0a9d52f5-01e3-493d-bf4c-71e84c268299\",\r\n \"name\": \"0a9d52f5-01e3-493d-bf4c-71e84c268299\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:33:44.4505291Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/0a9d52f5-01e3-493d-bf4c-71e84c268299?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy8wYTlkNTJmNS0wMWUzLTQ5M2QtYmY0Yy03MWU4NGMyNjgyOTk/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "31831f19-2770-4c1b-8b91-d0742b2beca6" + ], + "x-ms-client-request-id": [ + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f", + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "292" + ], + "x-ms-correlation-request-id": [ + "31831f19-2770-4c1b-8b91-d0742b2beca6" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153349Z:31831f19-2770-4c1b-8b91-d0742b2beca6" + ], + "Date": [ + "Mon, 16 May 2022 15:33:48 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"0a9d52f5-01e3-493d-bf4c-71e84c268299\",\r\n \"name\": \"0a9d52f5-01e3-493d-bf4c-71e84c268299\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:33:44.4505291Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/0a9d52f5-01e3-493d-bf4c-71e84c268299?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy8wYTlkNTJmNS0wMWUzLTQ5M2QtYmY0Yy03MWU4NGMyNjgyOTk/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "8c30ffeb-a676-469f-b023-4094290cf2f5" + ], + "x-ms-client-request-id": [ + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f", + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "291" + ], + "x-ms-correlation-request-id": [ + "8c30ffeb-a676-469f-b023-4094290cf2f5" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153349Z:8c30ffeb-a676-469f-b023-4094290cf2f5" + ], + "Date": [ + "Mon, 16 May 2022 15:33:49 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"0a9d52f5-01e3-493d-bf4c-71e84c268299\",\r\n \"name\": \"0a9d52f5-01e3-493d-bf4c-71e84c268299\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:33:44.4505291Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/0a9d52f5-01e3-493d-bf4c-71e84c268299?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy8wYTlkNTJmNS0wMWUzLTQ5M2QtYmY0Yy03MWU4NGMyNjgyOTk/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "fc322246-3079-4cd2-907b-6b4a673c9fe9" + ], + "x-ms-client-request-id": [ + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f", + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "290" + ], + "x-ms-correlation-request-id": [ + "fc322246-3079-4cd2-907b-6b4a673c9fe9" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153350Z:fc322246-3079-4cd2-907b-6b4a673c9fe9" + ], + "Date": [ + "Mon, 16 May 2022 15:33:49 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"0a9d52f5-01e3-493d-bf4c-71e84c268299\",\r\n \"name\": \"0a9d52f5-01e3-493d-bf4c-71e84c268299\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:33:44.4505291Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/0a9d52f5-01e3-493d-bf4c-71e84c268299?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy8wYTlkNTJmNS0wMWUzLTQ5M2QtYmY0Yy03MWU4NGMyNjgyOTk/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "efaf5ffe-0c7a-4160-ac14-980d2d785f94" + ], + "x-ms-client-request-id": [ + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f", + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "289" + ], + "x-ms-correlation-request-id": [ + "efaf5ffe-0c7a-4160-ac14-980d2d785f94" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153350Z:efaf5ffe-0c7a-4160-ac14-980d2d785f94" + ], + "Date": [ + "Mon, 16 May 2022 15:33:50 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"0a9d52f5-01e3-493d-bf4c-71e84c268299\",\r\n \"name\": \"0a9d52f5-01e3-493d-bf4c-71e84c268299\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:33:44.4505291Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/0a9d52f5-01e3-493d-bf4c-71e84c268299?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy8wYTlkNTJmNS0wMWUzLTQ5M2QtYmY0Yy03MWU4NGMyNjgyOTk/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "09c60ea0-a4b4-4c71-a896-f9130a190889" + ], + "x-ms-client-request-id": [ + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f", + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "288" + ], + "x-ms-correlation-request-id": [ + "09c60ea0-a4b4-4c71-a896-f9130a190889" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153351Z:09c60ea0-a4b4-4c71-a896-f9130a190889" + ], + "Date": [ + "Mon, 16 May 2022 15:33:50 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"0a9d52f5-01e3-493d-bf4c-71e84c268299\",\r\n \"name\": \"0a9d52f5-01e3-493d-bf4c-71e84c268299\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:33:44.4505291Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/0a9d52f5-01e3-493d-bf4c-71e84c268299?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy8wYTlkNTJmNS0wMWUzLTQ5M2QtYmY0Yy03MWU4NGMyNjgyOTk/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "464746e9-a1ed-4121-ba1f-1527374c2bb3" + ], + "x-ms-client-request-id": [ + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f", + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "287" + ], + "x-ms-correlation-request-id": [ + "464746e9-a1ed-4121-ba1f-1527374c2bb3" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153351Z:464746e9-a1ed-4121-ba1f-1527374c2bb3" + ], + "Date": [ + "Mon, 16 May 2022 15:33:51 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"0a9d52f5-01e3-493d-bf4c-71e84c268299\",\r\n \"name\": \"0a9d52f5-01e3-493d-bf4c-71e84c268299\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:33:44.4505291Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/0a9d52f5-01e3-493d-bf4c-71e84c268299?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy8wYTlkNTJmNS0wMWUzLTQ5M2QtYmY0Yy03MWU4NGMyNjgyOTk/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "2372a8f3-5586-4644-81a1-578845269207" + ], + "x-ms-client-request-id": [ + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f", + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "286" + ], + "x-ms-correlation-request-id": [ + "2372a8f3-5586-4644-81a1-578845269207" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153352Z:2372a8f3-5586-4644-81a1-578845269207" + ], + "Date": [ + "Mon, 16 May 2022 15:33:51 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"0a9d52f5-01e3-493d-bf4c-71e84c268299\",\r\n \"name\": \"0a9d52f5-01e3-493d-bf4c-71e84c268299\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:33:44.4505291Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/0a9d52f5-01e3-493d-bf4c-71e84c268299?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy8wYTlkNTJmNS0wMWUzLTQ5M2QtYmY0Yy03MWU4NGMyNjgyOTk/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "fb19b029-fcb3-4096-b38d-94c57cb8d4c1" + ], + "x-ms-client-request-id": [ + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f", + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "285" + ], + "x-ms-correlation-request-id": [ + "fb19b029-fcb3-4096-b38d-94c57cb8d4c1" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153352Z:fb19b029-fcb3-4096-b38d-94c57cb8d4c1" + ], + "Date": [ + "Mon, 16 May 2022 15:33:52 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"0a9d52f5-01e3-493d-bf4c-71e84c268299\",\r\n \"name\": \"0a9d52f5-01e3-493d-bf4c-71e84c268299\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:33:44.4505291Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/0a9d52f5-01e3-493d-bf4c-71e84c268299?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy8wYTlkNTJmNS0wMWUzLTQ5M2QtYmY0Yy03MWU4NGMyNjgyOTk/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "9d681c3f-3cbc-4119-ad82-b2f372b0d8b4" + ], + "x-ms-client-request-id": [ + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f", + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "284" + ], + "x-ms-correlation-request-id": [ + "9d681c3f-3cbc-4119-ad82-b2f372b0d8b4" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153353Z:9d681c3f-3cbc-4119-ad82-b2f372b0d8b4" + ], + "Date": [ + "Mon, 16 May 2022 15:33:52 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"0a9d52f5-01e3-493d-bf4c-71e84c268299\",\r\n \"name\": \"0a9d52f5-01e3-493d-bf4c-71e84c268299\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:33:44.4505291Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/0a9d52f5-01e3-493d-bf4c-71e84c268299?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy8wYTlkNTJmNS0wMWUzLTQ5M2QtYmY0Yy03MWU4NGMyNjgyOTk/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "e15e9e74-ec35-42a0-be04-7ced76c872f9" + ], + "x-ms-client-request-id": [ + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f", + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "283" + ], + "x-ms-correlation-request-id": [ + "e15e9e74-ec35-42a0-be04-7ced76c872f9" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153353Z:e15e9e74-ec35-42a0-be04-7ced76c872f9" + ], + "Date": [ + "Mon, 16 May 2022 15:33:53 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"0a9d52f5-01e3-493d-bf4c-71e84c268299\",\r\n \"name\": \"0a9d52f5-01e3-493d-bf4c-71e84c268299\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:33:44.4505291Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/0a9d52f5-01e3-493d-bf4c-71e84c268299?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy8wYTlkNTJmNS0wMWUzLTQ5M2QtYmY0Yy03MWU4NGMyNjgyOTk/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "9afc67a2-8163-4772-8623-20b2234de4bf" + ], + "x-ms-client-request-id": [ + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f", + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "282" + ], + "x-ms-correlation-request-id": [ + "9afc67a2-8163-4772-8623-20b2234de4bf" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153354Z:9afc67a2-8163-4772-8623-20b2234de4bf" + ], + "Date": [ + "Mon, 16 May 2022 15:33:53 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"0a9d52f5-01e3-493d-bf4c-71e84c268299\",\r\n \"name\": \"0a9d52f5-01e3-493d-bf4c-71e84c268299\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:33:44.4505291Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/0a9d52f5-01e3-493d-bf4c-71e84c268299?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy8wYTlkNTJmNS0wMWUzLTQ5M2QtYmY0Yy03MWU4NGMyNjgyOTk/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "c0ce5176-4ec8-4781-a13f-b731d7bf6625" + ], + "x-ms-client-request-id": [ + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f", + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "281" + ], + "x-ms-correlation-request-id": [ + "c0ce5176-4ec8-4781-a13f-b731d7bf6625" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153354Z:c0ce5176-4ec8-4781-a13f-b731d7bf6625" + ], + "Date": [ + "Mon, 16 May 2022 15:33:54 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"0a9d52f5-01e3-493d-bf4c-71e84c268299\",\r\n \"name\": \"0a9d52f5-01e3-493d-bf4c-71e84c268299\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:33:44.4505291Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/0a9d52f5-01e3-493d-bf4c-71e84c268299?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy8wYTlkNTJmNS0wMWUzLTQ5M2QtYmY0Yy03MWU4NGMyNjgyOTk/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "36e82991-eeed-4c5b-ac9c-54b9cb4d4d2c" + ], + "x-ms-client-request-id": [ + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f", + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "280" + ], + "x-ms-correlation-request-id": [ + "36e82991-eeed-4c5b-ac9c-54b9cb4d4d2c" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153355Z:36e82991-eeed-4c5b-ac9c-54b9cb4d4d2c" + ], + "Date": [ + "Mon, 16 May 2022 15:33:54 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"0a9d52f5-01e3-493d-bf4c-71e84c268299\",\r\n \"name\": \"0a9d52f5-01e3-493d-bf4c-71e84c268299\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:33:44.4505291Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/0a9d52f5-01e3-493d-bf4c-71e84c268299?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy8wYTlkNTJmNS0wMWUzLTQ5M2QtYmY0Yy03MWU4NGMyNjgyOTk/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "897ae7a1-82e3-4ba8-be1e-58b2c7b7e3f9" + ], + "x-ms-client-request-id": [ + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f", + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "279" + ], + "x-ms-correlation-request-id": [ + "897ae7a1-82e3-4ba8-be1e-58b2c7b7e3f9" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153355Z:897ae7a1-82e3-4ba8-be1e-58b2c7b7e3f9" + ], + "Date": [ + "Mon, 16 May 2022 15:33:55 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"0a9d52f5-01e3-493d-bf4c-71e84c268299\",\r\n \"name\": \"0a9d52f5-01e3-493d-bf4c-71e84c268299\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:33:44.4505291Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/0a9d52f5-01e3-493d-bf4c-71e84c268299?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy8wYTlkNTJmNS0wMWUzLTQ5M2QtYmY0Yy03MWU4NGMyNjgyOTk/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "1a3215c3-baaf-4a47-a42d-5fe802cf02df" + ], + "x-ms-client-request-id": [ + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f", + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "278" + ], + "x-ms-correlation-request-id": [ + "1a3215c3-baaf-4a47-a42d-5fe802cf02df" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153356Z:1a3215c3-baaf-4a47-a42d-5fe802cf02df" + ], + "Date": [ + "Mon, 16 May 2022 15:33:55 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"0a9d52f5-01e3-493d-bf4c-71e84c268299\",\r\n \"name\": \"0a9d52f5-01e3-493d-bf4c-71e84c268299\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:33:44.4505291Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/0a9d52f5-01e3-493d-bf4c-71e84c268299?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy8wYTlkNTJmNS0wMWUzLTQ5M2QtYmY0Yy03MWU4NGMyNjgyOTk/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "ed144dda-259d-4770-9eb0-2a6885f6d570" + ], + "x-ms-client-request-id": [ + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f", + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "277" + ], + "x-ms-correlation-request-id": [ + "ed144dda-259d-4770-9eb0-2a6885f6d570" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153356Z:ed144dda-259d-4770-9eb0-2a6885f6d570" + ], + "Date": [ + "Mon, 16 May 2022 15:33:56 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"0a9d52f5-01e3-493d-bf4c-71e84c268299\",\r\n \"name\": \"0a9d52f5-01e3-493d-bf4c-71e84c268299\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:33:44.4505291Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/0a9d52f5-01e3-493d-bf4c-71e84c268299?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy8wYTlkNTJmNS0wMWUzLTQ5M2QtYmY0Yy03MWU4NGMyNjgyOTk/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "d2721b80-037f-4d44-ac10-4962d7aca083" + ], + "x-ms-client-request-id": [ + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f", + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "276" + ], + "x-ms-correlation-request-id": [ + "d2721b80-037f-4d44-ac10-4962d7aca083" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153357Z:d2721b80-037f-4d44-ac10-4962d7aca083" + ], + "Date": [ + "Mon, 16 May 2022 15:33:57 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"0a9d52f5-01e3-493d-bf4c-71e84c268299\",\r\n \"name\": \"0a9d52f5-01e3-493d-bf4c-71e84c268299\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:33:44.4505291Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/0a9d52f5-01e3-493d-bf4c-71e84c268299?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy8wYTlkNTJmNS0wMWUzLTQ5M2QtYmY0Yy03MWU4NGMyNjgyOTk/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "95887270-35b3-4780-a671-8bc8ea70ee73" + ], + "x-ms-client-request-id": [ + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f", + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "275" + ], + "x-ms-correlation-request-id": [ + "95887270-35b3-4780-a671-8bc8ea70ee73" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153357Z:95887270-35b3-4780-a671-8bc8ea70ee73" + ], + "Date": [ + "Mon, 16 May 2022 15:33:57 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"0a9d52f5-01e3-493d-bf4c-71e84c268299\",\r\n \"name\": \"0a9d52f5-01e3-493d-bf4c-71e84c268299\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:33:44.4505291Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/0a9d52f5-01e3-493d-bf4c-71e84c268299?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy8wYTlkNTJmNS0wMWUzLTQ5M2QtYmY0Yy03MWU4NGMyNjgyOTk/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "d4a378d1-6a4b-49ca-bf14-a9dc92843ac5" + ], + "x-ms-client-request-id": [ + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f", + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "274" + ], + "x-ms-correlation-request-id": [ + "d4a378d1-6a4b-49ca-bf14-a9dc92843ac5" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153358Z:d4a378d1-6a4b-49ca-bf14-a9dc92843ac5" + ], + "Date": [ + "Mon, 16 May 2022 15:33:58 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"0a9d52f5-01e3-493d-bf4c-71e84c268299\",\r\n \"name\": \"0a9d52f5-01e3-493d-bf4c-71e84c268299\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:33:44.4505291Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/0a9d52f5-01e3-493d-bf4c-71e84c268299?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy8wYTlkNTJmNS0wMWUzLTQ5M2QtYmY0Yy03MWU4NGMyNjgyOTk/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "5530eb3d-2469-4d95-b693-657985ca2c5f" + ], + "x-ms-client-request-id": [ + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f", + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "273" + ], + "x-ms-correlation-request-id": [ + "5530eb3d-2469-4d95-b693-657985ca2c5f" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153358Z:5530eb3d-2469-4d95-b693-657985ca2c5f" + ], + "Date": [ + "Mon, 16 May 2022 15:33:58 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"0a9d52f5-01e3-493d-bf4c-71e84c268299\",\r\n \"name\": \"0a9d52f5-01e3-493d-bf4c-71e84c268299\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:33:44.4505291Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/0a9d52f5-01e3-493d-bf4c-71e84c268299?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy8wYTlkNTJmNS0wMWUzLTQ5M2QtYmY0Yy03MWU4NGMyNjgyOTk/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "48f4ab96-4f67-498f-8569-b1a2be3680d6" + ], + "x-ms-client-request-id": [ + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f", + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "272" + ], + "x-ms-correlation-request-id": [ + "48f4ab96-4f67-498f-8569-b1a2be3680d6" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153359Z:48f4ab96-4f67-498f-8569-b1a2be3680d6" + ], + "Date": [ + "Mon, 16 May 2022 15:33:59 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"0a9d52f5-01e3-493d-bf4c-71e84c268299\",\r\n \"name\": \"0a9d52f5-01e3-493d-bf4c-71e84c268299\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:33:44.4505291Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/0a9d52f5-01e3-493d-bf4c-71e84c268299?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy8wYTlkNTJmNS0wMWUzLTQ5M2QtYmY0Yy03MWU4NGMyNjgyOTk/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "807be88a-1cba-482e-a68c-940be9ca4b85" + ], + "x-ms-client-request-id": [ + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f", + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "271" + ], + "x-ms-correlation-request-id": [ + "807be88a-1cba-482e-a68c-940be9ca4b85" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153359Z:807be88a-1cba-482e-a68c-940be9ca4b85" + ], + "Date": [ + "Mon, 16 May 2022 15:33:59 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"0a9d52f5-01e3-493d-bf4c-71e84c268299\",\r\n \"name\": \"0a9d52f5-01e3-493d-bf4c-71e84c268299\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:33:44.4505291Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/0a9d52f5-01e3-493d-bf4c-71e84c268299?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy8wYTlkNTJmNS0wMWUzLTQ5M2QtYmY0Yy03MWU4NGMyNjgyOTk/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "6b90d568-9df4-40b6-b6fa-4425b367b4c2" + ], + "x-ms-client-request-id": [ + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f", + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "270" + ], + "x-ms-correlation-request-id": [ + "6b90d568-9df4-40b6-b6fa-4425b367b4c2" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153400Z:6b90d568-9df4-40b6-b6fa-4425b367b4c2" + ], + "Date": [ + "Mon, 16 May 2022 15:34:00 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"0a9d52f5-01e3-493d-bf4c-71e84c268299\",\r\n \"name\": \"0a9d52f5-01e3-493d-bf4c-71e84c268299\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:33:44.4505291Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/0a9d52f5-01e3-493d-bf4c-71e84c268299?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy8wYTlkNTJmNS0wMWUzLTQ5M2QtYmY0Yy03MWU4NGMyNjgyOTk/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "6dca7fe9-a757-432b-ae6f-296f1903281e" + ], + "x-ms-client-request-id": [ + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f", + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "269" + ], + "x-ms-correlation-request-id": [ + "6dca7fe9-a757-432b-ae6f-296f1903281e" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153400Z:6dca7fe9-a757-432b-ae6f-296f1903281e" + ], + "Date": [ + "Mon, 16 May 2022 15:34:00 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"0a9d52f5-01e3-493d-bf4c-71e84c268299\",\r\n \"name\": \"0a9d52f5-01e3-493d-bf4c-71e84c268299\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:33:44.4505291Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/0a9d52f5-01e3-493d-bf4c-71e84c268299?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy8wYTlkNTJmNS0wMWUzLTQ5M2QtYmY0Yy03MWU4NGMyNjgyOTk/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "dc5f0c67-5302-4488-964d-ec35c485e265" + ], + "x-ms-client-request-id": [ + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f", + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "268" + ], + "x-ms-correlation-request-id": [ + "dc5f0c67-5302-4488-964d-ec35c485e265" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153401Z:dc5f0c67-5302-4488-964d-ec35c485e265" + ], + "Date": [ + "Mon, 16 May 2022 15:34:01 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"0a9d52f5-01e3-493d-bf4c-71e84c268299\",\r\n \"name\": \"0a9d52f5-01e3-493d-bf4c-71e84c268299\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:33:44.4505291Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/0a9d52f5-01e3-493d-bf4c-71e84c268299?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy8wYTlkNTJmNS0wMWUzLTQ5M2QtYmY0Yy03MWU4NGMyNjgyOTk/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "723960b4-62ec-4eae-8352-734941092997" + ], + "x-ms-client-request-id": [ + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f", + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "267" + ], + "x-ms-correlation-request-id": [ + "723960b4-62ec-4eae-8352-734941092997" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153402Z:723960b4-62ec-4eae-8352-734941092997" + ], + "Date": [ + "Mon, 16 May 2022 15:34:01 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"0a9d52f5-01e3-493d-bf4c-71e84c268299\",\r\n \"name\": \"0a9d52f5-01e3-493d-bf4c-71e84c268299\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:33:44.4505291Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/0a9d52f5-01e3-493d-bf4c-71e84c268299?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy8wYTlkNTJmNS0wMWUzLTQ5M2QtYmY0Yy03MWU4NGMyNjgyOTk/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "bbadea35-0d54-4590-bae3-21025e19a537" + ], + "x-ms-client-request-id": [ + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f", + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "266" + ], + "x-ms-correlation-request-id": [ + "bbadea35-0d54-4590-bae3-21025e19a537" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153402Z:bbadea35-0d54-4590-bae3-21025e19a537" + ], + "Date": [ + "Mon, 16 May 2022 15:34:02 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"0a9d52f5-01e3-493d-bf4c-71e84c268299\",\r\n \"name\": \"0a9d52f5-01e3-493d-bf4c-71e84c268299\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:33:44.4505291Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/0a9d52f5-01e3-493d-bf4c-71e84c268299?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy8wYTlkNTJmNS0wMWUzLTQ5M2QtYmY0Yy03MWU4NGMyNjgyOTk/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "35760324-8ea2-4100-a37e-0fca1a1ae812" + ], + "x-ms-client-request-id": [ + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f", + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "265" + ], + "x-ms-correlation-request-id": [ + "35760324-8ea2-4100-a37e-0fca1a1ae812" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153403Z:35760324-8ea2-4100-a37e-0fca1a1ae812" + ], + "Date": [ + "Mon, 16 May 2022 15:34:02 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"0a9d52f5-01e3-493d-bf4c-71e84c268299\",\r\n \"name\": \"0a9d52f5-01e3-493d-bf4c-71e84c268299\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:33:44.4505291Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/0a9d52f5-01e3-493d-bf4c-71e84c268299?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy8wYTlkNTJmNS0wMWUzLTQ5M2QtYmY0Yy03MWU4NGMyNjgyOTk/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "5b86d1aa-9222-497e-a79b-3b1780856f7f" + ], + "x-ms-client-request-id": [ + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f", + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "264" + ], + "x-ms-correlation-request-id": [ + "5b86d1aa-9222-497e-a79b-3b1780856f7f" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153403Z:5b86d1aa-9222-497e-a79b-3b1780856f7f" + ], + "Date": [ + "Mon, 16 May 2022 15:34:03 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"0a9d52f5-01e3-493d-bf4c-71e84c268299\",\r\n \"name\": \"0a9d52f5-01e3-493d-bf4c-71e84c268299\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:33:44.4505291Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/0a9d52f5-01e3-493d-bf4c-71e84c268299?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy8wYTlkNTJmNS0wMWUzLTQ5M2QtYmY0Yy03MWU4NGMyNjgyOTk/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "ef5d11e3-54ca-4ce3-b397-aa94754281b8" + ], + "x-ms-client-request-id": [ + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f", + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "263" + ], + "x-ms-correlation-request-id": [ + "ef5d11e3-54ca-4ce3-b397-aa94754281b8" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153404Z:ef5d11e3-54ca-4ce3-b397-aa94754281b8" + ], + "Date": [ + "Mon, 16 May 2022 15:34:03 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"0a9d52f5-01e3-493d-bf4c-71e84c268299\",\r\n \"name\": \"0a9d52f5-01e3-493d-bf4c-71e84c268299\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:33:44.4505291Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/0a9d52f5-01e3-493d-bf4c-71e84c268299?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy8wYTlkNTJmNS0wMWUzLTQ5M2QtYmY0Yy03MWU4NGMyNjgyOTk/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "f3d48f6f-3286-4e84-a346-f4e32e8acf8b" + ], + "x-ms-client-request-id": [ + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f", + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "262" + ], + "x-ms-correlation-request-id": [ + "f3d48f6f-3286-4e84-a346-f4e32e8acf8b" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153404Z:f3d48f6f-3286-4e84-a346-f4e32e8acf8b" + ], + "Date": [ + "Mon, 16 May 2022 15:34:04 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"0a9d52f5-01e3-493d-bf4c-71e84c268299\",\r\n \"name\": \"0a9d52f5-01e3-493d-bf4c-71e84c268299\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:33:44.4505291Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/0a9d52f5-01e3-493d-bf4c-71e84c268299?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy8wYTlkNTJmNS0wMWUzLTQ5M2QtYmY0Yy03MWU4NGMyNjgyOTk/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "f70e1dd6-bf00-480a-a1dd-1c49b0d3b50b" + ], + "x-ms-client-request-id": [ + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f", + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "261" + ], + "x-ms-correlation-request-id": [ + "f70e1dd6-bf00-480a-a1dd-1c49b0d3b50b" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153405Z:f70e1dd6-bf00-480a-a1dd-1c49b0d3b50b" + ], + "Date": [ + "Mon, 16 May 2022 15:34:04 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"0a9d52f5-01e3-493d-bf4c-71e84c268299\",\r\n \"name\": \"0a9d52f5-01e3-493d-bf4c-71e84c268299\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:33:44.4505291Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/0a9d52f5-01e3-493d-bf4c-71e84c268299?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy8wYTlkNTJmNS0wMWUzLTQ5M2QtYmY0Yy03MWU4NGMyNjgyOTk/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "632314bc-8d06-4ec9-a43a-0ad595b9a394" + ], + "x-ms-client-request-id": [ + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f", + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "260" + ], + "x-ms-correlation-request-id": [ + "632314bc-8d06-4ec9-a43a-0ad595b9a394" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153405Z:632314bc-8d06-4ec9-a43a-0ad595b9a394" + ], + "Date": [ + "Mon, 16 May 2022 15:34:05 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"0a9d52f5-01e3-493d-bf4c-71e84c268299\",\r\n \"name\": \"0a9d52f5-01e3-493d-bf4c-71e84c268299\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:33:44.4505291Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/0a9d52f5-01e3-493d-bf4c-71e84c268299?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy8wYTlkNTJmNS0wMWUzLTQ5M2QtYmY0Yy03MWU4NGMyNjgyOTk/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "f5324f8e-4ad0-47f8-b60e-13a89333d5b2" + ], + "x-ms-client-request-id": [ + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f", + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "259" + ], + "x-ms-correlation-request-id": [ + "f5324f8e-4ad0-47f8-b60e-13a89333d5b2" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153406Z:f5324f8e-4ad0-47f8-b60e-13a89333d5b2" + ], + "Date": [ + "Mon, 16 May 2022 15:34:05 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"0a9d52f5-01e3-493d-bf4c-71e84c268299\",\r\n \"name\": \"0a9d52f5-01e3-493d-bf4c-71e84c268299\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:33:44.4505291Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/0a9d52f5-01e3-493d-bf4c-71e84c268299?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy8wYTlkNTJmNS0wMWUzLTQ5M2QtYmY0Yy03MWU4NGMyNjgyOTk/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "ab1ea77d-b3f8-4276-9f22-55ad70f3d1c6" + ], + "x-ms-client-request-id": [ + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f", + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "258" + ], + "x-ms-correlation-request-id": [ + "ab1ea77d-b3f8-4276-9f22-55ad70f3d1c6" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153406Z:ab1ea77d-b3f8-4276-9f22-55ad70f3d1c6" + ], + "Date": [ + "Mon, 16 May 2022 15:34:06 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"0a9d52f5-01e3-493d-bf4c-71e84c268299\",\r\n \"name\": \"0a9d52f5-01e3-493d-bf4c-71e84c268299\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:33:44.4505291Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/0a9d52f5-01e3-493d-bf4c-71e84c268299?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy8wYTlkNTJmNS0wMWUzLTQ5M2QtYmY0Yy03MWU4NGMyNjgyOTk/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "04fe7e51-7235-4d92-beff-1501044147de" + ], + "x-ms-client-request-id": [ + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f", + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "257" + ], + "x-ms-correlation-request-id": [ + "04fe7e51-7235-4d92-beff-1501044147de" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153407Z:04fe7e51-7235-4d92-beff-1501044147de" + ], + "Date": [ + "Mon, 16 May 2022 15:34:06 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"0a9d52f5-01e3-493d-bf4c-71e84c268299\",\r\n \"name\": \"0a9d52f5-01e3-493d-bf4c-71e84c268299\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:33:44.4505291Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/0a9d52f5-01e3-493d-bf4c-71e84c268299?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy8wYTlkNTJmNS0wMWUzLTQ5M2QtYmY0Yy03MWU4NGMyNjgyOTk/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "4a6f13d8-263a-4012-bad6-8ecf62616731" + ], + "x-ms-client-request-id": [ + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f", + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "256" + ], + "x-ms-correlation-request-id": [ + "4a6f13d8-263a-4012-bad6-8ecf62616731" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153407Z:4a6f13d8-263a-4012-bad6-8ecf62616731" + ], + "Date": [ + "Mon, 16 May 2022 15:34:07 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"0a9d52f5-01e3-493d-bf4c-71e84c268299\",\r\n \"name\": \"0a9d52f5-01e3-493d-bf4c-71e84c268299\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:33:44.4505291Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/0a9d52f5-01e3-493d-bf4c-71e84c268299?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy8wYTlkNTJmNS0wMWUzLTQ5M2QtYmY0Yy03MWU4NGMyNjgyOTk/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "3e028922-d782-4fa0-b4e2-a0102a447ec8" + ], + "x-ms-client-request-id": [ + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f", + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "255" + ], + "x-ms-correlation-request-id": [ + "3e028922-d782-4fa0-b4e2-a0102a447ec8" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153408Z:3e028922-d782-4fa0-b4e2-a0102a447ec8" + ], + "Date": [ + "Mon, 16 May 2022 15:34:07 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"0a9d52f5-01e3-493d-bf4c-71e84c268299\",\r\n \"name\": \"0a9d52f5-01e3-493d-bf4c-71e84c268299\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:33:44.4505291Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/0a9d52f5-01e3-493d-bf4c-71e84c268299?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy8wYTlkNTJmNS0wMWUzLTQ5M2QtYmY0Yy03MWU4NGMyNjgyOTk/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "38a034e2-df6d-4381-ac47-54b1372edd88" + ], + "x-ms-client-request-id": [ + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f", + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "254" + ], + "x-ms-correlation-request-id": [ + "38a034e2-df6d-4381-ac47-54b1372edd88" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153408Z:38a034e2-df6d-4381-ac47-54b1372edd88" + ], + "Date": [ + "Mon, 16 May 2022 15:34:08 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"0a9d52f5-01e3-493d-bf4c-71e84c268299\",\r\n \"name\": \"0a9d52f5-01e3-493d-bf4c-71e84c268299\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:33:44.4505291Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/0a9d52f5-01e3-493d-bf4c-71e84c268299?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy8wYTlkNTJmNS0wMWUzLTQ5M2QtYmY0Yy03MWU4NGMyNjgyOTk/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "6255c2d3-cc46-4522-b0f4-6d7cfbeb6680" + ], + "x-ms-client-request-id": [ + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f", + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "253" + ], + "x-ms-correlation-request-id": [ + "6255c2d3-cc46-4522-b0f4-6d7cfbeb6680" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153409Z:6255c2d3-cc46-4522-b0f4-6d7cfbeb6680" + ], + "Date": [ + "Mon, 16 May 2022 15:34:08 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"0a9d52f5-01e3-493d-bf4c-71e84c268299\",\r\n \"name\": \"0a9d52f5-01e3-493d-bf4c-71e84c268299\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:33:44.4505291Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/0a9d52f5-01e3-493d-bf4c-71e84c268299?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy8wYTlkNTJmNS0wMWUzLTQ5M2QtYmY0Yy03MWU4NGMyNjgyOTk/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "69a6de11-6d9e-4112-bbe4-c20cb870a32f" + ], + "x-ms-client-request-id": [ + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f", + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "252" + ], + "x-ms-correlation-request-id": [ + "69a6de11-6d9e-4112-bbe4-c20cb870a32f" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153409Z:69a6de11-6d9e-4112-bbe4-c20cb870a32f" + ], + "Date": [ + "Mon, 16 May 2022 15:34:09 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"0a9d52f5-01e3-493d-bf4c-71e84c268299\",\r\n \"name\": \"0a9d52f5-01e3-493d-bf4c-71e84c268299\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:33:44.4505291Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/0a9d52f5-01e3-493d-bf4c-71e84c268299?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy8wYTlkNTJmNS0wMWUzLTQ5M2QtYmY0Yy03MWU4NGMyNjgyOTk/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "2b398c7d-3206-44e3-b54d-1aca5267d6ae" + ], + "x-ms-client-request-id": [ + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f", + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "251" + ], + "x-ms-correlation-request-id": [ + "2b398c7d-3206-44e3-b54d-1aca5267d6ae" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153410Z:2b398c7d-3206-44e3-b54d-1aca5267d6ae" + ], + "Date": [ + "Mon, 16 May 2022 15:34:09 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"0a9d52f5-01e3-493d-bf4c-71e84c268299\",\r\n \"name\": \"0a9d52f5-01e3-493d-bf4c-71e84c268299\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:33:44.4505291Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/0a9d52f5-01e3-493d-bf4c-71e84c268299?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy8wYTlkNTJmNS0wMWUzLTQ5M2QtYmY0Yy03MWU4NGMyNjgyOTk/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "6ee36e80-15d9-48eb-bfd7-b9e21f41481a" + ], + "x-ms-client-request-id": [ + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f", + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "250" + ], + "x-ms-correlation-request-id": [ + "6ee36e80-15d9-48eb-bfd7-b9e21f41481a" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153410Z:6ee36e80-15d9-48eb-bfd7-b9e21f41481a" + ], + "Date": [ + "Mon, 16 May 2022 15:34:10 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"0a9d52f5-01e3-493d-bf4c-71e84c268299\",\r\n \"name\": \"0a9d52f5-01e3-493d-bf4c-71e84c268299\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:33:44.4505291Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/0a9d52f5-01e3-493d-bf4c-71e84c268299?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy8wYTlkNTJmNS0wMWUzLTQ5M2QtYmY0Yy03MWU4NGMyNjgyOTk/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "8a40bbd8-fbcf-4078-a2d1-603918a1276f" + ], + "x-ms-client-request-id": [ + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f", + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "249" + ], + "x-ms-correlation-request-id": [ + "8a40bbd8-fbcf-4078-a2d1-603918a1276f" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153411Z:8a40bbd8-fbcf-4078-a2d1-603918a1276f" + ], + "Date": [ + "Mon, 16 May 2022 15:34:10 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"0a9d52f5-01e3-493d-bf4c-71e84c268299\",\r\n \"name\": \"0a9d52f5-01e3-493d-bf4c-71e84c268299\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:33:44.4505291Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/0a9d52f5-01e3-493d-bf4c-71e84c268299?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy8wYTlkNTJmNS0wMWUzLTQ5M2QtYmY0Yy03MWU4NGMyNjgyOTk/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "e15cfa13-fe1b-4200-a6c0-2c9cc1a39f46" + ], + "x-ms-client-request-id": [ + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f", + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "248" + ], + "x-ms-correlation-request-id": [ + "e15cfa13-fe1b-4200-a6c0-2c9cc1a39f46" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153411Z:e15cfa13-fe1b-4200-a6c0-2c9cc1a39f46" + ], + "Date": [ + "Mon, 16 May 2022 15:34:11 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"0a9d52f5-01e3-493d-bf4c-71e84c268299\",\r\n \"name\": \"0a9d52f5-01e3-493d-bf4c-71e84c268299\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:33:44.4505291Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/0a9d52f5-01e3-493d-bf4c-71e84c268299?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy8wYTlkNTJmNS0wMWUzLTQ5M2QtYmY0Yy03MWU4NGMyNjgyOTk/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "b73c1c8f-a863-4a19-a169-f81f05b603ed" + ], + "x-ms-client-request-id": [ + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f", + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "247" + ], + "x-ms-correlation-request-id": [ + "b73c1c8f-a863-4a19-a169-f81f05b603ed" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153412Z:b73c1c8f-a863-4a19-a169-f81f05b603ed" + ], + "Date": [ + "Mon, 16 May 2022 15:34:11 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"0a9d52f5-01e3-493d-bf4c-71e84c268299\",\r\n \"name\": \"0a9d52f5-01e3-493d-bf4c-71e84c268299\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:33:44.4505291Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/0a9d52f5-01e3-493d-bf4c-71e84c268299?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy8wYTlkNTJmNS0wMWUzLTQ5M2QtYmY0Yy03MWU4NGMyNjgyOTk/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "b57b0ca0-cfac-4af5-9131-2baf665c0887" + ], + "x-ms-client-request-id": [ + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f", + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "246" + ], + "x-ms-correlation-request-id": [ + "b57b0ca0-cfac-4af5-9131-2baf665c0887" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153412Z:b57b0ca0-cfac-4af5-9131-2baf665c0887" + ], + "Date": [ + "Mon, 16 May 2022 15:34:12 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"0a9d52f5-01e3-493d-bf4c-71e84c268299\",\r\n \"name\": \"0a9d52f5-01e3-493d-bf4c-71e84c268299\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:33:44.4505291Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/0a9d52f5-01e3-493d-bf4c-71e84c268299?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy8wYTlkNTJmNS0wMWUzLTQ5M2QtYmY0Yy03MWU4NGMyNjgyOTk/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "0118cfc4-6816-4cc7-a0a5-b941239c9c9f" + ], + "x-ms-client-request-id": [ + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f", + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "245" + ], + "x-ms-correlation-request-id": [ + "0118cfc4-6816-4cc7-a0a5-b941239c9c9f" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153413Z:0118cfc4-6816-4cc7-a0a5-b941239c9c9f" + ], + "Date": [ + "Mon, 16 May 2022 15:34:12 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"0a9d52f5-01e3-493d-bf4c-71e84c268299\",\r\n \"name\": \"0a9d52f5-01e3-493d-bf4c-71e84c268299\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:33:44.4505291Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/0a9d52f5-01e3-493d-bf4c-71e84c268299?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy8wYTlkNTJmNS0wMWUzLTQ5M2QtYmY0Yy03MWU4NGMyNjgyOTk/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "776a4434-a986-41b6-ac8e-df1c45417f18" + ], + "x-ms-client-request-id": [ + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f", + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "244" + ], + "x-ms-correlation-request-id": [ + "776a4434-a986-41b6-ac8e-df1c45417f18" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153413Z:776a4434-a986-41b6-ac8e-df1c45417f18" + ], + "Date": [ + "Mon, 16 May 2022 15:34:13 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"0a9d52f5-01e3-493d-bf4c-71e84c268299\",\r\n \"name\": \"0a9d52f5-01e3-493d-bf4c-71e84c268299\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:33:44.4505291Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/0a9d52f5-01e3-493d-bf4c-71e84c268299?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy8wYTlkNTJmNS0wMWUzLTQ5M2QtYmY0Yy03MWU4NGMyNjgyOTk/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "ed62b18b-cd22-4f69-97a7-d9ef0ef097a5" + ], + "x-ms-client-request-id": [ + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f", + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "243" + ], + "x-ms-correlation-request-id": [ + "ed62b18b-cd22-4f69-97a7-d9ef0ef097a5" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153414Z:ed62b18b-cd22-4f69-97a7-d9ef0ef097a5" + ], + "Date": [ + "Mon, 16 May 2022 15:34:13 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"0a9d52f5-01e3-493d-bf4c-71e84c268299\",\r\n \"name\": \"0a9d52f5-01e3-493d-bf4c-71e84c268299\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:33:44.4505291Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/0a9d52f5-01e3-493d-bf4c-71e84c268299?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy8wYTlkNTJmNS0wMWUzLTQ5M2QtYmY0Yy03MWU4NGMyNjgyOTk/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "cccb624f-d8ed-4006-9f93-d139c9fd0d52" + ], + "x-ms-client-request-id": [ + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f", + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "242" + ], + "x-ms-correlation-request-id": [ + "cccb624f-d8ed-4006-9f93-d139c9fd0d52" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153414Z:cccb624f-d8ed-4006-9f93-d139c9fd0d52" + ], + "Date": [ + "Mon, 16 May 2022 15:34:14 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"0a9d52f5-01e3-493d-bf4c-71e84c268299\",\r\n \"name\": \"0a9d52f5-01e3-493d-bf4c-71e84c268299\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:33:44.4505291Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/0a9d52f5-01e3-493d-bf4c-71e84c268299?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy8wYTlkNTJmNS0wMWUzLTQ5M2QtYmY0Yy03MWU4NGMyNjgyOTk/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "06365af3-64c7-4819-ac41-647b5676fff0" + ], + "x-ms-client-request-id": [ + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f", + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "241" + ], + "x-ms-correlation-request-id": [ + "06365af3-64c7-4819-ac41-647b5676fff0" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153415Z:06365af3-64c7-4819-ac41-647b5676fff0" + ], + "Date": [ + "Mon, 16 May 2022 15:34:14 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"0a9d52f5-01e3-493d-bf4c-71e84c268299\",\r\n \"name\": \"0a9d52f5-01e3-493d-bf4c-71e84c268299\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:33:44.4505291Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/0a9d52f5-01e3-493d-bf4c-71e84c268299?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy8wYTlkNTJmNS0wMWUzLTQ5M2QtYmY0Yy03MWU4NGMyNjgyOTk/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "db4e1afb-8442-45e9-acc4-e92702f965bf" + ], + "x-ms-client-request-id": [ + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f", + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "240" + ], + "x-ms-correlation-request-id": [ + "db4e1afb-8442-45e9-acc4-e92702f965bf" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153415Z:db4e1afb-8442-45e9-acc4-e92702f965bf" + ], + "Date": [ + "Mon, 16 May 2022 15:34:15 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"0a9d52f5-01e3-493d-bf4c-71e84c268299\",\r\n \"name\": \"0a9d52f5-01e3-493d-bf4c-71e84c268299\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:33:44.4505291Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/0a9d52f5-01e3-493d-bf4c-71e84c268299?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy8wYTlkNTJmNS0wMWUzLTQ5M2QtYmY0Yy03MWU4NGMyNjgyOTk/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "f0fa291c-454c-4bf6-8e36-7599c677d547" + ], + "x-ms-client-request-id": [ + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f", + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "239" + ], + "x-ms-correlation-request-id": [ + "f0fa291c-454c-4bf6-8e36-7599c677d547" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153416Z:f0fa291c-454c-4bf6-8e36-7599c677d547" + ], + "Date": [ + "Mon, 16 May 2022 15:34:15 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"0a9d52f5-01e3-493d-bf4c-71e84c268299\",\r\n \"name\": \"0a9d52f5-01e3-493d-bf4c-71e84c268299\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:33:44.4505291Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/0a9d52f5-01e3-493d-bf4c-71e84c268299?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy8wYTlkNTJmNS0wMWUzLTQ5M2QtYmY0Yy03MWU4NGMyNjgyOTk/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "ff2a22f0-48e9-4dda-a673-23dc7fa8468e" + ], + "x-ms-client-request-id": [ + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f", + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "238" + ], + "x-ms-correlation-request-id": [ + "ff2a22f0-48e9-4dda-a673-23dc7fa8468e" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153416Z:ff2a22f0-48e9-4dda-a673-23dc7fa8468e" + ], + "Date": [ + "Mon, 16 May 2022 15:34:16 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"0a9d52f5-01e3-493d-bf4c-71e84c268299\",\r\n \"name\": \"0a9d52f5-01e3-493d-bf4c-71e84c268299\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:33:44.4505291Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/0a9d52f5-01e3-493d-bf4c-71e84c268299?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy8wYTlkNTJmNS0wMWUzLTQ5M2QtYmY0Yy03MWU4NGMyNjgyOTk/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "055b4ab5-b681-413d-b06e-0c624a4e9c43" + ], + "x-ms-client-request-id": [ + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f", + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "237" + ], + "x-ms-correlation-request-id": [ + "055b4ab5-b681-413d-b06e-0c624a4e9c43" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153417Z:055b4ab5-b681-413d-b06e-0c624a4e9c43" + ], + "Date": [ + "Mon, 16 May 2022 15:34:16 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"0a9d52f5-01e3-493d-bf4c-71e84c268299\",\r\n \"name\": \"0a9d52f5-01e3-493d-bf4c-71e84c268299\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:33:44.4505291Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/0a9d52f5-01e3-493d-bf4c-71e84c268299?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy8wYTlkNTJmNS0wMWUzLTQ5M2QtYmY0Yy03MWU4NGMyNjgyOTk/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "707de0a7-7fd4-417d-98a3-d3512650fb64" + ], + "x-ms-client-request-id": [ + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f", + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "236" + ], + "x-ms-correlation-request-id": [ + "707de0a7-7fd4-417d-98a3-d3512650fb64" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153417Z:707de0a7-7fd4-417d-98a3-d3512650fb64" + ], + "Date": [ + "Mon, 16 May 2022 15:34:17 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"0a9d52f5-01e3-493d-bf4c-71e84c268299\",\r\n \"name\": \"0a9d52f5-01e3-493d-bf4c-71e84c268299\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:33:44.4505291Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/0a9d52f5-01e3-493d-bf4c-71e84c268299?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy8wYTlkNTJmNS0wMWUzLTQ5M2QtYmY0Yy03MWU4NGMyNjgyOTk/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "65b870c7-da69-438e-8dce-f1ecb2d8a815" + ], + "x-ms-client-request-id": [ + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f", + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "235" + ], + "x-ms-correlation-request-id": [ + "65b870c7-da69-438e-8dce-f1ecb2d8a815" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153418Z:65b870c7-da69-438e-8dce-f1ecb2d8a815" + ], + "Date": [ + "Mon, 16 May 2022 15:34:17 GMT" + ], + "Content-Length": [ + "304" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"0a9d52f5-01e3-493d-bf4c-71e84c268299\",\r\n \"name\": \"0a9d52f5-01e3-493d-bf4c-71e84c268299\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-05-16T15:33:44.4505291Z\",\r\n \"endTime\": \"2022-05-16T15:33:44.4505291Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"7233e37c-bdcd-4e34-8f65-8f7d13366141\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/0a9d52f5-01e3-493d-bf4c-71e84c268299?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy8wYTlkNTJmNS0wMWUzLTQ5M2QtYmY0Yy03MWU4NGMyNjgyOTk/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "37c596b9-c8fa-47be-bbda-adb145f9096f" + ], + "x-ms-client-request-id": [ + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f", + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "234" + ], + "x-ms-correlation-request-id": [ + "37c596b9-c8fa-47be-bbda-adb145f9096f" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153418Z:37c596b9-c8fa-47be-bbda-adb145f9096f" + ], + "Date": [ + "Mon, 16 May 2022 15:34:18 GMT" + ], + "Content-Length": [ + "304" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"0a9d52f5-01e3-493d-bf4c-71e84c268299\",\r\n \"name\": \"0a9d52f5-01e3-493d-bf4c-71e84c268299\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-05-16T15:33:44.4505291Z\",\r\n \"endTime\": \"2022-05-16T15:33:44.4505291Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"7233e37c-bdcd-4e34-8f65-8f7d13366141\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/7233e37c-bdcd-4e34-8f65-8f7d13366141?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy83MjMzZTM3Yy1iZGNkLTRlMzQtOGY2NS04ZjdkMTMzNjYxNDE/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.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": [ + "d879f5c9-c4b7-4ab7-9987-691e3eb4e7c9" + ], + "x-ms-client-request-id": [ + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f", + "a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "299" + ], + "x-ms-correlation-request-id": [ + "d879f5c9-c4b7-4ab7-9987-691e3eb4e7c9" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153419Z:d879f5c9-c4b7-4ab7-9987-691e3eb4e7c9" + ], + "Date": [ + "Mon, 16 May 2022 15:34:18 GMT" + ], + "Content-Length": [ + "847" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/7233e37c-bdcd-4e34-8f65-8f7d13366141\",\r\n \"name\": \"7233e37c-bdcd-4e34-8f65-8f7d13366141\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT33.5924426S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"Storage\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"File Share Name\": \"fs1\",\r\n \"Storage Account Name\": \"pstestsa8895\",\r\n \"Policy Name\": \"afspolicy1\"\r\n }\r\n },\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"ConfigureBackup\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-05-16T15:33:44.4505291Z\",\r\n \"endTime\": \"2022-05-16T15:34:18.0429717Z\",\r\n \"activityId\": \"a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupProtectedItems?$filter=backupManagementType%20eq%20'AzureStorage'%20and%20itemType%20eq%20'AzureFileShare'&api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwUHJvdGVjdGVkSXRlbXM/JGZpbHRlcj1iYWNrdXBNYW5hZ2VtZW50VHlwZSUyMGVxJTIwJ0F6dXJlU3RvcmFnZSclMjBhbmQlMjBpdGVtVHlwZSUyMGVxJTIwJ0F6dXJlRmlsZVNoYXJlJyZhcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3d5cd4fc-04e7-4af4-baef-3d059b9eaf93" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "8844c6b0-28e8-4188-848c-65e4e3b585e4" + ], + "x-ms-client-request-id": [ + "3d5cd4fc-04e7-4af4-baef-3d059b9eaf93", + "3d5cd4fc-04e7-4af4-baef-3d059b9eaf93" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "299" + ], + "x-ms-correlation-request-id": [ + "8844c6b0-28e8-4188-848c-65e4e3b585e4" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153420Z:8844c6b0-28e8-4188-848c-65e4e3b585e4" + ], + "Date": [ + "Mon, 16 May 2022 15:34:19 GMT" + ], + "Content-Length": [ + "1219" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;storage;pstestrg8895;pstestsa8895/protectedItems/AzureFileShare;698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959\",\r\n \"name\": \"AzureFileShare;698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems\",\r\n \"properties\": {\r\n \"kpisHealths\": {},\r\n \"friendlyName\": \"fs1\",\r\n \"protectionStatus\": \"Healthy\",\r\n \"protectionState\": \"IRPending\",\r\n \"lastBackupStatus\": \"IRPending\",\r\n \"protectedItemType\": \"AzureFileShareProtectedItem\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"workloadType\": \"AzureFileShare\",\r\n \"containerName\": \"StorageContainer;storage;pstestrg8895;pstestsa8895\",\r\n \"sourceResourceId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.storage/storageAccounts/pstestsa8895\",\r\n \"policyId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupPolicies/afspolicy1\",\r\n \"isArchiveEnabled\": false\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupProtectedItems?$filter=backupManagementType%20eq%20'AzureStorage'%20and%20itemType%20eq%20'AzureFileShare'&api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwUHJvdGVjdGVkSXRlbXM/JGZpbHRlcj1iYWNrdXBNYW5hZ2VtZW50VHlwZSUyMGVxJTIwJ0F6dXJlU3RvcmFnZSclMjBhbmQlMjBpdGVtVHlwZSUyMGVxJTIwJ0F6dXJlRmlsZVNoYXJlJyZhcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7966bad6-4ae7-44b1-a2bd-afe0da98de69" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "755a07b4-e99e-4a3c-8f41-977a0d38d3eb" + ], + "x-ms-client-request-id": [ + "7966bad6-4ae7-44b1-a2bd-afe0da98de69", + "7966bad6-4ae7-44b1-a2bd-afe0da98de69" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "298" + ], + "x-ms-correlation-request-id": [ + "755a07b4-e99e-4a3c-8f41-977a0d38d3eb" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153423Z:755a07b4-e99e-4a3c-8f41-977a0d38d3eb" + ], + "Date": [ + "Mon, 16 May 2022 15:34:23 GMT" + ], + "Content-Length": [ + "1219" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;storage;pstestrg8895;pstestsa8895/protectedItems/AzureFileShare;698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959\",\r\n \"name\": \"AzureFileShare;698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems\",\r\n \"properties\": {\r\n \"kpisHealths\": {},\r\n \"friendlyName\": \"fs1\",\r\n \"protectionStatus\": \"Healthy\",\r\n \"protectionState\": \"IRPending\",\r\n \"lastBackupStatus\": \"IRPending\",\r\n \"protectedItemType\": \"AzureFileShareProtectedItem\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"workloadType\": \"AzureFileShare\",\r\n \"containerName\": \"StorageContainer;storage;pstestrg8895;pstestsa8895\",\r\n \"sourceResourceId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.storage/storageAccounts/pstestsa8895\",\r\n \"policyId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupPolicies/afspolicy1\",\r\n \"isArchiveEnabled\": false\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupProtectedItems?$filter=backupManagementType%20eq%20'AzureStorage'%20and%20itemType%20eq%20'AzureFileShare'&api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwUHJvdGVjdGVkSXRlbXM/JGZpbHRlcj1iYWNrdXBNYW5hZ2VtZW50VHlwZSUyMGVxJTIwJ0F6dXJlU3RvcmFnZSclMjBhbmQlMjBpdGVtVHlwZSUyMGVxJTIwJ0F6dXJlRmlsZVNoYXJlJyZhcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7ee20f10-9a06-4079-8dd6-d1bb9c126af9" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "172cec68-bbfa-4c8d-b8d5-146555f7b5a0" + ], + "x-ms-client-request-id": [ + "7ee20f10-9a06-4079-8dd6-d1bb9c126af9", + "7ee20f10-9a06-4079-8dd6-d1bb9c126af9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "297" + ], + "x-ms-correlation-request-id": [ + "172cec68-bbfa-4c8d-b8d5-146555f7b5a0" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153424Z:172cec68-bbfa-4c8d-b8d5-146555f7b5a0" + ], + "Date": [ + "Mon, 16 May 2022 15:34:23 GMT" + ], + "Content-Length": [ + "1219" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;storage;pstestrg8895;pstestsa8895/protectedItems/AzureFileShare;698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959\",\r\n \"name\": \"AzureFileShare;698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems\",\r\n \"properties\": {\r\n \"kpisHealths\": {},\r\n \"friendlyName\": \"fs1\",\r\n \"protectionStatus\": \"Healthy\",\r\n \"protectionState\": \"IRPending\",\r\n \"lastBackupStatus\": \"IRPending\",\r\n \"protectedItemType\": \"AzureFileShareProtectedItem\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"workloadType\": \"AzureFileShare\",\r\n \"containerName\": \"StorageContainer;storage;pstestrg8895;pstestsa8895\",\r\n \"sourceResourceId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.storage/storageAccounts/pstestsa8895\",\r\n \"policyId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupPolicies/afspolicy1\",\r\n \"isArchiveEnabled\": false\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupProtectedItems?$filter=backupManagementType%20eq%20'AzureStorage'%20and%20itemType%20eq%20'AzureFileShare'&api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwUHJvdGVjdGVkSXRlbXM/JGZpbHRlcj1iYWNrdXBNYW5hZ2VtZW50VHlwZSUyMGVxJTIwJ0F6dXJlU3RvcmFnZSclMjBhbmQlMjBpdGVtVHlwZSUyMGVxJTIwJ0F6dXJlRmlsZVNoYXJlJyZhcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "996d51be-424e-479b-b70c-5b0727d44faa" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "78f2601f-9510-4e9a-8c14-476ab8217a8c" + ], + "x-ms-client-request-id": [ + "996d51be-424e-479b-b70c-5b0727d44faa", + "996d51be-424e-479b-b70c-5b0727d44faa" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "296" + ], + "x-ms-correlation-request-id": [ + "78f2601f-9510-4e9a-8c14-476ab8217a8c" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153424Z:78f2601f-9510-4e9a-8c14-476ab8217a8c" + ], + "Date": [ + "Mon, 16 May 2022 15:34:24 GMT" + ], + "Content-Length": [ + "1219" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;storage;pstestrg8895;pstestsa8895/protectedItems/AzureFileShare;698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959\",\r\n \"name\": \"AzureFileShare;698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems\",\r\n \"properties\": {\r\n \"kpisHealths\": {},\r\n \"friendlyName\": \"fs1\",\r\n \"protectionStatus\": \"Healthy\",\r\n \"protectionState\": \"IRPending\",\r\n \"lastBackupStatus\": \"IRPending\",\r\n \"protectedItemType\": \"AzureFileShareProtectedItem\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"workloadType\": \"AzureFileShare\",\r\n \"containerName\": \"StorageContainer;storage;pstestrg8895;pstestsa8895\",\r\n \"sourceResourceId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.storage/storageAccounts/pstestsa8895\",\r\n \"policyId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupPolicies/afspolicy1\",\r\n \"isArchiveEnabled\": false\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupProtectedItems?$filter=backupManagementType%20eq%20'AzureStorage'%20and%20itemType%20eq%20'AzureFileShare'&api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwUHJvdGVjdGVkSXRlbXM/JGZpbHRlcj1iYWNrdXBNYW5hZ2VtZW50VHlwZSUyMGVxJTIwJ0F6dXJlU3RvcmFnZSclMjBhbmQlMjBpdGVtVHlwZSUyMGVxJTIwJ0F6dXJlRmlsZVNoYXJlJyZhcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9a9c008b-2641-499c-8f9c-a4e6d01cc2ac" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "cdac6c4a-782a-4f7b-9efe-89aeffb1a952" + ], + "x-ms-client-request-id": [ + "9a9c008b-2641-499c-8f9c-a4e6d01cc2ac", + "9a9c008b-2641-499c-8f9c-a4e6d01cc2ac" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "295" + ], + "x-ms-correlation-request-id": [ + "cdac6c4a-782a-4f7b-9efe-89aeffb1a952" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153425Z:cdac6c4a-782a-4f7b-9efe-89aeffb1a952" + ], + "Date": [ + "Mon, 16 May 2022 15:34:24 GMT" + ], + "Content-Length": [ + "1219" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;storage;pstestrg8895;pstestsa8895/protectedItems/AzureFileShare;698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959\",\r\n \"name\": \"AzureFileShare;698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems\",\r\n \"properties\": {\r\n \"kpisHealths\": {},\r\n \"friendlyName\": \"fs1\",\r\n \"protectionStatus\": \"Healthy\",\r\n \"protectionState\": \"IRPending\",\r\n \"lastBackupStatus\": \"IRPending\",\r\n \"protectedItemType\": \"AzureFileShareProtectedItem\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"workloadType\": \"AzureFileShare\",\r\n \"containerName\": \"StorageContainer;storage;pstestrg8895;pstestsa8895\",\r\n \"sourceResourceId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.storage/storageAccounts/pstestsa8895\",\r\n \"policyId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupPolicies/afspolicy1\",\r\n \"isArchiveEnabled\": false\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupProtectedItems?$filter=backupManagementType%20eq%20'AzureStorage'%20and%20itemType%20eq%20'AzureFileShare'&api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwUHJvdGVjdGVkSXRlbXM/JGZpbHRlcj1iYWNrdXBNYW5hZ2VtZW50VHlwZSUyMGVxJTIwJ0F6dXJlU3RvcmFnZSclMjBhbmQlMjBpdGVtVHlwZSUyMGVxJTIwJ0F6dXJlRmlsZVNoYXJlJyZhcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "09669377-42c3-43e5-be64-afae4ad37202" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "d4464175-a0f8-4c4c-9def-4af8d0b5cffc" + ], + "x-ms-client-request-id": [ + "09669377-42c3-43e5-be64-afae4ad37202", + "09669377-42c3-43e5-be64-afae4ad37202" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "294" + ], + "x-ms-correlation-request-id": [ + "d4464175-a0f8-4c4c-9def-4af8d0b5cffc" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153426Z:d4464175-a0f8-4c4c-9def-4af8d0b5cffc" + ], + "Date": [ + "Mon, 16 May 2022 15:34:26 GMT" + ], + "Content-Length": [ + "1219" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;storage;pstestrg8895;pstestsa8895/protectedItems/AzureFileShare;698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959\",\r\n \"name\": \"AzureFileShare;698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems\",\r\n \"properties\": {\r\n \"kpisHealths\": {},\r\n \"friendlyName\": \"fs1\",\r\n \"protectionStatus\": \"Healthy\",\r\n \"protectionState\": \"IRPending\",\r\n \"lastBackupStatus\": \"IRPending\",\r\n \"protectedItemType\": \"AzureFileShareProtectedItem\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"workloadType\": \"AzureFileShare\",\r\n \"containerName\": \"StorageContainer;storage;pstestrg8895;pstestsa8895\",\r\n \"sourceResourceId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.storage/storageAccounts/pstestsa8895\",\r\n \"policyId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupPolicies/afspolicy1\",\r\n \"isArchiveEnabled\": false\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupProtectedItems?$filter=backupManagementType%20eq%20'AzureStorage'%20and%20itemType%20eq%20'AzureFileShare'&api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwUHJvdGVjdGVkSXRlbXM/JGZpbHRlcj1iYWNrdXBNYW5hZ2VtZW50VHlwZSUyMGVxJTIwJ0F6dXJlU3RvcmFnZSclMjBhbmQlMjBpdGVtVHlwZSUyMGVxJTIwJ0F6dXJlRmlsZVNoYXJlJyZhcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "761ae3cd-1c0a-4035-8555-30566fb2e256" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "6ac7ab55-353e-4d95-a5e8-cea566936266" + ], + "x-ms-client-request-id": [ + "761ae3cd-1c0a-4035-8555-30566fb2e256", + "761ae3cd-1c0a-4035-8555-30566fb2e256" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "293" + ], + "x-ms-correlation-request-id": [ + "6ac7ab55-353e-4d95-a5e8-cea566936266" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153428Z:6ac7ab55-353e-4d95-a5e8-cea566936266" + ], + "Date": [ + "Mon, 16 May 2022 15:34:27 GMT" + ], + "Content-Length": [ + "1219" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;storage;pstestrg8895;pstestsa8895/protectedItems/AzureFileShare;698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959\",\r\n \"name\": \"AzureFileShare;698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems\",\r\n \"properties\": {\r\n \"kpisHealths\": {},\r\n \"friendlyName\": \"fs1\",\r\n \"protectionStatus\": \"Healthy\",\r\n \"protectionState\": \"IRPending\",\r\n \"lastBackupStatus\": \"IRPending\",\r\n \"protectedItemType\": \"AzureFileShareProtectedItem\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"workloadType\": \"AzureFileShare\",\r\n \"containerName\": \"StorageContainer;storage;pstestrg8895;pstestsa8895\",\r\n \"sourceResourceId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.storage/storageAccounts/pstestsa8895\",\r\n \"policyId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupPolicies/afspolicy1\",\r\n \"isArchiveEnabled\": false\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupProtectedItems?$filter=backupManagementType%20eq%20'AzureStorage'%20and%20itemType%20eq%20'AzureFileShare'&api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwUHJvdGVjdGVkSXRlbXM/JGZpbHRlcj1iYWNrdXBNYW5hZ2VtZW50VHlwZSUyMGVxJTIwJ0F6dXJlU3RvcmFnZSclMjBhbmQlMjBpdGVtVHlwZSUyMGVxJTIwJ0F6dXJlRmlsZVNoYXJlJyZhcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9b064e68-c6e9-415b-9767-91bbce04acd3" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "6592987d-0789-4f44-a33d-19a45c043d91" + ], + "x-ms-client-request-id": [ + "9b064e68-c6e9-415b-9767-91bbce04acd3", + "9b064e68-c6e9-415b-9767-91bbce04acd3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "291" + ], + "x-ms-correlation-request-id": [ + "6592987d-0789-4f44-a33d-19a45c043d91" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153429Z:6592987d-0789-4f44-a33d-19a45c043d91" + ], + "Date": [ + "Mon, 16 May 2022 15:34:28 GMT" + ], + "Content-Length": [ + "1219" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;storage;pstestrg8895;pstestsa8895/protectedItems/AzureFileShare;698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959\",\r\n \"name\": \"AzureFileShare;698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems\",\r\n \"properties\": {\r\n \"kpisHealths\": {},\r\n \"friendlyName\": \"fs1\",\r\n \"protectionStatus\": \"Healthy\",\r\n \"protectionState\": \"IRPending\",\r\n \"lastBackupStatus\": \"IRPending\",\r\n \"protectedItemType\": \"AzureFileShareProtectedItem\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"workloadType\": \"AzureFileShare\",\r\n \"containerName\": \"StorageContainer;storage;pstestrg8895;pstestsa8895\",\r\n \"sourceResourceId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.storage/storageAccounts/pstestsa8895\",\r\n \"policyId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupPolicies/afspolicy1\",\r\n \"isArchiveEnabled\": false\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3Bstorage%3Bpstestrg8895%3Bpstestsa8895/protectedItems/AzureFileShare%3B698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959?$filter=expand%20eq%20'extendedinfo'&api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCc3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9wcm90ZWN0ZWRJdGVtcy9BenVyZUZpbGVTaGFyZSUzQjY5OGRmNTk1OTQ4ZTIzNTVmMmJiNzQ0YTQxY2YyNDVkNGJhMTI1NWQ5Njk5Y2MzYzJhZDFmNTA0NWUxNzc5NTk/JGZpbHRlcj1leHBhbmQlMjBlcSUyMCdleHRlbmRlZGluZm8nJmFwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3d5cd4fc-04e7-4af4-baef-3d059b9eaf93" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "63d3b252-f5a7-4105-98a2-9734e643bb03" + ], + "x-ms-client-request-id": [ + "3d5cd4fc-04e7-4af4-baef-3d059b9eaf93", + "3d5cd4fc-04e7-4af4-baef-3d059b9eaf93" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "299" + ], + "x-ms-correlation-request-id": [ + "63d3b252-f5a7-4105-98a2-9734e643bb03" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153422Z:63d3b252-f5a7-4105-98a2-9734e643bb03" + ], + "Date": [ + "Mon, 16 May 2022 15:34:21 GMT" + ], + "Content-Length": [ + "1354" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;storage;pstestrg8895;pstestsa8895/protectedItems/AzureFileShare;698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959\",\r\n \"name\": \"AzureFileShare;698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems\",\r\n \"properties\": {\r\n \"kpisHealths\": {},\r\n \"friendlyName\": \"fs1\",\r\n \"protectionStatus\": \"Healthy\",\r\n \"protectionState\": \"IRPending\",\r\n \"lastBackupStatus\": \"IRPending\",\r\n \"extendedInfo\": {\r\n \"recoveryPointCount\": 0,\r\n \"policyState\": \"Consistent\",\r\n \"resourceState\": \"Active\",\r\n \"resourceStateSyncTime\": \"2022-05-16T15:34:17.7304625Z\"\r\n },\r\n \"protectedItemType\": \"AzureFileShareProtectedItem\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"workloadType\": \"AzureFileShare\",\r\n \"containerName\": \"StorageContainer;storage;pstestrg8895;pstestsa8895\",\r\n \"sourceResourceId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.storage/storageAccounts/pstestsa8895\",\r\n \"policyId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupPolicies/afspolicy1\",\r\n \"isArchiveEnabled\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3Bstorage%3Bpstestrg8895%3Bpstestsa8895/protectedItems/AzureFileShare%3B698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959?$filter=expand%20eq%20'extendedinfo'&api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCc3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9wcm90ZWN0ZWRJdGVtcy9BenVyZUZpbGVTaGFyZSUzQjY5OGRmNTk1OTQ4ZTIzNTVmMmJiNzQ0YTQxY2YyNDVkNGJhMTI1NWQ5Njk5Y2MzYzJhZDFmNTA0NWUxNzc5NTk/JGZpbHRlcj1leHBhbmQlMjBlcSUyMCdleHRlbmRlZGluZm8nJmFwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9a9c008b-2641-499c-8f9c-a4e6d01cc2ac" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "e2ceb84a-b0b8-4e08-965c-7b9431fa28e6" + ], + "x-ms-client-request-id": [ + "9a9c008b-2641-499c-8f9c-a4e6d01cc2ac", + "9a9c008b-2641-499c-8f9c-a4e6d01cc2ac" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "298" + ], + "x-ms-correlation-request-id": [ + "e2ceb84a-b0b8-4e08-965c-7b9431fa28e6" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153426Z:e2ceb84a-b0b8-4e08-965c-7b9431fa28e6" + ], + "Date": [ + "Mon, 16 May 2022 15:34:25 GMT" + ], + "Content-Length": [ + "1354" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;storage;pstestrg8895;pstestsa8895/protectedItems/AzureFileShare;698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959\",\r\n \"name\": \"AzureFileShare;698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems\",\r\n \"properties\": {\r\n \"kpisHealths\": {},\r\n \"friendlyName\": \"fs1\",\r\n \"protectionStatus\": \"Healthy\",\r\n \"protectionState\": \"IRPending\",\r\n \"lastBackupStatus\": \"IRPending\",\r\n \"extendedInfo\": {\r\n \"recoveryPointCount\": 0,\r\n \"policyState\": \"Consistent\",\r\n \"resourceState\": \"Active\",\r\n \"resourceStateSyncTime\": \"2022-05-16T15:34:17.7304625Z\"\r\n },\r\n \"protectedItemType\": \"AzureFileShareProtectedItem\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"workloadType\": \"AzureFileShare\",\r\n \"containerName\": \"StorageContainer;storage;pstestrg8895;pstestsa8895\",\r\n \"sourceResourceId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.storage/storageAccounts/pstestsa8895\",\r\n \"policyId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupPolicies/afspolicy1\",\r\n \"isArchiveEnabled\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3Bstorage%3Bpstestrg8895%3Bpstestsa8895/protectedItems/AzureFileShare%3B698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959?$filter=expand%20eq%20'extendedinfo'&api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCc3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9wcm90ZWN0ZWRJdGVtcy9BenVyZUZpbGVTaGFyZSUzQjY5OGRmNTk1OTQ4ZTIzNTVmMmJiNzQ0YTQxY2YyNDVkNGJhMTI1NWQ5Njk5Y2MzYzJhZDFmNTA0NWUxNzc5NTk/JGZpbHRlcj1leHBhbmQlMjBlcSUyMCdleHRlbmRlZGluZm8nJmFwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "09669377-42c3-43e5-be64-afae4ad37202" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "788fb503-5ed4-4284-a016-1838e162880f" + ], + "x-ms-client-request-id": [ + "09669377-42c3-43e5-be64-afae4ad37202", + "09669377-42c3-43e5-be64-afae4ad37202" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "297" + ], + "x-ms-correlation-request-id": [ + "788fb503-5ed4-4284-a016-1838e162880f" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153427Z:788fb503-5ed4-4284-a016-1838e162880f" + ], + "Date": [ + "Mon, 16 May 2022 15:34:27 GMT" + ], + "Content-Length": [ + "1354" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;storage;pstestrg8895;pstestsa8895/protectedItems/AzureFileShare;698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959\",\r\n \"name\": \"AzureFileShare;698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems\",\r\n \"properties\": {\r\n \"kpisHealths\": {},\r\n \"friendlyName\": \"fs1\",\r\n \"protectionStatus\": \"Healthy\",\r\n \"protectionState\": \"IRPending\",\r\n \"lastBackupStatus\": \"IRPending\",\r\n \"extendedInfo\": {\r\n \"recoveryPointCount\": 0,\r\n \"policyState\": \"Consistent\",\r\n \"resourceState\": \"Active\",\r\n \"resourceStateSyncTime\": \"2022-05-16T15:34:17.7304625Z\"\r\n },\r\n \"protectedItemType\": \"AzureFileShareProtectedItem\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"workloadType\": \"AzureFileShare\",\r\n \"containerName\": \"StorageContainer;storage;pstestrg8895;pstestsa8895\",\r\n \"sourceResourceId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.storage/storageAccounts/pstestsa8895\",\r\n \"policyId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupPolicies/afspolicy1\",\r\n \"isArchiveEnabled\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3Bstorage%3Bpstestrg8895%3Bpstestsa8895/protectedItems/AzureFileShare%3B698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959?$filter=expand%20eq%20'extendedinfo'&api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCc3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9wcm90ZWN0ZWRJdGVtcy9BenVyZUZpbGVTaGFyZSUzQjY5OGRmNTk1OTQ4ZTIzNTVmMmJiNzQ0YTQxY2YyNDVkNGJhMTI1NWQ5Njk5Y2MzYzJhZDFmNTA0NWUxNzc5NTk/JGZpbHRlcj1leHBhbmQlMjBlcSUyMCdleHRlbmRlZGluZm8nJmFwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9b064e68-c6e9-415b-9767-91bbce04acd3" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "b578046e-dfc6-4e39-be33-19c322caf41b" + ], + "x-ms-client-request-id": [ + "9b064e68-c6e9-415b-9767-91bbce04acd3", + "9b064e68-c6e9-415b-9767-91bbce04acd3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "296" + ], + "x-ms-correlation-request-id": [ + "b578046e-dfc6-4e39-be33-19c322caf41b" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153431Z:b578046e-dfc6-4e39-be33-19c322caf41b" + ], + "Date": [ + "Mon, 16 May 2022 15:34:31 GMT" + ], + "Content-Length": [ + "1354" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;storage;pstestrg8895;pstestsa8895/protectedItems/AzureFileShare;698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959\",\r\n \"name\": \"AzureFileShare;698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems\",\r\n \"properties\": {\r\n \"kpisHealths\": {},\r\n \"friendlyName\": \"fs1\",\r\n \"protectionStatus\": \"Healthy\",\r\n \"protectionState\": \"IRPending\",\r\n \"lastBackupStatus\": \"IRPending\",\r\n \"extendedInfo\": {\r\n \"recoveryPointCount\": 0,\r\n \"policyState\": \"Consistent\",\r\n \"resourceState\": \"Active\",\r\n \"resourceStateSyncTime\": \"2022-05-16T15:34:17.7304625Z\"\r\n },\r\n \"protectedItemType\": \"AzureFileShareProtectedItem\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"workloadType\": \"AzureFileShare\",\r\n \"containerName\": \"StorageContainer;storage;pstestrg8895;pstestsa8895\",\r\n \"sourceResourceId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.storage/storageAccounts/pstestsa8895\",\r\n \"policyId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupPolicies/afspolicy1\",\r\n \"isArchiveEnabled\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupProtectedItems?$filter=backupManagementType%20eq%20'AzureStorage'%20and%20itemType%20eq%20'AzureFileShare'%20and%20policyName%20eq%20'afspolicy1'&api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwUHJvdGVjdGVkSXRlbXM/JGZpbHRlcj1iYWNrdXBNYW5hZ2VtZW50VHlwZSUyMGVxJTIwJ0F6dXJlU3RvcmFnZSclMjBhbmQlMjBpdGVtVHlwZSUyMGVxJTIwJ0F6dXJlRmlsZVNoYXJlJyUyMGFuZCUyMHBvbGljeU5hbWUlMjBlcSUyMCdhZnNwb2xpY3kxJyZhcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1ec4c7ed-488a-49c6-9b18-62589241c77a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "91c8994d-1a6e-49e7-b0fb-e566de0e2834" + ], + "x-ms-client-request-id": [ + "1ec4c7ed-488a-49c6-9b18-62589241c77a", + "1ec4c7ed-488a-49c6-9b18-62589241c77a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "292" + ], + "x-ms-correlation-request-id": [ + "91c8994d-1a6e-49e7-b0fb-e566de0e2834" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153428Z:91c8994d-1a6e-49e7-b0fb-e566de0e2834" + ], + "Date": [ + "Mon, 16 May 2022 15:34:28 GMT" + ], + "Content-Length": [ + "1219" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;storage;pstestrg8895;pstestsa8895/protectedItems/AzureFileShare;698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959\",\r\n \"name\": \"AzureFileShare;698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems\",\r\n \"properties\": {\r\n \"kpisHealths\": {},\r\n \"friendlyName\": \"fs1\",\r\n \"protectionStatus\": \"Healthy\",\r\n \"protectionState\": \"IRPending\",\r\n \"lastBackupStatus\": \"IRPending\",\r\n \"protectedItemType\": \"AzureFileShareProtectedItem\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"workloadType\": \"AzureFileShare\",\r\n \"containerName\": \"StorageContainer;storage;pstestrg8895;pstestsa8895\",\r\n \"sourceResourceId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.storage/storageAccounts/pstestsa8895\",\r\n \"policyId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupPolicies/afspolicy1\",\r\n \"isArchiveEnabled\": false\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3Bstorage%3Bpstestrg8895%3Bpstestsa8895/protectedItems/AzureFileShare%3B698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959/recoveryPoints?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCc3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9wcm90ZWN0ZWRJdGVtcy9BenVyZUZpbGVTaGFyZSUzQjY5OGRmNTk1OTQ4ZTIzNTVmMmJiNzQ0YTQxY2YyNDVkNGJhMTI1NWQ5Njk5Y2MzYzJhZDFmNTA0NWUxNzc5NTkvcmVjb3ZlcnlQb2ludHM/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "277f52a0-5b87-4429-8f3b-bfaecde047bc" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "6f580394-e9d1-48c7-9a7f-658648aec14b" + ], + "x-ms-client-request-id": [ + "277f52a0-5b87-4429-8f3b-bfaecde047bc", + "277f52a0-5b87-4429-8f3b-bfaecde047bc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "299" + ], + "x-ms-correlation-request-id": [ + "6f580394-e9d1-48c7-9a7f-658648aec14b" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153432Z:6f580394-e9d1-48c7-9a7f-658648aec14b" + ], + "Date": [ + "Mon, 16 May 2022 15:34:31 GMT" + ], + "Content-Length": [ + "12" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupResourceGuardProxies?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwUmVzb3VyY2VHdWFyZFByb3hpZXM/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "277f52a0-5b87-4429-8f3b-bfaecde047bc" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "e059e63c-b481-41b0-818a-9d9ae6780f1b" + ], + "x-ms-client-request-id": [ + "277f52a0-5b87-4429-8f3b-bfaecde047bc", + "277f52a0-5b87-4429-8f3b-bfaecde047bc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "e059e63c-b481-41b0-818a-9d9ae6780f1b" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153433Z:e059e63c-b481-41b0-818a-9d9ae6780f1b" + ], + "Date": [ + "Mon, 16 May 2022 15:34:32 GMT" + ], + "Content-Length": [ + "12" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3Bstorage%3Bpstestrg8895%3Bpstestsa8895/protectedItems/AzureFileShare%3B698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCc3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9wcm90ZWN0ZWRJdGVtcy9BenVyZUZpbGVTaGFyZSUzQjY5OGRmNTk1OTQ4ZTIzNTVmMmJiNzQ0YTQxY2YyNDVkNGJhMTI1NWQ5Njk5Y2MzYzJhZDFmNTA0NWUxNzc5NTk/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "277f52a0-5b87-4429-8f3b-bfaecde047bc" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperationResults/2a176d4b-ad50-4182-9ea4-00f74ea62cb6?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/2a176d4b-ad50-4182-9ea4-00f74ea62cb6?api-version=2022-02-01" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "05955dc1-dd19-4100-b2b2-f1d6f8dea90b" + ], + "x-ms-client-request-id": [ + "277f52a0-5b87-4429-8f3b-bfaecde047bc", + "277f52a0-5b87-4429-8f3b-bfaecde047bc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-correlation-request-id": [ + "05955dc1-dd19-4100-b2b2-f1d6f8dea90b" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153434Z:05955dc1-dd19-4100-b2b2-f1d6f8dea90b" + ], + "Date": [ + "Mon, 16 May 2022 15:34:33 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/2a176d4b-ad50-4182-9ea4-00f74ea62cb6?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy8yYTE3NmQ0Yi1hZDUwLTQxODItOWVhNC0wMGY3NGVhNjJjYjY/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "277f52a0-5b87-4429-8f3b-bfaecde047bc" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "0a2beb8c-ff1d-4390-83e1-b22aaaec81e3" + ], + "x-ms-client-request-id": [ + "277f52a0-5b87-4429-8f3b-bfaecde047bc", + "277f52a0-5b87-4429-8f3b-bfaecde047bc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "233" + ], + "x-ms-correlation-request-id": [ + "0a2beb8c-ff1d-4390-83e1-b22aaaec81e3" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153434Z:0a2beb8c-ff1d-4390-83e1-b22aaaec81e3" + ], + "Date": [ + "Mon, 16 May 2022 15:34:33 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"2a176d4b-ad50-4182-9ea4-00f74ea62cb6\",\r\n \"name\": \"2a176d4b-ad50-4182-9ea4-00f74ea62cb6\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:34:33.9302828Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/2a176d4b-ad50-4182-9ea4-00f74ea62cb6?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy8yYTE3NmQ0Yi1hZDUwLTQxODItOWVhNC0wMGY3NGVhNjJjYjY/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "277f52a0-5b87-4429-8f3b-bfaecde047bc" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "391d1a80-f9b7-449a-9170-4fd414dce97e" + ], + "x-ms-client-request-id": [ + "277f52a0-5b87-4429-8f3b-bfaecde047bc", + "277f52a0-5b87-4429-8f3b-bfaecde047bc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "232" + ], + "x-ms-correlation-request-id": [ + "391d1a80-f9b7-449a-9170-4fd414dce97e" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153435Z:391d1a80-f9b7-449a-9170-4fd414dce97e" + ], + "Date": [ + "Mon, 16 May 2022 15:34:34 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"2a176d4b-ad50-4182-9ea4-00f74ea62cb6\",\r\n \"name\": \"2a176d4b-ad50-4182-9ea4-00f74ea62cb6\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:34:33.9302828Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/2a176d4b-ad50-4182-9ea4-00f74ea62cb6?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy8yYTE3NmQ0Yi1hZDUwLTQxODItOWVhNC0wMGY3NGVhNjJjYjY/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "277f52a0-5b87-4429-8f3b-bfaecde047bc" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "596928e5-0140-4e24-b7d6-a02cce87e58d" + ], + "x-ms-client-request-id": [ + "277f52a0-5b87-4429-8f3b-bfaecde047bc", + "277f52a0-5b87-4429-8f3b-bfaecde047bc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "231" + ], + "x-ms-correlation-request-id": [ + "596928e5-0140-4e24-b7d6-a02cce87e58d" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153435Z:596928e5-0140-4e24-b7d6-a02cce87e58d" + ], + "Date": [ + "Mon, 16 May 2022 15:34:34 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"2a176d4b-ad50-4182-9ea4-00f74ea62cb6\",\r\n \"name\": \"2a176d4b-ad50-4182-9ea4-00f74ea62cb6\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:34:33.9302828Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/2a176d4b-ad50-4182-9ea4-00f74ea62cb6?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy8yYTE3NmQ0Yi1hZDUwLTQxODItOWVhNC0wMGY3NGVhNjJjYjY/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "277f52a0-5b87-4429-8f3b-bfaecde047bc" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "3e0a79c0-2b1b-441f-be39-7751ae493b47" + ], + "x-ms-client-request-id": [ + "277f52a0-5b87-4429-8f3b-bfaecde047bc", + "277f52a0-5b87-4429-8f3b-bfaecde047bc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "230" + ], + "x-ms-correlation-request-id": [ + "3e0a79c0-2b1b-441f-be39-7751ae493b47" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153436Z:3e0a79c0-2b1b-441f-be39-7751ae493b47" + ], + "Date": [ + "Mon, 16 May 2022 15:34:35 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"2a176d4b-ad50-4182-9ea4-00f74ea62cb6\",\r\n \"name\": \"2a176d4b-ad50-4182-9ea4-00f74ea62cb6\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:34:33.9302828Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/2a176d4b-ad50-4182-9ea4-00f74ea62cb6?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy8yYTE3NmQ0Yi1hZDUwLTQxODItOWVhNC0wMGY3NGVhNjJjYjY/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "277f52a0-5b87-4429-8f3b-bfaecde047bc" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "9a1205e0-843a-47a6-9db7-1c7a4075f693" + ], + "x-ms-client-request-id": [ + "277f52a0-5b87-4429-8f3b-bfaecde047bc", + "277f52a0-5b87-4429-8f3b-bfaecde047bc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "229" + ], + "x-ms-correlation-request-id": [ + "9a1205e0-843a-47a6-9db7-1c7a4075f693" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153436Z:9a1205e0-843a-47a6-9db7-1c7a4075f693" + ], + "Date": [ + "Mon, 16 May 2022 15:34:35 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"2a176d4b-ad50-4182-9ea4-00f74ea62cb6\",\r\n \"name\": \"2a176d4b-ad50-4182-9ea4-00f74ea62cb6\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:34:33.9302828Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/2a176d4b-ad50-4182-9ea4-00f74ea62cb6?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy8yYTE3NmQ0Yi1hZDUwLTQxODItOWVhNC0wMGY3NGVhNjJjYjY/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "277f52a0-5b87-4429-8f3b-bfaecde047bc" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "6cd40d0c-4d04-4e8b-9210-520ecd894012" + ], + "x-ms-client-request-id": [ + "277f52a0-5b87-4429-8f3b-bfaecde047bc", + "277f52a0-5b87-4429-8f3b-bfaecde047bc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "228" + ], + "x-ms-correlation-request-id": [ + "6cd40d0c-4d04-4e8b-9210-520ecd894012" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153437Z:6cd40d0c-4d04-4e8b-9210-520ecd894012" + ], + "Date": [ + "Mon, 16 May 2022 15:34:36 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"2a176d4b-ad50-4182-9ea4-00f74ea62cb6\",\r\n \"name\": \"2a176d4b-ad50-4182-9ea4-00f74ea62cb6\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:34:33.9302828Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/2a176d4b-ad50-4182-9ea4-00f74ea62cb6?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy8yYTE3NmQ0Yi1hZDUwLTQxODItOWVhNC0wMGY3NGVhNjJjYjY/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "277f52a0-5b87-4429-8f3b-bfaecde047bc" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "d992b4d0-db7e-4b80-8c45-32e114aff6db" + ], + "x-ms-client-request-id": [ + "277f52a0-5b87-4429-8f3b-bfaecde047bc", + "277f52a0-5b87-4429-8f3b-bfaecde047bc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "227" + ], + "x-ms-correlation-request-id": [ + "d992b4d0-db7e-4b80-8c45-32e114aff6db" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153437Z:d992b4d0-db7e-4b80-8c45-32e114aff6db" + ], + "Date": [ + "Mon, 16 May 2022 15:34:36 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"2a176d4b-ad50-4182-9ea4-00f74ea62cb6\",\r\n \"name\": \"2a176d4b-ad50-4182-9ea4-00f74ea62cb6\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:34:33.9302828Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/2a176d4b-ad50-4182-9ea4-00f74ea62cb6?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy8yYTE3NmQ0Yi1hZDUwLTQxODItOWVhNC0wMGY3NGVhNjJjYjY/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "277f52a0-5b87-4429-8f3b-bfaecde047bc" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "c99caa26-f365-43a4-8cd5-b22b71861e00" + ], + "x-ms-client-request-id": [ + "277f52a0-5b87-4429-8f3b-bfaecde047bc", + "277f52a0-5b87-4429-8f3b-bfaecde047bc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "226" + ], + "x-ms-correlation-request-id": [ + "c99caa26-f365-43a4-8cd5-b22b71861e00" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153438Z:c99caa26-f365-43a4-8cd5-b22b71861e00" + ], + "Date": [ + "Mon, 16 May 2022 15:34:37 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"2a176d4b-ad50-4182-9ea4-00f74ea62cb6\",\r\n \"name\": \"2a176d4b-ad50-4182-9ea4-00f74ea62cb6\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:34:33.9302828Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/2a176d4b-ad50-4182-9ea4-00f74ea62cb6?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy8yYTE3NmQ0Yi1hZDUwLTQxODItOWVhNC0wMGY3NGVhNjJjYjY/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "277f52a0-5b87-4429-8f3b-bfaecde047bc" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "9acaebf4-acec-4317-80ee-4602c5c53bc4" + ], + "x-ms-client-request-id": [ + "277f52a0-5b87-4429-8f3b-bfaecde047bc", + "277f52a0-5b87-4429-8f3b-bfaecde047bc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "225" + ], + "x-ms-correlation-request-id": [ + "9acaebf4-acec-4317-80ee-4602c5c53bc4" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153438Z:9acaebf4-acec-4317-80ee-4602c5c53bc4" + ], + "Date": [ + "Mon, 16 May 2022 15:34:38 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"2a176d4b-ad50-4182-9ea4-00f74ea62cb6\",\r\n \"name\": \"2a176d4b-ad50-4182-9ea4-00f74ea62cb6\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:34:33.9302828Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/2a176d4b-ad50-4182-9ea4-00f74ea62cb6?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy8yYTE3NmQ0Yi1hZDUwLTQxODItOWVhNC0wMGY3NGVhNjJjYjY/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "277f52a0-5b87-4429-8f3b-bfaecde047bc" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "0d724e3e-c6bb-421b-a0ea-9e18183221bf" + ], + "x-ms-client-request-id": [ + "277f52a0-5b87-4429-8f3b-bfaecde047bc", + "277f52a0-5b87-4429-8f3b-bfaecde047bc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "224" + ], + "x-ms-correlation-request-id": [ + "0d724e3e-c6bb-421b-a0ea-9e18183221bf" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153439Z:0d724e3e-c6bb-421b-a0ea-9e18183221bf" + ], + "Date": [ + "Mon, 16 May 2022 15:34:38 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"2a176d4b-ad50-4182-9ea4-00f74ea62cb6\",\r\n \"name\": \"2a176d4b-ad50-4182-9ea4-00f74ea62cb6\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:34:33.9302828Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/2a176d4b-ad50-4182-9ea4-00f74ea62cb6?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy8yYTE3NmQ0Yi1hZDUwLTQxODItOWVhNC0wMGY3NGVhNjJjYjY/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "277f52a0-5b87-4429-8f3b-bfaecde047bc" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "ad474fb0-aa77-4293-8c9b-a7e56ff63ecf" + ], + "x-ms-client-request-id": [ + "277f52a0-5b87-4429-8f3b-bfaecde047bc", + "277f52a0-5b87-4429-8f3b-bfaecde047bc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "223" + ], + "x-ms-correlation-request-id": [ + "ad474fb0-aa77-4293-8c9b-a7e56ff63ecf" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153440Z:ad474fb0-aa77-4293-8c9b-a7e56ff63ecf" + ], + "Date": [ + "Mon, 16 May 2022 15:34:39 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"2a176d4b-ad50-4182-9ea4-00f74ea62cb6\",\r\n \"name\": \"2a176d4b-ad50-4182-9ea4-00f74ea62cb6\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:34:33.9302828Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/2a176d4b-ad50-4182-9ea4-00f74ea62cb6?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy8yYTE3NmQ0Yi1hZDUwLTQxODItOWVhNC0wMGY3NGVhNjJjYjY/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "277f52a0-5b87-4429-8f3b-bfaecde047bc" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "44a456f5-17a3-434d-a8be-609db1beb68e" + ], + "x-ms-client-request-id": [ + "277f52a0-5b87-4429-8f3b-bfaecde047bc", + "277f52a0-5b87-4429-8f3b-bfaecde047bc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "222" + ], + "x-ms-correlation-request-id": [ + "44a456f5-17a3-434d-a8be-609db1beb68e" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153440Z:44a456f5-17a3-434d-a8be-609db1beb68e" + ], + "Date": [ + "Mon, 16 May 2022 15:34:39 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"2a176d4b-ad50-4182-9ea4-00f74ea62cb6\",\r\n \"name\": \"2a176d4b-ad50-4182-9ea4-00f74ea62cb6\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:34:33.9302828Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/2a176d4b-ad50-4182-9ea4-00f74ea62cb6?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy8yYTE3NmQ0Yi1hZDUwLTQxODItOWVhNC0wMGY3NGVhNjJjYjY/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "277f52a0-5b87-4429-8f3b-bfaecde047bc" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "a254db3f-ed23-4fd1-b901-26554f09c625" + ], + "x-ms-client-request-id": [ + "277f52a0-5b87-4429-8f3b-bfaecde047bc", + "277f52a0-5b87-4429-8f3b-bfaecde047bc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "221" + ], + "x-ms-correlation-request-id": [ + "a254db3f-ed23-4fd1-b901-26554f09c625" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153441Z:a254db3f-ed23-4fd1-b901-26554f09c625" + ], + "Date": [ + "Mon, 16 May 2022 15:34:40 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"2a176d4b-ad50-4182-9ea4-00f74ea62cb6\",\r\n \"name\": \"2a176d4b-ad50-4182-9ea4-00f74ea62cb6\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:34:33.9302828Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/2a176d4b-ad50-4182-9ea4-00f74ea62cb6?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy8yYTE3NmQ0Yi1hZDUwLTQxODItOWVhNC0wMGY3NGVhNjJjYjY/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "277f52a0-5b87-4429-8f3b-bfaecde047bc" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "60d2c5b7-3f3d-4894-af7a-252c9303b4ab" + ], + "x-ms-client-request-id": [ + "277f52a0-5b87-4429-8f3b-bfaecde047bc", + "277f52a0-5b87-4429-8f3b-bfaecde047bc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "220" + ], + "x-ms-correlation-request-id": [ + "60d2c5b7-3f3d-4894-af7a-252c9303b4ab" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153441Z:60d2c5b7-3f3d-4894-af7a-252c9303b4ab" + ], + "Date": [ + "Mon, 16 May 2022 15:34:40 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"2a176d4b-ad50-4182-9ea4-00f74ea62cb6\",\r\n \"name\": \"2a176d4b-ad50-4182-9ea4-00f74ea62cb6\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:34:33.9302828Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/2a176d4b-ad50-4182-9ea4-00f74ea62cb6?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy8yYTE3NmQ0Yi1hZDUwLTQxODItOWVhNC0wMGY3NGVhNjJjYjY/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "277f52a0-5b87-4429-8f3b-bfaecde047bc" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "da524a93-6222-4aa1-9536-26986d3a8840" + ], + "x-ms-client-request-id": [ + "277f52a0-5b87-4429-8f3b-bfaecde047bc", + "277f52a0-5b87-4429-8f3b-bfaecde047bc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "219" + ], + "x-ms-correlation-request-id": [ + "da524a93-6222-4aa1-9536-26986d3a8840" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153442Z:da524a93-6222-4aa1-9536-26986d3a8840" + ], + "Date": [ + "Mon, 16 May 2022 15:34:41 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"2a176d4b-ad50-4182-9ea4-00f74ea62cb6\",\r\n \"name\": \"2a176d4b-ad50-4182-9ea4-00f74ea62cb6\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:34:33.9302828Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/2a176d4b-ad50-4182-9ea4-00f74ea62cb6?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy8yYTE3NmQ0Yi1hZDUwLTQxODItOWVhNC0wMGY3NGVhNjJjYjY/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "277f52a0-5b87-4429-8f3b-bfaecde047bc" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "1fa29b6c-3567-4e98-bd98-5a743043e3b5" + ], + "x-ms-client-request-id": [ + "277f52a0-5b87-4429-8f3b-bfaecde047bc", + "277f52a0-5b87-4429-8f3b-bfaecde047bc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "218" + ], + "x-ms-correlation-request-id": [ + "1fa29b6c-3567-4e98-bd98-5a743043e3b5" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153442Z:1fa29b6c-3567-4e98-bd98-5a743043e3b5" + ], + "Date": [ + "Mon, 16 May 2022 15:34:41 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"2a176d4b-ad50-4182-9ea4-00f74ea62cb6\",\r\n \"name\": \"2a176d4b-ad50-4182-9ea4-00f74ea62cb6\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:34:33.9302828Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/2a176d4b-ad50-4182-9ea4-00f74ea62cb6?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy8yYTE3NmQ0Yi1hZDUwLTQxODItOWVhNC0wMGY3NGVhNjJjYjY/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "277f52a0-5b87-4429-8f3b-bfaecde047bc" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "148ab13a-b3b7-404c-9425-640b17282a57" + ], + "x-ms-client-request-id": [ + "277f52a0-5b87-4429-8f3b-bfaecde047bc", + "277f52a0-5b87-4429-8f3b-bfaecde047bc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "217" + ], + "x-ms-correlation-request-id": [ + "148ab13a-b3b7-404c-9425-640b17282a57" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153443Z:148ab13a-b3b7-404c-9425-640b17282a57" + ], + "Date": [ + "Mon, 16 May 2022 15:34:42 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"2a176d4b-ad50-4182-9ea4-00f74ea62cb6\",\r\n \"name\": \"2a176d4b-ad50-4182-9ea4-00f74ea62cb6\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:34:33.9302828Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/2a176d4b-ad50-4182-9ea4-00f74ea62cb6?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy8yYTE3NmQ0Yi1hZDUwLTQxODItOWVhNC0wMGY3NGVhNjJjYjY/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "277f52a0-5b87-4429-8f3b-bfaecde047bc" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "1bba2a0c-a0d5-4627-ac6c-77fad3a18a98" + ], + "x-ms-client-request-id": [ + "277f52a0-5b87-4429-8f3b-bfaecde047bc", + "277f52a0-5b87-4429-8f3b-bfaecde047bc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "216" + ], + "x-ms-correlation-request-id": [ + "1bba2a0c-a0d5-4627-ac6c-77fad3a18a98" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153443Z:1bba2a0c-a0d5-4627-ac6c-77fad3a18a98" + ], + "Date": [ + "Mon, 16 May 2022 15:34:42 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"2a176d4b-ad50-4182-9ea4-00f74ea62cb6\",\r\n \"name\": \"2a176d4b-ad50-4182-9ea4-00f74ea62cb6\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:34:33.9302828Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/2a176d4b-ad50-4182-9ea4-00f74ea62cb6?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy8yYTE3NmQ0Yi1hZDUwLTQxODItOWVhNC0wMGY3NGVhNjJjYjY/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "277f52a0-5b87-4429-8f3b-bfaecde047bc" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "8b7fcc16-9c94-47e1-9051-14e6970b0fc2" + ], + "x-ms-client-request-id": [ + "277f52a0-5b87-4429-8f3b-bfaecde047bc", + "277f52a0-5b87-4429-8f3b-bfaecde047bc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "215" + ], + "x-ms-correlation-request-id": [ + "8b7fcc16-9c94-47e1-9051-14e6970b0fc2" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153444Z:8b7fcc16-9c94-47e1-9051-14e6970b0fc2" + ], + "Date": [ + "Mon, 16 May 2022 15:34:43 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"2a176d4b-ad50-4182-9ea4-00f74ea62cb6\",\r\n \"name\": \"2a176d4b-ad50-4182-9ea4-00f74ea62cb6\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:34:33.9302828Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/2a176d4b-ad50-4182-9ea4-00f74ea62cb6?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy8yYTE3NmQ0Yi1hZDUwLTQxODItOWVhNC0wMGY3NGVhNjJjYjY/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "277f52a0-5b87-4429-8f3b-bfaecde047bc" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "9b75413e-335d-4e7a-98b6-b69f27f38eab" + ], + "x-ms-client-request-id": [ + "277f52a0-5b87-4429-8f3b-bfaecde047bc", + "277f52a0-5b87-4429-8f3b-bfaecde047bc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "214" + ], + "x-ms-correlation-request-id": [ + "9b75413e-335d-4e7a-98b6-b69f27f38eab" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153444Z:9b75413e-335d-4e7a-98b6-b69f27f38eab" + ], + "Date": [ + "Mon, 16 May 2022 15:34:43 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"2a176d4b-ad50-4182-9ea4-00f74ea62cb6\",\r\n \"name\": \"2a176d4b-ad50-4182-9ea4-00f74ea62cb6\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:34:33.9302828Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/2a176d4b-ad50-4182-9ea4-00f74ea62cb6?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy8yYTE3NmQ0Yi1hZDUwLTQxODItOWVhNC0wMGY3NGVhNjJjYjY/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "277f52a0-5b87-4429-8f3b-bfaecde047bc" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "cf35ba9a-d0bc-4058-ba21-a54fc8e62c08" + ], + "x-ms-client-request-id": [ + "277f52a0-5b87-4429-8f3b-bfaecde047bc", + "277f52a0-5b87-4429-8f3b-bfaecde047bc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "213" + ], + "x-ms-correlation-request-id": [ + "cf35ba9a-d0bc-4058-ba21-a54fc8e62c08" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153445Z:cf35ba9a-d0bc-4058-ba21-a54fc8e62c08" + ], + "Date": [ + "Mon, 16 May 2022 15:34:44 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"2a176d4b-ad50-4182-9ea4-00f74ea62cb6\",\r\n \"name\": \"2a176d4b-ad50-4182-9ea4-00f74ea62cb6\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:34:33.9302828Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/2a176d4b-ad50-4182-9ea4-00f74ea62cb6?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy8yYTE3NmQ0Yi1hZDUwLTQxODItOWVhNC0wMGY3NGVhNjJjYjY/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "277f52a0-5b87-4429-8f3b-bfaecde047bc" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "12a44095-62bc-410d-8475-623d3fdde2f2" + ], + "x-ms-client-request-id": [ + "277f52a0-5b87-4429-8f3b-bfaecde047bc", + "277f52a0-5b87-4429-8f3b-bfaecde047bc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "212" + ], + "x-ms-correlation-request-id": [ + "12a44095-62bc-410d-8475-623d3fdde2f2" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153445Z:12a44095-62bc-410d-8475-623d3fdde2f2" + ], + "Date": [ + "Mon, 16 May 2022 15:34:44 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"2a176d4b-ad50-4182-9ea4-00f74ea62cb6\",\r\n \"name\": \"2a176d4b-ad50-4182-9ea4-00f74ea62cb6\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:34:33.9302828Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/2a176d4b-ad50-4182-9ea4-00f74ea62cb6?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy8yYTE3NmQ0Yi1hZDUwLTQxODItOWVhNC0wMGY3NGVhNjJjYjY/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "277f52a0-5b87-4429-8f3b-bfaecde047bc" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "c8b3869c-cdb4-4213-85ae-9b04ce4173e4" + ], + "x-ms-client-request-id": [ + "277f52a0-5b87-4429-8f3b-bfaecde047bc", + "277f52a0-5b87-4429-8f3b-bfaecde047bc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "211" + ], + "x-ms-correlation-request-id": [ + "c8b3869c-cdb4-4213-85ae-9b04ce4173e4" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153446Z:c8b3869c-cdb4-4213-85ae-9b04ce4173e4" + ], + "Date": [ + "Mon, 16 May 2022 15:34:45 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"2a176d4b-ad50-4182-9ea4-00f74ea62cb6\",\r\n \"name\": \"2a176d4b-ad50-4182-9ea4-00f74ea62cb6\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:34:33.9302828Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/2a176d4b-ad50-4182-9ea4-00f74ea62cb6?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy8yYTE3NmQ0Yi1hZDUwLTQxODItOWVhNC0wMGY3NGVhNjJjYjY/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "277f52a0-5b87-4429-8f3b-bfaecde047bc" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "49792bdf-b067-4940-8e9a-99d9748b543a" + ], + "x-ms-client-request-id": [ + "277f52a0-5b87-4429-8f3b-bfaecde047bc", + "277f52a0-5b87-4429-8f3b-bfaecde047bc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "210" + ], + "x-ms-correlation-request-id": [ + "49792bdf-b067-4940-8e9a-99d9748b543a" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153446Z:49792bdf-b067-4940-8e9a-99d9748b543a" + ], + "Date": [ + "Mon, 16 May 2022 15:34:46 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"2a176d4b-ad50-4182-9ea4-00f74ea62cb6\",\r\n \"name\": \"2a176d4b-ad50-4182-9ea4-00f74ea62cb6\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:34:33.9302828Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/2a176d4b-ad50-4182-9ea4-00f74ea62cb6?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy8yYTE3NmQ0Yi1hZDUwLTQxODItOWVhNC0wMGY3NGVhNjJjYjY/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "277f52a0-5b87-4429-8f3b-bfaecde047bc" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "d88d1ddb-8633-4896-b980-a60ce74099cb" + ], + "x-ms-client-request-id": [ + "277f52a0-5b87-4429-8f3b-bfaecde047bc", + "277f52a0-5b87-4429-8f3b-bfaecde047bc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "209" + ], + "x-ms-correlation-request-id": [ + "d88d1ddb-8633-4896-b980-a60ce74099cb" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153447Z:d88d1ddb-8633-4896-b980-a60ce74099cb" + ], + "Date": [ + "Mon, 16 May 2022 15:34:46 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"2a176d4b-ad50-4182-9ea4-00f74ea62cb6\",\r\n \"name\": \"2a176d4b-ad50-4182-9ea4-00f74ea62cb6\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:34:33.9302828Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/2a176d4b-ad50-4182-9ea4-00f74ea62cb6?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy8yYTE3NmQ0Yi1hZDUwLTQxODItOWVhNC0wMGY3NGVhNjJjYjY/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "277f52a0-5b87-4429-8f3b-bfaecde047bc" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "b42b5386-bae5-46d9-83c2-f3cb1cb2d390" + ], + "x-ms-client-request-id": [ + "277f52a0-5b87-4429-8f3b-bfaecde047bc", + "277f52a0-5b87-4429-8f3b-bfaecde047bc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "208" + ], + "x-ms-correlation-request-id": [ + "b42b5386-bae5-46d9-83c2-f3cb1cb2d390" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153448Z:b42b5386-bae5-46d9-83c2-f3cb1cb2d390" + ], + "Date": [ + "Mon, 16 May 2022 15:34:47 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"2a176d4b-ad50-4182-9ea4-00f74ea62cb6\",\r\n \"name\": \"2a176d4b-ad50-4182-9ea4-00f74ea62cb6\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:34:33.9302828Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/2a176d4b-ad50-4182-9ea4-00f74ea62cb6?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy8yYTE3NmQ0Yi1hZDUwLTQxODItOWVhNC0wMGY3NGVhNjJjYjY/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "277f52a0-5b87-4429-8f3b-bfaecde047bc" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "6be12c35-208c-407f-9156-87e47c7c57cf" + ], + "x-ms-client-request-id": [ + "277f52a0-5b87-4429-8f3b-bfaecde047bc", + "277f52a0-5b87-4429-8f3b-bfaecde047bc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "207" + ], + "x-ms-correlation-request-id": [ + "6be12c35-208c-407f-9156-87e47c7c57cf" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153448Z:6be12c35-208c-407f-9156-87e47c7c57cf" + ], + "Date": [ + "Mon, 16 May 2022 15:34:47 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"2a176d4b-ad50-4182-9ea4-00f74ea62cb6\",\r\n \"name\": \"2a176d4b-ad50-4182-9ea4-00f74ea62cb6\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:34:33.9302828Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/2a176d4b-ad50-4182-9ea4-00f74ea62cb6?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy8yYTE3NmQ0Yi1hZDUwLTQxODItOWVhNC0wMGY3NGVhNjJjYjY/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "277f52a0-5b87-4429-8f3b-bfaecde047bc" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "d2924f99-93f4-4cef-a5b6-b5fe186b0816" + ], + "x-ms-client-request-id": [ + "277f52a0-5b87-4429-8f3b-bfaecde047bc", + "277f52a0-5b87-4429-8f3b-bfaecde047bc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "206" + ], + "x-ms-correlation-request-id": [ + "d2924f99-93f4-4cef-a5b6-b5fe186b0816" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153449Z:d2924f99-93f4-4cef-a5b6-b5fe186b0816" + ], + "Date": [ + "Mon, 16 May 2022 15:34:48 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"2a176d4b-ad50-4182-9ea4-00f74ea62cb6\",\r\n \"name\": \"2a176d4b-ad50-4182-9ea4-00f74ea62cb6\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:34:33.9302828Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/2a176d4b-ad50-4182-9ea4-00f74ea62cb6?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy8yYTE3NmQ0Yi1hZDUwLTQxODItOWVhNC0wMGY3NGVhNjJjYjY/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "277f52a0-5b87-4429-8f3b-bfaecde047bc" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "0c05ae32-dfa9-48ed-a15e-fedeba4230da" + ], + "x-ms-client-request-id": [ + "277f52a0-5b87-4429-8f3b-bfaecde047bc", + "277f52a0-5b87-4429-8f3b-bfaecde047bc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "205" + ], + "x-ms-correlation-request-id": [ + "0c05ae32-dfa9-48ed-a15e-fedeba4230da" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153449Z:0c05ae32-dfa9-48ed-a15e-fedeba4230da" + ], + "Date": [ + "Mon, 16 May 2022 15:34:49 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"2a176d4b-ad50-4182-9ea4-00f74ea62cb6\",\r\n \"name\": \"2a176d4b-ad50-4182-9ea4-00f74ea62cb6\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:34:33.9302828Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/2a176d4b-ad50-4182-9ea4-00f74ea62cb6?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy8yYTE3NmQ0Yi1hZDUwLTQxODItOWVhNC0wMGY3NGVhNjJjYjY/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "277f52a0-5b87-4429-8f3b-bfaecde047bc" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "d83646b7-7380-4283-853f-2f99a459a806" + ], + "x-ms-client-request-id": [ + "277f52a0-5b87-4429-8f3b-bfaecde047bc", + "277f52a0-5b87-4429-8f3b-bfaecde047bc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "204" + ], + "x-ms-correlation-request-id": [ + "d83646b7-7380-4283-853f-2f99a459a806" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153450Z:d83646b7-7380-4283-853f-2f99a459a806" + ], + "Date": [ + "Mon, 16 May 2022 15:34:49 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"2a176d4b-ad50-4182-9ea4-00f74ea62cb6\",\r\n \"name\": \"2a176d4b-ad50-4182-9ea4-00f74ea62cb6\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:34:33.9302828Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/2a176d4b-ad50-4182-9ea4-00f74ea62cb6?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy8yYTE3NmQ0Yi1hZDUwLTQxODItOWVhNC0wMGY3NGVhNjJjYjY/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "277f52a0-5b87-4429-8f3b-bfaecde047bc" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "2898edd5-a7fd-4993-993a-95779e799115" + ], + "x-ms-client-request-id": [ + "277f52a0-5b87-4429-8f3b-bfaecde047bc", + "277f52a0-5b87-4429-8f3b-bfaecde047bc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "203" + ], + "x-ms-correlation-request-id": [ + "2898edd5-a7fd-4993-993a-95779e799115" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153450Z:2898edd5-a7fd-4993-993a-95779e799115" + ], + "Date": [ + "Mon, 16 May 2022 15:34:50 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"2a176d4b-ad50-4182-9ea4-00f74ea62cb6\",\r\n \"name\": \"2a176d4b-ad50-4182-9ea4-00f74ea62cb6\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:34:33.9302828Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/2a176d4b-ad50-4182-9ea4-00f74ea62cb6?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy8yYTE3NmQ0Yi1hZDUwLTQxODItOWVhNC0wMGY3NGVhNjJjYjY/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "277f52a0-5b87-4429-8f3b-bfaecde047bc" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "ce58972b-b42c-47fb-910f-fb54832b3e03" + ], + "x-ms-client-request-id": [ + "277f52a0-5b87-4429-8f3b-bfaecde047bc", + "277f52a0-5b87-4429-8f3b-bfaecde047bc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "202" + ], + "x-ms-correlation-request-id": [ + "ce58972b-b42c-47fb-910f-fb54832b3e03" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153451Z:ce58972b-b42c-47fb-910f-fb54832b3e03" + ], + "Date": [ + "Mon, 16 May 2022 15:34:50 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"2a176d4b-ad50-4182-9ea4-00f74ea62cb6\",\r\n \"name\": \"2a176d4b-ad50-4182-9ea4-00f74ea62cb6\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:34:33.9302828Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/2a176d4b-ad50-4182-9ea4-00f74ea62cb6?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy8yYTE3NmQ0Yi1hZDUwLTQxODItOWVhNC0wMGY3NGVhNjJjYjY/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "277f52a0-5b87-4429-8f3b-bfaecde047bc" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "c2df9c6f-da9d-4a66-b278-6f785a079a04" + ], + "x-ms-client-request-id": [ + "277f52a0-5b87-4429-8f3b-bfaecde047bc", + "277f52a0-5b87-4429-8f3b-bfaecde047bc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "201" + ], + "x-ms-correlation-request-id": [ + "c2df9c6f-da9d-4a66-b278-6f785a079a04" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153451Z:c2df9c6f-da9d-4a66-b278-6f785a079a04" + ], + "Date": [ + "Mon, 16 May 2022 15:34:51 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"2a176d4b-ad50-4182-9ea4-00f74ea62cb6\",\r\n \"name\": \"2a176d4b-ad50-4182-9ea4-00f74ea62cb6\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:34:33.9302828Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/2a176d4b-ad50-4182-9ea4-00f74ea62cb6?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy8yYTE3NmQ0Yi1hZDUwLTQxODItOWVhNC0wMGY3NGVhNjJjYjY/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "277f52a0-5b87-4429-8f3b-bfaecde047bc" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "414cf2ca-8b18-4251-ae2a-55d5c5eb0646" + ], + "x-ms-client-request-id": [ + "277f52a0-5b87-4429-8f3b-bfaecde047bc", + "277f52a0-5b87-4429-8f3b-bfaecde047bc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "200" + ], + "x-ms-correlation-request-id": [ + "414cf2ca-8b18-4251-ae2a-55d5c5eb0646" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153452Z:414cf2ca-8b18-4251-ae2a-55d5c5eb0646" + ], + "Date": [ + "Mon, 16 May 2022 15:34:51 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"2a176d4b-ad50-4182-9ea4-00f74ea62cb6\",\r\n \"name\": \"2a176d4b-ad50-4182-9ea4-00f74ea62cb6\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:34:33.9302828Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/2a176d4b-ad50-4182-9ea4-00f74ea62cb6?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy8yYTE3NmQ0Yi1hZDUwLTQxODItOWVhNC0wMGY3NGVhNjJjYjY/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "277f52a0-5b87-4429-8f3b-bfaecde047bc" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "903ff46e-4a72-4862-b31a-e857ce358edf" + ], + "x-ms-client-request-id": [ + "277f52a0-5b87-4429-8f3b-bfaecde047bc", + "277f52a0-5b87-4429-8f3b-bfaecde047bc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "199" + ], + "x-ms-correlation-request-id": [ + "903ff46e-4a72-4862-b31a-e857ce358edf" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153453Z:903ff46e-4a72-4862-b31a-e857ce358edf" + ], + "Date": [ + "Mon, 16 May 2022 15:34:52 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"2a176d4b-ad50-4182-9ea4-00f74ea62cb6\",\r\n \"name\": \"2a176d4b-ad50-4182-9ea4-00f74ea62cb6\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:34:33.9302828Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/2a176d4b-ad50-4182-9ea4-00f74ea62cb6?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy8yYTE3NmQ0Yi1hZDUwLTQxODItOWVhNC0wMGY3NGVhNjJjYjY/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "277f52a0-5b87-4429-8f3b-bfaecde047bc" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "a2dc37e2-c4da-4c8b-a3ea-8c18b56a5054" + ], + "x-ms-client-request-id": [ + "277f52a0-5b87-4429-8f3b-bfaecde047bc", + "277f52a0-5b87-4429-8f3b-bfaecde047bc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "198" + ], + "x-ms-correlation-request-id": [ + "a2dc37e2-c4da-4c8b-a3ea-8c18b56a5054" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153453Z:a2dc37e2-c4da-4c8b-a3ea-8c18b56a5054" + ], + "Date": [ + "Mon, 16 May 2022 15:34:52 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"2a176d4b-ad50-4182-9ea4-00f74ea62cb6\",\r\n \"name\": \"2a176d4b-ad50-4182-9ea4-00f74ea62cb6\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:34:33.9302828Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/2a176d4b-ad50-4182-9ea4-00f74ea62cb6?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy8yYTE3NmQ0Yi1hZDUwLTQxODItOWVhNC0wMGY3NGVhNjJjYjY/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "277f52a0-5b87-4429-8f3b-bfaecde047bc" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "68ccdff0-37be-45ad-9590-aabb70a0dbd2" + ], + "x-ms-client-request-id": [ + "277f52a0-5b87-4429-8f3b-bfaecde047bc", + "277f52a0-5b87-4429-8f3b-bfaecde047bc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "197" + ], + "x-ms-correlation-request-id": [ + "68ccdff0-37be-45ad-9590-aabb70a0dbd2" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153454Z:68ccdff0-37be-45ad-9590-aabb70a0dbd2" + ], + "Date": [ + "Mon, 16 May 2022 15:34:53 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"2a176d4b-ad50-4182-9ea4-00f74ea62cb6\",\r\n \"name\": \"2a176d4b-ad50-4182-9ea4-00f74ea62cb6\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:34:33.9302828Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/2a176d4b-ad50-4182-9ea4-00f74ea62cb6?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy8yYTE3NmQ0Yi1hZDUwLTQxODItOWVhNC0wMGY3NGVhNjJjYjY/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "277f52a0-5b87-4429-8f3b-bfaecde047bc" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "16cfd228-ef9a-495f-b979-f48566d17bca" + ], + "x-ms-client-request-id": [ + "277f52a0-5b87-4429-8f3b-bfaecde047bc", + "277f52a0-5b87-4429-8f3b-bfaecde047bc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "196" + ], + "x-ms-correlation-request-id": [ + "16cfd228-ef9a-495f-b979-f48566d17bca" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153454Z:16cfd228-ef9a-495f-b979-f48566d17bca" + ], + "Date": [ + "Mon, 16 May 2022 15:34:53 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"2a176d4b-ad50-4182-9ea4-00f74ea62cb6\",\r\n \"name\": \"2a176d4b-ad50-4182-9ea4-00f74ea62cb6\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:34:33.9302828Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/2a176d4b-ad50-4182-9ea4-00f74ea62cb6?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy8yYTE3NmQ0Yi1hZDUwLTQxODItOWVhNC0wMGY3NGVhNjJjYjY/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "277f52a0-5b87-4429-8f3b-bfaecde047bc" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "7000549c-e503-400f-8ce4-b7ec9a39ec89" + ], + "x-ms-client-request-id": [ + "277f52a0-5b87-4429-8f3b-bfaecde047bc", + "277f52a0-5b87-4429-8f3b-bfaecde047bc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "195" + ], + "x-ms-correlation-request-id": [ + "7000549c-e503-400f-8ce4-b7ec9a39ec89" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153455Z:7000549c-e503-400f-8ce4-b7ec9a39ec89" + ], + "Date": [ + "Mon, 16 May 2022 15:34:54 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"2a176d4b-ad50-4182-9ea4-00f74ea62cb6\",\r\n \"name\": \"2a176d4b-ad50-4182-9ea4-00f74ea62cb6\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:34:33.9302828Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/2a176d4b-ad50-4182-9ea4-00f74ea62cb6?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy8yYTE3NmQ0Yi1hZDUwLTQxODItOWVhNC0wMGY3NGVhNjJjYjY/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "277f52a0-5b87-4429-8f3b-bfaecde047bc" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "04c17c76-6de2-4f8f-8c00-439c471e23d8" + ], + "x-ms-client-request-id": [ + "277f52a0-5b87-4429-8f3b-bfaecde047bc", + "277f52a0-5b87-4429-8f3b-bfaecde047bc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "194" + ], + "x-ms-correlation-request-id": [ + "04c17c76-6de2-4f8f-8c00-439c471e23d8" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153455Z:04c17c76-6de2-4f8f-8c00-439c471e23d8" + ], + "Date": [ + "Mon, 16 May 2022 15:34:54 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"2a176d4b-ad50-4182-9ea4-00f74ea62cb6\",\r\n \"name\": \"2a176d4b-ad50-4182-9ea4-00f74ea62cb6\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:34:33.9302828Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/2a176d4b-ad50-4182-9ea4-00f74ea62cb6?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy8yYTE3NmQ0Yi1hZDUwLTQxODItOWVhNC0wMGY3NGVhNjJjYjY/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "277f52a0-5b87-4429-8f3b-bfaecde047bc" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "38d961ba-99c4-49f9-8d5e-27153e86322d" + ], + "x-ms-client-request-id": [ + "277f52a0-5b87-4429-8f3b-bfaecde047bc", + "277f52a0-5b87-4429-8f3b-bfaecde047bc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "193" + ], + "x-ms-correlation-request-id": [ + "38d961ba-99c4-49f9-8d5e-27153e86322d" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153456Z:38d961ba-99c4-49f9-8d5e-27153e86322d" + ], + "Date": [ + "Mon, 16 May 2022 15:34:55 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"2a176d4b-ad50-4182-9ea4-00f74ea62cb6\",\r\n \"name\": \"2a176d4b-ad50-4182-9ea4-00f74ea62cb6\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T15:34:33.9302828Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/2a176d4b-ad50-4182-9ea4-00f74ea62cb6?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy8yYTE3NmQ0Yi1hZDUwLTQxODItOWVhNC0wMGY3NGVhNjJjYjY/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "277f52a0-5b87-4429-8f3b-bfaecde047bc" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "d7601639-13ef-4711-aea3-ec7fa8241988" + ], + "x-ms-client-request-id": [ + "277f52a0-5b87-4429-8f3b-bfaecde047bc", + "277f52a0-5b87-4429-8f3b-bfaecde047bc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "192" + ], + "x-ms-correlation-request-id": [ + "d7601639-13ef-4711-aea3-ec7fa8241988" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153456Z:d7601639-13ef-4711-aea3-ec7fa8241988" + ], + "Date": [ + "Mon, 16 May 2022 15:34:55 GMT" + ], + "Content-Length": [ + "304" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"2a176d4b-ad50-4182-9ea4-00f74ea62cb6\",\r\n \"name\": \"2a176d4b-ad50-4182-9ea4-00f74ea62cb6\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-05-16T15:34:33.9302828Z\",\r\n \"endTime\": \"2022-05-16T15:34:33.9302828Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"8bef072b-c56b-4123-8c14-0369184641bf\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/2a176d4b-ad50-4182-9ea4-00f74ea62cb6?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy8yYTE3NmQ0Yi1hZDUwLTQxODItOWVhNC0wMGY3NGVhNjJjYjY/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "277f52a0-5b87-4429-8f3b-bfaecde047bc" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "30a807d9-add8-4754-8df2-a0d38d67ffb6" + ], + "x-ms-client-request-id": [ + "277f52a0-5b87-4429-8f3b-bfaecde047bc", + "277f52a0-5b87-4429-8f3b-bfaecde047bc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "191" + ], + "x-ms-correlation-request-id": [ + "30a807d9-add8-4754-8df2-a0d38d67ffb6" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153457Z:30a807d9-add8-4754-8df2-a0d38d67ffb6" + ], + "Date": [ + "Mon, 16 May 2022 15:34:56 GMT" + ], + "Content-Length": [ + "304" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"2a176d4b-ad50-4182-9ea4-00f74ea62cb6\",\r\n \"name\": \"2a176d4b-ad50-4182-9ea4-00f74ea62cb6\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-05-16T15:34:33.9302828Z\",\r\n \"endTime\": \"2022-05-16T15:34:33.9302828Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"8bef072b-c56b-4123-8c14-0369184641bf\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/8bef072b-c56b-4123-8c14-0369184641bf?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy84YmVmMDcyYi1jNTZiLTQxMjMtOGMxNC0wMzY5MTg0NjQxYmY/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "277f52a0-5b87-4429-8f3b-bfaecde047bc" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.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": [ + "7e4d6871-09a7-4e11-a3ee-324453d24471" + ], + "x-ms-client-request-id": [ + "277f52a0-5b87-4429-8f3b-bfaecde047bc", + "277f52a0-5b87-4429-8f3b-bfaecde047bc" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "298" + ], + "x-ms-correlation-request-id": [ + "7e4d6871-09a7-4e11-a3ee-324453d24471" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153457Z:7e4d6871-09a7-4e11-a3ee-324453d24471" + ], + "Date": [ + "Mon, 16 May 2022 15:34:56 GMT" + ], + "Content-Length": [ + "820" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/8bef072b-c56b-4123-8c14-0369184641bf\",\r\n \"name\": \"8bef072b-c56b-4123-8c14-0369184641bf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT22.369743S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"Storage\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"File Share Name\": \"fs1\",\r\n \"Storage Account Name\": \"pstestsa8895\"\r\n }\r\n },\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"DeleteBackupData\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-05-16T15:34:33.9302828Z\",\r\n \"endTime\": \"2022-05-16T15:34:56.3000258Z\",\r\n \"activityId\": \"277f52a0-5b87-4429-8f3b-bfaecde047bc\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0358961b-b7b9-44c6-bf04-ec1dc3248c83" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperationResults/4158a3af-de0f-4d00-b4ee-84e179453fc1?fabricName=Azure?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationsStatus/4158a3af-de0f-4d00-b4ee-84e179453fc1?api-version=2019-05-13-preview" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "7aa5de36-e324-4989-9f3c-859154eb3a79" + ], + "x-ms-client-request-id": [ + "0358961b-b7b9-44c6-bf04-ec1dc3248c83", + "0358961b-b7b9-44c6-bf04-ec1dc3248c83" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14998" + ], + "x-ms-correlation-request-id": [ + "7aa5de36-e324-4989-9f3c-859154eb3a79" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153458Z:7aa5de36-e324-4989-9f3c-859154eb3a79" + ], + "Date": [ + "Mon, 16 May 2022 15:34:58 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/4158a3af-de0f-4d00-b4ee-84e179453fc1?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzLzQxNThhM2FmLWRlMGYtNGQwMC1iNGVlLTg0ZTE3OTQ1M2ZjMT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0358961b-b7b9-44c6-bf04-ec1dc3248c83" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/4158a3af-de0f-4d00-b4ee-84e179453fc1?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "11b56529-66eb-42b8-bc34-ed452bcd54b2" + ], + "x-ms-client-request-id": [ + "0358961b-b7b9-44c6-bf04-ec1dc3248c83", + "0358961b-b7b9-44c6-bf04-ec1dc3248c83" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "299" + ], + "x-ms-correlation-request-id": [ + "11b56529-66eb-42b8-bc34-ed452bcd54b2" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153459Z:11b56529-66eb-42b8-bc34-ed452bcd54b2" + ], + "Date": [ + "Mon, 16 May 2022 15:34:59 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/4158a3af-de0f-4d00-b4ee-84e179453fc1?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzLzQxNThhM2FmLWRlMGYtNGQwMC1iNGVlLTg0ZTE3OTQ1M2ZjMT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0358961b-b7b9-44c6-bf04-ec1dc3248c83" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/4158a3af-de0f-4d00-b4ee-84e179453fc1?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "baffa02c-a6af-41f5-bcd6-2006f3f94c16" + ], + "x-ms-client-request-id": [ + "0358961b-b7b9-44c6-bf04-ec1dc3248c83", + "0358961b-b7b9-44c6-bf04-ec1dc3248c83" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "298" + ], + "x-ms-correlation-request-id": [ + "baffa02c-a6af-41f5-bcd6-2006f3f94c16" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153459Z:baffa02c-a6af-41f5-bcd6-2006f3f94c16" + ], + "Date": [ + "Mon, 16 May 2022 15:34:59 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/4158a3af-de0f-4d00-b4ee-84e179453fc1?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzLzQxNThhM2FmLWRlMGYtNGQwMC1iNGVlLTg0ZTE3OTQ1M2ZjMT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0358961b-b7b9-44c6-bf04-ec1dc3248c83" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/4158a3af-de0f-4d00-b4ee-84e179453fc1?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "34d87cc1-31a7-4cc5-861a-2177ed031fec" + ], + "x-ms-client-request-id": [ + "0358961b-b7b9-44c6-bf04-ec1dc3248c83", + "0358961b-b7b9-44c6-bf04-ec1dc3248c83" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "297" + ], + "x-ms-correlation-request-id": [ + "34d87cc1-31a7-4cc5-861a-2177ed031fec" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153500Z:34d87cc1-31a7-4cc5-861a-2177ed031fec" + ], + "Date": [ + "Mon, 16 May 2022 15:35:00 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/4158a3af-de0f-4d00-b4ee-84e179453fc1?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzLzQxNThhM2FmLWRlMGYtNGQwMC1iNGVlLTg0ZTE3OTQ1M2ZjMT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0358961b-b7b9-44c6-bf04-ec1dc3248c83" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/4158a3af-de0f-4d00-b4ee-84e179453fc1?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "69e74077-983f-40f2-aa80-8f41d999956f" + ], + "x-ms-client-request-id": [ + "0358961b-b7b9-44c6-bf04-ec1dc3248c83", + "0358961b-b7b9-44c6-bf04-ec1dc3248c83" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "296" + ], + "x-ms-correlation-request-id": [ + "69e74077-983f-40f2-aa80-8f41d999956f" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153500Z:69e74077-983f-40f2-aa80-8f41d999956f" + ], + "Date": [ + "Mon, 16 May 2022 15:35:00 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/4158a3af-de0f-4d00-b4ee-84e179453fc1?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzLzQxNThhM2FmLWRlMGYtNGQwMC1iNGVlLTg0ZTE3OTQ1M2ZjMT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0358961b-b7b9-44c6-bf04-ec1dc3248c83" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/4158a3af-de0f-4d00-b4ee-84e179453fc1?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "b575ac29-aee9-46ca-b497-d2f45e8787d0" + ], + "x-ms-client-request-id": [ + "0358961b-b7b9-44c6-bf04-ec1dc3248c83", + "0358961b-b7b9-44c6-bf04-ec1dc3248c83" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "295" + ], + "x-ms-correlation-request-id": [ + "b575ac29-aee9-46ca-b497-d2f45e8787d0" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153501Z:b575ac29-aee9-46ca-b497-d2f45e8787d0" + ], + "Date": [ + "Mon, 16 May 2022 15:35:01 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/4158a3af-de0f-4d00-b4ee-84e179453fc1?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzLzQxNThhM2FmLWRlMGYtNGQwMC1iNGVlLTg0ZTE3OTQ1M2ZjMT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0358961b-b7b9-44c6-bf04-ec1dc3248c83" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/4158a3af-de0f-4d00-b4ee-84e179453fc1?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "6be87f9f-3388-4947-93cf-ef020e0c4b80" + ], + "x-ms-client-request-id": [ + "0358961b-b7b9-44c6-bf04-ec1dc3248c83", + "0358961b-b7b9-44c6-bf04-ec1dc3248c83" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "294" + ], + "x-ms-correlation-request-id": [ + "6be87f9f-3388-4947-93cf-ef020e0c4b80" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153502Z:6be87f9f-3388-4947-93cf-ef020e0c4b80" + ], + "Date": [ + "Mon, 16 May 2022 15:35:02 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/4158a3af-de0f-4d00-b4ee-84e179453fc1?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzLzQxNThhM2FmLWRlMGYtNGQwMC1iNGVlLTg0ZTE3OTQ1M2ZjMT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0358961b-b7b9-44c6-bf04-ec1dc3248c83" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/4158a3af-de0f-4d00-b4ee-84e179453fc1?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "034271b3-9f72-4776-bade-642c2ed6038d" + ], + "x-ms-client-request-id": [ + "0358961b-b7b9-44c6-bf04-ec1dc3248c83", + "0358961b-b7b9-44c6-bf04-ec1dc3248c83" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "293" + ], + "x-ms-correlation-request-id": [ + "034271b3-9f72-4776-bade-642c2ed6038d" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153502Z:034271b3-9f72-4776-bade-642c2ed6038d" + ], + "Date": [ + "Mon, 16 May 2022 15:35:02 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/4158a3af-de0f-4d00-b4ee-84e179453fc1?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzLzQxNThhM2FmLWRlMGYtNGQwMC1iNGVlLTg0ZTE3OTQ1M2ZjMT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0358961b-b7b9-44c6-bf04-ec1dc3248c83" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/4158a3af-de0f-4d00-b4ee-84e179453fc1?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "e539e226-edaa-4e69-a67a-f6b2c7163667" + ], + "x-ms-client-request-id": [ + "0358961b-b7b9-44c6-bf04-ec1dc3248c83", + "0358961b-b7b9-44c6-bf04-ec1dc3248c83" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "292" + ], + "x-ms-correlation-request-id": [ + "e539e226-edaa-4e69-a67a-f6b2c7163667" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153503Z:e539e226-edaa-4e69-a67a-f6b2c7163667" + ], + "Date": [ + "Mon, 16 May 2022 15:35:03 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/4158a3af-de0f-4d00-b4ee-84e179453fc1?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzLzQxNThhM2FmLWRlMGYtNGQwMC1iNGVlLTg0ZTE3OTQ1M2ZjMT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0358961b-b7b9-44c6-bf04-ec1dc3248c83" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/4158a3af-de0f-4d00-b4ee-84e179453fc1?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "64f91058-7834-42b7-b08f-8cbf6b08d17c" + ], + "x-ms-client-request-id": [ + "0358961b-b7b9-44c6-bf04-ec1dc3248c83", + "0358961b-b7b9-44c6-bf04-ec1dc3248c83" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "291" + ], + "x-ms-correlation-request-id": [ + "64f91058-7834-42b7-b08f-8cbf6b08d17c" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153503Z:64f91058-7834-42b7-b08f-8cbf6b08d17c" + ], + "Date": [ + "Mon, 16 May 2022 15:35:03 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/4158a3af-de0f-4d00-b4ee-84e179453fc1?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzLzQxNThhM2FmLWRlMGYtNGQwMC1iNGVlLTg0ZTE3OTQ1M2ZjMT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0358961b-b7b9-44c6-bf04-ec1dc3248c83" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/4158a3af-de0f-4d00-b4ee-84e179453fc1?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "4e5f362e-4e3d-4c25-b69d-7cdabad20f3e" + ], + "x-ms-client-request-id": [ + "0358961b-b7b9-44c6-bf04-ec1dc3248c83", + "0358961b-b7b9-44c6-bf04-ec1dc3248c83" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "290" + ], + "x-ms-correlation-request-id": [ + "4e5f362e-4e3d-4c25-b69d-7cdabad20f3e" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153504Z:4e5f362e-4e3d-4c25-b69d-7cdabad20f3e" + ], + "Date": [ + "Mon, 16 May 2022 15:35:04 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/4158a3af-de0f-4d00-b4ee-84e179453fc1?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzLzQxNThhM2FmLWRlMGYtNGQwMC1iNGVlLTg0ZTE3OTQ1M2ZjMT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0358961b-b7b9-44c6-bf04-ec1dc3248c83" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/4158a3af-de0f-4d00-b4ee-84e179453fc1?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "3af22bbf-49ed-4f04-be12-c25d624ce7e9" + ], + "x-ms-client-request-id": [ + "0358961b-b7b9-44c6-bf04-ec1dc3248c83", + "0358961b-b7b9-44c6-bf04-ec1dc3248c83" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "289" + ], + "x-ms-correlation-request-id": [ + "3af22bbf-49ed-4f04-be12-c25d624ce7e9" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153504Z:3af22bbf-49ed-4f04-be12-c25d624ce7e9" + ], + "Date": [ + "Mon, 16 May 2022 15:35:04 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/4158a3af-de0f-4d00-b4ee-84e179453fc1?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzLzQxNThhM2FmLWRlMGYtNGQwMC1iNGVlLTg0ZTE3OTQ1M2ZjMT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0358961b-b7b9-44c6-bf04-ec1dc3248c83" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/4158a3af-de0f-4d00-b4ee-84e179453fc1?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "44b372dd-559f-48b4-8fbd-cc6f1ac919fa" + ], + "x-ms-client-request-id": [ + "0358961b-b7b9-44c6-bf04-ec1dc3248c83", + "0358961b-b7b9-44c6-bf04-ec1dc3248c83" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "288" + ], + "x-ms-correlation-request-id": [ + "44b372dd-559f-48b4-8fbd-cc6f1ac919fa" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153505Z:44b372dd-559f-48b4-8fbd-cc6f1ac919fa" + ], + "Date": [ + "Mon, 16 May 2022 15:35:05 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/4158a3af-de0f-4d00-b4ee-84e179453fc1?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzLzQxNThhM2FmLWRlMGYtNGQwMC1iNGVlLTg0ZTE3OTQ1M2ZjMT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0358961b-b7b9-44c6-bf04-ec1dc3248c83" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/4158a3af-de0f-4d00-b4ee-84e179453fc1?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "ecda1d2c-43a8-445b-8cc2-b3493f19cb59" + ], + "x-ms-client-request-id": [ + "0358961b-b7b9-44c6-bf04-ec1dc3248c83", + "0358961b-b7b9-44c6-bf04-ec1dc3248c83" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "287" + ], + "x-ms-correlation-request-id": [ + "ecda1d2c-43a8-445b-8cc2-b3493f19cb59" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153505Z:ecda1d2c-43a8-445b-8cc2-b3493f19cb59" + ], + "Date": [ + "Mon, 16 May 2022 15:35:05 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/4158a3af-de0f-4d00-b4ee-84e179453fc1?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzLzQxNThhM2FmLWRlMGYtNGQwMC1iNGVlLTg0ZTE3OTQ1M2ZjMT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0358961b-b7b9-44c6-bf04-ec1dc3248c83" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/4158a3af-de0f-4d00-b4ee-84e179453fc1?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "ce6e69d5-c543-40fa-a26f-fb146e414999" + ], + "x-ms-client-request-id": [ + "0358961b-b7b9-44c6-bf04-ec1dc3248c83", + "0358961b-b7b9-44c6-bf04-ec1dc3248c83" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "286" + ], + "x-ms-correlation-request-id": [ + "ce6e69d5-c543-40fa-a26f-fb146e414999" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153506Z:ce6e69d5-c543-40fa-a26f-fb146e414999" + ], + "Date": [ + "Mon, 16 May 2022 15:35:06 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/4158a3af-de0f-4d00-b4ee-84e179453fc1?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzLzQxNThhM2FmLWRlMGYtNGQwMC1iNGVlLTg0ZTE3OTQ1M2ZjMT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0358961b-b7b9-44c6-bf04-ec1dc3248c83" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/4158a3af-de0f-4d00-b4ee-84e179453fc1?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "44300a76-c008-4418-bd51-6dd6eacc14bf" + ], + "x-ms-client-request-id": [ + "0358961b-b7b9-44c6-bf04-ec1dc3248c83", + "0358961b-b7b9-44c6-bf04-ec1dc3248c83" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "285" + ], + "x-ms-correlation-request-id": [ + "44300a76-c008-4418-bd51-6dd6eacc14bf" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153506Z:44300a76-c008-4418-bd51-6dd6eacc14bf" + ], + "Date": [ + "Mon, 16 May 2022 15:35:06 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/4158a3af-de0f-4d00-b4ee-84e179453fc1?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzLzQxNThhM2FmLWRlMGYtNGQwMC1iNGVlLTg0ZTE3OTQ1M2ZjMT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0358961b-b7b9-44c6-bf04-ec1dc3248c83" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/4158a3af-de0f-4d00-b4ee-84e179453fc1?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "a4b8863c-a010-4cb2-afed-5de573e55bd0" + ], + "x-ms-client-request-id": [ + "0358961b-b7b9-44c6-bf04-ec1dc3248c83", + "0358961b-b7b9-44c6-bf04-ec1dc3248c83" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "284" + ], + "x-ms-correlation-request-id": [ + "a4b8863c-a010-4cb2-afed-5de573e55bd0" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153507Z:a4b8863c-a010-4cb2-afed-5de573e55bd0" + ], + "Date": [ + "Mon, 16 May 2022 15:35:07 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/4158a3af-de0f-4d00-b4ee-84e179453fc1?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzLzQxNThhM2FmLWRlMGYtNGQwMC1iNGVlLTg0ZTE3OTQ1M2ZjMT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0358961b-b7b9-44c6-bf04-ec1dc3248c83" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/4158a3af-de0f-4d00-b4ee-84e179453fc1?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "2364d0b4-ef7f-482b-9e8e-4de0a1dd79fb" + ], + "x-ms-client-request-id": [ + "0358961b-b7b9-44c6-bf04-ec1dc3248c83", + "0358961b-b7b9-44c6-bf04-ec1dc3248c83" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "283" + ], + "x-ms-correlation-request-id": [ + "2364d0b4-ef7f-482b-9e8e-4de0a1dd79fb" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153507Z:2364d0b4-ef7f-482b-9e8e-4de0a1dd79fb" + ], + "Date": [ + "Mon, 16 May 2022 15:35:07 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/4158a3af-de0f-4d00-b4ee-84e179453fc1?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzLzQxNThhM2FmLWRlMGYtNGQwMC1iNGVlLTg0ZTE3OTQ1M2ZjMT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0358961b-b7b9-44c6-bf04-ec1dc3248c83" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/4158a3af-de0f-4d00-b4ee-84e179453fc1?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "0493ebee-9ee9-46ab-960f-9ed63d010cbc" + ], + "x-ms-client-request-id": [ + "0358961b-b7b9-44c6-bf04-ec1dc3248c83", + "0358961b-b7b9-44c6-bf04-ec1dc3248c83" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "282" + ], + "x-ms-correlation-request-id": [ + "0493ebee-9ee9-46ab-960f-9ed63d010cbc" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153508Z:0493ebee-9ee9-46ab-960f-9ed63d010cbc" + ], + "Date": [ + "Mon, 16 May 2022 15:35:08 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/4158a3af-de0f-4d00-b4ee-84e179453fc1?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzLzQxNThhM2FmLWRlMGYtNGQwMC1iNGVlLTg0ZTE3OTQ1M2ZjMT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0358961b-b7b9-44c6-bf04-ec1dc3248c83" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/4158a3af-de0f-4d00-b4ee-84e179453fc1?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "08ae5778-a077-4d4f-9c4c-abc8451d1a4c" + ], + "x-ms-client-request-id": [ + "0358961b-b7b9-44c6-bf04-ec1dc3248c83", + "0358961b-b7b9-44c6-bf04-ec1dc3248c83" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "281" + ], + "x-ms-correlation-request-id": [ + "08ae5778-a077-4d4f-9c4c-abc8451d1a4c" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153508Z:08ae5778-a077-4d4f-9c4c-abc8451d1a4c" + ], + "Date": [ + "Mon, 16 May 2022 15:35:08 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/4158a3af-de0f-4d00-b4ee-84e179453fc1?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzLzQxNThhM2FmLWRlMGYtNGQwMC1iNGVlLTg0ZTE3OTQ1M2ZjMT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0358961b-b7b9-44c6-bf04-ec1dc3248c83" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/4158a3af-de0f-4d00-b4ee-84e179453fc1?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "04414a9f-de4c-498b-970d-d2881ae54bc0" + ], + "x-ms-client-request-id": [ + "0358961b-b7b9-44c6-bf04-ec1dc3248c83", + "0358961b-b7b9-44c6-bf04-ec1dc3248c83" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "280" + ], + "x-ms-correlation-request-id": [ + "04414a9f-de4c-498b-970d-d2881ae54bc0" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153509Z:04414a9f-de4c-498b-970d-d2881ae54bc0" + ], + "Date": [ + "Mon, 16 May 2022 15:35:09 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/4158a3af-de0f-4d00-b4ee-84e179453fc1?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzLzQxNThhM2FmLWRlMGYtNGQwMC1iNGVlLTg0ZTE3OTQ1M2ZjMT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0358961b-b7b9-44c6-bf04-ec1dc3248c83" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/4158a3af-de0f-4d00-b4ee-84e179453fc1?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "90b7d9c1-0222-4692-8bc4-62e51fd50bb6" + ], + "x-ms-client-request-id": [ + "0358961b-b7b9-44c6-bf04-ec1dc3248c83", + "0358961b-b7b9-44c6-bf04-ec1dc3248c83" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "279" + ], + "x-ms-correlation-request-id": [ + "90b7d9c1-0222-4692-8bc4-62e51fd50bb6" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153510Z:90b7d9c1-0222-4692-8bc4-62e51fd50bb6" + ], + "Date": [ + "Mon, 16 May 2022 15:35:09 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/4158a3af-de0f-4d00-b4ee-84e179453fc1?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzLzQxNThhM2FmLWRlMGYtNGQwMC1iNGVlLTg0ZTE3OTQ1M2ZjMT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0358961b-b7b9-44c6-bf04-ec1dc3248c83" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/4158a3af-de0f-4d00-b4ee-84e179453fc1?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "452b09e2-1648-4faa-96a9-d13457cca741" + ], + "x-ms-client-request-id": [ + "0358961b-b7b9-44c6-bf04-ec1dc3248c83", + "0358961b-b7b9-44c6-bf04-ec1dc3248c83" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "278" + ], + "x-ms-correlation-request-id": [ + "452b09e2-1648-4faa-96a9-d13457cca741" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153510Z:452b09e2-1648-4faa-96a9-d13457cca741" + ], + "Date": [ + "Mon, 16 May 2022 15:35:10 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/4158a3af-de0f-4d00-b4ee-84e179453fc1?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzLzQxNThhM2FmLWRlMGYtNGQwMC1iNGVlLTg0ZTE3OTQ1M2ZjMT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0358961b-b7b9-44c6-bf04-ec1dc3248c83" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/4158a3af-de0f-4d00-b4ee-84e179453fc1?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "6c31c3b8-a7e8-45ca-8dd0-8144c4b92dd0" + ], + "x-ms-client-request-id": [ + "0358961b-b7b9-44c6-bf04-ec1dc3248c83", + "0358961b-b7b9-44c6-bf04-ec1dc3248c83" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "277" + ], + "x-ms-correlation-request-id": [ + "6c31c3b8-a7e8-45ca-8dd0-8144c4b92dd0" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153511Z:6c31c3b8-a7e8-45ca-8dd0-8144c4b92dd0" + ], + "Date": [ + "Mon, 16 May 2022 15:35:10 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/4158a3af-de0f-4d00-b4ee-84e179453fc1?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzLzQxNThhM2FmLWRlMGYtNGQwMC1iNGVlLTg0ZTE3OTQ1M2ZjMT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0358961b-b7b9-44c6-bf04-ec1dc3248c83" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/4158a3af-de0f-4d00-b4ee-84e179453fc1?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "9fa085b1-f486-4c01-8957-0ddf31ee7fcd" + ], + "x-ms-client-request-id": [ + "0358961b-b7b9-44c6-bf04-ec1dc3248c83", + "0358961b-b7b9-44c6-bf04-ec1dc3248c83" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "276" + ], + "x-ms-correlation-request-id": [ + "9fa085b1-f486-4c01-8957-0ddf31ee7fcd" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153511Z:9fa085b1-f486-4c01-8957-0ddf31ee7fcd" + ], + "Date": [ + "Mon, 16 May 2022 15:35:11 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/4158a3af-de0f-4d00-b4ee-84e179453fc1?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzLzQxNThhM2FmLWRlMGYtNGQwMC1iNGVlLTg0ZTE3OTQ1M2ZjMT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0358961b-b7b9-44c6-bf04-ec1dc3248c83" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/4158a3af-de0f-4d00-b4ee-84e179453fc1?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "fc8b6421-d8ac-42ad-9f90-da9d2af95b22" + ], + "x-ms-client-request-id": [ + "0358961b-b7b9-44c6-bf04-ec1dc3248c83", + "0358961b-b7b9-44c6-bf04-ec1dc3248c83" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "275" + ], + "x-ms-correlation-request-id": [ + "fc8b6421-d8ac-42ad-9f90-da9d2af95b22" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153512Z:fc8b6421-d8ac-42ad-9f90-da9d2af95b22" + ], + "Date": [ + "Mon, 16 May 2022 15:35:11 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/4158a3af-de0f-4d00-b4ee-84e179453fc1?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzLzQxNThhM2FmLWRlMGYtNGQwMC1iNGVlLTg0ZTE3OTQ1M2ZjMT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0358961b-b7b9-44c6-bf04-ec1dc3248c83" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/4158a3af-de0f-4d00-b4ee-84e179453fc1?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "d6bd127a-3292-4771-bf88-c4018f758898" + ], + "x-ms-client-request-id": [ + "0358961b-b7b9-44c6-bf04-ec1dc3248c83", + "0358961b-b7b9-44c6-bf04-ec1dc3248c83" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "274" + ], + "x-ms-correlation-request-id": [ + "d6bd127a-3292-4771-bf88-c4018f758898" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153512Z:d6bd127a-3292-4771-bf88-c4018f758898" + ], + "Date": [ + "Mon, 16 May 2022 15:35:12 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/4158a3af-de0f-4d00-b4ee-84e179453fc1?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzLzQxNThhM2FmLWRlMGYtNGQwMC1iNGVlLTg0ZTE3OTQ1M2ZjMT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0358961b-b7b9-44c6-bf04-ec1dc3248c83" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/4158a3af-de0f-4d00-b4ee-84e179453fc1?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "da743f4c-fa49-4dc2-b825-8f6dea6f7bbf" + ], + "x-ms-client-request-id": [ + "0358961b-b7b9-44c6-bf04-ec1dc3248c83", + "0358961b-b7b9-44c6-bf04-ec1dc3248c83" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "273" + ], + "x-ms-correlation-request-id": [ + "da743f4c-fa49-4dc2-b825-8f6dea6f7bbf" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153513Z:da743f4c-fa49-4dc2-b825-8f6dea6f7bbf" + ], + "Date": [ + "Mon, 16 May 2022 15:35:12 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/4158a3af-de0f-4d00-b4ee-84e179453fc1?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzLzQxNThhM2FmLWRlMGYtNGQwMC1iNGVlLTg0ZTE3OTQ1M2ZjMT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0358961b-b7b9-44c6-bf04-ec1dc3248c83" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/4158a3af-de0f-4d00-b4ee-84e179453fc1?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "bc24d4f3-826c-44e2-9515-1389e06b815d" + ], + "x-ms-client-request-id": [ + "0358961b-b7b9-44c6-bf04-ec1dc3248c83", + "0358961b-b7b9-44c6-bf04-ec1dc3248c83" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "272" + ], + "x-ms-correlation-request-id": [ + "bc24d4f3-826c-44e2-9515-1389e06b815d" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153513Z:bc24d4f3-826c-44e2-9515-1389e06b815d" + ], + "Date": [ + "Mon, 16 May 2022 15:35:13 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/4158a3af-de0f-4d00-b4ee-84e179453fc1?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzLzQxNThhM2FmLWRlMGYtNGQwMC1iNGVlLTg0ZTE3OTQ1M2ZjMT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0358961b-b7b9-44c6-bf04-ec1dc3248c83" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/4158a3af-de0f-4d00-b4ee-84e179453fc1?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "67a35ddf-c85f-4d73-a32a-5b7e36a18e83" + ], + "x-ms-client-request-id": [ + "0358961b-b7b9-44c6-bf04-ec1dc3248c83", + "0358961b-b7b9-44c6-bf04-ec1dc3248c83" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "271" + ], + "x-ms-correlation-request-id": [ + "67a35ddf-c85f-4d73-a32a-5b7e36a18e83" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153514Z:67a35ddf-c85f-4d73-a32a-5b7e36a18e83" + ], + "Date": [ + "Mon, 16 May 2022 15:35:13 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/4158a3af-de0f-4d00-b4ee-84e179453fc1?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzLzQxNThhM2FmLWRlMGYtNGQwMC1iNGVlLTg0ZTE3OTQ1M2ZjMT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0358961b-b7b9-44c6-bf04-ec1dc3248c83" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/4158a3af-de0f-4d00-b4ee-84e179453fc1?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "2d69105d-d963-4d77-baa7-f3e4d4365b04" + ], + "x-ms-client-request-id": [ + "0358961b-b7b9-44c6-bf04-ec1dc3248c83", + "0358961b-b7b9-44c6-bf04-ec1dc3248c83" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "270" + ], + "x-ms-correlation-request-id": [ + "2d69105d-d963-4d77-baa7-f3e4d4365b04" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153514Z:2d69105d-d963-4d77-baa7-f3e4d4365b04" + ], + "Date": [ + "Mon, 16 May 2022 15:35:14 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/4158a3af-de0f-4d00-b4ee-84e179453fc1?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzLzQxNThhM2FmLWRlMGYtNGQwMC1iNGVlLTg0ZTE3OTQ1M2ZjMT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0358961b-b7b9-44c6-bf04-ec1dc3248c83" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/4158a3af-de0f-4d00-b4ee-84e179453fc1?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "136410b1-3122-4591-ad2a-cdfbcf7fc062" + ], + "x-ms-client-request-id": [ + "0358961b-b7b9-44c6-bf04-ec1dc3248c83", + "0358961b-b7b9-44c6-bf04-ec1dc3248c83" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "269" + ], + "x-ms-correlation-request-id": [ + "136410b1-3122-4591-ad2a-cdfbcf7fc062" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153515Z:136410b1-3122-4591-ad2a-cdfbcf7fc062" + ], + "Date": [ + "Mon, 16 May 2022 15:35:15 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/4158a3af-de0f-4d00-b4ee-84e179453fc1?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzLzQxNThhM2FmLWRlMGYtNGQwMC1iNGVlLTg0ZTE3OTQ1M2ZjMT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0358961b-b7b9-44c6-bf04-ec1dc3248c83" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/4158a3af-de0f-4d00-b4ee-84e179453fc1?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "c6fdfe5e-bc78-4392-899d-91d2d5a53abe" + ], + "x-ms-client-request-id": [ + "0358961b-b7b9-44c6-bf04-ec1dc3248c83", + "0358961b-b7b9-44c6-bf04-ec1dc3248c83" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "268" + ], + "x-ms-correlation-request-id": [ + "c6fdfe5e-bc78-4392-899d-91d2d5a53abe" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153516Z:c6fdfe5e-bc78-4392-899d-91d2d5a53abe" + ], + "Date": [ + "Mon, 16 May 2022 15:35:16 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/4158a3af-de0f-4d00-b4ee-84e179453fc1?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzLzQxNThhM2FmLWRlMGYtNGQwMC1iNGVlLTg0ZTE3OTQ1M2ZjMT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0358961b-b7b9-44c6-bf04-ec1dc3248c83" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/4158a3af-de0f-4d00-b4ee-84e179453fc1?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "d1bc6369-97c9-4aff-af1e-15c9754f6bc1" + ], + "x-ms-client-request-id": [ + "0358961b-b7b9-44c6-bf04-ec1dc3248c83", + "0358961b-b7b9-44c6-bf04-ec1dc3248c83" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "267" + ], + "x-ms-correlation-request-id": [ + "d1bc6369-97c9-4aff-af1e-15c9754f6bc1" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153516Z:d1bc6369-97c9-4aff-af1e-15c9754f6bc1" + ], + "Date": [ + "Mon, 16 May 2022 15:35:16 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/4158a3af-de0f-4d00-b4ee-84e179453fc1?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzLzQxNThhM2FmLWRlMGYtNGQwMC1iNGVlLTg0ZTE3OTQ1M2ZjMT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0358961b-b7b9-44c6-bf04-ec1dc3248c83" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/4158a3af-de0f-4d00-b4ee-84e179453fc1?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "2fe0d047-9475-4f13-9486-04016eb68969" + ], + "x-ms-client-request-id": [ + "0358961b-b7b9-44c6-bf04-ec1dc3248c83", + "0358961b-b7b9-44c6-bf04-ec1dc3248c83" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "266" + ], + "x-ms-correlation-request-id": [ + "2fe0d047-9475-4f13-9486-04016eb68969" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153517Z:2fe0d047-9475-4f13-9486-04016eb68969" + ], + "Date": [ + "Mon, 16 May 2022 15:35:17 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/4158a3af-de0f-4d00-b4ee-84e179453fc1?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzLzQxNThhM2FmLWRlMGYtNGQwMC1iNGVlLTg0ZTE3OTQ1M2ZjMT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0358961b-b7b9-44c6-bf04-ec1dc3248c83" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/4158a3af-de0f-4d00-b4ee-84e179453fc1?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "195fcce6-dfe2-4747-9b49-0f2008dcb9ec" + ], + "x-ms-client-request-id": [ + "0358961b-b7b9-44c6-bf04-ec1dc3248c83", + "0358961b-b7b9-44c6-bf04-ec1dc3248c83" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "265" + ], + "x-ms-correlation-request-id": [ + "195fcce6-dfe2-4747-9b49-0f2008dcb9ec" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153517Z:195fcce6-dfe2-4747-9b49-0f2008dcb9ec" + ], + "Date": [ + "Mon, 16 May 2022 15:35:17 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/4158a3af-de0f-4d00-b4ee-84e179453fc1?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzLzQxNThhM2FmLWRlMGYtNGQwMC1iNGVlLTg0ZTE3OTQ1M2ZjMT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0358961b-b7b9-44c6-bf04-ec1dc3248c83" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/4158a3af-de0f-4d00-b4ee-84e179453fc1?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "d2b8bee4-bfe1-4128-82c4-56f127b20975" + ], + "x-ms-client-request-id": [ + "0358961b-b7b9-44c6-bf04-ec1dc3248c83", + "0358961b-b7b9-44c6-bf04-ec1dc3248c83" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "264" + ], + "x-ms-correlation-request-id": [ + "d2b8bee4-bfe1-4128-82c4-56f127b20975" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153518Z:d2b8bee4-bfe1-4128-82c4-56f127b20975" + ], + "Date": [ + "Mon, 16 May 2022 15:35:18 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/4158a3af-de0f-4d00-b4ee-84e179453fc1?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzLzQxNThhM2FmLWRlMGYtNGQwMC1iNGVlLTg0ZTE3OTQ1M2ZjMT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0358961b-b7b9-44c6-bf04-ec1dc3248c83" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/4158a3af-de0f-4d00-b4ee-84e179453fc1?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "d12925b3-b8d0-44e3-896d-6f7dbc8c5a90" + ], + "x-ms-client-request-id": [ + "0358961b-b7b9-44c6-bf04-ec1dc3248c83", + "0358961b-b7b9-44c6-bf04-ec1dc3248c83" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "263" + ], + "x-ms-correlation-request-id": [ + "d12925b3-b8d0-44e3-896d-6f7dbc8c5a90" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153519Z:d12925b3-b8d0-44e3-896d-6f7dbc8c5a90" + ], + "Date": [ + "Mon, 16 May 2022 15:35:18 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/4158a3af-de0f-4d00-b4ee-84e179453fc1?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzLzQxNThhM2FmLWRlMGYtNGQwMC1iNGVlLTg0ZTE3OTQ1M2ZjMT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0358961b-b7b9-44c6-bf04-ec1dc3248c83" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/4158a3af-de0f-4d00-b4ee-84e179453fc1?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "70fee3af-71d0-4ae3-8e57-4f1022183627" + ], + "x-ms-client-request-id": [ + "0358961b-b7b9-44c6-bf04-ec1dc3248c83", + "0358961b-b7b9-44c6-bf04-ec1dc3248c83" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "262" + ], + "x-ms-correlation-request-id": [ + "70fee3af-71d0-4ae3-8e57-4f1022183627" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153519Z:70fee3af-71d0-4ae3-8e57-4f1022183627" + ], + "Date": [ + "Mon, 16 May 2022 15:35:19 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/4158a3af-de0f-4d00-b4ee-84e179453fc1?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzLzQxNThhM2FmLWRlMGYtNGQwMC1iNGVlLTg0ZTE3OTQ1M2ZjMT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0358961b-b7b9-44c6-bf04-ec1dc3248c83" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/4158a3af-de0f-4d00-b4ee-84e179453fc1?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "6cef2670-e47f-4724-8bca-cd29e928a76c" + ], + "x-ms-client-request-id": [ + "0358961b-b7b9-44c6-bf04-ec1dc3248c83", + "0358961b-b7b9-44c6-bf04-ec1dc3248c83" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "261" + ], + "x-ms-correlation-request-id": [ + "6cef2670-e47f-4724-8bca-cd29e928a76c" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153519Z:6cef2670-e47f-4724-8bca-cd29e928a76c" + ], + "Date": [ + "Mon, 16 May 2022 15:35:19 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/4158a3af-de0f-4d00-b4ee-84e179453fc1?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzLzQxNThhM2FmLWRlMGYtNGQwMC1iNGVlLTg0ZTE3OTQ1M2ZjMT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0358961b-b7b9-44c6-bf04-ec1dc3248c83" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/4158a3af-de0f-4d00-b4ee-84e179453fc1?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "5a6f22b1-ee4e-42f8-bba7-e9e1455842a3" + ], + "x-ms-client-request-id": [ + "0358961b-b7b9-44c6-bf04-ec1dc3248c83", + "0358961b-b7b9-44c6-bf04-ec1dc3248c83" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "260" + ], + "x-ms-correlation-request-id": [ + "5a6f22b1-ee4e-42f8-bba7-e9e1455842a3" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153520Z:5a6f22b1-ee4e-42f8-bba7-e9e1455842a3" + ], + "Date": [ + "Mon, 16 May 2022 15:35:20 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/4158a3af-de0f-4d00-b4ee-84e179453fc1?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzLzQxNThhM2FmLWRlMGYtNGQwMC1iNGVlLTg0ZTE3OTQ1M2ZjMT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0358961b-b7b9-44c6-bf04-ec1dc3248c83" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/4158a3af-de0f-4d00-b4ee-84e179453fc1?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "ee778846-d8f3-4f66-8293-8c8367f57778" + ], + "x-ms-client-request-id": [ + "0358961b-b7b9-44c6-bf04-ec1dc3248c83", + "0358961b-b7b9-44c6-bf04-ec1dc3248c83" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "259" + ], + "x-ms-correlation-request-id": [ + "ee778846-d8f3-4f66-8293-8c8367f57778" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153520Z:ee778846-d8f3-4f66-8293-8c8367f57778" + ], + "Date": [ + "Mon, 16 May 2022 15:35:20 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/4158a3af-de0f-4d00-b4ee-84e179453fc1?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzLzQxNThhM2FmLWRlMGYtNGQwMC1iNGVlLTg0ZTE3OTQ1M2ZjMT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0358961b-b7b9-44c6-bf04-ec1dc3248c83" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/4158a3af-de0f-4d00-b4ee-84e179453fc1?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "157357fe-1342-4bf8-b8f0-027879a0e659" + ], + "x-ms-client-request-id": [ + "0358961b-b7b9-44c6-bf04-ec1dc3248c83", + "0358961b-b7b9-44c6-bf04-ec1dc3248c83" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "258" + ], + "x-ms-correlation-request-id": [ + "157357fe-1342-4bf8-b8f0-027879a0e659" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153521Z:157357fe-1342-4bf8-b8f0-027879a0e659" + ], + "Date": [ + "Mon, 16 May 2022 15:35:21 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/4158a3af-de0f-4d00-b4ee-84e179453fc1?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzLzQxNThhM2FmLWRlMGYtNGQwMC1iNGVlLTg0ZTE3OTQ1M2ZjMT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0358961b-b7b9-44c6-bf04-ec1dc3248c83" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/4158a3af-de0f-4d00-b4ee-84e179453fc1?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "33d54b44-2010-482b-b0d6-82f2774338f8" + ], + "x-ms-client-request-id": [ + "0358961b-b7b9-44c6-bf04-ec1dc3248c83", + "0358961b-b7b9-44c6-bf04-ec1dc3248c83" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "257" + ], + "x-ms-correlation-request-id": [ + "33d54b44-2010-482b-b0d6-82f2774338f8" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153521Z:33d54b44-2010-482b-b0d6-82f2774338f8" + ], + "Date": [ + "Mon, 16 May 2022 15:35:21 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/4158a3af-de0f-4d00-b4ee-84e179453fc1?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzLzQxNThhM2FmLWRlMGYtNGQwMC1iNGVlLTg0ZTE3OTQ1M2ZjMT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0358961b-b7b9-44c6-bf04-ec1dc3248c83" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/4158a3af-de0f-4d00-b4ee-84e179453fc1?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "a46d68c1-af88-49bd-b241-23fd69ff92f9" + ], + "x-ms-client-request-id": [ + "0358961b-b7b9-44c6-bf04-ec1dc3248c83", + "0358961b-b7b9-44c6-bf04-ec1dc3248c83" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "256" + ], + "x-ms-correlation-request-id": [ + "a46d68c1-af88-49bd-b241-23fd69ff92f9" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153522Z:a46d68c1-af88-49bd-b241-23fd69ff92f9" + ], + "Date": [ + "Mon, 16 May 2022 15:35:22 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/4158a3af-de0f-4d00-b4ee-84e179453fc1?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzLzQxNThhM2FmLWRlMGYtNGQwMC1iNGVlLTg0ZTE3OTQ1M2ZjMT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0358961b-b7b9-44c6-bf04-ec1dc3248c83" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/4158a3af-de0f-4d00-b4ee-84e179453fc1?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "783b1a4b-8222-435f-bc0e-5466afd9d04e" + ], + "x-ms-client-request-id": [ + "0358961b-b7b9-44c6-bf04-ec1dc3248c83", + "0358961b-b7b9-44c6-bf04-ec1dc3248c83" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "255" + ], + "x-ms-correlation-request-id": [ + "783b1a4b-8222-435f-bc0e-5466afd9d04e" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153522Z:783b1a4b-8222-435f-bc0e-5466afd9d04e" + ], + "Date": [ + "Mon, 16 May 2022 15:35:22 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/4158a3af-de0f-4d00-b4ee-84e179453fc1?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzLzQxNThhM2FmLWRlMGYtNGQwMC1iNGVlLTg0ZTE3OTQ1M2ZjMT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0358961b-b7b9-44c6-bf04-ec1dc3248c83" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/4158a3af-de0f-4d00-b4ee-84e179453fc1?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "67f37131-6e7c-4fb0-a585-f6e65b258a35" + ], + "x-ms-client-request-id": [ + "0358961b-b7b9-44c6-bf04-ec1dc3248c83", + "0358961b-b7b9-44c6-bf04-ec1dc3248c83" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "254" + ], + "x-ms-correlation-request-id": [ + "67f37131-6e7c-4fb0-a585-f6e65b258a35" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T153523Z:67f37131-6e7c-4fb0-a585-f6e65b258a35" + ], + "Date": [ + "Mon, 16 May 2022 15:35:23 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/4158a3af-de0f-4d00-b4ee-84e179453fc1?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzLzQxNThhM2FmLWRlMGYtNGQwMC1iNGVlLTg0ZTE3OTQ1M2ZjMT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0358961b-b7b9-44c6-bf04-ec1dc3248c83" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/4158a3af-de0f-4d00-b4ee-84e179453fc1?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "652c50d5-3be0-4998-a48f-278a051ba77b" + "e6c2fb05-4ed5-4432-9dca-9fa1f80965ef" ], "x-ms-client-request-id": [ - "2696a023-f127-456d-982a-148f3e1382cf", - "2696a023-f127-456d-982a-148f3e1382cf" + "0358961b-b7b9-44c6-bf04-ec1dc3248c83", + "0358961b-b7b9-44c6-bf04-ec1dc3248c83" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Server": [ - "Microsoft-IIS/10.0" - ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "297" + "253" ], "x-ms-correlation-request-id": [ - "652c50d5-3be0-4998-a48f-278a051ba77b" + "e6c2fb05-4ed5-4432-9dca-9fa1f80965ef" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T080439Z:652c50d5-3be0-4998-a48f-278a051ba77b" + "JIOINDIAWEST:20220516T153524Z:e6c2fb05-4ed5-4432-9dca-9fa1f80965ef" ], "Date": [ - "Sat, 26 Mar 2022 08:04:38 GMT" - ], - "Content-Length": [ - "1354" - ], - "Content-Type": [ - "application/json" + "Mon, 16 May 2022 15:35:23 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;storage;pstestrg8895;pstestsa8895/protectedItems/AzureFileShare;698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959\",\r\n \"name\": \"AzureFileShare;698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems\",\r\n \"properties\": {\r\n \"kpisHealths\": {},\r\n \"friendlyName\": \"fs1\",\r\n \"protectionStatus\": \"Healthy\",\r\n \"protectionState\": \"IRPending\",\r\n \"lastBackupStatus\": \"IRPending\",\r\n \"extendedInfo\": {\r\n \"recoveryPointCount\": 0,\r\n \"policyState\": \"Consistent\",\r\n \"resourceState\": \"Active\",\r\n \"resourceStateSyncTime\": \"2022-03-26T08:04:30.4044695Z\"\r\n },\r\n \"protectedItemType\": \"AzureFileShareProtectedItem\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"workloadType\": \"AzureFileShare\",\r\n \"containerName\": \"StorageContainer;storage;pstestrg8895;pstestsa8895\",\r\n \"sourceResourceId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.storage/storageAccounts/pstestsa8895\",\r\n \"policyId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupPolicies/afspolicy1\",\r\n \"isArchiveEnabled\": false\r\n }\r\n}", - "StatusCode": 200 + "ResponseBody": "", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3Bstorage%3Bpstestrg8895%3Bpstestsa8895/protectedItems/AzureFileShare%3B698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959?$filter=expand%20eq%20'extendedinfo'&api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCc3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9wcm90ZWN0ZWRJdGVtcy9BenVyZUZpbGVTaGFyZSUzQjY5OGRmNTk1OTQ4ZTIzNTVmMmJiNzQ0YTQxY2YyNDVkNGJhMTI1NWQ5Njk5Y2MzYzJhZDFmNTA0NWUxNzc5NTk/JGZpbHRlcj1leHBhbmQlMjBlcSUyMCdleHRlbmRlZGluZm8nJmFwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/4158a3af-de0f-4d00-b4ee-84e179453fc1?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzLzQxNThhM2FmLWRlMGYtNGQwMC1iNGVlLTg0ZTE3OTQ1M2ZjMT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "98e888af-cf9c-4d6d-8667-5f1d083c36ba" + "0358961b-b7b9-44c6-bf04-ec1dc3248c83" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -2892,67 +16848,67 @@ "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/4158a3af-de0f-4d00-b4ee-84e179453fc1?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "230f365a-d404-42a5-83dd-a1a2c326c93f" + "e26e1805-4622-49b6-bedd-adf7e9cc7fad" ], "x-ms-client-request-id": [ - "98e888af-cf9c-4d6d-8667-5f1d083c36ba", - "98e888af-cf9c-4d6d-8667-5f1d083c36ba" + "0358961b-b7b9-44c6-bf04-ec1dc3248c83", + "0358961b-b7b9-44c6-bf04-ec1dc3248c83" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Server": [ - "Microsoft-IIS/10.0" - ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "296" + "252" ], "x-ms-correlation-request-id": [ - "230f365a-d404-42a5-83dd-a1a2c326c93f" + "e26e1805-4622-49b6-bedd-adf7e9cc7fad" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T080440Z:230f365a-d404-42a5-83dd-a1a2c326c93f" + "JIOINDIAWEST:20220516T153524Z:e26e1805-4622-49b6-bedd-adf7e9cc7fad" ], "Date": [ - "Sat, 26 Mar 2022 08:04:39 GMT" - ], - "Content-Length": [ - "1354" - ], - "Content-Type": [ - "application/json" + "Mon, 16 May 2022 15:35:24 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;storage;pstestrg8895;pstestsa8895/protectedItems/AzureFileShare;698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959\",\r\n \"name\": \"AzureFileShare;698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems\",\r\n \"properties\": {\r\n \"kpisHealths\": {},\r\n \"friendlyName\": \"fs1\",\r\n \"protectionStatus\": \"Healthy\",\r\n \"protectionState\": \"IRPending\",\r\n \"lastBackupStatus\": \"IRPending\",\r\n \"extendedInfo\": {\r\n \"recoveryPointCount\": 0,\r\n \"policyState\": \"Consistent\",\r\n \"resourceState\": \"Active\",\r\n \"resourceStateSyncTime\": \"2022-03-26T08:04:30.4044695Z\"\r\n },\r\n \"protectedItemType\": \"AzureFileShareProtectedItem\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"workloadType\": \"AzureFileShare\",\r\n \"containerName\": \"StorageContainer;storage;pstestrg8895;pstestsa8895\",\r\n \"sourceResourceId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.storage/storageAccounts/pstestsa8895\",\r\n \"policyId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupPolicies/afspolicy1\",\r\n \"isArchiveEnabled\": false\r\n }\r\n}", - "StatusCode": 200 + "ResponseBody": "", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupProtectedItems?$filter=backupManagementType%20eq%20'AzureStorage'%20and%20itemType%20eq%20'AzureFileShare'%20and%20policyName%20eq%20'afspolicy1'&api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwUHJvdGVjdGVkSXRlbXM/JGZpbHRlcj1iYWNrdXBNYW5hZ2VtZW50VHlwZSUyMGVxJTIwJ0F6dXJlU3RvcmFnZSclMjBhbmQlMjBpdGVtVHlwZSUyMGVxJTIwJ0F6dXJlRmlsZVNoYXJlJyUyMGFuZCUyMHBvbGljeU5hbWUlMjBlcSUyMCdhZnNwb2xpY3kxJyZhcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/4158a3af-de0f-4d00-b4ee-84e179453fc1?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzLzQxNThhM2FmLWRlMGYtNGQwMC1iNGVlLTg0ZTE3OTQ1M2ZjMT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4899b67d-bb65-45bf-afb0-6539a22f3b85" + "0358961b-b7b9-44c6-bf04-ec1dc3248c83" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -2962,67 +16918,67 @@ "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/4158a3af-de0f-4d00-b4ee-84e179453fc1?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "e903dd51-c844-4dae-9d07-605f0f9d56f4" + "6174806b-6f84-4942-a493-13c35b0a970b" ], "x-ms-client-request-id": [ - "4899b67d-bb65-45bf-afb0-6539a22f3b85", - "4899b67d-bb65-45bf-afb0-6539a22f3b85" + "0358961b-b7b9-44c6-bf04-ec1dc3248c83", + "0358961b-b7b9-44c6-bf04-ec1dc3248c83" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Server": [ - "Microsoft-IIS/10.0" - ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "292" + "251" ], "x-ms-correlation-request-id": [ - "e903dd51-c844-4dae-9d07-605f0f9d56f4" + "6174806b-6f84-4942-a493-13c35b0a970b" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T080439Z:e903dd51-c844-4dae-9d07-605f0f9d56f4" + "JIOINDIAWEST:20220516T153525Z:6174806b-6f84-4942-a493-13c35b0a970b" ], "Date": [ - "Sat, 26 Mar 2022 08:04:38 GMT" - ], - "Content-Length": [ - "1219" - ], - "Content-Type": [ - "application/json" + "Mon, 16 May 2022 15:35:24 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;storage;pstestrg8895;pstestsa8895/protectedItems/AzureFileShare;698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959\",\r\n \"name\": \"AzureFileShare;698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems\",\r\n \"properties\": {\r\n \"kpisHealths\": {},\r\n \"friendlyName\": \"fs1\",\r\n \"protectionStatus\": \"Healthy\",\r\n \"protectionState\": \"IRPending\",\r\n \"lastBackupStatus\": \"IRPending\",\r\n \"protectedItemType\": \"AzureFileShareProtectedItem\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"workloadType\": \"AzureFileShare\",\r\n \"containerName\": \"StorageContainer;storage;pstestrg8895;pstestsa8895\",\r\n \"sourceResourceId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.storage/storageAccounts/pstestsa8895\",\r\n \"policyId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupPolicies/afspolicy1\",\r\n \"isArchiveEnabled\": false\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 + "ResponseBody": "", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3Bstorage%3Bpstestrg8895%3Bpstestsa8895/protectedItems/AzureFileShare%3B698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959/recoveryPoints?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCc3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9wcm90ZWN0ZWRJdGVtcy9BenVyZUZpbGVTaGFyZSUzQjY5OGRmNTk1OTQ4ZTIzNTVmMmJiNzQ0YTQxY2YyNDVkNGJhMTI1NWQ5Njk5Y2MzYzJhZDFmNTA0NWUxNzc5NTkvcmVjb3ZlcnlQb2ludHM/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/4158a3af-de0f-4d00-b4ee-84e179453fc1?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzLzQxNThhM2FmLWRlMGYtNGQwMC1iNGVlLTg0ZTE3OTQ1M2ZjMT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "570e26d0-e023-409c-b0c7-9cae97810c47" + "0358961b-b7b9-44c6-bf04-ec1dc3248c83" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -3032,67 +16988,67 @@ "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/4158a3af-de0f-4d00-b4ee-84e179453fc1?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "27ac3af5-650b-4528-8e5a-ee24e8db1b4e" + "22ab1943-e47a-45e5-b81f-d612e9e6c964" ], "x-ms-client-request-id": [ - "570e26d0-e023-409c-b0c7-9cae97810c47", - "570e26d0-e023-409c-b0c7-9cae97810c47" + "0358961b-b7b9-44c6-bf04-ec1dc3248c83", + "0358961b-b7b9-44c6-bf04-ec1dc3248c83" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Server": [ - "Microsoft-IIS/10.0" - ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "299" + "250" ], "x-ms-correlation-request-id": [ - "27ac3af5-650b-4528-8e5a-ee24e8db1b4e" + "22ab1943-e47a-45e5-b81f-d612e9e6c964" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T080441Z:27ac3af5-650b-4528-8e5a-ee24e8db1b4e" + "JIOINDIAWEST:20220516T153525Z:22ab1943-e47a-45e5-b81f-d612e9e6c964" ], "Date": [ - "Sat, 26 Mar 2022 08:04:40 GMT" - ], - "Content-Length": [ - "12" - ], - "Content-Type": [ - "application/json" + "Mon, 16 May 2022 15:35:25 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, - "ResponseBody": "{\r\n \"value\": []\r\n}", - "StatusCode": 200 + "ResponseBody": "", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3Bstorage%3Bpstestrg8895%3Bpstestsa8895/protectedItems/AzureFileShare%3B698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCc3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9wcm90ZWN0ZWRJdGVtcy9BenVyZUZpbGVTaGFyZSUzQjY5OGRmNTk1OTQ4ZTIzNTVmMmJiNzQ0YTQxY2YyNDVkNGJhMTI1NWQ5Njk5Y2MzYzJhZDFmNTA0NWUxNzc5NTk/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", - "RequestMethod": "DELETE", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/4158a3af-de0f-4d00-b4ee-84e179453fc1?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzLzQxNThhM2FmLWRlMGYtNGQwMC1iNGVlLTg0ZTE3OTQ1M2ZjMT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "570e26d0-e023-409c-b0c7-9cae97810c47" + "0358961b-b7b9-44c6-bf04-ec1dc3248c83" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -3103,23 +17059,20 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperationResults/ef02af49-fe28-41ca-bc28-b7fca9dd5279?api-version=2021-12-01" + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/4158a3af-de0f-4d00-b4ee-84e179453fc1?api-version=2022-02-01" ], "Retry-After": [ "60" ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/ef02af49-fe28-41ca-bc28-b7fca9dd5279?api-version=2021-12-01" - ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "e7de1fcf-1e56-4e6e-b961-b9f0d2c4ee0e" + "3609046c-ac33-4a9d-bb0c-0373de01d52a" ], "x-ms-client-request-id": [ - "570e26d0-e023-409c-b0c7-9cae97810c47", - "570e26d0-e023-409c-b0c7-9cae97810c47" + "0358961b-b7b9-44c6-bf04-ec1dc3248c83", + "0358961b-b7b9-44c6-bf04-ec1dc3248c83" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3127,17 +17080,17 @@ "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ - "14999" + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "249" ], "x-ms-correlation-request-id": [ - "e7de1fcf-1e56-4e6e-b961-b9f0d2c4ee0e" + "3609046c-ac33-4a9d-bb0c-0373de01d52a" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T080442Z:e7de1fcf-1e56-4e6e-b961-b9f0d2c4ee0e" + "JIOINDIAWEST:20220516T153526Z:3609046c-ac33-4a9d-bb0c-0373de01d52a" ], "Date": [ - "Sat, 26 Mar 2022 08:04:41 GMT" + "Mon, 16 May 2022 15:35:26 GMT" ], "Expires": [ "-1" @@ -3150,22 +17103,22 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/ef02af49-fe28-41ca-bc28-b7fca9dd5279?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9lZjAyYWY0OS1mZTI4LTQxY2EtYmMyOC1iN2ZjYTlkZDUyNzk/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/4158a3af-de0f-4d00-b4ee-84e179453fc1?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzLzQxNThhM2FmLWRlMGYtNGQwMC1iNGVlLTg0ZTE3OTQ1M2ZjMT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "570e26d0-e023-409c-b0c7-9cae97810c47" + "0358961b-b7b9-44c6-bf04-ec1dc3248c83" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -3175,67 +17128,67 @@ "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/4158a3af-de0f-4d00-b4ee-84e179453fc1?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "0b734d00-0adc-41c2-b3e7-e8280e1fe485" + "89dc4ad8-fb7b-4418-ac0b-9082144d9014" ], "x-ms-client-request-id": [ - "570e26d0-e023-409c-b0c7-9cae97810c47", - "570e26d0-e023-409c-b0c7-9cae97810c47" + "0358961b-b7b9-44c6-bf04-ec1dc3248c83", + "0358961b-b7b9-44c6-bf04-ec1dc3248c83" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Server": [ - "Microsoft-IIS/10.0" - ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "289" + "248" ], "x-ms-correlation-request-id": [ - "0b734d00-0adc-41c2-b3e7-e8280e1fe485" + "89dc4ad8-fb7b-4418-ac0b-9082144d9014" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T080442Z:0b734d00-0adc-41c2-b3e7-e8280e1fe485" + "JIOINDIAWEST:20220516T153526Z:89dc4ad8-fb7b-4418-ac0b-9082144d9014" ], "Date": [ - "Sat, 26 Mar 2022 08:04:41 GMT" - ], - "Content-Length": [ - "188" - ], - "Content-Type": [ - "application/json" + "Mon, 16 May 2022 15:35:26 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, - "ResponseBody": "{\r\n \"id\": \"ef02af49-fe28-41ca-bc28-b7fca9dd5279\",\r\n \"name\": \"ef02af49-fe28-41ca-bc28-b7fca9dd5279\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-03-26T08:04:42.1085586Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", - "StatusCode": 200 + "ResponseBody": "", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/ef02af49-fe28-41ca-bc28-b7fca9dd5279?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9lZjAyYWY0OS1mZTI4LTQxY2EtYmMyOC1iN2ZjYTlkZDUyNzk/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/4158a3af-de0f-4d00-b4ee-84e179453fc1?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzLzQxNThhM2FmLWRlMGYtNGQwMC1iNGVlLTg0ZTE3OTQ1M2ZjMT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "570e26d0-e023-409c-b0c7-9cae97810c47" + "0358961b-b7b9-44c6-bf04-ec1dc3248c83" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -3245,67 +17198,67 @@ "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/4158a3af-de0f-4d00-b4ee-84e179453fc1?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "f3a5a429-174e-445d-9dc2-2c0906655c8d" + "69931fa0-111c-4dbf-9c83-e85828e9375a" ], "x-ms-client-request-id": [ - "570e26d0-e023-409c-b0c7-9cae97810c47", - "570e26d0-e023-409c-b0c7-9cae97810c47" + "0358961b-b7b9-44c6-bf04-ec1dc3248c83", + "0358961b-b7b9-44c6-bf04-ec1dc3248c83" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Server": [ - "Microsoft-IIS/10.0" - ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "288" + "247" ], "x-ms-correlation-request-id": [ - "f3a5a429-174e-445d-9dc2-2c0906655c8d" + "69931fa0-111c-4dbf-9c83-e85828e9375a" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T080448Z:f3a5a429-174e-445d-9dc2-2c0906655c8d" + "JIOINDIAWEST:20220516T153527Z:69931fa0-111c-4dbf-9c83-e85828e9375a" ], "Date": [ - "Sat, 26 Mar 2022 08:04:48 GMT" - ], - "Content-Length": [ - "188" - ], - "Content-Type": [ - "application/json" + "Mon, 16 May 2022 15:35:27 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, - "ResponseBody": "{\r\n \"id\": \"ef02af49-fe28-41ca-bc28-b7fca9dd5279\",\r\n \"name\": \"ef02af49-fe28-41ca-bc28-b7fca9dd5279\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-03-26T08:04:42.1085586Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", - "StatusCode": 200 + "ResponseBody": "", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/ef02af49-fe28-41ca-bc28-b7fca9dd5279?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9lZjAyYWY0OS1mZTI4LTQxY2EtYmMyOC1iN2ZjYTlkZDUyNzk/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/4158a3af-de0f-4d00-b4ee-84e179453fc1?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzLzQxNThhM2FmLWRlMGYtNGQwMC1iNGVlLTg0ZTE3OTQ1M2ZjMT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "570e26d0-e023-409c-b0c7-9cae97810c47" + "0358961b-b7b9-44c6-bf04-ec1dc3248c83" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -3315,67 +17268,67 @@ "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/4158a3af-de0f-4d00-b4ee-84e179453fc1?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "bf165168-1bcf-455e-847c-f732d3199864" + "488ffb79-f6c3-4408-85d5-7162173a8c1a" ], "x-ms-client-request-id": [ - "570e26d0-e023-409c-b0c7-9cae97810c47", - "570e26d0-e023-409c-b0c7-9cae97810c47" + "0358961b-b7b9-44c6-bf04-ec1dc3248c83", + "0358961b-b7b9-44c6-bf04-ec1dc3248c83" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Server": [ - "Microsoft-IIS/10.0" - ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "287" + "246" ], "x-ms-correlation-request-id": [ - "bf165168-1bcf-455e-847c-f732d3199864" + "488ffb79-f6c3-4408-85d5-7162173a8c1a" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T080453Z:bf165168-1bcf-455e-847c-f732d3199864" + "JIOINDIAWEST:20220516T153527Z:488ffb79-f6c3-4408-85d5-7162173a8c1a" ], "Date": [ - "Sat, 26 Mar 2022 08:04:53 GMT" - ], - "Content-Length": [ - "188" - ], - "Content-Type": [ - "application/json" + "Mon, 16 May 2022 15:35:27 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, - "ResponseBody": "{\r\n \"id\": \"ef02af49-fe28-41ca-bc28-b7fca9dd5279\",\r\n \"name\": \"ef02af49-fe28-41ca-bc28-b7fca9dd5279\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-03-26T08:04:42.1085586Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", - "StatusCode": 200 + "ResponseBody": "", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/ef02af49-fe28-41ca-bc28-b7fca9dd5279?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9lZjAyYWY0OS1mZTI4LTQxY2EtYmMyOC1iN2ZjYTlkZDUyNzk/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/4158a3af-de0f-4d00-b4ee-84e179453fc1?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzLzQxNThhM2FmLWRlMGYtNGQwMC1iNGVlLTg0ZTE3OTQ1M2ZjMT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "570e26d0-e023-409c-b0c7-9cae97810c47" + "0358961b-b7b9-44c6-bf04-ec1dc3248c83" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -3385,67 +17338,67 @@ "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/4158a3af-de0f-4d00-b4ee-84e179453fc1?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "da277b69-b2e6-4ee5-a226-06daf64eca32" + "edc1c65a-9692-4a0a-914a-703ddb45c2e8" ], "x-ms-client-request-id": [ - "570e26d0-e023-409c-b0c7-9cae97810c47", - "570e26d0-e023-409c-b0c7-9cae97810c47" + "0358961b-b7b9-44c6-bf04-ec1dc3248c83", + "0358961b-b7b9-44c6-bf04-ec1dc3248c83" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Server": [ - "Microsoft-IIS/10.0" - ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "286" + "245" ], "x-ms-correlation-request-id": [ - "da277b69-b2e6-4ee5-a226-06daf64eca32" + "edc1c65a-9692-4a0a-914a-703ddb45c2e8" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T080458Z:da277b69-b2e6-4ee5-a226-06daf64eca32" + "JIOINDIAWEST:20220516T153528Z:edc1c65a-9692-4a0a-914a-703ddb45c2e8" ], "Date": [ - "Sat, 26 Mar 2022 08:04:58 GMT" - ], - "Content-Length": [ - "188" - ], - "Content-Type": [ - "application/json" + "Mon, 16 May 2022 15:35:28 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, - "ResponseBody": "{\r\n \"id\": \"ef02af49-fe28-41ca-bc28-b7fca9dd5279\",\r\n \"name\": \"ef02af49-fe28-41ca-bc28-b7fca9dd5279\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-03-26T08:04:42.1085586Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", - "StatusCode": 200 + "ResponseBody": "", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/ef02af49-fe28-41ca-bc28-b7fca9dd5279?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9lZjAyYWY0OS1mZTI4LTQxY2EtYmMyOC1iN2ZjYTlkZDUyNzk/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/4158a3af-de0f-4d00-b4ee-84e179453fc1?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzLzQxNThhM2FmLWRlMGYtNGQwMC1iNGVlLTg0ZTE3OTQ1M2ZjMT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "570e26d0-e023-409c-b0c7-9cae97810c47" + "0358961b-b7b9-44c6-bf04-ec1dc3248c83" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -3455,67 +17408,67 @@ "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/4158a3af-de0f-4d00-b4ee-84e179453fc1?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "5b570c70-4bff-457c-b07c-c094551e49d9" + "ce447a12-38af-460b-8bb7-1c464f56cc33" ], "x-ms-client-request-id": [ - "570e26d0-e023-409c-b0c7-9cae97810c47", - "570e26d0-e023-409c-b0c7-9cae97810c47" + "0358961b-b7b9-44c6-bf04-ec1dc3248c83", + "0358961b-b7b9-44c6-bf04-ec1dc3248c83" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Server": [ - "Microsoft-IIS/10.0" - ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "285" + "244" ], "x-ms-correlation-request-id": [ - "5b570c70-4bff-457c-b07c-c094551e49d9" + "ce447a12-38af-460b-8bb7-1c464f56cc33" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T080504Z:5b570c70-4bff-457c-b07c-c094551e49d9" + "JIOINDIAWEST:20220516T153528Z:ce447a12-38af-460b-8bb7-1c464f56cc33" ], "Date": [ - "Sat, 26 Mar 2022 08:05:03 GMT" - ], - "Content-Length": [ - "304" - ], - "Content-Type": [ - "application/json" + "Mon, 16 May 2022 15:35:28 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, - "ResponseBody": "{\r\n \"id\": \"ef02af49-fe28-41ca-bc28-b7fca9dd5279\",\r\n \"name\": \"ef02af49-fe28-41ca-bc28-b7fca9dd5279\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-03-26T08:04:42.1085586Z\",\r\n \"endTime\": \"2022-03-26T08:04:42.1085586Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"f6e15415-5012-4619-9d73-9e933278db4d\"\r\n }\r\n}", - "StatusCode": 200 + "ResponseBody": "", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/ef02af49-fe28-41ca-bc28-b7fca9dd5279?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9lZjAyYWY0OS1mZTI4LTQxY2EtYmMyOC1iN2ZjYTlkZDUyNzk/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/4158a3af-de0f-4d00-b4ee-84e179453fc1?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzLzQxNThhM2FmLWRlMGYtNGQwMC1iNGVlLTg0ZTE3OTQ1M2ZjMT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "570e26d0-e023-409c-b0c7-9cae97810c47" + "0358961b-b7b9-44c6-bf04-ec1dc3248c83" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -3525,67 +17478,67 @@ "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/4158a3af-de0f-4d00-b4ee-84e179453fc1?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "1b19cd0e-0e13-40d3-a153-cafb15a44fb8" + "dba8d199-f4b7-49c8-a5ee-d3c26ab4941e" ], "x-ms-client-request-id": [ - "570e26d0-e023-409c-b0c7-9cae97810c47", - "570e26d0-e023-409c-b0c7-9cae97810c47" + "0358961b-b7b9-44c6-bf04-ec1dc3248c83", + "0358961b-b7b9-44c6-bf04-ec1dc3248c83" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Server": [ - "Microsoft-IIS/10.0" - ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "284" + "243" ], "x-ms-correlation-request-id": [ - "1b19cd0e-0e13-40d3-a153-cafb15a44fb8" + "dba8d199-f4b7-49c8-a5ee-d3c26ab4941e" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T080504Z:1b19cd0e-0e13-40d3-a153-cafb15a44fb8" + "JIOINDIAWEST:20220516T153529Z:dba8d199-f4b7-49c8-a5ee-d3c26ab4941e" ], "Date": [ - "Sat, 26 Mar 2022 08:05:04 GMT" - ], - "Content-Length": [ - "304" - ], - "Content-Type": [ - "application/json" + "Mon, 16 May 2022 15:35:29 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, - "ResponseBody": "{\r\n \"id\": \"ef02af49-fe28-41ca-bc28-b7fca9dd5279\",\r\n \"name\": \"ef02af49-fe28-41ca-bc28-b7fca9dd5279\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-03-26T08:04:42.1085586Z\",\r\n \"endTime\": \"2022-03-26T08:04:42.1085586Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"f6e15415-5012-4619-9d73-9e933278db4d\"\r\n }\r\n}", - "StatusCode": 200 + "ResponseBody": "", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/f6e15415-5012-4619-9d73-9e933278db4d?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9mNmUxNTQxNS01MDEyLTQ2MTktOWQ3My05ZTkzMzI3OGRiNGQ/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/4158a3af-de0f-4d00-b4ee-84e179453fc1?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzLzQxNThhM2FmLWRlMGYtNGQwMC1iNGVlLTg0ZTE3OTQ1M2ZjMT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "570e26d0-e023-409c-b0c7-9cae97810c47" + "0358961b-b7b9-44c6-bf04-ec1dc3248c83" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -3595,68 +17548,67 @@ "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-IIS/10.0" + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/4158a3af-de0f-4d00-b4ee-84e179453fc1?api-version=2022-02-01" + ], + "Retry-After": [ + "60" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "23096e5c-e9b3-4cef-bb8c-8157679d7cb9" + "bdda8d47-e567-4ef9-88af-522ca10779d4" ], "x-ms-client-request-id": [ - "570e26d0-e023-409c-b0c7-9cae97810c47", - "570e26d0-e023-409c-b0c7-9cae97810c47" - ], - "X-Powered-By": [ - "ASP.NET" + "0358961b-b7b9-44c6-bf04-ec1dc3248c83", + "0358961b-b7b9-44c6-bf04-ec1dc3248c83" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Powered-By": [ + "ASP.NET" + ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "298" + "242" ], "x-ms-correlation-request-id": [ - "23096e5c-e9b3-4cef-bb8c-8157679d7cb9" + "bdda8d47-e567-4ef9-88af-522ca10779d4" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T080505Z:23096e5c-e9b3-4cef-bb8c-8157679d7cb9" + "JIOINDIAWEST:20220516T153530Z:bdda8d47-e567-4ef9-88af-522ca10779d4" ], "Date": [ - "Sat, 26 Mar 2022 08:05:04 GMT" - ], - "Content-Length": [ - "820" - ], - "Content-Type": [ - "application/json" + "Mon, 16 May 2022 15:35:29 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/f6e15415-5012-4619-9d73-9e933278db4d\",\r\n \"name\": \"f6e15415-5012-4619-9d73-9e933278db4d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT21.553208S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"Storage\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"File Share Name\": \"fs1\",\r\n \"Storage Account Name\": \"pstestsa8895\"\r\n }\r\n },\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"DeleteBackupData\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-03-26T08:04:42.1085586Z\",\r\n \"endTime\": \"2022-03-26T08:05:03.6617666Z\",\r\n \"activityId\": \"570e26d0-e023-409c-b0c7-9cae97810c47\"\r\n }\r\n}", - "StatusCode": 200 + "ResponseBody": "", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NT9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", - "RequestMethod": "DELETE", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/4158a3af-de0f-4d00-b4ee-84e179453fc1?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzLzQxNThhM2FmLWRlMGYtNGQwMC1iNGVlLTg0ZTE3OTQ1M2ZjMT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d5c998cf-c423-4075-b42f-2f04aef98dd6" + "0358961b-b7b9-44c6-bf04-ec1dc3248c83" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -3667,23 +17619,20 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperationResults/a064950d-ddd6-465f-a2fc-ff4b2e401934?fabricName=Azure?api-version=2021-12-01" + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/4158a3af-de0f-4d00-b4ee-84e179453fc1?api-version=2022-02-01" ], "Retry-After": [ "60" ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationsStatus/a064950d-ddd6-465f-a2fc-ff4b2e401934?api-version=2019-05-13-preview" - ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "bb4f6b96-5087-4512-9b80-44e764befcd7" + "167af766-fd8a-4f89-ab5d-198156f934ed" ], "x-ms-client-request-id": [ - "d5c998cf-c423-4075-b42f-2f04aef98dd6", - "d5c998cf-c423-4075-b42f-2f04aef98dd6" + "0358961b-b7b9-44c6-bf04-ec1dc3248c83", + "0358961b-b7b9-44c6-bf04-ec1dc3248c83" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3691,17 +17640,17 @@ "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ - "14998" + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "241" ], "x-ms-correlation-request-id": [ - "bb4f6b96-5087-4512-9b80-44e764befcd7" + "167af766-fd8a-4f89-ab5d-198156f934ed" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T080505Z:bb4f6b96-5087-4512-9b80-44e764befcd7" + "JIOINDIAWEST:20220516T153530Z:167af766-fd8a-4f89-ab5d-198156f934ed" ], "Date": [ - "Sat, 26 Mar 2022 08:05:05 GMT" + "Mon, 16 May 2022 15:35:30 GMT" ], "Expires": [ "-1" @@ -3714,22 +17663,22 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/a064950d-ddd6-465f-a2fc-ff4b2e401934?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzL2EwNjQ5NTBkLWRkZDYtNDY1Zi1hMmZjLWZmNGIyZTQwMTkzND9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/4158a3af-de0f-4d00-b4ee-84e179453fc1?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzLzQxNThhM2FmLWRlMGYtNGQwMC1iNGVlLTg0ZTE3OTQ1M2ZjMT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d5c998cf-c423-4075-b42f-2f04aef98dd6" + "0358961b-b7b9-44c6-bf04-ec1dc3248c83" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -3740,7 +17689,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/a064950d-ddd6-465f-a2fc-ff4b2e401934?api-version=2021-12-01" + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/4158a3af-de0f-4d00-b4ee-84e179453fc1?api-version=2022-02-01" ], "Retry-After": [ "60" @@ -3749,11 +17698,11 @@ "nosniff" ], "x-ms-request-id": [ - "4f92ff91-0012-49ff-ae82-95e66edf697e" + "568376b6-cc6b-49ed-ad9b-0243d4d59698" ], "x-ms-client-request-id": [ - "d5c998cf-c423-4075-b42f-2f04aef98dd6", - "d5c998cf-c423-4075-b42f-2f04aef98dd6" + "0358961b-b7b9-44c6-bf04-ec1dc3248c83", + "0358961b-b7b9-44c6-bf04-ec1dc3248c83" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3762,16 +17711,16 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "299" + "240" ], "x-ms-correlation-request-id": [ - "4f92ff91-0012-49ff-ae82-95e66edf697e" + "568376b6-cc6b-49ed-ad9b-0243d4d59698" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T080506Z:4f92ff91-0012-49ff-ae82-95e66edf697e" + "JIOINDIAWEST:20220516T153531Z:568376b6-cc6b-49ed-ad9b-0243d4d59698" ], "Date": [ - "Sat, 26 Mar 2022 08:05:05 GMT" + "Mon, 16 May 2022 15:35:30 GMT" ], "Expires": [ "-1" @@ -3784,22 +17733,22 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/a064950d-ddd6-465f-a2fc-ff4b2e401934?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzL2EwNjQ5NTBkLWRkZDYtNDY1Zi1hMmZjLWZmNGIyZTQwMTkzND9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/4158a3af-de0f-4d00-b4ee-84e179453fc1?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzLzQxNThhM2FmLWRlMGYtNGQwMC1iNGVlLTg0ZTE3OTQ1M2ZjMT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d5c998cf-c423-4075-b42f-2f04aef98dd6" + "0358961b-b7b9-44c6-bf04-ec1dc3248c83" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -3810,7 +17759,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/a064950d-ddd6-465f-a2fc-ff4b2e401934?api-version=2021-12-01" + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/4158a3af-de0f-4d00-b4ee-84e179453fc1?api-version=2022-02-01" ], "Retry-After": [ "60" @@ -3819,11 +17768,11 @@ "nosniff" ], "x-ms-request-id": [ - "446e5fe9-85bc-46bb-b0d8-72c53b5d5e1d" + "3e5e29a2-38fb-413d-b26c-1eeb47211f58" ], "x-ms-client-request-id": [ - "d5c998cf-c423-4075-b42f-2f04aef98dd6", - "d5c998cf-c423-4075-b42f-2f04aef98dd6" + "0358961b-b7b9-44c6-bf04-ec1dc3248c83", + "0358961b-b7b9-44c6-bf04-ec1dc3248c83" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3832,16 +17781,16 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "298" + "239" ], "x-ms-correlation-request-id": [ - "446e5fe9-85bc-46bb-b0d8-72c53b5d5e1d" + "3e5e29a2-38fb-413d-b26c-1eeb47211f58" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T080511Z:446e5fe9-85bc-46bb-b0d8-72c53b5d5e1d" + "JIOINDIAWEST:20220516T153531Z:3e5e29a2-38fb-413d-b26c-1eeb47211f58" ], "Date": [ - "Sat, 26 Mar 2022 08:05:11 GMT" + "Mon, 16 May 2022 15:35:31 GMT" ], "Expires": [ "-1" @@ -3854,22 +17803,22 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/a064950d-ddd6-465f-a2fc-ff4b2e401934?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzL2EwNjQ5NTBkLWRkZDYtNDY1Zi1hMmZjLWZmNGIyZTQwMTkzND9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/4158a3af-de0f-4d00-b4ee-84e179453fc1?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzLzQxNThhM2FmLWRlMGYtNGQwMC1iNGVlLTg0ZTE3OTQ1M2ZjMT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d5c998cf-c423-4075-b42f-2f04aef98dd6" + "0358961b-b7b9-44c6-bf04-ec1dc3248c83" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -3880,7 +17829,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/a064950d-ddd6-465f-a2fc-ff4b2e401934?api-version=2021-12-01" + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/4158a3af-de0f-4d00-b4ee-84e179453fc1?api-version=2022-02-01" ], "Retry-After": [ "60" @@ -3889,11 +17838,11 @@ "nosniff" ], "x-ms-request-id": [ - "68a0aed9-e0b7-4747-b868-680626c0576a" + "e07612d0-5839-4ab5-b3ca-fb5edabe0794" ], "x-ms-client-request-id": [ - "d5c998cf-c423-4075-b42f-2f04aef98dd6", - "d5c998cf-c423-4075-b42f-2f04aef98dd6" + "0358961b-b7b9-44c6-bf04-ec1dc3248c83", + "0358961b-b7b9-44c6-bf04-ec1dc3248c83" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3902,16 +17851,16 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "297" + "238" ], "x-ms-correlation-request-id": [ - "68a0aed9-e0b7-4747-b868-680626c0576a" + "e07612d0-5839-4ab5-b3ca-fb5edabe0794" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T080517Z:68a0aed9-e0b7-4747-b868-680626c0576a" + "JIOINDIAWEST:20220516T153532Z:e07612d0-5839-4ab5-b3ca-fb5edabe0794" ], "Date": [ - "Sat, 26 Mar 2022 08:05:16 GMT" + "Mon, 16 May 2022 15:35:31 GMT" ], "Expires": [ "-1" @@ -3924,22 +17873,22 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/a064950d-ddd6-465f-a2fc-ff4b2e401934?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzL2EwNjQ5NTBkLWRkZDYtNDY1Zi1hMmZjLWZmNGIyZTQwMTkzND9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/4158a3af-de0f-4d00-b4ee-84e179453fc1?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzLzQxNThhM2FmLWRlMGYtNGQwMC1iNGVlLTg0ZTE3OTQ1M2ZjMT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d5c998cf-c423-4075-b42f-2f04aef98dd6" + "0358961b-b7b9-44c6-bf04-ec1dc3248c83" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -3950,7 +17899,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/a064950d-ddd6-465f-a2fc-ff4b2e401934?api-version=2021-12-01" + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/4158a3af-de0f-4d00-b4ee-84e179453fc1?api-version=2022-02-01" ], "Retry-After": [ "60" @@ -3959,11 +17908,11 @@ "nosniff" ], "x-ms-request-id": [ - "157149c9-d3ff-4c6c-b6bf-55b4fc750a7d" + "a741b314-19a9-4bb3-b5bc-381c52a08926" ], "x-ms-client-request-id": [ - "d5c998cf-c423-4075-b42f-2f04aef98dd6", - "d5c998cf-c423-4075-b42f-2f04aef98dd6" + "0358961b-b7b9-44c6-bf04-ec1dc3248c83", + "0358961b-b7b9-44c6-bf04-ec1dc3248c83" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3972,16 +17921,16 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "296" + "237" ], "x-ms-correlation-request-id": [ - "157149c9-d3ff-4c6c-b6bf-55b4fc750a7d" + "a741b314-19a9-4bb3-b5bc-381c52a08926" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T080522Z:157149c9-d3ff-4c6c-b6bf-55b4fc750a7d" + "JIOINDIAWEST:20220516T153532Z:a741b314-19a9-4bb3-b5bc-381c52a08926" ], "Date": [ - "Sat, 26 Mar 2022 08:05:21 GMT" + "Mon, 16 May 2022 15:35:32 GMT" ], "Expires": [ "-1" @@ -3994,22 +17943,22 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/a064950d-ddd6-465f-a2fc-ff4b2e401934?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzL2EwNjQ5NTBkLWRkZDYtNDY1Zi1hMmZjLWZmNGIyZTQwMTkzND9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/4158a3af-de0f-4d00-b4ee-84e179453fc1?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzLzQxNThhM2FmLWRlMGYtNGQwMC1iNGVlLTg0ZTE3OTQ1M2ZjMT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d5c998cf-c423-4075-b42f-2f04aef98dd6" + "0358961b-b7b9-44c6-bf04-ec1dc3248c83" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -4020,7 +17969,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/a064950d-ddd6-465f-a2fc-ff4b2e401934?api-version=2021-12-01" + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/4158a3af-de0f-4d00-b4ee-84e179453fc1?api-version=2022-02-01" ], "Retry-After": [ "60" @@ -4029,11 +17978,11 @@ "nosniff" ], "x-ms-request-id": [ - "490d5e3b-8e42-4fff-92c2-9b2c37ab4d08" + "5daebfb4-d231-4e7f-b73a-3067f223ecf3" ], "x-ms-client-request-id": [ - "d5c998cf-c423-4075-b42f-2f04aef98dd6", - "d5c998cf-c423-4075-b42f-2f04aef98dd6" + "0358961b-b7b9-44c6-bf04-ec1dc3248c83", + "0358961b-b7b9-44c6-bf04-ec1dc3248c83" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4042,16 +17991,16 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "295" + "236" ], "x-ms-correlation-request-id": [ - "490d5e3b-8e42-4fff-92c2-9b2c37ab4d08" + "5daebfb4-d231-4e7f-b73a-3067f223ecf3" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T080527Z:490d5e3b-8e42-4fff-92c2-9b2c37ab4d08" + "JIOINDIAWEST:20220516T153533Z:5daebfb4-d231-4e7f-b73a-3067f223ecf3" ], "Date": [ - "Sat, 26 Mar 2022 08:05:27 GMT" + "Mon, 16 May 2022 15:35:32 GMT" ], "Expires": [ "-1" @@ -4064,22 +18013,22 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/a064950d-ddd6-465f-a2fc-ff4b2e401934?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzL2EwNjQ5NTBkLWRkZDYtNDY1Zi1hMmZjLWZmNGIyZTQwMTkzND9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/4158a3af-de0f-4d00-b4ee-84e179453fc1?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzLzQxNThhM2FmLWRlMGYtNGQwMC1iNGVlLTg0ZTE3OTQ1M2ZjMT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d5c998cf-c423-4075-b42f-2f04aef98dd6" + "0358961b-b7b9-44c6-bf04-ec1dc3248c83" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -4093,11 +18042,11 @@ "nosniff" ], "x-ms-request-id": [ - "9fe5ed6b-1337-4c75-87d7-a202b61d1434" + "e269d48e-d4f3-4bc2-8832-ed143546191c" ], "x-ms-client-request-id": [ - "d5c998cf-c423-4075-b42f-2f04aef98dd6", - "d5c998cf-c423-4075-b42f-2f04aef98dd6" + "0358961b-b7b9-44c6-bf04-ec1dc3248c83", + "0358961b-b7b9-44c6-bf04-ec1dc3248c83" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4106,38 +18055,38 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "294" + "235" ], "x-ms-correlation-request-id": [ - "9fe5ed6b-1337-4c75-87d7-a202b61d1434" + "e269d48e-d4f3-4bc2-8832-ed143546191c" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T080533Z:9fe5ed6b-1337-4c75-87d7-a202b61d1434" + "JIOINDIAWEST:20220516T153533Z:e269d48e-d4f3-4bc2-8832-ed143546191c" ], "Date": [ - "Sat, 26 Mar 2022 08:05:33 GMT" + "Mon, 16 May 2022 15:35:33 GMT" ] }, "ResponseBody": "", "StatusCode": 204 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/a064950d-ddd6-465f-a2fc-ff4b2e401934?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzL2EwNjQ5NTBkLWRkZDYtNDY1Zi1hMmZjLWZmNGIyZTQwMTkzND9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/4158a3af-de0f-4d00-b4ee-84e179453fc1?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzLzQxNThhM2FmLWRlMGYtNGQwMC1iNGVlLTg0ZTE3OTQ1M2ZjMT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d5c998cf-c423-4075-b42f-2f04aef98dd6" + "0358961b-b7b9-44c6-bf04-ec1dc3248c83" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -4151,11 +18100,11 @@ "nosniff" ], "x-ms-request-id": [ - "1884988a-c3f1-4ca2-8b0b-f5c0bcf40491" + "5dcff777-ee93-46a0-b1a7-b07ca2bed379" ], "x-ms-client-request-id": [ - "d5c998cf-c423-4075-b42f-2f04aef98dd6", - "d5c998cf-c423-4075-b42f-2f04aef98dd6" + "0358961b-b7b9-44c6-bf04-ec1dc3248c83", + "0358961b-b7b9-44c6-bf04-ec1dc3248c83" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4164,16 +18113,16 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "293" + "234" ], "x-ms-correlation-request-id": [ - "1884988a-c3f1-4ca2-8b0b-f5c0bcf40491" + "5dcff777-ee93-46a0-b1a7-b07ca2bed379" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T080533Z:1884988a-c3f1-4ca2-8b0b-f5c0bcf40491" + "JIOINDIAWEST:20220516T153534Z:5dcff777-ee93-46a0-b1a7-b07ca2bed379" ], "Date": [ - "Sat, 26 Mar 2022 08:05:33 GMT" + "Mon, 16 May 2022 15:35:33 GMT" ] }, "ResponseBody": "", diff --git a/src/RecoveryServices/RecoveryServices.Backup.Test/SessionRecords/Microsoft.Azure.Commands.RecoveryServices.Backup.Test.ScenarioTests.ItemTests/TestAzureFSProtection.json b/src/RecoveryServices/RecoveryServices.Backup.Test/SessionRecords/Microsoft.Azure.Commands.RecoveryServices.Backup.Test.ScenarioTests.ItemTests/TestAzureFSProtection.json index 83678015dc69..4cf4f3fc7f34 100644 --- a/src/RecoveryServices/RecoveryServices.Backup.Test/SessionRecords/Microsoft.Azure.Commands.RecoveryServices.Backup.Test.ScenarioTests.ItemTests/TestAzureFSProtection.json +++ b/src/RecoveryServices/RecoveryServices.Backup.Test/SessionRecords/Microsoft.Azure.Commands.RecoveryServices.Backup.Test.ScenarioTests.ItemTests/TestAzureFSProtection.json @@ -7,13 +7,13 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1d47e883-31a7-4d22-8503-22d7fa336cfc" + "131514b4-0965-4212-8b74-c6a928caaef5" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesClient/4.3.2.0" @@ -30,10 +30,10 @@ "nosniff" ], "x-ms-request-id": [ - "6ef6c4cb-c278-4612-9993-7a03908f5008" + "a8a5a425-4f2d-46b9-a900-351877e51ad5" ], "x-ms-client-request-id": [ - "1d47e883-31a7-4d22-8503-22d7fa336cfc" + "131514b4-0965-4212-8b74-c6a928caaef5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -45,16 +45,16 @@ "11999" ], "x-ms-correlation-request-id": [ - "6ef6c4cb-c278-4612-9993-7a03908f5008" + "a8a5a425-4f2d-46b9-a900-351877e51ad5" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T095108Z:6ef6c4cb-c278-4612-9993-7a03908f5008" + "JIOINDIAWEST:20220516T160624Z:a8a5a425-4f2d-46b9-a900-351877e51ad5" ], "Date": [ - "Sat, 26 Mar 2022 09:51:07 GMT" + "Mon, 16 May 2022 16:06:23 GMT" ], "Content-Length": [ - "467" + "519" ], "Content-Type": [ "application/json" @@ -63,26 +63,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pstestrsv8895\",\r\n \"etag\": \"W/\\\"datetime'2022-02-18T07%3A20%3A25.5509044Z'\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateEndpointStateForBackup\": \"None\",\r\n \"privateEndpointStateForSiteRecovery\": \"None\"\r\n },\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"RS0\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pstestrsv8895\",\r\n \"etag\": \"W/\\\"datetime'2022-02-18T07%3A20%3A25.5509044Z'\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateEndpointStateForBackup\": \"None\",\r\n \"privateEndpointStateForSiteRecovery\": \"None\",\r\n \"networkSettings\": {\r\n \"publicNetworkAccess\": \"Enabled\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"RS0\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupPolicies/afspolicy1?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwUG9saWNpZXMvYWZzcG9saWN5MT9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupPolicies/afspolicy1?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwUG9saWNpZXMvYWZzcG9saWN5MT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6a51dc1d-a6b7-4f2e-9c5a-b11696bc2f01" + "cb16d42d-3d77-4bb0-9da3-5bc80bba216b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -96,11 +96,11 @@ "nosniff" ], "x-ms-request-id": [ - "fe46c776-1f37-4460-af90-4546af5dd338" + "1f715ed5-9427-48a1-a79c-80a9c11c844d" ], "x-ms-client-request-id": [ - "6a51dc1d-a6b7-4f2e-9c5a-b11696bc2f01", - "6a51dc1d-a6b7-4f2e-9c5a-b11696bc2f01" + "cb16d42d-3d77-4bb0-9da3-5bc80bba216b", + "cb16d42d-3d77-4bb0-9da3-5bc80bba216b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -115,13 +115,13 @@ "299" ], "x-ms-correlation-request-id": [ - "fe46c776-1f37-4460-af90-4546af5dd338" + "1f715ed5-9427-48a1-a79c-80a9c11c844d" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T095108Z:fe46c776-1f37-4460-af90-4546af5dd338" + "JIOINDIAWEST:20220516T160626Z:1f715ed5-9427-48a1-a79c-80a9c11c844d" ], "Date": [ - "Sat, 26 Mar 2022 09:51:08 GMT" + "Mon, 16 May 2022 16:06:26 GMT" ], "Content-Length": [ "693" @@ -137,22 +137,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupProtectionContainers?$filter=backupManagementType%20eq%20'AzureStorage'&api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwUHJvdGVjdGlvbkNvbnRhaW5lcnM/JGZpbHRlcj1iYWNrdXBNYW5hZ2VtZW50VHlwZSUyMGVxJTIwJ0F6dXJlU3RvcmFnZScmYXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupPolicies/afspolicy1?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwUG9saWNpZXMvYWZzcG9saWN5MT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "57dd8b3f-51de-4b2e-bb61-278104b124e7" + "3204ff63-e722-4e5d-a1a9-38dc7c5ddc96" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -166,11 +166,81 @@ "nosniff" ], "x-ms-request-id": [ - "1491bf2e-0019-40d9-91eb-e81b633f30fb" + "da74cf27-f994-420a-a2ae-6dc0c7125803" ], "x-ms-client-request-id": [ - "57dd8b3f-51de-4b2e-bb61-278104b124e7", - "57dd8b3f-51de-4b2e-bb61-278104b124e7" + "3204ff63-e722-4e5d-a1a9-38dc7c5ddc96", + "3204ff63-e722-4e5d-a1a9-38dc7c5ddc96" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "297" + ], + "x-ms-correlation-request-id": [ + "da74cf27-f994-420a-a2ae-6dc0c7125803" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T160737Z:da74cf27-f994-420a-a2ae-6dc0c7125803" + ], + "Date": [ + "Mon, 16 May 2022 16:07:36 GMT" + ], + "Content-Length": [ + "693" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupPolicies/afspolicy1\",\r\n \"name\": \"afspolicy1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupPolicies\",\r\n \"properties\": {\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"schedulePolicy\": {\r\n \"schedulePolicyType\": \"SimpleSchedulePolicy\",\r\n \"scheduleRunFrequency\": \"Daily\",\r\n \"scheduleRunTimes\": [\r\n \"2019-10-29T06: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 \"2019-10-29T06: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\": 1\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupProtectionContainers?$filter=backupManagementType%20eq%20'AzureStorage'&api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwUHJvdGVjdGlvbkNvbnRhaW5lcnM/JGZpbHRlcj1iYWNrdXBNYW5hZ2VtZW50VHlwZSUyMGVxJTIwJ0F6dXJlU3RvcmFnZScmYXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0efe7a34-5f1a-41d2-87e7-dd3aa25b052b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "74c69ba2-5233-4c8e-a0a5-c94636fc7c35" + ], + "x-ms-client-request-id": [ + "0efe7a34-5f1a-41d2-87e7-dd3aa25b052b", + "0efe7a34-5f1a-41d2-87e7-dd3aa25b052b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,13 +255,13 @@ "299" ], "x-ms-correlation-request-id": [ - "1491bf2e-0019-40d9-91eb-e81b633f30fb" + "74c69ba2-5233-4c8e-a0a5-c94636fc7c35" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T095109Z:1491bf2e-0019-40d9-91eb-e81b633f30fb" + "JIOINDIAWEST:20220516T160627Z:74c69ba2-5233-4c8e-a0a5-c94636fc7c35" ], "Date": [ - "Sat, 26 Mar 2022 09:51:08 GMT" + "Mon, 16 May 2022 16:06:27 GMT" ], "Content-Length": [ "12" @@ -207,22 +277,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers?$filter=backupManagementType%20eq%20'AzureStorage'&api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0YWJsZUNvbnRhaW5lcnM/JGZpbHRlcj1iYWNrdXBNYW5hZ2VtZW50VHlwZSUyMGVxJTIwJ0F6dXJlU3RvcmFnZScmYXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers?$filter=backupManagementType%20eq%20'AzureStorage'&api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0YWJsZUNvbnRhaW5lcnM/JGZpbHRlcj1iYWNrdXBNYW5hZ2VtZW50VHlwZSUyMGVxJTIwJ0F6dXJlU3RvcmFnZScmYXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "57dd8b3f-51de-4b2e-bb61-278104b124e7" + "0efe7a34-5f1a-41d2-87e7-dd3aa25b052b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -236,11 +306,11 @@ "nosniff" ], "x-ms-request-id": [ - "a811ec83-763b-4a38-ad16-e7679a47d023" + "b6711915-4910-4e8b-8ca6-c35aeaa15cb2" ], "x-ms-client-request-id": [ - "57dd8b3f-51de-4b2e-bb61-278104b124e7", - "57dd8b3f-51de-4b2e-bb61-278104b124e7" + "0efe7a34-5f1a-41d2-87e7-dd3aa25b052b", + "0efe7a34-5f1a-41d2-87e7-dd3aa25b052b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -255,16 +325,16 @@ "299" ], "x-ms-correlation-request-id": [ - "a811ec83-763b-4a38-ad16-e7679a47d023" + "b6711915-4910-4e8b-8ca6-c35aeaa15cb2" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T095109Z:a811ec83-763b-4a38-ad16-e7679a47d023" + "JIOINDIAWEST:20220516T160628Z:b6711915-4910-4e8b-8ca6-c35aeaa15cb2" ], "Date": [ - "Sat, 26 Mar 2022 09:51:09 GMT" + "Mon, 16 May 2022 16:06:28 GMT" ], "Content-Length": [ - "14925" + "24516" ], "Content-Type": [ "application/json" @@ -273,26 +343,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;afstests;02xseacan01otds1\",\r\n \"name\": \"StorageContainer;Storage;afstests;02xseacan01otds1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"02xseacan01otds1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/02xseacan01otds1\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;afstests;afsbackupsa\",\r\n \"name\": \"StorageContainer;Storage;afstests;afsbackupsa\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"afsbackupsa\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/afsbackupsa\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;afstests;storageysci5wbex6jyc\",\r\n \"name\": \"StorageContainer;Storage;afstests;storageysci5wbex6jyc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"storageysci5wbex6jyc\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/storageysci5wbex6jyc\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;akkanaseCMK;0byseapod01otds1\",\r\n \"name\": \"StorageContainer;Storage;akkanaseCMK;0byseapod01otds1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"0byseapod01otds1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseCMK/providers/Microsoft.Storage/storageAccounts/0byseapod01otds1\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;akkanaseGRSVault;frmseapod01otds1\",\r\n \"name\": \"StorageContainer;Storage;akkanaseGRSVault;frmseapod01otds1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"frmseapod01otds1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseGRSVault/providers/Microsoft.Storage/storageAccounts/frmseapod01otds1\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;cmk.system;cmkautomationstore\",\r\n \"name\": \"StorageContainer;Storage;cmk.system;cmkautomationstore\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"cmkautomationstore\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/cmk.system/providers/Microsoft.Storage/storageAccounts/cmkautomationstore\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;disk-bvt-test-rg;hv3seapod01otds1\",\r\n \"name\": \"StorageContainer;Storage;disk-bvt-test-rg;hv3seapod01otds1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"hv3seapod01otds1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/disk-bvt-test-rg/providers/Microsoft.Storage/storageAccounts/hv3seapod01otds1\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;DoNotUse-OSS-BVT-SEA-RG;dontuseossrestoreasfile\",\r\n \"name\": \"StorageContainer;Storage;DoNotUse-OSS-BVT-SEA-RG;dontuseossrestoreasfile\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"dontuseossrestoreasfile\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/DoNotUse-OSS-BVT-SEA-RG/providers/Microsoft.Storage/storageAccounts/dontuseossrestoreasfile\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;iaasvm.encryptedvm;iaasvmencryptedvmdiag170\",\r\n \"name\": \"StorageContainer;Storage;iaasvm.encryptedvm;iaasvmencryptedvmdiag170\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"iaasvmencryptedvmdiag170\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.encryptedvm/providers/Microsoft.Storage/storageAccounts/iaasvmencryptedvmdiag170\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;iaasvm.existing;iaasextstore1\",\r\n \"name\": \"StorageContainer;Storage;iaasvm.existing;iaasextstore1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"iaasextstore1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.existing/providers/Microsoft.Storage/storageAccounts/iaasextstore1\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;iaasvm.new;iaasvmnewdiag1\",\r\n \"name\": \"StorageContainer;Storage;iaasvm.new;iaasvmnewdiag1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"iaasvmnewdiag1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.new/providers/Microsoft.Storage/storageAccounts/iaasvmnewdiag1\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;iaasvmhanaworkload.existing;iaasvmhanaworkloadexisti\",\r\n \"name\": \"StorageContainer;Storage;iaasvmhanaworkload.existing;iaasvmhanaworkloadexisti\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"iaasvmhanaworkloadexisti\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvmhanaworkload.existing/providers/Microsoft.Storage/storageAccounts/iaasvmhanaworkloadexisti\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;pscloudtestrg;pscloudtestrgdiag\",\r\n \"name\": \"StorageContainer;Storage;pscloudtestrg;pscloudtestrgdiag\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"pscloudtestrgdiag\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pscloudtestrg/providers/Microsoft.Storage/storageAccounts/pscloudtestrgdiag\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;PSTestRG1e5a278b;pstestsa1e5a278b\",\r\n \"name\": \"StorageContainer;Storage;PSTestRG1e5a278b;pstestsa1e5a278b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"pstestsa1e5a278b\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG1e5a278b/providers/Microsoft.Storage/storageAccounts/pstestsa1e5a278b\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;PSTestRG235879ba;pstestsa235879ba\",\r\n \"name\": \"StorageContainer;Storage;PSTestRG235879ba;pstestsa235879ba\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"pstestsa235879ba\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG235879ba/providers/Microsoft.Storage/storageAccounts/pstestsa235879ba\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;PSTestRG54bdf8da;pstestsa54bdf8da\",\r\n \"name\": \"StorageContainer;Storage;PSTestRG54bdf8da;pstestsa54bdf8da\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"pstestsa54bdf8da\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG54bdf8da/providers/Microsoft.Storage/storageAccounts/pstestsa54bdf8da\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;PSTestRG59e1706f;pstestsa59e1706f\",\r\n \"name\": \"StorageContainer;Storage;PSTestRG59e1706f;pstestsa59e1706f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"pstestsa59e1706f\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG59e1706f/providers/Microsoft.Storage/storageAccounts/pstestsa59e1706f\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895\",\r\n \"name\": \"StorageContainer;Storage;pstestrg8895;pstestsa8895\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"pstestsa8895\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstestsa8895\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;pstestrg8895;pstesttargetsa8895\",\r\n \"name\": \"StorageContainer;Storage;pstestrg8895;pstesttargetsa8895\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"pstesttargetsa8895\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstesttargetsa8895\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;pstestrg8895;pstesttargetsa8896\",\r\n \"name\": \"StorageContainer;Storage;pstestrg8895;pstesttargetsa8896\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"pstesttargetsa8896\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstesttargetsa8896\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;sambit_rg;sarathsa3\",\r\n \"name\": \"StorageContainer;Storage;sambit_rg;sarathsa3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"sarathsa3\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/sambit_rg/providers/Microsoft.Storage/storageAccounts/sarathsa3\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;afstests;02xseacan01otds1\",\r\n \"name\": \"StorageContainer;Storage;afstests;02xseacan01otds1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"02xseacan01otds1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/02xseacan01otds1\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;afstests;afsbackupsa\",\r\n \"name\": \"StorageContainer;Storage;afstests;afsbackupsa\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"afsbackupsa\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/afsbackupsa\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;afstests;storageysci5wbex6jyc\",\r\n \"name\": \"StorageContainer;Storage;afstests;storageysci5wbex6jyc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"storageysci5wbex6jyc\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/storageysci5wbex6jyc\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;akkanaseCMK;0byseapod01otds1\",\r\n \"name\": \"StorageContainer;Storage;akkanaseCMK;0byseapod01otds1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"0byseapod01otds1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseCMK/providers/Microsoft.Storage/storageAccounts/0byseapod01otds1\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;akkanaseGRSVault;frmseapod01otds1\",\r\n \"name\": \"StorageContainer;Storage;akkanaseGRSVault;frmseapod01otds1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"frmseapod01otds1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseGRSVault/providers/Microsoft.Storage/storageAccounts/frmseapod01otds1\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rg2z2u2iy224;clitestupktrqr622evq7uzq\",\r\n \"name\": \"StorageContainer;Storage;clitest.rg2z2u2iy224;clitestupktrqr622evq7uzq\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"clitestupktrqr622evq7uzq\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rg2z2u2iy224/providers/Microsoft.Storage/storageAccounts/clitestupktrqr622evq7uzq\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rg3szxf3a3my;clitestjcdqcd3tnqg5bhtr2\",\r\n \"name\": \"StorageContainer;Storage;clitest.rg3szxf3a3my;clitestjcdqcd3tnqg5bhtr2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"clitestjcdqcd3tnqg5bhtr2\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rg3szxf3a3my/providers/Microsoft.Storage/storageAccounts/clitestjcdqcd3tnqg5bhtr2\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rg5daabmbo3e;clitestfky4kz2v5vosldvhe\",\r\n \"name\": \"StorageContainer;Storage;clitest.rg5daabmbo3e;clitestfky4kz2v5vosldvhe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"clitestfky4kz2v5vosldvhe\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rg5daabmbo3e/providers/Microsoft.Storage/storageAccounts/clitestfky4kz2v5vosldvhe\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rg7leptekwovuif35xu6k3mb6lhszl4fkmod7jkg7yckt4v7epruxvjo6ty2hzsurwh;clitest3cgxtcwowikxqlds4\",\r\n \"name\": \"StorageContainer;Storage;clitest.rg7leptekwovuif35xu6k3mb6lhszl4fkmod7jkg7yckt4v7epruxvjo6ty2hzsurwh;clitest3cgxtcwowikxqlds4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"clitest3cgxtcwowikxqlds4\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rg7leptekwovuif35xu6k3mb6lhszl4fkmod7jkg7yckt4v7epruxvjo6ty2hzsurwh/providers/Microsoft.Storage/storageAccounts/clitest3cgxtcwowikxqlds4\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgbwwuivauc5;clitesttmyfbjqgepkrqhedt\",\r\n \"name\": \"StorageContainer;Storage;clitest.rgbwwuivauc5;clitesttmyfbjqgepkrqhedt\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"clitesttmyfbjqgepkrqhedt\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rgbwwuivauc5/providers/Microsoft.Storage/storageAccounts/clitesttmyfbjqgepkrqhedt\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgf6xl2fxqfv;clitestophphng5ygnzbvq3a\",\r\n \"name\": \"StorageContainer;Storage;clitest.rgf6xl2fxqfv;clitestophphng5ygnzbvq3a\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"clitestophphng5ygnzbvq3a\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rgf6xl2fxqfv/providers/Microsoft.Storage/storageAccounts/clitestophphng5ygnzbvq3a\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rglgudxl7bi5;clitestvv2va5tikpqjvoq6o\",\r\n \"name\": \"StorageContainer;Storage;clitest.rglgudxl7bi5;clitestvv2va5tikpqjvoq6o\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"clitestvv2va5tikpqjvoq6o\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rglgudxl7bi5/providers/Microsoft.Storage/storageAccounts/clitestvv2va5tikpqjvoq6o\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rglx72s62qimgelno2o6rr34a5ovdikhzq5k6dc7773qrbodtnrdcguic5hpiciscne;clitestva4qmim2g5c3cb2tz\",\r\n \"name\": \"StorageContainer;Storage;clitest.rglx72s62qimgelno2o6rr34a5ovdikhzq5k6dc7773qrbodtnrdcguic5hpiciscne;clitestva4qmim2g5c3cb2tz\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"clitestva4qmim2g5c3cb2tz\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rglx72s62qimgelno2o6rr34a5ovdikhzq5k6dc7773qrbodtnrdcguic5hpiciscne/providers/Microsoft.Storage/storageAccounts/clitestva4qmim2g5c3cb2tz\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgm7e2kiyzoto4iaicwwkdomftb7zki5kh2xxwh6yyskpflgsrpkrygkpwpdcltggyb;clitest7gyg4gqt4sxirqdkc\",\r\n \"name\": \"StorageContainer;Storage;clitest.rgm7e2kiyzoto4iaicwwkdomftb7zki5kh2xxwh6yyskpflgsrpkrygkpwpdcltggyb;clitest7gyg4gqt4sxirqdkc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"clitest7gyg4gqt4sxirqdkc\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rgm7e2kiyzoto4iaicwwkdomftb7zki5kh2xxwh6yyskpflgsrpkrygkpwpdcltggyb/providers/Microsoft.Storage/storageAccounts/clitest7gyg4gqt4sxirqdkc\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgqhfzt7fh5x;clitestz6nwne7j34dloacko\",\r\n \"name\": \"StorageContainer;Storage;clitest.rgqhfzt7fh5x;clitestz6nwne7j34dloacko\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"clitestz6nwne7j34dloacko\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rgqhfzt7fh5x/providers/Microsoft.Storage/storageAccounts/clitestz6nwne7j34dloacko\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgwsn3drxg3s;clitestukj4en4puxeag7shu\",\r\n \"name\": \"StorageContainer;Storage;clitest.rgwsn3drxg3s;clitestukj4en4puxeag7shu\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"clitestukj4en4puxeag7shu\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rgwsn3drxg3s/providers/Microsoft.Storage/storageAccounts/clitestukj4en4puxeag7shu\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgwsn3drxg3s;clitestw7rgjg33mzx6cc3su\",\r\n \"name\": \"StorageContainer;Storage;clitest.rgwsn3drxg3s;clitestw7rgjg33mzx6cc3su\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"clitestw7rgjg33mzx6cc3su\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rgwsn3drxg3s/providers/Microsoft.Storage/storageAccounts/clitestw7rgjg33mzx6cc3su\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;cmk.system;cmkautomationstore\",\r\n \"name\": \"StorageContainer;Storage;cmk.system;cmkautomationstore\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"cmkautomationstore\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/cmk.system/providers/Microsoft.Storage/storageAccounts/cmkautomationstore\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;disk-bvt-test-rg;hv3seapod01otds1\",\r\n \"name\": \"StorageContainer;Storage;disk-bvt-test-rg;hv3seapod01otds1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"hv3seapod01otds1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/disk-bvt-test-rg/providers/Microsoft.Storage/storageAccounts/hv3seapod01otds1\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;DoNotUse-OSS-BVT-SEA-RG;dontuseossrestoreasfile\",\r\n \"name\": \"StorageContainer;Storage;DoNotUse-OSS-BVT-SEA-RG;dontuseossrestoreasfile\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"dontuseossrestoreasfile\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/DoNotUse-OSS-BVT-SEA-RG/providers/Microsoft.Storage/storageAccounts/dontuseossrestoreasfile\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;iaasvm.encryptedvm;iaasvmencryptedvmdiag170\",\r\n \"name\": \"StorageContainer;Storage;iaasvm.encryptedvm;iaasvmencryptedvmdiag170\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"iaasvmencryptedvmdiag170\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.encryptedvm/providers/Microsoft.Storage/storageAccounts/iaasvmencryptedvmdiag170\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;iaasvm.existing;iaasextstore1\",\r\n \"name\": \"StorageContainer;Storage;iaasvm.existing;iaasextstore1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"iaasextstore1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.existing/providers/Microsoft.Storage/storageAccounts/iaasextstore1\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;iaasvm.new;iaasvmnewdiag1\",\r\n \"name\": \"StorageContainer;Storage;iaasvm.new;iaasvmnewdiag1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"iaasvmnewdiag1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.new/providers/Microsoft.Storage/storageAccounts/iaasvmnewdiag1\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;iaasvmhanaworkload.existing;iaasvmhanaworkloadexisti\",\r\n \"name\": \"StorageContainer;Storage;iaasvmhanaworkload.existing;iaasvmhanaworkloadexisti\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"iaasvmhanaworkloadexisti\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvmhanaworkload.existing/providers/Microsoft.Storage/storageAccounts/iaasvmhanaworkloadexisti\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;pscloudtestrg;pscloudtestrgdiag\",\r\n \"name\": \"StorageContainer;Storage;pscloudtestrg;pscloudtestrgdiag\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"pscloudtestrgdiag\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pscloudtestrg/providers/Microsoft.Storage/storageAccounts/pscloudtestrgdiag\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;PSTestRG1e5a278b;pstestsa1e5a278b\",\r\n \"name\": \"StorageContainer;Storage;PSTestRG1e5a278b;pstestsa1e5a278b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"pstestsa1e5a278b\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG1e5a278b/providers/Microsoft.Storage/storageAccounts/pstestsa1e5a278b\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;PSTestRG235879ba;pstestsa235879ba\",\r\n \"name\": \"StorageContainer;Storage;PSTestRG235879ba;pstestsa235879ba\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"pstestsa235879ba\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG235879ba/providers/Microsoft.Storage/storageAccounts/pstestsa235879ba\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;PSTestRG54bdf8da;pstestsa54bdf8da\",\r\n \"name\": \"StorageContainer;Storage;PSTestRG54bdf8da;pstestsa54bdf8da\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"pstestsa54bdf8da\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG54bdf8da/providers/Microsoft.Storage/storageAccounts/pstestsa54bdf8da\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;PSTestRG59e1706f;pstestsa59e1706f\",\r\n \"name\": \"StorageContainer;Storage;PSTestRG59e1706f;pstestsa59e1706f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"pstestsa59e1706f\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG59e1706f/providers/Microsoft.Storage/storageAccounts/pstestsa59e1706f\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895\",\r\n \"name\": \"StorageContainer;Storage;pstestrg8895;pstestsa8895\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"pstestsa8895\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstestsa8895\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;pstestrg8895;pstesttargetsa8895\",\r\n \"name\": \"StorageContainer;Storage;pstestrg8895;pstesttargetsa8895\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"pstesttargetsa8895\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstesttargetsa8895\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;pstestrg8895;pstesttargetsa8896\",\r\n \"name\": \"StorageContainer;Storage;pstestrg8895;pstesttargetsa8896\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"pstesttargetsa8896\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstesttargetsa8896\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;sambit_rg;sarathsa3\",\r\n \"name\": \"StorageContainer;Storage;sambit_rg;sarathsa3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"sarathsa3\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/sambit_rg/providers/Microsoft.Storage/storageAccounts/sarathsa3\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NT9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"containerType\": \"StorageContainer\",\r\n \"sourceResourceId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstestsa8895\",\r\n \"resourceGroup\": \"pstestrg8895\",\r\n \"friendlyName\": \"pstestsa8895\",\r\n \"backupManagementType\": \"AzureStorage\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "57dd8b3f-51de-4b2e-bb61-278104b124e7" + "0efe7a34-5f1a-41d2-87e7-dd3aa25b052b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -309,23 +379,23 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationResults/6898c3e4-5ecb-4dab-9d62-ac5fb5d0fd17?api-version=2021-12-01" + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationResults/efb21d4a-8e4a-4d7e-aba8-c68ef1542631?api-version=2022-02-01" ], "Retry-After": [ "60" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationsStatus/6898c3e4-5ecb-4dab-9d62-ac5fb5d0fd17?api-version=2019-05-13-preview" + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationsStatus/efb21d4a-8e4a-4d7e-aba8-c68ef1542631?api-version=2019-05-13-preview" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "dc0a52e9-807a-4911-adcd-0015dcbfe50d" + "4e8993a6-8871-4045-b46b-b619e2ece58d" ], "x-ms-client-request-id": [ - "57dd8b3f-51de-4b2e-bb61-278104b124e7", - "57dd8b3f-51de-4b2e-bb61-278104b124e7" + "0efe7a34-5f1a-41d2-87e7-dd3aa25b052b", + "0efe7a34-5f1a-41d2-87e7-dd3aa25b052b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -340,13 +410,13 @@ "1199" ], "x-ms-correlation-request-id": [ - "dc0a52e9-807a-4911-adcd-0015dcbfe50d" + "4e8993a6-8871-4045-b46b-b619e2ece58d" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T095111Z:dc0a52e9-807a-4911-adcd-0015dcbfe50d" + "JIOINDIAWEST:20220516T160629Z:4e8993a6-8871-4045-b46b-b619e2ece58d" ], "Date": [ - "Sat, 26 Mar 2022 09:51:10 GMT" + "Mon, 16 May 2022 16:06:29 GMT" ], "Content-Length": [ "2" @@ -362,22 +432,22 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895/operationResults/6898c3e4-5ecb-4dab-9d62-ac5fb5d0fd17?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9vcGVyYXRpb25SZXN1bHRzLzY4OThjM2U0LTVlY2ItNGRhYi05ZDYyLWFjNWZiNWQwZmQxNz9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895/operationResults/efb21d4a-8e4a-4d7e-aba8-c68ef1542631?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9vcGVyYXRpb25SZXN1bHRzL2VmYjIxZDRhLThlNGEtNGQ3ZS1hYmE4LWM2OGVmMTU0MjYzMT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "57dd8b3f-51de-4b2e-bb61-278104b124e7" + "0efe7a34-5f1a-41d2-87e7-dd3aa25b052b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -388,23 +458,23 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationResults/6898c3e4-5ecb-4dab-9d62-ac5fb5d0fd17?api-version=2021-12-01" + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationResults/efb21d4a-8e4a-4d7e-aba8-c68ef1542631?api-version=2022-02-01" ], "Retry-After": [ "60" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationsStatus/6898c3e4-5ecb-4dab-9d62-ac5fb5d0fd17?api-version=2019-05-13-preview" + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationsStatus/efb21d4a-8e4a-4d7e-aba8-c68ef1542631?api-version=2019-05-13-preview" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "e8ee20a7-53ea-4843-82c8-7907e29fc3a0" + "8c068cfd-d0a6-4d18-9b1e-cee17f39eeb3" ], "x-ms-client-request-id": [ - "57dd8b3f-51de-4b2e-bb61-278104b124e7", - "57dd8b3f-51de-4b2e-bb61-278104b124e7" + "0efe7a34-5f1a-41d2-87e7-dd3aa25b052b", + "0efe7a34-5f1a-41d2-87e7-dd3aa25b052b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -419,13 +489,13 @@ "299" ], "x-ms-correlation-request-id": [ - "e8ee20a7-53ea-4843-82c8-7907e29fc3a0" + "8c068cfd-d0a6-4d18-9b1e-cee17f39eeb3" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T095111Z:e8ee20a7-53ea-4843-82c8-7907e29fc3a0" + "JIOINDIAWEST:20220516T160630Z:8c068cfd-d0a6-4d18-9b1e-cee17f39eeb3" ], "Date": [ - "Sat, 26 Mar 2022 09:51:10 GMT" + "Mon, 16 May 2022 16:06:30 GMT" ], "Content-Length": [ "2" @@ -441,22 +511,22 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895/operationResults/6898c3e4-5ecb-4dab-9d62-ac5fb5d0fd17?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9vcGVyYXRpb25SZXN1bHRzLzY4OThjM2U0LTVlY2ItNGRhYi05ZDYyLWFjNWZiNWQwZmQxNz9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895/operationResults/efb21d4a-8e4a-4d7e-aba8-c68ef1542631?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9vcGVyYXRpb25SZXN1bHRzL2VmYjIxZDRhLThlNGEtNGQ3ZS1hYmE4LWM2OGVmMTU0MjYzMT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "57dd8b3f-51de-4b2e-bb61-278104b124e7" + "0efe7a34-5f1a-41d2-87e7-dd3aa25b052b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -467,23 +537,23 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationResults/6898c3e4-5ecb-4dab-9d62-ac5fb5d0fd17?api-version=2021-12-01" + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationResults/efb21d4a-8e4a-4d7e-aba8-c68ef1542631?api-version=2022-02-01" ], "Retry-After": [ "60" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationsStatus/6898c3e4-5ecb-4dab-9d62-ac5fb5d0fd17?api-version=2019-05-13-preview" + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationsStatus/efb21d4a-8e4a-4d7e-aba8-c68ef1542631?api-version=2019-05-13-preview" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "4f6b987f-335a-40fb-b844-cb28beaab96a" + "571fb97a-e5e9-480d-8bfb-1ce1731d21b9" ], "x-ms-client-request-id": [ - "57dd8b3f-51de-4b2e-bb61-278104b124e7", - "57dd8b3f-51de-4b2e-bb61-278104b124e7" + "0efe7a34-5f1a-41d2-87e7-dd3aa25b052b", + "0efe7a34-5f1a-41d2-87e7-dd3aa25b052b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -498,13 +568,13 @@ "298" ], "x-ms-correlation-request-id": [ - "4f6b987f-335a-40fb-b844-cb28beaab96a" + "571fb97a-e5e9-480d-8bfb-1ce1731d21b9" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T095121Z:4f6b987f-335a-40fb-b844-cb28beaab96a" + "JIOINDIAWEST:20220516T160635Z:571fb97a-e5e9-480d-8bfb-1ce1731d21b9" ], "Date": [ - "Sat, 26 Mar 2022 09:51:20 GMT" + "Mon, 16 May 2022 16:06:35 GMT" ], "Content-Length": [ "2" @@ -520,22 +590,22 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895/operationResults/6898c3e4-5ecb-4dab-9d62-ac5fb5d0fd17?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9vcGVyYXRpb25SZXN1bHRzLzY4OThjM2U0LTVlY2ItNGRhYi05ZDYyLWFjNWZiNWQwZmQxNz9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895/operationResults/efb21d4a-8e4a-4d7e-aba8-c68ef1542631?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9vcGVyYXRpb25SZXN1bHRzL2VmYjIxZDRhLThlNGEtNGQ3ZS1hYmE4LWM2OGVmMTU0MjYzMT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "57dd8b3f-51de-4b2e-bb61-278104b124e7" + "0efe7a34-5f1a-41d2-87e7-dd3aa25b052b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -545,15 +615,24 @@ "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationResults/efb21d4a-8e4a-4d7e-aba8-c68ef1542631?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationsStatus/efb21d4a-8e4a-4d7e-aba8-c68ef1542631?api-version=2019-05-13-preview" + ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "1e04f5f7-4173-4e3e-9ffd-9c2eba36a09f" + "9f5a2fa3-5bb6-4010-b144-0a61ecb01e03" ], "x-ms-client-request-id": [ - "57dd8b3f-51de-4b2e-bb61-278104b124e7", - "57dd8b3f-51de-4b2e-bb61-278104b124e7" + "0efe7a34-5f1a-41d2-87e7-dd3aa25b052b", + "0efe7a34-5f1a-41d2-87e7-dd3aa25b052b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -568,13 +647,83 @@ "297" ], "x-ms-correlation-request-id": [ - "1e04f5f7-4173-4e3e-9ffd-9c2eba36a09f" + "9f5a2fa3-5bb6-4010-b144-0a61ecb01e03" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T160641Z:9f5a2fa3-5bb6-4010-b144-0a61ecb01e03" + ], + "Date": [ + "Mon, 16 May 2022 16:06:40 GMT" + ], + "Content-Length": [ + "2" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{}", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895/operationResults/efb21d4a-8e4a-4d7e-aba8-c68ef1542631?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9vcGVyYXRpb25SZXN1bHRzL2VmYjIxZDRhLThlNGEtNGQ3ZS1hYmE4LWM2OGVmMTU0MjYzMT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0efe7a34-5f1a-41d2-87e7-dd3aa25b052b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "3e994495-eadb-401d-884d-1833a7db71ca" + ], + "x-ms-client-request-id": [ + "0efe7a34-5f1a-41d2-87e7-dd3aa25b052b", + "0efe7a34-5f1a-41d2-87e7-dd3aa25b052b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "296" + ], + "x-ms-correlation-request-id": [ + "3e994495-eadb-401d-884d-1833a7db71ca" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T095132Z:1e04f5f7-4173-4e3e-9ffd-9c2eba36a09f" + "JIOINDIAWEST:20220516T160646Z:3e994495-eadb-401d-884d-1833a7db71ca" ], "Date": [ - "Sat, 26 Mar 2022 09:51:32 GMT" + "Mon, 16 May 2022 16:06:45 GMT" ], "Content-Length": [ "737" @@ -590,22 +739,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895/operationResults/6898c3e4-5ecb-4dab-9d62-ac5fb5d0fd17?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9vcGVyYXRpb25SZXN1bHRzLzY4OThjM2U0LTVlY2ItNGRhYi05ZDYyLWFjNWZiNWQwZmQxNz9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895/operationResults/efb21d4a-8e4a-4d7e-aba8-c68ef1542631?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9vcGVyYXRpb25SZXN1bHRzL2VmYjIxZDRhLThlNGEtNGQ3ZS1hYmE4LWM2OGVmMTU0MjYzMT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "57dd8b3f-51de-4b2e-bb61-278104b124e7" + "0efe7a34-5f1a-41d2-87e7-dd3aa25b052b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -619,11 +768,11 @@ "nosniff" ], "x-ms-request-id": [ - "d801c10e-3257-403b-aa20-ef796324f33b" + "8e526ea4-ded6-4904-945b-257880023769" ], "x-ms-client-request-id": [ - "57dd8b3f-51de-4b2e-bb61-278104b124e7", - "57dd8b3f-51de-4b2e-bb61-278104b124e7" + "0efe7a34-5f1a-41d2-87e7-dd3aa25b052b", + "0efe7a34-5f1a-41d2-87e7-dd3aa25b052b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -635,16 +784,16 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "296" + "295" ], "x-ms-correlation-request-id": [ - "d801c10e-3257-403b-aa20-ef796324f33b" + "8e526ea4-ded6-4904-945b-257880023769" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T095132Z:d801c10e-3257-403b-aa20-ef796324f33b" + "JIOINDIAWEST:20220516T160647Z:8e526ea4-ded6-4904-945b-257880023769" ], "Date": [ - "Sat, 26 Mar 2022 09:51:32 GMT" + "Mon, 16 May 2022 16:06:47 GMT" ], "Content-Length": [ "737" @@ -660,22 +809,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupProtectableItems?$filter=backupManagementType%20eq%20'AzureStorage'&api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwUHJvdGVjdGFibGVJdGVtcz8kZmlsdGVyPWJhY2t1cE1hbmFnZW1lbnRUeXBlJTIwZXElMjAnQXp1cmVTdG9yYWdlJyZhcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupProtectableItems?$filter=backupManagementType%20eq%20'AzureStorage'&api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwUHJvdGVjdGFibGVJdGVtcz8kZmlsdGVyPWJhY2t1cE1hbmFnZW1lbnRUeXBlJTIwZXElMjAnQXp1cmVTdG9yYWdlJyZhcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "57dd8b3f-51de-4b2e-bb61-278104b124e7" + "0efe7a34-5f1a-41d2-87e7-dd3aa25b052b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -689,11 +838,11 @@ "nosniff" ], "x-ms-request-id": [ - "4d67a271-d7da-44e7-ac82-cc5fdae6d0d0" + "c60f0215-ebbd-4790-9cdf-5f5ea4834212" ], "x-ms-client-request-id": [ - "57dd8b3f-51de-4b2e-bb61-278104b124e7", - "57dd8b3f-51de-4b2e-bb61-278104b124e7" + "0efe7a34-5f1a-41d2-87e7-dd3aa25b052b", + "0efe7a34-5f1a-41d2-87e7-dd3aa25b052b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -708,13 +857,13 @@ "299" ], "x-ms-correlation-request-id": [ - "4d67a271-d7da-44e7-ac82-cc5fdae6d0d0" + "c60f0215-ebbd-4790-9cdf-5f5ea4834212" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T095133Z:4d67a271-d7da-44e7-ac82-cc5fdae6d0d0" + "JIOINDIAWEST:20220516T160647Z:c60f0215-ebbd-4790-9cdf-5f5ea4834212" ], "Date": [ - "Sat, 26 Mar 2022 09:51:33 GMT" + "Mon, 16 May 2022 16:06:47 GMT" ], "Content-Length": [ "947" @@ -730,22 +879,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/storagecontainer%3Bstorage%3Bpstestrg8895%3Bpstestsa8895/protectedItems/azurefileshare%3B698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9zdG9yYWdlY29udGFpbmVyJTNCc3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9wcm90ZWN0ZWRJdGVtcy9henVyZWZpbGVzaGFyZSUzQjY5OGRmNTk1OTQ4ZTIzNTVmMmJiNzQ0YTQxY2YyNDVkNGJhMTI1NWQ5Njk5Y2MzYzJhZDFmNTA0NWUxNzc5NTk/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/storagecontainer%3Bstorage%3Bpstestrg8895%3Bpstestsa8895/protectedItems/azurefileshare%3B698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9zdG9yYWdlY29udGFpbmVyJTNCc3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9wcm90ZWN0ZWRJdGVtcy9henVyZWZpbGVzaGFyZSUzQjY5OGRmNTk1OTQ4ZTIzNTVmMmJiNzQ0YTQxY2YyNDVkNGJhMTI1NWQ5Njk5Y2MzYzJhZDFmNTA0NWUxNzc5NTk/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"protectedItemType\": \"AzureFileShareProtectedItem\",\r\n \"sourceResourceId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstestsa8895\",\r\n \"policyId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupPolicies/afspolicy1\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "57dd8b3f-51de-4b2e-bb61-278104b124e7" + "0efe7a34-5f1a-41d2-87e7-dd3aa25b052b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -762,23 +911,23 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/storagecontainer;storage;pstestrg8895;pstestsa8895/protectedItems/azurefileshare;698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959/operationResults/733721e6-1ee3-40da-bf85-3ee0ab8ee35b?api-version=2021-12-01" + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/storagecontainer;storage;pstestrg8895;pstestsa8895/protectedItems/azurefileshare;698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959/operationResults/dd22e1de-787b-43e0-8dee-746a465eef95?api-version=2022-02-01" ], "Retry-After": [ "60" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/storagecontainer;storage;pstestrg8895;pstestsa8895/protectedItems/azurefileshare;698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959/operationsStatus/733721e6-1ee3-40da-bf85-3ee0ab8ee35b?api-version=2021-12-01" + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/storagecontainer;storage;pstestrg8895;pstestsa8895/protectedItems/azurefileshare;698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959/operationsStatus/dd22e1de-787b-43e0-8dee-746a465eef95?api-version=2022-02-01" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "dedaed89-8a43-4da3-b94b-a06a831d406b" + "46079697-559d-40a8-b25e-15c0a8be5565" ], "x-ms-client-request-id": [ - "57dd8b3f-51de-4b2e-bb61-278104b124e7", - "57dd8b3f-51de-4b2e-bb61-278104b124e7" + "0efe7a34-5f1a-41d2-87e7-dd3aa25b052b", + "0efe7a34-5f1a-41d2-87e7-dd3aa25b052b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -790,13 +939,13 @@ "1198" ], "x-ms-correlation-request-id": [ - "dedaed89-8a43-4da3-b94b-a06a831d406b" + "46079697-559d-40a8-b25e-15c0a8be5565" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T095134Z:dedaed89-8a43-4da3-b94b-a06a831d406b" + "JIOINDIAWEST:20220516T160648Z:46079697-559d-40a8-b25e-15c0a8be5565" ], "Date": [ - "Sat, 26 Mar 2022 09:51:34 GMT" + "Mon, 16 May 2022 16:06:48 GMT" ], "Expires": [ "-1" @@ -809,22 +958,22 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/733721e6-1ee3-40da-bf85-3ee0ab8ee35b?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy83MzM3MjFlNi0xZWUzLTQwZGEtYmY4NS0zZWUwYWI4ZWUzNWI/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/dd22e1de-787b-43e0-8dee-746a465eef95?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9kZDIyZTFkZS03ODdiLTQzZTAtOGRlZS03NDZhNDY1ZWVmOTU/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "57dd8b3f-51de-4b2e-bb61-278104b124e7" + "0efe7a34-5f1a-41d2-87e7-dd3aa25b052b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -838,11 +987,11 @@ "nosniff" ], "x-ms-request-id": [ - "86f5ba93-0374-4f8e-9cb4-741aa8283bf8" + "e334d717-e564-468f-9d82-735cb22ab539" ], "x-ms-client-request-id": [ - "57dd8b3f-51de-4b2e-bb61-278104b124e7", - "57dd8b3f-51de-4b2e-bb61-278104b124e7" + "0efe7a34-5f1a-41d2-87e7-dd3aa25b052b", + "0efe7a34-5f1a-41d2-87e7-dd3aa25b052b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -857,13 +1006,13 @@ "299" ], "x-ms-correlation-request-id": [ - "86f5ba93-0374-4f8e-9cb4-741aa8283bf8" + "e334d717-e564-468f-9d82-735cb22ab539" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T095134Z:86f5ba93-0374-4f8e-9cb4-741aa8283bf8" + "JIOINDIAWEST:20220516T160649Z:e334d717-e564-468f-9d82-735cb22ab539" ], "Date": [ - "Sat, 26 Mar 2022 09:51:34 GMT" + "Mon, 16 May 2022 16:06:49 GMT" ], "Content-Length": [ "188" @@ -875,26 +1024,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"733721e6-1ee3-40da-bf85-3ee0ab8ee35b\",\r\n \"name\": \"733721e6-1ee3-40da-bf85-3ee0ab8ee35b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-03-26T09:51:33.9414315Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"dd22e1de-787b-43e0-8dee-746a465eef95\",\r\n \"name\": \"dd22e1de-787b-43e0-8dee-746a465eef95\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T16:06:48.7466287Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/733721e6-1ee3-40da-bf85-3ee0ab8ee35b?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy83MzM3MjFlNi0xZWUzLTQwZGEtYmY4NS0zZWUwYWI4ZWUzNWI/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/dd22e1de-787b-43e0-8dee-746a465eef95?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9kZDIyZTFkZS03ODdiLTQzZTAtOGRlZS03NDZhNDY1ZWVmOTU/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "57dd8b3f-51de-4b2e-bb61-278104b124e7" + "0efe7a34-5f1a-41d2-87e7-dd3aa25b052b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -908,11 +1057,11 @@ "nosniff" ], "x-ms-request-id": [ - "a5dc3cb9-a349-4df5-b72e-bf0740a4a937" + "ddd2f6e7-3d74-4bba-a2eb-0ad8a77f1300" ], "x-ms-client-request-id": [ - "57dd8b3f-51de-4b2e-bb61-278104b124e7", - "57dd8b3f-51de-4b2e-bb61-278104b124e7" + "0efe7a34-5f1a-41d2-87e7-dd3aa25b052b", + "0efe7a34-5f1a-41d2-87e7-dd3aa25b052b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -927,13 +1076,13 @@ "298" ], "x-ms-correlation-request-id": [ - "a5dc3cb9-a349-4df5-b72e-bf0740a4a937" + "ddd2f6e7-3d74-4bba-a2eb-0ad8a77f1300" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T095144Z:a5dc3cb9-a349-4df5-b72e-bf0740a4a937" + "JIOINDIAWEST:20220516T160655Z:ddd2f6e7-3d74-4bba-a2eb-0ad8a77f1300" ], "Date": [ - "Sat, 26 Mar 2022 09:51:44 GMT" + "Mon, 16 May 2022 16:06:54 GMT" ], "Content-Length": [ "188" @@ -945,26 +1094,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"733721e6-1ee3-40da-bf85-3ee0ab8ee35b\",\r\n \"name\": \"733721e6-1ee3-40da-bf85-3ee0ab8ee35b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-03-26T09:51:33.9414315Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"dd22e1de-787b-43e0-8dee-746a465eef95\",\r\n \"name\": \"dd22e1de-787b-43e0-8dee-746a465eef95\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T16:06:48.7466287Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/733721e6-1ee3-40da-bf85-3ee0ab8ee35b?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy83MzM3MjFlNi0xZWUzLTQwZGEtYmY4NS0zZWUwYWI4ZWUzNWI/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/dd22e1de-787b-43e0-8dee-746a465eef95?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9kZDIyZTFkZS03ODdiLTQzZTAtOGRlZS03NDZhNDY1ZWVmOTU/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "57dd8b3f-51de-4b2e-bb61-278104b124e7" + "0efe7a34-5f1a-41d2-87e7-dd3aa25b052b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -978,11 +1127,11 @@ "nosniff" ], "x-ms-request-id": [ - "2be29c29-893c-46c7-8f2f-961b19906b5d" + "efe15cbc-2c91-4b14-a363-d2e83f56b355" ], "x-ms-client-request-id": [ - "57dd8b3f-51de-4b2e-bb61-278104b124e7", - "57dd8b3f-51de-4b2e-bb61-278104b124e7" + "0efe7a34-5f1a-41d2-87e7-dd3aa25b052b", + "0efe7a34-5f1a-41d2-87e7-dd3aa25b052b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -997,13 +1146,13 @@ "297" ], "x-ms-correlation-request-id": [ - "2be29c29-893c-46c7-8f2f-961b19906b5d" + "efe15cbc-2c91-4b14-a363-d2e83f56b355" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T095155Z:2be29c29-893c-46c7-8f2f-961b19906b5d" + "JIOINDIAWEST:20220516T160700Z:efe15cbc-2c91-4b14-a363-d2e83f56b355" ], "Date": [ - "Sat, 26 Mar 2022 09:51:54 GMT" + "Mon, 16 May 2022 16:06:59 GMT" ], "Content-Length": [ "188" @@ -1015,26 +1164,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"733721e6-1ee3-40da-bf85-3ee0ab8ee35b\",\r\n \"name\": \"733721e6-1ee3-40da-bf85-3ee0ab8ee35b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-03-26T09:51:33.9414315Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"dd22e1de-787b-43e0-8dee-746a465eef95\",\r\n \"name\": \"dd22e1de-787b-43e0-8dee-746a465eef95\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T16:06:48.7466287Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/733721e6-1ee3-40da-bf85-3ee0ab8ee35b?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy83MzM3MjFlNi0xZWUzLTQwZGEtYmY4NS0zZWUwYWI4ZWUzNWI/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/dd22e1de-787b-43e0-8dee-746a465eef95?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9kZDIyZTFkZS03ODdiLTQzZTAtOGRlZS03NDZhNDY1ZWVmOTU/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "57dd8b3f-51de-4b2e-bb61-278104b124e7" + "0efe7a34-5f1a-41d2-87e7-dd3aa25b052b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -1048,11 +1197,11 @@ "nosniff" ], "x-ms-request-id": [ - "8bfde48a-4ffb-495b-a76f-37e06e5b1892" + "e03a5c00-7317-41b7-9835-4692fe882aab" ], "x-ms-client-request-id": [ - "57dd8b3f-51de-4b2e-bb61-278104b124e7", - "57dd8b3f-51de-4b2e-bb61-278104b124e7" + "0efe7a34-5f1a-41d2-87e7-dd3aa25b052b", + "0efe7a34-5f1a-41d2-87e7-dd3aa25b052b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1067,13 +1216,13 @@ "296" ], "x-ms-correlation-request-id": [ - "8bfde48a-4ffb-495b-a76f-37e06e5b1892" + "e03a5c00-7317-41b7-9835-4692fe882aab" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T095205Z:8bfde48a-4ffb-495b-a76f-37e06e5b1892" + "JIOINDIAWEST:20220516T160706Z:e03a5c00-7317-41b7-9835-4692fe882aab" ], "Date": [ - "Sat, 26 Mar 2022 09:52:05 GMT" + "Mon, 16 May 2022 16:07:05 GMT" ], "Content-Length": [ "188" @@ -1085,26 +1234,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"733721e6-1ee3-40da-bf85-3ee0ab8ee35b\",\r\n \"name\": \"733721e6-1ee3-40da-bf85-3ee0ab8ee35b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-03-26T09:51:33.9414315Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"dd22e1de-787b-43e0-8dee-746a465eef95\",\r\n \"name\": \"dd22e1de-787b-43e0-8dee-746a465eef95\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T16:06:48.7466287Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/733721e6-1ee3-40da-bf85-3ee0ab8ee35b?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy83MzM3MjFlNi0xZWUzLTQwZGEtYmY4NS0zZWUwYWI4ZWUzNWI/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/dd22e1de-787b-43e0-8dee-746a465eef95?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9kZDIyZTFkZS03ODdiLTQzZTAtOGRlZS03NDZhNDY1ZWVmOTU/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "57dd8b3f-51de-4b2e-bb61-278104b124e7" + "0efe7a34-5f1a-41d2-87e7-dd3aa25b052b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -1118,11 +1267,11 @@ "nosniff" ], "x-ms-request-id": [ - "811cb411-7535-4353-947d-8821072537c4" + "b982c8d6-098a-4330-96d8-1db473a62ca2" ], "x-ms-client-request-id": [ - "57dd8b3f-51de-4b2e-bb61-278104b124e7", - "57dd8b3f-51de-4b2e-bb61-278104b124e7" + "0efe7a34-5f1a-41d2-87e7-dd3aa25b052b", + "0efe7a34-5f1a-41d2-87e7-dd3aa25b052b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1137,13 +1286,13 @@ "295" ], "x-ms-correlation-request-id": [ - "811cb411-7535-4353-947d-8821072537c4" + "b982c8d6-098a-4330-96d8-1db473a62ca2" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T095216Z:811cb411-7535-4353-947d-8821072537c4" + "JIOINDIAWEST:20220516T160711Z:b982c8d6-098a-4330-96d8-1db473a62ca2" ], "Date": [ - "Sat, 26 Mar 2022 09:52:15 GMT" + "Mon, 16 May 2022 16:07:11 GMT" ], "Content-Length": [ "188" @@ -1155,26 +1304,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"733721e6-1ee3-40da-bf85-3ee0ab8ee35b\",\r\n \"name\": \"733721e6-1ee3-40da-bf85-3ee0ab8ee35b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-03-26T09:51:33.9414315Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"dd22e1de-787b-43e0-8dee-746a465eef95\",\r\n \"name\": \"dd22e1de-787b-43e0-8dee-746a465eef95\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T16:06:48.7466287Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/733721e6-1ee3-40da-bf85-3ee0ab8ee35b?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy83MzM3MjFlNi0xZWUzLTQwZGEtYmY4NS0zZWUwYWI4ZWUzNWI/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/dd22e1de-787b-43e0-8dee-746a465eef95?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9kZDIyZTFkZS03ODdiLTQzZTAtOGRlZS03NDZhNDY1ZWVmOTU/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "57dd8b3f-51de-4b2e-bb61-278104b124e7" + "0efe7a34-5f1a-41d2-87e7-dd3aa25b052b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -1188,11 +1337,11 @@ "nosniff" ], "x-ms-request-id": [ - "25d70b29-af50-42f5-884d-b32362fefff6" + "349d4614-6297-4fc4-ac0f-f4ad6c15c75a" ], "x-ms-client-request-id": [ - "57dd8b3f-51de-4b2e-bb61-278104b124e7", - "57dd8b3f-51de-4b2e-bb61-278104b124e7" + "0efe7a34-5f1a-41d2-87e7-dd3aa25b052b", + "0efe7a34-5f1a-41d2-87e7-dd3aa25b052b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1207,16 +1356,16 @@ "294" ], "x-ms-correlation-request-id": [ - "25d70b29-af50-42f5-884d-b32362fefff6" + "349d4614-6297-4fc4-ac0f-f4ad6c15c75a" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T095226Z:25d70b29-af50-42f5-884d-b32362fefff6" + "JIOINDIAWEST:20220516T160717Z:349d4614-6297-4fc4-ac0f-f4ad6c15c75a" ], "Date": [ - "Sat, 26 Mar 2022 09:52:26 GMT" + "Mon, 16 May 2022 16:07:16 GMT" ], "Content-Length": [ - "304" + "188" ], "Content-Type": [ "application/json" @@ -1225,26 +1374,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"733721e6-1ee3-40da-bf85-3ee0ab8ee35b\",\r\n \"name\": \"733721e6-1ee3-40da-bf85-3ee0ab8ee35b\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-03-26T09:51:33.9414315Z\",\r\n \"endTime\": \"2022-03-26T09:51:33.9414315Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"4c63698a-3684-4826-9104-c5e941a98884\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"dd22e1de-787b-43e0-8dee-746a465eef95\",\r\n \"name\": \"dd22e1de-787b-43e0-8dee-746a465eef95\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T16:06:48.7466287Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/733721e6-1ee3-40da-bf85-3ee0ab8ee35b?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy83MzM3MjFlNi0xZWUzLTQwZGEtYmY4NS0zZWUwYWI4ZWUzNWI/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/dd22e1de-787b-43e0-8dee-746a465eef95?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9kZDIyZTFkZS03ODdiLTQzZTAtOGRlZS03NDZhNDY1ZWVmOTU/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "57dd8b3f-51de-4b2e-bb61-278104b124e7" + "0efe7a34-5f1a-41d2-87e7-dd3aa25b052b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -1258,11 +1407,11 @@ "nosniff" ], "x-ms-request-id": [ - "0f3e2275-2d1e-49f4-a69f-cdd4f1285c1e" + "d8388ecb-fde4-4e98-bf91-3d8070f11e03" ], "x-ms-client-request-id": [ - "57dd8b3f-51de-4b2e-bb61-278104b124e7", - "57dd8b3f-51de-4b2e-bb61-278104b124e7" + "0efe7a34-5f1a-41d2-87e7-dd3aa25b052b", + "0efe7a34-5f1a-41d2-87e7-dd3aa25b052b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1277,16 +1426,16 @@ "293" ], "x-ms-correlation-request-id": [ - "0f3e2275-2d1e-49f4-a69f-cdd4f1285c1e" + "d8388ecb-fde4-4e98-bf91-3d8070f11e03" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T095227Z:0f3e2275-2d1e-49f4-a69f-cdd4f1285c1e" + "JIOINDIAWEST:20220516T160722Z:d8388ecb-fde4-4e98-bf91-3d8070f11e03" ], "Date": [ - "Sat, 26 Mar 2022 09:52:26 GMT" + "Mon, 16 May 2022 16:07:22 GMT" ], "Content-Length": [ - "304" + "188" ], "Content-Type": [ "application/json" @@ -1295,26 +1444,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"733721e6-1ee3-40da-bf85-3ee0ab8ee35b\",\r\n \"name\": \"733721e6-1ee3-40da-bf85-3ee0ab8ee35b\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-03-26T09:51:33.9414315Z\",\r\n \"endTime\": \"2022-03-26T09:51:33.9414315Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"4c63698a-3684-4826-9104-c5e941a98884\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"dd22e1de-787b-43e0-8dee-746a465eef95\",\r\n \"name\": \"dd22e1de-787b-43e0-8dee-746a465eef95\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T16:06:48.7466287Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/4c63698a-3684-4826-9104-c5e941a98884?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy80YzYzNjk4YS0zNjg0LTQ4MjYtOTEwNC1jNWU5NDFhOTg4ODQ/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/dd22e1de-787b-43e0-8dee-746a465eef95?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9kZDIyZTFkZS03ODdiLTQzZTAtOGRlZS03NDZhNDY1ZWVmOTU/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "57dd8b3f-51de-4b2e-bb61-278104b124e7" + "0efe7a34-5f1a-41d2-87e7-dd3aa25b052b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -1324,40 +1473,39 @@ "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-IIS/10.0" - ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "eddb3a1f-4791-4cb0-bf09-f3ca535cf998" + "d3e504c0-77ef-436c-babe-405fcae5053c" ], "x-ms-client-request-id": [ - "57dd8b3f-51de-4b2e-bb61-278104b124e7", - "57dd8b3f-51de-4b2e-bb61-278104b124e7" - ], - "X-Powered-By": [ - "ASP.NET" + "0efe7a34-5f1a-41d2-87e7-dd3aa25b052b", + "0efe7a34-5f1a-41d2-87e7-dd3aa25b052b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "299" + "292" ], "x-ms-correlation-request-id": [ - "eddb3a1f-4791-4cb0-bf09-f3ca535cf998" + "d3e504c0-77ef-436c-babe-405fcae5053c" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T095227Z:eddb3a1f-4791-4cb0-bf09-f3ca535cf998" + "JIOINDIAWEST:20220516T160728Z:d3e504c0-77ef-436c-babe-405fcae5053c" ], "Date": [ - "Sat, 26 Mar 2022 09:52:26 GMT" + "Mon, 16 May 2022 16:07:28 GMT" ], "Content-Length": [ - "846" + "188" ], "Content-Type": [ "application/json" @@ -1366,26 +1514,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/4c63698a-3684-4826-9104-c5e941a98884\",\r\n \"name\": \"4c63698a-3684-4826-9104-c5e941a98884\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT42.5017425S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"Storage\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"File Share Name\": \"fs1\",\r\n \"Storage Account Name\": \"pstestsa8895\",\r\n \"Policy Name\": \"afspolicy1\"\r\n }\r\n },\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"ConfigureBackup\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-03-26T09:51:33.9414315Z\",\r\n \"endTime\": \"2022-03-26T09:52:16.443174Z\",\r\n \"activityId\": \"57dd8b3f-51de-4b2e-bb61-278104b124e7\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"dd22e1de-787b-43e0-8dee-746a465eef95\",\r\n \"name\": \"dd22e1de-787b-43e0-8dee-746a465eef95\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T16:06:48.7466287Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupProtectionContainers?$filter=friendlyName%20eq%20'pstestsa8895'%20and%20backupManagementType%20eq%20'AzureStorage'%20and%20status%20eq%20'Registered'&api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwUHJvdGVjdGlvbkNvbnRhaW5lcnM/JGZpbHRlcj1mcmllbmRseU5hbWUlMjBlcSUyMCdwc3Rlc3RzYTg4OTUnJTIwYW5kJTIwYmFja3VwTWFuYWdlbWVudFR5cGUlMjBlcSUyMCdBenVyZVN0b3JhZ2UnJTIwYW5kJTIwc3RhdHVzJTIwZXElMjAnUmVnaXN0ZXJlZCcmYXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/dd22e1de-787b-43e0-8dee-746a465eef95?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9kZDIyZTFkZS03ODdiLTQzZTAtOGRlZS03NDZhNDY1ZWVmOTU/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c77fefa6-3f74-4590-b64a-2c572e6f1a9e" + "0efe7a34-5f1a-41d2-87e7-dd3aa25b052b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -1399,11 +1547,11 @@ "nosniff" ], "x-ms-request-id": [ - "89d89206-e0a9-4ace-a181-8482d5d0f5c3" + "64824fe9-2c6a-4d40-ab35-f9936374eb99" ], "x-ms-client-request-id": [ - "c77fefa6-3f74-4590-b64a-2c572e6f1a9e", - "c77fefa6-3f74-4590-b64a-2c572e6f1a9e" + "0efe7a34-5f1a-41d2-87e7-dd3aa25b052b", + "0efe7a34-5f1a-41d2-87e7-dd3aa25b052b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1415,19 +1563,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "298" + "291" ], "x-ms-correlation-request-id": [ - "89d89206-e0a9-4ace-a181-8482d5d0f5c3" + "64824fe9-2c6a-4d40-ab35-f9936374eb99" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T095228Z:89d89206-e0a9-4ace-a181-8482d5d0f5c3" + "JIOINDIAWEST:20220516T160733Z:64824fe9-2c6a-4d40-ab35-f9936374eb99" ], "Date": [ - "Sat, 26 Mar 2022 09:52:27 GMT" + "Mon, 16 May 2022 16:07:33 GMT" ], "Content-Length": [ - "827" + "304" ], "Content-Type": [ "application/json" @@ -1436,26 +1584,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895\",\r\n \"name\": \"StorageContainer;Storage;pstestrg8895;pstestsa8895\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers\",\r\n \"properties\": {\r\n \"sourceResourceId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstestsa8895\",\r\n \"protectedItemCount\": 1,\r\n \"acquireStorageAccountLock\": \"Acquire\",\r\n \"friendlyName\": \"pstestsa8895\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"registrationStatus\": \"Registered\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerType\": \"StorageContainer\",\r\n \"protectableObjectType\": \"StorageContainer\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"dd22e1de-787b-43e0-8dee-746a465eef95\",\r\n \"name\": \"dd22e1de-787b-43e0-8dee-746a465eef95\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-05-16T16:06:48.7466287Z\",\r\n \"endTime\": \"2022-05-16T16:06:48.7466287Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"54107bf8-5161-4b8f-83cb-42f8709ad25f\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupProtectedItems?$filter=backupManagementType%20eq%20'AzureStorage'%20and%20itemType%20eq%20'AzureFileShare'&api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwUHJvdGVjdGVkSXRlbXM/JGZpbHRlcj1iYWNrdXBNYW5hZ2VtZW50VHlwZSUyMGVxJTIwJ0F6dXJlU3RvcmFnZSclMjBhbmQlMjBpdGVtVHlwZSUyMGVxJTIwJ0F6dXJlRmlsZVNoYXJlJyZhcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/dd22e1de-787b-43e0-8dee-746a465eef95?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9kZDIyZTFkZS03ODdiLTQzZTAtOGRlZS03NDZhNDY1ZWVmOTU/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1e9084a0-eac7-45dd-bb4d-86b544734f7f" + "0efe7a34-5f1a-41d2-87e7-dd3aa25b052b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -1469,11 +1617,11 @@ "nosniff" ], "x-ms-request-id": [ - "3a6b1206-8003-4201-9d2d-98acf7675853" + "24cc7adb-6067-430a-ab9b-89aa5f9111ef" ], "x-ms-client-request-id": [ - "1e9084a0-eac7-45dd-bb4d-86b544734f7f", - "1e9084a0-eac7-45dd-bb4d-86b544734f7f" + "0efe7a34-5f1a-41d2-87e7-dd3aa25b052b", + "0efe7a34-5f1a-41d2-87e7-dd3aa25b052b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1485,19 +1633,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "299" + "290" ], "x-ms-correlation-request-id": [ - "3a6b1206-8003-4201-9d2d-98acf7675853" + "24cc7adb-6067-430a-ab9b-89aa5f9111ef" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T095228Z:3a6b1206-8003-4201-9d2d-98acf7675853" + "JIOINDIAWEST:20220516T160734Z:24cc7adb-6067-430a-ab9b-89aa5f9111ef" ], "Date": [ - "Sat, 26 Mar 2022 09:52:27 GMT" + "Mon, 16 May 2022 16:07:34 GMT" ], "Content-Length": [ - "1219" + "304" ], "Content-Type": [ "application/json" @@ -1506,26 +1654,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;storage;pstestrg8895;pstestsa8895/protectedItems/AzureFileShare;698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959\",\r\n \"name\": \"AzureFileShare;698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems\",\r\n \"properties\": {\r\n \"kpisHealths\": {},\r\n \"friendlyName\": \"fs1\",\r\n \"protectionStatus\": \"Healthy\",\r\n \"protectionState\": \"IRPending\",\r\n \"lastBackupStatus\": \"IRPending\",\r\n \"protectedItemType\": \"AzureFileShareProtectedItem\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"workloadType\": \"AzureFileShare\",\r\n \"containerName\": \"StorageContainer;storage;pstestrg8895;pstestsa8895\",\r\n \"sourceResourceId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.storage/storageAccounts/pstestsa8895\",\r\n \"policyId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupPolicies/afspolicy1\",\r\n \"isArchiveEnabled\": false\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"dd22e1de-787b-43e0-8dee-746a465eef95\",\r\n \"name\": \"dd22e1de-787b-43e0-8dee-746a465eef95\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-05-16T16:06:48.7466287Z\",\r\n \"endTime\": \"2022-05-16T16:06:48.7466287Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"54107bf8-5161-4b8f-83cb-42f8709ad25f\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupProtectedItems?$filter=backupManagementType%20eq%20'AzureStorage'%20and%20itemType%20eq%20'AzureFileShare'&api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwUHJvdGVjdGVkSXRlbXM/JGZpbHRlcj1iYWNrdXBNYW5hZ2VtZW50VHlwZSUyMGVxJTIwJ0F6dXJlU3RvcmFnZSclMjBhbmQlMjBpdGVtVHlwZSUyMGVxJTIwJ0F6dXJlRmlsZVNoYXJlJyZhcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/54107bf8-5161-4b8f-83cb-42f8709ad25f?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy81NDEwN2JmOC01MTYxLTRiOGYtODNjYi00MmY4NzA5YWQyNWY/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1250d5d5-c8af-474c-99a1-c0800b2fe235" + "0efe7a34-5f1a-41d2-87e7-dd3aa25b052b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -1535,39 +1683,40 @@ "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-IIS/10.0", + "Microsoft-IIS/10.0" + ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "864d05fb-c905-4089-b6d0-3811762173e5" + "9b19d752-892d-445c-8be8-c6fb9d8b0cfb" ], "x-ms-client-request-id": [ - "1250d5d5-c8af-474c-99a1-c0800b2fe235", - "1250d5d5-c8af-474c-99a1-c0800b2fe235" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-IIS/10.0" + "0efe7a34-5f1a-41d2-87e7-dd3aa25b052b", + "0efe7a34-5f1a-41d2-87e7-dd3aa25b052b" ], "X-Powered-By": [ "ASP.NET" ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "298" + "299" ], "x-ms-correlation-request-id": [ - "864d05fb-c905-4089-b6d0-3811762173e5" + "9b19d752-892d-445c-8be8-c6fb9d8b0cfb" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T095313Z:864d05fb-c905-4089-b6d0-3811762173e5" + "JIOINDIAWEST:20220516T160734Z:9b19d752-892d-445c-8be8-c6fb9d8b0cfb" ], "Date": [ - "Sat, 26 Mar 2022 09:53:12 GMT" + "Mon, 16 May 2022 16:07:34 GMT" ], "Content-Length": [ - "1227" + "847" ], "Content-Type": [ "application/json" @@ -1576,26 +1725,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;storage;pstestrg8895;pstestsa8895/protectedItems/AzureFileShare;698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959\",\r\n \"name\": \"AzureFileShare;698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems\",\r\n \"properties\": {\r\n \"kpisHealths\": {},\r\n \"friendlyName\": \"fs1\",\r\n \"protectionStatus\": \"Healthy\",\r\n \"protectionState\": \"IRPending\",\r\n \"lastBackupStatus\": \"IRPending\",\r\n \"protectedItemType\": \"AzureFileShareProtectedItem\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"workloadType\": \"AzureFileShare\",\r\n \"containerName\": \"StorageContainer;storage;pstestrg8895;pstestsa8895\",\r\n \"sourceResourceId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.storage/storageAccounts/pstestsa8895\",\r\n \"policyId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupPolicies/NewAFSBackupPolicy\",\r\n \"isArchiveEnabled\": false\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/54107bf8-5161-4b8f-83cb-42f8709ad25f\",\r\n \"name\": \"54107bf8-5161-4b8f-83cb-42f8709ad25f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT41.8923475S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"Storage\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"File Share Name\": \"fs1\",\r\n \"Storage Account Name\": \"pstestsa8895\",\r\n \"Policy Name\": \"afspolicy1\"\r\n }\r\n },\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"ConfigureBackup\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-05-16T16:06:48.7466287Z\",\r\n \"endTime\": \"2022-05-16T16:07:30.6389762Z\",\r\n \"activityId\": \"0efe7a34-5f1a-41d2-87e7-dd3aa25b052b\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupPolicies/NewAFSBackupPolicy?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwUG9saWNpZXMvTmV3QUZTQmFja3VwUG9saWN5P2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupProtectionContainers?$filter=friendlyName%20eq%20'pstestsa8895'%20and%20backupManagementType%20eq%20'AzureStorage'%20and%20status%20eq%20'Registered'&api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwUHJvdGVjdGlvbkNvbnRhaW5lcnM/JGZpbHRlcj1mcmllbmRseU5hbWUlMjBlcSUyMCdwc3Rlc3RzYTg4OTUnJTIwYW5kJTIwYmFja3VwTWFuYWdlbWVudFR5cGUlMjBlcSUyMCdBenVyZVN0b3JhZ2UnJTIwYW5kJTIwc3RhdHVzJTIwZXElMjAnUmVnaXN0ZXJlZCcmYXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c13c054c-86bb-42dc-b829-609697e63ea8" + "4d2fc956-dcec-467b-96cb-269a8c2ee035" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -1609,11 +1758,11 @@ "nosniff" ], "x-ms-request-id": [ - "a71a94cf-583f-43ac-9112-0cfb1694e80d" + "31344075-1f0b-40f5-aff8-6a38d5b3f6f8" ], "x-ms-client-request-id": [ - "c13c054c-86bb-42dc-b829-609697e63ea8", - "c13c054c-86bb-42dc-b829-609697e63ea8" + "4d2fc956-dcec-467b-96cb-269a8c2ee035", + "4d2fc956-dcec-467b-96cb-269a8c2ee035" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1628,16 +1777,16 @@ "298" ], "x-ms-correlation-request-id": [ - "a71a94cf-583f-43ac-9112-0cfb1694e80d" + "31344075-1f0b-40f5-aff8-6a38d5b3f6f8" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T095229Z:a71a94cf-583f-43ac-9112-0cfb1694e80d" + "JIOINDIAWEST:20220516T160735Z:31344075-1f0b-40f5-aff8-6a38d5b3f6f8" ], "Date": [ - "Sat, 26 Mar 2022 09:52:28 GMT" + "Mon, 16 May 2022 16:07:35 GMT" ], "Content-Length": [ - "709" + "827" ], "Content-Type": [ "application/json" @@ -1646,32 +1795,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupPolicies/NewAFSBackupPolicy\",\r\n \"name\": \"NewAFSBackupPolicy\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupPolicies\",\r\n \"properties\": {\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"schedulePolicy\": {\r\n \"schedulePolicyType\": \"SimpleSchedulePolicy\",\r\n \"scheduleRunFrequency\": \"Daily\",\r\n \"scheduleRunTimes\": [\r\n \"2019-10-29T13: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 \"2019-10-29T13: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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895\",\r\n \"name\": \"StorageContainer;Storage;pstestrg8895;pstestsa8895\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers\",\r\n \"properties\": {\r\n \"sourceResourceId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstestsa8895\",\r\n \"protectedItemCount\": 1,\r\n \"acquireStorageAccountLock\": \"Acquire\",\r\n \"friendlyName\": \"pstestsa8895\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"registrationStatus\": \"Registered\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerType\": \"StorageContainer\",\r\n \"protectableObjectType\": \"StorageContainer\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3Bstorage%3Bpstestrg8895%3Bpstestsa8895/protectedItems/AzureFileShare%3B698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCc3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9wcm90ZWN0ZWRJdGVtcy9BenVyZUZpbGVTaGFyZSUzQjY5OGRmNTk1OTQ4ZTIzNTVmMmJiNzQ0YTQxY2YyNDVkNGJhMTI1NWQ5Njk5Y2MzYzJhZDFmNTA0NWUxNzc5NTk/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"protectedItemType\": \"AzureFileShareProtectedItem\",\r\n \"sourceResourceId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.storage/storageAccounts/pstestsa8895\",\r\n \"policyId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupPolicies/NewAFSBackupPolicy\"\r\n }\r\n}", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupProtectedItems?$filter=backupManagementType%20eq%20'AzureStorage'%20and%20itemType%20eq%20'AzureFileShare'&api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwUHJvdGVjdGVkSXRlbXM/JGZpbHRlcj1iYWNrdXBNYW5hZ2VtZW50VHlwZSUyMGVxJTIwJ0F6dXJlU3RvcmFnZSclMjBhbmQlMjBpdGVtVHlwZSUyMGVxJTIwJ0F6dXJlRmlsZVNoYXJlJyZhcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5e8325aa-e488-40cc-bb1f-f94d7d638d5c" + "44a63871-3376-4a97-9250-d48a7470ed4d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "441" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -1681,70 +1824,67 @@ "Pragma": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;storage;pstestrg8895;pstestsa8895/protectedItems/AzureFileShare;698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959/operationResults/aa0f277b-2aed-4a86-bf4f-81fd218341d7?api-version=2021-12-01" - ], - "Retry-After": [ - "60" - ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;storage;pstestrg8895;pstestsa8895/protectedItems/AzureFileShare;698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959/operationsStatus/aa0f277b-2aed-4a86-bf4f-81fd218341d7?api-version=2021-12-01" - ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "9eb88636-6dbf-46e1-8756-2c3a06c539c1" + "7acd4094-37be-4cb8-8a38-af76fc512754" ], "x-ms-client-request-id": [ - "5e8325aa-e488-40cc-bb1f-f94d7d638d5c", - "5e8325aa-e488-40cc-bb1f-f94d7d638d5c" + "44a63871-3376-4a97-9250-d48a7470ed4d", + "44a63871-3376-4a97-9250-d48a7470ed4d" ], "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-ratelimit-remaining-subscription-resource-requests": [ + "299" ], "x-ms-correlation-request-id": [ - "9eb88636-6dbf-46e1-8756-2c3a06c539c1" + "7acd4094-37be-4cb8-8a38-af76fc512754" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T095230Z:9eb88636-6dbf-46e1-8756-2c3a06c539c1" + "JIOINDIAWEST:20220516T160735Z:7acd4094-37be-4cb8-8a38-af76fc512754" ], "Date": [ - "Sat, 26 Mar 2022 09:52:29 GMT" + "Mon, 16 May 2022 16:07:35 GMT" + ], + "Content-Length": [ + "1219" + ], + "Content-Type": [ + "application/json" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, - "ResponseBody": "", - "StatusCode": 202 + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;storage;pstestrg8895;pstestsa8895/protectedItems/AzureFileShare;698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959\",\r\n \"name\": \"AzureFileShare;698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems\",\r\n \"properties\": {\r\n \"kpisHealths\": {},\r\n \"friendlyName\": \"fs1\",\r\n \"protectionStatus\": \"Healthy\",\r\n \"protectionState\": \"IRPending\",\r\n \"lastBackupStatus\": \"IRPending\",\r\n \"protectedItemType\": \"AzureFileShareProtectedItem\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"workloadType\": \"AzureFileShare\",\r\n \"containerName\": \"StorageContainer;storage;pstestrg8895;pstestsa8895\",\r\n \"sourceResourceId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.storage/storageAccounts/pstestsa8895\",\r\n \"policyId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupPolicies/afspolicy1\",\r\n \"isArchiveEnabled\": false\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/aa0f277b-2aed-4a86-bf4f-81fd218341d7?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9hYTBmMjc3Yi0yYWVkLTRhODYtYmY0Zi04MWZkMjE4MzQxZDc/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupProtectedItems?$filter=backupManagementType%20eq%20'AzureStorage'%20and%20itemType%20eq%20'AzureFileShare'&api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwUHJvdGVjdGVkSXRlbXM/JGZpbHRlcj1iYWNrdXBNYW5hZ2VtZW50VHlwZSUyMGVxJTIwJ0F6dXJlU3RvcmFnZSclMjBhbmQlMjBpdGVtVHlwZSUyMGVxJTIwJ0F6dXJlRmlsZVNoYXJlJyZhcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5e8325aa-e488-40cc-bb1f-f94d7d638d5c" + "52e7f7c2-2b81-45a5-aba7-d77f3ded0cc4" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -1758,11 +1898,11 @@ "nosniff" ], "x-ms-request-id": [ - "44043dcd-d00d-4a11-b047-55308b148d5b" + "1d6fcc15-79c8-4642-951b-ba472f0e8303" ], "x-ms-client-request-id": [ - "5e8325aa-e488-40cc-bb1f-f94d7d638d5c", - "5e8325aa-e488-40cc-bb1f-f94d7d638d5c" + "52e7f7c2-2b81-45a5-aba7-d77f3ded0cc4", + "52e7f7c2-2b81-45a5-aba7-d77f3ded0cc4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1774,19 +1914,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "292" + "298" ], "x-ms-correlation-request-id": [ - "44043dcd-d00d-4a11-b047-55308b148d5b" + "1d6fcc15-79c8-4642-951b-ba472f0e8303" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T095230Z:44043dcd-d00d-4a11-b047-55308b148d5b" + "JIOINDIAWEST:20220516T160815Z:1d6fcc15-79c8-4642-951b-ba472f0e8303" ], "Date": [ - "Sat, 26 Mar 2022 09:52:29 GMT" + "Mon, 16 May 2022 16:08:14 GMT" ], "Content-Length": [ - "188" + "1227" ], "Content-Type": [ "application/json" @@ -1795,26 +1935,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"aa0f277b-2aed-4a86-bf4f-81fd218341d7\",\r\n \"name\": \"aa0f277b-2aed-4a86-bf4f-81fd218341d7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-03-26T09:52:29.9540872Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;storage;pstestrg8895;pstestsa8895/protectedItems/AzureFileShare;698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959\",\r\n \"name\": \"AzureFileShare;698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems\",\r\n \"properties\": {\r\n \"kpisHealths\": {},\r\n \"friendlyName\": \"fs1\",\r\n \"protectionStatus\": \"Healthy\",\r\n \"protectionState\": \"IRPending\",\r\n \"lastBackupStatus\": \"IRPending\",\r\n \"protectedItemType\": \"AzureFileShareProtectedItem\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"workloadType\": \"AzureFileShare\",\r\n \"containerName\": \"StorageContainer;storage;pstestrg8895;pstestsa8895\",\r\n \"sourceResourceId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.storage/storageAccounts/pstestsa8895\",\r\n \"policyId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupPolicies/NewAFSBackupPolicy\",\r\n \"isArchiveEnabled\": false\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/aa0f277b-2aed-4a86-bf4f-81fd218341d7?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9hYTBmMjc3Yi0yYWVkLTRhODYtYmY0Zi04MWZkMjE4MzQxZDc/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupPolicies/NewAFSBackupPolicy?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwUG9saWNpZXMvTmV3QUZTQmFja3VwUG9saWN5P2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5e8325aa-e488-40cc-bb1f-f94d7d638d5c" + "d77c0ea0-c5ef-454a-b0a3-f0427402cdff" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -1828,11 +1968,11 @@ "nosniff" ], "x-ms-request-id": [ - "219bd18d-282d-46ce-9f73-7ea01f7e5c2c" + "29da5ecf-f009-4981-b873-5c569028f661" ], "x-ms-client-request-id": [ - "5e8325aa-e488-40cc-bb1f-f94d7d638d5c", - "5e8325aa-e488-40cc-bb1f-f94d7d638d5c" + "d77c0ea0-c5ef-454a-b0a3-f0427402cdff", + "d77c0ea0-c5ef-454a-b0a3-f0427402cdff" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1844,19 +1984,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "291" + "298" ], "x-ms-correlation-request-id": [ - "219bd18d-282d-46ce-9f73-7ea01f7e5c2c" + "29da5ecf-f009-4981-b873-5c569028f661" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T095240Z:219bd18d-282d-46ce-9f73-7ea01f7e5c2c" + "JIOINDIAWEST:20220516T160736Z:29da5ecf-f009-4981-b873-5c569028f661" ], "Date": [ - "Sat, 26 Mar 2022 09:52:40 GMT" + "Mon, 16 May 2022 16:07:36 GMT" ], "Content-Length": [ - "188" + "709" ], "Content-Type": [ "application/json" @@ -1865,26 +2005,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"aa0f277b-2aed-4a86-bf4f-81fd218341d7\",\r\n \"name\": \"aa0f277b-2aed-4a86-bf4f-81fd218341d7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-03-26T09:52:29.9540872Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupPolicies/NewAFSBackupPolicy\",\r\n \"name\": \"NewAFSBackupPolicy\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupPolicies\",\r\n \"properties\": {\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"schedulePolicy\": {\r\n \"schedulePolicyType\": \"SimpleSchedulePolicy\",\r\n \"scheduleRunFrequency\": \"Daily\",\r\n \"scheduleRunTimes\": [\r\n \"2019-10-29T13: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 \"2019-10-29T13: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/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/aa0f277b-2aed-4a86-bf4f-81fd218341d7?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9hYTBmMjc3Yi0yYWVkLTRhODYtYmY0Zi04MWZkMjE4MzQxZDc/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupPolicies/NewAFSBackupPolicy?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwUG9saWNpZXMvTmV3QUZTQmFja3VwUG9saWN5P2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5e8325aa-e488-40cc-bb1f-f94d7d638d5c" + "3204ff63-e722-4e5d-a1a9-38dc7c5ddc96" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -1898,11 +2038,11 @@ "nosniff" ], "x-ms-request-id": [ - "abd12e21-f441-47d5-873a-195091330be7" + "25d9dce1-6529-4074-8b3b-85a92aea499d" ], "x-ms-client-request-id": [ - "5e8325aa-e488-40cc-bb1f-f94d7d638d5c", - "5e8325aa-e488-40cc-bb1f-f94d7d638d5c" + "3204ff63-e722-4e5d-a1a9-38dc7c5ddc96", + "3204ff63-e722-4e5d-a1a9-38dc7c5ddc96" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1914,19 +2054,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "290" + "296" ], "x-ms-correlation-request-id": [ - "abd12e21-f441-47d5-873a-195091330be7" + "25d9dce1-6529-4074-8b3b-85a92aea499d" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T095251Z:abd12e21-f441-47d5-873a-195091330be7" + "JIOINDIAWEST:20220516T160737Z:25d9dce1-6529-4074-8b3b-85a92aea499d" ], "Date": [ - "Sat, 26 Mar 2022 09:52:51 GMT" + "Mon, 16 May 2022 16:07:37 GMT" ], "Content-Length": [ - "188" + "709" ], "Content-Type": [ "application/json" @@ -1935,26 +2075,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"aa0f277b-2aed-4a86-bf4f-81fd218341d7\",\r\n \"name\": \"aa0f277b-2aed-4a86-bf4f-81fd218341d7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-03-26T09:52:29.9540872Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupPolicies/NewAFSBackupPolicy\",\r\n \"name\": \"NewAFSBackupPolicy\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupPolicies\",\r\n \"properties\": {\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"schedulePolicy\": {\r\n \"schedulePolicyType\": \"SimpleSchedulePolicy\",\r\n \"scheduleRunFrequency\": \"Daily\",\r\n \"scheduleRunTimes\": [\r\n \"2019-10-29T13: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 \"2019-10-29T13: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/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/aa0f277b-2aed-4a86-bf4f-81fd218341d7?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9hYTBmMjc3Yi0yYWVkLTRhODYtYmY0Zi04MWZkMjE4MzQxZDc/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3Bstorage%3Bpstestrg8895%3Bpstestsa8895/protectedItems/AzureFileShare%3B698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCc3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9wcm90ZWN0ZWRJdGVtcy9BenVyZUZpbGVTaGFyZSUzQjY5OGRmNTk1OTQ4ZTIzNTVmMmJiNzQ0YTQxY2YyNDVkNGJhMTI1NWQ5Njk5Y2MzYzJhZDFmNTA0NWUxNzc5NTk/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"protectedItemType\": \"AzureFileShareProtectedItem\",\r\n \"sourceResourceId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.storage/storageAccounts/pstestsa8895\",\r\n \"policyId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupPolicies/NewAFSBackupPolicy\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "5e8325aa-e488-40cc-bb1f-f94d7d638d5c" + "3204ff63-e722-4e5d-a1a9-38dc7c5ddc96" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "441" ] }, "ResponseHeaders": { @@ -1964,36 +2110,459 @@ "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;storage;pstestrg8895;pstestsa8895/protectedItems/AzureFileShare;698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959/operationResults/31e6744d-29a2-43c7-9fce-f4ba51249bba?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;storage;pstestrg8895;pstestsa8895/protectedItems/AzureFileShare;698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959/operationsStatus/31e6744d-29a2-43c7-9fce-f4ba51249bba?api-version=2022-02-01" + ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "071ce814-d4b2-411f-8c99-00ce6cf5752d" + "8b9568c2-4856-457d-b792-086238b51051" ], "x-ms-client-request-id": [ - "5e8325aa-e488-40cc-bb1f-f94d7d638d5c", - "5e8325aa-e488-40cc-bb1f-f94d7d638d5c" + "3204ff63-e722-4e5d-a1a9-38dc7c5ddc96", + "3204ff63-e722-4e5d-a1a9-38dc7c5ddc96" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Server": [ - "Microsoft-IIS/10.0" - ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "289" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" ], "x-ms-correlation-request-id": [ - "071ce814-d4b2-411f-8c99-00ce6cf5752d" + "8b9568c2-4856-457d-b792-086238b51051" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T095301Z:071ce814-d4b2-411f-8c99-00ce6cf5752d" + "JIOINDIAWEST:20220516T160740Z:8b9568c2-4856-457d-b792-086238b51051" ], "Date": [ - "Sat, 26 Mar 2022 09:53:01 GMT" + "Mon, 16 May 2022 16:07:39 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/31e6744d-29a2-43c7-9fce-f4ba51249bba?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy8zMWU2NzQ0ZC0yOWEyLTQzYzctOWZjZS1mNGJhNTEyNDliYmE/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3204ff63-e722-4e5d-a1a9-38dc7c5ddc96" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "04044053-b381-4442-87c2-c5c4504ab4bf" + ], + "x-ms-client-request-id": [ + "3204ff63-e722-4e5d-a1a9-38dc7c5ddc96", + "3204ff63-e722-4e5d-a1a9-38dc7c5ddc96" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "289" + ], + "x-ms-correlation-request-id": [ + "04044053-b381-4442-87c2-c5c4504ab4bf" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T160740Z:04044053-b381-4442-87c2-c5c4504ab4bf" + ], + "Date": [ + "Mon, 16 May 2022 16:07:40 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"31e6744d-29a2-43c7-9fce-f4ba51249bba\",\r\n \"name\": \"31e6744d-29a2-43c7-9fce-f4ba51249bba\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T16:07:40.1564999Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/31e6744d-29a2-43c7-9fce-f4ba51249bba?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy8zMWU2NzQ0ZC0yOWEyLTQzYzctOWZjZS1mNGJhNTEyNDliYmE/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3204ff63-e722-4e5d-a1a9-38dc7c5ddc96" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "9d846ac3-edfb-4afc-b836-8ae80c5e0fb1" + ], + "x-ms-client-request-id": [ + "3204ff63-e722-4e5d-a1a9-38dc7c5ddc96", + "3204ff63-e722-4e5d-a1a9-38dc7c5ddc96" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "288" + ], + "x-ms-correlation-request-id": [ + "9d846ac3-edfb-4afc-b836-8ae80c5e0fb1" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T160746Z:9d846ac3-edfb-4afc-b836-8ae80c5e0fb1" + ], + "Date": [ + "Mon, 16 May 2022 16:07:46 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"31e6744d-29a2-43c7-9fce-f4ba51249bba\",\r\n \"name\": \"31e6744d-29a2-43c7-9fce-f4ba51249bba\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T16:07:40.1564999Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/31e6744d-29a2-43c7-9fce-f4ba51249bba?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy8zMWU2NzQ0ZC0yOWEyLTQzYzctOWZjZS1mNGJhNTEyNDliYmE/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3204ff63-e722-4e5d-a1a9-38dc7c5ddc96" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "33eefb40-a1bc-4f3c-8bc9-e677900905dc" + ], + "x-ms-client-request-id": [ + "3204ff63-e722-4e5d-a1a9-38dc7c5ddc96", + "3204ff63-e722-4e5d-a1a9-38dc7c5ddc96" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "287" + ], + "x-ms-correlation-request-id": [ + "33eefb40-a1bc-4f3c-8bc9-e677900905dc" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T160751Z:33eefb40-a1bc-4f3c-8bc9-e677900905dc" + ], + "Date": [ + "Mon, 16 May 2022 16:07:51 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"31e6744d-29a2-43c7-9fce-f4ba51249bba\",\r\n \"name\": \"31e6744d-29a2-43c7-9fce-f4ba51249bba\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T16:07:40.1564999Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/31e6744d-29a2-43c7-9fce-f4ba51249bba?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy8zMWU2NzQ0ZC0yOWEyLTQzYzctOWZjZS1mNGJhNTEyNDliYmE/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3204ff63-e722-4e5d-a1a9-38dc7c5ddc96" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "d9ee3052-5334-473b-9171-11c9974c2fd8" + ], + "x-ms-client-request-id": [ + "3204ff63-e722-4e5d-a1a9-38dc7c5ddc96", + "3204ff63-e722-4e5d-a1a9-38dc7c5ddc96" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "286" + ], + "x-ms-correlation-request-id": [ + "d9ee3052-5334-473b-9171-11c9974c2fd8" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T160757Z:d9ee3052-5334-473b-9171-11c9974c2fd8" + ], + "Date": [ + "Mon, 16 May 2022 16:07:56 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"31e6744d-29a2-43c7-9fce-f4ba51249bba\",\r\n \"name\": \"31e6744d-29a2-43c7-9fce-f4ba51249bba\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T16:07:40.1564999Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/31e6744d-29a2-43c7-9fce-f4ba51249bba?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy8zMWU2NzQ0ZC0yOWEyLTQzYzctOWZjZS1mNGJhNTEyNDliYmE/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3204ff63-e722-4e5d-a1a9-38dc7c5ddc96" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "c0a077e0-1420-4712-b13f-235fa9229e50" + ], + "x-ms-client-request-id": [ + "3204ff63-e722-4e5d-a1a9-38dc7c5ddc96", + "3204ff63-e722-4e5d-a1a9-38dc7c5ddc96" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "285" + ], + "x-ms-correlation-request-id": [ + "c0a077e0-1420-4712-b13f-235fa9229e50" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T160802Z:c0a077e0-1420-4712-b13f-235fa9229e50" + ], + "Date": [ + "Mon, 16 May 2022 16:08:02 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"31e6744d-29a2-43c7-9fce-f4ba51249bba\",\r\n \"name\": \"31e6744d-29a2-43c7-9fce-f4ba51249bba\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T16:07:40.1564999Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/31e6744d-29a2-43c7-9fce-f4ba51249bba?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy8zMWU2NzQ0ZC0yOWEyLTQzYzctOWZjZS1mNGJhNTEyNDliYmE/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3204ff63-e722-4e5d-a1a9-38dc7c5ddc96" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "dae54c84-a947-4f79-b81a-a2253f75e818" + ], + "x-ms-client-request-id": [ + "3204ff63-e722-4e5d-a1a9-38dc7c5ddc96", + "3204ff63-e722-4e5d-a1a9-38dc7c5ddc96" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "284" + ], + "x-ms-correlation-request-id": [ + "dae54c84-a947-4f79-b81a-a2253f75e818" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T160808Z:dae54c84-a947-4f79-b81a-a2253f75e818" + ], + "Date": [ + "Mon, 16 May 2022 16:08:08 GMT" ], "Content-Length": [ "188" @@ -2005,26 +2574,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"aa0f277b-2aed-4a86-bf4f-81fd218341d7\",\r\n \"name\": \"aa0f277b-2aed-4a86-bf4f-81fd218341d7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-03-26T09:52:29.9540872Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"31e6744d-29a2-43c7-9fce-f4ba51249bba\",\r\n \"name\": \"31e6744d-29a2-43c7-9fce-f4ba51249bba\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T16:07:40.1564999Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/aa0f277b-2aed-4a86-bf4f-81fd218341d7?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9hYTBmMjc3Yi0yYWVkLTRhODYtYmY0Zi04MWZkMjE4MzQxZDc/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/31e6744d-29a2-43c7-9fce-f4ba51249bba?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy8zMWU2NzQ0ZC0yOWEyLTQzYzctOWZjZS1mNGJhNTEyNDliYmE/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5e8325aa-e488-40cc-bb1f-f94d7d638d5c" + "3204ff63-e722-4e5d-a1a9-38dc7c5ddc96" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -2038,11 +2607,11 @@ "nosniff" ], "x-ms-request-id": [ - "6801fc31-4096-49c5-bca7-33a12e7cde3f" + "563444d0-532c-40e9-92f4-de5db075e97e" ], "x-ms-client-request-id": [ - "5e8325aa-e488-40cc-bb1f-f94d7d638d5c", - "5e8325aa-e488-40cc-bb1f-f94d7d638d5c" + "3204ff63-e722-4e5d-a1a9-38dc7c5ddc96", + "3204ff63-e722-4e5d-a1a9-38dc7c5ddc96" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2054,16 +2623,16 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "288" + "283" ], "x-ms-correlation-request-id": [ - "6801fc31-4096-49c5-bca7-33a12e7cde3f" + "563444d0-532c-40e9-92f4-de5db075e97e" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T095312Z:6801fc31-4096-49c5-bca7-33a12e7cde3f" + "JIOINDIAWEST:20220516T160814Z:563444d0-532c-40e9-92f4-de5db075e97e" ], "Date": [ - "Sat, 26 Mar 2022 09:53:11 GMT" + "Mon, 16 May 2022 16:08:13 GMT" ], "Content-Length": [ "304" @@ -2075,26 +2644,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"aa0f277b-2aed-4a86-bf4f-81fd218341d7\",\r\n \"name\": \"aa0f277b-2aed-4a86-bf4f-81fd218341d7\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-03-26T09:52:29.9540872Z\",\r\n \"endTime\": \"2022-03-26T09:52:29.9540872Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"0a6b6438-49ca-4ab6-ab29-e9c270c84788\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"31e6744d-29a2-43c7-9fce-f4ba51249bba\",\r\n \"name\": \"31e6744d-29a2-43c7-9fce-f4ba51249bba\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-05-16T16:07:40.1564999Z\",\r\n \"endTime\": \"2022-05-16T16:07:40.1564999Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"20de1c1b-1c32-4caf-b9ac-9307e1d8f874\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/aa0f277b-2aed-4a86-bf4f-81fd218341d7?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9hYTBmMjc3Yi0yYWVkLTRhODYtYmY0Zi04MWZkMjE4MzQxZDc/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/31e6744d-29a2-43c7-9fce-f4ba51249bba?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy8zMWU2NzQ0ZC0yOWEyLTQzYzctOWZjZS1mNGJhNTEyNDliYmE/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5e8325aa-e488-40cc-bb1f-f94d7d638d5c" + "3204ff63-e722-4e5d-a1a9-38dc7c5ddc96" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -2108,11 +2677,11 @@ "nosniff" ], "x-ms-request-id": [ - "44b7f818-48d0-49e4-9256-a0b0ad0584fc" + "7e9a3adf-5ee9-4dba-8bfa-a6d1c90f4287" ], "x-ms-client-request-id": [ - "5e8325aa-e488-40cc-bb1f-f94d7d638d5c", - "5e8325aa-e488-40cc-bb1f-f94d7d638d5c" + "3204ff63-e722-4e5d-a1a9-38dc7c5ddc96", + "3204ff63-e722-4e5d-a1a9-38dc7c5ddc96" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2124,16 +2693,16 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "287" + "282" ], "x-ms-correlation-request-id": [ - "44b7f818-48d0-49e4-9256-a0b0ad0584fc" + "7e9a3adf-5ee9-4dba-8bfa-a6d1c90f4287" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T095312Z:44b7f818-48d0-49e4-9256-a0b0ad0584fc" + "JIOINDIAWEST:20220516T160814Z:7e9a3adf-5ee9-4dba-8bfa-a6d1c90f4287" ], "Date": [ - "Sat, 26 Mar 2022 09:53:12 GMT" + "Mon, 16 May 2022 16:08:13 GMT" ], "Content-Length": [ "304" @@ -2145,26 +2714,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"aa0f277b-2aed-4a86-bf4f-81fd218341d7\",\r\n \"name\": \"aa0f277b-2aed-4a86-bf4f-81fd218341d7\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-03-26T09:52:29.9540872Z\",\r\n \"endTime\": \"2022-03-26T09:52:29.9540872Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"0a6b6438-49ca-4ab6-ab29-e9c270c84788\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"31e6744d-29a2-43c7-9fce-f4ba51249bba\",\r\n \"name\": \"31e6744d-29a2-43c7-9fce-f4ba51249bba\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-05-16T16:07:40.1564999Z\",\r\n \"endTime\": \"2022-05-16T16:07:40.1564999Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"20de1c1b-1c32-4caf-b9ac-9307e1d8f874\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/0a6b6438-49ca-4ab6-ab29-e9c270c84788?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy8wYTZiNjQzOC00OWNhLTRhYjYtYWIyOS1lOWMyNzBjODQ3ODg/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/20de1c1b-1c32-4caf-b9ac-9307e1d8f874?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy8yMGRlMWMxYi0xYzMyLTRjYWYtYjlhYy05MzA3ZTFkOGY4NzQ/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5e8325aa-e488-40cc-bb1f-f94d7d638d5c" + "3204ff63-e722-4e5d-a1a9-38dc7c5ddc96" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -2182,11 +2751,11 @@ "nosniff" ], "x-ms-request-id": [ - "fd862794-65e4-4673-a4f1-6ecfc2261537" + "ee79b2da-ad4f-4087-9204-55aa1dc2d69c" ], "x-ms-client-request-id": [ - "5e8325aa-e488-40cc-bb1f-f94d7d638d5c", - "5e8325aa-e488-40cc-bb1f-f94d7d638d5c" + "3204ff63-e722-4e5d-a1a9-38dc7c5ddc96", + "3204ff63-e722-4e5d-a1a9-38dc7c5ddc96" ], "X-Powered-By": [ "ASP.NET" @@ -2198,13 +2767,13 @@ "298" ], "x-ms-correlation-request-id": [ - "fd862794-65e4-4673-a4f1-6ecfc2261537" + "ee79b2da-ad4f-4087-9204-55aa1dc2d69c" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T095313Z:fd862794-65e4-4673-a4f1-6ecfc2261537" + "JIOINDIAWEST:20220516T160815Z:ee79b2da-ad4f-4087-9204-55aa1dc2d69c" ], "Date": [ - "Sat, 26 Mar 2022 09:53:12 GMT" + "Mon, 16 May 2022 16:08:14 GMT" ], "Content-Length": [ "855" @@ -2216,26 +2785,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/0a6b6438-49ca-4ab6-ab29-e9c270c84788\",\r\n \"name\": \"0a6b6438-49ca-4ab6-ab29-e9c270c84788\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT41.4628665S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"Storage\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"File Share Name\": \"fs1\",\r\n \"Storage Account Name\": \"pstestsa8895\",\r\n \"Policy Name\": \"NewAFSBackupPolicy\"\r\n }\r\n },\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"ConfigureBackup\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-03-26T09:52:29.9540872Z\",\r\n \"endTime\": \"2022-03-26T09:53:11.4169537Z\",\r\n \"activityId\": \"5e8325aa-e488-40cc-bb1f-f94d7d638d5c\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/20de1c1b-1c32-4caf-b9ac-9307e1d8f874\",\r\n \"name\": \"20de1c1b-1c32-4caf-b9ac-9307e1d8f874\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT32.3379696S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"Storage\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"File Share Name\": \"fs1\",\r\n \"Storage Account Name\": \"pstestsa8895\",\r\n \"Policy Name\": \"NewAFSBackupPolicy\"\r\n }\r\n },\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"ConfigureBackup\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-05-16T16:07:40.1564999Z\",\r\n \"endTime\": \"2022-05-16T16:08:12.4944695Z\",\r\n \"activityId\": \"3204ff63-e722-4e5d-a1a9-38dc7c5ddc96\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3Bstorage%3Bpstestrg8895%3Bpstestsa8895/protectedItems/AzureFileShare%3B698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959/recoveryPoints?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCc3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9wcm90ZWN0ZWRJdGVtcy9BenVyZUZpbGVTaGFyZSUzQjY5OGRmNTk1OTQ4ZTIzNTVmMmJiNzQ0YTQxY2YyNDVkNGJhMTI1NWQ5Njk5Y2MzYzJhZDFmNTA0NWUxNzc5NTkvcmVjb3ZlcnlQb2ludHM/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3Bstorage%3Bpstestrg8895%3Bpstestsa8895/protectedItems/AzureFileShare%3B698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959/recoveryPoints?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCc3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9wcm90ZWN0ZWRJdGVtcy9BenVyZUZpbGVTaGFyZSUzQjY5OGRmNTk1OTQ4ZTIzNTVmMmJiNzQ0YTQxY2YyNDVkNGJhMTI1NWQ5Njk5Y2MzYzJhZDFmNTA0NWUxNzc5NTkvcmVjb3ZlcnlQb2ludHM/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b2b5b25d-395b-4474-ba5f-80a59ab92dd5" + "a1683137-e468-4d8f-bb2e-1f2f89a0205c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -2249,11 +2818,11 @@ "nosniff" ], "x-ms-request-id": [ - "fcbca759-7015-452c-9680-d31d0f18ff1c" + "d2aebc1b-6f2f-48ce-bfeb-360fa813b1f3" ], "x-ms-client-request-id": [ - "b2b5b25d-395b-4474-ba5f-80a59ab92dd5", - "b2b5b25d-395b-4474-ba5f-80a59ab92dd5" + "a1683137-e468-4d8f-bb2e-1f2f89a0205c", + "a1683137-e468-4d8f-bb2e-1f2f89a0205c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2268,13 +2837,83 @@ "299" ], "x-ms-correlation-request-id": [ - "fcbca759-7015-452c-9680-d31d0f18ff1c" + "d2aebc1b-6f2f-48ce-bfeb-360fa813b1f3" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T160816Z:d2aebc1b-6f2f-48ce-bfeb-360fa813b1f3" + ], + "Date": [ + "Mon, 16 May 2022 16:08:15 GMT" + ], + "Content-Length": [ + "12" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupResourceGuardProxies?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwUmVzb3VyY2VHdWFyZFByb3hpZXM/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a1683137-e468-4d8f-bb2e-1f2f89a0205c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "4e925be8-e6ca-4b2f-9682-b93c02f90824" + ], + "x-ms-client-request-id": [ + "a1683137-e468-4d8f-bb2e-1f2f89a0205c", + "a1683137-e468-4d8f-bb2e-1f2f89a0205c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "4e925be8-e6ca-4b2f-9682-b93c02f90824" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T095313Z:fcbca759-7015-452c-9680-d31d0f18ff1c" + "JIOINDIAWEST:20220516T160816Z:4e925be8-e6ca-4b2f-9682-b93c02f90824" ], "Date": [ - "Sat, 26 Mar 2022 09:53:13 GMT" + "Mon, 16 May 2022 16:08:15 GMT" ], "Content-Length": [ "12" @@ -2290,22 +2929,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3Bstorage%3Bpstestrg8895%3Bpstestsa8895/protectedItems/AzureFileShare%3B698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCc3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9wcm90ZWN0ZWRJdGVtcy9BenVyZUZpbGVTaGFyZSUzQjY5OGRmNTk1OTQ4ZTIzNTVmMmJiNzQ0YTQxY2YyNDVkNGJhMTI1NWQ5Njk5Y2MzYzJhZDFmNTA0NWUxNzc5NTk/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3Bstorage%3Bpstestrg8895%3Bpstestsa8895/protectedItems/AzureFileShare%3B698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCc3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9wcm90ZWN0ZWRJdGVtcy9BenVyZUZpbGVTaGFyZSUzQjY5OGRmNTk1OTQ4ZTIzNTVmMmJiNzQ0YTQxY2YyNDVkNGJhMTI1NWQ5Njk5Y2MzYzJhZDFmNTA0NWUxNzc5NTk/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b2b5b25d-395b-4474-ba5f-80a59ab92dd5" + "a1683137-e468-4d8f-bb2e-1f2f89a0205c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -2316,23 +2955,23 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperationResults/90d57450-1a8a-4d73-b29f-773b6d8e98b5?api-version=2021-12-01" + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperationResults/4ce1ea44-4a2c-4ab9-9df8-db35bac99c26?api-version=2022-02-01" ], "Retry-After": [ "60" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/90d57450-1a8a-4d73-b29f-773b6d8e98b5?api-version=2021-12-01" + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/4ce1ea44-4a2c-4ab9-9df8-db35bac99c26?api-version=2022-02-01" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "00bf9587-a3f4-477d-ae6c-a06486c0d154" + "53edadcb-0b13-4591-8485-091947819c85" ], "x-ms-client-request-id": [ - "b2b5b25d-395b-4474-ba5f-80a59ab92dd5", - "b2b5b25d-395b-4474-ba5f-80a59ab92dd5" + "a1683137-e468-4d8f-bb2e-1f2f89a0205c", + "a1683137-e468-4d8f-bb2e-1f2f89a0205c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2344,13 +2983,13 @@ "14999" ], "x-ms-correlation-request-id": [ - "00bf9587-a3f4-477d-ae6c-a06486c0d154" + "53edadcb-0b13-4591-8485-091947819c85" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T095314Z:00bf9587-a3f4-477d-ae6c-a06486c0d154" + "JIOINDIAWEST:20220516T160817Z:53edadcb-0b13-4591-8485-091947819c85" ], "Date": [ - "Sat, 26 Mar 2022 09:53:14 GMT" + "Mon, 16 May 2022 16:08:17 GMT" ], "Expires": [ "-1" @@ -2363,22 +3002,22 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/90d57450-1a8a-4d73-b29f-773b6d8e98b5?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy85MGQ1NzQ1MC0xYThhLTRkNzMtYjI5Zi03NzNiNmQ4ZTk4YjU/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/4ce1ea44-4a2c-4ab9-9df8-db35bac99c26?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy80Y2UxZWE0NC00YTJjLTRhYjktOWRmOC1kYjM1YmFjOTljMjY/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b2b5b25d-395b-4474-ba5f-80a59ab92dd5" + "a1683137-e468-4d8f-bb2e-1f2f89a0205c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -2392,11 +3031,11 @@ "nosniff" ], "x-ms-request-id": [ - "ddf67f46-4385-45e8-b710-25f0478c4c38" + "40d59a3c-5804-4aee-bc91-acd9264a8549" ], "x-ms-client-request-id": [ - "b2b5b25d-395b-4474-ba5f-80a59ab92dd5", - "b2b5b25d-395b-4474-ba5f-80a59ab92dd5" + "a1683137-e468-4d8f-bb2e-1f2f89a0205c", + "a1683137-e468-4d8f-bb2e-1f2f89a0205c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2408,16 +3047,16 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "286" + "281" ], "x-ms-correlation-request-id": [ - "ddf67f46-4385-45e8-b710-25f0478c4c38" + "40d59a3c-5804-4aee-bc91-acd9264a8549" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T095315Z:ddf67f46-4385-45e8-b710-25f0478c4c38" + "JIOINDIAWEST:20220516T160818Z:40d59a3c-5804-4aee-bc91-acd9264a8549" ], "Date": [ - "Sat, 26 Mar 2022 09:53:14 GMT" + "Mon, 16 May 2022 16:08:18 GMT" ], "Content-Length": [ "188" @@ -2429,26 +3068,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"90d57450-1a8a-4d73-b29f-773b6d8e98b5\",\r\n \"name\": \"90d57450-1a8a-4d73-b29f-773b6d8e98b5\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-03-26T09:53:14.7875007Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"4ce1ea44-4a2c-4ab9-9df8-db35bac99c26\",\r\n \"name\": \"4ce1ea44-4a2c-4ab9-9df8-db35bac99c26\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T16:08:17.7064574Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/90d57450-1a8a-4d73-b29f-773b6d8e98b5?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy85MGQ1NzQ1MC0xYThhLTRkNzMtYjI5Zi03NzNiNmQ4ZTk4YjU/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/4ce1ea44-4a2c-4ab9-9df8-db35bac99c26?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy80Y2UxZWE0NC00YTJjLTRhYjktOWRmOC1kYjM1YmFjOTljMjY/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b2b5b25d-395b-4474-ba5f-80a59ab92dd5" + "a1683137-e468-4d8f-bb2e-1f2f89a0205c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -2462,11 +3101,11 @@ "nosniff" ], "x-ms-request-id": [ - "b1cbdcc8-f8ed-473e-98be-273b98e4ca2c" + "8ce7bd31-3fd3-432b-956e-3fda31f040ae" ], "x-ms-client-request-id": [ - "b2b5b25d-395b-4474-ba5f-80a59ab92dd5", - "b2b5b25d-395b-4474-ba5f-80a59ab92dd5" + "a1683137-e468-4d8f-bb2e-1f2f89a0205c", + "a1683137-e468-4d8f-bb2e-1f2f89a0205c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2478,16 +3117,16 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "285" + "280" ], "x-ms-correlation-request-id": [ - "b1cbdcc8-f8ed-473e-98be-273b98e4ca2c" + "8ce7bd31-3fd3-432b-956e-3fda31f040ae" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T095325Z:b1cbdcc8-f8ed-473e-98be-273b98e4ca2c" + "JIOINDIAWEST:20220516T160823Z:8ce7bd31-3fd3-432b-956e-3fda31f040ae" ], "Date": [ - "Sat, 26 Mar 2022 09:53:24 GMT" + "Mon, 16 May 2022 16:08:23 GMT" ], "Content-Length": [ "188" @@ -2499,26 +3138,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"90d57450-1a8a-4d73-b29f-773b6d8e98b5\",\r\n \"name\": \"90d57450-1a8a-4d73-b29f-773b6d8e98b5\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-03-26T09:53:14.7875007Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"4ce1ea44-4a2c-4ab9-9df8-db35bac99c26\",\r\n \"name\": \"4ce1ea44-4a2c-4ab9-9df8-db35bac99c26\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T16:08:17.7064574Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/90d57450-1a8a-4d73-b29f-773b6d8e98b5?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy85MGQ1NzQ1MC0xYThhLTRkNzMtYjI5Zi03NzNiNmQ4ZTk4YjU/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/4ce1ea44-4a2c-4ab9-9df8-db35bac99c26?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy80Y2UxZWE0NC00YTJjLTRhYjktOWRmOC1kYjM1YmFjOTljMjY/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b2b5b25d-395b-4474-ba5f-80a59ab92dd5" + "a1683137-e468-4d8f-bb2e-1f2f89a0205c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -2532,11 +3171,11 @@ "nosniff" ], "x-ms-request-id": [ - "f7af8404-61c1-4b00-ab26-96c901f91827" + "1f7a1824-48a1-4bf0-be5a-0451ccd786a2" ], "x-ms-client-request-id": [ - "b2b5b25d-395b-4474-ba5f-80a59ab92dd5", - "b2b5b25d-395b-4474-ba5f-80a59ab92dd5" + "a1683137-e468-4d8f-bb2e-1f2f89a0205c", + "a1683137-e468-4d8f-bb2e-1f2f89a0205c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2548,16 +3187,156 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "284" + "279" + ], + "x-ms-correlation-request-id": [ + "1f7a1824-48a1-4bf0-be5a-0451ccd786a2" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T160829Z:1f7a1824-48a1-4bf0-be5a-0451ccd786a2" + ], + "Date": [ + "Mon, 16 May 2022 16:08:28 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"4ce1ea44-4a2c-4ab9-9df8-db35bac99c26\",\r\n \"name\": \"4ce1ea44-4a2c-4ab9-9df8-db35bac99c26\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T16:08:17.7064574Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/4ce1ea44-4a2c-4ab9-9df8-db35bac99c26?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy80Y2UxZWE0NC00YTJjLTRhYjktOWRmOC1kYjM1YmFjOTljMjY/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a1683137-e468-4d8f-bb2e-1f2f89a0205c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "dae3f432-9e47-4f74-aeaa-092e41362d19" + ], + "x-ms-client-request-id": [ + "a1683137-e468-4d8f-bb2e-1f2f89a0205c", + "a1683137-e468-4d8f-bb2e-1f2f89a0205c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "278" + ], + "x-ms-correlation-request-id": [ + "dae3f432-9e47-4f74-aeaa-092e41362d19" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T160834Z:dae3f432-9e47-4f74-aeaa-092e41362d19" + ], + "Date": [ + "Mon, 16 May 2022 16:08:34 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"4ce1ea44-4a2c-4ab9-9df8-db35bac99c26\",\r\n \"name\": \"4ce1ea44-4a2c-4ab9-9df8-db35bac99c26\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T16:08:17.7064574Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/4ce1ea44-4a2c-4ab9-9df8-db35bac99c26?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy80Y2UxZWE0NC00YTJjLTRhYjktOWRmOC1kYjM1YmFjOTljMjY/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a1683137-e468-4d8f-bb2e-1f2f89a0205c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "23d2a57c-e437-48b0-9689-6b4ce1c8d3ad" + ], + "x-ms-client-request-id": [ + "a1683137-e468-4d8f-bb2e-1f2f89a0205c", + "a1683137-e468-4d8f-bb2e-1f2f89a0205c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "277" ], "x-ms-correlation-request-id": [ - "f7af8404-61c1-4b00-ab26-96c901f91827" + "23d2a57c-e437-48b0-9689-6b4ce1c8d3ad" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T095336Z:f7af8404-61c1-4b00-ab26-96c901f91827" + "JIOINDIAWEST:20220516T160840Z:23d2a57c-e437-48b0-9689-6b4ce1c8d3ad" ], "Date": [ - "Sat, 26 Mar 2022 09:53:36 GMT" + "Mon, 16 May 2022 16:08:39 GMT" ], "Content-Length": [ "304" @@ -2569,26 +3348,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"90d57450-1a8a-4d73-b29f-773b6d8e98b5\",\r\n \"name\": \"90d57450-1a8a-4d73-b29f-773b6d8e98b5\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-03-26T09:53:14.7875007Z\",\r\n \"endTime\": \"2022-03-26T09:53:14.7875007Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"3f952331-a043-41a6-a5b0-e16faf287f14\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"4ce1ea44-4a2c-4ab9-9df8-db35bac99c26\",\r\n \"name\": \"4ce1ea44-4a2c-4ab9-9df8-db35bac99c26\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-05-16T16:08:17.7064574Z\",\r\n \"endTime\": \"2022-05-16T16:08:17.7064574Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"d8c7bc77-46c9-4893-919e-0550265e5c6c\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/90d57450-1a8a-4d73-b29f-773b6d8e98b5?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy85MGQ1NzQ1MC0xYThhLTRkNzMtYjI5Zi03NzNiNmQ4ZTk4YjU/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/4ce1ea44-4a2c-4ab9-9df8-db35bac99c26?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy80Y2UxZWE0NC00YTJjLTRhYjktOWRmOC1kYjM1YmFjOTljMjY/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b2b5b25d-395b-4474-ba5f-80a59ab92dd5" + "a1683137-e468-4d8f-bb2e-1f2f89a0205c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -2602,11 +3381,11 @@ "nosniff" ], "x-ms-request-id": [ - "b48253b6-6869-45c1-81d4-7cf170ca9501" + "630aeb2d-d9c5-4fa8-8ad3-05141a7a87a7" ], "x-ms-client-request-id": [ - "b2b5b25d-395b-4474-ba5f-80a59ab92dd5", - "b2b5b25d-395b-4474-ba5f-80a59ab92dd5" + "a1683137-e468-4d8f-bb2e-1f2f89a0205c", + "a1683137-e468-4d8f-bb2e-1f2f89a0205c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2618,16 +3397,16 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "283" + "276" ], "x-ms-correlation-request-id": [ - "b48253b6-6869-45c1-81d4-7cf170ca9501" + "630aeb2d-d9c5-4fa8-8ad3-05141a7a87a7" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T095336Z:b48253b6-6869-45c1-81d4-7cf170ca9501" + "JIOINDIAWEST:20220516T160840Z:630aeb2d-d9c5-4fa8-8ad3-05141a7a87a7" ], "Date": [ - "Sat, 26 Mar 2022 09:53:36 GMT" + "Mon, 16 May 2022 16:08:40 GMT" ], "Content-Length": [ "304" @@ -2639,26 +3418,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"90d57450-1a8a-4d73-b29f-773b6d8e98b5\",\r\n \"name\": \"90d57450-1a8a-4d73-b29f-773b6d8e98b5\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-03-26T09:53:14.7875007Z\",\r\n \"endTime\": \"2022-03-26T09:53:14.7875007Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"3f952331-a043-41a6-a5b0-e16faf287f14\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"4ce1ea44-4a2c-4ab9-9df8-db35bac99c26\",\r\n \"name\": \"4ce1ea44-4a2c-4ab9-9df8-db35bac99c26\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-05-16T16:08:17.7064574Z\",\r\n \"endTime\": \"2022-05-16T16:08:17.7064574Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"d8c7bc77-46c9-4893-919e-0550265e5c6c\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/3f952331-a043-41a6-a5b0-e16faf287f14?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy8zZjk1MjMzMS1hMDQzLTQxYTYtYTViMC1lMTZmYWYyODdmMTQ/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/d8c7bc77-46c9-4893-919e-0550265e5c6c?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9kOGM3YmM3Ny00NmM5LTQ4OTMtOTE5ZS0wNTUwMjY1ZTVjNmM/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b2b5b25d-395b-4474-ba5f-80a59ab92dd5" + "a1683137-e468-4d8f-bb2e-1f2f89a0205c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -2676,11 +3455,11 @@ "nosniff" ], "x-ms-request-id": [ - "18968fee-4e22-44bf-ad9c-e21e833a107d" + "1e0d7503-7ab7-4c53-b2d6-ada2aa22cddf" ], "x-ms-client-request-id": [ - "b2b5b25d-395b-4474-ba5f-80a59ab92dd5", - "b2b5b25d-395b-4474-ba5f-80a59ab92dd5" + "a1683137-e468-4d8f-bb2e-1f2f89a0205c", + "a1683137-e468-4d8f-bb2e-1f2f89a0205c" ], "X-Powered-By": [ "ASP.NET" @@ -2692,13 +3471,13 @@ "297" ], "x-ms-correlation-request-id": [ - "18968fee-4e22-44bf-ad9c-e21e833a107d" + "1e0d7503-7ab7-4c53-b2d6-ada2aa22cddf" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T095337Z:18968fee-4e22-44bf-ad9c-e21e833a107d" + "JIOINDIAWEST:20220516T160841Z:1e0d7503-7ab7-4c53-b2d6-ada2aa22cddf" ], "Date": [ - "Sat, 26 Mar 2022 09:53:36 GMT" + "Mon, 16 May 2022 16:08:40 GMT" ], "Content-Length": [ "821" @@ -2710,26 +3489,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/3f952331-a043-41a6-a5b0-e16faf287f14\",\r\n \"name\": \"3f952331-a043-41a6-a5b0-e16faf287f14\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT21.1915184S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"Storage\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"File Share Name\": \"fs1\",\r\n \"Storage Account Name\": \"pstestsa8895\"\r\n }\r\n },\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"DeleteBackupData\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-03-26T09:53:14.7875007Z\",\r\n \"endTime\": \"2022-03-26T09:53:35.9790191Z\",\r\n \"activityId\": \"b2b5b25d-395b-4474-ba5f-80a59ab92dd5\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/d8c7bc77-46c9-4893-919e-0550265e5c6c\",\r\n \"name\": \"d8c7bc77-46c9-4893-919e-0550265e5c6c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT21.3479925S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"Storage\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"File Share Name\": \"fs1\",\r\n \"Storage Account Name\": \"pstestsa8895\"\r\n }\r\n },\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"DeleteBackupData\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-05-16T16:08:17.7064574Z\",\r\n \"endTime\": \"2022-05-16T16:08:39.0544499Z\",\r\n \"activityId\": \"a1683137-e468-4d8f-bb2e-1f2f89a0205c\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NT9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "436df36e-bd56-478d-959a-80c27501d470" + "96a21cb9-a0c4-4316-8444-4cce83a5da9c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -2740,23 +3519,23 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperationResults/0520a164-25a1-403e-92db-cbb0286522f0?fabricName=Azure?api-version=2021-12-01" + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperationResults/643bbb82-886a-491e-b318-af19ea2cea65?fabricName=Azure?api-version=2022-02-01" ], "Retry-After": [ "60" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationsStatus/0520a164-25a1-403e-92db-cbb0286522f0?api-version=2019-05-13-preview" + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationsStatus/643bbb82-886a-491e-b318-af19ea2cea65?api-version=2019-05-13-preview" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "b8edc1e4-61e7-4a3d-a0ff-27c388de79a2" + "9e1012bb-0f98-4b0d-a841-bf130cd05ad5" ], "x-ms-client-request-id": [ - "436df36e-bd56-478d-959a-80c27501d470", - "436df36e-bd56-478d-959a-80c27501d470" + "96a21cb9-a0c4-4316-8444-4cce83a5da9c", + "96a21cb9-a0c4-4316-8444-4cce83a5da9c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2768,13 +3547,13 @@ "14998" ], "x-ms-correlation-request-id": [ - "b8edc1e4-61e7-4a3d-a0ff-27c388de79a2" + "9e1012bb-0f98-4b0d-a841-bf130cd05ad5" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T095337Z:b8edc1e4-61e7-4a3d-a0ff-27c388de79a2" + "JIOINDIAWEST:20220516T160842Z:9e1012bb-0f98-4b0d-a841-bf130cd05ad5" ], "Date": [ - "Sat, 26 Mar 2022 09:53:37 GMT" + "Mon, 16 May 2022 16:08:41 GMT" ], "Expires": [ "-1" @@ -2787,22 +3566,22 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/0520a164-25a1-403e-92db-cbb0286522f0?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzLzA1MjBhMTY0LTI1YTEtNDAzZS05MmRiLWNiYjAyODY1MjJmMD9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/643bbb82-886a-491e-b318-af19ea2cea65?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzLzY0M2JiYjgyLTg4NmEtNDkxZS1iMzE4LWFmMTllYTJjZWE2NT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "436df36e-bd56-478d-959a-80c27501d470" + "96a21cb9-a0c4-4316-8444-4cce83a5da9c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -2813,7 +3592,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/0520a164-25a1-403e-92db-cbb0286522f0?api-version=2021-12-01" + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/643bbb82-886a-491e-b318-af19ea2cea65?api-version=2022-02-01" ], "Retry-After": [ "60" @@ -2822,11 +3601,11 @@ "nosniff" ], "x-ms-request-id": [ - "9276f885-faf7-4a6a-9d0d-f21cbcd1c14c" + "d83b854a-6954-405b-8d93-46b5ae4ab7ec" ], "x-ms-client-request-id": [ - "436df36e-bd56-478d-959a-80c27501d470", - "436df36e-bd56-478d-959a-80c27501d470" + "96a21cb9-a0c4-4316-8444-4cce83a5da9c", + "96a21cb9-a0c4-4316-8444-4cce83a5da9c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2838,13 +3617,13 @@ "299" ], "x-ms-correlation-request-id": [ - "9276f885-faf7-4a6a-9d0d-f21cbcd1c14c" + "d83b854a-6954-405b-8d93-46b5ae4ab7ec" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T095338Z:9276f885-faf7-4a6a-9d0d-f21cbcd1c14c" + "JIOINDIAWEST:20220516T160842Z:d83b854a-6954-405b-8d93-46b5ae4ab7ec" ], "Date": [ - "Sat, 26 Mar 2022 09:53:38 GMT" + "Mon, 16 May 2022 16:08:41 GMT" ], "Expires": [ "-1" @@ -2857,22 +3636,22 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/0520a164-25a1-403e-92db-cbb0286522f0?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzLzA1MjBhMTY0LTI1YTEtNDAzZS05MmRiLWNiYjAyODY1MjJmMD9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/643bbb82-886a-491e-b318-af19ea2cea65?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzLzY0M2JiYjgyLTg4NmEtNDkxZS1iMzE4LWFmMTllYTJjZWE2NT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "436df36e-bd56-478d-959a-80c27501d470" + "96a21cb9-a0c4-4316-8444-4cce83a5da9c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -2883,7 +3662,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/0520a164-25a1-403e-92db-cbb0286522f0?api-version=2021-12-01" + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/643bbb82-886a-491e-b318-af19ea2cea65?api-version=2022-02-01" ], "Retry-After": [ "60" @@ -2892,11 +3671,11 @@ "nosniff" ], "x-ms-request-id": [ - "72a08826-fb17-45c5-80a8-46dafb953717" + "c1cba0fe-b503-45cc-a64d-841f8dc9d738" ], "x-ms-client-request-id": [ - "436df36e-bd56-478d-959a-80c27501d470", - "436df36e-bd56-478d-959a-80c27501d470" + "96a21cb9-a0c4-4316-8444-4cce83a5da9c", + "96a21cb9-a0c4-4316-8444-4cce83a5da9c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2908,13 +3687,13 @@ "298" ], "x-ms-correlation-request-id": [ - "72a08826-fb17-45c5-80a8-46dafb953717" + "c1cba0fe-b503-45cc-a64d-841f8dc9d738" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T095348Z:72a08826-fb17-45c5-80a8-46dafb953717" + "JIOINDIAWEST:20220516T160848Z:c1cba0fe-b503-45cc-a64d-841f8dc9d738" ], "Date": [ - "Sat, 26 Mar 2022 09:53:48 GMT" + "Mon, 16 May 2022 16:08:48 GMT" ], "Expires": [ "-1" @@ -2927,22 +3706,22 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/0520a164-25a1-403e-92db-cbb0286522f0?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzLzA1MjBhMTY0LTI1YTEtNDAzZS05MmRiLWNiYjAyODY1MjJmMD9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/643bbb82-886a-491e-b318-af19ea2cea65?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzLzY0M2JiYjgyLTg4NmEtNDkxZS1iMzE4LWFmMTllYTJjZWE2NT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "436df36e-bd56-478d-959a-80c27501d470" + "96a21cb9-a0c4-4316-8444-4cce83a5da9c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -2953,7 +3732,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/0520a164-25a1-403e-92db-cbb0286522f0?api-version=2021-12-01" + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/643bbb82-886a-491e-b318-af19ea2cea65?api-version=2022-02-01" ], "Retry-After": [ "60" @@ -2962,11 +3741,11 @@ "nosniff" ], "x-ms-request-id": [ - "6e3e5afb-3487-413f-bf4a-7d5d5ae2adbd" + "e125fcb8-01fd-436b-9266-10b60499a344" ], "x-ms-client-request-id": [ - "436df36e-bd56-478d-959a-80c27501d470", - "436df36e-bd56-478d-959a-80c27501d470" + "96a21cb9-a0c4-4316-8444-4cce83a5da9c", + "96a21cb9-a0c4-4316-8444-4cce83a5da9c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2978,13 +3757,13 @@ "297" ], "x-ms-correlation-request-id": [ - "6e3e5afb-3487-413f-bf4a-7d5d5ae2adbd" + "e125fcb8-01fd-436b-9266-10b60499a344" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T095359Z:6e3e5afb-3487-413f-bf4a-7d5d5ae2adbd" + "JIOINDIAWEST:20220516T160853Z:e125fcb8-01fd-436b-9266-10b60499a344" ], "Date": [ - "Sat, 26 Mar 2022 09:53:58 GMT" + "Mon, 16 May 2022 16:08:53 GMT" ], "Expires": [ "-1" @@ -2997,22 +3776,22 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/0520a164-25a1-403e-92db-cbb0286522f0?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzLzA1MjBhMTY0LTI1YTEtNDAzZS05MmRiLWNiYjAyODY1MjJmMD9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/643bbb82-886a-491e-b318-af19ea2cea65?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzLzY0M2JiYjgyLTg4NmEtNDkxZS1iMzE4LWFmMTllYTJjZWE2NT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "436df36e-bd56-478d-959a-80c27501d470" + "96a21cb9-a0c4-4316-8444-4cce83a5da9c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -3022,15 +3801,21 @@ "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/643bbb82-886a-491e-b318-af19ea2cea65?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "dde30e07-86f3-4396-ae05-0190813f1274" + "3e424d49-7ccd-49e8-9d82-24d794381cd5" ], "x-ms-client-request-id": [ - "436df36e-bd56-478d-959a-80c27501d470", - "436df36e-bd56-478d-959a-80c27501d470" + "96a21cb9-a0c4-4316-8444-4cce83a5da9c", + "96a21cb9-a0c4-4316-8444-4cce83a5da9c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3042,35 +3827,41 @@ "296" ], "x-ms-correlation-request-id": [ - "dde30e07-86f3-4396-ae05-0190813f1274" + "3e424d49-7ccd-49e8-9d82-24d794381cd5" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T095409Z:dde30e07-86f3-4396-ae05-0190813f1274" + "JIOINDIAWEST:20220516T160859Z:3e424d49-7ccd-49e8-9d82-24d794381cd5" ], "Date": [ - "Sat, 26 Mar 2022 09:54:08 GMT" + "Mon, 16 May 2022 16:08:58 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", - "StatusCode": 204 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/0520a164-25a1-403e-92db-cbb0286522f0?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzLzA1MjBhMTY0LTI1YTEtNDAzZS05MmRiLWNiYjAyODY1MjJmMD9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/643bbb82-886a-491e-b318-af19ea2cea65?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzLzY0M2JiYjgyLTg4NmEtNDkxZS1iMzE4LWFmMTllYTJjZWE2NT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "436df36e-bd56-478d-959a-80c27501d470" + "96a21cb9-a0c4-4316-8444-4cce83a5da9c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -3084,11 +3875,11 @@ "nosniff" ], "x-ms-request-id": [ - "6156631e-0c68-4b26-9c8e-a23bc49d7060" + "f7e8e6a1-54fb-4faa-bea9-ba89e5677836" ], "x-ms-client-request-id": [ - "436df36e-bd56-478d-959a-80c27501d470", - "436df36e-bd56-478d-959a-80c27501d470" + "96a21cb9-a0c4-4316-8444-4cce83a5da9c", + "96a21cb9-a0c4-4316-8444-4cce83a5da9c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3100,13 +3891,71 @@ "295" ], "x-ms-correlation-request-id": [ - "6156631e-0c68-4b26-9c8e-a23bc49d7060" + "f7e8e6a1-54fb-4faa-bea9-ba89e5677836" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T160905Z:f7e8e6a1-54fb-4faa-bea9-ba89e5677836" + ], + "Date": [ + "Mon, 16 May 2022 16:09:04 GMT" + ] + }, + "ResponseBody": "", + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/643bbb82-886a-491e-b318-af19ea2cea65?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzLzY0M2JiYjgyLTg4NmEtNDkxZS1iMzE4LWFmMTllYTJjZWE2NT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "96a21cb9-a0c4-4316-8444-4cce83a5da9c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "56e0ab88-e56f-495d-b462-502f753a7ee8" + ], + "x-ms-client-request-id": [ + "96a21cb9-a0c4-4316-8444-4cce83a5da9c", + "96a21cb9-a0c4-4316-8444-4cce83a5da9c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "294" + ], + "x-ms-correlation-request-id": [ + "56e0ab88-e56f-495d-b462-502f753a7ee8" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T095409Z:6156631e-0c68-4b26-9c8e-a23bc49d7060" + "JIOINDIAWEST:20220516T160905Z:56e0ab88-e56f-495d-b462-502f753a7ee8" ], "Date": [ - "Sat, 26 Mar 2022 09:54:09 GMT" + "Mon, 16 May 2022 16:09:05 GMT" ] }, "ResponseBody": "", diff --git a/src/RecoveryServices/RecoveryServices.Backup.Test/SessionRecords/Microsoft.Azure.Commands.RecoveryServices.Backup.Test.ScenarioTests.ItemTests/TestAzureManagedVMRestore.json b/src/RecoveryServices/RecoveryServices.Backup.Test/SessionRecords/Microsoft.Azure.Commands.RecoveryServices.Backup.Test.ScenarioTests.ItemTests/TestAzureManagedVMRestore.json index 8e46989f6012..329351fbe48b 100644 --- a/src/RecoveryServices/RecoveryServices.Backup.Test/SessionRecords/Microsoft.Azure.Commands.RecoveryServices.Backup.Test.ScenarioTests.ItemTests/TestAzureManagedVMRestore.json +++ b/src/RecoveryServices/RecoveryServices.Backup.Test/SessionRecords/Microsoft.Azure.Commands.RecoveryServices.Backup.Test.ScenarioTests.ItemTests/TestAzureManagedVMRestore.json @@ -7,13 +7,13 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2b6769df-9aa8-4306-9734-0ac10bc7db77" + "24f04e55-a742-420b-bafa-51936490111b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesClient/4.3.2.0" @@ -33,25 +33,25 @@ "nosniff" ], "x-ms-request-id": [ - "d947336d-bcf6-4750-aca5-c00b7cc56b77" + "53cfb48f-1d34-401f-b56c-e3fec3a17f2d" ], "x-ms-client-request-id": [ - "2b6769df-9aa8-4306-9734-0ac10bc7db77" + "24f04e55-a742-420b-bafa-51936490111b" ], "Server": [ "Kestrel" ], "x-ms-correlation-request-id": [ - "d947336d-bcf6-4750-aca5-c00b7cc56b77" + "53cfb48f-1d34-401f-b56c-e3fec3a17f2d" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220328T112801Z:d947336d-bcf6-4750-aca5-c00b7cc56b77" + "WESTINDIA:20220516T162307Z:53cfb48f-1d34-401f-b56c-e3fec3a17f2d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Mon, 28 Mar 2022 11:28:01 GMT" + "Mon, 16 May 2022 16:23:06 GMT" ], "Content-Length": [ "1034" @@ -67,22 +67,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupProtectedItems?$filter=backupManagementType%20eq%20'AzureIaasVM'%20and%20itemType%20eq%20'VM'&api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cFByb3RlY3RlZEl0ZW1zPyRmaWx0ZXI9YmFja3VwTWFuYWdlbWVudFR5cGUlMjBlcSUyMCdBenVyZUlhYXNWTSclMjBhbmQlMjBpdGVtVHlwZSUyMGVxJTIwJ1ZNJyZhcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupProtectedItems?$filter=backupManagementType%20eq%20'AzureIaasVM'%20and%20itemType%20eq%20'VM'&api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cFByb3RlY3RlZEl0ZW1zPyRmaWx0ZXI9YmFja3VwTWFuYWdlbWVudFR5cGUlMjBlcSUyMCdBenVyZUlhYXNWTSclMjBhbmQlMjBpdGVtVHlwZSUyMGVxJTIwJ1ZNJyZhcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9a1e8b98-a4a9-479e-a40e-2cad5a69214c" + "f7b31690-7f48-49e3-bd17-fe386567efdf" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -96,10 +96,10 @@ "nosniff" ], "x-ms-request-id": [ - "f0e4962f-84ae-4af5-8b46-49e7040b35d3" + "ace5fb99-738a-487a-87ae-f32fe51652e8" ], "x-ms-client-request-id": [ - "9a1e8b98-a4a9-479e-a40e-2cad5a69214c" + "f7b31690-7f48-49e3-bd17-fe386567efdf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -114,16 +114,16 @@ "299" ], "x-ms-correlation-request-id": [ - "f0e4962f-84ae-4af5-8b46-49e7040b35d3" + "ace5fb99-738a-487a-87ae-f32fe51652e8" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220328T112803Z:f0e4962f-84ae-4af5-8b46-49e7040b35d3" + "WESTINDIA:20220516T162310Z:ace5fb99-738a-487a-87ae-f32fe51652e8" ], "Date": [ - "Mon, 28 Mar 2022 11:28:03 GMT" + "Mon, 16 May 2022 16:23:10 GMT" ], "Content-Length": [ - "2188" + "1905" ], "Content-Type": [ "application/json; charset=utf-8" @@ -132,26 +132,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;hiagarg;hiagavm/protectedItems/VM;iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"name\": \"VM;iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems\",\r\n \"properties\": {\r\n \"kpisHealths\": {\r\n \"RestoreOperationStatusKPI\": {\r\n \"resourceHealthStatus\": \"Healthy\",\r\n \"resourceHealthDetails\": [\r\n {\r\n \"code\": 0,\r\n \"title\": \"Success\",\r\n \"message\": \"\",\r\n \"recommendations\": []\r\n }\r\n ]\r\n },\r\n \"BackupOperationStatusKPI\": {\r\n \"resourceHealthStatus\": \"TransientUnhealthy\",\r\n \"resourceHealthDetails\": [\r\n {\r\n \"code\": 400038,\r\n \"title\": \"CopyingVHDsFromBackUpVaultTakingLongTime\",\r\n \"message\": \"Copying backed up data from vault timed out.\",\r\n \"recommendations\": [\r\n \"Please retry the operation in a few minutes. If the problem persists, please contact Microsoft support. For more details, refer to https://aka.ms/AB-CopyingVHDsFromBackUpVaultTakingLongTime\"\r\n ]\r\n }\r\n ]\r\n }\r\n },\r\n \"friendlyName\": \"hiagavm\",\r\n \"virtualMachineId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.Compute/virtualMachines/hiagavm\",\r\n \"protectionStatus\": \"Healthy\",\r\n \"protectionState\": \"Protected\",\r\n \"healthStatus\": \"Passed\",\r\n \"healthDetails\": [\r\n {\r\n \"code\": 400239,\r\n \"title\": \"IaasVmHealthGreenDefault\",\r\n \"message\": \"Backup pre-check status of this virtual machine is OK.\",\r\n \"recommendations\": []\r\n }\r\n ],\r\n \"lastBackupStatus\": \"Completed\",\r\n \"lastBackupTime\": \"2022-03-26T23:04:38.968513Z\",\r\n \"protectedItemDataId\": \"52853529\",\r\n \"extendedProperties\": {},\r\n \"protectedItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"workloadType\": \"VM\",\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"sourceResourceId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.Compute/virtualMachines/hiagavm\",\r\n \"policyId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupPolicies/DefaultPolicy\",\r\n \"policyName\": \"DefaultPolicy\",\r\n \"lastRecoveryPoint\": \"2022-03-27T23:04:19.3146325Z\",\r\n \"isArchiveEnabled\": false\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;hiagarg;hiagavm/protectedItems/VM;iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"name\": \"VM;iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems\",\r\n \"properties\": {\r\n \"kpisHealths\": {\r\n \"RestoreOperationStatusKPI\": {\r\n \"resourceHealthStatus\": \"Healthy\",\r\n \"resourceHealthDetails\": [\r\n {\r\n \"code\": 0,\r\n \"title\": \"Success\",\r\n \"message\": \"\",\r\n \"recommendations\": []\r\n }\r\n ]\r\n },\r\n \"BackupOperationStatusKPI\": {\r\n \"resourceHealthStatus\": \"Healthy\",\r\n \"resourceHealthDetails\": [\r\n {\r\n \"code\": 0,\r\n \"title\": \"Success\",\r\n \"message\": \"\",\r\n \"recommendations\": []\r\n }\r\n ]\r\n }\r\n },\r\n \"friendlyName\": \"hiagavm\",\r\n \"virtualMachineId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.Compute/virtualMachines/hiagavm\",\r\n \"protectionStatus\": \"Healthy\",\r\n \"protectionState\": \"Protected\",\r\n \"healthStatus\": \"Passed\",\r\n \"healthDetails\": [\r\n {\r\n \"code\": 400239,\r\n \"title\": \"IaasVmHealthGreenDefault\",\r\n \"message\": \"Backup pre-check status of this virtual machine is OK.\",\r\n \"recommendations\": []\r\n }\r\n ],\r\n \"lastBackupStatus\": \"Completed\",\r\n \"lastBackupTime\": \"2022-05-15T23:07:20.2378072Z\",\r\n \"protectedItemDataId\": \"52853529\",\r\n \"extendedProperties\": {},\r\n \"protectedItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"workloadType\": \"VM\",\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"sourceResourceId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.Compute/virtualMachines/hiagavm\",\r\n \"policyId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupPolicies/DefaultPolicy\",\r\n \"policyName\": \"DefaultPolicy\",\r\n \"lastRecoveryPoint\": \"2022-05-15T23:07:23.8899995Z\",\r\n \"isArchiveEnabled\": false\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupFabrics/Azure/protectionContainers/IaasVMContainer%3Biaasvmcontainerv2%3Bhiagarg%3Bhiagavm/protectedItems/VM%3Biaasvmcontainerv2%3Bhiagarg%3Bhiagavm?$filter=expand%20eq%20'extendedinfo'&api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEZhYnJpY3MvQXp1cmUvcHJvdGVjdGlvbkNvbnRhaW5lcnMvSWFhc1ZNQ29udGFpbmVyJTNCaWFhc3ZtY29udGFpbmVydjIlM0JoaWFnYXJnJTNCaGlhZ2F2bS9wcm90ZWN0ZWRJdGVtcy9WTSUzQmlhYXN2bWNvbnRhaW5lcnYyJTNCaGlhZ2FyZyUzQmhpYWdhdm0/JGZpbHRlcj1leHBhbmQlMjBlcSUyMCdleHRlbmRlZGluZm8nJmFwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupFabrics/Azure/protectionContainers/IaasVMContainer%3Biaasvmcontainerv2%3Bhiagarg%3Bhiagavm/protectedItems/VM%3Biaasvmcontainerv2%3Bhiagarg%3Bhiagavm?$filter=expand%20eq%20'extendedinfo'&api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEZhYnJpY3MvQXp1cmUvcHJvdGVjdGlvbkNvbnRhaW5lcnMvSWFhc1ZNQ29udGFpbmVyJTNCaWFhc3ZtY29udGFpbmVydjIlM0JoaWFnYXJnJTNCaGlhZ2F2bS9wcm90ZWN0ZWRJdGVtcy9WTSUzQmlhYXN2bWNvbnRhaW5lcnYyJTNCaGlhZ2FyZyUzQmhpYWdhdm0/JGZpbHRlcj1leHBhbmQlMjBlcSUyMCdleHRlbmRlZGluZm8nJmFwaS12ZXJzaW9uPTIwMjItMDItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9a1e8b98-a4a9-479e-a40e-2cad5a69214c" + "f7b31690-7f48-49e3-bd17-fe386567efdf" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -165,10 +165,10 @@ "nosniff" ], "x-ms-request-id": [ - "1df5846e-d74b-4297-8511-3894bfb3784b" + "bf7925cf-6cf1-4e8a-9ef4-cdccfa492777" ], "x-ms-client-request-id": [ - "9a1e8b98-a4a9-479e-a40e-2cad5a69214c" + "f7b31690-7f48-49e3-bd17-fe386567efdf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -183,16 +183,16 @@ "299" ], "x-ms-correlation-request-id": [ - "1df5846e-d74b-4297-8511-3894bfb3784b" + "bf7925cf-6cf1-4e8a-9ef4-cdccfa492777" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220328T112804Z:1df5846e-d74b-4297-8511-3894bfb3784b" + "WESTINDIA:20220516T162312Z:bf7925cf-6cf1-4e8a-9ef4-cdccfa492777" ], "Date": [ - "Mon, 28 Mar 2022 11:28:03 GMT" + "Mon, 16 May 2022 16:23:12 GMT" ], "Content-Length": [ - "2297" + "2014" ], "Content-Type": [ "application/json; charset=utf-8" @@ -201,26 +201,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;hiagarg;hiagavm/protectedItems/VM;iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"name\": \"VM;iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems\",\r\n \"properties\": {\r\n \"kpisHealths\": {\r\n \"RestoreOperationStatusKPI\": {\r\n \"resourceHealthStatus\": \"Healthy\",\r\n \"resourceHealthDetails\": [\r\n {\r\n \"code\": 0,\r\n \"title\": \"Success\",\r\n \"message\": \"\",\r\n \"recommendations\": []\r\n }\r\n ]\r\n },\r\n \"BackupOperationStatusKPI\": {\r\n \"resourceHealthStatus\": \"TransientUnhealthy\",\r\n \"resourceHealthDetails\": [\r\n {\r\n \"code\": 400038,\r\n \"title\": \"CopyingVHDsFromBackUpVaultTakingLongTime\",\r\n \"message\": \"Copying backed up data from vault timed out.\",\r\n \"recommendations\": [\r\n \"Please retry the operation in a few minutes. If the problem persists, please contact Microsoft support. For more details, refer to https://aka.ms/AB-CopyingVHDsFromBackUpVaultTakingLongTime\"\r\n ]\r\n }\r\n ]\r\n }\r\n },\r\n \"friendlyName\": \"hiagavm\",\r\n \"virtualMachineId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.Compute/virtualMachines/hiagavm\",\r\n \"protectionStatus\": \"Healthy\",\r\n \"protectionState\": \"Protected\",\r\n \"healthStatus\": \"Passed\",\r\n \"healthDetails\": [\r\n {\r\n \"code\": 400239,\r\n \"title\": \"IaasVmHealthGreenDefault\",\r\n \"message\": \"Backup pre-check status of this virtual machine is OK.\",\r\n \"recommendations\": []\r\n }\r\n ],\r\n \"lastBackupStatus\": \"Completed\",\r\n \"lastBackupTime\": \"2022-03-26T23:04:38.968513Z\",\r\n \"protectedItemDataId\": \"52853529\",\r\n \"extendedInfo\": {\r\n \"oldestRecoveryPoint\": \"2022-02-26T23:02:42.8461315Z\",\r\n \"recoveryPointCount\": 31,\r\n \"policyInconsistent\": false\r\n },\r\n \"extendedProperties\": {},\r\n \"protectedItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"workloadType\": \"VM\",\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"sourceResourceId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.Compute/virtualMachines/hiagavm\",\r\n \"policyId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupPolicies/DefaultPolicy\",\r\n \"policyName\": \"DefaultPolicy\",\r\n \"lastRecoveryPoint\": \"2022-03-27T23:04:19.3146325Z\",\r\n \"isArchiveEnabled\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;hiagarg;hiagavm/protectedItems/VM;iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"name\": \"VM;iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems\",\r\n \"properties\": {\r\n \"kpisHealths\": {\r\n \"RestoreOperationStatusKPI\": {\r\n \"resourceHealthStatus\": \"Healthy\",\r\n \"resourceHealthDetails\": [\r\n {\r\n \"code\": 0,\r\n \"title\": \"Success\",\r\n \"message\": \"\",\r\n \"recommendations\": []\r\n }\r\n ]\r\n },\r\n \"BackupOperationStatusKPI\": {\r\n \"resourceHealthStatus\": \"Healthy\",\r\n \"resourceHealthDetails\": [\r\n {\r\n \"code\": 0,\r\n \"title\": \"Success\",\r\n \"message\": \"\",\r\n \"recommendations\": []\r\n }\r\n ]\r\n }\r\n },\r\n \"friendlyName\": \"hiagavm\",\r\n \"virtualMachineId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.Compute/virtualMachines/hiagavm\",\r\n \"protectionStatus\": \"Healthy\",\r\n \"protectionState\": \"Protected\",\r\n \"healthStatus\": \"Passed\",\r\n \"healthDetails\": [\r\n {\r\n \"code\": 400239,\r\n \"title\": \"IaasVmHealthGreenDefault\",\r\n \"message\": \"Backup pre-check status of this virtual machine is OK.\",\r\n \"recommendations\": []\r\n }\r\n ],\r\n \"lastBackupStatus\": \"Completed\",\r\n \"lastBackupTime\": \"2022-05-15T23:07:20.2378072Z\",\r\n \"protectedItemDataId\": \"52853529\",\r\n \"extendedInfo\": {\r\n \"oldestRecoveryPoint\": \"2022-04-16T23:10:43.9599702Z\",\r\n \"recoveryPointCount\": 30,\r\n \"policyInconsistent\": false\r\n },\r\n \"extendedProperties\": {},\r\n \"protectedItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"workloadType\": \"VM\",\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"sourceResourceId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.Compute/virtualMachines/hiagavm\",\r\n \"policyId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupPolicies/DefaultPolicy\",\r\n \"policyName\": \"DefaultPolicy\",\r\n \"lastRecoveryPoint\": \"2022-05-15T23:07:23.8899995Z\",\r\n \"isArchiveEnabled\": false\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupFabrics/Azure/protectionContainers/IaasVMContainer%3Biaasvmcontainerv2%3Bhiagarg%3Bhiagavm/protectedItems/VM%3Biaasvmcontainerv2%3Bhiagarg%3Bhiagavm/backup?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEZhYnJpY3MvQXp1cmUvcHJvdGVjdGlvbkNvbnRhaW5lcnMvSWFhc1ZNQ29udGFpbmVyJTNCaWFhc3ZtY29udGFpbmVydjIlM0JoaWFnYXJnJTNCaGlhZ2F2bS9wcm90ZWN0ZWRJdGVtcy9WTSUzQmlhYXN2bWNvbnRhaW5lcnYyJTNCaGlhZ2FyZyUzQmhpYWdhdm0vYmFja3VwP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupFabrics/Azure/protectionContainers/IaasVMContainer%3Biaasvmcontainerv2%3Bhiagarg%3Bhiagavm/protectedItems/VM%3Biaasvmcontainerv2%3Bhiagarg%3Bhiagavm/backup?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEZhYnJpY3MvQXp1cmUvcHJvdGVjdGlvbkNvbnRhaW5lcnMvSWFhc1ZNQ29udGFpbmVyJTNCaWFhc3ZtY29udGFpbmVydjIlM0JoaWFnYXJnJTNCaGlhZ2F2bS9wcm90ZWN0ZWRJdGVtcy9WTSUzQmlhYXN2bWNvbnRhaW5lcnYyJTNCaGlhZ2FyZyUzQmhpYWdhdm0vYmFja3VwP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", "RequestMethod": "POST", "RequestBody": "{\r\n \"properties\": {\r\n \"objectType\": \"IaasVMBackupRequest\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "2133753d-4dc7-4ecc-815f-d225d073686f" + "faa41ff3-4701-4ef3-9793-6e3930f05c47" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -237,22 +237,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;hiagarg;hiagavm/protectedItems/VM;iaasvmcontainerv2;hiagarg;hiagavm/operationResults/738452fc-085e-4917-a956-bbd1d2b974b5?api-version=2021-12-01" + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;hiagarg;hiagavm/protectedItems/VM;iaasvmcontainerv2;hiagarg;hiagavm/operationResults/82cb15e7-9546-40e4-bed8-78f3d7123056?api-version=2022-02-01" ], "Retry-After": [ "60" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;hiagarg;hiagavm/protectedItems/VM;iaasvmcontainerv2;hiagarg;hiagavm/operationsStatus/738452fc-085e-4917-a956-bbd1d2b974b5?api-version=2021-12-01" + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;hiagarg;hiagavm/protectedItems/VM;iaasvmcontainerv2;hiagarg;hiagavm/operationsStatus/82cb15e7-9546-40e4-bed8-78f3d7123056?api-version=2022-02-01" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "f0c78276-71e8-4573-aa31-659bbff1bc91" + "9a36be52-1598-4efb-846c-491a761c66e5" ], "x-ms-client-request-id": [ - "2133753d-4dc7-4ecc-815f-d225d073686f" + "faa41ff3-4701-4ef3-9793-6e3930f05c47" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -267,13 +267,13 @@ "1199" ], "x-ms-correlation-request-id": [ - "f0c78276-71e8-4573-aa31-659bbff1bc91" + "9a36be52-1598-4efb-846c-491a761c66e5" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220328T112805Z:f0c78276-71e8-4573-aa31-659bbff1bc91" + "WESTINDIA:20220516T162313Z:9a36be52-1598-4efb-846c-491a761c66e5" ], "Date": [ - "Mon, 28 Mar 2022 11:28:05 GMT" + "Mon, 16 May 2022 16:23:13 GMT" ], "Expires": [ "-1" @@ -286,22 +286,22 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupOperations/738452fc-085e-4917-a956-bbd1d2b974b5?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvNzM4NDUyZmMtMDg1ZS00OTE3LWE5NTYtYmJkMWQyYjk3NGI1P2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupOperations/82cb15e7-9546-40e4-bed8-78f3d7123056?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvODJjYjE1ZTctOTU0Ni00MGU0LWJlZDgtNzhmM2Q3MTIzMDU2P2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2133753d-4dc7-4ecc-815f-d225d073686f" + "faa41ff3-4701-4ef3-9793-6e3930f05c47" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -315,10 +315,10 @@ "nosniff" ], "x-ms-request-id": [ - "42b2831a-b5f7-472f-b7fd-6e7632374d5b" + "0f821178-5cd8-49ee-96ea-d45a1ac81e69" ], "x-ms-client-request-id": [ - "2133753d-4dc7-4ecc-815f-d225d073686f" + "faa41ff3-4701-4ef3-9793-6e3930f05c47" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -333,16 +333,16 @@ "299" ], "x-ms-correlation-request-id": [ - "42b2831a-b5f7-472f-b7fd-6e7632374d5b" + "0f821178-5cd8-49ee-96ea-d45a1ac81e69" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220328T112806Z:42b2831a-b5f7-472f-b7fd-6e7632374d5b" + "WESTINDIA:20220516T162314Z:0f821178-5cd8-49ee-96ea-d45a1ac81e69" ], "Date": [ - "Mon, 28 Mar 2022 11:28:05 GMT" + "Mon, 16 May 2022 16:23:14 GMT" ], "Content-Length": [ - "302" + "304" ], "Content-Type": [ "application/json; charset=utf-8" @@ -351,26 +351,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"738452fc-085e-4917-a956-bbd1d2b974b5\",\r\n \"name\": \"738452fc-085e-4917-a956-bbd1d2b974b5\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-03-28T11:28:04.944113Z\",\r\n \"endTime\": \"2022-03-28T11:28:04.944113Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"8315486b-1102-48ab-9121-2c4420debc90\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"82cb15e7-9546-40e4-bed8-78f3d7123056\",\r\n \"name\": \"82cb15e7-9546-40e4-bed8-78f3d7123056\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-05-16T16:23:13.5123111Z\",\r\n \"endTime\": \"2022-05-16T16:23:13.5123111Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"4dc90f0e-c246-41a4-a5d3-41e255ed06f4\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupOperations/738452fc-085e-4917-a956-bbd1d2b974b5?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvNzM4NDUyZmMtMDg1ZS00OTE3LWE5NTYtYmJkMWQyYjk3NGI1P2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupOperations/82cb15e7-9546-40e4-bed8-78f3d7123056?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvODJjYjE1ZTctOTU0Ni00MGU0LWJlZDgtNzhmM2Q3MTIzMDU2P2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2133753d-4dc7-4ecc-815f-d225d073686f" + "faa41ff3-4701-4ef3-9793-6e3930f05c47" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -384,10 +384,10 @@ "nosniff" ], "x-ms-request-id": [ - "21e9cf80-6dcd-40df-899d-b29313891d13" + "0d4baebe-fb04-4271-86bc-b35a069ff521" ], "x-ms-client-request-id": [ - "2133753d-4dc7-4ecc-815f-d225d073686f" + "faa41ff3-4701-4ef3-9793-6e3930f05c47" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -402,16 +402,16 @@ "298" ], "x-ms-correlation-request-id": [ - "21e9cf80-6dcd-40df-899d-b29313891d13" + "0d4baebe-fb04-4271-86bc-b35a069ff521" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220328T112806Z:21e9cf80-6dcd-40df-899d-b29313891d13" + "WESTINDIA:20220516T162315Z:0d4baebe-fb04-4271-86bc-b35a069ff521" ], "Date": [ - "Mon, 28 Mar 2022 11:28:06 GMT" + "Mon, 16 May 2022 16:23:14 GMT" ], "Content-Length": [ - "302" + "304" ], "Content-Type": [ "application/json; charset=utf-8" @@ -420,26 +420,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"738452fc-085e-4917-a956-bbd1d2b974b5\",\r\n \"name\": \"738452fc-085e-4917-a956-bbd1d2b974b5\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-03-28T11:28:04.944113Z\",\r\n \"endTime\": \"2022-03-28T11:28:04.944113Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"8315486b-1102-48ab-9121-2c4420debc90\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"82cb15e7-9546-40e4-bed8-78f3d7123056\",\r\n \"name\": \"82cb15e7-9546-40e4-bed8-78f3d7123056\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-05-16T16:23:13.5123111Z\",\r\n \"endTime\": \"2022-05-16T16:23:13.5123111Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"4dc90f0e-c246-41a4-a5d3-41e255ed06f4\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/8315486b-1102-48ab-9121-2c4420debc90?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEpvYnMvODMxNTQ4NmItMTEwMi00OGFiLTkxMjEtMmM0NDIwZGViYzkwP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/4dc90f0e-c246-41a4-a5d3-41e255ed06f4?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEpvYnMvNGRjOTBmMGUtYzI0Ni00MWE0LWE1ZDMtNDFlMjU1ZWQwNmY0P2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2133753d-4dc7-4ecc-815f-d225d073686f" + "faa41ff3-4701-4ef3-9793-6e3930f05c47" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -453,10 +453,10 @@ "nosniff" ], "x-ms-request-id": [ - "abc1fdd8-bd25-4c8b-8ecd-727f474f142d" + "7a2e3974-0535-40af-ad58-ba95852a25f8" ], "x-ms-client-request-id": [ - "2133753d-4dc7-4ecc-815f-d225d073686f" + "faa41ff3-4701-4ef3-9793-6e3930f05c47" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -471,16 +471,16 @@ "299" ], "x-ms-correlation-request-id": [ - "abc1fdd8-bd25-4c8b-8ecd-727f474f142d" + "7a2e3974-0535-40af-ad58-ba95852a25f8" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220328T112807Z:abc1fdd8-bd25-4c8b-8ecd-727f474f142d" + "WESTINDIA:20220516T162316Z:7a2e3974-0535-40af-ad58-ba95852a25f8" ], "Date": [ - "Mon, 28 Mar 2022 11:28:06 GMT" + "Mon, 16 May 2022 16:23:15 GMT" ], "Content-Length": [ - "921" + "922" ], "Content-Type": [ "application/json; charset=utf-8" @@ -489,26 +489,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/8315486b-1102-48ab-9121-2c4420debc90\",\r\n \"name\": \"8315486b-1102-48ab-9121-2c4420debc90\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"duration\": \"PT1.6085157S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"hiagavm\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"hiagavm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-03-28T11:28:04.944113Z\",\r\n \"activityId\": \"2133753d-4dc7-4ecc-815f-d225d073686f\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/4dc90f0e-c246-41a4-a5d3-41e255ed06f4\",\r\n \"name\": \"4dc90f0e-c246-41a4-a5d3-41e255ed06f4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"duration\": \"PT2.0542423S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"hiagavm\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"hiagavm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T16:23:13.5123111Z\",\r\n \"activityId\": \"faa41ff3-4701-4ef3-9793-6e3930f05c47\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/8315486b-1102-48ab-9121-2c4420debc90?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEpvYnMvODMxNTQ4NmItMTEwMi00OGFiLTkxMjEtMmM0NDIwZGViYzkwP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/4dc90f0e-c246-41a4-a5d3-41e255ed06f4?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEpvYnMvNGRjOTBmMGUtYzI0Ni00MWE0LWE1ZDMtNDFlMjU1ZWQwNmY0P2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2133753d-4dc7-4ecc-815f-d225d073686f" + "faa41ff3-4701-4ef3-9793-6e3930f05c47" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -522,10 +522,10 @@ "nosniff" ], "x-ms-request-id": [ - "39ea8a6d-ace1-4df6-a9c8-2edb33e0062b" + "39f97fb0-f659-44f4-81f9-f871fde90505" ], "x-ms-client-request-id": [ - "2133753d-4dc7-4ecc-815f-d225d073686f" + "faa41ff3-4701-4ef3-9793-6e3930f05c47" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -540,16 +540,16 @@ "298" ], "x-ms-correlation-request-id": [ - "39ea8a6d-ace1-4df6-a9c8-2edb33e0062b" + "39f97fb0-f659-44f4-81f9-f871fde90505" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220328T112807Z:39ea8a6d-ace1-4df6-a9c8-2edb33e0062b" + "WESTINDIA:20220516T162317Z:39f97fb0-f659-44f4-81f9-f871fde90505" ], "Date": [ - "Mon, 28 Mar 2022 11:28:07 GMT" + "Mon, 16 May 2022 16:23:16 GMT" ], "Content-Length": [ - "920" + "922" ], "Content-Type": [ "application/json; charset=utf-8" @@ -558,26 +558,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/8315486b-1102-48ab-9121-2c4420debc90\",\r\n \"name\": \"8315486b-1102-48ab-9121-2c4420debc90\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"duration\": \"PT2.311639S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"hiagavm\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"hiagavm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-03-28T11:28:04.944113Z\",\r\n \"activityId\": \"2133753d-4dc7-4ecc-815f-d225d073686f\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/4dc90f0e-c246-41a4-a5d3-41e255ed06f4\",\r\n \"name\": \"4dc90f0e-c246-41a4-a5d3-41e255ed06f4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"duration\": \"PT2.9923249S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"hiagavm\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"hiagavm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T16:23:13.5123111Z\",\r\n \"activityId\": \"faa41ff3-4701-4ef3-9793-6e3930f05c47\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/8315486b-1102-48ab-9121-2c4420debc90?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEpvYnMvODMxNTQ4NmItMTEwMi00OGFiLTkxMjEtMmM0NDIwZGViYzkwP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/4dc90f0e-c246-41a4-a5d3-41e255ed06f4?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEpvYnMvNGRjOTBmMGUtYzI0Ni00MWE0LWE1ZDMtNDFlMjU1ZWQwNmY0P2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2133753d-4dc7-4ecc-815f-d225d073686f" + "faa41ff3-4701-4ef3-9793-6e3930f05c47" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -591,10 +591,10 @@ "nosniff" ], "x-ms-request-id": [ - "11740c67-4835-47c9-b36c-237546fea729" + "a61065ad-363e-4721-8f02-4e837f2b733d" ], "x-ms-client-request-id": [ - "2133753d-4dc7-4ecc-815f-d225d073686f" + "faa41ff3-4701-4ef3-9793-6e3930f05c47" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -609,16 +609,16 @@ "297" ], "x-ms-correlation-request-id": [ - "11740c67-4835-47c9-b36c-237546fea729" + "a61065ad-363e-4721-8f02-4e837f2b733d" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220328T112838Z:11740c67-4835-47c9-b36c-237546fea729" + "WESTINDIA:20220516T162348Z:a61065ad-363e-4721-8f02-4e837f2b733d" ], "Date": [ - "Mon, 28 Mar 2022 11:28:38 GMT" + "Mon, 16 May 2022 16:23:47 GMT" ], "Content-Length": [ - "922" + "923" ], "Content-Type": [ "application/json; charset=utf-8" @@ -627,26 +627,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/8315486b-1102-48ab-9121-2c4420debc90\",\r\n \"name\": \"8315486b-1102-48ab-9121-2c4420debc90\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"duration\": \"PT33.3606398S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"hiagavm\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"hiagavm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-03-28T11:28:04.944113Z\",\r\n \"activityId\": \"2133753d-4dc7-4ecc-815f-d225d073686f\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/4dc90f0e-c246-41a4-a5d3-41e255ed06f4\",\r\n \"name\": \"4dc90f0e-c246-41a4-a5d3-41e255ed06f4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"duration\": \"PT33.9727928S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"hiagavm\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"hiagavm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T16:23:13.5123111Z\",\r\n \"activityId\": \"faa41ff3-4701-4ef3-9793-6e3930f05c47\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/8315486b-1102-48ab-9121-2c4420debc90?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEpvYnMvODMxNTQ4NmItMTEwMi00OGFiLTkxMjEtMmM0NDIwZGViYzkwP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/4dc90f0e-c246-41a4-a5d3-41e255ed06f4?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEpvYnMvNGRjOTBmMGUtYzI0Ni00MWE0LWE1ZDMtNDFlMjU1ZWQwNmY0P2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2133753d-4dc7-4ecc-815f-d225d073686f" + "faa41ff3-4701-4ef3-9793-6e3930f05c47" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -660,10 +660,10 @@ "nosniff" ], "x-ms-request-id": [ - "486d0c09-0180-4ae1-a687-cfd525187841" + "afaff2bf-3d21-471a-9318-03c7006d7d11" ], "x-ms-client-request-id": [ - "2133753d-4dc7-4ecc-815f-d225d073686f" + "faa41ff3-4701-4ef3-9793-6e3930f05c47" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -678,16 +678,16 @@ "296" ], "x-ms-correlation-request-id": [ - "486d0c09-0180-4ae1-a687-cfd525187841" + "afaff2bf-3d21-471a-9318-03c7006d7d11" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220328T112909Z:486d0c09-0180-4ae1-a687-cfd525187841" + "WESTINDIA:20220516T162418Z:afaff2bf-3d21-471a-9318-03c7006d7d11" ], "Date": [ - "Mon, 28 Mar 2022 11:29:08 GMT" + "Mon, 16 May 2022 16:24:18 GMT" ], "Content-Length": [ - "923" + "924" ], "Content-Type": [ "application/json; charset=utf-8" @@ -696,26 +696,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/8315486b-1102-48ab-9121-2c4420debc90\",\r\n \"name\": \"8315486b-1102-48ab-9121-2c4420debc90\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"duration\": \"PT1M3.9885082S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"hiagavm\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"hiagavm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-03-28T11:28:04.944113Z\",\r\n \"activityId\": \"2133753d-4dc7-4ecc-815f-d225d073686f\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/4dc90f0e-c246-41a4-a5d3-41e255ed06f4\",\r\n \"name\": \"4dc90f0e-c246-41a4-a5d3-41e255ed06f4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"duration\": \"PT1M4.8213013S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"hiagavm\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"hiagavm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T16:23:13.5123111Z\",\r\n \"activityId\": \"faa41ff3-4701-4ef3-9793-6e3930f05c47\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/8315486b-1102-48ab-9121-2c4420debc90?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEpvYnMvODMxNTQ4NmItMTEwMi00OGFiLTkxMjEtMmM0NDIwZGViYzkwP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/4dc90f0e-c246-41a4-a5d3-41e255ed06f4?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEpvYnMvNGRjOTBmMGUtYzI0Ni00MWE0LWE1ZDMtNDFlMjU1ZWQwNmY0P2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2133753d-4dc7-4ecc-815f-d225d073686f" + "faa41ff3-4701-4ef3-9793-6e3930f05c47" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -729,10 +729,10 @@ "nosniff" ], "x-ms-request-id": [ - "de0d493b-387b-44e1-a748-b04f638da101" + "deef8388-275c-4200-ad05-0f74b00ac3af" ], "x-ms-client-request-id": [ - "2133753d-4dc7-4ecc-815f-d225d073686f" + "faa41ff3-4701-4ef3-9793-6e3930f05c47" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -747,16 +747,16 @@ "295" ], "x-ms-correlation-request-id": [ - "de0d493b-387b-44e1-a748-b04f638da101" + "deef8388-275c-4200-ad05-0f74b00ac3af" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220328T112940Z:de0d493b-387b-44e1-a748-b04f638da101" + "WESTINDIA:20220516T162449Z:deef8388-275c-4200-ad05-0f74b00ac3af" ], "Date": [ - "Mon, 28 Mar 2022 11:29:40 GMT" + "Mon, 16 May 2022 16:24:49 GMT" ], "Content-Length": [ - "924" + "925" ], "Content-Type": [ "application/json; charset=utf-8" @@ -765,26 +765,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/8315486b-1102-48ab-9121-2c4420debc90\",\r\n \"name\": \"8315486b-1102-48ab-9121-2c4420debc90\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"duration\": \"PT1M34.6280651S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"hiagavm\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"hiagavm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-03-28T11:28:04.944113Z\",\r\n \"activityId\": \"2133753d-4dc7-4ecc-815f-d225d073686f\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/4dc90f0e-c246-41a4-a5d3-41e255ed06f4\",\r\n \"name\": \"4dc90f0e-c246-41a4-a5d3-41e255ed06f4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"duration\": \"PT1M35.7455486S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"hiagavm\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"hiagavm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T16:23:13.5123111Z\",\r\n \"activityId\": \"faa41ff3-4701-4ef3-9793-6e3930f05c47\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/8315486b-1102-48ab-9121-2c4420debc90?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEpvYnMvODMxNTQ4NmItMTEwMi00OGFiLTkxMjEtMmM0NDIwZGViYzkwP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/4dc90f0e-c246-41a4-a5d3-41e255ed06f4?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEpvYnMvNGRjOTBmMGUtYzI0Ni00MWE0LWE1ZDMtNDFlMjU1ZWQwNmY0P2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2133753d-4dc7-4ecc-815f-d225d073686f" + "faa41ff3-4701-4ef3-9793-6e3930f05c47" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -798,10 +798,10 @@ "nosniff" ], "x-ms-request-id": [ - "f2229584-8ed4-4bc1-9d70-8538ab9b746e" + "4273c511-f398-4611-8e26-34d00ca9f556" ], "x-ms-client-request-id": [ - "2133753d-4dc7-4ecc-815f-d225d073686f" + "faa41ff3-4701-4ef3-9793-6e3930f05c47" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -816,13 +816,13 @@ "294" ], "x-ms-correlation-request-id": [ - "f2229584-8ed4-4bc1-9d70-8538ab9b746e" + "4273c511-f398-4611-8e26-34d00ca9f556" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220328T113010Z:f2229584-8ed4-4bc1-9d70-8538ab9b746e" + "WESTINDIA:20220516T162520Z:4273c511-f398-4611-8e26-34d00ca9f556" ], "Date": [ - "Mon, 28 Mar 2022 11:30:10 GMT" + "Mon, 16 May 2022 16:25:19 GMT" ], "Content-Length": [ "923" @@ -834,26 +834,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/8315486b-1102-48ab-9121-2c4420debc90\",\r\n \"name\": \"8315486b-1102-48ab-9121-2c4420debc90\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"duration\": \"PT2M5.2589973S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"hiagavm\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"hiagavm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-03-28T11:28:04.944113Z\",\r\n \"activityId\": \"2133753d-4dc7-4ecc-815f-d225d073686f\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/4dc90f0e-c246-41a4-a5d3-41e255ed06f4\",\r\n \"name\": \"4dc90f0e-c246-41a4-a5d3-41e255ed06f4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"duration\": \"PT2M6.652725S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"hiagavm\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"hiagavm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T16:23:13.5123111Z\",\r\n \"activityId\": \"faa41ff3-4701-4ef3-9793-6e3930f05c47\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/8315486b-1102-48ab-9121-2c4420debc90?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEpvYnMvODMxNTQ4NmItMTEwMi00OGFiLTkxMjEtMmM0NDIwZGViYzkwP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/4dc90f0e-c246-41a4-a5d3-41e255ed06f4?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEpvYnMvNGRjOTBmMGUtYzI0Ni00MWE0LWE1ZDMtNDFlMjU1ZWQwNmY0P2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2133753d-4dc7-4ecc-815f-d225d073686f" + "faa41ff3-4701-4ef3-9793-6e3930f05c47" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -867,10 +867,10 @@ "nosniff" ], "x-ms-request-id": [ - "22dba751-95b3-46d4-90dd-b685318f6e34" + "f9db9b9e-72ca-4808-8006-e8a31488c4ac" ], "x-ms-client-request-id": [ - "2133753d-4dc7-4ecc-815f-d225d073686f" + "faa41ff3-4701-4ef3-9793-6e3930f05c47" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -885,16 +885,16 @@ "293" ], "x-ms-correlation-request-id": [ - "22dba751-95b3-46d4-90dd-b685318f6e34" + "f9db9b9e-72ca-4808-8006-e8a31488c4ac" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220328T113041Z:22dba751-95b3-46d4-90dd-b685318f6e34" + "WESTINDIA:20220516T162551Z:f9db9b9e-72ca-4808-8006-e8a31488c4ac" ], "Date": [ - "Mon, 28 Mar 2022 11:30:40 GMT" + "Mon, 16 May 2022 16:25:51 GMT" ], "Content-Length": [ - "924" + "925" ], "Content-Type": [ "application/json; charset=utf-8" @@ -903,26 +903,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/8315486b-1102-48ab-9121-2c4420debc90\",\r\n \"name\": \"8315486b-1102-48ab-9121-2c4420debc90\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"duration\": \"PT2M35.9210639S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"hiagavm\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"hiagavm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-03-28T11:28:04.944113Z\",\r\n \"activityId\": \"2133753d-4dc7-4ecc-815f-d225d073686f\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/4dc90f0e-c246-41a4-a5d3-41e255ed06f4\",\r\n \"name\": \"4dc90f0e-c246-41a4-a5d3-41e255ed06f4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"duration\": \"PT2M37.4834249S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"hiagavm\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"hiagavm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T16:23:13.5123111Z\",\r\n \"activityId\": \"faa41ff3-4701-4ef3-9793-6e3930f05c47\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/8315486b-1102-48ab-9121-2c4420debc90?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEpvYnMvODMxNTQ4NmItMTEwMi00OGFiLTkxMjEtMmM0NDIwZGViYzkwP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/4dc90f0e-c246-41a4-a5d3-41e255ed06f4?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEpvYnMvNGRjOTBmMGUtYzI0Ni00MWE0LWE1ZDMtNDFlMjU1ZWQwNmY0P2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2133753d-4dc7-4ecc-815f-d225d073686f" + "faa41ff3-4701-4ef3-9793-6e3930f05c47" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -936,10 +936,10 @@ "nosniff" ], "x-ms-request-id": [ - "852995e6-d036-4c4c-a79f-8b60ed5971f6" + "0788d51f-efce-40d6-a30a-38fc5143364a" ], "x-ms-client-request-id": [ - "2133753d-4dc7-4ecc-815f-d225d073686f" + "faa41ff3-4701-4ef3-9793-6e3930f05c47" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -954,16 +954,16 @@ "292" ], "x-ms-correlation-request-id": [ - "852995e6-d036-4c4c-a79f-8b60ed5971f6" + "0788d51f-efce-40d6-a30a-38fc5143364a" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220328T113112Z:852995e6-d036-4c4c-a79f-8b60ed5971f6" + "WESTINDIA:20220516T162622Z:0788d51f-efce-40d6-a30a-38fc5143364a" ], "Date": [ - "Mon, 28 Mar 2022 11:31:11 GMT" + "Mon, 16 May 2022 16:26:21 GMT" ], "Content-Length": [ - "923" + "924" ], "Content-Type": [ "application/json; charset=utf-8" @@ -972,26 +972,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/8315486b-1102-48ab-9121-2c4420debc90\",\r\n \"name\": \"8315486b-1102-48ab-9121-2c4420debc90\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"duration\": \"PT3M6.5981056S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"hiagavm\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"hiagavm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-03-28T11:28:04.944113Z\",\r\n \"activityId\": \"2133753d-4dc7-4ecc-815f-d225d073686f\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/4dc90f0e-c246-41a4-a5d3-41e255ed06f4\",\r\n \"name\": \"4dc90f0e-c246-41a4-a5d3-41e255ed06f4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"duration\": \"PT3M8.3616043S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"hiagavm\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"hiagavm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T16:23:13.5123111Z\",\r\n \"activityId\": \"faa41ff3-4701-4ef3-9793-6e3930f05c47\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/8315486b-1102-48ab-9121-2c4420debc90?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEpvYnMvODMxNTQ4NmItMTEwMi00OGFiLTkxMjEtMmM0NDIwZGViYzkwP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/4dc90f0e-c246-41a4-a5d3-41e255ed06f4?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEpvYnMvNGRjOTBmMGUtYzI0Ni00MWE0LWE1ZDMtNDFlMjU1ZWQwNmY0P2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2133753d-4dc7-4ecc-815f-d225d073686f" + "faa41ff3-4701-4ef3-9793-6e3930f05c47" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -1005,10 +1005,10 @@ "nosniff" ], "x-ms-request-id": [ - "2ab3acf3-ba4f-415b-a910-3cfdbfb525bc" + "df1f7bff-b43f-4217-9637-79fa145baf2d" ], "x-ms-client-request-id": [ - "2133753d-4dc7-4ecc-815f-d225d073686f" + "faa41ff3-4701-4ef3-9793-6e3930f05c47" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1023,16 +1023,16 @@ "291" ], "x-ms-correlation-request-id": [ - "2ab3acf3-ba4f-415b-a910-3cfdbfb525bc" + "df1f7bff-b43f-4217-9637-79fa145baf2d" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220328T113142Z:2ab3acf3-ba4f-415b-a910-3cfdbfb525bc" + "WESTINDIA:20220516T162653Z:df1f7bff-b43f-4217-9637-79fa145baf2d" ], "Date": [ - "Mon, 28 Mar 2022 11:31:42 GMT" + "Mon, 16 May 2022 16:26:52 GMT" ], "Content-Length": [ - "924" + "925" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1041,26 +1041,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/8315486b-1102-48ab-9121-2c4420debc90\",\r\n \"name\": \"8315486b-1102-48ab-9121-2c4420debc90\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"duration\": \"PT3M37.3303541S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"hiagavm\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"hiagavm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-03-28T11:28:04.944113Z\",\r\n \"activityId\": \"2133753d-4dc7-4ecc-815f-d225d073686f\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/4dc90f0e-c246-41a4-a5d3-41e255ed06f4\",\r\n \"name\": \"4dc90f0e-c246-41a4-a5d3-41e255ed06f4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"duration\": \"PT3M39.2451363S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"hiagavm\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"hiagavm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T16:23:13.5123111Z\",\r\n \"activityId\": \"faa41ff3-4701-4ef3-9793-6e3930f05c47\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/8315486b-1102-48ab-9121-2c4420debc90?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEpvYnMvODMxNTQ4NmItMTEwMi00OGFiLTkxMjEtMmM0NDIwZGViYzkwP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/4dc90f0e-c246-41a4-a5d3-41e255ed06f4?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEpvYnMvNGRjOTBmMGUtYzI0Ni00MWE0LWE1ZDMtNDFlMjU1ZWQwNmY0P2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2133753d-4dc7-4ecc-815f-d225d073686f" + "faa41ff3-4701-4ef3-9793-6e3930f05c47" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -1074,10 +1074,10 @@ "nosniff" ], "x-ms-request-id": [ - "ab8a086b-088b-4a6a-9582-1b05f00ade16" + "80fa548a-3480-45eb-8952-a1fa89b4582c" ], "x-ms-client-request-id": [ - "2133753d-4dc7-4ecc-815f-d225d073686f" + "faa41ff3-4701-4ef3-9793-6e3930f05c47" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1092,16 +1092,16 @@ "290" ], "x-ms-correlation-request-id": [ - "ab8a086b-088b-4a6a-9582-1b05f00ade16" + "80fa548a-3480-45eb-8952-a1fa89b4582c" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220328T113213Z:ab8a086b-088b-4a6a-9582-1b05f00ade16" + "WESTINDIA:20220516T162724Z:80fa548a-3480-45eb-8952-a1fa89b4582c" ], "Date": [ - "Mon, 28 Mar 2022 11:32:12 GMT" + "Mon, 16 May 2022 16:27:24 GMT" ], "Content-Length": [ - "923" + "924" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1110,26 +1110,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/8315486b-1102-48ab-9121-2c4420debc90\",\r\n \"name\": \"8315486b-1102-48ab-9121-2c4420debc90\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"duration\": \"PT4M7.9657086S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"hiagavm\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"hiagavm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-03-28T11:28:04.944113Z\",\r\n \"activityId\": \"2133753d-4dc7-4ecc-815f-d225d073686f\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/4dc90f0e-c246-41a4-a5d3-41e255ed06f4\",\r\n \"name\": \"4dc90f0e-c246-41a4-a5d3-41e255ed06f4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"duration\": \"PT4M10.179793S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"hiagavm\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"hiagavm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T16:23:13.5123111Z\",\r\n \"activityId\": \"faa41ff3-4701-4ef3-9793-6e3930f05c47\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/8315486b-1102-48ab-9121-2c4420debc90?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEpvYnMvODMxNTQ4NmItMTEwMi00OGFiLTkxMjEtMmM0NDIwZGViYzkwP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/4dc90f0e-c246-41a4-a5d3-41e255ed06f4?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEpvYnMvNGRjOTBmMGUtYzI0Ni00MWE0LWE1ZDMtNDFlMjU1ZWQwNmY0P2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2133753d-4dc7-4ecc-815f-d225d073686f" + "faa41ff3-4701-4ef3-9793-6e3930f05c47" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -1143,10 +1143,10 @@ "nosniff" ], "x-ms-request-id": [ - "b5fe3e74-73ef-4d3e-a433-db382b0b0ad1" + "ee4a14a4-5d36-4ae2-b29d-0b955cd28a44" ], "x-ms-client-request-id": [ - "2133753d-4dc7-4ecc-815f-d225d073686f" + "faa41ff3-4701-4ef3-9793-6e3930f05c47" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1161,16 +1161,16 @@ "289" ], "x-ms-correlation-request-id": [ - "b5fe3e74-73ef-4d3e-a433-db382b0b0ad1" + "ee4a14a4-5d36-4ae2-b29d-0b955cd28a44" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220328T113244Z:b5fe3e74-73ef-4d3e-a433-db382b0b0ad1" + "WESTINDIA:20220516T162755Z:ee4a14a4-5d36-4ae2-b29d-0b955cd28a44" ], "Date": [ - "Mon, 28 Mar 2022 11:32:44 GMT" + "Mon, 16 May 2022 16:27:54 GMT" ], "Content-Length": [ - "924" + "925" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1179,26 +1179,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/8315486b-1102-48ab-9121-2c4420debc90\",\r\n \"name\": \"8315486b-1102-48ab-9121-2c4420debc90\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"duration\": \"PT4M38.6052861S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"hiagavm\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"hiagavm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-03-28T11:28:04.944113Z\",\r\n \"activityId\": \"2133753d-4dc7-4ecc-815f-d225d073686f\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/4dc90f0e-c246-41a4-a5d3-41e255ed06f4\",\r\n \"name\": \"4dc90f0e-c246-41a4-a5d3-41e255ed06f4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"duration\": \"PT4M41.0071201S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"hiagavm\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"hiagavm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T16:23:13.5123111Z\",\r\n \"activityId\": \"faa41ff3-4701-4ef3-9793-6e3930f05c47\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/8315486b-1102-48ab-9121-2c4420debc90?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEpvYnMvODMxNTQ4NmItMTEwMi00OGFiLTkxMjEtMmM0NDIwZGViYzkwP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/4dc90f0e-c246-41a4-a5d3-41e255ed06f4?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEpvYnMvNGRjOTBmMGUtYzI0Ni00MWE0LWE1ZDMtNDFlMjU1ZWQwNmY0P2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2133753d-4dc7-4ecc-815f-d225d073686f" + "faa41ff3-4701-4ef3-9793-6e3930f05c47" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -1212,10 +1212,10 @@ "nosniff" ], "x-ms-request-id": [ - "9a3c1a07-bff2-4585-9bf7-864d0261adf7" + "db9ca39a-f835-4b2b-827d-4e94c96cb546" ], "x-ms-client-request-id": [ - "2133753d-4dc7-4ecc-815f-d225d073686f" + "faa41ff3-4701-4ef3-9793-6e3930f05c47" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1230,16 +1230,16 @@ "288" ], "x-ms-correlation-request-id": [ - "9a3c1a07-bff2-4585-9bf7-864d0261adf7" + "db9ca39a-f835-4b2b-827d-4e94c96cb546" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220328T113314Z:9a3c1a07-bff2-4585-9bf7-864d0261adf7" + "WESTINDIA:20220516T162826Z:db9ca39a-f835-4b2b-827d-4e94c96cb546" ], "Date": [ - "Mon, 28 Mar 2022 11:33:14 GMT" + "Mon, 16 May 2022 16:28:25 GMT" ], "Content-Length": [ - "923" + "925" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1248,26 +1248,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/8315486b-1102-48ab-9121-2c4420debc90\",\r\n \"name\": \"8315486b-1102-48ab-9121-2c4420debc90\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"duration\": \"PT5M9.3993714S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"hiagavm\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"hiagavm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-03-28T11:28:04.944113Z\",\r\n \"activityId\": \"2133753d-4dc7-4ecc-815f-d225d073686f\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/4dc90f0e-c246-41a4-a5d3-41e255ed06f4\",\r\n \"name\": \"4dc90f0e-c246-41a4-a5d3-41e255ed06f4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"duration\": \"PT5M11.9361595S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"hiagavm\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"hiagavm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T16:23:13.5123111Z\",\r\n \"activityId\": \"faa41ff3-4701-4ef3-9793-6e3930f05c47\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/8315486b-1102-48ab-9121-2c4420debc90?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEpvYnMvODMxNTQ4NmItMTEwMi00OGFiLTkxMjEtMmM0NDIwZGViYzkwP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/4dc90f0e-c246-41a4-a5d3-41e255ed06f4?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEpvYnMvNGRjOTBmMGUtYzI0Ni00MWE0LWE1ZDMtNDFlMjU1ZWQwNmY0P2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2133753d-4dc7-4ecc-815f-d225d073686f" + "faa41ff3-4701-4ef3-9793-6e3930f05c47" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -1277,14 +1277,17 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "287" + ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "5feac439-7846-42c2-9111-f3e2f3297820" + "9f30ce34-c172-47f1-9ac3-8968c9a49cab" ], "x-ms-client-request-id": [ - "2133753d-4dc7-4ecc-815f-d225d073686f" + "faa41ff3-4701-4ef3-9793-6e3930f05c47" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1295,20 +1298,17 @@ "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "287" - ], "x-ms-correlation-request-id": [ - "5feac439-7846-42c2-9111-f3e2f3297820" + "9f30ce34-c172-47f1-9ac3-8968c9a49cab" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220328T113345Z:5feac439-7846-42c2-9111-f3e2f3297820" + "WESTINDIA:20220516T162857Z:9f30ce34-c172-47f1-9ac3-8968c9a49cab" ], "Date": [ - "Mon, 28 Mar 2022 11:33:45 GMT" + "Mon, 16 May 2022 16:28:56 GMT" ], "Content-Length": [ - "923" + "925" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1317,26 +1317,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/8315486b-1102-48ab-9121-2c4420debc90\",\r\n \"name\": \"8315486b-1102-48ab-9121-2c4420debc90\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"duration\": \"PT5M40.144134S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"hiagavm\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"hiagavm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-03-28T11:28:04.944113Z\",\r\n \"activityId\": \"2133753d-4dc7-4ecc-815f-d225d073686f\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/4dc90f0e-c246-41a4-a5d3-41e255ed06f4\",\r\n \"name\": \"4dc90f0e-c246-41a4-a5d3-41e255ed06f4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"duration\": \"PT5M43.3548335S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"hiagavm\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"hiagavm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T16:23:13.5123111Z\",\r\n \"activityId\": \"faa41ff3-4701-4ef3-9793-6e3930f05c47\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/8315486b-1102-48ab-9121-2c4420debc90?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEpvYnMvODMxNTQ4NmItMTEwMi00OGFiLTkxMjEtMmM0NDIwZGViYzkwP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/4dc90f0e-c246-41a4-a5d3-41e255ed06f4?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEpvYnMvNGRjOTBmMGUtYzI0Ni00MWE0LWE1ZDMtNDFlMjU1ZWQwNmY0P2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2133753d-4dc7-4ecc-815f-d225d073686f" + "faa41ff3-4701-4ef3-9793-6e3930f05c47" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -1346,17 +1346,14 @@ "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "286" - ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "338c827e-7778-46db-ac89-93e63ab94e7f" + "20ae4c98-b1f1-4e8d-98fa-0e3259f990fa" ], "x-ms-client-request-id": [ - "2133753d-4dc7-4ecc-815f-d225d073686f" + "faa41ff3-4701-4ef3-9793-6e3930f05c47" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1367,17 +1364,20 @@ "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "286" + ], "x-ms-correlation-request-id": [ - "338c827e-7778-46db-ac89-93e63ab94e7f" + "20ae4c98-b1f1-4e8d-98fa-0e3259f990fa" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220328T113416Z:338c827e-7778-46db-ac89-93e63ab94e7f" + "WESTINDIA:20220516T162929Z:20ae4c98-b1f1-4e8d-98fa-0e3259f990fa" ], "Date": [ - "Mon, 28 Mar 2022 11:34:16 GMT" + "Mon, 16 May 2022 16:29:28 GMT" ], "Content-Length": [ - "924" + "925" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1386,26 +1386,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/8315486b-1102-48ab-9121-2c4420debc90\",\r\n \"name\": \"8315486b-1102-48ab-9121-2c4420debc90\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"duration\": \"PT6M10.8879073S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"hiagavm\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"hiagavm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-03-28T11:28:04.944113Z\",\r\n \"activityId\": \"2133753d-4dc7-4ecc-815f-d225d073686f\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/4dc90f0e-c246-41a4-a5d3-41e255ed06f4\",\r\n \"name\": \"4dc90f0e-c246-41a4-a5d3-41e255ed06f4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"duration\": \"PT6M14.9576477S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"hiagavm\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"hiagavm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T16:23:13.5123111Z\",\r\n \"activityId\": \"faa41ff3-4701-4ef3-9793-6e3930f05c47\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/8315486b-1102-48ab-9121-2c4420debc90?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEpvYnMvODMxNTQ4NmItMTEwMi00OGFiLTkxMjEtMmM0NDIwZGViYzkwP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/4dc90f0e-c246-41a4-a5d3-41e255ed06f4?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEpvYnMvNGRjOTBmMGUtYzI0Ni00MWE0LWE1ZDMtNDFlMjU1ZWQwNmY0P2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2133753d-4dc7-4ecc-815f-d225d073686f" + "faa41ff3-4701-4ef3-9793-6e3930f05c47" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -1419,10 +1419,10 @@ "nosniff" ], "x-ms-request-id": [ - "3eae31fb-2900-4d2b-9852-4131c5755140" + "fd1a609a-f7c2-4597-9842-d7a4ff039dca" ], "x-ms-client-request-id": [ - "2133753d-4dc7-4ecc-815f-d225d073686f" + "faa41ff3-4701-4ef3-9793-6e3930f05c47" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1437,13 +1437,13 @@ "285" ], "x-ms-correlation-request-id": [ - "3eae31fb-2900-4d2b-9852-4131c5755140" + "fd1a609a-f7c2-4597-9842-d7a4ff039dca" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220328T113447Z:3eae31fb-2900-4d2b-9852-4131c5755140" + "WESTINDIA:20220516T163000Z:fd1a609a-f7c2-4597-9842-d7a4ff039dca" ], "Date": [ - "Mon, 28 Mar 2022 11:34:47 GMT" + "Mon, 16 May 2022 16:29:59 GMT" ], "Content-Length": [ "924" @@ -1455,26 +1455,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/8315486b-1102-48ab-9121-2c4420debc90\",\r\n \"name\": \"8315486b-1102-48ab-9121-2c4420debc90\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"duration\": \"PT6M42.3915388S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"hiagavm\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"hiagavm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-03-28T11:28:04.944113Z\",\r\n \"activityId\": \"2133753d-4dc7-4ecc-815f-d225d073686f\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/4dc90f0e-c246-41a4-a5d3-41e255ed06f4\",\r\n \"name\": \"4dc90f0e-c246-41a4-a5d3-41e255ed06f4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"duration\": \"PT6M45.857129S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"hiagavm\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"hiagavm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T16:23:13.5123111Z\",\r\n \"activityId\": \"faa41ff3-4701-4ef3-9793-6e3930f05c47\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/8315486b-1102-48ab-9121-2c4420debc90?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEpvYnMvODMxNTQ4NmItMTEwMi00OGFiLTkxMjEtMmM0NDIwZGViYzkwP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/4dc90f0e-c246-41a4-a5d3-41e255ed06f4?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEpvYnMvNGRjOTBmMGUtYzI0Ni00MWE0LWE1ZDMtNDFlMjU1ZWQwNmY0P2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2133753d-4dc7-4ecc-815f-d225d073686f" + "faa41ff3-4701-4ef3-9793-6e3930f05c47" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -1488,10 +1488,10 @@ "nosniff" ], "x-ms-request-id": [ - "9b03de2e-eb6a-4437-a499-cff970357267" + "e8667ffb-a3b8-43e5-bae5-1e379761e8d3" ], "x-ms-client-request-id": [ - "2133753d-4dc7-4ecc-815f-d225d073686f" + "faa41ff3-4701-4ef3-9793-6e3930f05c47" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1506,13 +1506,13 @@ "284" ], "x-ms-correlation-request-id": [ - "9b03de2e-eb6a-4437-a499-cff970357267" + "e8667ffb-a3b8-43e5-bae5-1e379761e8d3" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220328T113519Z:9b03de2e-eb6a-4437-a499-cff970357267" + "WESTINDIA:20220516T163030Z:e8667ffb-a3b8-43e5-bae5-1e379761e8d3" ], "Date": [ - "Mon, 28 Mar 2022 11:35:18 GMT" + "Mon, 16 May 2022 16:30:30 GMT" ], "Content-Length": [ "924" @@ -1524,26 +1524,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/8315486b-1102-48ab-9121-2c4420debc90\",\r\n \"name\": \"8315486b-1102-48ab-9121-2c4420debc90\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"duration\": \"PT7M13.8958262S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"hiagavm\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"hiagavm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-03-28T11:28:04.944113Z\",\r\n \"activityId\": \"2133753d-4dc7-4ecc-815f-d225d073686f\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/4dc90f0e-c246-41a4-a5d3-41e255ed06f4\",\r\n \"name\": \"4dc90f0e-c246-41a4-a5d3-41e255ed06f4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"duration\": \"PT7M16.794459S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"hiagavm\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"hiagavm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T16:23:13.5123111Z\",\r\n \"activityId\": \"faa41ff3-4701-4ef3-9793-6e3930f05c47\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/8315486b-1102-48ab-9121-2c4420debc90?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEpvYnMvODMxNTQ4NmItMTEwMi00OGFiLTkxMjEtMmM0NDIwZGViYzkwP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/4dc90f0e-c246-41a4-a5d3-41e255ed06f4?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEpvYnMvNGRjOTBmMGUtYzI0Ni00MWE0LWE1ZDMtNDFlMjU1ZWQwNmY0P2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2133753d-4dc7-4ecc-815f-d225d073686f" + "faa41ff3-4701-4ef3-9793-6e3930f05c47" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -1557,10 +1557,10 @@ "nosniff" ], "x-ms-request-id": [ - "a32198e6-9635-46f3-afe0-0bbf60fb9c20" + "a9a8a093-bb5d-4d01-823d-abe5be2534ed" ], "x-ms-client-request-id": [ - "2133753d-4dc7-4ecc-815f-d225d073686f" + "faa41ff3-4701-4ef3-9793-6e3930f05c47" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1575,16 +1575,16 @@ "283" ], "x-ms-correlation-request-id": [ - "a32198e6-9635-46f3-afe0-0bbf60fb9c20" + "a9a8a093-bb5d-4d01-823d-abe5be2534ed" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220328T113550Z:a32198e6-9635-46f3-afe0-0bbf60fb9c20" + "WESTINDIA:20220516T163101Z:a9a8a093-bb5d-4d01-823d-abe5be2534ed" ], "Date": [ - "Mon, 28 Mar 2022 11:35:49 GMT" + "Mon, 16 May 2022 16:31:01 GMT" ], "Content-Length": [ - "923" + "924" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1593,26 +1593,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/8315486b-1102-48ab-9121-2c4420debc90\",\r\n \"name\": \"8315486b-1102-48ab-9121-2c4420debc90\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"duration\": \"PT7M44.5789482S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"hiagavm\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"hiagavm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-03-28T11:28:04.944113Z\",\r\n \"activityId\": \"2133753d-4dc7-4ecc-815f-d225d073686f\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/4dc90f0e-c246-41a4-a5d3-41e255ed06f4\",\r\n \"name\": \"4dc90f0e-c246-41a4-a5d3-41e255ed06f4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"duration\": \"PT7M47.6881326S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"hiagavm\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"hiagavm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T16:23:13.5123111Z\",\r\n \"activityId\": \"faa41ff3-4701-4ef3-9793-6e3930f05c47\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/8315486b-1102-48ab-9121-2c4420debc90?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEpvYnMvODMxNTQ4NmItMTEwMi00OGFiLTkxMjEtMmM0NDIwZGViYzkwP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/4dc90f0e-c246-41a4-a5d3-41e255ed06f4?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEpvYnMvNGRjOTBmMGUtYzI0Ni00MWE0LWE1ZDMtNDFlMjU1ZWQwNmY0P2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2133753d-4dc7-4ecc-815f-d225d073686f" + "faa41ff3-4701-4ef3-9793-6e3930f05c47" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -1626,10 +1626,10 @@ "nosniff" ], "x-ms-request-id": [ - "4675f47e-205a-47e3-b931-bb9e23820f71" + "4d1c8151-380a-4cda-a23e-951c61d7ddfc" ], "x-ms-client-request-id": [ - "2133753d-4dc7-4ecc-815f-d225d073686f" + "faa41ff3-4701-4ef3-9793-6e3930f05c47" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1644,16 +1644,16 @@ "282" ], "x-ms-correlation-request-id": [ - "4675f47e-205a-47e3-b931-bb9e23820f71" + "4d1c8151-380a-4cda-a23e-951c61d7ddfc" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220328T113620Z:4675f47e-205a-47e3-b931-bb9e23820f71" + "WESTINDIA:20220516T163133Z:4d1c8151-380a-4cda-a23e-951c61d7ddfc" ], "Date": [ - "Mon, 28 Mar 2022 11:36:20 GMT" + "Mon, 16 May 2022 16:31:33 GMT" ], "Content-Length": [ - "923" + "924" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1662,26 +1662,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/8315486b-1102-48ab-9121-2c4420debc90\",\r\n \"name\": \"8315486b-1102-48ab-9121-2c4420debc90\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"duration\": \"PT8M15.2081864S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"hiagavm\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"hiagavm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-03-28T11:28:04.944113Z\",\r\n \"activityId\": \"2133753d-4dc7-4ecc-815f-d225d073686f\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/4dc90f0e-c246-41a4-a5d3-41e255ed06f4\",\r\n \"name\": \"4dc90f0e-c246-41a4-a5d3-41e255ed06f4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"duration\": \"PT8M18.8926276S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"hiagavm\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"hiagavm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T16:23:13.5123111Z\",\r\n \"activityId\": \"faa41ff3-4701-4ef3-9793-6e3930f05c47\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/8315486b-1102-48ab-9121-2c4420debc90?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEpvYnMvODMxNTQ4NmItMTEwMi00OGFiLTkxMjEtMmM0NDIwZGViYzkwP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/4dc90f0e-c246-41a4-a5d3-41e255ed06f4?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEpvYnMvNGRjOTBmMGUtYzI0Ni00MWE0LWE1ZDMtNDFlMjU1ZWQwNmY0P2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2133753d-4dc7-4ecc-815f-d225d073686f" + "faa41ff3-4701-4ef3-9793-6e3930f05c47" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -1695,10 +1695,10 @@ "nosniff" ], "x-ms-request-id": [ - "4dc02b96-14bc-4f87-9b98-f2ae49b82af2" + "20f4255c-541a-494f-b647-bacdcdc3fe88" ], "x-ms-client-request-id": [ - "2133753d-4dc7-4ecc-815f-d225d073686f" + "faa41ff3-4701-4ef3-9793-6e3930f05c47" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1713,16 +1713,16 @@ "281" ], "x-ms-correlation-request-id": [ - "4dc02b96-14bc-4f87-9b98-f2ae49b82af2" + "20f4255c-541a-494f-b647-bacdcdc3fe88" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220328T113651Z:4dc02b96-14bc-4f87-9b98-f2ae49b82af2" + "WESTINDIA:20220516T163204Z:20f4255c-541a-494f-b647-bacdcdc3fe88" ], "Date": [ - "Mon, 28 Mar 2022 11:36:50 GMT" + "Mon, 16 May 2022 16:32:03 GMT" ], "Content-Length": [ - "923" + "924" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1731,26 +1731,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/8315486b-1102-48ab-9121-2c4420debc90\",\r\n \"name\": \"8315486b-1102-48ab-9121-2c4420debc90\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"duration\": \"PT8M45.8660239S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"hiagavm\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"hiagavm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-03-28T11:28:04.944113Z\",\r\n \"activityId\": \"2133753d-4dc7-4ecc-815f-d225d073686f\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/4dc90f0e-c246-41a4-a5d3-41e255ed06f4\",\r\n \"name\": \"4dc90f0e-c246-41a4-a5d3-41e255ed06f4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"duration\": \"PT8M50.0476596S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"hiagavm\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"hiagavm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T16:23:13.5123111Z\",\r\n \"activityId\": \"faa41ff3-4701-4ef3-9793-6e3930f05c47\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/8315486b-1102-48ab-9121-2c4420debc90?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEpvYnMvODMxNTQ4NmItMTEwMi00OGFiLTkxMjEtMmM0NDIwZGViYzkwP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/4dc90f0e-c246-41a4-a5d3-41e255ed06f4?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEpvYnMvNGRjOTBmMGUtYzI0Ni00MWE0LWE1ZDMtNDFlMjU1ZWQwNmY0P2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2133753d-4dc7-4ecc-815f-d225d073686f" + "faa41ff3-4701-4ef3-9793-6e3930f05c47" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -1764,10 +1764,10 @@ "nosniff" ], "x-ms-request-id": [ - "122566dd-2645-450d-b40e-aa9c669cb1f2" + "0346c97d-2586-455c-8f4e-7486316046a4" ], "x-ms-client-request-id": [ - "2133753d-4dc7-4ecc-815f-d225d073686f" + "faa41ff3-4701-4ef3-9793-6e3930f05c47" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1782,16 +1782,16 @@ "280" ], "x-ms-correlation-request-id": [ - "122566dd-2645-450d-b40e-aa9c669cb1f2" + "0346c97d-2586-455c-8f4e-7486316046a4" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220328T113722Z:122566dd-2645-450d-b40e-aa9c669cb1f2" + "WESTINDIA:20220516T163235Z:0346c97d-2586-455c-8f4e-7486316046a4" ], "Date": [ - "Mon, 28 Mar 2022 11:37:21 GMT" + "Mon, 16 May 2022 16:32:34 GMT" ], "Content-Length": [ - "923" + "924" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1800,26 +1800,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/8315486b-1102-48ab-9121-2c4420debc90\",\r\n \"name\": \"8315486b-1102-48ab-9121-2c4420debc90\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"duration\": \"PT9M16.5498584S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"hiagavm\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"hiagavm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-03-28T11:28:04.944113Z\",\r\n \"activityId\": \"2133753d-4dc7-4ecc-815f-d225d073686f\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/4dc90f0e-c246-41a4-a5d3-41e255ed06f4\",\r\n \"name\": \"4dc90f0e-c246-41a4-a5d3-41e255ed06f4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"duration\": \"PT9M20.8727652S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"hiagavm\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"hiagavm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T16:23:13.5123111Z\",\r\n \"activityId\": \"faa41ff3-4701-4ef3-9793-6e3930f05c47\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/8315486b-1102-48ab-9121-2c4420debc90?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEpvYnMvODMxNTQ4NmItMTEwMi00OGFiLTkxMjEtMmM0NDIwZGViYzkwP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/4dc90f0e-c246-41a4-a5d3-41e255ed06f4?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEpvYnMvNGRjOTBmMGUtYzI0Ni00MWE0LWE1ZDMtNDFlMjU1ZWQwNmY0P2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2133753d-4dc7-4ecc-815f-d225d073686f" + "faa41ff3-4701-4ef3-9793-6e3930f05c47" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -1833,10 +1833,10 @@ "nosniff" ], "x-ms-request-id": [ - "d44be3c8-1c48-43c1-aa93-7182aa7da49f" + "51159fdb-3f3b-4abe-aa0c-ba1ea451021d" ], "x-ms-client-request-id": [ - "2133753d-4dc7-4ecc-815f-d225d073686f" + "faa41ff3-4701-4ef3-9793-6e3930f05c47" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1851,16 +1851,16 @@ "279" ], "x-ms-correlation-request-id": [ - "d44be3c8-1c48-43c1-aa93-7182aa7da49f" + "51159fdb-3f3b-4abe-aa0c-ba1ea451021d" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220328T113752Z:d44be3c8-1c48-43c1-aa93-7182aa7da49f" + "WESTINDIA:20220516T163306Z:51159fdb-3f3b-4abe-aa0c-ba1ea451021d" ], "Date": [ - "Mon, 28 Mar 2022 11:37:52 GMT" + "Mon, 16 May 2022 16:33:05 GMT" ], "Content-Length": [ - "923" + "924" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1869,26 +1869,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/8315486b-1102-48ab-9121-2c4420debc90\",\r\n \"name\": \"8315486b-1102-48ab-9121-2c4420debc90\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"duration\": \"PT9M47.2340196S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"hiagavm\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"hiagavm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-03-28T11:28:04.944113Z\",\r\n \"activityId\": \"2133753d-4dc7-4ecc-815f-d225d073686f\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/4dc90f0e-c246-41a4-a5d3-41e255ed06f4\",\r\n \"name\": \"4dc90f0e-c246-41a4-a5d3-41e255ed06f4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"duration\": \"PT9M51.9328004S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"hiagavm\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"hiagavm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T16:23:13.5123111Z\",\r\n \"activityId\": \"faa41ff3-4701-4ef3-9793-6e3930f05c47\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/8315486b-1102-48ab-9121-2c4420debc90?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEpvYnMvODMxNTQ4NmItMTEwMi00OGFiLTkxMjEtMmM0NDIwZGViYzkwP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/4dc90f0e-c246-41a4-a5d3-41e255ed06f4?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEpvYnMvNGRjOTBmMGUtYzI0Ni00MWE0LWE1ZDMtNDFlMjU1ZWQwNmY0P2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2133753d-4dc7-4ecc-815f-d225d073686f" + "faa41ff3-4701-4ef3-9793-6e3930f05c47" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -1902,10 +1902,10 @@ "nosniff" ], "x-ms-request-id": [ - "b1327ffd-836d-4a9e-9b80-7c995960334a" + "68b027d4-31f6-42bd-83f6-1edaf994b5e9" ], "x-ms-client-request-id": [ - "2133753d-4dc7-4ecc-815f-d225d073686f" + "faa41ff3-4701-4ef3-9793-6e3930f05c47" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1920,16 +1920,16 @@ "278" ], "x-ms-correlation-request-id": [ - "b1327ffd-836d-4a9e-9b80-7c995960334a" + "68b027d4-31f6-42bd-83f6-1edaf994b5e9" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220328T113823Z:b1327ffd-836d-4a9e-9b80-7c995960334a" + "WESTINDIA:20220516T163337Z:68b027d4-31f6-42bd-83f6-1edaf994b5e9" ], "Date": [ - "Mon, 28 Mar 2022 11:38:22 GMT" + "Mon, 16 May 2022 16:33:36 GMT" ], "Content-Length": [ - "924" + "925" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1938,26 +1938,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/8315486b-1102-48ab-9121-2c4420debc90\",\r\n \"name\": \"8315486b-1102-48ab-9121-2c4420debc90\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"duration\": \"PT10M17.8532856S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"hiagavm\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"hiagavm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-03-28T11:28:04.944113Z\",\r\n \"activityId\": \"2133753d-4dc7-4ecc-815f-d225d073686f\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/4dc90f0e-c246-41a4-a5d3-41e255ed06f4\",\r\n \"name\": \"4dc90f0e-c246-41a4-a5d3-41e255ed06f4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"duration\": \"PT10M22.9653883S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"hiagavm\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"hiagavm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T16:23:13.5123111Z\",\r\n \"activityId\": \"faa41ff3-4701-4ef3-9793-6e3930f05c47\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/8315486b-1102-48ab-9121-2c4420debc90?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEpvYnMvODMxNTQ4NmItMTEwMi00OGFiLTkxMjEtMmM0NDIwZGViYzkwP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/4dc90f0e-c246-41a4-a5d3-41e255ed06f4?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEpvYnMvNGRjOTBmMGUtYzI0Ni00MWE0LWE1ZDMtNDFlMjU1ZWQwNmY0P2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2133753d-4dc7-4ecc-815f-d225d073686f" + "faa41ff3-4701-4ef3-9793-6e3930f05c47" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -1971,10 +1971,10 @@ "nosniff" ], "x-ms-request-id": [ - "1d64e396-0f64-4191-abdd-bebce1c2d3b6" + "36e76625-5e06-4355-980d-83b1770cc5fc" ], "x-ms-client-request-id": [ - "2133753d-4dc7-4ecc-815f-d225d073686f" + "faa41ff3-4701-4ef3-9793-6e3930f05c47" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1989,13 +1989,13 @@ "277" ], "x-ms-correlation-request-id": [ - "1d64e396-0f64-4191-abdd-bebce1c2d3b6" + "36e76625-5e06-4355-980d-83b1770cc5fc" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220328T113854Z:1d64e396-0f64-4191-abdd-bebce1c2d3b6" + "WESTINDIA:20220516T163407Z:36e76625-5e06-4355-980d-83b1770cc5fc" ], "Date": [ - "Mon, 28 Mar 2022 11:38:53 GMT" + "Mon, 16 May 2022 16:34:07 GMT" ], "Content-Length": [ "924" @@ -2007,26 +2007,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/8315486b-1102-48ab-9121-2c4420debc90\",\r\n \"name\": \"8315486b-1102-48ab-9121-2c4420debc90\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"duration\": \"PT10M48.5112454S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"hiagavm\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"hiagavm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-03-28T11:28:04.944113Z\",\r\n \"activityId\": \"2133753d-4dc7-4ecc-815f-d225d073686f\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/4dc90f0e-c246-41a4-a5d3-41e255ed06f4\",\r\n \"name\": \"4dc90f0e-c246-41a4-a5d3-41e255ed06f4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"duration\": \"PT10M53.816721S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"hiagavm\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"hiagavm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T16:23:13.5123111Z\",\r\n \"activityId\": \"faa41ff3-4701-4ef3-9793-6e3930f05c47\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/8315486b-1102-48ab-9121-2c4420debc90?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEpvYnMvODMxNTQ4NmItMTEwMi00OGFiLTkxMjEtMmM0NDIwZGViYzkwP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/4dc90f0e-c246-41a4-a5d3-41e255ed06f4?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEpvYnMvNGRjOTBmMGUtYzI0Ni00MWE0LWE1ZDMtNDFlMjU1ZWQwNmY0P2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2133753d-4dc7-4ecc-815f-d225d073686f" + "faa41ff3-4701-4ef3-9793-6e3930f05c47" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -2040,10 +2040,10 @@ "nosniff" ], "x-ms-request-id": [ - "9b5c3128-f821-4870-845f-5b990896cf2a" + "47f21c2f-06d3-4b3b-91c1-412a8d867310" ], "x-ms-client-request-id": [ - "2133753d-4dc7-4ecc-815f-d225d073686f" + "faa41ff3-4701-4ef3-9793-6e3930f05c47" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2058,16 +2058,16 @@ "276" ], "x-ms-correlation-request-id": [ - "9b5c3128-f821-4870-845f-5b990896cf2a" + "47f21c2f-06d3-4b3b-91c1-412a8d867310" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220328T113924Z:9b5c3128-f821-4870-845f-5b990896cf2a" + "WESTINDIA:20220516T163438Z:47f21c2f-06d3-4b3b-91c1-412a8d867310" ], "Date": [ - "Mon, 28 Mar 2022 11:39:24 GMT" + "Mon, 16 May 2022 16:34:38 GMT" ], "Content-Length": [ - "924" + "925" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2076,26 +2076,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/8315486b-1102-48ab-9121-2c4420debc90\",\r\n \"name\": \"8315486b-1102-48ab-9121-2c4420debc90\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"duration\": \"PT11M19.2568892S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"hiagavm\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"hiagavm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-03-28T11:28:04.944113Z\",\r\n \"activityId\": \"2133753d-4dc7-4ecc-815f-d225d073686f\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/4dc90f0e-c246-41a4-a5d3-41e255ed06f4\",\r\n \"name\": \"4dc90f0e-c246-41a4-a5d3-41e255ed06f4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"duration\": \"PT11M24.7195135S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"hiagavm\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"hiagavm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T16:23:13.5123111Z\",\r\n \"activityId\": \"faa41ff3-4701-4ef3-9793-6e3930f05c47\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/8315486b-1102-48ab-9121-2c4420debc90?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEpvYnMvODMxNTQ4NmItMTEwMi00OGFiLTkxMjEtMmM0NDIwZGViYzkwP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/4dc90f0e-c246-41a4-a5d3-41e255ed06f4?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEpvYnMvNGRjOTBmMGUtYzI0Ni00MWE0LWE1ZDMtNDFlMjU1ZWQwNmY0P2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2133753d-4dc7-4ecc-815f-d225d073686f" + "faa41ff3-4701-4ef3-9793-6e3930f05c47" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -2109,10 +2109,10 @@ "nosniff" ], "x-ms-request-id": [ - "0f6a3c1f-8ba5-4f0f-98ef-28f0bdab8528" + "c0fb25b5-067d-4b97-8a21-11f67261a3d9" ], "x-ms-client-request-id": [ - "2133753d-4dc7-4ecc-815f-d225d073686f" + "faa41ff3-4701-4ef3-9793-6e3930f05c47" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2127,16 +2127,16 @@ "275" ], "x-ms-correlation-request-id": [ - "0f6a3c1f-8ba5-4f0f-98ef-28f0bdab8528" + "c0fb25b5-067d-4b97-8a21-11f67261a3d9" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220328T113955Z:0f6a3c1f-8ba5-4f0f-98ef-28f0bdab8528" + "WESTINDIA:20220516T163510Z:c0fb25b5-067d-4b97-8a21-11f67261a3d9" ], "Date": [ - "Mon, 28 Mar 2022 11:39:54 GMT" + "Mon, 16 May 2022 16:35:09 GMT" ], "Content-Length": [ - "924" + "925" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2145,26 +2145,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/8315486b-1102-48ab-9121-2c4420debc90\",\r\n \"name\": \"8315486b-1102-48ab-9121-2c4420debc90\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"duration\": \"PT11M49.9506153S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"hiagavm\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"hiagavm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-03-28T11:28:04.944113Z\",\r\n \"activityId\": \"2133753d-4dc7-4ecc-815f-d225d073686f\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/4dc90f0e-c246-41a4-a5d3-41e255ed06f4\",\r\n \"name\": \"4dc90f0e-c246-41a4-a5d3-41e255ed06f4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"duration\": \"PT11M55.7799509S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"hiagavm\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"hiagavm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T16:23:13.5123111Z\",\r\n \"activityId\": \"faa41ff3-4701-4ef3-9793-6e3930f05c47\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/8315486b-1102-48ab-9121-2c4420debc90?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEpvYnMvODMxNTQ4NmItMTEwMi00OGFiLTkxMjEtMmM0NDIwZGViYzkwP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/4dc90f0e-c246-41a4-a5d3-41e255ed06f4?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEpvYnMvNGRjOTBmMGUtYzI0Ni00MWE0LWE1ZDMtNDFlMjU1ZWQwNmY0P2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2133753d-4dc7-4ecc-815f-d225d073686f" + "faa41ff3-4701-4ef3-9793-6e3930f05c47" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -2174,14 +2174,17 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "274" + ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "656de994-291c-4dfd-94ed-b46cc372afcc" + "6d52eecf-7cfd-4b54-9bfb-f4f0c898a487" ], "x-ms-client-request-id": [ - "2133753d-4dc7-4ecc-815f-d225d073686f" + "faa41ff3-4701-4ef3-9793-6e3930f05c47" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2192,20 +2195,17 @@ "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "274" - ], "x-ms-correlation-request-id": [ - "656de994-291c-4dfd-94ed-b46cc372afcc" + "6d52eecf-7cfd-4b54-9bfb-f4f0c898a487" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220328T114026Z:656de994-291c-4dfd-94ed-b46cc372afcc" + "WESTINDIA:20220516T163540Z:6d52eecf-7cfd-4b54-9bfb-f4f0c898a487" ], "Date": [ - "Mon, 28 Mar 2022 11:40:25 GMT" + "Mon, 16 May 2022 16:35:40 GMT" ], "Content-Length": [ - "924" + "925" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2214,26 +2214,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/8315486b-1102-48ab-9121-2c4420debc90\",\r\n \"name\": \"8315486b-1102-48ab-9121-2c4420debc90\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"duration\": \"PT12M20.7954195S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"hiagavm\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"hiagavm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-03-28T11:28:04.944113Z\",\r\n \"activityId\": \"2133753d-4dc7-4ecc-815f-d225d073686f\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/4dc90f0e-c246-41a4-a5d3-41e255ed06f4\",\r\n \"name\": \"4dc90f0e-c246-41a4-a5d3-41e255ed06f4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"duration\": \"PT12M26.7596945S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"hiagavm\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"hiagavm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T16:23:13.5123111Z\",\r\n \"activityId\": \"faa41ff3-4701-4ef3-9793-6e3930f05c47\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/8315486b-1102-48ab-9121-2c4420debc90?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEpvYnMvODMxNTQ4NmItMTEwMi00OGFiLTkxMjEtMmM0NDIwZGViYzkwP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/4dc90f0e-c246-41a4-a5d3-41e255ed06f4?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEpvYnMvNGRjOTBmMGUtYzI0Ni00MWE0LWE1ZDMtNDFlMjU1ZWQwNmY0P2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2133753d-4dc7-4ecc-815f-d225d073686f" + "faa41ff3-4701-4ef3-9793-6e3930f05c47" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -2247,10 +2247,10 @@ "nosniff" ], "x-ms-request-id": [ - "dd9db56d-8753-471c-a641-98851a529f08" + "e2a92d3b-bf81-4c35-a163-9d40dd5d6e26" ], "x-ms-client-request-id": [ - "2133753d-4dc7-4ecc-815f-d225d073686f" + "faa41ff3-4701-4ef3-9793-6e3930f05c47" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2265,16 +2265,16 @@ "273" ], "x-ms-correlation-request-id": [ - "dd9db56d-8753-471c-a641-98851a529f08" + "e2a92d3b-bf81-4c35-a163-9d40dd5d6e26" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220328T114056Z:dd9db56d-8753-471c-a641-98851a529f08" + "WESTINDIA:20220516T163613Z:e2a92d3b-bf81-4c35-a163-9d40dd5d6e26" ], "Date": [ - "Mon, 28 Mar 2022 11:40:56 GMT" + "Mon, 16 May 2022 16:36:12 GMT" ], "Content-Length": [ - "924" + "925" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2283,26 +2283,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/8315486b-1102-48ab-9121-2c4420debc90\",\r\n \"name\": \"8315486b-1102-48ab-9121-2c4420debc90\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"duration\": \"PT12M51.4210168S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"hiagavm\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"hiagavm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-03-28T11:28:04.944113Z\",\r\n \"activityId\": \"2133753d-4dc7-4ecc-815f-d225d073686f\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/4dc90f0e-c246-41a4-a5d3-41e255ed06f4\",\r\n \"name\": \"4dc90f0e-c246-41a4-a5d3-41e255ed06f4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"duration\": \"PT12M59.0531803S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"hiagavm\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"hiagavm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T16:23:13.5123111Z\",\r\n \"activityId\": \"faa41ff3-4701-4ef3-9793-6e3930f05c47\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/8315486b-1102-48ab-9121-2c4420debc90?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEpvYnMvODMxNTQ4NmItMTEwMi00OGFiLTkxMjEtMmM0NDIwZGViYzkwP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/4dc90f0e-c246-41a4-a5d3-41e255ed06f4?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEpvYnMvNGRjOTBmMGUtYzI0Ni00MWE0LWE1ZDMtNDFlMjU1ZWQwNmY0P2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2133753d-4dc7-4ecc-815f-d225d073686f" + "faa41ff3-4701-4ef3-9793-6e3930f05c47" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -2316,10 +2316,10 @@ "nosniff" ], "x-ms-request-id": [ - "bd7e7e16-adbf-4a41-9978-77b0a07e5fcf" + "947d5dee-ad89-498f-a293-c959b9ba5d6f" ], "x-ms-client-request-id": [ - "2133753d-4dc7-4ecc-815f-d225d073686f" + "faa41ff3-4701-4ef3-9793-6e3930f05c47" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2334,16 +2334,16 @@ "272" ], "x-ms-correlation-request-id": [ - "bd7e7e16-adbf-4a41-9978-77b0a07e5fcf" + "947d5dee-ad89-498f-a293-c959b9ba5d6f" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220328T114127Z:bd7e7e16-adbf-4a41-9978-77b0a07e5fcf" + "WESTINDIA:20220516T163644Z:947d5dee-ad89-498f-a293-c959b9ba5d6f" ], "Date": [ - "Mon, 28 Mar 2022 11:41:27 GMT" + "Mon, 16 May 2022 16:36:43 GMT" ], "Content-Length": [ - "924" + "925" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2352,26 +2352,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/8315486b-1102-48ab-9121-2c4420debc90\",\r\n \"name\": \"8315486b-1102-48ab-9121-2c4420debc90\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"duration\": \"PT13M22.0943249S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"hiagavm\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"hiagavm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-03-28T11:28:04.944113Z\",\r\n \"activityId\": \"2133753d-4dc7-4ecc-815f-d225d073686f\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/4dc90f0e-c246-41a4-a5d3-41e255ed06f4\",\r\n \"name\": \"4dc90f0e-c246-41a4-a5d3-41e255ed06f4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"duration\": \"PT13M30.1787749S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"hiagavm\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"hiagavm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T16:23:13.5123111Z\",\r\n \"activityId\": \"faa41ff3-4701-4ef3-9793-6e3930f05c47\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/8315486b-1102-48ab-9121-2c4420debc90?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEpvYnMvODMxNTQ4NmItMTEwMi00OGFiLTkxMjEtMmM0NDIwZGViYzkwP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/4dc90f0e-c246-41a4-a5d3-41e255ed06f4?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEpvYnMvNGRjOTBmMGUtYzI0Ni00MWE0LWE1ZDMtNDFlMjU1ZWQwNmY0P2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2133753d-4dc7-4ecc-815f-d225d073686f" + "faa41ff3-4701-4ef3-9793-6e3930f05c47" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -2385,10 +2385,10 @@ "nosniff" ], "x-ms-request-id": [ - "b6a6136a-72bc-43e0-b996-d77a053b0614" + "69e066a1-098a-4683-962f-75e63a246f9b" ], "x-ms-client-request-id": [ - "2133753d-4dc7-4ecc-815f-d225d073686f" + "faa41ff3-4701-4ef3-9793-6e3930f05c47" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2403,13 +2403,13 @@ "271" ], "x-ms-correlation-request-id": [ - "b6a6136a-72bc-43e0-b996-d77a053b0614" + "69e066a1-098a-4683-962f-75e63a246f9b" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220328T114158Z:b6a6136a-72bc-43e0-b996-d77a053b0614" + "WESTINDIA:20220516T163715Z:69e066a1-098a-4683-962f-75e63a246f9b" ], "Date": [ - "Mon, 28 Mar 2022 11:41:58 GMT" + "Mon, 16 May 2022 16:37:14 GMT" ], "Content-Length": [ "924" @@ -2421,26 +2421,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/8315486b-1102-48ab-9121-2c4420debc90\",\r\n \"name\": \"8315486b-1102-48ab-9121-2c4420debc90\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"duration\": \"PT13M52.9778395S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"hiagavm\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"hiagavm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-03-28T11:28:04.944113Z\",\r\n \"activityId\": \"2133753d-4dc7-4ecc-815f-d225d073686f\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/4dc90f0e-c246-41a4-a5d3-41e255ed06f4\",\r\n \"name\": \"4dc90f0e-c246-41a4-a5d3-41e255ed06f4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"duration\": \"PT14M0.9909616S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"hiagavm\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"hiagavm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T16:23:13.5123111Z\",\r\n \"activityId\": \"faa41ff3-4701-4ef3-9793-6e3930f05c47\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/8315486b-1102-48ab-9121-2c4420debc90?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEpvYnMvODMxNTQ4NmItMTEwMi00OGFiLTkxMjEtMmM0NDIwZGViYzkwP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/4dc90f0e-c246-41a4-a5d3-41e255ed06f4?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEpvYnMvNGRjOTBmMGUtYzI0Ni00MWE0LWE1ZDMtNDFlMjU1ZWQwNmY0P2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2133753d-4dc7-4ecc-815f-d225d073686f" + "faa41ff3-4701-4ef3-9793-6e3930f05c47" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -2454,10 +2454,10 @@ "nosniff" ], "x-ms-request-id": [ - "46821aea-f10a-4691-912d-148aca538160" + "c51791f4-8334-4b4c-b756-3a2f4c0c90dd" ], "x-ms-client-request-id": [ - "2133753d-4dc7-4ecc-815f-d225d073686f" + "faa41ff3-4701-4ef3-9793-6e3930f05c47" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2472,16 +2472,16 @@ "270" ], "x-ms-correlation-request-id": [ - "46821aea-f10a-4691-912d-148aca538160" + "c51791f4-8334-4b4c-b756-3a2f4c0c90dd" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220328T114229Z:46821aea-f10a-4691-912d-148aca538160" + "WESTINDIA:20220516T163746Z:c51791f4-8334-4b4c-b756-3a2f4c0c90dd" ], "Date": [ - "Mon, 28 Mar 2022 11:42:28 GMT" + "Mon, 16 May 2022 16:37:46 GMT" ], "Content-Length": [ - "923" + "925" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2490,26 +2490,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/8315486b-1102-48ab-9121-2c4420debc90\",\r\n \"name\": \"8315486b-1102-48ab-9121-2c4420debc90\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"duration\": \"PT14M23.773404S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"hiagavm\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"hiagavm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-03-28T11:28:04.944113Z\",\r\n \"activityId\": \"2133753d-4dc7-4ecc-815f-d225d073686f\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/4dc90f0e-c246-41a4-a5d3-41e255ed06f4\",\r\n \"name\": \"4dc90f0e-c246-41a4-a5d3-41e255ed06f4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"duration\": \"PT14M32.1085013S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"hiagavm\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"hiagavm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T16:23:13.5123111Z\",\r\n \"activityId\": \"faa41ff3-4701-4ef3-9793-6e3930f05c47\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/8315486b-1102-48ab-9121-2c4420debc90?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEpvYnMvODMxNTQ4NmItMTEwMi00OGFiLTkxMjEtMmM0NDIwZGViYzkwP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/4dc90f0e-c246-41a4-a5d3-41e255ed06f4?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEpvYnMvNGRjOTBmMGUtYzI0Ni00MWE0LWE1ZDMtNDFlMjU1ZWQwNmY0P2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2133753d-4dc7-4ecc-815f-d225d073686f" + "faa41ff3-4701-4ef3-9793-6e3930f05c47" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -2523,10 +2523,10 @@ "nosniff" ], "x-ms-request-id": [ - "9a887785-52d8-4903-9523-fe1642d5782c" + "93f1d537-0be7-446d-9b2d-b8a694a7a144" ], "x-ms-client-request-id": [ - "2133753d-4dc7-4ecc-815f-d225d073686f" + "faa41ff3-4701-4ef3-9793-6e3930f05c47" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2541,13 +2541,13 @@ "269" ], "x-ms-correlation-request-id": [ - "9a887785-52d8-4903-9523-fe1642d5782c" + "93f1d537-0be7-446d-9b2d-b8a694a7a144" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220328T114300Z:9a887785-52d8-4903-9523-fe1642d5782c" + "WESTINDIA:20220516T163817Z:93f1d537-0be7-446d-9b2d-b8a694a7a144" ], "Date": [ - "Mon, 28 Mar 2022 11:42:59 GMT" + "Mon, 16 May 2022 16:38:16 GMT" ], "Content-Length": [ "924" @@ -2559,26 +2559,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/8315486b-1102-48ab-9121-2c4420debc90\",\r\n \"name\": \"8315486b-1102-48ab-9121-2c4420debc90\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"duration\": \"PT14M54.4798529S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"hiagavm\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"hiagavm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-03-28T11:28:04.944113Z\",\r\n \"activityId\": \"2133753d-4dc7-4ecc-815f-d225d073686f\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/4dc90f0e-c246-41a4-a5d3-41e255ed06f4\",\r\n \"name\": \"4dc90f0e-c246-41a4-a5d3-41e255ed06f4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"duration\": \"PT15M2.9795399S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"hiagavm\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"hiagavm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T16:23:13.5123111Z\",\r\n \"activityId\": \"faa41ff3-4701-4ef3-9793-6e3930f05c47\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/8315486b-1102-48ab-9121-2c4420debc90?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEpvYnMvODMxNTQ4NmItMTEwMi00OGFiLTkxMjEtMmM0NDIwZGViYzkwP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/4dc90f0e-c246-41a4-a5d3-41e255ed06f4?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEpvYnMvNGRjOTBmMGUtYzI0Ni00MWE0LWE1ZDMtNDFlMjU1ZWQwNmY0P2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2133753d-4dc7-4ecc-815f-d225d073686f" + "faa41ff3-4701-4ef3-9793-6e3930f05c47" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -2592,10 +2592,10 @@ "nosniff" ], "x-ms-request-id": [ - "88307bd3-b45e-49e7-84b6-07812ee87c4d" + "88db0d8a-2219-4113-8594-31344cf3c9de" ], "x-ms-client-request-id": [ - "2133753d-4dc7-4ecc-815f-d225d073686f" + "faa41ff3-4701-4ef3-9793-6e3930f05c47" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2610,16 +2610,16 @@ "268" ], "x-ms-correlation-request-id": [ - "88307bd3-b45e-49e7-84b6-07812ee87c4d" + "88db0d8a-2219-4113-8594-31344cf3c9de" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220328T114330Z:88307bd3-b45e-49e7-84b6-07812ee87c4d" + "WESTINDIA:20220516T163848Z:88db0d8a-2219-4113-8594-31344cf3c9de" ], "Date": [ - "Mon, 28 Mar 2022 11:43:30 GMT" + "Mon, 16 May 2022 16:38:47 GMT" ], "Content-Length": [ - "923" + "925" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2628,26 +2628,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/8315486b-1102-48ab-9121-2c4420debc90\",\r\n \"name\": \"8315486b-1102-48ab-9121-2c4420debc90\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"duration\": \"PT15M25.257124S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"hiagavm\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"hiagavm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-03-28T11:28:04.944113Z\",\r\n \"activityId\": \"2133753d-4dc7-4ecc-815f-d225d073686f\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/4dc90f0e-c246-41a4-a5d3-41e255ed06f4\",\r\n \"name\": \"4dc90f0e-c246-41a4-a5d3-41e255ed06f4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"duration\": \"PT15M33.9556548S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"hiagavm\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"hiagavm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T16:23:13.5123111Z\",\r\n \"activityId\": \"faa41ff3-4701-4ef3-9793-6e3930f05c47\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/8315486b-1102-48ab-9121-2c4420debc90?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEpvYnMvODMxNTQ4NmItMTEwMi00OGFiLTkxMjEtMmM0NDIwZGViYzkwP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/4dc90f0e-c246-41a4-a5d3-41e255ed06f4?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEpvYnMvNGRjOTBmMGUtYzI0Ni00MWE0LWE1ZDMtNDFlMjU1ZWQwNmY0P2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2133753d-4dc7-4ecc-815f-d225d073686f" + "faa41ff3-4701-4ef3-9793-6e3930f05c47" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -2661,10 +2661,10 @@ "nosniff" ], "x-ms-request-id": [ - "1ddf7891-5992-4a86-9dad-ede27c872afa" + "11247e9b-244f-4c12-ad19-d119eb948928" ], "x-ms-client-request-id": [ - "2133753d-4dc7-4ecc-815f-d225d073686f" + "faa41ff3-4701-4ef3-9793-6e3930f05c47" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2679,13 +2679,13 @@ "267" ], "x-ms-correlation-request-id": [ - "1ddf7891-5992-4a86-9dad-ede27c872afa" + "11247e9b-244f-4c12-ad19-d119eb948928" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220328T114401Z:1ddf7891-5992-4a86-9dad-ede27c872afa" + "WESTINDIA:20220516T163918Z:11247e9b-244f-4c12-ad19-d119eb948928" ], "Date": [ - "Mon, 28 Mar 2022 11:44:00 GMT" + "Mon, 16 May 2022 16:39:18 GMT" ], "Content-Length": [ "924" @@ -2697,26 +2697,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/8315486b-1102-48ab-9121-2c4420debc90\",\r\n \"name\": \"8315486b-1102-48ab-9121-2c4420debc90\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"duration\": \"PT15M56.0066753S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"hiagavm\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"hiagavm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-03-28T11:28:04.944113Z\",\r\n \"activityId\": \"2133753d-4dc7-4ecc-815f-d225d073686f\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/4dc90f0e-c246-41a4-a5d3-41e255ed06f4\",\r\n \"name\": \"4dc90f0e-c246-41a4-a5d3-41e255ed06f4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"duration\": \"PT16M4.8003755S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"hiagavm\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"hiagavm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T16:23:13.5123111Z\",\r\n \"activityId\": \"faa41ff3-4701-4ef3-9793-6e3930f05c47\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/8315486b-1102-48ab-9121-2c4420debc90?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEpvYnMvODMxNTQ4NmItMTEwMi00OGFiLTkxMjEtMmM0NDIwZGViYzkwP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/4dc90f0e-c246-41a4-a5d3-41e255ed06f4?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEpvYnMvNGRjOTBmMGUtYzI0Ni00MWE0LWE1ZDMtNDFlMjU1ZWQwNmY0P2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2133753d-4dc7-4ecc-815f-d225d073686f" + "faa41ff3-4701-4ef3-9793-6e3930f05c47" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -2730,10 +2730,10 @@ "nosniff" ], "x-ms-request-id": [ - "d8a25439-b028-43e5-9c5f-5df7c3bb7f3d" + "a60c1a9e-1555-4da8-9653-a37e9e8f35e7" ], "x-ms-client-request-id": [ - "2133753d-4dc7-4ecc-815f-d225d073686f" + "faa41ff3-4701-4ef3-9793-6e3930f05c47" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2748,16 +2748,16 @@ "266" ], "x-ms-correlation-request-id": [ - "d8a25439-b028-43e5-9c5f-5df7c3bb7f3d" + "a60c1a9e-1555-4da8-9653-a37e9e8f35e7" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220328T114432Z:d8a25439-b028-43e5-9c5f-5df7c3bb7f3d" + "WESTINDIA:20220516T163949Z:a60c1a9e-1555-4da8-9653-a37e9e8f35e7" ], "Date": [ - "Mon, 28 Mar 2022 11:44:32 GMT" + "Mon, 16 May 2022 16:39:49 GMT" ], "Content-Length": [ - "924" + "925" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2766,26 +2766,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/8315486b-1102-48ab-9121-2c4420debc90\",\r\n \"name\": \"8315486b-1102-48ab-9121-2c4420debc90\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"duration\": \"PT16M26.6779152S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"hiagavm\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"hiagavm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-03-28T11:28:04.944113Z\",\r\n \"activityId\": \"2133753d-4dc7-4ecc-815f-d225d073686f\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/4dc90f0e-c246-41a4-a5d3-41e255ed06f4\",\r\n \"name\": \"4dc90f0e-c246-41a4-a5d3-41e255ed06f4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"duration\": \"PT16M35.7643674S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"hiagavm\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"hiagavm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T16:23:13.5123111Z\",\r\n \"activityId\": \"faa41ff3-4701-4ef3-9793-6e3930f05c47\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/8315486b-1102-48ab-9121-2c4420debc90?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEpvYnMvODMxNTQ4NmItMTEwMi00OGFiLTkxMjEtMmM0NDIwZGViYzkwP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/4dc90f0e-c246-41a4-a5d3-41e255ed06f4?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEpvYnMvNGRjOTBmMGUtYzI0Ni00MWE0LWE1ZDMtNDFlMjU1ZWQwNmY0P2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2133753d-4dc7-4ecc-815f-d225d073686f" + "faa41ff3-4701-4ef3-9793-6e3930f05c47" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -2799,10 +2799,10 @@ "nosniff" ], "x-ms-request-id": [ - "f7fc8b58-8b7c-442e-a93d-212e6368fc06" + "247f33db-e739-4a2a-a260-6feab95bfd0d" ], "x-ms-client-request-id": [ - "2133753d-4dc7-4ecc-815f-d225d073686f" + "faa41ff3-4701-4ef3-9793-6e3930f05c47" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2817,13 +2817,13 @@ "265" ], "x-ms-correlation-request-id": [ - "f7fc8b58-8b7c-442e-a93d-212e6368fc06" + "247f33db-e739-4a2a-a260-6feab95bfd0d" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220328T114502Z:f7fc8b58-8b7c-442e-a93d-212e6368fc06" + "WESTINDIA:20220516T164021Z:247f33db-e739-4a2a-a260-6feab95bfd0d" ], "Date": [ - "Mon, 28 Mar 2022 11:45:02 GMT" + "Mon, 16 May 2022 16:40:20 GMT" ], "Content-Length": [ "924" @@ -2835,26 +2835,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/8315486b-1102-48ab-9121-2c4420debc90\",\r\n \"name\": \"8315486b-1102-48ab-9121-2c4420debc90\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"duration\": \"PT16M57.3058261S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"hiagavm\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"hiagavm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-03-28T11:28:04.944113Z\",\r\n \"activityId\": \"2133753d-4dc7-4ecc-815f-d225d073686f\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/4dc90f0e-c246-41a4-a5d3-41e255ed06f4\",\r\n \"name\": \"4dc90f0e-c246-41a4-a5d3-41e255ed06f4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"duration\": \"PT17M6.7687262S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"hiagavm\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"hiagavm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T16:23:13.5123111Z\",\r\n \"activityId\": \"faa41ff3-4701-4ef3-9793-6e3930f05c47\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/8315486b-1102-48ab-9121-2c4420debc90?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEpvYnMvODMxNTQ4NmItMTEwMi00OGFiLTkxMjEtMmM0NDIwZGViYzkwP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/4dc90f0e-c246-41a4-a5d3-41e255ed06f4?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEpvYnMvNGRjOTBmMGUtYzI0Ni00MWE0LWE1ZDMtNDFlMjU1ZWQwNmY0P2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2133753d-4dc7-4ecc-815f-d225d073686f" + "faa41ff3-4701-4ef3-9793-6e3930f05c47" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -2868,10 +2868,10 @@ "nosniff" ], "x-ms-request-id": [ - "c88d1e6c-0de2-47d7-85a3-7a4a46f67ea0" + "2d2846c4-3a3a-40c9-8777-7b7348148ff5" ], "x-ms-client-request-id": [ - "2133753d-4dc7-4ecc-815f-d225d073686f" + "faa41ff3-4701-4ef3-9793-6e3930f05c47" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2886,16 +2886,16 @@ "264" ], "x-ms-correlation-request-id": [ - "c88d1e6c-0de2-47d7-85a3-7a4a46f67ea0" + "2d2846c4-3a3a-40c9-8777-7b7348148ff5" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220328T114533Z:c88d1e6c-0de2-47d7-85a3-7a4a46f67ea0" + "WESTINDIA:20220516T164052Z:2d2846c4-3a3a-40c9-8777-7b7348148ff5" ], "Date": [ - "Mon, 28 Mar 2022 11:45:33 GMT" + "Mon, 16 May 2022 16:40:51 GMT" ], "Content-Length": [ - "924" + "925" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2904,26 +2904,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/8315486b-1102-48ab-9121-2c4420debc90\",\r\n \"name\": \"8315486b-1102-48ab-9121-2c4420debc90\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"duration\": \"PT17M28.1383579S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"hiagavm\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"hiagavm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-03-28T11:28:04.944113Z\",\r\n \"activityId\": \"2133753d-4dc7-4ecc-815f-d225d073686f\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/4dc90f0e-c246-41a4-a5d3-41e255ed06f4\",\r\n \"name\": \"4dc90f0e-c246-41a4-a5d3-41e255ed06f4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"duration\": \"PT17M37.8618984S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"hiagavm\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"hiagavm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T16:23:13.5123111Z\",\r\n \"activityId\": \"faa41ff3-4701-4ef3-9793-6e3930f05c47\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/8315486b-1102-48ab-9121-2c4420debc90?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEpvYnMvODMxNTQ4NmItMTEwMi00OGFiLTkxMjEtMmM0NDIwZGViYzkwP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/4dc90f0e-c246-41a4-a5d3-41e255ed06f4?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEpvYnMvNGRjOTBmMGUtYzI0Ni00MWE0LWE1ZDMtNDFlMjU1ZWQwNmY0P2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2133753d-4dc7-4ecc-815f-d225d073686f" + "faa41ff3-4701-4ef3-9793-6e3930f05c47" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -2937,10 +2937,10 @@ "nosniff" ], "x-ms-request-id": [ - "55805e7b-3f80-4a88-87e6-5a51fa029761" + "376fbb2e-93f4-4448-a563-a1de61c35d7d" ], "x-ms-client-request-id": [ - "2133753d-4dc7-4ecc-815f-d225d073686f" + "faa41ff3-4701-4ef3-9793-6e3930f05c47" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2955,16 +2955,16 @@ "263" ], "x-ms-correlation-request-id": [ - "55805e7b-3f80-4a88-87e6-5a51fa029761" + "376fbb2e-93f4-4448-a563-a1de61c35d7d" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220328T114604Z:55805e7b-3f80-4a88-87e6-5a51fa029761" + "WESTINDIA:20220516T164122Z:376fbb2e-93f4-4448-a563-a1de61c35d7d" ], "Date": [ - "Mon, 28 Mar 2022 11:46:03 GMT" + "Mon, 16 May 2022 16:41:22 GMT" ], "Content-Length": [ - "982" + "924" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2973,26 +2973,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/8315486b-1102-48ab-9121-2c4420debc90\",\r\n \"name\": \"8315486b-1102-48ab-9121-2c4420debc90\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"duration\": \"PT17M37.4403964S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Skipped\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"hiagavm\",\r\n \"Backup Size\": \"0 MB\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"hiagavm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-03-28T11:28:04.944113Z\",\r\n \"endTime\": \"2022-03-28T11:45:42.3845094Z\",\r\n \"activityId\": \"2133753d-4dc7-4ecc-815f-d225d073686f\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/4dc90f0e-c246-41a4-a5d3-41e255ed06f4\",\r\n \"name\": \"4dc90f0e-c246-41a4-a5d3-41e255ed06f4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"duration\": \"PT18M8.8245175S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"hiagavm\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"hiagavm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T16:23:13.5123111Z\",\r\n \"activityId\": \"faa41ff3-4701-4ef3-9793-6e3930f05c47\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupFabrics/Azure/protectionContainers/IaasVMContainer%3Biaasvmcontainerv2%3Bhiagarg%3Bhiagavm/protectedItems/VM%3Biaasvmcontainerv2%3Bhiagarg%3Bhiagavm/recoveryPoints?$filter=startDate%20eq%20'2022-03-28%2011:27:04%20AM'%20and%20endDate%20eq%20'2022-03-28%2011:46:42%20AM'&api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEZhYnJpY3MvQXp1cmUvcHJvdGVjdGlvbkNvbnRhaW5lcnMvSWFhc1ZNQ29udGFpbmVyJTNCaWFhc3ZtY29udGFpbmVydjIlM0JoaWFnYXJnJTNCaGlhZ2F2bS9wcm90ZWN0ZWRJdGVtcy9WTSUzQmlhYXN2bWNvbnRhaW5lcnYyJTNCaGlhZ2FyZyUzQmhpYWdhdm0vcmVjb3ZlcnlQb2ludHM/JGZpbHRlcj1zdGFydERhdGUlMjBlcSUyMCcyMDIyLTAzLTI4JTIwMTE6Mjc6MDQlMjBBTSclMjBhbmQlMjBlbmREYXRlJTIwZXElMjAnMjAyMi0wMy0yOCUyMDExOjQ2OjQyJTIwQU0nJmFwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/4dc90f0e-c246-41a4-a5d3-41e255ed06f4?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEpvYnMvNGRjOTBmMGUtYzI0Ni00MWE0LWE1ZDMtNDFlMjU1ZWQwNmY0P2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "abf24951-a8ae-4738-bbdf-130c54aaded7" + "faa41ff3-4701-4ef3-9793-6e3930f05c47" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -3006,34 +3006,34 @@ "nosniff" ], "x-ms-request-id": [ - "e5c990e1-1690-4873-b511-d9ac840fb28a" + "83e4c359-971b-4029-8689-c2c10a0a7d21" ], "x-ms-client-request-id": [ - "abf24951-a8ae-4738-bbdf-130c54aaded7" + "faa41ff3-4701-4ef3-9793-6e3930f05c47" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Server": [ - "Kestrel" + "Microsoft-IIS/10.0" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "299" + "262" ], "x-ms-correlation-request-id": [ - "e5c990e1-1690-4873-b511-d9ac840fb28a" + "83e4c359-971b-4029-8689-c2c10a0a7d21" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220328T114604Z:e5c990e1-1690-4873-b511-d9ac840fb28a" + "WESTINDIA:20220516T164154Z:83e4c359-971b-4029-8689-c2c10a0a7d21" ], "Date": [ - "Mon, 28 Mar 2022 11:46:03 GMT" + "Mon, 16 May 2022 16:41:53 GMT" ], "Content-Length": [ - "1239" + "924" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3042,26 +3042,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;hiagarg;hiagavm/protectedItems/VM;iaasvmcontainerv2;hiagarg;hiagavm/recoveryPoints/165362183637180\",\r\n \"name\": \"165362183637180\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints\",\r\n \"properties\": {\r\n \"objectType\": \"IaasVMRecoveryPoint\",\r\n \"recoveryPointType\": \"CrashConsistent\",\r\n \"recoveryPointTime\": \"2022-03-28T11:28:08.4638435Z\",\r\n \"recoveryPointAdditionalInfo\": \"\",\r\n \"sourceVMStorageType\": \"PremiumVMOnPartialPremiumStorage\",\r\n \"isSourceVMEncrypted\": false,\r\n \"isInstantIlrSessionActive\": false,\r\n \"recoveryPointTierDetails\": [\r\n {\r\n \"type\": \"InstantRP\",\r\n \"status\": \"Valid\"\r\n }\r\n ],\r\n \"isManagedVirtualMachine\": true,\r\n \"virtualMachineSize\": \"Standard_B4ms\",\r\n \"originalStorageAccountOption\": false,\r\n \"osType\": \"Windows\",\r\n \"zones\": [\r\n \"1\"\r\n ],\r\n \"recoveryPointMoveReadinessInfo\": {\r\n \"ArchivedRP\": {\r\n \"isReadyForMove\": false,\r\n \"additionalInfo\": \"Recovery point cannot be moved to Archive tier due to insufficient retention duration specified in policy.. Update policy on the protected item with appropriate retention setting and try again.\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/4dc90f0e-c246-41a4-a5d3-41e255ed06f4\",\r\n \"name\": \"4dc90f0e-c246-41a4-a5d3-41e255ed06f4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"duration\": \"PT18M39.971996S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"hiagavm\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"hiagavm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T16:23:13.5123111Z\",\r\n \"activityId\": \"faa41ff3-4701-4ef3-9793-6e3930f05c47\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resources?$filter=resourceType%20eq%20'Microsoft.ClassicStorage%2FstorageAccounts'&api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5DbGFzc2ljU3RvcmFnZSUyRnN0b3JhZ2VBY2NvdW50cycmYXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/4dc90f0e-c246-41a4-a5d3-41e255ed06f4?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEpvYnMvNGRjOTBmMGUtYzI0Ni00MWE0LWE1ZDMtNDFlMjU1ZWQwNmY0P2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "00653042-fa93-466e-8421-f35b91189233" + "faa41ff3-4701-4ef3-9793-6e3930f05c47" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -3071,57 +3071,66 @@ "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "261" ], - "x-ms-request-id": [ - "38c3d2c9-2a76-4be5-a827-33401665c601" + "X-Content-Type-Options": [ + "nosniff" ], - "x-ms-correlation-request-id": [ - "38c3d2c9-2a76-4be5-a827-33401665c601" + "x-ms-request-id": [ + "9a802458-fbf8-4f7d-804f-f1f291b46ad2" ], - "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220328T114605Z:38c3d2c9-2a76-4be5-a827-33401665c601" + "x-ms-client-request-id": [ + "faa41ff3-4701-4ef3-9793-6e3930f05c47" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ - "nosniff" + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-correlation-request-id": [ + "9a802458-fbf8-4f7d-804f-f1f291b46ad2" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T164225Z:9a802458-fbf8-4f7d-804f-f1f291b46ad2" ], "Date": [ - "Mon, 28 Mar 2022 11:46:04 GMT" + "Mon, 16 May 2022 16:42:24 GMT" + ], + "Content-Length": [ + "925" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" - ], - "Content-Length": [ - "268" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.existing/providers/Microsoft.ClassicStorage/storageAccounts/iaasextstore2\",\r\n \"name\": \"iaasextstore2\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"southeastasia\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/4dc90f0e-c246-41a4-a5d3-41e255ed06f4\",\r\n \"name\": \"4dc90f0e-c246-41a4-a5d3-41e255ed06f4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"duration\": \"PT19M10.9152461S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"hiagavm\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"hiagavm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T16:23:13.5123111Z\",\r\n \"activityId\": \"faa41ff3-4701-4ef3-9793-6e3930f05c47\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resources?$filter=resourceType%20eq%20'Microsoft.ClassicStorage%2FstorageAccounts'&api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5DbGFzc2ljU3RvcmFnZSUyRnN0b3JhZ2VBY2NvdW50cycmYXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/4dc90f0e-c246-41a4-a5d3-41e255ed06f4?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEpvYnMvNGRjOTBmMGUtYzI0Ni00MWE0LWE1ZDMtNDFlMjU1ZWQwNmY0P2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2eac2e4f-f201-42cb-8481-adf9c00b8cff" + "faa41ff3-4701-4ef3-9793-6e3930f05c47" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -3131,57 +3140,66 @@ "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "X-Content-Type-Options": [ + "nosniff" ], "x-ms-request-id": [ - "0ad92ec2-aaf0-4a35-8ec7-17d7db8f9a8f" - ], - "x-ms-correlation-request-id": [ - "0ad92ec2-aaf0-4a35-8ec7-17d7db8f9a8f" + "2744219e-76fc-4450-bdb0-2da11d63c325" ], - "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220328T115046Z:0ad92ec2-aaf0-4a35-8ec7-17d7db8f9a8f" + "x-ms-client-request-id": [ + "faa41ff3-4701-4ef3-9793-6e3930f05c47" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ - "nosniff" + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "260" + ], + "x-ms-correlation-request-id": [ + "2744219e-76fc-4450-bdb0-2da11d63c325" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T164256Z:2744219e-76fc-4450-bdb0-2da11d63c325" ], "Date": [ - "Mon, 28 Mar 2022 11:50:45 GMT" + "Mon, 16 May 2022 16:42:56 GMT" + ], + "Content-Length": [ + "925" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" - ], - "Content-Length": [ - "268" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.existing/providers/Microsoft.ClassicStorage/storageAccounts/iaasextstore2\",\r\n \"name\": \"iaasextstore2\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"southeastasia\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/4dc90f0e-c246-41a4-a5d3-41e255ed06f4\",\r\n \"name\": \"4dc90f0e-c246-41a4-a5d3-41e255ed06f4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"duration\": \"PT19M42.5551734S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"hiagavm\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"hiagavm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T16:23:13.5123111Z\",\r\n \"activityId\": \"faa41ff3-4701-4ef3-9793-6e3930f05c47\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resources?$filter=resourceType%20eq%20'Microsoft.Storage%2FstorageAccounts'&api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5TdG9yYWdlJTJGc3RvcmFnZUFjY291bnRzJyZhcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/4dc90f0e-c246-41a4-a5d3-41e255ed06f4?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEpvYnMvNGRjOTBmMGUtYzI0Ni00MWE0LWE1ZDMtNDFlMjU1ZWQwNmY0P2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "00653042-fa93-466e-8421-f35b91189233" + "faa41ff3-4701-4ef3-9793-6e3930f05c47" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -3191,57 +3209,66 @@ "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "X-Content-Type-Options": [ + "nosniff" ], "x-ms-request-id": [ - "309d0554-7874-4524-a463-04820f6a48eb" + "d80e1d4b-5fb6-4081-b875-b213b934cee8" ], - "x-ms-correlation-request-id": [ - "309d0554-7874-4524-a463-04820f6a48eb" - ], - "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220328T114605Z:309d0554-7874-4524-a463-04820f6a48eb" + "x-ms-client-request-id": [ + "faa41ff3-4701-4ef3-9793-6e3930f05c47" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ - "nosniff" + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "259" + ], + "x-ms-correlation-request-id": [ + "d80e1d4b-5fb6-4081-b875-b213b934cee8" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T164327Z:d80e1d4b-5fb6-4081-b875-b213b934cee8" ], "Date": [ - "Mon, 28 Mar 2022 11:46:05 GMT" + "Mon, 16 May 2022 16:43:27 GMT" + ], + "Content-Length": [ + "925" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" - ], - "Content-Length": [ - "32912" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.existing.crr/providers/Microsoft.Storage/storageAccounts/iaasvmexistingcrrdiag\",\r\n \"name\": \"iaasvmexistingcrrdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"MAB Used\": \"Yes\",\r\n \"DeleteBy\": \"01-2030\",\r\n \"Delete By\": \"01-2030\",\r\n \"Owner\": \"chgonugu\",\r\n \"Purpose\": \"Testing\",\r\n \"AutoShutdown\": \"false\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.existing.crr/providers/Microsoft.Storage/storageAccounts/iaasvmexistingcrrdiag112\",\r\n \"name\": \"iaasvmexistingcrrdiag112\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {\r\n \"Owner\": \"chgonugu\",\r\n \"Purpose\": \"Testing\",\r\n \"MabUsed\": \"Yes\",\r\n \"DeleteBy\": \"01-2025\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.existing.crr/providers/Microsoft.Storage/storageAccounts/iaasvmexistingcrr\",\r\n \"name\": \"iaasvmexistingcrr\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/sambit_rg/providers/Microsoft.Storage/storageAccounts/sarathsa3\",\r\n \"name\": \"sarathsa3\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvmhanaworkload.existing/providers/Microsoft.Storage/storageAccounts/iaasvmhanaworkloadexisti\",\r\n \"name\": \"iaasvmhanaworkloadexisti\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"AutoShutdown\": \"No\",\r\n \"BVT Used\": \"Yes\",\r\n \"Owner\": \"chgonugu\",\r\n \"Purpose\": \"BVT\",\r\n \"DeleteBy\": \"01-2030\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/afsnavigationtest\",\r\n \"name\": \"afsnavigationtest\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/afstbackuptestsa\",\r\n \"name\": \"afstbackuptestsa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.encryptedvm/providers/Microsoft.Storage/storageAccounts/iaasvmencryptedvmdiag170\",\r\n \"name\": \"iaasvmencryptedvmdiag170\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.existing/providers/Microsoft.Storage/storageAccounts/iaasvmexistingdiag1\",\r\n \"name\": \"iaasvmexistingdiag1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.existing/providers/Microsoft.Storage/storageAccounts/iaasextstore1\",\r\n \"name\": \"iaasextstore1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.new/providers/Microsoft.Storage/storageAccounts/iaasvmnewdiag1\",\r\n \"name\": \"iaasvmnewdiag1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.new/providers/Microsoft.Storage/storageAccounts/iaasnewstore1\",\r\n \"name\": \"iaasnewstore1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/IaasVMNavigationTest-RG/providers/Microsoft.Storage/storageAccounts/aasavigationestdiag\",\r\n \"name\": \"aasavigationestdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/IaasVMNavigationTest-RG/providers/Microsoft.Storage/storageAccounts/iaasvmnavigationstore\",\r\n \"name\": \"iaasvmnavigationstore\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pscloudtestrg/providers/Microsoft.Storage/storageAccounts/pscloudtestrgdiag\",\r\n \"name\": \"pscloudtestrgdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MAB Used\": \" Yes\",\r\n \"MABUsed\": \" Yes\",\r\n \"DeleteBy\": \"01-2030\",\r\n \"Purpose\": \"PS bvt\",\r\n \"Owner\": \"sarath\",\r\n \"AutoShutdown\": \"No\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pscloudtestrg/providers/Microsoft.Storage/storageAccounts/psbvtsa2\",\r\n \"name\": \"psbvtsa2\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstestsa8895\",\r\n \"name\": \"pstestsa8895\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstesttargetsa8895\",\r\n \"name\": \"pstesttargetsa8895\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstesttargetsa8896\",\r\n \"name\": \"pstesttargetsa8896\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/afsbackupsa\",\r\n \"name\": \"afsbackupsa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"Owner\": \"sarath\",\r\n \"Purpose\": \" BVT\",\r\n \"DeleteBy\": \"01-2025\",\r\n \"AutoShutdown\": \"No\",\r\n \"MAB Used\": \" Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG54bdf8da/providers/Microsoft.Storage/storageAccounts/pstestsa54bdf8da\",\r\n \"name\": \"pstestsa54bdf8da\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG1e5a278b/providers/Microsoft.Storage/storageAccounts/pstestsa1e5a278b\",\r\n \"name\": \"pstestsa1e5a278b\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG59e1706f/providers/Microsoft.Storage/storageAccounts/pstestsa59e1706f\",\r\n \"name\": \"pstestsa59e1706f\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/storageysci5wbex6jyc\",\r\n \"name\": \"storageysci5wbex6jyc\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/prnookal-rg/providers/Microsoft.Storage/storageAccounts/prnookaltestnob\",\r\n \"name\": \"prnookaltestnob\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"isMABUsed\": \"Yes\",\r\n \" Owner\": \"prnookal@microsoft.com\",\r\n \"DeletBy\": \"12-2021\",\r\n \"Purpose\": \" Testing\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/afsbackupsa1\",\r\n \"name\": \"afsbackupsa1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"Mab Used\": \"yes\",\r\n \"Owner\": \"akkanase\",\r\n \"Purpose\": \"Testing\",\r\n \"DeleteBy\": \"01-2022\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/afsbackupsa2\",\r\n \"name\": \"afsbackupsa2\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseTest/providers/Microsoft.Storage/storageAccounts/afsfilesharetest\",\r\n \"name\": \"afsfilesharetest\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/afsbackupsa3\",\r\n \"name\": \"afsbackupsa3\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/afsbackupsa0\",\r\n \"name\": \"afsbackupsa0\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pscloudtest-diskbackup-existing/providers/Microsoft.Storage/storageAccounts/1vnseapod01otds1\",\r\n \"name\": \"1vnseapod01otds1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGZRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseAFSTest/providers/Microsoft.Storage/storageAccounts/akkanaseafssa\",\r\n \"name\": \"akkanaseafssa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MAB Used\": \"Yes\",\r\n \"Owner\": \"akkanase\",\r\n \"Purpose\": \"Testing\",\r\n \"Delete By\": \"05-202\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseAFSTest/providers/Microsoft.Storage/storageAccounts/akkanasembpd2\",\r\n \"name\": \"akkanasembpd2\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MAB Used\": \"Yes\",\r\n \"Purpose\": \"Testing\",\r\n \"Owner\": \"akkanase\",\r\n \"Delete By\": \"05-2022\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseCMK/providers/Microsoft.Storage/storageAccounts/akkanase\",\r\n \"name\": \"akkanase\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"DeleteBy\": \"05-2023\",\r\n \"Owner\": \"akkanase\",\r\n \"Purpose\": \"Testing\",\r\n \"MAB Used\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/cmk.system/providers/Microsoft.Storage/storageAccounts/cmkautomationstore\",\r\n \"name\": \"cmkautomationstore\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"Delete By\": \"05-2050\",\r\n \"MAB Used\": \" Yes\",\r\n \"Owner\": \"akkanase\",\r\n \"Purpose\": \" BVT\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG235879ba/providers/Microsoft.Storage/storageAccounts/pstestsa235879ba\",\r\n \"name\": \"pstestsa235879ba\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/disk-bvt-test-rg/providers/Microsoft.Storage/storageAccounts/hv3seapod01otds1\",\r\n \"name\": \"hv3seapod01otds1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGZRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/DoNotUse-OSS-BVT-SEA-RG/providers/Microsoft.Storage/storageAccounts/dontuseossrestoreasfile\",\r\n \"name\": \"dontuseossrestoreasfile\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MAB Used\": \" Yes\",\r\n \" Owner\": \"akkanase\",\r\n \"Purpose\": \"BV\",\r\n \"Delete By\": \"05-2020\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseAFSTest/providers/Microsoft.Storage/storageAccounts/akkanaseafsa2\",\r\n \"name\": \"akkanaseafsa2\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseCMK/providers/Microsoft.Storage/storageAccounts/0byseapod01otds1\",\r\n \"name\": \"0byseapod01otds1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGZRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/9exwuspod01otds1\",\r\n \"name\": \"9exwuspod01otds1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/02xseacan01otds1\",\r\n \"name\": \"02xseacan01otds1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGZRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseMAB/providers/Microsoft.Storage/storageAccounts/dnhccypod01otds1\",\r\n \"name\": \"dnhccypod01otds1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rguzio7xhypi/providers/Microsoft.Storage/storageAccounts/clitest4b24ibpr3ztyhwo23\",\r\n \"name\": \"clitest4b24ibpr3ztyhwo23\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rgsiaa3ljqg5/providers/Microsoft.Storage/storageAccounts/clitestgd6i34czs3jb3rdtc\",\r\n \"name\": \"clitestgd6i34czs3jb3rdtc\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rgjxpjikqjjw/providers/Microsoft.Storage/storageAccounts/clitestjkhq2kpsal665atqe\",\r\n \"name\": \"clitestjkhq2kpsal665atqe\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rgwwhxyyhl2u/providers/Microsoft.Storage/storageAccounts/clitestdggdsdbtfa6vq5n5o\",\r\n \"name\": \"clitestdggdsdbtfa6vq5n5o\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rgm44mrkvygk/providers/Microsoft.Storage/storageAccounts/clitestodvd3xsftt63go6dk\",\r\n \"name\": \"clitestodvd3xsftt63go6dk\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rgdy7jf3qqzd/providers/Microsoft.Storage/storageAccounts/clitestnbsma3ftf2yugilxq\",\r\n \"name\": \"clitestnbsma3ftf2yugilxq\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rgl5tlzqo2pt/providers/Microsoft.Storage/storageAccounts/clitestgn64zidsnwe3ndjp5\",\r\n \"name\": \"clitestgn64zidsnwe3ndjp5\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rg73eqbdp4g5/providers/Microsoft.Storage/storageAccounts/clitestzfhrqsr4m24iwnjy7\",\r\n \"name\": \"clitestzfhrqsr4m24iwnjy7\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rg73eqbdp4g5/providers/Microsoft.Storage/storageAccounts/clitestukhlrarahpoebmaln\",\r\n \"name\": \"clitestukhlrarahpoebmaln\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/prnookal-prod/providers/Microsoft.Storage/storageAccounts/prnookalprod\",\r\n \"name\": \"prnookalprod\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"japaneast\",\r\n \"tags\": {\r\n \"IsMabUsed\": \"Yes\",\r\n \"Owner\": \"prnookal\",\r\n \"DeleteBy\": \"12-2021\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/cloud-shell-storage-centralindia/providers/Microsoft.Storage/storageAccounts/csg10032000d221b981\",\r\n \"name\": \"csg10032000d221b981\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centralindia\",\r\n \"tags\": {\r\n \"ms-resource-usage\": \"azure-cloud-shell\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/cloud-shell-storage-centralindia/providers/Microsoft.Storage/storageAccounts/csg10032000b56ab138\",\r\n \"name\": \"csg10032000b56ab138\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centralindia\",\r\n \"tags\": {\r\n \"ms-resource-usage\": \"azure-cloud-shell\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/cloud-shell-storage-centralindia/providers/Microsoft.Storage/storageAccounts/csg10033fffacb0d110\",\r\n \"name\": \"csg10033fffacb0d110\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centralindia\",\r\n \"tags\": {\r\n \"ms-resource-usage\": \"azure-cloud-shell\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/cloud-shell-storage-centralindia/providers/Microsoft.Storage/storageAccounts/csg1003bffda7dcd176\",\r\n \"name\": \"csg1003bffda7dcd176\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centralindia\",\r\n \"tags\": {\r\n \"ms-resource-usage\": \"azure-cloud-shell\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvmsqlworkload.existing.crr/providers/Microsoft.Storage/storageAccounts/iaasvmsqlworkloadexistin\",\r\n \"name\": \"iaasvmsqlworkloadexistin\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {\r\n \"Owner\": \"chgonugu\",\r\n \"Purpose\": \"BVT\",\r\n \"MabUsed\": \"Yes\",\r\n \"DeleteBy\": \"12-2099\",\r\n \"AutoShutdown\": \"No\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/Blob-Backup/providers/Microsoft.Storage/storageAccounts/testblobbackup\",\r\n \"name\": \"testblobbackup\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/fzejupmyclivaultasrcache\",\r\n \"name\": \"fzejupmyclivaultasrcache\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseCcyGrs/providers/Microsoft.Storage/storageAccounts/storeimqyzvpnwrv5a\",\r\n \"name\": \"storeimqyzvpnwrv5a\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/sarath-rg/providers/Microsoft.Storage/storageAccounts/clitestingsa\",\r\n \"name\": \"clitestingsa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/sarath-rg/providers/Microsoft.Storage/storageAccounts/axiccypod01otds1\",\r\n \"name\": \"axiccypod01otds1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseZRS/providers/Microsoft.Storage/storageAccounts/akanasezrsstorag\",\r\n \"name\": \"akanasezrsstorag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {\r\n \"Purpose\": \"Testing\",\r\n \"Owner\": \"akkanase\",\r\n \"Mab Used\": \"yes\",\r\n \"DeleteBy\": \"01-2025\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/sarath-rg/providers/Microsoft.Storage/storageAccounts/sarathsacli\",\r\n \"name\": \"sarathsacli\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm-clitest-rg/providers/Microsoft.Storage/storageAccounts/iaasvmclitestsa\",\r\n \"name\": \"iaasvmclitestsa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"Owner\": \"akneema\",\r\n \"MABUsed\": \"Yes\",\r\n \"Purpose\": \"CLITest\",\r\n \"DeleteBy\": \"12-9999\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.Storage/storageAccounts/hiagasa\",\r\n \"name\": \"hiagasa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\",\r\n \"Purpose\": \"Testing\",\r\n \"DeleteBy\": \"01-2099\",\r\n \"Owner\": \"hiaga\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.Storage/storageAccounts/akneemasaecy\",\r\n \"name\": \"akneemasaecy\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {\r\n \"Owner\": \"akneema\",\r\n \"Purpose\": \"Testing\",\r\n \"MABUsed\": \"Yes\",\r\n \"DeleteBy\": \"12-9999\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/oss-clitest-rg/providers/Microsoft.Storage/storageAccounts/ossclitestsa\",\r\n \"name\": \"ossclitestsa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"Owner\": \"akneema\",\r\n \"Purpose\": \"Testing\",\r\n \"MABUsed\": \"Yes\",\r\n \"DeleteBy\": \"12-9999\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/oss-pstest-rg/providers/Microsoft.Storage/storageAccounts/osspstestsa\",\r\n \"name\": \"osspstestsa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"MABUsed\": \"Ye\",\r\n \"Owne\": \"hiaga\",\r\n \"Purpose\": \"esting\",\r\n \"Del\": \"01-2099\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/cli-track2-rg/providers/Microsoft.Storage/storageAccounts/clitrack2sa\",\r\n \"name\": \"clitrack2sa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"Owner\": \"akneema\",\r\n \"Purpose\": \"Testing\",\r\n \"DeleteBy\": \"12-9999\",\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm-pstest-rg/providers/Microsoft.Storage/storageAccounts/iaasvmpstestsa\",\r\n \"name\": \"iaasvmpstestsa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"MABUsed\": \"yes\",\r\n \"Owner\": \"hiaga\",\r\n \"Purpose\": \"testing\",\r\n \"DeleteBy\": \"01-2099\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/DontUse-BlobRestore-BVT-CCY-RG/providers/Microsoft.Storage/storageAccounts/dontuseblobbvtccyrstrall\",\r\n \"name\": \"dontuseblobbvtccyrstrall\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/DontUse-BlobRestore-BVT-CCY-RG/providers/Microsoft.Storage/storageAccounts/dontuseblobbvtccyprefix\",\r\n \"name\": \"dontuseblobbvtccyprefix\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/DontUse-BlobRestore-BVT-CCY-RG/providers/Microsoft.Storage/storageAccounts/dontuseblobbvtccycontnr\",\r\n \"name\": \"dontuseblobbvtccycontnr\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/oss-clicloudtest-rg/providers/Microsoft.Storage/storageAccounts/ossclicloudtestsa\",\r\n \"name\": \"ossclicloudtestsa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"Owner\": \"akneema\",\r\n \"Purpose\": \"Testing\",\r\n \"DeleteBy\": \"12-9999\",\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/prnookal-wcus/providers/Microsoft.Storage/storageAccounts/prnookalwcus\",\r\n \"name\": \"prnookalwcus\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"Owner\": \"prnookal\",\r\n \"DeleteBy\": \"12-2021\",\r\n \"IsMabUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PORTAL.DPP.BVT.BLOB.RESTORE.EXISTING/providers/Microsoft.Storage/storageAccounts/blobsaforrestoreall\",\r\n \"name\": \"blobsaforrestoreall\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PORTAL.DPP.BVT.BLOB.RESTORE.EXISTING/providers/Microsoft.Storage/storageAccounts/blobrestoreopcontainers\",\r\n \"name\": \"blobrestoreopcontainers\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PORTAL.DPP.BVT.BLOB.RESTORE.EXISTING/providers/Microsoft.Storage/storageAccounts/blobrestoreopprefix\",\r\n \"name\": \"blobrestoreopprefix\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PORTAL.DPP.BVT.BLOB.RESTORE.EXISTING/providers/Microsoft.Storage/storageAccounts/blobrestoreopcontainer\",\r\n \"name\": \"blobrestoreopcontainer\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PORTAL.DPP.BVT.BLOB.RESTORE.EXISTING/providers/Microsoft.Storage/storageAccounts/blobrestoreopall\",\r\n \"name\": \"blobrestoreopall\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PORTAL.DPP.BVT.BLOB.RESTORE.EXISTING/providers/Microsoft.Storage/storageAccounts/bloboprestorecontainers\",\r\n \"name\": \"bloboprestorecontainers\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PORTAL.DPP.BVT.BLOB.RESTORE.EXISTING/providers/Microsoft.Storage/storageAccounts/bloboprestoreall\",\r\n \"name\": \"bloboprestoreall\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagargeus/providers/Microsoft.Storage/storageAccounts/hiagargeus\",\r\n \"name\": \"hiagargeus\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akneema-we-rg/providers/Microsoft.Storage/storageAccounts/gb8wepod01otds1\",\r\n \"name\": \"gb8wepod01otds1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGZRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akneema/providers/Microsoft.Storage/storageAccounts/uvqccypod01otds1\",\r\n \"name\": \"uvqccypod01otds1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagaCZR-rg/providers/Microsoft.Storage/storageAccounts/cliczrlrssa\",\r\n \"name\": \"cliczrlrssa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {\r\n \"Owner\": \"akneema\",\r\n \"Purpose\": \"Testing\",\r\n \"DeleteBy\": \"12-9999\",\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseGRSVault/providers/Microsoft.Storage/storageAccounts/frmseapod01otds1\",\r\n \"name\": \"frmseapod01otds1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGZRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseZRS/providers/Microsoft.Storage/storageAccounts/rfoccypod01otds1\",\r\n \"name\": \"rfoccypod01otds1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akneema-we-rg/providers/Microsoft.Storage/storageAccounts/m3dccypod01otds01\",\r\n \"name\": \"m3dccypod01otds01\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/AdkayethBugbash/providers/Microsoft.Storage/storageAccounts/adkayethsfsa\",\r\n \"name\": \"adkayethsfsa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/AdkayethBugbash/providers/Microsoft.Storage/storageAccounts/adkayathesfsabugbash\",\r\n \"name\": \"adkayathesfsabugbash\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/4dc90f0e-c246-41a4-a5d3-41e255ed06f4\",\r\n \"name\": \"4dc90f0e-c246-41a4-a5d3-41e255ed06f4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"duration\": \"PT20M13.5633438S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"hiagavm\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"hiagavm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T16:23:13.5123111Z\",\r\n \"activityId\": \"faa41ff3-4701-4ef3-9793-6e3930f05c47\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resources?$filter=resourceType%20eq%20'Microsoft.Storage%2FstorageAccounts'&api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5TdG9yYWdlJTJGc3RvcmFnZUFjY291bnRzJyZhcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/4dc90f0e-c246-41a4-a5d3-41e255ed06f4?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEpvYnMvNGRjOTBmMGUtYzI0Ni00MWE0LWE1ZDMtNDFlMjU1ZWQwNmY0P2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2eac2e4f-f201-42cb-8481-adf9c00b8cff" + "faa41ff3-4701-4ef3-9793-6e3930f05c47" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -3251,63 +3278,66 @@ "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "X-Content-Type-Options": [ + "nosniff" ], "x-ms-request-id": [ - "2e26cf3a-1f9f-4782-b345-97d6e432707a" + "d41d58d8-ec45-448b-b8b1-d0e43b4f7696" ], - "x-ms-correlation-request-id": [ - "2e26cf3a-1f9f-4782-b345-97d6e432707a" - ], - "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220328T115046Z:2e26cf3a-1f9f-4782-b345-97d6e432707a" + "x-ms-client-request-id": [ + "faa41ff3-4701-4ef3-9793-6e3930f05c47" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ - "nosniff" + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "258" + ], + "x-ms-correlation-request-id": [ + "d41d58d8-ec45-448b-b8b1-d0e43b4f7696" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T164358Z:d41d58d8-ec45-448b-b8b1-d0e43b4f7696" ], "Date": [ - "Mon, 28 Mar 2022 11:50:45 GMT" + "Mon, 16 May 2022 16:43:58 GMT" + ], + "Content-Length": [ + "925" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" - ], - "Content-Length": [ - "32912" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.existing.crr/providers/Microsoft.Storage/storageAccounts/iaasvmexistingcrrdiag\",\r\n \"name\": \"iaasvmexistingcrrdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"MAB Used\": \"Yes\",\r\n \"DeleteBy\": \"01-2030\",\r\n \"Delete By\": \"01-2030\",\r\n \"Owner\": \"chgonugu\",\r\n \"Purpose\": \"Testing\",\r\n \"AutoShutdown\": \"false\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.existing.crr/providers/Microsoft.Storage/storageAccounts/iaasvmexistingcrrdiag112\",\r\n \"name\": \"iaasvmexistingcrrdiag112\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {\r\n \"Owner\": \"chgonugu\",\r\n \"Purpose\": \"Testing\",\r\n \"MabUsed\": \"Yes\",\r\n \"DeleteBy\": \"01-2025\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.existing.crr/providers/Microsoft.Storage/storageAccounts/iaasvmexistingcrr\",\r\n \"name\": \"iaasvmexistingcrr\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/sambit_rg/providers/Microsoft.Storage/storageAccounts/sarathsa3\",\r\n \"name\": \"sarathsa3\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvmhanaworkload.existing/providers/Microsoft.Storage/storageAccounts/iaasvmhanaworkloadexisti\",\r\n \"name\": \"iaasvmhanaworkloadexisti\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"AutoShutdown\": \"No\",\r\n \"BVT Used\": \"Yes\",\r\n \"Owner\": \"chgonugu\",\r\n \"Purpose\": \"BVT\",\r\n \"DeleteBy\": \"01-2030\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/afsnavigationtest\",\r\n \"name\": \"afsnavigationtest\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/afstbackuptestsa\",\r\n \"name\": \"afstbackuptestsa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.encryptedvm/providers/Microsoft.Storage/storageAccounts/iaasvmencryptedvmdiag170\",\r\n \"name\": \"iaasvmencryptedvmdiag170\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.existing/providers/Microsoft.Storage/storageAccounts/iaasvmexistingdiag1\",\r\n \"name\": \"iaasvmexistingdiag1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.existing/providers/Microsoft.Storage/storageAccounts/iaasextstore1\",\r\n \"name\": \"iaasextstore1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.new/providers/Microsoft.Storage/storageAccounts/iaasvmnewdiag1\",\r\n \"name\": \"iaasvmnewdiag1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.new/providers/Microsoft.Storage/storageAccounts/iaasnewstore1\",\r\n \"name\": \"iaasnewstore1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/IaasVMNavigationTest-RG/providers/Microsoft.Storage/storageAccounts/aasavigationestdiag\",\r\n \"name\": \"aasavigationestdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/IaasVMNavigationTest-RG/providers/Microsoft.Storage/storageAccounts/iaasvmnavigationstore\",\r\n \"name\": \"iaasvmnavigationstore\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pscloudtestrg/providers/Microsoft.Storage/storageAccounts/pscloudtestrgdiag\",\r\n \"name\": \"pscloudtestrgdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MAB Used\": \" Yes\",\r\n \"MABUsed\": \" Yes\",\r\n \"DeleteBy\": \"01-2030\",\r\n \"Purpose\": \"PS bvt\",\r\n \"Owner\": \"sarath\",\r\n \"AutoShutdown\": \"No\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pscloudtestrg/providers/Microsoft.Storage/storageAccounts/psbvtsa2\",\r\n \"name\": \"psbvtsa2\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstestsa8895\",\r\n \"name\": \"pstestsa8895\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstesttargetsa8895\",\r\n \"name\": \"pstesttargetsa8895\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstesttargetsa8896\",\r\n \"name\": \"pstesttargetsa8896\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/afsbackupsa\",\r\n \"name\": \"afsbackupsa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"Owner\": \"sarath\",\r\n \"Purpose\": \" BVT\",\r\n \"DeleteBy\": \"01-2025\",\r\n \"AutoShutdown\": \"No\",\r\n \"MAB Used\": \" Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG54bdf8da/providers/Microsoft.Storage/storageAccounts/pstestsa54bdf8da\",\r\n \"name\": \"pstestsa54bdf8da\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG1e5a278b/providers/Microsoft.Storage/storageAccounts/pstestsa1e5a278b\",\r\n \"name\": \"pstestsa1e5a278b\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG59e1706f/providers/Microsoft.Storage/storageAccounts/pstestsa59e1706f\",\r\n \"name\": \"pstestsa59e1706f\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/storageysci5wbex6jyc\",\r\n \"name\": \"storageysci5wbex6jyc\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/prnookal-rg/providers/Microsoft.Storage/storageAccounts/prnookaltestnob\",\r\n \"name\": \"prnookaltestnob\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"isMABUsed\": \"Yes\",\r\n \" Owner\": \"prnookal@microsoft.com\",\r\n \"DeletBy\": \"12-2021\",\r\n \"Purpose\": \" Testing\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/afsbackupsa1\",\r\n \"name\": \"afsbackupsa1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"Mab Used\": \"yes\",\r\n \"Owner\": \"akkanase\",\r\n \"Purpose\": \"Testing\",\r\n \"DeleteBy\": \"01-2022\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/afsbackupsa2\",\r\n \"name\": \"afsbackupsa2\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseTest/providers/Microsoft.Storage/storageAccounts/afsfilesharetest\",\r\n \"name\": \"afsfilesharetest\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/afsbackupsa3\",\r\n \"name\": \"afsbackupsa3\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/afsbackupsa0\",\r\n \"name\": \"afsbackupsa0\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pscloudtest-diskbackup-existing/providers/Microsoft.Storage/storageAccounts/1vnseapod01otds1\",\r\n \"name\": \"1vnseapod01otds1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGZRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseAFSTest/providers/Microsoft.Storage/storageAccounts/akkanaseafssa\",\r\n \"name\": \"akkanaseafssa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MAB Used\": \"Yes\",\r\n \"Owner\": \"akkanase\",\r\n \"Purpose\": \"Testing\",\r\n \"Delete By\": \"05-202\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseAFSTest/providers/Microsoft.Storage/storageAccounts/akkanasembpd2\",\r\n \"name\": \"akkanasembpd2\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MAB Used\": \"Yes\",\r\n \"Purpose\": \"Testing\",\r\n \"Owner\": \"akkanase\",\r\n \"Delete By\": \"05-2022\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseCMK/providers/Microsoft.Storage/storageAccounts/akkanase\",\r\n \"name\": \"akkanase\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"DeleteBy\": \"05-2023\",\r\n \"Owner\": \"akkanase\",\r\n \"Purpose\": \"Testing\",\r\n \"MAB Used\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/cmk.system/providers/Microsoft.Storage/storageAccounts/cmkautomationstore\",\r\n \"name\": \"cmkautomationstore\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"Delete By\": \"05-2050\",\r\n \"MAB Used\": \" Yes\",\r\n \"Owner\": \"akkanase\",\r\n \"Purpose\": \" BVT\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG235879ba/providers/Microsoft.Storage/storageAccounts/pstestsa235879ba\",\r\n \"name\": \"pstestsa235879ba\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/disk-bvt-test-rg/providers/Microsoft.Storage/storageAccounts/hv3seapod01otds1\",\r\n \"name\": \"hv3seapod01otds1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGZRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/DoNotUse-OSS-BVT-SEA-RG/providers/Microsoft.Storage/storageAccounts/dontuseossrestoreasfile\",\r\n \"name\": \"dontuseossrestoreasfile\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MAB Used\": \" Yes\",\r\n \" Owner\": \"akkanase\",\r\n \"Purpose\": \"BV\",\r\n \"Delete By\": \"05-2020\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseAFSTest/providers/Microsoft.Storage/storageAccounts/akkanaseafsa2\",\r\n \"name\": \"akkanaseafsa2\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseCMK/providers/Microsoft.Storage/storageAccounts/0byseapod01otds1\",\r\n \"name\": \"0byseapod01otds1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGZRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/9exwuspod01otds1\",\r\n \"name\": \"9exwuspod01otds1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/02xseacan01otds1\",\r\n \"name\": \"02xseacan01otds1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGZRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseMAB/providers/Microsoft.Storage/storageAccounts/dnhccypod01otds1\",\r\n \"name\": \"dnhccypod01otds1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rguzio7xhypi/providers/Microsoft.Storage/storageAccounts/clitest4b24ibpr3ztyhwo23\",\r\n \"name\": \"clitest4b24ibpr3ztyhwo23\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rgsiaa3ljqg5/providers/Microsoft.Storage/storageAccounts/clitestgd6i34czs3jb3rdtc\",\r\n \"name\": \"clitestgd6i34czs3jb3rdtc\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rgjxpjikqjjw/providers/Microsoft.Storage/storageAccounts/clitestjkhq2kpsal665atqe\",\r\n \"name\": \"clitestjkhq2kpsal665atqe\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rgwwhxyyhl2u/providers/Microsoft.Storage/storageAccounts/clitestdggdsdbtfa6vq5n5o\",\r\n \"name\": \"clitestdggdsdbtfa6vq5n5o\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rgm44mrkvygk/providers/Microsoft.Storage/storageAccounts/clitestodvd3xsftt63go6dk\",\r\n \"name\": \"clitestodvd3xsftt63go6dk\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rgdy7jf3qqzd/providers/Microsoft.Storage/storageAccounts/clitestnbsma3ftf2yugilxq\",\r\n \"name\": \"clitestnbsma3ftf2yugilxq\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rgl5tlzqo2pt/providers/Microsoft.Storage/storageAccounts/clitestgn64zidsnwe3ndjp5\",\r\n \"name\": \"clitestgn64zidsnwe3ndjp5\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rg73eqbdp4g5/providers/Microsoft.Storage/storageAccounts/clitestzfhrqsr4m24iwnjy7\",\r\n \"name\": \"clitestzfhrqsr4m24iwnjy7\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rg73eqbdp4g5/providers/Microsoft.Storage/storageAccounts/clitestukhlrarahpoebmaln\",\r\n \"name\": \"clitestukhlrarahpoebmaln\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/prnookal-prod/providers/Microsoft.Storage/storageAccounts/prnookalprod\",\r\n \"name\": \"prnookalprod\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"japaneast\",\r\n \"tags\": {\r\n \"IsMabUsed\": \"Yes\",\r\n \"Owner\": \"prnookal\",\r\n \"DeleteBy\": \"12-2021\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/cloud-shell-storage-centralindia/providers/Microsoft.Storage/storageAccounts/csg10032000d221b981\",\r\n \"name\": \"csg10032000d221b981\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centralindia\",\r\n \"tags\": {\r\n \"ms-resource-usage\": \"azure-cloud-shell\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/cloud-shell-storage-centralindia/providers/Microsoft.Storage/storageAccounts/csg10032000b56ab138\",\r\n \"name\": \"csg10032000b56ab138\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centralindia\",\r\n \"tags\": {\r\n \"ms-resource-usage\": \"azure-cloud-shell\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/cloud-shell-storage-centralindia/providers/Microsoft.Storage/storageAccounts/csg10033fffacb0d110\",\r\n \"name\": \"csg10033fffacb0d110\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centralindia\",\r\n \"tags\": {\r\n \"ms-resource-usage\": \"azure-cloud-shell\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/cloud-shell-storage-centralindia/providers/Microsoft.Storage/storageAccounts/csg1003bffda7dcd176\",\r\n \"name\": \"csg1003bffda7dcd176\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centralindia\",\r\n \"tags\": {\r\n \"ms-resource-usage\": \"azure-cloud-shell\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvmsqlworkload.existing.crr/providers/Microsoft.Storage/storageAccounts/iaasvmsqlworkloadexistin\",\r\n \"name\": \"iaasvmsqlworkloadexistin\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {\r\n \"Owner\": \"chgonugu\",\r\n \"Purpose\": \"BVT\",\r\n \"MabUsed\": \"Yes\",\r\n \"DeleteBy\": \"12-2099\",\r\n \"AutoShutdown\": \"No\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/Blob-Backup/providers/Microsoft.Storage/storageAccounts/testblobbackup\",\r\n \"name\": \"testblobbackup\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/fzejupmyclivaultasrcache\",\r\n \"name\": \"fzejupmyclivaultasrcache\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseCcyGrs/providers/Microsoft.Storage/storageAccounts/storeimqyzvpnwrv5a\",\r\n \"name\": \"storeimqyzvpnwrv5a\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/sarath-rg/providers/Microsoft.Storage/storageAccounts/clitestingsa\",\r\n \"name\": \"clitestingsa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/sarath-rg/providers/Microsoft.Storage/storageAccounts/axiccypod01otds1\",\r\n \"name\": \"axiccypod01otds1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseZRS/providers/Microsoft.Storage/storageAccounts/akanasezrsstorag\",\r\n \"name\": \"akanasezrsstorag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {\r\n \"Purpose\": \"Testing\",\r\n \"Owner\": \"akkanase\",\r\n \"Mab Used\": \"yes\",\r\n \"DeleteBy\": \"01-2025\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/sarath-rg/providers/Microsoft.Storage/storageAccounts/sarathsacli\",\r\n \"name\": \"sarathsacli\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm-clitest-rg/providers/Microsoft.Storage/storageAccounts/iaasvmclitestsa\",\r\n \"name\": \"iaasvmclitestsa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"Owner\": \"akneema\",\r\n \"MABUsed\": \"Yes\",\r\n \"Purpose\": \"CLITest\",\r\n \"DeleteBy\": \"12-9999\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.Storage/storageAccounts/hiagasa\",\r\n \"name\": \"hiagasa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\",\r\n \"Purpose\": \"Testing\",\r\n \"DeleteBy\": \"01-2099\",\r\n \"Owner\": \"hiaga\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.Storage/storageAccounts/akneemasaecy\",\r\n \"name\": \"akneemasaecy\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {\r\n \"Owner\": \"akneema\",\r\n \"Purpose\": \"Testing\",\r\n \"MABUsed\": \"Yes\",\r\n \"DeleteBy\": \"12-9999\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/oss-clitest-rg/providers/Microsoft.Storage/storageAccounts/ossclitestsa\",\r\n \"name\": \"ossclitestsa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"Owner\": \"akneema\",\r\n \"Purpose\": \"Testing\",\r\n \"MABUsed\": \"Yes\",\r\n \"DeleteBy\": \"12-9999\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/oss-pstest-rg/providers/Microsoft.Storage/storageAccounts/osspstestsa\",\r\n \"name\": \"osspstestsa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"MABUsed\": \"Ye\",\r\n \"Owne\": \"hiaga\",\r\n \"Purpose\": \"esting\",\r\n \"Del\": \"01-2099\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/cli-track2-rg/providers/Microsoft.Storage/storageAccounts/clitrack2sa\",\r\n \"name\": \"clitrack2sa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"Owner\": \"akneema\",\r\n \"Purpose\": \"Testing\",\r\n \"DeleteBy\": \"12-9999\",\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm-pstest-rg/providers/Microsoft.Storage/storageAccounts/iaasvmpstestsa\",\r\n \"name\": \"iaasvmpstestsa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"MABUsed\": \"yes\",\r\n \"Owner\": \"hiaga\",\r\n \"Purpose\": \"testing\",\r\n \"DeleteBy\": \"01-2099\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/DontUse-BlobRestore-BVT-CCY-RG/providers/Microsoft.Storage/storageAccounts/dontuseblobbvtccyrstrall\",\r\n \"name\": \"dontuseblobbvtccyrstrall\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/DontUse-BlobRestore-BVT-CCY-RG/providers/Microsoft.Storage/storageAccounts/dontuseblobbvtccyprefix\",\r\n \"name\": \"dontuseblobbvtccyprefix\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/DontUse-BlobRestore-BVT-CCY-RG/providers/Microsoft.Storage/storageAccounts/dontuseblobbvtccycontnr\",\r\n \"name\": \"dontuseblobbvtccycontnr\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/oss-clicloudtest-rg/providers/Microsoft.Storage/storageAccounts/ossclicloudtestsa\",\r\n \"name\": \"ossclicloudtestsa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"Owner\": \"akneema\",\r\n \"Purpose\": \"Testing\",\r\n \"DeleteBy\": \"12-9999\",\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/prnookal-wcus/providers/Microsoft.Storage/storageAccounts/prnookalwcus\",\r\n \"name\": \"prnookalwcus\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"Owner\": \"prnookal\",\r\n \"DeleteBy\": \"12-2021\",\r\n \"IsMabUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PORTAL.DPP.BVT.BLOB.RESTORE.EXISTING/providers/Microsoft.Storage/storageAccounts/blobsaforrestoreall\",\r\n \"name\": \"blobsaforrestoreall\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PORTAL.DPP.BVT.BLOB.RESTORE.EXISTING/providers/Microsoft.Storage/storageAccounts/blobrestoreopcontainers\",\r\n \"name\": \"blobrestoreopcontainers\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PORTAL.DPP.BVT.BLOB.RESTORE.EXISTING/providers/Microsoft.Storage/storageAccounts/blobrestoreopprefix\",\r\n \"name\": \"blobrestoreopprefix\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PORTAL.DPP.BVT.BLOB.RESTORE.EXISTING/providers/Microsoft.Storage/storageAccounts/blobrestoreopcontainer\",\r\n \"name\": \"blobrestoreopcontainer\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PORTAL.DPP.BVT.BLOB.RESTORE.EXISTING/providers/Microsoft.Storage/storageAccounts/blobrestoreopall\",\r\n \"name\": \"blobrestoreopall\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PORTAL.DPP.BVT.BLOB.RESTORE.EXISTING/providers/Microsoft.Storage/storageAccounts/bloboprestorecontainers\",\r\n \"name\": \"bloboprestorecontainers\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PORTAL.DPP.BVT.BLOB.RESTORE.EXISTING/providers/Microsoft.Storage/storageAccounts/bloboprestoreall\",\r\n \"name\": \"bloboprestoreall\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagargeus/providers/Microsoft.Storage/storageAccounts/hiagargeus\",\r\n \"name\": \"hiagargeus\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akneema-we-rg/providers/Microsoft.Storage/storageAccounts/gb8wepod01otds1\",\r\n \"name\": \"gb8wepod01otds1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGZRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akneema/providers/Microsoft.Storage/storageAccounts/uvqccypod01otds1\",\r\n \"name\": \"uvqccypod01otds1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagaCZR-rg/providers/Microsoft.Storage/storageAccounts/cliczrlrssa\",\r\n \"name\": \"cliczrlrssa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {\r\n \"Owner\": \"akneema\",\r\n \"Purpose\": \"Testing\",\r\n \"DeleteBy\": \"12-9999\",\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseGRSVault/providers/Microsoft.Storage/storageAccounts/frmseapod01otds1\",\r\n \"name\": \"frmseapod01otds1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGZRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseZRS/providers/Microsoft.Storage/storageAccounts/rfoccypod01otds1\",\r\n \"name\": \"rfoccypod01otds1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akneema-we-rg/providers/Microsoft.Storage/storageAccounts/m3dccypod01otds01\",\r\n \"name\": \"m3dccypod01otds01\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/AdkayethBugbash/providers/Microsoft.Storage/storageAccounts/adkayethsfsa\",\r\n \"name\": \"adkayethsfsa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/AdkayethBugbash/providers/Microsoft.Storage/storageAccounts/adkayathesfsabugbash\",\r\n \"name\": \"adkayathesfsabugbash\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/4dc90f0e-c246-41a4-a5d3-41e255ed06f4\",\r\n \"name\": \"4dc90f0e-c246-41a4-a5d3-41e255ed06f4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"duration\": \"PT20M44.5492802S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"hiagavm\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"hiagavm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T16:23:13.5123111Z\",\r\n \"activityId\": \"faa41ff3-4701-4ef3-9793-6e3930f05c47\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupFabrics/Azure/protectionContainers/IaasVMContainer%3Biaasvmcontainerv2%3Bhiagarg%3Bhiagavm/protectedItems/VM%3Biaasvmcontainerv2%3Bhiagarg%3Bhiagavm/recoveryPoints/165362183637180/restore?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEZhYnJpY3MvQXp1cmUvcHJvdGVjdGlvbkNvbnRhaW5lcnMvSWFhc1ZNQ29udGFpbmVyJTNCaWFhc3ZtY29udGFpbmVydjIlM0JoaWFnYXJnJTNCaGlhZ2F2bS9wcm90ZWN0ZWRJdGVtcy9WTSUzQmlhYXN2bWNvbnRhaW5lcnYyJTNCaGlhZ2FyZyUzQmhpYWdhdm0vcmVjb3ZlcnlQb2ludHMvMTY1MzYyMTgzNjM3MTgwL3Jlc3RvcmU/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", - "RequestMethod": "POST", - "RequestBody": "{\r\n \"properties\": {\r\n \"objectType\": \"IaasVMRestoreRequest\",\r\n \"recoveryPointId\": \"165362183637180\",\r\n \"recoveryType\": \"AlternateLocation\",\r\n \"sourceResourceId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.Compute/virtualMachines/hiagavm\",\r\n \"targetVirtualMachineId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.Compute/virtualMachines/alr-pstest-vm\",\r\n \"targetResourceGroupId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg\",\r\n \"storageAccountId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.Storage/storageAccounts/hiagasa\",\r\n \"virtualNetworkId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.Network/virtualNetworks/hiagarg-vnet\",\r\n \"subnetId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.Network/virtualNetworks/hiagarg-vnet/subnets/default\",\r\n \"region\": \"centraluseuap\",\r\n \"createNewCloudService\": false,\r\n \"originalStorageAccountOption\": false,\r\n \"restoreWithManagedDisks\": false\r\n }\r\n}", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/4dc90f0e-c246-41a4-a5d3-41e255ed06f4?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEpvYnMvNGRjOTBmMGUtYzI0Ni00MWE0LWE1ZDMtNDFlMjU1ZWQwNmY0P2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "00653042-fa93-466e-8421-f35b91189233" + "faa41ff3-4701-4ef3-9793-6e3930f05c47" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "1220" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -3317,78 +3347,66 @@ "Pragma": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;hiagarg;hiagavm/protectedItems/VM;iaasvmcontainerv2;hiagarg;hiagavm/operationResults/e2309129-b149-491e-a30b-3fb48715c094?api-version=2021-12-01" - ], - "Retry-After": [ - "60" - ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;hiagarg;hiagavm/protectedItems/VM;iaasvmcontainerv2;hiagarg;hiagavm/operationsStatus/e2309129-b149-491e-a30b-3fb48715c094?api-version=2021-12-01" - ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "e59cb4db-e61f-43e5-acf6-99f0712adf2f" + "bcfdf6af-e639-42a7-a43f-c4510184c957" ], "x-ms-client-request-id": [ - "00653042-fa93-466e-8421-f35b91189233" + "faa41ff3-4701-4ef3-9793-6e3930f05c47" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Server": [ - "Kestrel" + "Microsoft-IIS/10.0" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "257" ], "x-ms-correlation-request-id": [ - "e59cb4db-e61f-43e5-acf6-99f0712adf2f" + "bcfdf6af-e639-42a7-a43f-c4510184c957" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220328T114606Z:e59cb4db-e61f-43e5-acf6-99f0712adf2f" + "WESTINDIA:20220516T164429Z:bcfdf6af-e639-42a7-a43f-c4510184c957" ], "Date": [ - "Mon, 28 Mar 2022 11:46:05 GMT" + "Mon, 16 May 2022 16:44:29 GMT" + ], + "Content-Length": [ + "985" + ], + "Content-Type": [ + "application/json; charset=utf-8" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, - "ResponseBody": "", - "StatusCode": 202 + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/4dc90f0e-c246-41a4-a5d3-41e255ed06f4\",\r\n \"name\": \"4dc90f0e-c246-41a4-a5d3-41e255ed06f4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"duration\": \"PT21M12.8309744S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"hiagavm\",\r\n \"Backup Size\": \"0 MB\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"hiagavm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-05-16T16:23:13.5123111Z\",\r\n \"endTime\": \"2022-05-16T16:44:26.3432855Z\",\r\n \"activityId\": \"faa41ff3-4701-4ef3-9793-6e3930f05c47\"\r\n }\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupFabrics/Azure/protectionContainers/IaasVMContainer%3Biaasvmcontainerv2%3Bhiagarg%3Bhiagavm/protectedItems/VM%3Biaasvmcontainerv2%3Bhiagarg%3Bhiagavm/recoveryPoints/165362183637180/restore?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEZhYnJpY3MvQXp1cmUvcHJvdGVjdGlvbkNvbnRhaW5lcnMvSWFhc1ZNQ29udGFpbmVyJTNCaWFhc3ZtY29udGFpbmVydjIlM0JoaWFnYXJnJTNCaGlhZ2F2bS9wcm90ZWN0ZWRJdGVtcy9WTSUzQmlhYXN2bWNvbnRhaW5lcnYyJTNCaGlhZ2FyZyUzQmhpYWdhdm0vcmVjb3ZlcnlQb2ludHMvMTY1MzYyMTgzNjM3MTgwL3Jlc3RvcmU/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", - "RequestMethod": "POST", - "RequestBody": "{\r\n \"properties\": {\r\n \"objectType\": \"IaasVMRestoreRequest\",\r\n \"recoveryPointId\": \"165362183637180\",\r\n \"recoveryType\": \"OriginalLocation\",\r\n \"sourceResourceId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.Compute/virtualMachines/hiagavm\",\r\n \"storageAccountId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.Storage/storageAccounts/hiagasa\",\r\n \"region\": \"centraluseuap\",\r\n \"createNewCloudService\": false,\r\n \"originalStorageAccountOption\": false,\r\n \"restoreWithManagedDisks\": false\r\n }\r\n}", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupFabrics/Azure/protectionContainers/IaasVMContainer%3Biaasvmcontainerv2%3Bhiagarg%3Bhiagavm/protectedItems/VM%3Biaasvmcontainerv2%3Bhiagarg%3Bhiagavm/recoveryPoints?$filter=startDate%20eq%20'2022-05-16%2004:22:13%20PM'%20and%20endDate%20eq%20'2022-05-16%2004:45:26%20PM'&api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEZhYnJpY3MvQXp1cmUvcHJvdGVjdGlvbkNvbnRhaW5lcnMvSWFhc1ZNQ29udGFpbmVyJTNCaWFhc3ZtY29udGFpbmVydjIlM0JoaWFnYXJnJTNCaGlhZ2F2bS9wcm90ZWN0ZWRJdGVtcy9WTSUzQmlhYXN2bWNvbnRhaW5lcnYyJTNCaGlhZ2FyZyUzQmhpYWdhdm0vcmVjb3ZlcnlQb2ludHM/JGZpbHRlcj1zdGFydERhdGUlMjBlcSUyMCcyMDIyLTA1LTE2JTIwMDQ6MjI6MTMlMjBQTSclMjBhbmQlMjBlbmREYXRlJTIwZXElMjAnMjAyMi0wNS0xNiUyMDA0OjQ1OjI2JTIwUE0nJmFwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2eac2e4f-f201-42cb-8481-adf9c00b8cff" + "b9a3aa94-106b-40ea-97bb-2057016f3de8" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "616" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -3398,23 +3416,14 @@ "Pragma": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;hiagarg;hiagavm/protectedItems/VM;iaasvmcontainerv2;hiagarg;hiagavm/operationResults/25dc2126-c58c-440d-891a-846eaa05937c?api-version=2021-12-01" - ], - "Retry-After": [ - "60" - ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;hiagarg;hiagavm/protectedItems/VM;iaasvmcontainerv2;hiagarg;hiagavm/operationsStatus/25dc2126-c58c-440d-891a-846eaa05937c?api-version=2021-12-01" - ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "9fa6c627-63fd-4577-9b87-a9ef3c2aa79f" + "c6c31a4b-4df9-4b27-bef2-02ae94adf1f4" ], "x-ms-client-request-id": [ - "2eac2e4f-f201-42cb-8481-adf9c00b8cff" + "b9a3aa94-106b-40ea-97bb-2057016f3de8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3425,42 +3434,48 @@ "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "299" ], "x-ms-correlation-request-id": [ - "9fa6c627-63fd-4577-9b87-a9ef3c2aa79f" + "c6c31a4b-4df9-4b27-bef2-02ae94adf1f4" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220328T115047Z:9fa6c627-63fd-4577-9b87-a9ef3c2aa79f" + "WESTINDIA:20220516T164430Z:c6c31a4b-4df9-4b27-bef2-02ae94adf1f4" ], "Date": [ - "Mon, 28 Mar 2022 11:50:46 GMT" + "Mon, 16 May 2022 16:44:29 GMT" + ], + "Content-Length": [ + "1182" + ], + "Content-Type": [ + "application/json; charset=utf-8" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, - "ResponseBody": "", - "StatusCode": 202 + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;hiagarg;hiagavm/protectedItems/VM;iaasvmcontainerv2;hiagarg;hiagavm/recoveryPoints/170406712483820\",\r\n \"name\": \"170406712483820\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints\",\r\n \"properties\": {\r\n \"objectType\": \"IaasVMRecoveryPoint\",\r\n \"recoveryPointType\": \"CrashConsistent\",\r\n \"recoveryPointTime\": \"2022-05-16T16:23:17.7247452Z\",\r\n \"recoveryPointAdditionalInfo\": \"\",\r\n \"sourceVMStorageType\": \"PremiumVMOnPartialPremiumStorage\",\r\n \"isSourceVMEncrypted\": false,\r\n \"isInstantIlrSessionActive\": false,\r\n \"recoveryPointTierDetails\": [\r\n {\r\n \"type\": \"InstantRP\",\r\n \"status\": \"Valid\"\r\n },\r\n {\r\n \"type\": \"HardenedRP\",\r\n \"status\": \"Valid\"\r\n }\r\n ],\r\n \"isManagedVirtualMachine\": true,\r\n \"virtualMachineSize\": \"Standard_B4ms\",\r\n \"originalStorageAccountOption\": false,\r\n \"osType\": \"Windows\",\r\n \"zones\": [\r\n \"1\"\r\n ],\r\n \"recoveryPointMoveReadinessInfo\": {\r\n \"ArchivedRP\": {\r\n \"isReadyForMove\": false,\r\n \"additionalInfo\": \"We're still determining if this Recovery Point can be moved.. Please check again after some time.\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;hiagarg;hiagavm/protectedItems/VM;iaasvmcontainerv2;hiagarg;hiagavm/operationsStatus/e2309129-b149-491e-a30b-3fb48715c094?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEZhYnJpY3MvQXp1cmUvcHJvdGVjdGlvbkNvbnRhaW5lcnMvSWFhc1ZNQ29udGFpbmVyO2lhYXN2bWNvbnRhaW5lcnYyO2hpYWdhcmc7aGlhZ2F2bS9wcm90ZWN0ZWRJdGVtcy9WTTtpYWFzdm1jb250YWluZXJ2MjtoaWFnYXJnO2hpYWdhdm0vb3BlcmF0aW9uc1N0YXR1cy9lMjMwOTEyOS1iMTQ5LTQ5MWUtYTMwYi0zZmI0ODcxNWMwOTQ/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resources?$filter=resourceType%20eq%20'Microsoft.ClassicStorage%2FstorageAccounts'&api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5DbGFzc2ljU3RvcmFnZSUyRnN0b3JhZ2VBY2NvdW50cycmYXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "00653042-fa93-466e-8421-f35b91189233" + "7d15523b-c317-4cfc-b941-e25c267409eb" + ], + "Accept-Language": [ + "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" ] }, "ResponseHeaders": { @@ -3470,63 +3485,57 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" ], "x-ms-request-id": [ - "8a348dcc-d10a-4559-8e7a-296987377b2d" + "ec2b9c31-3dcc-4016-a92a-1f83df9e0342" ], - "x-ms-client-request-id": [ - "00653042-fa93-466e-8421-f35b91189233" + "x-ms-correlation-request-id": [ + "ec2b9c31-3dcc-4016-a92a-1f83df9e0342" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T164431Z:ec2b9c31-3dcc-4016-a92a-1f83df9e0342" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Server": [ - "Kestrel" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "299" - ], - "x-ms-correlation-request-id": [ - "8a348dcc-d10a-4559-8e7a-296987377b2d" - ], - "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220328T114707Z:8a348dcc-d10a-4559-8e7a-296987377b2d" + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Mon, 28 Mar 2022 11:47:06 GMT" - ], - "Content-Length": [ - "304" + "Mon, 16 May 2022 16:44:30 GMT" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" + ], + "Content-Length": [ + "268" ] }, - "ResponseBody": "{\r\n \"id\": \"e2309129-b149-491e-a30b-3fb48715c094\",\r\n \"name\": \"e2309129-b149-491e-a30b-3fb48715c094\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-03-28T11:46:06.1355423Z\",\r\n \"endTime\": \"2022-03-28T11:46:06.1355423Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"e2309129-b149-491e-a30b-3fb48715c094\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.existing/providers/Microsoft.ClassicStorage/storageAccounts/iaasextstore2\",\r\n \"name\": \"iaasextstore2\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"southeastasia\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;hiagarg;hiagavm/protectedItems/VM;iaasvmcontainerv2;hiagarg;hiagavm/operationResults/e2309129-b149-491e-a30b-3fb48715c094?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEZhYnJpY3MvQXp1cmUvcHJvdGVjdGlvbkNvbnRhaW5lcnMvSWFhc1ZNQ29udGFpbmVyO2lhYXN2bWNvbnRhaW5lcnYyO2hpYWdhcmc7aGlhZ2F2bS9wcm90ZWN0ZWRJdGVtcy9WTTtpYWFzdm1jb250YWluZXJ2MjtoaWFnYXJnO2hpYWdhdm0vb3BlcmF0aW9uUmVzdWx0cy9lMjMwOTEyOS1iMTQ5LTQ5MWUtYTMwYi0zZmI0ODcxNWMwOTQ/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resources?$filter=resourceType%20eq%20'Microsoft.ClassicStorage%2FstorageAccounts'&api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5DbGFzc2ljU3RvcmFnZSUyRnN0b3JhZ2VBY2NvdW50cycmYXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "00653042-fa93-466e-8421-f35b91189233" + "f3d6c298-b754-4826-af0c-6a27a7cb5753" + ], + "Accept-Language": [ + "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" ] }, "ResponseHeaders": { @@ -3536,63 +3545,57 @@ "Pragma": [ "no-cache" ], - "Retry-After": [ - "60" - ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;hiagarg;hiagavm/protectedItems/VM;iaasvmcontainerv2;hiagarg;hiagavm/operationsStatus/e2309129-b149-491e-a30b-3fb48715c094?api-version=2021-12-01" - ], - "X-Content-Type-Options": [ - "nosniff" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" ], "x-ms-request-id": [ - "6a04e31b-9578-4a50-8e70-64036e0d28e5" + "e0efa489-eb0d-41c6-9f2a-f859757539a9" ], - "x-ms-client-request-id": [ - "00653042-fa93-466e-8421-f35b91189233" + "x-ms-correlation-request-id": [ + "e0efa489-eb0d-41c6-9f2a-f859757539a9" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T164646Z:e0efa489-eb0d-41c6-9f2a-f859757539a9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Server": [ - "Kestrel" - ], - "X-Powered-By": [ - "ASP.NET" + "X-Content-Type-Options": [ + "nosniff" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "299" + "Date": [ + "Mon, 16 May 2022 16:46:45 GMT" ], - "x-ms-correlation-request-id": [ - "6a04e31b-9578-4a50-8e70-64036e0d28e5" + "Content-Type": [ + "application/json; charset=utf-8" ], - "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220328T114707Z:6a04e31b-9578-4a50-8e70-64036e0d28e5" + "Expires": [ + "-1" ], - "Date": [ - "Mon, 28 Mar 2022 11:47:07 GMT" + "Content-Length": [ + "268" ] }, - "ResponseBody": "", - "StatusCode": 204 + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.existing/providers/Microsoft.ClassicStorage/storageAccounts/iaasextstore2\",\r\n \"name\": \"iaasextstore2\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"southeastasia\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupOperations/e2309129-b149-491e-a30b-3fb48715c094?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvZTIzMDkxMjktYjE0OS00OTFlLWEzMGItM2ZiNDg3MTVjMDk0P2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resources?$filter=resourceType%20eq%20'Microsoft.Storage%2FstorageAccounts'&api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5TdG9yYWdlJTJGc3RvcmFnZUFjY291bnRzJyZhcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "00653042-fa93-466e-8421-f35b91189233" + "7d15523b-c317-4cfc-b941-e25c267409eb" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" ] }, "ResponseHeaders": { @@ -3602,83 +3605,149 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" ], "x-ms-request-id": [ - "a3d8c748-a507-4a11-9bab-f4e19e245ed7" + "6e432fb4-ee73-411e-af23-c7d1cb9ff3cb" ], - "x-ms-client-request-id": [ - "00653042-fa93-466e-8421-f35b91189233" + "x-ms-correlation-request-id": [ + "6e432fb4-ee73-411e-af23-c7d1cb9ff3cb" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T164431Z:6e432fb4-ee73-411e-af23-c7d1cb9ff3cb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Server": [ - "Kestrel" + "X-Content-Type-Options": [ + "nosniff" ], - "X-Powered-By": [ - "ASP.NET" + "Date": [ + "Mon, 16 May 2022 16:44:30 GMT" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "297" + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "34899" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.existing.crr/providers/Microsoft.Storage/storageAccounts/iaasvmexistingcrrdiag\",\r\n \"name\": \"iaasvmexistingcrrdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"MAB Used\": \"Yes\",\r\n \"DeleteBy\": \"01-2030\",\r\n \"Delete By\": \"01-2030\",\r\n \"Owner\": \"chgonugu\",\r\n \"Purpose\": \"Testing\",\r\n \"AutoShutdown\": \"false\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.existing.crr/providers/Microsoft.Storage/storageAccounts/iaasvmexistingcrrdiag112\",\r\n \"name\": \"iaasvmexistingcrrdiag112\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {\r\n \"Owner\": \"chgonugu\",\r\n \"Purpose\": \"Testing\",\r\n \"MabUsed\": \"Yes\",\r\n \"DeleteBy\": \"01-2025\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.existing.crr/providers/Microsoft.Storage/storageAccounts/iaasvmexistingcrr\",\r\n \"name\": \"iaasvmexistingcrr\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/sambit_rg/providers/Microsoft.Storage/storageAccounts/sarathsa3\",\r\n \"name\": \"sarathsa3\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvmhanaworkload.existing/providers/Microsoft.Storage/storageAccounts/iaasvmhanaworkloadexisti\",\r\n \"name\": \"iaasvmhanaworkloadexisti\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"AutoShutdown\": \"No\",\r\n \"BVT Used\": \"Yes\",\r\n \"Owner\": \"chgonugu\",\r\n \"Purpose\": \"BVT\",\r\n \"DeleteBy\": \"01-2030\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/afsnavigationtest\",\r\n \"name\": \"afsnavigationtest\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/afstbackuptestsa\",\r\n \"name\": \"afstbackuptestsa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.encryptedvm/providers/Microsoft.Storage/storageAccounts/iaasvmencryptedvmdiag170\",\r\n \"name\": \"iaasvmencryptedvmdiag170\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.existing/providers/Microsoft.Storage/storageAccounts/iaasvmexistingdiag1\",\r\n \"name\": \"iaasvmexistingdiag1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.existing/providers/Microsoft.Storage/storageAccounts/iaasextstore1\",\r\n \"name\": \"iaasextstore1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.new/providers/Microsoft.Storage/storageAccounts/iaasvmnewdiag1\",\r\n \"name\": \"iaasvmnewdiag1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.new/providers/Microsoft.Storage/storageAccounts/iaasnewstore1\",\r\n \"name\": \"iaasnewstore1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/IaasVMNavigationTest-RG/providers/Microsoft.Storage/storageAccounts/aasavigationestdiag\",\r\n \"name\": \"aasavigationestdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/IaasVMNavigationTest-RG/providers/Microsoft.Storage/storageAccounts/iaasvmnavigationstore\",\r\n \"name\": \"iaasvmnavigationstore\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pscloudtestrg/providers/Microsoft.Storage/storageAccounts/pscloudtestrgdiag\",\r\n \"name\": \"pscloudtestrgdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MAB Used\": \" Yes\",\r\n \"MABUsed\": \" Yes\",\r\n \"DeleteBy\": \"01-2030\",\r\n \"Purpose\": \"PS bvt\",\r\n \"Owner\": \"sarath\",\r\n \"AutoShutdown\": \"No\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pscloudtestrg/providers/Microsoft.Storage/storageAccounts/psbvtsa2\",\r\n \"name\": \"psbvtsa2\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstestsa8895\",\r\n \"name\": \"pstestsa8895\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstesttargetsa8895\",\r\n \"name\": \"pstesttargetsa8895\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstesttargetsa8896\",\r\n \"name\": \"pstesttargetsa8896\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/afsbackupsa\",\r\n \"name\": \"afsbackupsa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"Owner\": \"sarath\",\r\n \"Purpose\": \" BVT\",\r\n \"DeleteBy\": \"01-2025\",\r\n \"AutoShutdown\": \"No\",\r\n \"MAB Used\": \" Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG54bdf8da/providers/Microsoft.Storage/storageAccounts/pstestsa54bdf8da\",\r\n \"name\": \"pstestsa54bdf8da\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG1e5a278b/providers/Microsoft.Storage/storageAccounts/pstestsa1e5a278b\",\r\n \"name\": \"pstestsa1e5a278b\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG59e1706f/providers/Microsoft.Storage/storageAccounts/pstestsa59e1706f\",\r\n \"name\": \"pstestsa59e1706f\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/storageysci5wbex6jyc\",\r\n \"name\": \"storageysci5wbex6jyc\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/prnookal-rg/providers/Microsoft.Storage/storageAccounts/prnookaltestnob\",\r\n \"name\": \"prnookaltestnob\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"isMABUsed\": \"Yes\",\r\n \" Owner\": \"prnookal@microsoft.com\",\r\n \"DeletBy\": \"12-2021\",\r\n \"Purpose\": \" Testing\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/afsbackupsa1\",\r\n \"name\": \"afsbackupsa1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"Mab Used\": \"yes\",\r\n \"Owner\": \"akkanase\",\r\n \"Purpose\": \"Testing\",\r\n \"DeleteBy\": \"01-2022\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/afsbackupsa2\",\r\n \"name\": \"afsbackupsa2\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseTest/providers/Microsoft.Storage/storageAccounts/afsfilesharetest\",\r\n \"name\": \"afsfilesharetest\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/afsbackupsa3\",\r\n \"name\": \"afsbackupsa3\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/afsbackupsa0\",\r\n \"name\": \"afsbackupsa0\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pscloudtest-diskbackup-existing/providers/Microsoft.Storage/storageAccounts/1vnseapod01otds1\",\r\n \"name\": \"1vnseapod01otds1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGZRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseAFSTest/providers/Microsoft.Storage/storageAccounts/akkanaseafssa\",\r\n \"name\": \"akkanaseafssa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MAB Used\": \"Yes\",\r\n \"Owner\": \"akkanase\",\r\n \"Purpose\": \"Testing\",\r\n \"Delete By\": \"05-202\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseAFSTest/providers/Microsoft.Storage/storageAccounts/akkanasembpd2\",\r\n \"name\": \"akkanasembpd2\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MAB Used\": \"Yes\",\r\n \"Purpose\": \"Testing\",\r\n \"Owner\": \"akkanase\",\r\n \"Delete By\": \"05-2022\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseCMK/providers/Microsoft.Storage/storageAccounts/akkanase\",\r\n \"name\": \"akkanase\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"DeleteBy\": \"05-2023\",\r\n \"Owner\": \"akkanase\",\r\n \"Purpose\": \"Testing\",\r\n \"MAB Used\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/cmk.system/providers/Microsoft.Storage/storageAccounts/cmkautomationstore\",\r\n \"name\": \"cmkautomationstore\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"Delete By\": \"05-2050\",\r\n \"MAB Used\": \" Yes\",\r\n \"Owner\": \"akkanase\",\r\n \"Purpose\": \" BVT\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG235879ba/providers/Microsoft.Storage/storageAccounts/pstestsa235879ba\",\r\n \"name\": \"pstestsa235879ba\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/disk-bvt-test-rg/providers/Microsoft.Storage/storageAccounts/hv3seapod01otds1\",\r\n \"name\": \"hv3seapod01otds1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGZRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/DoNotUse-OSS-BVT-SEA-RG/providers/Microsoft.Storage/storageAccounts/dontuseossrestoreasfile\",\r\n \"name\": \"dontuseossrestoreasfile\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MAB Used\": \" Yes\",\r\n \" Owner\": \"akkanase\",\r\n \"Purpose\": \"BV\",\r\n \"Delete By\": \"05-2020\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseAFSTest/providers/Microsoft.Storage/storageAccounts/akkanaseafsa2\",\r\n \"name\": \"akkanaseafsa2\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseCMK/providers/Microsoft.Storage/storageAccounts/0byseapod01otds1\",\r\n \"name\": \"0byseapod01otds1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGZRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/9exwuspod01otds1\",\r\n \"name\": \"9exwuspod01otds1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/02xseacan01otds1\",\r\n \"name\": \"02xseacan01otds1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGZRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseMAB/providers/Microsoft.Storage/storageAccounts/dnhccypod01otds1\",\r\n \"name\": \"dnhccypod01otds1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rguzio7xhypi/providers/Microsoft.Storage/storageAccounts/clitest4b24ibpr3ztyhwo23\",\r\n \"name\": \"clitest4b24ibpr3ztyhwo23\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rgsiaa3ljqg5/providers/Microsoft.Storage/storageAccounts/clitestgd6i34czs3jb3rdtc\",\r\n \"name\": \"clitestgd6i34czs3jb3rdtc\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rgjxpjikqjjw/providers/Microsoft.Storage/storageAccounts/clitestjkhq2kpsal665atqe\",\r\n \"name\": \"clitestjkhq2kpsal665atqe\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rgwwhxyyhl2u/providers/Microsoft.Storage/storageAccounts/clitestdggdsdbtfa6vq5n5o\",\r\n \"name\": \"clitestdggdsdbtfa6vq5n5o\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rgm44mrkvygk/providers/Microsoft.Storage/storageAccounts/clitestodvd3xsftt63go6dk\",\r\n \"name\": \"clitestodvd3xsftt63go6dk\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rgdy7jf3qqzd/providers/Microsoft.Storage/storageAccounts/clitestnbsma3ftf2yugilxq\",\r\n \"name\": \"clitestnbsma3ftf2yugilxq\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rgl5tlzqo2pt/providers/Microsoft.Storage/storageAccounts/clitestgn64zidsnwe3ndjp5\",\r\n \"name\": \"clitestgn64zidsnwe3ndjp5\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rg73eqbdp4g5/providers/Microsoft.Storage/storageAccounts/clitestzfhrqsr4m24iwnjy7\",\r\n \"name\": \"clitestzfhrqsr4m24iwnjy7\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rg73eqbdp4g5/providers/Microsoft.Storage/storageAccounts/clitestukhlrarahpoebmaln\",\r\n \"name\": \"clitestukhlrarahpoebmaln\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/prnookal-prod/providers/Microsoft.Storage/storageAccounts/prnookalprod\",\r\n \"name\": \"prnookalprod\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"japaneast\",\r\n \"tags\": {\r\n \"IsMabUsed\": \"Yes\",\r\n \"Owner\": \"prnookal\",\r\n \"DeleteBy\": \"12-2021\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/cloud-shell-storage-centralindia/providers/Microsoft.Storage/storageAccounts/csg10032000d221b981\",\r\n \"name\": \"csg10032000d221b981\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centralindia\",\r\n \"tags\": {\r\n \"ms-resource-usage\": \"azure-cloud-shell\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/cloud-shell-storage-centralindia/providers/Microsoft.Storage/storageAccounts/csg10032000b56ab138\",\r\n \"name\": \"csg10032000b56ab138\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centralindia\",\r\n \"tags\": {\r\n \"ms-resource-usage\": \"azure-cloud-shell\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/cloud-shell-storage-centralindia/providers/Microsoft.Storage/storageAccounts/csg10033fffacb0d110\",\r\n \"name\": \"csg10033fffacb0d110\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centralindia\",\r\n \"tags\": {\r\n \"ms-resource-usage\": \"azure-cloud-shell\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/cloud-shell-storage-centralindia/providers/Microsoft.Storage/storageAccounts/csg1003bffda7dcd176\",\r\n \"name\": \"csg1003bffda7dcd176\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centralindia\",\r\n \"tags\": {\r\n \"ms-resource-usage\": \"azure-cloud-shell\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/cloud-shell-storage-centralindia/providers/Microsoft.Storage/storageAccounts/csg100320004f433d62\",\r\n \"name\": \"csg100320004f433d62\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centralindia\",\r\n \"tags\": {\r\n \"ms-resource-usage\": \"azure-cloud-shell\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvmsqlworkload.existing.crr/providers/Microsoft.Storage/storageAccounts/iaasvmsqlworkloadexistin\",\r\n \"name\": \"iaasvmsqlworkloadexistin\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {\r\n \"Owner\": \"chgonugu\",\r\n \"Purpose\": \"BVT\",\r\n \"MabUsed\": \"Yes\",\r\n \"DeleteBy\": \"12-2099\",\r\n \"AutoShutdown\": \"No\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/Blob-Backup/providers/Microsoft.Storage/storageAccounts/testblobbackup\",\r\n \"name\": \"testblobbackup\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/fzejupmyclivaultasrcache\",\r\n \"name\": \"fzejupmyclivaultasrcache\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rgm7e2kiyzoto4iaicwwkdomftb7zki5kh2xxwh6yyskpflgsrpkrygkpwpdcltggyb/providers/Microsoft.Storage/storageAccounts/clitest7gyg4gqt4sxirqdkc\",\r\n \"name\": \"clitest7gyg4gqt4sxirqdkc\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rglx72s62qimgelno2o6rr34a5ovdikhzq5k6dc7773qrbodtnrdcguic5hpiciscne/providers/Microsoft.Storage/storageAccounts/clitestva4qmim2g5c3cb2tz\",\r\n \"name\": \"clitestva4qmim2g5c3cb2tz\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rg7leptekwovuif35xu6k3mb6lhszl4fkmod7jkg7yckt4v7epruxvjo6ty2hzsurwh/providers/Microsoft.Storage/storageAccounts/clitest3cgxtcwowikxqlds4\",\r\n \"name\": \"clitest3cgxtcwowikxqlds4\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rghgkz2nq6tonmn2ncf5nsluxw6pvzyxdveiba3lhoes54dgsc5vn6fgb5b4dipl57q/providers/Microsoft.Storage/storageAccounts/clitest2mvwrrerw5na6mj23\",\r\n \"name\": \"clitest2mvwrrerw5na6mj23\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseCcyGrs/providers/Microsoft.Storage/storageAccounts/storeimqyzvpnwrv5a\",\r\n \"name\": \"storeimqyzvpnwrv5a\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/sarath-rg/providers/Microsoft.Storage/storageAccounts/clitestingsa\",\r\n \"name\": \"clitestingsa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/sarath-rg/providers/Microsoft.Storage/storageAccounts/axiccypod01otds1\",\r\n \"name\": \"axiccypod01otds1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseZRS/providers/Microsoft.Storage/storageAccounts/akanasezrsstorag\",\r\n \"name\": \"akanasezrsstorag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {\r\n \"Purpose\": \"Testing\",\r\n \"Owner\": \"akkanase\",\r\n \"Mab Used\": \"yes\",\r\n \"DeleteBy\": \"01-2025\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/sarath-rg/providers/Microsoft.Storage/storageAccounts/sarathsacli\",\r\n \"name\": \"sarathsacli\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm-clitest-rg/providers/Microsoft.Storage/storageAccounts/iaasvmclitestsa\",\r\n \"name\": \"iaasvmclitestsa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"Owner\": \"akneema\",\r\n \"MABUsed\": \"Yes\",\r\n \"Purpose\": \"CLITest\",\r\n \"DeleteBy\": \"12-9999\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.Storage/storageAccounts/hiagasa\",\r\n \"name\": \"hiagasa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\",\r\n \"Purpose\": \"Testing\",\r\n \"DeleteBy\": \"01-2099\",\r\n \"Owner\": \"hiaga\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.Storage/storageAccounts/akneemasaecy\",\r\n \"name\": \"akneemasaecy\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {\r\n \"Owner\": \"akneema\",\r\n \"Purpose\": \"Testing\",\r\n \"MABUsed\": \"Yes\",\r\n \"DeleteBy\": \"12-9999\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/oss-clitest-rg/providers/Microsoft.Storage/storageAccounts/ossclitestsa\",\r\n \"name\": \"ossclitestsa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"Owner\": \"akneema\",\r\n \"Purpose\": \"Testing\",\r\n \"MABUsed\": \"Yes\",\r\n \"DeleteBy\": \"12-9999\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/oss-pstest-rg/providers/Microsoft.Storage/storageAccounts/osspstestsa\",\r\n \"name\": \"osspstestsa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"MABUsed\": \"Ye\",\r\n \"Owne\": \"hiaga\",\r\n \"Purpose\": \"esting\",\r\n \"Del\": \"01-2099\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/cli-track2-rg/providers/Microsoft.Storage/storageAccounts/clitrack2sa\",\r\n \"name\": \"clitrack2sa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"Owner\": \"akneema\",\r\n \"Purpose\": \"Testing\",\r\n \"DeleteBy\": \"12-9999\",\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm-pstest-rg/providers/Microsoft.Storage/storageAccounts/iaasvmpstestsa\",\r\n \"name\": \"iaasvmpstestsa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"MABUsed\": \"yes\",\r\n \"Owner\": \"hiaga\",\r\n \"Purpose\": \"testing\",\r\n \"DeleteBy\": \"01-2099\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/DontUse-BlobRestore-BVT-CCY-RG/providers/Microsoft.Storage/storageAccounts/dontuseblobbvtccyrstrall\",\r\n \"name\": \"dontuseblobbvtccyrstrall\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/DontUse-BlobRestore-BVT-CCY-RG/providers/Microsoft.Storage/storageAccounts/dontuseblobbvtccyprefix\",\r\n \"name\": \"dontuseblobbvtccyprefix\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/DontUse-BlobRestore-BVT-CCY-RG/providers/Microsoft.Storage/storageAccounts/dontuseblobbvtccycontnr\",\r\n \"name\": \"dontuseblobbvtccycontnr\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/oss-clicloudtest-rg/providers/Microsoft.Storage/storageAccounts/ossclicloudtestsa\",\r\n \"name\": \"ossclicloudtestsa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"Owner\": \"akneema\",\r\n \"Purpose\": \"Testing\",\r\n \"DeleteBy\": \"12-9999\",\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/prnookal-wcus/providers/Microsoft.Storage/storageAccounts/prnookalwcus\",\r\n \"name\": \"prnookalwcus\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"Owner\": \"prnookal\",\r\n \"DeleteBy\": \"12-2021\",\r\n \"IsMabUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PORTAL.DPP.BVT.BLOB.RESTORE.EXISTING/providers/Microsoft.Storage/storageAccounts/blobsaforrestoreall\",\r\n \"name\": \"blobsaforrestoreall\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PORTAL.DPP.BVT.BLOB.RESTORE.EXISTING/providers/Microsoft.Storage/storageAccounts/blobrestoreopcontainers\",\r\n \"name\": \"blobrestoreopcontainers\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PORTAL.DPP.BVT.BLOB.RESTORE.EXISTING/providers/Microsoft.Storage/storageAccounts/blobrestoreopprefix\",\r\n \"name\": \"blobrestoreopprefix\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PORTAL.DPP.BVT.BLOB.RESTORE.EXISTING/providers/Microsoft.Storage/storageAccounts/blobrestoreopcontainer\",\r\n \"name\": \"blobrestoreopcontainer\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PORTAL.DPP.BVT.BLOB.RESTORE.EXISTING/providers/Microsoft.Storage/storageAccounts/blobrestoreopall\",\r\n \"name\": \"blobrestoreopall\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PORTAL.DPP.BVT.BLOB.RESTORE.EXISTING/providers/Microsoft.Storage/storageAccounts/bloboprestorecontainers\",\r\n \"name\": \"bloboprestorecontainers\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PORTAL.DPP.BVT.BLOB.RESTORE.EXISTING/providers/Microsoft.Storage/storageAccounts/bloboprestoreall\",\r\n \"name\": \"bloboprestoreall\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagargeus/providers/Microsoft.Storage/storageAccounts/hiagargeus\",\r\n \"name\": \"hiagargeus\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akneema-we-rg/providers/Microsoft.Storage/storageAccounts/gb8wepod01otds1\",\r\n \"name\": \"gb8wepod01otds1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGZRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akneema/providers/Microsoft.Storage/storageAccounts/uvqccypod01otds1\",\r\n \"name\": \"uvqccypod01otds1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagaCZR-rg/providers/Microsoft.Storage/storageAccounts/cliczrlrssa\",\r\n \"name\": \"cliczrlrssa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {\r\n \"Owner\": \"akneema\",\r\n \"Purpose\": \"Testing\",\r\n \"DeleteBy\": \"12-9999\",\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseGRSVault/providers/Microsoft.Storage/storageAccounts/frmseapod01otds1\",\r\n \"name\": \"frmseapod01otds1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGZRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseZRS/providers/Microsoft.Storage/storageAccounts/rfoccypod01otds1\",\r\n \"name\": \"rfoccypod01otds1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akneema-we-rg/providers/Microsoft.Storage/storageAccounts/m3dccypod01otds01\",\r\n \"name\": \"m3dccypod01otds01\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/AdkayethBugbash/providers/Microsoft.Storage/storageAccounts/adkayethsfsa\",\r\n \"name\": \"adkayethsfsa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/AdkayethBugbash/providers/Microsoft.Storage/storageAccounts/adkayathesfsabugbash\",\r\n \"name\": \"adkayathesfsabugbash\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resources?$filter=resourceType%20eq%20'Microsoft.Storage%2FstorageAccounts'&api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5TdG9yYWdlJTJGc3RvcmFnZUFjY291bnRzJyZhcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f3d6c298-b754-4826-af0c-6a27a7cb5753" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "0c1ebcab-8bb6-4e13-b917-74baaa15b2e0" ], "x-ms-correlation-request-id": [ - "a3d8c748-a507-4a11-9bab-f4e19e245ed7" + "0c1ebcab-8bb6-4e13-b917-74baaa15b2e0" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220328T114708Z:a3d8c748-a507-4a11-9bab-f4e19e245ed7" + "JIOINDIAWEST:20220516T164646Z:0c1ebcab-8bb6-4e13-b917-74baaa15b2e0" ], - "Date": [ - "Mon, 28 Mar 2022 11:47:07 GMT" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "Content-Length": [ - "304" + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 16 May 2022 16:46:46 GMT" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" + ], + "Content-Length": [ + "34899" ] }, - "ResponseBody": "{\r\n \"id\": \"e2309129-b149-491e-a30b-3fb48715c094\",\r\n \"name\": \"e2309129-b149-491e-a30b-3fb48715c094\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-03-28T11:46:06.1355423Z\",\r\n \"endTime\": \"2022-03-28T11:46:06.1355423Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"e2309129-b149-491e-a30b-3fb48715c094\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.existing.crr/providers/Microsoft.Storage/storageAccounts/iaasvmexistingcrrdiag\",\r\n \"name\": \"iaasvmexistingcrrdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"MAB Used\": \"Yes\",\r\n \"DeleteBy\": \"01-2030\",\r\n \"Delete By\": \"01-2030\",\r\n \"Owner\": \"chgonugu\",\r\n \"Purpose\": \"Testing\",\r\n \"AutoShutdown\": \"false\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.existing.crr/providers/Microsoft.Storage/storageAccounts/iaasvmexistingcrrdiag112\",\r\n \"name\": \"iaasvmexistingcrrdiag112\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {\r\n \"Owner\": \"chgonugu\",\r\n \"Purpose\": \"Testing\",\r\n \"MabUsed\": \"Yes\",\r\n \"DeleteBy\": \"01-2025\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.existing.crr/providers/Microsoft.Storage/storageAccounts/iaasvmexistingcrr\",\r\n \"name\": \"iaasvmexistingcrr\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/sambit_rg/providers/Microsoft.Storage/storageAccounts/sarathsa3\",\r\n \"name\": \"sarathsa3\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvmhanaworkload.existing/providers/Microsoft.Storage/storageAccounts/iaasvmhanaworkloadexisti\",\r\n \"name\": \"iaasvmhanaworkloadexisti\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"AutoShutdown\": \"No\",\r\n \"BVT Used\": \"Yes\",\r\n \"Owner\": \"chgonugu\",\r\n \"Purpose\": \"BVT\",\r\n \"DeleteBy\": \"01-2030\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/afsnavigationtest\",\r\n \"name\": \"afsnavigationtest\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/afstbackuptestsa\",\r\n \"name\": \"afstbackuptestsa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.encryptedvm/providers/Microsoft.Storage/storageAccounts/iaasvmencryptedvmdiag170\",\r\n \"name\": \"iaasvmencryptedvmdiag170\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.existing/providers/Microsoft.Storage/storageAccounts/iaasvmexistingdiag1\",\r\n \"name\": \"iaasvmexistingdiag1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.existing/providers/Microsoft.Storage/storageAccounts/iaasextstore1\",\r\n \"name\": \"iaasextstore1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.new/providers/Microsoft.Storage/storageAccounts/iaasvmnewdiag1\",\r\n \"name\": \"iaasvmnewdiag1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.new/providers/Microsoft.Storage/storageAccounts/iaasnewstore1\",\r\n \"name\": \"iaasnewstore1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/IaasVMNavigationTest-RG/providers/Microsoft.Storage/storageAccounts/aasavigationestdiag\",\r\n \"name\": \"aasavigationestdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/IaasVMNavigationTest-RG/providers/Microsoft.Storage/storageAccounts/iaasvmnavigationstore\",\r\n \"name\": \"iaasvmnavigationstore\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pscloudtestrg/providers/Microsoft.Storage/storageAccounts/pscloudtestrgdiag\",\r\n \"name\": \"pscloudtestrgdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MAB Used\": \" Yes\",\r\n \"MABUsed\": \" Yes\",\r\n \"DeleteBy\": \"01-2030\",\r\n \"Purpose\": \"PS bvt\",\r\n \"Owner\": \"sarath\",\r\n \"AutoShutdown\": \"No\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pscloudtestrg/providers/Microsoft.Storage/storageAccounts/psbvtsa2\",\r\n \"name\": \"psbvtsa2\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstestsa8895\",\r\n \"name\": \"pstestsa8895\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstesttargetsa8895\",\r\n \"name\": \"pstesttargetsa8895\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstesttargetsa8896\",\r\n \"name\": \"pstesttargetsa8896\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/afsbackupsa\",\r\n \"name\": \"afsbackupsa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"Owner\": \"sarath\",\r\n \"Purpose\": \" BVT\",\r\n \"DeleteBy\": \"01-2025\",\r\n \"AutoShutdown\": \"No\",\r\n \"MAB Used\": \" Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG54bdf8da/providers/Microsoft.Storage/storageAccounts/pstestsa54bdf8da\",\r\n \"name\": \"pstestsa54bdf8da\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG1e5a278b/providers/Microsoft.Storage/storageAccounts/pstestsa1e5a278b\",\r\n \"name\": \"pstestsa1e5a278b\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG59e1706f/providers/Microsoft.Storage/storageAccounts/pstestsa59e1706f\",\r\n \"name\": \"pstestsa59e1706f\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/storageysci5wbex6jyc\",\r\n \"name\": \"storageysci5wbex6jyc\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/prnookal-rg/providers/Microsoft.Storage/storageAccounts/prnookaltestnob\",\r\n \"name\": \"prnookaltestnob\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"isMABUsed\": \"Yes\",\r\n \" Owner\": \"prnookal@microsoft.com\",\r\n \"DeletBy\": \"12-2021\",\r\n \"Purpose\": \" Testing\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/afsbackupsa1\",\r\n \"name\": \"afsbackupsa1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"Mab Used\": \"yes\",\r\n \"Owner\": \"akkanase\",\r\n \"Purpose\": \"Testing\",\r\n \"DeleteBy\": \"01-2022\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/afsbackupsa2\",\r\n \"name\": \"afsbackupsa2\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseTest/providers/Microsoft.Storage/storageAccounts/afsfilesharetest\",\r\n \"name\": \"afsfilesharetest\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/afsbackupsa3\",\r\n \"name\": \"afsbackupsa3\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/afsbackupsa0\",\r\n \"name\": \"afsbackupsa0\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pscloudtest-diskbackup-existing/providers/Microsoft.Storage/storageAccounts/1vnseapod01otds1\",\r\n \"name\": \"1vnseapod01otds1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGZRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseAFSTest/providers/Microsoft.Storage/storageAccounts/akkanaseafssa\",\r\n \"name\": \"akkanaseafssa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MAB Used\": \"Yes\",\r\n \"Owner\": \"akkanase\",\r\n \"Purpose\": \"Testing\",\r\n \"Delete By\": \"05-202\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseAFSTest/providers/Microsoft.Storage/storageAccounts/akkanasembpd2\",\r\n \"name\": \"akkanasembpd2\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MAB Used\": \"Yes\",\r\n \"Purpose\": \"Testing\",\r\n \"Owner\": \"akkanase\",\r\n \"Delete By\": \"05-2022\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseCMK/providers/Microsoft.Storage/storageAccounts/akkanase\",\r\n \"name\": \"akkanase\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"DeleteBy\": \"05-2023\",\r\n \"Owner\": \"akkanase\",\r\n \"Purpose\": \"Testing\",\r\n \"MAB Used\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/cmk.system/providers/Microsoft.Storage/storageAccounts/cmkautomationstore\",\r\n \"name\": \"cmkautomationstore\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"Delete By\": \"05-2050\",\r\n \"MAB Used\": \" Yes\",\r\n \"Owner\": \"akkanase\",\r\n \"Purpose\": \" BVT\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG235879ba/providers/Microsoft.Storage/storageAccounts/pstestsa235879ba\",\r\n \"name\": \"pstestsa235879ba\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/disk-bvt-test-rg/providers/Microsoft.Storage/storageAccounts/hv3seapod01otds1\",\r\n \"name\": \"hv3seapod01otds1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGZRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/DoNotUse-OSS-BVT-SEA-RG/providers/Microsoft.Storage/storageAccounts/dontuseossrestoreasfile\",\r\n \"name\": \"dontuseossrestoreasfile\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MAB Used\": \" Yes\",\r\n \" Owner\": \"akkanase\",\r\n \"Purpose\": \"BV\",\r\n \"Delete By\": \"05-2020\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseAFSTest/providers/Microsoft.Storage/storageAccounts/akkanaseafsa2\",\r\n \"name\": \"akkanaseafsa2\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseCMK/providers/Microsoft.Storage/storageAccounts/0byseapod01otds1\",\r\n \"name\": \"0byseapod01otds1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGZRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/9exwuspod01otds1\",\r\n \"name\": \"9exwuspod01otds1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/02xseacan01otds1\",\r\n \"name\": \"02xseacan01otds1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGZRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseMAB/providers/Microsoft.Storage/storageAccounts/dnhccypod01otds1\",\r\n \"name\": \"dnhccypod01otds1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rguzio7xhypi/providers/Microsoft.Storage/storageAccounts/clitest4b24ibpr3ztyhwo23\",\r\n \"name\": \"clitest4b24ibpr3ztyhwo23\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rgsiaa3ljqg5/providers/Microsoft.Storage/storageAccounts/clitestgd6i34czs3jb3rdtc\",\r\n \"name\": \"clitestgd6i34czs3jb3rdtc\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rgjxpjikqjjw/providers/Microsoft.Storage/storageAccounts/clitestjkhq2kpsal665atqe\",\r\n \"name\": \"clitestjkhq2kpsal665atqe\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rgwwhxyyhl2u/providers/Microsoft.Storage/storageAccounts/clitestdggdsdbtfa6vq5n5o\",\r\n \"name\": \"clitestdggdsdbtfa6vq5n5o\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rgm44mrkvygk/providers/Microsoft.Storage/storageAccounts/clitestodvd3xsftt63go6dk\",\r\n \"name\": \"clitestodvd3xsftt63go6dk\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rgdy7jf3qqzd/providers/Microsoft.Storage/storageAccounts/clitestnbsma3ftf2yugilxq\",\r\n \"name\": \"clitestnbsma3ftf2yugilxq\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rgl5tlzqo2pt/providers/Microsoft.Storage/storageAccounts/clitestgn64zidsnwe3ndjp5\",\r\n \"name\": \"clitestgn64zidsnwe3ndjp5\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rg73eqbdp4g5/providers/Microsoft.Storage/storageAccounts/clitestzfhrqsr4m24iwnjy7\",\r\n \"name\": \"clitestzfhrqsr4m24iwnjy7\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rg73eqbdp4g5/providers/Microsoft.Storage/storageAccounts/clitestukhlrarahpoebmaln\",\r\n \"name\": \"clitestukhlrarahpoebmaln\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/prnookal-prod/providers/Microsoft.Storage/storageAccounts/prnookalprod\",\r\n \"name\": \"prnookalprod\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"japaneast\",\r\n \"tags\": {\r\n \"IsMabUsed\": \"Yes\",\r\n \"Owner\": \"prnookal\",\r\n \"DeleteBy\": \"12-2021\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/cloud-shell-storage-centralindia/providers/Microsoft.Storage/storageAccounts/csg10032000d221b981\",\r\n \"name\": \"csg10032000d221b981\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centralindia\",\r\n \"tags\": {\r\n \"ms-resource-usage\": \"azure-cloud-shell\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/cloud-shell-storage-centralindia/providers/Microsoft.Storage/storageAccounts/csg10032000b56ab138\",\r\n \"name\": \"csg10032000b56ab138\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centralindia\",\r\n \"tags\": {\r\n \"ms-resource-usage\": \"azure-cloud-shell\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/cloud-shell-storage-centralindia/providers/Microsoft.Storage/storageAccounts/csg10033fffacb0d110\",\r\n \"name\": \"csg10033fffacb0d110\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centralindia\",\r\n \"tags\": {\r\n \"ms-resource-usage\": \"azure-cloud-shell\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/cloud-shell-storage-centralindia/providers/Microsoft.Storage/storageAccounts/csg1003bffda7dcd176\",\r\n \"name\": \"csg1003bffda7dcd176\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centralindia\",\r\n \"tags\": {\r\n \"ms-resource-usage\": \"azure-cloud-shell\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/cloud-shell-storage-centralindia/providers/Microsoft.Storage/storageAccounts/csg100320004f433d62\",\r\n \"name\": \"csg100320004f433d62\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centralindia\",\r\n \"tags\": {\r\n \"ms-resource-usage\": \"azure-cloud-shell\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvmsqlworkload.existing.crr/providers/Microsoft.Storage/storageAccounts/iaasvmsqlworkloadexistin\",\r\n \"name\": \"iaasvmsqlworkloadexistin\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {\r\n \"Owner\": \"chgonugu\",\r\n \"Purpose\": \"BVT\",\r\n \"MabUsed\": \"Yes\",\r\n \"DeleteBy\": \"12-2099\",\r\n \"AutoShutdown\": \"No\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/Blob-Backup/providers/Microsoft.Storage/storageAccounts/testblobbackup\",\r\n \"name\": \"testblobbackup\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/fzejupmyclivaultasrcache\",\r\n \"name\": \"fzejupmyclivaultasrcache\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rgm7e2kiyzoto4iaicwwkdomftb7zki5kh2xxwh6yyskpflgsrpkrygkpwpdcltggyb/providers/Microsoft.Storage/storageAccounts/clitest7gyg4gqt4sxirqdkc\",\r\n \"name\": \"clitest7gyg4gqt4sxirqdkc\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rglx72s62qimgelno2o6rr34a5ovdikhzq5k6dc7773qrbodtnrdcguic5hpiciscne/providers/Microsoft.Storage/storageAccounts/clitestva4qmim2g5c3cb2tz\",\r\n \"name\": \"clitestva4qmim2g5c3cb2tz\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rg7leptekwovuif35xu6k3mb6lhszl4fkmod7jkg7yckt4v7epruxvjo6ty2hzsurwh/providers/Microsoft.Storage/storageAccounts/clitest3cgxtcwowikxqlds4\",\r\n \"name\": \"clitest3cgxtcwowikxqlds4\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rghgkz2nq6tonmn2ncf5nsluxw6pvzyxdveiba3lhoes54dgsc5vn6fgb5b4dipl57q/providers/Microsoft.Storage/storageAccounts/clitest2mvwrrerw5na6mj23\",\r\n \"name\": \"clitest2mvwrrerw5na6mj23\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseCcyGrs/providers/Microsoft.Storage/storageAccounts/storeimqyzvpnwrv5a\",\r\n \"name\": \"storeimqyzvpnwrv5a\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/sarath-rg/providers/Microsoft.Storage/storageAccounts/clitestingsa\",\r\n \"name\": \"clitestingsa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/sarath-rg/providers/Microsoft.Storage/storageAccounts/axiccypod01otds1\",\r\n \"name\": \"axiccypod01otds1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseZRS/providers/Microsoft.Storage/storageAccounts/akanasezrsstorag\",\r\n \"name\": \"akanasezrsstorag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {\r\n \"Purpose\": \"Testing\",\r\n \"Owner\": \"akkanase\",\r\n \"Mab Used\": \"yes\",\r\n \"DeleteBy\": \"01-2025\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/sarath-rg/providers/Microsoft.Storage/storageAccounts/sarathsacli\",\r\n \"name\": \"sarathsacli\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm-clitest-rg/providers/Microsoft.Storage/storageAccounts/iaasvmclitestsa\",\r\n \"name\": \"iaasvmclitestsa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"Owner\": \"akneema\",\r\n \"MABUsed\": \"Yes\",\r\n \"Purpose\": \"CLITest\",\r\n \"DeleteBy\": \"12-9999\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.Storage/storageAccounts/hiagasa\",\r\n \"name\": \"hiagasa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\",\r\n \"Purpose\": \"Testing\",\r\n \"DeleteBy\": \"01-2099\",\r\n \"Owner\": \"hiaga\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.Storage/storageAccounts/akneemasaecy\",\r\n \"name\": \"akneemasaecy\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {\r\n \"Owner\": \"akneema\",\r\n \"Purpose\": \"Testing\",\r\n \"MABUsed\": \"Yes\",\r\n \"DeleteBy\": \"12-9999\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/oss-clitest-rg/providers/Microsoft.Storage/storageAccounts/ossclitestsa\",\r\n \"name\": \"ossclitestsa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"Owner\": \"akneema\",\r\n \"Purpose\": \"Testing\",\r\n \"MABUsed\": \"Yes\",\r\n \"DeleteBy\": \"12-9999\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/oss-pstest-rg/providers/Microsoft.Storage/storageAccounts/osspstestsa\",\r\n \"name\": \"osspstestsa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"MABUsed\": \"Ye\",\r\n \"Owne\": \"hiaga\",\r\n \"Purpose\": \"esting\",\r\n \"Del\": \"01-2099\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/cli-track2-rg/providers/Microsoft.Storage/storageAccounts/clitrack2sa\",\r\n \"name\": \"clitrack2sa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"Owner\": \"akneema\",\r\n \"Purpose\": \"Testing\",\r\n \"DeleteBy\": \"12-9999\",\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm-pstest-rg/providers/Microsoft.Storage/storageAccounts/iaasvmpstestsa\",\r\n \"name\": \"iaasvmpstestsa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"MABUsed\": \"yes\",\r\n \"Owner\": \"hiaga\",\r\n \"Purpose\": \"testing\",\r\n \"DeleteBy\": \"01-2099\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/DontUse-BlobRestore-BVT-CCY-RG/providers/Microsoft.Storage/storageAccounts/dontuseblobbvtccyrstrall\",\r\n \"name\": \"dontuseblobbvtccyrstrall\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/DontUse-BlobRestore-BVT-CCY-RG/providers/Microsoft.Storage/storageAccounts/dontuseblobbvtccyprefix\",\r\n \"name\": \"dontuseblobbvtccyprefix\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/DontUse-BlobRestore-BVT-CCY-RG/providers/Microsoft.Storage/storageAccounts/dontuseblobbvtccycontnr\",\r\n \"name\": \"dontuseblobbvtccycontnr\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/oss-clicloudtest-rg/providers/Microsoft.Storage/storageAccounts/ossclicloudtestsa\",\r\n \"name\": \"ossclicloudtestsa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"Owner\": \"akneema\",\r\n \"Purpose\": \"Testing\",\r\n \"DeleteBy\": \"12-9999\",\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/prnookal-wcus/providers/Microsoft.Storage/storageAccounts/prnookalwcus\",\r\n \"name\": \"prnookalwcus\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"Owner\": \"prnookal\",\r\n \"DeleteBy\": \"12-2021\",\r\n \"IsMabUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PORTAL.DPP.BVT.BLOB.RESTORE.EXISTING/providers/Microsoft.Storage/storageAccounts/blobsaforrestoreall\",\r\n \"name\": \"blobsaforrestoreall\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PORTAL.DPP.BVT.BLOB.RESTORE.EXISTING/providers/Microsoft.Storage/storageAccounts/blobrestoreopcontainers\",\r\n \"name\": \"blobrestoreopcontainers\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PORTAL.DPP.BVT.BLOB.RESTORE.EXISTING/providers/Microsoft.Storage/storageAccounts/blobrestoreopprefix\",\r\n \"name\": \"blobrestoreopprefix\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PORTAL.DPP.BVT.BLOB.RESTORE.EXISTING/providers/Microsoft.Storage/storageAccounts/blobrestoreopcontainer\",\r\n \"name\": \"blobrestoreopcontainer\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PORTAL.DPP.BVT.BLOB.RESTORE.EXISTING/providers/Microsoft.Storage/storageAccounts/blobrestoreopall\",\r\n \"name\": \"blobrestoreopall\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PORTAL.DPP.BVT.BLOB.RESTORE.EXISTING/providers/Microsoft.Storage/storageAccounts/bloboprestorecontainers\",\r\n \"name\": \"bloboprestorecontainers\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PORTAL.DPP.BVT.BLOB.RESTORE.EXISTING/providers/Microsoft.Storage/storageAccounts/bloboprestoreall\",\r\n \"name\": \"bloboprestoreall\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagargeus/providers/Microsoft.Storage/storageAccounts/hiagargeus\",\r\n \"name\": \"hiagargeus\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akneema-we-rg/providers/Microsoft.Storage/storageAccounts/gb8wepod01otds1\",\r\n \"name\": \"gb8wepod01otds1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGZRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akneema/providers/Microsoft.Storage/storageAccounts/uvqccypod01otds1\",\r\n \"name\": \"uvqccypod01otds1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagaCZR-rg/providers/Microsoft.Storage/storageAccounts/cliczrlrssa\",\r\n \"name\": \"cliczrlrssa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {\r\n \"Owner\": \"akneema\",\r\n \"Purpose\": \"Testing\",\r\n \"DeleteBy\": \"12-9999\",\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseGRSVault/providers/Microsoft.Storage/storageAccounts/frmseapod01otds1\",\r\n \"name\": \"frmseapod01otds1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGZRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseZRS/providers/Microsoft.Storage/storageAccounts/rfoccypod01otds1\",\r\n \"name\": \"rfoccypod01otds1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akneema-we-rg/providers/Microsoft.Storage/storageAccounts/m3dccypod01otds01\",\r\n \"name\": \"m3dccypod01otds01\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/AdkayethBugbash/providers/Microsoft.Storage/storageAccounts/adkayethsfsa\",\r\n \"name\": \"adkayethsfsa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/AdkayethBugbash/providers/Microsoft.Storage/storageAccounts/adkayathesfsabugbash\",\r\n \"name\": \"adkayathesfsabugbash\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupOperations/e2309129-b149-491e-a30b-3fb48715c094?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvZTIzMDkxMjktYjE0OS00OTFlLWEzMGItM2ZiNDg3MTVjMDk0P2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupFabrics/Azure/protectionContainers/IaasVMContainer%3Biaasvmcontainerv2%3Bhiagarg%3Bhiagavm/protectedItems/VM%3Biaasvmcontainerv2%3Bhiagarg%3Bhiagavm/recoveryPoints/170406712483820/restore?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEZhYnJpY3MvQXp1cmUvcHJvdGVjdGlvbkNvbnRhaW5lcnMvSWFhc1ZNQ29udGFpbmVyJTNCaWFhc3ZtY29udGFpbmVydjIlM0JoaWFnYXJnJTNCaGlhZ2F2bS9wcm90ZWN0ZWRJdGVtcy9WTSUzQmlhYXN2bWNvbnRhaW5lcnYyJTNCaGlhZ2FyZyUzQmhpYWdhdm0vcmVjb3ZlcnlQb2ludHMvMTcwNDA2NzEyNDgzODIwL3Jlc3RvcmU/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"properties\": {\r\n \"objectType\": \"IaasVMRestoreRequest\",\r\n \"recoveryPointId\": \"170406712483820\",\r\n \"recoveryType\": \"AlternateLocation\",\r\n \"sourceResourceId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.Compute/virtualMachines/hiagavm\",\r\n \"targetVirtualMachineId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.Compute/virtualMachines/alr-pstest-vm\",\r\n \"targetResourceGroupId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg\",\r\n \"storageAccountId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.Storage/storageAccounts/hiagasa\",\r\n \"virtualNetworkId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.Network/virtualNetworks/hiagarg-vnet\",\r\n \"subnetId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.Network/virtualNetworks/hiagarg-vnet/subnets/default\",\r\n \"region\": \"centraluseuap\",\r\n \"createNewCloudService\": false,\r\n \"originalStorageAccountOption\": false,\r\n \"restoreWithManagedDisks\": false\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "00653042-fa93-466e-8421-f35b91189233" + "7d15523b-c317-4cfc-b941-e25c267409eb" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "1220" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Pragma": [ - "no-cache" + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;hiagarg;hiagavm/protectedItems/VM;iaasvmcontainerv2;hiagarg;hiagavm/operationResults/ca08a17e-4565-421a-afab-dbf3616da157?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;hiagarg;hiagavm/protectedItems/VM;iaasvmcontainerv2;hiagarg;hiagavm/operationsStatus/ca08a17e-4565-421a-afab-dbf3616da157?api-version=2022-02-01" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "f02d592d-2212-4675-b59a-c59e4568f053" + "a9c767c8-e3bb-47c7-a0f3-e90ecb43c5b2" ], "x-ms-client-request-id": [ - "00653042-fa93-466e-8421-f35b91189233" + "7d15523b-c317-4cfc-b941-e25c267409eb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3689,48 +3758,51 @@ "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "296" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" ], "x-ms-correlation-request-id": [ - "f02d592d-2212-4675-b59a-c59e4568f053" + "a9c767c8-e3bb-47c7-a0f3-e90ecb43c5b2" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220328T114708Z:f02d592d-2212-4675-b59a-c59e4568f053" + "WESTINDIA:20220516T164432Z:a9c767c8-e3bb-47c7-a0f3-e90ecb43c5b2" ], "Date": [ - "Mon, 28 Mar 2022 11:47:08 GMT" - ], - "Content-Length": [ - "304" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "Mon, 16 May 2022 16:44:31 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, - "ResponseBody": "{\r\n \"id\": \"e2309129-b149-491e-a30b-3fb48715c094\",\r\n \"name\": \"e2309129-b149-491e-a30b-3fb48715c094\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-03-28T11:46:06.1355423Z\",\r\n \"endTime\": \"2022-03-28T11:46:06.1355423Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"e2309129-b149-491e-a30b-3fb48715c094\"\r\n }\r\n}", - "StatusCode": 200 + "ResponseBody": "", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/e2309129-b149-491e-a30b-3fb48715c094?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEpvYnMvZTIzMDkxMjktYjE0OS00OTFlLWEzMGItM2ZiNDg3MTVjMDk0P2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupFabrics/Azure/protectionContainers/IaasVMContainer%3Biaasvmcontainerv2%3Bhiagarg%3Bhiagavm/protectedItems/VM%3Biaasvmcontainerv2%3Bhiagarg%3Bhiagavm/recoveryPoints/170406712483820/restore?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEZhYnJpY3MvQXp1cmUvcHJvdGVjdGlvbkNvbnRhaW5lcnMvSWFhc1ZNQ29udGFpbmVyJTNCaWFhc3ZtY29udGFpbmVydjIlM0JoaWFnYXJnJTNCaGlhZ2F2bS9wcm90ZWN0ZWRJdGVtcy9WTSUzQmlhYXN2bWNvbnRhaW5lcnYyJTNCaGlhZ2FyZyUzQmhpYWdhdm0vcmVjb3ZlcnlQb2ludHMvMTcwNDA2NzEyNDgzODIwL3Jlc3RvcmU/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"properties\": {\r\n \"objectType\": \"IaasVMRestoreRequest\",\r\n \"recoveryPointId\": \"170406712483820\",\r\n \"recoveryType\": \"OriginalLocation\",\r\n \"sourceResourceId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.Compute/virtualMachines/hiagavm\",\r\n \"storageAccountId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.Storage/storageAccounts/hiagasa\",\r\n \"region\": \"centraluseuap\",\r\n \"createNewCloudService\": false,\r\n \"originalStorageAccountOption\": false,\r\n \"restoreWithManagedDisks\": false\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "00653042-fa93-466e-8421-f35b91189233" + "f3d6c298-b754-4826-af0c-6a27a7cb5753" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "616" ] }, "ResponseHeaders": { @@ -3740,66 +3812,69 @@ "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;hiagarg;hiagavm/protectedItems/VM;iaasvmcontainerv2;hiagarg;hiagavm/operationResults/23c54720-54e6-43b8-8a61-86274a7676fe?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;hiagarg;hiagavm/protectedItems/VM;iaasvmcontainerv2;hiagarg;hiagavm/operationsStatus/23c54720-54e6-43b8-8a61-86274a7676fe?api-version=2022-02-01" + ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "bd9a904c-0680-484f-956c-f7afcc9d056e" + "cdc7e4a7-73dc-4f66-9f52-822db887af14" ], "x-ms-client-request-id": [ - "00653042-fa93-466e-8421-f35b91189233" + "f3d6c298-b754-4826-af0c-6a27a7cb5753" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Server": [ - "Microsoft-IIS/10.0" + "Kestrel" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "262" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" ], "x-ms-correlation-request-id": [ - "bd9a904c-0680-484f-956c-f7afcc9d056e" + "cdc7e4a7-73dc-4f66-9f52-822db887af14" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220328T114709Z:bd9a904c-0680-484f-956c-f7afcc9d056e" + "JIOINDIAWEST:20220516T164647Z:cdc7e4a7-73dc-4f66-9f52-822db887af14" ], "Date": [ - "Mon, 28 Mar 2022 11:47:09 GMT" - ], - "Content-Length": [ - "1368" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "Mon, 16 May 2022 16:46:46 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/e2309129-b149-491e-a30b-3fb48715c094\",\r\n \"name\": \"e2309129-b149-491e-a30b-3fb48715c094\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"duration\": \"PT1M2.6785154S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Transfer data from vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\",\r\n \"taskExecutionDetails\": \"383 GBs / 383 GBs Transferred\"\r\n },\r\n {\r\n \"taskId\": \"Create the restored virtual machine\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"Job Type\": \"Recover VM to an alternate location\",\r\n \"Original VM Name\": \"hiagavm\",\r\n \"Target VM Name\": \"alr-pstest-vm\",\r\n \"Target VNet Name\": \"Group hiagarg hiagarg-vnet\",\r\n \"Target Storage Account Name\": \"hiagasa\",\r\n \"Recovery point time \": \"3/28/2022 11:28:08 AM\",\r\n \"Target resource group\": \"hiagarg\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"restoreLocationType\": \"AlternateLocation\"\r\n },\r\n \"progressPercentage\": 5.0,\r\n \"estimatedRemainingDuration\": \"PT10M\",\r\n \"dynamicErrorMessage\": \"\"\r\n },\r\n \"entityFriendlyName\": \"hiagavm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-03-28T11:46:06.1355423Z\",\r\n \"activityId\": \"00653042-fa93-466e-8421-f35b91189233\"\r\n }\r\n}", - "StatusCode": 200 + "ResponseBody": "", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/e2309129-b149-491e-a30b-3fb48715c094?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEpvYnMvZTIzMDkxMjktYjE0OS00OTFlLWEzMGItM2ZiNDg3MTVjMDk0P2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;hiagarg;hiagavm/protectedItems/VM;iaasvmcontainerv2;hiagarg;hiagavm/operationsStatus/ca08a17e-4565-421a-afab-dbf3616da157?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEZhYnJpY3MvQXp1cmUvcHJvdGVjdGlvbkNvbnRhaW5lcnMvSWFhc1ZNQ29udGFpbmVyO2lhYXN2bWNvbnRhaW5lcnYyO2hpYWdhcmc7aGlhZ2F2bS9wcm90ZWN0ZWRJdGVtcy9WTTtpYWFzdm1jb250YWluZXJ2MjtoaWFnYXJnO2hpYWdhdm0vb3BlcmF0aW9uc1N0YXR1cy9jYTA4YTE3ZS00NTY1LTQyMWEtYWZhYi1kYmYzNjE2ZGExNTc/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "00653042-fa93-466e-8421-f35b91189233" - ], - "Accept-Language": [ - "en-US" + "7d15523b-c317-4cfc-b941-e25c267409eb" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -3813,34 +3888,34 @@ "nosniff" ], "x-ms-request-id": [ - "eb7f0776-bc9e-4cee-8e24-6b77a39ee86f" + "b917f6b0-ca52-45a0-8430-4ba41ba0f1a3" ], "x-ms-client-request-id": [ - "00653042-fa93-466e-8421-f35b91189233" + "7d15523b-c317-4cfc-b941-e25c267409eb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Server": [ - "Microsoft-IIS/10.0" + "Kestrel" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "261" + "299" ], "x-ms-correlation-request-id": [ - "eb7f0776-bc9e-4cee-8e24-6b77a39ee86f" + "b917f6b0-ca52-45a0-8430-4ba41ba0f1a3" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220328T114710Z:eb7f0776-bc9e-4cee-8e24-6b77a39ee86f" + "WESTINDIA:20220516T164534Z:b917f6b0-ca52-45a0-8430-4ba41ba0f1a3" ], "Date": [ - "Mon, 28 Mar 2022 11:47:09 GMT" + "Mon, 16 May 2022 16:45:33 GMT" ], "Content-Length": [ - "1368" + "304" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3849,26 +3924,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/e2309129-b149-491e-a30b-3fb48715c094\",\r\n \"name\": \"e2309129-b149-491e-a30b-3fb48715c094\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"duration\": \"PT1M3.4284816S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Transfer data from vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\",\r\n \"taskExecutionDetails\": \"383 GBs / 383 GBs Transferred\"\r\n },\r\n {\r\n \"taskId\": \"Create the restored virtual machine\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"Job Type\": \"Recover VM to an alternate location\",\r\n \"Original VM Name\": \"hiagavm\",\r\n \"Target VM Name\": \"alr-pstest-vm\",\r\n \"Target VNet Name\": \"Group hiagarg hiagarg-vnet\",\r\n \"Target Storage Account Name\": \"hiagasa\",\r\n \"Recovery point time \": \"3/28/2022 11:28:08 AM\",\r\n \"Target resource group\": \"hiagarg\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"restoreLocationType\": \"AlternateLocation\"\r\n },\r\n \"progressPercentage\": 5.0,\r\n \"estimatedRemainingDuration\": \"PT10M\",\r\n \"dynamicErrorMessage\": \"\"\r\n },\r\n \"entityFriendlyName\": \"hiagavm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-03-28T11:46:06.1355423Z\",\r\n \"activityId\": \"00653042-fa93-466e-8421-f35b91189233\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"ca08a17e-4565-421a-afab-dbf3616da157\",\r\n \"name\": \"ca08a17e-4565-421a-afab-dbf3616da157\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-05-16T16:44:32.1373133Z\",\r\n \"endTime\": \"2022-05-16T16:44:32.1373133Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"ca08a17e-4565-421a-afab-dbf3616da157\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/e2309129-b149-491e-a30b-3fb48715c094?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEpvYnMvZTIzMDkxMjktYjE0OS00OTFlLWEzMGItM2ZiNDg3MTVjMDk0P2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;hiagarg;hiagavm/protectedItems/VM;iaasvmcontainerv2;hiagarg;hiagavm/operationResults/ca08a17e-4565-421a-afab-dbf3616da157?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEZhYnJpY3MvQXp1cmUvcHJvdGVjdGlvbkNvbnRhaW5lcnMvSWFhc1ZNQ29udGFpbmVyO2lhYXN2bWNvbnRhaW5lcnYyO2hpYWdhcmc7aGlhZ2F2bS9wcm90ZWN0ZWRJdGVtcy9WTTtpYWFzdm1jb250YWluZXJ2MjtoaWFnYXJnO2hpYWdhdm0vb3BlcmF0aW9uUmVzdWx0cy9jYTA4YTE3ZS00NTY1LTQyMWEtYWZhYi1kYmYzNjE2ZGExNTc/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "00653042-fa93-466e-8421-f35b91189233" - ], - "Accept-Language": [ - "en-US" + "7d15523b-c317-4cfc-b941-e25c267409eb" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -3878,66 +3950,63 @@ "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "260" + "Retry-After": [ + "60" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;hiagarg;hiagavm/protectedItems/VM;iaasvmcontainerv2;hiagarg;hiagavm/operationsStatus/ca08a17e-4565-421a-afab-dbf3616da157?api-version=2022-02-01" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "1ecff9ba-12fe-4d06-a0b1-40bec7505d3b" + "daddf6ef-a3c8-4f0c-9265-a9fbe12d2200" ], "x-ms-client-request-id": [ - "00653042-fa93-466e-8421-f35b91189233" + "7d15523b-c317-4cfc-b941-e25c267409eb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Server": [ - "Microsoft-IIS/10.0" + "Kestrel" ], "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "299" + ], "x-ms-correlation-request-id": [ - "1ecff9ba-12fe-4d06-a0b1-40bec7505d3b" + "daddf6ef-a3c8-4f0c-9265-a9fbe12d2200" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220328T114740Z:1ecff9ba-12fe-4d06-a0b1-40bec7505d3b" + "WESTINDIA:20220516T164534Z:daddf6ef-a3c8-4f0c-9265-a9fbe12d2200" ], "Date": [ - "Mon, 28 Mar 2022 11:47:40 GMT" - ], - "Content-Length": [ - "1369" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Mon, 16 May 2022 16:45:34 GMT" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/e2309129-b149-491e-a30b-3fb48715c094\",\r\n \"name\": \"e2309129-b149-491e-a30b-3fb48715c094\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"duration\": \"PT1M34.1509163S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Transfer data from vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\",\r\n \"taskExecutionDetails\": \"383 GBs / 383 GBs Transferred\"\r\n },\r\n {\r\n \"taskId\": \"Create the restored virtual machine\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"Job Type\": \"Recover VM to an alternate location\",\r\n \"Original VM Name\": \"hiagavm\",\r\n \"Target VM Name\": \"alr-pstest-vm\",\r\n \"Target VNet Name\": \"Group hiagarg hiagarg-vnet\",\r\n \"Target Storage Account Name\": \"hiagasa\",\r\n \"Recovery point time \": \"3/28/2022 11:28:08 AM\",\r\n \"Target resource group\": \"hiagarg\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"restoreLocationType\": \"AlternateLocation\"\r\n },\r\n \"progressPercentage\": 5.0,\r\n \"estimatedRemainingDuration\": \"PT10M\",\r\n \"dynamicErrorMessage\": \"\"\r\n },\r\n \"entityFriendlyName\": \"hiagavm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-03-28T11:46:06.1355423Z\",\r\n \"activityId\": \"00653042-fa93-466e-8421-f35b91189233\"\r\n }\r\n}", - "StatusCode": 200 + "ResponseBody": "", + "StatusCode": 204 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/e2309129-b149-491e-a30b-3fb48715c094?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEpvYnMvZTIzMDkxMjktYjE0OS00OTFlLWEzMGItM2ZiNDg3MTVjMDk0P2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupOperations/ca08a17e-4565-421a-afab-dbf3616da157?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvY2EwOGExN2UtNDU2NS00MjFhLWFmYWItZGJmMzYxNmRhMTU3P2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "00653042-fa93-466e-8421-f35b91189233" + "7d15523b-c317-4cfc-b941-e25c267409eb" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -3951,34 +4020,34 @@ "nosniff" ], "x-ms-request-id": [ - "752a9ab0-aee8-42c8-baf0-0acb4c5ab985" + "7448dc20-ee43-4a78-8405-a3ad097042e1" ], "x-ms-client-request-id": [ - "00653042-fa93-466e-8421-f35b91189233" + "7d15523b-c317-4cfc-b941-e25c267409eb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Server": [ - "Microsoft-IIS/10.0" + "Kestrel" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "259" + "275" ], "x-ms-correlation-request-id": [ - "752a9ab0-aee8-42c8-baf0-0acb4c5ab985" + "7448dc20-ee43-4a78-8405-a3ad097042e1" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220328T114811Z:752a9ab0-aee8-42c8-baf0-0acb4c5ab985" + "JIOINDIAWEST:20220516T164540Z:7448dc20-ee43-4a78-8405-a3ad097042e1" ], "Date": [ - "Mon, 28 Mar 2022 11:48:11 GMT" + "Mon, 16 May 2022 16:45:40 GMT" ], "Content-Length": [ - "1368" + "304" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3987,26 +4056,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/e2309129-b149-491e-a30b-3fb48715c094\",\r\n \"name\": \"e2309129-b149-491e-a30b-3fb48715c094\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"duration\": \"PT2M5.0471401S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Transfer data from vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\",\r\n \"taskExecutionDetails\": \"383 GBs / 383 GBs Transferred\"\r\n },\r\n {\r\n \"taskId\": \"Create the restored virtual machine\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"Job Type\": \"Recover VM to an alternate location\",\r\n \"Original VM Name\": \"hiagavm\",\r\n \"Target VM Name\": \"alr-pstest-vm\",\r\n \"Target VNet Name\": \"Group hiagarg hiagarg-vnet\",\r\n \"Target Storage Account Name\": \"hiagasa\",\r\n \"Recovery point time \": \"3/28/2022 11:28:08 AM\",\r\n \"Target resource group\": \"hiagarg\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"restoreLocationType\": \"AlternateLocation\"\r\n },\r\n \"progressPercentage\": 5.0,\r\n \"estimatedRemainingDuration\": \"PT10M\",\r\n \"dynamicErrorMessage\": \"\"\r\n },\r\n \"entityFriendlyName\": \"hiagavm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-03-28T11:46:06.1355423Z\",\r\n \"activityId\": \"00653042-fa93-466e-8421-f35b91189233\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"ca08a17e-4565-421a-afab-dbf3616da157\",\r\n \"name\": \"ca08a17e-4565-421a-afab-dbf3616da157\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-05-16T16:44:32.1373133Z\",\r\n \"endTime\": \"2022-05-16T16:44:32.1373133Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"ca08a17e-4565-421a-afab-dbf3616da157\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/e2309129-b149-491e-a30b-3fb48715c094?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEpvYnMvZTIzMDkxMjktYjE0OS00OTFlLWEzMGItM2ZiNDg3MTVjMDk0P2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupOperations/ca08a17e-4565-421a-afab-dbf3616da157?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvY2EwOGExN2UtNDU2NS00MjFhLWFmYWItZGJmMzYxNmRhMTU3P2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "00653042-fa93-466e-8421-f35b91189233" + "7d15523b-c317-4cfc-b941-e25c267409eb" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -4020,34 +4089,34 @@ "nosniff" ], "x-ms-request-id": [ - "6860fe40-0a84-4f8e-ac9f-4090fcc7392f" + "857d7d27-195a-4bb7-919e-dc5fc9e0fb83" ], "x-ms-client-request-id": [ - "00653042-fa93-466e-8421-f35b91189233" + "7d15523b-c317-4cfc-b941-e25c267409eb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Server": [ - "Microsoft-IIS/10.0" + "Kestrel" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "258" + "274" ], "x-ms-correlation-request-id": [ - "6860fe40-0a84-4f8e-ac9f-4090fcc7392f" + "857d7d27-195a-4bb7-919e-dc5fc9e0fb83" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220328T114842Z:6860fe40-0a84-4f8e-ac9f-4090fcc7392f" + "JIOINDIAWEST:20220516T164541Z:857d7d27-195a-4bb7-919e-dc5fc9e0fb83" ], "Date": [ - "Mon, 28 Mar 2022 11:48:42 GMT" + "Mon, 16 May 2022 16:45:41 GMT" ], "Content-Length": [ - "1369" + "304" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4056,26 +4125,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/e2309129-b149-491e-a30b-3fb48715c094\",\r\n \"name\": \"e2309129-b149-491e-a30b-3fb48715c094\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"duration\": \"PT2M35.8493503S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Transfer data from vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\",\r\n \"taskExecutionDetails\": \"383 GBs / 383 GBs Transferred\"\r\n },\r\n {\r\n \"taskId\": \"Create the restored virtual machine\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"Job Type\": \"Recover VM to an alternate location\",\r\n \"Original VM Name\": \"hiagavm\",\r\n \"Target VM Name\": \"alr-pstest-vm\",\r\n \"Target VNet Name\": \"Group hiagarg hiagarg-vnet\",\r\n \"Target Storage Account Name\": \"hiagasa\",\r\n \"Recovery point time \": \"3/28/2022 11:28:08 AM\",\r\n \"Target resource group\": \"hiagarg\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"restoreLocationType\": \"AlternateLocation\"\r\n },\r\n \"progressPercentage\": 5.0,\r\n \"estimatedRemainingDuration\": \"PT10M\",\r\n \"dynamicErrorMessage\": \"\"\r\n },\r\n \"entityFriendlyName\": \"hiagavm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-03-28T11:46:06.1355423Z\",\r\n \"activityId\": \"00653042-fa93-466e-8421-f35b91189233\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"ca08a17e-4565-421a-afab-dbf3616da157\",\r\n \"name\": \"ca08a17e-4565-421a-afab-dbf3616da157\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-05-16T16:44:32.1373133Z\",\r\n \"endTime\": \"2022-05-16T16:44:32.1373133Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"ca08a17e-4565-421a-afab-dbf3616da157\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/e2309129-b149-491e-a30b-3fb48715c094?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEpvYnMvZTIzMDkxMjktYjE0OS00OTFlLWEzMGItM2ZiNDg3MTVjMDk0P2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/ca08a17e-4565-421a-afab-dbf3616da157?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEpvYnMvY2EwOGExN2UtNDU2NS00MjFhLWFmYWItZGJmMzYxNmRhMTU3P2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "00653042-fa93-466e-8421-f35b91189233" + "7d15523b-c317-4cfc-b941-e25c267409eb" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -4089,10 +4158,10 @@ "nosniff" ], "x-ms-request-id": [ - "837adeb1-1508-4ad8-8308-bb5625860466" + "71b11d66-e779-400b-9f89-f0e8310f6633" ], "x-ms-client-request-id": [ - "00653042-fa93-466e-8421-f35b91189233" + "7d15523b-c317-4cfc-b941-e25c267409eb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4104,19 +4173,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "257" + "296" ], "x-ms-correlation-request-id": [ - "837adeb1-1508-4ad8-8308-bb5625860466" + "71b11d66-e779-400b-9f89-f0e8310f6633" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220328T114913Z:837adeb1-1508-4ad8-8308-bb5625860466" + "JIOINDIAWEST:20220516T164542Z:71b11d66-e779-400b-9f89-f0e8310f6633" ], "Date": [ - "Mon, 28 Mar 2022 11:49:12 GMT" + "Mon, 16 May 2022 16:45:42 GMT" ], "Content-Length": [ - "1368" + "1367" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4125,26 +4194,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/e2309129-b149-491e-a30b-3fb48715c094\",\r\n \"name\": \"e2309129-b149-491e-a30b-3fb48715c094\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"duration\": \"PT3M6.6083294S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Transfer data from vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\",\r\n \"taskExecutionDetails\": \"383 GBs / 383 GBs Transferred\"\r\n },\r\n {\r\n \"taskId\": \"Create the restored virtual machine\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"Job Type\": \"Recover VM to an alternate location\",\r\n \"Original VM Name\": \"hiagavm\",\r\n \"Target VM Name\": \"alr-pstest-vm\",\r\n \"Target VNet Name\": \"Group hiagarg hiagarg-vnet\",\r\n \"Target Storage Account Name\": \"hiagasa\",\r\n \"Recovery point time \": \"3/28/2022 11:28:08 AM\",\r\n \"Target resource group\": \"hiagarg\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"restoreLocationType\": \"AlternateLocation\"\r\n },\r\n \"progressPercentage\": 5.0,\r\n \"estimatedRemainingDuration\": \"PT10M\",\r\n \"dynamicErrorMessage\": \"\"\r\n },\r\n \"entityFriendlyName\": \"hiagavm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-03-28T11:46:06.1355423Z\",\r\n \"activityId\": \"00653042-fa93-466e-8421-f35b91189233\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/ca08a17e-4565-421a-afab-dbf3616da157\",\r\n \"name\": \"ca08a17e-4565-421a-afab-dbf3616da157\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"duration\": \"PT1M9.4340631S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Transfer data from vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\",\r\n \"taskExecutionDetails\": \"383 GBs / 383 GBs Transferred\"\r\n },\r\n {\r\n \"taskId\": \"Create the restored virtual machine\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"Job Type\": \"Recover VM to an alternate location\",\r\n \"Original VM Name\": \"hiagavm\",\r\n \"Target VM Name\": \"alr-pstest-vm\",\r\n \"Target VNet Name\": \"Group hiagarg hiagarg-vnet\",\r\n \"Target Storage Account Name\": \"hiagasa\",\r\n \"Recovery point time \": \"5/16/2022 4:23:17 PM\",\r\n \"Target resource group\": \"hiagarg\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"restoreLocationType\": \"AlternateLocation\"\r\n },\r\n \"progressPercentage\": 5.0,\r\n \"estimatedRemainingDuration\": \"PT10M\",\r\n \"dynamicErrorMessage\": \"\"\r\n },\r\n \"entityFriendlyName\": \"hiagavm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T16:44:32.1373133Z\",\r\n \"activityId\": \"7d15523b-c317-4cfc-b941-e25c267409eb\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/e2309129-b149-491e-a30b-3fb48715c094?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEpvYnMvZTIzMDkxMjktYjE0OS00OTFlLWEzMGItM2ZiNDg3MTVjMDk0P2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/ca08a17e-4565-421a-afab-dbf3616da157?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEpvYnMvY2EwOGExN2UtNDU2NS00MjFhLWFmYWItZGJmMzYxNmRhMTU3P2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "00653042-fa93-466e-8421-f35b91189233" + "7d15523b-c317-4cfc-b941-e25c267409eb" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -4158,10 +4227,10 @@ "nosniff" ], "x-ms-request-id": [ - "44668d71-02b4-4395-9033-8f58390b4e60" + "3786aac5-6e68-4163-b502-a4282eb84070" ], "x-ms-client-request-id": [ - "00653042-fa93-466e-8421-f35b91189233" + "7d15523b-c317-4cfc-b941-e25c267409eb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4173,19 +4242,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "256" + "295" ], "x-ms-correlation-request-id": [ - "44668d71-02b4-4395-9033-8f58390b4e60" + "3786aac5-6e68-4163-b502-a4282eb84070" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220328T114944Z:44668d71-02b4-4395-9033-8f58390b4e60" + "JIOINDIAWEST:20220516T164543Z:3786aac5-6e68-4163-b502-a4282eb84070" ], "Date": [ - "Mon, 28 Mar 2022 11:49:43 GMT" + "Mon, 16 May 2022 16:45:43 GMT" ], "Content-Length": [ - "1369" + "1368" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4194,26 +4263,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/e2309129-b149-491e-a30b-3fb48715c094\",\r\n \"name\": \"e2309129-b149-491e-a30b-3fb48715c094\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"duration\": \"PT3M37.2693274S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Transfer data from vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\",\r\n \"taskExecutionDetails\": \"383 GBs / 383 GBs Transferred\"\r\n },\r\n {\r\n \"taskId\": \"Create the restored virtual machine\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"Job Type\": \"Recover VM to an alternate location\",\r\n \"Original VM Name\": \"hiagavm\",\r\n \"Target VM Name\": \"alr-pstest-vm\",\r\n \"Target VNet Name\": \"Group hiagarg hiagarg-vnet\",\r\n \"Target Storage Account Name\": \"hiagasa\",\r\n \"Recovery point time \": \"3/28/2022 11:28:08 AM\",\r\n \"Target resource group\": \"hiagarg\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"restoreLocationType\": \"AlternateLocation\"\r\n },\r\n \"progressPercentage\": 5.0,\r\n \"estimatedRemainingDuration\": \"PT10M\",\r\n \"dynamicErrorMessage\": \"\"\r\n },\r\n \"entityFriendlyName\": \"hiagavm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-03-28T11:46:06.1355423Z\",\r\n \"activityId\": \"00653042-fa93-466e-8421-f35b91189233\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/ca08a17e-4565-421a-afab-dbf3616da157\",\r\n \"name\": \"ca08a17e-4565-421a-afab-dbf3616da157\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"duration\": \"PT1M10.3975973S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Transfer data from vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\",\r\n \"taskExecutionDetails\": \"383 GBs / 383 GBs Transferred\"\r\n },\r\n {\r\n \"taskId\": \"Create the restored virtual machine\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"Job Type\": \"Recover VM to an alternate location\",\r\n \"Original VM Name\": \"hiagavm\",\r\n \"Target VM Name\": \"alr-pstest-vm\",\r\n \"Target VNet Name\": \"Group hiagarg hiagarg-vnet\",\r\n \"Target Storage Account Name\": \"hiagasa\",\r\n \"Recovery point time \": \"5/16/2022 4:23:17 PM\",\r\n \"Target resource group\": \"hiagarg\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"restoreLocationType\": \"AlternateLocation\"\r\n },\r\n \"progressPercentage\": 5.0,\r\n \"estimatedRemainingDuration\": \"PT10M\",\r\n \"dynamicErrorMessage\": \"\"\r\n },\r\n \"entityFriendlyName\": \"hiagavm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T16:44:32.1373133Z\",\r\n \"activityId\": \"7d15523b-c317-4cfc-b941-e25c267409eb\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/e2309129-b149-491e-a30b-3fb48715c094?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEpvYnMvZTIzMDkxMjktYjE0OS00OTFlLWEzMGItM2ZiNDg3MTVjMDk0P2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/ca08a17e-4565-421a-afab-dbf3616da157?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEpvYnMvY2EwOGExN2UtNDU2NS00MjFhLWFmYWItZGJmMzYxNmRhMTU3P2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "00653042-fa93-466e-8421-f35b91189233" + "7d15523b-c317-4cfc-b941-e25c267409eb" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -4227,10 +4296,10 @@ "nosniff" ], "x-ms-request-id": [ - "aaea51ba-31ed-4274-8ef8-f8ffe8aecb4f" + "9e36e7ea-3c84-4f05-af8a-99fbba979848" ], "x-ms-client-request-id": [ - "00653042-fa93-466e-8421-f35b91189233" + "7d15523b-c317-4cfc-b941-e25c267409eb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4242,16 +4311,16 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "255" + "294" ], "x-ms-correlation-request-id": [ - "aaea51ba-31ed-4274-8ef8-f8ffe8aecb4f" + "9e36e7ea-3c84-4f05-af8a-99fbba979848" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220328T115015Z:aaea51ba-31ed-4274-8ef8-f8ffe8aecb4f" + "JIOINDIAWEST:20220516T164614Z:9e36e7ea-3c84-4f05-af8a-99fbba979848" ], "Date": [ - "Mon, 28 Mar 2022 11:50:14 GMT" + "Mon, 16 May 2022 16:46:13 GMT" ], "Content-Length": [ "1368" @@ -4263,26 +4332,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/e2309129-b149-491e-a30b-3fb48715c094\",\r\n \"name\": \"e2309129-b149-491e-a30b-3fb48715c094\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"duration\": \"PT4M8.1350315S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Transfer data from vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\",\r\n \"taskExecutionDetails\": \"383 GBs / 383 GBs Transferred\"\r\n },\r\n {\r\n \"taskId\": \"Create the restored virtual machine\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"Job Type\": \"Recover VM to an alternate location\",\r\n \"Original VM Name\": \"hiagavm\",\r\n \"Target VM Name\": \"alr-pstest-vm\",\r\n \"Target VNet Name\": \"Group hiagarg hiagarg-vnet\",\r\n \"Target Storage Account Name\": \"hiagasa\",\r\n \"Recovery point time \": \"3/28/2022 11:28:08 AM\",\r\n \"Target resource group\": \"hiagarg\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"restoreLocationType\": \"AlternateLocation\"\r\n },\r\n \"progressPercentage\": 5.0,\r\n \"estimatedRemainingDuration\": \"PT10M\",\r\n \"dynamicErrorMessage\": \"\"\r\n },\r\n \"entityFriendlyName\": \"hiagavm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-03-28T11:46:06.1355423Z\",\r\n \"activityId\": \"00653042-fa93-466e-8421-f35b91189233\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/ca08a17e-4565-421a-afab-dbf3616da157\",\r\n \"name\": \"ca08a17e-4565-421a-afab-dbf3616da157\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"duration\": \"PT1M41.3869724S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Transfer data from vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\",\r\n \"taskExecutionDetails\": \"383 GBs / 383 GBs Transferred\"\r\n },\r\n {\r\n \"taskId\": \"Create the restored virtual machine\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"Job Type\": \"Recover VM to an alternate location\",\r\n \"Original VM Name\": \"hiagavm\",\r\n \"Target VM Name\": \"alr-pstest-vm\",\r\n \"Target VNet Name\": \"Group hiagarg hiagarg-vnet\",\r\n \"Target Storage Account Name\": \"hiagasa\",\r\n \"Recovery point time \": \"5/16/2022 4:23:17 PM\",\r\n \"Target resource group\": \"hiagarg\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"restoreLocationType\": \"AlternateLocation\"\r\n },\r\n \"progressPercentage\": 5.0,\r\n \"estimatedRemainingDuration\": \"PT10M\",\r\n \"dynamicErrorMessage\": \"\"\r\n },\r\n \"entityFriendlyName\": \"hiagavm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T16:44:32.1373133Z\",\r\n \"activityId\": \"7d15523b-c317-4cfc-b941-e25c267409eb\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/e2309129-b149-491e-a30b-3fb48715c094?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEpvYnMvZTIzMDkxMjktYjE0OS00OTFlLWEzMGItM2ZiNDg3MTVjMDk0P2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/ca08a17e-4565-421a-afab-dbf3616da157?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEpvYnMvY2EwOGExN2UtNDU2NS00MjFhLWFmYWItZGJmMzYxNmRhMTU3P2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "00653042-fa93-466e-8421-f35b91189233" + "7d15523b-c317-4cfc-b941-e25c267409eb" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -4296,10 +4365,10 @@ "nosniff" ], "x-ms-request-id": [ - "1800d93f-25dc-470d-98bd-a9ae4de0cfe1" + "c1ec94de-2669-4afb-9b6d-f1009995d23d" ], "x-ms-client-request-id": [ - "00653042-fa93-466e-8421-f35b91189233" + "7d15523b-c317-4cfc-b941-e25c267409eb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4311,19 +4380,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "254" + "293" ], "x-ms-correlation-request-id": [ - "1800d93f-25dc-470d-98bd-a9ae4de0cfe1" + "c1ec94de-2669-4afb-9b6d-f1009995d23d" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220328T115045Z:1800d93f-25dc-470d-98bd-a9ae4de0cfe1" + "JIOINDIAWEST:20220516T164645Z:c1ec94de-2669-4afb-9b6d-f1009995d23d" ], "Date": [ - "Mon, 28 Mar 2022 11:50:45 GMT" + "Mon, 16 May 2022 16:46:44 GMT" ], "Content-Length": [ - "1384" + "1381" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4332,23 +4401,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/e2309129-b149-491e-a30b-3fb48715c094\",\r\n \"name\": \"e2309129-b149-491e-a30b-3fb48715c094\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"duration\": \"PT4M11.4883996S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Transfer data from vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\",\r\n \"taskExecutionDetails\": \"383 GBs / 383 GBs Transferred\"\r\n },\r\n {\r\n \"taskId\": \"Create the restored virtual machine\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"Job Type\": \"Recover VM to an alternate location\",\r\n \"Original VM Name\": \"hiagavm\",\r\n \"Target VM Name\": \"alr-pstest-vm\",\r\n \"Target VNet Name\": \"Group hiagarg hiagarg-vnet\",\r\n \"Target Storage Account Name\": \"hiagasa\",\r\n \"Recovery point time \": \"3/28/2022 11:28:08 AM\",\r\n \"Target resource group\": \"hiagarg\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"restoreLocationType\": \"AlternateLocation\"\r\n },\r\n \"progressPercentage\": 100.0,\r\n \"estimatedRemainingDuration\": \"PT0S\"\r\n },\r\n \"entityFriendlyName\": \"hiagavm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-03-28T11:46:06.1355423Z\",\r\n \"endTime\": \"2022-03-28T11:50:17.6239419Z\",\r\n \"activityId\": \"00653042-fa93-466e-8421-f35b91189233\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/ca08a17e-4565-421a-afab-dbf3616da157\",\r\n \"name\": \"ca08a17e-4565-421a-afab-dbf3616da157\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"duration\": \"PT2M9.9069947S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Transfer data from vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\",\r\n \"taskExecutionDetails\": \"383 GBs / 383 GBs Transferred\"\r\n },\r\n {\r\n \"taskId\": \"Create the restored virtual machine\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"Job Type\": \"Recover VM to an alternate location\",\r\n \"Original VM Name\": \"hiagavm\",\r\n \"Target VM Name\": \"alr-pstest-vm\",\r\n \"Target VNet Name\": \"Group hiagarg hiagarg-vnet\",\r\n \"Target Storage Account Name\": \"hiagasa\",\r\n \"Recovery point time \": \"5/16/2022 4:23:17 PM\",\r\n \"Target resource group\": \"hiagarg\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"restoreLocationType\": \"AlternateLocation\"\r\n },\r\n \"progressPercentage\": 100.0,\r\n \"estimatedRemainingDuration\": \"PT0S\"\r\n },\r\n \"entityFriendlyName\": \"hiagavm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-05-16T16:44:32.1373133Z\",\r\n \"endTime\": \"2022-05-16T16:46:42.044308Z\",\r\n \"activityId\": \"7d15523b-c317-4cfc-b941-e25c267409eb\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;hiagarg;hiagavm/protectedItems/VM;iaasvmcontainerv2;hiagarg;hiagavm/operationsStatus/25dc2126-c58c-440d-891a-846eaa05937c?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEZhYnJpY3MvQXp1cmUvcHJvdGVjdGlvbkNvbnRhaW5lcnMvSWFhc1ZNQ29udGFpbmVyO2lhYXN2bWNvbnRhaW5lcnYyO2hpYWdhcmc7aGlhZ2F2bS9wcm90ZWN0ZWRJdGVtcy9WTTtpYWFzdm1jb250YWluZXJ2MjtoaWFnYXJnO2hpYWdhdm0vb3BlcmF0aW9uc1N0YXR1cy8yNWRjMjEyNi1jNThjLTQ0MGQtODkxYS04NDZlYWEwNTkzN2M/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;hiagarg;hiagavm/protectedItems/VM;iaasvmcontainerv2;hiagarg;hiagavm/operationsStatus/23c54720-54e6-43b8-8a61-86274a7676fe?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEZhYnJpY3MvQXp1cmUvcHJvdGVjdGlvbkNvbnRhaW5lcnMvSWFhc1ZNQ29udGFpbmVyO2lhYXN2bWNvbnRhaW5lcnYyO2hpYWdhcmc7aGlhZ2F2bS9wcm90ZWN0ZWRJdGVtcy9WTTtpYWFzdm1jb250YWluZXJ2MjtoaWFnYXJnO2hpYWdhdm0vb3BlcmF0aW9uc1N0YXR1cy8yM2M1NDcyMC01NGU2LTQzYjgtOGE2MS04NjI3NGE3Njc2ZmU/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2eac2e4f-f201-42cb-8481-adf9c00b8cff" + "f3d6c298-b754-4826-af0c-6a27a7cb5753" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -4362,10 +4431,10 @@ "nosniff" ], "x-ms-request-id": [ - "6a0c8efc-591e-4772-8fd6-cfc62589224d" + "ffe0a178-0c33-4a8a-b7b3-da34e9b8e3e1" ], "x-ms-client-request-id": [ - "2eac2e4f-f201-42cb-8481-adf9c00b8cff" + "f3d6c298-b754-4826-af0c-6a27a7cb5753" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4377,16 +4446,16 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "298" + "299" ], "x-ms-correlation-request-id": [ - "6a0c8efc-591e-4772-8fd6-cfc62589224d" + "ffe0a178-0c33-4a8a-b7b3-da34e9b8e3e1" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220328T115148Z:6a0c8efc-591e-4772-8fd6-cfc62589224d" + "JIOINDIAWEST:20220516T164749Z:ffe0a178-0c33-4a8a-b7b3-da34e9b8e3e1" ], "Date": [ - "Mon, 28 Mar 2022 11:51:47 GMT" + "Mon, 16 May 2022 16:47:48 GMT" ], "Content-Length": [ "304" @@ -4398,23 +4467,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"25dc2126-c58c-440d-891a-846eaa05937c\",\r\n \"name\": \"25dc2126-c58c-440d-891a-846eaa05937c\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-03-28T11:50:47.0193331Z\",\r\n \"endTime\": \"2022-03-28T11:50:47.0193331Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"25dc2126-c58c-440d-891a-846eaa05937c\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"23c54720-54e6-43b8-8a61-86274a7676fe\",\r\n \"name\": \"23c54720-54e6-43b8-8a61-86274a7676fe\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-05-16T16:46:47.2245621Z\",\r\n \"endTime\": \"2022-05-16T16:46:47.2245621Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"23c54720-54e6-43b8-8a61-86274a7676fe\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;hiagarg;hiagavm/protectedItems/VM;iaasvmcontainerv2;hiagarg;hiagavm/operationResults/25dc2126-c58c-440d-891a-846eaa05937c?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEZhYnJpY3MvQXp1cmUvcHJvdGVjdGlvbkNvbnRhaW5lcnMvSWFhc1ZNQ29udGFpbmVyO2lhYXN2bWNvbnRhaW5lcnYyO2hpYWdhcmc7aGlhZ2F2bS9wcm90ZWN0ZWRJdGVtcy9WTTtpYWFzdm1jb250YWluZXJ2MjtoaWFnYXJnO2hpYWdhdm0vb3BlcmF0aW9uUmVzdWx0cy8yNWRjMjEyNi1jNThjLTQ0MGQtODkxYS04NDZlYWEwNTkzN2M/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;hiagarg;hiagavm/protectedItems/VM;iaasvmcontainerv2;hiagarg;hiagavm/operationResults/23c54720-54e6-43b8-8a61-86274a7676fe?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEZhYnJpY3MvQXp1cmUvcHJvdGVjdGlvbkNvbnRhaW5lcnMvSWFhc1ZNQ29udGFpbmVyO2lhYXN2bWNvbnRhaW5lcnYyO2hpYWdhcmc7aGlhZ2F2bS9wcm90ZWN0ZWRJdGVtcy9WTTtpYWFzdm1jb250YWluZXJ2MjtoaWFnYXJnO2hpYWdhdm0vb3BlcmF0aW9uUmVzdWx0cy8yM2M1NDcyMC01NGU2LTQzYjgtOGE2MS04NjI3NGE3Njc2ZmU/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2eac2e4f-f201-42cb-8481-adf9c00b8cff" + "f3d6c298-b754-4826-af0c-6a27a7cb5753" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -4428,16 +4497,16 @@ "60" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;hiagarg;hiagavm/protectedItems/VM;iaasvmcontainerv2;hiagarg;hiagavm/operationsStatus/25dc2126-c58c-440d-891a-846eaa05937c?api-version=2021-12-01" + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;hiagarg;hiagavm/protectedItems/VM;iaasvmcontainerv2;hiagarg;hiagavm/operationsStatus/23c54720-54e6-43b8-8a61-86274a7676fe?api-version=2022-02-01" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "2beb832b-d30f-41b1-95a5-74193d5565fc" + "e21195ec-18d7-4611-96ea-7b0885746923" ], "x-ms-client-request-id": [ - "2eac2e4f-f201-42cb-8481-adf9c00b8cff" + "f3d6c298-b754-4826-af0c-6a27a7cb5753" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4449,38 +4518,38 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "298" + "299" ], "x-ms-correlation-request-id": [ - "2beb832b-d30f-41b1-95a5-74193d5565fc" + "e21195ec-18d7-4611-96ea-7b0885746923" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220328T115149Z:2beb832b-d30f-41b1-95a5-74193d5565fc" + "JIOINDIAWEST:20220516T164750Z:e21195ec-18d7-4611-96ea-7b0885746923" ], "Date": [ - "Mon, 28 Mar 2022 11:51:48 GMT" + "Mon, 16 May 2022 16:47:50 GMT" ] }, "ResponseBody": "", "StatusCode": 204 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupOperations/25dc2126-c58c-440d-891a-846eaa05937c?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvMjVkYzIxMjYtYzU4Yy00NDBkLTg5MWEtODQ2ZWFhMDU5MzdjP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupOperations/23c54720-54e6-43b8-8a61-86274a7676fe?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvMjNjNTQ3MjAtNTRlNi00M2I4LThhNjEtODYyNzRhNzY3NmZlP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2eac2e4f-f201-42cb-8481-adf9c00b8cff" + "f3d6c298-b754-4826-af0c-6a27a7cb5753" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -4494,10 +4563,10 @@ "nosniff" ], "x-ms-request-id": [ - "31b40f4f-d85e-479e-846c-7f24745b5c62" + "677b5e24-d7be-4d55-91c0-bc61604a8acc" ], "x-ms-client-request-id": [ - "2eac2e4f-f201-42cb-8481-adf9c00b8cff" + "f3d6c298-b754-4826-af0c-6a27a7cb5753" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4509,16 +4578,16 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "295" + "299" ], "x-ms-correlation-request-id": [ - "31b40f4f-d85e-479e-846c-7f24745b5c62" + "677b5e24-d7be-4d55-91c0-bc61604a8acc" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220328T115149Z:31b40f4f-d85e-479e-846c-7f24745b5c62" + "JIOINDIAWEST:20220516T164753Z:677b5e24-d7be-4d55-91c0-bc61604a8acc" ], "Date": [ - "Mon, 28 Mar 2022 11:51:49 GMT" + "Mon, 16 May 2022 16:47:52 GMT" ], "Content-Length": [ "304" @@ -4530,26 +4599,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"25dc2126-c58c-440d-891a-846eaa05937c\",\r\n \"name\": \"25dc2126-c58c-440d-891a-846eaa05937c\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-03-28T11:50:47.0193331Z\",\r\n \"endTime\": \"2022-03-28T11:50:47.0193331Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"25dc2126-c58c-440d-891a-846eaa05937c\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"23c54720-54e6-43b8-8a61-86274a7676fe\",\r\n \"name\": \"23c54720-54e6-43b8-8a61-86274a7676fe\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-05-16T16:46:47.2245621Z\",\r\n \"endTime\": \"2022-05-16T16:46:47.2245621Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"23c54720-54e6-43b8-8a61-86274a7676fe\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupOperations/25dc2126-c58c-440d-891a-846eaa05937c?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvMjVkYzIxMjYtYzU4Yy00NDBkLTg5MWEtODQ2ZWFhMDU5MzdjP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupOperations/23c54720-54e6-43b8-8a61-86274a7676fe?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvMjNjNTQ3MjAtNTRlNi00M2I4LThhNjEtODYyNzRhNzY3NmZlP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2eac2e4f-f201-42cb-8481-adf9c00b8cff" + "f3d6c298-b754-4826-af0c-6a27a7cb5753" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -4563,10 +4632,10 @@ "nosniff" ], "x-ms-request-id": [ - "beeaf098-4899-4e33-9924-b82386d76e58" + "0352cd3d-9177-48cd-9b67-f117ead571a6" ], "x-ms-client-request-id": [ - "2eac2e4f-f201-42cb-8481-adf9c00b8cff" + "f3d6c298-b754-4826-af0c-6a27a7cb5753" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4578,16 +4647,16 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "294" + "298" ], "x-ms-correlation-request-id": [ - "beeaf098-4899-4e33-9924-b82386d76e58" + "0352cd3d-9177-48cd-9b67-f117ead571a6" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220328T115150Z:beeaf098-4899-4e33-9924-b82386d76e58" + "JIOINDIAWEST:20220516T164755Z:0352cd3d-9177-48cd-9b67-f117ead571a6" ], "Date": [ - "Mon, 28 Mar 2022 11:51:49 GMT" + "Mon, 16 May 2022 16:47:54 GMT" ], "Content-Length": [ "304" @@ -4599,26 +4668,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"25dc2126-c58c-440d-891a-846eaa05937c\",\r\n \"name\": \"25dc2126-c58c-440d-891a-846eaa05937c\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-03-28T11:50:47.0193331Z\",\r\n \"endTime\": \"2022-03-28T11:50:47.0193331Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"25dc2126-c58c-440d-891a-846eaa05937c\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"23c54720-54e6-43b8-8a61-86274a7676fe\",\r\n \"name\": \"23c54720-54e6-43b8-8a61-86274a7676fe\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-05-16T16:46:47.2245621Z\",\r\n \"endTime\": \"2022-05-16T16:46:47.2245621Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"23c54720-54e6-43b8-8a61-86274a7676fe\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/25dc2126-c58c-440d-891a-846eaa05937c?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEpvYnMvMjVkYzIxMjYtYzU4Yy00NDBkLTg5MWEtODQ2ZWFhMDU5MzdjP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/23c54720-54e6-43b8-8a61-86274a7676fe?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEpvYnMvMjNjNTQ3MjAtNTRlNi00M2I4LThhNjEtODYyNzRhNzY3NmZlP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2eac2e4f-f201-42cb-8481-adf9c00b8cff" + "f3d6c298-b754-4826-af0c-6a27a7cb5753" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -4632,10 +4701,10 @@ "nosniff" ], "x-ms-request-id": [ - "aa650e64-0211-4334-a649-d211439f85fe" + "47929e95-87cf-434a-a19a-e81b62328ce7" ], "x-ms-client-request-id": [ - "2eac2e4f-f201-42cb-8481-adf9c00b8cff" + "f3d6c298-b754-4826-af0c-6a27a7cb5753" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4647,19 +4716,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "253" + "299" ], "x-ms-correlation-request-id": [ - "aa650e64-0211-4334-a649-d211439f85fe" + "47929e95-87cf-434a-a19a-e81b62328ce7" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220328T115151Z:aa650e64-0211-4334-a649-d211439f85fe" + "JIOINDIAWEST:20220516T164756Z:47929e95-87cf-434a-a19a-e81b62328ce7" ], "Date": [ - "Mon, 28 Mar 2022 11:51:50 GMT" + "Mon, 16 May 2022 16:47:55 GMT" ], "Content-Length": [ - "1223" + "1222" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4668,26 +4737,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/25dc2126-c58c-440d-891a-846eaa05937c\",\r\n \"name\": \"25dc2126-c58c-440d-891a-846eaa05937c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"duration\": \"PT1M3.2707606S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Transfer data from vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\",\r\n \"taskExecutionDetails\": \"383 GBs / 383 GBs Transferred\"\r\n },\r\n {\r\n \"taskId\": \"Update the virtual machine\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"Job Type\": \"Replace disks\",\r\n \"Target VM Name\": null,\r\n \"Target Storage Account Name\": \"hiagasa\",\r\n \"Recovery point time \": \"3/28/2022 11:28:08 AM\",\r\n \"Target resource group\": \"hiagarg\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"restoreLocationType\": \"OriginalLocation\"\r\n },\r\n \"progressPercentage\": 5.0,\r\n \"estimatedRemainingDuration\": \"PT10M\"\r\n },\r\n \"entityFriendlyName\": \"hiagavm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-03-28T11:50:47.0193331Z\",\r\n \"activityId\": \"2eac2e4f-f201-42cb-8481-adf9c00b8cff\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/23c54720-54e6-43b8-8a61-86274a7676fe\",\r\n \"name\": \"23c54720-54e6-43b8-8a61-86274a7676fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"duration\": \"PT1M8.5834112S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Transfer data from vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\",\r\n \"taskExecutionDetails\": \"383 GBs / 383 GBs Transferred\"\r\n },\r\n {\r\n \"taskId\": \"Update the virtual machine\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"Job Type\": \"Replace disks\",\r\n \"Target VM Name\": null,\r\n \"Target Storage Account Name\": \"hiagasa\",\r\n \"Recovery point time \": \"5/16/2022 4:23:17 PM\",\r\n \"Target resource group\": \"hiagarg\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"restoreLocationType\": \"OriginalLocation\"\r\n },\r\n \"progressPercentage\": 99.0,\r\n \"estimatedRemainingDuration\": \"PT2M\"\r\n },\r\n \"entityFriendlyName\": \"hiagavm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T16:46:47.2245621Z\",\r\n \"activityId\": \"f3d6c298-b754-4826-af0c-6a27a7cb5753\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/25dc2126-c58c-440d-891a-846eaa05937c?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEpvYnMvMjVkYzIxMjYtYzU4Yy00NDBkLTg5MWEtODQ2ZWFhMDU5MzdjP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/23c54720-54e6-43b8-8a61-86274a7676fe?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEpvYnMvMjNjNTQ3MjAtNTRlNi00M2I4LThhNjEtODYyNzRhNzY3NmZlP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2eac2e4f-f201-42cb-8481-adf9c00b8cff" + "f3d6c298-b754-4826-af0c-6a27a7cb5753" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -4701,10 +4770,10 @@ "nosniff" ], "x-ms-request-id": [ - "06421537-ddd2-40ae-b430-0a8869ce6691" + "93867db0-2c75-4551-824a-206c75d425f2" ], "x-ms-client-request-id": [ - "2eac2e4f-f201-42cb-8481-adf9c00b8cff" + "f3d6c298-b754-4826-af0c-6a27a7cb5753" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4716,19 +4785,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "252" + "298" ], "x-ms-correlation-request-id": [ - "06421537-ddd2-40ae-b430-0a8869ce6691" + "93867db0-2c75-4551-824a-206c75d425f2" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220328T115151Z:06421537-ddd2-40ae-b430-0a8869ce6691" + "JIOINDIAWEST:20220516T164757Z:93867db0-2c75-4551-824a-206c75d425f2" ], "Date": [ - "Mon, 28 Mar 2022 11:51:51 GMT" + "Mon, 16 May 2022 16:47:56 GMT" ], "Content-Length": [ - "1223" + "1222" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4737,26 +4806,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/25dc2126-c58c-440d-891a-846eaa05937c\",\r\n \"name\": \"25dc2126-c58c-440d-891a-846eaa05937c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"duration\": \"PT1M4.0159145S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Transfer data from vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\",\r\n \"taskExecutionDetails\": \"383 GBs / 383 GBs Transferred\"\r\n },\r\n {\r\n \"taskId\": \"Update the virtual machine\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"Job Type\": \"Replace disks\",\r\n \"Target VM Name\": null,\r\n \"Target Storage Account Name\": \"hiagasa\",\r\n \"Recovery point time \": \"3/28/2022 11:28:08 AM\",\r\n \"Target resource group\": \"hiagarg\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"restoreLocationType\": \"OriginalLocation\"\r\n },\r\n \"progressPercentage\": 5.0,\r\n \"estimatedRemainingDuration\": \"PT10M\"\r\n },\r\n \"entityFriendlyName\": \"hiagavm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-03-28T11:50:47.0193331Z\",\r\n \"activityId\": \"2eac2e4f-f201-42cb-8481-adf9c00b8cff\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/23c54720-54e6-43b8-8a61-86274a7676fe\",\r\n \"name\": \"23c54720-54e6-43b8-8a61-86274a7676fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"duration\": \"PT1M9.5521144S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Transfer data from vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\",\r\n \"taskExecutionDetails\": \"383 GBs / 383 GBs Transferred\"\r\n },\r\n {\r\n \"taskId\": \"Update the virtual machine\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"Job Type\": \"Replace disks\",\r\n \"Target VM Name\": null,\r\n \"Target Storage Account Name\": \"hiagasa\",\r\n \"Recovery point time \": \"5/16/2022 4:23:17 PM\",\r\n \"Target resource group\": \"hiagarg\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"restoreLocationType\": \"OriginalLocation\"\r\n },\r\n \"progressPercentage\": 99.0,\r\n \"estimatedRemainingDuration\": \"PT2M\"\r\n },\r\n \"entityFriendlyName\": \"hiagavm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T16:46:47.2245621Z\",\r\n \"activityId\": \"f3d6c298-b754-4826-af0c-6a27a7cb5753\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/25dc2126-c58c-440d-891a-846eaa05937c?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEpvYnMvMjVkYzIxMjYtYzU4Yy00NDBkLTg5MWEtODQ2ZWFhMDU5MzdjP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/23c54720-54e6-43b8-8a61-86274a7676fe?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEpvYnMvMjNjNTQ3MjAtNTRlNi00M2I4LThhNjEtODYyNzRhNzY3NmZlP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2eac2e4f-f201-42cb-8481-adf9c00b8cff" + "f3d6c298-b754-4826-af0c-6a27a7cb5753" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -4770,10 +4839,10 @@ "nosniff" ], "x-ms-request-id": [ - "8991f588-10f8-4550-a325-1bce7ccf8731" + "b7d3c96d-c9e2-4e90-8256-8cbdd6d8a7e3" ], "x-ms-client-request-id": [ - "2eac2e4f-f201-42cb-8481-adf9c00b8cff" + "f3d6c298-b754-4826-af0c-6a27a7cb5753" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4785,19 +4854,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "251" + "297" ], "x-ms-correlation-request-id": [ - "8991f588-10f8-4550-a325-1bce7ccf8731" + "b7d3c96d-c9e2-4e90-8256-8cbdd6d8a7e3" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220328T115222Z:8991f588-10f8-4550-a325-1bce7ccf8731" + "JIOINDIAWEST:20220516T164828Z:b7d3c96d-c9e2-4e90-8256-8cbdd6d8a7e3" ], "Date": [ - "Mon, 28 Mar 2022 11:52:22 GMT" + "Mon, 16 May 2022 16:48:28 GMT" ], "Content-Length": [ - "1224" + "1223" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4806,26 +4875,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/25dc2126-c58c-440d-891a-846eaa05937c\",\r\n \"name\": \"25dc2126-c58c-440d-891a-846eaa05937c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"duration\": \"PT1M34.6955336S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Transfer data from vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\",\r\n \"taskExecutionDetails\": \"383 GBs / 383 GBs Transferred\"\r\n },\r\n {\r\n \"taskId\": \"Update the virtual machine\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"Job Type\": \"Replace disks\",\r\n \"Target VM Name\": null,\r\n \"Target Storage Account Name\": \"hiagasa\",\r\n \"Recovery point time \": \"3/28/2022 11:28:08 AM\",\r\n \"Target resource group\": \"hiagarg\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"restoreLocationType\": \"OriginalLocation\"\r\n },\r\n \"progressPercentage\": 99.0,\r\n \"estimatedRemainingDuration\": \"PT2M\"\r\n },\r\n \"entityFriendlyName\": \"hiagavm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-03-28T11:50:47.0193331Z\",\r\n \"activityId\": \"2eac2e4f-f201-42cb-8481-adf9c00b8cff\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/23c54720-54e6-43b8-8a61-86274a7676fe\",\r\n \"name\": \"23c54720-54e6-43b8-8a61-86274a7676fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"duration\": \"PT1M40.5501733S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Transfer data from vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\",\r\n \"taskExecutionDetails\": \"383 GBs / 383 GBs Transferred\"\r\n },\r\n {\r\n \"taskId\": \"Update the virtual machine\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"Job Type\": \"Replace disks\",\r\n \"Target VM Name\": null,\r\n \"Target Storage Account Name\": \"hiagasa\",\r\n \"Recovery point time \": \"5/16/2022 4:23:17 PM\",\r\n \"Target resource group\": \"hiagarg\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"restoreLocationType\": \"OriginalLocation\"\r\n },\r\n \"progressPercentage\": 99.0,\r\n \"estimatedRemainingDuration\": \"PT2M\"\r\n },\r\n \"entityFriendlyName\": \"hiagavm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T16:46:47.2245621Z\",\r\n \"activityId\": \"f3d6c298-b754-4826-af0c-6a27a7cb5753\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/25dc2126-c58c-440d-891a-846eaa05937c?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEpvYnMvMjVkYzIxMjYtYzU4Yy00NDBkLTg5MWEtODQ2ZWFhMDU5MzdjP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/23c54720-54e6-43b8-8a61-86274a7676fe?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEpvYnMvMjNjNTQ3MjAtNTRlNi00M2I4LThhNjEtODYyNzRhNzY3NmZlP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2eac2e4f-f201-42cb-8481-adf9c00b8cff" + "f3d6c298-b754-4826-af0c-6a27a7cb5753" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -4839,10 +4908,10 @@ "nosniff" ], "x-ms-request-id": [ - "a776dd07-370e-46ab-942f-b0d1729ce3bd" + "bdddbba8-07e0-4726-bb91-a80b329b473d" ], "x-ms-client-request-id": [ - "2eac2e4f-f201-42cb-8481-adf9c00b8cff" + "f3d6c298-b754-4826-af0c-6a27a7cb5753" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4854,16 +4923,16 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "250" + "296" ], "x-ms-correlation-request-id": [ - "a776dd07-370e-46ab-942f-b0d1729ce3bd" + "bdddbba8-07e0-4726-bb91-a80b329b473d" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220328T115253Z:a776dd07-370e-46ab-942f-b0d1729ce3bd" + "JIOINDIAWEST:20220516T164859Z:bdddbba8-07e0-4726-bb91-a80b329b473d" ], "Date": [ - "Mon, 28 Mar 2022 11:52:52 GMT" + "Mon, 16 May 2022 16:48:58 GMT" ], "Content-Length": [ "1223" @@ -4875,26 +4944,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/25dc2126-c58c-440d-891a-846eaa05937c\",\r\n \"name\": \"25dc2126-c58c-440d-891a-846eaa05937c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"duration\": \"PT2M5.3820033S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Transfer data from vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\",\r\n \"taskExecutionDetails\": \"383 GBs / 383 GBs Transferred\"\r\n },\r\n {\r\n \"taskId\": \"Update the virtual machine\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"Job Type\": \"Replace disks\",\r\n \"Target VM Name\": null,\r\n \"Target Storage Account Name\": \"hiagasa\",\r\n \"Recovery point time \": \"3/28/2022 11:28:08 AM\",\r\n \"Target resource group\": \"hiagarg\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"restoreLocationType\": \"OriginalLocation\"\r\n },\r\n \"progressPercentage\": 99.0,\r\n \"estimatedRemainingDuration\": \"PT2M\"\r\n },\r\n \"entityFriendlyName\": \"hiagavm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-03-28T11:50:47.0193331Z\",\r\n \"activityId\": \"2eac2e4f-f201-42cb-8481-adf9c00b8cff\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/23c54720-54e6-43b8-8a61-86274a7676fe\",\r\n \"name\": \"23c54720-54e6-43b8-8a61-86274a7676fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"duration\": \"PT2M11.5924417S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Transfer data from vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\",\r\n \"taskExecutionDetails\": \"383 GBs / 383 GBs Transferred\"\r\n },\r\n {\r\n \"taskId\": \"Update the virtual machine\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"Job Type\": \"Replace disks\",\r\n \"Target VM Name\": null,\r\n \"Target Storage Account Name\": \"hiagasa\",\r\n \"Recovery point time \": \"5/16/2022 4:23:17 PM\",\r\n \"Target resource group\": \"hiagarg\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"restoreLocationType\": \"OriginalLocation\"\r\n },\r\n \"progressPercentage\": 99.0,\r\n \"estimatedRemainingDuration\": \"PT2M\"\r\n },\r\n \"entityFriendlyName\": \"hiagavm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T16:46:47.2245621Z\",\r\n \"activityId\": \"f3d6c298-b754-4826-af0c-6a27a7cb5753\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/25dc2126-c58c-440d-891a-846eaa05937c?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEpvYnMvMjVkYzIxMjYtYzU4Yy00NDBkLTg5MWEtODQ2ZWFhMDU5MzdjP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/23c54720-54e6-43b8-8a61-86274a7676fe?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEpvYnMvMjNjNTQ3MjAtNTRlNi00M2I4LThhNjEtODYyNzRhNzY3NmZlP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2eac2e4f-f201-42cb-8481-adf9c00b8cff" + "f3d6c298-b754-4826-af0c-6a27a7cb5753" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -4908,10 +4977,10 @@ "nosniff" ], "x-ms-request-id": [ - "18dcf96e-303e-445f-b6b1-7e5e73c1605d" + "99e01bc2-9641-4292-ae4f-c980e9946ac9" ], "x-ms-client-request-id": [ - "2eac2e4f-f201-42cb-8481-adf9c00b8cff" + "f3d6c298-b754-4826-af0c-6a27a7cb5753" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4923,19 +4992,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "249" + "295" ], "x-ms-correlation-request-id": [ - "18dcf96e-303e-445f-b6b1-7e5e73c1605d" + "99e01bc2-9641-4292-ae4f-c980e9946ac9" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220328T115323Z:18dcf96e-303e-445f-b6b1-7e5e73c1605d" + "JIOINDIAWEST:20220516T164930Z:99e01bc2-9641-4292-ae4f-c980e9946ac9" ], "Date": [ - "Mon, 28 Mar 2022 11:53:23 GMT" + "Mon, 16 May 2022 16:49:30 GMT" ], "Content-Length": [ - "1224" + "1223" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4944,26 +5013,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/25dc2126-c58c-440d-891a-846eaa05937c\",\r\n \"name\": \"25dc2126-c58c-440d-891a-846eaa05937c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"duration\": \"PT2M36.0499113S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Transfer data from vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\",\r\n \"taskExecutionDetails\": \"383 GBs / 383 GBs Transferred\"\r\n },\r\n {\r\n \"taskId\": \"Update the virtual machine\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"Job Type\": \"Replace disks\",\r\n \"Target VM Name\": null,\r\n \"Target Storage Account Name\": \"hiagasa\",\r\n \"Recovery point time \": \"3/28/2022 11:28:08 AM\",\r\n \"Target resource group\": \"hiagarg\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"restoreLocationType\": \"OriginalLocation\"\r\n },\r\n \"progressPercentage\": 99.0,\r\n \"estimatedRemainingDuration\": \"PT2M\"\r\n },\r\n \"entityFriendlyName\": \"hiagavm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-03-28T11:50:47.0193331Z\",\r\n \"activityId\": \"2eac2e4f-f201-42cb-8481-adf9c00b8cff\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/23c54720-54e6-43b8-8a61-86274a7676fe\",\r\n \"name\": \"23c54720-54e6-43b8-8a61-86274a7676fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"duration\": \"PT2M42.5518693S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Transfer data from vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\",\r\n \"taskExecutionDetails\": \"383 GBs / 383 GBs Transferred\"\r\n },\r\n {\r\n \"taskId\": \"Update the virtual machine\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"Job Type\": \"Replace disks\",\r\n \"Target VM Name\": null,\r\n \"Target Storage Account Name\": \"hiagasa\",\r\n \"Recovery point time \": \"5/16/2022 4:23:17 PM\",\r\n \"Target resource group\": \"hiagarg\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"restoreLocationType\": \"OriginalLocation\"\r\n },\r\n \"progressPercentage\": 99.0,\r\n \"estimatedRemainingDuration\": \"PT2M\"\r\n },\r\n \"entityFriendlyName\": \"hiagavm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T16:46:47.2245621Z\",\r\n \"activityId\": \"f3d6c298-b754-4826-af0c-6a27a7cb5753\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/25dc2126-c58c-440d-891a-846eaa05937c?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEpvYnMvMjVkYzIxMjYtYzU4Yy00NDBkLTg5MWEtODQ2ZWFhMDU5MzdjP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/23c54720-54e6-43b8-8a61-86274a7676fe?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEpvYnMvMjNjNTQ3MjAtNTRlNi00M2I4LThhNjEtODYyNzRhNzY3NmZlP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2eac2e4f-f201-42cb-8481-adf9c00b8cff" + "f3d6c298-b754-4826-af0c-6a27a7cb5753" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -4977,10 +5046,10 @@ "nosniff" ], "x-ms-request-id": [ - "20b460f9-a30b-4ed9-be46-0baa64151c82" + "c0aaf7a6-bf6d-4f0e-8bc4-982db838ab97" ], "x-ms-client-request-id": [ - "2eac2e4f-f201-42cb-8481-adf9c00b8cff" + "f3d6c298-b754-4826-af0c-6a27a7cb5753" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4992,16 +5061,16 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "248" + "294" ], "x-ms-correlation-request-id": [ - "20b460f9-a30b-4ed9-be46-0baa64151c82" + "c0aaf7a6-bf6d-4f0e-8bc4-982db838ab97" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220328T115354Z:20b460f9-a30b-4ed9-be46-0baa64151c82" + "JIOINDIAWEST:20220516T165001Z:c0aaf7a6-bf6d-4f0e-8bc4-982db838ab97" ], "Date": [ - "Mon, 28 Mar 2022 11:53:54 GMT" + "Mon, 16 May 2022 16:50:01 GMT" ], "Content-Length": [ "1223" @@ -5013,26 +5082,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/25dc2126-c58c-440d-891a-846eaa05937c\",\r\n \"name\": \"25dc2126-c58c-440d-891a-846eaa05937c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"duration\": \"PT3M6.8924027S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Transfer data from vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\",\r\n \"taskExecutionDetails\": \"383 GBs / 383 GBs Transferred\"\r\n },\r\n {\r\n \"taskId\": \"Update the virtual machine\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"Job Type\": \"Replace disks\",\r\n \"Target VM Name\": null,\r\n \"Target Storage Account Name\": \"hiagasa\",\r\n \"Recovery point time \": \"3/28/2022 11:28:08 AM\",\r\n \"Target resource group\": \"hiagarg\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"restoreLocationType\": \"OriginalLocation\"\r\n },\r\n \"progressPercentage\": 99.0,\r\n \"estimatedRemainingDuration\": \"PT2M\"\r\n },\r\n \"entityFriendlyName\": \"hiagavm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-03-28T11:50:47.0193331Z\",\r\n \"activityId\": \"2eac2e4f-f201-42cb-8481-adf9c00b8cff\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/23c54720-54e6-43b8-8a61-86274a7676fe\",\r\n \"name\": \"23c54720-54e6-43b8-8a61-86274a7676fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"duration\": \"PT3M13.8338445S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Transfer data from vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\",\r\n \"taskExecutionDetails\": \"383 GBs / 383 GBs Transferred\"\r\n },\r\n {\r\n \"taskId\": \"Update the virtual machine\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"Job Type\": \"Replace disks\",\r\n \"Target VM Name\": null,\r\n \"Target Storage Account Name\": \"hiagasa\",\r\n \"Recovery point time \": \"5/16/2022 4:23:17 PM\",\r\n \"Target resource group\": \"hiagarg\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"restoreLocationType\": \"OriginalLocation\"\r\n },\r\n \"progressPercentage\": 99.0,\r\n \"estimatedRemainingDuration\": \"PT2M\"\r\n },\r\n \"entityFriendlyName\": \"hiagavm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T16:46:47.2245621Z\",\r\n \"activityId\": \"f3d6c298-b754-4826-af0c-6a27a7cb5753\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/25dc2126-c58c-440d-891a-846eaa05937c?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEpvYnMvMjVkYzIxMjYtYzU4Yy00NDBkLTg5MWEtODQ2ZWFhMDU5MzdjP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/23c54720-54e6-43b8-8a61-86274a7676fe?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEpvYnMvMjNjNTQ3MjAtNTRlNi00M2I4LThhNjEtODYyNzRhNzY3NmZlP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2eac2e4f-f201-42cb-8481-adf9c00b8cff" + "f3d6c298-b754-4826-af0c-6a27a7cb5753" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -5046,10 +5115,10 @@ "nosniff" ], "x-ms-request-id": [ - "7b7ff995-e19f-45ad-b54d-60f46954ab11" + "f4de772a-4532-4d99-96a9-6d9f36492b4b" ], "x-ms-client-request-id": [ - "2eac2e4f-f201-42cb-8481-adf9c00b8cff" + "f3d6c298-b754-4826-af0c-6a27a7cb5753" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5061,19 +5130,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "247" + "293" ], "x-ms-correlation-request-id": [ - "7b7ff995-e19f-45ad-b54d-60f46954ab11" + "f4de772a-4532-4d99-96a9-6d9f36492b4b" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220328T115425Z:7b7ff995-e19f-45ad-b54d-60f46954ab11" + "JIOINDIAWEST:20220516T165032Z:f4de772a-4532-4d99-96a9-6d9f36492b4b" ], "Date": [ - "Mon, 28 Mar 2022 11:54:25 GMT" + "Mon, 16 May 2022 16:50:31 GMT" ], "Content-Length": [ - "1224" + "1223" ], "Content-Type": [ "application/json; charset=utf-8" @@ -5082,26 +5151,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/25dc2126-c58c-440d-891a-846eaa05937c\",\r\n \"name\": \"25dc2126-c58c-440d-891a-846eaa05937c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"duration\": \"PT3M37.6063742S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Transfer data from vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\",\r\n \"taskExecutionDetails\": \"383 GBs / 383 GBs Transferred\"\r\n },\r\n {\r\n \"taskId\": \"Update the virtual machine\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"Job Type\": \"Replace disks\",\r\n \"Target VM Name\": null,\r\n \"Target Storage Account Name\": \"hiagasa\",\r\n \"Recovery point time \": \"3/28/2022 11:28:08 AM\",\r\n \"Target resource group\": \"hiagarg\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"restoreLocationType\": \"OriginalLocation\"\r\n },\r\n \"progressPercentage\": 99.0,\r\n \"estimatedRemainingDuration\": \"PT2M\"\r\n },\r\n \"entityFriendlyName\": \"hiagavm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-03-28T11:50:47.0193331Z\",\r\n \"activityId\": \"2eac2e4f-f201-42cb-8481-adf9c00b8cff\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/23c54720-54e6-43b8-8a61-86274a7676fe\",\r\n \"name\": \"23c54720-54e6-43b8-8a61-86274a7676fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"duration\": \"PT3M44.7316748S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Transfer data from vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\",\r\n \"taskExecutionDetails\": \"383 GBs / 383 GBs Transferred\"\r\n },\r\n {\r\n \"taskId\": \"Update the virtual machine\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"Job Type\": \"Replace disks\",\r\n \"Target VM Name\": null,\r\n \"Target Storage Account Name\": \"hiagasa\",\r\n \"Recovery point time \": \"5/16/2022 4:23:17 PM\",\r\n \"Target resource group\": \"hiagarg\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"restoreLocationType\": \"OriginalLocation\"\r\n },\r\n \"progressPercentage\": 99.0,\r\n \"estimatedRemainingDuration\": \"PT2M\"\r\n },\r\n \"entityFriendlyName\": \"hiagavm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T16:46:47.2245621Z\",\r\n \"activityId\": \"f3d6c298-b754-4826-af0c-6a27a7cb5753\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/25dc2126-c58c-440d-891a-846eaa05937c?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEpvYnMvMjVkYzIxMjYtYzU4Yy00NDBkLTg5MWEtODQ2ZWFhMDU5MzdjP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/23c54720-54e6-43b8-8a61-86274a7676fe?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEpvYnMvMjNjNTQ3MjAtNTRlNi00M2I4LThhNjEtODYyNzRhNzY3NmZlP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2eac2e4f-f201-42cb-8481-adf9c00b8cff" + "f3d6c298-b754-4826-af0c-6a27a7cb5753" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -5115,10 +5184,10 @@ "nosniff" ], "x-ms-request-id": [ - "21a70ee6-a67b-40e7-8409-90c9d86b3f51" + "c3f4b63c-73d1-48d4-9f49-c459d3fdf921" ], "x-ms-client-request-id": [ - "2eac2e4f-f201-42cb-8481-adf9c00b8cff" + "f3d6c298-b754-4826-af0c-6a27a7cb5753" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5130,16 +5199,16 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "246" + "292" ], "x-ms-correlation-request-id": [ - "21a70ee6-a67b-40e7-8409-90c9d86b3f51" + "c3f4b63c-73d1-48d4-9f49-c459d3fdf921" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220328T115456Z:21a70ee6-a67b-40e7-8409-90c9d86b3f51" + "JIOINDIAWEST:20220516T165103Z:c3f4b63c-73d1-48d4-9f49-c459d3fdf921" ], "Date": [ - "Mon, 28 Mar 2022 11:54:56 GMT" + "Mon, 16 May 2022 16:51:03 GMT" ], "Content-Length": [ "1223" @@ -5151,26 +5220,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/25dc2126-c58c-440d-891a-846eaa05937c\",\r\n \"name\": \"25dc2126-c58c-440d-891a-846eaa05937c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"duration\": \"PT4M8.3061962S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Transfer data from vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\",\r\n \"taskExecutionDetails\": \"383 GBs / 383 GBs Transferred\"\r\n },\r\n {\r\n \"taskId\": \"Update the virtual machine\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"Job Type\": \"Replace disks\",\r\n \"Target VM Name\": null,\r\n \"Target Storage Account Name\": \"hiagasa\",\r\n \"Recovery point time \": \"3/28/2022 11:28:08 AM\",\r\n \"Target resource group\": \"hiagarg\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"restoreLocationType\": \"OriginalLocation\"\r\n },\r\n \"progressPercentage\": 99.0,\r\n \"estimatedRemainingDuration\": \"PT2M\"\r\n },\r\n \"entityFriendlyName\": \"hiagavm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-03-28T11:50:47.0193331Z\",\r\n \"activityId\": \"2eac2e4f-f201-42cb-8481-adf9c00b8cff\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/23c54720-54e6-43b8-8a61-86274a7676fe\",\r\n \"name\": \"23c54720-54e6-43b8-8a61-86274a7676fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"duration\": \"PT4M15.6671626S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Transfer data from vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\",\r\n \"taskExecutionDetails\": \"383 GBs / 383 GBs Transferred\"\r\n },\r\n {\r\n \"taskId\": \"Update the virtual machine\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"Job Type\": \"Replace disks\",\r\n \"Target VM Name\": null,\r\n \"Target Storage Account Name\": \"hiagasa\",\r\n \"Recovery point time \": \"5/16/2022 4:23:17 PM\",\r\n \"Target resource group\": \"hiagarg\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"restoreLocationType\": \"OriginalLocation\"\r\n },\r\n \"progressPercentage\": 99.0,\r\n \"estimatedRemainingDuration\": \"PT2M\"\r\n },\r\n \"entityFriendlyName\": \"hiagavm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T16:46:47.2245621Z\",\r\n \"activityId\": \"f3d6c298-b754-4826-af0c-6a27a7cb5753\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/25dc2126-c58c-440d-891a-846eaa05937c?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEpvYnMvMjVkYzIxMjYtYzU4Yy00NDBkLTg5MWEtODQ2ZWFhMDU5MzdjP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/23c54720-54e6-43b8-8a61-86274a7676fe?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEpvYnMvMjNjNTQ3MjAtNTRlNi00M2I4LThhNjEtODYyNzRhNzY3NmZlP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2eac2e4f-f201-42cb-8481-adf9c00b8cff" + "f3d6c298-b754-4826-af0c-6a27a7cb5753" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -5184,10 +5253,10 @@ "nosniff" ], "x-ms-request-id": [ - "317e013b-4ff2-455b-b7e8-82f26b2b5d07" + "a26e4f4b-c928-4919-b2eb-52f17833c82c" ], "x-ms-client-request-id": [ - "2eac2e4f-f201-42cb-8481-adf9c00b8cff" + "f3d6c298-b754-4826-af0c-6a27a7cb5753" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5199,19 +5268,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "245" + "291" ], "x-ms-correlation-request-id": [ - "317e013b-4ff2-455b-b7e8-82f26b2b5d07" + "a26e4f4b-c928-4919-b2eb-52f17833c82c" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220328T115526Z:317e013b-4ff2-455b-b7e8-82f26b2b5d07" + "JIOINDIAWEST:20220516T165134Z:a26e4f4b-c928-4919-b2eb-52f17833c82c" ], "Date": [ - "Mon, 28 Mar 2022 11:55:26 GMT" + "Mon, 16 May 2022 16:51:34 GMT" ], "Content-Length": [ - "1224" + "1223" ], "Content-Type": [ "application/json; charset=utf-8" @@ -5220,26 +5289,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/25dc2126-c58c-440d-891a-846eaa05937c\",\r\n \"name\": \"25dc2126-c58c-440d-891a-846eaa05937c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"duration\": \"PT4M38.9904012S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Transfer data from vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\",\r\n \"taskExecutionDetails\": \"383 GBs / 383 GBs Transferred\"\r\n },\r\n {\r\n \"taskId\": \"Update the virtual machine\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"Job Type\": \"Replace disks\",\r\n \"Target VM Name\": null,\r\n \"Target Storage Account Name\": \"hiagasa\",\r\n \"Recovery point time \": \"3/28/2022 11:28:08 AM\",\r\n \"Target resource group\": \"hiagarg\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"restoreLocationType\": \"OriginalLocation\"\r\n },\r\n \"progressPercentage\": 99.0,\r\n \"estimatedRemainingDuration\": \"PT2M\"\r\n },\r\n \"entityFriendlyName\": \"hiagavm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-03-28T11:50:47.0193331Z\",\r\n \"activityId\": \"2eac2e4f-f201-42cb-8481-adf9c00b8cff\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/23c54720-54e6-43b8-8a61-86274a7676fe\",\r\n \"name\": \"23c54720-54e6-43b8-8a61-86274a7676fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"duration\": \"PT4M46.7887548S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Transfer data from vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\",\r\n \"taskExecutionDetails\": \"383 GBs / 383 GBs Transferred\"\r\n },\r\n {\r\n \"taskId\": \"Update the virtual machine\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"Job Type\": \"Replace disks\",\r\n \"Target VM Name\": null,\r\n \"Target Storage Account Name\": \"hiagasa\",\r\n \"Recovery point time \": \"5/16/2022 4:23:17 PM\",\r\n \"Target resource group\": \"hiagarg\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"restoreLocationType\": \"OriginalLocation\"\r\n },\r\n \"progressPercentage\": 99.0,\r\n \"estimatedRemainingDuration\": \"PT2M\"\r\n },\r\n \"entityFriendlyName\": \"hiagavm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T16:46:47.2245621Z\",\r\n \"activityId\": \"f3d6c298-b754-4826-af0c-6a27a7cb5753\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/25dc2126-c58c-440d-891a-846eaa05937c?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEpvYnMvMjVkYzIxMjYtYzU4Yy00NDBkLTg5MWEtODQ2ZWFhMDU5MzdjP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/23c54720-54e6-43b8-8a61-86274a7676fe?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEpvYnMvMjNjNTQ3MjAtNTRlNi00M2I4LThhNjEtODYyNzRhNzY3NmZlP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2eac2e4f-f201-42cb-8481-adf9c00b8cff" + "f3d6c298-b754-4826-af0c-6a27a7cb5753" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -5249,14 +5318,17 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "290" + ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "82d7f3a6-922a-4f90-806b-5a34272551d4" + "a28e1fbd-45da-4597-904f-860a8a122a1a" ], "x-ms-client-request-id": [ - "2eac2e4f-f201-42cb-8481-adf9c00b8cff" + "f3d6c298-b754-4826-af0c-6a27a7cb5753" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5267,17 +5339,14 @@ "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "244" - ], "x-ms-correlation-request-id": [ - "82d7f3a6-922a-4f90-806b-5a34272551d4" + "a28e1fbd-45da-4597-904f-860a8a122a1a" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220328T115557Z:82d7f3a6-922a-4f90-806b-5a34272551d4" + "JIOINDIAWEST:20220516T165205Z:a28e1fbd-45da-4597-904f-860a8a122a1a" ], "Date": [ - "Mon, 28 Mar 2022 11:55:56 GMT" + "Mon, 16 May 2022 16:52:05 GMT" ], "Content-Length": [ "1223" @@ -5289,26 +5358,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/25dc2126-c58c-440d-891a-846eaa05937c\",\r\n \"name\": \"25dc2126-c58c-440d-891a-846eaa05937c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"duration\": \"PT5M9.6417331S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Transfer data from vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\",\r\n \"taskExecutionDetails\": \"383 GBs / 383 GBs Transferred\"\r\n },\r\n {\r\n \"taskId\": \"Update the virtual machine\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"Job Type\": \"Replace disks\",\r\n \"Target VM Name\": null,\r\n \"Target Storage Account Name\": \"hiagasa\",\r\n \"Recovery point time \": \"3/28/2022 11:28:08 AM\",\r\n \"Target resource group\": \"hiagarg\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"restoreLocationType\": \"OriginalLocation\"\r\n },\r\n \"progressPercentage\": 99.0,\r\n \"estimatedRemainingDuration\": \"PT2M\"\r\n },\r\n \"entityFriendlyName\": \"hiagavm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-03-28T11:50:47.0193331Z\",\r\n \"activityId\": \"2eac2e4f-f201-42cb-8481-adf9c00b8cff\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/23c54720-54e6-43b8-8a61-86274a7676fe\",\r\n \"name\": \"23c54720-54e6-43b8-8a61-86274a7676fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"duration\": \"PT5M17.7060703S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Transfer data from vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\",\r\n \"taskExecutionDetails\": \"383 GBs / 383 GBs Transferred\"\r\n },\r\n {\r\n \"taskId\": \"Update the virtual machine\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"Job Type\": \"Replace disks\",\r\n \"Target VM Name\": null,\r\n \"Target Storage Account Name\": \"hiagasa\",\r\n \"Recovery point time \": \"5/16/2022 4:23:17 PM\",\r\n \"Target resource group\": \"hiagarg\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"restoreLocationType\": \"OriginalLocation\"\r\n },\r\n \"progressPercentage\": 99.0,\r\n \"estimatedRemainingDuration\": \"PT2M\"\r\n },\r\n \"entityFriendlyName\": \"hiagavm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T16:46:47.2245621Z\",\r\n \"activityId\": \"f3d6c298-b754-4826-af0c-6a27a7cb5753\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/25dc2126-c58c-440d-891a-846eaa05937c?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEpvYnMvMjVkYzIxMjYtYzU4Yy00NDBkLTg5MWEtODQ2ZWFhMDU5MzdjP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/23c54720-54e6-43b8-8a61-86274a7676fe?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEpvYnMvMjNjNTQ3MjAtNTRlNi00M2I4LThhNjEtODYyNzRhNzY3NmZlP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2eac2e4f-f201-42cb-8481-adf9c00b8cff" + "f3d6c298-b754-4826-af0c-6a27a7cb5753" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -5322,10 +5391,10 @@ "nosniff" ], "x-ms-request-id": [ - "84154f7b-0296-43b3-ade9-eeb84949c584" + "692ca6fa-4fc8-454e-a2bd-1ceb6f72fa49" ], "x-ms-client-request-id": [ - "2eac2e4f-f201-42cb-8481-adf9c00b8cff" + "f3d6c298-b754-4826-af0c-6a27a7cb5753" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5337,19 +5406,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "243" + "289" ], "x-ms-correlation-request-id": [ - "84154f7b-0296-43b3-ade9-eeb84949c584" + "692ca6fa-4fc8-454e-a2bd-1ceb6f72fa49" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220328T115628Z:84154f7b-0296-43b3-ade9-eeb84949c584" + "JIOINDIAWEST:20220516T165237Z:692ca6fa-4fc8-454e-a2bd-1ceb6f72fa49" ], "Date": [ - "Mon, 28 Mar 2022 11:56:27 GMT" + "Mon, 16 May 2022 16:52:36 GMT" ], "Content-Length": [ - "1224" + "1223" ], "Content-Type": [ "application/json; charset=utf-8" @@ -5358,26 +5427,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/25dc2126-c58c-440d-891a-846eaa05937c\",\r\n \"name\": \"25dc2126-c58c-440d-891a-846eaa05937c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"duration\": \"PT5M40.4373891S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Transfer data from vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\",\r\n \"taskExecutionDetails\": \"383 GBs / 383 GBs Transferred\"\r\n },\r\n {\r\n \"taskId\": \"Update the virtual machine\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"Job Type\": \"Replace disks\",\r\n \"Target VM Name\": null,\r\n \"Target Storage Account Name\": \"hiagasa\",\r\n \"Recovery point time \": \"3/28/2022 11:28:08 AM\",\r\n \"Target resource group\": \"hiagarg\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"restoreLocationType\": \"OriginalLocation\"\r\n },\r\n \"progressPercentage\": 99.0,\r\n \"estimatedRemainingDuration\": \"PT2M\"\r\n },\r\n \"entityFriendlyName\": \"hiagavm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-03-28T11:50:47.0193331Z\",\r\n \"activityId\": \"2eac2e4f-f201-42cb-8481-adf9c00b8cff\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/23c54720-54e6-43b8-8a61-86274a7676fe\",\r\n \"name\": \"23c54720-54e6-43b8-8a61-86274a7676fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"duration\": \"PT5M49.5347755S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Transfer data from vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\",\r\n \"taskExecutionDetails\": \"383 GBs / 383 GBs Transferred\"\r\n },\r\n {\r\n \"taskId\": \"Update the virtual machine\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"Job Type\": \"Replace disks\",\r\n \"Target VM Name\": null,\r\n \"Target Storage Account Name\": \"hiagasa\",\r\n \"Recovery point time \": \"5/16/2022 4:23:17 PM\",\r\n \"Target resource group\": \"hiagarg\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"restoreLocationType\": \"OriginalLocation\"\r\n },\r\n \"progressPercentage\": 99.0,\r\n \"estimatedRemainingDuration\": \"PT2M\"\r\n },\r\n \"entityFriendlyName\": \"hiagavm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T16:46:47.2245621Z\",\r\n \"activityId\": \"f3d6c298-b754-4826-af0c-6a27a7cb5753\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/25dc2126-c58c-440d-891a-846eaa05937c?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEpvYnMvMjVkYzIxMjYtYzU4Yy00NDBkLTg5MWEtODQ2ZWFhMDU5MzdjP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/23c54720-54e6-43b8-8a61-86274a7676fe?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEpvYnMvMjNjNTQ3MjAtNTRlNi00M2I4LThhNjEtODYyNzRhNzY3NmZlP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2eac2e4f-f201-42cb-8481-adf9c00b8cff" + "f3d6c298-b754-4826-af0c-6a27a7cb5753" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -5391,10 +5460,10 @@ "nosniff" ], "x-ms-request-id": [ - "5f0ba288-4f06-43ab-b608-adbdda370182" + "41d2d3b1-a974-4b69-b42a-82afdca5e5a7" ], "x-ms-client-request-id": [ - "2eac2e4f-f201-42cb-8481-adf9c00b8cff" + "f3d6c298-b754-4826-af0c-6a27a7cb5753" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5406,19 +5475,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "242" + "288" ], "x-ms-correlation-request-id": [ - "5f0ba288-4f06-43ab-b608-adbdda370182" + "41d2d3b1-a974-4b69-b42a-82afdca5e5a7" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220328T115658Z:5f0ba288-4f06-43ab-b608-adbdda370182" + "JIOINDIAWEST:20220516T165308Z:41d2d3b1-a974-4b69-b42a-82afdca5e5a7" ], "Date": [ - "Mon, 28 Mar 2022 11:56:58 GMT" + "Mon, 16 May 2022 16:53:07 GMT" ], "Content-Length": [ - "1224" + "1223" ], "Content-Type": [ "application/json; charset=utf-8" @@ -5427,26 +5496,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/25dc2126-c58c-440d-891a-846eaa05937c\",\r\n \"name\": \"25dc2126-c58c-440d-891a-846eaa05937c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"duration\": \"PT6M11.1712587S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Transfer data from vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\",\r\n \"taskExecutionDetails\": \"383 GBs / 383 GBs Transferred\"\r\n },\r\n {\r\n \"taskId\": \"Update the virtual machine\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"Job Type\": \"Replace disks\",\r\n \"Target VM Name\": null,\r\n \"Target Storage Account Name\": \"hiagasa\",\r\n \"Recovery point time \": \"3/28/2022 11:28:08 AM\",\r\n \"Target resource group\": \"hiagarg\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"restoreLocationType\": \"OriginalLocation\"\r\n },\r\n \"progressPercentage\": 99.0,\r\n \"estimatedRemainingDuration\": \"PT2M\"\r\n },\r\n \"entityFriendlyName\": \"hiagavm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-03-28T11:50:47.0193331Z\",\r\n \"activityId\": \"2eac2e4f-f201-42cb-8481-adf9c00b8cff\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/23c54720-54e6-43b8-8a61-86274a7676fe\",\r\n \"name\": \"23c54720-54e6-43b8-8a61-86274a7676fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"duration\": \"PT6M20.5116204S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Transfer data from vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\",\r\n \"taskExecutionDetails\": \"383 GBs / 383 GBs Transferred\"\r\n },\r\n {\r\n \"taskId\": \"Update the virtual machine\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"Job Type\": \"Replace disks\",\r\n \"Target VM Name\": null,\r\n \"Target Storage Account Name\": \"hiagasa\",\r\n \"Recovery point time \": \"5/16/2022 4:23:17 PM\",\r\n \"Target resource group\": \"hiagarg\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"restoreLocationType\": \"OriginalLocation\"\r\n },\r\n \"progressPercentage\": 99.0,\r\n \"estimatedRemainingDuration\": \"PT2M\"\r\n },\r\n \"entityFriendlyName\": \"hiagavm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T16:46:47.2245621Z\",\r\n \"activityId\": \"f3d6c298-b754-4826-af0c-6a27a7cb5753\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/25dc2126-c58c-440d-891a-846eaa05937c?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEpvYnMvMjVkYzIxMjYtYzU4Yy00NDBkLTg5MWEtODQ2ZWFhMDU5MzdjP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/23c54720-54e6-43b8-8a61-86274a7676fe?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEpvYnMvMjNjNTQ3MjAtNTRlNi00M2I4LThhNjEtODYyNzRhNzY3NmZlP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2eac2e4f-f201-42cb-8481-adf9c00b8cff" + "f3d6c298-b754-4826-af0c-6a27a7cb5753" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -5460,10 +5529,10 @@ "nosniff" ], "x-ms-request-id": [ - "2a0b6bb1-fb5b-4297-a34f-7bcb58e0fd4e" + "a786ba57-8686-4cec-ac65-82cfdcb040a7" ], "x-ms-client-request-id": [ - "2eac2e4f-f201-42cb-8481-adf9c00b8cff" + "f3d6c298-b754-4826-af0c-6a27a7cb5753" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5475,19 +5544,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "241" + "287" ], "x-ms-correlation-request-id": [ - "2a0b6bb1-fb5b-4297-a34f-7bcb58e0fd4e" + "a786ba57-8686-4cec-ac65-82cfdcb040a7" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220328T115729Z:2a0b6bb1-fb5b-4297-a34f-7bcb58e0fd4e" + "JIOINDIAWEST:20220516T165339Z:a786ba57-8686-4cec-ac65-82cfdcb040a7" ], "Date": [ - "Mon, 28 Mar 2022 11:57:29 GMT" + "Mon, 16 May 2022 16:53:39 GMT" ], "Content-Length": [ - "1224" + "1223" ], "Content-Type": [ "application/json; charset=utf-8" @@ -5496,26 +5565,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/25dc2126-c58c-440d-891a-846eaa05937c\",\r\n \"name\": \"25dc2126-c58c-440d-891a-846eaa05937c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"duration\": \"PT6M41.8772009S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Transfer data from vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\",\r\n \"taskExecutionDetails\": \"383 GBs / 383 GBs Transferred\"\r\n },\r\n {\r\n \"taskId\": \"Update the virtual machine\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"Job Type\": \"Replace disks\",\r\n \"Target VM Name\": null,\r\n \"Target Storage Account Name\": \"hiagasa\",\r\n \"Recovery point time \": \"3/28/2022 11:28:08 AM\",\r\n \"Target resource group\": \"hiagarg\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"restoreLocationType\": \"OriginalLocation\"\r\n },\r\n \"progressPercentage\": 99.0,\r\n \"estimatedRemainingDuration\": \"PT2M\"\r\n },\r\n \"entityFriendlyName\": \"hiagavm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-03-28T11:50:47.0193331Z\",\r\n \"activityId\": \"2eac2e4f-f201-42cb-8481-adf9c00b8cff\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/23c54720-54e6-43b8-8a61-86274a7676fe\",\r\n \"name\": \"23c54720-54e6-43b8-8a61-86274a7676fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"duration\": \"PT6M51.4662825S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Transfer data from vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\",\r\n \"taskExecutionDetails\": \"383 GBs / 383 GBs Transferred\"\r\n },\r\n {\r\n \"taskId\": \"Update the virtual machine\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"Job Type\": \"Replace disks\",\r\n \"Target VM Name\": null,\r\n \"Target Storage Account Name\": \"hiagasa\",\r\n \"Recovery point time \": \"5/16/2022 4:23:17 PM\",\r\n \"Target resource group\": \"hiagarg\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"restoreLocationType\": \"OriginalLocation\"\r\n },\r\n \"progressPercentage\": 99.0,\r\n \"estimatedRemainingDuration\": \"PT2M\"\r\n },\r\n \"entityFriendlyName\": \"hiagavm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T16:46:47.2245621Z\",\r\n \"activityId\": \"f3d6c298-b754-4826-af0c-6a27a7cb5753\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/25dc2126-c58c-440d-891a-846eaa05937c?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEpvYnMvMjVkYzIxMjYtYzU4Yy00NDBkLTg5MWEtODQ2ZWFhMDU5MzdjP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/23c54720-54e6-43b8-8a61-86274a7676fe?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEpvYnMvMjNjNTQ3MjAtNTRlNi00M2I4LThhNjEtODYyNzRhNzY3NmZlP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2eac2e4f-f201-42cb-8481-adf9c00b8cff" + "f3d6c298-b754-4826-af0c-6a27a7cb5753" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -5529,10 +5598,10 @@ "nosniff" ], "x-ms-request-id": [ - "e6fb4f34-b57e-43db-bd8f-b30d35c3f54f" + "38e885a3-04a8-4249-9c25-ed4879b7f190" ], "x-ms-client-request-id": [ - "2eac2e4f-f201-42cb-8481-adf9c00b8cff" + "f3d6c298-b754-4826-af0c-6a27a7cb5753" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5544,19 +5613,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "240" + "286" ], "x-ms-correlation-request-id": [ - "e6fb4f34-b57e-43db-bd8f-b30d35c3f54f" + "38e885a3-04a8-4249-9c25-ed4879b7f190" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220328T115801Z:e6fb4f34-b57e-43db-bd8f-b30d35c3f54f" + "JIOINDIAWEST:20220516T165410Z:38e885a3-04a8-4249-9c25-ed4879b7f190" ], "Date": [ - "Mon, 28 Mar 2022 11:58:00 GMT" + "Mon, 16 May 2022 16:54:09 GMT" ], "Content-Length": [ - "1224" + "1223" ], "Content-Type": [ "application/json; charset=utf-8" @@ -5565,26 +5634,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/25dc2126-c58c-440d-891a-846eaa05937c\",\r\n \"name\": \"25dc2126-c58c-440d-891a-846eaa05937c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"duration\": \"PT7M13.3978463S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Transfer data from vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\",\r\n \"taskExecutionDetails\": \"383 GBs / 383 GBs Transferred\"\r\n },\r\n {\r\n \"taskId\": \"Update the virtual machine\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"Job Type\": \"Replace disks\",\r\n \"Target VM Name\": null,\r\n \"Target Storage Account Name\": \"hiagasa\",\r\n \"Recovery point time \": \"3/28/2022 11:28:08 AM\",\r\n \"Target resource group\": \"hiagarg\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"restoreLocationType\": \"OriginalLocation\"\r\n },\r\n \"progressPercentage\": 99.0,\r\n \"estimatedRemainingDuration\": \"PT2M\"\r\n },\r\n \"entityFriendlyName\": \"hiagavm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-03-28T11:50:47.0193331Z\",\r\n \"activityId\": \"2eac2e4f-f201-42cb-8481-adf9c00b8cff\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/23c54720-54e6-43b8-8a61-86274a7676fe\",\r\n \"name\": \"23c54720-54e6-43b8-8a61-86274a7676fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"duration\": \"PT7M22.4337406S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Transfer data from vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\",\r\n \"taskExecutionDetails\": \"383 GBs / 383 GBs Transferred\"\r\n },\r\n {\r\n \"taskId\": \"Update the virtual machine\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"Job Type\": \"Replace disks\",\r\n \"Target VM Name\": null,\r\n \"Target Storage Account Name\": \"hiagasa\",\r\n \"Recovery point time \": \"5/16/2022 4:23:17 PM\",\r\n \"Target resource group\": \"hiagarg\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"restoreLocationType\": \"OriginalLocation\"\r\n },\r\n \"progressPercentage\": 99.0,\r\n \"estimatedRemainingDuration\": \"PT2M\"\r\n },\r\n \"entityFriendlyName\": \"hiagavm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T16:46:47.2245621Z\",\r\n \"activityId\": \"f3d6c298-b754-4826-af0c-6a27a7cb5753\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/25dc2126-c58c-440d-891a-846eaa05937c?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEpvYnMvMjVkYzIxMjYtYzU4Yy00NDBkLTg5MWEtODQ2ZWFhMDU5MzdjP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/23c54720-54e6-43b8-8a61-86274a7676fe?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEpvYnMvMjNjNTQ3MjAtNTRlNi00M2I4LThhNjEtODYyNzRhNzY3NmZlP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2eac2e4f-f201-42cb-8481-adf9c00b8cff" + "f3d6c298-b754-4826-af0c-6a27a7cb5753" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -5598,10 +5667,10 @@ "nosniff" ], "x-ms-request-id": [ - "ef63cb2f-7be6-49ad-96e3-da4b91ce54be" + "7f54840b-88e6-4cf1-af3c-ac9cd3c7af6e" ], "x-ms-client-request-id": [ - "2eac2e4f-f201-42cb-8481-adf9c00b8cff" + "f3d6c298-b754-4826-af0c-6a27a7cb5753" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5613,19 +5682,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "239" + "285" ], "x-ms-correlation-request-id": [ - "ef63cb2f-7be6-49ad-96e3-da4b91ce54be" + "7f54840b-88e6-4cf1-af3c-ac9cd3c7af6e" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220328T115831Z:ef63cb2f-7be6-49ad-96e3-da4b91ce54be" + "JIOINDIAWEST:20220516T165441Z:7f54840b-88e6-4cf1-af3c-ac9cd3c7af6e" ], "Date": [ - "Mon, 28 Mar 2022 11:58:31 GMT" + "Mon, 16 May 2022 16:54:40 GMT" ], "Content-Length": [ - "1229" + "1226" ], "Content-Type": [ "application/json; charset=utf-8" @@ -5634,26 +5703,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/25dc2126-c58c-440d-891a-846eaa05937c\",\r\n \"name\": \"25dc2126-c58c-440d-891a-846eaa05937c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"duration\": \"PT7M44.1740342S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Transfer data from vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\",\r\n \"taskExecutionDetails\": \"383 GBs / 383 GBs Transferred\"\r\n },\r\n {\r\n \"taskId\": \"Update the virtual machine\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"Job Type\": \"Replace disks\",\r\n \"Target VM Name\": \"hiagavm\",\r\n \"Target Storage Account Name\": \"hiagasa\",\r\n \"Recovery point time \": \"3/28/2022 11:28:08 AM\",\r\n \"Target resource group\": \"hiagarg\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"restoreLocationType\": \"OriginalLocation\"\r\n },\r\n \"progressPercentage\": 99.0,\r\n \"estimatedRemainingDuration\": \"PT2M\"\r\n },\r\n \"entityFriendlyName\": \"hiagavm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-03-28T11:50:47.0193331Z\",\r\n \"activityId\": \"2eac2e4f-f201-42cb-8481-adf9c00b8cff\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/23c54720-54e6-43b8-8a61-86274a7676fe\",\r\n \"name\": \"23c54720-54e6-43b8-8a61-86274a7676fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"duration\": \"PT7M53.51821S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Transfer data from vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\",\r\n \"taskExecutionDetails\": \"383 GBs / 383 GBs Transferred\"\r\n },\r\n {\r\n \"taskId\": \"Update the virtual machine\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"Job Type\": \"Replace disks\",\r\n \"Target VM Name\": \"hiagavm\",\r\n \"Target Storage Account Name\": \"hiagasa\",\r\n \"Recovery point time \": \"5/16/2022 4:23:17 PM\",\r\n \"Target resource group\": \"hiagarg\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"restoreLocationType\": \"OriginalLocation\"\r\n },\r\n \"progressPercentage\": 99.0,\r\n \"estimatedRemainingDuration\": \"PT2M\"\r\n },\r\n \"entityFriendlyName\": \"hiagavm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T16:46:47.2245621Z\",\r\n \"activityId\": \"f3d6c298-b754-4826-af0c-6a27a7cb5753\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/25dc2126-c58c-440d-891a-846eaa05937c?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEpvYnMvMjVkYzIxMjYtYzU4Yy00NDBkLTg5MWEtODQ2ZWFhMDU5MzdjP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/23c54720-54e6-43b8-8a61-86274a7676fe?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEpvYnMvMjNjNTQ3MjAtNTRlNi00M2I4LThhNjEtODYyNzRhNzY3NmZlP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2eac2e4f-f201-42cb-8481-adf9c00b8cff" + "f3d6c298-b754-4826-af0c-6a27a7cb5753" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -5667,10 +5736,10 @@ "nosniff" ], "x-ms-request-id": [ - "9f83f719-e9e2-4e97-adcb-521901766327" + "0f839c73-4a28-4c3d-9331-9f27fda26820" ], "x-ms-client-request-id": [ - "2eac2e4f-f201-42cb-8481-adf9c00b8cff" + "f3d6c298-b754-4826-af0c-6a27a7cb5753" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5682,19 +5751,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "238" + "284" ], "x-ms-correlation-request-id": [ - "9f83f719-e9e2-4e97-adcb-521901766327" + "0f839c73-4a28-4c3d-9331-9f27fda26820" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220328T115902Z:9f83f719-e9e2-4e97-adcb-521901766327" + "JIOINDIAWEST:20220516T165513Z:0f839c73-4a28-4c3d-9331-9f27fda26820" ], "Date": [ - "Mon, 28 Mar 2022 11:59:02 GMT" + "Mon, 16 May 2022 16:55:13 GMT" ], "Content-Length": [ - "1229" + "1228" ], "Content-Type": [ "application/json; charset=utf-8" @@ -5703,26 +5772,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/25dc2126-c58c-440d-891a-846eaa05937c\",\r\n \"name\": \"25dc2126-c58c-440d-891a-846eaa05937c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"duration\": \"PT8M15.0274498S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Transfer data from vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\",\r\n \"taskExecutionDetails\": \"383 GBs / 383 GBs Transferred\"\r\n },\r\n {\r\n \"taskId\": \"Update the virtual machine\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"Job Type\": \"Replace disks\",\r\n \"Target VM Name\": \"hiagavm\",\r\n \"Target Storage Account Name\": \"hiagasa\",\r\n \"Recovery point time \": \"3/28/2022 11:28:08 AM\",\r\n \"Target resource group\": \"hiagarg\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"restoreLocationType\": \"OriginalLocation\"\r\n },\r\n \"progressPercentage\": 99.0,\r\n \"estimatedRemainingDuration\": \"PT2M\"\r\n },\r\n \"entityFriendlyName\": \"hiagavm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-03-28T11:50:47.0193331Z\",\r\n \"activityId\": \"2eac2e4f-f201-42cb-8481-adf9c00b8cff\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/23c54720-54e6-43b8-8a61-86274a7676fe\",\r\n \"name\": \"23c54720-54e6-43b8-8a61-86274a7676fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"duration\": \"PT8M25.8458852S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Transfer data from vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\",\r\n \"taskExecutionDetails\": \"383 GBs / 383 GBs Transferred\"\r\n },\r\n {\r\n \"taskId\": \"Update the virtual machine\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"Job Type\": \"Replace disks\",\r\n \"Target VM Name\": \"hiagavm\",\r\n \"Target Storage Account Name\": \"hiagasa\",\r\n \"Recovery point time \": \"5/16/2022 4:23:17 PM\",\r\n \"Target resource group\": \"hiagarg\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"restoreLocationType\": \"OriginalLocation\"\r\n },\r\n \"progressPercentage\": 99.0,\r\n \"estimatedRemainingDuration\": \"PT2M\"\r\n },\r\n \"entityFriendlyName\": \"hiagavm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T16:46:47.2245621Z\",\r\n \"activityId\": \"f3d6c298-b754-4826-af0c-6a27a7cb5753\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/25dc2126-c58c-440d-891a-846eaa05937c?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEpvYnMvMjVkYzIxMjYtYzU4Yy00NDBkLTg5MWEtODQ2ZWFhMDU5MzdjP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/23c54720-54e6-43b8-8a61-86274a7676fe?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEpvYnMvMjNjNTQ3MjAtNTRlNi00M2I4LThhNjEtODYyNzRhNzY3NmZlP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2eac2e4f-f201-42cb-8481-adf9c00b8cff" + "f3d6c298-b754-4826-af0c-6a27a7cb5753" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -5736,10 +5805,10 @@ "nosniff" ], "x-ms-request-id": [ - "12847a10-189b-4085-8cd0-21aa4a13dba1" + "60ba4fa0-11f4-45d5-bd8a-b8edd57e8342" ], "x-ms-client-request-id": [ - "2eac2e4f-f201-42cb-8481-adf9c00b8cff" + "f3d6c298-b754-4826-af0c-6a27a7cb5753" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5751,19 +5820,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "237" + "283" ], "x-ms-correlation-request-id": [ - "12847a10-189b-4085-8cd0-21aa4a13dba1" + "60ba4fa0-11f4-45d5-bd8a-b8edd57e8342" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220328T115933Z:12847a10-189b-4085-8cd0-21aa4a13dba1" + "JIOINDIAWEST:20220516T165544Z:60ba4fa0-11f4-45d5-bd8a-b8edd57e8342" ], "Date": [ - "Mon, 28 Mar 2022 11:59:33 GMT" + "Mon, 16 May 2022 16:55:43 GMT" ], "Content-Length": [ - "1229" + "1228" ], "Content-Type": [ "application/json; charset=utf-8" @@ -5772,26 +5841,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/25dc2126-c58c-440d-891a-846eaa05937c\",\r\n \"name\": \"25dc2126-c58c-440d-891a-846eaa05937c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"duration\": \"PT8M45.8245094S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Transfer data from vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\",\r\n \"taskExecutionDetails\": \"383 GBs / 383 GBs Transferred\"\r\n },\r\n {\r\n \"taskId\": \"Update the virtual machine\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"Job Type\": \"Replace disks\",\r\n \"Target VM Name\": \"hiagavm\",\r\n \"Target Storage Account Name\": \"hiagasa\",\r\n \"Recovery point time \": \"3/28/2022 11:28:08 AM\",\r\n \"Target resource group\": \"hiagarg\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"restoreLocationType\": \"OriginalLocation\"\r\n },\r\n \"progressPercentage\": 99.0,\r\n \"estimatedRemainingDuration\": \"PT2M\"\r\n },\r\n \"entityFriendlyName\": \"hiagavm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-03-28T11:50:47.0193331Z\",\r\n \"activityId\": \"2eac2e4f-f201-42cb-8481-adf9c00b8cff\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/23c54720-54e6-43b8-8a61-86274a7676fe\",\r\n \"name\": \"23c54720-54e6-43b8-8a61-86274a7676fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"duration\": \"PT8M56.8230313S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Transfer data from vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\",\r\n \"taskExecutionDetails\": \"383 GBs / 383 GBs Transferred\"\r\n },\r\n {\r\n \"taskId\": \"Update the virtual machine\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"Job Type\": \"Replace disks\",\r\n \"Target VM Name\": \"hiagavm\",\r\n \"Target Storage Account Name\": \"hiagasa\",\r\n \"Recovery point time \": \"5/16/2022 4:23:17 PM\",\r\n \"Target resource group\": \"hiagarg\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"restoreLocationType\": \"OriginalLocation\"\r\n },\r\n \"progressPercentage\": 99.0,\r\n \"estimatedRemainingDuration\": \"PT2M\"\r\n },\r\n \"entityFriendlyName\": \"hiagavm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T16:46:47.2245621Z\",\r\n \"activityId\": \"f3d6c298-b754-4826-af0c-6a27a7cb5753\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/25dc2126-c58c-440d-891a-846eaa05937c?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEpvYnMvMjVkYzIxMjYtYzU4Yy00NDBkLTg5MWEtODQ2ZWFhMDU5MzdjP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/23c54720-54e6-43b8-8a61-86274a7676fe?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEpvYnMvMjNjNTQ3MjAtNTRlNi00M2I4LThhNjEtODYyNzRhNzY3NmZlP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2eac2e4f-f201-42cb-8481-adf9c00b8cff" + "f3d6c298-b754-4826-af0c-6a27a7cb5753" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -5805,10 +5874,10 @@ "nosniff" ], "x-ms-request-id": [ - "9f592d8a-06f0-4a8f-93a5-bdd3d5ff3550" + "69f407d9-caaa-4e9b-998f-791ae24da03e" ], "x-ms-client-request-id": [ - "2eac2e4f-f201-42cb-8481-adf9c00b8cff" + "f3d6c298-b754-4826-af0c-6a27a7cb5753" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5820,16 +5889,16 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "236" + "282" ], "x-ms-correlation-request-id": [ - "9f592d8a-06f0-4a8f-93a5-bdd3d5ff3550" + "69f407d9-caaa-4e9b-998f-791ae24da03e" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220328T120004Z:9f592d8a-06f0-4a8f-93a5-bdd3d5ff3550" + "JIOINDIAWEST:20220516T165616Z:69f407d9-caaa-4e9b-998f-791ae24da03e" ], "Date": [ - "Mon, 28 Mar 2022 12:00:03 GMT" + "Mon, 16 May 2022 16:56:15 GMT" ], "Content-Length": [ "1228" @@ -5841,26 +5910,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/25dc2126-c58c-440d-891a-846eaa05937c\",\r\n \"name\": \"25dc2126-c58c-440d-891a-846eaa05937c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"duration\": \"PT9M16.621434S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Transfer data from vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\",\r\n \"taskExecutionDetails\": \"383 GBs / 383 GBs Transferred\"\r\n },\r\n {\r\n \"taskId\": \"Update the virtual machine\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"Job Type\": \"Replace disks\",\r\n \"Target VM Name\": \"hiagavm\",\r\n \"Target Storage Account Name\": \"hiagasa\",\r\n \"Recovery point time \": \"3/28/2022 11:28:08 AM\",\r\n \"Target resource group\": \"hiagarg\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"restoreLocationType\": \"OriginalLocation\"\r\n },\r\n \"progressPercentage\": 99.0,\r\n \"estimatedRemainingDuration\": \"PT2M\"\r\n },\r\n \"entityFriendlyName\": \"hiagavm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-03-28T11:50:47.0193331Z\",\r\n \"activityId\": \"2eac2e4f-f201-42cb-8481-adf9c00b8cff\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/23c54720-54e6-43b8-8a61-86274a7676fe\",\r\n \"name\": \"23c54720-54e6-43b8-8a61-86274a7676fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"duration\": \"PT9M28.1337658S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Transfer data from vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\",\r\n \"taskExecutionDetails\": \"383 GBs / 383 GBs Transferred\"\r\n },\r\n {\r\n \"taskId\": \"Update the virtual machine\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"Job Type\": \"Replace disks\",\r\n \"Target VM Name\": \"hiagavm\",\r\n \"Target Storage Account Name\": \"hiagasa\",\r\n \"Recovery point time \": \"5/16/2022 4:23:17 PM\",\r\n \"Target resource group\": \"hiagarg\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"restoreLocationType\": \"OriginalLocation\"\r\n },\r\n \"progressPercentage\": 99.0,\r\n \"estimatedRemainingDuration\": \"PT2M\"\r\n },\r\n \"entityFriendlyName\": \"hiagavm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T16:46:47.2245621Z\",\r\n \"activityId\": \"f3d6c298-b754-4826-af0c-6a27a7cb5753\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/25dc2126-c58c-440d-891a-846eaa05937c?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEpvYnMvMjVkYzIxMjYtYzU4Yy00NDBkLTg5MWEtODQ2ZWFhMDU5MzdjP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/23c54720-54e6-43b8-8a61-86274a7676fe?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEpvYnMvMjNjNTQ3MjAtNTRlNi00M2I4LThhNjEtODYyNzRhNzY3NmZlP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2eac2e4f-f201-42cb-8481-adf9c00b8cff" + "f3d6c298-b754-4826-af0c-6a27a7cb5753" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -5874,10 +5943,10 @@ "nosniff" ], "x-ms-request-id": [ - "afd4a8e0-d908-46ad-ae3c-043c5fcc1694" + "a02f02f7-7f95-4ed9-8432-6bb6c239c94a" ], "x-ms-client-request-id": [ - "2eac2e4f-f201-42cb-8481-adf9c00b8cff" + "f3d6c298-b754-4826-af0c-6a27a7cb5753" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5889,19 +5958,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "235" + "281" ], "x-ms-correlation-request-id": [ - "afd4a8e0-d908-46ad-ae3c-043c5fcc1694" + "a02f02f7-7f95-4ed9-8432-6bb6c239c94a" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220328T120035Z:afd4a8e0-d908-46ad-ae3c-043c5fcc1694" + "JIOINDIAWEST:20220516T165647Z:a02f02f7-7f95-4ed9-8432-6bb6c239c94a" ], "Date": [ - "Mon, 28 Mar 2022 12:00:35 GMT" + "Mon, 16 May 2022 16:56:46 GMT" ], "Content-Length": [ - "1229" + "1228" ], "Content-Type": [ "application/json; charset=utf-8" @@ -5910,26 +5979,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/25dc2126-c58c-440d-891a-846eaa05937c\",\r\n \"name\": \"25dc2126-c58c-440d-891a-846eaa05937c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"duration\": \"PT9M47.3273418S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Transfer data from vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\",\r\n \"taskExecutionDetails\": \"383 GBs / 383 GBs Transferred\"\r\n },\r\n {\r\n \"taskId\": \"Update the virtual machine\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"Job Type\": \"Replace disks\",\r\n \"Target VM Name\": \"hiagavm\",\r\n \"Target Storage Account Name\": \"hiagasa\",\r\n \"Recovery point time \": \"3/28/2022 11:28:08 AM\",\r\n \"Target resource group\": \"hiagarg\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"restoreLocationType\": \"OriginalLocation\"\r\n },\r\n \"progressPercentage\": 99.0,\r\n \"estimatedRemainingDuration\": \"PT2M\"\r\n },\r\n \"entityFriendlyName\": \"hiagavm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-03-28T11:50:47.0193331Z\",\r\n \"activityId\": \"2eac2e4f-f201-42cb-8481-adf9c00b8cff\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/23c54720-54e6-43b8-8a61-86274a7676fe\",\r\n \"name\": \"23c54720-54e6-43b8-8a61-86274a7676fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"duration\": \"PT9M59.1045727S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Transfer data from vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\",\r\n \"taskExecutionDetails\": \"383 GBs / 383 GBs Transferred\"\r\n },\r\n {\r\n \"taskId\": \"Update the virtual machine\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"Job Type\": \"Replace disks\",\r\n \"Target VM Name\": \"hiagavm\",\r\n \"Target Storage Account Name\": \"hiagasa\",\r\n \"Recovery point time \": \"5/16/2022 4:23:17 PM\",\r\n \"Target resource group\": \"hiagarg\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"restoreLocationType\": \"OriginalLocation\"\r\n },\r\n \"progressPercentage\": 99.0,\r\n \"estimatedRemainingDuration\": \"PT2M\"\r\n },\r\n \"entityFriendlyName\": \"hiagavm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T16:46:47.2245621Z\",\r\n \"activityId\": \"f3d6c298-b754-4826-af0c-6a27a7cb5753\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/25dc2126-c58c-440d-891a-846eaa05937c?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEpvYnMvMjVkYzIxMjYtYzU4Yy00NDBkLTg5MWEtODQ2ZWFhMDU5MzdjP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/23c54720-54e6-43b8-8a61-86274a7676fe?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEpvYnMvMjNjNTQ3MjAtNTRlNi00M2I4LThhNjEtODYyNzRhNzY3NmZlP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2eac2e4f-f201-42cb-8481-adf9c00b8cff" + "f3d6c298-b754-4826-af0c-6a27a7cb5753" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -5939,14 +6008,17 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "280" + ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "f8476154-8b08-4777-9b39-fbbf4324f447" + "d18d33f9-794f-4050-9e61-a2e48ba9e779" ], "x-ms-client-request-id": [ - "2eac2e4f-f201-42cb-8481-adf9c00b8cff" + "f3d6c298-b754-4826-af0c-6a27a7cb5753" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5957,20 +6029,17 @@ "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "234" - ], "x-ms-correlation-request-id": [ - "f8476154-8b08-4777-9b39-fbbf4324f447" + "d18d33f9-794f-4050-9e61-a2e48ba9e779" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220328T120105Z:f8476154-8b08-4777-9b39-fbbf4324f447" + "JIOINDIAWEST:20220516T165717Z:d18d33f9-794f-4050-9e61-a2e48ba9e779" ], "Date": [ - "Mon, 28 Mar 2022 12:01:05 GMT" + "Mon, 16 May 2022 16:57:17 GMT" ], "Content-Length": [ - "1230" + "1229" ], "Content-Type": [ "application/json; charset=utf-8" @@ -5979,26 +6048,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/25dc2126-c58c-440d-891a-846eaa05937c\",\r\n \"name\": \"25dc2126-c58c-440d-891a-846eaa05937c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"duration\": \"PT10M18.0126663S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Transfer data from vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\",\r\n \"taskExecutionDetails\": \"383 GBs / 383 GBs Transferred\"\r\n },\r\n {\r\n \"taskId\": \"Update the virtual machine\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"Job Type\": \"Replace disks\",\r\n \"Target VM Name\": \"hiagavm\",\r\n \"Target Storage Account Name\": \"hiagasa\",\r\n \"Recovery point time \": \"3/28/2022 11:28:08 AM\",\r\n \"Target resource group\": \"hiagarg\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"restoreLocationType\": \"OriginalLocation\"\r\n },\r\n \"progressPercentage\": 99.0,\r\n \"estimatedRemainingDuration\": \"PT2M\"\r\n },\r\n \"entityFriendlyName\": \"hiagavm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-03-28T11:50:47.0193331Z\",\r\n \"activityId\": \"2eac2e4f-f201-42cb-8481-adf9c00b8cff\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/23c54720-54e6-43b8-8a61-86274a7676fe\",\r\n \"name\": \"23c54720-54e6-43b8-8a61-86274a7676fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"duration\": \"PT10M30.0551444S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Transfer data from vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\",\r\n \"taskExecutionDetails\": \"383 GBs / 383 GBs Transferred\"\r\n },\r\n {\r\n \"taskId\": \"Update the virtual machine\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"Job Type\": \"Replace disks\",\r\n \"Target VM Name\": \"hiagavm\",\r\n \"Target Storage Account Name\": \"hiagasa\",\r\n \"Recovery point time \": \"5/16/2022 4:23:17 PM\",\r\n \"Target resource group\": \"hiagarg\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"restoreLocationType\": \"OriginalLocation\"\r\n },\r\n \"progressPercentage\": 99.0,\r\n \"estimatedRemainingDuration\": \"PT2M\"\r\n },\r\n \"entityFriendlyName\": \"hiagavm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T16:46:47.2245621Z\",\r\n \"activityId\": \"f3d6c298-b754-4826-af0c-6a27a7cb5753\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/25dc2126-c58c-440d-891a-846eaa05937c?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEpvYnMvMjVkYzIxMjYtYzU4Yy00NDBkLTg5MWEtODQ2ZWFhMDU5MzdjP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/23c54720-54e6-43b8-8a61-86274a7676fe?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEpvYnMvMjNjNTQ3MjAtNTRlNi00M2I4LThhNjEtODYyNzRhNzY3NmZlP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2eac2e4f-f201-42cb-8481-adf9c00b8cff" + "f3d6c298-b754-4826-af0c-6a27a7cb5753" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -6012,10 +6081,10 @@ "nosniff" ], "x-ms-request-id": [ - "38b729e0-d9a2-491e-90a6-1c0e712e2060" + "11cf586a-2c57-43d0-90c4-59c6bdb16b1e" ], "x-ms-client-request-id": [ - "2eac2e4f-f201-42cb-8481-adf9c00b8cff" + "f3d6c298-b754-4826-af0c-6a27a7cb5753" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6027,19 +6096,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "233" + "279" ], "x-ms-correlation-request-id": [ - "38b729e0-d9a2-491e-90a6-1c0e712e2060" + "11cf586a-2c57-43d0-90c4-59c6bdb16b1e" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220328T120136Z:38b729e0-d9a2-491e-90a6-1c0e712e2060" + "JIOINDIAWEST:20220516T165749Z:11cf586a-2c57-43d0-90c4-59c6bdb16b1e" ], "Date": [ - "Mon, 28 Mar 2022 12:01:35 GMT" + "Mon, 16 May 2022 16:57:49 GMT" ], "Content-Length": [ - "1230" + "1228" ], "Content-Type": [ "application/json; charset=utf-8" @@ -6048,26 +6117,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/25dc2126-c58c-440d-891a-846eaa05937c\",\r\n \"name\": \"25dc2126-c58c-440d-891a-846eaa05937c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"duration\": \"PT10M48.7140279S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Transfer data from vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\",\r\n \"taskExecutionDetails\": \"383 GBs / 383 GBs Transferred\"\r\n },\r\n {\r\n \"taskId\": \"Update the virtual machine\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"Job Type\": \"Replace disks\",\r\n \"Target VM Name\": \"hiagavm\",\r\n \"Target Storage Account Name\": \"hiagasa\",\r\n \"Recovery point time \": \"3/28/2022 11:28:08 AM\",\r\n \"Target resource group\": \"hiagarg\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"restoreLocationType\": \"OriginalLocation\"\r\n },\r\n \"progressPercentage\": 99.0,\r\n \"estimatedRemainingDuration\": \"PT2M\"\r\n },\r\n \"entityFriendlyName\": \"hiagavm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-03-28T11:50:47.0193331Z\",\r\n \"activityId\": \"2eac2e4f-f201-42cb-8481-adf9c00b8cff\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/23c54720-54e6-43b8-8a61-86274a7676fe\",\r\n \"name\": \"23c54720-54e6-43b8-8a61-86274a7676fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"duration\": \"PT11M1.8376398S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Transfer data from vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\",\r\n \"taskExecutionDetails\": \"383 GBs / 383 GBs Transferred\"\r\n },\r\n {\r\n \"taskId\": \"Update the virtual machine\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"Job Type\": \"Replace disks\",\r\n \"Target VM Name\": \"hiagavm\",\r\n \"Target Storage Account Name\": \"hiagasa\",\r\n \"Recovery point time \": \"5/16/2022 4:23:17 PM\",\r\n \"Target resource group\": \"hiagarg\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"restoreLocationType\": \"OriginalLocation\"\r\n },\r\n \"progressPercentage\": 99.0,\r\n \"estimatedRemainingDuration\": \"PT2M\"\r\n },\r\n \"entityFriendlyName\": \"hiagavm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T16:46:47.2245621Z\",\r\n \"activityId\": \"f3d6c298-b754-4826-af0c-6a27a7cb5753\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/25dc2126-c58c-440d-891a-846eaa05937c?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEpvYnMvMjVkYzIxMjYtYzU4Yy00NDBkLTg5MWEtODQ2ZWFhMDU5MzdjP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/23c54720-54e6-43b8-8a61-86274a7676fe?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEpvYnMvMjNjNTQ3MjAtNTRlNi00M2I4LThhNjEtODYyNzRhNzY3NmZlP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2eac2e4f-f201-42cb-8481-adf9c00b8cff" + "f3d6c298-b754-4826-af0c-6a27a7cb5753" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -6081,10 +6150,10 @@ "nosniff" ], "x-ms-request-id": [ - "8b3b337f-9197-4bbf-84f5-f459bfebe20f" + "8c124de6-01eb-4dbc-8c27-d2b68ee52da3" ], "x-ms-client-request-id": [ - "2eac2e4f-f201-42cb-8481-adf9c00b8cff" + "f3d6c298-b754-4826-af0c-6a27a7cb5753" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6096,19 +6165,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "232" + "278" ], "x-ms-correlation-request-id": [ - "8b3b337f-9197-4bbf-84f5-f459bfebe20f" + "8c124de6-01eb-4dbc-8c27-d2b68ee52da3" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220328T120207Z:8b3b337f-9197-4bbf-84f5-f459bfebe20f" + "JIOINDIAWEST:20220516T165820Z:8c124de6-01eb-4dbc-8c27-d2b68ee52da3" ], "Date": [ - "Mon, 28 Mar 2022 12:02:06 GMT" + "Mon, 16 May 2022 16:58:20 GMT" ], "Content-Length": [ - "1230" + "1229" ], "Content-Type": [ "application/json; charset=utf-8" @@ -6117,26 +6186,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/25dc2126-c58c-440d-891a-846eaa05937c\",\r\n \"name\": \"25dc2126-c58c-440d-891a-846eaa05937c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"duration\": \"PT11M19.4755263S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Transfer data from vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\",\r\n \"taskExecutionDetails\": \"383 GBs / 383 GBs Transferred\"\r\n },\r\n {\r\n \"taskId\": \"Update the virtual machine\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"Job Type\": \"Replace disks\",\r\n \"Target VM Name\": \"hiagavm\",\r\n \"Target Storage Account Name\": \"hiagasa\",\r\n \"Recovery point time \": \"3/28/2022 11:28:08 AM\",\r\n \"Target resource group\": \"hiagarg\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"restoreLocationType\": \"OriginalLocation\"\r\n },\r\n \"progressPercentage\": 99.0,\r\n \"estimatedRemainingDuration\": \"PT2M\"\r\n },\r\n \"entityFriendlyName\": \"hiagavm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-03-28T11:50:47.0193331Z\",\r\n \"activityId\": \"2eac2e4f-f201-42cb-8481-adf9c00b8cff\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/23c54720-54e6-43b8-8a61-86274a7676fe\",\r\n \"name\": \"23c54720-54e6-43b8-8a61-86274a7676fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"duration\": \"PT11M32.7875703S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Transfer data from vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\",\r\n \"taskExecutionDetails\": \"383 GBs / 383 GBs Transferred\"\r\n },\r\n {\r\n \"taskId\": \"Update the virtual machine\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"Job Type\": \"Replace disks\",\r\n \"Target VM Name\": \"hiagavm\",\r\n \"Target Storage Account Name\": \"hiagasa\",\r\n \"Recovery point time \": \"5/16/2022 4:23:17 PM\",\r\n \"Target resource group\": \"hiagarg\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"restoreLocationType\": \"OriginalLocation\"\r\n },\r\n \"progressPercentage\": 99.0,\r\n \"estimatedRemainingDuration\": \"PT2M\"\r\n },\r\n \"entityFriendlyName\": \"hiagavm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T16:46:47.2245621Z\",\r\n \"activityId\": \"f3d6c298-b754-4826-af0c-6a27a7cb5753\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/25dc2126-c58c-440d-891a-846eaa05937c?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEpvYnMvMjVkYzIxMjYtYzU4Yy00NDBkLTg5MWEtODQ2ZWFhMDU5MzdjP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/23c54720-54e6-43b8-8a61-86274a7676fe?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEpvYnMvMjNjNTQ3MjAtNTRlNi00M2I4LThhNjEtODYyNzRhNzY3NmZlP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2eac2e4f-f201-42cb-8481-adf9c00b8cff" + "f3d6c298-b754-4826-af0c-6a27a7cb5753" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -6150,10 +6219,10 @@ "nosniff" ], "x-ms-request-id": [ - "62120943-ef5d-407e-8e6c-b87543bc7287" + "3f907c26-9073-40bd-9e80-15f702fb7d53" ], "x-ms-client-request-id": [ - "2eac2e4f-f201-42cb-8481-adf9c00b8cff" + "f3d6c298-b754-4826-af0c-6a27a7cb5753" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6165,19 +6234,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "231" + "277" ], "x-ms-correlation-request-id": [ - "62120943-ef5d-407e-8e6c-b87543bc7287" + "3f907c26-9073-40bd-9e80-15f702fb7d53" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220328T120238Z:62120943-ef5d-407e-8e6c-b87543bc7287" + "JIOINDIAWEST:20220516T165851Z:3f907c26-9073-40bd-9e80-15f702fb7d53" ], "Date": [ - "Mon, 28 Mar 2022 12:02:37 GMT" + "Mon, 16 May 2022 16:58:51 GMT" ], "Content-Length": [ - "1230" + "1228" ], "Content-Type": [ "application/json; charset=utf-8" @@ -6186,26 +6255,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/25dc2126-c58c-440d-891a-846eaa05937c\",\r\n \"name\": \"25dc2126-c58c-440d-891a-846eaa05937c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"duration\": \"PT11M50.2429726S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Transfer data from vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\",\r\n \"taskExecutionDetails\": \"383 GBs / 383 GBs Transferred\"\r\n },\r\n {\r\n \"taskId\": \"Update the virtual machine\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"Job Type\": \"Replace disks\",\r\n \"Target VM Name\": \"hiagavm\",\r\n \"Target Storage Account Name\": \"hiagasa\",\r\n \"Recovery point time \": \"3/28/2022 11:28:08 AM\",\r\n \"Target resource group\": \"hiagarg\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"restoreLocationType\": \"OriginalLocation\"\r\n },\r\n \"progressPercentage\": 99.0,\r\n \"estimatedRemainingDuration\": \"PT2M\"\r\n },\r\n \"entityFriendlyName\": \"hiagavm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-03-28T11:50:47.0193331Z\",\r\n \"activityId\": \"2eac2e4f-f201-42cb-8481-adf9c00b8cff\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/23c54720-54e6-43b8-8a61-86274a7676fe\",\r\n \"name\": \"23c54720-54e6-43b8-8a61-86274a7676fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"duration\": \"PT12M3.7206845S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Transfer data from vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\",\r\n \"taskExecutionDetails\": \"383 GBs / 383 GBs Transferred\"\r\n },\r\n {\r\n \"taskId\": \"Update the virtual machine\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"Job Type\": \"Replace disks\",\r\n \"Target VM Name\": \"hiagavm\",\r\n \"Target Storage Account Name\": \"hiagasa\",\r\n \"Recovery point time \": \"5/16/2022 4:23:17 PM\",\r\n \"Target resource group\": \"hiagarg\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"restoreLocationType\": \"OriginalLocation\"\r\n },\r\n \"progressPercentage\": 99.0,\r\n \"estimatedRemainingDuration\": \"PT2M\"\r\n },\r\n \"entityFriendlyName\": \"hiagavm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T16:46:47.2245621Z\",\r\n \"activityId\": \"f3d6c298-b754-4826-af0c-6a27a7cb5753\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/25dc2126-c58c-440d-891a-846eaa05937c?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEpvYnMvMjVkYzIxMjYtYzU4Yy00NDBkLTg5MWEtODQ2ZWFhMDU5MzdjP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/23c54720-54e6-43b8-8a61-86274a7676fe?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEpvYnMvMjNjNTQ3MjAtNTRlNi00M2I4LThhNjEtODYyNzRhNzY3NmZlP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2eac2e4f-f201-42cb-8481-adf9c00b8cff" + "f3d6c298-b754-4826-af0c-6a27a7cb5753" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -6219,10 +6288,10 @@ "nosniff" ], "x-ms-request-id": [ - "dc9041f3-c150-4207-8782-c5c23ec4f056" + "95d69e0b-a6ce-471d-ac21-937b9f6334a9" ], "x-ms-client-request-id": [ - "2eac2e4f-f201-42cb-8481-adf9c00b8cff" + "f3d6c298-b754-4826-af0c-6a27a7cb5753" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6234,19 +6303,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "230" + "276" ], "x-ms-correlation-request-id": [ - "dc9041f3-c150-4207-8782-c5c23ec4f056" + "95d69e0b-a6ce-471d-ac21-937b9f6334a9" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220328T120308Z:dc9041f3-c150-4207-8782-c5c23ec4f056" + "JIOINDIAWEST:20220516T165922Z:95d69e0b-a6ce-471d-ac21-937b9f6334a9" ], "Date": [ - "Mon, 28 Mar 2022 12:03:08 GMT" + "Mon, 16 May 2022 16:59:22 GMT" ], "Content-Length": [ - "1230" + "1229" ], "Content-Type": [ "application/json; charset=utf-8" @@ -6255,26 +6324,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/25dc2126-c58c-440d-891a-846eaa05937c\",\r\n \"name\": \"25dc2126-c58c-440d-891a-846eaa05937c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"duration\": \"PT12M21.0145697S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Transfer data from vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\",\r\n \"taskExecutionDetails\": \"383 GBs / 383 GBs Transferred\"\r\n },\r\n {\r\n \"taskId\": \"Update the virtual machine\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"Job Type\": \"Replace disks\",\r\n \"Target VM Name\": \"hiagavm\",\r\n \"Target Storage Account Name\": \"hiagasa\",\r\n \"Recovery point time \": \"3/28/2022 11:28:08 AM\",\r\n \"Target resource group\": \"hiagarg\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"restoreLocationType\": \"OriginalLocation\"\r\n },\r\n \"progressPercentage\": 99.0,\r\n \"estimatedRemainingDuration\": \"PT2M\"\r\n },\r\n \"entityFriendlyName\": \"hiagavm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-03-28T11:50:47.0193331Z\",\r\n \"activityId\": \"2eac2e4f-f201-42cb-8481-adf9c00b8cff\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/23c54720-54e6-43b8-8a61-86274a7676fe\",\r\n \"name\": \"23c54720-54e6-43b8-8a61-86274a7676fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"duration\": \"PT12M35.0138867S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Transfer data from vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\",\r\n \"taskExecutionDetails\": \"383 GBs / 383 GBs Transferred\"\r\n },\r\n {\r\n \"taskId\": \"Update the virtual machine\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"Job Type\": \"Replace disks\",\r\n \"Target VM Name\": \"hiagavm\",\r\n \"Target Storage Account Name\": \"hiagasa\",\r\n \"Recovery point time \": \"5/16/2022 4:23:17 PM\",\r\n \"Target resource group\": \"hiagarg\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"restoreLocationType\": \"OriginalLocation\"\r\n },\r\n \"progressPercentage\": 99.0,\r\n \"estimatedRemainingDuration\": \"PT2M\"\r\n },\r\n \"entityFriendlyName\": \"hiagavm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T16:46:47.2245621Z\",\r\n \"activityId\": \"f3d6c298-b754-4826-af0c-6a27a7cb5753\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/25dc2126-c58c-440d-891a-846eaa05937c?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEpvYnMvMjVkYzIxMjYtYzU4Yy00NDBkLTg5MWEtODQ2ZWFhMDU5MzdjP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/23c54720-54e6-43b8-8a61-86274a7676fe?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEpvYnMvMjNjNTQ3MjAtNTRlNi00M2I4LThhNjEtODYyNzRhNzY3NmZlP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2eac2e4f-f201-42cb-8481-adf9c00b8cff" + "f3d6c298-b754-4826-af0c-6a27a7cb5753" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -6288,10 +6357,10 @@ "nosniff" ], "x-ms-request-id": [ - "e32781f3-8d32-400b-a685-34c094e12709" + "e2df1174-8f5b-4823-a44a-75a227c755d3" ], "x-ms-client-request-id": [ - "2eac2e4f-f201-42cb-8481-adf9c00b8cff" + "f3d6c298-b754-4826-af0c-6a27a7cb5753" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6303,19 +6372,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "229" + "275" ], "x-ms-correlation-request-id": [ - "e32781f3-8d32-400b-a685-34c094e12709" + "e2df1174-8f5b-4823-a44a-75a227c755d3" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220328T120339Z:e32781f3-8d32-400b-a685-34c094e12709" + "JIOINDIAWEST:20220516T165953Z:e2df1174-8f5b-4823-a44a-75a227c755d3" ], "Date": [ - "Mon, 28 Mar 2022 12:03:39 GMT" + "Mon, 16 May 2022 16:59:53 GMT" ], "Content-Length": [ - "1230" + "1228" ], "Content-Type": [ "application/json; charset=utf-8" @@ -6324,26 +6393,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/25dc2126-c58c-440d-891a-846eaa05937c\",\r\n \"name\": \"25dc2126-c58c-440d-891a-846eaa05937c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"duration\": \"PT12M51.7700332S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Transfer data from vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\",\r\n \"taskExecutionDetails\": \"383 GBs / 383 GBs Transferred\"\r\n },\r\n {\r\n \"taskId\": \"Update the virtual machine\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"Job Type\": \"Replace disks\",\r\n \"Target VM Name\": \"hiagavm\",\r\n \"Target Storage Account Name\": \"hiagasa\",\r\n \"Recovery point time \": \"3/28/2022 11:28:08 AM\",\r\n \"Target resource group\": \"hiagarg\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"restoreLocationType\": \"OriginalLocation\"\r\n },\r\n \"progressPercentage\": 99.0,\r\n \"estimatedRemainingDuration\": \"PT2M\"\r\n },\r\n \"entityFriendlyName\": \"hiagavm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-03-28T11:50:47.0193331Z\",\r\n \"activityId\": \"2eac2e4f-f201-42cb-8481-adf9c00b8cff\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/23c54720-54e6-43b8-8a61-86274a7676fe\",\r\n \"name\": \"23c54720-54e6-43b8-8a61-86274a7676fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"duration\": \"PT13M5.9700427S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Transfer data from vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\",\r\n \"taskExecutionDetails\": \"383 GBs / 383 GBs Transferred\"\r\n },\r\n {\r\n \"taskId\": \"Update the virtual machine\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"Job Type\": \"Replace disks\",\r\n \"Target VM Name\": \"hiagavm\",\r\n \"Target Storage Account Name\": \"hiagasa\",\r\n \"Recovery point time \": \"5/16/2022 4:23:17 PM\",\r\n \"Target resource group\": \"hiagarg\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"restoreLocationType\": \"OriginalLocation\"\r\n },\r\n \"progressPercentage\": 99.0,\r\n \"estimatedRemainingDuration\": \"PT2M\"\r\n },\r\n \"entityFriendlyName\": \"hiagavm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T16:46:47.2245621Z\",\r\n \"activityId\": \"f3d6c298-b754-4826-af0c-6a27a7cb5753\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/25dc2126-c58c-440d-891a-846eaa05937c?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEpvYnMvMjVkYzIxMjYtYzU4Yy00NDBkLTg5MWEtODQ2ZWFhMDU5MzdjP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/23c54720-54e6-43b8-8a61-86274a7676fe?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEpvYnMvMjNjNTQ3MjAtNTRlNi00M2I4LThhNjEtODYyNzRhNzY3NmZlP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2eac2e4f-f201-42cb-8481-adf9c00b8cff" + "f3d6c298-b754-4826-af0c-6a27a7cb5753" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -6357,10 +6426,10 @@ "nosniff" ], "x-ms-request-id": [ - "3a66b75c-5d6c-45c8-8659-fee72b126937" + "d5c07613-8303-4b3e-9ae0-aafacd9d69cf" ], "x-ms-client-request-id": [ - "2eac2e4f-f201-42cb-8481-adf9c00b8cff" + "f3d6c298-b754-4826-af0c-6a27a7cb5753" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6372,19 +6441,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "228" + "274" ], "x-ms-correlation-request-id": [ - "3a66b75c-5d6c-45c8-8659-fee72b126937" + "d5c07613-8303-4b3e-9ae0-aafacd9d69cf" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220328T120410Z:3a66b75c-5d6c-45c8-8659-fee72b126937" + "JIOINDIAWEST:20220516T170025Z:d5c07613-8303-4b3e-9ae0-aafacd9d69cf" ], "Date": [ - "Mon, 28 Mar 2022 12:04:09 GMT" + "Mon, 16 May 2022 17:00:24 GMT" ], "Content-Length": [ - "1230" + "1229" ], "Content-Type": [ "application/json; charset=utf-8" @@ -6393,26 +6462,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/25dc2126-c58c-440d-891a-846eaa05937c\",\r\n \"name\": \"25dc2126-c58c-440d-891a-846eaa05937c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"duration\": \"PT13M22.4896782S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Transfer data from vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\",\r\n \"taskExecutionDetails\": \"383 GBs / 383 GBs Transferred\"\r\n },\r\n {\r\n \"taskId\": \"Update the virtual machine\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"Job Type\": \"Replace disks\",\r\n \"Target VM Name\": \"hiagavm\",\r\n \"Target Storage Account Name\": \"hiagasa\",\r\n \"Recovery point time \": \"3/28/2022 11:28:08 AM\",\r\n \"Target resource group\": \"hiagarg\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"restoreLocationType\": \"OriginalLocation\"\r\n },\r\n \"progressPercentage\": 99.0,\r\n \"estimatedRemainingDuration\": \"PT2M\"\r\n },\r\n \"entityFriendlyName\": \"hiagavm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-03-28T11:50:47.0193331Z\",\r\n \"activityId\": \"2eac2e4f-f201-42cb-8481-adf9c00b8cff\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/23c54720-54e6-43b8-8a61-86274a7676fe\",\r\n \"name\": \"23c54720-54e6-43b8-8a61-86274a7676fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"duration\": \"PT13M37.0238557S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Transfer data from vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\",\r\n \"taskExecutionDetails\": \"383 GBs / 383 GBs Transferred\"\r\n },\r\n {\r\n \"taskId\": \"Update the virtual machine\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"Job Type\": \"Replace disks\",\r\n \"Target VM Name\": \"hiagavm\",\r\n \"Target Storage Account Name\": \"hiagasa\",\r\n \"Recovery point time \": \"5/16/2022 4:23:17 PM\",\r\n \"Target resource group\": \"hiagarg\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"restoreLocationType\": \"OriginalLocation\"\r\n },\r\n \"progressPercentage\": 99.0,\r\n \"estimatedRemainingDuration\": \"PT2M\"\r\n },\r\n \"entityFriendlyName\": \"hiagavm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T16:46:47.2245621Z\",\r\n \"activityId\": \"f3d6c298-b754-4826-af0c-6a27a7cb5753\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/25dc2126-c58c-440d-891a-846eaa05937c?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEpvYnMvMjVkYzIxMjYtYzU4Yy00NDBkLTg5MWEtODQ2ZWFhMDU5MzdjP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/23c54720-54e6-43b8-8a61-86274a7676fe?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEpvYnMvMjNjNTQ3MjAtNTRlNi00M2I4LThhNjEtODYyNzRhNzY3NmZlP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2eac2e4f-f201-42cb-8481-adf9c00b8cff" + "f3d6c298-b754-4826-af0c-6a27a7cb5753" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -6422,17 +6491,14 @@ "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "227" - ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "ed6d242b-7a53-4549-9817-4feb0eb9f7f6" + "8c92b7ec-b9bf-432a-91bf-4febe77766b9" ], "x-ms-client-request-id": [ - "2eac2e4f-f201-42cb-8481-adf9c00b8cff" + "f3d6c298-b754-4826-af0c-6a27a7cb5753" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6443,17 +6509,20 @@ "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "273" + ], "x-ms-correlation-request-id": [ - "ed6d242b-7a53-4549-9817-4feb0eb9f7f6" + "8c92b7ec-b9bf-432a-91bf-4febe77766b9" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220328T120440Z:ed6d242b-7a53-4549-9817-4feb0eb9f7f6" + "JIOINDIAWEST:20220516T170056Z:8c92b7ec-b9bf-432a-91bf-4febe77766b9" ], "Date": [ - "Mon, 28 Mar 2022 12:04:40 GMT" + "Mon, 16 May 2022 17:00:55 GMT" ], "Content-Length": [ - "1230" + "1227" ], "Content-Type": [ "application/json; charset=utf-8" @@ -6462,26 +6531,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/25dc2126-c58c-440d-891a-846eaa05937c\",\r\n \"name\": \"25dc2126-c58c-440d-891a-846eaa05937c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"duration\": \"PT13M53.1410864S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Transfer data from vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\",\r\n \"taskExecutionDetails\": \"383 GBs / 383 GBs Transferred\"\r\n },\r\n {\r\n \"taskId\": \"Update the virtual machine\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"Job Type\": \"Replace disks\",\r\n \"Target VM Name\": \"hiagavm\",\r\n \"Target Storage Account Name\": \"hiagasa\",\r\n \"Recovery point time \": \"3/28/2022 11:28:08 AM\",\r\n \"Target resource group\": \"hiagarg\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"restoreLocationType\": \"OriginalLocation\"\r\n },\r\n \"progressPercentage\": 99.0,\r\n \"estimatedRemainingDuration\": \"PT2M\"\r\n },\r\n \"entityFriendlyName\": \"hiagavm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-03-28T11:50:47.0193331Z\",\r\n \"activityId\": \"2eac2e4f-f201-42cb-8481-adf9c00b8cff\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/23c54720-54e6-43b8-8a61-86274a7676fe\",\r\n \"name\": \"23c54720-54e6-43b8-8a61-86274a7676fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"duration\": \"PT14M8.392187S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Transfer data from vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\",\r\n \"taskExecutionDetails\": \"383 GBs / 383 GBs Transferred\"\r\n },\r\n {\r\n \"taskId\": \"Update the virtual machine\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"Job Type\": \"Replace disks\",\r\n \"Target VM Name\": \"hiagavm\",\r\n \"Target Storage Account Name\": \"hiagasa\",\r\n \"Recovery point time \": \"5/16/2022 4:23:17 PM\",\r\n \"Target resource group\": \"hiagarg\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"restoreLocationType\": \"OriginalLocation\"\r\n },\r\n \"progressPercentage\": 99.0,\r\n \"estimatedRemainingDuration\": \"PT2M\"\r\n },\r\n \"entityFriendlyName\": \"hiagavm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T16:46:47.2245621Z\",\r\n \"activityId\": \"f3d6c298-b754-4826-af0c-6a27a7cb5753\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/25dc2126-c58c-440d-891a-846eaa05937c?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEpvYnMvMjVkYzIxMjYtYzU4Yy00NDBkLTg5MWEtODQ2ZWFhMDU5MzdjP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/23c54720-54e6-43b8-8a61-86274a7676fe?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEpvYnMvMjNjNTQ3MjAtNTRlNi00M2I4LThhNjEtODYyNzRhNzY3NmZlP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2eac2e4f-f201-42cb-8481-adf9c00b8cff" + "f3d6c298-b754-4826-af0c-6a27a7cb5753" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -6495,10 +6564,10 @@ "nosniff" ], "x-ms-request-id": [ - "3cbb5b2b-caf3-48d1-9dcb-f1cf22534d3d" + "0c482baf-fba5-45b3-a18f-9dd9bf5fcbf6" ], "x-ms-client-request-id": [ - "2eac2e4f-f201-42cb-8481-adf9c00b8cff" + "f3d6c298-b754-4826-af0c-6a27a7cb5753" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6510,16 +6579,16 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "226" + "272" ], "x-ms-correlation-request-id": [ - "3cbb5b2b-caf3-48d1-9dcb-f1cf22534d3d" + "0c482baf-fba5-45b3-a18f-9dd9bf5fcbf6" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220328T120511Z:3cbb5b2b-caf3-48d1-9dcb-f1cf22534d3d" + "JIOINDIAWEST:20220516T170127Z:0c482baf-fba5-45b3-a18f-9dd9bf5fcbf6" ], "Date": [ - "Mon, 28 Mar 2022 12:05:11 GMT" + "Mon, 16 May 2022 17:01:27 GMT" ], "Content-Length": [ "1229" @@ -6531,26 +6600,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/25dc2126-c58c-440d-891a-846eaa05937c\",\r\n \"name\": \"25dc2126-c58c-440d-891a-846eaa05937c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"duration\": \"PT14M23.889807S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Transfer data from vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\",\r\n \"taskExecutionDetails\": \"383 GBs / 383 GBs Transferred\"\r\n },\r\n {\r\n \"taskId\": \"Update the virtual machine\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"Job Type\": \"Replace disks\",\r\n \"Target VM Name\": \"hiagavm\",\r\n \"Target Storage Account Name\": \"hiagasa\",\r\n \"Recovery point time \": \"3/28/2022 11:28:08 AM\",\r\n \"Target resource group\": \"hiagarg\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"restoreLocationType\": \"OriginalLocation\"\r\n },\r\n \"progressPercentage\": 99.0,\r\n \"estimatedRemainingDuration\": \"PT2M\"\r\n },\r\n \"entityFriendlyName\": \"hiagavm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-03-28T11:50:47.0193331Z\",\r\n \"activityId\": \"2eac2e4f-f201-42cb-8481-adf9c00b8cff\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/23c54720-54e6-43b8-8a61-86274a7676fe\",\r\n \"name\": \"23c54720-54e6-43b8-8a61-86274a7676fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"duration\": \"PT14M39.4505032S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Transfer data from vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\",\r\n \"taskExecutionDetails\": \"383 GBs / 383 GBs Transferred\"\r\n },\r\n {\r\n \"taskId\": \"Update the virtual machine\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"Job Type\": \"Replace disks\",\r\n \"Target VM Name\": \"hiagavm\",\r\n \"Target Storage Account Name\": \"hiagasa\",\r\n \"Recovery point time \": \"5/16/2022 4:23:17 PM\",\r\n \"Target resource group\": \"hiagarg\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"restoreLocationType\": \"OriginalLocation\"\r\n },\r\n \"progressPercentage\": 99.0,\r\n \"estimatedRemainingDuration\": \"PT2M\"\r\n },\r\n \"entityFriendlyName\": \"hiagavm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T16:46:47.2245621Z\",\r\n \"activityId\": \"f3d6c298-b754-4826-af0c-6a27a7cb5753\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/25dc2126-c58c-440d-891a-846eaa05937c?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEpvYnMvMjVkYzIxMjYtYzU4Yy00NDBkLTg5MWEtODQ2ZWFhMDU5MzdjP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/23c54720-54e6-43b8-8a61-86274a7676fe?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEpvYnMvMjNjNTQ3MjAtNTRlNi00M2I4LThhNjEtODYyNzRhNzY3NmZlP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2eac2e4f-f201-42cb-8481-adf9c00b8cff" + "f3d6c298-b754-4826-af0c-6a27a7cb5753" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -6564,10 +6633,10 @@ "nosniff" ], "x-ms-request-id": [ - "bc246b6f-d540-45c5-a321-4f51b20d44d9" + "7ede590f-eb41-4ff4-919f-904ab26aa034" ], "x-ms-client-request-id": [ - "2eac2e4f-f201-42cb-8481-adf9c00b8cff" + "f3d6c298-b754-4826-af0c-6a27a7cb5753" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6579,16 +6648,16 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "225" + "271" ], "x-ms-correlation-request-id": [ - "bc246b6f-d540-45c5-a321-4f51b20d44d9" + "7ede590f-eb41-4ff4-919f-904ab26aa034" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220328T120542Z:bc246b6f-d540-45c5-a321-4f51b20d44d9" + "JIOINDIAWEST:20220516T170158Z:7ede590f-eb41-4ff4-919f-904ab26aa034" ], "Date": [ - "Mon, 28 Mar 2022 12:05:41 GMT" + "Mon, 16 May 2022 17:01:57 GMT" ], "Content-Length": [ "1229" @@ -6600,26 +6669,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/25dc2126-c58c-440d-891a-846eaa05937c\",\r\n \"name\": \"25dc2126-c58c-440d-891a-846eaa05937c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"duration\": \"PT14M54.594781S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Transfer data from vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\",\r\n \"taskExecutionDetails\": \"383 GBs / 383 GBs Transferred\"\r\n },\r\n {\r\n \"taskId\": \"Update the virtual machine\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"Job Type\": \"Replace disks\",\r\n \"Target VM Name\": \"hiagavm\",\r\n \"Target Storage Account Name\": \"hiagasa\",\r\n \"Recovery point time \": \"3/28/2022 11:28:08 AM\",\r\n \"Target resource group\": \"hiagarg\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"restoreLocationType\": \"OriginalLocation\"\r\n },\r\n \"progressPercentage\": 99.0,\r\n \"estimatedRemainingDuration\": \"PT2M\"\r\n },\r\n \"entityFriendlyName\": \"hiagavm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-03-28T11:50:47.0193331Z\",\r\n \"activityId\": \"2eac2e4f-f201-42cb-8481-adf9c00b8cff\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/23c54720-54e6-43b8-8a61-86274a7676fe\",\r\n \"name\": \"23c54720-54e6-43b8-8a61-86274a7676fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"duration\": \"PT15M10.4274203S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Transfer data from vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\",\r\n \"taskExecutionDetails\": \"383 GBs / 383 GBs Transferred\"\r\n },\r\n {\r\n \"taskId\": \"Update the virtual machine\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"Job Type\": \"Replace disks\",\r\n \"Target VM Name\": \"hiagavm\",\r\n \"Target Storage Account Name\": \"hiagasa\",\r\n \"Recovery point time \": \"5/16/2022 4:23:17 PM\",\r\n \"Target resource group\": \"hiagarg\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"restoreLocationType\": \"OriginalLocation\"\r\n },\r\n \"progressPercentage\": 99.0,\r\n \"estimatedRemainingDuration\": \"PT2M\"\r\n },\r\n \"entityFriendlyName\": \"hiagavm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T16:46:47.2245621Z\",\r\n \"activityId\": \"f3d6c298-b754-4826-af0c-6a27a7cb5753\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/25dc2126-c58c-440d-891a-846eaa05937c?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEpvYnMvMjVkYzIxMjYtYzU4Yy00NDBkLTg5MWEtODQ2ZWFhMDU5MzdjP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/23c54720-54e6-43b8-8a61-86274a7676fe?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEpvYnMvMjNjNTQ3MjAtNTRlNi00M2I4LThhNjEtODYyNzRhNzY3NmZlP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2eac2e4f-f201-42cb-8481-adf9c00b8cff" + "f3d6c298-b754-4826-af0c-6a27a7cb5753" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -6629,83 +6698,17 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], - "x-ms-request-id": [ - "e858fcc3-600a-4e5d-8e47-017071ccaee1" - ], - "x-ms-client-request-id": [ - "2eac2e4f-f201-42cb-8481-adf9c00b8cff" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "224" - ], - "x-ms-correlation-request-id": [ - "e858fcc3-600a-4e5d-8e47-017071ccaee1" - ], - "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220328T120613Z:e858fcc3-600a-4e5d-8e47-017071ccaee1" - ], - "Date": [ - "Mon, 28 Mar 2022 12:06:12 GMT" - ], - "Content-Length": [ - "1230" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/25dc2126-c58c-440d-891a-846eaa05937c\",\r\n \"name\": \"25dc2126-c58c-440d-891a-846eaa05937c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"duration\": \"PT15M25.2471545S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Transfer data from vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\",\r\n \"taskExecutionDetails\": \"383 GBs / 383 GBs Transferred\"\r\n },\r\n {\r\n \"taskId\": \"Update the virtual machine\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"Job Type\": \"Replace disks\",\r\n \"Target VM Name\": \"hiagavm\",\r\n \"Target Storage Account Name\": \"hiagasa\",\r\n \"Recovery point time \": \"3/28/2022 11:28:08 AM\",\r\n \"Target resource group\": \"hiagarg\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"restoreLocationType\": \"OriginalLocation\"\r\n },\r\n \"progressPercentage\": 99.0,\r\n \"estimatedRemainingDuration\": \"PT2M\"\r\n },\r\n \"entityFriendlyName\": \"hiagavm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-03-28T11:50:47.0193331Z\",\r\n \"activityId\": \"2eac2e4f-f201-42cb-8481-adf9c00b8cff\"\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/25dc2126-c58c-440d-891a-846eaa05937c?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEpvYnMvMjVkYzIxMjYtYzU4Yy00NDBkLTg5MWEtODQ2ZWFhMDU5MzdjP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "2eac2e4f-f201-42cb-8481-adf9c00b8cff" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.700.22.11601", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" + "270" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "580240b8-42f8-4bb2-9950-cd2878c5c6ee" + "8780ffa6-a88c-4a40-a3b9-d0a81864e51c" ], "x-ms-client-request-id": [ - "2eac2e4f-f201-42cb-8481-adf9c00b8cff" + "f3d6c298-b754-4826-af0c-6a27a7cb5753" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6716,20 +6719,17 @@ "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "223" - ], "x-ms-correlation-request-id": [ - "580240b8-42f8-4bb2-9950-cd2878c5c6ee" + "8780ffa6-a88c-4a40-a3b9-d0a81864e51c" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220328T120643Z:580240b8-42f8-4bb2-9950-cd2878c5c6ee" + "JIOINDIAWEST:20220516T170229Z:8780ffa6-a88c-4a40-a3b9-d0a81864e51c" ], "Date": [ - "Mon, 28 Mar 2022 12:06:43 GMT" + "Mon, 16 May 2022 17:02:28 GMT" ], "Content-Length": [ - "1230" + "1229" ], "Content-Type": [ "application/json; charset=utf-8" @@ -6738,26 +6738,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/25dc2126-c58c-440d-891a-846eaa05937c\",\r\n \"name\": \"25dc2126-c58c-440d-891a-846eaa05937c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"duration\": \"PT15M55.9566635S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Transfer data from vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\",\r\n \"taskExecutionDetails\": \"383 GBs / 383 GBs Transferred\"\r\n },\r\n {\r\n \"taskId\": \"Update the virtual machine\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"Job Type\": \"Replace disks\",\r\n \"Target VM Name\": \"hiagavm\",\r\n \"Target Storage Account Name\": \"hiagasa\",\r\n \"Recovery point time \": \"3/28/2022 11:28:08 AM\",\r\n \"Target resource group\": \"hiagarg\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"restoreLocationType\": \"OriginalLocation\"\r\n },\r\n \"progressPercentage\": 99.0,\r\n \"estimatedRemainingDuration\": \"PT2M\"\r\n },\r\n \"entityFriendlyName\": \"hiagavm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-03-28T11:50:47.0193331Z\",\r\n \"activityId\": \"2eac2e4f-f201-42cb-8481-adf9c00b8cff\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/23c54720-54e6-43b8-8a61-86274a7676fe\",\r\n \"name\": \"23c54720-54e6-43b8-8a61-86274a7676fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"duration\": \"PT15M41.4009841S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Transfer data from vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\",\r\n \"taskExecutionDetails\": \"383 GBs / 383 GBs Transferred\"\r\n },\r\n {\r\n \"taskId\": \"Update the virtual machine\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"Job Type\": \"Replace disks\",\r\n \"Target VM Name\": \"hiagavm\",\r\n \"Target Storage Account Name\": \"hiagasa\",\r\n \"Recovery point time \": \"5/16/2022 4:23:17 PM\",\r\n \"Target resource group\": \"hiagarg\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"restoreLocationType\": \"OriginalLocation\"\r\n },\r\n \"progressPercentage\": 99.0,\r\n \"estimatedRemainingDuration\": \"PT2M\"\r\n },\r\n \"entityFriendlyName\": \"hiagavm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T16:46:47.2245621Z\",\r\n \"activityId\": \"f3d6c298-b754-4826-af0c-6a27a7cb5753\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/25dc2126-c58c-440d-891a-846eaa05937c?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEpvYnMvMjVkYzIxMjYtYzU4Yy00NDBkLTg5MWEtODQ2ZWFhMDU5MzdjP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/23c54720-54e6-43b8-8a61-86274a7676fe?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEpvYnMvMjNjNTQ3MjAtNTRlNi00M2I4LThhNjEtODYyNzRhNzY3NmZlP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2eac2e4f-f201-42cb-8481-adf9c00b8cff" + "f3d6c298-b754-4826-af0c-6a27a7cb5753" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -6771,10 +6771,10 @@ "nosniff" ], "x-ms-request-id": [ - "edc8ba93-38fa-4a2e-8713-409c7e2c215d" + "dad635ac-3bf2-4244-8863-9da474062c50" ], "x-ms-client-request-id": [ - "2eac2e4f-f201-42cb-8481-adf9c00b8cff" + "f3d6c298-b754-4826-af0c-6a27a7cb5753" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6786,19 +6786,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "222" + "269" ], "x-ms-correlation-request-id": [ - "edc8ba93-38fa-4a2e-8713-409c7e2c215d" + "dad635ac-3bf2-4244-8863-9da474062c50" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220328T120714Z:edc8ba93-38fa-4a2e-8713-409c7e2c215d" + "JIOINDIAWEST:20220516T170301Z:dad635ac-3bf2-4244-8863-9da474062c50" ], "Date": [ - "Mon, 28 Mar 2022 12:07:14 GMT" + "Mon, 16 May 2022 17:03:00 GMT" ], "Content-Length": [ - "1230" + "1228" ], "Content-Type": [ "application/json; charset=utf-8" @@ -6807,26 +6807,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/25dc2126-c58c-440d-891a-846eaa05937c\",\r\n \"name\": \"25dc2126-c58c-440d-891a-846eaa05937c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"duration\": \"PT16M26.6407729S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Transfer data from vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\",\r\n \"taskExecutionDetails\": \"383 GBs / 383 GBs Transferred\"\r\n },\r\n {\r\n \"taskId\": \"Update the virtual machine\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"Job Type\": \"Replace disks\",\r\n \"Target VM Name\": \"hiagavm\",\r\n \"Target Storage Account Name\": \"hiagasa\",\r\n \"Recovery point time \": \"3/28/2022 11:28:08 AM\",\r\n \"Target resource group\": \"hiagarg\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"restoreLocationType\": \"OriginalLocation\"\r\n },\r\n \"progressPercentage\": 99.0,\r\n \"estimatedRemainingDuration\": \"PT2M\"\r\n },\r\n \"entityFriendlyName\": \"hiagavm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-03-28T11:50:47.0193331Z\",\r\n \"activityId\": \"2eac2e4f-f201-42cb-8481-adf9c00b8cff\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/23c54720-54e6-43b8-8a61-86274a7676fe\",\r\n \"name\": \"23c54720-54e6-43b8-8a61-86274a7676fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"duration\": \"PT16M13.268011S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Transfer data from vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\",\r\n \"taskExecutionDetails\": \"383 GBs / 383 GBs Transferred\"\r\n },\r\n {\r\n \"taskId\": \"Update the virtual machine\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"Job Type\": \"Replace disks\",\r\n \"Target VM Name\": \"hiagavm\",\r\n \"Target Storage Account Name\": \"hiagasa\",\r\n \"Recovery point time \": \"5/16/2022 4:23:17 PM\",\r\n \"Target resource group\": \"hiagarg\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"restoreLocationType\": \"OriginalLocation\"\r\n },\r\n \"progressPercentage\": 99.0,\r\n \"estimatedRemainingDuration\": \"PT2M\"\r\n },\r\n \"entityFriendlyName\": \"hiagavm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T16:46:47.2245621Z\",\r\n \"activityId\": \"f3d6c298-b754-4826-af0c-6a27a7cb5753\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/25dc2126-c58c-440d-891a-846eaa05937c?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEpvYnMvMjVkYzIxMjYtYzU4Yy00NDBkLTg5MWEtODQ2ZWFhMDU5MzdjP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/23c54720-54e6-43b8-8a61-86274a7676fe?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEpvYnMvMjNjNTQ3MjAtNTRlNi00M2I4LThhNjEtODYyNzRhNzY3NmZlP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2eac2e4f-f201-42cb-8481-adf9c00b8cff" + "f3d6c298-b754-4826-af0c-6a27a7cb5753" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -6840,10 +6840,10 @@ "nosniff" ], "x-ms-request-id": [ - "03b73e9e-e8d6-4c03-a720-ed86bb2330e1" + "f7f0a232-bad7-4e40-b712-2eea7300eafa" ], "x-ms-client-request-id": [ - "2eac2e4f-f201-42cb-8481-adf9c00b8cff" + "f3d6c298-b754-4826-af0c-6a27a7cb5753" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6855,19 +6855,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "221" + "268" ], "x-ms-correlation-request-id": [ - "03b73e9e-e8d6-4c03-a720-ed86bb2330e1" + "f7f0a232-bad7-4e40-b712-2eea7300eafa" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220328T120745Z:03b73e9e-e8d6-4c03-a720-ed86bb2330e1" + "JIOINDIAWEST:20220516T170332Z:f7f0a232-bad7-4e40-b712-2eea7300eafa" ], "Date": [ - "Mon, 28 Mar 2022 12:07:44 GMT" + "Mon, 16 May 2022 17:03:31 GMT" ], "Content-Length": [ - "1230" + "1229" ], "Content-Type": [ "application/json; charset=utf-8" @@ -6876,26 +6876,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/25dc2126-c58c-440d-891a-846eaa05937c\",\r\n \"name\": \"25dc2126-c58c-440d-891a-846eaa05937c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"duration\": \"PT16M57.3160727S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Transfer data from vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\",\r\n \"taskExecutionDetails\": \"383 GBs / 383 GBs Transferred\"\r\n },\r\n {\r\n \"taskId\": \"Update the virtual machine\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"Job Type\": \"Replace disks\",\r\n \"Target VM Name\": \"hiagavm\",\r\n \"Target Storage Account Name\": \"hiagasa\",\r\n \"Recovery point time \": \"3/28/2022 11:28:08 AM\",\r\n \"Target resource group\": \"hiagarg\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"restoreLocationType\": \"OriginalLocation\"\r\n },\r\n \"progressPercentage\": 99.0,\r\n \"estimatedRemainingDuration\": \"PT2M\"\r\n },\r\n \"entityFriendlyName\": \"hiagavm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-03-28T11:50:47.0193331Z\",\r\n \"activityId\": \"2eac2e4f-f201-42cb-8481-adf9c00b8cff\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/23c54720-54e6-43b8-8a61-86274a7676fe\",\r\n \"name\": \"23c54720-54e6-43b8-8a61-86274a7676fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"duration\": \"PT16M44.2575405S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Transfer data from vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\",\r\n \"taskExecutionDetails\": \"383 GBs / 383 GBs Transferred\"\r\n },\r\n {\r\n \"taskId\": \"Update the virtual machine\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"Job Type\": \"Replace disks\",\r\n \"Target VM Name\": \"hiagavm\",\r\n \"Target Storage Account Name\": \"hiagasa\",\r\n \"Recovery point time \": \"5/16/2022 4:23:17 PM\",\r\n \"Target resource group\": \"hiagarg\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"restoreLocationType\": \"OriginalLocation\"\r\n },\r\n \"progressPercentage\": 99.0,\r\n \"estimatedRemainingDuration\": \"PT2M\"\r\n },\r\n \"entityFriendlyName\": \"hiagavm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T16:46:47.2245621Z\",\r\n \"activityId\": \"f3d6c298-b754-4826-af0c-6a27a7cb5753\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/25dc2126-c58c-440d-891a-846eaa05937c?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEpvYnMvMjVkYzIxMjYtYzU4Yy00NDBkLTg5MWEtODQ2ZWFhMDU5MzdjP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/23c54720-54e6-43b8-8a61-86274a7676fe?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEpvYnMvMjNjNTQ3MjAtNTRlNi00M2I4LThhNjEtODYyNzRhNzY3NmZlP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2eac2e4f-f201-42cb-8481-adf9c00b8cff" + "f3d6c298-b754-4826-af0c-6a27a7cb5753" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -6909,10 +6909,10 @@ "nosniff" ], "x-ms-request-id": [ - "edb0e67e-35df-483c-91df-01c8e84b9fe6" + "d8ee697e-26a1-46b5-b517-e6eafe73cdb5" ], "x-ms-client-request-id": [ - "2eac2e4f-f201-42cb-8481-adf9c00b8cff" + "f3d6c298-b754-4826-af0c-6a27a7cb5753" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6924,19 +6924,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "220" + "267" ], "x-ms-correlation-request-id": [ - "edb0e67e-35df-483c-91df-01c8e84b9fe6" + "d8ee697e-26a1-46b5-b517-e6eafe73cdb5" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220328T120815Z:edb0e67e-35df-483c-91df-01c8e84b9fe6" + "JIOINDIAWEST:20220516T170403Z:d8ee697e-26a1-46b5-b517-e6eafe73cdb5" ], "Date": [ - "Mon, 28 Mar 2022 12:08:15 GMT" + "Mon, 16 May 2022 17:04:02 GMT" ], "Content-Length": [ - "1230" + "1229" ], "Content-Type": [ "application/json; charset=utf-8" @@ -6945,26 +6945,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/25dc2126-c58c-440d-891a-846eaa05937c\",\r\n \"name\": \"25dc2126-c58c-440d-891a-846eaa05937c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"duration\": \"PT17M27.9683729S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Transfer data from vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\",\r\n \"taskExecutionDetails\": \"383 GBs / 383 GBs Transferred\"\r\n },\r\n {\r\n \"taskId\": \"Update the virtual machine\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"Job Type\": \"Replace disks\",\r\n \"Target VM Name\": \"hiagavm\",\r\n \"Target Storage Account Name\": \"hiagasa\",\r\n \"Recovery point time \": \"3/28/2022 11:28:08 AM\",\r\n \"Target resource group\": \"hiagarg\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"restoreLocationType\": \"OriginalLocation\"\r\n },\r\n \"progressPercentage\": 99.0,\r\n \"estimatedRemainingDuration\": \"PT2M\"\r\n },\r\n \"entityFriendlyName\": \"hiagavm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-03-28T11:50:47.0193331Z\",\r\n \"activityId\": \"2eac2e4f-f201-42cb-8481-adf9c00b8cff\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/23c54720-54e6-43b8-8a61-86274a7676fe\",\r\n \"name\": \"23c54720-54e6-43b8-8a61-86274a7676fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"duration\": \"PT17M15.4734967S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Transfer data from vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\",\r\n \"taskExecutionDetails\": \"383 GBs / 383 GBs Transferred\"\r\n },\r\n {\r\n \"taskId\": \"Update the virtual machine\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"Job Type\": \"Replace disks\",\r\n \"Target VM Name\": \"hiagavm\",\r\n \"Target Storage Account Name\": \"hiagasa\",\r\n \"Recovery point time \": \"5/16/2022 4:23:17 PM\",\r\n \"Target resource group\": \"hiagarg\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"restoreLocationType\": \"OriginalLocation\"\r\n },\r\n \"progressPercentage\": 99.0,\r\n \"estimatedRemainingDuration\": \"PT2M\"\r\n },\r\n \"entityFriendlyName\": \"hiagavm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T16:46:47.2245621Z\",\r\n \"activityId\": \"f3d6c298-b754-4826-af0c-6a27a7cb5753\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/25dc2126-c58c-440d-891a-846eaa05937c?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEpvYnMvMjVkYzIxMjYtYzU4Yy00NDBkLTg5MWEtODQ2ZWFhMDU5MzdjP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/23c54720-54e6-43b8-8a61-86274a7676fe?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEpvYnMvMjNjNTQ3MjAtNTRlNi00M2I4LThhNjEtODYyNzRhNzY3NmZlP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2eac2e4f-f201-42cb-8481-adf9c00b8cff" + "f3d6c298-b754-4826-af0c-6a27a7cb5753" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -6978,10 +6978,10 @@ "nosniff" ], "x-ms-request-id": [ - "507e8daa-f563-489b-aa2d-548bec3c245b" + "0f05a014-419b-44e9-a841-fbb4b113050f" ], "x-ms-client-request-id": [ - "2eac2e4f-f201-42cb-8481-adf9c00b8cff" + "f3d6c298-b754-4826-af0c-6a27a7cb5753" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6993,19 +6993,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "219" + "266" ], "x-ms-correlation-request-id": [ - "507e8daa-f563-489b-aa2d-548bec3c245b" + "0f05a014-419b-44e9-a841-fbb4b113050f" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220328T120846Z:507e8daa-f563-489b-aa2d-548bec3c245b" + "JIOINDIAWEST:20220516T170434Z:0f05a014-419b-44e9-a841-fbb4b113050f" ], "Date": [ - "Mon, 28 Mar 2022 12:08:46 GMT" + "Mon, 16 May 2022 17:04:33 GMT" ], "Content-Length": [ - "1230" + "1229" ], "Content-Type": [ "application/json; charset=utf-8" @@ -7014,26 +7014,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/25dc2126-c58c-440d-891a-846eaa05937c\",\r\n \"name\": \"25dc2126-c58c-440d-891a-846eaa05937c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"duration\": \"PT17M58.6146032S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Transfer data from vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\",\r\n \"taskExecutionDetails\": \"383 GBs / 383 GBs Transferred\"\r\n },\r\n {\r\n \"taskId\": \"Update the virtual machine\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"Job Type\": \"Replace disks\",\r\n \"Target VM Name\": \"hiagavm\",\r\n \"Target Storage Account Name\": \"hiagasa\",\r\n \"Recovery point time \": \"3/28/2022 11:28:08 AM\",\r\n \"Target resource group\": \"hiagarg\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"restoreLocationType\": \"OriginalLocation\"\r\n },\r\n \"progressPercentage\": 99.0,\r\n \"estimatedRemainingDuration\": \"PT2M\"\r\n },\r\n \"entityFriendlyName\": \"hiagavm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-03-28T11:50:47.0193331Z\",\r\n \"activityId\": \"2eac2e4f-f201-42cb-8481-adf9c00b8cff\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/23c54720-54e6-43b8-8a61-86274a7676fe\",\r\n \"name\": \"23c54720-54e6-43b8-8a61-86274a7676fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"duration\": \"PT17M46.4156119S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Transfer data from vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\",\r\n \"taskExecutionDetails\": \"383 GBs / 383 GBs Transferred\"\r\n },\r\n {\r\n \"taskId\": \"Update the virtual machine\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"Job Type\": \"Replace disks\",\r\n \"Target VM Name\": \"hiagavm\",\r\n \"Target Storage Account Name\": \"hiagasa\",\r\n \"Recovery point time \": \"5/16/2022 4:23:17 PM\",\r\n \"Target resource group\": \"hiagarg\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"restoreLocationType\": \"OriginalLocation\"\r\n },\r\n \"progressPercentage\": 99.0,\r\n \"estimatedRemainingDuration\": \"PT2M\"\r\n },\r\n \"entityFriendlyName\": \"hiagavm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T16:46:47.2245621Z\",\r\n \"activityId\": \"f3d6c298-b754-4826-af0c-6a27a7cb5753\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/25dc2126-c58c-440d-891a-846eaa05937c?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEpvYnMvMjVkYzIxMjYtYzU4Yy00NDBkLTg5MWEtODQ2ZWFhMDU5MzdjP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/23c54720-54e6-43b8-8a61-86274a7676fe?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEpvYnMvMjNjNTQ3MjAtNTRlNi00M2I4LThhNjEtODYyNzRhNzY3NmZlP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2eac2e4f-f201-42cb-8481-adf9c00b8cff" + "f3d6c298-b754-4826-af0c-6a27a7cb5753" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -7047,10 +7047,10 @@ "nosniff" ], "x-ms-request-id": [ - "0621d0b7-c350-445f-b94d-9d2351805948" + "1b8ce07e-c079-415c-8bd6-f573f4386791" ], "x-ms-client-request-id": [ - "2eac2e4f-f201-42cb-8481-adf9c00b8cff" + "f3d6c298-b754-4826-af0c-6a27a7cb5753" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -7062,19 +7062,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "218" + "265" ], "x-ms-correlation-request-id": [ - "0621d0b7-c350-445f-b94d-9d2351805948" + "1b8ce07e-c079-415c-8bd6-f573f4386791" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220328T120917Z:0621d0b7-c350-445f-b94d-9d2351805948" + "JIOINDIAWEST:20220516T170505Z:1b8ce07e-c079-415c-8bd6-f573f4386791" ], "Date": [ - "Mon, 28 Mar 2022 12:09:16 GMT" + "Mon, 16 May 2022 17:05:04 GMT" ], "Content-Length": [ - "1230" + "1229" ], "Content-Type": [ "application/json; charset=utf-8" @@ -7083,26 +7083,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/25dc2126-c58c-440d-891a-846eaa05937c\",\r\n \"name\": \"25dc2126-c58c-440d-891a-846eaa05937c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"duration\": \"PT18M29.3130304S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Transfer data from vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\",\r\n \"taskExecutionDetails\": \"383 GBs / 383 GBs Transferred\"\r\n },\r\n {\r\n \"taskId\": \"Update the virtual machine\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"Job Type\": \"Replace disks\",\r\n \"Target VM Name\": \"hiagavm\",\r\n \"Target Storage Account Name\": \"hiagasa\",\r\n \"Recovery point time \": \"3/28/2022 11:28:08 AM\",\r\n \"Target resource group\": \"hiagarg\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"restoreLocationType\": \"OriginalLocation\"\r\n },\r\n \"progressPercentage\": 99.0,\r\n \"estimatedRemainingDuration\": \"PT2M\"\r\n },\r\n \"entityFriendlyName\": \"hiagavm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-03-28T11:50:47.0193331Z\",\r\n \"activityId\": \"2eac2e4f-f201-42cb-8481-adf9c00b8cff\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/23c54720-54e6-43b8-8a61-86274a7676fe\",\r\n \"name\": \"23c54720-54e6-43b8-8a61-86274a7676fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"duration\": \"PT18M17.4452511S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Transfer data from vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\",\r\n \"taskExecutionDetails\": \"383 GBs / 383 GBs Transferred\"\r\n },\r\n {\r\n \"taskId\": \"Update the virtual machine\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"Job Type\": \"Replace disks\",\r\n \"Target VM Name\": \"hiagavm\",\r\n \"Target Storage Account Name\": \"hiagasa\",\r\n \"Recovery point time \": \"5/16/2022 4:23:17 PM\",\r\n \"Target resource group\": \"hiagarg\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"restoreLocationType\": \"OriginalLocation\"\r\n },\r\n \"progressPercentage\": 99.0,\r\n \"estimatedRemainingDuration\": \"PT2M\"\r\n },\r\n \"entityFriendlyName\": \"hiagavm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T16:46:47.2245621Z\",\r\n \"activityId\": \"f3d6c298-b754-4826-af0c-6a27a7cb5753\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/25dc2126-c58c-440d-891a-846eaa05937c?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEpvYnMvMjVkYzIxMjYtYzU4Yy00NDBkLTg5MWEtODQ2ZWFhMDU5MzdjP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/23c54720-54e6-43b8-8a61-86274a7676fe?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEpvYnMvMjNjNTQ3MjAtNTRlNi00M2I4LThhNjEtODYyNzRhNzY3NmZlP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2eac2e4f-f201-42cb-8481-adf9c00b8cff" + "f3d6c298-b754-4826-af0c-6a27a7cb5753" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -7116,10 +7116,10 @@ "nosniff" ], "x-ms-request-id": [ - "bcb41cc0-3997-44f7-8a92-7ea4eb86a976" + "c008fe22-bd44-47c7-a5dd-b9bb45db8348" ], "x-ms-client-request-id": [ - "2eac2e4f-f201-42cb-8481-adf9c00b8cff" + "f3d6c298-b754-4826-af0c-6a27a7cb5753" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -7131,19 +7131,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "217" + "264" ], "x-ms-correlation-request-id": [ - "bcb41cc0-3997-44f7-8a92-7ea4eb86a976" + "c008fe22-bd44-47c7-a5dd-b9bb45db8348" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220328T120947Z:bcb41cc0-3997-44f7-8a92-7ea4eb86a976" + "JIOINDIAWEST:20220516T170536Z:c008fe22-bd44-47c7-a5dd-b9bb45db8348" ], "Date": [ - "Mon, 28 Mar 2022 12:09:47 GMT" + "Mon, 16 May 2022 17:05:36 GMT" ], "Content-Length": [ - "1230" + "1229" ], "Content-Type": [ "application/json; charset=utf-8" @@ -7152,26 +7152,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/25dc2126-c58c-440d-891a-846eaa05937c\",\r\n \"name\": \"25dc2126-c58c-440d-891a-846eaa05937c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"duration\": \"PT18M59.9530286S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Transfer data from vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\",\r\n \"taskExecutionDetails\": \"383 GBs / 383 GBs Transferred\"\r\n },\r\n {\r\n \"taskId\": \"Update the virtual machine\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"Job Type\": \"Replace disks\",\r\n \"Target VM Name\": \"hiagavm\",\r\n \"Target Storage Account Name\": \"hiagasa\",\r\n \"Recovery point time \": \"3/28/2022 11:28:08 AM\",\r\n \"Target resource group\": \"hiagarg\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"restoreLocationType\": \"OriginalLocation\"\r\n },\r\n \"progressPercentage\": 99.0,\r\n \"estimatedRemainingDuration\": \"PT2M\"\r\n },\r\n \"entityFriendlyName\": \"hiagavm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-03-28T11:50:47.0193331Z\",\r\n \"activityId\": \"2eac2e4f-f201-42cb-8481-adf9c00b8cff\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/23c54720-54e6-43b8-8a61-86274a7676fe\",\r\n \"name\": \"23c54720-54e6-43b8-8a61-86274a7676fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"duration\": \"PT18M48.4170203S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Transfer data from vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\",\r\n \"taskExecutionDetails\": \"383 GBs / 383 GBs Transferred\"\r\n },\r\n {\r\n \"taskId\": \"Update the virtual machine\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"Job Type\": \"Replace disks\",\r\n \"Target VM Name\": \"hiagavm\",\r\n \"Target Storage Account Name\": \"hiagasa\",\r\n \"Recovery point time \": \"5/16/2022 4:23:17 PM\",\r\n \"Target resource group\": \"hiagarg\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"restoreLocationType\": \"OriginalLocation\"\r\n },\r\n \"progressPercentage\": 99.0,\r\n \"estimatedRemainingDuration\": \"PT2M\"\r\n },\r\n \"entityFriendlyName\": \"hiagavm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T16:46:47.2245621Z\",\r\n \"activityId\": \"f3d6c298-b754-4826-af0c-6a27a7cb5753\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/25dc2126-c58c-440d-891a-846eaa05937c?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEpvYnMvMjVkYzIxMjYtYzU4Yy00NDBkLTg5MWEtODQ2ZWFhMDU5MzdjP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/23c54720-54e6-43b8-8a61-86274a7676fe?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEpvYnMvMjNjNTQ3MjAtNTRlNi00M2I4LThhNjEtODYyNzRhNzY3NmZlP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2eac2e4f-f201-42cb-8481-adf9c00b8cff" + "f3d6c298-b754-4826-af0c-6a27a7cb5753" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -7185,10 +7185,10 @@ "nosniff" ], "x-ms-request-id": [ - "bbf2b910-66d5-4261-a2e7-cd7145c1be2d" + "f1191aa5-e1b4-41bb-a65b-f753ea83afd7" ], "x-ms-client-request-id": [ - "2eac2e4f-f201-42cb-8481-adf9c00b8cff" + "f3d6c298-b754-4826-af0c-6a27a7cb5753" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -7200,16 +7200,16 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "216" + "263" ], "x-ms-correlation-request-id": [ - "bbf2b910-66d5-4261-a2e7-cd7145c1be2d" + "f1191aa5-e1b4-41bb-a65b-f753ea83afd7" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220328T121018Z:bbf2b910-66d5-4261-a2e7-cd7145c1be2d" + "JIOINDIAWEST:20220516T170607Z:f1191aa5-e1b4-41bb-a65b-f753ea83afd7" ], "Date": [ - "Mon, 28 Mar 2022 12:10:17 GMT" + "Mon, 16 May 2022 17:06:07 GMT" ], "Content-Length": [ "1229" @@ -7221,26 +7221,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/25dc2126-c58c-440d-891a-846eaa05937c\",\r\n \"name\": \"25dc2126-c58c-440d-891a-846eaa05937c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"duration\": \"PT19M30.619282S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Transfer data from vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\",\r\n \"taskExecutionDetails\": \"383 GBs / 383 GBs Transferred\"\r\n },\r\n {\r\n \"taskId\": \"Update the virtual machine\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"Job Type\": \"Replace disks\",\r\n \"Target VM Name\": \"hiagavm\",\r\n \"Target Storage Account Name\": \"hiagasa\",\r\n \"Recovery point time \": \"3/28/2022 11:28:08 AM\",\r\n \"Target resource group\": \"hiagarg\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"restoreLocationType\": \"OriginalLocation\"\r\n },\r\n \"progressPercentage\": 99.0,\r\n \"estimatedRemainingDuration\": \"PT2M\"\r\n },\r\n \"entityFriendlyName\": \"hiagavm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-03-28T11:50:47.0193331Z\",\r\n \"activityId\": \"2eac2e4f-f201-42cb-8481-adf9c00b8cff\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/23c54720-54e6-43b8-8a61-86274a7676fe\",\r\n \"name\": \"23c54720-54e6-43b8-8a61-86274a7676fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"duration\": \"PT19M19.5190894S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Transfer data from vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\",\r\n \"taskExecutionDetails\": \"383 GBs / 383 GBs Transferred\"\r\n },\r\n {\r\n \"taskId\": \"Update the virtual machine\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"Job Type\": \"Replace disks\",\r\n \"Target VM Name\": \"hiagavm\",\r\n \"Target Storage Account Name\": \"hiagasa\",\r\n \"Recovery point time \": \"5/16/2022 4:23:17 PM\",\r\n \"Target resource group\": \"hiagarg\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"restoreLocationType\": \"OriginalLocation\"\r\n },\r\n \"progressPercentage\": 99.0,\r\n \"estimatedRemainingDuration\": \"PT2M\"\r\n },\r\n \"entityFriendlyName\": \"hiagavm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T16:46:47.2245621Z\",\r\n \"activityId\": \"f3d6c298-b754-4826-af0c-6a27a7cb5753\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/25dc2126-c58c-440d-891a-846eaa05937c?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEpvYnMvMjVkYzIxMjYtYzU4Yy00NDBkLTg5MWEtODQ2ZWFhMDU5MzdjP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/23c54720-54e6-43b8-8a61-86274a7676fe?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEpvYnMvMjNjNTQ3MjAtNTRlNi00M2I4LThhNjEtODYyNzRhNzY3NmZlP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2eac2e4f-f201-42cb-8481-adf9c00b8cff" + "f3d6c298-b754-4826-af0c-6a27a7cb5753" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -7254,10 +7254,10 @@ "nosniff" ], "x-ms-request-id": [ - "08bde4c6-32e7-4153-a20a-daea702ba423" + "3977146f-1528-4f3a-99a8-271b077cdf8c" ], "x-ms-client-request-id": [ - "2eac2e4f-f201-42cb-8481-adf9c00b8cff" + "f3d6c298-b754-4826-af0c-6a27a7cb5753" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -7269,19 +7269,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "215" + "262" ], "x-ms-correlation-request-id": [ - "08bde4c6-32e7-4153-a20a-daea702ba423" + "3977146f-1528-4f3a-99a8-271b077cdf8c" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220328T121049Z:08bde4c6-32e7-4153-a20a-daea702ba423" + "JIOINDIAWEST:20220516T170638Z:3977146f-1528-4f3a-99a8-271b077cdf8c" ], "Date": [ - "Mon, 28 Mar 2022 12:10:49 GMT" + "Mon, 16 May 2022 17:06:38 GMT" ], "Content-Length": [ - "1228" + "1229" ], "Content-Type": [ "application/json; charset=utf-8" @@ -7290,26 +7290,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/25dc2126-c58c-440d-891a-846eaa05937c\",\r\n \"name\": \"25dc2126-c58c-440d-891a-846eaa05937c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"duration\": \"PT20M1.292213S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Transfer data from vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\",\r\n \"taskExecutionDetails\": \"383 GBs / 383 GBs Transferred\"\r\n },\r\n {\r\n \"taskId\": \"Update the virtual machine\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"Job Type\": \"Replace disks\",\r\n \"Target VM Name\": \"hiagavm\",\r\n \"Target Storage Account Name\": \"hiagasa\",\r\n \"Recovery point time \": \"3/28/2022 11:28:08 AM\",\r\n \"Target resource group\": \"hiagarg\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"restoreLocationType\": \"OriginalLocation\"\r\n },\r\n \"progressPercentage\": 99.0,\r\n \"estimatedRemainingDuration\": \"PT2M\"\r\n },\r\n \"entityFriendlyName\": \"hiagavm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-03-28T11:50:47.0193331Z\",\r\n \"activityId\": \"2eac2e4f-f201-42cb-8481-adf9c00b8cff\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/23c54720-54e6-43b8-8a61-86274a7676fe\",\r\n \"name\": \"23c54720-54e6-43b8-8a61-86274a7676fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"duration\": \"PT19M50.5015257S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Transfer data from vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\",\r\n \"taskExecutionDetails\": \"383 GBs / 383 GBs Transferred\"\r\n },\r\n {\r\n \"taskId\": \"Update the virtual machine\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"Job Type\": \"Replace disks\",\r\n \"Target VM Name\": \"hiagavm\",\r\n \"Target Storage Account Name\": \"hiagasa\",\r\n \"Recovery point time \": \"5/16/2022 4:23:17 PM\",\r\n \"Target resource group\": \"hiagarg\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"restoreLocationType\": \"OriginalLocation\"\r\n },\r\n \"progressPercentage\": 99.0,\r\n \"estimatedRemainingDuration\": \"PT2M\"\r\n },\r\n \"entityFriendlyName\": \"hiagavm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T16:46:47.2245621Z\",\r\n \"activityId\": \"f3d6c298-b754-4826-af0c-6a27a7cb5753\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/25dc2126-c58c-440d-891a-846eaa05937c?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEpvYnMvMjVkYzIxMjYtYzU4Yy00NDBkLTg5MWEtODQ2ZWFhMDU5MzdjP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/23c54720-54e6-43b8-8a61-86274a7676fe?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEpvYnMvMjNjNTQ3MjAtNTRlNi00M2I4LThhNjEtODYyNzRhNzY3NmZlP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2eac2e4f-f201-42cb-8481-adf9c00b8cff" + "f3d6c298-b754-4826-af0c-6a27a7cb5753" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -7323,10 +7323,10 @@ "nosniff" ], "x-ms-request-id": [ - "f85bc193-ab02-4d05-82d5-04d227114eb5" + "83adc66f-9ea4-4fe3-8c8d-8674712a5ab7" ], "x-ms-client-request-id": [ - "2eac2e4f-f201-42cb-8481-adf9c00b8cff" + "f3d6c298-b754-4826-af0c-6a27a7cb5753" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -7338,19 +7338,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "214" + "261" ], "x-ms-correlation-request-id": [ - "f85bc193-ab02-4d05-82d5-04d227114eb5" + "83adc66f-9ea4-4fe3-8c8d-8674712a5ab7" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220328T121120Z:f85bc193-ab02-4d05-82d5-04d227114eb5" + "JIOINDIAWEST:20220516T170709Z:83adc66f-9ea4-4fe3-8c8d-8674712a5ab7" ], "Date": [ - "Mon, 28 Mar 2022 12:11:20 GMT" + "Mon, 16 May 2022 17:07:08 GMT" ], "Content-Length": [ - "1230" + "1229" ], "Content-Type": [ "application/json; charset=utf-8" @@ -7359,26 +7359,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/25dc2126-c58c-440d-891a-846eaa05937c\",\r\n \"name\": \"25dc2126-c58c-440d-891a-846eaa05937c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"duration\": \"PT20M32.6893793S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Transfer data from vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\",\r\n \"taskExecutionDetails\": \"383 GBs / 383 GBs Transferred\"\r\n },\r\n {\r\n \"taskId\": \"Update the virtual machine\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"Job Type\": \"Replace disks\",\r\n \"Target VM Name\": \"hiagavm\",\r\n \"Target Storage Account Name\": \"hiagasa\",\r\n \"Recovery point time \": \"3/28/2022 11:28:08 AM\",\r\n \"Target resource group\": \"hiagarg\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"restoreLocationType\": \"OriginalLocation\"\r\n },\r\n \"progressPercentage\": 99.0,\r\n \"estimatedRemainingDuration\": \"PT2M\"\r\n },\r\n \"entityFriendlyName\": \"hiagavm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-03-28T11:50:47.0193331Z\",\r\n \"activityId\": \"2eac2e4f-f201-42cb-8481-adf9c00b8cff\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/23c54720-54e6-43b8-8a61-86274a7676fe\",\r\n \"name\": \"23c54720-54e6-43b8-8a61-86274a7676fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"duration\": \"PT20M21.4761758S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Transfer data from vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\",\r\n \"taskExecutionDetails\": \"383 GBs / 383 GBs Transferred\"\r\n },\r\n {\r\n \"taskId\": \"Update the virtual machine\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"Job Type\": \"Replace disks\",\r\n \"Target VM Name\": \"hiagavm\",\r\n \"Target Storage Account Name\": \"hiagasa\",\r\n \"Recovery point time \": \"5/16/2022 4:23:17 PM\",\r\n \"Target resource group\": \"hiagarg\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"restoreLocationType\": \"OriginalLocation\"\r\n },\r\n \"progressPercentage\": 99.0,\r\n \"estimatedRemainingDuration\": \"PT2M\"\r\n },\r\n \"entityFriendlyName\": \"hiagavm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T16:46:47.2245621Z\",\r\n \"activityId\": \"f3d6c298-b754-4826-af0c-6a27a7cb5753\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/25dc2126-c58c-440d-891a-846eaa05937c?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEpvYnMvMjVkYzIxMjYtYzU4Yy00NDBkLTg5MWEtODQ2ZWFhMDU5MzdjP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/23c54720-54e6-43b8-8a61-86274a7676fe?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEpvYnMvMjNjNTQ3MjAtNTRlNi00M2I4LThhNjEtODYyNzRhNzY3NmZlP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2eac2e4f-f201-42cb-8481-adf9c00b8cff" + "f3d6c298-b754-4826-af0c-6a27a7cb5753" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -7392,10 +7392,10 @@ "nosniff" ], "x-ms-request-id": [ - "b17838c2-575b-40ac-8759-cfd74ef7499a" + "d5ad977e-0d12-49ba-9166-b3d2504607a1" ], "x-ms-client-request-id": [ - "2eac2e4f-f201-42cb-8481-adf9c00b8cff" + "f3d6c298-b754-4826-af0c-6a27a7cb5753" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -7407,19 +7407,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "213" + "260" ], "x-ms-correlation-request-id": [ - "b17838c2-575b-40ac-8759-cfd74ef7499a" + "d5ad977e-0d12-49ba-9166-b3d2504607a1" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220328T121151Z:b17838c2-575b-40ac-8759-cfd74ef7499a" + "JIOINDIAWEST:20220516T170740Z:d5ad977e-0d12-49ba-9166-b3d2504607a1" ], "Date": [ - "Mon, 28 Mar 2022 12:11:50 GMT" + "Mon, 16 May 2022 17:07:40 GMT" ], "Content-Length": [ - "1270" + "1269" ], "Content-Type": [ "application/json; charset=utf-8" @@ -7428,7 +7428,7 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/25dc2126-c58c-440d-891a-846eaa05937c\",\r\n \"name\": \"25dc2126-c58c-440d-891a-846eaa05937c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"duration\": \"PT20M41.3617848S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Transfer data from vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\",\r\n \"taskExecutionDetails\": \"383 GBs / 383 GBs Transferred\"\r\n },\r\n {\r\n \"taskId\": \"Update the virtual machine\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"Job Type\": \"Replace disks\",\r\n \"Target VM Name\": \"hiagavm\",\r\n \"Target Storage Account Name\": \"hiagasa\",\r\n \"Recovery point time \": \"3/28/2022 11:28:08 AM\",\r\n \"Target resource group\": \"hiagarg\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"restoreLocationType\": \"OriginalLocation\"\r\n },\r\n \"progressPercentage\": 100.0,\r\n \"estimatedRemainingDuration\": \"PT0S\"\r\n },\r\n \"entityFriendlyName\": \"hiagavm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-03-28T11:50:47.0193331Z\",\r\n \"endTime\": \"2022-03-28T12:11:28.3811179Z\",\r\n \"activityId\": \"2eac2e4f-f201-42cb-8481-adf9c00b8cff\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/23c54720-54e6-43b8-8a61-86274a7676fe\",\r\n \"name\": \"23c54720-54e6-43b8-8a61-86274a7676fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"duration\": \"PT20M40.6325747S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Transfer data from vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\",\r\n \"taskExecutionDetails\": \"383 GBs / 383 GBs Transferred\"\r\n },\r\n {\r\n \"taskId\": \"Update the virtual machine\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"Job Type\": \"Replace disks\",\r\n \"Target VM Name\": \"hiagavm\",\r\n \"Target Storage Account Name\": \"hiagasa\",\r\n \"Recovery point time \": \"5/16/2022 4:23:17 PM\",\r\n \"Target resource group\": \"hiagarg\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"restoreLocationType\": \"OriginalLocation\"\r\n },\r\n \"progressPercentage\": 100.0,\r\n \"estimatedRemainingDuration\": \"PT0S\"\r\n },\r\n \"entityFriendlyName\": \"hiagavm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-05-16T16:46:47.2245621Z\",\r\n \"endTime\": \"2022-05-16T17:07:27.8571368Z\",\r\n \"activityId\": \"f3d6c298-b754-4826-af0c-6a27a7cb5753\"\r\n }\r\n}", "StatusCode": 200 }, { @@ -7438,13 +7438,13 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8d169d5d-e1cf-4c95-ab0c-2d46a4de118f" + "3dedb8da-433f-48ee-af1b-57a6eb241a72" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" @@ -7458,13 +7458,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/providers/Microsoft.Compute/locations/CentralUSEUAP/operations/b4063504-b624-4b59-b9ad-ad64082376a5?p=89a6dd27-400b-4025-b430-00bf7d044bd4&monitor=true&api-version=2021-11-01" + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/providers/Microsoft.Compute/locations/CentralUSEUAP/operations/bc343889-49a6-4252-a2fd-18186dd6b07b?p=89a6dd27-400b-4025-b430-00bf7d044bd4&monitor=true&api-version=2021-11-01" ], "Retry-After": [ "10" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/providers/Microsoft.Compute/locations/CentralUSEUAP/operations/b4063504-b624-4b59-b9ad-ad64082376a5?p=89a6dd27-400b-4025-b430-00bf7d044bd4&api-version=2021-11-01" + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/providers/Microsoft.Compute/locations/CentralUSEUAP/operations/bc343889-49a6-4252-a2fd-18186dd6b07b?p=89a6dd27-400b-4025-b430-00bf7d044bd4&api-version=2021-11-01" ], "Azure-AsyncNotification": [ "Enabled" @@ -7476,7 +7476,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b4063504-b624-4b59-b9ad-ad64082376a5" + "bc343889-49a6-4252-a2fd-18186dd6b07b" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -7486,16 +7486,16 @@ "14999" ], "x-ms-correlation-request-id": [ - "670021f8-a867-49a6-b155-a2a0f005fbbb" + "a22b8531-559d-4ac2-bfa0-3da85597e099" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220328T121156Z:670021f8-a867-49a6-b155-a2a0f005fbbb" + "WESTINDIA:20220516T170744Z:a22b8531-559d-4ac2-bfa0-3da85597e099" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 28 Mar 2022 12:11:55 GMT" + "Mon, 16 May 2022 17:07:43 GMT" ], "Expires": [ "-1" @@ -7508,16 +7508,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/providers/Microsoft.Compute/locations/CentralUSEUAP/operations/b4063504-b624-4b59-b9ad-ad64082376a5?p=89a6dd27-400b-4025-b430-00bf7d044bd4&api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvQ2VudHJhbFVTRVVBUC9vcGVyYXRpb25zL2I0MDYzNTA0LWI2MjQtNGI1OS1iOWFkLWFkNjQwODIzNzZhNT9wPTg5YTZkZDI3LTQwMGItNDAyNS1iNDMwLTAwYmY3ZDA0NGJkNCZhcGktdmVyc2lvbj0yMDIxLTExLTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/providers/Microsoft.Compute/locations/CentralUSEUAP/operations/bc343889-49a6-4252-a2fd-18186dd6b07b?p=89a6dd27-400b-4025-b430-00bf7d044bd4&api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvQ2VudHJhbFVTRVVBUC9vcGVyYXRpb25zL2JjMzQzODg5LTQ5YTYtNDI1Mi1hMmZkLTE4MTg2ZGQ2YjA3Yj9wPTg5YTZkZDI3LTQwMGItNDAyNS1iNDMwLTAwYmY3ZDA0NGJkNCZhcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8d169d5d-e1cf-4c95-ab0c-2d46a4de118f" + "3dedb8da-433f-48ee-af1b-57a6eb241a72" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" @@ -7540,7 +7540,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "4287813f-1f18-45ff-90c8-caf048170ed5" + "99d70b0f-b5e0-4c0b-90f4-87b97d1fd6b2" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -7550,16 +7550,16 @@ "11999" ], "x-ms-correlation-request-id": [ - "96726f30-bf37-4702-9dea-d16de6b80467" + "11461c38-0c03-4d35-9b93-efcd545a3b5b" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220328T121206Z:96726f30-bf37-4702-9dea-d16de6b80467" + "WESTINDIA:20220516T170754Z:11461c38-0c03-4d35-9b93-efcd545a3b5b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 28 Mar 2022 12:12:06 GMT" + "Mon, 16 May 2022 17:07:54 GMT" ], "Content-Length": [ "134" @@ -7571,20 +7571,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-03-28T17:41:56.2283123+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b4063504-b624-4b59-b9ad-ad64082376a5\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2022-05-16T22:37:44.4597272+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"bc343889-49a6-4252-a2fd-18186dd6b07b\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/providers/Microsoft.Compute/locations/CentralUSEUAP/operations/b4063504-b624-4b59-b9ad-ad64082376a5?p=89a6dd27-400b-4025-b430-00bf7d044bd4&api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvQ2VudHJhbFVTRVVBUC9vcGVyYXRpb25zL2I0MDYzNTA0LWI2MjQtNGI1OS1iOWFkLWFkNjQwODIzNzZhNT9wPTg5YTZkZDI3LTQwMGItNDAyNS1iNDMwLTAwYmY3ZDA0NGJkNCZhcGktdmVyc2lvbj0yMDIxLTExLTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/providers/Microsoft.Compute/locations/CentralUSEUAP/operations/bc343889-49a6-4252-a2fd-18186dd6b07b?p=89a6dd27-400b-4025-b430-00bf7d044bd4&api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvQ2VudHJhbFVTRVVBUC9vcGVyYXRpb25zL2JjMzQzODg5LTQ5YTYtNDI1Mi1hMmZkLTE4MTg2ZGQ2YjA3Yj9wPTg5YTZkZDI3LTQwMGItNDAyNS1iNDMwLTAwYmY3ZDA0NGJkNCZhcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8d169d5d-e1cf-4c95-ab0c-2d46a4de118f" + "3dedb8da-433f-48ee-af1b-57a6eb241a72" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" @@ -7604,7 +7604,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "20a90337-334f-4b77-8489-cefe3ee4fd2d" + "9da32409-6ff3-4074-919e-7262daacb6ae" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -7614,16 +7614,16 @@ "11998" ], "x-ms-correlation-request-id": [ - "16b9b7ab-ac5c-4315-96d9-423b22e37eef" + "18ac327b-1b93-4e66-a1de-d45dbe5a4b80" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220328T121237Z:16b9b7ab-ac5c-4315-96d9-423b22e37eef" + "WESTINDIA:20220516T170825Z:18ac327b-1b93-4e66-a1de-d45dbe5a4b80" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 28 Mar 2022 12:12:36 GMT" + "Mon, 16 May 2022 17:08:24 GMT" ], "Content-Length": [ "184" @@ -7635,20 +7635,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-03-28T17:41:56.2283123+05:30\",\r\n \"endTime\": \"2022-03-28T17:42:30.7751822+05:30\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"b4063504-b624-4b59-b9ad-ad64082376a5\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2022-05-16T22:37:44.4597272+05:30\",\r\n \"endTime\": \"2022-05-16T22:38:17.6945055+05:30\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"bc343889-49a6-4252-a2fd-18186dd6b07b\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/providers/Microsoft.Compute/locations/CentralUSEUAP/operations/b4063504-b624-4b59-b9ad-ad64082376a5?p=89a6dd27-400b-4025-b430-00bf7d044bd4&monitor=true&api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvQ2VudHJhbFVTRVVBUC9vcGVyYXRpb25zL2I0MDYzNTA0LWI2MjQtNGI1OS1iOWFkLWFkNjQwODIzNzZhNT9wPTg5YTZkZDI3LTQwMGItNDAyNS1iNDMwLTAwYmY3ZDA0NGJkNCZtb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAyMS0xMS0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/providers/Microsoft.Compute/locations/CentralUSEUAP/operations/bc343889-49a6-4252-a2fd-18186dd6b07b?p=89a6dd27-400b-4025-b430-00bf7d044bd4&monitor=true&api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvQ2VudHJhbFVTRVVBUC9vcGVyYXRpb25zL2JjMzQzODg5LTQ5YTYtNDI1Mi1hMmZkLTE4MTg2ZGQ2YjA3Yj9wPTg5YTZkZDI3LTQwMGItNDAyNS1iNDMwLTAwYmY3ZDA0NGJkNCZtb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAyMS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8d169d5d-e1cf-4c95-ab0c-2d46a4de118f" + "3dedb8da-433f-48ee-af1b-57a6eb241a72" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" @@ -7668,7 +7668,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "5a3a7ebd-eceb-4724-9fee-6060476a18cc" + "9e0db1b3-a454-45fc-ba43-16a99873893d" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -7678,16 +7678,16 @@ "11997" ], "x-ms-correlation-request-id": [ - "dbb7112f-643a-4207-8abd-9ddf3a1f39cf" + "8c3f37cc-bdb9-4e31-9ece-8a6c8600b8c8" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220328T121237Z:dbb7112f-643a-4207-8abd-9ddf3a1f39cf" + "WESTINDIA:20220516T170825Z:8c3f37cc-bdb9-4e31-9ece-8a6c8600b8c8" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 28 Mar 2022 12:12:36 GMT" + "Mon, 16 May 2022 17:08:25 GMT" ], "Expires": [ "-1" diff --git a/src/RecoveryServices/RecoveryServices.Backup.Test/SessionRecords/Microsoft.Azure.Commands.RecoveryServices.Backup.Test.ScenarioTests.ItemTests/TestAzureRSVaultCMK.json b/src/RecoveryServices/RecoveryServices.Backup.Test/SessionRecords/Microsoft.Azure.Commands.RecoveryServices.Backup.Test.ScenarioTests.ItemTests/TestAzureRSVaultCMK.json index 2cb412da5f13..35cec9eaafb6 100644 --- a/src/RecoveryServices/RecoveryServices.Backup.Test/SessionRecords/Microsoft.Azure.Commands.RecoveryServices.Backup.Test.ScenarioTests.ItemTests/TestAzureRSVaultCMK.json +++ b/src/RecoveryServices/RecoveryServices.Backup.Test/SessionRecords/Microsoft.Azure.Commands.RecoveryServices.Backup.Test.ScenarioTests.ItemTests/TestAzureRSVaultCMK.json @@ -7,13 +7,13 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d3836ee2-5052-42b8-8255-c8b382501463" + "25f338df-1c52-4947-8721-c9a003699642" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesClient/4.3.2.0" @@ -33,28 +33,28 @@ "nosniff" ], "x-ms-request-id": [ - "7939f202-4602-4f49-a654-6b2454c3245d" + "100d1476-501a-4c2e-85a7-0fd86c8213fe" ], "x-ms-client-request-id": [ - "d3836ee2-5052-42b8-8255-c8b382501463" + "25f338df-1c52-4947-8721-c9a003699642" ], "Server": [ "Kestrel" ], "x-ms-correlation-request-id": [ - "7939f202-4602-4f49-a654-6b2454c3245d" + "100d1476-501a-4c2e-85a7-0fd86c8213fe" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T114543Z:7939f202-4602-4f49-a654-6b2454c3245d" + "JIOINDIAWEST:20220516T171157Z:100d1476-501a-4c2e-85a7-0fd86c8213fe" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Sat, 26 Mar 2022 11:45:43 GMT" + "Mon, 16 May 2022 17:11:56 GMT" ], "Content-Length": [ - "1248" + "1300" ], "Content-Type": [ "application/json; charset=utf-8" @@ -63,7 +63,7 @@ "-1" ] }, - "ResponseBody": "{\r\n \"location\": \"centraluseuap\",\r\n \"name\": \"cmk-pstest-vault\",\r\n \"etag\": \"W/\\\"datetime'2022-03-23T08%3A22%3A21.1986609Z'\\\"\",\r\n \"tags\": {\r\n \"MABUsed\": \"yes\",\r\n \"Owner\": \"hiaga\",\r\n \"Purpose\": \"testing\",\r\n \"DeleteBy\": \"01-2099\"\r\n },\r\n \"identity\": {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"principalId\": \"c7fb28d8-227b-46b0-a17b-7e45e20a560f\",\r\n \"type\": \"SystemAssigned, UserAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourcegroups/hiagarg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cmk-pstest-msi1\": {\r\n \"clientId\": \"cc17dc91-0ffc-41c4-9f4b-b7b61fa9f4e8\",\r\n \"principalId\": \"79e6360a-251c-4431-b817-a7fff3ac5c91\"\r\n }\r\n }\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateEndpointStateForBackup\": \"None\",\r\n \"privateEndpointStateForSiteRecovery\": \"None\",\r\n \"encryption\": {\r\n \"keyVaultProperties\": {\r\n \"keyUri\": \"https://cmk-pstest-keyvault.vault.azure.net/keys/cmk-pstest-key/5569d5a163ee474cad2da4ac334af9d7\"\r\n },\r\n \"kekIdentity\": {\r\n \"useSystemAssignedIdentity\": true,\r\n \"userAssignedIdentity\": null\r\n },\r\n \"infrastructureEncryption\": \"Enabled\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/cmk-pstest-vault\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"RS0\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"location\": \"centraluseuap\",\r\n \"name\": \"cmk-pstest-vault\",\r\n \"etag\": \"W/\\\"datetime'2022-03-26T11%3A49%3A03.9700651Z'\\\"\",\r\n \"tags\": {\r\n \"MABUsed\": \"yes\",\r\n \"Owner\": \"hiaga\",\r\n \"Purpose\": \"testing\",\r\n \"DeleteBy\": \"01-2099\"\r\n },\r\n \"identity\": {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"principalId\": \"c7fb28d8-227b-46b0-a17b-7e45e20a560f\",\r\n \"type\": \"SystemAssigned, UserAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourcegroups/hiagarg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cmk-pstest-msi1\": {\r\n \"clientId\": \"cc17dc91-0ffc-41c4-9f4b-b7b61fa9f4e8\",\r\n \"principalId\": \"79e6360a-251c-4431-b817-a7fff3ac5c91\"\r\n }\r\n }\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateEndpointStateForBackup\": \"None\",\r\n \"privateEndpointStateForSiteRecovery\": \"None\",\r\n \"encryption\": {\r\n \"keyVaultProperties\": {\r\n \"keyUri\": \"https://cmk-pstest-keyvault.vault.azure.net/keys/cmk-pstest-key/5569d5a163ee474cad2da4ac334af9d7\"\r\n },\r\n \"kekIdentity\": {\r\n \"useSystemAssignedIdentity\": true,\r\n \"userAssignedIdentity\": null\r\n },\r\n \"infrastructureEncryption\": \"Enabled\"\r\n },\r\n \"networkSettings\": {\r\n \"publicNetworkAccess\": \"Enabled\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/cmk-pstest-vault\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"RS0\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { @@ -73,10 +73,10 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2f0b2881-e62c-498c-91bb-afc035f66ccf" + "cc50f839-d108-45ef-9b20-65d1d8a61dd0" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesClient/4.3.2.0" @@ -90,34 +90,34 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11997" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "457885ef-80f5-433f-9efb-7fd74abf3fb0" + "5e533012-249b-4ef3-9b63-597db690cf25" ], "x-ms-client-request-id": [ - "2f0b2881-e62c-498c-91bb-afc035f66ccf" + "cc50f839-d108-45ef-9b20-65d1d8a61dd0" ], "Server": [ "Kestrel" ], "x-ms-correlation-request-id": [ - "457885ef-80f5-433f-9efb-7fd74abf3fb0" + "5e533012-249b-4ef3-9b63-597db690cf25" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T114747Z:457885ef-80f5-433f-9efb-7fd74abf3fb0" + "JIOINDIAWEST:20220516T171301Z:5e533012-249b-4ef3-9b63-597db690cf25" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Sat, 26 Mar 2022 11:47:47 GMT" + "Mon, 16 May 2022 17:13:01 GMT" ], "Content-Length": [ - "1396" + "1448" ], "Content-Type": [ "application/json; charset=utf-8" @@ -126,7 +126,7 @@ "-1" ] }, - "ResponseBody": "{\r\n \"location\": \"centraluseuap\",\r\n \"name\": \"cmk-pstest-vault\",\r\n \"etag\": \"W/\\\"datetime'2022-03-26T11%3A46%3A52.8195588Z'\\\"\",\r\n \"tags\": {\r\n \"MABUsed\": \"yes\",\r\n \"Owner\": \"hiaga\",\r\n \"Purpose\": \"testing\",\r\n \"DeleteBy\": \"01-2099\"\r\n },\r\n \"identity\": {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"principalId\": \"c7fb28d8-227b-46b0-a17b-7e45e20a560f\",\r\n \"type\": \"SystemAssigned, UserAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourcegroups/hiagarg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cmk-pstest-msi1\": {\r\n \"clientId\": \"cc17dc91-0ffc-41c4-9f4b-b7b61fa9f4e8\",\r\n \"principalId\": \"79e6360a-251c-4431-b817-a7fff3ac5c91\"\r\n }\r\n }\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateEndpointStateForBackup\": \"None\",\r\n \"privateEndpointStateForSiteRecovery\": \"None\",\r\n \"encryption\": {\r\n \"keyVaultProperties\": {\r\n \"keyUri\": \"https://cmk-pstest-keyvault.vault.azure.net/keys/cmk-pstest-key/5569d5a163ee474cad2da4ac334af9d7\"\r\n },\r\n \"kekIdentity\": {\r\n \"useSystemAssignedIdentity\": false,\r\n \"userAssignedIdentity\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourcegroups/hiagarg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cmk-pstest-msi1\"\r\n },\r\n \"infrastructureEncryption\": \"Enabled\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/cmk-pstest-vault\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"RS0\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"location\": \"centraluseuap\",\r\n \"name\": \"cmk-pstest-vault\",\r\n \"etag\": \"W/\\\"datetime'2022-05-16T17%3A13%3A00.8774101Z'\\\"\",\r\n \"tags\": {\r\n \"MABUsed\": \"yes\",\r\n \"Owner\": \"hiaga\",\r\n \"Purpose\": \"testing\",\r\n \"DeleteBy\": \"01-2099\"\r\n },\r\n \"identity\": {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"principalId\": \"c7fb28d8-227b-46b0-a17b-7e45e20a560f\",\r\n \"type\": \"SystemAssigned, UserAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourcegroups/hiagarg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cmk-pstest-msi1\": {\r\n \"clientId\": \"cc17dc91-0ffc-41c4-9f4b-b7b61fa9f4e8\",\r\n \"principalId\": \"79e6360a-251c-4431-b817-a7fff3ac5c91\"\r\n }\r\n }\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateEndpointStateForBackup\": \"None\",\r\n \"privateEndpointStateForSiteRecovery\": \"None\",\r\n \"encryption\": {\r\n \"keyVaultProperties\": {\r\n \"keyUri\": \"https://cmk-pstest-keyvault.vault.azure.net/keys/cmk-pstest-key/5569d5a163ee474cad2da4ac334af9d7\"\r\n },\r\n \"kekIdentity\": {\r\n \"useSystemAssignedIdentity\": false,\r\n \"userAssignedIdentity\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourcegroups/hiagarg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cmk-pstest-msi1\"\r\n },\r\n \"infrastructureEncryption\": \"Enabled\"\r\n },\r\n \"networkSettings\": {\r\n \"publicNetworkAccess\": \"Enabled\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/cmk-pstest-vault\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"RS0\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { @@ -136,10 +136,10 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9056caf1-5160-461c-b92a-075d6c806a98" + "86fa45eb-d586-4c4f-bd4e-e2e44ff80e9a" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesClient/4.3.2.0" @@ -153,34 +153,34 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11994" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "9a183af0-21d3-4454-9888-a8df18c37735" + "ef796d1d-542a-4b77-b7b0-11b65e884c75" ], "x-ms-client-request-id": [ - "9056caf1-5160-461c-b92a-075d6c806a98" + "86fa45eb-d586-4c4f-bd4e-e2e44ff80e9a" ], "Server": [ "Kestrel" ], "x-ms-correlation-request-id": [ - "9a183af0-21d3-4454-9888-a8df18c37735" + "ef796d1d-542a-4b77-b7b0-11b65e884c75" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T115003Z:9a183af0-21d3-4454-9888-a8df18c37735" + "JIOINDIAWEST:20220516T171523Z:ef796d1d-542a-4b77-b7b0-11b65e884c75" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Sat, 26 Mar 2022 11:50:02 GMT" + "Mon, 16 May 2022 17:15:22 GMT" ], "Content-Length": [ - "1248" + "1300" ], "Content-Type": [ "application/json; charset=utf-8" @@ -189,7 +189,7 @@ "-1" ] }, - "ResponseBody": "{\r\n \"location\": \"centraluseuap\",\r\n \"name\": \"cmk-pstest-vault\",\r\n \"etag\": \"W/\\\"datetime'2022-03-26T11%3A49%3A03.9700651Z'\\\"\",\r\n \"tags\": {\r\n \"MABUsed\": \"yes\",\r\n \"Owner\": \"hiaga\",\r\n \"Purpose\": \"testing\",\r\n \"DeleteBy\": \"01-2099\"\r\n },\r\n \"identity\": {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"principalId\": \"c7fb28d8-227b-46b0-a17b-7e45e20a560f\",\r\n \"type\": \"SystemAssigned, UserAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourcegroups/hiagarg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cmk-pstest-msi1\": {\r\n \"clientId\": \"cc17dc91-0ffc-41c4-9f4b-b7b61fa9f4e8\",\r\n \"principalId\": \"79e6360a-251c-4431-b817-a7fff3ac5c91\"\r\n }\r\n }\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateEndpointStateForBackup\": \"None\",\r\n \"privateEndpointStateForSiteRecovery\": \"None\",\r\n \"encryption\": {\r\n \"keyVaultProperties\": {\r\n \"keyUri\": \"https://cmk-pstest-keyvault.vault.azure.net/keys/cmk-pstest-key/5569d5a163ee474cad2da4ac334af9d7\"\r\n },\r\n \"kekIdentity\": {\r\n \"useSystemAssignedIdentity\": true,\r\n \"userAssignedIdentity\": null\r\n },\r\n \"infrastructureEncryption\": \"Enabled\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/cmk-pstest-vault\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"RS0\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"location\": \"centraluseuap\",\r\n \"name\": \"cmk-pstest-vault\",\r\n \"etag\": \"W/\\\"datetime'2022-05-16T17%3A14%3A22.4113557Z'\\\"\",\r\n \"tags\": {\r\n \"MABUsed\": \"yes\",\r\n \"Owner\": \"hiaga\",\r\n \"Purpose\": \"testing\",\r\n \"DeleteBy\": \"01-2099\"\r\n },\r\n \"identity\": {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"principalId\": \"c7fb28d8-227b-46b0-a17b-7e45e20a560f\",\r\n \"type\": \"SystemAssigned, UserAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourcegroups/hiagarg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cmk-pstest-msi1\": {\r\n \"clientId\": \"cc17dc91-0ffc-41c4-9f4b-b7b61fa9f4e8\",\r\n \"principalId\": \"79e6360a-251c-4431-b817-a7fff3ac5c91\"\r\n }\r\n }\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateEndpointStateForBackup\": \"None\",\r\n \"privateEndpointStateForSiteRecovery\": \"None\",\r\n \"encryption\": {\r\n \"keyVaultProperties\": {\r\n \"keyUri\": \"https://cmk-pstest-keyvault.vault.azure.net/keys/cmk-pstest-key/5569d5a163ee474cad2da4ac334af9d7\"\r\n },\r\n \"kekIdentity\": {\r\n \"useSystemAssignedIdentity\": true,\r\n \"userAssignedIdentity\": null\r\n },\r\n \"infrastructureEncryption\": \"Enabled\"\r\n },\r\n \"networkSettings\": {\r\n \"publicNetworkAccess\": \"Enabled\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/cmk-pstest-vault\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"RS0\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { @@ -199,13 +199,13 @@ "RequestBody": "{\r\n \"properties\": {\r\n \"encryption\": {\r\n \"keyVaultProperties\": {\r\n \"keyUri\": \"https://cmk-pstest-keyvault.vault.azure.net/keys/cmk-pstest-key/5569d5a163ee474cad2da4ac334af9d7\"\r\n },\r\n \"kekIdentity\": {\r\n \"useSystemAssignedIdentity\": false,\r\n \"userAssignedIdentity\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourcegroups/hiagarg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cmk-pstest-msi1\"\r\n },\r\n \"infrastructureEncryption\": \"Enabled\"\r\n }\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "2f0b2881-e62c-498c-91bb-afc035f66ccf" + "cc50f839-d108-45ef-9b20-65d1d8a61dd0" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesClient/4.3.2.0" @@ -225,13 +225,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/cmk-pstest-vault/operationResults/NDA5NTswMDQ1NGZkYS0zMDFkLTQzNGItYTRiMy0wZTFmY2RmODM4MTc=?api-version=2021-06-01" + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/cmk-pstest-vault/operationResults/NDA5NTs1ZjM5MWViZi00NmVlLTRlMjQtOWMxNC1jYjlhNTJkY2RmYzY=?api-version=2021-06-01" ], "Retry-After": [ "60" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/cmk-pstest-vault/operationStatus/NDA5NTswMDQ1NGZkYS0zMDFkLTQzNGItYTRiMy0wZTFmY2RmODM4MTc=?api-version=2021-06-01" + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/cmk-pstest-vault/operationStatus/NDA5NTs1ZjM5MWViZi00NmVlLTRlMjQtOWMxNC1jYjlhNTJkY2RmYzY=?api-version=2021-06-01" ], "X-Content-Type-Options": [ "nosniff" @@ -249,16 +249,16 @@ "299" ], "x-ms-correlation-request-id": [ - "5c988bbc-6c90-4252-a413-44700052d69e" + "c4c6823a-6f67-489f-92d3-a59c4aa35f28" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T114544Z:5c988bbc-6c90-4252-a413-44700052d69e" + "JIOINDIAWEST:20220516T171158Z:c4c6823a-6f67-489f-92d3-a59c4aa35f28" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Sat, 26 Mar 2022 11:45:44 GMT" + "Mon, 16 May 2022 17:11:57 GMT" ], "Expires": [ "-1" @@ -277,13 +277,13 @@ "RequestBody": "{\r\n \"properties\": {\r\n \"encryption\": {\r\n \"keyVaultProperties\": {\r\n \"keyUri\": \"https://cmk-pstest-keyvault.vault.azure.net/keys/cmk-pstest-key/5569d5a163ee474cad2da4ac334af9d7\"\r\n },\r\n \"kekIdentity\": {\r\n \"useSystemAssignedIdentity\": true\r\n }\r\n }\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "9056caf1-5160-461c-b92a-075d6c806a98" + "86fa45eb-d586-4c4f-bd4e-e2e44ff80e9a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesClient/4.3.2.0" @@ -303,13 +303,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/cmk-pstest-vault/operationResults/NDA5NTtjZjg3ZjEzNi04M2I0LTQ0N2QtOTBiZS03YTJjOTAyMWIyZDY=?api-version=2021-06-01" + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/cmk-pstest-vault/operationResults/NDA5NTtjMWM1YzdlZi1jZTc3LTQ1ZTUtYjFmMS1hNTM3MzMxNTFhNTc=?api-version=2021-06-01" ], "Retry-After": [ "60" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/cmk-pstest-vault/operationStatus/NDA5NTtjZjg3ZjEzNi04M2I0LTQ0N2QtOTBiZS03YTJjOTAyMWIyZDY=?api-version=2021-06-01" + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/cmk-pstest-vault/operationStatus/NDA5NTtjMWM1YzdlZi1jZTc3LTQ1ZTUtYjFmMS1hNTM3MzMxNTFhNTc=?api-version=2021-06-01" ], "X-Content-Type-Options": [ "nosniff" @@ -327,16 +327,16 @@ "298" ], "x-ms-correlation-request-id": [ - "738bffc0-4b4a-4b05-b6cf-0dcd0f107070" + "6a8681db-db4f-4820-adc5-cdaead673076" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T114800Z:738bffc0-4b4a-4b05-b6cf-0dcd0f107070" + "JIOINDIAWEST:20220516T171319Z:6a8681db-db4f-4820-adc5-cdaead673076" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Sat, 26 Mar 2022 11:48:00 GMT" + "Mon, 16 May 2022 17:13:18 GMT" ], "Expires": [ "-1" @@ -349,16 +349,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/cmk-pstest-vault/operationStatus/NDA5NTswMDQ1NGZkYS0zMDFkLTQzNGItYTRiMy0wZTFmY2RmODM4MTc=?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9jbWstcHN0ZXN0LXZhdWx0L29wZXJhdGlvblN0YXR1cy9OREE1TlRzd01EUTFOR1prWVMwek1ERmtMVFF6TkdJdFlUUmlNeTB3WlRGbVkyUm1PRE00TVRjPT9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/cmk-pstest-vault/operationStatus/NDA5NTs1ZjM5MWViZi00NmVlLTRlMjQtOWMxNC1jYjlhNTJkY2RmYzY=?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9jbWstcHN0ZXN0LXZhdWx0L29wZXJhdGlvblN0YXR1cy9OREE1TlRzMVpqTTVNV1ZpWmkwME5tVmxMVFJsTWpRdE9XTXhOQzFqWWpsaE5USmtZMlJtWXpZPT9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2f0b2881-e62c-498c-91bb-afc035f66ccf" + "cc50f839-d108-45ef-9b20-65d1d8a61dd0" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesClient/4.3.2.0" @@ -371,23 +371,14 @@ "Pragma": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/cmk-pstest-vault/operationResults/NDA5NTswMDQ1NGZkYS0zMDFkLTQzNGItYTRiMy0wZTFmY2RmODM4MTc=?api-version=2021-06-01" - ], - "Retry-After": [ - "60" - ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/cmk-pstest-vault/operationStatus/NDA5NTswMDQ1NGZkYS0zMDFkLTQzNGItYTRiMy0wZTFmY2RmODM4MTc=?api-version=2021-06-01" - ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "93860747-957e-4e02-b8d4-b358975340af" + "eed72503-fa92-4a54-a851-f02d7264d362" ], "x-ms-client-request-id": [ - "2f0b2881-e62c-498c-91bb-afc035f66ccf" + "cc50f839-d108-45ef-9b20-65d1d8a61dd0" ], "Server": [ "Kestrel" @@ -396,79 +387,16 @@ "11998" ], "x-ms-correlation-request-id": [ - "93860747-957e-4e02-b8d4-b358975340af" + "eed72503-fa92-4a54-a851-f02d7264d362" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T114645Z:93860747-957e-4e02-b8d4-b358975340af" + "JIOINDIAWEST:20220516T171301Z:eed72503-fa92-4a54-a851-f02d7264d362" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Sat, 26 Mar 2022 11:46:45 GMT" - ], - "Content-Length": [ - "349" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/cmk-pstest-vault/operationStatus/NDA5NTswMDQ1NGZkYS0zMDFkLTQzNGItYTRiMy0wZTFmY2RmODM4MTc=\",\r\n \"name\": \"NDA5NTswMDQ1NGZkYS0zMDFkLTQzNGItYTRiMy0wZTFmY2RmODM4MTc=\",\r\n \"status\": \"InProgress\",\r\n \"percentComplete\": 0.0\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/cmk-pstest-vault/operationStatus/NDA5NTswMDQ1NGZkYS0zMDFkLTQzNGItYTRiMy0wZTFmY2RmODM4MTc=?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9jbWstcHN0ZXN0LXZhdWx0L29wZXJhdGlvblN0YXR1cy9OREE1TlRzd01EUTFOR1prWVMwek1ERmtMVFF6TkdJdFlUUmlNeTB3WlRGbVkyUm1PRE00TVRjPT9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "2f0b2881-e62c-498c-91bb-afc035f66ccf" - ], - "User-Agent": [ - "FxVersion/4.700.22.11601", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesClient/4.3.2.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "x-ms-request-id": [ - "7b029cc7-db61-48aa-a36f-747cb9e0cd82" - ], - "x-ms-client-request-id": [ - "2f0b2881-e62c-498c-91bb-afc035f66ccf" - ], - "Server": [ - "Kestrel" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" - ], - "x-ms-correlation-request-id": [ - "7b029cc7-db61-48aa-a36f-747cb9e0cd82" - ], - "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T114747Z:7b029cc7-db61-48aa-a36f-747cb9e0cd82" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Date": [ - "Sat, 26 Mar 2022 11:47:47 GMT" + "Mon, 16 May 2022 17:13:01 GMT" ], "Content-Length": [ "348" @@ -480,26 +408,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/cmk-pstest-vault/operationStatus/NDA5NTswMDQ1NGZkYS0zMDFkLTQzNGItYTRiMy0wZTFmY2RmODM4MTc=\",\r\n \"name\": \"NDA5NTswMDQ1NGZkYS0zMDFkLTQzNGItYTRiMy0wZTFmY2RmODM4MTc=\",\r\n \"status\": \"Succeeded\",\r\n \"percentComplete\": 0.0\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/cmk-pstest-vault/operationStatus/NDA5NTs1ZjM5MWViZi00NmVlLTRlMjQtOWMxNC1jYjlhNTJkY2RmYzY=\",\r\n \"name\": \"NDA5NTs1ZjM5MWViZi00NmVlLTRlMjQtOWMxNC1jYjlhNTJkY2RmYzY=\",\r\n \"status\": \"Succeeded\",\r\n \"percentComplete\": 0.0\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/cmk-pstest-vault/backupEncryptionConfigs/backupResourceEncryptionConfig?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9jbWstcHN0ZXN0LXZhdWx0L2JhY2t1cEVuY3J5cHRpb25Db25maWdzL2JhY2t1cFJlc291cmNlRW5jcnlwdGlvbkNvbmZpZz9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/cmk-pstest-vault/backupEncryptionConfigs/backupResourceEncryptionConfig?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9jbWstcHN0ZXN0LXZhdWx0L2JhY2t1cEVuY3J5cHRpb25Db25maWdzL2JhY2t1cFJlc291cmNlRW5jcnlwdGlvbkNvbmZpZz9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bc5605d4-5957-476c-b3e4-6735c4e34f61" + "da978b24-c7c2-4744-8b28-57eacdf7236d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -513,10 +441,10 @@ "nosniff" ], "x-ms-request-id": [ - "a9f44d85-018d-427c-b1f9-f438f336a17a" + "9622664a-39e4-496a-9bec-dc9f4a361e5d" ], "x-ms-client-request-id": [ - "bc5605d4-5957-476c-b3e4-6735c4e34f61" + "da978b24-c7c2-4744-8b28-57eacdf7236d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -531,13 +459,13 @@ "299" ], "x-ms-correlation-request-id": [ - "a9f44d85-018d-427c-b1f9-f438f336a17a" + "9622664a-39e4-496a-9bec-dc9f4a361e5d" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T114749Z:a9f44d85-018d-427c-b1f9-f438f336a17a" + "JIOINDIAWEST:20220516T171307Z:9622664a-39e4-496a-9bec-dc9f4a361e5d" ], "Date": [ - "Sat, 26 Mar 2022 11:47:48 GMT" + "Mon, 16 May 2022 17:13:07 GMT" ], "Content-Length": [ "772" @@ -553,22 +481,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/cmk-pstest-vault/backupEncryptionConfigs/backupResourceEncryptionConfig?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9jbWstcHN0ZXN0LXZhdWx0L2JhY2t1cEVuY3J5cHRpb25Db25maWdzL2JhY2t1cFJlc291cmNlRW5jcnlwdGlvbkNvbmZpZz9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/cmk-pstest-vault/backupEncryptionConfigs/backupResourceEncryptionConfig?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9jbWstcHN0ZXN0LXZhdWx0L2JhY2t1cEVuY3J5cHRpb25Db25maWdzL2JhY2t1cFJlc291cmNlRW5jcnlwdGlvbkNvbmZpZz9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bc32b5a8-91cb-4cb6-981e-c34c50066c96" + "8648253f-8543-4eab-9e69-cede7bd8066d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -582,10 +510,10 @@ "nosniff" ], "x-ms-request-id": [ - "73d4b745-8b01-4951-84b9-cc9e327d199f" + "2d49597a-386b-4cc4-8e62-50a5f2a80f74" ], "x-ms-client-request-id": [ - "bc32b5a8-91cb-4cb6-981e-c34c50066c96" + "8648253f-8543-4eab-9e69-cede7bd8066d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -600,13 +528,13 @@ "299" ], "x-ms-correlation-request-id": [ - "73d4b745-8b01-4951-84b9-cc9e327d199f" + "2d49597a-386b-4cc4-8e62-50a5f2a80f74" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T115004Z:73d4b745-8b01-4951-84b9-cc9e327d199f" + "JIOINDIAWEST:20220516T171526Z:2d49597a-386b-4cc4-8e62-50a5f2a80f74" ], "Date": [ - "Sat, 26 Mar 2022 11:50:03 GMT" + "Mon, 16 May 2022 17:15:25 GMT" ], "Content-Length": [ "596" @@ -622,22 +550,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/cmk-pstest-vault/backupconfig/vaultconfig?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9jbWstcHN0ZXN0LXZhdWx0L2JhY2t1cGNvbmZpZy92YXVsdGNvbmZpZz9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/cmk-pstest-vault/backupconfig/vaultconfig?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9jbWstcHN0ZXN0LXZhdWx0L2JhY2t1cGNvbmZpZy92YXVsdGNvbmZpZz9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bc5605d4-5957-476c-b3e4-6735c4e34f61" + "da978b24-c7c2-4744-8b28-57eacdf7236d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -654,10 +582,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "86c8c3d5-b80b-4497-81db-32f6d045ada0" + "df8742e4-651d-4250-b775-d1126e16d09a" ], "x-ms-client-request-id": [ - "bc5605d4-5957-476c-b3e4-6735c4e34f61" + "da978b24-c7c2-4744-8b28-57eacdf7236d" ], "Server": [ "Kestrel" @@ -669,13 +597,13 @@ "299" ], "x-ms-correlation-request-id": [ - "86c8c3d5-b80b-4497-81db-32f6d045ada0" + "df8742e4-651d-4250-b775-d1126e16d09a" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T114749Z:86c8c3d5-b80b-4497-81db-32f6d045ada0" + "JIOINDIAWEST:20220516T171308Z:df8742e4-651d-4250-b775-d1126e16d09a" ], "Date": [ - "Sat, 26 Mar 2022 11:47:49 GMT" + "Mon, 16 May 2022 17:13:08 GMT" ], "Content-Length": [ "370" @@ -691,22 +619,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/cmk-pstest-vault/backupconfig/vaultconfig?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9jbWstcHN0ZXN0LXZhdWx0L2JhY2t1cGNvbmZpZy92YXVsdGNvbmZpZz9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/cmk-pstest-vault/backupconfig/vaultconfig?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9jbWstcHN0ZXN0LXZhdWx0L2JhY2t1cGNvbmZpZy92YXVsdGNvbmZpZz9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bc32b5a8-91cb-4cb6-981e-c34c50066c96" + "8648253f-8543-4eab-9e69-cede7bd8066d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -723,10 +651,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b6435c8a-6a48-498b-9585-9a052b4c4315" + "2174ac4a-8041-4668-baff-632e992a181f" ], "x-ms-client-request-id": [ - "bc32b5a8-91cb-4cb6-981e-c34c50066c96" + "8648253f-8543-4eab-9e69-cede7bd8066d" ], "Server": [ "Kestrel" @@ -738,13 +666,13 @@ "299" ], "x-ms-correlation-request-id": [ - "b6435c8a-6a48-498b-9585-9a052b4c4315" + "2174ac4a-8041-4668-baff-632e992a181f" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T115004Z:b6435c8a-6a48-498b-9585-9a052b4c4315" + "JIOINDIAWEST:20220516T171527Z:2174ac4a-8041-4668-baff-632e992a181f" ], "Date": [ - "Sat, 26 Mar 2022 11:50:04 GMT" + "Mon, 16 May 2022 17:15:27 GMT" ], "Content-Length": [ "370" @@ -760,16 +688,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/cmk-pstest-vault/operationStatus/NDA5NTtjZjg3ZjEzNi04M2I0LTQ0N2QtOTBiZS03YTJjOTAyMWIyZDY=?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9jbWstcHN0ZXN0LXZhdWx0L29wZXJhdGlvblN0YXR1cy9OREE1TlR0alpqZzNaakV6TmkwNE0ySTBMVFEwTjJRdE9UQmlaUzAzWVRKak9UQXlNV0l5WkRZPT9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/cmk-pstest-vault/operationStatus/NDA5NTtjMWM1YzdlZi1jZTc3LTQ1ZTUtYjFmMS1hNTM3MzMxNTFhNTc=?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9jbWstcHN0ZXN0LXZhdWx0L29wZXJhdGlvblN0YXR1cy9OREE1TlR0ak1XTTFZemRsWmkxalpUYzNMVFExWlRVdFlqRm1NUzFoTlRNM016TXhOVEZoTlRjPT9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9056caf1-5160-461c-b92a-075d6c806a98" + "86fa45eb-d586-4c4f-bd4e-e2e44ff80e9a" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesClient/4.3.2.0" @@ -783,40 +711,40 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/cmk-pstest-vault/operationResults/NDA5NTtjZjg3ZjEzNi04M2I0LTQ0N2QtOTBiZS03YTJjOTAyMWIyZDY=?api-version=2021-06-01" + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/cmk-pstest-vault/operationResults/NDA5NTtjMWM1YzdlZi1jZTc3LTQ1ZTUtYjFmMS1hNTM3MzMxNTFhNTc=?api-version=2021-06-01" ], "Retry-After": [ "60" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/cmk-pstest-vault/operationStatus/NDA5NTtjZjg3ZjEzNi04M2I0LTQ0N2QtOTBiZS03YTJjOTAyMWIyZDY=?api-version=2021-06-01" + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/cmk-pstest-vault/operationStatus/NDA5NTtjMWM1YzdlZi1jZTc3LTQ1ZTUtYjFmMS1hNTM3MzMxNTFhNTc=?api-version=2021-06-01" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "9d30c965-4f1c-4dbf-85f6-cf6b49a2b2b3" + "4bbba17a-daa8-4534-8ebc-5af18e569390" ], "x-ms-client-request-id": [ - "9056caf1-5160-461c-b92a-075d6c806a98" + "86fa45eb-d586-4c4f-bd4e-e2e44ff80e9a" ], "Server": [ "Kestrel" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11996" ], "x-ms-correlation-request-id": [ - "9d30c965-4f1c-4dbf-85f6-cf6b49a2b2b3" + "4bbba17a-daa8-4534-8ebc-5af18e569390" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T114901Z:9d30c965-4f1c-4dbf-85f6-cf6b49a2b2b3" + "JIOINDIAWEST:20220516T171421Z:4bbba17a-daa8-4534-8ebc-5af18e569390" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Sat, 26 Mar 2022 11:49:00 GMT" + "Mon, 16 May 2022 17:14:20 GMT" ], "Content-Length": [ "349" @@ -828,20 +756,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/cmk-pstest-vault/operationStatus/NDA5NTtjZjg3ZjEzNi04M2I0LTQ0N2QtOTBiZS03YTJjOTAyMWIyZDY=\",\r\n \"name\": \"NDA5NTtjZjg3ZjEzNi04M2I0LTQ0N2QtOTBiZS03YTJjOTAyMWIyZDY=\",\r\n \"status\": \"InProgress\",\r\n \"percentComplete\": 0.0\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/cmk-pstest-vault/operationStatus/NDA5NTtjMWM1YzdlZi1jZTc3LTQ1ZTUtYjFmMS1hNTM3MzMxNTFhNTc=\",\r\n \"name\": \"NDA5NTtjMWM1YzdlZi1jZTc3LTQ1ZTUtYjFmMS1hNTM3MzMxNTFhNTc=\",\r\n \"status\": \"InProgress\",\r\n \"percentComplete\": 0.0\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/cmk-pstest-vault/operationStatus/NDA5NTtjZjg3ZjEzNi04M2I0LTQ0N2QtOTBiZS03YTJjOTAyMWIyZDY=?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9jbWstcHN0ZXN0LXZhdWx0L29wZXJhdGlvblN0YXR1cy9OREE1TlR0alpqZzNaakV6TmkwNE0ySTBMVFEwTjJRdE9UQmlaUzAzWVRKak9UQXlNV0l5WkRZPT9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/cmk-pstest-vault/operationStatus/NDA5NTtjMWM1YzdlZi1jZTc3LTQ1ZTUtYjFmMS1hNTM3MzMxNTFhNTc=?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9jbWstcHN0ZXN0LXZhdWx0L29wZXJhdGlvblN0YXR1cy9OREE1TlR0ak1XTTFZemRsWmkxalpUYzNMVFExWlRVdFlqRm1NUzFoTlRNM016TXhOVEZoTlRjPT9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9056caf1-5160-461c-b92a-075d6c806a98" + "86fa45eb-d586-4c4f-bd4e-e2e44ff80e9a" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesClient/4.3.2.0" @@ -858,28 +786,28 @@ "nosniff" ], "x-ms-request-id": [ - "b6eb4236-02e7-4da4-9c5f-b8245035b46d" + "c7d4b8b1-33a5-4657-b3db-96393f5bfa0e" ], "x-ms-client-request-id": [ - "9056caf1-5160-461c-b92a-075d6c806a98" + "86fa45eb-d586-4c4f-bd4e-e2e44ff80e9a" ], "Server": [ "Kestrel" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11995" ], "x-ms-correlation-request-id": [ - "b6eb4236-02e7-4da4-9c5f-b8245035b46d" + "c7d4b8b1-33a5-4657-b3db-96393f5bfa0e" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T115002Z:b6eb4236-02e7-4da4-9c5f-b8245035b46d" + "JIOINDIAWEST:20220516T171522Z:c7d4b8b1-33a5-4657-b3db-96393f5bfa0e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Sat, 26 Mar 2022 11:50:01 GMT" + "Mon, 16 May 2022 17:15:21 GMT" ], "Content-Length": [ "348" @@ -891,7 +819,7 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/cmk-pstest-vault/operationStatus/NDA5NTtjZjg3ZjEzNi04M2I0LTQ0N2QtOTBiZS03YTJjOTAyMWIyZDY=\",\r\n \"name\": \"NDA5NTtjZjg3ZjEzNi04M2I0LTQ0N2QtOTBiZS03YTJjOTAyMWIyZDY=\",\r\n \"status\": \"Succeeded\",\r\n \"percentComplete\": 0.0\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/cmk-pstest-vault/operationStatus/NDA5NTtjMWM1YzdlZi1jZTc3LTQ1ZTUtYjFmMS1hNTM3MzMxNTFhNTc=\",\r\n \"name\": \"NDA5NTtjMWM1YzdlZi1jZTc3LTQ1ZTUtYjFmMS1hNTM3MzMxNTFhNTc=\",\r\n \"status\": \"Succeeded\",\r\n \"percentComplete\": 0.0\r\n}", "StatusCode": 200 } ], diff --git a/src/RecoveryServices/RecoveryServices.Backup.Test/SessionRecords/Microsoft.Azure.Commands.RecoveryServices.Backup.Test.ScenarioTests.ItemTests/TestAzureVMBackup.json b/src/RecoveryServices/RecoveryServices.Backup.Test/SessionRecords/Microsoft.Azure.Commands.RecoveryServices.Backup.Test.ScenarioTests.ItemTests/TestAzureVMBackup.json index 7f8d5440d5a6..5502ad4c8dba 100644 --- a/src/RecoveryServices/RecoveryServices.Backup.Test/SessionRecords/Microsoft.Azure.Commands.RecoveryServices.Backup.Test.ScenarioTests.ItemTests/TestAzureVMBackup.json +++ b/src/RecoveryServices/RecoveryServices.Backup.Test/SessionRecords/Microsoft.Azure.Commands.RecoveryServices.Backup.Test.ScenarioTests.ItemTests/TestAzureVMBackup.json @@ -1,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourcegroups/PSTestRG130a7cb9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlZ3JvdXBzL1BTVGVzdFJHMTMwYTdjYjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiaga-adhoc-vault?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYS1hZGhvYy12YXVsdD9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d04c79ef-baa4-4c42-a54a-4561108da959" + "23c72a17-22d9-42ed-ab3c-ef985e456a19" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesClient/4.3.2.0" ] }, "ResponseHeaders": { @@ -26,60 +26,63 @@ "Pragma": [ "no-cache" ], - "x-ms-failure-cause": [ - "gateway" - ], "x-ms-ratelimit-remaining-subscription-reads": [ "11999" ], + "X-Content-Type-Options": [ + "nosniff" + ], "x-ms-request-id": [ - "a3406fbe-89b5-410f-8817-5028d53ad4a1" + "97251311-c725-462f-a740-963d038bc343" + ], + "x-ms-client-request-id": [ + "23c72a17-22d9-42ed-ab3c-ef985e456a19" + ], + "Server": [ + "Kestrel" ], "x-ms-correlation-request-id": [ - "a3406fbe-89b5-410f-8817-5028d53ad4a1" + "97251311-c725-462f-a740-963d038bc343" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T223957Z:a3406fbe-89b5-410f-8817-5028d53ad4a1" + "JIOINDIAWEST:20220517T135405Z:97251311-c725-462f-a740-963d038bc343" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Date": [ - "Thu, 24 Feb 2022 22:39:57 GMT" + "Tue, 17 May 2022 13:54:04 GMT" + ], + "Content-Length": [ + "603" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" - ], - "Content-Length": [ - "108" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'PSTestRG130a7cb9' could not be found.\"\r\n }\r\n}", - "StatusCode": 404 + "ResponseBody": "{\r\n \"location\": \"centraluseuap\",\r\n \"name\": \"hiaga-adhoc-vault\",\r\n \"etag\": \"W/\\\"datetime'2022-03-23T08%3A22%3A21.243635Z'\\\"\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\",\r\n \"Owner\": \"hiaga\",\r\n \"Purpose\": \"testing\",\r\n \"DeleteBy\": \"01-2031\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateEndpointStateForBackup\": \"None\",\r\n \"privateEndpointStateForSiteRecovery\": \"None\",\r\n \"networkSettings\": {\r\n \"publicNetworkAccess\": \"Enabled\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiaga-adhoc-vault\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"RS0\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourcegroups/PSTestRG130a7cb9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlZ3JvdXBzL1BTVGVzdFJHMTMwYTdjYjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiaga-adhoc-vault/backupconfig/vaultconfig?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYS1hZGhvYy12YXVsdC9iYWNrdXBjb25maWcvdmF1bHRjb25maWc/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "538dac99-0a4b-48b4-a559-d22248e5179e" + "99dc1e6f-27bb-4b00-bb6e-78222a340941" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -89,63 +92,72 @@ "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b8be6cdf-d6ad-4386-82c8-cf5bd6963008" + "1c3cf1b6-718e-4d2f-9f32-0f23db37ef5e" ], - "x-ms-correlation-request-id": [ - "b8be6cdf-d6ad-4386-82c8-cf5bd6963008" + "x-ms-client-request-id": [ + "99dc1e6f-27bb-4b00-bb6e-78222a340941" ], - "x-ms-routing-request-id": [ - "CENTRALUS:20220224T233830Z:b8be6cdf-d6ad-4386-82c8-cf5bd6963008" + "Server": [ + "Kestrel" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "X-Powered-By": [ + "ASP.NET" ], - "X-Content-Type-Options": [ - "nosniff" + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "299" + ], + "x-ms-correlation-request-id": [ + "1c3cf1b6-718e-4d2f-9f32-0f23db37ef5e" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220517T135410Z:1c3cf1b6-718e-4d2f-9f32-0f23db37ef5e" ], "Date": [ - "Thu, 24 Feb 2022 23:38:29 GMT" + "Tue, 17 May 2022 13:54:10 GMT" + ], + "Content-Length": [ + "372" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" - ], - "Content-Length": [ - "192" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9\",\r\n \"name\": \"PSTestRG130a7cb9\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiaga-adhoc-vault/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/e37510d7-33b6-4676-886f-ee75bcc01871/resourcegroups/PSTestRG130a7cb9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlZ3JvdXBzL1BTVGVzdFJHMTMwYTdjYjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"southeastasia\"\r\n}", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiaga-adhoc-vault/backupconfig/vaultconfig?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYS1hZGhvYy12YXVsdC9iYWNrdXBjb25maWcvdmF1bHRjb25maWc/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "PATCH", + "RequestBody": "{\r\n \"properties\": {\r\n \"enhancedSecurityState\": \"Enabled\",\r\n \"softDeleteFeatureState\": \"Disabled\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "813c7664-f512-4f68-8bea-aac7e17f9322" + "99dc1e6f-27bb-4b00-bb6e-78222a340941" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "35" + "111" ] }, "ResponseHeaders": { @@ -155,29 +167,38 @@ "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "X-Content-Type-Options": [ + "nosniff" ], "x-ms-request-id": [ - "d5c50760-d99e-448d-affa-64d80f55655c" - ], - "x-ms-correlation-request-id": [ - "d5c50760-d99e-448d-affa-64d80f55655c" + "d5fa5957-1824-44ca-93b9-870c197fa227" ], - "x-ms-routing-request-id": [ - "CENTRALUS:20220224T224001Z:d5c50760-d99e-448d-affa-64d80f55655c" + "x-ms-client-request-id": [ + "99dc1e6f-27bb-4b00-bb6e-78222a340941" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ - "nosniff" + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "d5fa5957-1824-44ca-93b9-870c197fa227" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220517T135411Z:d5fa5957-1824-44ca-93b9-870c197fa227" ], "Date": [ - "Thu, 24 Feb 2022 22:40:01 GMT" + "Tue, 17 May 2022 13:54:11 GMT" ], "Content-Length": [ - "192" + "372" ], "Content-Type": [ "application/json; charset=utf-8" @@ -186,26 +207,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9\",\r\n \"name\": \"PSTestRG130a7cb9\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", - "StatusCode": 201 + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiaga-adhoc-vault/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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.RecoveryServices/vaults/PSTestRSV130a7cb9?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMTMwYTdjYjkvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YxMzBhN2NiOT9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiaga-adhoc-vault/backupProtectedItems?$filter=backupManagementType%20eq%20'AzureIaasVM'%20and%20itemType%20eq%20'VM'&api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYS1hZGhvYy12YXVsdC9iYWNrdXBQcm90ZWN0ZWRJdGVtcz8kZmlsdGVyPWJhY2t1cE1hbmFnZW1lbnRUeXBlJTIwZXElMjAnQXp1cmVJYWFzVk0nJTIwYW5kJTIwaXRlbVR5cGUlMjBlcSUyMCdWTScmYXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d07fbe78-00ec-47d6-a330-27e4f3afd56b" + "9622184d-4c14-4b3a-aa1e-c88b7c6bb3b0" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesClient/4.3.2.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -215,63 +236,72 @@ "Pragma": [ "no-cache" ], - "x-ms-failure-cause": [ - "gateway" + "X-Content-Type-Options": [ + "nosniff" ], "x-ms-request-id": [ - "a7f45c3a-d0e5-4ed4-a1a0-bf019fb7c79c" - ], - "x-ms-correlation-request-id": [ - "a7f45c3a-d0e5-4ed4-a1a0-bf019fb7c79c" + "f9d1f47a-2d38-432a-a5ba-f0b794c45589" ], - "x-ms-routing-request-id": [ - "CENTRALUS:20220224T224004Z:a7f45c3a-d0e5-4ed4-a1a0-bf019fb7c79c" + "x-ms-client-request-id": [ + "9622184d-4c14-4b3a-aa1e-c88b7c6bb3b0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ - "nosniff" + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "299" + ], + "x-ms-correlation-request-id": [ + "f9d1f47a-2d38-432a-a5ba-f0b794c45589" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220517T135412Z:f9d1f47a-2d38-432a-a5ba-f0b794c45589" ], "Date": [ - "Thu, 24 Feb 2022 22:40:04 GMT" + "Tue, 17 May 2022 13:54:12 GMT" + ], + "Content-Length": [ + "3753" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" - ], - "Content-Length": [ - "239" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.RecoveryServices/vaults/PSTestRSV130a7cb9' under resource group 'PSTestRG130a7cb9' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", - "StatusCode": 404 + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiaga-adhoc-vault/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;hiagarg;hiaga-adhoc-vm/protectedItems/VM;iaasvmcontainerv2;hiagarg;hiaga-adhoc-vm\",\r\n \"name\": \"VM;iaasvmcontainerv2;hiagarg;hiaga-adhoc-vm\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems\",\r\n \"properties\": {\r\n \"kpisHealths\": {\r\n \"RestoreOperationStatusKPI\": {\r\n \"resourceHealthStatus\": \"Healthy\",\r\n \"resourceHealthDetails\": [\r\n {\r\n \"code\": 0,\r\n \"title\": \"Success\",\r\n \"message\": \"\",\r\n \"recommendations\": []\r\n }\r\n ]\r\n },\r\n \"BackupOperationStatusKPI\": {\r\n \"resourceHealthStatus\": \"Healthy\",\r\n \"resourceHealthDetails\": [\r\n {\r\n \"code\": 0,\r\n \"title\": \"Success\",\r\n \"message\": \"\",\r\n \"recommendations\": []\r\n }\r\n ]\r\n }\r\n },\r\n \"friendlyName\": \"hiaga-adhoc-vm\",\r\n \"virtualMachineId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.Compute/virtualMachines/hiaga-adhoc-vm\",\r\n \"protectionStatus\": \"Healthy\",\r\n \"protectionState\": \"Protected\",\r\n \"healthStatus\": \"Passed\",\r\n \"healthDetails\": [\r\n {\r\n \"code\": 400239,\r\n \"title\": \"IaasVmHealthGreenDefault\",\r\n \"message\": \"Backup pre-check status of this virtual machine is OK.\",\r\n \"recommendations\": []\r\n }\r\n ],\r\n \"lastBackupStatus\": \"Completed\",\r\n \"lastBackupTime\": \"2022-05-16T16:33:08.9641513Z\",\r\n \"protectedItemDataId\": \"41182272\",\r\n \"extendedProperties\": {},\r\n \"protectedItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"workloadType\": \"VM\",\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiaga-adhoc-vm\",\r\n \"sourceResourceId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.Compute/virtualMachines/hiaga-adhoc-vm\",\r\n \"policyId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiaga-adhoc-vault/backupPolicies/DefaultPolicy\",\r\n \"policyName\": \"DefaultPolicy\",\r\n \"lastRecoveryPoint\": \"2022-05-16T16:33:12.7783776Z\",\r\n \"isArchiveEnabled\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiaga-adhoc-vault/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;hiagarg;hiaganewvm3/protectedItems/VM;iaasvmcontainerv2;hiagarg;hiaganewvm3\",\r\n \"name\": \"VM;iaasvmcontainerv2;hiagarg;hiaganewvm3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems\",\r\n \"properties\": {\r\n \"kpisHealths\": {\r\n \"BackupOperationStatusKPI\": {\r\n \"resourceHealthStatus\": \"Healthy\",\r\n \"resourceHealthDetails\": [\r\n {\r\n \"code\": 0,\r\n \"title\": \"Success\",\r\n \"message\": \"\",\r\n \"recommendations\": []\r\n }\r\n ]\r\n }\r\n },\r\n \"friendlyName\": \"hiaganewVM3\",\r\n \"virtualMachineId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.Compute/virtualMachines/hiaganewVM3\",\r\n \"protectionStatus\": \"Healthy\",\r\n \"protectionState\": \"Protected\",\r\n \"healthStatus\": \"Passed\",\r\n \"healthDetails\": [\r\n {\r\n \"code\": 400239,\r\n \"title\": \"IaasVmHealthGreenDefault\",\r\n \"message\": \"Backup pre-check status of this virtual machine is OK.\",\r\n \"recommendations\": []\r\n }\r\n ],\r\n \"lastBackupStatus\": \"Completed\",\r\n \"lastBackupTime\": \"2022-05-16T16:39:06.8520173Z\",\r\n \"protectedItemDataId\": \"418184849\",\r\n \"extendedProperties\": {},\r\n \"protectedItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"workloadType\": \"VM\",\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiaganewvm3\",\r\n \"sourceResourceId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.Compute/virtualMachines/hiaganewVM3\",\r\n \"policyId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiaga-adhoc-vault/backupPolicies/DefaultPolicy\",\r\n \"policyName\": \"DefaultPolicy\",\r\n \"lastRecoveryPoint\": \"2022-05-16T16:39:10.0798648Z\",\r\n \"isArchiveEnabled\": false\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.RecoveryServices/vaults/PSTestRSV130a7cb9?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMTMwYTdjYjkvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YxMzBhN2NiOT9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"southeastasia\"\r\n}", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiaga-adhoc-vault/backupFabrics/Azure/protectionContainers/IaasVMContainer%3Biaasvmcontainerv2%3Bhiagarg%3Bhiaga-adhoc-vm/protectedItems/VM%3Biaasvmcontainerv2%3Bhiagarg%3Bhiaga-adhoc-vm/backup?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYS1hZGhvYy12YXVsdC9iYWNrdXBGYWJyaWNzL0F6dXJlL3Byb3RlY3Rpb25Db250YWluZXJzL0lhYXNWTUNvbnRhaW5lciUzQmlhYXN2bWNvbnRhaW5lcnYyJTNCaGlhZ2FyZyUzQmhpYWdhLWFkaG9jLXZtL3Byb3RlY3RlZEl0ZW1zL1ZNJTNCaWFhc3ZtY29udGFpbmVydjIlM0JoaWFnYXJnJTNCaGlhZ2EtYWRob2Mtdm0vYmFja3VwP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"properties\": {\r\n \"objectType\": \"IaasVMBackupRequest\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "659859f3-1c31-431b-89b9-f58f74bb94f8" + "a2b4d68f-816f-4208-a9bf-a7d142ebc4cd" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesClient/4.3.2.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "98" + "69" ] }, "ResponseHeaders": { @@ -281,63 +311,72 @@ "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiaga-adhoc-vault/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;hiagarg;hiaga-adhoc-vm/protectedItems/VM;iaasvmcontainerv2;hiagarg;hiaga-adhoc-vm/operationResults/f3fa89d1-ecb9-4c2e-a1d4-f43942587706?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiaga-adhoc-vault/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;hiagarg;hiaga-adhoc-vm/protectedItems/VM;iaasvmcontainerv2;hiagarg;hiaga-adhoc-vm/operationsStatus/f3fa89d1-ecb9-4c2e-a1d4-f43942587706?api-version=2022-02-01" + ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "aaef47d9-fdb2-4cfd-825f-7317d4090895" + "ddbc9846-bab9-432f-adfd-6912b164a7ef" ], "x-ms-client-request-id": [ - "659859f3-1c31-431b-89b9-f58f74bb94f8" + "a2b4d68f-816f-4208-a9bf-a7d142ebc4cd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Server": [ - "Microsoft-IIS/10.0" + "Kestrel" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "209" + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" ], "x-ms-correlation-request-id": [ - "aaef47d9-fdb2-4cfd-825f-7317d4090895" + "ddbc9846-bab9-432f-adfd-6912b164a7ef" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T224014Z:aaef47d9-fdb2-4cfd-825f-7317d4090895" + "WESTINDIA:20220517T135413Z:ddbc9846-bab9-432f-adfd-6912b164a7ef" ], "Date": [ - "Thu, 24 Feb 2022 22:40:14 GMT" - ], - "Content-Length": [ - "466" - ], - "Content-Type": [ - "application/json" + "Tue, 17 May 2022 13:54:13 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, - "ResponseBody": "{\r\n \"location\": \"southeastasia\",\r\n \"name\": \"PSTestRSV130a7cb9\",\r\n \"etag\": \"W/\\\"datetime'2022-02-24T22%3A40%3A12.8243278Z'\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateEndpointStateForBackup\": \"None\",\r\n \"privateEndpointStateForSiteRecovery\": \"None\"\r\n },\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.RecoveryServices/vaults/PSTestRSV130a7cb9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n }\r\n}", - "StatusCode": 201 + "ResponseBody": "", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.RecoveryServices/vaults/PSTestRSV130a7cb9/backupconfig/vaultconfig?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMTMwYTdjYjkvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YxMzBhN2NiOS9iYWNrdXBjb25maWcvdmF1bHRjb25maWc/YXBpLXZlcnNpb249MjAyMS0xMC0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiaga-adhoc-vault/backupOperations/f3fa89d1-ecb9-4c2e-a1d4-f43942587706?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYS1hZGhvYy12YXVsdC9iYWNrdXBPcGVyYXRpb25zL2YzZmE4OWQxLWVjYjktNGMyZS1hMWQ0LWY0Mzk0MjU4NzcwNj9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "81db5a11-c266-499f-9aab-602827745ebc" + "a2b4d68f-816f-4208-a9bf-a7d142ebc4cd" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -351,69 +390,62 @@ "nosniff" ], "x-ms-request-id": [ - "6f807438-cab1-49e8-8f19-4a6735511709" + "d013c11f-73c9-4de4-94ca-69dd004538a9" ], "x-ms-client-request-id": [ - "81db5a11-c266-499f-9aab-602827745ebc", - "81db5a11-c266-499f-9aab-602827745ebc" + "a2b4d68f-816f-4208-a9bf-a7d142ebc4cd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Server": [ - "Microsoft-IIS/10.0" + "Kestrel" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "149" + "299" ], "x-ms-correlation-request-id": [ - "6f807438-cab1-49e8-8f19-4a6735511709" + "d013c11f-73c9-4de4-94ca-69dd004538a9" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T224016Z:6f807438-cab1-49e8-8f19-4a6735511709" + "WESTINDIA:20220517T135414Z:d013c11f-73c9-4de4-94ca-69dd004538a9" ], "Date": [ - "Thu, 24 Feb 2022 22:40:16 GMT" + "Tue, 17 May 2022 13:54:13 GMT" ], "Content-Length": [ - "380" + "188" ], "Content-Type": [ - "application/json" + "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.RecoveryServices/vaults/PSTestRSV130a7cb9/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}", + "ResponseBody": "{\r\n \"id\": \"f3fa89d1-ecb9-4c2e-a1d4-f43942587706\",\r\n \"name\": \"f3fa89d1-ecb9-4c2e-a1d4-f43942587706\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T13:54:13.4133042Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.RecoveryServices/vaults/PSTestRSV130a7cb9/backupconfig/vaultconfig?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMTMwYTdjYjkvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YxMzBhN2NiOS9iYWNrdXBjb25maWcvdmF1bHRjb25maWc/YXBpLXZlcnNpb249MjAyMS0xMC0wMQ==", - "RequestMethod": "PATCH", - "RequestBody": "{\r\n \"properties\": {\r\n \"enhancedSecurityState\": \"Enabled\",\r\n \"softDeleteFeatureState\": \"Disabled\"\r\n }\r\n}", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiaga-adhoc-vault/backupOperations/f3fa89d1-ecb9-4c2e-a1d4-f43942587706?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYS1hZGhvYy12YXVsdC9iYWNrdXBPcGVyYXRpb25zL2YzZmE4OWQxLWVjYjktNGMyZS1hMWQ0LWY0Mzk0MjU4NzcwNj9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "81db5a11-c266-499f-9aab-602827745ebc" + "a2b4d68f-816f-4208-a9bf-a7d142ebc4cd" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "111" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -427,63 +459,62 @@ "nosniff" ], "x-ms-request-id": [ - "570f3722-a6cf-478e-846f-408f34032583" + "39df1921-3f77-4e41-8bd7-99055ea7a8d4" ], "x-ms-client-request-id": [ - "81db5a11-c266-499f-9aab-602827745ebc", - "81db5a11-c266-499f-9aab-602827745ebc" + "a2b4d68f-816f-4208-a9bf-a7d142ebc4cd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Server": [ - "Microsoft-IIS/10.0" + "Kestrel" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "298" ], "x-ms-correlation-request-id": [ - "570f3722-a6cf-478e-846f-408f34032583" + "39df1921-3f77-4e41-8bd7-99055ea7a8d4" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T224017Z:570f3722-a6cf-478e-846f-408f34032583" + "WESTINDIA:20220517T135420Z:39df1921-3f77-4e41-8bd7-99055ea7a8d4" ], "Date": [ - "Thu, 24 Feb 2022 22:40:17 GMT" + "Tue, 17 May 2022 13:54:19 GMT" ], "Content-Length": [ - "381" + "304" ], "Content-Type": [ - "application/json" + "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.RecoveryServices/vaults/PSTestRSV130a7cb9/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}", + "ResponseBody": "{\r\n \"id\": \"f3fa89d1-ecb9-4c2e-a1d4-f43942587706\",\r\n \"name\": \"f3fa89d1-ecb9-4c2e-a1d4-f43942587706\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-05-17T13:54:13.4133042Z\",\r\n \"endTime\": \"2022-05-17T13:54:13.4133042Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"a04b6a4f-71f8-4762-a6c0-6c4aa1c85f6e\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.Compute/virtualMachines/PSTestVM130a70?api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMTMwYTdjYjkvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy9QU1Rlc3RWTTEzMGE3MD9hcGktdmVyc2lvbj0yMDIxLTExLTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiaga-adhoc-vault/backupOperations/f3fa89d1-ecb9-4c2e-a1d4-f43942587706?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYS1hZGhvYy12YXVsdC9iYWNrdXBPcGVyYXRpb25zL2YzZmE4OWQxLWVjYjktNGMyZS1hMWQ0LWY0Mzk0MjU4NzcwNj9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "25262e02-79af-447e-a911-0fbec8639f4b" + "a2b4d68f-816f-4208-a9bf-a7d142ebc4cd" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -493,54 +524,66 @@ "Pragma": [ "no-cache" ], - "x-ms-failure-cause": [ - "gateway" + "X-Content-Type-Options": [ + "nosniff" ], "x-ms-request-id": [ - "21f57b5a-38d8-4f9b-a353-1f136c39dccd" + "2eda1abd-3006-4b23-a7c9-a5f63eaf4ab3" ], - "x-ms-correlation-request-id": [ - "21f57b5a-38d8-4f9b-a353-1f136c39dccd" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20220224T224020Z:21f57b5a-38d8-4f9b-a353-1f136c39dccd" + "x-ms-client-request-id": [ + "a2b4d68f-816f-4208-a9bf-a7d142ebc4cd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ - "nosniff" + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "297" + ], + "x-ms-correlation-request-id": [ + "2eda1abd-3006-4b23-a7c9-a5f63eaf4ab3" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220517T135420Z:2eda1abd-3006-4b23-a7c9-a5f63eaf4ab3" ], "Date": [ - "Thu, 24 Feb 2022 22:40:20 GMT" + "Tue, 17 May 2022 13:54:20 GMT" + ], + "Content-Length": [ + "304" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" - ], - "Content-Length": [ - "236" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Compute/virtualMachines/PSTestVM130a70' under resource group 'PSTestRG130a7cb9' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", - "StatusCode": 404 + "ResponseBody": "{\r\n \"id\": \"f3fa89d1-ecb9-4c2e-a1d4-f43942587706\",\r\n \"name\": \"f3fa89d1-ecb9-4c2e-a1d4-f43942587706\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-05-17T13:54:13.4133042Z\",\r\n \"endTime\": \"2022-05-17T13:54:13.4133042Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"a04b6a4f-71f8-4762-a6c0-6c4aa1c85f6e\"\r\n }\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.Compute/virtualMachines/PSTestVM130a70?api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMTMwYTdjYjkvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy9QU1Rlc3RWTTEzMGE3MD9hcGktdmVyc2lvbj0yMDIxLTExLTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiaga-adhoc-vault/backupJobs/a04b6a4f-71f8-4762-a6c0-6c4aa1c85f6e?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYS1hZGhvYy12YXVsdC9iYWNrdXBKb2JzL2EwNGI2YTRmLTcxZjgtNDc2Mi1hNmMwLTZjNGFhMWM4NWY2ZT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b959b998-91e5-4dd3-bd9f-2828b87b8c6b" + "a2b4d68f-816f-4208-a9bf-a7d142ebc4cd" + ], + "Accept-Language": [ + "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -550,36 +593,38 @@ "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/LowCostGet3Min;3998,Microsoft.Compute/LowCostGet30Min;31985" + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "84b532f5-a093-4005-ae4a-4956679fd268" + ], + "x-ms-client-request-id": [ + "a2b4d68f-816f-4208-a9bf-a7d142ebc4cd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ - "f48e31e3-bc04-4c1d-83eb-60873d70dc0d" - ], "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "Microsoft-IIS/10.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "299" ], "x-ms-correlation-request-id": [ - "9a485ad3-af6b-4397-a104-c5a6a49a4aab" + "84b532f5-a093-4005-ae4a-4956679fd268" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T224256Z:9a485ad3-af6b-4397-a104-c5a6a49a4aab" - ], - "X-Content-Type-Options": [ - "nosniff" + "WESTINDIA:20220517T135421Z:84b532f5-a093-4005-ae4a-4956679fd268" ], "Date": [ - "Thu, 24 Feb 2022 22:42:55 GMT" + "Tue, 17 May 2022 13:54:21 GMT" ], "Content-Length": [ - "2265" + "950" ], "Content-Type": [ "application/json; charset=utf-8" @@ -588,26 +633,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"PSTestVM130a70\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.Compute/virtualMachines/PSTestVM130a70\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MabUsed\": \"Yes\",\r\n \"AutoShutDown\": \"No\",\r\n \"Purpose\": \"PSTest\",\r\n \"Owner\": \"sarath\",\r\n \"DeleteBy\": \"06-2022\",\r\n \"azsecpack\": \"nonprod\",\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": \"true\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"efa126cf-2a94-43b1-9858-ea4716ca719e\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D1_v2\"\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.4946.220202\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"PSTestVM130a70_OsDisk_1_dccefbedd9e943c7be3d52e63bcd5aca\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.Compute/disks/PSTestVM130a70_OsDisk_1_dccefbedd9e943c7be3d52e63bcd5aca\"\r\n },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"PSTestVM130a70\",\r\n \"adminUsername\": \"demouser\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"AutomaticByOS\",\r\n \"assessmentMode\": \"ImageDefault\"\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.Network/networkInterfaces/PSTestNIC130a70\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"timeCreated\": \"2022-02-24T17:41:02.8181957-05:00\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiaga-adhoc-vault/backupJobs/a04b6a4f-71f8-4762-a6c0-6c4aa1c85f6e\",\r\n \"name\": \"a04b6a4f-71f8-4762-a6c0-6c4aa1c85f6e\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiaga-adhoc-vm\",\r\n \"duration\": \"PT7.8627042S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"hiaga-adhoc-vm\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"hiaga-adhoc-vm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T13:54:13.4133042Z\",\r\n \"activityId\": \"a2b4d68f-816f-4208-a9bf-a7d142ebc4cd\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.Compute/virtualMachines/PSTestVM130a70?api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMTMwYTdjYjkvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy9QU1Rlc3RWTTEzMGE3MD9hcGktdmVyc2lvbj0yMDIxLTExLTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiaga-adhoc-vault/backupJobs/a04b6a4f-71f8-4762-a6c0-6c4aa1c85f6e?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYS1hZGhvYy12YXVsdC9iYWNrdXBKb2JzL2EwNGI2YTRmLTcxZjgtNDc2Mi1hNmMwLTZjNGFhMWM4NWY2ZT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f4d02912-c52c-4de1-abe6-8b70283ce9b2" + "a2b4d68f-816f-4208-a9bf-a7d142ebc4cd" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -617,36 +662,38 @@ "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/LowCostGet3Min;3994,Microsoft.Compute/LowCostGet30Min;31984" + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "18868a91-27fa-412a-a3ba-4d82a617e5ed" + ], + "x-ms-client-request-id": [ + "a2b4d68f-816f-4208-a9bf-a7d142ebc4cd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ - "f4119e60-6d0a-4e4d-82ce-405f3e42f85b" - ], "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "Microsoft-IIS/10.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "298" ], "x-ms-correlation-request-id": [ - "e2b2f230-3944-4a6e-a611-64895223be38" + "18868a91-27fa-412a-a3ba-4d82a617e5ed" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T224507Z:e2b2f230-3944-4a6e-a611-64895223be38" - ], - "X-Content-Type-Options": [ - "nosniff" + "WESTINDIA:20220517T135422Z:18868a91-27fa-412a-a3ba-4d82a617e5ed" ], "Date": [ - "Thu, 24 Feb 2022 22:45:06 GMT" + "Tue, 17 May 2022 13:54:22 GMT" ], "Content-Length": [ - "2828" + "950" ], "Content-Type": [ "application/json; charset=utf-8" @@ -655,26 +702,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"PSTestVM130a70\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.Compute/virtualMachines/PSTestVM130a70\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MabUsed\": \"Yes\",\r\n \"AutoShutDown\": \"No\",\r\n \"Purpose\": \"PSTest\",\r\n \"Owner\": \"sarath\",\r\n \"DeleteBy\": \"06-2022\",\r\n \"azsecpack\": \"nonprod\",\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": \"true\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"efa126cf-2a94-43b1-9858-ea4716ca719e\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D1_v2\"\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.4946.220202\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"PSTestVM130a70_OsDisk_1_dccefbedd9e943c7be3d52e63bcd5aca\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.Compute/disks/PSTestVM130a70_OsDisk_1_dccefbedd9e943c7be3d52e63bcd5aca\"\r\n },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"PSTestVM130a70\",\r\n \"adminUsername\": \"demouser\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"AutomaticByOS\",\r\n \"assessmentMode\": \"ImageDefault\"\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.Network/networkInterfaces/PSTestNIC130a70\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"timeCreated\": \"2022-02-24T17:41:02.8181957-05:00\"\r\n },\r\n \"resources\": [\r\n {\r\n \"name\": \"BGInfo\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.Compute/virtualMachines/PSTestVM130a70/extensions/BGInfo\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"southeastasia\",\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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiaga-adhoc-vault/backupJobs/a04b6a4f-71f8-4762-a6c0-6c4aa1c85f6e\",\r\n \"name\": \"a04b6a4f-71f8-4762-a6c0-6c4aa1c85f6e\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiaga-adhoc-vm\",\r\n \"duration\": \"PT8.9565785S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"hiaga-adhoc-vm\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"hiaga-adhoc-vm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T13:54:13.4133042Z\",\r\n \"activityId\": \"a2b4d68f-816f-4208-a9bf-a7d142ebc4cd\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.Network/virtualNetworks/PSTestVNET130a70?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMTMwYTdjYjkvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy9QU1Rlc3RWTkVUMTMwYTcwP2FwaS12ZXJzaW9uPTIwMjEtMDUtMDE=", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiaga-adhoc-vault/backupJobs/a04b6a4f-71f8-4762-a6c0-6c4aa1c85f6e?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYS1hZGhvYy12YXVsdC9iYWNrdXBKb2JzL2EwNGI2YTRmLTcxZjgtNDc2Mi1hNmMwLTZjNGFhMWM4NWY2ZT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "dfdbad21-8b34-46ce-b904-ffc71da9416b" + "a2b4d68f-816f-4208-a9bf-a7d142ebc4cd" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -684,54 +731,66 @@ "Pragma": [ "no-cache" ], - "x-ms-failure-cause": [ - "gateway" + "X-Content-Type-Options": [ + "nosniff" ], "x-ms-request-id": [ - "f4c56a7c-47a9-4918-8b32-3903dc063de6" - ], - "x-ms-correlation-request-id": [ - "f4c56a7c-47a9-4918-8b32-3903dc063de6" + "8173c3e7-f09c-4721-8095-23e90a1e3eb7" ], - "x-ms-routing-request-id": [ - "CENTRALUS:20220224T224022Z:f4c56a7c-47a9-4918-8b32-3903dc063de6" + "x-ms-client-request-id": [ + "a2b4d68f-816f-4208-a9bf-a7d142ebc4cd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ - "nosniff" + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "297" + ], + "x-ms-correlation-request-id": [ + "8173c3e7-f09c-4721-8095-23e90a1e3eb7" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220517T135453Z:8173c3e7-f09c-4721-8095-23e90a1e3eb7" ], "Date": [ - "Thu, 24 Feb 2022 22:40:21 GMT" + "Tue, 17 May 2022 13:54:52 GMT" + ], + "Content-Length": [ + "951" ], "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/virtualNetworks/PSTestVNET130a70' under resource group 'PSTestRG130a7cb9' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", - "StatusCode": 404 + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiaga-adhoc-vault/backupJobs/a04b6a4f-71f8-4762-a6c0-6c4aa1c85f6e\",\r\n \"name\": \"a04b6a4f-71f8-4762-a6c0-6c4aa1c85f6e\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiaga-adhoc-vm\",\r\n \"duration\": \"PT39.8920909S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"hiaga-adhoc-vm\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"hiaga-adhoc-vm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T13:54:13.4133042Z\",\r\n \"activityId\": \"a2b4d68f-816f-4208-a9bf-a7d142ebc4cd\"\r\n }\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.Network/virtualNetworks/PSTestVNET130a70?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMTMwYTdjYjkvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy9QU1Rlc3RWTkVUMTMwYTcwP2FwaS12ZXJzaW9uPTIwMjEtMDUtMDE=", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiaga-adhoc-vault/backupJobs/a04b6a4f-71f8-4762-a6c0-6c4aa1c85f6e?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYS1hZGhvYy12YXVsdC9iYWNrdXBKb2JzL2EwNGI2YTRmLTcxZjgtNDc2Mi1hNmMwLTZjNGFhMWM4NWY2ZT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "dfdbad21-8b34-46ce-b904-ffc71da9416b" + "a2b4d68f-816f-4208-a9bf-a7d142ebc4cd" + ], + "Accept-Language": [ + "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -741,39 +800,38 @@ "Pragma": [ "no-cache" ], - "ETag": [ - "W/\"c8cd7de7-9f1b-4dc6-9fad-f4cdd606a683\"" + "X-Content-Type-Options": [ + "nosniff" ], "x-ms-request-id": [ - "eccd28d3-44e9-43c1-8908-f4aa9ad10a17" + "8070751f-6f46-4a29-83dc-db7ab1b2e3e3" ], - "x-ms-correlation-request-id": [ - "c76b6225-3748-4a66-a1d9-d89d65843dc9" - ], - "x-ms-arm-service-request-id": [ - "62cfe169-0cc8-4894-b41f-cd457f0a75ee" + "x-ms-client-request-id": [ + "a2b4d68f-816f-4208-a9bf-a7d142ebc4cd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "Microsoft-IIS/10.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "X-Powered-By": [ + "ASP.NET" ], - "x-ms-routing-request-id": [ - "CENTRALUS:20220224T224033Z:c76b6225-3748-4a66-a1d9-d89d65843dc9" + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "296" ], - "X-Content-Type-Options": [ - "nosniff" + "x-ms-correlation-request-id": [ + "8070751f-6f46-4a29-83dc-db7ab1b2e3e3" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220517T135524Z:8070751f-6f46-4a29-83dc-db7ab1b2e3e3" ], "Date": [ - "Thu, 24 Feb 2022 22:40:32 GMT" + "Tue, 17 May 2022 13:55:24 GMT" ], "Content-Length": [ - "1315" + "953" ], "Content-Type": [ "application/json; charset=utf-8" @@ -782,26 +840,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"PSTestVNET130a70\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.Network/virtualNetworks/PSTestVNET130a70\",\r\n \"etag\": \"W/\\\"c8cd7de7-9f1b-4dc6-9fad-f4cdd606a683\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"60b6768e-a486-424e-a71e-77303a401a0e\",\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\": \"PSTestSNC130a70\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.Network/virtualNetworks/PSTestVNET130a70/subnets/PSTestSNC130a70\",\r\n \"etag\": \"W/\\\"c8cd7de7-9f1b-4dc6-9fad-f4cdd606a683\\\"\",\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 },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiaga-adhoc-vault/backupJobs/a04b6a4f-71f8-4762-a6c0-6c4aa1c85f6e\",\r\n \"name\": \"a04b6a4f-71f8-4762-a6c0-6c4aa1c85f6e\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiaga-adhoc-vm\",\r\n \"duration\": \"PT1M10.8012111S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"hiaga-adhoc-vm\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"hiaga-adhoc-vm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T13:54:13.4133042Z\",\r\n \"activityId\": \"a2b4d68f-816f-4208-a9bf-a7d142ebc4cd\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.Network/virtualNetworks/PSTestVNET130a70?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMTMwYTdjYjkvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy9QU1Rlc3RWTkVUMTMwYTcwP2FwaS12ZXJzaW9uPTIwMjEtMDUtMDE=", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiaga-adhoc-vault/backupJobs/a04b6a4f-71f8-4762-a6c0-6c4aa1c85f6e?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYS1hZGhvYy12YXVsdC9iYWNrdXBKb2JzL2EwNGI2YTRmLTcxZjgtNDc2Mi1hNmMwLTZjNGFhMWM4NWY2ZT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "dfdbad21-8b34-46ce-b904-ffc71da9416b" + "a2b4d68f-816f-4208-a9bf-a7d142ebc4cd" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -811,39 +869,38 @@ "Pragma": [ "no-cache" ], - "ETag": [ - "W/\"c8cd7de7-9f1b-4dc6-9fad-f4cdd606a683\"" + "X-Content-Type-Options": [ + "nosniff" ], "x-ms-request-id": [ - "a407eb31-8c19-4291-9ba8-25276c0450ca" + "c47708d6-a3ef-4e70-8a21-48b0112bf63d" ], - "x-ms-correlation-request-id": [ - "ffb05f74-bff8-4850-bb3c-a59e44f56f51" - ], - "x-ms-arm-service-request-id": [ - "89c560bb-b8b8-4a98-9891-7e8ade6492b0" + "x-ms-client-request-id": [ + "a2b4d68f-816f-4208-a9bf-a7d142ebc4cd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "Microsoft-IIS/10.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "X-Powered-By": [ + "ASP.NET" ], - "x-ms-routing-request-id": [ - "CENTRALUS:20220224T224034Z:ffb05f74-bff8-4850-bb3c-a59e44f56f51" + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "295" ], - "X-Content-Type-Options": [ - "nosniff" + "x-ms-correlation-request-id": [ + "c47708d6-a3ef-4e70-8a21-48b0112bf63d" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220517T135555Z:c47708d6-a3ef-4e70-8a21-48b0112bf63d" ], "Date": [ - "Thu, 24 Feb 2022 22:40:33 GMT" + "Tue, 17 May 2022 13:55:54 GMT" ], "Content-Length": [ - "1315" + "953" ], "Content-Type": [ "application/json; charset=utf-8" @@ -852,32 +909,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"PSTestVNET130a70\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.Network/virtualNetworks/PSTestVNET130a70\",\r\n \"etag\": \"W/\\\"c8cd7de7-9f1b-4dc6-9fad-f4cdd606a683\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"60b6768e-a486-424e-a71e-77303a401a0e\",\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\": \"PSTestSNC130a70\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.Network/virtualNetworks/PSTestVNET130a70/subnets/PSTestSNC130a70\",\r\n \"etag\": \"W/\\\"c8cd7de7-9f1b-4dc6-9fad-f4cdd606a683\\\"\",\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 },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiaga-adhoc-vault/backupJobs/a04b6a4f-71f8-4762-a6c0-6c4aa1c85f6e\",\r\n \"name\": \"a04b6a4f-71f8-4762-a6c0-6c4aa1c85f6e\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiaga-adhoc-vm\",\r\n \"duration\": \"PT1M41.8507012S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"hiaga-adhoc-vm\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"hiaga-adhoc-vm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T13:54:13.4133042Z\",\r\n \"activityId\": \"a2b4d68f-816f-4208-a9bf-a7d142ebc4cd\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.Network/virtualNetworks/PSTestVNET130a70?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMTMwYTdjYjkvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy9QU1Rlc3RWTkVUMTMwYTcwP2FwaS12ZXJzaW9uPTIwMjEtMDUtMDE=", - "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 \"applicationGatewayIpConfigurations\": []\r\n },\r\n \"name\": \"PSTestSNC130a70\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"ipAllocations\": []\r\n },\r\n \"location\": \"southeastasia\"\r\n}", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiaga-adhoc-vault/backupJobs/a04b6a4f-71f8-4762-a6c0-6c4aa1c85f6e?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYS1hZGhvYy12YXVsdC9iYWNrdXBKb2JzL2EwNGI2YTRmLTcxZjgtNDc2Mi1hNmMwLTZjNGFhMWM4NWY2ZT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "dfdbad21-8b34-46ce-b904-ffc71da9416b" + "a2b4d68f-816f-4208-a9bf-a7d142ebc4cd" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "752" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -887,45 +938,38 @@ "Pragma": [ "no-cache" ], - "Retry-After": [ - "3" + "X-Content-Type-Options": [ + "nosniff" ], "x-ms-request-id": [ - "e99d0456-38ef-46f7-a15b-0a55c69f1fc0" - ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Network/locations/southeastasia/operations/e99d0456-38ef-46f7-a15b-0a55c69f1fc0?api-version=2021-05-01" - ], - "x-ms-correlation-request-id": [ - "e0496e04-0ebf-4c1d-9c33-74f51bf92dd3" + "13954ceb-e284-4008-9dcb-0e2de5d91af3" ], - "Azure-AsyncNotification": [ - "Enabled" - ], - "x-ms-arm-service-request-id": [ - "6564427b-c426-43cf-9d0b-f734c7e9ddf0" + "x-ms-client-request-id": [ + "a2b4d68f-816f-4208-a9bf-a7d142ebc4cd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "Microsoft-IIS/10.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "X-Powered-By": [ + "ASP.NET" ], - "x-ms-routing-request-id": [ - "CENTRALUS:20220224T224030Z:e0496e04-0ebf-4c1d-9c33-74f51bf92dd3" + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "294" ], - "X-Content-Type-Options": [ - "nosniff" + "x-ms-correlation-request-id": [ + "13954ceb-e284-4008-9dcb-0e2de5d91af3" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220517T135626Z:13954ceb-e284-4008-9dcb-0e2de5d91af3" ], "Date": [ - "Thu, 24 Feb 2022 22:40:29 GMT" + "Tue, 17 May 2022 13:56:26 GMT" ], "Content-Length": [ - "1313" + "953" ], "Content-Type": [ "application/json; charset=utf-8" @@ -934,23 +978,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"PSTestVNET130a70\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.Network/virtualNetworks/PSTestVNET130a70\",\r\n \"etag\": \"W/\\\"22f06084-2974-4d81-b328-40dd89fcbb71\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"60b6768e-a486-424e-a71e-77303a401a0e\",\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\": \"PSTestSNC130a70\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.Network/virtualNetworks/PSTestVNET130a70/subnets/PSTestSNC130a70\",\r\n \"etag\": \"W/\\\"22f06084-2974-4d81-b328-40dd89fcbb71\\\"\",\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 },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n }\r\n}", - "StatusCode": 201 + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiaga-adhoc-vault/backupJobs/a04b6a4f-71f8-4762-a6c0-6c4aa1c85f6e\",\r\n \"name\": \"a04b6a4f-71f8-4762-a6c0-6c4aa1c85f6e\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiaga-adhoc-vm\",\r\n \"duration\": \"PT2M12.6867174S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"hiaga-adhoc-vm\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"hiaga-adhoc-vm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T13:54:13.4133042Z\",\r\n \"activityId\": \"a2b4d68f-816f-4208-a9bf-a7d142ebc4cd\"\r\n }\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Network/locations/southeastasia/operations/e99d0456-38ef-46f7-a15b-0a55c69f1fc0?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2U5OWQwNDU2LTM4ZWYtNDZmNy1hMTViLTBhNTVjNjlmMWZjMD9hcGktdmVyc2lvbj0yMDIxLTA1LTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiaga-adhoc-vault/backupJobs/a04b6a4f-71f8-4762-a6c0-6c4aa1c85f6e?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYS1hZGhvYy12YXVsdC9iYWNrdXBKb2JzL2EwNGI2YTRmLTcxZjgtNDc2Mi1hNmMwLTZjNGFhMWM4NWY2ZT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "dfdbad21-8b34-46ce-b904-ffc71da9416b" + "a2b4d68f-816f-4208-a9bf-a7d142ebc4cd" + ], + "Accept-Language": [ + "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -960,36 +1007,38 @@ "Pragma": [ "no-cache" ], - "x-ms-request-id": [ - "f46ca3d8-07ea-41df-953d-ea130ead404f" + "X-Content-Type-Options": [ + "nosniff" ], - "x-ms-correlation-request-id": [ - "84de5105-7619-4a5d-9759-214ab6c1ac19" + "x-ms-request-id": [ + "9a851781-23a0-46df-8c26-846e25fffb39" ], - "x-ms-arm-service-request-id": [ - "42acc58a-689f-47a4-8f78-86fabcd8198a" + "x-ms-client-request-id": [ + "a2b4d68f-816f-4208-a9bf-a7d142ebc4cd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "Microsoft-IIS/10.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "X-Powered-By": [ + "ASP.NET" ], - "x-ms-routing-request-id": [ - "CENTRALUS:20220224T224033Z:84de5105-7619-4a5d-9759-214ab6c1ac19" + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "299" ], - "X-Content-Type-Options": [ - "nosniff" + "x-ms-correlation-request-id": [ + "9a851781-23a0-46df-8c26-846e25fffb39" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220517T135700Z:9a851781-23a0-46df-8c26-846e25fffb39" ], "Date": [ - "Thu, 24 Feb 2022 22:40:32 GMT" + "Tue, 17 May 2022 13:57:00 GMT" ], "Content-Length": [ - "29" + "953" ], "Content-Type": [ "application/json; charset=utf-8" @@ -998,26 +1047,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiaga-adhoc-vault/backupJobs/a04b6a4f-71f8-4762-a6c0-6c4aa1c85f6e\",\r\n \"name\": \"a04b6a4f-71f8-4762-a6c0-6c4aa1c85f6e\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiaga-adhoc-vm\",\r\n \"duration\": \"PT2M46.9004046S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"hiaga-adhoc-vm\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"hiaga-adhoc-vm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T13:54:13.4133042Z\",\r\n \"activityId\": \"a2b4d68f-816f-4208-a9bf-a7d142ebc4cd\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.Network/publicIPAddresses/pstestpublicdns130a70?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMTMwYTdjYjkvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BzdGVzdHB1YmxpY2RuczEzMGE3MD9hcGktdmVyc2lvbj0yMDIxLTA1LTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiaga-adhoc-vault/backupJobs/a04b6a4f-71f8-4762-a6c0-6c4aa1c85f6e?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYS1hZGhvYy12YXVsdC9iYWNrdXBKb2JzL2EwNGI2YTRmLTcxZjgtNDc2Mi1hNmMwLTZjNGFhMWM4NWY2ZT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "21b3381b-a050-47c2-ab87-0d8d68eb3031" + "a2b4d68f-816f-4208-a9bf-a7d142ebc4cd" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -1027,54 +1076,66 @@ "Pragma": [ "no-cache" ], - "x-ms-failure-cause": [ - "gateway" + "X-Content-Type-Options": [ + "nosniff" ], "x-ms-request-id": [ - "07552970-a971-454f-b4d9-5ab2462ccd9b" - ], - "x-ms-correlation-request-id": [ - "07552970-a971-454f-b4d9-5ab2462ccd9b" + "6de017c0-8088-4963-b96b-4a7b81517ffc" ], - "x-ms-routing-request-id": [ - "CENTRALUS:20220224T224034Z:07552970-a971-454f-b4d9-5ab2462ccd9b" + "x-ms-client-request-id": [ + "a2b4d68f-816f-4208-a9bf-a7d142ebc4cd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ - "nosniff" + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "298" + ], + "x-ms-correlation-request-id": [ + "6de017c0-8088-4963-b96b-4a7b81517ffc" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220517T135731Z:6de017c0-8088-4963-b96b-4a7b81517ffc" ], "Date": [ - "Thu, 24 Feb 2022 22:40:33 GMT" + "Tue, 17 May 2022 13:57:30 GMT" + ], + "Content-Length": [ + "952" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" - ], - "Content-Length": [ - "245" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/publicIPAddresses/pstestpublicdns130a70' under resource group 'PSTestRG130a7cb9' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", - "StatusCode": 404 + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiaga-adhoc-vault/backupJobs/a04b6a4f-71f8-4762-a6c0-6c4aa1c85f6e\",\r\n \"name\": \"a04b6a4f-71f8-4762-a6c0-6c4aa1c85f6e\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiaga-adhoc-vm\",\r\n \"duration\": \"PT3M17.934833S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"hiaga-adhoc-vm\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"hiaga-adhoc-vm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T13:54:13.4133042Z\",\r\n \"activityId\": \"a2b4d68f-816f-4208-a9bf-a7d142ebc4cd\"\r\n }\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.Network/publicIPAddresses/pstestpublicdns130a70?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMTMwYTdjYjkvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BzdGVzdHB1YmxpY2RuczEzMGE3MD9hcGktdmVyc2lvbj0yMDIxLTA1LTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiaga-adhoc-vault/backupJobs/a04b6a4f-71f8-4762-a6c0-6c4aa1c85f6e?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYS1hZGhvYy12YXVsdC9iYWNrdXBKb2JzL2EwNGI2YTRmLTcxZjgtNDc2Mi1hNmMwLTZjNGFhMWM4NWY2ZT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "21b3381b-a050-47c2-ab87-0d8d68eb3031" + "a2b4d68f-816f-4208-a9bf-a7d142ebc4cd" + ], + "Accept-Language": [ + "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -1084,39 +1145,38 @@ "Pragma": [ "no-cache" ], - "ETag": [ - "W/\"2216dc32-030a-42fa-80ed-fc1af26b847f\"" + "X-Content-Type-Options": [ + "nosniff" ], "x-ms-request-id": [ - "c2c984be-c3c2-4f84-8c48-fe62051d480e" - ], - "x-ms-correlation-request-id": [ - "5cad2ca7-3922-4089-b9ba-99661cd4e6cb" + "bad21490-d1a1-426c-baed-4555e02f438e" ], - "x-ms-arm-service-request-id": [ - "a752c771-4b4d-492f-803f-62ae2767adf0" + "x-ms-client-request-id": [ + "a2b4d68f-816f-4208-a9bf-a7d142ebc4cd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "Microsoft-IIS/10.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "X-Powered-By": [ + "ASP.NET" ], - "x-ms-routing-request-id": [ - "CENTRALUS:20220224T224040Z:5cad2ca7-3922-4089-b9ba-99661cd4e6cb" + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "297" ], - "X-Content-Type-Options": [ - "nosniff" + "x-ms-correlation-request-id": [ + "bad21490-d1a1-426c-baed-4555e02f438e" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220517T135802Z:bad21490-d1a1-426c-baed-4555e02f438e" ], "Date": [ - "Thu, 24 Feb 2022 22:40:40 GMT" + "Tue, 17 May 2022 13:58:02 GMT" ], "Content-Length": [ - "698" + "952" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1125,26 +1185,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"pstestpublicdns130a70\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.Network/publicIPAddresses/pstestpublicdns130a70\",\r\n \"etag\": \"W/\\\"2216dc32-030a-42fa-80ed-fc1af26b847f\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"88789c0a-c3d8-4e17-8391-5c338ea6961b\",\r\n \"ipAddress\": \"20.212.153.14\",\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 \"tier\": \"Regional\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiaga-adhoc-vault/backupJobs/a04b6a4f-71f8-4762-a6c0-6c4aa1c85f6e\",\r\n \"name\": \"a04b6a4f-71f8-4762-a6c0-6c4aa1c85f6e\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiaga-adhoc-vm\",\r\n \"duration\": \"PT3M48.908998S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"hiaga-adhoc-vm\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"hiaga-adhoc-vm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T13:54:13.4133042Z\",\r\n \"activityId\": \"a2b4d68f-816f-4208-a9bf-a7d142ebc4cd\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.Network/publicIPAddresses/pstestpublicdns130a70?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMTMwYTdjYjkvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BzdGVzdHB1YmxpY2RuczEzMGE3MD9hcGktdmVyc2lvbj0yMDIxLTA1LTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiaga-adhoc-vault/backupJobs/a04b6a4f-71f8-4762-a6c0-6c4aa1c85f6e?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYS1hZGhvYy12YXVsdC9iYWNrdXBKb2JzL2EwNGI2YTRmLTcxZjgtNDc2Mi1hNmMwLTZjNGFhMWM4NWY2ZT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "21b3381b-a050-47c2-ab87-0d8d68eb3031" + "a2b4d68f-816f-4208-a9bf-a7d142ebc4cd" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -1154,39 +1214,38 @@ "Pragma": [ "no-cache" ], - "ETag": [ - "W/\"2216dc32-030a-42fa-80ed-fc1af26b847f\"" + "X-Content-Type-Options": [ + "nosniff" ], "x-ms-request-id": [ - "98bfaabe-a03f-42b0-9f34-c46385f644d6" - ], - "x-ms-correlation-request-id": [ - "87cf9c16-2b8f-46a0-9364-8b5676a84ce2" + "b8eae454-39b7-4b97-bb7a-c3d784210644" ], - "x-ms-arm-service-request-id": [ - "0f23d69c-4017-430a-8b4e-f4d262ed2b38" + "x-ms-client-request-id": [ + "a2b4d68f-816f-4208-a9bf-a7d142ebc4cd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "Microsoft-IIS/10.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "X-Powered-By": [ + "ASP.NET" ], - "x-ms-routing-request-id": [ - "CENTRALUS:20220224T224041Z:87cf9c16-2b8f-46a0-9364-8b5676a84ce2" + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "296" ], - "X-Content-Type-Options": [ - "nosniff" + "x-ms-correlation-request-id": [ + "b8eae454-39b7-4b97-bb7a-c3d784210644" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220517T135833Z:b8eae454-39b7-4b97-bb7a-c3d784210644" ], "Date": [ - "Thu, 24 Feb 2022 22:40:41 GMT" + "Tue, 17 May 2022 13:58:33 GMT" ], "Content-Length": [ - "698" + "953" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1195,32 +1254,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"pstestpublicdns130a70\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.Network/publicIPAddresses/pstestpublicdns130a70\",\r\n \"etag\": \"W/\\\"2216dc32-030a-42fa-80ed-fc1af26b847f\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"88789c0a-c3d8-4e17-8391-5c338ea6961b\",\r\n \"ipAddress\": \"20.212.153.14\",\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 \"tier\": \"Regional\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiaga-adhoc-vault/backupJobs/a04b6a4f-71f8-4762-a6c0-6c4aa1c85f6e\",\r\n \"name\": \"a04b6a4f-71f8-4762-a6c0-6c4aa1c85f6e\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiaga-adhoc-vm\",\r\n \"duration\": \"PT4M19.7421479S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"hiaga-adhoc-vm\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"hiaga-adhoc-vm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T13:54:13.4133042Z\",\r\n \"activityId\": \"a2b4d68f-816f-4208-a9bf-a7d142ebc4cd\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.Network/publicIPAddresses/pstestpublicdns130a70?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMTMwYTdjYjkvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BzdGVzdHB1YmxpY2RuczEzMGE3MD9hcGktdmVyc2lvbj0yMDIxLTA1LTAx", - "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\": \"southeastasia\"\r\n}", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiaga-adhoc-vault/backupJobs/a04b6a4f-71f8-4762-a6c0-6c4aa1c85f6e?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYS1hZGhvYy12YXVsdC9iYWNrdXBKb2JzL2EwNGI2YTRmLTcxZjgtNDc2Mi1hNmMwLTZjNGFhMWM4NWY2ZT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "21b3381b-a050-47c2-ab87-0d8d68eb3031" + "a2b4d68f-816f-4208-a9bf-a7d142ebc4cd" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "169" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -1230,45 +1283,38 @@ "Pragma": [ "no-cache" ], - "Retry-After": [ - "1" + "X-Content-Type-Options": [ + "nosniff" ], "x-ms-request-id": [ - "e8150372-dd4d-4b5d-a8c7-a8ff8b43eabf" - ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Network/locations/southeastasia/operations/e8150372-dd4d-4b5d-a8c7-a8ff8b43eabf?api-version=2021-05-01" - ], - "x-ms-correlation-request-id": [ - "4956da61-28cf-434e-a1b7-bb1f2724f9e5" - ], - "Azure-AsyncNotification": [ - "Enabled" + "78480b4a-e721-4e59-a571-07a62fdbe35a" ], - "x-ms-arm-service-request-id": [ - "b94972c5-5422-457f-9122-56464822dd0c" + "x-ms-client-request-id": [ + "a2b4d68f-816f-4208-a9bf-a7d142ebc4cd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "Microsoft-IIS/10.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "X-Powered-By": [ + "ASP.NET" ], - "x-ms-routing-request-id": [ - "CENTRALUS:20220224T224039Z:4956da61-28cf-434e-a1b7-bb1f2724f9e5" + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "295" ], - "X-Content-Type-Options": [ - "nosniff" + "x-ms-correlation-request-id": [ + "78480b4a-e721-4e59-a571-07a62fdbe35a" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220517T135904Z:78480b4a-e721-4e59-a571-07a62fdbe35a" ], "Date": [ - "Thu, 24 Feb 2022 22:40:39 GMT" + "Tue, 17 May 2022 13:59:04 GMT" ], "Content-Length": [ - "662" + "953" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1277,23 +1323,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"pstestpublicdns130a70\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.Network/publicIPAddresses/pstestpublicdns130a70\",\r\n \"etag\": \"W/\\\"c1d493b5-b2d4-4a56-b068-b9fbfd217e75\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"88789c0a-c3d8-4e17-8391-5c338ea6961b\",\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 \"tier\": \"Regional\"\r\n }\r\n}", - "StatusCode": 201 + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiaga-adhoc-vault/backupJobs/a04b6a4f-71f8-4762-a6c0-6c4aa1c85f6e\",\r\n \"name\": \"a04b6a4f-71f8-4762-a6c0-6c4aa1c85f6e\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiaga-adhoc-vm\",\r\n \"duration\": \"PT4M50.5920604S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"hiaga-adhoc-vm\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"hiaga-adhoc-vm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T13:54:13.4133042Z\",\r\n \"activityId\": \"a2b4d68f-816f-4208-a9bf-a7d142ebc4cd\"\r\n }\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Network/locations/southeastasia/operations/e8150372-dd4d-4b5d-a8c7-a8ff8b43eabf?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2U4MTUwMzcyLWRkNGQtNGI1ZC1hOGM3LWE4ZmY4YjQzZWFiZj9hcGktdmVyc2lvbj0yMDIxLTA1LTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiaga-adhoc-vault/backupJobs/a04b6a4f-71f8-4762-a6c0-6c4aa1c85f6e?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYS1hZGhvYy12YXVsdC9iYWNrdXBKb2JzL2EwNGI2YTRmLTcxZjgtNDc2Mi1hNmMwLTZjNGFhMWM4NWY2ZT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "21b3381b-a050-47c2-ab87-0d8d68eb3031" + "a2b4d68f-816f-4208-a9bf-a7d142ebc4cd" + ], + "Accept-Language": [ + "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -1303,36 +1352,38 @@ "Pragma": [ "no-cache" ], - "x-ms-request-id": [ - "cd49b13f-ea37-45f5-92d6-3a697733d634" + "X-Content-Type-Options": [ + "nosniff" ], - "x-ms-correlation-request-id": [ - "62d45f35-3758-456c-8408-b9b647206744" + "x-ms-request-id": [ + "ed820ac4-a2e4-483e-b07a-dbc29f1d1a88" ], - "x-ms-arm-service-request-id": [ - "d8c46861-9b7c-4051-93bf-d930f5af375f" + "x-ms-client-request-id": [ + "a2b4d68f-816f-4208-a9bf-a7d142ebc4cd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "Microsoft-IIS/10.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "X-Powered-By": [ + "ASP.NET" ], - "x-ms-routing-request-id": [ - "CENTRALUS:20220224T224040Z:62d45f35-3758-456c-8408-b9b647206744" + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "294" ], - "X-Content-Type-Options": [ - "nosniff" + "x-ms-correlation-request-id": [ + "ed820ac4-a2e4-483e-b07a-dbc29f1d1a88" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220517T135935Z:ed820ac4-a2e4-483e-b07a-dbc29f1d1a88" ], "Date": [ - "Thu, 24 Feb 2022 22:40:40 GMT" + "Tue, 17 May 2022 13:59:34 GMT" ], "Content-Length": [ - "29" + "953" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1341,26 +1392,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiaga-adhoc-vault/backupJobs/a04b6a4f-71f8-4762-a6c0-6c4aa1c85f6e\",\r\n \"name\": \"a04b6a4f-71f8-4762-a6c0-6c4aa1c85f6e\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiaga-adhoc-vm\",\r\n \"duration\": \"PT5M21.4386366S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"hiaga-adhoc-vm\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"hiaga-adhoc-vm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T13:54:13.4133042Z\",\r\n \"activityId\": \"a2b4d68f-816f-4208-a9bf-a7d142ebc4cd\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG130a70?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMTMwYTdjYjkvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtTZWN1cml0eUdyb3Vwcy9QU1Rlc3ROU0cxMzBhNzA/YXBpLXZlcnNpb249MjAyMS0wNS0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiaga-adhoc-vault/backupJobs/a04b6a4f-71f8-4762-a6c0-6c4aa1c85f6e?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYS1hZGhvYy12YXVsdC9iYWNrdXBKb2JzL2EwNGI2YTRmLTcxZjgtNDc2Mi1hNmMwLTZjNGFhMWM4NWY2ZT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "94b57307-adf5-4ffb-bc4d-a981a76928ee" + "a2b4d68f-816f-4208-a9bf-a7d142ebc4cd" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -1370,54 +1421,66 @@ "Pragma": [ "no-cache" ], - "x-ms-failure-cause": [ - "gateway" + "X-Content-Type-Options": [ + "nosniff" ], "x-ms-request-id": [ - "69c77bbc-edaf-4964-a949-5db151b3a7db" - ], - "x-ms-correlation-request-id": [ - "69c77bbc-edaf-4964-a949-5db151b3a7db" + "eceb0c42-9a8b-4c5a-87a6-1349d667c48d" ], - "x-ms-routing-request-id": [ - "CENTRALUS:20220224T224041Z:69c77bbc-edaf-4964-a949-5db151b3a7db" + "x-ms-client-request-id": [ + "a2b4d68f-816f-4208-a9bf-a7d142ebc4cd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ - "nosniff" + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "293" + ], + "x-ms-correlation-request-id": [ + "eceb0c42-9a8b-4c5a-87a6-1349d667c48d" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220517T140006Z:eceb0c42-9a8b-4c5a-87a6-1349d667c48d" ], "Date": [ - "Thu, 24 Feb 2022 22:40:41 GMT" + "Tue, 17 May 2022 14:00:05 GMT" + ], + "Content-Length": [ + "953" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" - ], - "Content-Length": [ - "243" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/networkSecurityGroups/PSTestNSG130a70' under resource group 'PSTestRG130a7cb9' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", - "StatusCode": 404 + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiaga-adhoc-vault/backupJobs/a04b6a4f-71f8-4762-a6c0-6c4aa1c85f6e\",\r\n \"name\": \"a04b6a4f-71f8-4762-a6c0-6c4aa1c85f6e\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiaga-adhoc-vm\",\r\n \"duration\": \"PT5M52.3862221S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"hiaga-adhoc-vm\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"hiaga-adhoc-vm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T13:54:13.4133042Z\",\r\n \"activityId\": \"a2b4d68f-816f-4208-a9bf-a7d142ebc4cd\"\r\n }\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG130a70?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMTMwYTdjYjkvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtTZWN1cml0eUdyb3Vwcy9QU1Rlc3ROU0cxMzBhNzA/YXBpLXZlcnNpb249MjAyMS0wNS0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiaga-adhoc-vault/backupJobs/a04b6a4f-71f8-4762-a6c0-6c4aa1c85f6e?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYS1hZGhvYy12YXVsdC9iYWNrdXBKb2JzL2EwNGI2YTRmLTcxZjgtNDc2Mi1hNmMwLTZjNGFhMWM4NWY2ZT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "94b57307-adf5-4ffb-bc4d-a981a76928ee" + "a2b4d68f-816f-4208-a9bf-a7d142ebc4cd" + ], + "Accept-Language": [ + "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -1427,39 +1490,38 @@ "Pragma": [ "no-cache" ], - "ETag": [ - "W/\"7550e270-ad17-45a1-9d23-b698e888fee9\"" + "X-Content-Type-Options": [ + "nosniff" ], "x-ms-request-id": [ - "bb9dff7c-bd44-4a4f-8f6b-7125438495ce" - ], - "x-ms-correlation-request-id": [ - "475eaacc-f04e-4cf0-ab69-74f9d0ebd431" + "e6d7bd02-07a6-4fe5-83c1-9590661db489" ], - "x-ms-arm-service-request-id": [ - "7a4f38fe-a9d4-4f2e-a76a-134881c03c60" + "x-ms-client-request-id": [ + "a2b4d68f-816f-4208-a9bf-a7d142ebc4cd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "Microsoft-IIS/10.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "X-Powered-By": [ + "ASP.NET" ], - "x-ms-routing-request-id": [ - "CENTRALUS:20220224T224048Z:475eaacc-f04e-4cf0-ab69-74f9d0ebd431" + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "292" ], - "X-Content-Type-Options": [ - "nosniff" + "x-ms-correlation-request-id": [ + "e6d7bd02-07a6-4fe5-83c1-9590661db489" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220517T140037Z:e6d7bd02-07a6-4fe5-83c1-9590661db489" ], "Date": [ - "Thu, 24 Feb 2022 22:40:48 GMT" + "Tue, 17 May 2022 14:00:36 GMT" ], "Content-Length": [ - "8475" + "953" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1468,26 +1530,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"PSTestNSG130a70\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG130a70\",\r\n \"etag\": \"W/\\\"7550e270-ad17-45a1-9d23-b698e888fee9\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"56a2f8a8-e5b3-4d7c-a628-01285815c48b\",\r\n \"securityRules\": [\r\n {\r\n \"name\": \"PSTestNSGRuleRDP130a70\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG130a70/securityRules/PSTestNSGRuleRDP130a70\",\r\n \"etag\": \"W/\\\"7550e270-ad17-45a1-9d23-b698e888fee9\\\"\",\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\": \"PSTestNSGRuleWeb130a70\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG130a70/securityRules/PSTestNSGRuleWeb130a70\",\r\n \"etag\": \"W/\\\"7550e270-ad17-45a1-9d23-b698e888fee9\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG130a70/defaultSecurityRules/AllowVnetInBound\",\r\n \"etag\": \"W/\\\"7550e270-ad17-45a1-9d23-b698e888fee9\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG130a70/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\r\n \"etag\": \"W/\\\"7550e270-ad17-45a1-9d23-b698e888fee9\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG130a70/defaultSecurityRules/DenyAllInBound\",\r\n \"etag\": \"W/\\\"7550e270-ad17-45a1-9d23-b698e888fee9\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG130a70/defaultSecurityRules/AllowVnetOutBound\",\r\n \"etag\": \"W/\\\"7550e270-ad17-45a1-9d23-b698e888fee9\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG130a70/defaultSecurityRules/AllowInternetOutBound\",\r\n \"etag\": \"W/\\\"7550e270-ad17-45a1-9d23-b698e888fee9\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG130a70/defaultSecurityRules/DenyAllOutBound\",\r\n \"etag\": \"W/\\\"7550e270-ad17-45a1-9d23-b698e888fee9\\\"\",\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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiaga-adhoc-vault/backupJobs/a04b6a4f-71f8-4762-a6c0-6c4aa1c85f6e\",\r\n \"name\": \"a04b6a4f-71f8-4762-a6c0-6c4aa1c85f6e\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiaga-adhoc-vm\",\r\n \"duration\": \"PT6M23.2672774S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"hiaga-adhoc-vm\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"hiaga-adhoc-vm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T13:54:13.4133042Z\",\r\n \"activityId\": \"a2b4d68f-816f-4208-a9bf-a7d142ebc4cd\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG130a70?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMTMwYTdjYjkvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtTZWN1cml0eUdyb3Vwcy9QU1Rlc3ROU0cxMzBhNzA/YXBpLXZlcnNpb249MjAyMS0wNS0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiaga-adhoc-vault/backupJobs/a04b6a4f-71f8-4762-a6c0-6c4aa1c85f6e?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYS1hZGhvYy12YXVsdC9iYWNrdXBKb2JzL2EwNGI2YTRmLTcxZjgtNDc2Mi1hNmMwLTZjNGFhMWM4NWY2ZT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "94b57307-adf5-4ffb-bc4d-a981a76928ee" + "a2b4d68f-816f-4208-a9bf-a7d142ebc4cd" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -1497,39 +1559,38 @@ "Pragma": [ "no-cache" ], - "ETag": [ - "W/\"7550e270-ad17-45a1-9d23-b698e888fee9\"" + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "291" ], - "x-ms-request-id": [ - "f4f92618-6734-4a23-85be-f260c32b2c66" + "X-Content-Type-Options": [ + "nosniff" ], - "x-ms-correlation-request-id": [ - "9e23e6fc-b8a8-4863-b4bc-f8916cc0211e" + "x-ms-request-id": [ + "8e0c6123-1c07-44e9-a9f0-9a5e10eae7ec" ], - "x-ms-arm-service-request-id": [ - "4ec3fe39-6732-442f-a46d-3d4adc1e8774" + "x-ms-client-request-id": [ + "a2b4d68f-816f-4208-a9bf-a7d142ebc4cd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "Microsoft-IIS/10.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "X-Powered-By": [ + "ASP.NET" ], - "x-ms-routing-request-id": [ - "CENTRALUS:20220224T224048Z:9e23e6fc-b8a8-4863-b4bc-f8916cc0211e" + "x-ms-correlation-request-id": [ + "8e0c6123-1c07-44e9-a9f0-9a5e10eae7ec" ], - "X-Content-Type-Options": [ - "nosniff" + "x-ms-routing-request-id": [ + "WESTINDIA:20220517T140108Z:8e0c6123-1c07-44e9-a9f0-9a5e10eae7ec" ], "Date": [ - "Thu, 24 Feb 2022 22:40:48 GMT" + "Tue, 17 May 2022 14:01:07 GMT" ], "Content-Length": [ - "8475" + "953" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1538,32 +1599,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"PSTestNSG130a70\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG130a70\",\r\n \"etag\": \"W/\\\"7550e270-ad17-45a1-9d23-b698e888fee9\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"56a2f8a8-e5b3-4d7c-a628-01285815c48b\",\r\n \"securityRules\": [\r\n {\r\n \"name\": \"PSTestNSGRuleRDP130a70\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG130a70/securityRules/PSTestNSGRuleRDP130a70\",\r\n \"etag\": \"W/\\\"7550e270-ad17-45a1-9d23-b698e888fee9\\\"\",\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\": \"PSTestNSGRuleWeb130a70\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG130a70/securityRules/PSTestNSGRuleWeb130a70\",\r\n \"etag\": \"W/\\\"7550e270-ad17-45a1-9d23-b698e888fee9\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG130a70/defaultSecurityRules/AllowVnetInBound\",\r\n \"etag\": \"W/\\\"7550e270-ad17-45a1-9d23-b698e888fee9\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG130a70/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\r\n \"etag\": \"W/\\\"7550e270-ad17-45a1-9d23-b698e888fee9\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG130a70/defaultSecurityRules/DenyAllInBound\",\r\n \"etag\": \"W/\\\"7550e270-ad17-45a1-9d23-b698e888fee9\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG130a70/defaultSecurityRules/AllowVnetOutBound\",\r\n \"etag\": \"W/\\\"7550e270-ad17-45a1-9d23-b698e888fee9\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG130a70/defaultSecurityRules/AllowInternetOutBound\",\r\n \"etag\": \"W/\\\"7550e270-ad17-45a1-9d23-b698e888fee9\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG130a70/defaultSecurityRules/DenyAllOutBound\",\r\n \"etag\": \"W/\\\"7550e270-ad17-45a1-9d23-b698e888fee9\\\"\",\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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiaga-adhoc-vault/backupJobs/a04b6a4f-71f8-4762-a6c0-6c4aa1c85f6e\",\r\n \"name\": \"a04b6a4f-71f8-4762-a6c0-6c4aa1c85f6e\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiaga-adhoc-vm\",\r\n \"duration\": \"PT6M54.1493795S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"hiaga-adhoc-vm\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"hiaga-adhoc-vm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T13:54:13.4133042Z\",\r\n \"activityId\": \"a2b4d68f-816f-4208-a9bf-a7d142ebc4cd\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG130a70?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMTMwYTdjYjkvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtTZWN1cml0eUdyb3Vwcy9QU1Rlc3ROU0cxMzBhNzA/YXBpLXZlcnNpb249MjAyMS0wNS0wMQ==", - "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\": \"PSTestNSGRuleRDP130a70\"\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\": \"PSTestNSGRuleWeb130a70\"\r\n }\r\n ]\r\n },\r\n \"location\": \"southeastasia\"\r\n}", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiaga-adhoc-vault/backupJobs/a04b6a4f-71f8-4762-a6c0-6c4aa1c85f6e?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYS1hZGhvYy12YXVsdC9iYWNrdXBKb2JzL2EwNGI2YTRmLTcxZjgtNDc2Mi1hNmMwLTZjNGFhMWM4NWY2ZT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "94b57307-adf5-4ffb-bc4d-a981a76928ee" + "a2b4d68f-816f-4208-a9bf-a7d142ebc4cd" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "852" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -1573,45 +1628,38 @@ "Pragma": [ "no-cache" ], - "Retry-After": [ - "3" + "X-Content-Type-Options": [ + "nosniff" ], "x-ms-request-id": [ - "b3b47ce1-58a2-45e3-a6a1-21c602c8312c" - ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Network/locations/southeastasia/operations/b3b47ce1-58a2-45e3-a6a1-21c602c8312c?api-version=2021-05-01" - ], - "x-ms-correlation-request-id": [ - "4da6cf3c-8e69-4ad1-ab57-0b334866e104" - ], - "Azure-AsyncNotification": [ - "Enabled" + "dd2bc541-bf5c-4621-b50a-f9e0c6eb9403" ], - "x-ms-arm-service-request-id": [ - "0043c079-b7f9-437b-88e6-4520ed2908d0" + "x-ms-client-request-id": [ + "a2b4d68f-816f-4208-a9bf-a7d142ebc4cd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "Microsoft-IIS/10.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "X-Powered-By": [ + "ASP.NET" ], - "x-ms-routing-request-id": [ - "CENTRALUS:20220224T224045Z:4da6cf3c-8e69-4ad1-ab57-0b334866e104" + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "290" ], - "X-Content-Type-Options": [ - "nosniff" + "x-ms-correlation-request-id": [ + "dd2bc541-bf5c-4621-b50a-f9e0c6eb9403" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220517T140139Z:dd2bc541-bf5c-4621-b50a-f9e0c6eb9403" ], "Date": [ - "Thu, 24 Feb 2022 22:40:44 GMT" + "Tue, 17 May 2022 14:01:39 GMT" ], "Content-Length": [ - "8466" + "953" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1620,23 +1668,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"PSTestNSG130a70\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG130a70\",\r\n \"etag\": \"W/\\\"935c8b4a-2097-4434-a33f-ac41a6839415\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"56a2f8a8-e5b3-4d7c-a628-01285815c48b\",\r\n \"securityRules\": [\r\n {\r\n \"name\": \"PSTestNSGRuleRDP130a70\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG130a70/securityRules/PSTestNSGRuleRDP130a70\",\r\n \"etag\": \"W/\\\"935c8b4a-2097-4434-a33f-ac41a6839415\\\"\",\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\": \"PSTestNSGRuleWeb130a70\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG130a70/securityRules/PSTestNSGRuleWeb130a70\",\r\n \"etag\": \"W/\\\"935c8b4a-2097-4434-a33f-ac41a6839415\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG130a70/defaultSecurityRules/AllowVnetInBound\",\r\n \"etag\": \"W/\\\"935c8b4a-2097-4434-a33f-ac41a6839415\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG130a70/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\r\n \"etag\": \"W/\\\"935c8b4a-2097-4434-a33f-ac41a6839415\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG130a70/defaultSecurityRules/DenyAllInBound\",\r\n \"etag\": \"W/\\\"935c8b4a-2097-4434-a33f-ac41a6839415\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG130a70/defaultSecurityRules/AllowVnetOutBound\",\r\n \"etag\": \"W/\\\"935c8b4a-2097-4434-a33f-ac41a6839415\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG130a70/defaultSecurityRules/AllowInternetOutBound\",\r\n \"etag\": \"W/\\\"935c8b4a-2097-4434-a33f-ac41a6839415\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG130a70/defaultSecurityRules/DenyAllOutBound\",\r\n \"etag\": \"W/\\\"935c8b4a-2097-4434-a33f-ac41a6839415\\\"\",\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 + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiaga-adhoc-vault/backupJobs/a04b6a4f-71f8-4762-a6c0-6c4aa1c85f6e\",\r\n \"name\": \"a04b6a4f-71f8-4762-a6c0-6c4aa1c85f6e\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiaga-adhoc-vm\",\r\n \"duration\": \"PT7M25.8292658S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"hiaga-adhoc-vm\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"hiaga-adhoc-vm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T13:54:13.4133042Z\",\r\n \"activityId\": \"a2b4d68f-816f-4208-a9bf-a7d142ebc4cd\"\r\n }\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Network/locations/southeastasia/operations/b3b47ce1-58a2-45e3-a6a1-21c602c8312c?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2IzYjQ3Y2UxLTU4YTItNDVlMy1hNmExLTIxYzYwMmM4MzEyYz9hcGktdmVyc2lvbj0yMDIxLTA1LTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiaga-adhoc-vault/backupJobs/a04b6a4f-71f8-4762-a6c0-6c4aa1c85f6e?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYS1hZGhvYy12YXVsdC9iYWNrdXBKb2JzL2EwNGI2YTRmLTcxZjgtNDc2Mi1hNmMwLTZjNGFhMWM4NWY2ZT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "94b57307-adf5-4ffb-bc4d-a981a76928ee" + "a2b4d68f-816f-4208-a9bf-a7d142ebc4cd" + ], + "Accept-Language": [ + "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -1646,36 +1697,38 @@ "Pragma": [ "no-cache" ], - "x-ms-request-id": [ - "029671dc-1be0-4963-860b-21215572a93c" + "X-Content-Type-Options": [ + "nosniff" ], - "x-ms-correlation-request-id": [ - "71966305-3e2b-4dab-8486-0a5609f6c80d" + "x-ms-request-id": [ + "8b0206cc-9783-4344-8581-e159c49bf399" ], - "x-ms-arm-service-request-id": [ - "2dfa7386-1441-4aa2-aa3d-43edbda37b27" + "x-ms-client-request-id": [ + "a2b4d68f-816f-4208-a9bf-a7d142ebc4cd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "Microsoft-IIS/10.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "X-Powered-By": [ + "ASP.NET" ], - "x-ms-routing-request-id": [ - "CENTRALUS:20220224T224048Z:71966305-3e2b-4dab-8486-0a5609f6c80d" + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "289" ], - "X-Content-Type-Options": [ - "nosniff" + "x-ms-correlation-request-id": [ + "8b0206cc-9783-4344-8581-e159c49bf399" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220517T140210Z:8b0206cc-9783-4344-8581-e159c49bf399" ], "Date": [ - "Thu, 24 Feb 2022 22:40:48 GMT" + "Tue, 17 May 2022 14:02:09 GMT" ], "Content-Length": [ - "29" + "952" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1684,26 +1737,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiaga-adhoc-vault/backupJobs/a04b6a4f-71f8-4762-a6c0-6c4aa1c85f6e\",\r\n \"name\": \"a04b6a4f-71f8-4762-a6c0-6c4aa1c85f6e\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiaga-adhoc-vm\",\r\n \"duration\": \"PT7M56.6968131S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"hiaga-adhoc-vm\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"hiaga-adhoc-vm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T13:54:13.4133042Z\",\r\n \"activityId\": \"a2b4d68f-816f-4208-a9bf-a7d142ebc4cd\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.Network/networkInterfaces/PSTestNIC130a70?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMTMwYTdjYjkvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL1BTVGVzdE5JQzEzMGE3MD9hcGktdmVyc2lvbj0yMDIxLTA1LTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiaga-adhoc-vault/backupJobs/a04b6a4f-71f8-4762-a6c0-6c4aa1c85f6e?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYS1hZGhvYy12YXVsdC9iYWNrdXBKb2JzL2EwNGI2YTRmLTcxZjgtNDc2Mi1hNmMwLTZjNGFhMWM4NWY2ZT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c16318f5-09ca-41fb-be6c-4f62afc033da" + "a2b4d68f-816f-4208-a9bf-a7d142ebc4cd" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -1713,54 +1766,66 @@ "Pragma": [ "no-cache" ], - "x-ms-failure-cause": [ - "gateway" + "X-Content-Type-Options": [ + "nosniff" ], "x-ms-request-id": [ - "c87291e6-66dd-485b-ba3e-73db2289944b" - ], - "x-ms-correlation-request-id": [ - "c87291e6-66dd-485b-ba3e-73db2289944b" + "fd7c7cf9-55ee-42e7-acd5-b2388078f926" ], - "x-ms-routing-request-id": [ - "CENTRALUS:20220224T224049Z:c87291e6-66dd-485b-ba3e-73db2289944b" + "x-ms-client-request-id": [ + "a2b4d68f-816f-4208-a9bf-a7d142ebc4cd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ - "nosniff" + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "288" + ], + "x-ms-correlation-request-id": [ + "fd7c7cf9-55ee-42e7-acd5-b2388078f926" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220517T140241Z:fd7c7cf9-55ee-42e7-acd5-b2388078f926" ], "Date": [ - "Thu, 24 Feb 2022 22:40:49 GMT" + "Tue, 17 May 2022 14:02:41 GMT" + ], + "Content-Length": [ + "952" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" - ], - "Content-Length": [ - "239" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/networkInterfaces/PSTestNIC130a70' under resource group 'PSTestRG130a7cb9' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", - "StatusCode": 404 + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiaga-adhoc-vault/backupJobs/a04b6a4f-71f8-4762-a6c0-6c4aa1c85f6e\",\r\n \"name\": \"a04b6a4f-71f8-4762-a6c0-6c4aa1c85f6e\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiaga-adhoc-vm\",\r\n \"duration\": \"PT8M27.5646835S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"hiaga-adhoc-vm\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"hiaga-adhoc-vm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T13:54:13.4133042Z\",\r\n \"activityId\": \"a2b4d68f-816f-4208-a9bf-a7d142ebc4cd\"\r\n }\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.Network/networkInterfaces/PSTestNIC130a70?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMTMwYTdjYjkvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL1BTVGVzdE5JQzEzMGE3MD9hcGktdmVyc2lvbj0yMDIxLTA1LTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiaga-adhoc-vault/backupJobs/a04b6a4f-71f8-4762-a6c0-6c4aa1c85f6e?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYS1hZGhvYy12YXVsdC9iYWNrdXBKb2JzL2EwNGI2YTRmLTcxZjgtNDc2Mi1hNmMwLTZjNGFhMWM4NWY2ZT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c16318f5-09ca-41fb-be6c-4f62afc033da" + "a2b4d68f-816f-4208-a9bf-a7d142ebc4cd" + ], + "Accept-Language": [ + "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -1770,39 +1835,38 @@ "Pragma": [ "no-cache" ], - "ETag": [ - "W/\"8e748cdf-5185-436e-b621-485a563f02c0\"" + "X-Content-Type-Options": [ + "nosniff" ], "x-ms-request-id": [ - "50224927-5b45-445d-92bc-c5b3856de9a7" + "ceddce09-145b-4d89-9700-347699ac42ec" ], - "x-ms-correlation-request-id": [ - "ac7c88e1-3585-49df-89e3-88c240627441" - ], - "x-ms-arm-service-request-id": [ - "4c427506-e988-444e-9493-cd5a99f7fa82" + "x-ms-client-request-id": [ + "a2b4d68f-816f-4208-a9bf-a7d142ebc4cd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "Microsoft-IIS/10.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" + "X-Powered-By": [ + "ASP.NET" ], - "x-ms-routing-request-id": [ - "CENTRALUS:20220224T224052Z:ac7c88e1-3585-49df-89e3-88c240627441" + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "287" ], - "X-Content-Type-Options": [ - "nosniff" + "x-ms-correlation-request-id": [ + "ceddce09-145b-4d89-9700-347699ac42ec" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220517T140312Z:ceddce09-145b-4d89-9700-347699ac42ec" ], "Date": [ - "Thu, 24 Feb 2022 22:40:52 GMT" + "Tue, 17 May 2022 14:03:11 GMT" ], "Content-Length": [ - "2143" + "952" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1811,26 +1875,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"PSTestNIC130a70\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.Network/networkInterfaces/PSTestNIC130a70\",\r\n \"etag\": \"W/\\\"8e748cdf-5185-436e-b621-485a563f02c0\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"c1e57365-f27c-4a37-ac4a-dbe382b6f135\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.Network/networkInterfaces/PSTestNIC130a70/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"8e748cdf-5185-436e-b621-485a563f02c0\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.Network/publicIPAddresses/pstestpublicdns130a70\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.Network/virtualNetworks/PSTestVNET130a70/subnets/PSTestSNC130a70\"\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\": \"rz1lmyegurhefjy4o2yduqa0bg.ix.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"vnetEncryptionSupported\": false,\r\n \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG130a70\"\r\n },\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": [],\r\n \"nicType\": \"Standard\"\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiaga-adhoc-vault/backupJobs/a04b6a4f-71f8-4762-a6c0-6c4aa1c85f6e\",\r\n \"name\": \"a04b6a4f-71f8-4762-a6c0-6c4aa1c85f6e\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiaga-adhoc-vm\",\r\n \"duration\": \"PT8M58.4419517S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"hiaga-adhoc-vm\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"hiaga-adhoc-vm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T13:54:13.4133042Z\",\r\n \"activityId\": \"a2b4d68f-816f-4208-a9bf-a7d142ebc4cd\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.Network/networkInterfaces/PSTestNIC130a70?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMTMwYTdjYjkvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL1BTVGVzdE5JQzEzMGE3MD9hcGktdmVyc2lvbj0yMDIxLTA1LTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiaga-adhoc-vault/backupJobs/a04b6a4f-71f8-4762-a6c0-6c4aa1c85f6e?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYS1hZGhvYy12YXVsdC9iYWNrdXBKb2JzL2EwNGI2YTRmLTcxZjgtNDc2Mi1hNmMwLTZjNGFhMWM4NWY2ZT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c16318f5-09ca-41fb-be6c-4f62afc033da" + "a2b4d68f-816f-4208-a9bf-a7d142ebc4cd" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -1840,39 +1904,38 @@ "Pragma": [ "no-cache" ], - "ETag": [ - "W/\"8e748cdf-5185-436e-b621-485a563f02c0\"" + "X-Content-Type-Options": [ + "nosniff" ], "x-ms-request-id": [ - "963712d8-6f2f-4643-821f-564b3c953569" + "6bc379b4-da07-47ad-8139-7d6bec8c0669" ], - "x-ms-correlation-request-id": [ - "ad0677ba-3122-4640-873a-f6d066613c47" - ], - "x-ms-arm-service-request-id": [ - "dbfaeb1b-0bfa-4b2f-8189-23864e5285da" + "x-ms-client-request-id": [ + "a2b4d68f-816f-4208-a9bf-a7d142ebc4cd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "Microsoft-IIS/10.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" + "X-Powered-By": [ + "ASP.NET" ], - "x-ms-routing-request-id": [ - "CENTRALUS:20220224T224053Z:ad0677ba-3122-4640-873a-f6d066613c47" + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "286" ], - "X-Content-Type-Options": [ - "nosniff" + "x-ms-correlation-request-id": [ + "6bc379b4-da07-47ad-8139-7d6bec8c0669" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220517T140343Z:6bc379b4-da07-47ad-8139-7d6bec8c0669" ], "Date": [ - "Thu, 24 Feb 2022 22:40:52 GMT" + "Tue, 17 May 2022 14:03:43 GMT" ], "Content-Length": [ - "2143" + "951" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1881,32 +1944,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"PSTestNIC130a70\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.Network/networkInterfaces/PSTestNIC130a70\",\r\n \"etag\": \"W/\\\"8e748cdf-5185-436e-b621-485a563f02c0\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"c1e57365-f27c-4a37-ac4a-dbe382b6f135\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.Network/networkInterfaces/PSTestNIC130a70/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"8e748cdf-5185-436e-b621-485a563f02c0\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.Network/publicIPAddresses/pstestpublicdns130a70\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.Network/virtualNetworks/PSTestVNET130a70/subnets/PSTestSNC130a70\"\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\": \"rz1lmyegurhefjy4o2yduqa0bg.ix.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"vnetEncryptionSupported\": false,\r\n \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG130a70\"\r\n },\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": [],\r\n \"nicType\": \"Standard\"\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiaga-adhoc-vault/backupJobs/a04b6a4f-71f8-4762-a6c0-6c4aa1c85f6e\",\r\n \"name\": \"a04b6a4f-71f8-4762-a6c0-6c4aa1c85f6e\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiaga-adhoc-vm\",\r\n \"duration\": \"PT9M29.358455S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"hiaga-adhoc-vm\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"hiaga-adhoc-vm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T13:54:13.4133042Z\",\r\n \"activityId\": \"a2b4d68f-816f-4208-a9bf-a7d142ebc4cd\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.Network/networkInterfaces/PSTestNIC130a70?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMTMwYTdjYjkvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL1BTVGVzdE5JQzEzMGE3MD9hcGktdmVyc2lvbj0yMDIxLTA1LTAx", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"networkSecurityGroup\": {\r\n \"properties\": {\r\n \"securityRules\": []\r\n },\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG130a70\",\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 \"applicationGatewayIpConfigurations\": []\r\n },\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.Network/virtualNetworks/PSTestVNET130a70/subnets/PSTestSNC130a70\"\r\n },\r\n \"primary\": true,\r\n \"publicIPAddress\": {\r\n \"properties\": {\r\n \"ipTags\": []\r\n },\r\n \"zones\": [],\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.Network/publicIPAddresses/pstestpublicdns130a70\",\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\": \"southeastasia\"\r\n}", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiaga-adhoc-vault/backupJobs/a04b6a4f-71f8-4762-a6c0-6c4aa1c85f6e?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYS1hZGhvYy12YXVsdC9iYWNrdXBKb2JzL2EwNGI2YTRmLTcxZjgtNDc2Mi1hNmMwLTZjNGFhMWM4NWY2ZT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c16318f5-09ca-41fb-be6c-4f62afc033da" + "a2b4d68f-816f-4208-a9bf-a7d142ebc4cd" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "1671" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -1916,42 +1973,38 @@ "Pragma": [ "no-cache" ], - "x-ms-request-id": [ - "45eaa19f-b26c-47c7-816d-290848abbe1e" - ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Network/locations/southeastasia/operations/45eaa19f-b26c-47c7-816d-290848abbe1e?api-version=2021-05-01" - ], - "x-ms-correlation-request-id": [ - "1543c343-2a76-4f9a-99c8-80d4a98e903e" + "X-Content-Type-Options": [ + "nosniff" ], - "Azure-AsyncNotification": [ - "Enabled" + "x-ms-request-id": [ + "c0e1f55b-5a16-45e8-b095-013f56037a26" ], - "x-ms-arm-service-request-id": [ - "6d9eba5e-a076-45d4-97ea-3df7ddaf52de" + "x-ms-client-request-id": [ + "a2b4d68f-816f-4208-a9bf-a7d142ebc4cd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "Microsoft-IIS/10.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "X-Powered-By": [ + "ASP.NET" ], - "x-ms-routing-request-id": [ - "CENTRALUS:20220224T224052Z:1543c343-2a76-4f9a-99c8-80d4a98e903e" + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "285" ], - "X-Content-Type-Options": [ - "nosniff" + "x-ms-correlation-request-id": [ + "c0e1f55b-5a16-45e8-b095-013f56037a26" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220517T140414Z:c0e1f55b-5a16-45e8-b095-013f56037a26" ], "Date": [ - "Thu, 24 Feb 2022 22:40:52 GMT" + "Tue, 17 May 2022 14:04:13 GMT" ], "Content-Length": [ - "2143" + "952" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1960,32 +2013,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"PSTestNIC130a70\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.Network/networkInterfaces/PSTestNIC130a70\",\r\n \"etag\": \"W/\\\"8e748cdf-5185-436e-b621-485a563f02c0\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"c1e57365-f27c-4a37-ac4a-dbe382b6f135\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.Network/networkInterfaces/PSTestNIC130a70/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"8e748cdf-5185-436e-b621-485a563f02c0\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.Network/publicIPAddresses/pstestpublicdns130a70\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.Network/virtualNetworks/PSTestVNET130a70/subnets/PSTestSNC130a70\"\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\": \"rz1lmyegurhefjy4o2yduqa0bg.ix.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"vnetEncryptionSupported\": false,\r\n \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG130a70\"\r\n },\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": [],\r\n \"nicType\": \"Standard\"\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "StatusCode": 201 + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiaga-adhoc-vault/backupJobs/a04b6a4f-71f8-4762-a6c0-6c4aa1c85f6e\",\r\n \"name\": \"a04b6a4f-71f8-4762-a6c0-6c4aa1c85f6e\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiaga-adhoc-vm\",\r\n \"duration\": \"PT10M0.4246487S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"hiaga-adhoc-vm\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"hiaga-adhoc-vm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T13:54:13.4133042Z\",\r\n \"activityId\": \"a2b4d68f-816f-4208-a9bf-a7d142ebc4cd\"\r\n }\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Storage/checkNameAvailability?api-version=2021-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9jaGVja05hbWVBdmFpbGFiaWxpdHk/YXBpLXZlcnNpb249MjAyMS0wMi0wMQ==", - "RequestMethod": "POST", - "RequestBody": "{\r\n \"name\": \"tespstestpste022417400\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n}", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiaga-adhoc-vault/backupJobs/a04b6a4f-71f8-4762-a6c0-6c4aa1c85f6e?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYS1hZGhvYy12YXVsdC9iYWNrdXBKb2JzL2EwNGI2YTRmLTcxZjgtNDc2Mi1hNmMwLTZjNGFhMWM4NWY2ZT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b959b998-91e5-4dd3-bd9f-2828b87b8c6b" + "a2b4d68f-816f-4208-a9bf-a7d142ebc4cd" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.PowerShell.Cmdlets.Compute.Helpers.Storage.StorageManagementClient/4.23.0" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "88" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -1995,66 +2042,66 @@ "Pragma": [ "no-cache" ], + "X-Content-Type-Options": [ + "nosniff" + ], "x-ms-request-id": [ - "5063166e-4038-44c4-9e77-413d4954397a" + "a81fcb3d-2c29-4967-9b88-a974a0384686" + ], + "x-ms-client-request-id": [ + "a2b4d68f-816f-4208-a9bf-a7d142ebc4cd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-IIS/10.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "284" ], "x-ms-correlation-request-id": [ - "1c053630-3649-4156-a125-5febf6c233b8" + "a81fcb3d-2c29-4967-9b88-a974a0384686" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T224053Z:1c053630-3649-4156-a125-5febf6c233b8" - ], - "X-Content-Type-Options": [ - "nosniff" + "WESTINDIA:20220517T140445Z:a81fcb3d-2c29-4967-9b88-a974a0384686" ], "Date": [ - "Thu, 24 Feb 2022 22:40:53 GMT" + "Tue, 17 May 2022 14:04:44 GMT" ], "Content-Length": [ - "22" + "952" ], "Content-Type": [ - "application/json" + "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "ResponseBody": "{\r\n \"nameAvailable\": true\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiaga-adhoc-vault/backupJobs/a04b6a4f-71f8-4762-a6c0-6c4aa1c85f6e\",\r\n \"name\": \"a04b6a4f-71f8-4762-a6c0-6c4aa1c85f6e\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiaga-adhoc-vm\",\r\n \"duration\": \"PT10M31.360972S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"hiaga-adhoc-vm\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"hiaga-adhoc-vm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T13:54:13.4133042Z\",\r\n \"activityId\": \"a2b4d68f-816f-4208-a9bf-a7d142ebc4cd\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.Compute/virtualMachines/PSTestVM130a70?api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMTMwYTdjYjkvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy9QU1Rlc3RWTTEzMGE3MD9hcGktdmVyc2lvbj0yMDIxLTExLTAx", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D1_v2\"\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\": \"PSTestVM130a70\",\r\n \"adminUsername\": \"demouser\",\r\n \"adminPassword\": \"130a7cb9-e38Aa.\",\r\n \"windowsConfiguration\": {}\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.Network/networkInterfaces/PSTestNIC130a70\"\r\n }\r\n ]\r\n }\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MabUsed\": \"Yes\",\r\n \"AutoShutDown\": \"No\",\r\n \"Purpose\": \"PSTest\",\r\n \"Owner\": \"sarath\",\r\n \"DeleteBy\": \"06-2022\"\r\n }\r\n}", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiaga-adhoc-vault/backupJobs/a04b6a4f-71f8-4762-a6c0-6c4aa1c85f6e?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYS1hZGhvYy12YXVsdC9iYWNrdXBKb2JzL2EwNGI2YTRmLTcxZjgtNDc2Mi1hNmMwLTZjNGFhMWM4NWY2ZT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b959b998-91e5-4dd3-bd9f-2828b87b8c6b" + "a2b4d68f-816f-4208-a9bf-a7d142ebc4cd" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "930" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -2064,45 +2111,38 @@ "Pragma": [ "no-cache" ], - "Retry-After": [ - "10" - ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/southeastasia/operations/cc09db40-ddac-4875-b43f-6f572489ccce?p=34dc709c-01b2-42c4-84a2-256a9734610d&api-version=2021-11-01" + "X-Content-Type-Options": [ + "nosniff" ], - "Azure-AsyncNotification": [ - "Enabled" + "x-ms-request-id": [ + "e5cbc0f9-6ad9-4819-b5bc-93d42d6ddc09" ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/PutVM3Min;239,Microsoft.Compute/PutVM30Min;1199" + "x-ms-client-request-id": [ + "a2b4d68f-816f-4208-a9bf-a7d142ebc4cd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ - "cc09db40-ddac-4875-b43f-6f572489ccce" - ], "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "Microsoft-IIS/10.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "283" ], "x-ms-correlation-request-id": [ - "68d51b01-3a26-44fb-9055-2ad80c705a74" + "e5cbc0f9-6ad9-4819-b5bc-93d42d6ddc09" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T224105Z:68d51b01-3a26-44fb-9055-2ad80c705a74" - ], - "X-Content-Type-Options": [ - "nosniff" + "WESTINDIA:20220517T140516Z:e5cbc0f9-6ad9-4819-b5bc-93d42d6ddc09" ], "Date": [ - "Thu, 24 Feb 2022 22:41:04 GMT" + "Tue, 17 May 2022 14:05:15 GMT" ], "Content-Length": [ - "1992" + "952" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2111,23 +2151,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"PSTestVM130a70\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.Compute/virtualMachines/PSTestVM130a70\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MabUsed\": \"Yes\",\r\n \"AutoShutDown\": \"No\",\r\n \"Purpose\": \"PSTest\",\r\n \"Owner\": \"sarath\",\r\n \"DeleteBy\": \"06-2022\",\r\n \"azsecpack\": \"nonprod\",\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": \"true\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"efa126cf-2a94-43b1-9858-ea4716ca719e\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D1_v2\"\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.4946.220202\"\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 \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"PSTestVM130a70\",\r\n \"adminUsername\": \"demouser\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"AutomaticByOS\",\r\n \"assessmentMode\": \"ImageDefault\"\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.Network/networkInterfaces/PSTestNIC130a70\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\",\r\n \"timeCreated\": \"2022-02-24T17:41:02.8181957-05:00\"\r\n }\r\n}", - "StatusCode": 201 + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiaga-adhoc-vault/backupJobs/a04b6a4f-71f8-4762-a6c0-6c4aa1c85f6e\",\r\n \"name\": \"a04b6a4f-71f8-4762-a6c0-6c4aa1c85f6e\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiaga-adhoc-vm\",\r\n \"duration\": \"PT11M2.2287696S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"hiaga-adhoc-vm\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"hiaga-adhoc-vm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T13:54:13.4133042Z\",\r\n \"activityId\": \"a2b4d68f-816f-4208-a9bf-a7d142ebc4cd\"\r\n }\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/southeastasia/operations/cc09db40-ddac-4875-b43f-6f572489ccce?p=34dc709c-01b2-42c4-84a2-256a9734610d&api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2NjMDlkYjQwLWRkYWMtNDg3NS1iNDNmLTZmNTcyNDg5Y2NjZT9wPTM0ZGM3MDljLTAxYjItNDJjNC04NGEyLTI1NmE5NzM0NjEwZCZhcGktdmVyc2lvbj0yMDIxLTExLTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiaga-adhoc-vault/backupJobs/a04b6a4f-71f8-4762-a6c0-6c4aa1c85f6e?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYS1hZGhvYy12YXVsdC9iYWNrdXBKb2JzL2EwNGI2YTRmLTcxZjgtNDc2Mi1hNmMwLTZjNGFhMWM4NWY2ZT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b959b998-91e5-4dd3-bd9f-2828b87b8c6b" + "a2b4d68f-816f-4208-a9bf-a7d142ebc4cd" + ], + "Accept-Language": [ + "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -2137,39 +2180,38 @@ "Pragma": [ "no-cache" ], - "Retry-After": [ - "50" + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "282" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "e0807dbb-7c2c-407c-b6fc-cd4caa54149b" ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperation3Min;14999,Microsoft.Compute/GetOperation30Min;29995" + "x-ms-client-request-id": [ + "a2b4d68f-816f-4208-a9bf-a7d142ebc4cd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ - "f0f74a72-2bbf-4e9a-8c1f-ceb7ac249e14" - ], "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "Microsoft-IIS/10.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "X-Powered-By": [ + "ASP.NET" ], "x-ms-correlation-request-id": [ - "1ef3c144-2759-4eee-afc6-b4c791f3c7cf" + "e0807dbb-7c2c-407c-b6fc-cd4caa54149b" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T224115Z:1ef3c144-2759-4eee-afc6-b4c791f3c7cf" - ], - "X-Content-Type-Options": [ - "nosniff" + "WESTINDIA:20220517T140547Z:e0807dbb-7c2c-407c-b6fc-cd4caa54149b" ], "Date": [ - "Thu, 24 Feb 2022 22:41:14 GMT" + "Tue, 17 May 2022 14:05:46 GMT" ], "Content-Length": [ - "134" + "953" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2178,23 +2220,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-02-24T17:41:02.2557197-05:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"cc09db40-ddac-4875-b43f-6f572489ccce\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiaga-adhoc-vault/backupJobs/a04b6a4f-71f8-4762-a6c0-6c4aa1c85f6e\",\r\n \"name\": \"a04b6a4f-71f8-4762-a6c0-6c4aa1c85f6e\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiaga-adhoc-vm\",\r\n \"duration\": \"PT11M33.2133266S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"hiaga-adhoc-vm\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"hiaga-adhoc-vm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T13:54:13.4133042Z\",\r\n \"activityId\": \"a2b4d68f-816f-4208-a9bf-a7d142ebc4cd\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/southeastasia/operations/cc09db40-ddac-4875-b43f-6f572489ccce?p=34dc709c-01b2-42c4-84a2-256a9734610d&api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2NjMDlkYjQwLWRkYWMtNDg3NS1iNDNmLTZmNTcyNDg5Y2NjZT9wPTM0ZGM3MDljLTAxYjItNDJjNC04NGEyLTI1NmE5NzM0NjEwZCZhcGktdmVyc2lvbj0yMDIxLTExLTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiaga-adhoc-vault/backupJobs/a04b6a4f-71f8-4762-a6c0-6c4aa1c85f6e?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYS1hZGhvYy12YXVsdC9iYWNrdXBKb2JzL2EwNGI2YTRmLTcxZjgtNDc2Mi1hNmMwLTZjNGFhMWM4NWY2ZT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b959b998-91e5-4dd3-bd9f-2828b87b8c6b" + "a2b4d68f-816f-4208-a9bf-a7d142ebc4cd" + ], + "Accept-Language": [ + "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -2204,36 +2249,38 @@ "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperation3Min;14998,Microsoft.Compute/GetOperation30Min;29994" + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "bad4a720-e5b0-4802-9c4b-1e1eb771561b" + ], + "x-ms-client-request-id": [ + "a2b4d68f-816f-4208-a9bf-a7d142ebc4cd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ - "8fa0f3f9-15ea-41b0-b4f4-6d9a85b735ae" - ], "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "Microsoft-IIS/10.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "281" ], "x-ms-correlation-request-id": [ - "4eac1024-2ab0-4603-8fb0-8b8ead3e4053" + "bad4a720-e5b0-4802-9c4b-1e1eb771561b" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T224205Z:4eac1024-2ab0-4603-8fb0-8b8ead3e4053" - ], - "X-Content-Type-Options": [ - "nosniff" + "WESTINDIA:20220517T140618Z:bad4a720-e5b0-4802-9c4b-1e1eb771561b" ], "Date": [ - "Thu, 24 Feb 2022 22:42:05 GMT" + "Tue, 17 May 2022 14:06:18 GMT" ], "Content-Length": [ - "134" + "952" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2242,23 +2289,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-02-24T17:41:02.2557197-05:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"cc09db40-ddac-4875-b43f-6f572489ccce\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiaga-adhoc-vault/backupJobs/a04b6a4f-71f8-4762-a6c0-6c4aa1c85f6e\",\r\n \"name\": \"a04b6a4f-71f8-4762-a6c0-6c4aa1c85f6e\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiaga-adhoc-vm\",\r\n \"duration\": \"PT12M4.8051609S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"hiaga-adhoc-vm\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"hiaga-adhoc-vm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T13:54:13.4133042Z\",\r\n \"activityId\": \"a2b4d68f-816f-4208-a9bf-a7d142ebc4cd\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/southeastasia/operations/cc09db40-ddac-4875-b43f-6f572489ccce?p=34dc709c-01b2-42c4-84a2-256a9734610d&api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2NjMDlkYjQwLWRkYWMtNDg3NS1iNDNmLTZmNTcyNDg5Y2NjZT9wPTM0ZGM3MDljLTAxYjItNDJjNC04NGEyLTI1NmE5NzM0NjEwZCZhcGktdmVyc2lvbj0yMDIxLTExLTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiaga-adhoc-vault/backupJobs/a04b6a4f-71f8-4762-a6c0-6c4aa1c85f6e?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYS1hZGhvYy12YXVsdC9iYWNrdXBKb2JzL2EwNGI2YTRmLTcxZjgtNDc2Mi1hNmMwLTZjNGFhMWM4NWY2ZT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b959b998-91e5-4dd3-bd9f-2828b87b8c6b" + "a2b4d68f-816f-4208-a9bf-a7d142ebc4cd" + ], + "Accept-Language": [ + "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -2268,36 +2318,38 @@ "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperation3Min;14997,Microsoft.Compute/GetOperation30Min;29993" + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "92f8bd0a-6520-4879-b13d-328800272ca4" + ], + "x-ms-client-request-id": [ + "a2b4d68f-816f-4208-a9bf-a7d142ebc4cd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ - "0313fafd-6241-4aa7-aa3b-124a0d3cc5a5" - ], "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "Microsoft-IIS/10.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "280" ], "x-ms-correlation-request-id": [ - "351d4d7e-6920-4591-b505-2fc4a47c6e3e" + "92f8bd0a-6520-4879-b13d-328800272ca4" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T224256Z:351d4d7e-6920-4591-b505-2fc4a47c6e3e" - ], - "X-Content-Type-Options": [ - "nosniff" + "WESTINDIA:20220517T140649Z:92f8bd0a-6520-4879-b13d-328800272ca4" ], "Date": [ - "Thu, 24 Feb 2022 22:42:55 GMT" + "Tue, 17 May 2022 14:06:49 GMT" ], "Content-Length": [ - "184" + "952" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2306,26 +2358,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-02-24T17:41:02.2557197-05:00\",\r\n \"endTime\": \"2022-02-24T17:42:18.0535012-05:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"cc09db40-ddac-4875-b43f-6f572489ccce\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiaga-adhoc-vault/backupJobs/a04b6a4f-71f8-4762-a6c0-6c4aa1c85f6e\",\r\n \"name\": \"a04b6a4f-71f8-4762-a6c0-6c4aa1c85f6e\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiaga-adhoc-vm\",\r\n \"duration\": \"PT12M35.927332S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"hiaga-adhoc-vm\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"hiaga-adhoc-vm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T13:54:13.4133042Z\",\r\n \"activityId\": \"a2b4d68f-816f-4208-a9bf-a7d142ebc4cd\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/southeastasia/publishers?api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9wdWJsaXNoZXJzP2FwaS12ZXJzaW9uPTIwMjEtMTEtMDE=", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiaga-adhoc-vault/backupJobs/a04b6a4f-71f8-4762-a6c0-6c4aa1c85f6e?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYS1hZGhvYy12YXVsdC9iYWNrdXBKb2JzL2EwNGI2YTRmLTcxZjgtNDc2Mi1hNmMwLTZjNGFhMWM4NWY2ZT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b959b998-91e5-4dd3-bd9f-2828b87b8c6b" + "a2b4d68f-816f-4208-a9bf-a7d142ebc4cd" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -2335,36 +2387,38 @@ "Pragma": [ "no-cache" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "8d76ef5d-2d17-4297-8566-4612360b9f5a_132860269053396621" + "X-Content-Type-Options": [ + "nosniff" ], "x-ms-request-id": [ - "3d4843e4-257b-46eb-8352-5c6155752d1e" + "b66ccc03-ea0b-4096-a2ac-3dd5a82883a4" + ], + "x-ms-client-request-id": [ + "a2b4d68f-816f-4208-a9bf-a7d142ebc4cd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "Microsoft-IIS/10.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "279" ], "x-ms-correlation-request-id": [ - "dc8b2fc0-b0e9-4ea2-b41c-4500f38755d8" + "b66ccc03-ea0b-4096-a2ac-3dd5a82883a4" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T224259Z:dc8b2fc0-b0e9-4ea2-b41c-4500f38755d8" - ], - "X-Content-Type-Options": [ - "nosniff" + "WESTINDIA:20220517T140720Z:b66ccc03-ea0b-4096-a2ac-3dd5a82883a4" ], "Date": [ - "Thu, 24 Feb 2022 22:42:59 GMT" + "Tue, 17 May 2022 14:07:20 GMT" ], "Content-Length": [ - "420268" + "952" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2373,26 +2427,26 @@ "-1" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"128technology\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/128technology\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1580863854728\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1580863854728\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1583411303229\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1583411303229\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1583465680865\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1583465680865\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1585118004523\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1585118004523\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1597644262255\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1597644262255\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1598955805825\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1598955805825\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1601633765871\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1601633765871\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1602067018799\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1602067018799\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1604579683207\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1604579683207\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1615257339685\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1615257339685\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1615278064010\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1615278064010\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1615455873642\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1615455873642\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1624590941808\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1624590941808\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1e\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1e\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"2021ai\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/2021ai\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"247commercelimited1611063941652\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/247commercelimited1611063941652\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"3cx-pbx\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/3cx-pbx\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"42crunch1580391915541\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/42crunch1580391915541\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"4psa\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/4psa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"5nine-software-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/5nine-software-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"7isolutions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/7isolutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"a10networks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/a10networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"a10networks1596136698788\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/a10networks1596136698788\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"abiquo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/abiquo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"abzoobainc1598420455082\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/abzoobainc1598420455082\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"accedian\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/accedian\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"accelario1579101623356\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/accelario1579101623356\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"accellion\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/accellion\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"accessdata-group\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/accessdata-group\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"accops\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/accops\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aciworldwide\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aciworldwide\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Acronis\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Acronis\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Acronis.Backup\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Acronis.Backup\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"actian-corp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/actian-corp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"actian_matrix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/actian_matrix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"actifio\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/actifio\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"actiphy\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/actiphy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"actiphyinc1627974506603\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/actiphyinc1627974506603\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"activecountermeasuresinc1631039410073\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/activecountermeasuresinc1631039410073\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"activeeon\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/activeeon\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"activeops\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/activeops\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"adastracorporation-4028356\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/adastracorporation-4028356\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"adgs\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/adgs\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"advantech\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/advantech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"advantech-webaccess\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/advantech-webaccess\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"advantys\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/advantys\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aelf\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aelf\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aerospike\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aerospike\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"affinio\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/affinio\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"affirmednetworks1607630812999\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/affirmednetworks1607630812999\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ageniumscale1591804889317\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ageniumscale1591804889317\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aggregion-ltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aggregion-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"agiledialogssl1603791911858\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/agiledialogssl1603791911858\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"agolo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/agolo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ahnlabinc1584495174865\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ahnlabinc1584495174865\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ahnlabinc1584495467593\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ahnlabinc1584495467593\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"airalabrus\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/airalabrus\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aiscaler-cache-control-ddos-and-url-rewriting-\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aiscaler-cache-control-ddos-and-url-rewriting-\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aisundowninc1618516322959\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aisundowninc1618516322959\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"akamai-technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/akamai-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"akumina\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/akumina\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"akumo-software\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/akumo-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"al-tamamunitedtradingcontractingcompany\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/al-tamamunitedtradingcontractingcompany\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"alachisoft\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/alachisoft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"alertlogic\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/alertlogic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"AlertLogic.Extension\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/AlertLogic.Extension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"algolyticstechnologies1606475101268\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/algolyticstechnologies1606475101268\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"alicetrix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/alicetrix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"alienvault\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/alienvault\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"alldigital-brevity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/alldigital-brevity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"almalinux\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/almalinux\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"almalinuxosfoundation1628089859865\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/almalinuxosfoundation1628089859865\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"altair-engineering-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/altair-engineering-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"altamira-corporation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/altamira-corporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"alteryx\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/alteryx\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"altova\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/altova\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"amergint1593131356777\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/amergint1593131356777\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ansys\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ansys\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"antmedia\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/antmedia\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aod\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aod\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"apigee\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/apigee\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"appcara\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appcara\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"appcelerator\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appcelerator\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"appex-networks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appex-networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"appistry\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appistry\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"appiyo_technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appiyo_technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"appmint_inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appmint_inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"apps-4-rent\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/apps-4-rent\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"appscale-marketplace\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appscale-marketplace\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"appsurifyinc1606933045773\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appsurifyinc1606933045773\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aquaforest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aquaforest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aquantyinc1598537176913\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aquantyinc1598537176913\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aquaveollc1633710529908\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aquaveollc1633710529908\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"arabesque-group\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/arabesque-group\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"arangodb\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/arangodb\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aras\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aras\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"arcblock\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/arcblock\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"arcesb\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/arcesb\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"arcontechsolutionsprivatelimited1623841797810\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/arcontechsolutionsprivatelimited1623841797810\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"arcserveusallc-marketing\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/arcserveusallc-marketing\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"arista-networks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/arista-networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ariwontollc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ariwontollc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"array_networks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/array_networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"artificial-intelligence-techniques-sl\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/artificial-intelligence-techniques-sl\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"arubanetworks-4922182\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/arubanetworks-4922182\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"asdivertissementinc1617837708654\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/asdivertissementinc1617837708654\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"asigra\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/asigra\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aspentechnologyhq-1353108\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aspentechnologyhq-1353108\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"astadia-1148316\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/astadia-1148316\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"asterasoftware1581022936015\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/asterasoftware1581022936015\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"asyscosoftwarebv\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/asyscosoftwarebv\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ataccama\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ataccama\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"athinfosystems1641442221349\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/athinfosystems1641442221349\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"atlgaming\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/atlgaming\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"atmosera\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/atmosera\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"atomicorp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/atomicorp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"atomizedinc1587939464368\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/atomizedinc1587939464368\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"attunity_cloudbeam\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/attunity_cloudbeam\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"audiocodes\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/audiocodes\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"auraportal\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/auraportal\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"auriq-systems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/auriq-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"automateio1592914387888\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/automateio1592914387888\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"automationanywhere\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/automationanywhere\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"avanseus\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/avanseus\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"avepoint\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/avepoint\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aveva1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aveva1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"avi-networks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/avi-networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aviatrix-systems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aviatrix-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"awingu\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/awingu\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"axedrasag1590581171549\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/axedrasag1590581171549\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"axsguardablenv\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/axsguardablenv\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"axshco\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/axshco\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"axway\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/axway\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"axxana\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/axxana\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"azhpc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/azhpc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"azul\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/azul\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"azure-dockit\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/azure-dockit\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"azurecyclecloud\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/azurecyclecloud\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"AzureDatabricks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/AzureDatabricks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"azureopenshift\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/azureopenshift\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"AzureRT.PIR.Synthetics.ProdTest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/AzureRT.PIR.Synthetics.ProdTest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"AzureRT.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/AzureRT.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"azuretesting\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/azuretesting\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"azuretesting2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/azuretesting2\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"azuretesting3\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/azuretesting3\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"AzureTools1type\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/AzureTools1type\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"baas-techbureau\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/baas-techbureau\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"baffle-io\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/baffle-io\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"balabit\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/balabit\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"barracudanetworks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/barracudanetworks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"basho\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/basho\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"batch\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/batch\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bayware\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bayware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bdy\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bdy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"belindaczsro1588885355210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/belindaczsro1588885355210\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bellsoft1582871421940\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bellsoft1582871421940\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"betsol\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/betsol\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"beyondtrust\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/beyondtrust\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bi-builders-as\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bi-builders-as\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"big-id\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/big-id\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"biolibinc1622552350258\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/biolibinc1622552350258\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bissantechnology1583581147809\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bissantechnology1583581147809\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bitdefendercybersecurity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bitdefendercybersecurity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Bitnami\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Bitnami\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bizagi\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bizagi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bizaptyltd1626489237351\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bizaptyltd1626489237351\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bizdataloome\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bizdataloome\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"biztalk360\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/biztalk360\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"black-duck-software\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/black-duck-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"blackbird\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/blackbird\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"blackmagicdesignincorporated1596492193249\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/blackmagicdesignincorporated1596492193249\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"blk-technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/blk-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"blockapps\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/blockapps\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"blockchain-foundry\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/blockchain-foundry\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"blockstack\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/blockstack\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bloombase\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bloombase\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bluecat\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bluecat\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bluejeansnetwork1638333611902\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bluejeansnetwork1638333611902\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"blueprismlimited-4827145\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/blueprismlimited-4827145\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bluesyntaxconsulting1617654548594\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bluesyntaxconsulting1617654548594\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bluetalon\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bluetalon\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bmc.ctm\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bmc.ctm\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bmcctm.test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bmcctm.test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"boardpacpvtltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/boardpacpvtltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bocada\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bocada\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"boemskats\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/boemskats\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"botanalytics\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/botanalytics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bowspritconsultingopcprivatelimited1596291408582\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bowspritconsultingopcprivatelimited1596291408582\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bravura-software-llc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bravura-software-llc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Brianjac.Symantec.CloudWorkloadProtection\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Brianjac.Symantec.CloudWorkloadProtection\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bricatainc1584472632111\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bricatainc1584472632111\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bright-computing\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bright-computing\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"brightcomputing\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/brightcomputing\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"brocade_communications\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/brocade_communications\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"brutale\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/brutale\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bryte\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bryte\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bssw\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bssw\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bt-americas-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bt-americas-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"buddhalabs\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/buddhalabs\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cadosecurityltd1626856705534\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cadosecurityltd1626856705534\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"calculated_systems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/calculated_systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"caloudi_corp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/caloudi_corp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"canadiancentreforcybersecurity1610638436359\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/canadiancentreforcybersecurity1610638436359\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Canonical\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Canonical\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"canonical-test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/canonical-test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"carto\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/carto\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cask\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cask\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"castaigroupinc1595243474856\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/castaigroupinc1595243474856\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"catechnologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/catechnologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"catonetworksltd1641478570665\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/catonetworksltd1641478570665\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cautelalabs\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cautelalabs\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cavirin\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cavirin\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cayosoftinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cayosoftinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cdatasoftware\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cdatasoftware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cds\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cds\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"celum-gmbh\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/celum-gmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"center-for-internet-security-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/center-for-internet-security-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"centeritysystems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/centeritysystems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"centrixeltd1594135951373\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/centrixeltd1594135951373\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"centrocomputerspa1584528117084\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/centrocomputerspa1584528117084\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"certifiedsecuritysolutionsinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/certifiedsecuritysolutionsinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"certivox\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/certivox\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cfd-direct\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cfd-direct\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"chain\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/chain\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"checkpoint\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/checkpoint\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"chef-software\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/chef-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Chef.Bootstrap.WindowsAzure\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Chef.Bootstrap.WindowsAzure\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"chunghwatelecom1587573688842\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/chunghwatelecom1587573688842\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cinchy\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cinchy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cinegy-gmbh\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cinegy-gmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"circleci\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/circleci\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cires21\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cires21\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cirruswaveinc1579234787943\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cirruswaveinc1579234787943\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cisco\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cisco\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"citrix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/citrix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Citrix.ADC\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Citrix.ADC\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"clapsodeughaftungsbeschrnkt1626333173563\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/clapsodeughaftungsbeschrnkt1626333173563\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"clear-linux-project\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/clear-linux-project\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"clone-systems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/clone-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"clouber\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/clouber\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloud-checkr\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloud-checkr\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloud-cruiser\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloud-cruiser\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloud-infrastructure-services\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloud-infrastructure-services\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudaccelinc1628754426775\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudaccelinc1628754426775\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudbees\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudbees\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudbees-enterprise-jenkins\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudbees-enterprise-jenkins\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudbolt-software\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudbolt-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudboltsoftware1639523402532\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudboltsoftware1639523402532\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudboost\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudboost\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudcover\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudcover\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudenablers-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudenablers-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudentity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudentity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudera\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudera\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudflare\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudflare\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudhouse\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudhouse\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudinfo-4919088\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudinfo-4919088\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudknox\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudknox\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudlanes\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudlanes\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudlink\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudlink\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"CloudLinkEMC.SecureVM\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/CloudLinkEMC.SecureVM\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudmavensolutions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudmavensolutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudneeti\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudneeti\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudplan-gmbh\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudplan-gmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudsecurity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudsecurity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudsoft\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudsoft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudwhizsolutions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudwhizsolutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudwrxsconsultingltd1631029702055\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudwrxsconsultingltd1631029702055\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"clustrix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/clustrix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cncf-upstream\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cncf-upstream\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"codaintelligence1606495376525\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/codaintelligence1606495376525\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"codelathe\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/codelathe\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"codenvy\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/codenvy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"codetwo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/codetwo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cognexcorporation1613759804979\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cognexcorporation1613759804979\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cognitive-scale\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cognitive-scale\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cognizant\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cognizant\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cognosys\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cognosys\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cohesity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cohesity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cohesitydev1592001764720\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cohesitydev1592001764720\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cohesive\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cohesive\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"coin-sciences-ltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/coin-sciences-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"collabcloudlimited\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/collabcloudlimited\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"collibranv1619508098620\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/collibranv1619508098620\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"commscopeinc1632135151062\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/commscopeinc1632135151062\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"commvault\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/commvault\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"compellon\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/compellon\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"composable\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/composable\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"comunity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/comunity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"concentrationheatandmomentumlimited1616154387047\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/concentrationheatandmomentumlimited1616154387047\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Confer\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Confer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"confluentinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/confluentinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"conflux\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/conflux\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"connecting-software\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/connecting-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"consensys\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/consensys\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"containeraider\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/containeraider\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"contiamogmbh\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/contiamogmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"controlcase\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/controlcase\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"controlplane\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/controlplane\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"controlplanecorporation1609967567639\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/controlplanecorporation1609967567639\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"convertigo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/convertigo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"corda\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/corda\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"core-stack\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/core-stack\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"corent-technology-pvt\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/corent-technology-pvt\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"CoreOS\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/CoreOS\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"couchbase\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/couchbase\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cpanel\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cpanel\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"credativ\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/credativ\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cristiesoftwareltd1599488127561\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cristiesoftwareltd1599488127561\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"crunchyard\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/crunchyard\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"crunchyardltd1623835391104\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/crunchyardltd1623835391104\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cryptocom1585727786636\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cryptocom1585727786636\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cryptosense1605170011574\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cryptosense1605170011574\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cryptzone\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cryptzone\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ctm.bmc.com\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ctm.bmc.com\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cubebackup\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cubebackup\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cyberark\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cyberark\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cybernetica-as\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cybernetica-as\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cyxtera\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cyxtera\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"d4t4_solutions-1164305\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/d4t4_solutions-1164305\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"daceitdbasensetrafficpulse1579892024934\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/daceitdbasensetrafficpulse1579892024934\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"danielsol.AzureTools1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/danielsol.AzureTools1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Dans.Windows.App\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Dans.Windows.App\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Dans3.Windows.App\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Dans3.Windows.App\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dataart\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dataart\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"databricks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/databricks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datacore\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datacore\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Datadog.Agent\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Datadog.Agent\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datadynamicsinc1581991927942\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datadynamicsinc1581991927942\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dataguiseinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dataguiseinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dataiku\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dataiku\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datalayer\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datalayer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datanomers1584919038987\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datanomers1584919038987\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datanova\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datanova\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datapredsa\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datapredsa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dataroadtechnologiesllc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dataroadtechnologiesllc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datasciencedojo1586563145740\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datasciencedojo1586563145740\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datastax\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datastax\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datasunrise\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datasunrise\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datavirtualitygmbh\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datavirtualitygmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datometry\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datometry\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dbs-h\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dbs-h\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ddn-whamcloud-5345716\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ddn-whamcloud-5345716\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Debian\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Debian\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dece-4446019\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dece-4446019\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"decisosalesbv\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/decisosalesbv\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"deepcognitioninc1593512758156\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/deepcognitioninc1593512758156\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"deepsiginc1581610210151\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/deepsiginc1581610210151\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"deepsurfacesecurityinc1632943333445\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/deepsurfacesecurityinc1632943333445\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dellemc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dellemc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dell_software\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dell_software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"delphix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/delphix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"deltapathlimited1592886319362\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/deltapathlimited1592886319362\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"denodo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/denodo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"denyall\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/denyall\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"derdack\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/derdack\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"desktopstudioag1580294245574\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/desktopstudioag1580294245574\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"devfactory\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/devfactory\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"device42inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/device42inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"deviceauthorityinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/deviceauthorityinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"devolutionsinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/devolutionsinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"devopsgroup-uk\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/devopsgroup-uk\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"df-portal-user\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/df-portal-user\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dgsecure\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dgsecure\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Dh2ico\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Dh2ico\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dh2icompany\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dh2icompany\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dhi\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dhi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"diagramics\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/diagramics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dicomsystems1584107398321\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dicomsystems1584107398321\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"diehl-metering\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/diehl-metering\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"digisitesystems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/digisitesystems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"digitaldefenseinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/digitaldefenseinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"digitaloffice\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/digitaloffice\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"digitamizeinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/digitamizeinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"digitate\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/digitate\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"diladele\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/diladele\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dimensionalmechanics-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dimensionalmechanics-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"diqa\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/diqa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"diyatech\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/diyatech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"diyotta\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/diyotta\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"djiindustrialincus\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/djiindustrialincus\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"docker\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/docker\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dome9\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dome9\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dorabot\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dorabot\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dremiocorporation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dremiocorporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"drizti\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/drizti\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"drone\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/drone\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dsi\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dsi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dundas\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dundas\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dyadic_security\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dyadic_security\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dynatrace\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dynatrace\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dynatrace.ruxit\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dynatrace.ruxit\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"e-magicinc1587696283171\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/e-magicinc1587696283171\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"eastwind-networks-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/eastwind-networks-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"easysoftwaresro1593005637384\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/easysoftwaresro1593005637384\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ebesllc1637780200500\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ebesllc1637780200500\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ecessa\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ecessa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"edevtech\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/edevtech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"edgelesssystems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/edgelesssystems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"edgenetworks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/edgenetworks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"edispheresoftwareprivatelimited1606199736428\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/edispheresoftwareprivatelimited1606199736428\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"education4sight\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/education4sight\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"eecservicesfzllc1604836615706\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/eecservicesfzllc1604836615706\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"egnyte\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/egnyte\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"egress1589289169584\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/egress1589289169584\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"eikonasystemsgmbh1601729310063\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/eikonasystemsgmbh1601729310063\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Elastic\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Elastic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"elasticbox\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/elasticbox\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"elecard\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/elecard\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"electric-cloud\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/electric-cloud\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"elevateiot\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/elevateiot\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"eleven01\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/eleven01\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"elfiqnetworks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/elfiqnetworks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"emercoin\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/emercoin\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"energisme1601990637842\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/energisme1601990637842\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"enforongo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/enforongo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"engineering-ingegneriainformatica-spa1626786889850\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/engineering-ingegneriainformatica-spa1626786889850\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"engysltd1624364546407\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/engysltd1624364546407\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"enterprise-ethereum-alliance\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/enterprise-ethereum-alliance\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"enterprisedb-corp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/enterprisedb-corp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"enterpriseworx-it\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/enterpriseworx-it\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"epicgames\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/epicgames\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"epicgamesinc1633466121071\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/epicgamesinc1633466121071\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"eproe\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/eproe\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"equalum\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/equalum\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"equilibrium\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/equilibrium\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"equinix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/equinix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ergoninformatikag1581586464404\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ergoninformatikag1581586464404\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"esdenera\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/esdenera\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ESET\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ESET\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"esetresearch1579795941720\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/esetresearch1579795941720\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"esri\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/esri\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"esyon\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/esyon\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ethereum\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ethereum\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"eurolinuxspzoo1620639373013\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/eurolinuxspzoo1620639373013\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"eventtracker\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/eventtracker\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"evertzmicrosystemsltd1586877923009\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/evertzmicrosystemsltd1586877923009\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"evostream-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/evostream-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"exact\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/exact\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"exasol\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/exasol\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"excelero1608461290726\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/excelero1608461290726\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"exivity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/exivity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"exonar\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/exonar\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"f5-networks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/f5-networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"falainapteltd1604661424876\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/falainapteltd1604661424876\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"falconstorsoftware\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/falconstorsoftware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fatalsecurity1604924013537\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fatalsecurity1604924013537\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fatpipe-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fatpipe-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fenestrae-1035066\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fenestrae-1035066\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fidesys\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fidesys\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"filecatalyst\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/filecatalyst\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"filemagellc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/filemagellc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fiorano\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fiorano\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fireeye\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fireeye\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"firehost\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/firehost\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"firemon\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/firemon\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"firstderivativesplc1596469572732\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/firstderivativesplc1596469572732\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"flashgrid-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/flashgrid-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"flexbby\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/flexbby\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"flexbby-5255860\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/flexbby-5255860\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"flexify-io\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/flexify-io\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"flexxibleit\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/flexxibleit\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"flowmon\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/flowmon\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"flynet\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/flynet\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"foghorn-systems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/foghorn-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"forcepoint-llc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/forcepoint-llc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"forescout\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/forescout\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"foreseetiab1613650409016\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/foreseetiab1613650409016\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"formpipesoftwareab\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/formpipesoftwareab\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"forscene\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/forscene\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fortanix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fortanix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fortinet\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fortinet\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fortycloud\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fortycloud\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"forumsystems1599756394904\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/forumsystems1599756394904\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fotopiatechnologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fotopiatechnologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"foxiteuropegmbh1585901066320\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/foxiteuropegmbh1585901066320\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"franzinc1593030725310\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/franzinc1593030725310\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fujitsu_fast\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fujitsu_fast\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fw\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fw\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"g2kgroupgmbh-4821943\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/g2kgroupgmbh-4821943\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gapteq\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gapteq\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gatlingcorp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gatlingcorp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gbs\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gbs\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gemalto-safenet\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gemalto-safenet\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Gemalto.SafeNet.ProtectV\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Gemalto.SafeNet.ProtectV\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"genuagmbhdevid1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/genuagmbhdevid1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"genua_gmbh\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/genua_gmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"genymobile\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/genymobile\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gigamon-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gigamon-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"GitHub\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/GitHub\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gitlab\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gitlab\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gitlabinc1586447921813\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gitlabinc1586447921813\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gladinet-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gladinet-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"glantoninc1591876792991\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/glantoninc1591876792991\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"globalidsinc1596800540598\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/globalidsinc1596800540598\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"globalscape\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/globalscape\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"globalsolutions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/globalsolutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gluwareinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gluwareinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"graphistry\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/graphistry\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"graphitegtc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/graphitegtc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"great-software-laboratory-private-limited\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/great-software-laboratory-private-limited\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"greensql\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/greensql\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"greycorbelsolutions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/greycorbelsolutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gridgain\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gridgain\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"guardicore\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/guardicore\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gxchainfoundationltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gxchainfoundationltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"h2o-ai\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/h2o-ai\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hackerbay\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hackerbay\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hackershub\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hackershub\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"haivision\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/haivision\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"haivisionsystemsinc1580780591922\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/haivisionsystemsinc1580780591922\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"haltdoscompvtltd1587136166019\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/haltdoscompvtltd1587136166019\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hanu\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hanu\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"haproxy-technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/haproxy-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"harmanconnectedservicesinc1594928575643\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/harmanconnectedservicesinc1594928575643\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"harpaitalia\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/harpaitalia\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hashhub\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hashhub\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hcl-technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hcl-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"heimdall-data\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/heimdall-data\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"help-systems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/help-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"helpyio\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/helpyio\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"heretechnologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/heretechnologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hewlett-packard\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hewlett-packard\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hillstone-networks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hillstone-networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hitachi-solutions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hitachi-solutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hitachivantara\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hitachivantara\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"holo-industrie40softwaregmbh1600957636008\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/holo-industrie40softwaregmbh1600957636008\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hortonworks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hortonworks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hpe\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hpe\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"HPE.Security.ApplicationDefender\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/HPE.Security.ApplicationDefender\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"huawei\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/huawei\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hubstor-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hubstor-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hush-hush\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hush-hush\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hvr\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hvr\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hyperglance\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hyperglance\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hypergrid\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hypergrid\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hystaxinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hystaxinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hytrust\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hytrust\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"i-exceed-technology\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/i-exceed-technology\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iaansys\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iaansys\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ibm\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ibm\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ibm-alliance-global-1560886\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ibm-alliance-global-1560886\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ibm-alliance-usa-ny-armonk-hq-ibmstorage-6201192\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ibm-alliance-usa-ny-armonk-hq-ibmstorage-6201192\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ibm-usa-ny-armonk-hq-6275750-ibmcloud-aiops\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ibm-usa-ny-armonk-hq-6275750-ibmcloud-aiops\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iboss\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iboss\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iconics\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iconics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iconsulting-spa\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iconsulting-spa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"icubeconsultancyservicesinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/icubeconsultancyservicesinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iguazio-5069960\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iguazio-5069960\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ikan\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ikan\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iliimbiliimveyazlmsistemlerisanvetica1617000555584\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iliimbiliimveyazlmsistemlerisanvetica1617000555584\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"illuminainc1586452220102\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/illuminainc1586452220102\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"image-technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/image-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"imaginecommunications\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/imaginecommunications\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"imperva\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/imperva\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"impetustechnologiesinc1591959591877\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/impetustechnologiesinc1591959591877\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"imprivatainc1580479939967\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/imprivatainc1580479939967\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"incorta\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/incorta\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"incredibuild\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/incredibuild\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"indexima1594300233028\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/indexima1594300233028\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"industry-weapon\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/industry-weapon\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"industryweapon1587162781833\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/industryweapon1587162781833\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"inenprocesosyplataformasdetisderldecv1615482385424\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/inenprocesosyplataformasdetisderldecv1615482385424\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"inergybv1637141413454\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/inergybv1637141413454\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"infinitesoftwarecorporation1579223971125\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/infinitesoftwarecorporation1579223971125\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"infiotinc1614034091460\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/infiotinc1614034091460\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"influxdata\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/influxdata\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"infoblox\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/infoblox\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"infogix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/infogix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"infolibrarian\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/infolibrarian\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"informatica\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/informatica\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"informationbuilders\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/informationbuilders\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"informationtechnologies_ltd_1179601\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/informationtechnologies_ltd_1179601\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"infotecsinternetsecuritysoftwaregmbh1636129257584\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/infotecsinternetsecuritysoftwaregmbh1636129257584\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"infront-consulting-group-ltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/infront-consulting-group-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"infscapeughaftungsbeschrnkt\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/infscapeughaftungsbeschrnkt\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ingenieurstudiohollaus1579587745438\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ingenieurstudiohollaus1579587745438\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ingrammicro\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ingrammicro\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"innomindssoftware\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/innomindssoftware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"innosepgmbh1618331344164\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/innosepgmbh1618331344164\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"innovatorartificialtechsrl1619180685551\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/innovatorartificialtechsrl1619180685551\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"innovtech\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/innovtech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"instight-technology\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/instight-technology\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"integration-objects\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/integration-objects\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"intel-bigdl\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/intel-bigdl\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"intel-fpga\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/intel-fpga\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"intellicus-technologies-pvt-ltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/intellicus-technologies-pvt-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"intelligent-plant-ltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/intelligent-plant-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"internationaltrustmachinescorporation1582190033865\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/internationaltrustmachinescorporation1582190033865\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"internet20inc1635882446190\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/internet20inc1635882446190\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"intersystems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/intersystems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"intigua\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/intigua\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"intigua1638692632641\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/intigua1638692632641\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"introspecioltd1629872641188\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/introspecioltd1629872641188\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iofabric\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iofabric\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ipinfusion1590066770520\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ipinfusion1590066770520\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ipswitch\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ipswitch\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iqsol\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iqsol\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iquate\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iquate\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iquest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iquest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"irion\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/irion\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ishlangu-load-balancer-adc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ishlangu-load-balancer-adc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"issp-corporation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/issp-corporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"isvtestukbigcat\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/isvtestukbigcat\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"isvtestuklegacy\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/isvtestuklegacy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"it4bizdoo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/it4bizdoo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"itelios\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/itelios\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"itrsgroupltd1620310702149\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/itrsgroupltd1620310702149\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ivanti-inc-pcs\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ivanti-inc-pcs\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ivix1595238749040\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ivix1595238749040\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iwnamespace\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iwnamespace\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"izenda\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/izenda\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"jamcracker\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/jamcracker\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"javlinltd1579185328273\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/javlinltd1579185328273\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"jedox\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/jedox\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"jelastic\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/jelastic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"jetnexus\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/jetnexus\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"jetware-srl\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/jetware-srl\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"jfrog\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/jfrog\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"jm-technology-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/jm-technology-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"jogetinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/jogetinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"juniper-networks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/juniper-networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"justanalytics\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/justanalytics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kaazing\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kaazing\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kadenallc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kadenallc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kali-linux\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kali-linux\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kalkitech\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kalkitech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kaminarioinc1588672951794\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kaminarioinc1588672951794\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Kaspersky.Lab\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Kaspersky.Lab\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"KasperskyLab.SecurityAgent\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/KasperskyLab.SecurityAgent\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kaspersky_lab\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kaspersky_lab\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kazendi\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kazendi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kelverion\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kelverion\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kemptech\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kemptech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kepion\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kepion\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"KevlarExtensions.M365Security.SecureOS\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/KevlarExtensions.M365Security.SecureOS\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"KevlarExtensions.M365SecurityHostIDS\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/KevlarExtensions.M365SecurityHostIDS\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"KevlarExtensions.M365SecurityInventory\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/KevlarExtensions.M365SecurityInventory\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"KevlarExtensions.M365SecurityInventory.NameChangeTest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/KevlarExtensions.M365SecurityInventory.NameChangeTest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"KevlarExtensions.M365SecurityODL\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/KevlarExtensions.M365SecurityODL\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"KevlarExtensions.M365SecurityTLSExtension\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/KevlarExtensions.M365SecurityTLSExtension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kinetica\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kinetica\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kinvolk\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kinvolk\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"knime\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/knime\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kobalt\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kobalt\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kognillc1600118221163\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kognillc1600118221163\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kognitivsparkinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kognitivsparkinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"konginc1581527938760\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/konginc1581527938760\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"konsys-ltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/konsys-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"koverseinc1588716263110\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/koverseinc1588716263110\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kryonsystems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kryonsystems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"krypc-technologies-pvt-ltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/krypc-technologies-pvt-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kyligence\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kyligence\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kyvos-insights-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kyvos-insights-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lab3solutions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lab3solutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lancom-systems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lancom-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lansa\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lansa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lastline\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lastline\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"leap-orbit\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/leap-orbit\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lenovosoftware1604394104439\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lenovosoftware1604394104439\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"leostream-corporation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/leostream-corporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lepide-software\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lepide-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"levacloudllc1602151818089\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/levacloudllc1602151818089\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"libelleag\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/libelleag\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"liberatii\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/liberatii\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"libraesva\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/libraesva\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"liebsoft\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/liebsoft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lightning-analyticsinc1582000647396\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lightning-analyticsinc1582000647396\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"linuxbasedsystemsdesignltd1580878904727\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/linuxbasedsystemsdesignltd1580878904727\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"liquid-files\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/liquid-files\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"liquidware\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/liquidware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"literatu\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/literatu\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"litespeedtechnologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/litespeedtechnologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"litespeed_technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/litespeed_technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"litionenergiegmbh1580128829115\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/litionenergiegmbh1580128829115\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"litmusautomation1582760223280\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/litmusautomation1582760223280\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"llcitpro\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/llcitpro\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lnw-softgmbh\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lnw-softgmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"loadbalancer\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/loadbalancer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"logicflowag1638535407949\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/logicflowag1638535407949\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"logsign\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/logsign\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"logstarecorp1635838645101\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/logstarecorp1635838645101\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"logtrust\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/logtrust\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"logzio\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/logzio\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"looker\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/looker\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lotus_beta_analytics\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lotus_beta_analytics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lti-lt-infotech\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lti-lt-infotech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"luminate-security\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/luminate-security\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"M365Security.KevlarExtensions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/M365Security.KevlarExtensions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"M365SecurityInventory\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/M365SecurityInventory\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"machinesense\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/machinesense\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"madhavajay1632269232059\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/madhavajay1632269232059\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"maidenhead-bridge\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/maidenhead-bridge\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"manageengine\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/manageengine\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mapd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mapd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mapr-technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mapr-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"marand\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/marand\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"marketplace-rdfe-caps\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/marketplace-rdfe-caps\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"marklogic\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/marklogic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"massiveanalytic-\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/massiveanalytic-\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mathworks-deployment\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mathworks-deployment\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mathworks-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mathworks-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"matillion\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/matillion\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mavinglobal\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mavinglobal\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"McAfee.EndpointSecurity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/McAfee.EndpointSecurity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"McAfee.EndpointSecurity.test3\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/McAfee.EndpointSecurity.test3\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"meanio\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/meanio\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"media3-adobe\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/media3-adobe\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"media3-technologies-llc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/media3-technologies-llc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mediatekinc1586141563888\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mediatekinc1586141563888\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mendix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mendix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"merlynnintelligencetechnologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/merlynnintelligencetechnologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"meshifyappinc1622759451429\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/meshifyappinc1622759451429\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"messagesolution\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/messagesolution\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"metaswitch\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/metaswitch\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mettainnovations-4900054\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mettainnovations-4900054\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mfe_azure\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mfe_azure\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mfiles\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mfiles\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mico\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mico\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"micro-focus\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/micro-focus\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microlinkpcukltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microlinkpcukltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microolap\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microolap\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-ads\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-ads\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-agci-gaming\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-agci-gaming\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-aks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-aks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-avere\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-avere\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-azure-batch\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-azure-batch\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-azure-compute\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-azure-compute\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-azure-hdinsight\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-azure-hdinsight\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-crypto\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-crypto\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-dsvm\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-dsvm\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-hyperv\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-hyperv\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-minecraft\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-minecraft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AdminCenter\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AdminCenter\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AKS\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AKS\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.ActiveDirectory\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.ActiveDirectory\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.ActiveDirectory.LinuxSSH\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.ActiveDirectory.LinuxSSH\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Applications\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Applications\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Automation.HybridWorker\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Automation.HybridWorker\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Automation.HybridWorker.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Automation.HybridWorker.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.AzureDefenderForServers\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.AzureDefenderForServers\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.AzureDefenderForSQL\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.AzureDefenderForSQL\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Backup.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Backup.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Backup.Test.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Backup.Test.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.ChangeTracking\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.ChangeTracking\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.ChangeTracking.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.ChangeTracking.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.ChangeTrackingAndInventory\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.ChangeTrackingAndInventory\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Chaos\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Chaos\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Compute.Security\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Compute.Security\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.ContainerUpstream\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.ContainerUpstream\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.DefenderForServers.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.DefenderForServers.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.DefenderForServers.Test2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.DefenderForServers.Test2\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Diagnostics\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Diagnostics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Diagnostics.Build.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Diagnostics.Build.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Diagnostics.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Diagnostics.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test012be407-61ea-4e45-a2c3-71a45999ca21-20191228083800\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test012be407-61ea-4e45-a2c3-71a45999ca21-20191228083800\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test01971384-3044-413b-8b1c-33b5d461bf23-20200107051823\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test01971384-3044-413b-8b1c-33b5d461bf23-20200107051823\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test0225ec7d-b36c-4ac8-82f0-aa4fafaf10a9-20200111051346\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test0225ec7d-b36c-4ac8-82f0-aa4fafaf10a9-20200111051346\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test025e16a1-328d-45a2-b7e3-71f7e4cde046-20191229064028\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test025e16a1-328d-45a2-b7e3-71f7e4cde046-20191229064028\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test02d1f941-5607-4757-8df7-fd8c5631ab45-20200103083810\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test02d1f941-5607-4757-8df7-fd8c5631ab45-20200103083810\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test039abd7f-360c-42a1-ad5d-77527c519286-20191002233412\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test039abd7f-360c-42a1-ad5d-77527c519286-20191002233412\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test04a0f157-c6fb-4595-b6ca-6c82a2338063-20200108101451\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test04a0f157-c6fb-4595-b6ca-6c82a2338063-20200108101451\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test0737f33e-63e0-4ba9-b04b-b93a1de4e997-20200106083639\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test0737f33e-63e0-4ba9-b04b-b93a1de4e997-20200106083639\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test0a44d7be-63fa-418d-a7b6-89a44dd21894-20200107052935\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test0a44d7be-63fa-418d-a7b6-89a44dd21894-20200107052935\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test0d01b487-7f79-4d87-b330-5c025068db45-20191004190331\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test0d01b487-7f79-4d87-b330-5c025068db45-20191004190331\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test0d643748-e6fe-41ad-b4d3-89a289a0cee0-20191003055620\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test0d643748-e6fe-41ad-b4d3-89a289a0cee0-20191003055620\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test0df83c51-5bb9-43f8-8ae9-bc896ea64f78-20200110220221\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test0df83c51-5bb9-43f8-8ae9-bc896ea64f78-20200110220221\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test0f02c246-7e65-4010-9367-ca4530c3897e-20191004190223\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test0f02c246-7e65-4010-9367-ca4530c3897e-20191004190223\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test157494ec-e788-43b0-8d26-a17e39ee07cc-20191002011945\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test157494ec-e788-43b0-8d26-a17e39ee07cc-20191002011945\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test1661d154-b623-4507-8a56-3a89812c456c-20200111083940\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test1661d154-b623-4507-8a56-3a89812c456c-20200111083940\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test17bbd860-f21d-40ab-9026-16e05f2907f0-20200106083451\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test17bbd860-f21d-40ab-9026-16e05f2907f0-20200106083451\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test194e2333-13cd-43e3-b0a4-c8cdcf1a3600-20200110211106\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test194e2333-13cd-43e3-b0a4-c8cdcf1a3600-20200110211106\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test1bc26b19-b8d8-41f9-a26d-818f277bdf93-20200101113139\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test1bc26b19-b8d8-41f9-a26d-818f277bdf93-20200101113139\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test1c840053-9213-4f2a-8f2e-9bf2297908bd-20200108101424\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test1c840053-9213-4f2a-8f2e-9bf2297908bd-20200108101424\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test1d7bba72-69f1-43cd-a38c-41ce0b5f4bae-20200109050041\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test1d7bba72-69f1-43cd-a38c-41ce0b5f4bae-20200109050041\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test1f7a8078-50e7-4a3a-91eb-d178fd4c403b-20191002233353\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test1f7a8078-50e7-4a3a-91eb-d178fd4c403b-20191002233353\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test1fef1fdc-57ba-46a8-a879-475ba7d45a7a-20200106083509\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test1fef1fdc-57ba-46a8-a879-475ba7d45a7a-20200106083509\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test21332f15-f78d-4d31-afac-79b9dc989432-20191231175840\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test21332f15-f78d-4d31-afac-79b9dc989432-20191231175840\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test22f10717-6939-4003-a9ce-38effd8b77d6-20191007191355\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test22f10717-6939-4003-a9ce-38effd8b77d6-20191007191355\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test2334e6e3-bb72-4241-a36f-c2429d69bc0b-20200106050834\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test2334e6e3-bb72-4241-a36f-c2429d69bc0b-20200106050834\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test24fa9eb5-1c59-4425-b61c-30fd638c2a45-20191003203802\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test24fa9eb5-1c59-4425-b61c-30fd638c2a45-20191003203802\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test2521a545-ed61-4a15-bed1-aba7ce1d81ee-20200106050804\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test2521a545-ed61-4a15-bed1-aba7ce1d81ee-20200106050804\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test25c6fe61-1282-43c2-867b-b5039219989c-20200105081851\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test25c6fe61-1282-43c2-867b-b5039219989c-20200105081851\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test27515c8c-6773-4f92-afb0-35691cc6e3b6-20200103083821\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test27515c8c-6773-4f92-afb0-35691cc6e3b6-20200103083821\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test28012680-48e7-4903-877f-2f29464e63d5-20191229033424\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test28012680-48e7-4903-877f-2f29464e63d5-20191229033424\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test29a7a529-d293-4728-9d7f-257ed996e64f-20200108081759\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test29a7a529-d293-4728-9d7f-257ed996e64f-20200108081759\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test2a5f2d2c-b8e3-46c2-850d-a1641c024fe7-20200107084228\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test2a5f2d2c-b8e3-46c2-850d-a1641c024fe7-20200107084228\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test2ce856af-ab17-48f2-ba3e-bcd9af091061-20200110013246\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test2ce856af-ab17-48f2-ba3e-bcd9af091061-20200110013246\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test2e012e83-6361-4365-963f-6ced8a08e91c-20200110211254\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test2e012e83-6361-4365-963f-6ced8a08e91c-20200110211254\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test2ecf67b2-fb63-4461-b6a6-7026c4fb1168-20191002214026\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test2ecf67b2-fb63-4461-b6a6-7026c4fb1168-20191002214026\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test2ede6564-c7cc-44cb-a1a8-902505c9829d-20191003020742\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test2ede6564-c7cc-44cb-a1a8-902505c9829d-20191003020742\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test2f4ebc17-e27e-48d9-9cc3-ff933c21884e-20200106092410\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test2f4ebc17-e27e-48d9-9cc3-ff933c21884e-20200106092410\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test349ee02c-af9b-4663-a963-823b40eefed8-20200108083612\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test349ee02c-af9b-4663-a963-823b40eefed8-20200108083612\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test34cf6b13-b78e-478b-b596-8b661629371d-20191007195455\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test34cf6b13-b78e-478b-b596-8b661629371d-20191007195455\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test36cc5b60-2b23-4a04-bf95-f7865e1141cf-20200110085718\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test36cc5b60-2b23-4a04-bf95-f7865e1141cf-20200110085718\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3712fca9-5cdd-4609-be69-b02aedc5c55c-20200107084115\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3712fca9-5cdd-4609-be69-b02aedc5c55c-20200107084115\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3772d042-92e2-4bcb-99b7-8a6a119cc088-20191231182808\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3772d042-92e2-4bcb-99b7-8a6a119cc088-20191231182808\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test37a6dd64-d44d-465e-85bc-3bc38be90350-20200104083535\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test37a6dd64-d44d-465e-85bc-3bc38be90350-20200104083535\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test381074d5-7156-472b-801a-b35f8fef4cc6-20200105050612\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test381074d5-7156-472b-801a-b35f8fef4cc6-20200105050612\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3877a44d-4c48-40db-80eb-227272d5acd6-20200110103540\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3877a44d-4c48-40db-80eb-227272d5acd6-20200110103540\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test38ecd28e-7018-4672-840c-3044a5e7a6b5-20200111084208\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test38ecd28e-7018-4672-840c-3044a5e7a6b5-20200111084208\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test395a0b49-442a-450c-8a1f-65b0aa3bcf47-20200105083839\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test395a0b49-442a-450c-8a1f-65b0aa3bcf47-20200105083839\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3971b300-edff-44a8-b61b-7f9b7460a8d6-20191003002234\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3971b300-edff-44a8-b61b-7f9b7460a8d6-20191003002234\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3adeec20-7458-4b3d-af26-0b6bc2aae3eb-20200103083751\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3adeec20-7458-4b3d-af26-0b6bc2aae3eb-20200103083751\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3b20dd96-f3e4-4798-998d-8c433c2449a7-20200108083635\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3b20dd96-f3e4-4798-998d-8c433c2449a7-20200108083635\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3ce2fd4a-8b5a-4c7e-b08d-3e48fc0f45e7-20200104083825\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3ce2fd4a-8b5a-4c7e-b08d-3e48fc0f45e7-20200104083825\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3d499ca7-cc8d-41cc-a6dc-ffb1a4ac4942-20200107053004\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3d499ca7-cc8d-41cc-a6dc-ffb1a4ac4942-20200107053004\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3db7240e-5e42-4d6d-b024-cc9fce3c828b-20200105083520\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3db7240e-5e42-4d6d-b024-cc9fce3c828b-20200105083520\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3f6b7341-635f-48d5-a36d-be5dfe3002c4-20200105050937\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3f6b7341-635f-48d5-a36d-be5dfe3002c4-20200105050937\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3fc26934-ede2-4482-ad5e-f66f6135d4a6-20191228055558\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3fc26934-ede2-4482-ad5e-f66f6135d4a6-20191228055558\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test406d077c-6017-4062-bc96-f809147a2331-20200106050748\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test406d077c-6017-4062-bc96-f809147a2331-20200106050748\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test4302336c-e039-4e70-bcb6-9275f6089e4a-20200108144821\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test4302336c-e039-4e70-bcb6-9275f6089e4a-20200108144821\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test453a087e-8435-46db-970a-4ee633cc4c4a-20200102083458\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test453a087e-8435-46db-970a-4ee633cc4c4a-20200102083458\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test46b73afa-2259-4aff-81e1-a58bf24b59aa-20191229033459\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test46b73afa-2259-4aff-81e1-a58bf24b59aa-20191229033459\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test4a3399ee-82ea-46aa-9e3a-5434b588e3b6-20191228013518\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test4a3399ee-82ea-46aa-9e3a-5434b588e3b6-20191228013518\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test4eb7a185-527b-4b9f-93a8-7f1cec9d062e-20191231151207\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test4eb7a185-527b-4b9f-93a8-7f1cec9d062e-20191231151207\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test520a0915-f9f0-4da4-9fa1-1b74fc1470aa-20200102083505\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test520a0915-f9f0-4da4-9fa1-1b74fc1470aa-20200102083505\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test5397960f-023b-4979-9a8b-800d049045a4-20191007195417\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test5397960f-023b-4979-9a8b-800d049045a4-20191007195417\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test55a36387-8a3f-4159-9884-29b97539a253-20200109080443\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test55a36387-8a3f-4159-9884-29b97539a253-20200109080443\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test5645f186-4ee5-4209-af37-423660e3318c-20191231175947\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test5645f186-4ee5-4209-af37-423660e3318c-20191231175947\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test58b4461d-4d2d-4395-b6d2-ab83d4d8c62f-20200111001002\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test58b4461d-4d2d-4395-b6d2-ab83d4d8c62f-20200111001002\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test5b0bf447-d98d-429d-8334-c032d197c743-20191003203846\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test5b0bf447-d98d-429d-8334-c032d197c743-20191003203846\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test5bc90367-1ea2-400b-a40c-321081bae3f3-20200108145035\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test5bc90367-1ea2-400b-a40c-321081bae3f3-20200108145035\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test5bd0562f-e939-456f-a6ee-c848d1aba616-20200101151641\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test5bd0562f-e939-456f-a6ee-c848d1aba616-20200101151641\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test5e4efe90-916c-4c96-802c-1508a5b6da78-20191231151150\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test5e4efe90-916c-4c96-802c-1508a5b6da78-20191231151150\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test5f8f0c10-cc3c-45ec-a068-fb1c7edfa0d9-20200101145958\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test5f8f0c10-cc3c-45ec-a068-fb1c7edfa0d9-20200101145958\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test60a000b7-286c-4b2b-9137-bbc088736419-20200108144920\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test60a000b7-286c-4b2b-9137-bbc088736419-20200108144920\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test6192a01b-ba47-4d08-904a-71647a49a112-20191008041625\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test6192a01b-ba47-4d08-904a-71647a49a112-20191008041625\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test62835538-89c6-4f66-9034-f7a4b176c615-20191007234245\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test62835538-89c6-4f66-9034-f7a4b176c615-20191007234245\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test651e4ad2-ee4a-462e-a506-b56b1969f5d0-20200110230749\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test651e4ad2-ee4a-462e-a506-b56b1969f5d0-20200110230749\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test691d94e5-c40c-4568-94b0-09b08aea42b1-20200106050808\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test691d94e5-c40c-4568-94b0-09b08aea42b1-20200106050808\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test6aa3643c-011a-4180-877f-cad955a8e664-20191007234642\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test6aa3643c-011a-4180-877f-cad955a8e664-20191007234642\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test6cfb469b-8478-468f-9bb5-691affd32abb-20200107083803\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test6cfb469b-8478-468f-9bb5-691affd32abb-20200107083803\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test6d36b6b2-7956-4e62-91c1-c33792fd4bb1-20200110123203\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test6d36b6b2-7956-4e62-91c1-c33792fd4bb1-20200110123203\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test6e28168e-a9c8-4c0a-8b40-60c2a1502d43-20200108052802\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test6e28168e-a9c8-4c0a-8b40-60c2a1502d43-20200108052802\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test6eb763ac-7fbe-4e44-bee7-aad035ee2a7d-20200110084429\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test6eb763ac-7fbe-4e44-bee7-aad035ee2a7d-20200110084429\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test6efec253-f625-46f0-9d74-324f69e963d8-20200107070514\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test6efec253-f625-46f0-9d74-324f69e963d8-20200107070514\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test70fa7e4c-3122-4ff7-aec6-fe75ab660a01-20200108105900\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test70fa7e4c-3122-4ff7-aec6-fe75ab660a01-20200108105900\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test710a5fbf-06c7-46ac-b96d-a29d2586422f-20200108083639\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test710a5fbf-06c7-46ac-b96d-a29d2586422f-20200108083639\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test71d72489-67c6-45e2-b1e6-a19546efc823-20200105112903\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test71d72489-67c6-45e2-b1e6-a19546efc823-20200105112903\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test721fccf1-2b3e-44b6-908f-51b910e88b09-20200111104931\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test721fccf1-2b3e-44b6-908f-51b910e88b09-20200111104931\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test742d0189-9e41-4f1b-8ad3-31c05d34903b-20200111103247\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test742d0189-9e41-4f1b-8ad3-31c05d34903b-20200111103247\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test7836a97c-f56e-48d0-8b5d-61e79aeb3226-20200111071656\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7836a97c-f56e-48d0-8b5d-61e79aeb3226-20200111071656\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test78666b2e-25c8-4a48-931a-3131a0317d73-20191002194352\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test78666b2e-25c8-4a48-931a-3131a0317d73-20191002194352\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test79f13508-fcbd-47b9-988f-1c21ef5e7f2e-20191002015429\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test79f13508-fcbd-47b9-988f-1c21ef5e7f2e-20191002015429\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test79fb90ce-4691-4212-99a7-6e4069bd5984-20191007234256\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test79fb90ce-4691-4212-99a7-6e4069bd5984-20191007234256\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test7a8cf687-6a21-4181-ba98-902fee717bd3-20200104103216\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7a8cf687-6a21-4181-ba98-902fee717bd3-20200104103216\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test7aabf813-6644-483a-b9e0-ba6f8973ba1f-20191002232822\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7aabf813-6644-483a-b9e0-ba6f8973ba1f-20191002232822\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test7c96c10a-0c8f-4ab0-83fd-1ad66a362e33-20191229033458\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7c96c10a-0c8f-4ab0-83fd-1ad66a362e33-20191229033458\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test7e79b6ff-2559-44fe-b3ba-afaa68d63636-20200108112116\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7e79b6ff-2559-44fe-b3ba-afaa68d63636-20200108112116\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test7ea372f7-ea7e-4b9e-bbad-4f35c1567aa2-20200108052736\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7ea372f7-ea7e-4b9e-bbad-4f35c1567aa2-20200108052736\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test7fac3d04-98a5-4fc4-904e-9ea3b86eadc2-20200106050751\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7fac3d04-98a5-4fc4-904e-9ea3b86eadc2-20200106050751\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test7fe20dd6-9ed9-4126-bb1d-031c01ac4550-20200101114504\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7fe20dd6-9ed9-4126-bb1d-031c01ac4550-20200101114504\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test7ff974d9-c841-4249-b05b-bbf663cb4605-20200106084104\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7ff974d9-c841-4249-b05b-bbf663cb4605-20200106084104\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test815bd4d5-fc24-4a47-be20-063c4809902c-20200109050508\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test815bd4d5-fc24-4a47-be20-063c4809902c-20200109050508\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test817654d0-2109-4d95-9284-8c8a9d960d08-20200108053758\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test817654d0-2109-4d95-9284-8c8a9d960d08-20200108053758\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test821ca3b6-dd05-4e80-b3d8-74ba03b2609b-20191231151151\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test821ca3b6-dd05-4e80-b3d8-74ba03b2609b-20191231151151\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test8285dc3e-637d-4d46-9695-adc39cbe7d2f-20200108144457\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test8285dc3e-637d-4d46-9695-adc39cbe7d2f-20200108144457\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test828aae03-9239-4938-a303-c23c42311878-20200102083419\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test828aae03-9239-4938-a303-c23c42311878-20200102083419\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test84afd814-5098-49ab-af99-e50350b5898b-20200110211134\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test84afd814-5098-49ab-af99-e50350b5898b-20200110211134\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test85b08563-b15f-4202-a0bc-f2bc2df2c71a-20200107053335\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test85b08563-b15f-4202-a0bc-f2bc2df2c71a-20200107053335\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test88aac268-c087-4481-b78e-99b920784a33-20200101084853\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test88aac268-c087-4481-b78e-99b920784a33-20200101084853\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test88dbd442-a8cc-4874-81a0-d3192c61df62-20191001224544\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test88dbd442-a8cc-4874-81a0-d3192c61df62-20191001224544\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test894dfb75-a00f-4f0c-894c-cae1c9846ad3-20200105051803\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test894dfb75-a00f-4f0c-894c-cae1c9846ad3-20200105051803\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test8d09bf4d-ee63-4ab1-a986-a4b802418403-20200111051447\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test8d09bf4d-ee63-4ab1-a986-a4b802418403-20200111051447\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test8d4d652b-4f05-4e99-93dd-78b9a36b5c78-20191003203755\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test8d4d652b-4f05-4e99-93dd-78b9a36b5c78-20191003203755\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test8de64739-43d8-4f84-af65-fdb3d0885288-20200108053543\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test8de64739-43d8-4f84-af65-fdb3d0885288-20200108053543\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test8e324c65-a51d-4eeb-9ec8-d5f8662dc041-20191228165107\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test8e324c65-a51d-4eeb-9ec8-d5f8662dc041-20191228165107\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test8e564580-8e53-4300-85f1-bf7f31dd37ff-20200107013348\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test8e564580-8e53-4300-85f1-bf7f31dd37ff-20200107013348\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test8f458ca7-8898-4d58-b93d-bfb0c3da028c-20200109050310\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test8f458ca7-8898-4d58-b93d-bfb0c3da028c-20200109050310\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test901cd6ca-5565-4552-a3de-d204d01935c0-20200108083706\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test901cd6ca-5565-4552-a3de-d204d01935c0-20200108083706\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test907b39e5-4008-4b55-93a0-18e9697b9cf3-20200108053817\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test907b39e5-4008-4b55-93a0-18e9697b9cf3-20200108053817\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test90c2be7c-d7ec-4abf-9fad-fef90fc3ef4d-20191004022234\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test90c2be7c-d7ec-4abf-9fad-fef90fc3ef4d-20191004022234\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test922db678-6ee8-43d5-86ff-6a86e132d332-20200107085231\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test922db678-6ee8-43d5-86ff-6a86e132d332-20200107085231\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test93b88aec-5277-4b1b-910c-7008e972ce91-20200107013304\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test93b88aec-5277-4b1b-910c-7008e972ce91-20200107013304\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test95a9104b-6cba-42d8-82ff-cc37e5ac44db-20200108081723\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test95a9104b-6cba-42d8-82ff-cc37e5ac44db-20200108081723\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test96da1605-19e0-46eb-9ce0-53e840f5e2cb-20200101111729\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test96da1605-19e0-46eb-9ce0-53e840f5e2cb-20200101111729\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test996066b2-7d29-400f-929b-e343a21046f7-20191231151212\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test996066b2-7d29-400f-929b-e343a21046f7-20191231151212\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test99663fff-ed21-4a91-9687-1a6da2abb033-20200106084508\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test99663fff-ed21-4a91-9687-1a6da2abb033-20200106084508\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test9eb5efa5-c3c1-4c13-80a6-11f5eba67372-20200108144852\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test9eb5efa5-c3c1-4c13-80a6-11f5eba67372-20200108144852\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testa3791896-b1fc-491e-ba0d-aefcd8d9e52a-20200105083503\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testa3791896-b1fc-491e-ba0d-aefcd8d9e52a-20200105083503\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testa37ff709-a078-45a0-8187-41733df8e101-20200109050003\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testa37ff709-a078-45a0-8187-41733df8e101-20200109050003\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testa4c5fe4e-936e-4be1-a612-a331aff54a8c-20200111105055\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testa4c5fe4e-936e-4be1-a612-a331aff54a8c-20200111105055\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testa59bce1d-e32c-423d-a86e-945d4aeb98b4-20200107051821\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testa59bce1d-e32c-423d-a86e-945d4aeb98b4-20200107051821\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testa604c059-8279-4f4d-a354-eec27222a06c-20200111051514\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testa604c059-8279-4f4d-a354-eec27222a06c-20200111051514\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testa71fefb1-0d9c-4fb3-8d3d-5dcd12d72b77-20200103103221\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testa71fefb1-0d9c-4fb3-8d3d-5dcd12d72b77-20200103103221\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testa748013d-c5a6-44f9-88eb-43167207c742-20200111051402\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testa748013d-c5a6-44f9-88eb-43167207c742-20200111051402\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testaab67022-4f2b-420d-a06a-2c4045110cdf-20191229033144\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testaab67022-4f2b-420d-a06a-2c4045110cdf-20191229033144\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testacab9541-280f-4491-9f49-ac57653f0a07-20200105083839\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testacab9541-280f-4491-9f49-ac57653f0a07-20200105083839\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testad298437-0349-4cc7-88a9-d8aabcba9df1-20191002233431\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testad298437-0349-4cc7-88a9-d8aabcba9df1-20191002233431\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testadd68286-f9e0-4ab1-a526-d8f3cf0f054e-20200105084128\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testadd68286-f9e0-4ab1-a526-d8f3cf0f054e-20200105084128\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testade4c52b-18f5-4b67-8e93-945358ce4f7d-20191007234259\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testade4c52b-18f5-4b67-8e93-945358ce4f7d-20191007234259\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testae421c1d-0211-4ef2-b372-564ce8ad484a-20200110104035\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testae421c1d-0211-4ef2-b372-564ce8ad484a-20200110104035\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testafbbd8bf-aec5-48bf-8fea-73fa15ccc315-20191001224727\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testafbbd8bf-aec5-48bf-8fea-73fa15ccc315-20191001224727\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testb15148bf-78d2-42d4-ad08-b3ad8fb4b122-20200101084759\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testb15148bf-78d2-42d4-ad08-b3ad8fb4b122-20200101084759\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testb4237708-3688-40ea-85a2-275c05f4d100-20191228083519\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testb4237708-3688-40ea-85a2-275c05f4d100-20191228083519\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testb799a18f-be45-4c5c-8438-163ac2e1f1e7-20191004190529\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testb799a18f-be45-4c5c-8438-163ac2e1f1e7-20191004190529\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testb7cee88a-e5ac-4af4-99c8-7247020b00c3-20200105051201\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testb7cee88a-e5ac-4af4-99c8-7247020b00c3-20200105051201\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testb7df0d9a-27c0-4ca5-b692-08dd90387b98-20200111083443\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testb7df0d9a-27c0-4ca5-b692-08dd90387b98-20200111083443\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testbbf6bf32-4bd0-4381-b8f7-2658f585df4d-20191003203846\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testbbf6bf32-4bd0-4381-b8f7-2658f585df4d-20191003203846\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testbeea1376-166a-4b1a-8923-c907cc9737d9-20200107013336\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testbeea1376-166a-4b1a-8923-c907cc9737d9-20200107013336\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testbf9154e9-6166-48c2-86fe-1f331be606d7-20200107051823\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testbf9154e9-6166-48c2-86fe-1f331be606d7-20200107051823\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc0d7c3c5-23b8-489c-a5e0-ae87c681b696-20200101083539\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc0d7c3c5-23b8-489c-a5e0-ae87c681b696-20200101083539\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc193f31a-5186-4e93-84f6-0e4ab87b73c1-20200107052937\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc193f31a-5186-4e93-84f6-0e4ab87b73c1-20200107052937\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc1c7e8dc-fa8c-47d9-8305-de6d1451b939-20200101085248\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc1c7e8dc-fa8c-47d9-8305-de6d1451b939-20200101085248\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc1d0c917-e2ae-430c-a2ca-383fb0fda046-20191007235839\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc1d0c917-e2ae-430c-a2ca-383fb0fda046-20191007235839\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc23a3fbb-6e95-4c0d-94fc-c8ab14dddf1c-20191231151117\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc23a3fbb-6e95-4c0d-94fc-c8ab14dddf1c-20191231151117\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc2697630-6247-411a-94b3-c2974ad8cbee-20191007195417\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc2697630-6247-411a-94b3-c2974ad8cbee-20191007195417\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc466b80f-670f-4383-89b8-44e0d509fa20-20191002000516\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc466b80f-670f-4383-89b8-44e0d509fa20-20191002000516\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc5c8d9bd-75fa-4db3-9f34-5d7b7098584c-20191003203851\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc5c8d9bd-75fa-4db3-9f34-5d7b7098584c-20191003203851\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc8b6d14b-a5db-48e0-bfad-a2818d432bea-20200104083443\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc8b6d14b-a5db-48e0-bfad-a2818d432bea-20200104083443\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc933efa8-c553-4b93-884f-b7221d9ca789-20191228083750\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc933efa8-c553-4b93-884f-b7221d9ca789-20191228083750\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testcbe8ab80-46ef-49b1-a7bb-4e3d6e50e49f-20200104050811\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testcbe8ab80-46ef-49b1-a7bb-4e3d6e50e49f-20200104050811\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testccc0b5e6-9b0d-451a-8ac4-6f4af293b913-20200106092645\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testccc0b5e6-9b0d-451a-8ac4-6f4af293b913-20200106092645\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testcec64786-04b1-487c-80ec-050da646fb1c-20191005123412\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testcec64786-04b1-487c-80ec-050da646fb1c-20191005123412\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testd104a52f-eba2-401d-8e7f-a841c90f7712-20191228083553\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testd104a52f-eba2-401d-8e7f-a841c90f7712-20191228083553\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testd724cea4-0d3c-4539-b2ff-be08fb23a67e-20200107083714\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testd724cea4-0d3c-4539-b2ff-be08fb23a67e-20200107083714\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testd8e60bac-27ff-4fba-90b8-732c9c5ff91c-20191228083751\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testd8e60bac-27ff-4fba-90b8-732c9c5ff91c-20191228083751\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testd99db4a5-7683-4584-89ad-fefd711de284-20191004190210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testd99db4a5-7683-4584-89ad-fefd711de284-20191004190210\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testd9b4309a-67bc-4cd8-ac47-094cb20ca6aa-20200101090202\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testd9b4309a-67bc-4cd8-ac47-094cb20ca6aa-20200101090202\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testda3320e0-28f2-4146-a002-e06296362711-20191004190115\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testda3320e0-28f2-4146-a002-e06296362711-20191004190115\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testda714121-3240-4253-90c3-48c43f115c90-20200102083419\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testda714121-3240-4253-90c3-48c43f115c90-20200102083419\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testdb357558-60b4-4ee3-9ec3-ba22c5d827fb-20191004020617\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testdb357558-60b4-4ee3-9ec3-ba22c5d827fb-20191004020617\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testdc7230e9-df6d-4edd-a57c-ef7e0432c463-20191002011345\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testdc7230e9-df6d-4edd-a57c-ef7e0432c463-20191002011345\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testdccb59de-436f-4935-bed6-2e677dcaf36a-20200109111802\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testdccb59de-436f-4935-bed6-2e677dcaf36a-20200109111802\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testde985b23-9333-4f6e-a5e8-82025a38b2af-20200102083510\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testde985b23-9333-4f6e-a5e8-82025a38b2af-20200102083510\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Teste271da3e-cbcb-4ee7-8770-f297f414451f-20191003015540\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Teste271da3e-cbcb-4ee7-8770-f297f414451f-20191003015540\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Teste4070edd-aec0-455d-8a79-aecdb7170b6d-20191007234642\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Teste4070edd-aec0-455d-8a79-aecdb7170b6d-20191007234642\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Teste42f351a-4da0-4f0d-93e9-ef1d98e06659-20200108083633\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Teste42f351a-4da0-4f0d-93e9-ef1d98e06659-20200108083633\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Teste66ca23c-f4bf-4eb3-8418-139364d19e7d-20200107062643\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Teste66ca23c-f4bf-4eb3-8418-139364d19e7d-20200107062643\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Teste78b1ab2-1380-48ab-9923-0276cdb7198b-20191001224742\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Teste78b1ab2-1380-48ab-9923-0276cdb7198b-20191001224742\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Teste8607e14-b4f8-472a-bd5b-893b8d9612e6-20200112045941\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Teste8607e14-b4f8-472a-bd5b-893b8d9612e6-20200112045941\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Teste980b80e-3add-42c0-bc98-a84020b2d128-20200108101640\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Teste980b80e-3add-42c0-bc98-a84020b2d128-20200108101640\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Tested79dba9-2d38-4ea9-a01c-56e94b30ca7a-20191007195447\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Tested79dba9-2d38-4ea9-a01c-56e94b30ca7a-20191007195447\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testee9dcf5f-f7c4-4192-a8f4-28e9bc7d0f7c-20191001225005\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testee9dcf5f-f7c4-4192-a8f4-28e9bc7d0f7c-20191001225005\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testefbb340a-b68b-4200-872b-d05e7d29f92d-20191007195432\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testefbb340a-b68b-4200-872b-d05e7d29f92d-20191007195432\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testf1fc0559-6740-48dd-9501-2b933c731d52-20200103083458\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testf1fc0559-6740-48dd-9501-2b933c731d52-20200103083458\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testf41dfc97-bb51-4fba-86ca-a6f2695c415a-20200107050834\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testf41dfc97-bb51-4fba-86ca-a6f2695c415a-20200107050834\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testf5784447-83ed-4c00-8764-ea0f932aafa2-20200106085748\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testf5784447-83ed-4c00-8764-ea0f932aafa2-20200106085748\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testf6128ef6-c13c-420e-8088-0710888ce88b-20200109050003\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testf6128ef6-c13c-420e-8088-0710888ce88b-20200109050003\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testf863ab2c-ada9-4646-84c7-1f83a82375d7-20191229033226\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testf863ab2c-ada9-4646-84c7-1f83a82375d7-20191229033226\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testfac552a7-418f-4baa-8f51-d199ceff5c68-20200103050817\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testfac552a7-418f-4baa-8f51-d199ceff5c68-20200103050817\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testfb7be054-5c15-494f-822c-b64f9a36e2f3-20200105051753\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testfb7be054-5c15-494f-822c-b64f9a36e2f3-20200105051753\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testfc5c7585-6c9a-4aa4-a7c4-1223a94e00c7-20200104083552\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testfc5c7585-6c9a-4aa4-a7c4-1223a94e00c7-20200104083552\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.FileServer.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.FileServer.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Geneva\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Geneva\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.KeyVault\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.KeyVault\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.KeyVault.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.KeyVault.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.LabServices\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.LabServices\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.LabServices.test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.LabServices.test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.Agent\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.Agent\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.Dev\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.Dev\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.Dev.INT\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.Dev.INT\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.Dev.SCALE\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.Dev.SCALE\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.Dev.TEST\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.Dev.TEST\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.GuestHealth\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.GuestHealth\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.DEV\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.DEV\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.INT\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.INT\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.SCALE\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.SCALE\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.TEST\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.TEST\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.INT.Dev\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.INT.Dev\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.SCALE.Dev\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.SCALE.Dev\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.TEST.Dev\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.TEST.Dev\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.WorkloadInsights.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.WorkloadInsights.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.WorkloadInsightsTest.newnamespace\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.WorkloadInsightsTest.newnamespace\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.Workloads\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.Workloads\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.Workloads.Dev\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.Workloads.Dev\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitoring.DependencyAgent\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitoring.DependencyAgent\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitoring.DependencyAgent.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitoring.DependencyAgent.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Networking.DNS\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Networking.DNS\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Networking.SDN\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Networking.SDN\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.NetworkWatcher\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.NetworkWatcher\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.NetworkWatcher.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.NetworkWatcher.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.OpenSSH\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.OpenSSH\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Performance.Diagnostics\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Performance.Diagnostics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Performance.Diagnostics.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Performance.Diagnostics.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.RecoveryServices\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.RecoveryServices.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices.SiteRecovery\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.RecoveryServices.SiteRecovery\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices.SiteRecovery2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.RecoveryServices.SiteRecovery2\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices.WorkloadBackup\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.RecoveryServices.WorkloadBackup\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices.WorkloadBackup.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.RecoveryServices.WorkloadBackup.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.AntimalwareSignature\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.AntimalwareSignature\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.AntimalwareSignature.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.AntimalwareSignature.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.Dsms\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.Dsms\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.Dsms.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.Dsms.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.LinuxAttestation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.LinuxAttestation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.LinuxTestAttestation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.LinuxTestAttestation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.Monitoring\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.Monitoring\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.Monitoring.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.Monitoring.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.Monitoring.Testing\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.Monitoring.Testing\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.TestWindowsAttestation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.TestWindowsAttestation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.WindowsAttestation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.WindowsAttestation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.WinTestAttestation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.WinTestAttestation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Sentinel.DnsExtension.Dev\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Sentinel.DnsExtension.Dev\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.ServiceFabric.MC\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.ServiceFabric.MC\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.ServiceFabric.MC.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.ServiceFabric.MC.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.SiteRecovery.Stage\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.SiteRecovery.Stage\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.SiteRecovery.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.SiteRecovery.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.SiteRecovery2.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.SiteRecovery2.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Test.Identity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Test.Identity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WindowsFabric.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WindowsFabric.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.ReleasePipeTest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.ReleasePipeTest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.ReleasePipeTest.INT\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.ReleasePipeTest.INT\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.ReleasePipeTest.TEST\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.ReleasePipeTest.TEST\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test2\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test3\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test3\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test4\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test4\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test5\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test5\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test5.INT\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test5.INT\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test5.TEST\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test5.TEST\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.VincentTest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.VincentTest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.VincentTest2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.VincentTest2\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.VincentTest3\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.VincentTest3\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.VincentTest4\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.VincentTest4\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.TestTest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.TestTest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.TestTest.INT\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.TestTest.INT\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.TestTest.TEST\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.TestTest.TEST\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Windows.ReleasePipeTest.INT\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Windows.ReleasePipeTest.INT\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Windows.ReleasePipeTest.TEST\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Windows.ReleasePipeTest.TEST\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoring\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoring.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoringTest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoringTest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureData\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureData\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureData.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureData.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.Canary\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights.Canary\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.Corp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights.Corp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.Linux.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights.Linux.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.LinuxTest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights.LinuxTest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.Meya0206\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights.Meya0206\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.MeyaCorp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights.MeyaCorp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.Testing\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights.Testing\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureSecurity.JITAccess\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureSecurity.JITAccess\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.CloudBackup.Workload.Extension\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.CloudBackup.Workload.Extension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.CloudBackup.Workload.Extension.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.CloudBackup.Workload.Extension.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Compute\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Compute.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Compute.TestSar\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute.TestSar\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.CPlat.Core\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.CPlat.Core\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.CPlat.Core.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.CPlat.Core.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Dcsswe.Extensions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Dcsswe.Extensions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.EnterpriseCloud.Monitoring\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.EnterpriseCloud.Monitoring.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.EnterpriseCloud.Monitoring.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Golive.Extensions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Golive.Extensions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.GuestConfig.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.GuestConfig.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.GuestConfiguration\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.GuestConfiguration\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.GuestConfiguration.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.GuestConfiguration.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.GuestConfiguration.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.GuestConfiguration.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.HpcCompute\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.HpcCompute\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.HpcCompute.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.HpcCompute.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.HpcPack\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.HpcPack\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Interceptor\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Interceptor\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.M365\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.M365\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.M365SecurityConfiguration.Kevlar.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.M365SecurityConfiguration.Kevlar.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.ManagedIdentity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.ManagedIdentity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.ManagedServices\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.ManagedServices\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.ManagedServices.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.ManagedServices.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.MonitoringAgent.Extension\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.MonitoringAgent.Extension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Network\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Network\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.OSTCExtensions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.OSTCExtensions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.OSTCExtensions.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.OSTCExtensions.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.OSTCExtensions.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.OSTCExtensions.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.OSTCExtensions.Testing\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.OSTCExtensions.Testing\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Powershell\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Powershell\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Powershell.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Powershell.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Powershell.Test01\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Powershell.Test01\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.SecurityManagement.Kevlar\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.SecurityManagement.Kevlar\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Sentinel.AzureMonitorAgentExtensions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Sentinel.AzureMonitorAgentExtensions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.SoftwareUpdateManagement\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.SoftwareUpdateManagement\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.SoftwareUpdateManagement.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.SoftwareUpdateManagement.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.SqlServer.Managability.IaaS.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.SqlServer.Managability.IaaS.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.SqlServer.Management\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.SqlServer.Management\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.SqlServer.Management.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.SqlServer.Management.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.SystemCenter\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.SystemCenter\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.SystemCenter.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.SystemCenter.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Test.Azure.Workloads\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Test.Azure.Workloads\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.TestSqlServer.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.TestSqlServer.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.ETWTraceListenerService\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.Azure.ETWTraceListenerService\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.RemoteDebug\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.Azure.RemoteDebug\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.RemoteDebug.Json\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.Azure.RemoteDebug.Json\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.ServiceProfiler\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.ServiceProfiler\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.Services\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.Services\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.WindowsAzure.DevTest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.WindowsAzure.DevTest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.WindowsAzure.DevTest.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.WindowsAzure.DevTest.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.WindowsAzure.RemoteDebug\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.WindowsAzure.RemoteDebug\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.WindowsAzure.Test.RemoteDebug\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.WindowsAzure.Test.RemoteDebug\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Windows.Azure.Extensions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Windows.Azure.Extensions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Windows.AzureRemoteApp.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Windows.AzureRemoteApp.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Windows.RemoteDesktop\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Windows.RemoteDesktop\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.WindowsAdminCenter\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.WindowsAdminCenter\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.WindowsAdminCenter.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.WindowsAdminCenter.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.WindowsAzure.Compute\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.WindowsAzure.Compute\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.WindowsAzure.Compute.test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.WindowsAzure.Compute.test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.WVD\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.WVD\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoftagciuk\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoftagciuk\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoftazurecituswarp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoftazurecituswarp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftAzureSiteRecovery\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftAzureSiteRecovery\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftBizTalkServer\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftBizTalkServer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftCBLMariner\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftCBLMariner\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoftcmotest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoftcmotest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoftcorporation1602274591143\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoftcorporation1602274591143\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoftcorporation1620407702632\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoftcorporation1620407702632\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftDynamicsAX\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftDynamicsAX\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftDynamicsGP\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftDynamicsGP\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftDynamicsNAV\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftDynamicsNAV\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoftfarmbeats\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoftfarmbeats\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftHybridCloudStorage\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftHybridCloudStorage\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftOSTC\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftOSTC\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftPowerBI\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftPowerBI\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftRServer\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftRServer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftSharePoint\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftSharePoint\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftSQLServer\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftSQLServer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftTestLinuxPPS\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftTestLinuxPPS\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftVisualStudio\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftVisualStudio\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftWindowsDesktop\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsDesktop\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftWindowsServer\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsServer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftWindowsServerHPCPack\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsServerHPCPack\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft_iot_edge\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft_iot_edge\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft_javaeeonazure_test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft_javaeeonazure_test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microstrategy\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microstrategy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"midasolutions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/midasolutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"middleware\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/middleware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"midfin\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/midfin\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"midvision\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/midvision\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mihupcommunicationspvtltd1599046998010\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mihupcommunicationspvtltd1599046998010\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mindcti\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mindcti\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"minio\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/minio\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"miraclelinux\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/miraclelinux\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"miracl_linux\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/miracl_linux\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"miri-infotech-pvt-ltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/miri-infotech-pvt-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mistio1601460379393\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mistio1601460379393\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mobilab\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mobilab\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"modern-systems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/modern-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"modexblockchaindatabase\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/modexblockchaindatabase\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"monetdbsolutions1611751313758\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/monetdbsolutions1611751313758\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"monitorapp1579029852605\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/monitorapp1579029852605\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"monitorcomputersystemsltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/monitorcomputersystemsltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"moogsoft\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/moogsoft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"morpheus-data\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/morpheus-data\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"moviemasher\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/moviemasher\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mriisoftllc1579457820427\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mriisoftllc1579457820427\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"msopentech\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/msopentech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mtnfog\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mtnfog\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"multisoft-ab\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/multisoft-ab\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mvp-systems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mvp-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mwg_azure\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mwg_azure\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mxhero\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mxhero\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"my-com\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/my-com\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"myarchinc1614657280935\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/myarchinc1614657280935\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"narrativescience\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/narrativescience\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nasuni\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nasuni\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nasunicorporation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nasunicorporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"navicloudrsoftwarepteltd1601967280369\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/navicloudrsoftwarepteltd1601967280369\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ncache\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ncache\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ncbi\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ncbi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ncomputingglobalinc1604353053068\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ncomputingglobalinc1604353053068\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ndl\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ndl\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nebbiolo-technologies-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nebbiolo-technologies-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nec-technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nec-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nefelinetworks1591201080882\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nefelinetworks1591201080882\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"neo4j\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/neo4j\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"neos\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/neos\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"neowaybusinesssolutions-4956350\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/neowaybusinesssolutions-4956350\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netapp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netapp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netatwork\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netatwork\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netfoundryinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netfoundryinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netgate\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netgate\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netikus-net-ltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netikus-net-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netiq\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netiq\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netka\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netka\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netmail\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netmail\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netscout\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netscout\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netspi\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netspi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netsweeper\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netsweeper\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"networksexchangetechnologyltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/networksexchangetechnologyltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netwrix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netwrix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netx\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netx\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"neusoft-neteye\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/neusoft-neteye\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"newnetcommunicationtechnologies1589991852134\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/newnetcommunicationtechnologies1589991852134\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"NewRelic.Infrastructure.Extensions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/NewRelic.Infrastructure.Extensions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"newtglobalconsultingllc1581492268566\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/newtglobalconsultingllc1581492268566\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nextronic-5290868\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nextronic-5290868\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nginxinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nginxinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nice-it-management-solutions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nice-it-management-solutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nicepeopleatwork\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nicepeopleatwork\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nilespartnersinc1617691698386\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nilespartnersinc1617691698386\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"niolabs-5229713\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/niolabs-5229713\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nirvatosoftwarepvtltd1601368706606\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nirvatosoftwarepvtltd1601368706606\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nodejsapi\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nodejsapi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"noianetworklimited1584098036197\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/noianetworklimited1584098036197\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nokiaofamericacorporation1591716055441\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nokiaofamericacorporation1591716055441\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"noobaa\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/noobaa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"norcominformationtechnologygmbhcokgaa\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/norcominformationtechnologygmbhcokgaa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"noricumcloudsolutions1600524477681\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/noricumcloudsolutions1600524477681\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"norsync\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/norsync\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"northbridge-secure\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/northbridge-secure\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nozominetworks1582208017986\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nozominetworks1582208017986\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nri\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nri\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ntegralinc1586961136942\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ntegralinc1586961136942\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ntt-data-intellilink-corporation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ntt-data-intellilink-corporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nttdata\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nttdata\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nttltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nttltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nuco-networks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nuco-networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"numbersbelieve\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/numbersbelieve\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"numtrallcpublisher\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/numtrallcpublisher\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nuxeo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nuxeo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nvidia\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nvidia\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"o2mc-real-time-data-platform\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/o2mc-real-time-data-platform\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"objectivity-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/objectivity-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"objectivity1595351622261\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/objectivity1595351622261\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"oceanblue-cloud\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/oceanblue-cloud\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"OctopusDeploy.Tentacle\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/OctopusDeploy.Tentacle\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"odix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/odix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"odysseuscomputationalsolutions1630242118741\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/odysseuscomputationalsolutions1630242118741\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"odysseyconsultantsltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/odysseyconsultantsltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"officeatwork-ag\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/officeatwork-ag\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"omega-software\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/omega-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"onapsis\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/onapsis\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"oncore_cloud_services-4944214\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/oncore_cloud_services-4944214\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"onexgroup\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/onexgroup\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"onspecta\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/onspecta\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ontology\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ontology\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"onyx-point-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/onyx-point-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"op5\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/op5\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"open-connect-systems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/open-connect-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"opencell\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/opencell\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"openlinkswcom-pago\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/openlinkswcom-pago\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"OpenLogic\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/OpenLogic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"openrefactoryinc1620140917523\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/openrefactoryinc1620140917523\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"openshotstudiosllc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/openshotstudiosllc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"opentext\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/opentext\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"openvpn\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/openvpn\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"opslogix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/opslogix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"opswatinc1619007967290\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/opswatinc1619007967290\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"optimitiveslu1618320281443\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/optimitiveslu1618320281443\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"option3\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/option3\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Oracle\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Oracle\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"oraylis\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/oraylis\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"oraylisbi\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/oraylisbi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"orbs-network\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/orbs-network\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"oriana\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/oriana\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"orientdb\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/orientdb\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"oroinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/oroinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"osirium-ltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/osirium-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"osisoft\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/osisoft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"osnexus\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/osnexus\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"outpost24\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/outpost24\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"outsystems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/outsystems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ovaledge1618392232783\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ovaledge1618392232783\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pachyderminc1585170006545\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pachyderminc1585170006545\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pacteratechnologiesinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pacteratechnologiesinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"paladionnetworkspvtltd1606120508449\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/paladionnetworkspvtltd1606120508449\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"paloaltonetworks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/paloaltonetworks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"panopta\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/panopta\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"panorama-necto\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/panorama-necto\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"panzura-file-system\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/panzura-file-system\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"parabole\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/parabole\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"paralaxiomtechnologiesprivatelimited1596433357886\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/paralaxiomtechnologiesprivatelimited1596433357886\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"parallels\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/parallels\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"parasoft\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/parasoft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"parkersoftwarelimited1609786657569\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/parkersoftwarelimited1609786657569\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"parsec-for-teams\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/parsec-for-teams\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pasifikciptamandiri\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pasifikciptamandiri\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"passlogy\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/passlogy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"paxata\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/paxata\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pcman\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pcman\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"peer-software-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/peer-software-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"penta-security-systems-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/penta-security-systems-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"percona\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/percona\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"perforce\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/perforce\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"periscope-tech-4791746\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/periscope-tech-4791746\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"piolinkinc1582849368309\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/piolinkinc1582849368309\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pivotal\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pivotal\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pixitmedia1591611150480\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pixitmedia1591611150480\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"plesk\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/plesk\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pmsoftwareinternational1603102514882\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pmsoftwareinternational1603102514882\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pnop\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pnop\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"polarityioinc1628691850891\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/polarityioinc1628691850891\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"portalarchitects\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/portalarchitects\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"portsysinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/portsysinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"postgres-pro\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/postgres-pro\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"powerbireach\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/powerbireach\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"prakshepprivatelimited1619949827900\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/prakshepprivatelimited1619949827900\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"prestashop\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/prestashop\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"prestige_informatique-1090178\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/prestige_informatique-1090178\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"prime-strategy\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/prime-strategy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"primekey\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/primekey\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"primestrategynewyorkinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/primestrategynewyorkinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pro-vision\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pro-vision\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"process-one\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/process-one\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"processgold\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/processgold\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"procomputers\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/procomputers\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"procomputerssrl1594239153814\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/procomputerssrl1594239153814\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"profecia\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/profecia\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Profiler.AgentOrchestrationRefactor.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Profiler.AgentOrchestrationRefactor.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Profiler.Master.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Profiler.Master.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"profisee\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/profisee\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"progelspa\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/progelspa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"progresssoftwarecorporation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/progresssoftwarecorporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"proliongmbh1628175060372\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/proliongmbh1628175060372\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"protegrityusainc1627404648458\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/protegrityusainc1627404648458\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"protiviti\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/protiviti\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"proventeq\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/proventeq\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ptc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ptc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ptsecurity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ptsecurity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pulse-secure\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pulse-secure\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pulsesecuretechnologies1638179500151\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pulsesecuretechnologies1638179500151\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"puppet\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/puppet\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"puppeteersoy1601024480557\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/puppeteersoy1601024480557\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"PuppetLabs\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/PuppetLabs\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"PuppetLabs.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/PuppetLabs.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"purestorageinc1578960262525\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/purestorageinc1578960262525\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pydio\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pydio\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pyramidanalytics\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pyramidanalytics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"qlik\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/qlik\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"qnapsystemsinc1601352084032\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/qnapsystemsinc1601352084032\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"qore-technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/qore-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"qs-solutions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/qs-solutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Qualys\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Qualys\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Qualys.LinuxAgent.GrayLabel\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Qualys.LinuxAgent.GrayLabel\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Qualys.WindowsAgent.GrayLabel\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Qualys.WindowsAgent.GrayLabel\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"qualysguard\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/qualysguard\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"quasardb\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/quasardb\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"qubole-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/qubole-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"quest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/quest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"racknap\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/racknap\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rackwareinc1619403669255\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rackwareinc1619403669255\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"radiant-logic\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/radiant-logic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"radware\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/radware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"raincode\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/raincode\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rancher\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rancher\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rapid7\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rapid7\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Rapid7.InsightPlatform\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Rapid7.InsightPlatform\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rapidminer\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rapidminer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"raynetgmbh\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/raynetgmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"readymind\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/readymind\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"realm\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/realm\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"reblaze\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/reblaze\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"RedHat\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/RedHat\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"redhat-rhel\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/redhat-rhel\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"redpoint-global\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/redpoint-global\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"refactr\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/refactr\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"refinitiv\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/refinitiv\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"refinitiv-4807503\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/refinitiv-4807503\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"relevance-lab\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/relevance-lab\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"remotelearner\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/remotelearner\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"res\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/res\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"resco\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/resco\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"resemblesystems1582780358300\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/resemblesystems1582780358300\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"responder-corp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/responder-corp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"revolution-analytics\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/revolution-analytics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rhcsolutions1586957910818\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rhcsolutions1586957910818\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ribboncommunications\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ribboncommunications\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"RightScaleLinux\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/RightScaleLinux\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"RightScaleWindowsServer\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/RightScaleWindowsServer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rimo3\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rimo3\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ringsoftwareresearchanddevelopmentinc1578946072257\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ringsoftwareresearchanddevelopmentinc1578946072257\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"riverbed\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/riverbed\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"RiverbedTechnology\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/RiverbedTechnology\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rmgtechnologiesinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rmgtechnologiesinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rocketml\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rocketml\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rocketsoftware\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rocketsoftware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rohdeschwarzcybersecuritygmbh\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rohdeschwarzcybersecuritygmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rohdeschwarzcybersecuritysas\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rohdeschwarzcybersecuritysas\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"roktech\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/roktech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rsa-security-llc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rsa-security-llc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rsk-labs\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rsk-labs\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rstudio-5237862\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rstudio-5237862\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rtts\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rtts\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rubrik-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rubrik-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"runecastsolutionslimited1614186396822\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/runecastsolutionslimited1614186396822\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"s2ix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/s2ix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"saama\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/saama\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"saasame-limited\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/saasame-limited\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"safesoftwareinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/safesoftwareinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"safeticatechnologiessro\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/safeticatechnologiessro\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"safetica_technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/safetica_technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"safetoopen1585013318137\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/safetoopen1585013318137\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"saltsecurity1583264186232\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/saltsecurity1583264186232\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"saltsecurity1583264669848\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/saltsecurity1583264669848\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"saltstack\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/saltstack\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"samsung-sds\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/samsung-sds\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"samsungelectronics1632860607983\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/samsungelectronics1632860607983\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"samsungsds-cello\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/samsungsds-cello\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"samsungsds_sdbe\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/samsungsds_sdbe\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sandhatatechnologieslimited1615753438737\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sandhatatechnologieslimited1615753438737\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sap\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sap\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sapphiretechnologieslimited1611758579346\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sapphiretechnologieslimited1611758579346\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sas-institute-560503\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sas-institute-560503\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"scaidata\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/scaidata\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"scalearc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/scalearc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"scalegrid\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/scalegrid\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"scality\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/scality\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"schrockeninc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/schrockeninc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sci\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sci\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sciencelogicinc1622565452194\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sciencelogicinc1622565452194\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"scientiamobile\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/scientiamobile\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"scontainug1595751515785\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/scontainug1595751515785\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"scubaanalytics\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/scubaanalytics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"scylladb1631195365807\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/scylladb1631195365807\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"seaqserviciossas1579029207572\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/seaqserviciossas1579029207572\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"searchbloxsoftwareinc1594309037050\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/searchbloxsoftwareinc1594309037050\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"secureworks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/secureworks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"securityonionsolutions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/securityonionsolutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"securityonionsolutionsllc1624649205155\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/securityonionsolutionsllc1624649205155\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"securosis\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/securosis\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"seequentltd1585781751395\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/seequentltd1585781751395\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"semarchy\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/semarchy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"semperis\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/semperis\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"senhasegura\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/senhasegura\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"SentinelOne.LinuxExtension\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/SentinelOne.LinuxExtension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"SentinelOne.WindowsExtension\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/SentinelOne.WindowsExtension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"SentinelOne.WindowsExtension.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/SentinelOne.WindowsExtension.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sentriumsl\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sentriumsl\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sentryone\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sentryone\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sepiosystems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sepiosystems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"seppmailag\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/seppmailag\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"seraumo1620002807288\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/seraumo1620002807288\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"service-control-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/service-control-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sesamesoftwareinc1622125191447\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sesamesoftwareinc1622125191447\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"shadow-soft\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/shadow-soft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"shareshiftneeraj.test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/shareshiftneeraj.test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sightapps\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sightapps\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"signal-sciences\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/signal-sciences\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"silk\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/silk\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"silver-peak-systems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/silver-peak-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"simmachinesinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/simmachinesinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"simontelephonics\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/simontelephonics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"simpledatalabsinc1635791235920\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/simpledatalabsinc1635791235920\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"simplifierag\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/simplifierag\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"simpligov\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/simpligov\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sinefa\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sinefa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sinequa\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sinequa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sinequa1588262295885\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sinequa1588262295885\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"singapore-telecommunications-limited\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/singapore-telecommunications-limited\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sios_datakeeper\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sios_datakeeper\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"siportalinc1581539156321\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/siportalinc1581539156321\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sisenseltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sisenseltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Site24x7\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Site24x7\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sktelecom\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sktelecom\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"skyarc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/skyarc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"skyboxsecurity1585187406404\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/skyboxsecurity1585187406404\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"skylarkcloud\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/skylarkcloud\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"smartbearsoftware\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/smartbearsoftware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"smartmessage-autoflow\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/smartmessage-autoflow\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"snaplogic\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/snaplogic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"snapt-adc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/snapt-adc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"snips\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/snips\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"soasta\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/soasta\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"softnas\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/softnas\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"softwarecentralas1642687699196\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/softwarecentralas1642687699196\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"softwarehut\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/softwarehut\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"softwebsolutions-4518310\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/softwebsolutions-4518310\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"soha\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/soha\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"solanolabs\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/solanolabs\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"solar-security\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/solar-security\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"solarwinds\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/solarwinds\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"solvedevops1643693563360\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/solvedevops1643693563360\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sonicwall-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sonicwall-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sophos\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sophos\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sourcegearllc1616101262784\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sourcegearllc1616101262784\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"south-river-technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/south-river-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"southrivertech1586314123192\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/southrivertech1586314123192\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"spacecurve\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/spacecurve\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"spaceliftinc1625499025476\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/spaceliftinc1625499025476\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"spagobi\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/spagobi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sparklinglogic\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sparklinglogic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"spectralcorelimited1619779004178\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/spectralcorelimited1619779004178\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"spektra\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/spektra\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sphere3d\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sphere3d\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"spideroakinc1588278690933\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/spideroakinc1588278690933\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"spirentcommunications1594084187199\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/spirentcommunications1594084187199\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"splunk\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/splunk\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sproutenetworks1593456311717\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sproutenetworks1593456311717\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sqlstream\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sqlstream\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"squadratechnologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/squadratechnologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"squaredup\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/squaredup\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"src-solution\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/src-solution\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stackato-platform-as-a-service\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stackato-platform-as-a-service\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Stackify.LinuxAgent.Extension\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Stackify.LinuxAgent.Extension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stackstorm\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stackstorm\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"startekfingerprintmatch\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/startekfingerprintmatch\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"startisolucoesemtecnologialtda1635263523201\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/startisolucoesemtecnologialtda1635263523201\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"starwind\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/starwind\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"StatusMonitor2.Diagnostics.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/StatusMonitor2.Diagnostics.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"StatusReport.Diagnostics.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/StatusReport.Diagnostics.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stealthbits\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stealthbits\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"steelhive\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/steelhive\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stonebondtechnologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stonebondtechnologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stonefly\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stonefly\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"storage_made_easy\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/storage_made_easy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stormshield\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stormshield\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"storone1594045543980\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/storone1594045543980\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"storreduce\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/storreduce\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"storwarespzoo1611743234900\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/storwarespzoo1611743234900\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"strangebee1595948424730\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/strangebee1595948424730\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"strataidentity1608323708170\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/strataidentity1608323708170\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stratis-group-ltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stratis-group-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stratodesk1611152769936\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stratodesk1611152769936\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stratumn\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stratumn\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"streamsets\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/streamsets\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"striim\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/striim\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stromasys\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stromasys\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"strongboxitllc1594816423884\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/strongboxitllc1594816423884\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"su\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/su\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"subscription.test.krsh\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/subscription.test.krsh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sumologic\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sumologic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sunatogmbh\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sunatogmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sunday\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sunday\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"SUSE\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/SUSE\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"swoopanalytics\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/swoopanalytics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sycom-technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sycom-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sycompatechnologycompanyinc1588192103892\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sycompatechnologycompanyinc1588192103892\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.CloudWorkloadProtection\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.CloudWorkloadProtection\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.CloudWorkloadProtection.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.CloudWorkloadProtection.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.CloudWorkloadProtection.TestOnStage\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.CloudWorkloadProtection.TestOnStage\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.QA\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.QA\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.staging\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.staging\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.test.ru2.latest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.test.ru2.latest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.test.ru2final\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.test.ru2final\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.test.ru2latest1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.test.ru2latest1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.test.ru4mp1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.test.ru4mp1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.test.ru4mp1.latest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.test.ru4mp1.latest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.test.ru4mp1final\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.test.ru4mp1final\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"symanteccorporation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/symanteccorporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"symantectest1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/symantectest1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"synack-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/synack-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"syncfusion\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/syncfusion\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"syncfusionbigdataplatfor\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/syncfusionbigdataplatfor\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"synechron-technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/synechron-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"synergixinc1585256339250\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/synergixinc1585256339250\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"synnexcorp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/synnexcorp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"syscomcomputerengineeringco1583913200141\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/syscomcomputerengineeringco1583913200141\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"syte\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/syte\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tableau\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tableau\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tactic\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tactic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"talari-networks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/talari-networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"talena-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/talena-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"talend\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/talend\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"talon\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/talon\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tamrinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tamrinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"targit\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/targit\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tata_communications\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tata_communications\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tavanttechnologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tavanttechnologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tavendo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tavendo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"te-systems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/te-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"techdivision\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/techdivision\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"techlatest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/techlatest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"technicheltd1606969724100\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/technicheltd1606969724100\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tecknolab\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tecknolab\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"telepat\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/telepat\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"teloscorporation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/teloscorporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tempered-networks-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tempered-networks-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tenable\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tenable\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tensormakecorpdbaoneclickai1608247756082\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tensormakecorpdbaoneclickai1608247756082\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"teradata\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/teradata\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Teradici\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Teradici\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"teramindinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/teramindinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.Gemalto.SafeNet.ProtectV\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.Gemalto.SafeNet.ProtectV\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.Gemalto.SafeNet.ProtectV.Azure\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.Gemalto.SafeNet.ProtectV.Azure\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.HP.AppDefender\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.HP.AppDefender\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.Microsoft.VisualStudio.Services\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.Microsoft.VisualStudio.Services\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.NJHP.AppDefender\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.NJHP.AppDefender\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.SqlServer.Managability\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.SqlServer.Managability\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.SqlServer.Management\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.SqlServer.Management\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.SqlServer.Management.corext\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.SqlServer.Management.corext\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test1.NJHP.AppDefender\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test1.NJHP.AppDefender\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test3.Microsoft.VisualStudio.Services\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test3.Microsoft.VisualStudio.Services\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"testable1603721901088\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/testable1603721901088\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"testpro\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/testpro\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"test_test_mix3pptest0011614206850774\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/test_test_mix3pptest0011614206850774\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"test_test_mneela1628617140187\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/test_test_mneela1628617140187\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"test_test_pmc2pc1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/test_test_pmc2pc1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thales-vormetric\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thales-vormetric\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thalesdiscplusainc1596561677238\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thalesdiscplusainc1596561677238\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thedatavaluefactoryltd1589348815922\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thedatavaluefactoryltd1589348815922\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thefreebsdfoundation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thefreebsdfoundation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thehdfgroup1616725197741\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thehdfgroup1616725197741\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"theumag1596442827072\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/theumag1596442827072\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"things-board\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/things-board\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thingscareinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thingscareinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thinprintgmbh\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thinprintgmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thorntechnologiesllc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thorntechnologiesllc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thoughtspot-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thoughtspot-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"threatintelligenceptyltd1586824172898\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/threatintelligenceptyltd1586824172898\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tibco-software\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tibco-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tidal-migrations\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tidal-migrations\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tidalmediainc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tidalmediainc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tig\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tig\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tiger-technology\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tiger-technology\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tigergraph\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tigergraph\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"timextender\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/timextender\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tmaxsoft\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tmaxsoft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tmaxsoft1608612658335\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tmaxsoft1608612658335\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tomsawyersoftwarecorp1613579206342\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tomsawyersoftwarecorp1613579206342\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"topicus\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/topicus\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"torusware\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/torusware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"totemo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/totemo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"townsend-security\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/townsend-security\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"transcendinformationinc1609918445926\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/transcendinformationinc1609918445926\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"transientxinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/transientxinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"transvault\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/transvault\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"trendmicro\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/trendmicro\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"TrendMicro.DeepSecurity.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/TrendMicro.DeepSecurity.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"TrendMicro.PortalProtect\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/TrendMicro.PortalProtect\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tresorit\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tresorit\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"trifacta\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/trifacta\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tripleblindinc1615730179432\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tripleblindinc1615730179432\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tripwire-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tripwire-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"truata1612259728221\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/truata1612259728221\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"truestack\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/truestack\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tryonsolutionsinc1596650621083\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tryonsolutionsinc1596650621083\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tsa-public-service\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tsa-public-service\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tunnelbiz\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tunnelbiz\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"turbonet\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/turbonet\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"turbonet1581982683964\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/turbonet1581982683964\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"twistlock\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/twistlock\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"typesafe\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/typesafe\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ubeeko\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ubeeko\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ubercloud\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ubercloud\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"uipath-5054924\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/uipath-5054924\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ulex\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ulex\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"unifi-software\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/unifi-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"unifiedstreaming1598872291606\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/unifiedstreaming1598872291606\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"uniprint-net\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/uniprint-net\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"unitrends\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/unitrends\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"unnisoft\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/unnisoft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"unravel-data\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/unravel-data\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"unscramblsingaporepteltd-4999260\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/unscramblsingaporepteltd-4999260\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"untangle\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/untangle\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"upsolver1594188634150\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/upsolver1594188634150\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"usp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/usp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"valohai\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/valohai\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"valtix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/valtix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"varmournetworks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/varmournetworks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"varnish\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/varnish\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vatacommunicationsinc1581644208717\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vatacommunicationsinc1581644208717\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vaultive-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vaultive-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vbot\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vbot\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vcinityinc1587684340545\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vcinityinc1587684340545\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vectraaiinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vectraaiinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"veeam\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/veeam\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"velocitydb-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/velocitydb-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"velocloud\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/velocloud\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vembutechnologiespvtltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vembutechnologiespvtltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vemn\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vemn\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"veritas\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/veritas\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"versanetworks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/versanetworks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"versasec\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/versasec\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vidispine\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vidispine\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vidizmo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vidizmo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vigyanlabs-innovations-pvt-ltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vigyanlabs-innovations-pvt-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vigyanlabsinc1581413676614\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vigyanlabsinc1581413676614\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"viptela\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/viptela\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vircom\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vircom\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"virtamovecorp1615909247913\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/virtamovecorp1615909247913\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"virtualpulsesro1607008728942\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/virtualpulsesro1607008728942\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"virtuozzointernationalgmbh1626704951469\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/virtuozzointernationalgmbh1626704951469\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"visualknowledgeshare1591795776234\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/visualknowledgeshare1591795776234\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"visualsoft-center\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/visualsoft-center\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vizixiotplatformretail001\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vizixiotplatformretail001\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vmlabinc1613642184700\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vmlabinc1613642184700\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vmturbo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vmturbo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vmware-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vmware-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vnomicinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vnomicinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"voiceelements\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/voiceelements\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"voleatechgmbh1636966911943\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/voleatechgmbh1636966911943\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"volterraedgeservices\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/volterraedgeservices\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Vormetric\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Vormetric\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vscconsultingptyltd1608535888097\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vscconsultingptyltd1608535888097\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vte\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vte\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vu-llc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vu-llc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vyulabsinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vyulabsinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"WAD2AI.Diagnostics.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/WAD2AI.Diagnostics.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"WAD2EventHub.Diagnostics.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/WAD2EventHub.Diagnostics.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wallarm\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wallarm\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wallix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wallix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wandisco\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wandisco\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wanos\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wanos\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wanpath-dba-myworkdrive\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wanpath-dba-myworkdrive\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wardy-it-solutions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wardy-it-solutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"warewolf-esb\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/warewolf-esb\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"watchguard-technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/watchguard-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"webaloinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/webaloinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"websense-apmailpe\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/websense-apmailpe\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"websoft9inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/websoft9inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wedoitllc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wedoitllc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"westernoceansoftwaresprivatelimited\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/westernoceansoftwaresprivatelimited\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wherescapesoftware\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wherescapesoftware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"winmagic_securedoc_cloudvm\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/winmagic_securedoc_cloudvm\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wintellisys-inc-4561600\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wintellisys-inc-4561600\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"witfooinc1590167223060\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/witfooinc1590167223060\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wmspanel\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wmspanel\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wood1595864497589\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wood1595864497589\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"workshare-technology\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/workshare-technology\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"world-programming\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/world-programming\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"worxogo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/worxogo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wowza\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wowza\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"xcontentptyltd-1329748\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/xcontentptyltd-1329748\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"xendata-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/xendata-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"xfinityinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/xfinityinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"xilinx\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/xilinx\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"xoriantcorporationazxteam1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/xoriantcorporationazxteam1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"xoriantsolutionspvtltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/xoriantsolutionspvtltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"xtremedata\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/xtremedata\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"xyzrd-group-ou\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/xyzrd-group-ou\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"yellowfin\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/yellowfin\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"yellowfininternationalptyltd1616363974066\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/yellowfininternationalptyltd1616363974066\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"yokogawarentalleasecorporation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/yokogawarentalleasecorporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"your-shop-online\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/your-shop-online\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"z1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/z1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"z4it-aps\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/z4it-aps\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zabbix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zabbix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zend\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zend\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zenterasystemsinc1605292453288\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zenterasystemsinc1605292453288\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zerodown_software\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zerodown_software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zerto\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zerto\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zettalane_systems-5254599\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zettalane_systems-5254599\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zevenet\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zevenet\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zilliz\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zilliz\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zoomdata\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zoomdata\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zscaler\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zscaler\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zscaler1579058425289\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zscaler1579058425289\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zultysinc1596831546163\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zultysinc1596831546163\"\r\n }\r\n]", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiaga-adhoc-vault/backupJobs/a04b6a4f-71f8-4762-a6c0-6c4aa1c85f6e\",\r\n \"name\": \"a04b6a4f-71f8-4762-a6c0-6c4aa1c85f6e\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiaga-adhoc-vm\",\r\n \"duration\": \"PT13M6.8813444S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"hiaga-adhoc-vm\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"hiaga-adhoc-vm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T13:54:13.4133042Z\",\r\n \"activityId\": \"a2b4d68f-816f-4208-a9bf-a7d142ebc4cd\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/southeastasia/publishers/Microsoft.Compute/artifacttypes/vmextension/types?api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9wdWJsaXNoZXJzL01pY3Jvc29mdC5Db21wdXRlL2FydGlmYWN0dHlwZXMvdm1leHRlbnNpb24vdHlwZXM/YXBpLXZlcnNpb249MjAyMS0xMS0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiaga-adhoc-vault/backupJobs/a04b6a4f-71f8-4762-a6c0-6c4aa1c85f6e?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYS1hZGhvYy12YXVsdC9iYWNrdXBKb2JzL2EwNGI2YTRmLTcxZjgtNDc2Mi1hNmMwLTZjNGFhMWM4NWY2ZT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b959b998-91e5-4dd3-bd9f-2828b87b8c6b" + "a2b4d68f-816f-4208-a9bf-a7d142ebc4cd" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -2402,39 +2456,38 @@ "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/ListVMExtensionTypes3Min;17999,Microsoft.Compute/ListVMExtensionTypes30Min;22499" + "X-Content-Type-Options": [ + "nosniff" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-request-id": [ + "695ea612-aa38-4db7-af8d-51c4f282e625" ], - "x-ms-served-by": [ - "1f3ad383-bb66-4279-b2a8-fbbcd093a7e3_132678318374571324" + "x-ms-client-request-id": [ + "a2b4d68f-816f-4208-a9bf-a7d142ebc4cd" ], - "x-ms-request-id": [ - "808745b8-c737-48a4-aa52-19c23142ebd8" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "Microsoft-IIS/10.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "278" ], "x-ms-correlation-request-id": [ - "8018399e-862b-4e30-8da8-9cf2f527270b" + "695ea612-aa38-4db7-af8d-51c4f282e625" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T224300Z:8018399e-862b-4e30-8da8-9cf2f527270b" - ], - "X-Content-Type-Options": [ - "nosniff" + "WESTINDIA:20220517T140751Z:695ea612-aa38-4db7-af8d-51c4f282e625" ], "Date": [ - "Thu, 24 Feb 2022 22:42:59 GMT" + "Tue, 17 May 2022 14:07:51 GMT" ], "Content-Length": [ - "1089" + "953" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2443,26 +2496,26 @@ "-1" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"BGInfo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"CustomScriptExtension\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"JsonADDomainExtension\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/JsonADDomainExtension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"VMAccessAgent\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/VMAccessAgent\"\r\n }\r\n]", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiaga-adhoc-vault/backupJobs/a04b6a4f-71f8-4762-a6c0-6c4aa1c85f6e\",\r\n \"name\": \"a04b6a4f-71f8-4762-a6c0-6c4aa1c85f6e\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiaga-adhoc-vm\",\r\n \"duration\": \"PT13M37.7542213S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"hiaga-adhoc-vm\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"hiaga-adhoc-vm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T13:54:13.4133042Z\",\r\n \"activityId\": \"a2b4d68f-816f-4208-a9bf-a7d142ebc4cd\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/southeastasia/publishers/Microsoft.Compute/artifacttypes/vmextension/types/BGInfo/versions?api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9wdWJsaXNoZXJzL01pY3Jvc29mdC5Db21wdXRlL2FydGlmYWN0dHlwZXMvdm1leHRlbnNpb24vdHlwZXMvQkdJbmZvL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMjEtMTEtMDE=", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiaga-adhoc-vault/backupJobs/a04b6a4f-71f8-4762-a6c0-6c4aa1c85f6e?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYS1hZGhvYy12YXVsdC9iYWNrdXBKb2JzL2EwNGI2YTRmLTcxZjgtNDc2Mi1hNmMwLTZjNGFhMWM4NWY2ZT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b959b998-91e5-4dd3-bd9f-2828b87b8c6b" + "a2b4d68f-816f-4208-a9bf-a7d142ebc4cd" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -2472,39 +2525,38 @@ "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/ListVMExtensions3Min;9999,Microsoft.Compute/ListVMExtensions30Min;21999" + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "d5435dd8-7022-40de-9325-ff876c49ef4c" + ], + "x-ms-client-request-id": [ + "a2b4d68f-816f-4208-a9bf-a7d142ebc4cd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-served-by": [ - "1f3ad383-bb66-4279-b2a8-fbbcd093a7e3_132678318374571324" - ], - "x-ms-request-id": [ - "e2e76e30-eee7-4b7a-8ee5-648401ec7927" - ], "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "Microsoft-IIS/10.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "277" ], "x-ms-correlation-request-id": [ - "09f7b76b-5d59-4fd5-94ee-192e74f4060c" + "d5435dd8-7022-40de-9325-ff876c49ef4c" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T224300Z:09f7b76b-5d59-4fd5-94ee-192e74f4060c" - ], - "X-Content-Type-Options": [ - "nosniff" + "WESTINDIA:20220517T140822Z:d5435dd8-7022-40de-9325-ff876c49ef4c" ], "Date": [ - "Thu, 24 Feb 2022 22:42:59 GMT" + "Tue, 17 May 2022 14:08:22 GMT" ], "Content-Length": [ - "1589" + "952" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2513,32 +2565,26 @@ "-1" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1.0\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo/Versions/1.0\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1.0.1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo/Versions/1.0.1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1.1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo/Versions/1.1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1.2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo/Versions/1.2\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1.2.2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo/Versions/1.2.2\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"2.1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo/Versions/2.1\"\r\n }\r\n]", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiaga-adhoc-vault/backupJobs/a04b6a4f-71f8-4762-a6c0-6c4aa1c85f6e\",\r\n \"name\": \"a04b6a4f-71f8-4762-a6c0-6c4aa1c85f6e\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiaga-adhoc-vm\",\r\n \"duration\": \"PT14M8.6095341S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"hiaga-adhoc-vm\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"hiaga-adhoc-vm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T13:54:13.4133042Z\",\r\n \"activityId\": \"a2b4d68f-816f-4208-a9bf-a7d142ebc4cd\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.Compute/virtualMachines/PSTestVM130a70/extensions/BGInfo?api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMTMwYTdjYjkvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy9QU1Rlc3RWTTEzMGE3MC9leHRlbnNpb25zL0JHSW5mbz9hcGktdmVyc2lvbj0yMDIxLTExLTAx", - "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\": \"southeastasia\"\r\n}", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiaga-adhoc-vault/backupJobs/a04b6a4f-71f8-4762-a6c0-6c4aa1c85f6e?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYS1hZGhvYy12YXVsdC9iYWNrdXBKb2JzL2EwNGI2YTRmLTcxZjgtNDc2Mi1hNmMwLTZjNGFhMWM4NWY2ZT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b959b998-91e5-4dd3-bd9f-2828b87b8c6b" + "a2b4d68f-816f-4208-a9bf-a7d142ebc4cd" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "193" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -2548,42 +2594,38 @@ "Pragma": [ "no-cache" ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/southeastasia/operations/e62ef5fa-1bcc-40f7-beb2-5ad65ebc76de?p=34dc709c-01b2-42c4-84a2-256a9734610d&api-version=2021-11-01" + "X-Content-Type-Options": [ + "nosniff" ], - "Azure-AsyncNotification": [ - "Enabled" + "x-ms-request-id": [ + "d73006dc-aaaf-440f-a926-01977a89cc1d" ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/UpdateVM3Min;239,Microsoft.Compute/UpdateVM30Min;1199" + "x-ms-client-request-id": [ + "a2b4d68f-816f-4208-a9bf-a7d142ebc4cd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ - "e62ef5fa-1bcc-40f7-beb2-5ad65ebc76de" - ], "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "Microsoft-IIS/10.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "276" ], "x-ms-correlation-request-id": [ - "fae016ef-a324-4970-9648-2d5391d44532" + "d73006dc-aaaf-440f-a926-01977a89cc1d" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T224305Z:fae016ef-a324-4970-9648-2d5391d44532" - ], - "X-Content-Type-Options": [ - "nosniff" + "WESTINDIA:20220517T140853Z:d73006dc-aaaf-440f-a926-01977a89cc1d" ], "Date": [ - "Thu, 24 Feb 2022 22:43:05 GMT" + "Tue, 17 May 2022 14:08:53 GMT" ], "Content-Length": [ - "484" + "953" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2592,23 +2634,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"BGInfo\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.Compute/virtualMachines/PSTestVM130a70/extensions/BGInfo\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"southeastasia\",\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 + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiaga-adhoc-vault/backupJobs/a04b6a4f-71f8-4762-a6c0-6c4aa1c85f6e\",\r\n \"name\": \"a04b6a4f-71f8-4762-a6c0-6c4aa1c85f6e\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiaga-adhoc-vm\",\r\n \"duration\": \"PT14M39.5317448S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"hiaga-adhoc-vm\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"hiaga-adhoc-vm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T13:54:13.4133042Z\",\r\n \"activityId\": \"a2b4d68f-816f-4208-a9bf-a7d142ebc4cd\"\r\n }\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/southeastasia/operations/e62ef5fa-1bcc-40f7-beb2-5ad65ebc76de?p=34dc709c-01b2-42c4-84a2-256a9734610d&api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2U2MmVmNWZhLTFiY2MtNDBmNy1iZWIyLTVhZDY1ZWJjNzZkZT9wPTM0ZGM3MDljLTAxYjItNDJjNC04NGEyLTI1NmE5NzM0NjEwZCZhcGktdmVyc2lvbj0yMDIxLTExLTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiaga-adhoc-vault/backupJobs/a04b6a4f-71f8-4762-a6c0-6c4aa1c85f6e?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYS1hZGhvYy12YXVsdC9iYWNrdXBKb2JzL2EwNGI2YTRmLTcxZjgtNDc2Mi1hNmMwLTZjNGFhMWM4NWY2ZT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b959b998-91e5-4dd3-bd9f-2828b87b8c6b" + "a2b4d68f-816f-4208-a9bf-a7d142ebc4cd" + ], + "Accept-Language": [ + "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -2618,36 +2663,38 @@ "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperation3Min;14995,Microsoft.Compute/GetOperation30Min;29991" + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "ff27412e-7c3b-43cb-a326-3b1f706d49b1" + ], + "x-ms-client-request-id": [ + "a2b4d68f-816f-4208-a9bf-a7d142ebc4cd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ - "f483f9b7-21b1-4be6-8b4e-c54bbca69bba" - ], "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "Microsoft-IIS/10.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "275" ], "x-ms-correlation-request-id": [ - "ed2f1dc8-1d57-4ecf-bdfb-e0c22ee59f5a" + "ff27412e-7c3b-43cb-a326-3b1f706d49b1" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T224335Z:ed2f1dc8-1d57-4ecf-bdfb-e0c22ee59f5a" - ], - "X-Content-Type-Options": [ - "nosniff" + "WESTINDIA:20220517T140924Z:ff27412e-7c3b-43cb-a326-3b1f706d49b1" ], "Date": [ - "Thu, 24 Feb 2022 22:43:35 GMT" + "Tue, 17 May 2022 14:09:23 GMT" ], "Content-Length": [ - "134" + "953" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2656,23 +2703,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-02-24T17:43:04.2258528-05:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"e62ef5fa-1bcc-40f7-beb2-5ad65ebc76de\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiaga-adhoc-vault/backupJobs/a04b6a4f-71f8-4762-a6c0-6c4aa1c85f6e\",\r\n \"name\": \"a04b6a4f-71f8-4762-a6c0-6c4aa1c85f6e\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiaga-adhoc-vm\",\r\n \"duration\": \"PT15M10.3815218S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"hiaga-adhoc-vm\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"hiaga-adhoc-vm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T13:54:13.4133042Z\",\r\n \"activityId\": \"a2b4d68f-816f-4208-a9bf-a7d142ebc4cd\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/southeastasia/operations/e62ef5fa-1bcc-40f7-beb2-5ad65ebc76de?p=34dc709c-01b2-42c4-84a2-256a9734610d&api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2U2MmVmNWZhLTFiY2MtNDBmNy1iZWIyLTVhZDY1ZWJjNzZkZT9wPTM0ZGM3MDljLTAxYjItNDJjNC04NGEyLTI1NmE5NzM0NjEwZCZhcGktdmVyc2lvbj0yMDIxLTExLTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiaga-adhoc-vault/backupJobs/a04b6a4f-71f8-4762-a6c0-6c4aa1c85f6e?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYS1hZGhvYy12YXVsdC9iYWNrdXBKb2JzL2EwNGI2YTRmLTcxZjgtNDc2Mi1hNmMwLTZjNGFhMWM4NWY2ZT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b959b998-91e5-4dd3-bd9f-2828b87b8c6b" + "a2b4d68f-816f-4208-a9bf-a7d142ebc4cd" + ], + "Accept-Language": [ + "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -2682,36 +2732,38 @@ "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperation3Min;14995,Microsoft.Compute/GetOperation30Min;29990" + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "cdf35aef-c062-45f6-81c1-ef82e6135cb0" + ], + "x-ms-client-request-id": [ + "a2b4d68f-816f-4208-a9bf-a7d142ebc4cd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ - "83097991-6ea7-4bf6-b01a-1896d60606fe" - ], "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "Microsoft-IIS/10.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "274" ], "x-ms-correlation-request-id": [ - "3c0f0fcf-522e-46e1-b038-2a7ab4fca328" + "cdf35aef-c062-45f6-81c1-ef82e6135cb0" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T224406Z:3c0f0fcf-522e-46e1-b038-2a7ab4fca328" - ], - "X-Content-Type-Options": [ - "nosniff" + "WESTINDIA:20220517T140955Z:cdf35aef-c062-45f6-81c1-ef82e6135cb0" ], "Date": [ - "Thu, 24 Feb 2022 22:44:05 GMT" + "Tue, 17 May 2022 14:09:54 GMT" ], "Content-Length": [ - "134" + "953" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2720,23 +2772,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-02-24T17:43:04.2258528-05:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"e62ef5fa-1bcc-40f7-beb2-5ad65ebc76de\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiaga-adhoc-vault/backupJobs/a04b6a4f-71f8-4762-a6c0-6c4aa1c85f6e\",\r\n \"name\": \"a04b6a4f-71f8-4762-a6c0-6c4aa1c85f6e\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiaga-adhoc-vm\",\r\n \"duration\": \"PT15M41.2743603S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"hiaga-adhoc-vm\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"hiaga-adhoc-vm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T13:54:13.4133042Z\",\r\n \"activityId\": \"a2b4d68f-816f-4208-a9bf-a7d142ebc4cd\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/southeastasia/operations/e62ef5fa-1bcc-40f7-beb2-5ad65ebc76de?p=34dc709c-01b2-42c4-84a2-256a9734610d&api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2U2MmVmNWZhLTFiY2MtNDBmNy1iZWIyLTVhZDY1ZWJjNzZkZT9wPTM0ZGM3MDljLTAxYjItNDJjNC04NGEyLTI1NmE5NzM0NjEwZCZhcGktdmVyc2lvbj0yMDIxLTExLTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiaga-adhoc-vault/backupJobs/a04b6a4f-71f8-4762-a6c0-6c4aa1c85f6e?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYS1hZGhvYy12YXVsdC9iYWNrdXBKb2JzL2EwNGI2YTRmLTcxZjgtNDc2Mi1hNmMwLTZjNGFhMWM4NWY2ZT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b959b998-91e5-4dd3-bd9f-2828b87b8c6b" + "a2b4d68f-816f-4208-a9bf-a7d142ebc4cd" + ], + "Accept-Language": [ + "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -2746,36 +2801,38 @@ "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperation3Min;14994,Microsoft.Compute/GetOperation30Min;29989" + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "273" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "X-Content-Type-Options": [ + "nosniff" ], "x-ms-request-id": [ - "f55909b2-5ccc-4213-9dd6-7532a3b78e59" + "e6c7eabd-da2a-499c-814a-b0098e6c5536" + ], + "x-ms-client-request-id": [ + "a2b4d68f-816f-4208-a9bf-a7d142ebc4cd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "Microsoft-IIS/10.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "X-Powered-By": [ + "ASP.NET" ], "x-ms-correlation-request-id": [ - "eaec7e01-dccb-4313-ac92-5ee44bec373f" + "e6c7eabd-da2a-499c-814a-b0098e6c5536" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T224436Z:eaec7e01-dccb-4313-ac92-5ee44bec373f" - ], - "X-Content-Type-Options": [ - "nosniff" + "WESTINDIA:20220517T141026Z:e6c7eabd-da2a-499c-814a-b0098e6c5536" ], "Date": [ - "Thu, 24 Feb 2022 22:44:35 GMT" + "Tue, 17 May 2022 14:10:26 GMT" ], "Content-Length": [ - "134" + "953" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2784,23 +2841,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-02-24T17:43:04.2258528-05:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"e62ef5fa-1bcc-40f7-beb2-5ad65ebc76de\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiaga-adhoc-vault/backupJobs/a04b6a4f-71f8-4762-a6c0-6c4aa1c85f6e\",\r\n \"name\": \"a04b6a4f-71f8-4762-a6c0-6c4aa1c85f6e\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiaga-adhoc-vm\",\r\n \"duration\": \"PT16M12.1034158S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"hiaga-adhoc-vm\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"hiaga-adhoc-vm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T13:54:13.4133042Z\",\r\n \"activityId\": \"a2b4d68f-816f-4208-a9bf-a7d142ebc4cd\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/southeastasia/operations/e62ef5fa-1bcc-40f7-beb2-5ad65ebc76de?p=34dc709c-01b2-42c4-84a2-256a9734610d&api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2U2MmVmNWZhLTFiY2MtNDBmNy1iZWIyLTVhZDY1ZWJjNzZkZT9wPTM0ZGM3MDljLTAxYjItNDJjNC04NGEyLTI1NmE5NzM0NjEwZCZhcGktdmVyc2lvbj0yMDIxLTExLTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiaga-adhoc-vault/backupJobs/a04b6a4f-71f8-4762-a6c0-6c4aa1c85f6e?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYS1hZGhvYy12YXVsdC9iYWNrdXBKb2JzL2EwNGI2YTRmLTcxZjgtNDc2Mi1hNmMwLTZjNGFhMWM4NWY2ZT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b959b998-91e5-4dd3-bd9f-2828b87b8c6b" + "a2b4d68f-816f-4208-a9bf-a7d142ebc4cd" + ], + "Accept-Language": [ + "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -2810,36 +2870,38 @@ "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperation3Min;14993,Microsoft.Compute/GetOperation30Min;29987" + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "64b61015-49db-48da-ac84-82c3e001b410" + ], + "x-ms-client-request-id": [ + "a2b4d68f-816f-4208-a9bf-a7d142ebc4cd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ - "e27ee30f-403a-470f-bb69-94ddfcf8695d" - ], "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "Microsoft-IIS/10.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "272" ], "x-ms-correlation-request-id": [ - "2323046c-a674-44f1-82ce-15785992385b" + "64b61015-49db-48da-ac84-82c3e001b410" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T224506Z:2323046c-a674-44f1-82ce-15785992385b" - ], - "X-Content-Type-Options": [ - "nosniff" + "WESTINDIA:20220517T141057Z:64b61015-49db-48da-ac84-82c3e001b410" ], "Date": [ - "Thu, 24 Feb 2022 22:45:06 GMT" + "Tue, 17 May 2022 14:10:57 GMT" ], "Content-Length": [ - "184" + "953" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2848,23 +2910,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-02-24T17:43:04.2258528-05:00\",\r\n \"endTime\": \"2022-02-24T17:44:47.9768303-05:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"e62ef5fa-1bcc-40f7-beb2-5ad65ebc76de\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiaga-adhoc-vault/backupJobs/a04b6a4f-71f8-4762-a6c0-6c4aa1c85f6e\",\r\n \"name\": \"a04b6a4f-71f8-4762-a6c0-6c4aa1c85f6e\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiaga-adhoc-vm\",\r\n \"duration\": \"PT16M43.8799842S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"hiaga-adhoc-vm\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"hiaga-adhoc-vm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T13:54:13.4133042Z\",\r\n \"activityId\": \"a2b4d68f-816f-4208-a9bf-a7d142ebc4cd\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.Compute/virtualMachines/PSTestVM130a70/extensions/BGInfo?api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMTMwYTdjYjkvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy9QU1Rlc3RWTTEzMGE3MC9leHRlbnNpb25zL0JHSW5mbz9hcGktdmVyc2lvbj0yMDIxLTExLTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiaga-adhoc-vault/backupJobs/a04b6a4f-71f8-4762-a6c0-6c4aa1c85f6e?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYS1hZGhvYy12YXVsdC9iYWNrdXBKb2JzL2EwNGI2YTRmLTcxZjgtNDc2Mi1hNmMwLTZjNGFhMWM4NWY2ZT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b959b998-91e5-4dd3-bd9f-2828b87b8c6b" + "a2b4d68f-816f-4208-a9bf-a7d142ebc4cd" + ], + "Accept-Language": [ + "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -2874,36 +2939,38 @@ "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/LowCostGet3Min;3995,Microsoft.Compute/LowCostGet30Min;31985" + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "4b8bf234-eb28-435d-a224-99aa785097b1" + ], + "x-ms-client-request-id": [ + "a2b4d68f-816f-4208-a9bf-a7d142ebc4cd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ - "61b898ef-5491-4df0-9b3c-1c79ff67cfc0" - ], "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "Microsoft-IIS/10.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "271" ], "x-ms-correlation-request-id": [ - "a36c904b-1ef8-4127-bf38-f65aac61a85f" + "4b8bf234-eb28-435d-a224-99aa785097b1" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T224506Z:a36c904b-1ef8-4127-bf38-f65aac61a85f" - ], - "X-Content-Type-Options": [ - "nosniff" + "WESTINDIA:20220517T141128Z:4b8bf234-eb28-435d-a224-99aa785097b1" ], "Date": [ - "Thu, 24 Feb 2022 22:45:06 GMT" + "Tue, 17 May 2022 14:11:28 GMT" ], "Content-Length": [ - "485" + "953" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2912,26 +2979,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"BGInfo\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.Compute/virtualMachines/PSTestVM130a70/extensions/BGInfo\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"southeastasia\",\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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiaga-adhoc-vault/backupJobs/a04b6a4f-71f8-4762-a6c0-6c4aa1c85f6e\",\r\n \"name\": \"a04b6a4f-71f8-4762-a6c0-6c4aa1c85f6e\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiaga-adhoc-vm\",\r\n \"duration\": \"PT17M14.6669848S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"hiaga-adhoc-vm\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"hiaga-adhoc-vm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T13:54:13.4133042Z\",\r\n \"activityId\": \"a2b4d68f-816f-4208-a9bf-a7d142ebc4cd\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.RecoveryServices/vaults/PSTestRSV130a7cb9/backupProtectionContainers?$filter=friendlyName%20eq%20'PSTestVM130a70'%20and%20backupManagementType%20eq%20'AzureIaasVM'%20and%20status%20eq%20'Registered'&api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMTMwYTdjYjkvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YxMzBhN2NiOS9iYWNrdXBQcm90ZWN0aW9uQ29udGFpbmVycz8kZmlsdGVyPWZyaWVuZGx5TmFtZSUyMGVxJTIwJ1BTVGVzdFZNMTMwYTcwJyUyMGFuZCUyMGJhY2t1cE1hbmFnZW1lbnRUeXBlJTIwZXElMjAnQXp1cmVJYWFzVk0nJTIwYW5kJTIwc3RhdHVzJTIwZXElMjAnUmVnaXN0ZXJlZCcmYXBpLXZlcnNpb249MjAyMS0xMC0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiaga-adhoc-vault/backupJobs/a04b6a4f-71f8-4762-a6c0-6c4aa1c85f6e?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYS1hZGhvYy12YXVsdC9iYWNrdXBKb2JzL2EwNGI2YTRmLTcxZjgtNDc2Mi1hNmMwLTZjNGFhMWM4NWY2ZT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a6240017-33c7-437b-9977-649c68a73df0" + "a2b4d68f-816f-4208-a9bf-a7d142ebc4cd" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -2945,11 +3012,10 @@ "nosniff" ], "x-ms-request-id": [ - "fd840b86-61e0-4a4c-aeb2-85fa5f264c27" + "b84dea21-71d1-49ab-ae10-e94da84c7951" ], "x-ms-client-request-id": [ - "a6240017-33c7-437b-9977-649c68a73df0", - "a6240017-33c7-437b-9977-649c68a73df0" + "a2b4d68f-816f-4208-a9bf-a7d142ebc4cd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2961,47 +3027,47 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "149" + "270" ], "x-ms-correlation-request-id": [ - "fd840b86-61e0-4a4c-aeb2-85fa5f264c27" + "b84dea21-71d1-49ab-ae10-e94da84c7951" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T224514Z:fd840b86-61e0-4a4c-aeb2-85fa5f264c27" + "WESTINDIA:20220517T141159Z:b84dea21-71d1-49ab-ae10-e94da84c7951" ], "Date": [ - "Thu, 24 Feb 2022 22:45:13 GMT" + "Tue, 17 May 2022 14:11:58 GMT" ], "Content-Length": [ - "12" + "952" ], "Content-Type": [ - "application/json" + "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiaga-adhoc-vault/backupJobs/a04b6a4f-71f8-4762-a6c0-6c4aa1c85f6e\",\r\n \"name\": \"a04b6a4f-71f8-4762-a6c0-6c4aa1c85f6e\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiaga-adhoc-vm\",\r\n \"duration\": \"PT17M45.561588S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"hiaga-adhoc-vm\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"hiaga-adhoc-vm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T13:54:13.4133042Z\",\r\n \"activityId\": \"a2b4d68f-816f-4208-a9bf-a7d142ebc4cd\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.RecoveryServices/vaults/PSTestRSV130a7cb9/backupProtectionContainers?$filter=friendlyName%20eq%20'PSTestVM130a70'%20and%20backupManagementType%20eq%20'AzureIaasVM'%20and%20status%20eq%20'Registered'&api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMTMwYTdjYjkvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YxMzBhN2NiOS9iYWNrdXBQcm90ZWN0aW9uQ29udGFpbmVycz8kZmlsdGVyPWZyaWVuZGx5TmFtZSUyMGVxJTIwJ1BTVGVzdFZNMTMwYTcwJyUyMGFuZCUyMGJhY2t1cE1hbmFnZW1lbnRUeXBlJTIwZXElMjAnQXp1cmVJYWFzVk0nJTIwYW5kJTIwc3RhdHVzJTIwZXElMjAnUmVnaXN0ZXJlZCcmYXBpLXZlcnNpb249MjAyMS0xMC0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiaga-adhoc-vault/backupJobs/a04b6a4f-71f8-4762-a6c0-6c4aa1c85f6e?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYS1hZGhvYy12YXVsdC9iYWNrdXBKb2JzL2EwNGI2YTRmLTcxZjgtNDc2Mi1hNmMwLTZjNGFhMWM4NWY2ZT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5b8cc461-ebd7-42b8-b88c-98707aa7129f" + "a2b4d68f-816f-4208-a9bf-a7d142ebc4cd" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -3015,11 +3081,10 @@ "nosniff" ], "x-ms-request-id": [ - "f011c9c2-1260-40d2-aea4-42636515c364" + "696f383d-aa47-41c9-a5f6-4c65343369ac" ], "x-ms-client-request-id": [ - "5b8cc461-ebd7-42b8-b88c-98707aa7129f", - "5b8cc461-ebd7-42b8-b88c-98707aa7129f" + "a2b4d68f-816f-4208-a9bf-a7d142ebc4cd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3031,47 +3096,47 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "148" + "269" ], "x-ms-correlation-request-id": [ - "f011c9c2-1260-40d2-aea4-42636515c364" + "696f383d-aa47-41c9-a5f6-4c65343369ac" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T224621Z:f011c9c2-1260-40d2-aea4-42636515c364" + "WESTINDIA:20220517T141230Z:696f383d-aa47-41c9-a5f6-4c65343369ac" ], "Date": [ - "Thu, 24 Feb 2022 22:46:21 GMT" + "Tue, 17 May 2022 14:12:30 GMT" ], "Content-Length": [ - "914" + "953" ], "Content-Type": [ - "application/json" + "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.RecoveryServices/vaults/PSTestRSV130a7cb9/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrg130a7cb9;pstestvm130a70\",\r\n \"name\": \"IaasVMContainer;iaasvmcontainerv2;pstestrg130a7cb9;pstestvm130a70\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers\",\r\n \"properties\": {\r\n \"virtualMachineId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.Compute/virtualMachines/PSTestVM130a70\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"resourceGroup\": \"PSTestRG130a7cb9\",\r\n \"friendlyName\": \"PSTestVM130a70\",\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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiaga-adhoc-vault/backupJobs/a04b6a4f-71f8-4762-a6c0-6c4aa1c85f6e\",\r\n \"name\": \"a04b6a4f-71f8-4762-a6c0-6c4aa1c85f6e\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiaga-adhoc-vm\",\r\n \"duration\": \"PT18M16.4386565S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"hiaga-adhoc-vm\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"hiaga-adhoc-vm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T13:54:13.4133042Z\",\r\n \"activityId\": \"a2b4d68f-816f-4208-a9bf-a7d142ebc4cd\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.RecoveryServices/vaults/PSTestRSV130a7cb9/backupPolicies/DefaultPolicy?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMTMwYTdjYjkvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YxMzBhN2NiOS9iYWNrdXBQb2xpY2llcy9EZWZhdWx0UG9saWN5P2FwaS12ZXJzaW9uPTIwMjEtMTAtMDE=", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiaga-adhoc-vault/backupJobs/a04b6a4f-71f8-4762-a6c0-6c4aa1c85f6e?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYS1hZGhvYy12YXVsdC9iYWNrdXBKb2JzL2EwNGI2YTRmLTcxZjgtNDc2Mi1hNmMwLTZjNGFhMWM4NWY2ZT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d3237fda-7826-4002-9292-40d9b0726493" + "a2b4d68f-816f-4208-a9bf-a7d142ebc4cd" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -3085,11 +3150,10 @@ "nosniff" ], "x-ms-request-id": [ - "fd4f54e8-ffe4-49fa-8831-50d590db7788" + "7c2fbfa8-71cd-435b-b5d0-c86a645362aa" ], "x-ms-client-request-id": [ - "d3237fda-7826-4002-9292-40d9b0726493", - "d3237fda-7826-4002-9292-40d9b0726493" + "a2b4d68f-816f-4208-a9bf-a7d142ebc4cd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3101,47 +3165,47 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "149" + "268" ], "x-ms-correlation-request-id": [ - "fd4f54e8-ffe4-49fa-8831-50d590db7788" + "7c2fbfa8-71cd-435b-b5d0-c86a645362aa" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T224514Z:fd4f54e8-ffe4-49fa-8831-50d590db7788" + "WESTINDIA:20220517T141301Z:7c2fbfa8-71cd-435b-b5d0-c86a645362aa" ], "Date": [ - "Thu, 24 Feb 2022 22:45:14 GMT" + "Tue, 17 May 2022 14:13:01 GMT" ], "Content-Length": [ - "762" + "953" ], "Content-Type": [ - "application/json" + "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.RecoveryServices/vaults/PSTestRSV130a7cb9/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 \"2022-02-25T08: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 \"2022-02-25T08:30:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 30,\r\n \"durationType\": \"Days\"\r\n }\r\n }\r\n },\r\n \"instantRpRetentionRangeInDays\": 2,\r\n \"timeZone\": \"UTC\",\r\n \"protectedItemsCount\": 0\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiaga-adhoc-vault/backupJobs/a04b6a4f-71f8-4762-a6c0-6c4aa1c85f6e\",\r\n \"name\": \"a04b6a4f-71f8-4762-a6c0-6c4aa1c85f6e\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiaga-adhoc-vm\",\r\n \"duration\": \"PT18M47.7075695S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"hiaga-adhoc-vm\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"hiaga-adhoc-vm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T13:54:13.4133042Z\",\r\n \"activityId\": \"a2b4d68f-816f-4208-a9bf-a7d142ebc4cd\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.RecoveryServices/vaults/PSTestRSV130a7cb9/backupProtectableItems?$filter=backupManagementType%20eq%20'AzureIaasVM'&api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMTMwYTdjYjkvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YxMzBhN2NiOS9iYWNrdXBQcm90ZWN0YWJsZUl0ZW1zPyRmaWx0ZXI9YmFja3VwTWFuYWdlbWVudFR5cGUlMjBlcSUyMCdBenVyZUlhYXNWTScmYXBpLXZlcnNpb249MjAyMS0xMC0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiaga-adhoc-vault/backupJobs/a04b6a4f-71f8-4762-a6c0-6c4aa1c85f6e?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYS1hZGhvYy12YXVsdC9iYWNrdXBKb2JzL2EwNGI2YTRmLTcxZjgtNDc2Mi1hNmMwLTZjNGFhMWM4NWY2ZT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1b27d45e-d5a7-4502-bc71-9a5a666b17dd" + "a2b4d68f-816f-4208-a9bf-a7d142ebc4cd" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -3155,11 +3219,10 @@ "nosniff" ], "x-ms-request-id": [ - "02606682-2a6d-4394-bc6f-801ed5411be4" + "b5d26dc5-6389-492d-ae1c-b23702e6a1b1" ], "x-ms-client-request-id": [ - "1b27d45e-d5a7-4502-bc71-9a5a666b17dd", - "1b27d45e-d5a7-4502-bc71-9a5a666b17dd" + "a2b4d68f-816f-4208-a9bf-a7d142ebc4cd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3171,47 +3234,47 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "149" + "267" ], "x-ms-correlation-request-id": [ - "02606682-2a6d-4394-bc6f-801ed5411be4" + "b5d26dc5-6389-492d-ae1c-b23702e6a1b1" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T224515Z:02606682-2a6d-4394-bc6f-801ed5411be4" + "WESTINDIA:20220517T141332Z:b5d26dc5-6389-492d-ae1c-b23702e6a1b1" ], "Date": [ - "Thu, 24 Feb 2022 22:45:14 GMT" + "Tue, 17 May 2022 14:13:31 GMT" ], "Content-Length": [ - "12" + "953" ], "Content-Type": [ - "application/json" + "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiaga-adhoc-vault/backupJobs/a04b6a4f-71f8-4762-a6c0-6c4aa1c85f6e\",\r\n \"name\": \"a04b6a4f-71f8-4762-a6c0-6c4aa1c85f6e\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiaga-adhoc-vm\",\r\n \"duration\": \"PT19M18.6268014S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"hiaga-adhoc-vm\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"hiaga-adhoc-vm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T13:54:13.4133042Z\",\r\n \"activityId\": \"a2b4d68f-816f-4208-a9bf-a7d142ebc4cd\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.RecoveryServices/vaults/PSTestRSV130a7cb9/backupProtectableItems?$filter=backupManagementType%20eq%20'AzureIaasVM'&api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMTMwYTdjYjkvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YxMzBhN2NiOS9iYWNrdXBQcm90ZWN0YWJsZUl0ZW1zPyRmaWx0ZXI9YmFja3VwTWFuYWdlbWVudFR5cGUlMjBlcSUyMCdBenVyZUlhYXNWTScmYXBpLXZlcnNpb249MjAyMS0xMC0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiaga-adhoc-vault/backupJobs/a04b6a4f-71f8-4762-a6c0-6c4aa1c85f6e?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYS1hZGhvYy12YXVsdC9iYWNrdXBKb2JzL2EwNGI2YTRmLTcxZjgtNDc2Mi1hNmMwLTZjNGFhMWM4NWY2ZT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1b27d45e-d5a7-4502-bc71-9a5a666b17dd" + "a2b4d68f-816f-4208-a9bf-a7d142ebc4cd" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -3225,11 +3288,10 @@ "nosniff" ], "x-ms-request-id": [ - "c7520666-7f70-4e1a-97c8-0580ac25cfa2" + "2024452b-db40-47af-8814-e64f840d1289" ], "x-ms-client-request-id": [ - "1b27d45e-d5a7-4502-bc71-9a5a666b17dd", - "1b27d45e-d5a7-4502-bc71-9a5a666b17dd" + "a2b4d68f-816f-4208-a9bf-a7d142ebc4cd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3241,47 +3303,47 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "148" + "266" ], "x-ms-correlation-request-id": [ - "c7520666-7f70-4e1a-97c8-0580ac25cfa2" + "2024452b-db40-47af-8814-e64f840d1289" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T224528Z:c7520666-7f70-4e1a-97c8-0580ac25cfa2" + "WESTINDIA:20220517T141403Z:2024452b-db40-47af-8814-e64f840d1289" ], "Date": [ - "Thu, 24 Feb 2022 22:45:28 GMT" + "Tue, 17 May 2022 14:14:02 GMT" ], "Content-Length": [ - "905" + "953" ], "Content-Type": [ - "application/json" + "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.RecoveryServices/vaults/PSTestRSV130a7cb9/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrg130a7cb9;pstestvm130a70/protectableItems/vm;iaasvmcontainerv2;pstestrg130a7cb9;pstestvm130a70\",\r\n \"name\": \"iaasvmcontainerv2;pstestrg130a7cb9;pstestvm130a70\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems\",\r\n \"properties\": {\r\n \"virtualMachineId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.Compute/virtualMachines/PSTestVM130a70\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"resourceGroup\": \"PSTestRG130a7cb9\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"protectableItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"friendlyName\": \"PSTestVM130a70\",\r\n \"protectionState\": \"NotProtected\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiaga-adhoc-vault/backupJobs/a04b6a4f-71f8-4762-a6c0-6c4aa1c85f6e\",\r\n \"name\": \"a04b6a4f-71f8-4762-a6c0-6c4aa1c85f6e\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiaga-adhoc-vm\",\r\n \"duration\": \"PT19M49.4748138S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"hiaga-adhoc-vm\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"hiaga-adhoc-vm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T13:54:13.4133042Z\",\r\n \"activityId\": \"a2b4d68f-816f-4208-a9bf-a7d142ebc4cd\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.RecoveryServices/vaults/PSTestRSV130a7cb9/backupFabrics/Azure/refreshContainers?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMTMwYTdjYjkvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YxMzBhN2NiOS9iYWNrdXBGYWJyaWNzL0F6dXJlL3JlZnJlc2hDb250YWluZXJzP2FwaS12ZXJzaW9uPTIwMjEtMTAtMDE=", - "RequestMethod": "POST", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiaga-adhoc-vault/backupJobs/a04b6a4f-71f8-4762-a6c0-6c4aa1c85f6e?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYS1hZGhvYy12YXVsdC9iYWNrdXBKb2JzL2EwNGI2YTRmLTcxZjgtNDc2Mi1hNmMwLTZjNGFhMWM4NWY2ZT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1b27d45e-d5a7-4502-bc71-9a5a666b17dd" + "a2b4d68f-816f-4208-a9bf-a7d142ebc4cd" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -3291,70 +3353,66 @@ "Pragma": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.RecoveryServices/vaults/PSTestRSV130a7cb9/backupFabrics/Azure/operationResults/fd56275a-0235-4e95-9f15-83b6b5dac301?api-version=2021-10-01" - ], - "Retry-After": [ - "60" - ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.RecoveryServices/vaults/PSTestRSV130a7cb9/backupFabrics/Azure/operationsStatus/fd56275a-0235-4e95-9f15-83b6b5dac301?api-version=2019-05-13-preview" - ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "0688455d-d8e0-4773-bbcc-d83ce29f2327" + "64045a8f-1970-47f2-bba8-9933374d3910" ], "x-ms-client-request-id": [ - "1b27d45e-d5a7-4502-bc71-9a5a666b17dd", - "1b27d45e-d5a7-4502-bc71-9a5a666b17dd" + "a2b4d68f-816f-4208-a9bf-a7d142ebc4cd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-IIS/10.0" + ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "265" ], "x-ms-correlation-request-id": [ - "0688455d-d8e0-4773-bbcc-d83ce29f2327" + "64045a8f-1970-47f2-bba8-9933374d3910" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T224516Z:0688455d-d8e0-4773-bbcc-d83ce29f2327" + "WESTINDIA:20220517T141434Z:64045a8f-1970-47f2-bba8-9933374d3910" ], "Date": [ - "Thu, 24 Feb 2022 22:45:15 GMT" + "Tue, 17 May 2022 14:14:33 GMT" + ], + "Content-Length": [ + "951" + ], + "Content-Type": [ + "application/json; charset=utf-8" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, - "ResponseBody": "", - "StatusCode": 202 + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiaga-adhoc-vault/backupJobs/a04b6a4f-71f8-4762-a6c0-6c4aa1c85f6e\",\r\n \"name\": \"a04b6a4f-71f8-4762-a6c0-6c4aa1c85f6e\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiaga-adhoc-vm\",\r\n \"duration\": \"PT20M20.39411S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"hiaga-adhoc-vm\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"hiaga-adhoc-vm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T13:54:13.4133042Z\",\r\n \"activityId\": \"a2b4d68f-816f-4208-a9bf-a7d142ebc4cd\"\r\n }\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.RecoveryServices/vaults/PSTestRSV130a7cb9/backupFabrics/Azure/operationResults/fd56275a-0235-4e95-9f15-83b6b5dac301?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMTMwYTdjYjkvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YxMzBhN2NiOS9iYWNrdXBGYWJyaWNzL0F6dXJlL29wZXJhdGlvblJlc3VsdHMvZmQ1NjI3NWEtMDIzNS00ZTk1LTlmMTUtODNiNmI1ZGFjMzAxP2FwaS12ZXJzaW9uPTIwMjEtMTAtMDE=", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiaga-adhoc-vault/backupJobs/a04b6a4f-71f8-4762-a6c0-6c4aa1c85f6e?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYS1hZGhvYy12YXVsdC9iYWNrdXBKb2JzL2EwNGI2YTRmLTcxZjgtNDc2Mi1hNmMwLTZjNGFhMWM4NWY2ZT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1b27d45e-d5a7-4502-bc71-9a5a666b17dd" + "a2b4d68f-816f-4208-a9bf-a7d142ebc4cd" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -3364,67 +3422,66 @@ "Pragma": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.RecoveryServices/vaults/PSTestRSV130a7cb9/backupFabrics/Azure/operationResults/fd56275a-0235-4e95-9f15-83b6b5dac301?api-version=2021-10-01" - ], - "Retry-After": [ - "60" + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "264" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "68a1c6b7-8dad-4543-b6ea-30543775e35e" + "85549042-750d-49cc-adb1-4dc8047f8001" ], "x-ms-client-request-id": [ - "1b27d45e-d5a7-4502-bc71-9a5a666b17dd", - "1b27d45e-d5a7-4502-bc71-9a5a666b17dd" + "a2b4d68f-816f-4208-a9bf-a7d142ebc4cd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-IIS/10.0" + ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "149" - ], "x-ms-correlation-request-id": [ - "68a1c6b7-8dad-4543-b6ea-30543775e35e" + "85549042-750d-49cc-adb1-4dc8047f8001" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T224516Z:68a1c6b7-8dad-4543-b6ea-30543775e35e" + "WESTINDIA:20220517T141505Z:85549042-750d-49cc-adb1-4dc8047f8001" ], "Date": [ - "Thu, 24 Feb 2022 22:45:16 GMT" + "Tue, 17 May 2022 14:15:05 GMT" + ], + "Content-Length": [ + "952" + ], + "Content-Type": [ + "application/json; charset=utf-8" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, - "ResponseBody": "", - "StatusCode": 202 + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiaga-adhoc-vault/backupJobs/a04b6a4f-71f8-4762-a6c0-6c4aa1c85f6e\",\r\n \"name\": \"a04b6a4f-71f8-4762-a6c0-6c4aa1c85f6e\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiaga-adhoc-vm\",\r\n \"duration\": \"PT20M51.537436S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"hiaga-adhoc-vm\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"hiaga-adhoc-vm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T13:54:13.4133042Z\",\r\n \"activityId\": \"a2b4d68f-816f-4208-a9bf-a7d142ebc4cd\"\r\n }\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.RecoveryServices/vaults/PSTestRSV130a7cb9/backupFabrics/Azure/operationResults/fd56275a-0235-4e95-9f15-83b6b5dac301?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMTMwYTdjYjkvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YxMzBhN2NiOS9iYWNrdXBGYWJyaWNzL0F6dXJlL29wZXJhdGlvblJlc3VsdHMvZmQ1NjI3NWEtMDIzNS00ZTk1LTlmMTUtODNiNmI1ZGFjMzAxP2FwaS12ZXJzaW9uPTIwMjEtMTAtMDE=", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiaga-adhoc-vault/backupJobs/a04b6a4f-71f8-4762-a6c0-6c4aa1c85f6e?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYS1hZGhvYy12YXVsdC9iYWNrdXBKb2JzL2EwNGI2YTRmLTcxZjgtNDc2Mi1hNmMwLTZjNGFhMWM4NWY2ZT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1b27d45e-d5a7-4502-bc71-9a5a666b17dd" + "a2b4d68f-816f-4208-a9bf-a7d142ebc4cd" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -3438,54 +3495,62 @@ "nosniff" ], "x-ms-request-id": [ - "db741da7-9479-4f5d-a1d1-67f6ca4e39a1" + "b7e2bfc2-03ec-4c0b-bc37-e88b9d2acf00" ], "x-ms-client-request-id": [ - "1b27d45e-d5a7-4502-bc71-9a5a666b17dd", - "1b27d45e-d5a7-4502-bc71-9a5a666b17dd" + "a2b4d68f-816f-4208-a9bf-a7d142ebc4cd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-IIS/10.0" + ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "148" + "263" ], "x-ms-correlation-request-id": [ - "db741da7-9479-4f5d-a1d1-67f6ca4e39a1" + "b7e2bfc2-03ec-4c0b-bc37-e88b9d2acf00" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T224527Z:db741da7-9479-4f5d-a1d1-67f6ca4e39a1" + "WESTINDIA:20220517T141537Z:b7e2bfc2-03ec-4c0b-bc37-e88b9d2acf00" ], "Date": [ - "Thu, 24 Feb 2022 22:45:26 GMT" + "Tue, 17 May 2022 14:15:36 GMT" + ], + "Content-Length": [ + "952" + ], + "Content-Type": [ + "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "ResponseBody": "", - "StatusCode": 204 + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiaga-adhoc-vault/backupJobs/a04b6a4f-71f8-4762-a6c0-6c4aa1c85f6e\",\r\n \"name\": \"a04b6a4f-71f8-4762-a6c0-6c4aa1c85f6e\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiaga-adhoc-vm\",\r\n \"duration\": \"PT21M23.394181S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"hiaga-adhoc-vm\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"hiaga-adhoc-vm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T13:54:13.4133042Z\",\r\n \"activityId\": \"a2b4d68f-816f-4208-a9bf-a7d142ebc4cd\"\r\n }\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.RecoveryServices/vaults/PSTestRSV130a7cb9/backupFabrics/Azure/operationResults/fd56275a-0235-4e95-9f15-83b6b5dac301?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMTMwYTdjYjkvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YxMzBhN2NiOS9iYWNrdXBGYWJyaWNzL0F6dXJlL29wZXJhdGlvblJlc3VsdHMvZmQ1NjI3NWEtMDIzNS00ZTk1LTlmMTUtODNiNmI1ZGFjMzAxP2FwaS12ZXJzaW9uPTIwMjEtMTAtMDE=", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiaga-adhoc-vault/backupJobs/a04b6a4f-71f8-4762-a6c0-6c4aa1c85f6e?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYS1hZGhvYy12YXVsdC9iYWNrdXBKb2JzL2EwNGI2YTRmLTcxZjgtNDc2Mi1hNmMwLTZjNGFhMWM4NWY2ZT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1b27d45e-d5a7-4502-bc71-9a5a666b17dd" + "a2b4d68f-816f-4208-a9bf-a7d142ebc4cd" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -3499,60 +3564,62 @@ "nosniff" ], "x-ms-request-id": [ - "acf3c90a-e073-4825-8694-3b9f5580510b" + "29b2b6ce-0227-428a-a232-22c376d772d5" ], "x-ms-client-request-id": [ - "1b27d45e-d5a7-4502-bc71-9a5a666b17dd", - "1b27d45e-d5a7-4502-bc71-9a5a666b17dd" + "a2b4d68f-816f-4208-a9bf-a7d142ebc4cd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-IIS/10.0" + ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "147" + "262" ], "x-ms-correlation-request-id": [ - "acf3c90a-e073-4825-8694-3b9f5580510b" + "29b2b6ce-0227-428a-a232-22c376d772d5" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T224528Z:acf3c90a-e073-4825-8694-3b9f5580510b" + "WESTINDIA:20220517T141608Z:29b2b6ce-0227-428a-a232-22c376d772d5" ], "Date": [ - "Thu, 24 Feb 2022 22:45:27 GMT" + "Tue, 17 May 2022 14:16:08 GMT" + ], + "Content-Length": [ + "953" + ], + "Content-Type": [ + "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "ResponseBody": "", - "StatusCode": 204 + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiaga-adhoc-vault/backupJobs/a04b6a4f-71f8-4762-a6c0-6c4aa1c85f6e\",\r\n \"name\": \"a04b6a4f-71f8-4762-a6c0-6c4aa1c85f6e\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiaga-adhoc-vm\",\r\n \"duration\": \"PT21M54.2402338S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"hiaga-adhoc-vm\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"hiaga-adhoc-vm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T13:54:13.4133042Z\",\r\n \"activityId\": \"a2b4d68f-816f-4208-a9bf-a7d142ebc4cd\"\r\n }\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.RecoveryServices/vaults/PSTestRSV130a7cb9/backupFabrics/Azure/protectionContainers/IaasVMContainer%3Biaasvmcontainerv2%3Bpstestrg130a7cb9%3Bpstestvm130a70/protectedItems/vm%3Biaasvmcontainerv2%3Bpstestrg130a7cb9%3Bpstestvm130a70?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMTMwYTdjYjkvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YxMzBhN2NiOS9iYWNrdXBGYWJyaWNzL0F6dXJlL3Byb3RlY3Rpb25Db250YWluZXJzL0lhYXNWTUNvbnRhaW5lciUzQmlhYXN2bWNvbnRhaW5lcnYyJTNCcHN0ZXN0cmcxMzBhN2NiOSUzQnBzdGVzdHZtMTMwYTcwL3Byb3RlY3RlZEl0ZW1zL3ZtJTNCaWFhc3ZtY29udGFpbmVydjIlM0Jwc3Rlc3RyZzEzMGE3Y2I5JTNCcHN0ZXN0dm0xMzBhNzA/YXBpLXZlcnNpb249MjAyMS0xMC0wMQ==", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"protectedItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"sourceResourceId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.Compute/virtualMachines/PSTestVM130a70\",\r\n \"policyId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.RecoveryServices/vaults/PSTestRSV130a7cb9/backupPolicies/DefaultPolicy\"\r\n }\r\n}", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiaga-adhoc-vault/backupJobs/a04b6a4f-71f8-4762-a6c0-6c4aa1c85f6e?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYS1hZGhvYy12YXVsdC9iYWNrdXBKb2JzL2EwNGI2YTRmLTcxZjgtNDc2Mi1hNmMwLTZjNGFhMWM4NWY2ZT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1b27d45e-d5a7-4502-bc71-9a5a666b17dd" + "a2b4d68f-816f-4208-a9bf-a7d142ebc4cd" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "456" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -3562,70 +3629,66 @@ "Pragma": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.RecoveryServices/vaults/PSTestRSV130a7cb9/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrg130a7cb9;pstestvm130a70/protectedItems/vm;iaasvmcontainerv2;pstestrg130a7cb9;pstestvm130a70/operationResults/ece49edd-b1ca-4c0b-96d5-5ff520e3c775?api-version=2021-10-01" - ], - "Retry-After": [ - "60" - ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.RecoveryServices/vaults/PSTestRSV130a7cb9/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrg130a7cb9;pstestvm130a70/protectedItems/vm;iaasvmcontainerv2;pstestrg130a7cb9;pstestvm130a70/operationsStatus/ece49edd-b1ca-4c0b-96d5-5ff520e3c775?api-version=2021-10-01" - ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "6023957b-de28-432c-9fd3-9560b3c214b8" + "40e96da8-b3ec-4f5b-9f20-ace2920c80f2" ], "x-ms-client-request-id": [ - "1b27d45e-d5a7-4502-bc71-9a5a666b17dd", - "1b27d45e-d5a7-4502-bc71-9a5a666b17dd" + "a2b4d68f-816f-4208-a9bf-a7d142ebc4cd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-IIS/10.0" + ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "261" ], "x-ms-correlation-request-id": [ - "6023957b-de28-432c-9fd3-9560b3c214b8" + "40e96da8-b3ec-4f5b-9f20-ace2920c80f2" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T224530Z:6023957b-de28-432c-9fd3-9560b3c214b8" + "WESTINDIA:20220517T141639Z:40e96da8-b3ec-4f5b-9f20-ace2920c80f2" ], "Date": [ - "Thu, 24 Feb 2022 22:45:29 GMT" + "Tue, 17 May 2022 14:16:38 GMT" + ], + "Content-Length": [ + "953" + ], + "Content-Type": [ + "application/json; charset=utf-8" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, - "ResponseBody": "", - "StatusCode": 202 + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiaga-adhoc-vault/backupJobs/a04b6a4f-71f8-4762-a6c0-6c4aa1c85f6e\",\r\n \"name\": \"a04b6a4f-71f8-4762-a6c0-6c4aa1c85f6e\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiaga-adhoc-vm\",\r\n \"duration\": \"PT22M25.1347816S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"hiaga-adhoc-vm\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"hiaga-adhoc-vm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T13:54:13.4133042Z\",\r\n \"activityId\": \"a2b4d68f-816f-4208-a9bf-a7d142ebc4cd\"\r\n }\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.RecoveryServices/vaults/PSTestRSV130a7cb9/backupOperations/ece49edd-b1ca-4c0b-96d5-5ff520e3c775?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMTMwYTdjYjkvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YxMzBhN2NiOS9iYWNrdXBPcGVyYXRpb25zL2VjZTQ5ZWRkLWIxY2EtNGMwYi05NmQ1LTVmZjUyMGUzYzc3NT9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiaga-adhoc-vault/backupJobs/a04b6a4f-71f8-4762-a6c0-6c4aa1c85f6e?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYS1hZGhvYy12YXVsdC9iYWNrdXBKb2JzL2EwNGI2YTRmLTcxZjgtNDc2Mi1hNmMwLTZjNGFhMWM4NWY2ZT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1b27d45e-d5a7-4502-bc71-9a5a666b17dd" + "a2b4d68f-816f-4208-a9bf-a7d142ebc4cd" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -3639,11 +3702,10 @@ "nosniff" ], "x-ms-request-id": [ - "c2593a7e-38ea-46b9-8adf-9eb66ae246e2" + "7127fc29-1302-46e2-8561-3f8246e4339f" ], "x-ms-client-request-id": [ - "1b27d45e-d5a7-4502-bc71-9a5a666b17dd", - "1b27d45e-d5a7-4502-bc71-9a5a666b17dd" + "a2b4d68f-816f-4208-a9bf-a7d142ebc4cd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3655,47 +3717,47 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "149" + "260" ], "x-ms-correlation-request-id": [ - "c2593a7e-38ea-46b9-8adf-9eb66ae246e2" + "7127fc29-1302-46e2-8561-3f8246e4339f" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T224530Z:c2593a7e-38ea-46b9-8adf-9eb66ae246e2" + "WESTINDIA:20220517T141709Z:7127fc29-1302-46e2-8561-3f8246e4339f" ], "Date": [ - "Thu, 24 Feb 2022 22:45:30 GMT" + "Tue, 17 May 2022 14:17:09 GMT" ], "Content-Length": [ - "188" + "953" ], "Content-Type": [ - "application/json" + "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"ece49edd-b1ca-4c0b-96d5-5ff520e3c775\",\r\n \"name\": \"ece49edd-b1ca-4c0b-96d5-5ff520e3c775\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-24T22:45:30.0997324Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiaga-adhoc-vault/backupJobs/a04b6a4f-71f8-4762-a6c0-6c4aa1c85f6e\",\r\n \"name\": \"a04b6a4f-71f8-4762-a6c0-6c4aa1c85f6e\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiaga-adhoc-vm\",\r\n \"duration\": \"PT22M55.9866393S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"hiaga-adhoc-vm\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"hiaga-adhoc-vm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T13:54:13.4133042Z\",\r\n \"activityId\": \"a2b4d68f-816f-4208-a9bf-a7d142ebc4cd\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.RecoveryServices/vaults/PSTestRSV130a7cb9/backupOperations/ece49edd-b1ca-4c0b-96d5-5ff520e3c775?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMTMwYTdjYjkvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YxMzBhN2NiOS9iYWNrdXBPcGVyYXRpb25zL2VjZTQ5ZWRkLWIxY2EtNGMwYi05NmQ1LTVmZjUyMGUzYzc3NT9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiaga-adhoc-vault/backupJobs/a04b6a4f-71f8-4762-a6c0-6c4aa1c85f6e?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYS1hZGhvYy12YXVsdC9iYWNrdXBKb2JzL2EwNGI2YTRmLTcxZjgtNDc2Mi1hNmMwLTZjNGFhMWM4NWY2ZT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1b27d45e-d5a7-4502-bc71-9a5a666b17dd" + "a2b4d68f-816f-4208-a9bf-a7d142ebc4cd" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -3709,11 +3771,10 @@ "nosniff" ], "x-ms-request-id": [ - "a0dbb83b-2463-4be5-ad18-1af6b2854c32" + "e55a43d9-6d10-4b6d-a7d3-01430f4acbd5" ], "x-ms-client-request-id": [ - "1b27d45e-d5a7-4502-bc71-9a5a666b17dd", - "1b27d45e-d5a7-4502-bc71-9a5a666b17dd" + "a2b4d68f-816f-4208-a9bf-a7d142ebc4cd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3725,47 +3786,47 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "148" + "259" ], "x-ms-correlation-request-id": [ - "a0dbb83b-2463-4be5-ad18-1af6b2854c32" + "e55a43d9-6d10-4b6d-a7d3-01430f4acbd5" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T224609Z:a0dbb83b-2463-4be5-ad18-1af6b2854c32" + "WESTINDIA:20220517T141740Z:e55a43d9-6d10-4b6d-a7d3-01430f4acbd5" ], "Date": [ - "Thu, 24 Feb 2022 22:46:09 GMT" + "Tue, 17 May 2022 14:17:40 GMT" ], "Content-Length": [ - "188" + "953" ], "Content-Type": [ - "application/json" + "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"ece49edd-b1ca-4c0b-96d5-5ff520e3c775\",\r\n \"name\": \"ece49edd-b1ca-4c0b-96d5-5ff520e3c775\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-24T22:45:30.0997324Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiaga-adhoc-vault/backupJobs/a04b6a4f-71f8-4762-a6c0-6c4aa1c85f6e\",\r\n \"name\": \"a04b6a4f-71f8-4762-a6c0-6c4aa1c85f6e\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiaga-adhoc-vm\",\r\n \"duration\": \"PT23M26.8300694S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"hiaga-adhoc-vm\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"hiaga-adhoc-vm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T13:54:13.4133042Z\",\r\n \"activityId\": \"a2b4d68f-816f-4208-a9bf-a7d142ebc4cd\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.RecoveryServices/vaults/PSTestRSV130a7cb9/backupOperations/ece49edd-b1ca-4c0b-96d5-5ff520e3c775?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMTMwYTdjYjkvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YxMzBhN2NiOS9iYWNrdXBPcGVyYXRpb25zL2VjZTQ5ZWRkLWIxY2EtNGMwYi05NmQ1LTVmZjUyMGUzYzc3NT9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiaga-adhoc-vault/backupJobs/a04b6a4f-71f8-4762-a6c0-6c4aa1c85f6e?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYS1hZGhvYy12YXVsdC9iYWNrdXBKb2JzL2EwNGI2YTRmLTcxZjgtNDc2Mi1hNmMwLTZjNGFhMWM4NWY2ZT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1b27d45e-d5a7-4502-bc71-9a5a666b17dd" + "a2b4d68f-816f-4208-a9bf-a7d142ebc4cd" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -3779,11 +3840,10 @@ "nosniff" ], "x-ms-request-id": [ - "4d8aa6dc-2282-4d89-8355-e100b55d4788" + "03d3589f-03e3-48c9-8bb8-00220b9e1f3d" ], "x-ms-client-request-id": [ - "1b27d45e-d5a7-4502-bc71-9a5a666b17dd", - "1b27d45e-d5a7-4502-bc71-9a5a666b17dd" + "a2b4d68f-816f-4208-a9bf-a7d142ebc4cd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3795,47 +3855,47 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "147" + "258" ], "x-ms-correlation-request-id": [ - "4d8aa6dc-2282-4d89-8355-e100b55d4788" + "03d3589f-03e3-48c9-8bb8-00220b9e1f3d" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T224619Z:4d8aa6dc-2282-4d89-8355-e100b55d4788" + "WESTINDIA:20220517T141812Z:03d3589f-03e3-48c9-8bb8-00220b9e1f3d" ], "Date": [ - "Thu, 24 Feb 2022 22:46:19 GMT" + "Tue, 17 May 2022 14:18:11 GMT" ], "Content-Length": [ - "304" + "953" ], "Content-Type": [ - "application/json" + "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"ece49edd-b1ca-4c0b-96d5-5ff520e3c775\",\r\n \"name\": \"ece49edd-b1ca-4c0b-96d5-5ff520e3c775\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-02-24T22:45:30.0997324Z\",\r\n \"endTime\": \"2022-02-24T22:45:30.0997324Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"cb969035-e2a2-4405-98b8-dbf59c28d044\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiaga-adhoc-vault/backupJobs/a04b6a4f-71f8-4762-a6c0-6c4aa1c85f6e\",\r\n \"name\": \"a04b6a4f-71f8-4762-a6c0-6c4aa1c85f6e\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiaga-adhoc-vm\",\r\n \"duration\": \"PT23M57.7985328S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"hiaga-adhoc-vm\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"hiaga-adhoc-vm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T13:54:13.4133042Z\",\r\n \"activityId\": \"a2b4d68f-816f-4208-a9bf-a7d142ebc4cd\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.RecoveryServices/vaults/PSTestRSV130a7cb9/backupOperations/ece49edd-b1ca-4c0b-96d5-5ff520e3c775?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMTMwYTdjYjkvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YxMzBhN2NiOS9iYWNrdXBPcGVyYXRpb25zL2VjZTQ5ZWRkLWIxY2EtNGMwYi05NmQ1LTVmZjUyMGUzYzc3NT9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiaga-adhoc-vault/backupJobs/a04b6a4f-71f8-4762-a6c0-6c4aa1c85f6e?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYS1hZGhvYy12YXVsdC9iYWNrdXBKb2JzL2EwNGI2YTRmLTcxZjgtNDc2Mi1hNmMwLTZjNGFhMWM4NWY2ZT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1b27d45e-d5a7-4502-bc71-9a5a666b17dd" + "a2b4d68f-816f-4208-a9bf-a7d142ebc4cd" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -3849,11 +3909,10 @@ "nosniff" ], "x-ms-request-id": [ - "58da16c6-3fea-4edb-8bbf-5c5e946dc1ee" + "bf5f82a4-136b-4a71-8626-d999ed0d4be5" ], "x-ms-client-request-id": [ - "1b27d45e-d5a7-4502-bc71-9a5a666b17dd", - "1b27d45e-d5a7-4502-bc71-9a5a666b17dd" + "a2b4d68f-816f-4208-a9bf-a7d142ebc4cd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3865,47 +3924,47 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "146" + "257" ], "x-ms-correlation-request-id": [ - "58da16c6-3fea-4edb-8bbf-5c5e946dc1ee" + "bf5f82a4-136b-4a71-8626-d999ed0d4be5" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T224620Z:58da16c6-3fea-4edb-8bbf-5c5e946dc1ee" + "WESTINDIA:20220517T141843Z:bf5f82a4-136b-4a71-8626-d999ed0d4be5" ], "Date": [ - "Thu, 24 Feb 2022 22:46:20 GMT" + "Tue, 17 May 2022 14:18:42 GMT" ], "Content-Length": [ - "304" + "952" ], "Content-Type": [ - "application/json" + "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"ece49edd-b1ca-4c0b-96d5-5ff520e3c775\",\r\n \"name\": \"ece49edd-b1ca-4c0b-96d5-5ff520e3c775\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-02-24T22:45:30.0997324Z\",\r\n \"endTime\": \"2022-02-24T22:45:30.0997324Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"cb969035-e2a2-4405-98b8-dbf59c28d044\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiaga-adhoc-vault/backupJobs/a04b6a4f-71f8-4762-a6c0-6c4aa1c85f6e\",\r\n \"name\": \"a04b6a4f-71f8-4762-a6c0-6c4aa1c85f6e\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiaga-adhoc-vm\",\r\n \"duration\": \"PT24M29.147737S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"hiaga-adhoc-vm\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"hiaga-adhoc-vm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T13:54:13.4133042Z\",\r\n \"activityId\": \"a2b4d68f-816f-4208-a9bf-a7d142ebc4cd\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.RecoveryServices/vaults/PSTestRSV130a7cb9/backupJobs/cb969035-e2a2-4405-98b8-dbf59c28d044?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMTMwYTdjYjkvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YxMzBhN2NiOS9iYWNrdXBKb2JzL2NiOTY5MDM1LWUyYTItNDQwNS05OGI4LWRiZjU5YzI4ZDA0ND9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiaga-adhoc-vault/backupJobs/a04b6a4f-71f8-4762-a6c0-6c4aa1c85f6e?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYS1hZGhvYy12YXVsdC9iYWNrdXBKb2JzL2EwNGI2YTRmLTcxZjgtNDc2Mi1hNmMwLTZjNGFhMWM4NWY2ZT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1b27d45e-d5a7-4502-bc71-9a5a666b17dd" + "a2b4d68f-816f-4208-a9bf-a7d142ebc4cd" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -3915,68 +3974,66 @@ "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-IIS/10.0" - ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "f129a2aa-a54f-402a-b9c1-47f75396df8b" + "9ce4f29e-d4f5-470a-b306-8bdd36490735" ], "x-ms-client-request-id": [ - "1b27d45e-d5a7-4502-bc71-9a5a666b17dd", - "1b27d45e-d5a7-4502-bc71-9a5a666b17dd" - ], - "X-Powered-By": [ - "ASP.NET" + "a2b4d68f-816f-4208-a9bf-a7d142ebc4cd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "149" + "256" ], "x-ms-correlation-request-id": [ - "f129a2aa-a54f-402a-b9c1-47f75396df8b" + "9ce4f29e-d4f5-470a-b306-8bdd36490735" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T224621Z:f129a2aa-a54f-402a-b9c1-47f75396df8b" + "WESTINDIA:20220517T141913Z:9ce4f29e-d4f5-470a-b306-8bdd36490735" ], "Date": [ - "Thu, 24 Feb 2022 22:46:21 GMT" + "Tue, 17 May 2022 14:19:13 GMT" ], "Content-Length": [ - "839" + "952" ], "Content-Type": [ - "application/json" + "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.RecoveryServices/vaults/PSTestRSV130a7cb9/backupJobs/cb969035-e2a2-4405-98b8-dbf59c28d044\",\r\n \"name\": \"cb969035-e2a2-4405-98b8-dbf59c28d044\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg130a7cb9;pstestvm130a70\",\r\n \"duration\": \"PT30.7214196S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm130a70\",\r\n \"Policy Name\": \"DefaultPolicy\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm130a70\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"ConfigureBackup\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-02-24T22:45:30.0997324Z\",\r\n \"endTime\": \"2022-02-24T22:46:00.821152Z\",\r\n \"activityId\": \"1b27d45e-d5a7-4502-bc71-9a5a666b17dd\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiaga-adhoc-vault/backupJobs/a04b6a4f-71f8-4762-a6c0-6c4aa1c85f6e\",\r\n \"name\": \"a04b6a4f-71f8-4762-a6c0-6c4aa1c85f6e\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiaga-adhoc-vm\",\r\n \"duration\": \"PT24M59.982108S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"hiaga-adhoc-vm\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"hiaga-adhoc-vm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T13:54:13.4133042Z\",\r\n \"activityId\": \"a2b4d68f-816f-4208-a9bf-a7d142ebc4cd\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.RecoveryServices/vaults/PSTestRSV130a7cb9/backupProtectedItems?$filter=backupManagementType%20eq%20'AzureIaasVM'%20and%20itemType%20eq%20'VM'&api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMTMwYTdjYjkvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YxMzBhN2NiOS9iYWNrdXBQcm90ZWN0ZWRJdGVtcz8kZmlsdGVyPWJhY2t1cE1hbmFnZW1lbnRUeXBlJTIwZXElMjAnQXp1cmVJYWFzVk0nJTIwYW5kJTIwaXRlbVR5cGUlMjBlcSUyMCdWTScmYXBpLXZlcnNpb249MjAyMS0xMC0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiaga-adhoc-vault/backupJobs/a04b6a4f-71f8-4762-a6c0-6c4aa1c85f6e?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYS1hZGhvYy12YXVsdC9iYWNrdXBKb2JzL2EwNGI2YTRmLTcxZjgtNDc2Mi1hNmMwLTZjNGFhMWM4NWY2ZT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "99e9140a-9292-42bf-a164-aa6f98c13c9f" + "a2b4d68f-816f-4208-a9bf-a7d142ebc4cd" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -3986,15 +4043,17 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "255" + ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "e77131e8-6e6d-4b29-9d69-b3d23db76350" + "cb2dea00-048d-4672-8365-c407acba9aba" ], "x-ms-client-request-id": [ - "99e9140a-9292-42bf-a164-aa6f98c13c9f", - "99e9140a-9292-42bf-a164-aa6f98c13c9f" + "a2b4d68f-816f-4208-a9bf-a7d142ebc4cd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4005,48 +4064,45 @@ "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "149" - ], "x-ms-correlation-request-id": [ - "e77131e8-6e6d-4b29-9d69-b3d23db76350" + "cb2dea00-048d-4672-8365-c407acba9aba" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T224622Z:e77131e8-6e6d-4b29-9d69-b3d23db76350" + "WESTINDIA:20220517T141944Z:cb2dea00-048d-4672-8365-c407acba9aba" ], "Date": [ - "Thu, 24 Feb 2022 22:46:22 GMT" + "Tue, 17 May 2022 14:19:44 GMT" ], "Content-Length": [ - "1495" + "953" ], "Content-Type": [ - "application/json" + "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.RecoveryServices/vaults/PSTestRSV130a7cb9/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrg130a7cb9;pstestvm130a70/protectedItems/VM;iaasvmcontainerv2;pstestrg130a7cb9;pstestvm130a70\",\r\n \"name\": \"VM;iaasvmcontainerv2;pstestrg130a7cb9;pstestvm130a70\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems\",\r\n \"properties\": {\r\n \"kpisHealths\": {},\r\n \"friendlyName\": \"PSTestVM130a70\",\r\n \"virtualMachineId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.Compute/virtualMachines/PSTestVM130a70\",\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\": \"87961025710786\",\r\n \"protectedItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"workloadType\": \"VM\",\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg130a7cb9;pstestvm130a70\",\r\n \"sourceResourceId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.Compute/virtualMachines/PSTestVM130a70\",\r\n \"policyId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.RecoveryServices/vaults/PSTestRSV130a7cb9/backupPolicies/DefaultPolicy\",\r\n \"policyName\": \"DefaultPolicy\",\r\n \"isArchiveEnabled\": false\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiaga-adhoc-vault/backupJobs/a04b6a4f-71f8-4762-a6c0-6c4aa1c85f6e\",\r\n \"name\": \"a04b6a4f-71f8-4762-a6c0-6c4aa1c85f6e\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiaga-adhoc-vm\",\r\n \"duration\": \"PT25M31.0075265S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"hiaga-adhoc-vm\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"hiaga-adhoc-vm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T13:54:13.4133042Z\",\r\n \"activityId\": \"a2b4d68f-816f-4208-a9bf-a7d142ebc4cd\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.RecoveryServices/vaults/PSTestRSV130a7cb9/backupProtectedItems?$filter=backupManagementType%20eq%20'AzureIaasVM'%20and%20itemType%20eq%20'VM'&api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMTMwYTdjYjkvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YxMzBhN2NiOS9iYWNrdXBQcm90ZWN0ZWRJdGVtcz8kZmlsdGVyPWJhY2t1cE1hbmFnZW1lbnRUeXBlJTIwZXElMjAnQXp1cmVJYWFzVk0nJTIwYW5kJTIwaXRlbVR5cGUlMjBlcSUyMCdWTScmYXBpLXZlcnNpb249MjAyMS0xMC0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiaga-adhoc-vault/backupJobs/a04b6a4f-71f8-4762-a6c0-6c4aa1c85f6e?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYS1hZGhvYy12YXVsdC9iYWNrdXBKb2JzL2EwNGI2YTRmLTcxZjgtNDc2Mi1hNmMwLTZjNGFhMWM4NWY2ZT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "17c54025-d0d7-4915-b7f7-2db15c1ebb8f" + "a2b4d68f-816f-4208-a9bf-a7d142ebc4cd" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -4060,11 +4116,10 @@ "nosniff" ], "x-ms-request-id": [ - "49b0652e-c0fa-4e92-85c0-e466b5979c4c" + "4c773077-ddf8-4ca9-9c80-c429b3f189bd" ], "x-ms-client-request-id": [ - "17c54025-d0d7-4915-b7f7-2db15c1ebb8f", - "17c54025-d0d7-4915-b7f7-2db15c1ebb8f" + "a2b4d68f-816f-4208-a9bf-a7d142ebc4cd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4076,47 +4131,47 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "148" + "254" ], "x-ms-correlation-request-id": [ - "49b0652e-c0fa-4e92-85c0-e466b5979c4c" + "4c773077-ddf8-4ca9-9c80-c429b3f189bd" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T233832Z:49b0652e-c0fa-4e92-85c0-e466b5979c4c" + "WESTINDIA:20220517T142016Z:4c773077-ddf8-4ca9-9c80-c429b3f189bd" ], "Date": [ - "Thu, 24 Feb 2022 23:38:31 GMT" + "Tue, 17 May 2022 14:20:15 GMT" ], "Content-Length": [ - "1870" + "952" ], "Content-Type": [ - "application/json" + "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.RecoveryServices/vaults/PSTestRSV130a7cb9/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrg130a7cb9;pstestvm130a70/protectedItems/VM;iaasvmcontainerv2;pstestrg130a7cb9;pstestvm130a70\",\r\n \"name\": \"VM;iaasvmcontainerv2;pstestrg130a7cb9;pstestvm130a70\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems\",\r\n \"properties\": {\r\n \"kpisHealths\": {\r\n \"BackupOperationStatusKPI\": {\r\n \"resourceHealthStatus\": \"Healthy\",\r\n \"resourceHealthDetails\": [\r\n {\r\n \"code\": 0,\r\n \"title\": \"Success\",\r\n \"message\": \"\",\r\n \"recommendations\": []\r\n }\r\n ]\r\n }\r\n },\r\n \"friendlyName\": \"PSTestVM130a70\",\r\n \"virtualMachineId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.Compute/virtualMachines/PSTestVM130a70\",\r\n \"protectionStatus\": \"Healthy\",\r\n \"protectionState\": \"Protected\",\r\n \"healthStatus\": \"Passed\",\r\n \"healthDetails\": [\r\n {\r\n \"code\": 400239,\r\n \"title\": \"IaasVmHealthGreenDefault\",\r\n \"message\": \"Backup pre-check status of this virtual machine is OK.\",\r\n \"recommendations\": []\r\n }\r\n ],\r\n \"lastBackupStatus\": \"Completed\",\r\n \"lastBackupTime\": \"2022-02-24T22:46:23.5135028Z\",\r\n \"protectedItemDataId\": \"87961025710786\",\r\n \"protectedItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"workloadType\": \"VM\",\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg130a7cb9;pstestvm130a70\",\r\n \"sourceResourceId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.Compute/virtualMachines/PSTestVM130a70\",\r\n \"policyId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.RecoveryServices/vaults/PSTestRSV130a7cb9/backupPolicies/DefaultPolicy\",\r\n \"policyName\": \"DefaultPolicy\",\r\n \"lastRecoveryPoint\": \"2022-02-24T22:46:27.0405682Z\",\r\n \"isArchiveEnabled\": false\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiaga-adhoc-vault/backupJobs/a04b6a4f-71f8-4762-a6c0-6c4aa1c85f6e\",\r\n \"name\": \"a04b6a4f-71f8-4762-a6c0-6c4aa1c85f6e\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiaga-adhoc-vm\",\r\n \"duration\": \"PT26M2.7190811S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"hiaga-adhoc-vm\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"hiaga-adhoc-vm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T13:54:13.4133042Z\",\r\n \"activityId\": \"a2b4d68f-816f-4208-a9bf-a7d142ebc4cd\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.RecoveryServices/vaults/PSTestRSV130a7cb9/backupFabrics/Azure/protectionContainers/IaasVMContainer%3Biaasvmcontainerv2%3Bpstestrg130a7cb9%3Bpstestvm130a70/protectedItems/VM%3Biaasvmcontainerv2%3Bpstestrg130a7cb9%3Bpstestvm130a70?$filter=expand%20eq%20'extendedinfo'&api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMTMwYTdjYjkvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YxMzBhN2NiOS9iYWNrdXBGYWJyaWNzL0F6dXJlL3Byb3RlY3Rpb25Db250YWluZXJzL0lhYXNWTUNvbnRhaW5lciUzQmlhYXN2bWNvbnRhaW5lcnYyJTNCcHN0ZXN0cmcxMzBhN2NiOSUzQnBzdGVzdHZtMTMwYTcwL3Byb3RlY3RlZEl0ZW1zL1ZNJTNCaWFhc3ZtY29udGFpbmVydjIlM0Jwc3Rlc3RyZzEzMGE3Y2I5JTNCcHN0ZXN0dm0xMzBhNzA/JGZpbHRlcj1leHBhbmQlMjBlcSUyMCdleHRlbmRlZGluZm8nJmFwaS12ZXJzaW9uPTIwMjEtMTAtMDE=", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiaga-adhoc-vault/backupJobs/a04b6a4f-71f8-4762-a6c0-6c4aa1c85f6e?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYS1hZGhvYy12YXVsdC9iYWNrdXBKb2JzL2EwNGI2YTRmLTcxZjgtNDc2Mi1hNmMwLTZjNGFhMWM4NWY2ZT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "99e9140a-9292-42bf-a164-aa6f98c13c9f" + "a2b4d68f-816f-4208-a9bf-a7d142ebc4cd" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -4130,11 +4185,10 @@ "nosniff" ], "x-ms-request-id": [ - "c193bd44-88ec-4338-973c-f87329408742" + "531e9259-6755-460a-a0ae-495758f50b8e" ], "x-ms-client-request-id": [ - "99e9140a-9292-42bf-a164-aa6f98c13c9f", - "99e9140a-9292-42bf-a164-aa6f98c13c9f" + "a2b4d68f-816f-4208-a9bf-a7d142ebc4cd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4146,53 +4200,47 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "149" + "253" ], "x-ms-correlation-request-id": [ - "c193bd44-88ec-4338-973c-f87329408742" + "531e9259-6755-460a-a0ae-495758f50b8e" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T224622Z:c193bd44-88ec-4338-973c-f87329408742" + "WESTINDIA:20220517T142047Z:531e9259-6755-460a-a0ae-495758f50b8e" ], "Date": [ - "Thu, 24 Feb 2022 22:46:22 GMT" + "Tue, 17 May 2022 14:20:47 GMT" ], "Content-Length": [ - "1550" + "952" ], "Content-Type": [ - "application/json" + "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.RecoveryServices/vaults/PSTestRSV130a7cb9/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrg130a7cb9;pstestvm130a70/protectedItems/VM;iaasvmcontainerv2;pstestrg130a7cb9;pstestvm130a70\",\r\n \"name\": \"VM;iaasvmcontainerv2;pstestrg130a7cb9;pstestvm130a70\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems\",\r\n \"properties\": {\r\n \"kpisHealths\": {},\r\n \"friendlyName\": \"PSTestVM130a70\",\r\n \"virtualMachineId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.Compute/virtualMachines/PSTestVM130a70\",\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\": \"87961025710786\",\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;pstestrg130a7cb9;pstestvm130a70\",\r\n \"sourceResourceId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.Compute/virtualMachines/PSTestVM130a70\",\r\n \"policyId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.RecoveryServices/vaults/PSTestRSV130a7cb9/backupPolicies/DefaultPolicy\",\r\n \"policyName\": \"DefaultPolicy\",\r\n \"isArchiveEnabled\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiaga-adhoc-vault/backupJobs/a04b6a4f-71f8-4762-a6c0-6c4aa1c85f6e\",\r\n \"name\": \"a04b6a4f-71f8-4762-a6c0-6c4aa1c85f6e\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiaga-adhoc-vm\",\r\n \"duration\": \"PT26M33.622457S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"hiaga-adhoc-vm\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"hiaga-adhoc-vm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T13:54:13.4133042Z\",\r\n \"activityId\": \"a2b4d68f-816f-4208-a9bf-a7d142ebc4cd\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.RecoveryServices/vaults/PSTestRSV130a7cb9/backupFabrics/Azure/protectionContainers/IaasVMContainer%3Biaasvmcontainerv2%3Bpstestrg130a7cb9%3Bpstestvm130a70/protectedItems/VM%3Biaasvmcontainerv2%3Bpstestrg130a7cb9%3Bpstestvm130a70/backup?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMTMwYTdjYjkvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YxMzBhN2NiOS9iYWNrdXBGYWJyaWNzL0F6dXJlL3Byb3RlY3Rpb25Db250YWluZXJzL0lhYXNWTUNvbnRhaW5lciUzQmlhYXN2bWNvbnRhaW5lcnYyJTNCcHN0ZXN0cmcxMzBhN2NiOSUzQnBzdGVzdHZtMTMwYTcwL3Byb3RlY3RlZEl0ZW1zL1ZNJTNCaWFhc3ZtY29udGFpbmVydjIlM0Jwc3Rlc3RyZzEzMGE3Y2I5JTNCcHN0ZXN0dm0xMzBhNzAvYmFja3VwP2FwaS12ZXJzaW9uPTIwMjEtMTAtMDE=", - "RequestMethod": "POST", - "RequestBody": "{\r\n \"properties\": {\r\n \"objectType\": \"IaasVMBackupRequest\"\r\n }\r\n}", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiaga-adhoc-vault/backupJobs/a04b6a4f-71f8-4762-a6c0-6c4aa1c85f6e?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYS1hZGhvYy12YXVsdC9iYWNrdXBKb2JzL2EwNGI2YTRmLTcxZjgtNDc2Mi1hNmMwLTZjNGFhMWM4NWY2ZT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3a5f1e97-5b2b-411d-bb70-deb51e5e7739" + "a2b4d68f-816f-4208-a9bf-a7d142ebc4cd" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "69" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -4202,70 +4250,66 @@ "Pragma": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.RecoveryServices/vaults/PSTestRSV130a7cb9/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrg130a7cb9;pstestvm130a70/protectedItems/VM;iaasvmcontainerv2;pstestrg130a7cb9;pstestvm130a70/operationResults/e8eb62cb-f49c-4c21-a7c3-62a372d8e96b?api-version=2021-10-01" - ], - "Retry-After": [ - "60" - ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.RecoveryServices/vaults/PSTestRSV130a7cb9/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrg130a7cb9;pstestvm130a70/protectedItems/VM;iaasvmcontainerv2;pstestrg130a7cb9;pstestvm130a70/operationsStatus/e8eb62cb-f49c-4c21-a7c3-62a372d8e96b?api-version=2021-10-01" - ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "f5f62cb4-1c0a-4bef-8d5d-3cf8c25b25a3" + "d4050d23-7011-4a7c-a429-4c80a8a1da15" ], "x-ms-client-request-id": [ - "3a5f1e97-5b2b-411d-bb70-deb51e5e7739", - "3a5f1e97-5b2b-411d-bb70-deb51e5e7739" + "a2b4d68f-816f-4208-a9bf-a7d142ebc4cd" ], "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-ratelimit-remaining-subscription-resource-requests": [ + "252" ], "x-ms-correlation-request-id": [ - "f5f62cb4-1c0a-4bef-8d5d-3cf8c25b25a3" + "d4050d23-7011-4a7c-a429-4c80a8a1da15" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T224623Z:f5f62cb4-1c0a-4bef-8d5d-3cf8c25b25a3" + "WESTINDIA:20220517T142118Z:d4050d23-7011-4a7c-a429-4c80a8a1da15" ], "Date": [ - "Thu, 24 Feb 2022 22:46:23 GMT" + "Tue, 17 May 2022 14:21:17 GMT" + ], + "Content-Length": [ + "952" + ], + "Content-Type": [ + "application/json; charset=utf-8" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, - "ResponseBody": "", - "StatusCode": 202 + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiaga-adhoc-vault/backupJobs/a04b6a4f-71f8-4762-a6c0-6c4aa1c85f6e\",\r\n \"name\": \"a04b6a4f-71f8-4762-a6c0-6c4aa1c85f6e\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiaga-adhoc-vm\",\r\n \"duration\": \"PT27M4.5758337S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"hiaga-adhoc-vm\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"hiaga-adhoc-vm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T13:54:13.4133042Z\",\r\n \"activityId\": \"a2b4d68f-816f-4208-a9bf-a7d142ebc4cd\"\r\n }\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.RecoveryServices/vaults/PSTestRSV130a7cb9/backupOperations/e8eb62cb-f49c-4c21-a7c3-62a372d8e96b?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMTMwYTdjYjkvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YxMzBhN2NiOS9iYWNrdXBPcGVyYXRpb25zL2U4ZWI2MmNiLWY0OWMtNGMyMS1hN2MzLTYyYTM3MmQ4ZTk2Yj9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiaga-adhoc-vault/backupJobs/a04b6a4f-71f8-4762-a6c0-6c4aa1c85f6e?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYS1hZGhvYy12YXVsdC9iYWNrdXBKb2JzL2EwNGI2YTRmLTcxZjgtNDc2Mi1hNmMwLTZjNGFhMWM4NWY2ZT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3a5f1e97-5b2b-411d-bb70-deb51e5e7739" + "a2b4d68f-816f-4208-a9bf-a7d142ebc4cd" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -4279,11 +4323,10 @@ "nosniff" ], "x-ms-request-id": [ - "11398a3a-18b6-4746-9c08-44a62ee832e4" + "a58454a1-3f72-4655-b2c9-ed57729d3b99" ], "x-ms-client-request-id": [ - "3a5f1e97-5b2b-411d-bb70-deb51e5e7739", - "3a5f1e97-5b2b-411d-bb70-deb51e5e7739" + "a2b4d68f-816f-4208-a9bf-a7d142ebc4cd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4295,47 +4338,47 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "145" + "251" ], "x-ms-correlation-request-id": [ - "11398a3a-18b6-4746-9c08-44a62ee832e4" + "a58454a1-3f72-4655-b2c9-ed57729d3b99" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T224624Z:11398a3a-18b6-4746-9c08-44a62ee832e4" + "WESTINDIA:20220517T142149Z:a58454a1-3f72-4655-b2c9-ed57729d3b99" ], "Date": [ - "Thu, 24 Feb 2022 22:46:24 GMT" + "Tue, 17 May 2022 14:21:49 GMT" ], "Content-Length": [ - "304" + "953" ], "Content-Type": [ - "application/json" + "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"e8eb62cb-f49c-4c21-a7c3-62a372d8e96b\",\r\n \"name\": \"e8eb62cb-f49c-4c21-a7c3-62a372d8e96b\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-02-24T22:46:23.5135028Z\",\r\n \"endTime\": \"2022-02-24T22:46:23.5135028Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"258ef4a4-59b2-4226-a973-e91751bdff7d\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiaga-adhoc-vault/backupJobs/a04b6a4f-71f8-4762-a6c0-6c4aa1c85f6e\",\r\n \"name\": \"a04b6a4f-71f8-4762-a6c0-6c4aa1c85f6e\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiaga-adhoc-vm\",\r\n \"duration\": \"PT27M35.7247241S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"hiaga-adhoc-vm\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"hiaga-adhoc-vm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T13:54:13.4133042Z\",\r\n \"activityId\": \"a2b4d68f-816f-4208-a9bf-a7d142ebc4cd\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.RecoveryServices/vaults/PSTestRSV130a7cb9/backupOperations/e8eb62cb-f49c-4c21-a7c3-62a372d8e96b?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMTMwYTdjYjkvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YxMzBhN2NiOS9iYWNrdXBPcGVyYXRpb25zL2U4ZWI2MmNiLWY0OWMtNGMyMS1hN2MzLTYyYTM3MmQ4ZTk2Yj9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiaga-adhoc-vault/backupJobs/a04b6a4f-71f8-4762-a6c0-6c4aa1c85f6e?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYS1hZGhvYy12YXVsdC9iYWNrdXBKb2JzL2EwNGI2YTRmLTcxZjgtNDc2Mi1hNmMwLTZjNGFhMWM4NWY2ZT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3a5f1e97-5b2b-411d-bb70-deb51e5e7739" + "a2b4d68f-816f-4208-a9bf-a7d142ebc4cd" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -4349,11 +4392,10 @@ "nosniff" ], "x-ms-request-id": [ - "9418e106-8355-4b6d-9ecc-087b42208133" + "a1575c3c-26e6-4cf6-9c73-ae28be1369d6" ], "x-ms-client-request-id": [ - "3a5f1e97-5b2b-411d-bb70-deb51e5e7739", - "3a5f1e97-5b2b-411d-bb70-deb51e5e7739" + "a2b4d68f-816f-4208-a9bf-a7d142ebc4cd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4365,47 +4407,47 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "144" + "250" ], "x-ms-correlation-request-id": [ - "9418e106-8355-4b6d-9ecc-087b42208133" + "a1575c3c-26e6-4cf6-9c73-ae28be1369d6" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T224624Z:9418e106-8355-4b6d-9ecc-087b42208133" + "WESTINDIA:20220517T142220Z:a1575c3c-26e6-4cf6-9c73-ae28be1369d6" ], "Date": [ - "Thu, 24 Feb 2022 22:46:24 GMT" + "Tue, 17 May 2022 14:22:19 GMT" ], "Content-Length": [ - "304" + "950" ], "Content-Type": [ - "application/json" + "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"e8eb62cb-f49c-4c21-a7c3-62a372d8e96b\",\r\n \"name\": \"e8eb62cb-f49c-4c21-a7c3-62a372d8e96b\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-02-24T22:46:23.5135028Z\",\r\n \"endTime\": \"2022-02-24T22:46:23.5135028Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"258ef4a4-59b2-4226-a973-e91751bdff7d\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiaga-adhoc-vault/backupJobs/a04b6a4f-71f8-4762-a6c0-6c4aa1c85f6e\",\r\n \"name\": \"a04b6a4f-71f8-4762-a6c0-6c4aa1c85f6e\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiaga-adhoc-vm\",\r\n \"duration\": \"PT28M6.57959S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"hiaga-adhoc-vm\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"hiaga-adhoc-vm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T13:54:13.4133042Z\",\r\n \"activityId\": \"a2b4d68f-816f-4208-a9bf-a7d142ebc4cd\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.RecoveryServices/vaults/PSTestRSV130a7cb9/backupJobs/258ef4a4-59b2-4226-a973-e91751bdff7d?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMTMwYTdjYjkvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YxMzBhN2NiOS9iYWNrdXBKb2JzLzI1OGVmNGE0LTU5YjItNDIyNi1hOTczLWU5MTc1MWJkZmY3ZD9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiaga-adhoc-vault/backupJobs/a04b6a4f-71f8-4762-a6c0-6c4aa1c85f6e?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYS1hZGhvYy12YXVsdC9iYWNrdXBKb2JzL2EwNGI2YTRmLTcxZjgtNDc2Mi1hNmMwLTZjNGFhMWM4NWY2ZT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3a5f1e97-5b2b-411d-bb70-deb51e5e7739" + "a2b4d68f-816f-4208-a9bf-a7d142ebc4cd" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -4415,139 +4457,66 @@ "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-IIS/10.0" - ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "2c13a0db-5cae-43a1-b986-4368f45f9654" + "0e333325-87dd-4f28-bddf-4490daea65fb" ], "x-ms-client-request-id": [ - "3a5f1e97-5b2b-411d-bb70-deb51e5e7739", - "3a5f1e97-5b2b-411d-bb70-deb51e5e7739" - ], - "X-Powered-By": [ - "ASP.NET" + "a2b4d68f-816f-4208-a9bf-a7d142ebc4cd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "148" - ], - "x-ms-correlation-request-id": [ - "2c13a0db-5cae-43a1-b986-4368f45f9654" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20220224T224625Z:2c13a0db-5cae-43a1-b986-4368f45f9654" - ], - "Date": [ - "Thu, 24 Feb 2022 22:46:25 GMT" - ], - "Content-Length": [ - "968" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.RecoveryServices/vaults/PSTestRSV130a7cb9/backupJobs/258ef4a4-59b2-4226-a973-e91751bdff7d\",\r\n \"name\": \"258ef4a4-59b2-4226-a973-e91751bdff7d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg130a7cb9;pstestvm130a70\",\r\n \"duration\": \"PT1.8492947S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm130a70\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm130a70\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-24T22:46:23.5135028Z\",\r\n \"activityId\": \"3a5f1e97-5b2b-411d-bb70-deb51e5e7739\"\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.RecoveryServices/vaults/PSTestRSV130a7cb9/backupJobs/258ef4a4-59b2-4226-a973-e91751bdff7d?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMTMwYTdjYjkvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YxMzBhN2NiOS9iYWNrdXBKb2JzLzI1OGVmNGE0LTU5YjItNDIyNi1hOTczLWU5MTc1MWJkZmY3ZD9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "3a5f1e97-5b2b-411d-bb70-deb51e5e7739" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.700.21.56803", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.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": [ - "2ea165e0-37df-4f86-bcf3-9349fbdebb35" - ], - "x-ms-client-request-id": [ - "3a5f1e97-5b2b-411d-bb70-deb51e5e7739", - "3a5f1e97-5b2b-411d-bb70-deb51e5e7739" - ], "X-Powered-By": [ "ASP.NET" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "147" + "249" ], "x-ms-correlation-request-id": [ - "2ea165e0-37df-4f86-bcf3-9349fbdebb35" + "0e333325-87dd-4f28-bddf-4490daea65fb" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T224626Z:2ea165e0-37df-4f86-bcf3-9349fbdebb35" + "WESTINDIA:20220517T142251Z:0e333325-87dd-4f28-bddf-4490daea65fb" ], "Date": [ - "Thu, 24 Feb 2022 22:46:26 GMT" + "Tue, 17 May 2022 14:22:50 GMT" ], "Content-Length": [ - "968" + "953" ], "Content-Type": [ - "application/json" + "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.RecoveryServices/vaults/PSTestRSV130a7cb9/backupJobs/258ef4a4-59b2-4226-a973-e91751bdff7d\",\r\n \"name\": \"258ef4a4-59b2-4226-a973-e91751bdff7d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg130a7cb9;pstestvm130a70\",\r\n \"duration\": \"PT2.8690262S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm130a70\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm130a70\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-24T22:46:23.5135028Z\",\r\n \"activityId\": \"3a5f1e97-5b2b-411d-bb70-deb51e5e7739\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiaga-adhoc-vault/backupJobs/a04b6a4f-71f8-4762-a6c0-6c4aa1c85f6e\",\r\n \"name\": \"a04b6a4f-71f8-4762-a6c0-6c4aa1c85f6e\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiaga-adhoc-vm\",\r\n \"duration\": \"PT28M37.4859858S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"hiaga-adhoc-vm\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"hiaga-adhoc-vm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T13:54:13.4133042Z\",\r\n \"activityId\": \"a2b4d68f-816f-4208-a9bf-a7d142ebc4cd\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.RecoveryServices/vaults/PSTestRSV130a7cb9/backupJobs/258ef4a4-59b2-4226-a973-e91751bdff7d?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMTMwYTdjYjkvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YxMzBhN2NiOS9iYWNrdXBKb2JzLzI1OGVmNGE0LTU5YjItNDIyNi1hOTczLWU5MTc1MWJkZmY3ZD9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiaga-adhoc-vault/backupJobs/a04b6a4f-71f8-4762-a6c0-6c4aa1c85f6e?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYS1hZGhvYy12YXVsdC9iYWNrdXBKb2JzL2EwNGI2YTRmLTcxZjgtNDc2Mi1hNmMwLTZjNGFhMWM4NWY2ZT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3a5f1e97-5b2b-411d-bb70-deb51e5e7739" + "a2b4d68f-816f-4208-a9bf-a7d142ebc4cd" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -4557,139 +4526,66 @@ "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-IIS/10.0" - ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "e9384513-d2ee-43fe-8af8-42bdbee562c8" + "259da148-fefa-492f-89fe-668d0f1cc162" ], "x-ms-client-request-id": [ - "3a5f1e97-5b2b-411d-bb70-deb51e5e7739", - "3a5f1e97-5b2b-411d-bb70-deb51e5e7739" - ], - "X-Powered-By": [ - "ASP.NET" + "a2b4d68f-816f-4208-a9bf-a7d142ebc4cd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "146" - ], - "x-ms-correlation-request-id": [ - "e9384513-d2ee-43fe-8af8-42bdbee562c8" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20220224T224728Z:e9384513-d2ee-43fe-8af8-42bdbee562c8" - ], - "Date": [ - "Thu, 24 Feb 2022 22:47:27 GMT" - ], - "Content-Length": [ - "969" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.RecoveryServices/vaults/PSTestRSV130a7cb9/backupJobs/258ef4a4-59b2-4226-a973-e91751bdff7d\",\r\n \"name\": \"258ef4a4-59b2-4226-a973-e91751bdff7d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg130a7cb9;pstestvm130a70\",\r\n \"duration\": \"PT1M4.733604S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm130a70\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm130a70\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-24T22:46:23.5135028Z\",\r\n \"activityId\": \"3a5f1e97-5b2b-411d-bb70-deb51e5e7739\"\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.RecoveryServices/vaults/PSTestRSV130a7cb9/backupJobs/258ef4a4-59b2-4226-a973-e91751bdff7d?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMTMwYTdjYjkvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YxMzBhN2NiOS9iYWNrdXBKb2JzLzI1OGVmNGE0LTU5YjItNDIyNi1hOTczLWU5MTc1MWJkZmY3ZD9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "3a5f1e97-5b2b-411d-bb70-deb51e5e7739" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.700.21.56803", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.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": [ - "c53f9176-28c7-45a3-8219-827f713a8378" - ], - "x-ms-client-request-id": [ - "3a5f1e97-5b2b-411d-bb70-deb51e5e7739", - "3a5f1e97-5b2b-411d-bb70-deb51e5e7739" - ], "X-Powered-By": [ "ASP.NET" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "145" + "248" ], "x-ms-correlation-request-id": [ - "c53f9176-28c7-45a3-8219-827f713a8378" + "259da148-fefa-492f-89fe-668d0f1cc162" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T224830Z:c53f9176-28c7-45a3-8219-827f713a8378" + "WESTINDIA:20220517T142322Z:259da148-fefa-492f-89fe-668d0f1cc162" ], "Date": [ - "Thu, 24 Feb 2022 22:48:30 GMT" + "Tue, 17 May 2022 14:23:22 GMT" ], "Content-Length": [ - "970" + "952" ], "Content-Type": [ - "application/json" + "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.RecoveryServices/vaults/PSTestRSV130a7cb9/backupJobs/258ef4a4-59b2-4226-a973-e91751bdff7d\",\r\n \"name\": \"258ef4a4-59b2-4226-a973-e91751bdff7d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg130a7cb9;pstestvm130a70\",\r\n \"duration\": \"PT2M6.7042365S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm130a70\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm130a70\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-24T22:46:23.5135028Z\",\r\n \"activityId\": \"3a5f1e97-5b2b-411d-bb70-deb51e5e7739\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiaga-adhoc-vault/backupJobs/a04b6a4f-71f8-4762-a6c0-6c4aa1c85f6e\",\r\n \"name\": \"a04b6a4f-71f8-4762-a6c0-6c4aa1c85f6e\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiaga-adhoc-vm\",\r\n \"duration\": \"PT29M8.3844646S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"hiaga-adhoc-vm\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"hiaga-adhoc-vm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T13:54:13.4133042Z\",\r\n \"activityId\": \"a2b4d68f-816f-4208-a9bf-a7d142ebc4cd\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.RecoveryServices/vaults/PSTestRSV130a7cb9/backupJobs/258ef4a4-59b2-4226-a973-e91751bdff7d?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMTMwYTdjYjkvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YxMzBhN2NiOS9iYWNrdXBKb2JzLzI1OGVmNGE0LTU5YjItNDIyNi1hOTczLWU5MTc1MWJkZmY3ZD9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiaga-adhoc-vault/backupJobs/a04b6a4f-71f8-4762-a6c0-6c4aa1c85f6e?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYS1hZGhvYy12YXVsdC9iYWNrdXBKb2JzL2EwNGI2YTRmLTcxZjgtNDc2Mi1hNmMwLTZjNGFhMWM4NWY2ZT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3a5f1e97-5b2b-411d-bb70-deb51e5e7739" + "a2b4d68f-816f-4208-a9bf-a7d142ebc4cd" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -4699,68 +4595,66 @@ "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-IIS/10.0" - ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "49e65241-f8cd-4b0d-b471-c53ca557032b" + "53eefe01-a62a-4849-8ce9-f66bb5b0c771" ], "x-ms-client-request-id": [ - "3a5f1e97-5b2b-411d-bb70-deb51e5e7739", - "3a5f1e97-5b2b-411d-bb70-deb51e5e7739" - ], - "X-Powered-By": [ - "ASP.NET" + "a2b4d68f-816f-4208-a9bf-a7d142ebc4cd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "144" + "247" ], "x-ms-correlation-request-id": [ - "49e65241-f8cd-4b0d-b471-c53ca557032b" + "53eefe01-a62a-4849-8ce9-f66bb5b0c771" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T224932Z:49e65241-f8cd-4b0d-b471-c53ca557032b" + "WESTINDIA:20220517T142353Z:53eefe01-a62a-4849-8ce9-f66bb5b0c771" ], "Date": [ - "Thu, 24 Feb 2022 22:49:31 GMT" + "Tue, 17 May 2022 14:23:52 GMT" ], "Content-Length": [ - "970" + "953" ], "Content-Type": [ - "application/json" + "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.RecoveryServices/vaults/PSTestRSV130a7cb9/backupJobs/258ef4a4-59b2-4226-a973-e91751bdff7d\",\r\n \"name\": \"258ef4a4-59b2-4226-a973-e91751bdff7d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg130a7cb9;pstestvm130a70\",\r\n \"duration\": \"PT3M8.6256167S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm130a70\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm130a70\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-24T22:46:23.5135028Z\",\r\n \"activityId\": \"3a5f1e97-5b2b-411d-bb70-deb51e5e7739\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiaga-adhoc-vault/backupJobs/a04b6a4f-71f8-4762-a6c0-6c4aa1c85f6e\",\r\n \"name\": \"a04b6a4f-71f8-4762-a6c0-6c4aa1c85f6e\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiaga-adhoc-vm\",\r\n \"duration\": \"PT29M39.3437845S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"hiaga-adhoc-vm\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"hiaga-adhoc-vm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T13:54:13.4133042Z\",\r\n \"activityId\": \"a2b4d68f-816f-4208-a9bf-a7d142ebc4cd\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.RecoveryServices/vaults/PSTestRSV130a7cb9/backupJobs/258ef4a4-59b2-4226-a973-e91751bdff7d?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMTMwYTdjYjkvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YxMzBhN2NiOS9iYWNrdXBKb2JzLzI1OGVmNGE0LTU5YjItNDIyNi1hOTczLWU5MTc1MWJkZmY3ZD9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiaga-adhoc-vault/backupJobs/a04b6a4f-71f8-4762-a6c0-6c4aa1c85f6e?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYS1hZGhvYy12YXVsdC9iYWNrdXBKb2JzL2EwNGI2YTRmLTcxZjgtNDc2Mi1hNmMwLTZjNGFhMWM4NWY2ZT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3a5f1e97-5b2b-411d-bb70-deb51e5e7739" + "a2b4d68f-816f-4208-a9bf-a7d142ebc4cd" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -4770,68 +4664,66 @@ "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-IIS/10.0" + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "246" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "eb028703-aac8-43e1-8251-bb69656ee9bc" + "55642212-c117-4bbc-a691-c0c9db2b9635" ], "x-ms-client-request-id": [ - "3a5f1e97-5b2b-411d-bb70-deb51e5e7739", - "3a5f1e97-5b2b-411d-bb70-deb51e5e7739" - ], - "X-Powered-By": [ - "ASP.NET" + "a2b4d68f-816f-4208-a9bf-a7d142ebc4cd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "143" + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" ], "x-ms-correlation-request-id": [ - "eb028703-aac8-43e1-8251-bb69656ee9bc" + "55642212-c117-4bbc-a691-c0c9db2b9635" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T225055Z:eb028703-aac8-43e1-8251-bb69656ee9bc" + "WESTINDIA:20220517T142424Z:55642212-c117-4bbc-a691-c0c9db2b9635" ], "Date": [ - "Thu, 24 Feb 2022 22:50:55 GMT" + "Tue, 17 May 2022 14:24:23 GMT" ], "Content-Length": [ - "971" + "953" ], "Content-Type": [ - "application/json" + "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.RecoveryServices/vaults/PSTestRSV130a7cb9/backupJobs/258ef4a4-59b2-4226-a973-e91751bdff7d\",\r\n \"name\": \"258ef4a4-59b2-4226-a973-e91751bdff7d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg130a7cb9;pstestvm130a70\",\r\n \"duration\": \"PT4M30.2963731S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm130a70\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm130a70\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-24T22:46:23.5135028Z\",\r\n \"activityId\": \"3a5f1e97-5b2b-411d-bb70-deb51e5e7739\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiaga-adhoc-vault/backupJobs/a04b6a4f-71f8-4762-a6c0-6c4aa1c85f6e\",\r\n \"name\": \"a04b6a4f-71f8-4762-a6c0-6c4aa1c85f6e\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiaga-adhoc-vm\",\r\n \"duration\": \"PT30M10.1691509S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"hiaga-adhoc-vm\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"hiaga-adhoc-vm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T13:54:13.4133042Z\",\r\n \"activityId\": \"a2b4d68f-816f-4208-a9bf-a7d142ebc4cd\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.RecoveryServices/vaults/PSTestRSV130a7cb9/backupJobs/258ef4a4-59b2-4226-a973-e91751bdff7d?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMTMwYTdjYjkvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YxMzBhN2NiOS9iYWNrdXBKb2JzLzI1OGVmNGE0LTU5YjItNDIyNi1hOTczLWU5MTc1MWJkZmY3ZD9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiaga-adhoc-vault/backupJobs/a04b6a4f-71f8-4762-a6c0-6c4aa1c85f6e?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYS1hZGhvYy12YXVsdC9iYWNrdXBKb2JzL2EwNGI2YTRmLTcxZjgtNDc2Mi1hNmMwLTZjNGFhMWM4NWY2ZT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3a5f1e97-5b2b-411d-bb70-deb51e5e7739" + "a2b4d68f-816f-4208-a9bf-a7d142ebc4cd" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -4841,68 +4733,66 @@ "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-IIS/10.0" - ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "72fbec51-cd7e-4816-a650-aa683ae927a8" + "365f6c5e-661f-460e-9fb7-3ec8f48bd497" ], "x-ms-client-request-id": [ - "3a5f1e97-5b2b-411d-bb70-deb51e5e7739", - "3a5f1e97-5b2b-411d-bb70-deb51e5e7739" - ], - "X-Powered-By": [ - "ASP.NET" + "a2b4d68f-816f-4208-a9bf-a7d142ebc4cd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "142" + "245" ], "x-ms-correlation-request-id": [ - "72fbec51-cd7e-4816-a650-aa683ae927a8" + "365f6c5e-661f-460e-9fb7-3ec8f48bd497" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T225158Z:72fbec51-cd7e-4816-a650-aa683ae927a8" + "WESTINDIA:20220517T142455Z:365f6c5e-661f-460e-9fb7-3ec8f48bd497" ], "Date": [ - "Thu, 24 Feb 2022 22:51:58 GMT" + "Tue, 17 May 2022 14:24:55 GMT" ], "Content-Length": [ - "971" + "953" ], "Content-Type": [ - "application/json" + "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.RecoveryServices/vaults/PSTestRSV130a7cb9/backupJobs/258ef4a4-59b2-4226-a973-e91751bdff7d\",\r\n \"name\": \"258ef4a4-59b2-4226-a973-e91751bdff7d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg130a7cb9;pstestvm130a70\",\r\n \"duration\": \"PT5M34.1464625S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm130a70\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm130a70\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-24T22:46:23.5135028Z\",\r\n \"activityId\": \"3a5f1e97-5b2b-411d-bb70-deb51e5e7739\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiaga-adhoc-vault/backupJobs/a04b6a4f-71f8-4762-a6c0-6c4aa1c85f6e\",\r\n \"name\": \"a04b6a4f-71f8-4762-a6c0-6c4aa1c85f6e\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiaga-adhoc-vm\",\r\n \"duration\": \"PT30M41.8525221S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"hiaga-adhoc-vm\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"hiaga-adhoc-vm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T13:54:13.4133042Z\",\r\n \"activityId\": \"a2b4d68f-816f-4208-a9bf-a7d142ebc4cd\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.RecoveryServices/vaults/PSTestRSV130a7cb9/backupJobs/258ef4a4-59b2-4226-a973-e91751bdff7d?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMTMwYTdjYjkvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YxMzBhN2NiOS9iYWNrdXBKb2JzLzI1OGVmNGE0LTU5YjItNDIyNi1hOTczLWU5MTc1MWJkZmY3ZD9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiaga-adhoc-vault/backupJobs/a04b6a4f-71f8-4762-a6c0-6c4aa1c85f6e?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYS1hZGhvYy12YXVsdC9iYWNrdXBKb2JzL2EwNGI2YTRmLTcxZjgtNDc2Mi1hNmMwLTZjNGFhMWM4NWY2ZT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3a5f1e97-5b2b-411d-bb70-deb51e5e7739" + "a2b4d68f-816f-4208-a9bf-a7d142ebc4cd" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -4912,68 +4802,66 @@ "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-IIS/10.0" - ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "464de5e1-a489-423f-b9c3-65d89fe77f32" + "a9bfbb81-4990-4c2d-bd46-83c8db24ca6b" ], "x-ms-client-request-id": [ - "3a5f1e97-5b2b-411d-bb70-deb51e5e7739", - "3a5f1e97-5b2b-411d-bb70-deb51e5e7739" - ], - "X-Powered-By": [ - "ASP.NET" + "a2b4d68f-816f-4208-a9bf-a7d142ebc4cd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "141" + "244" ], "x-ms-correlation-request-id": [ - "464de5e1-a489-423f-b9c3-65d89fe77f32" + "a9bfbb81-4990-4c2d-bd46-83c8db24ca6b" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T225307Z:464de5e1-a489-423f-b9c3-65d89fe77f32" + "WESTINDIA:20220517T142526Z:a9bfbb81-4990-4c2d-bd46-83c8db24ca6b" ], "Date": [ - "Thu, 24 Feb 2022 22:53:06 GMT" + "Tue, 17 May 2022 14:25:26 GMT" ], "Content-Length": [ - "971" + "952" ], "Content-Type": [ - "application/json" + "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.RecoveryServices/vaults/PSTestRSV130a7cb9/backupJobs/258ef4a4-59b2-4226-a973-e91751bdff7d\",\r\n \"name\": \"258ef4a4-59b2-4226-a973-e91751bdff7d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg130a7cb9;pstestvm130a70\",\r\n \"duration\": \"PT6M42.5047497S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm130a70\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm130a70\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-24T22:46:23.5135028Z\",\r\n \"activityId\": \"3a5f1e97-5b2b-411d-bb70-deb51e5e7739\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiaga-adhoc-vault/backupJobs/a04b6a4f-71f8-4762-a6c0-6c4aa1c85f6e\",\r\n \"name\": \"a04b6a4f-71f8-4762-a6c0-6c4aa1c85f6e\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiaga-adhoc-vm\",\r\n \"duration\": \"PT31M12.811624S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"hiaga-adhoc-vm\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"hiaga-adhoc-vm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T13:54:13.4133042Z\",\r\n \"activityId\": \"a2b4d68f-816f-4208-a9bf-a7d142ebc4cd\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.RecoveryServices/vaults/PSTestRSV130a7cb9/backupJobs/258ef4a4-59b2-4226-a973-e91751bdff7d?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMTMwYTdjYjkvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YxMzBhN2NiOS9iYWNrdXBKb2JzLzI1OGVmNGE0LTU5YjItNDIyNi1hOTczLWU5MTc1MWJkZmY3ZD9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiaga-adhoc-vault/backupJobs/a04b6a4f-71f8-4762-a6c0-6c4aa1c85f6e?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYS1hZGhvYy12YXVsdC9iYWNrdXBKb2JzL2EwNGI2YTRmLTcxZjgtNDc2Mi1hNmMwLTZjNGFhMWM4NWY2ZT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3a5f1e97-5b2b-411d-bb70-deb51e5e7739" + "a2b4d68f-816f-4208-a9bf-a7d142ebc4cd" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -4983,5762 +4871,52 @@ "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-IIS/10.0" - ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "3801cca2-efe8-41f8-af72-f3a520a9ffd9" + "780bf049-a2c8-4f1d-8e48-23fa2aeecda6" ], "x-ms-client-request-id": [ - "3a5f1e97-5b2b-411d-bb70-deb51e5e7739", - "3a5f1e97-5b2b-411d-bb70-deb51e5e7739" - ], - "X-Powered-By": [ - "ASP.NET" + "a2b4d68f-816f-4208-a9bf-a7d142ebc4cd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "140" + "243" ], "x-ms-correlation-request-id": [ - "3801cca2-efe8-41f8-af72-f3a520a9ffd9" + "780bf049-a2c8-4f1d-8e48-23fa2aeecda6" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T225433Z:3801cca2-efe8-41f8-af72-f3a520a9ffd9" + "WESTINDIA:20220517T142557Z:780bf049-a2c8-4f1d-8e48-23fa2aeecda6" ], "Date": [ - "Thu, 24 Feb 2022 22:54:33 GMT" + "Tue, 17 May 2022 14:25:57 GMT" ], "Content-Length": [ - "969" + "1015" ], "Content-Type": [ - "application/json" + "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.RecoveryServices/vaults/PSTestRSV130a7cb9/backupJobs/258ef4a4-59b2-4226-a973-e91751bdff7d\",\r\n \"name\": \"258ef4a4-59b2-4226-a973-e91751bdff7d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg130a7cb9;pstestvm130a70\",\r\n \"duration\": \"PT8M8.6668552S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm130a70\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm130a70\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-24T22:46:23.5135028Z\",\r\n \"activityId\": \"3a5f1e97-5b2b-411d-bb70-deb51e5e7739\"\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.RecoveryServices/vaults/PSTestRSV130a7cb9/backupJobs/258ef4a4-59b2-4226-a973-e91751bdff7d?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMTMwYTdjYjkvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YxMzBhN2NiOS9iYWNrdXBKb2JzLzI1OGVmNGE0LTU5YjItNDIyNi1hOTczLWU5MTc1MWJkZmY3ZD9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "3a5f1e97-5b2b-411d-bb70-deb51e5e7739" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.700.21.56803", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.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": [ - "a56bacab-0882-48fe-81d4-7bb4cda5151e" - ], - "x-ms-client-request-id": [ - "3a5f1e97-5b2b-411d-bb70-deb51e5e7739", - "3a5f1e97-5b2b-411d-bb70-deb51e5e7739" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "139" - ], - "x-ms-correlation-request-id": [ - "a56bacab-0882-48fe-81d4-7bb4cda5151e" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20220224T225536Z:a56bacab-0882-48fe-81d4-7bb4cda5151e" - ], - "Date": [ - "Thu, 24 Feb 2022 22:55:36 GMT" - ], - "Content-Length": [ - "970" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.RecoveryServices/vaults/PSTestRSV130a7cb9/backupJobs/258ef4a4-59b2-4226-a973-e91751bdff7d\",\r\n \"name\": \"258ef4a4-59b2-4226-a973-e91751bdff7d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg130a7cb9;pstestvm130a70\",\r\n \"duration\": \"PT9M12.2503216S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm130a70\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm130a70\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-24T22:46:23.5135028Z\",\r\n \"activityId\": \"3a5f1e97-5b2b-411d-bb70-deb51e5e7739\"\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.RecoveryServices/vaults/PSTestRSV130a7cb9/backupJobs/258ef4a4-59b2-4226-a973-e91751bdff7d?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMTMwYTdjYjkvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YxMzBhN2NiOS9iYWNrdXBKb2JzLzI1OGVmNGE0LTU5YjItNDIyNi1hOTczLWU5MTc1MWJkZmY3ZD9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "3a5f1e97-5b2b-411d-bb70-deb51e5e7739" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.700.21.56803", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.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": [ - "5e3e4e2d-8621-4283-ad31-10d3af0b9769" - ], - "x-ms-client-request-id": [ - "3a5f1e97-5b2b-411d-bb70-deb51e5e7739", - "3a5f1e97-5b2b-411d-bb70-deb51e5e7739" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "138" - ], - "x-ms-correlation-request-id": [ - "5e3e4e2d-8621-4283-ad31-10d3af0b9769" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20220224T225638Z:5e3e4e2d-8621-4283-ad31-10d3af0b9769" - ], - "Date": [ - "Thu, 24 Feb 2022 22:56:38 GMT" - ], - "Content-Length": [ - "971" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.RecoveryServices/vaults/PSTestRSV130a7cb9/backupJobs/258ef4a4-59b2-4226-a973-e91751bdff7d\",\r\n \"name\": \"258ef4a4-59b2-4226-a973-e91751bdff7d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg130a7cb9;pstestvm130a70\",\r\n \"duration\": \"PT10M14.6088719S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm130a70\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm130a70\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-24T22:46:23.5135028Z\",\r\n \"activityId\": \"3a5f1e97-5b2b-411d-bb70-deb51e5e7739\"\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.RecoveryServices/vaults/PSTestRSV130a7cb9/backupJobs/258ef4a4-59b2-4226-a973-e91751bdff7d?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMTMwYTdjYjkvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YxMzBhN2NiOS9iYWNrdXBKb2JzLzI1OGVmNGE0LTU5YjItNDIyNi1hOTczLWU5MTc1MWJkZmY3ZD9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "3a5f1e97-5b2b-411d-bb70-deb51e5e7739" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.700.21.56803", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.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": [ - "75256d61-d4b9-45a8-a4f6-910e0d38b22d" - ], - "x-ms-client-request-id": [ - "3a5f1e97-5b2b-411d-bb70-deb51e5e7739", - "3a5f1e97-5b2b-411d-bb70-deb51e5e7739" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "137" - ], - "x-ms-correlation-request-id": [ - "75256d61-d4b9-45a8-a4f6-910e0d38b22d" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20220224T225740Z:75256d61-d4b9-45a8-a4f6-910e0d38b22d" - ], - "Date": [ - "Thu, 24 Feb 2022 22:57:39 GMT" - ], - "Content-Length": [ - "971" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.RecoveryServices/vaults/PSTestRSV130a7cb9/backupJobs/258ef4a4-59b2-4226-a973-e91751bdff7d\",\r\n \"name\": \"258ef4a4-59b2-4226-a973-e91751bdff7d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg130a7cb9;pstestvm130a70\",\r\n \"duration\": \"PT11M16.2260971S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm130a70\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm130a70\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-24T22:46:23.5135028Z\",\r\n \"activityId\": \"3a5f1e97-5b2b-411d-bb70-deb51e5e7739\"\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.RecoveryServices/vaults/PSTestRSV130a7cb9/backupJobs/258ef4a4-59b2-4226-a973-e91751bdff7d?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMTMwYTdjYjkvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YxMzBhN2NiOS9iYWNrdXBKb2JzLzI1OGVmNGE0LTU5YjItNDIyNi1hOTczLWU5MTc1MWJkZmY3ZD9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "3a5f1e97-5b2b-411d-bb70-deb51e5e7739" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.700.21.56803", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.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": [ - "10517cb0-0be2-4825-b624-02976ec38b9d" - ], - "x-ms-client-request-id": [ - "3a5f1e97-5b2b-411d-bb70-deb51e5e7739", - "3a5f1e97-5b2b-411d-bb70-deb51e5e7739" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "136" - ], - "x-ms-correlation-request-id": [ - "10517cb0-0be2-4825-b624-02976ec38b9d" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20220224T225842Z:10517cb0-0be2-4825-b624-02976ec38b9d" - ], - "Date": [ - "Thu, 24 Feb 2022 22:58:41 GMT" - ], - "Content-Length": [ - "971" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.RecoveryServices/vaults/PSTestRSV130a7cb9/backupJobs/258ef4a4-59b2-4226-a973-e91751bdff7d\",\r\n \"name\": \"258ef4a4-59b2-4226-a973-e91751bdff7d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg130a7cb9;pstestvm130a70\",\r\n \"duration\": \"PT12M18.2289235S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm130a70\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm130a70\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-24T22:46:23.5135028Z\",\r\n \"activityId\": \"3a5f1e97-5b2b-411d-bb70-deb51e5e7739\"\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.RecoveryServices/vaults/PSTestRSV130a7cb9/backupJobs/258ef4a4-59b2-4226-a973-e91751bdff7d?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMTMwYTdjYjkvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YxMzBhN2NiOS9iYWNrdXBKb2JzLzI1OGVmNGE0LTU5YjItNDIyNi1hOTczLWU5MTc1MWJkZmY3ZD9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "3a5f1e97-5b2b-411d-bb70-deb51e5e7739" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.700.21.56803", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.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": [ - "33e2afb3-3884-4f99-9f5b-e28313afd4ee" - ], - "x-ms-client-request-id": [ - "3a5f1e97-5b2b-411d-bb70-deb51e5e7739", - "3a5f1e97-5b2b-411d-bb70-deb51e5e7739" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "135" - ], - "x-ms-correlation-request-id": [ - "33e2afb3-3884-4f99-9f5b-e28313afd4ee" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20220224T225944Z:33e2afb3-3884-4f99-9f5b-e28313afd4ee" - ], - "Date": [ - "Thu, 24 Feb 2022 22:59:43 GMT" - ], - "Content-Length": [ - "971" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.RecoveryServices/vaults/PSTestRSV130a7cb9/backupJobs/258ef4a4-59b2-4226-a973-e91751bdff7d\",\r\n \"name\": \"258ef4a4-59b2-4226-a973-e91751bdff7d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg130a7cb9;pstestvm130a70\",\r\n \"duration\": \"PT13M20.1181316S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm130a70\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm130a70\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-24T22:46:23.5135028Z\",\r\n \"activityId\": \"3a5f1e97-5b2b-411d-bb70-deb51e5e7739\"\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.RecoveryServices/vaults/PSTestRSV130a7cb9/backupJobs/258ef4a4-59b2-4226-a973-e91751bdff7d?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMTMwYTdjYjkvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YxMzBhN2NiOS9iYWNrdXBKb2JzLzI1OGVmNGE0LTU5YjItNDIyNi1hOTczLWU5MTc1MWJkZmY3ZD9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "3a5f1e97-5b2b-411d-bb70-deb51e5e7739" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.700.21.56803", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.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": [ - "14279a15-fd94-47f7-a7b8-9aea8811f70e" - ], - "x-ms-client-request-id": [ - "3a5f1e97-5b2b-411d-bb70-deb51e5e7739", - "3a5f1e97-5b2b-411d-bb70-deb51e5e7739" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "134" - ], - "x-ms-correlation-request-id": [ - "14279a15-fd94-47f7-a7b8-9aea8811f70e" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20220224T230051Z:14279a15-fd94-47f7-a7b8-9aea8811f70e" - ], - "Date": [ - "Thu, 24 Feb 2022 23:00:51 GMT" - ], - "Content-Length": [ - "971" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.RecoveryServices/vaults/PSTestRSV130a7cb9/backupJobs/258ef4a4-59b2-4226-a973-e91751bdff7d\",\r\n \"name\": \"258ef4a4-59b2-4226-a973-e91751bdff7d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg130a7cb9;pstestvm130a70\",\r\n \"duration\": \"PT14M27.6404597S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm130a70\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm130a70\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-24T22:46:23.5135028Z\",\r\n \"activityId\": \"3a5f1e97-5b2b-411d-bb70-deb51e5e7739\"\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.RecoveryServices/vaults/PSTestRSV130a7cb9/backupJobs/258ef4a4-59b2-4226-a973-e91751bdff7d?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMTMwYTdjYjkvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YxMzBhN2NiOS9iYWNrdXBKb2JzLzI1OGVmNGE0LTU5YjItNDIyNi1hOTczLWU5MTc1MWJkZmY3ZD9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "3a5f1e97-5b2b-411d-bb70-deb51e5e7739" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.700.21.56803", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.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": [ - "d8404b42-74ac-4012-9efb-09929ce0b7b3" - ], - "x-ms-client-request-id": [ - "3a5f1e97-5b2b-411d-bb70-deb51e5e7739", - "3a5f1e97-5b2b-411d-bb70-deb51e5e7739" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "133" - ], - "x-ms-correlation-request-id": [ - "d8404b42-74ac-4012-9efb-09929ce0b7b3" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20220224T230200Z:d8404b42-74ac-4012-9efb-09929ce0b7b3" - ], - "Date": [ - "Thu, 24 Feb 2022 23:01:59 GMT" - ], - "Content-Length": [ - "971" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.RecoveryServices/vaults/PSTestRSV130a7cb9/backupJobs/258ef4a4-59b2-4226-a973-e91751bdff7d\",\r\n \"name\": \"258ef4a4-59b2-4226-a973-e91751bdff7d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg130a7cb9;pstestvm130a70\",\r\n \"duration\": \"PT15M36.1905491S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm130a70\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm130a70\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-24T22:46:23.5135028Z\",\r\n \"activityId\": \"3a5f1e97-5b2b-411d-bb70-deb51e5e7739\"\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.RecoveryServices/vaults/PSTestRSV130a7cb9/backupJobs/258ef4a4-59b2-4226-a973-e91751bdff7d?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMTMwYTdjYjkvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YxMzBhN2NiOS9iYWNrdXBKb2JzLzI1OGVmNGE0LTU5YjItNDIyNi1hOTczLWU5MTc1MWJkZmY3ZD9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "3a5f1e97-5b2b-411d-bb70-deb51e5e7739" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.700.21.56803", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.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": [ - "73b31b00-e3ed-4044-8f13-30bbf4fae304" - ], - "x-ms-client-request-id": [ - "3a5f1e97-5b2b-411d-bb70-deb51e5e7739", - "3a5f1e97-5b2b-411d-bb70-deb51e5e7739" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "132" - ], - "x-ms-correlation-request-id": [ - "73b31b00-e3ed-4044-8f13-30bbf4fae304" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20220224T230302Z:73b31b00-e3ed-4044-8f13-30bbf4fae304" - ], - "Date": [ - "Thu, 24 Feb 2022 23:03:01 GMT" - ], - "Content-Length": [ - "970" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.RecoveryServices/vaults/PSTestRSV130a7cb9/backupJobs/258ef4a4-59b2-4226-a973-e91751bdff7d\",\r\n \"name\": \"258ef4a4-59b2-4226-a973-e91751bdff7d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg130a7cb9;pstestvm130a70\",\r\n \"duration\": \"PT16M38.215865S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm130a70\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm130a70\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-24T22:46:23.5135028Z\",\r\n \"activityId\": \"3a5f1e97-5b2b-411d-bb70-deb51e5e7739\"\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.RecoveryServices/vaults/PSTestRSV130a7cb9/backupJobs/258ef4a4-59b2-4226-a973-e91751bdff7d?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMTMwYTdjYjkvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YxMzBhN2NiOS9iYWNrdXBKb2JzLzI1OGVmNGE0LTU5YjItNDIyNi1hOTczLWU5MTc1MWJkZmY3ZD9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "3a5f1e97-5b2b-411d-bb70-deb51e5e7739" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.700.21.56803", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.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": [ - "6d4b1bec-5502-46cf-a687-6f0906ea0511" - ], - "x-ms-client-request-id": [ - "3a5f1e97-5b2b-411d-bb70-deb51e5e7739", - "3a5f1e97-5b2b-411d-bb70-deb51e5e7739" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "131" - ], - "x-ms-correlation-request-id": [ - "6d4b1bec-5502-46cf-a687-6f0906ea0511" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20220224T230403Z:6d4b1bec-5502-46cf-a687-6f0906ea0511" - ], - "Date": [ - "Thu, 24 Feb 2022 23:04:03 GMT" - ], - "Content-Length": [ - "971" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.RecoveryServices/vaults/PSTestRSV130a7cb9/backupJobs/258ef4a4-59b2-4226-a973-e91751bdff7d\",\r\n \"name\": \"258ef4a4-59b2-4226-a973-e91751bdff7d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg130a7cb9;pstestvm130a70\",\r\n \"duration\": \"PT17M40.0455135S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm130a70\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm130a70\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-24T22:46:23.5135028Z\",\r\n \"activityId\": \"3a5f1e97-5b2b-411d-bb70-deb51e5e7739\"\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.RecoveryServices/vaults/PSTestRSV130a7cb9/backupJobs/258ef4a4-59b2-4226-a973-e91751bdff7d?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMTMwYTdjYjkvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YxMzBhN2NiOS9iYWNrdXBKb2JzLzI1OGVmNGE0LTU5YjItNDIyNi1hOTczLWU5MTc1MWJkZmY3ZD9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "3a5f1e97-5b2b-411d-bb70-deb51e5e7739" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.700.21.56803", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.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": [ - "440afd99-02c9-4574-baa3-78aed8b31dd0" - ], - "x-ms-client-request-id": [ - "3a5f1e97-5b2b-411d-bb70-deb51e5e7739", - "3a5f1e97-5b2b-411d-bb70-deb51e5e7739" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "130" - ], - "x-ms-correlation-request-id": [ - "440afd99-02c9-4574-baa3-78aed8b31dd0" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20220224T230518Z:440afd99-02c9-4574-baa3-78aed8b31dd0" - ], - "Date": [ - "Thu, 24 Feb 2022 23:05:17 GMT" - ], - "Content-Length": [ - "971" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.RecoveryServices/vaults/PSTestRSV130a7cb9/backupJobs/258ef4a4-59b2-4226-a973-e91751bdff7d\",\r\n \"name\": \"258ef4a4-59b2-4226-a973-e91751bdff7d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg130a7cb9;pstestvm130a70\",\r\n \"duration\": \"PT18M54.0059184S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm130a70\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm130a70\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-24T22:46:23.5135028Z\",\r\n \"activityId\": \"3a5f1e97-5b2b-411d-bb70-deb51e5e7739\"\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.RecoveryServices/vaults/PSTestRSV130a7cb9/backupJobs/258ef4a4-59b2-4226-a973-e91751bdff7d?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMTMwYTdjYjkvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YxMzBhN2NiOS9iYWNrdXBKb2JzLzI1OGVmNGE0LTU5YjItNDIyNi1hOTczLWU5MTc1MWJkZmY3ZD9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "3a5f1e97-5b2b-411d-bb70-deb51e5e7739" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.700.21.56803", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.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": [ - "0981345a-1b55-422e-8ac4-bc3a6994269d" - ], - "x-ms-client-request-id": [ - "3a5f1e97-5b2b-411d-bb70-deb51e5e7739", - "3a5f1e97-5b2b-411d-bb70-deb51e5e7739" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "129" - ], - "x-ms-correlation-request-id": [ - "0981345a-1b55-422e-8ac4-bc3a6994269d" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20220224T230620Z:0981345a-1b55-422e-8ac4-bc3a6994269d" - ], - "Date": [ - "Thu, 24 Feb 2022 23:06:19 GMT" - ], - "Content-Length": [ - "971" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.RecoveryServices/vaults/PSTestRSV130a7cb9/backupJobs/258ef4a4-59b2-4226-a973-e91751bdff7d\",\r\n \"name\": \"258ef4a4-59b2-4226-a973-e91751bdff7d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg130a7cb9;pstestvm130a70\",\r\n \"duration\": \"PT19M56.3711647S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm130a70\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm130a70\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-24T22:46:23.5135028Z\",\r\n \"activityId\": \"3a5f1e97-5b2b-411d-bb70-deb51e5e7739\"\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.RecoveryServices/vaults/PSTestRSV130a7cb9/backupJobs/258ef4a4-59b2-4226-a973-e91751bdff7d?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMTMwYTdjYjkvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YxMzBhN2NiOS9iYWNrdXBKb2JzLzI1OGVmNGE0LTU5YjItNDIyNi1hOTczLWU5MTc1MWJkZmY3ZD9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "3a5f1e97-5b2b-411d-bb70-deb51e5e7739" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.700.21.56803", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.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": [ - "9d306aa7-e858-4274-bb19-2b076be1cfd3" - ], - "x-ms-client-request-id": [ - "3a5f1e97-5b2b-411d-bb70-deb51e5e7739", - "3a5f1e97-5b2b-411d-bb70-deb51e5e7739" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "128" - ], - "x-ms-correlation-request-id": [ - "9d306aa7-e858-4274-bb19-2b076be1cfd3" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20220224T230722Z:9d306aa7-e858-4274-bb19-2b076be1cfd3" - ], - "Date": [ - "Thu, 24 Feb 2022 23:07:21 GMT" - ], - "Content-Length": [ - "971" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.RecoveryServices/vaults/PSTestRSV130a7cb9/backupJobs/258ef4a4-59b2-4226-a973-e91751bdff7d\",\r\n \"name\": \"258ef4a4-59b2-4226-a973-e91751bdff7d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg130a7cb9;pstestvm130a70\",\r\n \"duration\": \"PT20M58.3761411S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm130a70\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm130a70\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-24T22:46:23.5135028Z\",\r\n \"activityId\": \"3a5f1e97-5b2b-411d-bb70-deb51e5e7739\"\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.RecoveryServices/vaults/PSTestRSV130a7cb9/backupJobs/258ef4a4-59b2-4226-a973-e91751bdff7d?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMTMwYTdjYjkvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YxMzBhN2NiOS9iYWNrdXBKb2JzLzI1OGVmNGE0LTU5YjItNDIyNi1hOTczLWU5MTc1MWJkZmY3ZD9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "3a5f1e97-5b2b-411d-bb70-deb51e5e7739" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.700.21.56803", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.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": [ - "22252ce3-85f4-424d-827c-6e43604c5d3a" - ], - "x-ms-client-request-id": [ - "3a5f1e97-5b2b-411d-bb70-deb51e5e7739", - "3a5f1e97-5b2b-411d-bb70-deb51e5e7739" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "127" - ], - "x-ms-correlation-request-id": [ - "22252ce3-85f4-424d-827c-6e43604c5d3a" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20220224T230824Z:22252ce3-85f4-424d-827c-6e43604c5d3a" - ], - "Date": [ - "Thu, 24 Feb 2022 23:08:24 GMT" - ], - "Content-Length": [ - "970" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.RecoveryServices/vaults/PSTestRSV130a7cb9/backupJobs/258ef4a4-59b2-4226-a973-e91751bdff7d\",\r\n \"name\": \"258ef4a4-59b2-4226-a973-e91751bdff7d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg130a7cb9;pstestvm130a70\",\r\n \"duration\": \"PT22M0.2972557S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm130a70\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm130a70\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-24T22:46:23.5135028Z\",\r\n \"activityId\": \"3a5f1e97-5b2b-411d-bb70-deb51e5e7739\"\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.RecoveryServices/vaults/PSTestRSV130a7cb9/backupJobs/258ef4a4-59b2-4226-a973-e91751bdff7d?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMTMwYTdjYjkvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YxMzBhN2NiOS9iYWNrdXBKb2JzLzI1OGVmNGE0LTU5YjItNDIyNi1hOTczLWU5MTc1MWJkZmY3ZD9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "3a5f1e97-5b2b-411d-bb70-deb51e5e7739" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.700.21.56803", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.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": [ - "9964dce7-50d9-4251-b423-1936f3e76ecc" - ], - "x-ms-client-request-id": [ - "3a5f1e97-5b2b-411d-bb70-deb51e5e7739", - "3a5f1e97-5b2b-411d-bb70-deb51e5e7739" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "126" - ], - "x-ms-correlation-request-id": [ - "9964dce7-50d9-4251-b423-1936f3e76ecc" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20220224T230926Z:9964dce7-50d9-4251-b423-1936f3e76ecc" - ], - "Date": [ - "Thu, 24 Feb 2022 23:09:25 GMT" - ], - "Content-Length": [ - "970" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.RecoveryServices/vaults/PSTestRSV130a7cb9/backupJobs/258ef4a4-59b2-4226-a973-e91751bdff7d\",\r\n \"name\": \"258ef4a4-59b2-4226-a973-e91751bdff7d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg130a7cb9;pstestvm130a70\",\r\n \"duration\": \"PT23M2.2382802S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm130a70\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm130a70\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-24T22:46:23.5135028Z\",\r\n \"activityId\": \"3a5f1e97-5b2b-411d-bb70-deb51e5e7739\"\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.RecoveryServices/vaults/PSTestRSV130a7cb9/backupJobs/258ef4a4-59b2-4226-a973-e91751bdff7d?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMTMwYTdjYjkvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YxMzBhN2NiOS9iYWNrdXBKb2JzLzI1OGVmNGE0LTU5YjItNDIyNi1hOTczLWU5MTc1MWJkZmY3ZD9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "3a5f1e97-5b2b-411d-bb70-deb51e5e7739" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.700.21.56803", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.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": [ - "110e0caf-266f-4cde-8850-46d58426f72d" - ], - "x-ms-client-request-id": [ - "3a5f1e97-5b2b-411d-bb70-deb51e5e7739", - "3a5f1e97-5b2b-411d-bb70-deb51e5e7739" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "125" - ], - "x-ms-correlation-request-id": [ - "110e0caf-266f-4cde-8850-46d58426f72d" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20220224T231027Z:110e0caf-266f-4cde-8850-46d58426f72d" - ], - "Date": [ - "Thu, 24 Feb 2022 23:10:27 GMT" - ], - "Content-Length": [ - "970" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.RecoveryServices/vaults/PSTestRSV130a7cb9/backupJobs/258ef4a4-59b2-4226-a973-e91751bdff7d\",\r\n \"name\": \"258ef4a4-59b2-4226-a973-e91751bdff7d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg130a7cb9;pstestvm130a70\",\r\n \"duration\": \"PT24M3.8976704S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm130a70\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm130a70\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-24T22:46:23.5135028Z\",\r\n \"activityId\": \"3a5f1e97-5b2b-411d-bb70-deb51e5e7739\"\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.RecoveryServices/vaults/PSTestRSV130a7cb9/backupJobs/258ef4a4-59b2-4226-a973-e91751bdff7d?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMTMwYTdjYjkvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YxMzBhN2NiOS9iYWNrdXBKb2JzLzI1OGVmNGE0LTU5YjItNDIyNi1hOTczLWU5MTc1MWJkZmY3ZD9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "3a5f1e97-5b2b-411d-bb70-deb51e5e7739" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.700.21.56803", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.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": [ - "bdca17cd-a6b0-4578-973d-9237915cd120" - ], - "x-ms-client-request-id": [ - "3a5f1e97-5b2b-411d-bb70-deb51e5e7739", - "3a5f1e97-5b2b-411d-bb70-deb51e5e7739" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "124" - ], - "x-ms-correlation-request-id": [ - "bdca17cd-a6b0-4578-973d-9237915cd120" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20220224T231128Z:bdca17cd-a6b0-4578-973d-9237915cd120" - ], - "Date": [ - "Thu, 24 Feb 2022 23:11:28 GMT" - ], - "Content-Length": [ - "970" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.RecoveryServices/vaults/PSTestRSV130a7cb9/backupJobs/258ef4a4-59b2-4226-a973-e91751bdff7d\",\r\n \"name\": \"258ef4a4-59b2-4226-a973-e91751bdff7d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg130a7cb9;pstestvm130a70\",\r\n \"duration\": \"PT25M4.8934391S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm130a70\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm130a70\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-24T22:46:23.5135028Z\",\r\n \"activityId\": \"3a5f1e97-5b2b-411d-bb70-deb51e5e7739\"\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.RecoveryServices/vaults/PSTestRSV130a7cb9/backupJobs/258ef4a4-59b2-4226-a973-e91751bdff7d?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMTMwYTdjYjkvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YxMzBhN2NiOS9iYWNrdXBKb2JzLzI1OGVmNGE0LTU5YjItNDIyNi1hOTczLWU5MTc1MWJkZmY3ZD9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "3a5f1e97-5b2b-411d-bb70-deb51e5e7739" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.700.21.56803", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.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": [ - "fb0b63d1-2227-4eba-956d-b5b7d2364d26" - ], - "x-ms-client-request-id": [ - "3a5f1e97-5b2b-411d-bb70-deb51e5e7739", - "3a5f1e97-5b2b-411d-bb70-deb51e5e7739" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "123" - ], - "x-ms-correlation-request-id": [ - "fb0b63d1-2227-4eba-956d-b5b7d2364d26" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20220224T231230Z:fb0b63d1-2227-4eba-956d-b5b7d2364d26" - ], - "Date": [ - "Thu, 24 Feb 2022 23:12:30 GMT" - ], - "Content-Length": [ - "970" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.RecoveryServices/vaults/PSTestRSV130a7cb9/backupJobs/258ef4a4-59b2-4226-a973-e91751bdff7d\",\r\n \"name\": \"258ef4a4-59b2-4226-a973-e91751bdff7d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg130a7cb9;pstestvm130a70\",\r\n \"duration\": \"PT26M7.0273398S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm130a70\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm130a70\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-24T22:46:23.5135028Z\",\r\n \"activityId\": \"3a5f1e97-5b2b-411d-bb70-deb51e5e7739\"\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.RecoveryServices/vaults/PSTestRSV130a7cb9/backupJobs/258ef4a4-59b2-4226-a973-e91751bdff7d?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMTMwYTdjYjkvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YxMzBhN2NiOS9iYWNrdXBKb2JzLzI1OGVmNGE0LTU5YjItNDIyNi1hOTczLWU5MTc1MWJkZmY3ZD9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "3a5f1e97-5b2b-411d-bb70-deb51e5e7739" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.700.21.56803", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.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": [ - "12d9c820-79c4-468b-9187-1c7976e6f389" - ], - "x-ms-client-request-id": [ - "3a5f1e97-5b2b-411d-bb70-deb51e5e7739", - "3a5f1e97-5b2b-411d-bb70-deb51e5e7739" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "122" - ], - "x-ms-correlation-request-id": [ - "12d9c820-79c4-468b-9187-1c7976e6f389" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20220224T231332Z:12d9c820-79c4-468b-9187-1c7976e6f389" - ], - "Date": [ - "Thu, 24 Feb 2022 23:13:31 GMT" - ], - "Content-Length": [ - "970" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.RecoveryServices/vaults/PSTestRSV130a7cb9/backupJobs/258ef4a4-59b2-4226-a973-e91751bdff7d\",\r\n \"name\": \"258ef4a4-59b2-4226-a973-e91751bdff7d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg130a7cb9;pstestvm130a70\",\r\n \"duration\": \"PT27M8.7907393S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm130a70\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm130a70\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-24T22:46:23.5135028Z\",\r\n \"activityId\": \"3a5f1e97-5b2b-411d-bb70-deb51e5e7739\"\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.RecoveryServices/vaults/PSTestRSV130a7cb9/backupJobs/258ef4a4-59b2-4226-a973-e91751bdff7d?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMTMwYTdjYjkvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YxMzBhN2NiOS9iYWNrdXBKb2JzLzI1OGVmNGE0LTU5YjItNDIyNi1hOTczLWU5MTc1MWJkZmY3ZD9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "3a5f1e97-5b2b-411d-bb70-deb51e5e7739" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.700.21.56803", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.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": [ - "1e533a6a-297e-43a5-9462-23bf958a2683" - ], - "x-ms-client-request-id": [ - "3a5f1e97-5b2b-411d-bb70-deb51e5e7739", - "3a5f1e97-5b2b-411d-bb70-deb51e5e7739" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "121" - ], - "x-ms-correlation-request-id": [ - "1e533a6a-297e-43a5-9462-23bf958a2683" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20220224T231434Z:1e533a6a-297e-43a5-9462-23bf958a2683" - ], - "Date": [ - "Thu, 24 Feb 2022 23:14:34 GMT" - ], - "Content-Length": [ - "971" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.RecoveryServices/vaults/PSTestRSV130a7cb9/backupJobs/258ef4a4-59b2-4226-a973-e91751bdff7d\",\r\n \"name\": \"258ef4a4-59b2-4226-a973-e91751bdff7d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg130a7cb9;pstestvm130a70\",\r\n \"duration\": \"PT28M10.7902423S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm130a70\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm130a70\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-24T22:46:23.5135028Z\",\r\n \"activityId\": \"3a5f1e97-5b2b-411d-bb70-deb51e5e7739\"\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.RecoveryServices/vaults/PSTestRSV130a7cb9/backupJobs/258ef4a4-59b2-4226-a973-e91751bdff7d?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMTMwYTdjYjkvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YxMzBhN2NiOS9iYWNrdXBKb2JzLzI1OGVmNGE0LTU5YjItNDIyNi1hOTczLWU5MTc1MWJkZmY3ZD9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "3a5f1e97-5b2b-411d-bb70-deb51e5e7739" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.700.21.56803", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.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": [ - "64c30f4d-4328-4e81-a834-262a8fd01186" - ], - "x-ms-client-request-id": [ - "3a5f1e97-5b2b-411d-bb70-deb51e5e7739", - "3a5f1e97-5b2b-411d-bb70-deb51e5e7739" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "120" - ], - "x-ms-correlation-request-id": [ - "64c30f4d-4328-4e81-a834-262a8fd01186" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20220224T231536Z:64c30f4d-4328-4e81-a834-262a8fd01186" - ], - "Date": [ - "Thu, 24 Feb 2022 23:15:35 GMT" - ], - "Content-Length": [ - "971" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.RecoveryServices/vaults/PSTestRSV130a7cb9/backupJobs/258ef4a4-59b2-4226-a973-e91751bdff7d\",\r\n \"name\": \"258ef4a4-59b2-4226-a973-e91751bdff7d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg130a7cb9;pstestvm130a70\",\r\n \"duration\": \"PT29M12.7652063S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm130a70\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm130a70\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-24T22:46:23.5135028Z\",\r\n \"activityId\": \"3a5f1e97-5b2b-411d-bb70-deb51e5e7739\"\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.RecoveryServices/vaults/PSTestRSV130a7cb9/backupJobs/258ef4a4-59b2-4226-a973-e91751bdff7d?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMTMwYTdjYjkvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YxMzBhN2NiOS9iYWNrdXBKb2JzLzI1OGVmNGE0LTU5YjItNDIyNi1hOTczLWU5MTc1MWJkZmY3ZD9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "3a5f1e97-5b2b-411d-bb70-deb51e5e7739" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.700.21.56803", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.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": [ - "31c8faf9-c0e6-4278-a34e-7b37a4c94e8b" - ], - "x-ms-client-request-id": [ - "3a5f1e97-5b2b-411d-bb70-deb51e5e7739", - "3a5f1e97-5b2b-411d-bb70-deb51e5e7739" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "119" - ], - "x-ms-correlation-request-id": [ - "31c8faf9-c0e6-4278-a34e-7b37a4c94e8b" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20220224T231639Z:31c8faf9-c0e6-4278-a34e-7b37a4c94e8b" - ], - "Date": [ - "Thu, 24 Feb 2022 23:16:39 GMT" - ], - "Content-Length": [ - "971" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.RecoveryServices/vaults/PSTestRSV130a7cb9/backupJobs/258ef4a4-59b2-4226-a973-e91751bdff7d\",\r\n \"name\": \"258ef4a4-59b2-4226-a973-e91751bdff7d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg130a7cb9;pstestvm130a70\",\r\n \"duration\": \"PT30M15.3207339S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm130a70\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm130a70\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-24T22:46:23.5135028Z\",\r\n \"activityId\": \"3a5f1e97-5b2b-411d-bb70-deb51e5e7739\"\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.RecoveryServices/vaults/PSTestRSV130a7cb9/backupJobs/258ef4a4-59b2-4226-a973-e91751bdff7d?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMTMwYTdjYjkvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YxMzBhN2NiOS9iYWNrdXBKb2JzLzI1OGVmNGE0LTU5YjItNDIyNi1hOTczLWU5MTc1MWJkZmY3ZD9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "3a5f1e97-5b2b-411d-bb70-deb51e5e7739" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.700.21.56803", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.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": [ - "42a47a42-5cce-4cf5-816d-6f974de92e53" - ], - "x-ms-client-request-id": [ - "3a5f1e97-5b2b-411d-bb70-deb51e5e7739", - "3a5f1e97-5b2b-411d-bb70-deb51e5e7739" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "118" - ], - "x-ms-correlation-request-id": [ - "42a47a42-5cce-4cf5-816d-6f974de92e53" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20220224T231741Z:42a47a42-5cce-4cf5-816d-6f974de92e53" - ], - "Date": [ - "Thu, 24 Feb 2022 23:17:40 GMT" - ], - "Content-Length": [ - "971" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.RecoveryServices/vaults/PSTestRSV130a7cb9/backupJobs/258ef4a4-59b2-4226-a973-e91751bdff7d\",\r\n \"name\": \"258ef4a4-59b2-4226-a973-e91751bdff7d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg130a7cb9;pstestvm130a70\",\r\n \"duration\": \"PT31M17.4189393S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm130a70\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm130a70\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-24T22:46:23.5135028Z\",\r\n \"activityId\": \"3a5f1e97-5b2b-411d-bb70-deb51e5e7739\"\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.RecoveryServices/vaults/PSTestRSV130a7cb9/backupJobs/258ef4a4-59b2-4226-a973-e91751bdff7d?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMTMwYTdjYjkvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YxMzBhN2NiOS9iYWNrdXBKb2JzLzI1OGVmNGE0LTU5YjItNDIyNi1hOTczLWU5MTc1MWJkZmY3ZD9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "3a5f1e97-5b2b-411d-bb70-deb51e5e7739" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.700.21.56803", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.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": [ - "88939410-1f13-4997-90d9-232b5a9d17e2" - ], - "x-ms-client-request-id": [ - "3a5f1e97-5b2b-411d-bb70-deb51e5e7739", - "3a5f1e97-5b2b-411d-bb70-deb51e5e7739" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "117" - ], - "x-ms-correlation-request-id": [ - "88939410-1f13-4997-90d9-232b5a9d17e2" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20220224T231843Z:88939410-1f13-4997-90d9-232b5a9d17e2" - ], - "Date": [ - "Thu, 24 Feb 2022 23:18:43 GMT" - ], - "Content-Length": [ - "971" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.RecoveryServices/vaults/PSTestRSV130a7cb9/backupJobs/258ef4a4-59b2-4226-a973-e91751bdff7d\",\r\n \"name\": \"258ef4a4-59b2-4226-a973-e91751bdff7d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg130a7cb9;pstestvm130a70\",\r\n \"duration\": \"PT32M20.0277318S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm130a70\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm130a70\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-24T22:46:23.5135028Z\",\r\n \"activityId\": \"3a5f1e97-5b2b-411d-bb70-deb51e5e7739\"\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.RecoveryServices/vaults/PSTestRSV130a7cb9/backupJobs/258ef4a4-59b2-4226-a973-e91751bdff7d?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMTMwYTdjYjkvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YxMzBhN2NiOS9iYWNrdXBKb2JzLzI1OGVmNGE0LTU5YjItNDIyNi1hOTczLWU5MTc1MWJkZmY3ZD9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "3a5f1e97-5b2b-411d-bb70-deb51e5e7739" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.700.21.56803", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.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": [ - "415099ad-7e77-4eda-bace-c0d69eea8b73" - ], - "x-ms-client-request-id": [ - "3a5f1e97-5b2b-411d-bb70-deb51e5e7739", - "3a5f1e97-5b2b-411d-bb70-deb51e5e7739" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "116" - ], - "x-ms-correlation-request-id": [ - "415099ad-7e77-4eda-bace-c0d69eea8b73" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20220224T231945Z:415099ad-7e77-4eda-bace-c0d69eea8b73" - ], - "Date": [ - "Thu, 24 Feb 2022 23:19:45 GMT" - ], - "Content-Length": [ - "971" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.RecoveryServices/vaults/PSTestRSV130a7cb9/backupJobs/258ef4a4-59b2-4226-a973-e91751bdff7d\",\r\n \"name\": \"258ef4a4-59b2-4226-a973-e91751bdff7d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg130a7cb9;pstestvm130a70\",\r\n \"duration\": \"PT33M21.9300226S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm130a70\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm130a70\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-24T22:46:23.5135028Z\",\r\n \"activityId\": \"3a5f1e97-5b2b-411d-bb70-deb51e5e7739\"\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.RecoveryServices/vaults/PSTestRSV130a7cb9/backupJobs/258ef4a4-59b2-4226-a973-e91751bdff7d?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMTMwYTdjYjkvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YxMzBhN2NiOS9iYWNrdXBKb2JzLzI1OGVmNGE0LTU5YjItNDIyNi1hOTczLWU5MTc1MWJkZmY3ZD9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "3a5f1e97-5b2b-411d-bb70-deb51e5e7739" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.700.21.56803", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.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": [ - "273010f8-72a4-45e0-8cb5-5653575c81ab" - ], - "x-ms-client-request-id": [ - "3a5f1e97-5b2b-411d-bb70-deb51e5e7739", - "3a5f1e97-5b2b-411d-bb70-deb51e5e7739" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "115" - ], - "x-ms-correlation-request-id": [ - "273010f8-72a4-45e0-8cb5-5653575c81ab" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20220224T232048Z:273010f8-72a4-45e0-8cb5-5653575c81ab" - ], - "Date": [ - "Thu, 24 Feb 2022 23:20:48 GMT" - ], - "Content-Length": [ - "971" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.RecoveryServices/vaults/PSTestRSV130a7cb9/backupJobs/258ef4a4-59b2-4226-a973-e91751bdff7d\",\r\n \"name\": \"258ef4a4-59b2-4226-a973-e91751bdff7d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg130a7cb9;pstestvm130a70\",\r\n \"duration\": \"PT34M23.9483498S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm130a70\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm130a70\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-24T22:46:23.5135028Z\",\r\n \"activityId\": \"3a5f1e97-5b2b-411d-bb70-deb51e5e7739\"\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.RecoveryServices/vaults/PSTestRSV130a7cb9/backupJobs/258ef4a4-59b2-4226-a973-e91751bdff7d?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMTMwYTdjYjkvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YxMzBhN2NiOS9iYWNrdXBKb2JzLzI1OGVmNGE0LTU5YjItNDIyNi1hOTczLWU5MTc1MWJkZmY3ZD9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "3a5f1e97-5b2b-411d-bb70-deb51e5e7739" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.700.21.56803", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.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": [ - "560b5e70-faf4-442a-a4c9-b63105f78d07" - ], - "x-ms-client-request-id": [ - "3a5f1e97-5b2b-411d-bb70-deb51e5e7739", - "3a5f1e97-5b2b-411d-bb70-deb51e5e7739" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "114" - ], - "x-ms-correlation-request-id": [ - "560b5e70-faf4-442a-a4c9-b63105f78d07" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20220224T232150Z:560b5e70-faf4-442a-a4c9-b63105f78d07" - ], - "Date": [ - "Thu, 24 Feb 2022 23:21:49 GMT" - ], - "Content-Length": [ - "971" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.RecoveryServices/vaults/PSTestRSV130a7cb9/backupJobs/258ef4a4-59b2-4226-a973-e91751bdff7d\",\r\n \"name\": \"258ef4a4-59b2-4226-a973-e91751bdff7d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg130a7cb9;pstestvm130a70\",\r\n \"duration\": \"PT35M26.4933768S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm130a70\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm130a70\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-24T22:46:23.5135028Z\",\r\n \"activityId\": \"3a5f1e97-5b2b-411d-bb70-deb51e5e7739\"\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.RecoveryServices/vaults/PSTestRSV130a7cb9/backupJobs/258ef4a4-59b2-4226-a973-e91751bdff7d?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMTMwYTdjYjkvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YxMzBhN2NiOS9iYWNrdXBKb2JzLzI1OGVmNGE0LTU5YjItNDIyNi1hOTczLWU5MTc1MWJkZmY3ZD9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "3a5f1e97-5b2b-411d-bb70-deb51e5e7739" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.700.21.56803", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.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": [ - "54516864-950c-4189-835e-7fe43c713731" - ], - "x-ms-client-request-id": [ - "3a5f1e97-5b2b-411d-bb70-deb51e5e7739", - "3a5f1e97-5b2b-411d-bb70-deb51e5e7739" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "113" - ], - "x-ms-correlation-request-id": [ - "54516864-950c-4189-835e-7fe43c713731" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20220224T232310Z:54516864-950c-4189-835e-7fe43c713731" - ], - "Date": [ - "Thu, 24 Feb 2022 23:23:10 GMT" - ], - "Content-Length": [ - "971" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.RecoveryServices/vaults/PSTestRSV130a7cb9/backupJobs/258ef4a4-59b2-4226-a973-e91751bdff7d\",\r\n \"name\": \"258ef4a4-59b2-4226-a973-e91751bdff7d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg130a7cb9;pstestvm130a70\",\r\n \"duration\": \"PT36M45.1964656S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm130a70\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm130a70\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-24T22:46:23.5135028Z\",\r\n \"activityId\": \"3a5f1e97-5b2b-411d-bb70-deb51e5e7739\"\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.RecoveryServices/vaults/PSTestRSV130a7cb9/backupJobs/258ef4a4-59b2-4226-a973-e91751bdff7d?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMTMwYTdjYjkvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YxMzBhN2NiOS9iYWNrdXBKb2JzLzI1OGVmNGE0LTU5YjItNDIyNi1hOTczLWU5MTc1MWJkZmY3ZD9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "3a5f1e97-5b2b-411d-bb70-deb51e5e7739" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.700.21.56803", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.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": [ - "3ecefe63-1f07-43b3-8d52-4c0fddf5e24c" - ], - "x-ms-client-request-id": [ - "3a5f1e97-5b2b-411d-bb70-deb51e5e7739", - "3a5f1e97-5b2b-411d-bb70-deb51e5e7739" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "112" - ], - "x-ms-correlation-request-id": [ - "3ecefe63-1f07-43b3-8d52-4c0fddf5e24c" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20220224T232420Z:3ecefe63-1f07-43b3-8d52-4c0fddf5e24c" - ], - "Date": [ - "Thu, 24 Feb 2022 23:24:19 GMT" - ], - "Content-Length": [ - "971" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.RecoveryServices/vaults/PSTestRSV130a7cb9/backupJobs/258ef4a4-59b2-4226-a973-e91751bdff7d\",\r\n \"name\": \"258ef4a4-59b2-4226-a973-e91751bdff7d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg130a7cb9;pstestvm130a70\",\r\n \"duration\": \"PT37M56.0141064S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm130a70\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm130a70\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-24T22:46:23.5135028Z\",\r\n \"activityId\": \"3a5f1e97-5b2b-411d-bb70-deb51e5e7739\"\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.RecoveryServices/vaults/PSTestRSV130a7cb9/backupJobs/258ef4a4-59b2-4226-a973-e91751bdff7d?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMTMwYTdjYjkvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YxMzBhN2NiOS9iYWNrdXBKb2JzLzI1OGVmNGE0LTU5YjItNDIyNi1hOTczLWU5MTc1MWJkZmY3ZD9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "3a5f1e97-5b2b-411d-bb70-deb51e5e7739" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.700.21.56803", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.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": [ - "e56d91aa-9d20-4e61-9e71-094065b9897a" - ], - "x-ms-client-request-id": [ - "3a5f1e97-5b2b-411d-bb70-deb51e5e7739", - "3a5f1e97-5b2b-411d-bb70-deb51e5e7739" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "111" - ], - "x-ms-correlation-request-id": [ - "e56d91aa-9d20-4e61-9e71-094065b9897a" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20220224T232522Z:e56d91aa-9d20-4e61-9e71-094065b9897a" - ], - "Date": [ - "Thu, 24 Feb 2022 23:25:22 GMT" - ], - "Content-Length": [ - "971" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.RecoveryServices/vaults/PSTestRSV130a7cb9/backupJobs/258ef4a4-59b2-4226-a973-e91751bdff7d\",\r\n \"name\": \"258ef4a4-59b2-4226-a973-e91751bdff7d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg130a7cb9;pstestvm130a70\",\r\n \"duration\": \"PT38M58.0366968S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm130a70\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm130a70\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-24T22:46:23.5135028Z\",\r\n \"activityId\": \"3a5f1e97-5b2b-411d-bb70-deb51e5e7739\"\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.RecoveryServices/vaults/PSTestRSV130a7cb9/backupJobs/258ef4a4-59b2-4226-a973-e91751bdff7d?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMTMwYTdjYjkvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YxMzBhN2NiOS9iYWNrdXBKb2JzLzI1OGVmNGE0LTU5YjItNDIyNi1hOTczLWU5MTc1MWJkZmY3ZD9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "3a5f1e97-5b2b-411d-bb70-deb51e5e7739" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.700.21.56803", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.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": [ - "c081eac3-5b3c-49dd-a4fc-d86acd9df17f" - ], - "x-ms-client-request-id": [ - "3a5f1e97-5b2b-411d-bb70-deb51e5e7739", - "3a5f1e97-5b2b-411d-bb70-deb51e5e7739" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "110" - ], - "x-ms-correlation-request-id": [ - "c081eac3-5b3c-49dd-a4fc-d86acd9df17f" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20220224T232633Z:c081eac3-5b3c-49dd-a4fc-d86acd9df17f" - ], - "Date": [ - "Thu, 24 Feb 2022 23:26:33 GMT" - ], - "Content-Length": [ - "969" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.RecoveryServices/vaults/PSTestRSV130a7cb9/backupJobs/258ef4a4-59b2-4226-a973-e91751bdff7d\",\r\n \"name\": \"258ef4a4-59b2-4226-a973-e91751bdff7d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg130a7cb9;pstestvm130a70\",\r\n \"duration\": \"PT40M9.743999S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm130a70\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm130a70\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-24T22:46:23.5135028Z\",\r\n \"activityId\": \"3a5f1e97-5b2b-411d-bb70-deb51e5e7739\"\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.RecoveryServices/vaults/PSTestRSV130a7cb9/backupJobs/258ef4a4-59b2-4226-a973-e91751bdff7d?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMTMwYTdjYjkvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YxMzBhN2NiOS9iYWNrdXBKb2JzLzI1OGVmNGE0LTU5YjItNDIyNi1hOTczLWU5MTc1MWJkZmY3ZD9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "3a5f1e97-5b2b-411d-bb70-deb51e5e7739" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.700.21.56803", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.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": [ - "96fc02f2-cb32-40a4-8670-213f6f72d5e0" - ], - "x-ms-client-request-id": [ - "3a5f1e97-5b2b-411d-bb70-deb51e5e7739", - "3a5f1e97-5b2b-411d-bb70-deb51e5e7739" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "109" - ], - "x-ms-correlation-request-id": [ - "96fc02f2-cb32-40a4-8670-213f6f72d5e0" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20220224T232735Z:96fc02f2-cb32-40a4-8670-213f6f72d5e0" - ], - "Date": [ - "Thu, 24 Feb 2022 23:27:35 GMT" - ], - "Content-Length": [ - "971" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.RecoveryServices/vaults/PSTestRSV130a7cb9/backupJobs/258ef4a4-59b2-4226-a973-e91751bdff7d\",\r\n \"name\": \"258ef4a4-59b2-4226-a973-e91751bdff7d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg130a7cb9;pstestvm130a70\",\r\n \"duration\": \"PT41M12.0627511S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm130a70\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm130a70\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-24T22:46:23.5135028Z\",\r\n \"activityId\": \"3a5f1e97-5b2b-411d-bb70-deb51e5e7739\"\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.RecoveryServices/vaults/PSTestRSV130a7cb9/backupJobs/258ef4a4-59b2-4226-a973-e91751bdff7d?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMTMwYTdjYjkvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YxMzBhN2NiOS9iYWNrdXBKb2JzLzI1OGVmNGE0LTU5YjItNDIyNi1hOTczLWU5MTc1MWJkZmY3ZD9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "3a5f1e97-5b2b-411d-bb70-deb51e5e7739" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.700.21.56803", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.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": [ - "7c9491eb-cf89-4744-9345-d13e0d49e398" - ], - "x-ms-client-request-id": [ - "3a5f1e97-5b2b-411d-bb70-deb51e5e7739", - "3a5f1e97-5b2b-411d-bb70-deb51e5e7739" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "108" - ], - "x-ms-correlation-request-id": [ - "7c9491eb-cf89-4744-9345-d13e0d49e398" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20220224T232837Z:7c9491eb-cf89-4744-9345-d13e0d49e398" - ], - "Date": [ - "Thu, 24 Feb 2022 23:28:36 GMT" - ], - "Content-Length": [ - "971" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.RecoveryServices/vaults/PSTestRSV130a7cb9/backupJobs/258ef4a4-59b2-4226-a973-e91751bdff7d\",\r\n \"name\": \"258ef4a4-59b2-4226-a973-e91751bdff7d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg130a7cb9;pstestvm130a70\",\r\n \"duration\": \"PT42M13.7181962S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm130a70\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm130a70\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-24T22:46:23.5135028Z\",\r\n \"activityId\": \"3a5f1e97-5b2b-411d-bb70-deb51e5e7739\"\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.RecoveryServices/vaults/PSTestRSV130a7cb9/backupJobs/258ef4a4-59b2-4226-a973-e91751bdff7d?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMTMwYTdjYjkvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YxMzBhN2NiOS9iYWNrdXBKb2JzLzI1OGVmNGE0LTU5YjItNDIyNi1hOTczLWU5MTc1MWJkZmY3ZD9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "3a5f1e97-5b2b-411d-bb70-deb51e5e7739" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.700.21.56803", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.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": [ - "df679dd3-35a8-4d40-9bad-f2afb7e9097e" - ], - "x-ms-client-request-id": [ - "3a5f1e97-5b2b-411d-bb70-deb51e5e7739", - "3a5f1e97-5b2b-411d-bb70-deb51e5e7739" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "107" - ], - "x-ms-correlation-request-id": [ - "df679dd3-35a8-4d40-9bad-f2afb7e9097e" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20220224T232953Z:df679dd3-35a8-4d40-9bad-f2afb7e9097e" - ], - "Date": [ - "Thu, 24 Feb 2022 23:29:52 GMT" - ], - "Content-Length": [ - "971" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.RecoveryServices/vaults/PSTestRSV130a7cb9/backupJobs/258ef4a4-59b2-4226-a973-e91751bdff7d\",\r\n \"name\": \"258ef4a4-59b2-4226-a973-e91751bdff7d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg130a7cb9;pstestvm130a70\",\r\n \"duration\": \"PT43M29.6034793S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm130a70\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm130a70\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-24T22:46:23.5135028Z\",\r\n \"activityId\": \"3a5f1e97-5b2b-411d-bb70-deb51e5e7739\"\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.RecoveryServices/vaults/PSTestRSV130a7cb9/backupJobs/258ef4a4-59b2-4226-a973-e91751bdff7d?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMTMwYTdjYjkvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YxMzBhN2NiOS9iYWNrdXBKb2JzLzI1OGVmNGE0LTU5YjItNDIyNi1hOTczLWU5MTc1MWJkZmY3ZD9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "3a5f1e97-5b2b-411d-bb70-deb51e5e7739" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.700.21.56803", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.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": [ - "f6eab2c7-8e45-4e30-a528-5bc09a4dd77f" - ], - "x-ms-client-request-id": [ - "3a5f1e97-5b2b-411d-bb70-deb51e5e7739", - "3a5f1e97-5b2b-411d-bb70-deb51e5e7739" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "106" - ], - "x-ms-correlation-request-id": [ - "f6eab2c7-8e45-4e30-a528-5bc09a4dd77f" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20220224T233105Z:f6eab2c7-8e45-4e30-a528-5bc09a4dd77f" - ], - "Date": [ - "Thu, 24 Feb 2022 23:31:05 GMT" - ], - "Content-Length": [ - "971" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.RecoveryServices/vaults/PSTestRSV130a7cb9/backupJobs/258ef4a4-59b2-4226-a973-e91751bdff7d\",\r\n \"name\": \"258ef4a4-59b2-4226-a973-e91751bdff7d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg130a7cb9;pstestvm130a70\",\r\n \"duration\": \"PT44M40.3694638S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm130a70\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm130a70\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-24T22:46:23.5135028Z\",\r\n \"activityId\": \"3a5f1e97-5b2b-411d-bb70-deb51e5e7739\"\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.RecoveryServices/vaults/PSTestRSV130a7cb9/backupJobs/258ef4a4-59b2-4226-a973-e91751bdff7d?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMTMwYTdjYjkvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YxMzBhN2NiOS9iYWNrdXBKb2JzLzI1OGVmNGE0LTU5YjItNDIyNi1hOTczLWU5MTc1MWJkZmY3ZD9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "3a5f1e97-5b2b-411d-bb70-deb51e5e7739" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.700.21.56803", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.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": [ - "f4eefce5-81be-499b-8ecc-33d23f2bfbaf" - ], - "x-ms-client-request-id": [ - "3a5f1e97-5b2b-411d-bb70-deb51e5e7739", - "3a5f1e97-5b2b-411d-bb70-deb51e5e7739" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "105" - ], - "x-ms-correlation-request-id": [ - "f4eefce5-81be-499b-8ecc-33d23f2bfbaf" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20220224T233209Z:f4eefce5-81be-499b-8ecc-33d23f2bfbaf" - ], - "Date": [ - "Thu, 24 Feb 2022 23:32:08 GMT" - ], - "Content-Length": [ - "971" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.RecoveryServices/vaults/PSTestRSV130a7cb9/backupJobs/258ef4a4-59b2-4226-a973-e91751bdff7d\",\r\n \"name\": \"258ef4a4-59b2-4226-a973-e91751bdff7d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg130a7cb9;pstestvm130a70\",\r\n \"duration\": \"PT45M44.4577876S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm130a70\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm130a70\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-24T22:46:23.5135028Z\",\r\n \"activityId\": \"3a5f1e97-5b2b-411d-bb70-deb51e5e7739\"\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.RecoveryServices/vaults/PSTestRSV130a7cb9/backupJobs/258ef4a4-59b2-4226-a973-e91751bdff7d?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMTMwYTdjYjkvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YxMzBhN2NiOS9iYWNrdXBKb2JzLzI1OGVmNGE0LTU5YjItNDIyNi1hOTczLWU5MTc1MWJkZmY3ZD9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "3a5f1e97-5b2b-411d-bb70-deb51e5e7739" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.700.21.56803", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.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": [ - "f1d27577-acb9-42c3-8dc3-82d657e869ef" - ], - "x-ms-client-request-id": [ - "3a5f1e97-5b2b-411d-bb70-deb51e5e7739", - "3a5f1e97-5b2b-411d-bb70-deb51e5e7739" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "104" - ], - "x-ms-correlation-request-id": [ - "f1d27577-acb9-42c3-8dc3-82d657e869ef" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20220224T233310Z:f1d27577-acb9-42c3-8dc3-82d657e869ef" - ], - "Date": [ - "Thu, 24 Feb 2022 23:33:10 GMT" - ], - "Content-Length": [ - "971" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.RecoveryServices/vaults/PSTestRSV130a7cb9/backupJobs/258ef4a4-59b2-4226-a973-e91751bdff7d\",\r\n \"name\": \"258ef4a4-59b2-4226-a973-e91751bdff7d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg130a7cb9;pstestvm130a70\",\r\n \"duration\": \"PT46M46.8075792S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm130a70\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm130a70\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-24T22:46:23.5135028Z\",\r\n \"activityId\": \"3a5f1e97-5b2b-411d-bb70-deb51e5e7739\"\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.RecoveryServices/vaults/PSTestRSV130a7cb9/backupJobs/258ef4a4-59b2-4226-a973-e91751bdff7d?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMTMwYTdjYjkvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YxMzBhN2NiOS9iYWNrdXBKb2JzLzI1OGVmNGE0LTU5YjItNDIyNi1hOTczLWU5MTc1MWJkZmY3ZD9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "3a5f1e97-5b2b-411d-bb70-deb51e5e7739" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.700.21.56803", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.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": [ - "a0ffb7d9-d2aa-435c-a31f-55b6a096f66f" - ], - "x-ms-client-request-id": [ - "3a5f1e97-5b2b-411d-bb70-deb51e5e7739", - "3a5f1e97-5b2b-411d-bb70-deb51e5e7739" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "103" - ], - "x-ms-correlation-request-id": [ - "a0ffb7d9-d2aa-435c-a31f-55b6a096f66f" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20220224T233412Z:a0ffb7d9-d2aa-435c-a31f-55b6a096f66f" - ], - "Date": [ - "Thu, 24 Feb 2022 23:34:12 GMT" - ], - "Content-Length": [ - "971" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.RecoveryServices/vaults/PSTestRSV130a7cb9/backupJobs/258ef4a4-59b2-4226-a973-e91751bdff7d\",\r\n \"name\": \"258ef4a4-59b2-4226-a973-e91751bdff7d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg130a7cb9;pstestvm130a70\",\r\n \"duration\": \"PT47M48.7336442S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm130a70\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm130a70\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-24T22:46:23.5135028Z\",\r\n \"activityId\": \"3a5f1e97-5b2b-411d-bb70-deb51e5e7739\"\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.RecoveryServices/vaults/PSTestRSV130a7cb9/backupJobs/258ef4a4-59b2-4226-a973-e91751bdff7d?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMTMwYTdjYjkvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YxMzBhN2NiOS9iYWNrdXBKb2JzLzI1OGVmNGE0LTU5YjItNDIyNi1hOTczLWU5MTc1MWJkZmY3ZD9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "3a5f1e97-5b2b-411d-bb70-deb51e5e7739" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.700.21.56803", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.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": [ - "d836437e-bffb-4287-a268-8c9c548f0098" - ], - "x-ms-client-request-id": [ - "3a5f1e97-5b2b-411d-bb70-deb51e5e7739", - "3a5f1e97-5b2b-411d-bb70-deb51e5e7739" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "102" - ], - "x-ms-correlation-request-id": [ - "d836437e-bffb-4287-a268-8c9c548f0098" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20220224T233524Z:d836437e-bffb-4287-a268-8c9c548f0098" - ], - "Date": [ - "Thu, 24 Feb 2022 23:35:24 GMT" - ], - "Content-Length": [ - "970" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.RecoveryServices/vaults/PSTestRSV130a7cb9/backupJobs/258ef4a4-59b2-4226-a973-e91751bdff7d\",\r\n \"name\": \"258ef4a4-59b2-4226-a973-e91751bdff7d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg130a7cb9;pstestvm130a70\",\r\n \"duration\": \"PT49M0.1926374S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm130a70\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm130a70\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-24T22:46:23.5135028Z\",\r\n \"activityId\": \"3a5f1e97-5b2b-411d-bb70-deb51e5e7739\"\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.RecoveryServices/vaults/PSTestRSV130a7cb9/backupJobs/258ef4a4-59b2-4226-a973-e91751bdff7d?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMTMwYTdjYjkvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YxMzBhN2NiOS9iYWNrdXBKb2JzLzI1OGVmNGE0LTU5YjItNDIyNi1hOTczLWU5MTc1MWJkZmY3ZD9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "3a5f1e97-5b2b-411d-bb70-deb51e5e7739" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.700.21.56803", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.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": [ - "f454d1ab-f5bd-40a9-82ec-880fa7b85e84" - ], - "x-ms-client-request-id": [ - "3a5f1e97-5b2b-411d-bb70-deb51e5e7739", - "3a5f1e97-5b2b-411d-bb70-deb51e5e7739" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "101" - ], - "x-ms-correlation-request-id": [ - "f454d1ab-f5bd-40a9-82ec-880fa7b85e84" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20220224T233626Z:f454d1ab-f5bd-40a9-82ec-880fa7b85e84" - ], - "Date": [ - "Thu, 24 Feb 2022 23:36:25 GMT" - ], - "Content-Length": [ - "969" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.RecoveryServices/vaults/PSTestRSV130a7cb9/backupJobs/258ef4a4-59b2-4226-a973-e91751bdff7d\",\r\n \"name\": \"258ef4a4-59b2-4226-a973-e91751bdff7d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg130a7cb9;pstestvm130a70\",\r\n \"duration\": \"PT50M2.197612S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm130a70\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm130a70\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-24T22:46:23.5135028Z\",\r\n \"activityId\": \"3a5f1e97-5b2b-411d-bb70-deb51e5e7739\"\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.RecoveryServices/vaults/PSTestRSV130a7cb9/backupJobs/258ef4a4-59b2-4226-a973-e91751bdff7d?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMTMwYTdjYjkvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YxMzBhN2NiOS9iYWNrdXBKb2JzLzI1OGVmNGE0LTU5YjItNDIyNi1hOTczLWU5MTc1MWJkZmY3ZD9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "3a5f1e97-5b2b-411d-bb70-deb51e5e7739" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.700.21.56803", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.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": [ - "61114d36-c82d-41c3-8854-966c42cc4f2b" - ], - "x-ms-client-request-id": [ - "3a5f1e97-5b2b-411d-bb70-deb51e5e7739", - "3a5f1e97-5b2b-411d-bb70-deb51e5e7739" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "100" - ], - "x-ms-correlation-request-id": [ - "61114d36-c82d-41c3-8854-966c42cc4f2b" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20220224T233728Z:61114d36-c82d-41c3-8854-966c42cc4f2b" - ], - "Date": [ - "Thu, 24 Feb 2022 23:37:27 GMT" - ], - "Content-Length": [ - "970" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.RecoveryServices/vaults/PSTestRSV130a7cb9/backupJobs/258ef4a4-59b2-4226-a973-e91751bdff7d\",\r\n \"name\": \"258ef4a4-59b2-4226-a973-e91751bdff7d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg130a7cb9;pstestvm130a70\",\r\n \"duration\": \"PT51M4.1078257S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm130a70\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm130a70\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-24T22:46:23.5135028Z\",\r\n \"activityId\": \"3a5f1e97-5b2b-411d-bb70-deb51e5e7739\"\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.RecoveryServices/vaults/PSTestRSV130a7cb9/backupJobs/258ef4a4-59b2-4226-a973-e91751bdff7d?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMTMwYTdjYjkvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YxMzBhN2NiOS9iYWNrdXBKb2JzLzI1OGVmNGE0LTU5YjItNDIyNi1hOTczLWU5MTc1MWJkZmY3ZD9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "3a5f1e97-5b2b-411d-bb70-deb51e5e7739" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.700.21.56803", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.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": [ - "09a63495-4662-4e0f-b5e4-8e62bd4a9e98" - ], - "x-ms-client-request-id": [ - "3a5f1e97-5b2b-411d-bb70-deb51e5e7739", - "3a5f1e97-5b2b-411d-bb70-deb51e5e7739" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "99" - ], - "x-ms-correlation-request-id": [ - "09a63495-4662-4e0f-b5e4-8e62bd4a9e98" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20220224T233829Z:09a63495-4662-4e0f-b5e4-8e62bd4a9e98" - ], - "Date": [ - "Thu, 24 Feb 2022 23:38:29 GMT" - ], - "Content-Length": [ - "1035" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.RecoveryServices/vaults/PSTestRSV130a7cb9/backupJobs/258ef4a4-59b2-4226-a973-e91751bdff7d\",\r\n \"name\": \"258ef4a4-59b2-4226-a973-e91751bdff7d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg130a7cb9;pstestvm130a70\",\r\n \"duration\": \"PT51M12.9029117S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm130a70\",\r\n \"Backup Size\": \"10214 MB\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm130a70\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-02-24T22:46:23.5135028Z\",\r\n \"endTime\": \"2022-02-24T23:37:36.4164145Z\",\r\n \"activityId\": \"3a5f1e97-5b2b-411d-bb70-deb51e5e7739\"\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.RecoveryServices/vaults?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMTMwYTdjYjkvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cz9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "7b142d18-d2fb-4d53-bbfb-f1bbf36e6722" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.700.21.56803", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesClient/4.3.2.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "x-ms-request-id": [ - "3cc35bf9-8a2a-4377-91ad-058025334851" - ], - "x-ms-client-request-id": [ - "7b142d18-d2fb-4d53-bbfb-f1bbf36e6722" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" - ], - "x-ms-correlation-request-id": [ - "3cc35bf9-8a2a-4377-91ad-058025334851" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20220224T233831Z:3cc35bf9-8a2a-4377-91ad-058025334851" - ], - "Date": [ - "Thu, 24 Feb 2022 23:38:30 GMT" - ], - "Content-Length": [ - "478" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"PSTestRSV130a7cb9\",\r\n \"etag\": \"W/\\\"datetime'2022-02-24T22%3A40%3A12.8243278Z'\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateEndpointStateForBackup\": \"None\",\r\n \"privateEndpointStateForSiteRecovery\": \"None\"\r\n },\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.RecoveryServices/vaults/PSTestRSV130a7cb9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.RecoveryServices/vaults/PSTestRSV130a7cb9/backupProtectionContainers?$filter=backupManagementType%20eq%20'AzureIaasVM'%20and%20status%20eq%20'Registered'&api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMTMwYTdjYjkvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YxMzBhN2NiOS9iYWNrdXBQcm90ZWN0aW9uQ29udGFpbmVycz8kZmlsdGVyPWJhY2t1cE1hbmFnZW1lbnRUeXBlJTIwZXElMjAnQXp1cmVJYWFzVk0nJTIwYW5kJTIwc3RhdHVzJTIwZXElMjAnUmVnaXN0ZXJlZCcmYXBpLXZlcnNpb249MjAyMS0xMC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "75559f93-c97c-4421-b421-2f333399e862" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.700.21.56803", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "x-ms-request-id": [ - "c1553990-cc7c-4b42-9614-9ca16c67c4bc" - ], - "x-ms-client-request-id": [ - "75559f93-c97c-4421-b421-2f333399e862", - "75559f93-c97c-4421-b421-2f333399e862" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "147" - ], - "x-ms-correlation-request-id": [ - "c1553990-cc7c-4b42-9614-9ca16c67c4bc" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20220224T233832Z:c1553990-cc7c-4b42-9614-9ca16c67c4bc" - ], - "Date": [ - "Thu, 24 Feb 2022 23:38:31 GMT" - ], - "Content-Length": [ - "914" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.RecoveryServices/vaults/PSTestRSV130a7cb9/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrg130a7cb9;pstestvm130a70\",\r\n \"name\": \"IaasVMContainer;iaasvmcontainerv2;pstestrg130a7cb9;pstestvm130a70\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers\",\r\n \"properties\": {\r\n \"virtualMachineId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.Compute/virtualMachines/PSTestVM130a70\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"resourceGroup\": \"PSTestRG130a7cb9\",\r\n \"friendlyName\": \"PSTestVM130a70\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.RecoveryServices/vaults/PSTestRSV130a7cb9/backupFabrics/Azure/protectionContainers/IaasVMContainer%3Biaasvmcontainerv2%3Bpstestrg130a7cb9%3Bpstestvm130a70/protectedItems/VM%3Biaasvmcontainerv2%3Bpstestrg130a7cb9%3Bpstestvm130a70/recoveryPoints?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMTMwYTdjYjkvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YxMzBhN2NiOS9iYWNrdXBGYWJyaWNzL0F6dXJlL3Byb3RlY3Rpb25Db250YWluZXJzL0lhYXNWTUNvbnRhaW5lciUzQmlhYXN2bWNvbnRhaW5lcnYyJTNCcHN0ZXN0cmcxMzBhN2NiOSUzQnBzdGVzdHZtMTMwYTcwL3Byb3RlY3RlZEl0ZW1zL1ZNJTNCaWFhc3ZtY29udGFpbmVydjIlM0Jwc3Rlc3RyZzEzMGE3Y2I5JTNCcHN0ZXN0dm0xMzBhNzAvcmVjb3ZlcnlQb2ludHM/YXBpLXZlcnNpb249MjAyMS0xMC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "d9df1ac5-72d6-4e52-a0df-f1e828b3a046" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.700.21.56803", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "x-ms-request-id": [ - "6c9a0157-5c18-43b7-a25b-d042d7dd966a" - ], - "x-ms-client-request-id": [ - "d9df1ac5-72d6-4e52-a0df-f1e828b3a046", - "d9df1ac5-72d6-4e52-a0df-f1e828b3a046" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "149" - ], - "x-ms-correlation-request-id": [ - "6c9a0157-5c18-43b7-a25b-d042d7dd966a" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20220224T233833Z:6c9a0157-5c18-43b7-a25b-d042d7dd966a" - ], - "Date": [ - "Thu, 24 Feb 2022 23:38:32 GMT" - ], - "Content-Length": [ - "1259" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.RecoveryServices/vaults/PSTestRSV130a7cb9/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrg130a7cb9;pstestvm130a70/protectedItems/VM;iaasvmcontainerv2;pstestrg130a7cb9;pstestvm130a70/recoveryPoints/117825689876333\",\r\n \"name\": \"117825689876333\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints\",\r\n \"properties\": {\r\n \"objectType\": \"IaasVMRecoveryPoint\",\r\n \"recoveryPointType\": \"AppConsistent\",\r\n \"recoveryPointTime\": \"2022-02-24T22:46:27.0405682Z\",\r\n \"recoveryPointAdditionalInfo\": \"\",\r\n \"sourceVMStorageType\": \"NormalStorage\",\r\n \"isSourceVMEncrypted\": false,\r\n \"isInstantIlrSessionActive\": false,\r\n \"recoveryPointTierDetails\": [\r\n {\r\n \"type\": 1,\r\n \"status\": 1\r\n },\r\n {\r\n \"type\": 2,\r\n \"status\": 1\r\n }\r\n ],\r\n \"isManagedVirtualMachine\": true,\r\n \"virtualMachineSize\": \"Standard_D1_v2\",\r\n \"originalStorageAccountOption\": false,\r\n \"osType\": \"Windows\",\r\n \"recoveryPointMoveReadinessInfo\": {\r\n \"ArchivedRP\": {\r\n \"isReadyForMove\": false,\r\n \"additionalInfo\": \"Recovery point cannot be moved to Archive tier due to insufficient retention duration specified in policy.. Update policy on the protected item with appropriate retention setting and try again.\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.RecoveryServices/vaults/PSTestRSV130a7cb9/backupFabrics/Azure/protectionContainers/IaasVMContainer%3Biaasvmcontainerv2%3Bpstestrg130a7cb9%3Bpstestvm130a70/protectedItems/VM%3Biaasvmcontainerv2%3Bpstestrg130a7cb9%3Bpstestvm130a70?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMTMwYTdjYjkvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YxMzBhN2NiOS9iYWNrdXBGYWJyaWNzL0F6dXJlL3Byb3RlY3Rpb25Db250YWluZXJzL0lhYXNWTUNvbnRhaW5lciUzQmlhYXN2bWNvbnRhaW5lcnYyJTNCcHN0ZXN0cmcxMzBhN2NiOSUzQnBzdGVzdHZtMTMwYTcwL3Byb3RlY3RlZEl0ZW1zL1ZNJTNCaWFhc3ZtY29udGFpbmVydjIlM0Jwc3Rlc3RyZzEzMGE3Y2I5JTNCcHN0ZXN0dm0xMzBhNzA/YXBpLXZlcnNpb249MjAyMS0xMC0wMQ==", - "RequestMethod": "DELETE", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "d9df1ac5-72d6-4e52-a0df-f1e828b3a046" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.700.21.56803", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.RecoveryServices/vaults/PSTestRSV130a7cb9/backupOperationResults/1fa16ce4-767f-4e42-9f87-4ccfb8fa7346?api-version=2021-10-01" - ], - "Retry-After": [ - "60" - ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.RecoveryServices/vaults/PSTestRSV130a7cb9/backupOperations/1fa16ce4-767f-4e42-9f87-4ccfb8fa7346?api-version=2021-10-01" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "x-ms-request-id": [ - "b165b35a-9b74-4a08-9538-acf8615eab29" - ], - "x-ms-client-request-id": [ - "d9df1ac5-72d6-4e52-a0df-f1e828b3a046", - "d9df1ac5-72d6-4e52-a0df-f1e828b3a046" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-deletes": [ - "14999" - ], - "x-ms-correlation-request-id": [ - "b165b35a-9b74-4a08-9538-acf8615eab29" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20220224T233834Z:b165b35a-9b74-4a08-9538-acf8615eab29" - ], - "Date": [ - "Thu, 24 Feb 2022 23:38:34 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.RecoveryServices/vaults/PSTestRSV130a7cb9/backupOperations/1fa16ce4-767f-4e42-9f87-4ccfb8fa7346?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMTMwYTdjYjkvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YxMzBhN2NiOS9iYWNrdXBPcGVyYXRpb25zLzFmYTE2Y2U0LTc2N2YtNGU0Mi05Zjg3LTRjY2ZiOGZhNzM0Nj9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "d9df1ac5-72d6-4e52-a0df-f1e828b3a046" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.700.21.56803", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "x-ms-request-id": [ - "84ac1ebc-2365-4412-ab32-f0d46e6a110c" - ], - "x-ms-client-request-id": [ - "d9df1ac5-72d6-4e52-a0df-f1e828b3a046", - "d9df1ac5-72d6-4e52-a0df-f1e828b3a046" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "143" - ], - "x-ms-correlation-request-id": [ - "84ac1ebc-2365-4412-ab32-f0d46e6a110c" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20220224T233835Z:84ac1ebc-2365-4412-ab32-f0d46e6a110c" - ], - "Date": [ - "Thu, 24 Feb 2022 23:38:34 GMT" - ], - "Content-Length": [ - "187" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"1fa16ce4-767f-4e42-9f87-4ccfb8fa7346\",\r\n \"name\": \"1fa16ce4-767f-4e42-9f87-4ccfb8fa7346\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-24T23:38:34.720177Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.RecoveryServices/vaults/PSTestRSV130a7cb9/backupOperations/1fa16ce4-767f-4e42-9f87-4ccfb8fa7346?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMTMwYTdjYjkvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YxMzBhN2NiOS9iYWNrdXBPcGVyYXRpb25zLzFmYTE2Y2U0LTc2N2YtNGU0Mi05Zjg3LTRjY2ZiOGZhNzM0Nj9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "d9df1ac5-72d6-4e52-a0df-f1e828b3a046" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.700.21.56803", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "x-ms-request-id": [ - "505ce523-e50f-4063-b833-7e931d818ac5" - ], - "x-ms-client-request-id": [ - "d9df1ac5-72d6-4e52-a0df-f1e828b3a046", - "d9df1ac5-72d6-4e52-a0df-f1e828b3a046" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "142" - ], - "x-ms-correlation-request-id": [ - "505ce523-e50f-4063-b833-7e931d818ac5" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20220224T233846Z:505ce523-e50f-4063-b833-7e931d818ac5" - ], - "Date": [ - "Thu, 24 Feb 2022 23:38:45 GMT" - ], - "Content-Length": [ - "187" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"1fa16ce4-767f-4e42-9f87-4ccfb8fa7346\",\r\n \"name\": \"1fa16ce4-767f-4e42-9f87-4ccfb8fa7346\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-24T23:38:34.720177Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.RecoveryServices/vaults/PSTestRSV130a7cb9/backupOperations/1fa16ce4-767f-4e42-9f87-4ccfb8fa7346?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMTMwYTdjYjkvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YxMzBhN2NiOS9iYWNrdXBPcGVyYXRpb25zLzFmYTE2Y2U0LTc2N2YtNGU0Mi05Zjg3LTRjY2ZiOGZhNzM0Nj9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "d9df1ac5-72d6-4e52-a0df-f1e828b3a046" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.700.21.56803", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "x-ms-request-id": [ - "957bc1ca-a600-4be9-a7b5-48802f087a09" - ], - "x-ms-client-request-id": [ - "d9df1ac5-72d6-4e52-a0df-f1e828b3a046", - "d9df1ac5-72d6-4e52-a0df-f1e828b3a046" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "141" - ], - "x-ms-correlation-request-id": [ - "957bc1ca-a600-4be9-a7b5-48802f087a09" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20220224T233856Z:957bc1ca-a600-4be9-a7b5-48802f087a09" - ], - "Date": [ - "Thu, 24 Feb 2022 23:38:56 GMT" - ], - "Content-Length": [ - "187" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"1fa16ce4-767f-4e42-9f87-4ccfb8fa7346\",\r\n \"name\": \"1fa16ce4-767f-4e42-9f87-4ccfb8fa7346\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-24T23:38:34.720177Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.RecoveryServices/vaults/PSTestRSV130a7cb9/backupOperations/1fa16ce4-767f-4e42-9f87-4ccfb8fa7346?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMTMwYTdjYjkvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YxMzBhN2NiOS9iYWNrdXBPcGVyYXRpb25zLzFmYTE2Y2U0LTc2N2YtNGU0Mi05Zjg3LTRjY2ZiOGZhNzM0Nj9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "d9df1ac5-72d6-4e52-a0df-f1e828b3a046" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.700.21.56803", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "x-ms-request-id": [ - "5d8ef1cf-de29-4e00-920c-9c03874821bb" - ], - "x-ms-client-request-id": [ - "d9df1ac5-72d6-4e52-a0df-f1e828b3a046", - "d9df1ac5-72d6-4e52-a0df-f1e828b3a046" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "140" - ], - "x-ms-correlation-request-id": [ - "5d8ef1cf-de29-4e00-920c-9c03874821bb" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20220224T233907Z:5d8ef1cf-de29-4e00-920c-9c03874821bb" - ], - "Date": [ - "Thu, 24 Feb 2022 23:39:06 GMT" - ], - "Content-Length": [ - "187" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"1fa16ce4-767f-4e42-9f87-4ccfb8fa7346\",\r\n \"name\": \"1fa16ce4-767f-4e42-9f87-4ccfb8fa7346\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-24T23:38:34.720177Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.RecoveryServices/vaults/PSTestRSV130a7cb9/backupOperations/1fa16ce4-767f-4e42-9f87-4ccfb8fa7346?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMTMwYTdjYjkvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YxMzBhN2NiOS9iYWNrdXBPcGVyYXRpb25zLzFmYTE2Y2U0LTc2N2YtNGU0Mi05Zjg3LTRjY2ZiOGZhNzM0Nj9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "d9df1ac5-72d6-4e52-a0df-f1e828b3a046" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.700.21.56803", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "x-ms-request-id": [ - "972190d9-f859-4237-b264-f558356e8785" - ], - "x-ms-client-request-id": [ - "d9df1ac5-72d6-4e52-a0df-f1e828b3a046", - "d9df1ac5-72d6-4e52-a0df-f1e828b3a046" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "139" - ], - "x-ms-correlation-request-id": [ - "972190d9-f859-4237-b264-f558356e8785" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20220224T233917Z:972190d9-f859-4237-b264-f558356e8785" - ], - "Date": [ - "Thu, 24 Feb 2022 23:39:17 GMT" - ], - "Content-Length": [ - "187" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"1fa16ce4-767f-4e42-9f87-4ccfb8fa7346\",\r\n \"name\": \"1fa16ce4-767f-4e42-9f87-4ccfb8fa7346\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-24T23:38:34.720177Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.RecoveryServices/vaults/PSTestRSV130a7cb9/backupOperations/1fa16ce4-767f-4e42-9f87-4ccfb8fa7346?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMTMwYTdjYjkvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YxMzBhN2NiOS9iYWNrdXBPcGVyYXRpb25zLzFmYTE2Y2U0LTc2N2YtNGU0Mi05Zjg3LTRjY2ZiOGZhNzM0Nj9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "d9df1ac5-72d6-4e52-a0df-f1e828b3a046" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.700.21.56803", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "x-ms-request-id": [ - "03c45379-9db3-4462-8baf-eebf3ca5a8d0" - ], - "x-ms-client-request-id": [ - "d9df1ac5-72d6-4e52-a0df-f1e828b3a046", - "d9df1ac5-72d6-4e52-a0df-f1e828b3a046" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "138" - ], - "x-ms-correlation-request-id": [ - "03c45379-9db3-4462-8baf-eebf3ca5a8d0" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20220224T233928Z:03c45379-9db3-4462-8baf-eebf3ca5a8d0" - ], - "Date": [ - "Thu, 24 Feb 2022 23:39:27 GMT" - ], - "Content-Length": [ - "187" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"1fa16ce4-767f-4e42-9f87-4ccfb8fa7346\",\r\n \"name\": \"1fa16ce4-767f-4e42-9f87-4ccfb8fa7346\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-24T23:38:34.720177Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.RecoveryServices/vaults/PSTestRSV130a7cb9/backupOperations/1fa16ce4-767f-4e42-9f87-4ccfb8fa7346?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMTMwYTdjYjkvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YxMzBhN2NiOS9iYWNrdXBPcGVyYXRpb25zLzFmYTE2Y2U0LTc2N2YtNGU0Mi05Zjg3LTRjY2ZiOGZhNzM0Nj9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "d9df1ac5-72d6-4e52-a0df-f1e828b3a046" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.700.21.56803", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "x-ms-request-id": [ - "2717111e-5ff7-49b5-839b-dc6ea7d4f045" - ], - "x-ms-client-request-id": [ - "d9df1ac5-72d6-4e52-a0df-f1e828b3a046", - "d9df1ac5-72d6-4e52-a0df-f1e828b3a046" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "137" - ], - "x-ms-correlation-request-id": [ - "2717111e-5ff7-49b5-839b-dc6ea7d4f045" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20220224T233938Z:2717111e-5ff7-49b5-839b-dc6ea7d4f045" - ], - "Date": [ - "Thu, 24 Feb 2022 23:39:38 GMT" - ], - "Content-Length": [ - "187" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"1fa16ce4-767f-4e42-9f87-4ccfb8fa7346\",\r\n \"name\": \"1fa16ce4-767f-4e42-9f87-4ccfb8fa7346\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-24T23:38:34.720177Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.RecoveryServices/vaults/PSTestRSV130a7cb9/backupOperations/1fa16ce4-767f-4e42-9f87-4ccfb8fa7346?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMTMwYTdjYjkvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YxMzBhN2NiOS9iYWNrdXBPcGVyYXRpb25zLzFmYTE2Y2U0LTc2N2YtNGU0Mi05Zjg3LTRjY2ZiOGZhNzM0Nj9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "d9df1ac5-72d6-4e52-a0df-f1e828b3a046" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.700.21.56803", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "x-ms-request-id": [ - "402e0a12-01c6-4fe6-a604-f74d02bb3456" - ], - "x-ms-client-request-id": [ - "d9df1ac5-72d6-4e52-a0df-f1e828b3a046", - "d9df1ac5-72d6-4e52-a0df-f1e828b3a046" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "136" - ], - "x-ms-correlation-request-id": [ - "402e0a12-01c6-4fe6-a604-f74d02bb3456" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20220224T233949Z:402e0a12-01c6-4fe6-a604-f74d02bb3456" - ], - "Date": [ - "Thu, 24 Feb 2022 23:39:48 GMT" - ], - "Content-Length": [ - "187" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"1fa16ce4-767f-4e42-9f87-4ccfb8fa7346\",\r\n \"name\": \"1fa16ce4-767f-4e42-9f87-4ccfb8fa7346\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-24T23:38:34.720177Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.RecoveryServices/vaults/PSTestRSV130a7cb9/backupOperations/1fa16ce4-767f-4e42-9f87-4ccfb8fa7346?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMTMwYTdjYjkvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YxMzBhN2NiOS9iYWNrdXBPcGVyYXRpb25zLzFmYTE2Y2U0LTc2N2YtNGU0Mi05Zjg3LTRjY2ZiOGZhNzM0Nj9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "d9df1ac5-72d6-4e52-a0df-f1e828b3a046" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.700.21.56803", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "x-ms-request-id": [ - "62f7592c-8ccc-43fc-89dd-ec7f3b0da8bf" - ], - "x-ms-client-request-id": [ - "d9df1ac5-72d6-4e52-a0df-f1e828b3a046", - "d9df1ac5-72d6-4e52-a0df-f1e828b3a046" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "135" - ], - "x-ms-correlation-request-id": [ - "62f7592c-8ccc-43fc-89dd-ec7f3b0da8bf" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20220224T233959Z:62f7592c-8ccc-43fc-89dd-ec7f3b0da8bf" - ], - "Date": [ - "Thu, 24 Feb 2022 23:39:59 GMT" - ], - "Content-Length": [ - "187" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"1fa16ce4-767f-4e42-9f87-4ccfb8fa7346\",\r\n \"name\": \"1fa16ce4-767f-4e42-9f87-4ccfb8fa7346\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-24T23:38:34.720177Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.RecoveryServices/vaults/PSTestRSV130a7cb9/backupOperations/1fa16ce4-767f-4e42-9f87-4ccfb8fa7346?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMTMwYTdjYjkvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YxMzBhN2NiOS9iYWNrdXBPcGVyYXRpb25zLzFmYTE2Y2U0LTc2N2YtNGU0Mi05Zjg3LTRjY2ZiOGZhNzM0Nj9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "d9df1ac5-72d6-4e52-a0df-f1e828b3a046" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.700.21.56803", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "x-ms-request-id": [ - "757409bc-3c99-43c4-b52b-9673d9592280" - ], - "x-ms-client-request-id": [ - "d9df1ac5-72d6-4e52-a0df-f1e828b3a046", - "d9df1ac5-72d6-4e52-a0df-f1e828b3a046" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "134" - ], - "x-ms-correlation-request-id": [ - "757409bc-3c99-43c4-b52b-9673d9592280" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20220224T234010Z:757409bc-3c99-43c4-b52b-9673d9592280" - ], - "Date": [ - "Thu, 24 Feb 2022 23:40:09 GMT" - ], - "Content-Length": [ - "187" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"1fa16ce4-767f-4e42-9f87-4ccfb8fa7346\",\r\n \"name\": \"1fa16ce4-767f-4e42-9f87-4ccfb8fa7346\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-24T23:38:34.720177Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.RecoveryServices/vaults/PSTestRSV130a7cb9/backupOperations/1fa16ce4-767f-4e42-9f87-4ccfb8fa7346?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMTMwYTdjYjkvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YxMzBhN2NiOS9iYWNrdXBPcGVyYXRpb25zLzFmYTE2Y2U0LTc2N2YtNGU0Mi05Zjg3LTRjY2ZiOGZhNzM0Nj9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "d9df1ac5-72d6-4e52-a0df-f1e828b3a046" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.700.21.56803", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "x-ms-request-id": [ - "e7d99140-b80c-4739-b462-ade124d58f33" - ], - "x-ms-client-request-id": [ - "d9df1ac5-72d6-4e52-a0df-f1e828b3a046", - "d9df1ac5-72d6-4e52-a0df-f1e828b3a046" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "133" - ], - "x-ms-correlation-request-id": [ - "e7d99140-b80c-4739-b462-ade124d58f33" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20220224T234020Z:e7d99140-b80c-4739-b462-ade124d58f33" - ], - "Date": [ - "Thu, 24 Feb 2022 23:40:19 GMT" - ], - "Content-Length": [ - "187" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"1fa16ce4-767f-4e42-9f87-4ccfb8fa7346\",\r\n \"name\": \"1fa16ce4-767f-4e42-9f87-4ccfb8fa7346\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-24T23:38:34.720177Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.RecoveryServices/vaults/PSTestRSV130a7cb9/backupOperations/1fa16ce4-767f-4e42-9f87-4ccfb8fa7346?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMTMwYTdjYjkvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YxMzBhN2NiOS9iYWNrdXBPcGVyYXRpb25zLzFmYTE2Y2U0LTc2N2YtNGU0Mi05Zjg3LTRjY2ZiOGZhNzM0Nj9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "d9df1ac5-72d6-4e52-a0df-f1e828b3a046" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.700.21.56803", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "x-ms-request-id": [ - "afbbe79a-7fe6-488a-8fe8-db827239327f" - ], - "x-ms-client-request-id": [ - "d9df1ac5-72d6-4e52-a0df-f1e828b3a046", - "d9df1ac5-72d6-4e52-a0df-f1e828b3a046" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "132" - ], - "x-ms-correlation-request-id": [ - "afbbe79a-7fe6-488a-8fe8-db827239327f" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20220224T234031Z:afbbe79a-7fe6-488a-8fe8-db827239327f" - ], - "Date": [ - "Thu, 24 Feb 2022 23:40:30 GMT" - ], - "Content-Length": [ - "302" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"1fa16ce4-767f-4e42-9f87-4ccfb8fa7346\",\r\n \"name\": \"1fa16ce4-767f-4e42-9f87-4ccfb8fa7346\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-02-24T23:38:34.720177Z\",\r\n \"endTime\": \"2022-02-24T23:38:34.720177Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"8ffd54c9-007c-472a-b7c6-11764b8a4dcd\"\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.RecoveryServices/vaults/PSTestRSV130a7cb9/backupOperations/1fa16ce4-767f-4e42-9f87-4ccfb8fa7346?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMTMwYTdjYjkvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YxMzBhN2NiOS9iYWNrdXBPcGVyYXRpb25zLzFmYTE2Y2U0LTc2N2YtNGU0Mi05Zjg3LTRjY2ZiOGZhNzM0Nj9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "d9df1ac5-72d6-4e52-a0df-f1e828b3a046" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.700.21.56803", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "x-ms-request-id": [ - "cdfdfd53-2f7d-43e6-bd73-97e8fe0d59a8" - ], - "x-ms-client-request-id": [ - "d9df1ac5-72d6-4e52-a0df-f1e828b3a046", - "d9df1ac5-72d6-4e52-a0df-f1e828b3a046" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "131" - ], - "x-ms-correlation-request-id": [ - "cdfdfd53-2f7d-43e6-bd73-97e8fe0d59a8" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20220224T234031Z:cdfdfd53-2f7d-43e6-bd73-97e8fe0d59a8" - ], - "Date": [ - "Thu, 24 Feb 2022 23:40:30 GMT" - ], - "Content-Length": [ - "302" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"1fa16ce4-767f-4e42-9f87-4ccfb8fa7346\",\r\n \"name\": \"1fa16ce4-767f-4e42-9f87-4ccfb8fa7346\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-02-24T23:38:34.720177Z\",\r\n \"endTime\": \"2022-02-24T23:38:34.720177Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"8ffd54c9-007c-472a-b7c6-11764b8a4dcd\"\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.RecoveryServices/vaults/PSTestRSV130a7cb9/backupJobs/8ffd54c9-007c-472a-b7c6-11764b8a4dcd?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMTMwYTdjYjkvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YxMzBhN2NiOS9iYWNrdXBKb2JzLzhmZmQ1NGM5LTAwN2MtNDcyYS1iN2M2LTExNzY0YjhhNGRjZD9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "d9df1ac5-72d6-4e52-a0df-f1e828b3a046" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.700.21.56803", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.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": [ - "ec9e7af0-b5f8-4555-9619-17890e675f00" - ], - "x-ms-client-request-id": [ - "d9df1ac5-72d6-4e52-a0df-f1e828b3a046", - "d9df1ac5-72d6-4e52-a0df-f1e828b3a046" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "98" - ], - "x-ms-correlation-request-id": [ - "ec9e7af0-b5f8-4555-9619-17890e675f00" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20220224T234032Z:ec9e7af0-b5f8-4555-9619-17890e675f00" - ], - "Date": [ - "Thu, 24 Feb 2022 23:40:31 GMT" - ], - "Content-Length": [ - "842" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.RecoveryServices/vaults/PSTestRSV130a7cb9/backupJobs/8ffd54c9-007c-472a-b7c6-11764b8a4dcd\",\r\n \"name\": \"8ffd54c9-007c-472a-b7c6-11764b8a4dcd\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg130a7cb9;pstestvm130a70\",\r\n \"duration\": \"PT1M51.609768S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"VM Name\": \"PSTestVM130a70\",\r\n \"Number of Recovery Points\": \"1\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"PSTestVM130a70\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"DeleteBackupData\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-02-24T23:38:34.720177Z\",\r\n \"endTime\": \"2022-02-24T23:40:26.329945Z\",\r\n \"activityId\": \"d9df1ac5-72d6-4e52-a0df-f1e828b3a046\"\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG130a7cb9/providers/Microsoft.RecoveryServices/vaults/PSTestRSV130a7cb9?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMTMwYTdjYjkvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YxMzBhN2NiOT9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", - "RequestMethod": "DELETE", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "664510e0-4cb2-4aad-8781-cb3c56921e2f" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.700.21.56803", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesClient/4.3.2.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "x-ms-request-id": [ - "18b63876-3f0f-48bc-bd58-94422ea9cd85" - ], - "x-ms-client-request-id": [ - "664510e0-4cb2-4aad-8781-cb3c56921e2f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "9" - ], - "x-ms-correlation-request-id": [ - "18b63876-3f0f-48bc-bd58-94422ea9cd85" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20220224T234045Z:18b63876-3f0f-48bc-bd58-94422ea9cd85" - ], - "Date": [ - "Thu, 24 Feb 2022 23:40:45 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourcegroups/PSTestRG130a7cb9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlZ3JvdXBzL1BTVGVzdFJHMTMwYTdjYjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "DELETE", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "3c73deb2-b57f-4fc5-b31e-cf91cc5acc47" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.700.21.56803", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzEzMEE3Q0I5LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-deletes": [ - "14999" - ], - "x-ms-request-id": [ - "3ec58868-c193-4ea2-a6dd-cbff9479e487" - ], - "x-ms-correlation-request-id": [ - "3ec58868-c193-4ea2-a6dd-cbff9479e487" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20220224T234052Z:3ec58868-c193-4ea2-a6dd-cbff9479e487" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 24 Feb 2022 23:40:52 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzEzMEE3Q0I5LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekV6TUVFM1EwSTVMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.700.21.56803", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzEzMEE3Q0I5LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" - ], - "x-ms-request-id": [ - "f9627030-3f13-4a73-b7b7-db96e2001985" - ], - "x-ms-correlation-request-id": [ - "f9627030-3f13-4a73-b7b7-db96e2001985" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20220224T234108Z:f9627030-3f13-4a73-b7b7-db96e2001985" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 24 Feb 2022 23:41:08 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzEzMEE3Q0I5LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekV6TUVFM1EwSTVMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.700.21.56803", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzEzMEE3Q0I5LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" - ], - "x-ms-request-id": [ - "a36e5d05-0dbe-4edb-98fa-646d96d886ae" - ], - "x-ms-correlation-request-id": [ - "a36e5d05-0dbe-4edb-98fa-646d96d886ae" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20220224T234123Z:a36e5d05-0dbe-4edb-98fa-646d96d886ae" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 24 Feb 2022 23:41:23 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzEzMEE3Q0I5LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekV6TUVFM1EwSTVMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.700.21.56803", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzEzMEE3Q0I5LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" - ], - "x-ms-request-id": [ - "b929a2dc-6196-4d02-a8ae-3685075a0542" - ], - "x-ms-correlation-request-id": [ - "b929a2dc-6196-4d02-a8ae-3685075a0542" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20220224T234139Z:b929a2dc-6196-4d02-a8ae-3685075a0542" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 24 Feb 2022 23:41:38 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzEzMEE3Q0I5LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekV6TUVFM1EwSTVMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.700.21.56803", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzEzMEE3Q0I5LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" - ], - "x-ms-request-id": [ - "b01ee48e-3385-4ffb-befa-66130f18c69d" - ], - "x-ms-correlation-request-id": [ - "b01ee48e-3385-4ffb-befa-66130f18c69d" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20220224T234154Z:b01ee48e-3385-4ffb-befa-66130f18c69d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 24 Feb 2022 23:41:54 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzEzMEE3Q0I5LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekV6TUVFM1EwSTVMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.700.21.56803", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzEzMEE3Q0I5LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" - ], - "x-ms-request-id": [ - "4e4154a1-e369-4daa-8a15-be32c6b7fff5" - ], - "x-ms-correlation-request-id": [ - "4e4154a1-e369-4daa-8a15-be32c6b7fff5" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20220224T234210Z:4e4154a1-e369-4daa-8a15-be32c6b7fff5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 24 Feb 2022 23:42:09 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzEzMEE3Q0I5LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekV6TUVFM1EwSTVMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.700.21.56803", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzEzMEE3Q0I5LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" - ], - "x-ms-request-id": [ - "f86b7de4-e6cb-43cb-9710-5c7869f18ce2" - ], - "x-ms-correlation-request-id": [ - "f86b7de4-e6cb-43cb-9710-5c7869f18ce2" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20220224T234225Z:f86b7de4-e6cb-43cb-9710-5c7869f18ce2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 24 Feb 2022 23:42:25 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzEzMEE3Q0I5LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekV6TUVFM1EwSTVMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.700.21.56803", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzEzMEE3Q0I5LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" - ], - "x-ms-request-id": [ - "68b08d65-3014-47fc-91e8-bde8ea2ff755" - ], - "x-ms-correlation-request-id": [ - "68b08d65-3014-47fc-91e8-bde8ea2ff755" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20220224T234241Z:68b08d65-3014-47fc-91e8-bde8ea2ff755" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 24 Feb 2022 23:42:41 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzEzMEE3Q0I5LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekV6TUVFM1EwSTVMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.700.21.56803", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzEzMEE3Q0I5LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" - ], - "x-ms-request-id": [ - "9b94356d-343d-4c0f-94c0-050a0a249b03" - ], - "x-ms-correlation-request-id": [ - "9b94356d-343d-4c0f-94c0-050a0a249b03" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20220224T234256Z:9b94356d-343d-4c0f-94c0-050a0a249b03" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 24 Feb 2022 23:42:56 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzEzMEE3Q0I5LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekV6TUVFM1EwSTVMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.700.21.56803", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzEzMEE3Q0I5LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" - ], - "x-ms-request-id": [ - "88d005d7-36c2-4568-b00b-1c7dfa120180" - ], - "x-ms-correlation-request-id": [ - "88d005d7-36c2-4568-b00b-1c7dfa120180" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20220224T234312Z:88d005d7-36c2-4568-b00b-1c7dfa120180" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 24 Feb 2022 23:43:11 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzEzMEE3Q0I5LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekV6TUVFM1EwSTVMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.700.21.56803", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzEzMEE3Q0I5LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" - ], - "x-ms-request-id": [ - "cfc683ef-8974-45a0-824a-813389afd817" - ], - "x-ms-correlation-request-id": [ - "cfc683ef-8974-45a0-824a-813389afd817" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20220224T234327Z:cfc683ef-8974-45a0-824a-813389afd817" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 24 Feb 2022 23:43:27 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzEzMEE3Q0I5LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekV6TUVFM1EwSTVMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.700.21.56803", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzEzMEE3Q0I5LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" - ], - "x-ms-request-id": [ - "3b764609-38af-46ea-905c-2b95adb918cc" - ], - "x-ms-correlation-request-id": [ - "3b764609-38af-46ea-905c-2b95adb918cc" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20220224T234343Z:3b764609-38af-46ea-905c-2b95adb918cc" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 24 Feb 2022 23:43:43 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzEzMEE3Q0I5LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekV6TUVFM1EwSTVMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.700.21.56803", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzEzMEE3Q0I5LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" - ], - "x-ms-request-id": [ - "ec463a97-de0a-4b4f-ba36-f669ff25b9e8" - ], - "x-ms-correlation-request-id": [ - "ec463a97-de0a-4b4f-ba36-f669ff25b9e8" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20220224T234358Z:ec463a97-de0a-4b4f-ba36-f669ff25b9e8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 24 Feb 2022 23:43:58 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzEzMEE3Q0I5LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekV6TUVFM1EwSTVMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.700.21.56803", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzEzMEE3Q0I5LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" - ], - "x-ms-request-id": [ - "5a339268-c19b-4938-a096-34bb115c191b" - ], - "x-ms-correlation-request-id": [ - "5a339268-c19b-4938-a096-34bb115c191b" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20220224T234414Z:5a339268-c19b-4938-a096-34bb115c191b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 24 Feb 2022 23:44:13 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzEzMEE3Q0I5LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekV6TUVFM1EwSTVMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.700.21.56803", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzEzMEE3Q0I5LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" - ], - "x-ms-request-id": [ - "e204ad9e-3650-493c-a188-4ed48f168dbe" - ], - "x-ms-correlation-request-id": [ - "e204ad9e-3650-493c-a188-4ed48f168dbe" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20220224T234429Z:e204ad9e-3650-493c-a188-4ed48f168dbe" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 24 Feb 2022 23:44:28 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzEzMEE3Q0I5LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekV6TUVFM1EwSTVMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.700.21.56803", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzEzMEE3Q0I5LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" - ], - "x-ms-request-id": [ - "2e897733-f003-4446-81e3-cc1417410f8e" - ], - "x-ms-correlation-request-id": [ - "2e897733-f003-4446-81e3-cc1417410f8e" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20220224T234445Z:2e897733-f003-4446-81e3-cc1417410f8e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 24 Feb 2022 23:44:44 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzEzMEE3Q0I5LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekV6TUVFM1EwSTVMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.700.21.56803", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzEzMEE3Q0I5LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11984" - ], - "x-ms-request-id": [ - "d080da02-da79-43c3-aa22-c989e14384b5" - ], - "x-ms-correlation-request-id": [ - "d080da02-da79-43c3-aa22-c989e14384b5" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20220224T234500Z:d080da02-da79-43c3-aa22-c989e14384b5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 24 Feb 2022 23:44:59 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzEzMEE3Q0I5LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekV6TUVFM1EwSTVMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.700.21.56803", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzEzMEE3Q0I5LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11983" - ], - "x-ms-request-id": [ - "b1ddc177-d6c6-4bb9-bf92-6c13356d7e1d" - ], - "x-ms-correlation-request-id": [ - "b1ddc177-d6c6-4bb9-bf92-6c13356d7e1d" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20220224T234516Z:b1ddc177-d6c6-4bb9-bf92-6c13356d7e1d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 24 Feb 2022 23:45:16 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzEzMEE3Q0I5LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekV6TUVFM1EwSTVMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.700.21.56803", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzEzMEE3Q0I5LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11982" - ], - "x-ms-request-id": [ - "d1912720-1baf-49f8-94f3-894701383dc8" - ], - "x-ms-correlation-request-id": [ - "d1912720-1baf-49f8-94f3-894701383dc8" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20220224T234532Z:d1912720-1baf-49f8-94f3-894701383dc8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 24 Feb 2022 23:45:32 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzEzMEE3Q0I5LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekV6TUVFM1EwSTVMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.700.21.56803", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzEzMEE3Q0I5LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11981" - ], - "x-ms-request-id": [ - "75d5ef0f-83fc-4619-9ff1-780204ecd7aa" - ], - "x-ms-correlation-request-id": [ - "75d5ef0f-83fc-4619-9ff1-780204ecd7aa" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20220224T234547Z:75d5ef0f-83fc-4619-9ff1-780204ecd7aa" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 24 Feb 2022 23:45:47 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzEzMEE3Q0I5LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekV6TUVFM1EwSTVMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.700.21.56803", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzEzMEE3Q0I5LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11980" - ], - "x-ms-request-id": [ - "a6bfc8fb-4bf2-475e-9a1e-ca6570ad035e" - ], - "x-ms-correlation-request-id": [ - "a6bfc8fb-4bf2-475e-9a1e-ca6570ad035e" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20220224T234603Z:a6bfc8fb-4bf2-475e-9a1e-ca6570ad035e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 24 Feb 2022 23:46:02 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzEzMEE3Q0I5LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekV6TUVFM1EwSTVMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.700.21.56803", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzEzMEE3Q0I5LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11979" - ], - "x-ms-request-id": [ - "4bc10aaf-962c-4eed-8cb8-bf25dfdbacbe" - ], - "x-ms-correlation-request-id": [ - "4bc10aaf-962c-4eed-8cb8-bf25dfdbacbe" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20220224T234618Z:4bc10aaf-962c-4eed-8cb8-bf25dfdbacbe" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 24 Feb 2022 23:46:18 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzEzMEE3Q0I5LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekV6TUVFM1EwSTVMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.700.21.56803", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzEzMEE3Q0I5LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11978" - ], - "x-ms-request-id": [ - "af37a5c2-c8f8-4cac-a08a-47ab69bc7673" - ], - "x-ms-correlation-request-id": [ - "af37a5c2-c8f8-4cac-a08a-47ab69bc7673" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20220224T234634Z:af37a5c2-c8f8-4cac-a08a-47ab69bc7673" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 24 Feb 2022 23:46:33 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzEzMEE3Q0I5LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekV6TUVFM1EwSTVMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.700.21.56803", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzEzMEE3Q0I5LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11977" - ], - "x-ms-request-id": [ - "9c8afa60-db2a-47cb-ad1d-1c58b194941b" - ], - "x-ms-correlation-request-id": [ - "9c8afa60-db2a-47cb-ad1d-1c58b194941b" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20220224T234649Z:9c8afa60-db2a-47cb-ad1d-1c58b194941b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 24 Feb 2022 23:46:48 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzEzMEE3Q0I5LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekV6TUVFM1EwSTVMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.700.21.56803", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11976" - ], - "x-ms-request-id": [ - "fb6a7b74-0e05-46bc-b014-dc6223bbe0c9" - ], - "x-ms-correlation-request-id": [ - "fb6a7b74-0e05-46bc-b014-dc6223bbe0c9" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20220224T234705Z:fb6a7b74-0e05-46bc-b014-dc6223bbe0c9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 24 Feb 2022 23:47:05 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzEzMEE3Q0I5LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekV6TUVFM1EwSTVMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.700.21.56803", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11975" - ], - "x-ms-request-id": [ - "0cb89e1e-af7c-4534-bf83-3cf3daf60465" - ], - "x-ms-correlation-request-id": [ - "0cb89e1e-af7c-4534-bf83-3cf3daf60465" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20220224T234705Z:0cb89e1e-af7c-4534-bf83-3cf3daf60465" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 24 Feb 2022 23:47:05 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiaga-adhoc-vault/backupJobs/a04b6a4f-71f8-4762-a6c0-6c4aa1c85f6e\",\r\n \"name\": \"a04b6a4f-71f8-4762-a6c0-6c4aa1c85f6e\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiaga-adhoc-vm\",\r\n \"duration\": \"PT31M14.4662077S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"hiaga-adhoc-vm\",\r\n \"Backup Size\": \"841 MB\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"hiaga-adhoc-vm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-05-17T13:54:13.4133042Z\",\r\n \"endTime\": \"2022-05-17T14:25:27.8795119Z\",\r\n \"activityId\": \"a2b4d68f-816f-4208-a9bf-a7d142ebc4cd\"\r\n }\r\n}", "StatusCode": 200 } ], "Names": {}, "Variables": { - "SubscriptionId": "e37510d7-33b6-4676-886f-ee75bcc01871", - "NamingSuffix": "130a7cb9-e388-44e6-8a53-411d760aab58" + "SubscriptionId": "38304e13-357e-405e-9e9a-220351dcce8c" } } \ No newline at end of file diff --git a/src/RecoveryServices/RecoveryServices.Backup.Test/SessionRecords/Microsoft.Azure.Commands.RecoveryServices.Backup.Test.ScenarioTests.ItemTests/TestAzureVMCrossRegionRestore.json b/src/RecoveryServices/RecoveryServices.Backup.Test/SessionRecords/Microsoft.Azure.Commands.RecoveryServices.Backup.Test.ScenarioTests.ItemTests/TestAzureVMCrossRegionRestore.json index 86aad951dccc..d9f154ef3468 100644 --- a/src/RecoveryServices/RecoveryServices.Backup.Test/SessionRecords/Microsoft.Azure.Commands.RecoveryServices.Backup.Test.ScenarioTests.ItemTests/TestAzureVMCrossRegionRestore.json +++ b/src/RecoveryServices/RecoveryServices.Backup.Test/SessionRecords/Microsoft.Azure.Commands.RecoveryServices.Backup.Test.ScenarioTests.ItemTests/TestAzureVMCrossRegionRestore.json @@ -1,19 +1,19 @@ { "Entries": [ { - "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourcegroups/PSTestRGd4dbec7324?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlZ3JvdXBzL1BTVGVzdFJHZDRkYmVjNzMyND9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourcegroups/PSTestRG2c5fb36324?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlZ3JvdXBzL1BTVGVzdFJHMmM1ZmIzNjMyND9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fddeb33a-106b-46f2-bcd8-8c23a3953b84" + "034228bc-2f8f-4053-98bd-d619e486b532" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" @@ -30,16 +30,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11999" ], "x-ms-request-id": [ - "d2db34d8-3c91-46fc-961b-95f49e8b69fd" + "dbcdb320-81cf-4caa-8d4f-2f28ad7290b0" ], "x-ms-correlation-request-id": [ - "d2db34d8-3c91-46fc-961b-95f49e8b69fd" + "dbcdb320-81cf-4caa-8d4f-2f28ad7290b0" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220328T110231Z:d2db34d8-3c91-46fc-961b-95f49e8b69fd" + "WESTINDIA:20220517T052222Z:dbcdb320-81cf-4caa-8d4f-2f28ad7290b0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -48,7 +48,7 @@ "nosniff" ], "Date": [ - "Mon, 28 Mar 2022 11:02:30 GMT" + "Tue, 17 May 2022 05:22:21 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -60,23 +60,23 @@ "110" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'PSTestRGd4dbec7324' could not be found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'PSTestRG2c5fb36324' could not be found.\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourcegroups/PSTestRGd4dbec7324?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlZ3JvdXBzL1BTVGVzdFJHZDRkYmVjNzMyND9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourcegroups/PSTestRG2c5fb36324?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlZ3JvdXBzL1BTVGVzdFJHMmM1ZmIzNjMyND9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "82933627-e1ce-491b-a1f6-d3e5cbc2974f" + "0ff7c436-1a2d-4e85-aae5-7ea3b0f10913" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" @@ -90,16 +90,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11998" ], "x-ms-request-id": [ - "1b7f4af6-c829-4d26-8d7a-123770dc10f3" + "62ef2f21-a8e9-465f-ba88-ffc1fc91b454" ], "x-ms-correlation-request-id": [ - "1b7f4af6-c829-4d26-8d7a-123770dc10f3" + "62ef2f21-a8e9-465f-ba88-ffc1fc91b454" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220328T110341Z:1b7f4af6-c829-4d26-8d7a-123770dc10f3" + "WESTINDIA:20220517T052337Z:62ef2f21-a8e9-465f-ba88-ffc1fc91b454" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -108,7 +108,7 @@ "nosniff" ], "Date": [ - "Mon, 28 Mar 2022 11:03:40 GMT" + "Tue, 17 May 2022 05:23:36 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -120,23 +120,23 @@ "196" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd4dbec7324\",\r\n \"name\": \"PSTestRGd4dbec7324\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2c5fb36324\",\r\n \"name\": \"PSTestRG2c5fb36324\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourcegroups/PSTestRGd4dbec7324?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlZ3JvdXBzL1BTVGVzdFJHZDRkYmVjNzMyND9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourcegroups/PSTestRG2c5fb36324?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlZ3JvdXBzL1BTVGVzdFJHMmM1ZmIzNjMyND9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"centraluseuap\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "dcec5214-d2e5-4b45-b42f-48c827a09517" + "629f0b3d-59ce-40c8-8cae-96e5bc48df50" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" @@ -159,13 +159,13 @@ "1199" ], "x-ms-request-id": [ - "29efb822-14fe-46e4-8881-5b93fb9e97c7" + "c9e5a607-8ac0-44cd-ba51-81f41cd04e49" ], "x-ms-correlation-request-id": [ - "29efb822-14fe-46e4-8881-5b93fb9e97c7" + "c9e5a607-8ac0-44cd-ba51-81f41cd04e49" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220328T110236Z:29efb822-14fe-46e4-8881-5b93fb9e97c7" + "WESTINDIA:20220517T052226Z:c9e5a607-8ac0-44cd-ba51-81f41cd04e49" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -174,7 +174,7 @@ "nosniff" ], "Date": [ - "Mon, 28 Mar 2022 11:02:35 GMT" + "Tue, 17 May 2022 05:22:25 GMT" ], "Content-Length": [ "196" @@ -186,23 +186,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd4dbec7324\",\r\n \"name\": \"PSTestRGd4dbec7324\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2c5fb36324\",\r\n \"name\": \"PSTestRG2c5fb36324\",\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/PSTestRGd4dbec7324/providers/Microsoft.RecoveryServices/vaults/PSTestRSVd4dbec73?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZDRkYmVjNzMyNC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL1BTVGVzdFJTVmQ0ZGJlYzczP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2c5fb36324/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2c5fb363?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMmM1ZmIzNjMyNC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL1BTVGVzdFJTVjJjNWZiMzYzP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "41408bc8-3b0d-49cb-832e-cbaa3c127f73" + "6ce13a30-66d2-4540-b99e-a60e279d1994" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesClient/4.3.2.0" @@ -219,13 +219,13 @@ "gateway" ], "x-ms-request-id": [ - "a2a284dd-48c8-4d1d-b53e-48d76ddf6c09" + "bc65efa9-bf97-456d-af2c-3883fa9d006b" ], "x-ms-correlation-request-id": [ - "a2a284dd-48c8-4d1d-b53e-48d76ddf6c09" + "bc65efa9-bf97-456d-af2c-3883fa9d006b" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220328T110239Z:a2a284dd-48c8-4d1d-b53e-48d76ddf6c09" + "WESTINDIA:20220517T052229Z:bc65efa9-bf97-456d-af2c-3883fa9d006b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -234,7 +234,7 @@ "nosniff" ], "Date": [ - "Mon, 28 Mar 2022 11:02:39 GMT" + "Tue, 17 May 2022 05:22:28 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -246,23 +246,23 @@ "241" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.RecoveryServices/vaults/PSTestRSVd4dbec73' under resource group 'PSTestRGd4dbec7324' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.RecoveryServices/vaults/PSTestRSV2c5fb363' under resource group 'PSTestRG2c5fb36324' 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/PSTestRGd4dbec7324/providers/Microsoft.RecoveryServices/vaults/PSTestRSVd4dbec73?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZDRkYmVjNzMyNC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL1BTVGVzdFJTVmQ0ZGJlYzczP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2c5fb36324/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2c5fb363?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMmM1ZmIzNjMyNC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL1BTVGVzdFJTVjJjNWZiMzYzP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", "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": [ - "d9667e76-fd2a-4056-b973-96592f6b2123" + "e561bbcb-83cf-41f7-97b7-4a44b0b92b70" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesClient/4.3.2.0" @@ -288,25 +288,25 @@ "nosniff" ], "x-ms-request-id": [ - "fa9c224b-fcc5-443d-a182-2b384c717c33" + "29bbd922-d24d-4237-9180-89acc9c4199d" ], "x-ms-client-request-id": [ - "d9667e76-fd2a-4056-b973-96592f6b2123" + "e561bbcb-83cf-41f7-97b7-4a44b0b92b70" ], "Server": [ "Kestrel" ], "x-ms-correlation-request-id": [ - "fa9c224b-fcc5-443d-a182-2b384c717c33" + "29bbd922-d24d-4237-9180-89acc9c4199d" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220328T110250Z:fa9c224b-fcc5-443d-a182-2b384c717c33" + "WESTINDIA:20220517T052245Z:29bbd922-d24d-4237-9180-89acc9c4199d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Mon, 28 Mar 2022 11:02:49 GMT" + "Tue, 17 May 2022 05:22:44 GMT" ], "Content-Length": [ "520" @@ -318,26 +318,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"location\": \"centraluseuap\",\r\n \"name\": \"PSTestRSVd4dbec73\",\r\n \"etag\": \"W/\\\"datetime'2022-03-28T11%3A02%3A48.6604967Z'\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateEndpointStateForBackup\": \"None\",\r\n \"privateEndpointStateForSiteRecovery\": \"None\",\r\n \"networkSettings\": {\r\n \"publicNetworkAccess\": \"Enabled\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd4dbec7324/providers/Microsoft.RecoveryServices/vaults/PSTestRSVd4dbec73\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"location\": \"centraluseuap\",\r\n \"name\": \"PSTestRSV2c5fb363\",\r\n \"etag\": \"W/\\\"datetime'2022-05-17T05%3A22%3A43.3733115Z'\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateEndpointStateForBackup\": \"None\",\r\n \"privateEndpointStateForSiteRecovery\": \"None\",\r\n \"networkSettings\": {\r\n \"publicNetworkAccess\": \"Enabled\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2c5fb36324/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2c5fb363\",\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/PSTestRGd4dbec7324/providers/Microsoft.RecoveryServices/vaults/PSTestRSVd4dbec73/backupstorageconfig/vaultstorageconfig?api-version=2021-12-01", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZDRkYmVjNzMyNC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL1BTVGVzdFJTVmQ0ZGJlYzczL2JhY2t1cHN0b3JhZ2Vjb25maWcvdmF1bHRzdG9yYWdlY29uZmlnP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2c5fb36324/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2c5fb363/backupstorageconfig/vaultstorageconfig?api-version=2022-02-01", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMmM1ZmIzNjMyNC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL1BTVGVzdFJTVjJjNWZiMzYzL2JhY2t1cHN0b3JhZ2Vjb25maWcvdmF1bHRzdG9yYWdlY29uZmlnP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", "RequestMethod": "PATCH", "RequestBody": "{\r\n \"properties\": {\r\n \"crossRegionRestoreFlag\": true\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "1999c390-96e8-4124-8f5a-96276c5a79f2" + "faf4815a-bce0-4c01-a126-976089750866" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -357,10 +357,10 @@ "nosniff" ], "x-ms-request-id": [ - "4b84548a-4706-4c2e-b15c-69e23956d105" + "4283bda5-4b20-4383-983f-8b31aefd3bd4" ], "x-ms-client-request-id": [ - "1999c390-96e8-4124-8f5a-96276c5a79f2" + "faf4815a-bce0-4c01-a126-976089750866" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -375,35 +375,35 @@ "1199" ], "x-ms-correlation-request-id": [ - "4b84548a-4706-4c2e-b15c-69e23956d105" + "4283bda5-4b20-4383-983f-8b31aefd3bd4" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220328T110312Z:4b84548a-4706-4c2e-b15c-69e23956d105" + "WESTINDIA:20220517T052309Z:4283bda5-4b20-4383-983f-8b31aefd3bd4" ], "Date": [ - "Mon, 28 Mar 2022 11:03:11 GMT" + "Tue, 17 May 2022 05:23:08 GMT" ] }, "ResponseBody": "", "StatusCode": 204 }, { - "RequestUri": "/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd4dbec7324/providers/Microsoft.RecoveryServices/vaults/PSTestRSVd4dbec73/backupstorageconfig/vaultstorageconfig?api-version=2021-12-01", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZDRkYmVjNzMyNC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL1BTVGVzdFJTVmQ0ZGJlYzczL2JhY2t1cHN0b3JhZ2Vjb25maWcvdmF1bHRzdG9yYWdlY29uZmlnP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2c5fb36324/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2c5fb363/backupstorageconfig/vaultstorageconfig?api-version=2022-02-01", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMmM1ZmIzNjMyNC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL1BTVGVzdFJTVjJjNWZiMzYzL2JhY2t1cHN0b3JhZ2Vjb25maWcvdmF1bHRzdG9yYWdlY29uZmlnP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4c0f8072-0c96-4c35-903b-a9aea91f6f49" + "f92481e2-2268-4d43-b1e6-ec38d382002a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -417,10 +417,10 @@ "nosniff" ], "x-ms-request-id": [ - "f2798821-4f27-4084-8134-8127ba0eb1bd" + "9cd633fc-615c-4e3c-81d6-e0eb14d59418" ], "x-ms-client-request-id": [ - "4c0f8072-0c96-4c35-903b-a9aea91f6f49" + "f92481e2-2268-4d43-b1e6-ec38d382002a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -435,13 +435,13 @@ "149" ], "x-ms-correlation-request-id": [ - "f2798821-4f27-4084-8134-8127ba0eb1bd" + "9cd633fc-615c-4e3c-81d6-e0eb14d59418" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220328T110340Z:f2798821-4f27-4084-8134-8127ba0eb1bd" + "WESTINDIA:20220517T052336Z:9cd633fc-615c-4e3c-81d6-e0eb14d59418" ], "Date": [ - "Mon, 28 Mar 2022 11:03:39 GMT" + "Tue, 17 May 2022 05:23:36 GMT" ], "Content-Length": [ "470" @@ -453,23 +453,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd4dbec7324/providers/Microsoft.RecoveryServices/vaults/PSTestRSVd4dbec73/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\": \"Locked\",\r\n \"crossRegionRestoreFlag\": true\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2c5fb36324/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2c5fb363/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\": \"Locked\",\r\n \"crossRegionRestoreFlag\": true\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd4dbec7324/providers/Microsoft.RecoveryServices/vaults?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZDRkYmVjNzMyNC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2c5fb36324/providers/Microsoft.RecoveryServices/vaults?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMmM1ZmIzNjMyNC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1b459d7b-db44-4d8d-9b0c-dfaa9454a518" + "381b9b39-8b72-410a-88f3-b9d794eb93e7" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesClient/4.3.2.0" @@ -483,31 +483,31 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11981" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "1999f39e-b96f-4fda-84ec-a6362dd49cb7" + "174f0162-a19e-499f-95a0-bb28c7ce6ee5" ], "x-ms-client-request-id": [ - "1b459d7b-db44-4d8d-9b0c-dfaa9454a518" + "381b9b39-8b72-410a-88f3-b9d794eb93e7" ], "Server": [ "Kestrel" ], "x-ms-correlation-request-id": [ - "1999f39e-b96f-4fda-84ec-a6362dd49cb7" + "174f0162-a19e-499f-95a0-bb28c7ce6ee5" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220328T110341Z:1999f39e-b96f-4fda-84ec-a6362dd49cb7" + "WESTINDIA:20220517T052338Z:174f0162-a19e-499f-95a0-bb28c7ce6ee5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Mon, 28 Mar 2022 11:03:40 GMT" + "Tue, 17 May 2022 05:23:37 GMT" ], "Content-Length": [ "630" @@ -519,26 +519,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"centraluseuap\",\r\n \"name\": \"PSTestRSVd4dbec73\",\r\n \"etag\": \"W/\\\"datetime'2022-03-28T11%3A02%3A48.6794857Z'\\\"\",\r\n \"tags\": null,\r\n \"identity\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateEndpointStateForBackup\": \"None\",\r\n \"privateEndpointStateForSiteRecovery\": \"None\",\r\n \"networkSettings\": {\r\n \"publicNetworkAccess\": \"Enabled\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd4dbec7324/providers/Microsoft.RecoveryServices/vaults/PSTestRSVd4dbec73\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": null,\r\n \"size\": null,\r\n \"family\": null,\r\n \"capacity\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"centraluseuap\",\r\n \"name\": \"PSTestRSV2c5fb363\",\r\n \"etag\": \"W/\\\"datetime'2022-05-17T05%3A22%3A43.4002961Z'\\\"\",\r\n \"tags\": null,\r\n \"identity\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateEndpointStateForBackup\": \"None\",\r\n \"privateEndpointStateForSiteRecovery\": \"None\",\r\n \"networkSettings\": {\r\n \"publicNetworkAccess\": \"Enabled\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2c5fb36324/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2c5fb363\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": null,\r\n \"size\": null,\r\n \"family\": null,\r\n \"capacity\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd4dbec7324/providers/Microsoft.RecoveryServices/vaults/PSTestRSVd4dbec73/backupProtectionContainers?$filter=backupManagementType%20eq%20'AzureIaasVM'%20and%20status%20eq%20'Registered'&api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZDRkYmVjNzMyNC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL1BTVGVzdFJTVmQ0ZGJlYzczL2JhY2t1cFByb3RlY3Rpb25Db250YWluZXJzPyRmaWx0ZXI9YmFja3VwTWFuYWdlbWVudFR5cGUlMjBlcSUyMCdBenVyZUlhYXNWTSclMjBhbmQlMjBzdGF0dXMlMjBlcSUyMCdSZWdpc3RlcmVkJyZhcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2c5fb36324/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2c5fb363/backupProtectionContainers?$filter=backupManagementType%20eq%20'AzureIaasVM'%20and%20status%20eq%20'Registered'&api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMmM1ZmIzNjMyNC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL1BTVGVzdFJTVjJjNWZiMzYzL2JhY2t1cFByb3RlY3Rpb25Db250YWluZXJzPyRmaWx0ZXI9YmFja3VwTWFuYWdlbWVudFR5cGUlMjBlcSUyMCdBenVyZUlhYXNWTSclMjBhbmQlMjBzdGF0dXMlMjBlcSUyMCdSZWdpc3RlcmVkJyZhcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "123b7486-0870-495b-a8fd-7a4c8e91017c" + "ecddb5bb-fb12-4179-b911-661e9a06a4b3" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -552,10 +552,10 @@ "nosniff" ], "x-ms-request-id": [ - "c0dd3723-4fce-4403-ab1a-2dfd64532a4f" + "77d715ac-50dd-4964-809a-56f284b9d134" ], "x-ms-client-request-id": [ - "123b7486-0870-495b-a8fd-7a4c8e91017c" + "ecddb5bb-fb12-4179-b911-661e9a06a4b3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -570,13 +570,13 @@ "149" ], "x-ms-correlation-request-id": [ - "c0dd3723-4fce-4403-ab1a-2dfd64532a4f" + "77d715ac-50dd-4964-809a-56f284b9d134" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220328T110342Z:c0dd3723-4fce-4403-ab1a-2dfd64532a4f" + "WESTINDIA:20220517T052338Z:77d715ac-50dd-4964-809a-56f284b9d134" ], "Date": [ - "Mon, 28 Mar 2022 11:03:41 GMT" + "Tue, 17 May 2022 05:23:38 GMT" ], "Content-Length": [ "12" @@ -592,19 +592,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd4dbec7324/providers/Microsoft.RecoveryServices/vaults/PSTestRSVd4dbec73?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZDRkYmVjNzMyNC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL1BTVGVzdFJTVmQ0ZGJlYzczP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2c5fb36324/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2c5fb363?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMmM1ZmIzNjMyNC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL1BTVGVzdFJTVjJjNWZiMzYzP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "174aed48-f424-46ca-8ccc-428428a1e469" + "32079c92-656d-4f69-a44d-ec65e8c0305a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesClient/4.3.2.0" @@ -633,16 +633,16 @@ "9" ], "x-ms-correlation-request-id": [ - "c0ba87a3-0f24-4fd1-9ff9-9083d74255ae" + "eef3b6a4-e7a2-44b3-8acc-69872cb2a456" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220328T110351Z:c0ba87a3-0f24-4fd1-9ff9-9083d74255ae" + "WESTINDIA:20220517T052347Z:eef3b6a4-e7a2-44b3-8acc-69872cb2a456" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Mon, 28 Mar 2022 11:03:50 GMT" + "Tue, 17 May 2022 05:23:46 GMT" ], "Expires": [ "-1" @@ -655,19 +655,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourcegroups/PSTestRGd4dbec7324?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlZ3JvdXBzL1BTVGVzdFJHZDRkYmVjNzMyND9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourcegroups/PSTestRG2c5fb36324?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlZ3JvdXBzL1BTVGVzdFJHMmM1ZmIzNjMyND9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "dd0ffb65-5a27-414c-a0da-3ef518204cd5" + "65aac40c-68e3-4916-b581-916bd52397f1" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" @@ -681,7 +681,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0Q0REJFQzczMjQtQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzJDNUZCMzYzMjQtQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -690,13 +690,70 @@ "14999" ], "x-ms-request-id": [ - "2753c92a-762d-47f2-9170-9c5804adad8d" + "341ef15c-ba1e-4fa1-a5f5-bead26c1677c" + ], + "x-ms-correlation-request-id": [ + "341ef15c-ba1e-4fa1-a5f5-bead26c1677c" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220517T052351Z:341ef15c-ba1e-4fa1-a5f5-bead26c1677c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 17 May 2022 05:23:51 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzJDNUZCMzYzMjQtQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekpETlVaQ016WXpNalF0UTBWT1ZGSkJURlZUUlZWQlVDSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVkyVnVkSEpoYkhWelpYVmhjQ0o5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzJDNUZCMzYzMjQtQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-request-id": [ + "09386fc7-77e6-45f6-9540-ae93983c0124" ], "x-ms-correlation-request-id": [ - "2753c92a-762d-47f2-9170-9c5804adad8d" + "09386fc7-77e6-45f6-9540-ae93983c0124" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220328T110355Z:2753c92a-762d-47f2-9170-9c5804adad8d" + "WESTINDIA:20220517T052407Z:09386fc7-77e6-45f6-9540-ae93983c0124" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -705,7 +762,7 @@ "nosniff" ], "Date": [ - "Mon, 28 Mar 2022 11:03:54 GMT" + "Tue, 17 May 2022 05:24:06 GMT" ], "Expires": [ "-1" @@ -718,13 +775,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0Q0REJFQzczMjQtQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSMFEwUkVKRlF6Y3pNalF0UTBWT1ZGSkJURlZUUlZWQlVDSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVkyVnVkSEpoYkhWelpYVmhjQ0o5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzJDNUZCMzYzMjQtQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekpETlVaQ016WXpNalF0UTBWT1ZGSkJURlZUUlZWQlVDSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVkyVnVkSEpoYkhWelpYVmhjQ0o5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" @@ -737,17 +794,23 @@ "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzJDNUZCMzYzMjQtQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], "x-ms-ratelimit-remaining-subscription-reads": [ "11996" ], "x-ms-request-id": [ - "908bdfed-58dd-4c6f-825c-08a95ba7da5b" + "3d06e613-802b-499e-8532-970950084c73" ], "x-ms-correlation-request-id": [ - "908bdfed-58dd-4c6f-825c-08a95ba7da5b" + "3d06e613-802b-499e-8532-970950084c73" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220328T110410Z:908bdfed-58dd-4c6f-825c-08a95ba7da5b" + "WESTINDIA:20220517T052422Z:3d06e613-802b-499e-8532-970950084c73" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -756,7 +819,7 @@ "nosniff" ], "Date": [ - "Mon, 28 Mar 2022 11:04:10 GMT" + "Tue, 17 May 2022 05:24:21 GMT" ], "Expires": [ "-1" @@ -766,16 +829,16 @@ ] }, "ResponseBody": "", - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0Q0REJFQzczMjQtQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSMFEwUkVKRlF6Y3pNalF0UTBWT1ZGSkJURlZUUlZWQlVDSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVkyVnVkSEpoYkhWelpYVmhjQ0o5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzJDNUZCMzYzMjQtQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekpETlVaQ016WXpNalF0UTBWT1ZGSkJURlZUUlZWQlVDSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVkyVnVkSEpoYkhWelpYVmhjQ0o5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" @@ -788,17 +851,182 @@ "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzJDNUZCMzYzMjQtQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], "x-ms-ratelimit-remaining-subscription-reads": [ "11995" ], "x-ms-request-id": [ - "04780b57-4bd9-400c-8bf3-2775309ab575" + "847756a4-04b3-44af-902a-328baccb6918" + ], + "x-ms-correlation-request-id": [ + "847756a4-04b3-44af-902a-328baccb6918" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220517T052438Z:847756a4-04b3-44af-902a-328baccb6918" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 17 May 2022 05:24:37 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzJDNUZCMzYzMjQtQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekpETlVaQ016WXpNalF0UTBWT1ZGSkJURlZUUlZWQlVDSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVkyVnVkSEpoYkhWelpYVmhjQ0o5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzJDNUZCMzYzMjQtQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-request-id": [ + "3fb9b96f-dad4-4e1c-a240-6543960bd1fe" + ], + "x-ms-correlation-request-id": [ + "3fb9b96f-dad4-4e1c-a240-6543960bd1fe" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220517T052453Z:3fb9b96f-dad4-4e1c-a240-6543960bd1fe" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 17 May 2022 05:24:53 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzJDNUZCMzYzMjQtQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekpETlVaQ016WXpNalF0UTBWT1ZGSkJURlZUUlZWQlVDSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVkyVnVkSEpoYkhWelpYVmhjQ0o5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-request-id": [ + "85951441-0a4f-464e-aa65-44dcb5343472" + ], + "x-ms-correlation-request-id": [ + "85951441-0a4f-464e-aa65-44dcb5343472" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220517T052509Z:85951441-0a4f-464e-aa65-44dcb5343472" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 17 May 2022 05:25:08 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzJDNUZCMzYzMjQtQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekpETlVaQ016WXpNalF0UTBWT1ZGSkJURlZUUlZWQlVDSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVkyVnVkSEpoYkhWelpYVmhjQ0o5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11992" + ], + "x-ms-request-id": [ + "8c7679ba-16bc-4c33-94be-189f72a3e245" ], "x-ms-correlation-request-id": [ - "04780b57-4bd9-400c-8bf3-2775309ab575" + "8c7679ba-16bc-4c33-94be-189f72a3e245" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220328T110411Z:04780b57-4bd9-400c-8bf3-2775309ab575" + "WESTINDIA:20220517T052509Z:8c7679ba-16bc-4c33-94be-189f72a3e245" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -807,7 +1035,7 @@ "nosniff" ], "Date": [ - "Mon, 28 Mar 2022 11:04:10 GMT" + "Tue, 17 May 2022 05:25:08 GMT" ], "Expires": [ "-1" @@ -823,6 +1051,6 @@ "Names": {}, "Variables": { "SubscriptionId": "da364f0f-307b-41c9-9d47-b7413ec45535", - "NamingSuffix": "d4dbec73-6d70-4766-92a7-bfed478cdd3a" + "NamingSuffix": "2c5fb363-00ee-46fb-b4bf-84e69d4b5559" } } \ No newline at end of file diff --git a/src/RecoveryServices/RecoveryServices.Backup.Test/SessionRecords/Microsoft.Azure.Commands.RecoveryServices.Backup.Test.ScenarioTests.ItemTests/TestAzureVMFullRestore.json b/src/RecoveryServices/RecoveryServices.Backup.Test/SessionRecords/Microsoft.Azure.Commands.RecoveryServices.Backup.Test.ScenarioTests.ItemTests/TestAzureVMFullRestore.json index 693ee9a680ab..4ab68b729bdd 100644 --- a/src/RecoveryServices/RecoveryServices.Backup.Test/SessionRecords/Microsoft.Azure.Commands.RecoveryServices.Backup.Test.ScenarioTests.ItemTests/TestAzureVMFullRestore.json +++ b/src/RecoveryServices/RecoveryServices.Backup.Test/SessionRecords/Microsoft.Azure.Commands.RecoveryServices.Backup.Test.ScenarioTests.ItemTests/TestAzureVMFullRestore.json @@ -1,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourcegroups/PSTestRGbfee9dac?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlZ3JvdXBzL1BTVGVzdFJHYmZlZTlkYWM/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourcegroups/PSTestRG2a085f1b?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlZ3JvdXBzL1BTVGVzdFJHMmEwODVmMWI/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3245a232-34c8-49fd-8f2a-b02fe6082d98" + "b424a580-b213-45f6-8e1f-93d7c11c075b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" ] }, "ResponseHeaders": { @@ -33,13 +33,13 @@ "11999" ], "x-ms-request-id": [ - "2f747c88-a7bf-4966-872d-a0c759d29140" + "68197f93-c32b-4424-8ca5-c7564903b794" ], "x-ms-correlation-request-id": [ - "2f747c88-a7bf-4966-872d-a0c759d29140" + "68197f93-c32b-4424-8ca5-c7564903b794" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T180000Z:2f747c88-a7bf-4966-872d-a0c759d29140" + "WESTINDIA:20220517T055753Z:68197f93-c32b-4424-8ca5-c7564903b794" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -48,7 +48,7 @@ "nosniff" ], "Date": [ - "Thu, 24 Feb 2022 17:59:59 GMT" + "Tue, 17 May 2022 05:57:52 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -60,26 +60,26 @@ "108" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'PSTestRGbfee9dac' could not be found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'PSTestRG2a085f1b' could not be found.\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourcegroups/PSTestRGbfee9dac?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlZ3JvdXBzL1BTVGVzdFJHYmZlZTlkYWM/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourcegroups/PSTestRG2a085f1b?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlZ3JvdXBzL1BTVGVzdFJHMmEwODVmMWI/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "69ccdf36-f4be-4591-a7a7-9aa60164e261" + "a5b7a226-f465-46bd-bd1e-4d9e66a75be4" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" ] }, "ResponseHeaders": { @@ -93,13 +93,13 @@ "11997" ], "x-ms-request-id": [ - "dd6f2714-ae8c-400c-b437-f786c1b8e835" + "889fce8c-5e02-4c50-882a-13deb5157ba2" ], "x-ms-correlation-request-id": [ - "dd6f2714-ae8c-400c-b437-f786c1b8e835" + "889fce8c-5e02-4c50-882a-13deb5157ba2" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T191718Z:dd6f2714-ae8c-400c-b437-f786c1b8e835" + "JIOINDIAWEST:20220517T065541Z:889fce8c-5e02-4c50-882a-13deb5157ba2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -108,7 +108,7 @@ "nosniff" ], "Date": [ - "Thu, 24 Feb 2022 19:17:18 GMT" + "Tue, 17 May 2022 06:55:41 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -120,26 +120,26 @@ "192" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac\",\r\n \"name\": \"PSTestRGbfee9dac\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b\",\r\n \"name\": \"PSTestRG2a085f1b\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourcegroups/PSTestRGbfee9dac?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlZ3JvdXBzL1BTVGVzdFJHYmZlZTlkYWM/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourcegroups/PSTestRG2a085f1b?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlZ3JvdXBzL1BTVGVzdFJHMmEwODVmMWI/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"southeastasia\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "6262c80c-11c5-4e5a-8d6a-3cdd85a61682" + "a01d7a98-bd0e-4901-9fc3-ed02764c8a9f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" ], "Content-Type": [ "application/json; charset=utf-8" @@ -159,13 +159,13 @@ "1199" ], "x-ms-request-id": [ - "6b90a3de-2431-4332-a9bd-a0bb0be49b79" + "2d670128-366d-46e0-a583-ee03d1a00beb" ], "x-ms-correlation-request-id": [ - "6b90a3de-2431-4332-a9bd-a0bb0be49b79" + "2d670128-366d-46e0-a583-ee03d1a00beb" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T180004Z:6b90a3de-2431-4332-a9bd-a0bb0be49b79" + "WESTINDIA:20220517T055755Z:2d670128-366d-46e0-a583-ee03d1a00beb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -174,7 +174,7 @@ "nosniff" ], "Date": [ - "Thu, 24 Feb 2022 18:00:03 GMT" + "Tue, 17 May 2022 05:57:54 GMT" ], "Content-Length": [ "192" @@ -186,26 +186,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac\",\r\n \"name\": \"PSTestRGbfee9dac\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b\",\r\n \"name\": \"PSTestRG2a085f1b\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourcegroups/PSTestRGbfee9dac1?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlZ3JvdXBzL1BTVGVzdFJHYmZlZTlkYWMxP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourcegroups/PSTestRG2a085f1b1?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlZ3JvdXBzL1BTVGVzdFJHMmEwODVmMWIxP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "080d011c-e390-44f4-b42a-f986d3c1a93b" + "52bac689-5200-42f7-9a41-487b303e3131" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" ] }, "ResponseHeaders": { @@ -222,13 +222,13 @@ "11998" ], "x-ms-request-id": [ - "46d60343-9172-4044-b432-bd439a221535" + "7eba9d30-9d3e-4776-8607-b934d222b5b3" ], "x-ms-correlation-request-id": [ - "46d60343-9172-4044-b432-bd439a221535" + "7eba9d30-9d3e-4776-8607-b934d222b5b3" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T180004Z:46d60343-9172-4044-b432-bd439a221535" + "WESTINDIA:20220517T055755Z:7eba9d30-9d3e-4776-8607-b934d222b5b3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -237,7 +237,7 @@ "nosniff" ], "Date": [ - "Thu, 24 Feb 2022 18:00:03 GMT" + "Tue, 17 May 2022 05:57:54 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -249,26 +249,26 @@ "109" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'PSTestRGbfee9dac1' could not be found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'PSTestRG2a085f1b1' could not be found.\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourcegroups/PSTestRGbfee9dac1?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlZ3JvdXBzL1BTVGVzdFJHYmZlZTlkYWMxP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourcegroups/PSTestRG2a085f1b1?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlZ3JvdXBzL1BTVGVzdFJHMmEwODVmMWIxP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a7cb36bc-938b-4fa7-8e20-3b60234e9aa7" + "75b4a249-29cb-432b-b723-98d43d86a793" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" ] }, "ResponseHeaders": { @@ -279,16 +279,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11974" + "11985" ], "x-ms-request-id": [ - "d01cd537-31c7-4014-bd17-528df54031d2" + "345312a8-366f-4ca6-be55-a5e1b16c77ef" ], "x-ms-correlation-request-id": [ - "d01cd537-31c7-4014-bd17-528df54031d2" + "345312a8-366f-4ca6-be55-a5e1b16c77ef" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T192554Z:d01cd537-31c7-4014-bd17-528df54031d2" + "WESTINDIA:20220517T070112Z:345312a8-366f-4ca6-be55-a5e1b16c77ef" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -297,7 +297,7 @@ "nosniff" ], "Date": [ - "Thu, 24 Feb 2022 19:25:54 GMT" + "Tue, 17 May 2022 07:01:11 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -309,26 +309,26 @@ "194" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac1\",\r\n \"name\": \"PSTestRGbfee9dac1\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b1\",\r\n \"name\": \"PSTestRG2a085f1b1\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourcegroups/PSTestRGbfee9dac1?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlZ3JvdXBzL1BTVGVzdFJHYmZlZTlkYWMxP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourcegroups/PSTestRG2a085f1b1?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlZ3JvdXBzL1BTVGVzdFJHMmEwODVmMWIxP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"southeastasia\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "a94da020-562e-4654-8625-896722d318d5" + "d6043a44-3343-4bf9-8f5c-8b73a1218e43" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" ], "Content-Type": [ "application/json; charset=utf-8" @@ -348,13 +348,13 @@ "1198" ], "x-ms-request-id": [ - "68a51d34-336b-4b0d-913d-be8bf2ee7e8d" + "226e9ded-be67-4121-a1ff-2bb2d58f4458" ], "x-ms-correlation-request-id": [ - "68a51d34-336b-4b0d-913d-be8bf2ee7e8d" + "226e9ded-be67-4121-a1ff-2bb2d58f4458" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T180005Z:68a51d34-336b-4b0d-913d-be8bf2ee7e8d" + "WESTINDIA:20220517T055755Z:226e9ded-be67-4121-a1ff-2bb2d58f4458" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -363,7 +363,7 @@ "nosniff" ], "Date": [ - "Thu, 24 Feb 2022 18:00:05 GMT" + "Tue, 17 May 2022 05:57:55 GMT" ], "Content-Length": [ "194" @@ -375,26 +375,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac1\",\r\n \"name\": \"PSTestRGbfee9dac1\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b1\",\r\n \"name\": \"PSTestRG2a085f1b1\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.Storage/storageAccounts/pstestsabfee9dac?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZlZTlkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9wc3Rlc3RzYWJmZWU5ZGFjP2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.Storage/storageAccounts/pstestsa2a085f1b?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMmEwODVmMWIvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9wc3Rlc3RzYTJhMDg1ZjFiP2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "08dd8090-d0fb-4e15-9249-949a0ccc70f5" + "b337aa8d-7616-4e73-95a2-c5eb49b50244" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.56" + "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.57" ] }, "ResponseHeaders": { @@ -408,13 +408,13 @@ "gateway" ], "x-ms-request-id": [ - "427157b2-e3da-4b11-bd9e-01301c5d94a4" + "80467c6d-84a5-4698-9bba-d75aeea705b3" ], "x-ms-correlation-request-id": [ - "427157b2-e3da-4b11-bd9e-01301c5d94a4" + "80467c6d-84a5-4698-9bba-d75aeea705b3" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T180009Z:427157b2-e3da-4b11-bd9e-01301c5d94a4" + "WESTINDIA:20220517T055756Z:80467c6d-84a5-4698-9bba-d75aeea705b3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -423,7 +423,7 @@ "nosniff" ], "Date": [ - "Thu, 24 Feb 2022 18:00:08 GMT" + "Tue, 17 May 2022 05:57:55 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -435,26 +435,26 @@ "238" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Storage/storageAccounts/pstestsabfee9dac' under resource group 'PSTestRGbfee9dac' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Storage/storageAccounts/pstestsa2a085f1b' under resource group 'PSTestRG2a085f1b' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.Storage/storageAccounts/pstestsabfee9dac?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZlZTlkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9wc3Rlc3RzYWJmZWU5ZGFjP2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.Storage/storageAccounts/pstestsa2a085f1b?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMmEwODVmMWIvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9wc3Rlc3RzYTJhMDg1ZjFiP2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a0bbb92e-08ec-479b-bffb-52580ce30e57" + "19684972-a293-4576-a4a3-15cf6385ad0c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.56" + "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.57" ] }, "ResponseHeaders": { @@ -465,7 +465,7 @@ "no-cache" ], "x-ms-request-id": [ - "c4aba035-0f98-4dc5-b633-45736edaca08" + "b0ca410a-3834-42ce-9767-ce4ac4171084" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -474,19 +474,19 @@ "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11978" ], "x-ms-correlation-request-id": [ - "0744689f-29e9-4335-a7f2-45f5c8d14b8a" + "0ac42fdf-3b84-4238-b4ab-3008730d07fc" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T180039Z:0744689f-29e9-4335-a7f2-45f5c8d14b8a" + "WESTINDIA:20220517T055823Z:0ac42fdf-3b84-4238-b4ab-3008730d07fc" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 24 Feb 2022 18:00:38 GMT" + "Tue, 17 May 2022 05:58:23 GMT" ], "Content-Length": [ "1097" @@ -498,26 +498,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.Storage/storageAccounts/pstestsabfee9dac\",\r\n \"name\": \"pstestsabfee9dac\",\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\": \"2022-02-24T18:00:15.5126852Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2022-02-24T18:00:15.5126852Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2022-02-24T18:00:15.4189262Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://pstestsabfee9dac.blob.core.windows.net/\",\r\n \"queue\": \"https://pstestsabfee9dac.queue.core.windows.net/\",\r\n \"table\": \"https://pstestsabfee9dac.table.core.windows.net/\",\r\n \"file\": \"https://pstestsabfee9dac.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"southeastasia\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n}", + "ResponseBody": "{\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/PSTestRG2a085f1b/providers/Microsoft.Storage/storageAccounts/pstestsa2a085f1b\",\r\n \"name\": \"pstestsa2a085f1b\",\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\": \"2022-05-17T05:57:59.5634138Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2022-05-17T05:57:59.5634138Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2022-05-17T05:57:59.3290036Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://pstestsa2a085f1b.blob.core.windows.net/\",\r\n \"queue\": \"https://pstestsa2a085f1b.queue.core.windows.net/\",\r\n \"table\": \"https://pstestsa2a085f1b.table.core.windows.net/\",\r\n \"file\": \"https://pstestsa2a085f1b.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"southeastasia\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.Storage/storageAccounts/pstestsabfee9dac?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZlZTlkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9wc3Rlc3RzYWJmZWU5ZGFjP2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.Storage/storageAccounts/pstestsa2a085f1b?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMmEwODVmMWIvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9wc3Rlc3RzYTJhMDg1ZjFiP2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "ab69634c-66b0-4e5e-996c-4da45b55333a" + "9334421e-85b8-4660-9d39-68e645c2d4f9" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.56" + "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.57" ], "Content-Type": [ "application/json; charset=utf-8" @@ -534,13 +534,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/482f6f2e-60e2-4d56-ab45-89b4802046db?monitor=true&api-version=2017-10-01" + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/a12dcbb1-d85a-42d0-95e3-ad2b296c5bd2?monitor=true&api-version=2017-10-01" ], "Retry-After": [ "17" ], "x-ms-request-id": [ - "482f6f2e-60e2-4d56-ab45-89b4802046db" + "a12dcbb1-d85a-42d0-95e3-ad2b296c5bd2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -552,16 +552,16 @@ "1199" ], "x-ms-correlation-request-id": [ - "6b2577b4-2b65-4e61-b918-729355686db5" + "1cb08adc-2533-45e1-9db6-b52297e36a14" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T180018Z:6b2577b4-2b65-4e61-b918-729355686db5" + "WESTINDIA:20220517T055802Z:1cb08adc-2533-45e1-9db6-b52297e36a14" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 24 Feb 2022 18:00:18 GMT" + "Tue, 17 May 2022 05:58:02 GMT" ], "Content-Type": [ "text/plain; charset=utf-8" @@ -577,16 +577,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/482f6f2e-60e2-4d56-ab45-89b4802046db?monitor=true&api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9hc3luY29wZXJhdGlvbnMvNDgyZjZmMmUtNjBlMi00ZDU2LWFiNDUtODliNDgwMjA0NmRiP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE3LTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/a12dcbb1-d85a-42d0-95e3-ad2b296c5bd2?monitor=true&api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9hc3luY29wZXJhdGlvbnMvYTEyZGNiYjEtZDg1YS00MmQwLTk1ZTMtYWQyYjI5NmM1YmQyP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE3LTEwLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.56" + "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.57" ] }, "ResponseHeaders": { @@ -597,13 +597,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/482f6f2e-60e2-4d56-ab45-89b4802046db?monitor=true&api-version=2017-10-01" + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/a12dcbb1-d85a-42d0-95e3-ad2b296c5bd2?monitor=true&api-version=2017-10-01" ], "Retry-After": [ "3" ], "x-ms-request-id": [ - "2a5c147f-06b9-4fe7-a78d-34d9b8c16bf0" + "7ab388a7-f764-44f4-b103-74a61bf8540e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -612,19 +612,19 @@ "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11980" ], "x-ms-correlation-request-id": [ - "a455f748-2497-4ecc-9b6d-4ac3520bc523" + "5c479f5c-f449-439f-a1df-fe2ce3410805" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T180036Z:a455f748-2497-4ecc-9b6d-4ac3520bc523" + "WESTINDIA:20220517T055820Z:5c479f5c-f449-439f-a1df-fe2ce3410805" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 24 Feb 2022 18:00:35 GMT" + "Tue, 17 May 2022 05:58:20 GMT" ], "Content-Type": [ "text/plain; charset=utf-8" @@ -640,16 +640,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/482f6f2e-60e2-4d56-ab45-89b4802046db?monitor=true&api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9hc3luY29wZXJhdGlvbnMvNDgyZjZmMmUtNjBlMi00ZDU2LWFiNDUtODliNDgwMjA0NmRiP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE3LTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/a12dcbb1-d85a-42d0-95e3-ad2b296c5bd2?monitor=true&api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9hc3luY29wZXJhdGlvbnMvYTEyZGNiYjEtZDg1YS00MmQwLTk1ZTMtYWQyYjI5NmM1YmQyP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE3LTEwLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.56" + "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.57" ] }, "ResponseHeaders": { @@ -660,7 +660,7 @@ "no-cache" ], "x-ms-request-id": [ - "af0fb559-97c9-4c6c-a6c8-614c0a45b747" + "96b58229-2692-412b-986c-eac8c97538f3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -669,19 +669,19 @@ "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11979" ], "x-ms-correlation-request-id": [ - "317d313b-4725-462d-b35b-b0a8f26fc2b8" + "efeab9e5-758c-4d44-b1cb-b7dfba6962ae" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T180039Z:317d313b-4725-462d-b35b-b0a8f26fc2b8" + "WESTINDIA:20220517T055823Z:efeab9e5-758c-4d44-b1cb-b7dfba6962ae" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 24 Feb 2022 18:00:38 GMT" + "Tue, 17 May 2022 05:58:23 GMT" ], "Content-Length": [ "1097" @@ -693,26 +693,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.Storage/storageAccounts/pstestsabfee9dac\",\r\n \"name\": \"pstestsabfee9dac\",\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\": \"2022-02-24T18:00:15.5126852Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2022-02-24T18:00:15.5126852Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2022-02-24T18:00:15.4189262Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://pstestsabfee9dac.blob.core.windows.net/\",\r\n \"queue\": \"https://pstestsabfee9dac.queue.core.windows.net/\",\r\n \"table\": \"https://pstestsabfee9dac.table.core.windows.net/\",\r\n \"file\": \"https://pstestsabfee9dac.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"southeastasia\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n}", + "ResponseBody": "{\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/PSTestRG2a085f1b/providers/Microsoft.Storage/storageAccounts/pstestsa2a085f1b\",\r\n \"name\": \"pstestsa2a085f1b\",\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\": \"2022-05-17T05:57:59.5634138Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2022-05-17T05:57:59.5634138Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2022-05-17T05:57:59.3290036Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://pstestsa2a085f1b.blob.core.windows.net/\",\r\n \"queue\": \"https://pstestsa2a085f1b.queue.core.windows.net/\",\r\n \"table\": \"https://pstestsa2a085f1b.table.core.windows.net/\",\r\n \"file\": \"https://pstestsa2a085f1b.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"southeastasia\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.Compute/virtualMachines/PSTestVMbfee90?api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZlZTlkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy9QU1Rlc3RWTWJmZWU5MD9hcGktdmVyc2lvbj0yMDIxLTExLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.Compute/virtualMachines/PSTestVM2a0850?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMmEwODVmMWIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy9QU1Rlc3RWTTJhMDg1MD9hcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "93c2f998-bc68-42b4-ae3b-626377370c66" + "2d872fc3-0f98-4641-b190-e96a271a1c96" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ] }, "ResponseHeaders": { @@ -726,13 +726,13 @@ "gateway" ], "x-ms-request-id": [ - "fd3fe71b-4732-4958-9ca7-0af8e207c40c" + "32e5045f-2e3c-4d7f-9882-3797f85d416a" ], "x-ms-correlation-request-id": [ - "fd3fe71b-4732-4958-9ca7-0af8e207c40c" + "32e5045f-2e3c-4d7f-9882-3797f85d416a" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T180043Z:fd3fe71b-4732-4958-9ca7-0af8e207c40c" + "JIOINDIAWEST:20220517T055824Z:32e5045f-2e3c-4d7f-9882-3797f85d416a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -741,7 +741,7 @@ "nosniff" ], "Date": [ - "Thu, 24 Feb 2022 18:00:43 GMT" + "Tue, 17 May 2022 05:58:23 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -753,23 +753,23 @@ "236" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Compute/virtualMachines/PSTestVMbfee90' under resource group 'PSTestRGbfee9dac' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Compute/virtualMachines/PSTestVM2a0850' under resource group 'PSTestRG2a085f1b' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.Compute/virtualMachines/PSTestVMbfee90?api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZlZTlkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy9QU1Rlc3RWTWJmZWU5MD9hcGktdmVyc2lvbj0yMDIxLTExLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.Compute/virtualMachines/PSTestVM2a0850?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMmEwODVmMWIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy9QU1Rlc3RWTTJhMDg1MD9hcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "13a517ba-13cc-45ed-bb0b-85c82ca4ada3" + "61f8a6eb-a8e4-447c-9b83-1b6a0a6764fc" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ] }, "ResponseHeaders": { @@ -780,35 +780,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/LowCostGet3Min;3997,Microsoft.Compute/LowCostGet30Min;31984" + "Microsoft.Compute/LowCostGet3Min;3978,Microsoft.Compute/LowCostGet30Min;31807" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "8e5146fe-85c4-4d99-8618-7e6529d4d97e" + "65cf04e5-a5a6-4bac-9bca-531781a19c7c" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11992" ], "x-ms-correlation-request-id": [ - "cf014f74-27fc-4d12-9a86-e6b6b614bd74" + "e6103224-887a-495d-b44b-71b5892d7a7e" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T180320Z:cf014f74-27fc-4d12-9a86-e6b6b614bd74" + "JIOINDIAWEST:20220517T060316Z:e6103224-887a-495d-b44b-71b5892d7a7e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 24 Feb 2022 18:03:19 GMT" + "Tue, 17 May 2022 06:03:15 GMT" ], "Content-Length": [ - "2265" + "2195" ], "Content-Type": [ "application/json; charset=utf-8" @@ -817,26 +817,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"PSTestVMbfee90\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.Compute/virtualMachines/PSTestVMbfee90\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MabUsed\": \"Yes\",\r\n \"AutoShutDown\": \"No\",\r\n \"Purpose\": \"PSTest\",\r\n \"Owner\": \"sarath\",\r\n \"DeleteBy\": \"06-2022\",\r\n \"azsecpack\": \"nonprod\",\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": \"true\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"e363fc3b-16cc-4f14-9ee8-2b8a70484538\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D1_v2\"\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.4946.220202\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"PSTestVMbfee90_OsDisk_1_16afd9c60bf6438e8b9439235058ab19\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.Compute/disks/PSTestVMbfee90_OsDisk_1_16afd9c60bf6438e8b9439235058ab19\"\r\n },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"PSTestVMbfee90\",\r\n \"adminUsername\": \"demouser\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"AutomaticByOS\",\r\n \"assessmentMode\": \"ImageDefault\"\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.Network/networkInterfaces/PSTestNICbfee90\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"timeCreated\": \"2022-02-24T13:01:26.7344576-05:00\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"PSTestVM2a0850\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.Compute/virtualMachines/PSTestVM2a0850\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"Owner\": \"sarath\",\r\n \"DeleteBy\": \"06-2022\",\r\n \"Purpose\": \"PSTest\",\r\n \"MabUsed\": \"Yes\",\r\n \"AutoShutDown\": \"No\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"672764c3-2867-44f8-907b-ec1f5db6798f\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D1_v2\"\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.5125.220505\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"PSTestVM2a0850_OsDisk_1_a3704341ce774a9eb909528529f85c5d\",\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/PSTestRG2a085f1b/providers/Microsoft.Compute/disks/PSTestVM2a0850_OsDisk_1_a3704341ce774a9eb909528529f85c5d\"\r\n },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"PSTestVM2a0850\",\r\n \"adminUsername\": \"demouser\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"AutomaticByOS\",\r\n \"assessmentMode\": \"ImageDefault\"\r\n },\r\n \"enableVMAgentPlatformUpdates\": false\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/PSTestRG2a085f1b/providers/Microsoft.Network/networkInterfaces/PSTestNIC2a0850\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"timeCreated\": \"2022-05-17T11:28:52.9728477+05:30\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.Compute/virtualMachines/PSTestVMbfee90?api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZlZTlkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy9QU1Rlc3RWTWJmZWU5MD9hcGktdmVyc2lvbj0yMDIxLTExLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.Compute/virtualMachines/PSTestVM2a0850?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMmEwODVmMWIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy9QU1Rlc3RWTTJhMDg1MD9hcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "eadd198c-8032-4cb8-ac18-731e8aa735bf" + "300433db-3adf-4002-a0b5-3290603884d5" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ] }, "ResponseHeaders": { @@ -847,35 +847,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/LowCostGet3Min;3994,Microsoft.Compute/LowCostGet30Min;31979" + "Microsoft.Compute/LowCostGet3Min;3975,Microsoft.Compute/LowCostGet30Min;31816" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a331e82a-27bc-4ce5-a2c4-7de2143b8515" + "0ae984f0-1473-4523-8c10-4bc926ba2696" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" + "11983" ], "x-ms-correlation-request-id": [ - "8f43b70b-ba77-45c0-989b-43abd3ac7e12" + "2de3b559-61d6-49ee-84d7-155ff82a97ff" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T180532Z:8f43b70b-ba77-45c0-989b-43abd3ac7e12" + "JIOINDIAWEST:20220517T060522Z:2de3b559-61d6-49ee-84d7-155ff82a97ff" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 24 Feb 2022 18:05:32 GMT" + "Tue, 17 May 2022 06:05:22 GMT" ], "Content-Length": [ - "2828" + "2758" ], "Content-Type": [ "application/json; charset=utf-8" @@ -884,26 +884,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"PSTestVMbfee90\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.Compute/virtualMachines/PSTestVMbfee90\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MabUsed\": \"Yes\",\r\n \"AutoShutDown\": \"No\",\r\n \"Purpose\": \"PSTest\",\r\n \"Owner\": \"sarath\",\r\n \"DeleteBy\": \"06-2022\",\r\n \"azsecpack\": \"nonprod\",\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": \"true\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"e363fc3b-16cc-4f14-9ee8-2b8a70484538\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D1_v2\"\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.4946.220202\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"PSTestVMbfee90_OsDisk_1_16afd9c60bf6438e8b9439235058ab19\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.Compute/disks/PSTestVMbfee90_OsDisk_1_16afd9c60bf6438e8b9439235058ab19\"\r\n },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"PSTestVMbfee90\",\r\n \"adminUsername\": \"demouser\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"AutomaticByOS\",\r\n \"assessmentMode\": \"ImageDefault\"\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.Network/networkInterfaces/PSTestNICbfee90\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"timeCreated\": \"2022-02-24T13:01:26.7344576-05:00\"\r\n },\r\n \"resources\": [\r\n {\r\n \"name\": \"BGInfo\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.Compute/virtualMachines/PSTestVMbfee90/extensions/BGInfo\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"southeastasia\",\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}", + "ResponseBody": "{\r\n \"name\": \"PSTestVM2a0850\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.Compute/virtualMachines/PSTestVM2a0850\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"Owner\": \"sarath\",\r\n \"DeleteBy\": \"06-2022\",\r\n \"Purpose\": \"PSTest\",\r\n \"MabUsed\": \"Yes\",\r\n \"AutoShutDown\": \"No\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"672764c3-2867-44f8-907b-ec1f5db6798f\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D1_v2\"\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.5125.220505\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"PSTestVM2a0850_OsDisk_1_a3704341ce774a9eb909528529f85c5d\",\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/PSTestRG2a085f1b/providers/Microsoft.Compute/disks/PSTestVM2a0850_OsDisk_1_a3704341ce774a9eb909528529f85c5d\"\r\n },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"PSTestVM2a0850\",\r\n \"adminUsername\": \"demouser\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"AutomaticByOS\",\r\n \"assessmentMode\": \"ImageDefault\"\r\n },\r\n \"enableVMAgentPlatformUpdates\": false\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/PSTestRG2a085f1b/providers/Microsoft.Network/networkInterfaces/PSTestNIC2a0850\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"timeCreated\": \"2022-05-17T11:28:52.9728477+05:30\"\r\n },\r\n \"resources\": [\r\n {\r\n \"name\": \"BGInfo\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.Compute/virtualMachines/PSTestVM2a0850/extensions/BGInfo\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"BGInfo\",\r\n \"typeHandlerVersion\": \"2.2\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.Network/virtualNetworks/PSTestVNETbfee90?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZlZTlkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy9QU1Rlc3RWTkVUYmZlZTkwP2FwaS12ZXJzaW9uPTIwMjEtMDUtMDE=", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.Network/virtualNetworks/PSTestVNET2a0850?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMmEwODVmMWIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy9QU1Rlc3RWTkVUMmEwODUwP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bf95d4ee-2e44-41b0-b72a-9d43ddcfc93d" + "325c3c7f-88e4-4983-889f-7a1b1c9d80a5" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ] }, "ResponseHeaders": { @@ -917,13 +917,13 @@ "gateway" ], "x-ms-request-id": [ - "e3e6baca-c6bd-4794-a9b0-a1c13924c1f0" + "e135ffff-0515-4f66-a9e8-7f9e6d2e6066" ], "x-ms-correlation-request-id": [ - "e3e6baca-c6bd-4794-a9b0-a1c13924c1f0" + "e135ffff-0515-4f66-a9e8-7f9e6d2e6066" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T180046Z:e3e6baca-c6bd-4794-a9b0-a1c13924c1f0" + "JIOINDIAWEST:20220517T055825Z:e135ffff-0515-4f66-a9e8-7f9e6d2e6066" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -932,7 +932,7 @@ "nosniff" ], "Date": [ - "Thu, 24 Feb 2022 18:00:45 GMT" + "Tue, 17 May 2022 05:58:25 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -944,23 +944,23 @@ "238" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/virtualNetworks/PSTestVNETbfee90' under resource group 'PSTestRGbfee9dac' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/virtualNetworks/PSTestVNET2a0850' under resource group 'PSTestRG2a085f1b' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.Network/virtualNetworks/PSTestVNETbfee90?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZlZTlkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy9QU1Rlc3RWTkVUYmZlZTkwP2FwaS12ZXJzaW9uPTIwMjEtMDUtMDE=", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.Network/virtualNetworks/PSTestVNET2a0850?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMmEwODVmMWIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy9QU1Rlc3RWTkVUMmEwODUwP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bf95d4ee-2e44-41b0-b72a-9d43ddcfc93d" + "325c3c7f-88e4-4983-889f-7a1b1c9d80a5" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ] }, "ResponseHeaders": { @@ -971,16 +971,16 @@ "no-cache" ], "ETag": [ - "W/\"c89b2b16-f98a-40e4-934a-6c1a51cf0d50\"" + "W/\"3cdc3afb-323c-45e9-b23f-72a94b78e642\"" ], "x-ms-request-id": [ - "fcaa0b79-078d-483e-9cbc-84ff2158b1cb" + "f4d203f6-2a82-4347-9329-14b33986efb2" ], "x-ms-correlation-request-id": [ - "8bd369a9-a196-4b5a-88bc-8e878bc5b8d1" + "d7678f22-ee89-42fc-a51f-4032bbff8a17" ], "x-ms-arm-service-request-id": [ - "c32850a5-b984-4f09-a8f1-19c66524a984" + "2216e19b-ea1e-4d30-9c42-c67842945385" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -990,16 +990,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11996" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T180058Z:8bd369a9-a196-4b5a-88bc-8e878bc5b8d1" + "JIOINDIAWEST:20220517T055833Z:d7678f22-ee89-42fc-a51f-4032bbff8a17" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 24 Feb 2022 18:00:58 GMT" + "Tue, 17 May 2022 05:58:33 GMT" ], "Content-Length": [ "1315" @@ -1011,26 +1011,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"PSTestVNETbfee90\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.Network/virtualNetworks/PSTestVNETbfee90\",\r\n \"etag\": \"W/\\\"c89b2b16-f98a-40e4-934a-6c1a51cf0d50\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"4df621e5-7df2-4c31-8cee-d35b9e5fe896\",\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\": \"PSTestSNCbfee90\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.Network/virtualNetworks/PSTestVNETbfee90/subnets/PSTestSNCbfee90\",\r\n \"etag\": \"W/\\\"c89b2b16-f98a-40e4-934a-6c1a51cf0d50\\\"\",\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 },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"PSTestVNET2a0850\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.Network/virtualNetworks/PSTestVNET2a0850\",\r\n \"etag\": \"W/\\\"3cdc3afb-323c-45e9-b23f-72a94b78e642\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"2d55b5f2-3068-4d76-a947-b895926a0fb5\",\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\": \"PSTestSNC2a0850\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.Network/virtualNetworks/PSTestVNET2a0850/subnets/PSTestSNC2a0850\",\r\n \"etag\": \"W/\\\"3cdc3afb-323c-45e9-b23f-72a94b78e642\\\"\",\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 },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.Network/virtualNetworks/PSTestVNETbfee90?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZlZTlkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy9QU1Rlc3RWTkVUYmZlZTkwP2FwaS12ZXJzaW9uPTIwMjEtMDUtMDE=", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.Network/virtualNetworks/PSTestVNET2a0850?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMmEwODVmMWIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy9QU1Rlc3RWTkVUMmEwODUwP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bf95d4ee-2e44-41b0-b72a-9d43ddcfc93d" + "325c3c7f-88e4-4983-889f-7a1b1c9d80a5" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ] }, "ResponseHeaders": { @@ -1041,16 +1041,16 @@ "no-cache" ], "ETag": [ - "W/\"c89b2b16-f98a-40e4-934a-6c1a51cf0d50\"" + "W/\"3cdc3afb-323c-45e9-b23f-72a94b78e642\"" ], "x-ms-request-id": [ - "510976d3-1f83-4438-a497-a54e5e276768" + "75e36549-e07c-41e7-a485-40d681489951" ], "x-ms-correlation-request-id": [ - "11fb432d-1b99-49be-b77f-75e180cf8275" + "6d6daff7-5700-4bac-8128-55c35d000931" ], "x-ms-arm-service-request-id": [ - "ed7d5c3a-f415-4944-a2b1-f616ef35224f" + "92af2c4c-3889-484b-91c3-45fa4d1c8b88" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1060,16 +1060,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11995" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T180058Z:11fb432d-1b99-49be-b77f-75e180cf8275" + "JIOINDIAWEST:20220517T055833Z:6d6daff7-5700-4bac-8128-55c35d000931" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 24 Feb 2022 18:00:58 GMT" + "Tue, 17 May 2022 05:58:33 GMT" ], "Content-Length": [ "1315" @@ -1081,26 +1081,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"PSTestVNETbfee90\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.Network/virtualNetworks/PSTestVNETbfee90\",\r\n \"etag\": \"W/\\\"c89b2b16-f98a-40e4-934a-6c1a51cf0d50\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"4df621e5-7df2-4c31-8cee-d35b9e5fe896\",\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\": \"PSTestSNCbfee90\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.Network/virtualNetworks/PSTestVNETbfee90/subnets/PSTestSNCbfee90\",\r\n \"etag\": \"W/\\\"c89b2b16-f98a-40e4-934a-6c1a51cf0d50\\\"\",\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 },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"PSTestVNET2a0850\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.Network/virtualNetworks/PSTestVNET2a0850\",\r\n \"etag\": \"W/\\\"3cdc3afb-323c-45e9-b23f-72a94b78e642\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"2d55b5f2-3068-4d76-a947-b895926a0fb5\",\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\": \"PSTestSNC2a0850\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.Network/virtualNetworks/PSTestVNET2a0850/subnets/PSTestSNC2a0850\",\r\n \"etag\": \"W/\\\"3cdc3afb-323c-45e9-b23f-72a94b78e642\\\"\",\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 },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.Network/virtualNetworks/PSTestVNETbfee90?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZlZTlkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy9QU1Rlc3RWTkVUYmZlZTkwP2FwaS12ZXJzaW9uPTIwMjEtMDUtMDE=", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.Network/virtualNetworks/PSTestVNET2a0850?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMmEwODVmMWIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy9QU1Rlc3RWTkVUMmEwODUwP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=", "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 \"applicationGatewayIpConfigurations\": []\r\n },\r\n \"name\": \"PSTestSNCbfee90\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"ipAllocations\": []\r\n },\r\n \"location\": \"southeastasia\"\r\n}", + "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 \"applicationGatewayIpConfigurations\": []\r\n },\r\n \"name\": \"PSTestSNC2a0850\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"ipAllocations\": []\r\n },\r\n \"location\": \"southeastasia\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "bf95d4ee-2e44-41b0-b72a-9d43ddcfc93d" + "325c3c7f-88e4-4983-889f-7a1b1c9d80a5" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1120,19 +1120,19 @@ "3" ], "x-ms-request-id": [ - "05f454b6-263c-42d8-8a00-83131e4a53f8" + "c50b23ad-1ab1-4f42-abfc-1f9c420ebdbe" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Network/locations/southeastasia/operations/05f454b6-263c-42d8-8a00-83131e4a53f8?api-version=2021-05-01" + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Network/locations/southeastasia/operations/c50b23ad-1ab1-4f42-abfc-1f9c420ebdbe?api-version=2021-08-01" ], "x-ms-correlation-request-id": [ - "ac113811-e8f3-4f8e-8745-99dbb9027f93" + "e735b83d-840a-4ad3-9e79-27017f589c64" ], "Azure-AsyncNotification": [ "Enabled" ], "x-ms-arm-service-request-id": [ - "3c6ad11d-e91a-4b89-94ca-f14cb6223f7e" + "b148432b-e021-4bb3-a37d-678664fde7ce" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1142,16 +1142,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1198" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T180054Z:ac113811-e8f3-4f8e-8745-99dbb9027f93" + "JIOINDIAWEST:20220517T055829Z:e735b83d-840a-4ad3-9e79-27017f589c64" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 24 Feb 2022 18:00:53 GMT" + "Tue, 17 May 2022 05:58:29 GMT" ], "Content-Length": [ "1313" @@ -1163,23 +1163,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"PSTestVNETbfee90\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.Network/virtualNetworks/PSTestVNETbfee90\",\r\n \"etag\": \"W/\\\"e41aeb6d-4458-4daf-810d-b36ec2b5cf2c\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"4df621e5-7df2-4c31-8cee-d35b9e5fe896\",\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\": \"PSTestSNCbfee90\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.Network/virtualNetworks/PSTestVNETbfee90/subnets/PSTestSNCbfee90\",\r\n \"etag\": \"W/\\\"e41aeb6d-4458-4daf-810d-b36ec2b5cf2c\\\"\",\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 },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"PSTestVNET2a0850\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.Network/virtualNetworks/PSTestVNET2a0850\",\r\n \"etag\": \"W/\\\"6f6abd5c-dc86-49d5-bee0-14df63eed241\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"2d55b5f2-3068-4d76-a947-b895926a0fb5\",\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\": \"PSTestSNC2a0850\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.Network/virtualNetworks/PSTestVNET2a0850/subnets/PSTestSNC2a0850\",\r\n \"etag\": \"W/\\\"6f6abd5c-dc86-49d5-bee0-14df63eed241\\\"\",\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 },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Network/locations/southeastasia/operations/05f454b6-263c-42d8-8a00-83131e4a53f8?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzA1ZjQ1NGI2LTI2M2MtNDJkOC04YTAwLTgzMTMxZTRhNTNmOD9hcGktdmVyc2lvbj0yMDIxLTA1LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Network/locations/southeastasia/operations/c50b23ad-1ab1-4f42-abfc-1f9c420ebdbe?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2M1MGIyM2FkLTFhYjEtNGY0Mi1hYmZjLTFmOWM0MjBlYmRiZT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bf95d4ee-2e44-41b0-b72a-9d43ddcfc93d" + "325c3c7f-88e4-4983-889f-7a1b1c9d80a5" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ] }, "ResponseHeaders": { @@ -1190,13 +1190,13 @@ "no-cache" ], "x-ms-request-id": [ - "f3575c4d-b926-4999-8e01-87e094f77e34" + "6c549346-f0b4-4667-973e-10b1601c98e8" ], "x-ms-correlation-request-id": [ - "c566fd19-f997-4c78-b043-204bf2d2f772" + "f04a0fdf-07be-4621-b17d-0d78027d8d9d" ], "x-ms-arm-service-request-id": [ - "f0a777ea-92e0-49f3-b189-b8a25d3c56cf" + "77a0659b-e023-43b0-9715-df9945530a0b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1206,16 +1206,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11997" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T180057Z:c566fd19-f997-4c78-b043-204bf2d2f772" + "JIOINDIAWEST:20220517T055833Z:f04a0fdf-07be-4621-b17d-0d78027d8d9d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 24 Feb 2022 18:00:57 GMT" + "Tue, 17 May 2022 05:58:33 GMT" ], "Content-Length": [ "29" @@ -1231,22 +1231,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.Network/publicIPAddresses/pstestpublicdnsbfee90?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZlZTlkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BzdGVzdHB1YmxpY2Ruc2JmZWU5MD9hcGktdmVyc2lvbj0yMDIxLTA1LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.Network/publicIPAddresses/pstestpublicdns2a0850?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMmEwODVmMWIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BzdGVzdHB1YmxpY2RuczJhMDg1MD9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d1048d15-898f-4aa4-8819-a3e0d63557bd" + "4d8ea0a8-e318-42d9-af31-380ca021b4b2" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ] }, "ResponseHeaders": { @@ -1260,13 +1260,13 @@ "gateway" ], "x-ms-request-id": [ - "5d9ab5cf-2178-4a24-8b29-e9a6e66eeb76" + "c49e1c48-8781-42bd-8480-2e8c3846824b" ], "x-ms-correlation-request-id": [ - "5d9ab5cf-2178-4a24-8b29-e9a6e66eeb76" + "c49e1c48-8781-42bd-8480-2e8c3846824b" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T180058Z:5d9ab5cf-2178-4a24-8b29-e9a6e66eeb76" + "JIOINDIAWEST:20220517T055833Z:c49e1c48-8781-42bd-8480-2e8c3846824b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1275,7 +1275,7 @@ "nosniff" ], "Date": [ - "Thu, 24 Feb 2022 18:00:58 GMT" + "Tue, 17 May 2022 05:58:33 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1287,23 +1287,23 @@ "245" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/publicIPAddresses/pstestpublicdnsbfee90' under resource group 'PSTestRGbfee9dac' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/publicIPAddresses/pstestpublicdns2a0850' under resource group 'PSTestRG2a085f1b' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.Network/publicIPAddresses/pstestpublicdnsbfee90?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZlZTlkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BzdGVzdHB1YmxpY2Ruc2JmZWU5MD9hcGktdmVyc2lvbj0yMDIxLTA1LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.Network/publicIPAddresses/pstestpublicdns2a0850?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMmEwODVmMWIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BzdGVzdHB1YmxpY2RuczJhMDg1MD9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d1048d15-898f-4aa4-8819-a3e0d63557bd" + "4d8ea0a8-e318-42d9-af31-380ca021b4b2" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ] }, "ResponseHeaders": { @@ -1314,16 +1314,16 @@ "no-cache" ], "ETag": [ - "W/\"922fad77-b693-4007-9c97-25514923337e\"" + "W/\"3e24b0d1-d672-40b4-aad2-5048dd036342\"" ], "x-ms-request-id": [ - "3c7829f0-3caf-42c9-bee3-71e90940f464" + "3985d195-a10a-47af-a400-ac4833f10c1b" ], "x-ms-correlation-request-id": [ - "a6fdfd21-cbdb-4c17-8ea5-d9036f9ec1e6" + "cbc84453-3edb-4ac1-a73c-3c3757b3a0c8" ], "x-ms-arm-service-request-id": [ - "594e18f3-9998-45a5-9e4e-9041b7152d24" + "b9277f05-2d61-47a0-b967-7f8fabdb4783" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1333,16 +1333,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11992" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T180104Z:a6fdfd21-cbdb-4c17-8ea5-d9036f9ec1e6" + "JIOINDIAWEST:20220517T055837Z:cbc84453-3edb-4ac1-a73c-3c3757b3a0c8" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 24 Feb 2022 18:01:04 GMT" + "Tue, 17 May 2022 05:58:37 GMT" ], "Content-Length": [ "699" @@ -1354,26 +1354,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"pstestpublicdnsbfee90\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.Network/publicIPAddresses/pstestpublicdnsbfee90\",\r\n \"etag\": \"W/\\\"922fad77-b693-4007-9c97-25514923337e\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"00e56cd9-2340-4abf-bec9-e2652db99429\",\r\n \"ipAddress\": \"20.212.164.147\",\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 \"tier\": \"Regional\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"pstestpublicdns2a0850\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.Network/publicIPAddresses/pstestpublicdns2a0850\",\r\n \"etag\": \"W/\\\"3e24b0d1-d672-40b4-aad2-5048dd036342\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"ba6e1ab7-c344-4227-9e0b-afddb01e7399\",\r\n \"ipAddress\": \"20.212.221.100\",\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 \"tier\": \"Regional\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.Network/publicIPAddresses/pstestpublicdnsbfee90?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZlZTlkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BzdGVzdHB1YmxpY2Ruc2JmZWU5MD9hcGktdmVyc2lvbj0yMDIxLTA1LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.Network/publicIPAddresses/pstestpublicdns2a0850?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMmEwODVmMWIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BzdGVzdHB1YmxpY2RuczJhMDg1MD9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d1048d15-898f-4aa4-8819-a3e0d63557bd" + "4d8ea0a8-e318-42d9-af31-380ca021b4b2" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ] }, "ResponseHeaders": { @@ -1384,16 +1384,16 @@ "no-cache" ], "ETag": [ - "W/\"922fad77-b693-4007-9c97-25514923337e\"" + "W/\"3e24b0d1-d672-40b4-aad2-5048dd036342\"" ], "x-ms-request-id": [ - "1ac13cba-b0ba-4042-aa83-facb8cdcf207" + "536a8794-e49b-4d7f-96b1-b0288835c10e" ], "x-ms-correlation-request-id": [ - "83d3c72d-0d1a-4ff6-8b4b-55c101f319c8" + "4c1b9b43-82f7-44f6-9e82-bf4d01e3d931" ], "x-ms-arm-service-request-id": [ - "1be0f10f-3ec7-4f4d-b355-e35b5830e19f" + "e8ecbd8c-9d2c-4543-926d-06a1229e5231" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1403,16 +1403,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11991" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T180104Z:83d3c72d-0d1a-4ff6-8b4b-55c101f319c8" + "JIOINDIAWEST:20220517T055838Z:4c1b9b43-82f7-44f6-9e82-bf4d01e3d931" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 24 Feb 2022 18:01:04 GMT" + "Tue, 17 May 2022 05:58:38 GMT" ], "Content-Length": [ "699" @@ -1424,26 +1424,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"pstestpublicdnsbfee90\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.Network/publicIPAddresses/pstestpublicdnsbfee90\",\r\n \"etag\": \"W/\\\"922fad77-b693-4007-9c97-25514923337e\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"00e56cd9-2340-4abf-bec9-e2652db99429\",\r\n \"ipAddress\": \"20.212.164.147\",\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 \"tier\": \"Regional\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"pstestpublicdns2a0850\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.Network/publicIPAddresses/pstestpublicdns2a0850\",\r\n \"etag\": \"W/\\\"3e24b0d1-d672-40b4-aad2-5048dd036342\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"ba6e1ab7-c344-4227-9e0b-afddb01e7399\",\r\n \"ipAddress\": \"20.212.221.100\",\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 \"tier\": \"Regional\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.Network/publicIPAddresses/pstestpublicdnsbfee90?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZlZTlkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BzdGVzdHB1YmxpY2Ruc2JmZWU5MD9hcGktdmVyc2lvbj0yMDIxLTA1LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.Network/publicIPAddresses/pstestpublicdns2a0850?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMmEwODVmMWIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BzdGVzdHB1YmxpY2RuczJhMDg1MD9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "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\": \"southeastasia\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "d1048d15-898f-4aa4-8819-a3e0d63557bd" + "4d8ea0a8-e318-42d9-af31-380ca021b4b2" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1463,19 +1463,19 @@ "1" ], "x-ms-request-id": [ - "56e8395e-34d1-4d09-a553-31167617c7f0" + "5db309bc-5c1c-4f15-a78f-aee7ca9b077b" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Network/locations/southeastasia/operations/56e8395e-34d1-4d09-a553-31167617c7f0?api-version=2021-05-01" + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Network/locations/southeastasia/operations/5db309bc-5c1c-4f15-a78f-aee7ca9b077b?api-version=2021-08-01" ], "x-ms-correlation-request-id": [ - "f4549ad3-b16d-4123-8047-4b6f3ff8fafe" + "a2c652f1-ef77-4633-9655-63f2932aeeef" ], "Azure-AsyncNotification": [ "Enabled" ], "x-ms-arm-service-request-id": [ - "6db99e06-4925-4212-91eb-72568a81747a" + "466a8f9e-bce8-4707-a777-45d6971b5675" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1485,16 +1485,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1197" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T180102Z:f4549ad3-b16d-4123-8047-4b6f3ff8fafe" + "JIOINDIAWEST:20220517T055836Z:a2c652f1-ef77-4633-9655-63f2932aeeef" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 24 Feb 2022 18:01:02 GMT" + "Tue, 17 May 2022 05:58:36 GMT" ], "Content-Length": [ "662" @@ -1506,23 +1506,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"pstestpublicdnsbfee90\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.Network/publicIPAddresses/pstestpublicdnsbfee90\",\r\n \"etag\": \"W/\\\"61c21aa5-4b38-4e4b-8801-501b8761a866\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"00e56cd9-2340-4abf-bec9-e2652db99429\",\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 \"tier\": \"Regional\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"pstestpublicdns2a0850\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.Network/publicIPAddresses/pstestpublicdns2a0850\",\r\n \"etag\": \"W/\\\"eb8132e0-0c87-4601-91c2-e29d19de8f8f\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"ba6e1ab7-c344-4227-9e0b-afddb01e7399\",\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 \"tier\": \"Regional\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Network/locations/southeastasia/operations/56e8395e-34d1-4d09-a553-31167617c7f0?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzU2ZTgzOTVlLTM0ZDEtNGQwOS1hNTUzLTMxMTY3NjE3YzdmMD9hcGktdmVyc2lvbj0yMDIxLTA1LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Network/locations/southeastasia/operations/5db309bc-5c1c-4f15-a78f-aee7ca9b077b?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzVkYjMwOWJjLTVjMWMtNGYxNS1hNzhmLWFlZTdjYTliMDc3Yj9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d1048d15-898f-4aa4-8819-a3e0d63557bd" + "4d8ea0a8-e318-42d9-af31-380ca021b4b2" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ] }, "ResponseHeaders": { @@ -1533,13 +1533,13 @@ "no-cache" ], "x-ms-request-id": [ - "f22c409e-ae36-4e52-b331-ff3a99c1396a" + "0e4ad003-a720-42b2-be8f-8ae9ba223ff9" ], "x-ms-correlation-request-id": [ - "fe971c95-5fc2-43d1-8331-9d78a46a0e0c" + "2aa1579b-95f1-4841-bac5-a1a0c44e8f78" ], "x-ms-arm-service-request-id": [ - "e6b2c76e-6159-4879-a5a9-2a136360aa94" + "7e4de21b-87f9-4d7e-8a9d-2367154d9d3b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1549,16 +1549,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11993" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T180103Z:fe971c95-5fc2-43d1-8331-9d78a46a0e0c" + "JIOINDIAWEST:20220517T055837Z:2aa1579b-95f1-4841-bac5-a1a0c44e8f78" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 24 Feb 2022 18:01:03 GMT" + "Tue, 17 May 2022 05:58:37 GMT" ], "Content-Length": [ "29" @@ -1574,22 +1574,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGbfee90?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZlZTlkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtTZWN1cml0eUdyb3Vwcy9QU1Rlc3ROU0diZmVlOTA/YXBpLXZlcnNpb249MjAyMS0wNS0wMQ==", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG2a0850?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMmEwODVmMWIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtTZWN1cml0eUdyb3Vwcy9QU1Rlc3ROU0cyYTA4NTA/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "61676428-4dae-41c0-8d5d-3d7cd366a66c" + "377e1d28-2c6c-49be-bdda-644e6b606acb" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ] }, "ResponseHeaders": { @@ -1603,13 +1603,13 @@ "gateway" ], "x-ms-request-id": [ - "1799a795-52a8-4541-a6ce-ad6ae288ae0f" + "d93e322d-24ba-4666-b47b-0f4388001191" ], "x-ms-correlation-request-id": [ - "1799a795-52a8-4541-a6ce-ad6ae288ae0f" + "d93e322d-24ba-4666-b47b-0f4388001191" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T180105Z:1799a795-52a8-4541-a6ce-ad6ae288ae0f" + "JIOINDIAWEST:20220517T055838Z:d93e322d-24ba-4666-b47b-0f4388001191" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1618,7 +1618,7 @@ "nosniff" ], "Date": [ - "Thu, 24 Feb 2022 18:01:04 GMT" + "Tue, 17 May 2022 05:58:38 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1630,23 +1630,23 @@ "243" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/networkSecurityGroups/PSTestNSGbfee90' under resource group 'PSTestRGbfee9dac' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/networkSecurityGroups/PSTestNSG2a0850' under resource group 'PSTestRG2a085f1b' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGbfee90?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZlZTlkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtTZWN1cml0eUdyb3Vwcy9QU1Rlc3ROU0diZmVlOTA/YXBpLXZlcnNpb249MjAyMS0wNS0wMQ==", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG2a0850?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMmEwODVmMWIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtTZWN1cml0eUdyb3Vwcy9QU1Rlc3ROU0cyYTA4NTA/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "61676428-4dae-41c0-8d5d-3d7cd366a66c" + "377e1d28-2c6c-49be-bdda-644e6b606acb" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ] }, "ResponseHeaders": { @@ -1657,16 +1657,16 @@ "no-cache" ], "ETag": [ - "W/\"ef092dfb-f01f-48bd-99a4-2fdaf554475a\"" + "W/\"0b0776ed-9594-4709-8f4d-a88753b20709\"" ], "x-ms-request-id": [ - "cc917bfc-b461-4a1c-988c-561047cacc65" + "2cde86fc-dd1e-4267-bf3e-02b567c6a19b" ], "x-ms-correlation-request-id": [ - "5082b23f-af31-4457-a8ed-22df6da407eb" + "12180154-ad81-4e8e-a6e2-cb17c24f3624" ], "x-ms-arm-service-request-id": [ - "7b580a96-e23f-4537-81e6-a0c9a3a39946" + "5517df85-9697-42ec-b8dc-b25ea85256fb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1676,16 +1676,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11988" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T180112Z:5082b23f-af31-4457-a8ed-22df6da407eb" + "JIOINDIAWEST:20220517T055843Z:12180154-ad81-4e8e-a6e2-cb17c24f3624" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 24 Feb 2022 18:01:12 GMT" + "Tue, 17 May 2022 05:58:43 GMT" ], "Content-Length": [ "8475" @@ -1697,26 +1697,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"PSTestNSGbfee90\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGbfee90\",\r\n \"etag\": \"W/\\\"ef092dfb-f01f-48bd-99a4-2fdaf554475a\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"1d76e63c-ad6e-448a-82b2-acfe0119e6c6\",\r\n \"securityRules\": [\r\n {\r\n \"name\": \"PSTestNSGRuleRDPbfee90\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGbfee90/securityRules/PSTestNSGRuleRDPbfee90\",\r\n \"etag\": \"W/\\\"ef092dfb-f01f-48bd-99a4-2fdaf554475a\\\"\",\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\": \"PSTestNSGRuleWebbfee90\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGbfee90/securityRules/PSTestNSGRuleWebbfee90\",\r\n \"etag\": \"W/\\\"ef092dfb-f01f-48bd-99a4-2fdaf554475a\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGbfee90/defaultSecurityRules/AllowVnetInBound\",\r\n \"etag\": \"W/\\\"ef092dfb-f01f-48bd-99a4-2fdaf554475a\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGbfee90/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\r\n \"etag\": \"W/\\\"ef092dfb-f01f-48bd-99a4-2fdaf554475a\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGbfee90/defaultSecurityRules/DenyAllInBound\",\r\n \"etag\": \"W/\\\"ef092dfb-f01f-48bd-99a4-2fdaf554475a\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGbfee90/defaultSecurityRules/AllowVnetOutBound\",\r\n \"etag\": \"W/\\\"ef092dfb-f01f-48bd-99a4-2fdaf554475a\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGbfee90/defaultSecurityRules/AllowInternetOutBound\",\r\n \"etag\": \"W/\\\"ef092dfb-f01f-48bd-99a4-2fdaf554475a\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGbfee90/defaultSecurityRules/DenyAllOutBound\",\r\n \"etag\": \"W/\\\"ef092dfb-f01f-48bd-99a4-2fdaf554475a\\\"\",\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}", + "ResponseBody": "{\r\n \"name\": \"PSTestNSG2a0850\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG2a0850\",\r\n \"etag\": \"W/\\\"0b0776ed-9594-4709-8f4d-a88753b20709\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"db0cf67d-9ca9-410c-aa0c-baed1bd3990d\",\r\n \"securityRules\": [\r\n {\r\n \"name\": \"PSTestNSGRuleRDP2a0850\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG2a0850/securityRules/PSTestNSGRuleRDP2a0850\",\r\n \"etag\": \"W/\\\"0b0776ed-9594-4709-8f4d-a88753b20709\\\"\",\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\": \"PSTestNSGRuleWeb2a0850\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG2a0850/securityRules/PSTestNSGRuleWeb2a0850\",\r\n \"etag\": \"W/\\\"0b0776ed-9594-4709-8f4d-a88753b20709\\\"\",\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/PSTestRG2a085f1b/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG2a0850/defaultSecurityRules/AllowVnetInBound\",\r\n \"etag\": \"W/\\\"0b0776ed-9594-4709-8f4d-a88753b20709\\\"\",\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/PSTestRG2a085f1b/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG2a0850/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\r\n \"etag\": \"W/\\\"0b0776ed-9594-4709-8f4d-a88753b20709\\\"\",\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/PSTestRG2a085f1b/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG2a0850/defaultSecurityRules/DenyAllInBound\",\r\n \"etag\": \"W/\\\"0b0776ed-9594-4709-8f4d-a88753b20709\\\"\",\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/PSTestRG2a085f1b/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG2a0850/defaultSecurityRules/AllowVnetOutBound\",\r\n \"etag\": \"W/\\\"0b0776ed-9594-4709-8f4d-a88753b20709\\\"\",\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/PSTestRG2a085f1b/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG2a0850/defaultSecurityRules/AllowInternetOutBound\",\r\n \"etag\": \"W/\\\"0b0776ed-9594-4709-8f4d-a88753b20709\\\"\",\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/PSTestRG2a085f1b/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG2a0850/defaultSecurityRules/DenyAllOutBound\",\r\n \"etag\": \"W/\\\"0b0776ed-9594-4709-8f4d-a88753b20709\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGbfee90?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZlZTlkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtTZWN1cml0eUdyb3Vwcy9QU1Rlc3ROU0diZmVlOTA/YXBpLXZlcnNpb249MjAyMS0wNS0wMQ==", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG2a0850?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMmEwODVmMWIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtTZWN1cml0eUdyb3Vwcy9QU1Rlc3ROU0cyYTA4NTA/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "61676428-4dae-41c0-8d5d-3d7cd366a66c" + "377e1d28-2c6c-49be-bdda-644e6b606acb" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ] }, "ResponseHeaders": { @@ -1727,16 +1727,16 @@ "no-cache" ], "ETag": [ - "W/\"ef092dfb-f01f-48bd-99a4-2fdaf554475a\"" + "W/\"0b0776ed-9594-4709-8f4d-a88753b20709\"" ], "x-ms-request-id": [ - "e5eb7204-df23-4df8-ad69-da848dcf87bf" + "ef256beb-3233-4466-85c9-3efabc2819f0" ], "x-ms-correlation-request-id": [ - "75fa2d78-57ae-408e-a07c-84f341343241" + "d6bf1ec3-617c-40b4-8149-f61b5ba49f06" ], "x-ms-arm-service-request-id": [ - "7ed7dc56-8869-42a0-b89c-e26703a278d2" + "a1ac9a4f-2ff3-4de0-96c1-c3388c35c4ea" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1746,16 +1746,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "11987" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T180112Z:75fa2d78-57ae-408e-a07c-84f341343241" + "JIOINDIAWEST:20220517T055844Z:d6bf1ec3-617c-40b4-8149-f61b5ba49f06" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 24 Feb 2022 18:01:12 GMT" + "Tue, 17 May 2022 05:58:43 GMT" ], "Content-Length": [ "8475" @@ -1767,26 +1767,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"PSTestNSGbfee90\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGbfee90\",\r\n \"etag\": \"W/\\\"ef092dfb-f01f-48bd-99a4-2fdaf554475a\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"1d76e63c-ad6e-448a-82b2-acfe0119e6c6\",\r\n \"securityRules\": [\r\n {\r\n \"name\": \"PSTestNSGRuleRDPbfee90\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGbfee90/securityRules/PSTestNSGRuleRDPbfee90\",\r\n \"etag\": \"W/\\\"ef092dfb-f01f-48bd-99a4-2fdaf554475a\\\"\",\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\": \"PSTestNSGRuleWebbfee90\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGbfee90/securityRules/PSTestNSGRuleWebbfee90\",\r\n \"etag\": \"W/\\\"ef092dfb-f01f-48bd-99a4-2fdaf554475a\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGbfee90/defaultSecurityRules/AllowVnetInBound\",\r\n \"etag\": \"W/\\\"ef092dfb-f01f-48bd-99a4-2fdaf554475a\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGbfee90/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\r\n \"etag\": \"W/\\\"ef092dfb-f01f-48bd-99a4-2fdaf554475a\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGbfee90/defaultSecurityRules/DenyAllInBound\",\r\n \"etag\": \"W/\\\"ef092dfb-f01f-48bd-99a4-2fdaf554475a\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGbfee90/defaultSecurityRules/AllowVnetOutBound\",\r\n \"etag\": \"W/\\\"ef092dfb-f01f-48bd-99a4-2fdaf554475a\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGbfee90/defaultSecurityRules/AllowInternetOutBound\",\r\n \"etag\": \"W/\\\"ef092dfb-f01f-48bd-99a4-2fdaf554475a\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGbfee90/defaultSecurityRules/DenyAllOutBound\",\r\n \"etag\": \"W/\\\"ef092dfb-f01f-48bd-99a4-2fdaf554475a\\\"\",\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}", + "ResponseBody": "{\r\n \"name\": \"PSTestNSG2a0850\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG2a0850\",\r\n \"etag\": \"W/\\\"0b0776ed-9594-4709-8f4d-a88753b20709\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"db0cf67d-9ca9-410c-aa0c-baed1bd3990d\",\r\n \"securityRules\": [\r\n {\r\n \"name\": \"PSTestNSGRuleRDP2a0850\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG2a0850/securityRules/PSTestNSGRuleRDP2a0850\",\r\n \"etag\": \"W/\\\"0b0776ed-9594-4709-8f4d-a88753b20709\\\"\",\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\": \"PSTestNSGRuleWeb2a0850\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG2a0850/securityRules/PSTestNSGRuleWeb2a0850\",\r\n \"etag\": \"W/\\\"0b0776ed-9594-4709-8f4d-a88753b20709\\\"\",\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/PSTestRG2a085f1b/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG2a0850/defaultSecurityRules/AllowVnetInBound\",\r\n \"etag\": \"W/\\\"0b0776ed-9594-4709-8f4d-a88753b20709\\\"\",\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/PSTestRG2a085f1b/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG2a0850/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\r\n \"etag\": \"W/\\\"0b0776ed-9594-4709-8f4d-a88753b20709\\\"\",\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/PSTestRG2a085f1b/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG2a0850/defaultSecurityRules/DenyAllInBound\",\r\n \"etag\": \"W/\\\"0b0776ed-9594-4709-8f4d-a88753b20709\\\"\",\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/PSTestRG2a085f1b/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG2a0850/defaultSecurityRules/AllowVnetOutBound\",\r\n \"etag\": \"W/\\\"0b0776ed-9594-4709-8f4d-a88753b20709\\\"\",\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/PSTestRG2a085f1b/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG2a0850/defaultSecurityRules/AllowInternetOutBound\",\r\n \"etag\": \"W/\\\"0b0776ed-9594-4709-8f4d-a88753b20709\\\"\",\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/PSTestRG2a085f1b/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG2a0850/defaultSecurityRules/DenyAllOutBound\",\r\n \"etag\": \"W/\\\"0b0776ed-9594-4709-8f4d-a88753b20709\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGbfee90?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZlZTlkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtTZWN1cml0eUdyb3Vwcy9QU1Rlc3ROU0diZmVlOTA/YXBpLXZlcnNpb249MjAyMS0wNS0wMQ==", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG2a0850?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMmEwODVmMWIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtTZWN1cml0eUdyb3Vwcy9QU1Rlc3ROU0cyYTA4NTA/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==", "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\": \"PSTestNSGRuleRDPbfee90\"\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\": \"PSTestNSGRuleWebbfee90\"\r\n }\r\n ]\r\n },\r\n \"location\": \"southeastasia\"\r\n}", + "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\": \"PSTestNSGRuleRDP2a0850\"\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\": \"PSTestNSGRuleWeb2a0850\"\r\n }\r\n ]\r\n },\r\n \"location\": \"southeastasia\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "61676428-4dae-41c0-8d5d-3d7cd366a66c" + "377e1d28-2c6c-49be-bdda-644e6b606acb" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1806,19 +1806,19 @@ "3" ], "x-ms-request-id": [ - "59eee349-9d31-441a-bf75-fee233afbdac" + "a1f5cda9-ecc4-4fd4-bffb-471d5c754fac" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Network/locations/southeastasia/operations/59eee349-9d31-441a-bf75-fee233afbdac?api-version=2021-05-01" + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Network/locations/southeastasia/operations/a1f5cda9-ecc4-4fd4-bffb-471d5c754fac?api-version=2021-08-01" ], "x-ms-correlation-request-id": [ - "4d1bbfe1-6488-4949-b5a9-7015cf69203f" + "8e646693-9f15-4ac5-af09-1ab38e2025c4" ], "Azure-AsyncNotification": [ "Enabled" ], "x-ms-arm-service-request-id": [ - "60148d92-e447-4008-a30c-3e1ff75707d0" + "c77f3f1c-2d01-4242-a946-1bba0684d24d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1828,16 +1828,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1196" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T180108Z:4d1bbfe1-6488-4949-b5a9-7015cf69203f" + "JIOINDIAWEST:20220517T055840Z:8e646693-9f15-4ac5-af09-1ab38e2025c4" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 24 Feb 2022 18:01:08 GMT" + "Tue, 17 May 2022 05:58:40 GMT" ], "Content-Length": [ "8466" @@ -1849,23 +1849,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"PSTestNSGbfee90\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGbfee90\",\r\n \"etag\": \"W/\\\"6bc504f6-c53a-4454-a09c-a27bda010bd8\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"1d76e63c-ad6e-448a-82b2-acfe0119e6c6\",\r\n \"securityRules\": [\r\n {\r\n \"name\": \"PSTestNSGRuleRDPbfee90\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGbfee90/securityRules/PSTestNSGRuleRDPbfee90\",\r\n \"etag\": \"W/\\\"6bc504f6-c53a-4454-a09c-a27bda010bd8\\\"\",\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\": \"PSTestNSGRuleWebbfee90\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGbfee90/securityRules/PSTestNSGRuleWebbfee90\",\r\n \"etag\": \"W/\\\"6bc504f6-c53a-4454-a09c-a27bda010bd8\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGbfee90/defaultSecurityRules/AllowVnetInBound\",\r\n \"etag\": \"W/\\\"6bc504f6-c53a-4454-a09c-a27bda010bd8\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGbfee90/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\r\n \"etag\": \"W/\\\"6bc504f6-c53a-4454-a09c-a27bda010bd8\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGbfee90/defaultSecurityRules/DenyAllInBound\",\r\n \"etag\": \"W/\\\"6bc504f6-c53a-4454-a09c-a27bda010bd8\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGbfee90/defaultSecurityRules/AllowVnetOutBound\",\r\n \"etag\": \"W/\\\"6bc504f6-c53a-4454-a09c-a27bda010bd8\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGbfee90/defaultSecurityRules/AllowInternetOutBound\",\r\n \"etag\": \"W/\\\"6bc504f6-c53a-4454-a09c-a27bda010bd8\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGbfee90/defaultSecurityRules/DenyAllOutBound\",\r\n \"etag\": \"W/\\\"6bc504f6-c53a-4454-a09c-a27bda010bd8\\\"\",\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}", + "ResponseBody": "{\r\n \"name\": \"PSTestNSG2a0850\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG2a0850\",\r\n \"etag\": \"W/\\\"d362293e-e566-470d-9ccc-1dc982ad0591\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"db0cf67d-9ca9-410c-aa0c-baed1bd3990d\",\r\n \"securityRules\": [\r\n {\r\n \"name\": \"PSTestNSGRuleRDP2a0850\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG2a0850/securityRules/PSTestNSGRuleRDP2a0850\",\r\n \"etag\": \"W/\\\"d362293e-e566-470d-9ccc-1dc982ad0591\\\"\",\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\": \"PSTestNSGRuleWeb2a0850\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG2a0850/securityRules/PSTestNSGRuleWeb2a0850\",\r\n \"etag\": \"W/\\\"d362293e-e566-470d-9ccc-1dc982ad0591\\\"\",\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/PSTestRG2a085f1b/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG2a0850/defaultSecurityRules/AllowVnetInBound\",\r\n \"etag\": \"W/\\\"d362293e-e566-470d-9ccc-1dc982ad0591\\\"\",\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/PSTestRG2a085f1b/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG2a0850/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\r\n \"etag\": \"W/\\\"d362293e-e566-470d-9ccc-1dc982ad0591\\\"\",\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/PSTestRG2a085f1b/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG2a0850/defaultSecurityRules/DenyAllInBound\",\r\n \"etag\": \"W/\\\"d362293e-e566-470d-9ccc-1dc982ad0591\\\"\",\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/PSTestRG2a085f1b/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG2a0850/defaultSecurityRules/AllowVnetOutBound\",\r\n \"etag\": \"W/\\\"d362293e-e566-470d-9ccc-1dc982ad0591\\\"\",\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/PSTestRG2a085f1b/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG2a0850/defaultSecurityRules/AllowInternetOutBound\",\r\n \"etag\": \"W/\\\"d362293e-e566-470d-9ccc-1dc982ad0591\\\"\",\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/PSTestRG2a085f1b/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG2a0850/defaultSecurityRules/DenyAllOutBound\",\r\n \"etag\": \"W/\\\"d362293e-e566-470d-9ccc-1dc982ad0591\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Network/locations/southeastasia/operations/59eee349-9d31-441a-bf75-fee233afbdac?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzU5ZWVlMzQ5LTlkMzEtNDQxYS1iZjc1LWZlZTIzM2FmYmRhYz9hcGktdmVyc2lvbj0yMDIxLTA1LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Network/locations/southeastasia/operations/a1f5cda9-ecc4-4fd4-bffb-471d5c754fac?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2ExZjVjZGE5LWVjYzQtNGZkNC1iZmZiLTQ3MWQ1Yzc1NGZhYz9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "61676428-4dae-41c0-8d5d-3d7cd366a66c" + "377e1d28-2c6c-49be-bdda-644e6b606acb" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ] }, "ResponseHeaders": { @@ -1876,13 +1876,13 @@ "no-cache" ], "x-ms-request-id": [ - "32396515-f24e-4ed4-9583-6d26508b7a7f" + "2beb5cb1-1271-4bfa-8e5d-798e07058d86" ], "x-ms-correlation-request-id": [ - "8f06408e-1214-44c9-8177-5d3507237d44" + "e742232d-fa67-4dd3-95c6-2584cfe2aeac" ], "x-ms-arm-service-request-id": [ - "a60d56a2-4060-440a-837a-4da1a93e5b38" + "dd47ffa1-38f5-4cfa-8f2f-5289fc3dc723" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1892,16 +1892,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11989" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T180112Z:8f06408e-1214-44c9-8177-5d3507237d44" + "JIOINDIAWEST:20220517T055843Z:e742232d-fa67-4dd3-95c6-2584cfe2aeac" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 24 Feb 2022 18:01:11 GMT" + "Tue, 17 May 2022 05:58:43 GMT" ], "Content-Length": [ "29" @@ -1917,22 +1917,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.Network/networkInterfaces/PSTestNICbfee90?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZlZTlkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL1BTVGVzdE5JQ2JmZWU5MD9hcGktdmVyc2lvbj0yMDIxLTA1LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.Network/networkInterfaces/PSTestNIC2a0850?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMmEwODVmMWIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL1BTVGVzdE5JQzJhMDg1MD9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "472c7e1e-8ab5-4a9e-8c69-7452eb936d3f" + "87ccc5e7-da61-4952-95bd-c5c9c8924ff0" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ] }, "ResponseHeaders": { @@ -1946,13 +1946,13 @@ "gateway" ], "x-ms-request-id": [ - "32583e02-30f0-4172-add9-f308c5cb0c5d" + "58ffa2d6-d415-4628-b835-22f5c7ac72af" ], "x-ms-correlation-request-id": [ - "32583e02-30f0-4172-add9-f308c5cb0c5d" + "58ffa2d6-d415-4628-b835-22f5c7ac72af" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T180113Z:32583e02-30f0-4172-add9-f308c5cb0c5d" + "JIOINDIAWEST:20220517T055844Z:58ffa2d6-d415-4628-b835-22f5c7ac72af" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1961,7 +1961,7 @@ "nosniff" ], "Date": [ - "Thu, 24 Feb 2022 18:01:12 GMT" + "Tue, 17 May 2022 05:58:44 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1973,23 +1973,23 @@ "239" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/networkInterfaces/PSTestNICbfee90' under resource group 'PSTestRGbfee9dac' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/networkInterfaces/PSTestNIC2a0850' under resource group 'PSTestRG2a085f1b' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.Network/networkInterfaces/PSTestNICbfee90?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZlZTlkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL1BTVGVzdE5JQ2JmZWU5MD9hcGktdmVyc2lvbj0yMDIxLTA1LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.Network/networkInterfaces/PSTestNIC2a0850?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMmEwODVmMWIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL1BTVGVzdE5JQzJhMDg1MD9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "472c7e1e-8ab5-4a9e-8c69-7452eb936d3f" + "87ccc5e7-da61-4952-95bd-c5c9c8924ff0" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ] }, "ResponseHeaders": { @@ -2000,16 +2000,16 @@ "no-cache" ], "ETag": [ - "W/\"ebee2fd4-135f-45ae-97f3-f65c1cb76fe4\"" + "W/\"c28b8b6b-4df4-4ca0-91db-0027fc515c14\"" ], "x-ms-request-id": [ - "de4de952-a5d4-4a54-979a-6cda2c44424a" + "9d108ae4-464d-41df-a102-f992eebf0c50" ], "x-ms-correlation-request-id": [ - "4adde6fb-8b40-4afb-8d5d-01569855b23b" + "2feee1f9-7fc0-4c15-8b07-9fa63a8a22ce" ], "x-ms-arm-service-request-id": [ - "070170b4-84ac-44f7-a4e6-295678160d0f" + "1b1175bc-f58a-42fb-867d-ee408416c383" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2019,19 +2019,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" + "11985" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T180118Z:4adde6fb-8b40-4afb-8d5d-01569855b23b" + "JIOINDIAWEST:20220517T055846Z:2feee1f9-7fc0-4c15-8b07-9fa63a8a22ce" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 24 Feb 2022 18:01:18 GMT" + "Tue, 17 May 2022 05:58:46 GMT" ], "Content-Length": [ - "2143" + "2165" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2040,26 +2040,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"PSTestNICbfee90\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.Network/networkInterfaces/PSTestNICbfee90\",\r\n \"etag\": \"W/\\\"ebee2fd4-135f-45ae-97f3-f65c1cb76fe4\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"32036cff-c072-4254-a0e9-188d349c66e9\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.Network/networkInterfaces/PSTestNICbfee90/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"ebee2fd4-135f-45ae-97f3-f65c1cb76fe4\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.Network/publicIPAddresses/pstestpublicdnsbfee90\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.Network/virtualNetworks/PSTestVNETbfee90/subnets/PSTestSNCbfee90\"\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\": \"2uq5mtpspuyuzdho0nnz2x5isg.ix.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"vnetEncryptionSupported\": false,\r\n \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGbfee90\"\r\n },\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": [],\r\n \"nicType\": \"Standard\"\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"PSTestNIC2a0850\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.Network/networkInterfaces/PSTestNIC2a0850\",\r\n \"etag\": \"W/\\\"c28b8b6b-4df4-4ca0-91db-0027fc515c14\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"f649e165-0c43-4bb3-9e2e-f4ae9bf08f87\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.Network/networkInterfaces/PSTestNIC2a0850/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"c28b8b6b-4df4-4ca0-91db-0027fc515c14\\\"\",\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/PSTestRG2a085f1b/providers/Microsoft.Network/publicIPAddresses/pstestpublicdns2a0850\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.Network/virtualNetworks/PSTestVNET2a0850/subnets/PSTestSNC2a0850\"\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\": \"4k0vklligb1e1kkhxckze0qpwf.ix.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"vnetEncryptionSupported\": false,\r\n \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG2a0850\"\r\n },\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": [],\r\n \"nicType\": \"Standard\"\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"kind\": \"Regular\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.Network/networkInterfaces/PSTestNICbfee90?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZlZTlkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL1BTVGVzdE5JQ2JmZWU5MD9hcGktdmVyc2lvbj0yMDIxLTA1LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.Network/networkInterfaces/PSTestNIC2a0850?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMmEwODVmMWIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL1BTVGVzdE5JQzJhMDg1MD9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "472c7e1e-8ab5-4a9e-8c69-7452eb936d3f" + "87ccc5e7-da61-4952-95bd-c5c9c8924ff0" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ] }, "ResponseHeaders": { @@ -2070,16 +2070,16 @@ "no-cache" ], "ETag": [ - "W/\"ebee2fd4-135f-45ae-97f3-f65c1cb76fe4\"" + "W/\"c28b8b6b-4df4-4ca0-91db-0027fc515c14\"" ], "x-ms-request-id": [ - "7ce28ff4-9d93-45b6-a266-dfd882be1398" + "c511d3b2-cc13-4d58-8597-a96d02c7a067" ], "x-ms-correlation-request-id": [ - "dbe51b44-e7f9-4f5c-b627-fd4dc9b1bb66" + "f7f1c592-487a-459d-9951-a76a78d0813b" ], "x-ms-arm-service-request-id": [ - "f06756a8-d5b9-4cd7-aecd-fc063b7944e1" + "fef45bae-e044-4c77-b3bb-3d5df1676721" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2089,19 +2089,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" + "11984" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T180118Z:dbe51b44-e7f9-4f5c-b627-fd4dc9b1bb66" + "JIOINDIAWEST:20220517T055846Z:f7f1c592-487a-459d-9951-a76a78d0813b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 24 Feb 2022 18:01:18 GMT" + "Tue, 17 May 2022 05:58:46 GMT" ], "Content-Length": [ - "2143" + "2165" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2110,26 +2110,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"PSTestNICbfee90\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.Network/networkInterfaces/PSTestNICbfee90\",\r\n \"etag\": \"W/\\\"ebee2fd4-135f-45ae-97f3-f65c1cb76fe4\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"32036cff-c072-4254-a0e9-188d349c66e9\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.Network/networkInterfaces/PSTestNICbfee90/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"ebee2fd4-135f-45ae-97f3-f65c1cb76fe4\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.Network/publicIPAddresses/pstestpublicdnsbfee90\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.Network/virtualNetworks/PSTestVNETbfee90/subnets/PSTestSNCbfee90\"\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\": \"2uq5mtpspuyuzdho0nnz2x5isg.ix.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"vnetEncryptionSupported\": false,\r\n \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGbfee90\"\r\n },\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": [],\r\n \"nicType\": \"Standard\"\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"PSTestNIC2a0850\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.Network/networkInterfaces/PSTestNIC2a0850\",\r\n \"etag\": \"W/\\\"c28b8b6b-4df4-4ca0-91db-0027fc515c14\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"f649e165-0c43-4bb3-9e2e-f4ae9bf08f87\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.Network/networkInterfaces/PSTestNIC2a0850/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"c28b8b6b-4df4-4ca0-91db-0027fc515c14\\\"\",\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/PSTestRG2a085f1b/providers/Microsoft.Network/publicIPAddresses/pstestpublicdns2a0850\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.Network/virtualNetworks/PSTestVNET2a0850/subnets/PSTestSNC2a0850\"\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\": \"4k0vklligb1e1kkhxckze0qpwf.ix.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"vnetEncryptionSupported\": false,\r\n \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG2a0850\"\r\n },\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": [],\r\n \"nicType\": \"Standard\"\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"kind\": \"Regular\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.Network/networkInterfaces/PSTestNICbfee90?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZlZTlkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL1BTVGVzdE5JQ2JmZWU5MD9hcGktdmVyc2lvbj0yMDIxLTA1LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.Network/networkInterfaces/PSTestNIC2a0850?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMmEwODVmMWIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL1BTVGVzdE5JQzJhMDg1MD9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"networkSecurityGroup\": {\r\n \"properties\": {\r\n \"securityRules\": []\r\n },\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGbfee90\",\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 \"applicationGatewayIpConfigurations\": []\r\n },\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.Network/virtualNetworks/PSTestVNETbfee90/subnets/PSTestSNCbfee90\"\r\n },\r\n \"primary\": true,\r\n \"publicIPAddress\": {\r\n \"properties\": {\r\n \"ipTags\": []\r\n },\r\n \"zones\": [],\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.Network/publicIPAddresses/pstestpublicdnsbfee90\",\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\": \"southeastasia\"\r\n}", + "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/PSTestRG2a085f1b/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG2a0850\",\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 \"applicationGatewayIpConfigurations\": []\r\n },\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.Network/virtualNetworks/PSTestVNET2a0850/subnets/PSTestSNC2a0850\"\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/PSTestRG2a085f1b/providers/Microsoft.Network/publicIPAddresses/pstestpublicdns2a0850\",\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\": \"southeastasia\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "472c7e1e-8ab5-4a9e-8c69-7452eb936d3f" + "87ccc5e7-da61-4952-95bd-c5c9c8924ff0" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2146,19 +2146,19 @@ "no-cache" ], "x-ms-request-id": [ - "0dc4311e-c123-481b-9139-fdbc2d06521c" + "35d34885-3ca5-43ad-9d8c-9e16d3a18423" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Network/locations/southeastasia/operations/0dc4311e-c123-481b-9139-fdbc2d06521c?api-version=2021-05-01" + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Network/locations/southeastasia/operations/35d34885-3ca5-43ad-9d8c-9e16d3a18423?api-version=2021-08-01" ], "x-ms-correlation-request-id": [ - "413453bf-8b1b-4f5d-b31d-b14b91edd14b" + "7ad347f9-1294-4d2c-a4e8-413abb7512ca" ], "Azure-AsyncNotification": [ "Enabled" ], "x-ms-arm-service-request-id": [ - "c0e056ba-4782-4196-ad3d-5014eaccadcd" + "3c3bae8d-f4c9-4351-86ba-34f4242772da" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2168,19 +2168,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1195" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T180118Z:413453bf-8b1b-4f5d-b31d-b14b91edd14b" + "JIOINDIAWEST:20220517T055846Z:7ad347f9-1294-4d2c-a4e8-413abb7512ca" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 24 Feb 2022 18:01:18 GMT" + "Tue, 17 May 2022 05:58:46 GMT" ], "Content-Length": [ - "2143" + "2165" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2189,26 +2189,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"PSTestNICbfee90\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.Network/networkInterfaces/PSTestNICbfee90\",\r\n \"etag\": \"W/\\\"ebee2fd4-135f-45ae-97f3-f65c1cb76fe4\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"32036cff-c072-4254-a0e9-188d349c66e9\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.Network/networkInterfaces/PSTestNICbfee90/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"ebee2fd4-135f-45ae-97f3-f65c1cb76fe4\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.Network/publicIPAddresses/pstestpublicdnsbfee90\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.Network/virtualNetworks/PSTestVNETbfee90/subnets/PSTestSNCbfee90\"\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\": \"2uq5mtpspuyuzdho0nnz2x5isg.ix.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"vnetEncryptionSupported\": false,\r\n \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGbfee90\"\r\n },\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": [],\r\n \"nicType\": \"Standard\"\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"PSTestNIC2a0850\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.Network/networkInterfaces/PSTestNIC2a0850\",\r\n \"etag\": \"W/\\\"c28b8b6b-4df4-4ca0-91db-0027fc515c14\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"f649e165-0c43-4bb3-9e2e-f4ae9bf08f87\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.Network/networkInterfaces/PSTestNIC2a0850/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"c28b8b6b-4df4-4ca0-91db-0027fc515c14\\\"\",\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/PSTestRG2a085f1b/providers/Microsoft.Network/publicIPAddresses/pstestpublicdns2a0850\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.Network/virtualNetworks/PSTestVNET2a0850/subnets/PSTestSNC2a0850\"\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\": \"4k0vklligb1e1kkhxckze0qpwf.ix.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"vnetEncryptionSupported\": false,\r\n \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG2a0850\"\r\n },\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": [],\r\n \"nicType\": \"Standard\"\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"kind\": \"Regular\"\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Storage/checkNameAvailability?api-version=2021-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9jaGVja05hbWVBdmFpbGFiaWxpdHk/YXBpLXZlcnNpb249MjAyMS0wMi0wMQ==", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Storage/checkNameAvailability?api-version=2021-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9jaGVja05hbWVBdmFpbGFiaWxpdHk/YXBpLXZlcnNpb249MjAyMS0wMi0wMQ==", "RequestMethod": "POST", - "RequestBody": "{\r\n \"name\": \"tespstestpste022413010\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n}", + "RequestBody": "{\r\n \"name\": \"tespstestpste051711280\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "13a517ba-13cc-45ed-bb0b-85c82ca4ada3" + "61f8a6eb-a8e4-447c-9b83-1b6a0a6764fc" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.PowerShell.Cmdlets.Compute.Helpers.Storage.StorageManagementClient/4.23.0" + "Microsoft.Azure.PowerShell.Cmdlets.Compute.Helpers.Storage.StorageManagementClient/4.26.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2225,7 +2225,7 @@ "no-cache" ], "x-ms-request-id": [ - "f0e69b2a-687f-4f17-ad5c-72497cf19ab5" + "72b04599-d8bb-428c-94cf-f32d2f52626d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2237,16 +2237,16 @@ "11999" ], "x-ms-correlation-request-id": [ - "5c6b457a-65bf-4319-9f56-bb94448e2b11" + "4a44317a-4ee5-44a2-932e-eeb983369682" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T180119Z:5c6b457a-65bf-4319-9f56-bb94448e2b11" + "WESTINDIA:20220517T055848Z:4a44317a-4ee5-44a2-932e-eeb983369682" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 24 Feb 2022 18:01:19 GMT" + "Tue, 17 May 2022 05:58:48 GMT" ], "Content-Length": [ "22" @@ -2262,22 +2262,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.Compute/virtualMachines/PSTestVMbfee90?api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZlZTlkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy9QU1Rlc3RWTWJmZWU5MD9hcGktdmVyc2lvbj0yMDIxLTExLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.Compute/virtualMachines/PSTestVM2a0850?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMmEwODVmMWIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy9QU1Rlc3RWTTJhMDg1MD9hcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D1_v2\"\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\": \"PSTestVMbfee90\",\r\n \"adminUsername\": \"demouser\",\r\n \"adminPassword\": \"bfee9dac-ea9Aa.\",\r\n \"windowsConfiguration\": {}\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.Network/networkInterfaces/PSTestNICbfee90\"\r\n }\r\n ]\r\n }\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MabUsed\": \"Yes\",\r\n \"AutoShutDown\": \"No\",\r\n \"Purpose\": \"PSTest\",\r\n \"Owner\": \"sarath\",\r\n \"DeleteBy\": \"06-2022\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D1_v2\"\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\": \"PSTestVM2a0850\",\r\n \"adminUsername\": \"demouser\",\r\n \"adminPassword\": \"2a085f1b-087Aa.\",\r\n \"windowsConfiguration\": {}\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.Network/networkInterfaces/PSTestNIC2a0850\"\r\n }\r\n ]\r\n }\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"Owner\": \"sarath\",\r\n \"DeleteBy\": \"06-2022\",\r\n \"Purpose\": \"PSTest\",\r\n \"MabUsed\": \"Yes\",\r\n \"AutoShutDown\": \"No\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "13a517ba-13cc-45ed-bb0b-85c82ca4ada3" + "61f8a6eb-a8e4-447c-9b83-1b6a0a6764fc" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2297,7 +2297,7 @@ "10" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/southeastasia/operations/3b8775f2-0841-4984-8f30-959c50e7760d?p=34dc709c-01b2-42c4-84a2-256a9734610d&api-version=2021-11-01" + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Compute/locations/southeastasia/operations/4e24e3d2-0f6f-4cc2-95cb-9159bc353097?p=e484ceca-6435-4a7f-b125-3d82e6b12014&api-version=2021-11-01" ], "Azure-AsyncNotification": [ "Enabled" @@ -2309,7 +2309,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "3b8775f2-0841-4984-8f30-959c50e7760d" + "4e24e3d2-0f6f-4cc2-95cb-9159bc353097" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -2319,19 +2319,19 @@ "1199" ], "x-ms-correlation-request-id": [ - "06f507cd-6871-4b22-aa69-3b6aecc2fde7" + "5a6320c6-50f8-4f89-8e7f-522a0d1dfd91" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T180129Z:06f507cd-6871-4b22-aa69-3b6aecc2fde7" + "JIOINDIAWEST:20220517T055854Z:5a6320c6-50f8-4f89-8e7f-522a0d1dfd91" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 24 Feb 2022 18:01:28 GMT" + "Tue, 17 May 2022 05:58:54 GMT" ], "Content-Length": [ - "1992" + "1922" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2340,23 +2340,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"PSTestVMbfee90\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.Compute/virtualMachines/PSTestVMbfee90\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MabUsed\": \"Yes\",\r\n \"AutoShutDown\": \"No\",\r\n \"Purpose\": \"PSTest\",\r\n \"Owner\": \"sarath\",\r\n \"DeleteBy\": \"06-2022\",\r\n \"azsecpack\": \"nonprod\",\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": \"true\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"e363fc3b-16cc-4f14-9ee8-2b8a70484538\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D1_v2\"\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.4946.220202\"\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 \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"PSTestVMbfee90\",\r\n \"adminUsername\": \"demouser\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"AutomaticByOS\",\r\n \"assessmentMode\": \"ImageDefault\"\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.Network/networkInterfaces/PSTestNICbfee90\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\",\r\n \"timeCreated\": \"2022-02-24T13:01:26.7344576-05:00\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"PSTestVM2a0850\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.Compute/virtualMachines/PSTestVM2a0850\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"Owner\": \"sarath\",\r\n \"DeleteBy\": \"06-2022\",\r\n \"Purpose\": \"PSTest\",\r\n \"MabUsed\": \"Yes\",\r\n \"AutoShutDown\": \"No\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"672764c3-2867-44f8-907b-ec1f5db6798f\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D1_v2\"\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.5125.220505\"\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 \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"PSTestVM2a0850\",\r\n \"adminUsername\": \"demouser\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"AutomaticByOS\",\r\n \"assessmentMode\": \"ImageDefault\"\r\n },\r\n \"enableVMAgentPlatformUpdates\": false\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/PSTestRG2a085f1b/providers/Microsoft.Network/networkInterfaces/PSTestNIC2a0850\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\",\r\n \"timeCreated\": \"2022-05-17T11:28:52.9728477+05:30\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/southeastasia/operations/3b8775f2-0841-4984-8f30-959c50e7760d?p=34dc709c-01b2-42c4-84a2-256a9734610d&api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzNiODc3NWYyLTA4NDEtNDk4NC04ZjMwLTk1OWM1MGU3NzYwZD9wPTM0ZGM3MDljLTAxYjItNDJjNC04NGEyLTI1NmE5NzM0NjEwZCZhcGktdmVyc2lvbj0yMDIxLTExLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Compute/locations/southeastasia/operations/4e24e3d2-0f6f-4cc2-95cb-9159bc353097?p=e484ceca-6435-4a7f-b125-3d82e6b12014&api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRlMjRlM2QyLTBmNmYtNGNjMi05NWNiLTkxNTliYzM1MzA5Nz9wPWU0ODRjZWNhLTY0MzUtNGE3Zi1iMTI1LTNkODJlNmIxMjAxNCZhcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "13a517ba-13cc-45ed-bb0b-85c82ca4ada3" + "61f8a6eb-a8e4-447c-9b83-1b6a0a6764fc" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ] }, "ResponseHeaders": { @@ -2370,13 +2370,13 @@ "50" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperation3Min;14999,Microsoft.Compute/GetOperation30Min;29988" + "Microsoft.Compute/GetOperation3Min;14999,Microsoft.Compute/GetOperation30Min;29984" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "67e9cbf0-6a21-456c-982b-d88e89298c62" + "acc17b34-3052-42d7-a00c-42650b66c430" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -2386,16 +2386,16 @@ "11998" ], "x-ms-correlation-request-id": [ - "1c545ee8-447a-4f33-89ae-4391d9053312" + "84b77a42-69c1-48ac-ad6e-7daa503d1e0d" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T180139Z:1c545ee8-447a-4f33-89ae-4391d9053312" + "JIOINDIAWEST:20220517T055904Z:84b77a42-69c1-48ac-ad6e-7daa503d1e0d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 24 Feb 2022 18:01:39 GMT" + "Tue, 17 May 2022 05:59:04 GMT" ], "Content-Length": [ "134" @@ -2407,23 +2407,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-02-24T13:01:26.3751146-05:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"3b8775f2-0841-4984-8f30-959c50e7760d\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2022-05-17T11:28:52.4103311+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4e24e3d2-0f6f-4cc2-95cb-9159bc353097\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/southeastasia/operations/3b8775f2-0841-4984-8f30-959c50e7760d?p=34dc709c-01b2-42c4-84a2-256a9734610d&api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzNiODc3NWYyLTA4NDEtNDk4NC04ZjMwLTk1OWM1MGU3NzYwZD9wPTM0ZGM3MDljLTAxYjItNDJjNC04NGEyLTI1NmE5NzM0NjEwZCZhcGktdmVyc2lvbj0yMDIxLTExLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Compute/locations/southeastasia/operations/4e24e3d2-0f6f-4cc2-95cb-9159bc353097?p=e484ceca-6435-4a7f-b125-3d82e6b12014&api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRlMjRlM2QyLTBmNmYtNGNjMi05NWNiLTkxNTliYzM1MzA5Nz9wPWU0ODRjZWNhLTY0MzUtNGE3Zi1iMTI1LTNkODJlNmIxMjAxNCZhcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "13a517ba-13cc-45ed-bb0b-85c82ca4ada3" + "61f8a6eb-a8e4-447c-9b83-1b6a0a6764fc" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ] }, "ResponseHeaders": { @@ -2434,13 +2434,13 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperation3Min;14998,Microsoft.Compute/GetOperation30Min;29987" + "Microsoft.Compute/GetOperation3Min;14998,Microsoft.Compute/GetOperation30Min;29983" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "326e0367-f333-4337-990a-6a63d08734dc" + "71368e14-370b-4645-992c-9cd4d24288d2" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -2450,16 +2450,16 @@ "11997" ], "x-ms-correlation-request-id": [ - "495655b5-5151-4442-b7b4-2843ae64dde8" + "12c6a422-61cb-43bf-820b-8a57ec6306a3" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T180230Z:495655b5-5151-4442-b7b4-2843ae64dde8" + "JIOINDIAWEST:20220517T055954Z:12c6a422-61cb-43bf-820b-8a57ec6306a3" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 24 Feb 2022 18:02:29 GMT" + "Tue, 17 May 2022 05:59:53 GMT" ], "Content-Length": [ "134" @@ -2471,23 +2471,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-02-24T13:01:26.3751146-05:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"3b8775f2-0841-4984-8f30-959c50e7760d\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2022-05-17T11:28:52.4103311+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4e24e3d2-0f6f-4cc2-95cb-9159bc353097\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/southeastasia/operations/3b8775f2-0841-4984-8f30-959c50e7760d?p=34dc709c-01b2-42c4-84a2-256a9734610d&api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzNiODc3NWYyLTA4NDEtNDk4NC04ZjMwLTk1OWM1MGU3NzYwZD9wPTM0ZGM3MDljLTAxYjItNDJjNC04NGEyLTI1NmE5NzM0NjEwZCZhcGktdmVyc2lvbj0yMDIxLTExLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Compute/locations/southeastasia/operations/4e24e3d2-0f6f-4cc2-95cb-9159bc353097?p=e484ceca-6435-4a7f-b125-3d82e6b12014&api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRlMjRlM2QyLTBmNmYtNGNjMi05NWNiLTkxNTliYzM1MzA5Nz9wPWU0ODRjZWNhLTY0MzUtNGE3Zi1iMTI1LTNkODJlNmIxMjAxNCZhcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "13a517ba-13cc-45ed-bb0b-85c82ca4ada3" + "61f8a6eb-a8e4-447c-9b83-1b6a0a6764fc" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ] }, "ResponseHeaders": { @@ -2498,13 +2498,13 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperation3Min;14997,Microsoft.Compute/GetOperation30Min;29986" + "Microsoft.Compute/GetOperation3Min;14997,Microsoft.Compute/GetOperation30Min;29984" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d0d9e930-af39-4818-9a1c-9212e9302941" + "c39138c2-64aa-4f3e-b894-db5fed6d8fb2" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -2514,19 +2514,211 @@ "11996" ], "x-ms-correlation-request-id": [ - "3f50f36b-936c-43be-ae18-72758da21743" + "23d4b0ac-f1ac-490b-906b-ef9ee827d234" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T180320Z:3f50f36b-936c-43be-ae18-72758da21743" + "JIOINDIAWEST:20220517T060045Z:23d4b0ac-f1ac-490b-906b-ef9ee827d234" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 24 Feb 2022 18:03:19 GMT" + "Tue, 17 May 2022 06:00:45 GMT" ], "Content-Length": [ - "184" + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2022-05-17T11:28:52.4103311+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4e24e3d2-0f6f-4cc2-95cb-9159bc353097\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Compute/locations/southeastasia/operations/4e24e3d2-0f6f-4cc2-95cb-9159bc353097?p=e484ceca-6435-4a7f-b125-3d82e6b12014&api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRlMjRlM2QyLTBmNmYtNGNjMi05NWNiLTkxNTliYzM1MzA5Nz9wPWU0ODRjZWNhLTY0MzUtNGE3Zi1iMTI1LTNkODJlNmIxMjAxNCZhcGktdmVyc2lvbj0yMDIxLTExLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "61f8a6eb-a8e4-447c-9b83-1b6a0a6764fc" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.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": [ + "2f4a5682-1bce-4c4b-afa4-e234b315db99" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-correlation-request-id": [ + "2eeaaaba-d63a-407f-8aba-f8d65aab11bb" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220517T060135Z:2eeaaaba-d63a-407f-8aba-f8d65aab11bb" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 17 May 2022 06:01:34 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2022-05-17T11:28:52.4103311+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4e24e3d2-0f6f-4cc2-95cb-9159bc353097\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Compute/locations/southeastasia/operations/4e24e3d2-0f6f-4cc2-95cb-9159bc353097?p=e484ceca-6435-4a7f-b125-3d82e6b12014&api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRlMjRlM2QyLTBmNmYtNGNjMi05NWNiLTkxNTliYzM1MzA5Nz9wPWU0ODRjZWNhLTY0MzUtNGE3Zi1iMTI1LTNkODJlNmIxMjAxNCZhcGktdmVyc2lvbj0yMDIxLTExLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "61f8a6eb-a8e4-447c-9b83-1b6a0a6764fc" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperation3Min;14995,Microsoft.Compute/GetOperation30Min;29981" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "ae217921-8a23-43a0-8c7c-ff843f9858da" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-correlation-request-id": [ + "9771ed46-0812-4a4d-a8bc-0008ce7779e4" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220517T060225Z:9771ed46-0812-4a4d-a8bc-0008ce7779e4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 17 May 2022 06:02:24 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2022-05-17T11:28:52.4103311+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4e24e3d2-0f6f-4cc2-95cb-9159bc353097\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Compute/locations/southeastasia/operations/4e24e3d2-0f6f-4cc2-95cb-9159bc353097?p=e484ceca-6435-4a7f-b125-3d82e6b12014&api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRlMjRlM2QyLTBmNmYtNGNjMi05NWNiLTkxNTliYzM1MzA5Nz9wPWU0ODRjZWNhLTY0MzUtNGE3Zi1iMTI1LTNkODJlNmIxMjAxNCZhcGktdmVyc2lvbj0yMDIxLTExLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "61f8a6eb-a8e4-447c-9b83-1b6a0a6764fc" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperation3Min;14994,Microsoft.Compute/GetOperation30Min;29979" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "ca95cc69-c831-48da-9993-97956ff53ab1" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-correlation-request-id": [ + "a8be474c-449c-406b-8c6c-c67487b1ac4d" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220517T060315Z:a8be474c-449c-406b-8c6c-c67487b1ac4d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 17 May 2022 06:03:15 GMT" + ], + "Content-Length": [ + "183" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2535,26 +2727,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-02-24T13:01:26.3751146-05:00\",\r\n \"endTime\": \"2022-02-24T13:02:46.5635919-05:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"3b8775f2-0841-4984-8f30-959c50e7760d\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2022-05-17T11:28:52.4103311+05:30\",\r\n \"endTime\": \"2022-05-17T11:32:30.142669+05:30\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"4e24e3d2-0f6f-4cc2-95cb-9159bc353097\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/southeastasia/publishers?api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9wdWJsaXNoZXJzP2FwaS12ZXJzaW9uPTIwMjEtMTEtMDE=", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Compute/locations/southeastasia/publishers?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9wdWJsaXNoZXJzP2FwaS12ZXJzaW9uPTIwMjEtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "13a517ba-13cc-45ed-bb0b-85c82ca4ada3" + "61f8a6eb-a8e4-447c-9b83-1b6a0a6764fc" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ] }, "ResponseHeaders": { @@ -2568,32 +2760,32 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "8d76ef5d-2d17-4297-8566-4612360b9f5a_132792867042483732" + "8d76ef5d-2d17-4297-8566-4612360b9f5a_132927459943306577" ], "x-ms-request-id": [ - "febe5303-627c-4421-89a4-b2b042dbcdf2" + "d2ac9980-08b5-4cb7-a20e-ba60b5c4b8e3" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11991" ], "x-ms-correlation-request-id": [ - "d24e99de-d76f-49a3-805b-f0f5052c05cd" + "09676ea6-2421-434b-8fea-5abc728092da" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T180324Z:d24e99de-d76f-49a3-805b-f0f5052c05cd" + "JIOINDIAWEST:20220517T060317Z:09676ea6-2421-434b-8fea-5abc728092da" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 24 Feb 2022 18:03:24 GMT" + "Tue, 17 May 2022 06:03:16 GMT" ], "Content-Length": [ - "420268" + "429382" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2602,26 +2794,26 @@ "-1" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"128technology\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/128technology\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1580863854728\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1580863854728\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1583411303229\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1583411303229\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1583465680865\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1583465680865\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1585118004523\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1585118004523\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1597644262255\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1597644262255\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1598955805825\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1598955805825\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1601633765871\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1601633765871\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1602067018799\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1602067018799\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1604579683207\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1604579683207\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1615257339685\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1615257339685\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1615278064010\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1615278064010\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1615455873642\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1615455873642\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1624590941808\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1624590941808\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1e\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1e\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"2021ai\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/2021ai\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"247commercelimited1611063941652\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/247commercelimited1611063941652\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"3cx-pbx\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/3cx-pbx\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"42crunch1580391915541\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/42crunch1580391915541\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"4psa\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/4psa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"5nine-software-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/5nine-software-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"7isolutions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/7isolutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"a10networks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/a10networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"a10networks1596136698788\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/a10networks1596136698788\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"abiquo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/abiquo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"abzoobainc1598420455082\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/abzoobainc1598420455082\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"accedian\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/accedian\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"accelario1579101623356\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/accelario1579101623356\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"accellion\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/accellion\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"accessdata-group\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/accessdata-group\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"accops\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/accops\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aciworldwide\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aciworldwide\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Acronis\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Acronis\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Acronis.Backup\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Acronis.Backup\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"actian-corp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/actian-corp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"actian_matrix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/actian_matrix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"actifio\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/actifio\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"actiphy\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/actiphy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"actiphyinc1627974506603\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/actiphyinc1627974506603\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"activecountermeasuresinc1631039410073\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/activecountermeasuresinc1631039410073\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"activeeon\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/activeeon\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"activeops\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/activeops\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"adastracorporation-4028356\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/adastracorporation-4028356\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"adgs\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/adgs\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"advantech\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/advantech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"advantech-webaccess\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/advantech-webaccess\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"advantys\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/advantys\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aelf\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aelf\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aerospike\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aerospike\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"affinio\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/affinio\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"affirmednetworks1607630812999\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/affirmednetworks1607630812999\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ageniumscale1591804889317\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ageniumscale1591804889317\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aggregion-ltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aggregion-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"agiledialogssl1603791911858\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/agiledialogssl1603791911858\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"agolo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/agolo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ahnlabinc1584495174865\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ahnlabinc1584495174865\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ahnlabinc1584495467593\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ahnlabinc1584495467593\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"airalabrus\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/airalabrus\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aiscaler-cache-control-ddos-and-url-rewriting-\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aiscaler-cache-control-ddos-and-url-rewriting-\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aisundowninc1618516322959\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aisundowninc1618516322959\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"akamai-technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/akamai-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"akumina\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/akumina\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"akumo-software\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/akumo-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"al-tamamunitedtradingcontractingcompany\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/al-tamamunitedtradingcontractingcompany\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"alachisoft\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/alachisoft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"alertlogic\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/alertlogic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"AlertLogic.Extension\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/AlertLogic.Extension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"algolyticstechnologies1606475101268\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/algolyticstechnologies1606475101268\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"alicetrix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/alicetrix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"alienvault\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/alienvault\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"alldigital-brevity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/alldigital-brevity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"almalinux\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/almalinux\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"almalinuxosfoundation1628089859865\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/almalinuxosfoundation1628089859865\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"altair-engineering-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/altair-engineering-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"altamira-corporation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/altamira-corporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"alteryx\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/alteryx\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"altova\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/altova\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"amergint1593131356777\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/amergint1593131356777\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ansys\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ansys\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"antmedia\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/antmedia\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aod\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aod\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"apigee\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/apigee\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"appcara\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appcara\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"appcelerator\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appcelerator\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"appex-networks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appex-networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"appistry\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appistry\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"appiyo_technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appiyo_technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"appmint_inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appmint_inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"apps-4-rent\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/apps-4-rent\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"appscale-marketplace\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appscale-marketplace\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"appsurifyinc1606933045773\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appsurifyinc1606933045773\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aquaforest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aquaforest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aquantyinc1598537176913\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aquantyinc1598537176913\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aquaveollc1633710529908\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aquaveollc1633710529908\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"arabesque-group\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/arabesque-group\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"arangodb\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/arangodb\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aras\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aras\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"arcblock\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/arcblock\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"arcesb\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/arcesb\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"arcontechsolutionsprivatelimited1623841797810\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/arcontechsolutionsprivatelimited1623841797810\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"arcserveusallc-marketing\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/arcserveusallc-marketing\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"arista-networks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/arista-networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ariwontollc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ariwontollc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"array_networks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/array_networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"artificial-intelligence-techniques-sl\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/artificial-intelligence-techniques-sl\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"arubanetworks-4922182\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/arubanetworks-4922182\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"asdivertissementinc1617837708654\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/asdivertissementinc1617837708654\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"asigra\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/asigra\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aspentechnologyhq-1353108\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aspentechnologyhq-1353108\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"astadia-1148316\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/astadia-1148316\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"asterasoftware1581022936015\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/asterasoftware1581022936015\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"asyscosoftwarebv\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/asyscosoftwarebv\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ataccama\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ataccama\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"athinfosystems1641442221349\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/athinfosystems1641442221349\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"atlgaming\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/atlgaming\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"atmosera\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/atmosera\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"atomicorp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/atomicorp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"atomizedinc1587939464368\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/atomizedinc1587939464368\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"attunity_cloudbeam\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/attunity_cloudbeam\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"audiocodes\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/audiocodes\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"auraportal\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/auraportal\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"auriq-systems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/auriq-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"automateio1592914387888\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/automateio1592914387888\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"automationanywhere\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/automationanywhere\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"avanseus\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/avanseus\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"avepoint\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/avepoint\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aveva1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aveva1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"avi-networks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/avi-networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aviatrix-systems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aviatrix-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"awingu\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/awingu\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"axedrasag1590581171549\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/axedrasag1590581171549\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"axsguardablenv\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/axsguardablenv\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"axshco\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/axshco\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"axway\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/axway\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"axxana\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/axxana\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"azhpc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/azhpc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"azul\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/azul\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"azure-dockit\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/azure-dockit\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"azurecyclecloud\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/azurecyclecloud\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"AzureDatabricks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/AzureDatabricks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"azureopenshift\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/azureopenshift\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"AzureRT.PIR.Synthetics.ProdTest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/AzureRT.PIR.Synthetics.ProdTest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"AzureRT.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/AzureRT.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"azuretesting\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/azuretesting\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"azuretesting2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/azuretesting2\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"azuretesting3\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/azuretesting3\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"AzureTools1type\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/AzureTools1type\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"baas-techbureau\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/baas-techbureau\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"baffle-io\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/baffle-io\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"balabit\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/balabit\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"barracudanetworks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/barracudanetworks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"basho\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/basho\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"batch\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/batch\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bayware\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bayware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bdy\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bdy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"belindaczsro1588885355210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/belindaczsro1588885355210\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bellsoft1582871421940\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bellsoft1582871421940\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"betsol\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/betsol\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"beyondtrust\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/beyondtrust\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bi-builders-as\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bi-builders-as\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"big-id\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/big-id\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"biolibinc1622552350258\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/biolibinc1622552350258\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bissantechnology1583581147809\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bissantechnology1583581147809\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bitdefendercybersecurity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bitdefendercybersecurity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Bitnami\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Bitnami\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bizagi\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bizagi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bizaptyltd1626489237351\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bizaptyltd1626489237351\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bizdataloome\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bizdataloome\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"biztalk360\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/biztalk360\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"black-duck-software\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/black-duck-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"blackbird\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/blackbird\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"blackmagicdesignincorporated1596492193249\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/blackmagicdesignincorporated1596492193249\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"blk-technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/blk-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"blockapps\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/blockapps\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"blockchain-foundry\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/blockchain-foundry\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"blockstack\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/blockstack\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bloombase\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bloombase\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bluecat\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bluecat\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bluejeansnetwork1638333611902\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bluejeansnetwork1638333611902\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"blueprismlimited-4827145\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/blueprismlimited-4827145\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bluesyntaxconsulting1617654548594\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bluesyntaxconsulting1617654548594\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bluetalon\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bluetalon\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bmc.ctm\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bmc.ctm\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bmcctm.test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bmcctm.test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"boardpacpvtltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/boardpacpvtltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bocada\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bocada\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"boemskats\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/boemskats\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"botanalytics\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/botanalytics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bowspritconsultingopcprivatelimited1596291408582\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bowspritconsultingopcprivatelimited1596291408582\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bravura-software-llc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bravura-software-llc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Brianjac.Symantec.CloudWorkloadProtection\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Brianjac.Symantec.CloudWorkloadProtection\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bricatainc1584472632111\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bricatainc1584472632111\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bright-computing\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bright-computing\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"brightcomputing\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/brightcomputing\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"brocade_communications\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/brocade_communications\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"brutale\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/brutale\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bryte\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bryte\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bssw\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bssw\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bt-americas-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bt-americas-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"buddhalabs\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/buddhalabs\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cadosecurityltd1626856705534\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cadosecurityltd1626856705534\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"calculated_systems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/calculated_systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"caloudi_corp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/caloudi_corp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"canadiancentreforcybersecurity1610638436359\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/canadiancentreforcybersecurity1610638436359\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Canonical\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Canonical\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"canonical-test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/canonical-test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"carto\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/carto\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cask\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cask\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"castaigroupinc1595243474856\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/castaigroupinc1595243474856\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"catechnologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/catechnologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"catonetworksltd1641478570665\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/catonetworksltd1641478570665\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cautelalabs\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cautelalabs\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cavirin\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cavirin\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cayosoftinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cayosoftinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cdatasoftware\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cdatasoftware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cds\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cds\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"celum-gmbh\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/celum-gmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"center-for-internet-security-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/center-for-internet-security-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"centeritysystems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/centeritysystems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"centrixeltd1594135951373\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/centrixeltd1594135951373\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"centrocomputerspa1584528117084\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/centrocomputerspa1584528117084\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"certifiedsecuritysolutionsinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/certifiedsecuritysolutionsinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"certivox\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/certivox\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cfd-direct\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cfd-direct\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"chain\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/chain\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"checkpoint\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/checkpoint\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"chef-software\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/chef-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Chef.Bootstrap.WindowsAzure\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Chef.Bootstrap.WindowsAzure\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"chunghwatelecom1587573688842\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/chunghwatelecom1587573688842\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cinchy\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cinchy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cinegy-gmbh\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cinegy-gmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"circleci\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/circleci\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cires21\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cires21\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cirruswaveinc1579234787943\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cirruswaveinc1579234787943\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cisco\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cisco\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"citrix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/citrix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Citrix.ADC\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Citrix.ADC\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"clapsodeughaftungsbeschrnkt1626333173563\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/clapsodeughaftungsbeschrnkt1626333173563\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"clear-linux-project\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/clear-linux-project\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"clone-systems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/clone-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"clouber\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/clouber\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloud-checkr\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloud-checkr\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloud-cruiser\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloud-cruiser\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloud-infrastructure-services\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloud-infrastructure-services\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudaccelinc1628754426775\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudaccelinc1628754426775\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudbees\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudbees\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudbees-enterprise-jenkins\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudbees-enterprise-jenkins\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudbolt-software\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudbolt-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudboltsoftware1639523402532\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudboltsoftware1639523402532\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudboost\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudboost\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudcover\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudcover\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudenablers-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudenablers-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudentity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudentity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudera\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudera\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudflare\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudflare\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudhouse\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudhouse\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudinfo-4919088\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudinfo-4919088\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudknox\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudknox\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudlanes\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudlanes\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudlink\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudlink\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"CloudLinkEMC.SecureVM\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/CloudLinkEMC.SecureVM\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudmavensolutions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudmavensolutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudneeti\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudneeti\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudplan-gmbh\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudplan-gmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudsecurity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudsecurity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudsoft\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudsoft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudwhizsolutions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudwhizsolutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudwrxsconsultingltd1631029702055\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudwrxsconsultingltd1631029702055\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"clustrix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/clustrix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cncf-upstream\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cncf-upstream\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"codaintelligence1606495376525\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/codaintelligence1606495376525\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"codelathe\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/codelathe\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"codenvy\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/codenvy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"codetwo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/codetwo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cognexcorporation1613759804979\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cognexcorporation1613759804979\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cognitive-scale\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cognitive-scale\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cognizant\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cognizant\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cognosys\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cognosys\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cohesity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cohesity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cohesitydev1592001764720\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cohesitydev1592001764720\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cohesive\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cohesive\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"coin-sciences-ltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/coin-sciences-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"collabcloudlimited\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/collabcloudlimited\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"collibranv1619508098620\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/collibranv1619508098620\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"commscopeinc1632135151062\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/commscopeinc1632135151062\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"commvault\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/commvault\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"compellon\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/compellon\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"composable\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/composable\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"comunity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/comunity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"concentrationheatandmomentumlimited1616154387047\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/concentrationheatandmomentumlimited1616154387047\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Confer\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Confer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"confluentinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/confluentinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"conflux\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/conflux\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"connecting-software\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/connecting-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"consensys\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/consensys\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"containeraider\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/containeraider\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"contiamogmbh\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/contiamogmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"controlcase\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/controlcase\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"controlplane\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/controlplane\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"controlplanecorporation1609967567639\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/controlplanecorporation1609967567639\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"convertigo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/convertigo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"corda\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/corda\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"core-stack\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/core-stack\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"corent-technology-pvt\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/corent-technology-pvt\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"CoreOS\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/CoreOS\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"couchbase\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/couchbase\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cpanel\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cpanel\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"credativ\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/credativ\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cristiesoftwareltd1599488127561\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cristiesoftwareltd1599488127561\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"crunchyard\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/crunchyard\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"crunchyardltd1623835391104\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/crunchyardltd1623835391104\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cryptocom1585727786636\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cryptocom1585727786636\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cryptosense1605170011574\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cryptosense1605170011574\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cryptzone\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cryptzone\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ctm.bmc.com\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ctm.bmc.com\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cubebackup\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cubebackup\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cyberark\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cyberark\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cybernetica-as\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cybernetica-as\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cyxtera\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cyxtera\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"d4t4_solutions-1164305\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/d4t4_solutions-1164305\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"daceitdbasensetrafficpulse1579892024934\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/daceitdbasensetrafficpulse1579892024934\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"danielsol.AzureTools1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/danielsol.AzureTools1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Dans.Windows.App\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Dans.Windows.App\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Dans3.Windows.App\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Dans3.Windows.App\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dataart\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dataart\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"databricks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/databricks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datacore\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datacore\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Datadog.Agent\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Datadog.Agent\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datadynamicsinc1581991927942\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datadynamicsinc1581991927942\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dataguiseinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dataguiseinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dataiku\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dataiku\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datalayer\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datalayer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datanomers1584919038987\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datanomers1584919038987\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datanova\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datanova\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datapredsa\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datapredsa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dataroadtechnologiesllc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dataroadtechnologiesllc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datasciencedojo1586563145740\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datasciencedojo1586563145740\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datastax\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datastax\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datasunrise\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datasunrise\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datavirtualitygmbh\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datavirtualitygmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datometry\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datometry\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dbs-h\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dbs-h\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ddn-whamcloud-5345716\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ddn-whamcloud-5345716\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Debian\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Debian\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dece-4446019\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dece-4446019\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"decisosalesbv\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/decisosalesbv\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"deepcognitioninc1593512758156\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/deepcognitioninc1593512758156\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"deepsiginc1581610210151\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/deepsiginc1581610210151\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"deepsurfacesecurityinc1632943333445\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/deepsurfacesecurityinc1632943333445\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dellemc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dellemc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dell_software\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dell_software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"delphix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/delphix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"deltapathlimited1592886319362\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/deltapathlimited1592886319362\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"denodo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/denodo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"denyall\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/denyall\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"derdack\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/derdack\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"desktopstudioag1580294245574\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/desktopstudioag1580294245574\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"devfactory\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/devfactory\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"device42inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/device42inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"deviceauthorityinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/deviceauthorityinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"devolutionsinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/devolutionsinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"devopsgroup-uk\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/devopsgroup-uk\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"df-portal-user\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/df-portal-user\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dgsecure\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dgsecure\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Dh2ico\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Dh2ico\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dh2icompany\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dh2icompany\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dhi\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dhi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"diagramics\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/diagramics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dicomsystems1584107398321\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dicomsystems1584107398321\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"diehl-metering\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/diehl-metering\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"digisitesystems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/digisitesystems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"digitaldefenseinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/digitaldefenseinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"digitaloffice\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/digitaloffice\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"digitamizeinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/digitamizeinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"digitate\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/digitate\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"diladele\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/diladele\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dimensionalmechanics-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dimensionalmechanics-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"diqa\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/diqa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"diyatech\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/diyatech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"diyotta\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/diyotta\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"djiindustrialincus\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/djiindustrialincus\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"docker\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/docker\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dome9\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dome9\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dorabot\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dorabot\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dremiocorporation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dremiocorporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"drizti\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/drizti\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"drone\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/drone\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dsi\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dsi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dundas\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dundas\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dyadic_security\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dyadic_security\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dynatrace\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dynatrace\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dynatrace.ruxit\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dynatrace.ruxit\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"e-magicinc1587696283171\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/e-magicinc1587696283171\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"eastwind-networks-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/eastwind-networks-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"easysoftwaresro1593005637384\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/easysoftwaresro1593005637384\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ebesllc1637780200500\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ebesllc1637780200500\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ecessa\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ecessa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"edevtech\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/edevtech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"edgelesssystems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/edgelesssystems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"edgenetworks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/edgenetworks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"edispheresoftwareprivatelimited1606199736428\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/edispheresoftwareprivatelimited1606199736428\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"education4sight\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/education4sight\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"eecservicesfzllc1604836615706\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/eecservicesfzllc1604836615706\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"egnyte\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/egnyte\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"egress1589289169584\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/egress1589289169584\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"eikonasystemsgmbh1601729310063\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/eikonasystemsgmbh1601729310063\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Elastic\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Elastic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"elasticbox\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/elasticbox\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"elecard\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/elecard\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"electric-cloud\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/electric-cloud\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"elevateiot\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/elevateiot\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"eleven01\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/eleven01\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"elfiqnetworks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/elfiqnetworks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"emercoin\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/emercoin\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"energisme1601990637842\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/energisme1601990637842\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"enforongo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/enforongo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"engineering-ingegneriainformatica-spa1626786889850\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/engineering-ingegneriainformatica-spa1626786889850\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"engysltd1624364546407\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/engysltd1624364546407\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"enterprise-ethereum-alliance\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/enterprise-ethereum-alliance\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"enterprisedb-corp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/enterprisedb-corp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"enterpriseworx-it\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/enterpriseworx-it\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"epicgames\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/epicgames\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"epicgamesinc1633466121071\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/epicgamesinc1633466121071\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"eproe\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/eproe\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"equalum\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/equalum\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"equilibrium\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/equilibrium\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"equinix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/equinix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ergoninformatikag1581586464404\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ergoninformatikag1581586464404\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"esdenera\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/esdenera\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ESET\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ESET\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"esetresearch1579795941720\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/esetresearch1579795941720\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"esri\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/esri\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"esyon\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/esyon\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ethereum\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ethereum\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"eurolinuxspzoo1620639373013\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/eurolinuxspzoo1620639373013\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"eventtracker\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/eventtracker\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"evertzmicrosystemsltd1586877923009\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/evertzmicrosystemsltd1586877923009\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"evostream-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/evostream-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"exact\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/exact\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"exasol\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/exasol\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"excelero1608461290726\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/excelero1608461290726\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"exivity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/exivity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"exonar\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/exonar\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"f5-networks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/f5-networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"falainapteltd1604661424876\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/falainapteltd1604661424876\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"falconstorsoftware\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/falconstorsoftware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fatalsecurity1604924013537\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fatalsecurity1604924013537\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fatpipe-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fatpipe-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fenestrae-1035066\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fenestrae-1035066\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fidesys\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fidesys\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"filecatalyst\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/filecatalyst\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"filemagellc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/filemagellc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fiorano\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fiorano\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fireeye\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fireeye\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"firehost\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/firehost\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"firemon\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/firemon\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"firstderivativesplc1596469572732\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/firstderivativesplc1596469572732\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"flashgrid-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/flashgrid-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"flexbby\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/flexbby\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"flexbby-5255860\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/flexbby-5255860\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"flexify-io\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/flexify-io\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"flexxibleit\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/flexxibleit\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"flowmon\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/flowmon\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"flynet\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/flynet\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"foghorn-systems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/foghorn-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"forcepoint-llc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/forcepoint-llc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"forescout\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/forescout\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"foreseetiab1613650409016\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/foreseetiab1613650409016\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"formpipesoftwareab\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/formpipesoftwareab\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"forscene\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/forscene\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fortanix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fortanix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fortinet\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fortinet\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fortycloud\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fortycloud\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"forumsystems1599756394904\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/forumsystems1599756394904\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fotopiatechnologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fotopiatechnologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"foxiteuropegmbh1585901066320\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/foxiteuropegmbh1585901066320\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"franzinc1593030725310\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/franzinc1593030725310\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fujitsu_fast\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fujitsu_fast\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fw\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fw\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"g2kgroupgmbh-4821943\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/g2kgroupgmbh-4821943\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gapteq\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gapteq\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gatlingcorp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gatlingcorp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gbs\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gbs\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gemalto-safenet\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gemalto-safenet\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Gemalto.SafeNet.ProtectV\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Gemalto.SafeNet.ProtectV\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"genuagmbhdevid1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/genuagmbhdevid1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"genua_gmbh\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/genua_gmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"genymobile\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/genymobile\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gigamon-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gigamon-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"GitHub\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/GitHub\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gitlab\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gitlab\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gitlabinc1586447921813\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gitlabinc1586447921813\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gladinet-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gladinet-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"glantoninc1591876792991\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/glantoninc1591876792991\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"globalidsinc1596800540598\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/globalidsinc1596800540598\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"globalscape\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/globalscape\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"globalsolutions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/globalsolutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gluwareinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gluwareinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"graphistry\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/graphistry\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"graphitegtc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/graphitegtc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"great-software-laboratory-private-limited\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/great-software-laboratory-private-limited\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"greensql\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/greensql\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"greycorbelsolutions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/greycorbelsolutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gridgain\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gridgain\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"guardicore\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/guardicore\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gxchainfoundationltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gxchainfoundationltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"h2o-ai\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/h2o-ai\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hackerbay\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hackerbay\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hackershub\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hackershub\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"haivision\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/haivision\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"haivisionsystemsinc1580780591922\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/haivisionsystemsinc1580780591922\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"haltdoscompvtltd1587136166019\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/haltdoscompvtltd1587136166019\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hanu\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hanu\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"haproxy-technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/haproxy-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"harmanconnectedservicesinc1594928575643\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/harmanconnectedservicesinc1594928575643\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"harpaitalia\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/harpaitalia\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hashhub\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hashhub\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hcl-technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hcl-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"heimdall-data\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/heimdall-data\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"help-systems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/help-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"helpyio\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/helpyio\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"heretechnologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/heretechnologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hewlett-packard\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hewlett-packard\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hillstone-networks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hillstone-networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hitachi-solutions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hitachi-solutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hitachivantara\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hitachivantara\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"holo-industrie40softwaregmbh1600957636008\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/holo-industrie40softwaregmbh1600957636008\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hortonworks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hortonworks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hpe\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hpe\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"HPE.Security.ApplicationDefender\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/HPE.Security.ApplicationDefender\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"huawei\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/huawei\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hubstor-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hubstor-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hush-hush\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hush-hush\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hvr\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hvr\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hyperglance\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hyperglance\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hypergrid\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hypergrid\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hystaxinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hystaxinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hytrust\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hytrust\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"i-exceed-technology\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/i-exceed-technology\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iaansys\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iaansys\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ibm\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ibm\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ibm-alliance-global-1560886\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ibm-alliance-global-1560886\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ibm-alliance-usa-ny-armonk-hq-ibmstorage-6201192\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ibm-alliance-usa-ny-armonk-hq-ibmstorage-6201192\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ibm-usa-ny-armonk-hq-6275750-ibmcloud-aiops\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ibm-usa-ny-armonk-hq-6275750-ibmcloud-aiops\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iboss\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iboss\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iconics\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iconics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iconsulting-spa\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iconsulting-spa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"icubeconsultancyservicesinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/icubeconsultancyservicesinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iguazio-5069960\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iguazio-5069960\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ikan\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ikan\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iliimbiliimveyazlmsistemlerisanvetica1617000555584\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iliimbiliimveyazlmsistemlerisanvetica1617000555584\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"illuminainc1586452220102\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/illuminainc1586452220102\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"image-technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/image-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"imaginecommunications\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/imaginecommunications\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"imperva\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/imperva\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"impetustechnologiesinc1591959591877\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/impetustechnologiesinc1591959591877\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"imprivatainc1580479939967\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/imprivatainc1580479939967\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"incorta\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/incorta\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"incredibuild\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/incredibuild\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"indexima1594300233028\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/indexima1594300233028\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"industry-weapon\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/industry-weapon\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"industryweapon1587162781833\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/industryweapon1587162781833\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"inenprocesosyplataformasdetisderldecv1615482385424\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/inenprocesosyplataformasdetisderldecv1615482385424\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"inergybv1637141413454\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/inergybv1637141413454\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"infinitesoftwarecorporation1579223971125\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/infinitesoftwarecorporation1579223971125\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"infiotinc1614034091460\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/infiotinc1614034091460\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"influxdata\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/influxdata\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"infoblox\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/infoblox\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"infogix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/infogix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"infolibrarian\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/infolibrarian\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"informatica\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/informatica\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"informationbuilders\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/informationbuilders\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"informationtechnologies_ltd_1179601\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/informationtechnologies_ltd_1179601\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"infotecsinternetsecuritysoftwaregmbh1636129257584\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/infotecsinternetsecuritysoftwaregmbh1636129257584\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"infront-consulting-group-ltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/infront-consulting-group-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"infscapeughaftungsbeschrnkt\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/infscapeughaftungsbeschrnkt\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ingenieurstudiohollaus1579587745438\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ingenieurstudiohollaus1579587745438\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ingrammicro\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ingrammicro\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"innomindssoftware\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/innomindssoftware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"innosepgmbh1618331344164\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/innosepgmbh1618331344164\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"innovatorartificialtechsrl1619180685551\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/innovatorartificialtechsrl1619180685551\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"innovtech\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/innovtech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"instight-technology\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/instight-technology\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"integration-objects\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/integration-objects\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"intel-bigdl\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/intel-bigdl\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"intel-fpga\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/intel-fpga\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"intellicus-technologies-pvt-ltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/intellicus-technologies-pvt-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"intelligent-plant-ltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/intelligent-plant-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"internationaltrustmachinescorporation1582190033865\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/internationaltrustmachinescorporation1582190033865\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"internet20inc1635882446190\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/internet20inc1635882446190\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"intersystems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/intersystems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"intigua\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/intigua\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"intigua1638692632641\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/intigua1638692632641\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"introspecioltd1629872641188\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/introspecioltd1629872641188\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iofabric\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iofabric\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ipinfusion1590066770520\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ipinfusion1590066770520\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ipswitch\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ipswitch\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iqsol\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iqsol\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iquate\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iquate\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iquest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iquest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"irion\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/irion\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ishlangu-load-balancer-adc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ishlangu-load-balancer-adc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"issp-corporation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/issp-corporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"isvtestukbigcat\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/isvtestukbigcat\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"isvtestuklegacy\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/isvtestuklegacy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"it4bizdoo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/it4bizdoo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"itelios\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/itelios\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"itrsgroupltd1620310702149\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/itrsgroupltd1620310702149\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ivanti-inc-pcs\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ivanti-inc-pcs\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ivix1595238749040\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ivix1595238749040\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iwnamespace\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iwnamespace\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"izenda\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/izenda\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"jamcracker\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/jamcracker\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"javlinltd1579185328273\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/javlinltd1579185328273\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"jedox\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/jedox\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"jelastic\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/jelastic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"jetnexus\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/jetnexus\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"jetware-srl\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/jetware-srl\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"jfrog\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/jfrog\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"jm-technology-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/jm-technology-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"jogetinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/jogetinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"juniper-networks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/juniper-networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"justanalytics\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/justanalytics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kaazing\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kaazing\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kadenallc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kadenallc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kali-linux\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kali-linux\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kalkitech\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kalkitech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kaminarioinc1588672951794\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kaminarioinc1588672951794\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Kaspersky.Lab\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Kaspersky.Lab\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"KasperskyLab.SecurityAgent\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/KasperskyLab.SecurityAgent\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kaspersky_lab\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kaspersky_lab\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kazendi\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kazendi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kelverion\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kelverion\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kemptech\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kemptech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kepion\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kepion\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"KevlarExtensions.M365Security.SecureOS\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/KevlarExtensions.M365Security.SecureOS\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"KevlarExtensions.M365SecurityHostIDS\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/KevlarExtensions.M365SecurityHostIDS\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"KevlarExtensions.M365SecurityInventory\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/KevlarExtensions.M365SecurityInventory\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"KevlarExtensions.M365SecurityInventory.NameChangeTest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/KevlarExtensions.M365SecurityInventory.NameChangeTest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"KevlarExtensions.M365SecurityODL\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/KevlarExtensions.M365SecurityODL\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"KevlarExtensions.M365SecurityTLSExtension\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/KevlarExtensions.M365SecurityTLSExtension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kinetica\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kinetica\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kinvolk\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kinvolk\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"knime\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/knime\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kobalt\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kobalt\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kognillc1600118221163\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kognillc1600118221163\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kognitivsparkinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kognitivsparkinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"konginc1581527938760\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/konginc1581527938760\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"konsys-ltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/konsys-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"koverseinc1588716263110\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/koverseinc1588716263110\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kryonsystems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kryonsystems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"krypc-technologies-pvt-ltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/krypc-technologies-pvt-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kyligence\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kyligence\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kyvos-insights-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kyvos-insights-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lab3solutions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lab3solutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lancom-systems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lancom-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lansa\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lansa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lastline\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lastline\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"leap-orbit\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/leap-orbit\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lenovosoftware1604394104439\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lenovosoftware1604394104439\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"leostream-corporation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/leostream-corporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lepide-software\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lepide-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"levacloudllc1602151818089\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/levacloudllc1602151818089\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"libelleag\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/libelleag\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"liberatii\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/liberatii\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"libraesva\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/libraesva\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"liebsoft\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/liebsoft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lightning-analyticsinc1582000647396\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lightning-analyticsinc1582000647396\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"linuxbasedsystemsdesignltd1580878904727\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/linuxbasedsystemsdesignltd1580878904727\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"liquid-files\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/liquid-files\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"liquidware\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/liquidware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"literatu\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/literatu\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"litespeedtechnologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/litespeedtechnologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"litespeed_technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/litespeed_technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"litionenergiegmbh1580128829115\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/litionenergiegmbh1580128829115\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"litmusautomation1582760223280\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/litmusautomation1582760223280\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"llcitpro\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/llcitpro\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lnw-softgmbh\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lnw-softgmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"loadbalancer\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/loadbalancer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"logicflowag1638535407949\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/logicflowag1638535407949\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"logsign\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/logsign\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"logstarecorp1635838645101\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/logstarecorp1635838645101\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"logtrust\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/logtrust\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"logzio\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/logzio\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"looker\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/looker\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lotus_beta_analytics\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lotus_beta_analytics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lti-lt-infotech\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lti-lt-infotech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"luminate-security\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/luminate-security\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"M365Security.KevlarExtensions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/M365Security.KevlarExtensions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"M365SecurityInventory\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/M365SecurityInventory\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"machinesense\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/machinesense\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"madhavajay1632269232059\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/madhavajay1632269232059\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"maidenhead-bridge\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/maidenhead-bridge\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"manageengine\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/manageengine\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mapd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mapd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mapr-technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mapr-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"marand\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/marand\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"marketplace-rdfe-caps\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/marketplace-rdfe-caps\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"marklogic\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/marklogic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"massiveanalytic-\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/massiveanalytic-\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mathworks-deployment\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mathworks-deployment\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mathworks-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mathworks-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"matillion\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/matillion\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mavinglobal\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mavinglobal\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"McAfee.EndpointSecurity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/McAfee.EndpointSecurity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"McAfee.EndpointSecurity.test3\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/McAfee.EndpointSecurity.test3\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"meanio\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/meanio\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"media3-adobe\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/media3-adobe\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"media3-technologies-llc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/media3-technologies-llc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mediatekinc1586141563888\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mediatekinc1586141563888\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mendix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mendix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"merlynnintelligencetechnologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/merlynnintelligencetechnologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"meshifyappinc1622759451429\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/meshifyappinc1622759451429\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"messagesolution\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/messagesolution\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"metaswitch\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/metaswitch\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mettainnovations-4900054\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mettainnovations-4900054\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mfe_azure\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mfe_azure\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mfiles\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mfiles\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mico\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mico\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"micro-focus\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/micro-focus\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microlinkpcukltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microlinkpcukltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microolap\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microolap\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-ads\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-ads\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-agci-gaming\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-agci-gaming\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-aks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-aks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-avere\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-avere\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-azure-batch\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-azure-batch\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-azure-compute\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-azure-compute\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-azure-hdinsight\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-azure-hdinsight\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-crypto\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-crypto\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-dsvm\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-dsvm\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-hyperv\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-hyperv\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-minecraft\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-minecraft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AdminCenter\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AdminCenter\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AKS\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AKS\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.ActiveDirectory\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.ActiveDirectory\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.ActiveDirectory.LinuxSSH\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.ActiveDirectory.LinuxSSH\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Applications\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Applications\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Automation.HybridWorker\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Automation.HybridWorker\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Automation.HybridWorker.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Automation.HybridWorker.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.AzureDefenderForServers\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.AzureDefenderForServers\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.AzureDefenderForSQL\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.AzureDefenderForSQL\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Backup.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Backup.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Backup.Test.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Backup.Test.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.ChangeTracking\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.ChangeTracking\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.ChangeTracking.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.ChangeTracking.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.ChangeTrackingAndInventory\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.ChangeTrackingAndInventory\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Chaos\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Chaos\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Compute.Security\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Compute.Security\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.ContainerUpstream\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.ContainerUpstream\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.DefenderForServers.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.DefenderForServers.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.DefenderForServers.Test2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.DefenderForServers.Test2\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Diagnostics\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Diagnostics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Diagnostics.Build.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Diagnostics.Build.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Diagnostics.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Diagnostics.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test012be407-61ea-4e45-a2c3-71a45999ca21-20191228083800\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test012be407-61ea-4e45-a2c3-71a45999ca21-20191228083800\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test01971384-3044-413b-8b1c-33b5d461bf23-20200107051823\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test01971384-3044-413b-8b1c-33b5d461bf23-20200107051823\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test0225ec7d-b36c-4ac8-82f0-aa4fafaf10a9-20200111051346\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test0225ec7d-b36c-4ac8-82f0-aa4fafaf10a9-20200111051346\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test025e16a1-328d-45a2-b7e3-71f7e4cde046-20191229064028\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test025e16a1-328d-45a2-b7e3-71f7e4cde046-20191229064028\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test02d1f941-5607-4757-8df7-fd8c5631ab45-20200103083810\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test02d1f941-5607-4757-8df7-fd8c5631ab45-20200103083810\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test039abd7f-360c-42a1-ad5d-77527c519286-20191002233412\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test039abd7f-360c-42a1-ad5d-77527c519286-20191002233412\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test04a0f157-c6fb-4595-b6ca-6c82a2338063-20200108101451\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test04a0f157-c6fb-4595-b6ca-6c82a2338063-20200108101451\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test0737f33e-63e0-4ba9-b04b-b93a1de4e997-20200106083639\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test0737f33e-63e0-4ba9-b04b-b93a1de4e997-20200106083639\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test0a44d7be-63fa-418d-a7b6-89a44dd21894-20200107052935\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test0a44d7be-63fa-418d-a7b6-89a44dd21894-20200107052935\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test0d01b487-7f79-4d87-b330-5c025068db45-20191004190331\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test0d01b487-7f79-4d87-b330-5c025068db45-20191004190331\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test0d643748-e6fe-41ad-b4d3-89a289a0cee0-20191003055620\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test0d643748-e6fe-41ad-b4d3-89a289a0cee0-20191003055620\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test0df83c51-5bb9-43f8-8ae9-bc896ea64f78-20200110220221\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test0df83c51-5bb9-43f8-8ae9-bc896ea64f78-20200110220221\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test0f02c246-7e65-4010-9367-ca4530c3897e-20191004190223\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test0f02c246-7e65-4010-9367-ca4530c3897e-20191004190223\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test157494ec-e788-43b0-8d26-a17e39ee07cc-20191002011945\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test157494ec-e788-43b0-8d26-a17e39ee07cc-20191002011945\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test1661d154-b623-4507-8a56-3a89812c456c-20200111083940\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test1661d154-b623-4507-8a56-3a89812c456c-20200111083940\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test17bbd860-f21d-40ab-9026-16e05f2907f0-20200106083451\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test17bbd860-f21d-40ab-9026-16e05f2907f0-20200106083451\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test194e2333-13cd-43e3-b0a4-c8cdcf1a3600-20200110211106\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test194e2333-13cd-43e3-b0a4-c8cdcf1a3600-20200110211106\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test1bc26b19-b8d8-41f9-a26d-818f277bdf93-20200101113139\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test1bc26b19-b8d8-41f9-a26d-818f277bdf93-20200101113139\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test1c840053-9213-4f2a-8f2e-9bf2297908bd-20200108101424\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test1c840053-9213-4f2a-8f2e-9bf2297908bd-20200108101424\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test1d7bba72-69f1-43cd-a38c-41ce0b5f4bae-20200109050041\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test1d7bba72-69f1-43cd-a38c-41ce0b5f4bae-20200109050041\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test1f7a8078-50e7-4a3a-91eb-d178fd4c403b-20191002233353\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test1f7a8078-50e7-4a3a-91eb-d178fd4c403b-20191002233353\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test1fef1fdc-57ba-46a8-a879-475ba7d45a7a-20200106083509\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test1fef1fdc-57ba-46a8-a879-475ba7d45a7a-20200106083509\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test21332f15-f78d-4d31-afac-79b9dc989432-20191231175840\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test21332f15-f78d-4d31-afac-79b9dc989432-20191231175840\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test22f10717-6939-4003-a9ce-38effd8b77d6-20191007191355\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test22f10717-6939-4003-a9ce-38effd8b77d6-20191007191355\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test2334e6e3-bb72-4241-a36f-c2429d69bc0b-20200106050834\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test2334e6e3-bb72-4241-a36f-c2429d69bc0b-20200106050834\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test24fa9eb5-1c59-4425-b61c-30fd638c2a45-20191003203802\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test24fa9eb5-1c59-4425-b61c-30fd638c2a45-20191003203802\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test2521a545-ed61-4a15-bed1-aba7ce1d81ee-20200106050804\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test2521a545-ed61-4a15-bed1-aba7ce1d81ee-20200106050804\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test25c6fe61-1282-43c2-867b-b5039219989c-20200105081851\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test25c6fe61-1282-43c2-867b-b5039219989c-20200105081851\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test27515c8c-6773-4f92-afb0-35691cc6e3b6-20200103083821\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test27515c8c-6773-4f92-afb0-35691cc6e3b6-20200103083821\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test28012680-48e7-4903-877f-2f29464e63d5-20191229033424\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test28012680-48e7-4903-877f-2f29464e63d5-20191229033424\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test29a7a529-d293-4728-9d7f-257ed996e64f-20200108081759\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test29a7a529-d293-4728-9d7f-257ed996e64f-20200108081759\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test2a5f2d2c-b8e3-46c2-850d-a1641c024fe7-20200107084228\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test2a5f2d2c-b8e3-46c2-850d-a1641c024fe7-20200107084228\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test2ce856af-ab17-48f2-ba3e-bcd9af091061-20200110013246\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test2ce856af-ab17-48f2-ba3e-bcd9af091061-20200110013246\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test2e012e83-6361-4365-963f-6ced8a08e91c-20200110211254\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test2e012e83-6361-4365-963f-6ced8a08e91c-20200110211254\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test2ecf67b2-fb63-4461-b6a6-7026c4fb1168-20191002214026\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test2ecf67b2-fb63-4461-b6a6-7026c4fb1168-20191002214026\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test2ede6564-c7cc-44cb-a1a8-902505c9829d-20191003020742\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test2ede6564-c7cc-44cb-a1a8-902505c9829d-20191003020742\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test2f4ebc17-e27e-48d9-9cc3-ff933c21884e-20200106092410\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test2f4ebc17-e27e-48d9-9cc3-ff933c21884e-20200106092410\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test349ee02c-af9b-4663-a963-823b40eefed8-20200108083612\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test349ee02c-af9b-4663-a963-823b40eefed8-20200108083612\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test34cf6b13-b78e-478b-b596-8b661629371d-20191007195455\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test34cf6b13-b78e-478b-b596-8b661629371d-20191007195455\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test36cc5b60-2b23-4a04-bf95-f7865e1141cf-20200110085718\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test36cc5b60-2b23-4a04-bf95-f7865e1141cf-20200110085718\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3712fca9-5cdd-4609-be69-b02aedc5c55c-20200107084115\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3712fca9-5cdd-4609-be69-b02aedc5c55c-20200107084115\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3772d042-92e2-4bcb-99b7-8a6a119cc088-20191231182808\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3772d042-92e2-4bcb-99b7-8a6a119cc088-20191231182808\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test37a6dd64-d44d-465e-85bc-3bc38be90350-20200104083535\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test37a6dd64-d44d-465e-85bc-3bc38be90350-20200104083535\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test381074d5-7156-472b-801a-b35f8fef4cc6-20200105050612\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test381074d5-7156-472b-801a-b35f8fef4cc6-20200105050612\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3877a44d-4c48-40db-80eb-227272d5acd6-20200110103540\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3877a44d-4c48-40db-80eb-227272d5acd6-20200110103540\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test38ecd28e-7018-4672-840c-3044a5e7a6b5-20200111084208\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test38ecd28e-7018-4672-840c-3044a5e7a6b5-20200111084208\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test395a0b49-442a-450c-8a1f-65b0aa3bcf47-20200105083839\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test395a0b49-442a-450c-8a1f-65b0aa3bcf47-20200105083839\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3971b300-edff-44a8-b61b-7f9b7460a8d6-20191003002234\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3971b300-edff-44a8-b61b-7f9b7460a8d6-20191003002234\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3adeec20-7458-4b3d-af26-0b6bc2aae3eb-20200103083751\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3adeec20-7458-4b3d-af26-0b6bc2aae3eb-20200103083751\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3b20dd96-f3e4-4798-998d-8c433c2449a7-20200108083635\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3b20dd96-f3e4-4798-998d-8c433c2449a7-20200108083635\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3ce2fd4a-8b5a-4c7e-b08d-3e48fc0f45e7-20200104083825\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3ce2fd4a-8b5a-4c7e-b08d-3e48fc0f45e7-20200104083825\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3d499ca7-cc8d-41cc-a6dc-ffb1a4ac4942-20200107053004\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3d499ca7-cc8d-41cc-a6dc-ffb1a4ac4942-20200107053004\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3db7240e-5e42-4d6d-b024-cc9fce3c828b-20200105083520\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3db7240e-5e42-4d6d-b024-cc9fce3c828b-20200105083520\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3f6b7341-635f-48d5-a36d-be5dfe3002c4-20200105050937\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3f6b7341-635f-48d5-a36d-be5dfe3002c4-20200105050937\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3fc26934-ede2-4482-ad5e-f66f6135d4a6-20191228055558\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3fc26934-ede2-4482-ad5e-f66f6135d4a6-20191228055558\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test406d077c-6017-4062-bc96-f809147a2331-20200106050748\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test406d077c-6017-4062-bc96-f809147a2331-20200106050748\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test4302336c-e039-4e70-bcb6-9275f6089e4a-20200108144821\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test4302336c-e039-4e70-bcb6-9275f6089e4a-20200108144821\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test453a087e-8435-46db-970a-4ee633cc4c4a-20200102083458\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test453a087e-8435-46db-970a-4ee633cc4c4a-20200102083458\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test46b73afa-2259-4aff-81e1-a58bf24b59aa-20191229033459\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test46b73afa-2259-4aff-81e1-a58bf24b59aa-20191229033459\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test4a3399ee-82ea-46aa-9e3a-5434b588e3b6-20191228013518\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test4a3399ee-82ea-46aa-9e3a-5434b588e3b6-20191228013518\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test4eb7a185-527b-4b9f-93a8-7f1cec9d062e-20191231151207\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test4eb7a185-527b-4b9f-93a8-7f1cec9d062e-20191231151207\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test520a0915-f9f0-4da4-9fa1-1b74fc1470aa-20200102083505\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test520a0915-f9f0-4da4-9fa1-1b74fc1470aa-20200102083505\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test5397960f-023b-4979-9a8b-800d049045a4-20191007195417\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test5397960f-023b-4979-9a8b-800d049045a4-20191007195417\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test55a36387-8a3f-4159-9884-29b97539a253-20200109080443\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test55a36387-8a3f-4159-9884-29b97539a253-20200109080443\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test5645f186-4ee5-4209-af37-423660e3318c-20191231175947\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test5645f186-4ee5-4209-af37-423660e3318c-20191231175947\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test58b4461d-4d2d-4395-b6d2-ab83d4d8c62f-20200111001002\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test58b4461d-4d2d-4395-b6d2-ab83d4d8c62f-20200111001002\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test5b0bf447-d98d-429d-8334-c032d197c743-20191003203846\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test5b0bf447-d98d-429d-8334-c032d197c743-20191003203846\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test5bc90367-1ea2-400b-a40c-321081bae3f3-20200108145035\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test5bc90367-1ea2-400b-a40c-321081bae3f3-20200108145035\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test5bd0562f-e939-456f-a6ee-c848d1aba616-20200101151641\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test5bd0562f-e939-456f-a6ee-c848d1aba616-20200101151641\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test5e4efe90-916c-4c96-802c-1508a5b6da78-20191231151150\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test5e4efe90-916c-4c96-802c-1508a5b6da78-20191231151150\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test5f8f0c10-cc3c-45ec-a068-fb1c7edfa0d9-20200101145958\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test5f8f0c10-cc3c-45ec-a068-fb1c7edfa0d9-20200101145958\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test60a000b7-286c-4b2b-9137-bbc088736419-20200108144920\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test60a000b7-286c-4b2b-9137-bbc088736419-20200108144920\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test6192a01b-ba47-4d08-904a-71647a49a112-20191008041625\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test6192a01b-ba47-4d08-904a-71647a49a112-20191008041625\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test62835538-89c6-4f66-9034-f7a4b176c615-20191007234245\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test62835538-89c6-4f66-9034-f7a4b176c615-20191007234245\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test651e4ad2-ee4a-462e-a506-b56b1969f5d0-20200110230749\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test651e4ad2-ee4a-462e-a506-b56b1969f5d0-20200110230749\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test691d94e5-c40c-4568-94b0-09b08aea42b1-20200106050808\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test691d94e5-c40c-4568-94b0-09b08aea42b1-20200106050808\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test6aa3643c-011a-4180-877f-cad955a8e664-20191007234642\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test6aa3643c-011a-4180-877f-cad955a8e664-20191007234642\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test6cfb469b-8478-468f-9bb5-691affd32abb-20200107083803\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test6cfb469b-8478-468f-9bb5-691affd32abb-20200107083803\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test6d36b6b2-7956-4e62-91c1-c33792fd4bb1-20200110123203\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test6d36b6b2-7956-4e62-91c1-c33792fd4bb1-20200110123203\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test6e28168e-a9c8-4c0a-8b40-60c2a1502d43-20200108052802\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test6e28168e-a9c8-4c0a-8b40-60c2a1502d43-20200108052802\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test6eb763ac-7fbe-4e44-bee7-aad035ee2a7d-20200110084429\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test6eb763ac-7fbe-4e44-bee7-aad035ee2a7d-20200110084429\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test6efec253-f625-46f0-9d74-324f69e963d8-20200107070514\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test6efec253-f625-46f0-9d74-324f69e963d8-20200107070514\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test70fa7e4c-3122-4ff7-aec6-fe75ab660a01-20200108105900\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test70fa7e4c-3122-4ff7-aec6-fe75ab660a01-20200108105900\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test710a5fbf-06c7-46ac-b96d-a29d2586422f-20200108083639\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test710a5fbf-06c7-46ac-b96d-a29d2586422f-20200108083639\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test71d72489-67c6-45e2-b1e6-a19546efc823-20200105112903\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test71d72489-67c6-45e2-b1e6-a19546efc823-20200105112903\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test721fccf1-2b3e-44b6-908f-51b910e88b09-20200111104931\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test721fccf1-2b3e-44b6-908f-51b910e88b09-20200111104931\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test742d0189-9e41-4f1b-8ad3-31c05d34903b-20200111103247\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test742d0189-9e41-4f1b-8ad3-31c05d34903b-20200111103247\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test7836a97c-f56e-48d0-8b5d-61e79aeb3226-20200111071656\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7836a97c-f56e-48d0-8b5d-61e79aeb3226-20200111071656\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test78666b2e-25c8-4a48-931a-3131a0317d73-20191002194352\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test78666b2e-25c8-4a48-931a-3131a0317d73-20191002194352\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test79f13508-fcbd-47b9-988f-1c21ef5e7f2e-20191002015429\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test79f13508-fcbd-47b9-988f-1c21ef5e7f2e-20191002015429\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test79fb90ce-4691-4212-99a7-6e4069bd5984-20191007234256\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test79fb90ce-4691-4212-99a7-6e4069bd5984-20191007234256\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test7a8cf687-6a21-4181-ba98-902fee717bd3-20200104103216\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7a8cf687-6a21-4181-ba98-902fee717bd3-20200104103216\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test7aabf813-6644-483a-b9e0-ba6f8973ba1f-20191002232822\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7aabf813-6644-483a-b9e0-ba6f8973ba1f-20191002232822\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test7c96c10a-0c8f-4ab0-83fd-1ad66a362e33-20191229033458\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7c96c10a-0c8f-4ab0-83fd-1ad66a362e33-20191229033458\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test7e79b6ff-2559-44fe-b3ba-afaa68d63636-20200108112116\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7e79b6ff-2559-44fe-b3ba-afaa68d63636-20200108112116\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test7ea372f7-ea7e-4b9e-bbad-4f35c1567aa2-20200108052736\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7ea372f7-ea7e-4b9e-bbad-4f35c1567aa2-20200108052736\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test7fac3d04-98a5-4fc4-904e-9ea3b86eadc2-20200106050751\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7fac3d04-98a5-4fc4-904e-9ea3b86eadc2-20200106050751\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test7fe20dd6-9ed9-4126-bb1d-031c01ac4550-20200101114504\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7fe20dd6-9ed9-4126-bb1d-031c01ac4550-20200101114504\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test7ff974d9-c841-4249-b05b-bbf663cb4605-20200106084104\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7ff974d9-c841-4249-b05b-bbf663cb4605-20200106084104\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test815bd4d5-fc24-4a47-be20-063c4809902c-20200109050508\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test815bd4d5-fc24-4a47-be20-063c4809902c-20200109050508\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test817654d0-2109-4d95-9284-8c8a9d960d08-20200108053758\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test817654d0-2109-4d95-9284-8c8a9d960d08-20200108053758\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test821ca3b6-dd05-4e80-b3d8-74ba03b2609b-20191231151151\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test821ca3b6-dd05-4e80-b3d8-74ba03b2609b-20191231151151\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test8285dc3e-637d-4d46-9695-adc39cbe7d2f-20200108144457\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test8285dc3e-637d-4d46-9695-adc39cbe7d2f-20200108144457\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test828aae03-9239-4938-a303-c23c42311878-20200102083419\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test828aae03-9239-4938-a303-c23c42311878-20200102083419\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test84afd814-5098-49ab-af99-e50350b5898b-20200110211134\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test84afd814-5098-49ab-af99-e50350b5898b-20200110211134\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test85b08563-b15f-4202-a0bc-f2bc2df2c71a-20200107053335\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test85b08563-b15f-4202-a0bc-f2bc2df2c71a-20200107053335\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test88aac268-c087-4481-b78e-99b920784a33-20200101084853\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test88aac268-c087-4481-b78e-99b920784a33-20200101084853\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test88dbd442-a8cc-4874-81a0-d3192c61df62-20191001224544\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test88dbd442-a8cc-4874-81a0-d3192c61df62-20191001224544\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test894dfb75-a00f-4f0c-894c-cae1c9846ad3-20200105051803\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test894dfb75-a00f-4f0c-894c-cae1c9846ad3-20200105051803\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test8d09bf4d-ee63-4ab1-a986-a4b802418403-20200111051447\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test8d09bf4d-ee63-4ab1-a986-a4b802418403-20200111051447\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test8d4d652b-4f05-4e99-93dd-78b9a36b5c78-20191003203755\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test8d4d652b-4f05-4e99-93dd-78b9a36b5c78-20191003203755\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test8de64739-43d8-4f84-af65-fdb3d0885288-20200108053543\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test8de64739-43d8-4f84-af65-fdb3d0885288-20200108053543\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test8e324c65-a51d-4eeb-9ec8-d5f8662dc041-20191228165107\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test8e324c65-a51d-4eeb-9ec8-d5f8662dc041-20191228165107\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test8e564580-8e53-4300-85f1-bf7f31dd37ff-20200107013348\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test8e564580-8e53-4300-85f1-bf7f31dd37ff-20200107013348\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test8f458ca7-8898-4d58-b93d-bfb0c3da028c-20200109050310\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test8f458ca7-8898-4d58-b93d-bfb0c3da028c-20200109050310\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test901cd6ca-5565-4552-a3de-d204d01935c0-20200108083706\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test901cd6ca-5565-4552-a3de-d204d01935c0-20200108083706\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test907b39e5-4008-4b55-93a0-18e9697b9cf3-20200108053817\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test907b39e5-4008-4b55-93a0-18e9697b9cf3-20200108053817\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test90c2be7c-d7ec-4abf-9fad-fef90fc3ef4d-20191004022234\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test90c2be7c-d7ec-4abf-9fad-fef90fc3ef4d-20191004022234\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test922db678-6ee8-43d5-86ff-6a86e132d332-20200107085231\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test922db678-6ee8-43d5-86ff-6a86e132d332-20200107085231\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test93b88aec-5277-4b1b-910c-7008e972ce91-20200107013304\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test93b88aec-5277-4b1b-910c-7008e972ce91-20200107013304\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test95a9104b-6cba-42d8-82ff-cc37e5ac44db-20200108081723\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test95a9104b-6cba-42d8-82ff-cc37e5ac44db-20200108081723\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test96da1605-19e0-46eb-9ce0-53e840f5e2cb-20200101111729\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test96da1605-19e0-46eb-9ce0-53e840f5e2cb-20200101111729\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test996066b2-7d29-400f-929b-e343a21046f7-20191231151212\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test996066b2-7d29-400f-929b-e343a21046f7-20191231151212\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test99663fff-ed21-4a91-9687-1a6da2abb033-20200106084508\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test99663fff-ed21-4a91-9687-1a6da2abb033-20200106084508\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test9eb5efa5-c3c1-4c13-80a6-11f5eba67372-20200108144852\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test9eb5efa5-c3c1-4c13-80a6-11f5eba67372-20200108144852\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testa3791896-b1fc-491e-ba0d-aefcd8d9e52a-20200105083503\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testa3791896-b1fc-491e-ba0d-aefcd8d9e52a-20200105083503\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testa37ff709-a078-45a0-8187-41733df8e101-20200109050003\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testa37ff709-a078-45a0-8187-41733df8e101-20200109050003\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testa4c5fe4e-936e-4be1-a612-a331aff54a8c-20200111105055\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testa4c5fe4e-936e-4be1-a612-a331aff54a8c-20200111105055\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testa59bce1d-e32c-423d-a86e-945d4aeb98b4-20200107051821\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testa59bce1d-e32c-423d-a86e-945d4aeb98b4-20200107051821\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testa604c059-8279-4f4d-a354-eec27222a06c-20200111051514\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testa604c059-8279-4f4d-a354-eec27222a06c-20200111051514\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testa71fefb1-0d9c-4fb3-8d3d-5dcd12d72b77-20200103103221\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testa71fefb1-0d9c-4fb3-8d3d-5dcd12d72b77-20200103103221\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testa748013d-c5a6-44f9-88eb-43167207c742-20200111051402\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testa748013d-c5a6-44f9-88eb-43167207c742-20200111051402\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testaab67022-4f2b-420d-a06a-2c4045110cdf-20191229033144\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testaab67022-4f2b-420d-a06a-2c4045110cdf-20191229033144\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testacab9541-280f-4491-9f49-ac57653f0a07-20200105083839\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testacab9541-280f-4491-9f49-ac57653f0a07-20200105083839\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testad298437-0349-4cc7-88a9-d8aabcba9df1-20191002233431\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testad298437-0349-4cc7-88a9-d8aabcba9df1-20191002233431\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testadd68286-f9e0-4ab1-a526-d8f3cf0f054e-20200105084128\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testadd68286-f9e0-4ab1-a526-d8f3cf0f054e-20200105084128\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testade4c52b-18f5-4b67-8e93-945358ce4f7d-20191007234259\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testade4c52b-18f5-4b67-8e93-945358ce4f7d-20191007234259\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testae421c1d-0211-4ef2-b372-564ce8ad484a-20200110104035\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testae421c1d-0211-4ef2-b372-564ce8ad484a-20200110104035\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testafbbd8bf-aec5-48bf-8fea-73fa15ccc315-20191001224727\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testafbbd8bf-aec5-48bf-8fea-73fa15ccc315-20191001224727\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testb15148bf-78d2-42d4-ad08-b3ad8fb4b122-20200101084759\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testb15148bf-78d2-42d4-ad08-b3ad8fb4b122-20200101084759\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testb4237708-3688-40ea-85a2-275c05f4d100-20191228083519\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testb4237708-3688-40ea-85a2-275c05f4d100-20191228083519\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testb799a18f-be45-4c5c-8438-163ac2e1f1e7-20191004190529\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testb799a18f-be45-4c5c-8438-163ac2e1f1e7-20191004190529\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testb7cee88a-e5ac-4af4-99c8-7247020b00c3-20200105051201\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testb7cee88a-e5ac-4af4-99c8-7247020b00c3-20200105051201\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testb7df0d9a-27c0-4ca5-b692-08dd90387b98-20200111083443\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testb7df0d9a-27c0-4ca5-b692-08dd90387b98-20200111083443\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testbbf6bf32-4bd0-4381-b8f7-2658f585df4d-20191003203846\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testbbf6bf32-4bd0-4381-b8f7-2658f585df4d-20191003203846\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testbeea1376-166a-4b1a-8923-c907cc9737d9-20200107013336\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testbeea1376-166a-4b1a-8923-c907cc9737d9-20200107013336\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testbf9154e9-6166-48c2-86fe-1f331be606d7-20200107051823\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testbf9154e9-6166-48c2-86fe-1f331be606d7-20200107051823\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc0d7c3c5-23b8-489c-a5e0-ae87c681b696-20200101083539\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc0d7c3c5-23b8-489c-a5e0-ae87c681b696-20200101083539\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc193f31a-5186-4e93-84f6-0e4ab87b73c1-20200107052937\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc193f31a-5186-4e93-84f6-0e4ab87b73c1-20200107052937\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc1c7e8dc-fa8c-47d9-8305-de6d1451b939-20200101085248\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc1c7e8dc-fa8c-47d9-8305-de6d1451b939-20200101085248\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc1d0c917-e2ae-430c-a2ca-383fb0fda046-20191007235839\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc1d0c917-e2ae-430c-a2ca-383fb0fda046-20191007235839\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc23a3fbb-6e95-4c0d-94fc-c8ab14dddf1c-20191231151117\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc23a3fbb-6e95-4c0d-94fc-c8ab14dddf1c-20191231151117\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc2697630-6247-411a-94b3-c2974ad8cbee-20191007195417\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc2697630-6247-411a-94b3-c2974ad8cbee-20191007195417\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc466b80f-670f-4383-89b8-44e0d509fa20-20191002000516\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc466b80f-670f-4383-89b8-44e0d509fa20-20191002000516\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc5c8d9bd-75fa-4db3-9f34-5d7b7098584c-20191003203851\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc5c8d9bd-75fa-4db3-9f34-5d7b7098584c-20191003203851\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc8b6d14b-a5db-48e0-bfad-a2818d432bea-20200104083443\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc8b6d14b-a5db-48e0-bfad-a2818d432bea-20200104083443\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc933efa8-c553-4b93-884f-b7221d9ca789-20191228083750\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc933efa8-c553-4b93-884f-b7221d9ca789-20191228083750\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testcbe8ab80-46ef-49b1-a7bb-4e3d6e50e49f-20200104050811\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testcbe8ab80-46ef-49b1-a7bb-4e3d6e50e49f-20200104050811\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testccc0b5e6-9b0d-451a-8ac4-6f4af293b913-20200106092645\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testccc0b5e6-9b0d-451a-8ac4-6f4af293b913-20200106092645\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testcec64786-04b1-487c-80ec-050da646fb1c-20191005123412\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testcec64786-04b1-487c-80ec-050da646fb1c-20191005123412\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testd104a52f-eba2-401d-8e7f-a841c90f7712-20191228083553\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testd104a52f-eba2-401d-8e7f-a841c90f7712-20191228083553\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testd724cea4-0d3c-4539-b2ff-be08fb23a67e-20200107083714\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testd724cea4-0d3c-4539-b2ff-be08fb23a67e-20200107083714\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testd8e60bac-27ff-4fba-90b8-732c9c5ff91c-20191228083751\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testd8e60bac-27ff-4fba-90b8-732c9c5ff91c-20191228083751\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testd99db4a5-7683-4584-89ad-fefd711de284-20191004190210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testd99db4a5-7683-4584-89ad-fefd711de284-20191004190210\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testd9b4309a-67bc-4cd8-ac47-094cb20ca6aa-20200101090202\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testd9b4309a-67bc-4cd8-ac47-094cb20ca6aa-20200101090202\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testda3320e0-28f2-4146-a002-e06296362711-20191004190115\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testda3320e0-28f2-4146-a002-e06296362711-20191004190115\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testda714121-3240-4253-90c3-48c43f115c90-20200102083419\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testda714121-3240-4253-90c3-48c43f115c90-20200102083419\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testdb357558-60b4-4ee3-9ec3-ba22c5d827fb-20191004020617\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testdb357558-60b4-4ee3-9ec3-ba22c5d827fb-20191004020617\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testdc7230e9-df6d-4edd-a57c-ef7e0432c463-20191002011345\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testdc7230e9-df6d-4edd-a57c-ef7e0432c463-20191002011345\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testdccb59de-436f-4935-bed6-2e677dcaf36a-20200109111802\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testdccb59de-436f-4935-bed6-2e677dcaf36a-20200109111802\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testde985b23-9333-4f6e-a5e8-82025a38b2af-20200102083510\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testde985b23-9333-4f6e-a5e8-82025a38b2af-20200102083510\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Teste271da3e-cbcb-4ee7-8770-f297f414451f-20191003015540\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Teste271da3e-cbcb-4ee7-8770-f297f414451f-20191003015540\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Teste4070edd-aec0-455d-8a79-aecdb7170b6d-20191007234642\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Teste4070edd-aec0-455d-8a79-aecdb7170b6d-20191007234642\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Teste42f351a-4da0-4f0d-93e9-ef1d98e06659-20200108083633\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Teste42f351a-4da0-4f0d-93e9-ef1d98e06659-20200108083633\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Teste66ca23c-f4bf-4eb3-8418-139364d19e7d-20200107062643\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Teste66ca23c-f4bf-4eb3-8418-139364d19e7d-20200107062643\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Teste78b1ab2-1380-48ab-9923-0276cdb7198b-20191001224742\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Teste78b1ab2-1380-48ab-9923-0276cdb7198b-20191001224742\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Teste8607e14-b4f8-472a-bd5b-893b8d9612e6-20200112045941\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Teste8607e14-b4f8-472a-bd5b-893b8d9612e6-20200112045941\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Teste980b80e-3add-42c0-bc98-a84020b2d128-20200108101640\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Teste980b80e-3add-42c0-bc98-a84020b2d128-20200108101640\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Tested79dba9-2d38-4ea9-a01c-56e94b30ca7a-20191007195447\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Tested79dba9-2d38-4ea9-a01c-56e94b30ca7a-20191007195447\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testee9dcf5f-f7c4-4192-a8f4-28e9bc7d0f7c-20191001225005\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testee9dcf5f-f7c4-4192-a8f4-28e9bc7d0f7c-20191001225005\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testefbb340a-b68b-4200-872b-d05e7d29f92d-20191007195432\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testefbb340a-b68b-4200-872b-d05e7d29f92d-20191007195432\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testf1fc0559-6740-48dd-9501-2b933c731d52-20200103083458\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testf1fc0559-6740-48dd-9501-2b933c731d52-20200103083458\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testf41dfc97-bb51-4fba-86ca-a6f2695c415a-20200107050834\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testf41dfc97-bb51-4fba-86ca-a6f2695c415a-20200107050834\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testf5784447-83ed-4c00-8764-ea0f932aafa2-20200106085748\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testf5784447-83ed-4c00-8764-ea0f932aafa2-20200106085748\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testf6128ef6-c13c-420e-8088-0710888ce88b-20200109050003\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testf6128ef6-c13c-420e-8088-0710888ce88b-20200109050003\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testf863ab2c-ada9-4646-84c7-1f83a82375d7-20191229033226\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testf863ab2c-ada9-4646-84c7-1f83a82375d7-20191229033226\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testfac552a7-418f-4baa-8f51-d199ceff5c68-20200103050817\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testfac552a7-418f-4baa-8f51-d199ceff5c68-20200103050817\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testfb7be054-5c15-494f-822c-b64f9a36e2f3-20200105051753\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testfb7be054-5c15-494f-822c-b64f9a36e2f3-20200105051753\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testfc5c7585-6c9a-4aa4-a7c4-1223a94e00c7-20200104083552\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testfc5c7585-6c9a-4aa4-a7c4-1223a94e00c7-20200104083552\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.FileServer.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.FileServer.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Geneva\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Geneva\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.KeyVault\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.KeyVault\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.KeyVault.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.KeyVault.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.LabServices\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.LabServices\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.LabServices.test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.LabServices.test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.Agent\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.Agent\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.Dev\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.Dev\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.Dev.INT\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.Dev.INT\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.Dev.SCALE\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.Dev.SCALE\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.Dev.TEST\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.Dev.TEST\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.GuestHealth\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.GuestHealth\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.DEV\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.DEV\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.INT\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.INT\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.SCALE\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.SCALE\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.TEST\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.TEST\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.INT.Dev\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.INT.Dev\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.SCALE.Dev\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.SCALE.Dev\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.TEST.Dev\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.TEST.Dev\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.WorkloadInsights.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.WorkloadInsights.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.WorkloadInsightsTest.newnamespace\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.WorkloadInsightsTest.newnamespace\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.Workloads\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.Workloads\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.Workloads.Dev\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.Workloads.Dev\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitoring.DependencyAgent\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitoring.DependencyAgent\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitoring.DependencyAgent.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitoring.DependencyAgent.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Networking.DNS\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Networking.DNS\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Networking.SDN\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Networking.SDN\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.NetworkWatcher\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.NetworkWatcher\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.NetworkWatcher.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.NetworkWatcher.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.OpenSSH\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.OpenSSH\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Performance.Diagnostics\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Performance.Diagnostics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Performance.Diagnostics.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Performance.Diagnostics.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.RecoveryServices\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.RecoveryServices.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices.SiteRecovery\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.RecoveryServices.SiteRecovery\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices.SiteRecovery2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.RecoveryServices.SiteRecovery2\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices.WorkloadBackup\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.RecoveryServices.WorkloadBackup\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices.WorkloadBackup.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.RecoveryServices.WorkloadBackup.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.AntimalwareSignature\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.AntimalwareSignature\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.AntimalwareSignature.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.AntimalwareSignature.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.Dsms\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.Dsms\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.Dsms.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.Dsms.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.LinuxAttestation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.LinuxAttestation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.LinuxTestAttestation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.LinuxTestAttestation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.Monitoring\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.Monitoring\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.Monitoring.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.Monitoring.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.Monitoring.Testing\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.Monitoring.Testing\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.TestWindowsAttestation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.TestWindowsAttestation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.WindowsAttestation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.WindowsAttestation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.WinTestAttestation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.WinTestAttestation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Sentinel.DnsExtension.Dev\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Sentinel.DnsExtension.Dev\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.ServiceFabric.MC\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.ServiceFabric.MC\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.ServiceFabric.MC.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.ServiceFabric.MC.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.SiteRecovery.Stage\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.SiteRecovery.Stage\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.SiteRecovery.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.SiteRecovery.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.SiteRecovery2.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.SiteRecovery2.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Test.Identity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Test.Identity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WindowsFabric.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WindowsFabric.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.ReleasePipeTest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.ReleasePipeTest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.ReleasePipeTest.INT\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.ReleasePipeTest.INT\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.ReleasePipeTest.TEST\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.ReleasePipeTest.TEST\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test2\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test3\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test3\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test4\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test4\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test5\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test5\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test5.INT\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test5.INT\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test5.TEST\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test5.TEST\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.VincentTest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.VincentTest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.VincentTest2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.VincentTest2\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.VincentTest3\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.VincentTest3\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.VincentTest4\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.VincentTest4\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.TestTest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.TestTest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.TestTest.INT\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.TestTest.INT\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.TestTest.TEST\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.TestTest.TEST\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Windows.ReleasePipeTest.INT\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Windows.ReleasePipeTest.INT\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Windows.ReleasePipeTest.TEST\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Windows.ReleasePipeTest.TEST\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoring\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoring.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoringTest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoringTest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureData\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureData\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureData.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureData.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.Canary\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights.Canary\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.Corp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights.Corp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.Linux.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights.Linux.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.LinuxTest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights.LinuxTest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.Meya0206\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights.Meya0206\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.MeyaCorp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights.MeyaCorp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.Testing\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights.Testing\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureSecurity.JITAccess\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureSecurity.JITAccess\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.CloudBackup.Workload.Extension\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.CloudBackup.Workload.Extension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.CloudBackup.Workload.Extension.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.CloudBackup.Workload.Extension.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Compute\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Compute.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Compute.TestSar\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute.TestSar\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.CPlat.Core\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.CPlat.Core\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.CPlat.Core.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.CPlat.Core.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Dcsswe.Extensions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Dcsswe.Extensions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.EnterpriseCloud.Monitoring\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.EnterpriseCloud.Monitoring.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.EnterpriseCloud.Monitoring.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Golive.Extensions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Golive.Extensions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.GuestConfig.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.GuestConfig.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.GuestConfiguration\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.GuestConfiguration\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.GuestConfiguration.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.GuestConfiguration.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.GuestConfiguration.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.GuestConfiguration.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.HpcCompute\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.HpcCompute\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.HpcCompute.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.HpcCompute.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.HpcPack\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.HpcPack\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Interceptor\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Interceptor\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.M365\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.M365\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.M365SecurityConfiguration.Kevlar.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.M365SecurityConfiguration.Kevlar.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.ManagedIdentity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.ManagedIdentity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.ManagedServices\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.ManagedServices\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.ManagedServices.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.ManagedServices.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.MonitoringAgent.Extension\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.MonitoringAgent.Extension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Network\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Network\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.OSTCExtensions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.OSTCExtensions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.OSTCExtensions.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.OSTCExtensions.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.OSTCExtensions.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.OSTCExtensions.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.OSTCExtensions.Testing\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.OSTCExtensions.Testing\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Powershell\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Powershell\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Powershell.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Powershell.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Powershell.Test01\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Powershell.Test01\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.SecurityManagement.Kevlar\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.SecurityManagement.Kevlar\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Sentinel.AzureMonitorAgentExtensions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Sentinel.AzureMonitorAgentExtensions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.SoftwareUpdateManagement\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.SoftwareUpdateManagement\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.SoftwareUpdateManagement.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.SoftwareUpdateManagement.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.SqlServer.Managability.IaaS.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.SqlServer.Managability.IaaS.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.SqlServer.Management\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.SqlServer.Management\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.SqlServer.Management.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.SqlServer.Management.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.SystemCenter\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.SystemCenter\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.SystemCenter.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.SystemCenter.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Test.Azure.Workloads\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Test.Azure.Workloads\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.TestSqlServer.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.TestSqlServer.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.ETWTraceListenerService\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.Azure.ETWTraceListenerService\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.RemoteDebug\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.Azure.RemoteDebug\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.RemoteDebug.Json\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.Azure.RemoteDebug.Json\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.ServiceProfiler\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.ServiceProfiler\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.Services\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.Services\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.WindowsAzure.DevTest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.WindowsAzure.DevTest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.WindowsAzure.DevTest.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.WindowsAzure.DevTest.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.WindowsAzure.RemoteDebug\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.WindowsAzure.RemoteDebug\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.WindowsAzure.Test.RemoteDebug\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.WindowsAzure.Test.RemoteDebug\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Windows.Azure.Extensions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Windows.Azure.Extensions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Windows.AzureRemoteApp.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Windows.AzureRemoteApp.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Windows.RemoteDesktop\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Windows.RemoteDesktop\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.WindowsAdminCenter\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.WindowsAdminCenter\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.WindowsAdminCenter.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.WindowsAdminCenter.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.WindowsAzure.Compute\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.WindowsAzure.Compute\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.WindowsAzure.Compute.test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.WindowsAzure.Compute.test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.WVD\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.WVD\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoftagciuk\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoftagciuk\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoftazurecituswarp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoftazurecituswarp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftAzureSiteRecovery\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftAzureSiteRecovery\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftBizTalkServer\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftBizTalkServer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftCBLMariner\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftCBLMariner\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoftcmotest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoftcmotest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoftcorporation1602274591143\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoftcorporation1602274591143\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoftcorporation1620407702632\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoftcorporation1620407702632\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftDynamicsAX\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftDynamicsAX\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftDynamicsGP\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftDynamicsGP\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftDynamicsNAV\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftDynamicsNAV\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoftfarmbeats\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoftfarmbeats\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftHybridCloudStorage\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftHybridCloudStorage\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftOSTC\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftOSTC\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftPowerBI\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftPowerBI\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftRServer\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftRServer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftSharePoint\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftSharePoint\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftSQLServer\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftSQLServer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftTestLinuxPPS\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftTestLinuxPPS\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftVisualStudio\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftVisualStudio\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftWindowsDesktop\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsDesktop\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftWindowsServer\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsServer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftWindowsServerHPCPack\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsServerHPCPack\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft_iot_edge\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft_iot_edge\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft_javaeeonazure_test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft_javaeeonazure_test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microstrategy\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microstrategy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"midasolutions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/midasolutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"middleware\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/middleware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"midfin\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/midfin\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"midvision\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/midvision\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mihupcommunicationspvtltd1599046998010\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mihupcommunicationspvtltd1599046998010\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mindcti\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mindcti\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"minio\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/minio\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"miraclelinux\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/miraclelinux\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"miracl_linux\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/miracl_linux\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"miri-infotech-pvt-ltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/miri-infotech-pvt-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mistio1601460379393\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mistio1601460379393\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mobilab\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mobilab\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"modern-systems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/modern-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"modexblockchaindatabase\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/modexblockchaindatabase\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"monetdbsolutions1611751313758\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/monetdbsolutions1611751313758\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"monitorapp1579029852605\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/monitorapp1579029852605\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"monitorcomputersystemsltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/monitorcomputersystemsltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"moogsoft\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/moogsoft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"morpheus-data\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/morpheus-data\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"moviemasher\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/moviemasher\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mriisoftllc1579457820427\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mriisoftllc1579457820427\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"msopentech\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/msopentech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mtnfog\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mtnfog\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"multisoft-ab\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/multisoft-ab\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mvp-systems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mvp-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mwg_azure\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mwg_azure\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mxhero\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mxhero\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"my-com\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/my-com\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"myarchinc1614657280935\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/myarchinc1614657280935\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"narrativescience\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/narrativescience\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nasuni\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nasuni\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nasunicorporation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nasunicorporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"navicloudrsoftwarepteltd1601967280369\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/navicloudrsoftwarepteltd1601967280369\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ncache\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ncache\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ncbi\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ncbi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ncomputingglobalinc1604353053068\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ncomputingglobalinc1604353053068\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ndl\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ndl\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nebbiolo-technologies-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nebbiolo-technologies-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nec-technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nec-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nefelinetworks1591201080882\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nefelinetworks1591201080882\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"neo4j\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/neo4j\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"neos\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/neos\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"neowaybusinesssolutions-4956350\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/neowaybusinesssolutions-4956350\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netapp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netapp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netatwork\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netatwork\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netfoundryinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netfoundryinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netgate\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netgate\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netikus-net-ltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netikus-net-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netiq\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netiq\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netka\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netka\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netmail\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netmail\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netscout\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netscout\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netspi\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netspi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netsweeper\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netsweeper\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"networksexchangetechnologyltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/networksexchangetechnologyltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netwrix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netwrix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netx\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netx\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"neusoft-neteye\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/neusoft-neteye\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"newnetcommunicationtechnologies1589991852134\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/newnetcommunicationtechnologies1589991852134\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"NewRelic.Infrastructure.Extensions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/NewRelic.Infrastructure.Extensions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"newtglobalconsultingllc1581492268566\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/newtglobalconsultingllc1581492268566\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nextronic-5290868\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nextronic-5290868\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nginxinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nginxinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nice-it-management-solutions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nice-it-management-solutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nicepeopleatwork\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nicepeopleatwork\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nilespartnersinc1617691698386\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nilespartnersinc1617691698386\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"niolabs-5229713\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/niolabs-5229713\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nirvatosoftwarepvtltd1601368706606\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nirvatosoftwarepvtltd1601368706606\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nodejsapi\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nodejsapi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"noianetworklimited1584098036197\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/noianetworklimited1584098036197\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nokiaofamericacorporation1591716055441\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nokiaofamericacorporation1591716055441\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"noobaa\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/noobaa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"norcominformationtechnologygmbhcokgaa\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/norcominformationtechnologygmbhcokgaa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"noricumcloudsolutions1600524477681\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/noricumcloudsolutions1600524477681\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"norsync\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/norsync\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"northbridge-secure\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/northbridge-secure\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nozominetworks1582208017986\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nozominetworks1582208017986\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nri\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nri\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ntegralinc1586961136942\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ntegralinc1586961136942\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ntt-data-intellilink-corporation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ntt-data-intellilink-corporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nttdata\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nttdata\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nttltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nttltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nuco-networks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nuco-networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"numbersbelieve\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/numbersbelieve\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"numtrallcpublisher\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/numtrallcpublisher\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nuxeo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nuxeo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nvidia\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nvidia\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"o2mc-real-time-data-platform\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/o2mc-real-time-data-platform\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"objectivity-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/objectivity-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"objectivity1595351622261\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/objectivity1595351622261\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"oceanblue-cloud\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/oceanblue-cloud\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"OctopusDeploy.Tentacle\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/OctopusDeploy.Tentacle\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"odix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/odix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"odysseuscomputationalsolutions1630242118741\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/odysseuscomputationalsolutions1630242118741\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"odysseyconsultantsltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/odysseyconsultantsltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"officeatwork-ag\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/officeatwork-ag\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"omega-software\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/omega-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"onapsis\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/onapsis\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"oncore_cloud_services-4944214\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/oncore_cloud_services-4944214\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"onexgroup\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/onexgroup\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"onspecta\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/onspecta\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ontology\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ontology\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"onyx-point-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/onyx-point-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"op5\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/op5\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"open-connect-systems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/open-connect-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"opencell\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/opencell\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"openlinkswcom-pago\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/openlinkswcom-pago\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"OpenLogic\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/OpenLogic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"openrefactoryinc1620140917523\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/openrefactoryinc1620140917523\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"openshotstudiosllc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/openshotstudiosllc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"opentext\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/opentext\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"openvpn\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/openvpn\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"opslogix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/opslogix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"opswatinc1619007967290\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/opswatinc1619007967290\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"optimitiveslu1618320281443\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/optimitiveslu1618320281443\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"option3\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/option3\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Oracle\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Oracle\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"oraylis\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/oraylis\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"oraylisbi\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/oraylisbi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"orbs-network\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/orbs-network\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"oriana\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/oriana\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"orientdb\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/orientdb\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"oroinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/oroinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"osirium-ltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/osirium-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"osisoft\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/osisoft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"osnexus\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/osnexus\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"outpost24\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/outpost24\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"outsystems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/outsystems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ovaledge1618392232783\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ovaledge1618392232783\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pachyderminc1585170006545\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pachyderminc1585170006545\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pacteratechnologiesinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pacteratechnologiesinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"paladionnetworkspvtltd1606120508449\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/paladionnetworkspvtltd1606120508449\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"paloaltonetworks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/paloaltonetworks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"panopta\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/panopta\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"panorama-necto\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/panorama-necto\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"panzura-file-system\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/panzura-file-system\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"parabole\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/parabole\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"paralaxiomtechnologiesprivatelimited1596433357886\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/paralaxiomtechnologiesprivatelimited1596433357886\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"parallels\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/parallels\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"parasoft\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/parasoft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"parkersoftwarelimited1609786657569\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/parkersoftwarelimited1609786657569\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"parsec-for-teams\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/parsec-for-teams\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pasifikciptamandiri\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pasifikciptamandiri\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"passlogy\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/passlogy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"paxata\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/paxata\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pcman\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pcman\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"peer-software-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/peer-software-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"penta-security-systems-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/penta-security-systems-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"percona\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/percona\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"perforce\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/perforce\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"periscope-tech-4791746\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/periscope-tech-4791746\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"piolinkinc1582849368309\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/piolinkinc1582849368309\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pivotal\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pivotal\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pixitmedia1591611150480\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pixitmedia1591611150480\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"plesk\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/plesk\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pmsoftwareinternational1603102514882\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pmsoftwareinternational1603102514882\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pnop\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pnop\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"polarityioinc1628691850891\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/polarityioinc1628691850891\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"portalarchitects\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/portalarchitects\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"portsysinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/portsysinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"postgres-pro\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/postgres-pro\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"powerbireach\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/powerbireach\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"prakshepprivatelimited1619949827900\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/prakshepprivatelimited1619949827900\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"prestashop\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/prestashop\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"prestige_informatique-1090178\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/prestige_informatique-1090178\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"prime-strategy\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/prime-strategy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"primekey\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/primekey\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"primestrategynewyorkinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/primestrategynewyorkinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pro-vision\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pro-vision\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"process-one\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/process-one\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"processgold\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/processgold\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"procomputers\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/procomputers\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"procomputerssrl1594239153814\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/procomputerssrl1594239153814\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"profecia\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/profecia\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Profiler.AgentOrchestrationRefactor.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Profiler.AgentOrchestrationRefactor.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Profiler.Master.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Profiler.Master.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"profisee\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/profisee\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"progelspa\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/progelspa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"progresssoftwarecorporation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/progresssoftwarecorporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"proliongmbh1628175060372\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/proliongmbh1628175060372\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"protegrityusainc1627404648458\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/protegrityusainc1627404648458\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"protiviti\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/protiviti\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"proventeq\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/proventeq\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ptc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ptc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ptsecurity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ptsecurity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pulse-secure\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pulse-secure\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pulsesecuretechnologies1638179500151\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pulsesecuretechnologies1638179500151\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"puppet\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/puppet\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"puppeteersoy1601024480557\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/puppeteersoy1601024480557\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"PuppetLabs\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/PuppetLabs\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"PuppetLabs.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/PuppetLabs.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"purestorageinc1578960262525\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/purestorageinc1578960262525\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pydio\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pydio\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pyramidanalytics\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pyramidanalytics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"qlik\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/qlik\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"qnapsystemsinc1601352084032\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/qnapsystemsinc1601352084032\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"qore-technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/qore-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"qs-solutions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/qs-solutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Qualys\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Qualys\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Qualys.LinuxAgent.GrayLabel\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Qualys.LinuxAgent.GrayLabel\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Qualys.WindowsAgent.GrayLabel\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Qualys.WindowsAgent.GrayLabel\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"qualysguard\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/qualysguard\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"quasardb\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/quasardb\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"qubole-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/qubole-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"quest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/quest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"racknap\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/racknap\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rackwareinc1619403669255\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rackwareinc1619403669255\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"radiant-logic\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/radiant-logic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"radware\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/radware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"raincode\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/raincode\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rancher\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rancher\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rapid7\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rapid7\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Rapid7.InsightPlatform\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Rapid7.InsightPlatform\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rapidminer\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rapidminer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"raynetgmbh\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/raynetgmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"readymind\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/readymind\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"realm\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/realm\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"reblaze\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/reblaze\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"RedHat\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/RedHat\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"redhat-rhel\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/redhat-rhel\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"redpoint-global\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/redpoint-global\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"refactr\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/refactr\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"refinitiv\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/refinitiv\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"refinitiv-4807503\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/refinitiv-4807503\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"relevance-lab\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/relevance-lab\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"remotelearner\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/remotelearner\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"res\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/res\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"resco\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/resco\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"resemblesystems1582780358300\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/resemblesystems1582780358300\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"responder-corp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/responder-corp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"revolution-analytics\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/revolution-analytics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rhcsolutions1586957910818\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rhcsolutions1586957910818\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ribboncommunications\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ribboncommunications\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"RightScaleLinux\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/RightScaleLinux\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"RightScaleWindowsServer\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/RightScaleWindowsServer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rimo3\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rimo3\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ringsoftwareresearchanddevelopmentinc1578946072257\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ringsoftwareresearchanddevelopmentinc1578946072257\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"riverbed\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/riverbed\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"RiverbedTechnology\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/RiverbedTechnology\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rmgtechnologiesinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rmgtechnologiesinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rocketml\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rocketml\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rocketsoftware\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rocketsoftware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rohdeschwarzcybersecuritygmbh\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rohdeschwarzcybersecuritygmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rohdeschwarzcybersecuritysas\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rohdeschwarzcybersecuritysas\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"roktech\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/roktech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rsa-security-llc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rsa-security-llc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rsk-labs\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rsk-labs\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rstudio-5237862\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rstudio-5237862\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rtts\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rtts\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rubrik-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rubrik-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"runecastsolutionslimited1614186396822\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/runecastsolutionslimited1614186396822\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"s2ix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/s2ix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"saama\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/saama\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"saasame-limited\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/saasame-limited\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"safesoftwareinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/safesoftwareinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"safeticatechnologiessro\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/safeticatechnologiessro\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"safetica_technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/safetica_technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"safetoopen1585013318137\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/safetoopen1585013318137\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"saltsecurity1583264186232\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/saltsecurity1583264186232\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"saltsecurity1583264669848\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/saltsecurity1583264669848\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"saltstack\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/saltstack\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"samsung-sds\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/samsung-sds\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"samsungelectronics1632860607983\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/samsungelectronics1632860607983\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"samsungsds-cello\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/samsungsds-cello\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"samsungsds_sdbe\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/samsungsds_sdbe\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sandhatatechnologieslimited1615753438737\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sandhatatechnologieslimited1615753438737\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sap\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sap\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sapphiretechnologieslimited1611758579346\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sapphiretechnologieslimited1611758579346\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sas-institute-560503\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sas-institute-560503\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"scaidata\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/scaidata\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"scalearc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/scalearc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"scalegrid\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/scalegrid\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"scality\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/scality\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"schrockeninc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/schrockeninc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sci\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sci\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sciencelogicinc1622565452194\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sciencelogicinc1622565452194\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"scientiamobile\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/scientiamobile\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"scontainug1595751515785\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/scontainug1595751515785\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"scubaanalytics\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/scubaanalytics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"scylladb1631195365807\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/scylladb1631195365807\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"seaqserviciossas1579029207572\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/seaqserviciossas1579029207572\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"searchbloxsoftwareinc1594309037050\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/searchbloxsoftwareinc1594309037050\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"secureworks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/secureworks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"securityonionsolutions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/securityonionsolutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"securityonionsolutionsllc1624649205155\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/securityonionsolutionsllc1624649205155\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"securosis\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/securosis\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"seequentltd1585781751395\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/seequentltd1585781751395\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"semarchy\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/semarchy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"semperis\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/semperis\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"senhasegura\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/senhasegura\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"SentinelOne.LinuxExtension\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/SentinelOne.LinuxExtension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"SentinelOne.WindowsExtension\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/SentinelOne.WindowsExtension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"SentinelOne.WindowsExtension.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/SentinelOne.WindowsExtension.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sentriumsl\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sentriumsl\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sentryone\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sentryone\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sepiosystems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sepiosystems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"seppmailag\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/seppmailag\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"seraumo1620002807288\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/seraumo1620002807288\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"service-control-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/service-control-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sesamesoftwareinc1622125191447\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sesamesoftwareinc1622125191447\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"shadow-soft\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/shadow-soft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"shareshiftneeraj.test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/shareshiftneeraj.test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sightapps\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sightapps\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"signal-sciences\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/signal-sciences\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"silk\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/silk\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"silver-peak-systems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/silver-peak-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"simmachinesinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/simmachinesinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"simontelephonics\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/simontelephonics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"simpledatalabsinc1635791235920\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/simpledatalabsinc1635791235920\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"simplifierag\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/simplifierag\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"simpligov\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/simpligov\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sinefa\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sinefa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sinequa\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sinequa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sinequa1588262295885\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sinequa1588262295885\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"singapore-telecommunications-limited\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/singapore-telecommunications-limited\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sios_datakeeper\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sios_datakeeper\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"siportalinc1581539156321\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/siportalinc1581539156321\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sisenseltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sisenseltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Site24x7\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Site24x7\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sktelecom\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sktelecom\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"skyarc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/skyarc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"skyboxsecurity1585187406404\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/skyboxsecurity1585187406404\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"skylarkcloud\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/skylarkcloud\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"smartbearsoftware\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/smartbearsoftware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"smartmessage-autoflow\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/smartmessage-autoflow\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"snaplogic\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/snaplogic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"snapt-adc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/snapt-adc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"snips\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/snips\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"soasta\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/soasta\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"softnas\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/softnas\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"softwarecentralas1642687699196\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/softwarecentralas1642687699196\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"softwarehut\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/softwarehut\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"softwebsolutions-4518310\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/softwebsolutions-4518310\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"soha\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/soha\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"solanolabs\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/solanolabs\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"solar-security\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/solar-security\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"solarwinds\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/solarwinds\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"solvedevops1643693563360\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/solvedevops1643693563360\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sonicwall-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sonicwall-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sophos\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sophos\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sourcegearllc1616101262784\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sourcegearllc1616101262784\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"south-river-technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/south-river-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"southrivertech1586314123192\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/southrivertech1586314123192\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"spacecurve\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/spacecurve\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"spaceliftinc1625499025476\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/spaceliftinc1625499025476\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"spagobi\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/spagobi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sparklinglogic\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sparklinglogic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"spectralcorelimited1619779004178\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/spectralcorelimited1619779004178\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"spektra\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/spektra\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sphere3d\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sphere3d\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"spideroakinc1588278690933\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/spideroakinc1588278690933\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"spirentcommunications1594084187199\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/spirentcommunications1594084187199\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"splunk\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/splunk\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sproutenetworks1593456311717\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sproutenetworks1593456311717\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sqlstream\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sqlstream\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"squadratechnologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/squadratechnologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"squaredup\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/squaredup\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"src-solution\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/src-solution\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stackato-platform-as-a-service\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stackato-platform-as-a-service\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Stackify.LinuxAgent.Extension\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Stackify.LinuxAgent.Extension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stackstorm\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stackstorm\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"startekfingerprintmatch\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/startekfingerprintmatch\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"startisolucoesemtecnologialtda1635263523201\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/startisolucoesemtecnologialtda1635263523201\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"starwind\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/starwind\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"StatusMonitor2.Diagnostics.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/StatusMonitor2.Diagnostics.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"StatusReport.Diagnostics.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/StatusReport.Diagnostics.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stealthbits\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stealthbits\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"steelhive\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/steelhive\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stonebondtechnologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stonebondtechnologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stonefly\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stonefly\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"storage_made_easy\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/storage_made_easy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stormshield\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stormshield\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"storone1594045543980\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/storone1594045543980\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"storreduce\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/storreduce\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"storwarespzoo1611743234900\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/storwarespzoo1611743234900\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"strangebee1595948424730\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/strangebee1595948424730\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"strataidentity1608323708170\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/strataidentity1608323708170\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stratis-group-ltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stratis-group-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stratodesk1611152769936\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stratodesk1611152769936\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stratumn\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stratumn\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"streamsets\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/streamsets\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"striim\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/striim\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stromasys\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stromasys\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"strongboxitllc1594816423884\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/strongboxitllc1594816423884\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"su\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/su\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"subscription.test.krsh\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/subscription.test.krsh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sumologic\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sumologic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sunatogmbh\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sunatogmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sunday\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sunday\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"SUSE\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/SUSE\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"swoopanalytics\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/swoopanalytics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sycom-technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sycom-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sycompatechnologycompanyinc1588192103892\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sycompatechnologycompanyinc1588192103892\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.CloudWorkloadProtection\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.CloudWorkloadProtection\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.CloudWorkloadProtection.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.CloudWorkloadProtection.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.CloudWorkloadProtection.TestOnStage\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.CloudWorkloadProtection.TestOnStage\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.QA\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.QA\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.staging\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.staging\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.test.ru2.latest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.test.ru2.latest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.test.ru2final\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.test.ru2final\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.test.ru2latest1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.test.ru2latest1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.test.ru4mp1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.test.ru4mp1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.test.ru4mp1.latest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.test.ru4mp1.latest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.test.ru4mp1final\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.test.ru4mp1final\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"symanteccorporation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/symanteccorporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"symantectest1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/symantectest1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"synack-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/synack-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"syncfusion\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/syncfusion\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"syncfusionbigdataplatfor\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/syncfusionbigdataplatfor\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"synechron-technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/synechron-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"synergixinc1585256339250\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/synergixinc1585256339250\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"synnexcorp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/synnexcorp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"syscomcomputerengineeringco1583913200141\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/syscomcomputerengineeringco1583913200141\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"syte\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/syte\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tableau\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tableau\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tactic\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tactic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"talari-networks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/talari-networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"talena-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/talena-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"talend\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/talend\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"talon\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/talon\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tamrinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tamrinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"targit\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/targit\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tata_communications\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tata_communications\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tavanttechnologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tavanttechnologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tavendo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tavendo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"te-systems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/te-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"techdivision\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/techdivision\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"techlatest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/techlatest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"technicheltd1606969724100\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/technicheltd1606969724100\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tecknolab\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tecknolab\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"telepat\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/telepat\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"teloscorporation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/teloscorporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tempered-networks-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tempered-networks-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tenable\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tenable\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tensormakecorpdbaoneclickai1608247756082\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tensormakecorpdbaoneclickai1608247756082\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"teradata\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/teradata\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Teradici\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Teradici\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"teramindinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/teramindinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.Gemalto.SafeNet.ProtectV\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.Gemalto.SafeNet.ProtectV\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.Gemalto.SafeNet.ProtectV.Azure\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.Gemalto.SafeNet.ProtectV.Azure\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.HP.AppDefender\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.HP.AppDefender\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.Microsoft.VisualStudio.Services\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.Microsoft.VisualStudio.Services\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.NJHP.AppDefender\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.NJHP.AppDefender\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.SqlServer.Managability\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.SqlServer.Managability\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.SqlServer.Management\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.SqlServer.Management\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.SqlServer.Management.corext\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.SqlServer.Management.corext\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test1.NJHP.AppDefender\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test1.NJHP.AppDefender\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test3.Microsoft.VisualStudio.Services\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test3.Microsoft.VisualStudio.Services\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"testable1603721901088\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/testable1603721901088\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"testpro\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/testpro\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"test_test_mix3pptest0011614206850774\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/test_test_mix3pptest0011614206850774\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"test_test_mneela1628617140187\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/test_test_mneela1628617140187\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"test_test_pmc2pc1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/test_test_pmc2pc1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thales-vormetric\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thales-vormetric\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thalesdiscplusainc1596561677238\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thalesdiscplusainc1596561677238\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thedatavaluefactoryltd1589348815922\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thedatavaluefactoryltd1589348815922\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thefreebsdfoundation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thefreebsdfoundation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thehdfgroup1616725197741\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thehdfgroup1616725197741\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"theumag1596442827072\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/theumag1596442827072\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"things-board\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/things-board\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thingscareinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thingscareinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thinprintgmbh\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thinprintgmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thorntechnologiesllc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thorntechnologiesllc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thoughtspot-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thoughtspot-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"threatintelligenceptyltd1586824172898\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/threatintelligenceptyltd1586824172898\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tibco-software\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tibco-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tidal-migrations\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tidal-migrations\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tidalmediainc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tidalmediainc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tig\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tig\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tiger-technology\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tiger-technology\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tigergraph\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tigergraph\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"timextender\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/timextender\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tmaxsoft\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tmaxsoft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tmaxsoft1608612658335\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tmaxsoft1608612658335\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tomsawyersoftwarecorp1613579206342\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tomsawyersoftwarecorp1613579206342\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"topicus\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/topicus\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"torusware\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/torusware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"totemo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/totemo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"townsend-security\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/townsend-security\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"transcendinformationinc1609918445926\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/transcendinformationinc1609918445926\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"transientxinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/transientxinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"transvault\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/transvault\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"trendmicro\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/trendmicro\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"TrendMicro.DeepSecurity.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/TrendMicro.DeepSecurity.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"TrendMicro.PortalProtect\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/TrendMicro.PortalProtect\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tresorit\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tresorit\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"trifacta\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/trifacta\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tripleblindinc1615730179432\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tripleblindinc1615730179432\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tripwire-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tripwire-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"truata1612259728221\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/truata1612259728221\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"truestack\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/truestack\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tryonsolutionsinc1596650621083\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tryonsolutionsinc1596650621083\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tsa-public-service\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tsa-public-service\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tunnelbiz\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tunnelbiz\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"turbonet\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/turbonet\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"turbonet1581982683964\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/turbonet1581982683964\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"twistlock\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/twistlock\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"typesafe\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/typesafe\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ubeeko\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ubeeko\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ubercloud\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ubercloud\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"uipath-5054924\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/uipath-5054924\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ulex\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ulex\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"unifi-software\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/unifi-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"unifiedstreaming1598872291606\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/unifiedstreaming1598872291606\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"uniprint-net\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/uniprint-net\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"unitrends\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/unitrends\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"unnisoft\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/unnisoft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"unravel-data\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/unravel-data\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"unscramblsingaporepteltd-4999260\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/unscramblsingaporepteltd-4999260\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"untangle\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/untangle\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"upsolver1594188634150\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/upsolver1594188634150\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"usp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/usp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"valohai\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/valohai\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"valtix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/valtix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"varmournetworks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/varmournetworks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"varnish\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/varnish\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vatacommunicationsinc1581644208717\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vatacommunicationsinc1581644208717\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vaultive-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vaultive-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vbot\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vbot\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vcinityinc1587684340545\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vcinityinc1587684340545\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vectraaiinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vectraaiinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"veeam\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/veeam\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"velocitydb-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/velocitydb-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"velocloud\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/velocloud\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vembutechnologiespvtltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vembutechnologiespvtltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vemn\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vemn\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"veritas\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/veritas\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"versanetworks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/versanetworks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"versasec\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/versasec\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vidispine\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vidispine\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vidizmo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vidizmo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vigyanlabs-innovations-pvt-ltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vigyanlabs-innovations-pvt-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vigyanlabsinc1581413676614\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vigyanlabsinc1581413676614\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"viptela\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/viptela\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vircom\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vircom\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"virtamovecorp1615909247913\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/virtamovecorp1615909247913\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"virtualpulsesro1607008728942\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/virtualpulsesro1607008728942\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"virtuozzointernationalgmbh1626704951469\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/virtuozzointernationalgmbh1626704951469\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"visualknowledgeshare1591795776234\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/visualknowledgeshare1591795776234\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"visualsoft-center\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/visualsoft-center\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vizixiotplatformretail001\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vizixiotplatformretail001\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vmlabinc1613642184700\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vmlabinc1613642184700\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vmturbo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vmturbo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vmware-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vmware-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vnomicinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vnomicinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"voiceelements\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/voiceelements\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"voleatechgmbh1636966911943\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/voleatechgmbh1636966911943\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"volterraedgeservices\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/volterraedgeservices\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Vormetric\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Vormetric\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vscconsultingptyltd1608535888097\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vscconsultingptyltd1608535888097\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vte\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vte\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vu-llc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vu-llc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vyulabsinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vyulabsinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"WAD2AI.Diagnostics.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/WAD2AI.Diagnostics.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"WAD2EventHub.Diagnostics.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/WAD2EventHub.Diagnostics.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wallarm\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wallarm\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wallix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wallix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wandisco\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wandisco\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wanos\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wanos\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wanpath-dba-myworkdrive\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wanpath-dba-myworkdrive\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wardy-it-solutions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wardy-it-solutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"warewolf-esb\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/warewolf-esb\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"watchguard-technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/watchguard-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"webaloinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/webaloinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"websense-apmailpe\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/websense-apmailpe\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"websoft9inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/websoft9inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wedoitllc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wedoitllc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"westernoceansoftwaresprivatelimited\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/westernoceansoftwaresprivatelimited\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wherescapesoftware\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wherescapesoftware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"winmagic_securedoc_cloudvm\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/winmagic_securedoc_cloudvm\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wintellisys-inc-4561600\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wintellisys-inc-4561600\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"witfooinc1590167223060\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/witfooinc1590167223060\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wmspanel\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wmspanel\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wood1595864497589\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wood1595864497589\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"workshare-technology\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/workshare-technology\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"world-programming\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/world-programming\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"worxogo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/worxogo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wowza\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wowza\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"xcontentptyltd-1329748\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/xcontentptyltd-1329748\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"xendata-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/xendata-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"xfinityinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/xfinityinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"xilinx\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/xilinx\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"xoriantcorporationazxteam1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/xoriantcorporationazxteam1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"xoriantsolutionspvtltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/xoriantsolutionspvtltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"xtremedata\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/xtremedata\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"xyzrd-group-ou\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/xyzrd-group-ou\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"yellowfin\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/yellowfin\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"yellowfininternationalptyltd1616363974066\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/yellowfininternationalptyltd1616363974066\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"yokogawarentalleasecorporation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/yokogawarentalleasecorporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"your-shop-online\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/your-shop-online\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"z1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/z1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"z4it-aps\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/z4it-aps\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zabbix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zabbix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zend\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zend\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zenterasystemsinc1605292453288\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zenterasystemsinc1605292453288\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zerodown_software\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zerodown_software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zerto\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zerto\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zettalane_systems-5254599\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zettalane_systems-5254599\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zevenet\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zevenet\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zilliz\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zilliz\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zoomdata\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zoomdata\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zscaler\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zscaler\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zscaler1579058425289\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zscaler1579058425289\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zultysinc1596831546163\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zultysinc1596831546163\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"128technology\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/128technology\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1580863854728\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1580863854728\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1583411303229\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1583411303229\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1583465680865\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1583465680865\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1585118004523\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1585118004523\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1592878437854\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1592878437854\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1597644262255\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1597644262255\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1598955805825\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1598955805825\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1601633765871\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1601633765871\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1602067018799\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1602067018799\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1604579683207\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1604579683207\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1615257339685\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1615257339685\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1615278064010\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1615278064010\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1615455873642\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1615455873642\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1624590941808\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1624590941808\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1640334196980\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1640334196980\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1e\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1e\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"2021ai\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/2021ai\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"247commercelimited1611063941652\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/247commercelimited1611063941652\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"3cx-pbx\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/3cx-pbx\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"42crunch1580391915541\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/42crunch1580391915541\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"4psa\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/4psa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"5nine-software-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/5nine-software-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"6124903\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/6124903\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"7isolutions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/7isolutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"a10networks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/a10networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"a10networks1596136698788\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/a10networks1596136698788\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"abiquo\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/abiquo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"abzoobainc1598420455082\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/abzoobainc1598420455082\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"accedian\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/accedian\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"accelario1579101623356\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/accelario1579101623356\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"accellion\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/accellion\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"accessdata-group\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/accessdata-group\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"accops\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/accops\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aciworldwide\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aciworldwide\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Acronis\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Acronis\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Acronis.Backup\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Acronis.Backup\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"actian-corp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/actian-corp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"actian_matrix\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/actian_matrix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"actifio\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/actifio\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"actiphy\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/actiphy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"actiphyinc1627974506603\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/actiphyinc1627974506603\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"activecountermeasuresinc1631039410073\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/activecountermeasuresinc1631039410073\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"activeeon\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/activeeon\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"activeops\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/activeops\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"adastracorporation-4028356\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/adastracorporation-4028356\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"adgs\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/adgs\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"advantech\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/advantech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"advantech-webaccess\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/advantech-webaccess\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"advantys\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/advantys\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aelf\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aelf\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aerospike\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aerospike\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"affinio\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/affinio\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"affirmednetworks1607630812999\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/affirmednetworks1607630812999\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ageniumscale1591804889317\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ageniumscale1591804889317\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aggregion-ltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aggregion-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"agiledialogssl1603791911858\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/agiledialogssl1603791911858\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"agolo\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/agolo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ahnlabinc1584495174865\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ahnlabinc1584495174865\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ahnlabinc1584495467593\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ahnlabinc1584495467593\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"airalabrus\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/airalabrus\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aiscaler-cache-control-ddos-and-url-rewriting-\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aiscaler-cache-control-ddos-and-url-rewriting-\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aisundowninc1618516322959\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aisundowninc1618516322959\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"akamai-technologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/akamai-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"akumina\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/akumina\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"akumo-software\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/akumo-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"al-tamamunitedtradingcontractingcompany\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/al-tamamunitedtradingcontractingcompany\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"alachisoft\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/alachisoft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"alertlogic\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/alertlogic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"AlertLogic.Extension\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/AlertLogic.Extension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"algolyticstechnologies1606475101268\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/algolyticstechnologies1606475101268\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"alicetrix\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/alicetrix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"alienvault\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/alienvault\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"alldigital-brevity\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/alldigital-brevity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"almalinux\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/almalinux\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"almalinuxosfoundation1628089859865\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/almalinuxosfoundation1628089859865\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"altair-engineering-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/altair-engineering-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"altamira-corporation\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/altamira-corporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"alteryx\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/alteryx\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"altova\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/altova\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"amergint1593131356777\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/amergint1593131356777\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"anjanadatasl1583402861145\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/anjanadatasl1583402861145\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ansys\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ansys\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"antmedia\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/antmedia\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aod\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aod\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"apigee\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/apigee\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"appcara\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appcara\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"appcelerator\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appcelerator\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"appex-networks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appex-networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"appistry\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appistry\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"appiyo_technologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appiyo_technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"appmint_inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appmint_inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"apps-4-rent\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/apps-4-rent\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"appscale-marketplace\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appscale-marketplace\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"appsurifyinc1606933045773\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appsurifyinc1606933045773\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aquaforest\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aquaforest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aquantyinc1598537176913\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aquantyinc1598537176913\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aquaveollc1633710529908\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aquaveollc1633710529908\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"arabesque-group\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/arabesque-group\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"arangodb\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/arangodb\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aras\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aras\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"arcblock\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/arcblock\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"arcesb\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/arcesb\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"arcontechsolutionsprivatelimited1623841797810\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/arcontechsolutionsprivatelimited1623841797810\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"arcserveusallc-marketing\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/arcserveusallc-marketing\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"arista-networks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/arista-networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ariwontollc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ariwontollc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"array_networks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/array_networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"artificial-intelligence-techniques-sl\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/artificial-intelligence-techniques-sl\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"arubanetworks-4922182\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/arubanetworks-4922182\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"asdivertissementinc1617837708654\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/asdivertissementinc1617837708654\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"asigra\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/asigra\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aspentechnologyhq-1353108\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aspentechnologyhq-1353108\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"astadia-1148316\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/astadia-1148316\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"asterasoftware1581022936015\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/asterasoftware1581022936015\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"asyscosoftwarebv\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/asyscosoftwarebv\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ataccama\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ataccama\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"athinfosystems1641442221349\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/athinfosystems1641442221349\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"athinfosystems1648710938250\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/athinfosystems1648710938250\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"atlgaming\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/atlgaming\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"atmosera\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/atmosera\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"atomicorp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/atomicorp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"atomizedinc1587939464368\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/atomizedinc1587939464368\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"attunity_cloudbeam\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/attunity_cloudbeam\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"audiocodes\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/audiocodes\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"auraportal\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/auraportal\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"auriq-systems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/auriq-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"automateio1592914387888\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/automateio1592914387888\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"automationanywhere\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/automationanywhere\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"avanseus\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/avanseus\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"avepoint\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/avepoint\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aveva1\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aveva1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"avi-networks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/avi-networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aviatrix-systems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aviatrix-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"awingu\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/awingu\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"axedrasag1590581171549\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/axedrasag1590581171549\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"axsguardablenv\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/axsguardablenv\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"axshco\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/axshco\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"axway\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/axway\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"axxana\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/axxana\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"azhpc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/azhpc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"azul\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/azul\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"azure-dockit\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/azure-dockit\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"azurecyclecloud\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/azurecyclecloud\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"AzureDatabricks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/AzureDatabricks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"azureopenshift\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/azureopenshift\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"AzureRT.PIR.Synthetics.ProdTest\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/AzureRT.PIR.Synthetics.ProdTest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"AzureRT.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/AzureRT.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"azuretesting\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/azuretesting\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"azuretesting2\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/azuretesting2\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"azuretesting3\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/azuretesting3\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"AzureTools1type\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/AzureTools1type\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"baas-techbureau\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/baas-techbureau\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"baffle-io\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/baffle-io\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"balabit\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/balabit\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"barracudanetworks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/barracudanetworks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"basho\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/basho\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"batch\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/batch\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bayware\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bayware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bdy\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bdy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"belindaczsro1588885355210\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/belindaczsro1588885355210\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bellsoft1582871421940\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bellsoft1582871421940\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"betsol\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/betsol\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"beyondtrust\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/beyondtrust\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bi-builders-as\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bi-builders-as\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"big-id\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/big-id\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"biolibinc1622552350258\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/biolibinc1622552350258\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bissantechnology1583581147809\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bissantechnology1583581147809\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bitdefendercybersecurity\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bitdefendercybersecurity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Bitnami\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Bitnami\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bizagi\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bizagi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bizaptyltd1626489237351\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bizaptyltd1626489237351\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bizdataloome\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bizdataloome\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"biztalk360\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/biztalk360\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"black-duck-software\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/black-duck-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"blackbird\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/blackbird\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"blackmagicdesignincorporated1596492193249\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/blackmagicdesignincorporated1596492193249\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"blk-technologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/blk-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"blockapps\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/blockapps\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"blockchain-foundry\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/blockchain-foundry\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"blockstack\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/blockstack\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bloombase\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bloombase\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bluecat\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bluecat\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bluejeansnetwork1638333611902\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bluejeansnetwork1638333611902\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"blueprismlimited-4827145\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/blueprismlimited-4827145\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bluesyntaxconsulting1617654548594\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bluesyntaxconsulting1617654548594\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bluetalon\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bluetalon\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bmc.ctm\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bmc.ctm\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bmcctm.test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bmcctm.test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"boardpacpvtltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/boardpacpvtltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bocada\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bocada\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"boemskats\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/boemskats\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"botanalytics\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/botanalytics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bowspritconsultingopcprivatelimited1596291408582\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bowspritconsultingopcprivatelimited1596291408582\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bravura-software-llc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bravura-software-llc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Brianjac.Symantec.CloudWorkloadProtection\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Brianjac.Symantec.CloudWorkloadProtection\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bricatainc1584472632111\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bricatainc1584472632111\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bright-computing\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bright-computing\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"brightcomputing\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/brightcomputing\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"brocade_communications\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/brocade_communications\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"brutale\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/brutale\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bryte\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bryte\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bssw\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bssw\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bt-americas-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bt-americas-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"buddhalabs\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/buddhalabs\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cadosecurityltd1626856705534\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cadosecurityltd1626856705534\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"calculated_systems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/calculated_systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"caloudi_corp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/caloudi_corp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"canadiancentreforcybersecurity1610638436359\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/canadiancentreforcybersecurity1610638436359\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Canonical\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Canonical\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"canonical-test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/canonical-test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"carto\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/carto\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cask\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cask\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"castaigroupinc1595243474856\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/castaigroupinc1595243474856\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"catechnologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/catechnologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"catonetworksltd1641478570665\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/catonetworksltd1641478570665\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cautelalabs\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cautelalabs\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cavirin\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cavirin\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cayosoftinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cayosoftinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cdatasoftware\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cdatasoftware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cds\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cds\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"celum-gmbh\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/celum-gmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"center-for-internet-security-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/center-for-internet-security-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"centeritysystems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/centeritysystems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"centrixeltd1594135951373\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/centrixeltd1594135951373\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"centrocomputerspa1584528117084\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/centrocomputerspa1584528117084\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"certifiedsecuritysolutionsinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/certifiedsecuritysolutionsinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"certivox\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/certivox\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cfd-direct\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cfd-direct\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"chain\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/chain\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"checkpoint\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/checkpoint\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"chef-software\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/chef-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Chef.Bootstrap.WindowsAzure\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Chef.Bootstrap.WindowsAzure\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"chunghwatelecom1587573688842\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/chunghwatelecom1587573688842\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cinchy\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cinchy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cinegy-gmbh\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cinegy-gmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ciphertechsinc1646670709341\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ciphertechsinc1646670709341\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"circleci\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/circleci\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cires21\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cires21\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cirruswaveinc1579234787943\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cirruswaveinc1579234787943\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cisco\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cisco\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"citrix\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/citrix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Citrix.ADC\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Citrix.ADC\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"clapsodeughaftungsbeschrnkt1626333173563\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/clapsodeughaftungsbeschrnkt1626333173563\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"clear-linux-project\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/clear-linux-project\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"clone-systems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/clone-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"clouber\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/clouber\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloud-checkr\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloud-checkr\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloud-cruiser\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloud-cruiser\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloud-infrastructure-services\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloud-infrastructure-services\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudaccelinc1628754426775\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudaccelinc1628754426775\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudbees\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudbees\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudbees-enterprise-jenkins\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudbees-enterprise-jenkins\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudbolt-software\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudbolt-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudboltsoftware1639523402532\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudboltsoftware1639523402532\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudboost\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudboost\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudcover\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudcover\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudenablers-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudenablers-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudentity\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudentity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudera\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudera\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudflare\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudflare\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudhouse\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudhouse\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudinfo-4919088\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudinfo-4919088\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudknox\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudknox\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudlanes\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudlanes\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudlink\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudlink\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"CloudLinkEMC.SecureVM\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/CloudLinkEMC.SecureVM\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudmavensolutions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudmavensolutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudneeti\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudneeti\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudplan-gmbh\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudplan-gmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudsecurity\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudsecurity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudsoft\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudsoft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudwhizsolutions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudwhizsolutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudwrxsconsultingltd1631029702055\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudwrxsconsultingltd1631029702055\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"clustrix\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/clustrix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cncf-upstream\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cncf-upstream\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"codaintelligence1606495376525\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/codaintelligence1606495376525\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"codelathe\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/codelathe\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"codenvy\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/codenvy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"codetwo\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/codetwo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cognexcorporation1613759804979\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cognexcorporation1613759804979\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cognexcorporation1647410785838\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cognexcorporation1647410785838\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cognitive-scale\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cognitive-scale\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cognizant\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cognizant\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cognosys\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cognosys\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cohesity\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cohesity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cohesitydev1592001764720\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cohesitydev1592001764720\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cohesive\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cohesive\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"coin-sciences-ltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/coin-sciences-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"collabcloudlimited\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/collabcloudlimited\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"collibranv1619508098620\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/collibranv1619508098620\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"commscopeinc1632135151062\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/commscopeinc1632135151062\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"commvault\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/commvault\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"compellon\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/compellon\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"composable\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/composable\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"comunity\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/comunity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"concentrationheatandmomentumlimited1616154387047\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/concentrationheatandmomentumlimited1616154387047\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Confer\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Confer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"confluentinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/confluentinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"conflux\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/conflux\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"connecting-software\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/connecting-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"consensys\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/consensys\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"containeraider\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/containeraider\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"contiamogmbh\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/contiamogmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"controlcase\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/controlcase\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"controlplane\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/controlplane\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"controlplanecorporation1609967567639\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/controlplanecorporation1609967567639\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"convertigo\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/convertigo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"corda\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/corda\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"core-stack\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/core-stack\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"corent-technology-pvt\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/corent-technology-pvt\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"CoreOS\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/CoreOS\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"couchbase\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/couchbase\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cpanel\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cpanel\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"credativ\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/credativ\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cristiesoftwareltd1599488127561\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cristiesoftwareltd1599488127561\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"crunchyard\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/crunchyard\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"crunchyardltd1623835391104\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/crunchyardltd1623835391104\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cryptocom1585727786636\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cryptocom1585727786636\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cryptosense1605170011574\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cryptosense1605170011574\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cryptzone\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cryptzone\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ctm.bmc.com\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ctm.bmc.com\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ctrliqinc1648673227698\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ctrliqinc1648673227698\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cubebackup\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cubebackup\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cyberark\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cyberark\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cybernetica-as\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cybernetica-as\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cygnalabscorp1646065782458\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cygnalabscorp1646065782458\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cyxtera\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cyxtera\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"d4t4_solutions-1164305\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/d4t4_solutions-1164305\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"daceitdbasensetrafficpulse1579892024934\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/daceitdbasensetrafficpulse1579892024934\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"danielsol.AzureTools1\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/danielsol.AzureTools1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Dans.Windows.App\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Dans.Windows.App\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Dans3.Windows.App\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Dans3.Windows.App\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dataart\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dataart\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"databricks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/databricks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datacore\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datacore\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Datadog.Agent\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Datadog.Agent\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datadynamicsinc1581991927942\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datadynamicsinc1581991927942\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datagapsinc1585348463636\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datagapsinc1585348463636\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dataguiseinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dataguiseinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dataiku\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dataiku\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datalayer\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datalayer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datanomers1584919038987\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datanomers1584919038987\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datanova\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datanova\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datapredsa\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datapredsa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dataroadtechnologiesllc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dataroadtechnologiesllc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datasciencedojo1586563145740\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datasciencedojo1586563145740\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datastax\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datastax\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datasunrise\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datasunrise\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datavirtualitygmbh\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datavirtualitygmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datometry\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datometry\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dbs-h\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dbs-h\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ddn-whamcloud-5345716\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ddn-whamcloud-5345716\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Debian\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Debian\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dece-4446019\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dece-4446019\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"decisosalesbv\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/decisosalesbv\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"deepcognitioninc1593512758156\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/deepcognitioninc1593512758156\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"deepsiginc1581610210151\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/deepsiginc1581610210151\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"deepsurfacesecurityinc1632943333445\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/deepsurfacesecurityinc1632943333445\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dellemc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dellemc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dell_software\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dell_software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"delphix\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/delphix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"deltapathlimited1592886319362\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/deltapathlimited1592886319362\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"denodo\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/denodo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"denyall\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/denyall\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"derdack\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/derdack\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"deskpro1650546806675\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/deskpro1650546806675\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"desktopstudioag1580294245574\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/desktopstudioag1580294245574\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"devfactory\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/devfactory\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"device42inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/device42inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"deviceauthorityinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/deviceauthorityinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"devolutionsinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/devolutionsinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"devopsgroup-uk\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/devopsgroup-uk\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"df-portal-user\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/df-portal-user\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dgsecure\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dgsecure\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Dh2ico\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Dh2ico\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dh2icompany\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dh2icompany\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dhi\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dhi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"diagramics\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/diagramics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dicomsystems1584107398321\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dicomsystems1584107398321\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"diehl-metering\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/diehl-metering\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"digisitesystems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/digisitesystems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"digitaldefenseinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/digitaldefenseinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"digitaloffice\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/digitaloffice\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"digitamizeinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/digitamizeinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"digitate\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/digitate\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"diladele\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/diladele\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dimensionalmechanics-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dimensionalmechanics-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"diqa\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/diqa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"diyatech\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/diyatech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"diyotta\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/diyotta\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"djiindustrialincus\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/djiindustrialincus\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"docker\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/docker\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dome9\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dome9\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dorabot\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dorabot\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dremiocorporation\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dremiocorporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"drizti\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/drizti\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"drone\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/drone\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dsi\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dsi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dundas\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dundas\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dyadic_security\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dyadic_security\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dynatrace\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dynatrace\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dynatrace.ruxit\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dynatrace.ruxit\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"e-magicinc1587696283171\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/e-magicinc1587696283171\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"eastwind-networks-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/eastwind-networks-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"easysoftwaresro1593005637384\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/easysoftwaresro1593005637384\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ebesllc1637780200500\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ebesllc1637780200500\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ecessa\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ecessa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"edevtech\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/edevtech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"edgelesssystems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/edgelesssystems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"edgenetworks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/edgenetworks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"edispheresoftwareprivatelimited1606199736428\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/edispheresoftwareprivatelimited1606199736428\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"education4sight\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/education4sight\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"eecservicesfzllc1604836615706\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/eecservicesfzllc1604836615706\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"egnyte\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/egnyte\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"egress1589289169584\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/egress1589289169584\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"eikonasystemsgmbh1601729310063\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/eikonasystemsgmbh1601729310063\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Elastic\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Elastic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"elasticbox\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/elasticbox\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"elecard\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/elecard\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"electric-cloud\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/electric-cloud\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"elevateiot\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/elevateiot\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"eleven01\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/eleven01\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"elfiqnetworks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/elfiqnetworks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"emercoin\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/emercoin\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"energisme1601990637842\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/energisme1601990637842\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"enforongo\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/enforongo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"engineering-ingegneriainformatica-spa1626786889850\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/engineering-ingegneriainformatica-spa1626786889850\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"engysltd1624364546407\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/engysltd1624364546407\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"enterprise-ethereum-alliance\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/enterprise-ethereum-alliance\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"enterprisedb-corp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/enterprisedb-corp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"enterpriseworx-it\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/enterpriseworx-it\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"epicgames\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/epicgames\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"epicgamesinc1633466121071\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/epicgamesinc1633466121071\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"eproe\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/eproe\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"equalum\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/equalum\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"equilibrium\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/equilibrium\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"equinix\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/equinix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ergoninformatikag1581586464404\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ergoninformatikag1581586464404\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"esdenera\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/esdenera\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ESET\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ESET\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"esetresearch1579795941720\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/esetresearch1579795941720\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"esri\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/esri\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"esyon\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/esyon\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ethereum\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ethereum\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"eurolinuxspzoo1620639373013\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/eurolinuxspzoo1620639373013\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"eventtracker\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/eventtracker\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"evertzmicrosystemsltd1586877923009\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/evertzmicrosystemsltd1586877923009\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"evostream-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/evostream-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"exact\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/exact\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"exasol\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/exasol\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"excelero1608461290726\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/excelero1608461290726\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"exivity\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/exivity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"exonar\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/exonar\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"f5-networks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/f5-networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"falainapteltd1604661424876\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/falainapteltd1604661424876\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"falconstorsoftware\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/falconstorsoftware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fatalsecurity1604924013537\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fatalsecurity1604924013537\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fatpipe-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fatpipe-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fenestrae-1035066\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fenestrae-1035066\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fidesys\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fidesys\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"filecatalyst\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/filecatalyst\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"filemagellc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/filemagellc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fiorano\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fiorano\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fireeye\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fireeye\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"firehost\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/firehost\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"firemon\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/firemon\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"firstderivativesplc1596469572732\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/firstderivativesplc1596469572732\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"flashgrid-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/flashgrid-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"flexbby\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/flexbby\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"flexbby-5255860\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/flexbby-5255860\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"flexify-io\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/flexify-io\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"flexxibleit\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/flexxibleit\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"flowmon\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/flowmon\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"flynet\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/flynet\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"foghorn-systems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/foghorn-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"forcepoint-llc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/forcepoint-llc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"forescout\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/forescout\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"foreseetiab1613650409016\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/foreseetiab1613650409016\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"formpipesoftwareab\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/formpipesoftwareab\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"forscene\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/forscene\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fortanix\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fortanix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fortinet\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fortinet\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fortycloud\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fortycloud\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"forumsystems1599756394904\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/forumsystems1599756394904\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fotopiatechnologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fotopiatechnologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"foxiteuropegmbh1585901066320\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/foxiteuropegmbh1585901066320\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"franzinc1593030725310\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/franzinc1593030725310\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fujitsu_fast\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fujitsu_fast\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fw\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fw\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"g2kgroupgmbh-4821943\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/g2kgroupgmbh-4821943\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gapteq\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gapteq\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gatlingcorp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gatlingcorp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gbs\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gbs\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gemalto-safenet\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gemalto-safenet\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Gemalto.SafeNet.ProtectV\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Gemalto.SafeNet.ProtectV\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"genesistechnologyinc1604912285911\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/genesistechnologyinc1604912285911\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"genuagmbhdevid1\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/genuagmbhdevid1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"genua_gmbh\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/genua_gmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"genymobile\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/genymobile\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gigamon-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gigamon-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"GitHub\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/GitHub\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gitlab\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gitlab\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gitlabinc1586447921813\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gitlabinc1586447921813\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gladinet-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gladinet-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"glantoninc1591876792991\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/glantoninc1591876792991\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"globalidsinc1596800540598\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/globalidsinc1596800540598\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"globalscape\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/globalscape\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"globalsolutions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/globalsolutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gluwareinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gluwareinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"graphistry\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/graphistry\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"graphitegtc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/graphitegtc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"great-software-laboratory-private-limited\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/great-software-laboratory-private-limited\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"greensql\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/greensql\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"greycorbelsolutions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/greycorbelsolutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gridgain\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gridgain\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"guardicore\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/guardicore\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gxchainfoundationltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gxchainfoundationltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"h2o-ai\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/h2o-ai\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hackerbay\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hackerbay\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hackershub\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hackershub\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"haivision\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/haivision\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"haivisionsystemsinc1580780591922\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/haivisionsystemsinc1580780591922\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"haltdoscompvtltd1587136166019\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/haltdoscompvtltd1587136166019\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hammerspace\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hammerspace\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hanu\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hanu\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"haproxy-technologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/haproxy-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"harmanconnectedservicesinc1594928575643\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/harmanconnectedservicesinc1594928575643\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"harpaitalia\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/harpaitalia\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hashhub\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hashhub\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hcl-technologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hcl-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"heimdall-data\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/heimdall-data\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"help-systems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/help-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"helpyio\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/helpyio\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"heretechnologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/heretechnologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hewlett-packard\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hewlett-packard\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hillstone-networks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hillstone-networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hitachi-solutions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hitachi-solutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hitachivantara\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hitachivantara\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"holo-industrie40softwaregmbh1600957636008\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/holo-industrie40softwaregmbh1600957636008\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hortonworks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hortonworks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hpe\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hpe\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"HPE.Security.ApplicationDefender\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/HPE.Security.ApplicationDefender\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"huawei\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/huawei\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hubstor-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hubstor-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hush-hush\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hush-hush\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hvr\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hvr\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hyperglance\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hyperglance\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hypergrid\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hypergrid\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hystaxinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hystaxinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hytrust\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hytrust\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"i-exceed-technology\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/i-exceed-technology\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iaansys\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iaansys\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ibm\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ibm\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ibm-alliance-global-1560886\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ibm-alliance-global-1560886\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ibm-alliance-usa-ny-armonk-hq-ibmstorage-6201192\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ibm-alliance-usa-ny-armonk-hq-ibmstorage-6201192\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ibm-usa-ny-armonk-hq-6275750-ibmcloud-aiops\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ibm-usa-ny-armonk-hq-6275750-ibmcloud-aiops\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iboss\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iboss\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iconics\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iconics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iconsulting-spa\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iconsulting-spa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"icubeconsultancyservicesinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/icubeconsultancyservicesinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iguazio-5069960\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iguazio-5069960\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ikan\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ikan\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iliimbiliimveyazlmsistemlerisanvetica1617000555584\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iliimbiliimveyazlmsistemlerisanvetica1617000555584\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"illuminainc1586452220102\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/illuminainc1586452220102\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"image-technologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/image-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"imaginecommunications\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/imaginecommunications\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"imperva\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/imperva\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"impetustechnologiesinc1591959591877\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/impetustechnologiesinc1591959591877\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"imprivatainc1580479939967\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/imprivatainc1580479939967\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"incorta\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/incorta\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"incredibuild\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/incredibuild\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"indexima1594300233028\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/indexima1594300233028\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"industry-weapon\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/industry-weapon\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"industryweapon1587162781833\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/industryweapon1587162781833\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"inenprocesosyplataformasdetisderldecv1615482385424\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/inenprocesosyplataformasdetisderldecv1615482385424\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"inergybv1637141413454\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/inergybv1637141413454\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"infinitesoftwarecorporation1579223971125\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/infinitesoftwarecorporation1579223971125\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"infiotinc1614034091460\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/infiotinc1614034091460\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"influxdata\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/influxdata\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"infoblox\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/infoblox\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"infogix\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/infogix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"infolibrarian\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/infolibrarian\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"informatica\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/informatica\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"informationbuilders\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/informationbuilders\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"informationtechnologies_ltd_1179601\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/informationtechnologies_ltd_1179601\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"infotecsinternetsecuritysoftwaregmbh1636129257584\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/infotecsinternetsecuritysoftwaregmbh1636129257584\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"infront-consulting-group-ltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/infront-consulting-group-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"infscapeughaftungsbeschrnkt\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/infscapeughaftungsbeschrnkt\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ingenieurstudiohollaus1579587745438\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ingenieurstudiohollaus1579587745438\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ingrammicro\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ingrammicro\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"innomindssoftware\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/innomindssoftware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"innosepgmbh1618331344164\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/innosepgmbh1618331344164\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"innovatorartificialtechsrl1619180685551\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/innovatorartificialtechsrl1619180685551\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"innovtech\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/innovtech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"instight-technology\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/instight-technology\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"integration-objects\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/integration-objects\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"intel-bigdl\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/intel-bigdl\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"intel-fpga\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/intel-fpga\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"intellicus-technologies-pvt-ltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/intellicus-technologies-pvt-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"intelligent-plant-ltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/intelligent-plant-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"intel_corporation\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/intel_corporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"internationaltrustmachinescorporation1582190033865\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/internationaltrustmachinescorporation1582190033865\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"internet20inc1635882446190\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/internet20inc1635882446190\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"intersystems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/intersystems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"intigua\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/intigua\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"intigua1638692632641\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/intigua1638692632641\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"introspecioltd1629872641188\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/introspecioltd1629872641188\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iofabric\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iofabric\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ipinfusion1590066770520\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ipinfusion1590066770520\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ipswitch\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ipswitch\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iqsol\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iqsol\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iquate\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iquate\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iquest\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iquest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"irion\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/irion\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ishlangu-load-balancer-adc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ishlangu-load-balancer-adc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"issp-corporation\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/issp-corporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"isvtestukbigcat\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/isvtestukbigcat\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"isvtestuklegacy\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/isvtestuklegacy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"it4bizdoo\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/it4bizdoo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"itelios\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/itelios\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"itrsgroupltd1620310702149\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/itrsgroupltd1620310702149\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ivanti-inc-pcs\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ivanti-inc-pcs\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ivanti-nzta\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ivanti-nzta\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ivix1595238749040\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ivix1595238749040\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iwnamespace\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iwnamespace\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"izenda\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/izenda\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"jamcracker\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/jamcracker\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"javlinltd1579185328273\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/javlinltd1579185328273\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"jedox\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/jedox\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"jelastic\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/jelastic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"jetnexus\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/jetnexus\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"jetware-srl\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/jetware-srl\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"jfrog\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/jfrog\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"jm-technology-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/jm-technology-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"jogetinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/jogetinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"johnsnowlabsinc1646051154808\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/johnsnowlabsinc1646051154808\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"juniper-networks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/juniper-networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"justanalytics\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/justanalytics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kaazing\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kaazing\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kadenallc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kadenallc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kali-linux\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kali-linux\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kalkitech\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kalkitech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kaminarioinc1588672951794\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kaminarioinc1588672951794\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Kaspersky.Lab\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Kaspersky.Lab\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"KasperskyLab.SecurityAgent\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/KasperskyLab.SecurityAgent\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kaspersky_lab\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kaspersky_lab\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kazendi\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kazendi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kelverion\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kelverion\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kemptech\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kemptech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kepion\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kepion\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"KevlarExtensions.M365Security.SecureOS\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/KevlarExtensions.M365Security.SecureOS\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"KevlarExtensions.M365SecurityHostIDS\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/KevlarExtensions.M365SecurityHostIDS\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"KevlarExtensions.M365SecurityInventory\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/KevlarExtensions.M365SecurityInventory\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"KevlarExtensions.M365SecurityInventory.NameChangeTest\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/KevlarExtensions.M365SecurityInventory.NameChangeTest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"KevlarExtensions.M365SecurityODL\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/KevlarExtensions.M365SecurityODL\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"KevlarExtensions.M365SecurityTLSExtension\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/KevlarExtensions.M365SecurityTLSExtension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kinetica\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kinetica\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kinvolk\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kinvolk\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"knime\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/knime\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kobalt\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kobalt\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kognillc1600118221163\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kognillc1600118221163\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kognitivsparkinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kognitivsparkinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"konginc1581527938760\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/konginc1581527938760\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"konsys-ltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/konsys-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"koverseinc1588716263110\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/koverseinc1588716263110\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kryonsystems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kryonsystems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"krypc-technologies-pvt-ltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/krypc-technologies-pvt-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kyligence\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kyligence\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kyvos-insights-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kyvos-insights-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lab3solutions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lab3solutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lancom-systems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lancom-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lansa\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lansa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lastline\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lastline\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"launchnodesltd1644561451121\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/launchnodesltd1644561451121\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"leap-orbit\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/leap-orbit\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lenovosoftware1604394104439\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lenovosoftware1604394104439\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"leostream-corporation\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/leostream-corporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lepide-software\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lepide-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"levacloudllc1602151818089\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/levacloudllc1602151818089\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"libelleag\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/libelleag\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"liberatii\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/liberatii\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"libraesva\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/libraesva\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"liebsoft\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/liebsoft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lightning-analyticsinc1582000647396\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lightning-analyticsinc1582000647396\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"linuxbasedsystemsdesignltd1580878904727\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/linuxbasedsystemsdesignltd1580878904727\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"liquid-files\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/liquid-files\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"liquidware\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/liquidware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"literatu\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/literatu\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"litespeedtechnologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/litespeedtechnologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"litespeed_technologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/litespeed_technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"litionenergiegmbh1580128829115\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/litionenergiegmbh1580128829115\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"litmusautomation1582760223280\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/litmusautomation1582760223280\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"llcitpro\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/llcitpro\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lnw-softgmbh\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lnw-softgmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"loadbalancer\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/loadbalancer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"logicflowag1638535407949\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/logicflowag1638535407949\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"logsign\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/logsign\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"logstarecorp1635838645101\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/logstarecorp1635838645101\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"logtrust\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/logtrust\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"logzio\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/logzio\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"looker\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/looker\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lotus_beta_analytics\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lotus_beta_analytics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lti-lt-infotech\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lti-lt-infotech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"luminate-security\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/luminate-security\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"M365Security.KevlarExtensions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/M365Security.KevlarExtensions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"M365SecurityInventory\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/M365SecurityInventory\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"machinesense\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/machinesense\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"madhavajay1632269232059\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/madhavajay1632269232059\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"maidenhead-bridge\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/maidenhead-bridge\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"manageengine\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/manageengine\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mapd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mapd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"maplelabsinc1623932715330\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/maplelabsinc1623932715330\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mapr-technologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mapr-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"marand\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/marand\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"marketplace-rdfe-caps\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/marketplace-rdfe-caps\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"marklogic\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/marklogic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"massiveanalytic-\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/massiveanalytic-\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mathworks-deployment\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mathworks-deployment\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mathworks-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mathworks-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"matillion\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/matillion\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mavinglobal\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mavinglobal\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"McAfee.EndpointSecurity\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/McAfee.EndpointSecurity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"McAfee.EndpointSecurity.test3\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/McAfee.EndpointSecurity.test3\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"meanio\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/meanio\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"media3-adobe\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/media3-adobe\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"media3-technologies-llc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/media3-technologies-llc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mediatekinc1586141563888\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mediatekinc1586141563888\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mendix\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mendix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"merlynnintelligencetechnologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/merlynnintelligencetechnologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"meshifyappinc1622759451429\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/meshifyappinc1622759451429\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"messagesolution\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/messagesolution\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"metaswitch\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/metaswitch\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mettainnovations-4900054\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mettainnovations-4900054\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mfe_azure\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mfe_azure\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mfiles\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mfiles\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mico\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mico\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"micro-focus\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/micro-focus\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microlinkpcukltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microlinkpcukltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microolap\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microolap\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsecpteltd1634010681688\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsecpteltd1634010681688\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-ads\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-ads\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-agci-gaming\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-agci-gaming\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-aks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-aks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-avere\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-avere\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-azure-batch\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-azure-batch\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-azure-compute\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-azure-compute\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-azure-hdinsight\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-azure-hdinsight\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-crypto\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-crypto\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-dsvm\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-dsvm\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-hyperv\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-hyperv\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-minecraft\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-minecraft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AdminCenter\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AdminCenter\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AKS\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AKS\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.ActiveDirectory\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.ActiveDirectory\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.ActiveDirectory.LinuxSSH\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.ActiveDirectory.LinuxSSH\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Applications\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Applications\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Automation.HybridWorker\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Automation.HybridWorker\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Automation.HybridWorker.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Automation.HybridWorker.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.AzureDefenderForServers\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.AzureDefenderForServers\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.AzureDefenderForSQL\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.AzureDefenderForSQL\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.AzureHybridBenefit\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.AzureHybridBenefit\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Backup.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Backup.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Backup.Test.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Backup.Test.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Batch\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Batch\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.ChangeTracking\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.ChangeTracking\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.ChangeTracking.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.ChangeTracking.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.ChangeTrackingAndInventory\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.ChangeTrackingAndInventory\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Chaos\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Chaos\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Compute.Security\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Compute.Security\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.ContainerUpstream\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.ContainerUpstream\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.DefenderForServers.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.DefenderForServers.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.DefenderForServers.Test2\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.DefenderForServers.Test2\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Diagnostics\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Diagnostics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Diagnostics.Build.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Diagnostics.Build.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Diagnostics.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Diagnostics.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test012be407-61ea-4e45-a2c3-71a45999ca21-20191228083800\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test01971384-3044-413b-8b1c-33b5d461bf23-20200107051823\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test0225ec7d-b36c-4ac8-82f0-aa4fafaf10a9-20200111051346\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test025e16a1-328d-45a2-b7e3-71f7e4cde046-20191229064028\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test02d1f941-5607-4757-8df7-fd8c5631ab45-20200103083810\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test039abd7f-360c-42a1-ad5d-77527c519286-20191002233412\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test04a0f157-c6fb-4595-b6ca-6c82a2338063-20200108101451\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test0737f33e-63e0-4ba9-b04b-b93a1de4e997-20200106083639\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test0a44d7be-63fa-418d-a7b6-89a44dd21894-20200107052935\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test0d01b487-7f79-4d87-b330-5c025068db45-20191004190331\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test0d643748-e6fe-41ad-b4d3-89a289a0cee0-20191003055620\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test0df83c51-5bb9-43f8-8ae9-bc896ea64f78-20200110220221\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test0f02c246-7e65-4010-9367-ca4530c3897e-20191004190223\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test157494ec-e788-43b0-8d26-a17e39ee07cc-20191002011945\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test1661d154-b623-4507-8a56-3a89812c456c-20200111083940\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test17bbd860-f21d-40ab-9026-16e05f2907f0-20200106083451\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test194e2333-13cd-43e3-b0a4-c8cdcf1a3600-20200110211106\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test1bc26b19-b8d8-41f9-a26d-818f277bdf93-20200101113139\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test1c840053-9213-4f2a-8f2e-9bf2297908bd-20200108101424\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test1d7bba72-69f1-43cd-a38c-41ce0b5f4bae-20200109050041\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test1f7a8078-50e7-4a3a-91eb-d178fd4c403b-20191002233353\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test1fef1fdc-57ba-46a8-a879-475ba7d45a7a-20200106083509\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test21332f15-f78d-4d31-afac-79b9dc989432-20191231175840\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test22f10717-6939-4003-a9ce-38effd8b77d6-20191007191355\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test2334e6e3-bb72-4241-a36f-c2429d69bc0b-20200106050834\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test24fa9eb5-1c59-4425-b61c-30fd638c2a45-20191003203802\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test2521a545-ed61-4a15-bed1-aba7ce1d81ee-20200106050804\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test25c6fe61-1282-43c2-867b-b5039219989c-20200105081851\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test27515c8c-6773-4f92-afb0-35691cc6e3b6-20200103083821\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test28012680-48e7-4903-877f-2f29464e63d5-20191229033424\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test29a7a529-d293-4728-9d7f-257ed996e64f-20200108081759\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test2a5f2d2c-b8e3-46c2-850d-a1641c024fe7-20200107084228\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test2ce856af-ab17-48f2-ba3e-bcd9af091061-20200110013246\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test2e012e83-6361-4365-963f-6ced8a08e91c-20200110211254\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test2ecf67b2-fb63-4461-b6a6-7026c4fb1168-20191002214026\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test2ede6564-c7cc-44cb-a1a8-902505c9829d-20191003020742\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test2f4ebc17-e27e-48d9-9cc3-ff933c21884e-20200106092410\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test349ee02c-af9b-4663-a963-823b40eefed8-20200108083612\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test34cf6b13-b78e-478b-b596-8b661629371d-20191007195455\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test36cc5b60-2b23-4a04-bf95-f7865e1141cf-20200110085718\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3712fca9-5cdd-4609-be69-b02aedc5c55c-20200107084115\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3772d042-92e2-4bcb-99b7-8a6a119cc088-20191231182808\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test37a6dd64-d44d-465e-85bc-3bc38be90350-20200104083535\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test381074d5-7156-472b-801a-b35f8fef4cc6-20200105050612\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3877a44d-4c48-40db-80eb-227272d5acd6-20200110103540\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test38ecd28e-7018-4672-840c-3044a5e7a6b5-20200111084208\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test395a0b49-442a-450c-8a1f-65b0aa3bcf47-20200105083839\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3971b300-edff-44a8-b61b-7f9b7460a8d6-20191003002234\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3adeec20-7458-4b3d-af26-0b6bc2aae3eb-20200103083751\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3b20dd96-f3e4-4798-998d-8c433c2449a7-20200108083635\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3ce2fd4a-8b5a-4c7e-b08d-3e48fc0f45e7-20200104083825\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3d499ca7-cc8d-41cc-a6dc-ffb1a4ac4942-20200107053004\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3db7240e-5e42-4d6d-b024-cc9fce3c828b-20200105083520\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3f6b7341-635f-48d5-a36d-be5dfe3002c4-20200105050937\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3fc26934-ede2-4482-ad5e-f66f6135d4a6-20191228055558\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test406d077c-6017-4062-bc96-f809147a2331-20200106050748\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test4302336c-e039-4e70-bcb6-9275f6089e4a-20200108144821\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test453a087e-8435-46db-970a-4ee633cc4c4a-20200102083458\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test46b73afa-2259-4aff-81e1-a58bf24b59aa-20191229033459\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test4a3399ee-82ea-46aa-9e3a-5434b588e3b6-20191228013518\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test4eb7a185-527b-4b9f-93a8-7f1cec9d062e-20191231151207\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test520a0915-f9f0-4da4-9fa1-1b74fc1470aa-20200102083505\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test5397960f-023b-4979-9a8b-800d049045a4-20191007195417\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test55a36387-8a3f-4159-9884-29b97539a253-20200109080443\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test5645f186-4ee5-4209-af37-423660e3318c-20191231175947\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test58b4461d-4d2d-4395-b6d2-ab83d4d8c62f-20200111001002\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test5b0bf447-d98d-429d-8334-c032d197c743-20191003203846\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test5bc90367-1ea2-400b-a40c-321081bae3f3-20200108145035\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test5bd0562f-e939-456f-a6ee-c848d1aba616-20200101151641\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test5e4efe90-916c-4c96-802c-1508a5b6da78-20191231151150\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test5f8f0c10-cc3c-45ec-a068-fb1c7edfa0d9-20200101145958\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test60a000b7-286c-4b2b-9137-bbc088736419-20200108144920\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test6192a01b-ba47-4d08-904a-71647a49a112-20191008041625\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test62835538-89c6-4f66-9034-f7a4b176c615-20191007234245\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test651e4ad2-ee4a-462e-a506-b56b1969f5d0-20200110230749\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test691d94e5-c40c-4568-94b0-09b08aea42b1-20200106050808\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test6aa3643c-011a-4180-877f-cad955a8e664-20191007234642\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test6cfb469b-8478-468f-9bb5-691affd32abb-20200107083803\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test6d36b6b2-7956-4e62-91c1-c33792fd4bb1-20200110123203\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test6e28168e-a9c8-4c0a-8b40-60c2a1502d43-20200108052802\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test6eb763ac-7fbe-4e44-bee7-aad035ee2a7d-20200110084429\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test6efec253-f625-46f0-9d74-324f69e963d8-20200107070514\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test70fa7e4c-3122-4ff7-aec6-fe75ab660a01-20200108105900\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test710a5fbf-06c7-46ac-b96d-a29d2586422f-20200108083639\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test71d72489-67c6-45e2-b1e6-a19546efc823-20200105112903\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test721fccf1-2b3e-44b6-908f-51b910e88b09-20200111104931\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test742d0189-9e41-4f1b-8ad3-31c05d34903b-20200111103247\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7836a97c-f56e-48d0-8b5d-61e79aeb3226-20200111071656\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test78666b2e-25c8-4a48-931a-3131a0317d73-20191002194352\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test79f13508-fcbd-47b9-988f-1c21ef5e7f2e-20191002015429\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test79fb90ce-4691-4212-99a7-6e4069bd5984-20191007234256\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7a8cf687-6a21-4181-ba98-902fee717bd3-20200104103216\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7aabf813-6644-483a-b9e0-ba6f8973ba1f-20191002232822\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7c96c10a-0c8f-4ab0-83fd-1ad66a362e33-20191229033458\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7e79b6ff-2559-44fe-b3ba-afaa68d63636-20200108112116\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7ea372f7-ea7e-4b9e-bbad-4f35c1567aa2-20200108052736\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7fac3d04-98a5-4fc4-904e-9ea3b86eadc2-20200106050751\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7fe20dd6-9ed9-4126-bb1d-031c01ac4550-20200101114504\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7ff974d9-c841-4249-b05b-bbf663cb4605-20200106084104\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test815bd4d5-fc24-4a47-be20-063c4809902c-20200109050508\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test817654d0-2109-4d95-9284-8c8a9d960d08-20200108053758\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test821ca3b6-dd05-4e80-b3d8-74ba03b2609b-20191231151151\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test8285dc3e-637d-4d46-9695-adc39cbe7d2f-20200108144457\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test828aae03-9239-4938-a303-c23c42311878-20200102083419\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test84afd814-5098-49ab-af99-e50350b5898b-20200110211134\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test85b08563-b15f-4202-a0bc-f2bc2df2c71a-20200107053335\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test88aac268-c087-4481-b78e-99b920784a33-20200101084853\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test88dbd442-a8cc-4874-81a0-d3192c61df62-20191001224544\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test894dfb75-a00f-4f0c-894c-cae1c9846ad3-20200105051803\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test8d09bf4d-ee63-4ab1-a986-a4b802418403-20200111051447\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test8d4d652b-4f05-4e99-93dd-78b9a36b5c78-20191003203755\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test8de64739-43d8-4f84-af65-fdb3d0885288-20200108053543\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test8e324c65-a51d-4eeb-9ec8-d5f8662dc041-20191228165107\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test8e564580-8e53-4300-85f1-bf7f31dd37ff-20200107013348\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test8f458ca7-8898-4d58-b93d-bfb0c3da028c-20200109050310\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test901cd6ca-5565-4552-a3de-d204d01935c0-20200108083706\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test907b39e5-4008-4b55-93a0-18e9697b9cf3-20200108053817\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test90c2be7c-d7ec-4abf-9fad-fef90fc3ef4d-20191004022234\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test922db678-6ee8-43d5-86ff-6a86e132d332-20200107085231\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test93b88aec-5277-4b1b-910c-7008e972ce91-20200107013304\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test95a9104b-6cba-42d8-82ff-cc37e5ac44db-20200108081723\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test96da1605-19e0-46eb-9ce0-53e840f5e2cb-20200101111729\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test996066b2-7d29-400f-929b-e343a21046f7-20191231151212\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test99663fff-ed21-4a91-9687-1a6da2abb033-20200106084508\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test9eb5efa5-c3c1-4c13-80a6-11f5eba67372-20200108144852\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testa3791896-b1fc-491e-ba0d-aefcd8d9e52a-20200105083503\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testa37ff709-a078-45a0-8187-41733df8e101-20200109050003\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testa4c5fe4e-936e-4be1-a612-a331aff54a8c-20200111105055\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testa59bce1d-e32c-423d-a86e-945d4aeb98b4-20200107051821\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testa604c059-8279-4f4d-a354-eec27222a06c-20200111051514\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testa71fefb1-0d9c-4fb3-8d3d-5dcd12d72b77-20200103103221\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testa748013d-c5a6-44f9-88eb-43167207c742-20200111051402\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testaab67022-4f2b-420d-a06a-2c4045110cdf-20191229033144\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testacab9541-280f-4491-9f49-ac57653f0a07-20200105083839\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testad298437-0349-4cc7-88a9-d8aabcba9df1-20191002233431\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testadd68286-f9e0-4ab1-a526-d8f3cf0f054e-20200105084128\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testade4c52b-18f5-4b67-8e93-945358ce4f7d-20191007234259\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testae421c1d-0211-4ef2-b372-564ce8ad484a-20200110104035\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testafbbd8bf-aec5-48bf-8fea-73fa15ccc315-20191001224727\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testb15148bf-78d2-42d4-ad08-b3ad8fb4b122-20200101084759\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testb4237708-3688-40ea-85a2-275c05f4d100-20191228083519\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testb799a18f-be45-4c5c-8438-163ac2e1f1e7-20191004190529\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testb7cee88a-e5ac-4af4-99c8-7247020b00c3-20200105051201\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testb7df0d9a-27c0-4ca5-b692-08dd90387b98-20200111083443\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testbbf6bf32-4bd0-4381-b8f7-2658f585df4d-20191003203846\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testbeea1376-166a-4b1a-8923-c907cc9737d9-20200107013336\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testbf9154e9-6166-48c2-86fe-1f331be606d7-20200107051823\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc0d7c3c5-23b8-489c-a5e0-ae87c681b696-20200101083539\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc193f31a-5186-4e93-84f6-0e4ab87b73c1-20200107052937\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc1c7e8dc-fa8c-47d9-8305-de6d1451b939-20200101085248\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc1d0c917-e2ae-430c-a2ca-383fb0fda046-20191007235839\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc23a3fbb-6e95-4c0d-94fc-c8ab14dddf1c-20191231151117\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc2697630-6247-411a-94b3-c2974ad8cbee-20191007195417\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc466b80f-670f-4383-89b8-44e0d509fa20-20191002000516\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc5c8d9bd-75fa-4db3-9f34-5d7b7098584c-20191003203851\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc8b6d14b-a5db-48e0-bfad-a2818d432bea-20200104083443\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc933efa8-c553-4b93-884f-b7221d9ca789-20191228083750\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testcbe8ab80-46ef-49b1-a7bb-4e3d6e50e49f-20200104050811\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testccc0b5e6-9b0d-451a-8ac4-6f4af293b913-20200106092645\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testcec64786-04b1-487c-80ec-050da646fb1c-20191005123412\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testd104a52f-eba2-401d-8e7f-a841c90f7712-20191228083553\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testd724cea4-0d3c-4539-b2ff-be08fb23a67e-20200107083714\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testd8e60bac-27ff-4fba-90b8-732c9c5ff91c-20191228083751\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testd99db4a5-7683-4584-89ad-fefd711de284-20191004190210\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testd9b4309a-67bc-4cd8-ac47-094cb20ca6aa-20200101090202\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testda3320e0-28f2-4146-a002-e06296362711-20191004190115\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testda714121-3240-4253-90c3-48c43f115c90-20200102083419\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testdb357558-60b4-4ee3-9ec3-ba22c5d827fb-20191004020617\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testdc7230e9-df6d-4edd-a57c-ef7e0432c463-20191002011345\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testdccb59de-436f-4935-bed6-2e677dcaf36a-20200109111802\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testde985b23-9333-4f6e-a5e8-82025a38b2af-20200102083510\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Teste271da3e-cbcb-4ee7-8770-f297f414451f-20191003015540\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Teste4070edd-aec0-455d-8a79-aecdb7170b6d-20191007234642\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Teste42f351a-4da0-4f0d-93e9-ef1d98e06659-20200108083633\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Teste66ca23c-f4bf-4eb3-8418-139364d19e7d-20200107062643\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Teste78b1ab2-1380-48ab-9923-0276cdb7198b-20191001224742\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Teste8607e14-b4f8-472a-bd5b-893b8d9612e6-20200112045941\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Teste980b80e-3add-42c0-bc98-a84020b2d128-20200108101640\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Tested79dba9-2d38-4ea9-a01c-56e94b30ca7a-20191007195447\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testee9dcf5f-f7c4-4192-a8f4-28e9bc7d0f7c-20191001225005\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testefbb340a-b68b-4200-872b-d05e7d29f92d-20191007195432\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testf1fc0559-6740-48dd-9501-2b933c731d52-20200103083458\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testf41dfc97-bb51-4fba-86ca-a6f2695c415a-20200107050834\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testf5784447-83ed-4c00-8764-ea0f932aafa2-20200106085748\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testf6128ef6-c13c-420e-8088-0710888ce88b-20200109050003\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testf863ab2c-ada9-4646-84c7-1f83a82375d7-20191229033226\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testfac552a7-418f-4baa-8f51-d199ceff5c68-20200103050817\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testfb7be054-5c15-494f-822c-b64f9a36e2f3-20200105051753\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testfc5c7585-6c9a-4aa4-a7c4-1223a94e00c7-20200104083552\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.FileServer.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.FileServer.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.FleetDiagnostics\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.FleetDiagnostics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.FleetDiagnostics.Dev\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.FleetDiagnostics.Dev\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Geneva\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Geneva\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.KeyVault\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.KeyVault\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.KeyVault.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.KeyVault.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.LabServices\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.LabServices\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.LabServices.test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.LabServices.test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.Agent\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.Agent\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.Dev\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.Dev\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.Dev.INT\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.Dev.INT\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.Dev.SCALE\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.Dev.SCALE\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.Dev.TEST\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.Dev.TEST\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.GuestHealth\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.GuestHealth\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.DEV\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.DEV\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.INT\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.INT\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.SCALE\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.SCALE\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.TEST\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.TEST\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.INT.Dev\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.INT.Dev\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.SCALE.Dev\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.SCALE.Dev\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.TEST.Dev\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.TEST.Dev\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.WorkloadInsights.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.WorkloadInsights.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.WorkloadInsightsTest.newnamespace\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.WorkloadInsightsTest.newnamespace\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.Workloads\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.Workloads\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.Workloads.Dev\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.Workloads.Dev\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitoring.DependencyAgent\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitoring.DependencyAgent\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitoring.DependencyAgent.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitoring.DependencyAgent.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Networking.DNS\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Networking.DNS\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Networking.SDN\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Networking.SDN\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.NetworkWatcher\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.NetworkWatcher\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.NetworkWatcher.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.NetworkWatcher.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.OpenSSH\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.OpenSSH\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Performance.Diagnostics\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Performance.Diagnostics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Performance.Diagnostics.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Performance.Diagnostics.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.RecoveryServices\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.RecoveryServices.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices.SiteRecovery\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.RecoveryServices.SiteRecovery\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices.SiteRecovery2\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.RecoveryServices.SiteRecovery2\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices.WorkloadBackup\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.RecoveryServices.WorkloadBackup\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices.WorkloadBackup.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.RecoveryServices.WorkloadBackup.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.AntimalwareSignature\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.AntimalwareSignature\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.AntimalwareSignature.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.AntimalwareSignature.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.Dsms\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.Dsms\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.Dsms.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.Dsms.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.LinuxAttestation\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.LinuxAttestation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.LinuxTestAttestation\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.LinuxTestAttestation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.Monitoring\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.Monitoring\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.Monitoring.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.Monitoring.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.Monitoring.Testing\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.Monitoring.Testing\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.TestWindowsAttestation\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.TestWindowsAttestation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.WindowsAttestation\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.WindowsAttestation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.WinTestAttestation\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.WinTestAttestation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Sentinel.DnsExtension.Dev\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Sentinel.DnsExtension.Dev\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.ServiceFabric.MC\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.ServiceFabric.MC\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.ServiceFabric.MC.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.ServiceFabric.MC.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.SiteRecovery.Stage\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.SiteRecovery.Stage\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.SiteRecovery.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.SiteRecovery.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.SiteRecovery2.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.SiteRecovery2.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Test.Identity\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Test.Identity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WindowsFabric.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WindowsFabric.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.ReleasePipeTest\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.ReleasePipeTest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.ReleasePipeTest.INT\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.ReleasePipeTest.INT\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.ReleasePipeTest.TEST\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.ReleasePipeTest.TEST\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test1\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test2\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test2\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test3\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test3\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test4\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test4\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test5\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test5\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test5.INT\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test5.INT\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test5.TEST\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test5.TEST\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.VincentTest\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.VincentTest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.VincentTest2\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.VincentTest2\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.VincentTest3\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.VincentTest3\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.VincentTest4\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.VincentTest4\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.TestTest\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.TestTest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.TestTest.INT\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.TestTest.INT\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.TestTest.TEST\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.TestTest.TEST\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Windows.ReleasePipeTest.INT\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Windows.ReleasePipeTest.INT\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Windows.ReleasePipeTest.TEST\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Windows.ReleasePipeTest.TEST\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoring\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoring.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoringTest\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoringTest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureData\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureData\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureData.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureData.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.Canary\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights.Canary\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.Corp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights.Corp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.Linux.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights.Linux.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.LinuxTest\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights.LinuxTest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.Meya0206\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights.Meya0206\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.MeyaCorp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights.MeyaCorp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.Testing\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights.Testing\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureSecurity.JITAccess\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureSecurity.JITAccess\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.CloudBackup.Workload.Extension\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.CloudBackup.Workload.Extension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.CloudBackup.Workload.Extension.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.CloudBackup.Workload.Extension.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Compute\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Compute.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Compute.TestSar\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute.TestSar\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.CPlat.Core\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.CPlat.Core\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.CPlat.Core.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.CPlat.Core.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Dcsswe.Extensions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Dcsswe.Extensions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.EnterpriseCloud.Monitoring\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.EnterpriseCloud.Monitoring.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.EnterpriseCloud.Monitoring.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Golive.Extensions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Golive.Extensions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.GuestConfig.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.GuestConfig.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.GuestConfiguration\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.GuestConfiguration\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.GuestConfiguration.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.GuestConfiguration.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.GuestConfiguration.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.GuestConfiguration.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.HpcCompute\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.HpcCompute\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.HpcCompute.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.HpcCompute.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.HpcPack\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.HpcPack\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Interceptor\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Interceptor\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.M365\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.M365\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.M365SecurityConfiguration.Kevlar.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.M365SecurityConfiguration.Kevlar.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.ManagedIdentity\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.ManagedIdentity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.ManagedServices\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.ManagedServices\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.ManagedServices.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.ManagedServices.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.MonitoringAgent.Extension\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.MonitoringAgent.Extension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Network\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Network\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.OSTCExtensions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.OSTCExtensions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.OSTCExtensions.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.OSTCExtensions.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.OSTCExtensions.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.OSTCExtensions.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.OSTCExtensions.Testing\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.OSTCExtensions.Testing\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Powershell\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Powershell\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Powershell.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Powershell.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Powershell.Test01\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Powershell.Test01\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.SecurityManagement.Kevlar\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.SecurityManagement.Kevlar\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Sentinel.AzureMonitorAgentExtensions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Sentinel.AzureMonitorAgentExtensions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.SoftwareUpdateManagement\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.SoftwareUpdateManagement\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.SoftwareUpdateManagement.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.SoftwareUpdateManagement.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.SqlServer.Managability.IaaS.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.SqlServer.Managability.IaaS.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.SqlServer.Management\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.SqlServer.Management\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.SqlServer.Management.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.SqlServer.Management.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.SystemCenter\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.SystemCenter\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.SystemCenter.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.SystemCenter.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Test.Azure.Workloads\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Test.Azure.Workloads\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.TestSqlServer.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.TestSqlServer.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.ETWTraceListenerService\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.Azure.ETWTraceListenerService\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.RemoteDebug\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.Azure.RemoteDebug\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.RemoteDebug.Json\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.Azure.RemoteDebug.Json\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.ServiceProfiler\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.ServiceProfiler\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.Services\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.Services\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.WindowsAzure.DevTest\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.WindowsAzure.DevTest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.WindowsAzure.DevTest.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.WindowsAzure.DevTest.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.WindowsAzure.RemoteDebug\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.WindowsAzure.RemoteDebug\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.WindowsAzure.Test.RemoteDebug\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.WindowsAzure.Test.RemoteDebug\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Windows.Azure.Extensions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Windows.Azure.Extensions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Windows.AzureRemoteApp.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Windows.AzureRemoteApp.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Windows.RemoteDesktop\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Windows.RemoteDesktop\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.WindowsAdminCenter\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.WindowsAdminCenter\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.WindowsAdminCenter.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.WindowsAdminCenter.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.WindowsAzure.Compute\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.WindowsAzure.Compute\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.WindowsAzure.Compute.test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.WindowsAzure.Compute.test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.WVD\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.WVD\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoftagciuk\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoftagciuk\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoftazurecituswarp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoftazurecituswarp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftAzureSiteRecovery\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftAzureSiteRecovery\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftBizTalkServer\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftBizTalkServer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftCBLMariner\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftCBLMariner\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoftcmotest\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoftcmotest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoftcorporation1602274591143\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoftcorporation1602274591143\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoftcorporation1620407702632\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoftcorporation1620407702632\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftDynamicsAX\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftDynamicsAX\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftDynamicsGP\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftDynamicsGP\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftDynamicsNAV\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftDynamicsNAV\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoftfarmbeats\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoftfarmbeats\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftHybridCloudStorage\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftHybridCloudStorage\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftOSTC\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftOSTC\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftPowerBI\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftPowerBI\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftRServer\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftRServer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftSharePoint\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftSharePoint\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftSQLServer\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftSQLServer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftTestLinuxPPS\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftTestLinuxPPS\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftVisualStudio\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftVisualStudio\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftWindowsDesktop\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsDesktop\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftWindowsServer\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsServer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftWindowsServerHPCPack\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsServerHPCPack\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft_iot_edge\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft_iot_edge\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft_javaeeonazure_test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft_javaeeonazure_test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microstrategy\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microstrategy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"midasolutions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/midasolutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"middleware\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/middleware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"midfin\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/midfin\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"midvision\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/midvision\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mihupcommunicationspvtltd1599046998010\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mihupcommunicationspvtltd1599046998010\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mindcti\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mindcti\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"minio\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/minio\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"miraclelinux\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/miraclelinux\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"miracl_linux\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/miracl_linux\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"miri-infotech-pvt-ltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/miri-infotech-pvt-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mistio1601460379393\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mistio1601460379393\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mobilab\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mobilab\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"modern-systems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/modern-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"modexblockchaindatabase\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/modexblockchaindatabase\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"monetdbsolutions1611751313758\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/monetdbsolutions1611751313758\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"monitorapp1579029852605\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/monitorapp1579029852605\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"monitorcomputersystemsltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/monitorcomputersystemsltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"moogsoft\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/moogsoft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"morpheus-data\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/morpheus-data\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"moviemasher\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/moviemasher\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mriisoftllc1579457820427\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mriisoftllc1579457820427\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"msopentech\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/msopentech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mtnfog\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mtnfog\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"multima1643619641681\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/multima1643619641681\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"multisoft-ab\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/multisoft-ab\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mvp-systems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mvp-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mwg_azure\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mwg_azure\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mxhero\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mxhero\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"my-com\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/my-com\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"myarchinc1614657280935\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/myarchinc1614657280935\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"narrativescience\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/narrativescience\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nasuni\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nasuni\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nasunicorporation\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nasunicorporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"navicloudrsoftwarepteltd1601967280369\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/navicloudrsoftwarepteltd1601967280369\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ncache\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ncache\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ncbi\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ncbi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ncomputingglobalinc1604353053068\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ncomputingglobalinc1604353053068\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ndl\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ndl\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ndstriyelotomasyonsistemlerisanvetica1623147454601\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ndstriyelotomasyonsistemlerisanvetica1623147454601\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nebbiolo-technologies-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nebbiolo-technologies-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nec-technologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nec-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nefelinetworks1591201080882\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nefelinetworks1591201080882\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"neo4j\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/neo4j\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"neos\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/neos\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"neowaybusinesssolutions-4956350\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/neowaybusinesssolutions-4956350\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netapp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netapp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netatwork\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netatwork\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netfoundryinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netfoundryinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netgate\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netgate\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netikus-net-ltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netikus-net-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netiq\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netiq\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netka\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netka\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netmail\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netmail\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netscout\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netscout\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netspi\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netspi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netsweeper\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netsweeper\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"networksexchangetechnologyltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/networksexchangetechnologyltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netwrix\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netwrix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netx\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netx\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"neusoft-neteye\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/neusoft-neteye\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"newegginc1646343565758\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/newegginc1646343565758\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"newnetcommunicationtechnologies1589991852134\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/newnetcommunicationtechnologies1589991852134\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"NewRelic.Infrastructure.Extensions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/NewRelic.Infrastructure.Extensions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"newtglobalconsultingllc1581492268566\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/newtglobalconsultingllc1581492268566\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nextronic-5290868\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nextronic-5290868\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nginxinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nginxinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nice-it-management-solutions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nice-it-management-solutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nicepeopleatwork\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nicepeopleatwork\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nilespartnersinc1617691698386\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nilespartnersinc1617691698386\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"niolabs-5229713\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/niolabs-5229713\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nirvatosoftwarepvtltd1601368706606\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nirvatosoftwarepvtltd1601368706606\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nodejsapi\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nodejsapi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"noianetworklimited1584098036197\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/noianetworklimited1584098036197\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nokiaofamericacorporation1591716055441\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nokiaofamericacorporation1591716055441\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"noobaa\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/noobaa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"norcominformationtechnologygmbhcokgaa\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/norcominformationtechnologygmbhcokgaa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"noricumcloudsolutions1600524477681\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/noricumcloudsolutions1600524477681\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"norsync\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/norsync\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"northbridge-secure\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/northbridge-secure\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nozominetworks1582208017986\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nozominetworks1582208017986\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nri\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nri\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ntegralinc1586961136942\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ntegralinc1586961136942\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ntt-data-intellilink-corporation\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ntt-data-intellilink-corporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nttdata\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nttdata\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nttltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nttltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nuco-networks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nuco-networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"numbersbelieve\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/numbersbelieve\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"numtrallcpublisher\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/numtrallcpublisher\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nuxeo\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nuxeo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nvidia\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nvidia\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"o2mc-real-time-data-platform\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/o2mc-real-time-data-platform\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"objectivity-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/objectivity-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"objectivity1595351622261\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/objectivity1595351622261\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"oceanblue-cloud\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/oceanblue-cloud\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"OctopusDeploy.Tentacle\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/OctopusDeploy.Tentacle\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"odix\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/odix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"odysseuscomputationalsolutions1630242118741\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/odysseuscomputationalsolutions1630242118741\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"odysseyconsultantsltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/odysseyconsultantsltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"officeatwork-ag\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/officeatwork-ag\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"omega-software\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/omega-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"onapsis\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/onapsis\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"oncore_cloud_services-4944214\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/oncore_cloud_services-4944214\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"onexgroup\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/onexgroup\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"onspecta\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/onspecta\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ontology\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ontology\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"onyx-point-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/onyx-point-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"op5\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/op5\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"open-connect-systems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/open-connect-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"opencell\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/opencell\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"openlinkswcom-pago\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/openlinkswcom-pago\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"OpenLogic\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/OpenLogic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"openrefactoryinc1620140917523\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/openrefactoryinc1620140917523\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"openshotstudiosllc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/openshotstudiosllc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"opentext\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/opentext\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"openvpn\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/openvpn\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"opslogix\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/opslogix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"opswatinc1619007967290\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/opswatinc1619007967290\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"optimitiveslu1618320281443\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/optimitiveslu1618320281443\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"option3\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/option3\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Oracle\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Oracle\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"oraylis\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/oraylis\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"oraylisbi\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/oraylisbi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"orbs-network\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/orbs-network\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"oriana\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/oriana\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"orientdb\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/orientdb\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"oroinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/oroinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"osirium-ltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/osirium-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"osisoft\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/osisoft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"osnexus\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/osnexus\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"outpost24\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/outpost24\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"outsystems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/outsystems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ovaledge1618392232783\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ovaledge1618392232783\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pachyderminc1585170006545\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pachyderminc1585170006545\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pacteratechnologiesinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pacteratechnologiesinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"paladionnetworkspvtltd1606120508449\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/paladionnetworkspvtltd1606120508449\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"paloaltonetworks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/paloaltonetworks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"panopta\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/panopta\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"panorama-necto\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/panorama-necto\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"panzura-file-system\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/panzura-file-system\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"parabole\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/parabole\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"paralaxiomtechnologiesprivatelimited1596433357886\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/paralaxiomtechnologiesprivatelimited1596433357886\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"parallels\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/parallels\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"parasoft\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/parasoft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"parkersoftwarelimited1609786657569\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/parkersoftwarelimited1609786657569\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"parsec-for-teams\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/parsec-for-teams\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pasifikciptamandiri\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pasifikciptamandiri\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"passlogy\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/passlogy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"paxata\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/paxata\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pcman\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pcman\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"peer-software-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/peer-software-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"penta-security-systems-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/penta-security-systems-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"percona\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/percona\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"perforce\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/perforce\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"periscope-tech-4791746\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/periscope-tech-4791746\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"piolinkinc1582849368309\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/piolinkinc1582849368309\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pivotal\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pivotal\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pixitmedia1591611150480\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pixitmedia1591611150480\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"plesk\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/plesk\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pmsoftwareinternational1603102514882\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pmsoftwareinternational1603102514882\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pnop\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pnop\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"polarityioinc1628691850891\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/polarityioinc1628691850891\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"portalarchitects\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/portalarchitects\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"portsysinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/portsysinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"postgres-pro\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/postgres-pro\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"powerbireach\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/powerbireach\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"prakshepprivatelimited1619949827900\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/prakshepprivatelimited1619949827900\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"prasselsrl1645470739547\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/prasselsrl1645470739547\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"prestashop\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/prestashop\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"prestige_informatique-1090178\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/prestige_informatique-1090178\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"prime-strategy\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/prime-strategy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"primekey\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/primekey\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"primestrategynewyorkinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/primestrategynewyorkinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pro-vision\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pro-vision\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"probityinc1581611299345\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/probityinc1581611299345\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"process-one\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/process-one\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"processgold\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/processgold\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"procomputers\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/procomputers\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"procomputerssrl1594239153814\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/procomputerssrl1594239153814\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"profecia\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/profecia\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Profiler.AgentOrchestrationRefactor.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Profiler.AgentOrchestrationRefactor.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Profiler.Master.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Profiler.Master.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"profisee\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/profisee\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"progelspa\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/progelspa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"progresssoftwarecorporation\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/progresssoftwarecorporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"proliongmbh1628175060372\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/proliongmbh1628175060372\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"protegrityusainc1627404648458\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/protegrityusainc1627404648458\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"protiviti\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/protiviti\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"proventeq\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/proventeq\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ptc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ptc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ptsecurity\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ptsecurity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pulse-secure\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pulse-secure\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pulsesecuretechnologies1638179500151\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pulsesecuretechnologies1638179500151\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"puppet\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/puppet\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"puppeteersoy1601024480557\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/puppeteersoy1601024480557\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"PuppetLabs\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/PuppetLabs\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"PuppetLabs.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/PuppetLabs.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"purestorageinc1578960262525\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/purestorageinc1578960262525\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pydio\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pydio\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pyramidanalytics\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pyramidanalytics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"qlik\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/qlik\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"qnapsystemsinc1601352084032\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/qnapsystemsinc1601352084032\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"qore-technologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/qore-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"qs-solutions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/qs-solutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Qualys\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Qualys\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Qualys.LinuxAgent.GrayLabel\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Qualys.LinuxAgent.GrayLabel\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Qualys.WindowsAgent.GrayLabel\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Qualys.WindowsAgent.GrayLabel\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"qualysguard\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/qualysguard\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"quasardb\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/quasardb\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"qubole-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/qubole-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"quest\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/quest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"racknap\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/racknap\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rackwareinc1619403669255\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rackwareinc1619403669255\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"radiant-logic\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/radiant-logic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"radware\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/radware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"raincode\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/raincode\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rancher\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rancher\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rapid7\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rapid7\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Rapid7.InsightPlatform\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Rapid7.InsightPlatform\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rapidminer\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rapidminer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"raynetgmbh\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/raynetgmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"readymind\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/readymind\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"realm\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/realm\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"reblaze\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/reblaze\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"RedHat\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/RedHat\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"redhat-rhel\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/redhat-rhel\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"redpoint-global\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/redpoint-global\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"refactr\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/refactr\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"refinitiv\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/refinitiv\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"refinitiv-4807503\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/refinitiv-4807503\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"relevance-lab\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/relevance-lab\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"remotelearner\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/remotelearner\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"res\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/res\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"resco\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/resco\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"researchgraphptyltd1598252602128\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/researchgraphptyltd1598252602128\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"resemblesystems1582780358300\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/resemblesystems1582780358300\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"responder-corp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/responder-corp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"revolution-analytics\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/revolution-analytics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rhcsolutions1586957910818\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rhcsolutions1586957910818\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ribboncommunications\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ribboncommunications\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"RightScaleLinux\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/RightScaleLinux\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"RightScaleWindowsServer\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/RightScaleWindowsServer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rimo3\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rimo3\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ringsoftwareresearchanddevelopmentinc1578946072257\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ringsoftwareresearchanddevelopmentinc1578946072257\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"riverbed\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/riverbed\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"RiverbedTechnology\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/RiverbedTechnology\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rmgtechnologiesinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rmgtechnologiesinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rocketml\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rocketml\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rocketsoftware\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rocketsoftware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rohdeschwarzcybersecuritygmbh\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rohdeschwarzcybersecuritygmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rohdeschwarzcybersecuritysas\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rohdeschwarzcybersecuritysas\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"roktech\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/roktech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rsa-security-llc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rsa-security-llc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rsk-labs\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rsk-labs\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rstudio-5237862\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rstudio-5237862\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rtts\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rtts\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rubrik-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rubrik-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"runecastsolutionslimited1614186396822\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/runecastsolutionslimited1614186396822\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"s2ix\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/s2ix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"saama\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/saama\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"saasame-limited\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/saasame-limited\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"safesoftwareinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/safesoftwareinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"safeticatechnologiessro\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/safeticatechnologiessro\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"safetica_technologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/safetica_technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"safetoopen1585013318137\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/safetoopen1585013318137\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"saltsecurity1583264186232\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/saltsecurity1583264186232\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"saltsecurity1583264669848\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/saltsecurity1583264669848\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"saltstack\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/saltstack\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"samsung-sds\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/samsung-sds\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"samsungelectronics1632860607983\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/samsungelectronics1632860607983\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"samsungsds-cello\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/samsungsds-cello\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"samsungsds_sdbe\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/samsungsds_sdbe\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sandhatatechnologieslimited1615753438737\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sandhatatechnologieslimited1615753438737\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sap\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sap\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sapphiretechnologieslimited1611758579346\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sapphiretechnologieslimited1611758579346\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sas-institute-560503\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sas-institute-560503\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"scaidata\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/scaidata\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"scalearc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/scalearc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"scalegrid\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/scalegrid\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"scality\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/scality\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"schrockeninc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/schrockeninc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sci\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sci\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sciencelogicinc1622565452194\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sciencelogicinc1622565452194\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"scientiamobile\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/scientiamobile\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"scontainug1595751515785\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/scontainug1595751515785\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"scubaanalytics\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/scubaanalytics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"scylladb1631195365807\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/scylladb1631195365807\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"seaqserviciossas1579029207572\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/seaqserviciossas1579029207572\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"searchbloxsoftwareinc1594309037050\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/searchbloxsoftwareinc1594309037050\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"secureworks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/secureworks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"securityonionsolutions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/securityonionsolutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"securityonionsolutionsllc1624649205155\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/securityonionsolutionsllc1624649205155\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"securosis\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/securosis\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"seequentltd1585781751395\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/seequentltd1585781751395\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"semarchy\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/semarchy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"semperis\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/semperis\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"senhasegura\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/senhasegura\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"SentinelOne.LinuxExtension\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/SentinelOne.LinuxExtension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"SentinelOne.LinuxExtension.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/SentinelOne.LinuxExtension.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"SentinelOne.WindowsExtension\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/SentinelOne.WindowsExtension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"SentinelOne.WindowsExtension.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/SentinelOne.WindowsExtension.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sentriumsl\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sentriumsl\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sentry51llc1616686725591\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sentry51llc1616686725591\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sentryone\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sentryone\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sepiosystems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sepiosystems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"seppmailag\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/seppmailag\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"seraumo1620002807288\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/seraumo1620002807288\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"service-control-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/service-control-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sesamesoftwareinc1622125191447\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sesamesoftwareinc1622125191447\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"shadow-soft\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/shadow-soft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"shareshiftneeraj.test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/shareshiftneeraj.test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sightapps\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sightapps\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"signal-sciences\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/signal-sciences\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"silk\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/silk\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"silver-peak-systems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/silver-peak-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"simmachinesinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/simmachinesinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"simontelephonics\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/simontelephonics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"simpledatalabsinc1635791235920\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/simpledatalabsinc1635791235920\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"simplifierag\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/simplifierag\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"simpligov\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/simpligov\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sinefa\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sinefa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sinequa\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sinequa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sinequa1588262295885\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sinequa1588262295885\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"singapore-telecommunications-limited\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/singapore-telecommunications-limited\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sios_datakeeper\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sios_datakeeper\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"siportalinc1581539156321\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/siportalinc1581539156321\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sisenseltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sisenseltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Site24x7\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Site24x7\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sktelecom\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sktelecom\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"skyarc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/skyarc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"skyboxsecurity1585187406404\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/skyboxsecurity1585187406404\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"skylarkcloud\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/skylarkcloud\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"smartbearsoftware\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/smartbearsoftware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"smartmessage-autoflow\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/smartmessage-autoflow\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"snaplogic\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/snaplogic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"snapt-adc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/snapt-adc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"snips\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/snips\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"soasta\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/soasta\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"softnas\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/softnas\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"softwarecentralas1642687699196\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/softwarecentralas1642687699196\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"softwarehut\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/softwarehut\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"softwebsolutions-4518310\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/softwebsolutions-4518310\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"soha\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/soha\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"solanolabs\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/solanolabs\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"solar-security\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/solar-security\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"solarwinds\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/solarwinds\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"solvedevops1643693563360\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/solvedevops1643693563360\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sonicwall-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sonicwall-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sophos\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sophos\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sourcegearllc1616101262784\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sourcegearllc1616101262784\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"south-river-technologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/south-river-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"southrivertech1586314123192\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/southrivertech1586314123192\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"spacecurve\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/spacecurve\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"spaceliftinc1625499025476\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/spaceliftinc1625499025476\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"spagobi\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/spagobi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sparklinglogic\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sparklinglogic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"spectralcorelimited1619779004178\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/spectralcorelimited1619779004178\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"spektra\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/spektra\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sphere3d\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sphere3d\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"spideroakinc1588278690933\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/spideroakinc1588278690933\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"spirentcommunications1594084187199\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/spirentcommunications1594084187199\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"splunk\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/splunk\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sproutenetworks1593456311717\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sproutenetworks1593456311717\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sqlstream\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sqlstream\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"squadratechnologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/squadratechnologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"squaredup\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/squaredup\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"src-solution\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/src-solution\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ssh2appsltd1621588462715\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ssh2appsltd1621588462715\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stackato-platform-as-a-service\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stackato-platform-as-a-service\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Stackify.LinuxAgent.Extension\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Stackify.LinuxAgent.Extension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stackstorm\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stackstorm\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"startekfingerprintmatch\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/startekfingerprintmatch\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"startisolucoesemtecnologialtda1635263523201\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/startisolucoesemtecnologialtda1635263523201\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"starwind\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/starwind\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"StatusMonitor2.Diagnostics.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/StatusMonitor2.Diagnostics.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"StatusReport.Diagnostics.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/StatusReport.Diagnostics.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stealthbits\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stealthbits\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"steelhive\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/steelhive\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stonebondtechnologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stonebondtechnologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stonefly\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stonefly\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"storage_made_easy\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/storage_made_easy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stormshield\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stormshield\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"storone1594045543980\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/storone1594045543980\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"storreduce\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/storreduce\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"storwarespzoo1611743234900\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/storwarespzoo1611743234900\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"strangebee1595948424730\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/strangebee1595948424730\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"strataidentity1608323708170\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/strataidentity1608323708170\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stratis-group-ltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stratis-group-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stratodesk1611152769936\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stratodesk1611152769936\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stratumn\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stratumn\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"streamsets\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/streamsets\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"striim\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/striim\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stromasys\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stromasys\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"strongboxitllc1594816423884\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/strongboxitllc1594816423884\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"su\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/su\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"subscription.test.krsh\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/subscription.test.krsh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sumologic\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sumologic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sunatogmbh\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sunatogmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sunday\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sunday\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"SUSE\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/SUSE\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"SUSE.AzureHybridBenefit\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/SUSE.AzureHybridBenefit\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"swoopanalytics\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/swoopanalytics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sycom-technologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sycom-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sycompatechnologycompanyinc1588192103892\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sycompatechnologycompanyinc1588192103892\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.CloudWorkloadProtection\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.CloudWorkloadProtection\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.CloudWorkloadProtection.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.CloudWorkloadProtection.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.CloudWorkloadProtection.TestOnStage\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.CloudWorkloadProtection.TestOnStage\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.QA\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.QA\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.staging\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.staging\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.test.ru2.latest\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.test.ru2.latest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.test.ru2final\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.test.ru2final\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.test.ru2latest1\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.test.ru2latest1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.test.ru4mp1\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.test.ru4mp1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.test.ru4mp1.latest\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.test.ru4mp1.latest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.test.ru4mp1final\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.test.ru4mp1final\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"symanteccorporation\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/symanteccorporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"symantectest1\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/symantectest1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"synack-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/synack-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"syncfusion\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/syncfusion\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"syncfusionbigdataplatfor\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/syncfusionbigdataplatfor\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"synechron-technologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/synechron-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"synergixinc1585256339250\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/synergixinc1585256339250\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"synnexcorp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/synnexcorp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"syscomcomputerengineeringco1583913200141\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/syscomcomputerengineeringco1583913200141\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"syte\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/syte\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tableau\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tableau\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tactic\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tactic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"talari-networks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/talari-networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"talena-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/talena-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"talend\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/talend\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"talon\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/talon\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tamrinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tamrinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"taniuminc1646329360287\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/taniuminc1646329360287\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"targit\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/targit\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tata_communications\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tata_communications\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tavanttechnologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tavanttechnologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tavendo\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tavendo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"te-systems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/te-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"techdivision\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/techdivision\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"techlatest\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/techlatest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"technicheltd1606969724100\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/technicheltd1606969724100\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tecknolab\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tecknolab\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"telepat\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/telepat\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"teloscorporation\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/teloscorporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tempered-networks-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tempered-networks-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tenable\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tenable\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tensormakecorpdbaoneclickai1608247756082\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tensormakecorpdbaoneclickai1608247756082\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tenthlineinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tenthlineinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"teradata\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/teradata\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Teradici\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Teradici\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"teramindinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/teramindinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.Gemalto.SafeNet.ProtectV\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.Gemalto.SafeNet.ProtectV\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.Gemalto.SafeNet.ProtectV.Azure\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.Gemalto.SafeNet.ProtectV.Azure\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.HP.AppDefender\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.HP.AppDefender\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.Microsoft.VisualStudio.Services\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.Microsoft.VisualStudio.Services\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.NJHP.AppDefender\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.NJHP.AppDefender\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.SqlServer.Managability\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.SqlServer.Managability\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.SqlServer.Management\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.SqlServer.Management\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.SqlServer.Management.corext\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.SqlServer.Management.corext\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test1.NJHP.AppDefender\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test1.NJHP.AppDefender\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test3.Microsoft.VisualStudio.Services\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test3.Microsoft.VisualStudio.Services\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"testable1603721901088\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/testable1603721901088\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"testpro\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/testpro\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"test_test_mix3pptest0011614206850774\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/test_test_mix3pptest0011614206850774\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"test_test_mneela1628617140187\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/test_test_mneela1628617140187\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"test_test_pmc2pc1\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/test_test_pmc2pc1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thales-vormetric\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thales-vormetric\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thalesdiscplusainc1596561677238\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thalesdiscplusainc1596561677238\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thedatavaluefactoryltd1589348815922\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thedatavaluefactoryltd1589348815922\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thefreebsdfoundation\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thefreebsdfoundation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thehdfgroup1616725197741\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thehdfgroup1616725197741\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"theumag1596442827072\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/theumag1596442827072\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"things-board\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/things-board\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thingscareinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thingscareinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thinprintgmbh\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thinprintgmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thorntechnologiesllc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thorntechnologiesllc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thoughtspot-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thoughtspot-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"threatintelligenceptyltd1586824172898\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/threatintelligenceptyltd1586824172898\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tibco-software\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tibco-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tidal-migrations\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tidal-migrations\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tidalmediainc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tidalmediainc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tig\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tig\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tiger-technology\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tiger-technology\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tigergraph\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tigergraph\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"timextender\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/timextender\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tmaxsoft\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tmaxsoft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tmaxsoft1608612658335\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tmaxsoft1608612658335\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tomsawyersoftwarecorp1613579206342\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tomsawyersoftwarecorp1613579206342\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"topicus\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/topicus\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"torusware\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/torusware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"totemo\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/totemo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"townsend-security\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/townsend-security\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"transcendinformationinc1609918445926\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/transcendinformationinc1609918445926\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"transientxinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/transientxinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"transvault\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/transvault\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"trendmicro\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/trendmicro\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"TrendMicro.DeepSecurity.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/TrendMicro.DeepSecurity.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"TrendMicro.PortalProtect\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/TrendMicro.PortalProtect\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tresorit\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tresorit\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"trifacta\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/trifacta\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tripleblindinc1615730179432\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tripleblindinc1615730179432\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tripwire-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tripwire-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"truata1612259728221\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/truata1612259728221\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"truestack\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/truestack\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tryonsolutionsinc1596650621083\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tryonsolutionsinc1596650621083\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tsa-public-service\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tsa-public-service\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tunnelbiz\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tunnelbiz\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"turbonet\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/turbonet\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"turbonet1581982683964\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/turbonet1581982683964\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"twistlock\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/twistlock\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"typesafe\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/typesafe\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ubeeko\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ubeeko\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ubercloud\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ubercloud\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"uipath-5054924\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/uipath-5054924\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ulex\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ulex\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"unifi-software\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/unifi-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"unifiedstreaming1598872291606\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/unifiedstreaming1598872291606\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"uniprint-net\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/uniprint-net\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"unitrends\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/unitrends\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"unnisoft\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/unnisoft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"unravel-data\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/unravel-data\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"unscramblsingaporepteltd-4999260\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/unscramblsingaporepteltd-4999260\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"untangle\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/untangle\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"upsolver1594188634150\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/upsolver1594188634150\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"usp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/usp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"valohai\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/valohai\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"valtix\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/valtix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"varmournetworks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/varmournetworks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"varnish\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/varnish\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vastdata1650451243415\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vastdata1650451243415\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vatacommunicationsinc1581644208717\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vatacommunicationsinc1581644208717\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vaultive-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vaultive-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vbot\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vbot\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vcinityinc1587684340545\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vcinityinc1587684340545\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vectraaiinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vectraaiinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"veeam\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/veeam\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"velocitydb-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/velocitydb-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"velocloud\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/velocloud\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vembutechnologiespvtltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vembutechnologiespvtltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vemn\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vemn\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"veritas\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/veritas\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"versanetworks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/versanetworks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"versasec\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/versasec\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vidispine\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vidispine\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vidizmo\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vidizmo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vigyanlabs-innovations-pvt-ltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vigyanlabs-innovations-pvt-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vigyanlabsinc1581413676614\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vigyanlabsinc1581413676614\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"viptela\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/viptela\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vircom\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vircom\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"virtamovecorp1615909247913\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/virtamovecorp1615909247913\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"virtualpulsesro1607008728942\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/virtualpulsesro1607008728942\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"virtuozzointernationalgmbh1626704951469\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/virtuozzointernationalgmbh1626704951469\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"visualknowledgeshare1591795776234\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/visualknowledgeshare1591795776234\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"visualsoft-center\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/visualsoft-center\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vizixiotplatformretail001\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vizixiotplatformretail001\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vmlabinc1613642184700\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vmlabinc1613642184700\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vmturbo\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vmturbo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vmware-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vmware-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vnomicinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vnomicinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"voiceelements\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/voiceelements\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"voleatechgmbh1636966911943\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/voleatechgmbh1636966911943\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"volterraedgeservices\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/volterraedgeservices\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Vormetric\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Vormetric\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vscconsultingptyltd1608535888097\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vscconsultingptyltd1608535888097\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vte\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vte\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vu-llc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vu-llc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vunetsystemsprivatelimited1646716402131\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vunetsystemsprivatelimited1646716402131\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vyulabsinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vyulabsinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"WAD2AI.Diagnostics.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/WAD2AI.Diagnostics.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"WAD2EventHub.Diagnostics.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/WAD2EventHub.Diagnostics.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wallarm\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wallarm\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wallix\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wallix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wandisco\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wandisco\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wanos\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wanos\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wanpath-dba-myworkdrive\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wanpath-dba-myworkdrive\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wardy-it-solutions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wardy-it-solutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"warewolf-esb\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/warewolf-esb\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"watchguard-technologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/watchguard-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"webaloinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/webaloinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"websense-apmailpe\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/websense-apmailpe\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"websoft9inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/websoft9inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wedoitllc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wedoitllc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"westernoceansoftwaresprivatelimited\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/westernoceansoftwaresprivatelimited\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wherescapesoftware\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wherescapesoftware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"winmagic_securedoc_cloudvm\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/winmagic_securedoc_cloudvm\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wintellisys-inc-4561600\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wintellisys-inc-4561600\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"witfooinc1590167223060\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/witfooinc1590167223060\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wmspanel\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wmspanel\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wood1595864497589\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wood1595864497589\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"workshare-technology\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/workshare-technology\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"world-programming\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/world-programming\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"worxogo\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/worxogo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wowza\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wowza\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"xcontentptyltd-1329748\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/xcontentptyltd-1329748\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"xendata-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/xendata-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"xfinityinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/xfinityinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"xilinx\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/xilinx\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"xoriantcorporationazxteam1\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/xoriantcorporationazxteam1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"xoriantsolutionspvtltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/xoriantsolutionspvtltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"xtremedata\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/xtremedata\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"xyzrd-group-ou\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/xyzrd-group-ou\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"yaseensmarket1645449809728\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/yaseensmarket1645449809728\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"yellowfin\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/yellowfin\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"yellowfininternationalptyltd1616363974066\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/yellowfininternationalptyltd1616363974066\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"yokogawarentalleasecorporation\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/yokogawarentalleasecorporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"your-shop-online\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/your-shop-online\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"z1\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/z1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"z4it-aps\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/z4it-aps\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zabbix\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zabbix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zend\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zend\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zenterasystemsinc1605292453288\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zenterasystemsinc1605292453288\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zerodown_software\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zerodown_software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zerto\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zerto\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zettalane_systems-5254599\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zettalane_systems-5254599\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zevenet\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zevenet\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zilliz\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zilliz\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zoomdata\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zoomdata\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zscaler\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zscaler\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zscaler1579058425289\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zscaler1579058425289\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zultysinc1596831546163\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zultysinc1596831546163\"\r\n }\r\n]", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/southeastasia/publishers/Microsoft.Compute/artifacttypes/vmextension/types?api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9wdWJsaXNoZXJzL01pY3Jvc29mdC5Db21wdXRlL2FydGlmYWN0dHlwZXMvdm1leHRlbnNpb24vdHlwZXM/YXBpLXZlcnNpb249MjAyMS0xMS0wMQ==", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Compute/locations/southeastasia/publishers/Microsoft.Compute/artifacttypes/vmextension/types?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9wdWJsaXNoZXJzL01pY3Jvc29mdC5Db21wdXRlL2FydGlmYWN0dHlwZXMvdm1leHRlbnNpb24vdHlwZXM/YXBpLXZlcnNpb249MjAyMS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "13a517ba-13cc-45ed-bb0b-85c82ca4ada3" + "61f8a6eb-a8e4-447c-9b83-1b6a0a6764fc" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ] }, "ResponseHeaders": { @@ -2638,29 +2830,29 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "1f3ad383-bb66-4279-b2a8-fbbcd093a7e3_132678318374571324" + "1f3ad383-bb66-4279-b2a8-fbbcd093a7e3_132836337789816871" ], "x-ms-request-id": [ - "bb07f959-7b50-4ea6-b502-fa9fde67bf80" + "f869765b-00e6-48ee-8cf5-474ba091d02a" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11990" ], "x-ms-correlation-request-id": [ - "fef900c5-0e5e-470a-a0bc-69ca085e0568" + "1eb5804c-1cdc-4c63-85b2-298266cbcc3d" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T180324Z:fef900c5-0e5e-470a-a0bc-69ca085e0568" + "JIOINDIAWEST:20220517T060317Z:1eb5804c-1cdc-4c63-85b2-298266cbcc3d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 24 Feb 2022 18:03:24 GMT" + "Tue, 17 May 2022 06:03:17 GMT" ], "Content-Length": [ "1089" @@ -2672,26 +2864,26 @@ "-1" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"BGInfo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"CustomScriptExtension\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"JsonADDomainExtension\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/JsonADDomainExtension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"VMAccessAgent\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/VMAccessAgent\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"BGInfo\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"CustomScriptExtension\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"JsonADDomainExtension\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/JsonADDomainExtension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"VMAccessAgent\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/VMAccessAgent\"\r\n }\r\n]", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/southeastasia/publishers/Microsoft.Compute/artifacttypes/vmextension/types/BGInfo/versions?api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9wdWJsaXNoZXJzL01pY3Jvc29mdC5Db21wdXRlL2FydGlmYWN0dHlwZXMvdm1leHRlbnNpb24vdHlwZXMvQkdJbmZvL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMjEtMTEtMDE=", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Compute/locations/southeastasia/publishers/Microsoft.Compute/artifacttypes/vmextension/types/BGInfo/versions?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9wdWJsaXNoZXJzL01pY3Jvc29mdC5Db21wdXRlL2FydGlmYWN0dHlwZXMvdm1leHRlbnNpb24vdHlwZXMvQkdJbmZvL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMjEtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "13a517ba-13cc-45ed-bb0b-85c82ca4ada3" + "61f8a6eb-a8e4-447c-9b83-1b6a0a6764fc" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ] }, "ResponseHeaders": { @@ -2708,32 +2900,32 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "1f3ad383-bb66-4279-b2a8-fbbcd093a7e3_132678318374571324" + "1f3ad383-bb66-4279-b2a8-fbbcd093a7e3_132836337789816871" ], "x-ms-request-id": [ - "d3eec5de-a98b-4156-a1fa-750dd1a0daa2" + "a332f862-9d2b-4fab-ab7e-b0d4e95888ba" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11989" ], "x-ms-correlation-request-id": [ - "29e0e739-df25-4258-b833-4da0d52e950a" + "aeba7db9-e946-4666-8b91-00e809898b73" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T180324Z:29e0e739-df25-4258-b833-4da0d52e950a" + "JIOINDIAWEST:20220517T060317Z:aeba7db9-e946-4666-8b91-00e809898b73" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 24 Feb 2022 18:03:24 GMT" + "Tue, 17 May 2022 06:03:17 GMT" ], "Content-Length": [ - "1589" + "1856" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2742,26 +2934,26 @@ "-1" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1.0\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo/Versions/1.0\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1.0.1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo/Versions/1.0.1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1.1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo/Versions/1.1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1.2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo/Versions/1.2\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1.2.2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo/Versions/1.2.2\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"2.1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo/Versions/2.1\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1.0\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo/Versions/1.0\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1.0.1\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo/Versions/1.0.1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1.1\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo/Versions/1.1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1.2\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo/Versions/1.2\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1.2.2\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo/Versions/1.2.2\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"2.1\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo/Versions/2.1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"2.2.2\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo/Versions/2.2.2\"\r\n }\r\n]", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.Compute/virtualMachines/PSTestVMbfee90/extensions/BGInfo?api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZlZTlkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy9QU1Rlc3RWTWJmZWU5MC9leHRlbnNpb25zL0JHSW5mbz9hcGktdmVyc2lvbj0yMDIxLTExLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.Compute/virtualMachines/PSTestVM2a0850/extensions/BGInfo?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMmEwODVmMWIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy9QU1Rlc3RWTTJhMDg1MC9leHRlbnNpb25zL0JHSW5mbz9hcGktdmVyc2lvbj0yMDIxLTExLTAx", "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\": \"southeastasia\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"BGInfo\",\r\n \"typeHandlerVersion\": \"2.2\",\r\n \"autoUpgradeMinorVersion\": true\r\n },\r\n \"location\": \"southeastasia\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "13a517ba-13cc-45ed-bb0b-85c82ca4ada3" + "61f8a6eb-a8e4-447c-9b83-1b6a0a6764fc" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2778,7 +2970,7 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/southeastasia/operations/fab49c8f-a180-41f0-8f86-f9edc1ffd674?p=34dc709c-01b2-42c4-84a2-256a9734610d&api-version=2021-11-01" + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Compute/locations/southeastasia/operations/cbb1646d-55c1-4e04-8191-c17b577afb6c?p=e484ceca-6435-4a7f-b125-3d82e6b12014&api-version=2021-11-01" ], "Azure-AsyncNotification": [ "Enabled" @@ -2790,7 +2982,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "fab49c8f-a180-41f0-8f86-f9edc1ffd674" + "cbb1646d-55c1-4e04-8191-c17b577afb6c" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -2800,16 +2992,16 @@ "1198" ], "x-ms-correlation-request-id": [ - "fde486d8-195b-4bc2-ba24-415db7166a36" + "ed09aefa-ddff-460b-ad1e-7021b71a62f5" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T180330Z:fde486d8-195b-4bc2-ba24-415db7166a36" + "JIOINDIAWEST:20220517T060320Z:ed09aefa-ddff-460b-ad1e-7021b71a62f5" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 24 Feb 2022 18:03:30 GMT" + "Tue, 17 May 2022 06:03:20 GMT" ], "Content-Length": [ "484" @@ -2821,23 +3013,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"BGInfo\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.Compute/virtualMachines/PSTestVMbfee90/extensions/BGInfo\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"southeastasia\",\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}", + "ResponseBody": "{\r\n \"name\": \"BGInfo\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.Compute/virtualMachines/PSTestVM2a0850/extensions/BGInfo\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Creating\",\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"BGInfo\",\r\n \"typeHandlerVersion\": \"2.2\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/southeastasia/operations/fab49c8f-a180-41f0-8f86-f9edc1ffd674?p=34dc709c-01b2-42c4-84a2-256a9734610d&api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2ZhYjQ5YzhmLWExODAtNDFmMC04Zjg2LWY5ZWRjMWZmZDY3ND9wPTM0ZGM3MDljLTAxYjItNDJjNC04NGEyLTI1NmE5NzM0NjEwZCZhcGktdmVyc2lvbj0yMDIxLTExLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Compute/locations/southeastasia/operations/cbb1646d-55c1-4e04-8191-c17b577afb6c?p=e484ceca-6435-4a7f-b125-3d82e6b12014&api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2NiYjE2NDZkLTU1YzEtNGUwNC04MTkxLWMxN2I1NzdhZmI2Yz9wPWU0ODRjZWNhLTY0MzUtNGE3Zi1iMTI1LTNkODJlNmIxMjAxNCZhcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "13a517ba-13cc-45ed-bb0b-85c82ca4ada3" + "61f8a6eb-a8e4-447c-9b83-1b6a0a6764fc" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ] }, "ResponseHeaders": { @@ -2848,32 +3040,32 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperation3Min;14995,Microsoft.Compute/GetOperation30Min;29984" + "Microsoft.Compute/GetOperation3Min;14995,Microsoft.Compute/GetOperation30Min;29978" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "bebd935b-3ab1-494a-b705-dcbb8edf94c7" + "fb5d0a43-e6ac-43da-994b-f50a2397630b" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11988" ], "x-ms-correlation-request-id": [ - "d5de229d-ced0-46b9-8f49-3f0efb875273" + "c41ea828-8c13-4518-94e2-1b23d51b0fd8" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T180400Z:d5de229d-ced0-46b9-8f49-3f0efb875273" + "JIOINDIAWEST:20220517T060350Z:c41ea828-8c13-4518-94e2-1b23d51b0fd8" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 24 Feb 2022 18:04:00 GMT" + "Tue, 17 May 2022 06:03:50 GMT" ], "Content-Length": [ "134" @@ -2885,23 +3077,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-02-24T13:03:29.3610059-05:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"fab49c8f-a180-41f0-8f86-f9edc1ffd674\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2022-05-17T11:33:19.7671612+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"cbb1646d-55c1-4e04-8191-c17b577afb6c\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/southeastasia/operations/fab49c8f-a180-41f0-8f86-f9edc1ffd674?p=34dc709c-01b2-42c4-84a2-256a9734610d&api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2ZhYjQ5YzhmLWExODAtNDFmMC04Zjg2LWY5ZWRjMWZmZDY3ND9wPTM0ZGM3MDljLTAxYjItNDJjNC04NGEyLTI1NmE5NzM0NjEwZCZhcGktdmVyc2lvbj0yMDIxLTExLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Compute/locations/southeastasia/operations/cbb1646d-55c1-4e04-8191-c17b577afb6c?p=e484ceca-6435-4a7f-b125-3d82e6b12014&api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2NiYjE2NDZkLTU1YzEtNGUwNC04MTkxLWMxN2I1NzdhZmI2Yz9wPWU0ODRjZWNhLTY0MzUtNGE3Zi1iMTI1LTNkODJlNmIxMjAxNCZhcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "13a517ba-13cc-45ed-bb0b-85c82ca4ada3" + "61f8a6eb-a8e4-447c-9b83-1b6a0a6764fc" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ] }, "ResponseHeaders": { @@ -2912,32 +3104,32 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperation3Min;14995,Microsoft.Compute/GetOperation30Min;29983" + "Microsoft.Compute/GetOperation3Min;14994,Microsoft.Compute/GetOperation30Min;29977" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "afb1ea74-99a0-4507-9950-079470d26326" + "58b4fa3f-3788-41a4-87e1-5ee85a330790" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11987" ], "x-ms-correlation-request-id": [ - "b9c56477-90e0-45ae-b543-5dad3ed3852f" + "e7d06c80-01c5-45db-9868-952d08d55c3d" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T180431Z:b9c56477-90e0-45ae-b543-5dad3ed3852f" + "JIOINDIAWEST:20220517T060421Z:e7d06c80-01c5-45db-9868-952d08d55c3d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 24 Feb 2022 18:04:30 GMT" + "Tue, 17 May 2022 06:04:20 GMT" ], "Content-Length": [ "134" @@ -2949,23 +3141,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-02-24T13:03:29.3610059-05:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"fab49c8f-a180-41f0-8f86-f9edc1ffd674\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2022-05-17T11:33:19.7671612+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"cbb1646d-55c1-4e04-8191-c17b577afb6c\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/southeastasia/operations/fab49c8f-a180-41f0-8f86-f9edc1ffd674?p=34dc709c-01b2-42c4-84a2-256a9734610d&api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2ZhYjQ5YzhmLWExODAtNDFmMC04Zjg2LWY5ZWRjMWZmZDY3ND9wPTM0ZGM3MDljLTAxYjItNDJjNC04NGEyLTI1NmE5NzM0NjEwZCZhcGktdmVyc2lvbj0yMDIxLTExLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Compute/locations/southeastasia/operations/cbb1646d-55c1-4e04-8191-c17b577afb6c?p=e484ceca-6435-4a7f-b125-3d82e6b12014&api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2NiYjE2NDZkLTU1YzEtNGUwNC04MTkxLWMxN2I1NzdhZmI2Yz9wPWU0ODRjZWNhLTY0MzUtNGE3Zi1iMTI1LTNkODJlNmIxMjAxNCZhcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "13a517ba-13cc-45ed-bb0b-85c82ca4ada3" + "61f8a6eb-a8e4-447c-9b83-1b6a0a6764fc" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ] }, "ResponseHeaders": { @@ -2976,32 +3168,32 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperation3Min;14994,Microsoft.Compute/GetOperation30Min;29982" + "Microsoft.Compute/GetOperation3Min;14994,Microsoft.Compute/GetOperation30Min;29976" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "adc8fa7a-9748-49d7-b4b4-3a34faaecfd3" + "032de222-346d-44eb-a818-ed2ea06a3030" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11986" ], "x-ms-correlation-request-id": [ - "5b45c50d-2778-405f-9417-96eef41f29af" + "6538cd4e-d0b5-4384-9526-cfaa6d6de974" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T180502Z:5b45c50d-2778-405f-9417-96eef41f29af" + "JIOINDIAWEST:20220517T060451Z:6538cd4e-d0b5-4384-9526-cfaa6d6de974" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 24 Feb 2022 18:05:01 GMT" + "Tue, 17 May 2022 06:04:50 GMT" ], "Content-Length": [ "134" @@ -3013,23 +3205,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-02-24T13:03:29.3610059-05:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"fab49c8f-a180-41f0-8f86-f9edc1ffd674\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2022-05-17T11:33:19.7671612+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"cbb1646d-55c1-4e04-8191-c17b577afb6c\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/southeastasia/operations/fab49c8f-a180-41f0-8f86-f9edc1ffd674?p=34dc709c-01b2-42c4-84a2-256a9734610d&api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2ZhYjQ5YzhmLWExODAtNDFmMC04Zjg2LWY5ZWRjMWZmZDY3ND9wPTM0ZGM3MDljLTAxYjItNDJjNC04NGEyLTI1NmE5NzM0NjEwZCZhcGktdmVyc2lvbj0yMDIxLTExLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Compute/locations/southeastasia/operations/cbb1646d-55c1-4e04-8191-c17b577afb6c?p=e484ceca-6435-4a7f-b125-3d82e6b12014&api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2NiYjE2NDZkLTU1YzEtNGUwNC04MTkxLWMxN2I1NzdhZmI2Yz9wPWU0ODRjZWNhLTY0MzUtNGE3Zi1iMTI1LTNkODJlNmIxMjAxNCZhcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "13a517ba-13cc-45ed-bb0b-85c82ca4ada3" + "61f8a6eb-a8e4-447c-9b83-1b6a0a6764fc" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ] }, "ResponseHeaders": { @@ -3040,32 +3232,32 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperation3Min;14993,Microsoft.Compute/GetOperation30Min;29980" + "Microsoft.Compute/GetOperation3Min;14993,Microsoft.Compute/GetOperation30Min;29974" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a8e1747c-f34d-431e-9641-995a246c7f0b" + "2ce01633-07dd-499e-b5fb-04d41b3bd12b" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "11985" ], "x-ms-correlation-request-id": [ - "1450f2d6-7b38-43b7-949b-89238c5888f6" + "b0bdfc1c-0e96-475c-9e3a-6f8d095e706e" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T180532Z:1450f2d6-7b38-43b7-949b-89238c5888f6" + "JIOINDIAWEST:20220517T060521Z:b0bdfc1c-0e96-475c-9e3a-6f8d095e706e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 24 Feb 2022 18:05:31 GMT" + "Tue, 17 May 2022 06:05:21 GMT" ], "Content-Length": [ "184" @@ -3077,23 +3269,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-02-24T13:03:29.3610059-05:00\",\r\n \"endTime\": \"2022-02-24T13:05:23.6124461-05:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"fab49c8f-a180-41f0-8f86-f9edc1ffd674\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2022-05-17T11:33:19.7671612+05:30\",\r\n \"endTime\": \"2022-05-17T11:34:56.5474797+05:30\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"cbb1646d-55c1-4e04-8191-c17b577afb6c\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.Compute/virtualMachines/PSTestVMbfee90/extensions/BGInfo?api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZlZTlkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy9QU1Rlc3RWTWJmZWU5MC9leHRlbnNpb25zL0JHSW5mbz9hcGktdmVyc2lvbj0yMDIxLTExLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.Compute/virtualMachines/PSTestVM2a0850/extensions/BGInfo?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMmEwODVmMWIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy9QU1Rlc3RWTTJhMDg1MC9leHRlbnNpb25zL0JHSW5mbz9hcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "13a517ba-13cc-45ed-bb0b-85c82ca4ada3" + "61f8a6eb-a8e4-447c-9b83-1b6a0a6764fc" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ] }, "ResponseHeaders": { @@ -3104,32 +3296,32 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/LowCostGet3Min;3995,Microsoft.Compute/LowCostGet30Min;31980" + "Microsoft.Compute/LowCostGet3Min;3976,Microsoft.Compute/LowCostGet30Min;31817" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c9b4c033-4e38-4070-8bb4-95b1b9919838" + "ee2fe4bd-0bb8-4aaa-84aa-dfda87d5b908" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "11984" ], "x-ms-correlation-request-id": [ - "a4e64a10-72cb-4d94-86b6-774c56c74190" + "28de6362-8774-4743-9359-bb49962caa73" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T180532Z:a4e64a10-72cb-4d94-86b6-774c56c74190" + "JIOINDIAWEST:20220517T060521Z:28de6362-8774-4743-9359-bb49962caa73" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 24 Feb 2022 18:05:31 GMT" + "Tue, 17 May 2022 06:05:21 GMT" ], "Content-Length": [ "485" @@ -3141,23 +3333,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"BGInfo\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.Compute/virtualMachines/PSTestVMbfee90/extensions/BGInfo\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"southeastasia\",\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}", + "ResponseBody": "{\r\n \"name\": \"BGInfo\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.Compute/virtualMachines/PSTestVM2a0850/extensions/BGInfo\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"BGInfo\",\r\n \"typeHandlerVersion\": \"2.2\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfee9dac?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZlZTlkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmVlOWRhYz9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMmEwODVmMWIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YyYTA4NWYxYj9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0282dfb6-9322-45aa-8c53-38c860aca033" + "6e13179d-8db1-47b3-a4a0-7eb55c0cf86d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesClient/4.3.2.0" @@ -3174,13 +3366,13 @@ "gateway" ], "x-ms-request-id": [ - "1a47e64a-1c12-4df7-882d-24dc73b1bd1b" + "40c37dcd-04f4-4fac-92ef-9f2d9a44d22a" ], "x-ms-correlation-request-id": [ - "1a47e64a-1c12-4df7-882d-24dc73b1bd1b" + "40c37dcd-04f4-4fac-92ef-9f2d9a44d22a" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T180535Z:1a47e64a-1c12-4df7-882d-24dc73b1bd1b" + "JIOINDIAWEST:20220517T060523Z:40c37dcd-04f4-4fac-92ef-9f2d9a44d22a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3189,7 +3381,7 @@ "nosniff" ], "Date": [ - "Thu, 24 Feb 2022 18:05:35 GMT" + "Tue, 17 May 2022 06:05:22 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3201,23 +3393,23 @@ "239" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.RecoveryServices/vaults/PSTestRSVbfee9dac' under resource group 'PSTestRGbfee9dac' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b' under resource group 'PSTestRG2a085f1b' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfee9dac?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZlZTlkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmVlOWRhYz9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMmEwODVmMWIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YyYTA4NWYxYj9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"southeastasia\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "9189b64c-eed9-4810-8cbd-bc08bec1c8ea" + "957b1dd4-7e11-4ad9-8121-7bd8b571b017" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesClient/4.3.2.0" @@ -3240,10 +3432,10 @@ "nosniff" ], "x-ms-request-id": [ - "6fe9353b-32c6-440a-bb64-1cea18c389e8" + "c0e7f480-d64d-4488-80a2-8b107cd265c0" ], "x-ms-client-request-id": [ - "9189b64c-eed9-4810-8cbd-bc08bec1c8ea" + "957b1dd4-7e11-4ad9-8121-7bd8b571b017" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3255,16 +3447,16 @@ "209" ], "x-ms-correlation-request-id": [ - "6fe9353b-32c6-440a-bb64-1cea18c389e8" + "c0e7f480-d64d-4488-80a2-8b107cd265c0" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T180544Z:6fe9353b-32c6-440a-bb64-1cea18c389e8" + "JIOINDIAWEST:20220517T060529Z:c0e7f480-d64d-4488-80a2-8b107cd265c0" ], "Date": [ - "Thu, 24 Feb 2022 18:05:44 GMT" + "Tue, 17 May 2022 06:05:29 GMT" ], "Content-Length": [ - "466" + "518" ], "Content-Type": [ "application/json" @@ -3273,26 +3465,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"location\": \"southeastasia\",\r\n \"name\": \"PSTestRSVbfee9dac\",\r\n \"etag\": \"W/\\\"datetime'2022-02-24T18%3A05%3A43.2111159Z'\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateEndpointStateForBackup\": \"None\",\r\n \"privateEndpointStateForSiteRecovery\": \"None\"\r\n },\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfee9dac\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"location\": \"southeastasia\",\r\n \"name\": \"PSTestRSV2a085f1b\",\r\n \"etag\": \"W/\\\"datetime'2022-05-17T06%3A05%3A28.8877543Z'\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateEndpointStateForBackup\": \"None\",\r\n \"privateEndpointStateForSiteRecovery\": \"None\",\r\n \"networkSettings\": {\r\n \"publicNetworkAccess\": \"Enabled\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfee9dac/backupconfig/vaultconfig?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZlZTlkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmVlOWRhYy9iYWNrdXBjb25maWcvdmF1bHRjb25maWc/YXBpLXZlcnNpb249MjAyMS0xMC0wMQ==", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupconfig/vaultconfig?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMmEwODVmMWIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YyYTA4NWYxYi9iYWNrdXBjb25maWcvdmF1bHRjb25maWc/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5db133c0-3eb5-4cd7-966e-e7a97b0f0a94" + "753137d6-2162-4a82-9ba6-2724c5c57aef" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -3306,15 +3498,14 @@ "nosniff" ], "x-ms-request-id": [ - "14448586-5afb-49b4-88f4-25ade156c66f" - ], - "x-ms-client-request-id": [ - "5db133c0-3eb5-4cd7-966e-e7a97b0f0a94", - "5db133c0-3eb5-4cd7-966e-e7a97b0f0a94" + "" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-client-request-id": [ + "753137d6-2162-4a82-9ba6-2724c5c57aef" + ], "Server": [ "Microsoft-IIS/10.0" ], @@ -3325,13 +3516,13 @@ "149" ], "x-ms-correlation-request-id": [ - "14448586-5afb-49b4-88f4-25ade156c66f" + "ad091748-d492-43ad-87be-12090ea77d78" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T180607Z:14448586-5afb-49b4-88f4-25ade156c66f" + "JIOINDIAWEST:20220517T060532Z:ad091748-d492-43ad-87be-12090ea77d78" ], "Date": [ - "Thu, 24 Feb 2022 18:06:07 GMT" + "Tue, 17 May 2022 06:05:31 GMT" ], "Content-Length": [ "380" @@ -3343,32 +3534,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfee9dac/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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfee9dac/backupconfig/vaultconfig?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZlZTlkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmVlOWRhYy9iYWNrdXBjb25maWcvdmF1bHRjb25maWc/YXBpLXZlcnNpb249MjAyMS0xMC0wMQ==", - "RequestMethod": "PATCH", - "RequestBody": "{\r\n \"properties\": {\r\n \"enhancedSecurityState\": \"Enabled\",\r\n \"softDeleteFeatureState\": \"Disabled\"\r\n }\r\n}", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupResourceGuardProxies?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMmEwODVmMWIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YyYTA4NWYxYi9iYWNrdXBSZXNvdXJjZUd1YXJkUHJveGllcz9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5db133c0-3eb5-4cd7-966e-e7a97b0f0a94" + "753137d6-2162-4a82-9ba6-2724c5c57aef" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "111" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -3382,11 +3567,11 @@ "nosniff" ], "x-ms-request-id": [ - "813a33e2-cb2e-43d2-8861-99960a3719d2" + "20f80dde-5bb5-499f-85b7-83af36261f56" ], "x-ms-client-request-id": [ - "5db133c0-3eb5-4cd7-966e-e7a97b0f0a94", - "5db133c0-3eb5-4cd7-966e-e7a97b0f0a94" + "753137d6-2162-4a82-9ba6-2724c5c57aef", + "753137d6-2162-4a82-9ba6-2724c5c57aef" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3397,20 +3582,20 @@ "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" ], "x-ms-correlation-request-id": [ - "813a33e2-cb2e-43d2-8861-99960a3719d2" + "20f80dde-5bb5-499f-85b7-83af36261f56" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T180613Z:813a33e2-cb2e-43d2-8861-99960a3719d2" + "JIOINDIAWEST:20220517T060532Z:20f80dde-5bb5-499f-85b7-83af36261f56" ], "Date": [ - "Thu, 24 Feb 2022 18:06:13 GMT" + "Tue, 17 May 2022 06:05:32 GMT" ], "Content-Length": [ - "381" + "12" ], "Content-Type": [ "application/json" @@ -3419,26 +3604,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfee9dac/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}", + "ResponseBody": "{\r\n \"value\": []\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfee9dac/backupProtectionContainers?$filter=friendlyName%20eq%20'PSTestVMbfee90'%20and%20backupManagementType%20eq%20'AzureIaasVM'%20and%20status%20eq%20'Registered'&api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZlZTlkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmVlOWRhYy9iYWNrdXBQcm90ZWN0aW9uQ29udGFpbmVycz8kZmlsdGVyPWZyaWVuZGx5TmFtZSUyMGVxJTIwJ1BTVGVzdFZNYmZlZTkwJyUyMGFuZCUyMGJhY2t1cE1hbmFnZW1lbnRUeXBlJTIwZXElMjAnQXp1cmVJYWFzVk0nJTIwYW5kJTIwc3RhdHVzJTIwZXElMjAnUmVnaXN0ZXJlZCcmYXBpLXZlcnNpb249MjAyMS0xMC0wMQ==", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupResourceGuardProxies?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMmEwODVmMWIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YyYTA4NWYxYi9iYWNrdXBSZXNvdXJjZUd1YXJkUHJveGllcz9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9cf4662b-382f-426b-9047-8986358f5301" + "b35c8592-59fe-4b1e-96af-7eb79c76bb43" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -3452,11 +3637,11 @@ "nosniff" ], "x-ms-request-id": [ - "e6ceb6cd-d181-417f-bddd-ec350b3b8f74" + "159b1aba-4030-4af1-84d7-f4044966c822" ], "x-ms-client-request-id": [ - "9cf4662b-382f-426b-9047-8986358f5301", - "9cf4662b-382f-426b-9047-8986358f5301" + "b35c8592-59fe-4b1e-96af-7eb79c76bb43", + "b35c8592-59fe-4b1e-96af-7eb79c76bb43" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3467,17 +3652,17 @@ "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "149" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" ], "x-ms-correlation-request-id": [ - "e6ceb6cd-d181-417f-bddd-ec350b3b8f74" + "159b1aba-4030-4af1-84d7-f4044966c822" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T180619Z:e6ceb6cd-d181-417f-bddd-ec350b3b8f74" + "JIOINDIAWEST:20220517T065545Z:159b1aba-4030-4af1-84d7-f4044966c822" ], "Date": [ - "Thu, 24 Feb 2022 18:06:19 GMT" + "Tue, 17 May 2022 06:55:44 GMT" ], "Content-Length": [ "12" @@ -3493,22 +3678,28 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfee9dac/backupProtectionContainers?$filter=friendlyName%20eq%20'PSTestVMbfee90'%20and%20backupManagementType%20eq%20'AzureIaasVM'%20and%20status%20eq%20'Registered'&api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZlZTlkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmVlOWRhYy9iYWNrdXBQcm90ZWN0aW9uQ29udGFpbmVycz8kZmlsdGVyPWZyaWVuZGx5TmFtZSUyMGVxJTIwJ1BTVGVzdFZNYmZlZTkwJyUyMGFuZCUyMGJhY2t1cE1hbmFnZW1lbnRUeXBlJTIwZXElMjAnQXp1cmVJYWFzVk0nJTIwYW5kJTIwc3RhdHVzJTIwZXElMjAnUmVnaXN0ZXJlZCcmYXBpLXZlcnNpb249MjAyMS0xMC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupconfig/vaultconfig?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMmEwODVmMWIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YyYTA4NWYxYi9iYWNrdXBjb25maWcvdmF1bHRjb25maWc/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "PATCH", + "RequestBody": "{\r\n \"properties\": {\r\n \"enhancedSecurityState\": \"Enabled\",\r\n \"softDeleteFeatureState\": \"Disabled\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "3a708bce-870e-4d63-9493-d397bfe49cf8" + "753137d6-2162-4a82-9ba6-2724c5c57aef" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "111" ] }, "ResponseHeaders": { @@ -3522,11 +3713,11 @@ "nosniff" ], "x-ms-request-id": [ - "a20c57bc-78d8-4e35-8b7c-992439d50e61" + "1f739b3d-3977-49fa-9f65-702395cfaff5" ], "x-ms-client-request-id": [ - "3a708bce-870e-4d63-9493-d397bfe49cf8", - "3a708bce-870e-4d63-9493-d397bfe49cf8" + "753137d6-2162-4a82-9ba6-2724c5c57aef", + "753137d6-2162-4a82-9ba6-2724c5c57aef" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3537,20 +3728,20 @@ "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "148" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" ], "x-ms-correlation-request-id": [ - "a20c57bc-78d8-4e35-8b7c-992439d50e61" + "1f739b3d-3977-49fa-9f65-702395cfaff5" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T180656Z:a20c57bc-78d8-4e35-8b7c-992439d50e61" + "JIOINDIAWEST:20220517T060533Z:1f739b3d-3977-49fa-9f65-702395cfaff5" ], "Date": [ - "Thu, 24 Feb 2022 18:06:55 GMT" + "Tue, 17 May 2022 06:05:33 GMT" ], "Content-Length": [ - "914" + "381" ], "Content-Type": [ "application/json" @@ -3559,26 +3750,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfee9dac/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrgbfee9dac;pstestvmbfee90\",\r\n \"name\": \"IaasVMContainer;iaasvmcontainerv2;pstestrgbfee9dac;pstestvmbfee90\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers\",\r\n \"properties\": {\r\n \"virtualMachineId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.Compute/virtualMachines/PSTestVMbfee90\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"resourceGroup\": \"PSTestRGbfee9dac\",\r\n \"friendlyName\": \"PSTestVMbfee90\",\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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfee9dac/backupPolicies/DefaultPolicy?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZlZTlkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmVlOWRhYy9iYWNrdXBQb2xpY2llcy9EZWZhdWx0UG9saWN5P2FwaS12ZXJzaW9uPTIwMjEtMTAtMDE=", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupProtectionContainers?$filter=friendlyName%20eq%20'PSTestVM2a0850'%20and%20backupManagementType%20eq%20'AzureIaasVM'%20and%20status%20eq%20'Registered'&api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMmEwODVmMWIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YyYTA4NWYxYi9iYWNrdXBQcm90ZWN0aW9uQ29udGFpbmVycz8kZmlsdGVyPWZyaWVuZGx5TmFtZSUyMGVxJTIwJ1BTVGVzdFZNMmEwODUwJyUyMGFuZCUyMGJhY2t1cE1hbmFnZW1lbnRUeXBlJTIwZXElMjAnQXp1cmVJYWFzVk0nJTIwYW5kJTIwc3RhdHVzJTIwZXElMjAnUmVnaXN0ZXJlZCcmYXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3d09328d-2380-45fb-a7c6-1e2aa76a7d0b" + "ab6619e7-4017-4353-a442-72458b513ea3" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -3592,11 +3783,11 @@ "nosniff" ], "x-ms-request-id": [ - "672cf12e-44f6-497b-aa48-811192e0b911" + "55edf31a-84ea-486a-bb21-fdf25e411262" ], "x-ms-client-request-id": [ - "3d09328d-2380-45fb-a7c6-1e2aa76a7d0b", - "3d09328d-2380-45fb-a7c6-1e2aa76a7d0b" + "ab6619e7-4017-4353-a442-72458b513ea3", + "ab6619e7-4017-4353-a442-72458b513ea3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3611,16 +3802,16 @@ "149" ], "x-ms-correlation-request-id": [ - "672cf12e-44f6-497b-aa48-811192e0b911" + "55edf31a-84ea-486a-bb21-fdf25e411262" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T180620Z:672cf12e-44f6-497b-aa48-811192e0b911" + "JIOINDIAWEST:20220517T060539Z:55edf31a-84ea-486a-bb21-fdf25e411262" ], "Date": [ - "Thu, 24 Feb 2022 18:06:19 GMT" + "Tue, 17 May 2022 06:05:38 GMT" ], "Content-Length": [ - "762" + "12" ], "Content-Type": [ "application/json" @@ -3629,26 +3820,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfee9dac/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 \"2022-02-25T04:00:00Z\"\r\n ],\r\n \"scheduleWeeklyFrequency\": 0\r\n },\r\n \"retentionPolicy\": {\r\n \"retentionPolicyType\": \"LongTermRetentionPolicy\",\r\n \"dailySchedule\": {\r\n \"retentionTimes\": [\r\n \"2022-02-25T04:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 30,\r\n \"durationType\": \"Days\"\r\n }\r\n }\r\n },\r\n \"instantRpRetentionRangeInDays\": 2,\r\n \"timeZone\": \"UTC\",\r\n \"protectedItemsCount\": 0\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": []\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfee9dac/backupProtectableItems?$filter=backupManagementType%20eq%20'AzureIaasVM'&api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZlZTlkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmVlOWRhYy9iYWNrdXBQcm90ZWN0YWJsZUl0ZW1zPyRmaWx0ZXI9YmFja3VwTWFuYWdlbWVudFR5cGUlMjBlcSUyMCdBenVyZUlhYXNWTScmYXBpLXZlcnNpb249MjAyMS0xMC0wMQ==", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupProtectionContainers?$filter=friendlyName%20eq%20'PSTestVM2a0850'%20and%20backupManagementType%20eq%20'AzureIaasVM'%20and%20status%20eq%20'Registered'&api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMmEwODVmMWIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YyYTA4NWYxYi9iYWNrdXBQcm90ZWN0aW9uQ29udGFpbmVycz8kZmlsdGVyPWZyaWVuZGx5TmFtZSUyMGVxJTIwJ1BTVGVzdFZNMmEwODUwJyUyMGFuZCUyMGJhY2t1cE1hbmFnZW1lbnRUeXBlJTIwZXElMjAnQXp1cmVJYWFzVk0nJTIwYW5kJTIwc3RhdHVzJTIwZXElMjAnUmVnaXN0ZXJlZCcmYXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "58e2844e-050b-470c-93eb-2e0a5c996210" + "dfcd9207-4c46-44a4-92d5-549e91547ad2" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -3662,11 +3853,11 @@ "nosniff" ], "x-ms-request-id": [ - "31f61990-c749-4809-a339-bb19f6991a5e" + "5acb265c-fc9b-49e4-affb-692bfe1c12eb" ], "x-ms-client-request-id": [ - "58e2844e-050b-470c-93eb-2e0a5c996210", - "58e2844e-050b-470c-93eb-2e0a5c996210" + "dfcd9207-4c46-44a4-92d5-549e91547ad2", + "dfcd9207-4c46-44a4-92d5-549e91547ad2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3678,19 +3869,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "149" + "148" ], "x-ms-correlation-request-id": [ - "31f61990-c749-4809-a339-bb19f6991a5e" + "5acb265c-fc9b-49e4-affb-692bfe1c12eb" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T180620Z:31f61990-c749-4809-a339-bb19f6991a5e" + "JIOINDIAWEST:20220517T060628Z:5acb265c-fc9b-49e4-affb-692bfe1c12eb" ], "Date": [ - "Thu, 24 Feb 2022 18:06:20 GMT" + "Tue, 17 May 2022 06:06:27 GMT" ], "Content-Length": [ - "905" + "914" ], "Content-Type": [ "application/json" @@ -3699,32 +3890,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfee9dac/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrgbfee9dac;pstestvmbfee90/protectableItems/vm;iaasvmcontainerv2;pstestrgbfee9dac;pstestvmbfee90\",\r\n \"name\": \"iaasvmcontainerv2;pstestrgbfee9dac;pstestvmbfee90\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems\",\r\n \"properties\": {\r\n \"virtualMachineId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.Compute/virtualMachines/PSTestVMbfee90\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"resourceGroup\": \"PSTestRGbfee9dac\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"protectableItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"friendlyName\": \"PSTestVMbfee90\",\r\n \"protectionState\": \"NotProtected\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrg2a085f1b;pstestvm2a0850\",\r\n \"name\": \"IaasVMContainer;iaasvmcontainerv2;pstestrg2a085f1b;pstestvm2a0850\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers\",\r\n \"properties\": {\r\n \"virtualMachineId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.Compute/virtualMachines/PSTestVM2a0850\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"resourceGroup\": \"PSTestRG2a085f1b\",\r\n \"friendlyName\": \"PSTestVM2a0850\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfee9dac/backupFabrics/Azure/protectionContainers/IaasVMContainer%3Biaasvmcontainerv2%3Bpstestrgbfee9dac%3Bpstestvmbfee90/protectedItems/vm%3Biaasvmcontainerv2%3Bpstestrgbfee9dac%3Bpstestvmbfee90?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZlZTlkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmVlOWRhYy9iYWNrdXBGYWJyaWNzL0F6dXJlL3Byb3RlY3Rpb25Db250YWluZXJzL0lhYXNWTUNvbnRhaW5lciUzQmlhYXN2bWNvbnRhaW5lcnYyJTNCcHN0ZXN0cmdiZmVlOWRhYyUzQnBzdGVzdHZtYmZlZTkwL3Byb3RlY3RlZEl0ZW1zL3ZtJTNCaWFhc3ZtY29udGFpbmVydjIlM0Jwc3Rlc3RyZ2JmZWU5ZGFjJTNCcHN0ZXN0dm1iZmVlOTA/YXBpLXZlcnNpb249MjAyMS0xMC0wMQ==", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"protectedItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"sourceResourceId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.Compute/virtualMachines/PSTestVMbfee90\",\r\n \"policyId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfee9dac/backupPolicies/DefaultPolicy\"\r\n }\r\n}", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupPolicies/DefaultPolicy?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMmEwODVmMWIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YyYTA4NWYxYi9iYWNrdXBQb2xpY2llcy9EZWZhdWx0UG9saWN5P2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "58e2844e-050b-470c-93eb-2e0a5c996210" + "d52c8f83-0c5e-45ea-b1ac-178c5198c990" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "456" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -3734,70 +3919,67 @@ "Pragma": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfee9dac/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrgbfee9dac;pstestvmbfee90/protectedItems/vm;iaasvmcontainerv2;pstestrgbfee9dac;pstestvmbfee90/operationResults/24d066e5-923c-4a4f-a39b-0ad61c16dbbd?api-version=2021-10-01" - ], - "Retry-After": [ - "60" - ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfee9dac/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrgbfee9dac;pstestvmbfee90/protectedItems/vm;iaasvmcontainerv2;pstestrgbfee9dac;pstestvmbfee90/operationsStatus/24d066e5-923c-4a4f-a39b-0ad61c16dbbd?api-version=2021-10-01" - ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "39f6401a-f725-4deb-a8e9-2678044bc741" + "e11ebfd5-737a-484e-a14e-d2248a765090" ], "x-ms-client-request-id": [ - "58e2844e-050b-470c-93eb-2e0a5c996210", - "58e2844e-050b-470c-93eb-2e0a5c996210" + "d52c8f83-0c5e-45ea-b1ac-178c5198c990", + "d52c8f83-0c5e-45ea-b1ac-178c5198c990" ], "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-ratelimit-remaining-subscription-resource-requests": [ + "149" ], "x-ms-correlation-request-id": [ - "39f6401a-f725-4deb-a8e9-2678044bc741" + "e11ebfd5-737a-484e-a14e-d2248a765090" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T180621Z:39f6401a-f725-4deb-a8e9-2678044bc741" + "JIOINDIAWEST:20220517T060539Z:e11ebfd5-737a-484e-a14e-d2248a765090" ], "Date": [ - "Thu, 24 Feb 2022 18:06:21 GMT" + "Tue, 17 May 2022 06:05:39 GMT" + ], + "Content-Length": [ + "762" + ], + "Content-Type": [ + "application/json" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, - "ResponseBody": "", - "StatusCode": 202 + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/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 \"2022-05-17T16:00:00Z\"\r\n ],\r\n \"scheduleWeeklyFrequency\": 0\r\n },\r\n \"retentionPolicy\": {\r\n \"retentionPolicyType\": \"LongTermRetentionPolicy\",\r\n \"dailySchedule\": {\r\n \"retentionTimes\": [\r\n \"2022-05-17T16:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 30,\r\n \"durationType\": \"Days\"\r\n }\r\n }\r\n },\r\n \"instantRpRetentionRangeInDays\": 2,\r\n \"timeZone\": \"UTC\",\r\n \"protectedItemsCount\": 0\r\n }\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfee9dac/backupOperations/24d066e5-923c-4a4f-a39b-0ad61c16dbbd?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZlZTlkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmVlOWRhYy9iYWNrdXBPcGVyYXRpb25zLzI0ZDA2NmU1LTkyM2MtNGE0Zi1hMzliLTBhZDYxYzE2ZGJiZD9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupProtectableItems?$filter=backupManagementType%20eq%20'AzureIaasVM'&api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMmEwODVmMWIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YyYTA4NWYxYi9iYWNrdXBQcm90ZWN0YWJsZUl0ZW1zPyRmaWx0ZXI9YmFja3VwTWFuYWdlbWVudFR5cGUlMjBlcSUyMCdBenVyZUlhYXNWTScmYXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "58e2844e-050b-470c-93eb-2e0a5c996210" + "163b5c54-3ef1-43cd-94c2-f53232928359" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -3811,11 +3993,11 @@ "nosniff" ], "x-ms-request-id": [ - "5ddcca40-3af8-428c-81df-f01fc2c3a944" + "d8e2ccce-6ec0-4ea0-8ae8-f61b6702f344" ], "x-ms-client-request-id": [ - "58e2844e-050b-470c-93eb-2e0a5c996210", - "58e2844e-050b-470c-93eb-2e0a5c996210" + "163b5c54-3ef1-43cd-94c2-f53232928359", + "163b5c54-3ef1-43cd-94c2-f53232928359" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3830,16 +4012,16 @@ "149" ], "x-ms-correlation-request-id": [ - "5ddcca40-3af8-428c-81df-f01fc2c3a944" + "d8e2ccce-6ec0-4ea0-8ae8-f61b6702f344" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T180622Z:5ddcca40-3af8-428c-81df-f01fc2c3a944" + "JIOINDIAWEST:20220517T060540Z:d8e2ccce-6ec0-4ea0-8ae8-f61b6702f344" ], "Date": [ - "Thu, 24 Feb 2022 18:06:22 GMT" + "Tue, 17 May 2022 06:05:40 GMT" ], "Content-Length": [ - "188" + "7033" ], "Content-Type": [ "application/json" @@ -3848,26 +4030,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"24d066e5-923c-4a4f-a39b-0ad61c16dbbd\",\r\n \"name\": \"24d066e5-923c-4a4f-a39b-0ad61c16dbbd\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-24T18:06:21.4987941Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;akneema;akneema-hana-vm/protectableItems/vm;iaasvmcontainerv2;akneema;akneema-hana-vm\",\r\n \"name\": \"iaasvmcontainerv2;akneema;akneema-hana-vm\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems\",\r\n \"properties\": {\r\n \"virtualMachineId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/akneema/providers/Microsoft.Compute/virtualMachines/akneema-hana-vm\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"resourceGroup\": \"akneema\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"protectableItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"friendlyName\": \"akneema-hana-vm\",\r\n \"protectionState\": \"NotProtected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;containerautoprotection;shrja-2019/protectableItems/vm;iaasvmcontainerv2;containerautoprotection;shrja-2019\",\r\n \"name\": \"iaasvmcontainerv2;containerautoprotection;shrja-2019\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems\",\r\n \"properties\": {\r\n \"virtualMachineId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/ContainerAutoProtection/providers/Microsoft.Compute/virtualMachines/shrja-2019\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"resourceGroup\": \"ContainerAutoProtection\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"protectableItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"friendlyName\": \"shrja-2019\",\r\n \"protectionState\": \"NotProtected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrg2a085f1b;pstestvm2a0850/protectableItems/vm;iaasvmcontainerv2;pstestrg2a085f1b;pstestvm2a0850\",\r\n \"name\": \"iaasvmcontainerv2;pstestrg2a085f1b;pstestvm2a0850\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems\",\r\n \"properties\": {\r\n \"virtualMachineId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.Compute/virtualMachines/PSTestVM2a0850\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"resourceGroup\": \"PSTestRG2a085f1b\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"protectableItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"friendlyName\": \"PSTestVM2a0850\",\r\n \"protectionState\": \"NotProtected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestwlrg1bca8;pstestwlvm1bca8/protectableItems/vm;iaasvmcontainerv2;pstestwlrg1bca8;pstestwlvm1bca8\",\r\n \"name\": \"iaasvmcontainerv2;pstestwlrg1bca8;pstestwlvm1bca8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems\",\r\n \"properties\": {\r\n \"virtualMachineId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/pstestwlRG1bca8/providers/Microsoft.Compute/virtualMachines/pstestwlvm1bca8\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"resourceGroup\": \"pstestwlRG1bca8\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"protectableItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"friendlyName\": \"pstestwlvm1bca8\",\r\n \"protectionState\": \"NotProtected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;shrja2008_group;shrja2008/protectableItems/vm;iaasvmcontainerv2;shrja2008_group;shrja2008\",\r\n \"name\": \"iaasvmcontainerv2;shrja2008_group;shrja2008\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems\",\r\n \"properties\": {\r\n \"virtualMachineId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/shrja2008_group/providers/Microsoft.Compute/virtualMachines/shrja2008\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"resourceGroup\": \"shrja2008_group\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"protectableItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"friendlyName\": \"shrja2008\",\r\n \"protectionState\": \"NotProtected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;shswain-rg-donotuse;dsdsdsad/protectableItems/vm;iaasvmcontainerv2;shswain-rg-donotuse;dsdsdsad\",\r\n \"name\": \"iaasvmcontainerv2;shswain-rg-donotuse;dsdsdsad\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems\",\r\n \"properties\": {\r\n \"virtualMachineId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/shswain-rg-donotuse/providers/Microsoft.Compute/virtualMachines/dsdsdsad\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"resourceGroup\": \"shswain-rg-donotuse\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"protectableItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"friendlyName\": \"dsdsdsad\",\r\n \"protectionState\": \"NotProtected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;shswain-rg-donotuse;iumjjkuui/protectableItems/vm;iaasvmcontainerv2;shswain-rg-donotuse;iumjjkuui\",\r\n \"name\": \"iaasvmcontainerv2;shswain-rg-donotuse;iumjjkuui\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems\",\r\n \"properties\": {\r\n \"virtualMachineId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/shswain-rg-donotuse/providers/Microsoft.Compute/virtualMachines/iumjjkuui\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"resourceGroup\": \"shswain-rg-donotuse\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"protectableItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"friendlyName\": \"iumjjkuui\",\r\n \"protectionState\": \"NotProtected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;sisi-rsv;sisi-mercury/protectableItems/vm;iaasvmcontainerv2;sisi-rsv;sisi-mercury\",\r\n \"name\": \"iaasvmcontainerv2;sisi-rsv;sisi-mercury\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems\",\r\n \"properties\": {\r\n \"virtualMachineId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/sisi-RSV/providers/Microsoft.Compute/virtualMachines/sisi-mercury\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"resourceGroup\": \"sisi-RSV\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"protectableItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"friendlyName\": \"sisi-mercury\",\r\n \"protectionState\": \"NotProtected\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfee9dac/backupOperations/24d066e5-923c-4a4f-a39b-0ad61c16dbbd?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZlZTlkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmVlOWRhYy9iYWNrdXBPcGVyYXRpb25zLzI0ZDA2NmU1LTkyM2MtNGE0Zi1hMzliLTBhZDYxYzE2ZGJiZD9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupFabrics/Azure/protectionContainers/IaasVMContainer%3Biaasvmcontainerv2%3Bpstestrg2a085f1b%3Bpstestvm2a0850/protectedItems/vm%3Biaasvmcontainerv2%3Bpstestrg2a085f1b%3Bpstestvm2a0850?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMmEwODVmMWIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YyYTA4NWYxYi9iYWNrdXBGYWJyaWNzL0F6dXJlL3Byb3RlY3Rpb25Db250YWluZXJzL0lhYXNWTUNvbnRhaW5lciUzQmlhYXN2bWNvbnRhaW5lcnYyJTNCcHN0ZXN0cmcyYTA4NWYxYiUzQnBzdGVzdHZtMmEwODUwL3Byb3RlY3RlZEl0ZW1zL3ZtJTNCaWFhc3ZtY29udGFpbmVydjIlM0Jwc3Rlc3RyZzJhMDg1ZjFiJTNCcHN0ZXN0dm0yYTA4NTA/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"protectedItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"sourceResourceId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.Compute/virtualMachines/PSTestVM2a0850\",\r\n \"policyId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupPolicies/DefaultPolicy\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "58e2844e-050b-470c-93eb-2e0a5c996210" + "163b5c54-3ef1-43cd-94c2-f53232928359" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "456" ] }, "ResponseHeaders": { @@ -3877,67 +4065,70 @@ "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrg2a085f1b;pstestvm2a0850/protectedItems/vm;iaasvmcontainerv2;pstestrg2a085f1b;pstestvm2a0850/operationResults/225b62c4-b764-41cf-8205-cc1b9e46d760?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrg2a085f1b;pstestvm2a0850/protectedItems/vm;iaasvmcontainerv2;pstestrg2a085f1b;pstestvm2a0850/operationsStatus/225b62c4-b764-41cf-8205-cc1b9e46d760?api-version=2022-02-01" + ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "db3f8688-8d19-45e9-bfe1-7758d018d4a0" + "ef6710e7-fa09-4cd5-8e7b-0c1659d5eafa" ], "x-ms-client-request-id": [ - "58e2844e-050b-470c-93eb-2e0a5c996210", - "58e2844e-050b-470c-93eb-2e0a5c996210" + "163b5c54-3ef1-43cd-94c2-f53232928359", + "163b5c54-3ef1-43cd-94c2-f53232928359" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Server": [ - "Microsoft-IIS/10.0" - ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "148" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" ], "x-ms-correlation-request-id": [ - "db3f8688-8d19-45e9-bfe1-7758d018d4a0" + "ef6710e7-fa09-4cd5-8e7b-0c1659d5eafa" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T180632Z:db3f8688-8d19-45e9-bfe1-7758d018d4a0" + "JIOINDIAWEST:20220517T060541Z:ef6710e7-fa09-4cd5-8e7b-0c1659d5eafa" ], "Date": [ - "Thu, 24 Feb 2022 18:06:32 GMT" - ], - "Content-Length": [ - "188" - ], - "Content-Type": [ - "application/json" + "Tue, 17 May 2022 06:05:41 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, - "ResponseBody": "{\r\n \"id\": \"24d066e5-923c-4a4f-a39b-0ad61c16dbbd\",\r\n \"name\": \"24d066e5-923c-4a4f-a39b-0ad61c16dbbd\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-24T18:06:21.4987941Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", - "StatusCode": 200 + "ResponseBody": "", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfee9dac/backupOperations/24d066e5-923c-4a4f-a39b-0ad61c16dbbd?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZlZTlkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmVlOWRhYy9iYWNrdXBPcGVyYXRpb25zLzI0ZDA2NmU1LTkyM2MtNGE0Zi1hMzliLTBhZDYxYzE2ZGJiZD9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupOperations/225b62c4-b764-41cf-8205-cc1b9e46d760?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMmEwODVmMWIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YyYTA4NWYxYi9iYWNrdXBPcGVyYXRpb25zLzIyNWI2MmM0LWI3NjQtNDFjZi04MjA1LWNjMWI5ZTQ2ZDc2MD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "58e2844e-050b-470c-93eb-2e0a5c996210" + "163b5c54-3ef1-43cd-94c2-f53232928359" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -3951,11 +4142,11 @@ "nosniff" ], "x-ms-request-id": [ - "5fd212d0-0da3-43a2-8962-ef1017400032" + "3dc2a524-1a3d-4199-8664-67d537beccb2" ], "x-ms-client-request-id": [ - "58e2844e-050b-470c-93eb-2e0a5c996210", - "58e2844e-050b-470c-93eb-2e0a5c996210" + "163b5c54-3ef1-43cd-94c2-f53232928359", + "163b5c54-3ef1-43cd-94c2-f53232928359" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3967,16 +4158,16 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "147" + "149" ], "x-ms-correlation-request-id": [ - "5fd212d0-0da3-43a2-8962-ef1017400032" + "3dc2a524-1a3d-4199-8664-67d537beccb2" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T180643Z:5fd212d0-0da3-43a2-8962-ef1017400032" + "JIOINDIAWEST:20220517T060542Z:3dc2a524-1a3d-4199-8664-67d537beccb2" ], "Date": [ - "Thu, 24 Feb 2022 18:06:43 GMT" + "Tue, 17 May 2022 06:05:41 GMT" ], "Content-Length": [ "188" @@ -3988,26 +4179,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"24d066e5-923c-4a4f-a39b-0ad61c16dbbd\",\r\n \"name\": \"24d066e5-923c-4a4f-a39b-0ad61c16dbbd\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-24T18:06:21.4987941Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"225b62c4-b764-41cf-8205-cc1b9e46d760\",\r\n \"name\": \"225b62c4-b764-41cf-8205-cc1b9e46d760\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T06:05:41.5940449Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfee9dac/backupOperations/24d066e5-923c-4a4f-a39b-0ad61c16dbbd?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZlZTlkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmVlOWRhYy9iYWNrdXBPcGVyYXRpb25zLzI0ZDA2NmU1LTkyM2MtNGE0Zi1hMzliLTBhZDYxYzE2ZGJiZD9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupOperations/225b62c4-b764-41cf-8205-cc1b9e46d760?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMmEwODVmMWIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YyYTA4NWYxYi9iYWNrdXBPcGVyYXRpb25zLzIyNWI2MmM0LWI3NjQtNDFjZi04MjA1LWNjMWI5ZTQ2ZDc2MD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "58e2844e-050b-470c-93eb-2e0a5c996210" + "163b5c54-3ef1-43cd-94c2-f53232928359" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -4021,11 +4212,11 @@ "nosniff" ], "x-ms-request-id": [ - "a8921019-fedb-4995-b18b-37c4af74537f" + "016037eb-e7bc-4ef3-bbbe-cfceb0e5b559" ], "x-ms-client-request-id": [ - "58e2844e-050b-470c-93eb-2e0a5c996210", - "58e2844e-050b-470c-93eb-2e0a5c996210" + "163b5c54-3ef1-43cd-94c2-f53232928359", + "163b5c54-3ef1-43cd-94c2-f53232928359" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4037,19 +4228,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "146" + "148" ], "x-ms-correlation-request-id": [ - "a8921019-fedb-4995-b18b-37c4af74537f" + "016037eb-e7bc-4ef3-bbbe-cfceb0e5b559" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T180654Z:a8921019-fedb-4995-b18b-37c4af74537f" + "JIOINDIAWEST:20220517T060547Z:016037eb-e7bc-4ef3-bbbe-cfceb0e5b559" ], "Date": [ - "Thu, 24 Feb 2022 18:06:54 GMT" + "Tue, 17 May 2022 06:05:47 GMT" ], "Content-Length": [ - "304" + "188" ], "Content-Type": [ "application/json" @@ -4058,26 +4249,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"24d066e5-923c-4a4f-a39b-0ad61c16dbbd\",\r\n \"name\": \"24d066e5-923c-4a4f-a39b-0ad61c16dbbd\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-02-24T18:06:21.4987941Z\",\r\n \"endTime\": \"2022-02-24T18:06:21.4987941Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"adbde198-c8df-4cbf-a1e7-c47bdfbe6765\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"225b62c4-b764-41cf-8205-cc1b9e46d760\",\r\n \"name\": \"225b62c4-b764-41cf-8205-cc1b9e46d760\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T06:05:41.5940449Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfee9dac/backupOperations/24d066e5-923c-4a4f-a39b-0ad61c16dbbd?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZlZTlkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmVlOWRhYy9iYWNrdXBPcGVyYXRpb25zLzI0ZDA2NmU1LTkyM2MtNGE0Zi1hMzliLTBhZDYxYzE2ZGJiZD9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupOperations/225b62c4-b764-41cf-8205-cc1b9e46d760?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMmEwODVmMWIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YyYTA4NWYxYi9iYWNrdXBPcGVyYXRpb25zLzIyNWI2MmM0LWI3NjQtNDFjZi04MjA1LWNjMWI5ZTQ2ZDc2MD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "58e2844e-050b-470c-93eb-2e0a5c996210" + "163b5c54-3ef1-43cd-94c2-f53232928359" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -4091,11 +4282,11 @@ "nosniff" ], "x-ms-request-id": [ - "0954d35c-3733-4492-a109-bb871930b30a" + "d0dd052b-e356-4a95-951d-9a5f7d53b493" ], "x-ms-client-request-id": [ - "58e2844e-050b-470c-93eb-2e0a5c996210", - "58e2844e-050b-470c-93eb-2e0a5c996210" + "163b5c54-3ef1-43cd-94c2-f53232928359", + "163b5c54-3ef1-43cd-94c2-f53232928359" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4107,19 +4298,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "145" + "147" ], "x-ms-correlation-request-id": [ - "0954d35c-3733-4492-a109-bb871930b30a" + "d0dd052b-e356-4a95-951d-9a5f7d53b493" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T180654Z:0954d35c-3733-4492-a109-bb871930b30a" + "JIOINDIAWEST:20220517T060553Z:d0dd052b-e356-4a95-951d-9a5f7d53b493" ], "Date": [ - "Thu, 24 Feb 2022 18:06:54 GMT" + "Tue, 17 May 2022 06:05:52 GMT" ], "Content-Length": [ - "304" + "188" ], "Content-Type": [ "application/json" @@ -4128,26 +4319,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"24d066e5-923c-4a4f-a39b-0ad61c16dbbd\",\r\n \"name\": \"24d066e5-923c-4a4f-a39b-0ad61c16dbbd\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-02-24T18:06:21.4987941Z\",\r\n \"endTime\": \"2022-02-24T18:06:21.4987941Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"adbde198-c8df-4cbf-a1e7-c47bdfbe6765\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"225b62c4-b764-41cf-8205-cc1b9e46d760\",\r\n \"name\": \"225b62c4-b764-41cf-8205-cc1b9e46d760\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T06:05:41.5940449Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfee9dac/backupJobs/adbde198-c8df-4cbf-a1e7-c47bdfbe6765?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZlZTlkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmVlOWRhYy9iYWNrdXBKb2JzL2FkYmRlMTk4LWM4ZGYtNGNiZi1hMWU3LWM0N2JkZmJlNjc2NT9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupOperations/225b62c4-b764-41cf-8205-cc1b9e46d760?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMmEwODVmMWIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YyYTA4NWYxYi9iYWNrdXBPcGVyYXRpb25zLzIyNWI2MmM0LWI3NjQtNDFjZi04MjA1LWNjMWI5ZTQ2ZDc2MD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "58e2844e-050b-470c-93eb-2e0a5c996210" + "163b5c54-3ef1-43cd-94c2-f53232928359" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -4157,40 +4348,39 @@ "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-IIS/10.0" - ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "d7eb0ac3-f881-4b2f-afeb-40766fb2e12c" + "d321840d-f8a4-447c-9434-e86042efd54f" ], "x-ms-client-request-id": [ - "58e2844e-050b-470c-93eb-2e0a5c996210", - "58e2844e-050b-470c-93eb-2e0a5c996210" - ], - "X-Powered-By": [ - "ASP.NET" + "163b5c54-3ef1-43cd-94c2-f53232928359", + "163b5c54-3ef1-43cd-94c2-f53232928359" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "149" + "146" ], "x-ms-correlation-request-id": [ - "d7eb0ac3-f881-4b2f-afeb-40766fb2e12c" + "d321840d-f8a4-447c-9434-e86042efd54f" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T180655Z:d7eb0ac3-f881-4b2f-afeb-40766fb2e12c" + "JIOINDIAWEST:20220517T060558Z:d321840d-f8a4-447c-9434-e86042efd54f" ], "Date": [ - "Thu, 24 Feb 2022 18:06:55 GMT" + "Tue, 17 May 2022 06:05:58 GMT" ], "Content-Length": [ - "840" + "188" ], "Content-Type": [ "application/json" @@ -4199,26 +4389,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfee9dac/backupJobs/adbde198-c8df-4cbf-a1e7-c47bdfbe6765\",\r\n \"name\": \"adbde198-c8df-4cbf-a1e7-c47bdfbe6765\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgbfee9dac;pstestvmbfee90\",\r\n \"duration\": \"PT30.8942745S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvmbfee90\",\r\n \"Policy Name\": \"DefaultPolicy\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvmbfee90\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"ConfigureBackup\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-02-24T18:06:21.4987941Z\",\r\n \"endTime\": \"2022-02-24T18:06:52.3930686Z\",\r\n \"activityId\": \"58e2844e-050b-470c-93eb-2e0a5c996210\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"225b62c4-b764-41cf-8205-cc1b9e46d760\",\r\n \"name\": \"225b62c4-b764-41cf-8205-cc1b9e46d760\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T06:05:41.5940449Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfee9dac/backupProtectedItems?$filter=backupManagementType%20eq%20'AzureIaasVM'%20and%20itemType%20eq%20'VM'&api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZlZTlkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmVlOWRhYy9iYWNrdXBQcm90ZWN0ZWRJdGVtcz8kZmlsdGVyPWJhY2t1cE1hbmFnZW1lbnRUeXBlJTIwZXElMjAnQXp1cmVJYWFzVk0nJTIwYW5kJTIwaXRlbVR5cGUlMjBlcSUyMCdWTScmYXBpLXZlcnNpb249MjAyMS0xMC0wMQ==", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupOperations/225b62c4-b764-41cf-8205-cc1b9e46d760?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMmEwODVmMWIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YyYTA4NWYxYi9iYWNrdXBPcGVyYXRpb25zLzIyNWI2MmM0LWI3NjQtNDFjZi04MjA1LWNjMWI5ZTQ2ZDc2MD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "db3ad689-3eca-4d20-9a01-82e59ec9fa69" + "163b5c54-3ef1-43cd-94c2-f53232928359" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -4232,11 +4422,11 @@ "nosniff" ], "x-ms-request-id": [ - "246b93c7-f521-4620-8831-1bdd8e4d91b1" + "f61a8bda-bb74-4e6e-beac-33c37e612ff3" ], "x-ms-client-request-id": [ - "db3ad689-3eca-4d20-9a01-82e59ec9fa69", - "db3ad689-3eca-4d20-9a01-82e59ec9fa69" + "163b5c54-3ef1-43cd-94c2-f53232928359", + "163b5c54-3ef1-43cd-94c2-f53232928359" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4248,19 +4438,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "149" + "145" ], "x-ms-correlation-request-id": [ - "246b93c7-f521-4620-8831-1bdd8e4d91b1" + "f61a8bda-bb74-4e6e-beac-33c37e612ff3" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T180656Z:246b93c7-f521-4620-8831-1bdd8e4d91b1" + "JIOINDIAWEST:20220517T060604Z:f61a8bda-bb74-4e6e-beac-33c37e612ff3" ], "Date": [ - "Thu, 24 Feb 2022 18:06:56 GMT" + "Tue, 17 May 2022 06:06:03 GMT" ], "Content-Length": [ - "1496" + "188" ], "Content-Type": [ "application/json" @@ -4269,26 +4459,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfee9dac/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrgbfee9dac;pstestvmbfee90/protectedItems/VM;iaasvmcontainerv2;pstestrgbfee9dac;pstestvmbfee90\",\r\n \"name\": \"VM;iaasvmcontainerv2;pstestrgbfee9dac;pstestvmbfee90\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems\",\r\n \"properties\": {\r\n \"kpisHealths\": {},\r\n \"friendlyName\": \"PSTestVMbfee90\",\r\n \"virtualMachineId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.Compute/virtualMachines/PSTestVMbfee90\",\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\": \"211106729921870\",\r\n \"protectedItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"workloadType\": \"VM\",\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgbfee9dac;pstestvmbfee90\",\r\n \"sourceResourceId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.Compute/virtualMachines/PSTestVMbfee90\",\r\n \"policyId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfee9dac/backupPolicies/DefaultPolicy\",\r\n \"policyName\": \"DefaultPolicy\",\r\n \"isArchiveEnabled\": false\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"225b62c4-b764-41cf-8205-cc1b9e46d760\",\r\n \"name\": \"225b62c4-b764-41cf-8205-cc1b9e46d760\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T06:05:41.5940449Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfee9dac/backupProtectedItems?$filter=backupManagementType%20eq%20'AzureIaasVM'%20and%20itemType%20eq%20'VM'&api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZlZTlkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmVlOWRhYy9iYWNrdXBQcm90ZWN0ZWRJdGVtcz8kZmlsdGVyPWJhY2t1cE1hbmFnZW1lbnRUeXBlJTIwZXElMjAnQXp1cmVJYWFzVk0nJTIwYW5kJTIwaXRlbVR5cGUlMjBlcSUyMCdWTScmYXBpLXZlcnNpb249MjAyMS0xMC0wMQ==", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupOperations/225b62c4-b764-41cf-8205-cc1b9e46d760?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMmEwODVmMWIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YyYTA4NWYxYi9iYWNrdXBPcGVyYXRpb25zLzIyNWI2MmM0LWI3NjQtNDFjZi04MjA1LWNjMWI5ZTQ2ZDc2MD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "11db4d07-c6c2-4cf0-bd49-0dace7481f91" + "163b5c54-3ef1-43cd-94c2-f53232928359" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -4302,11 +4492,11 @@ "nosniff" ], "x-ms-request-id": [ - "3353e05e-9626-4739-bbfd-9e6d03fee004" + "fda26b44-bbd8-4ea7-b0ce-a3f3048a58f5" ], "x-ms-client-request-id": [ - "11db4d07-c6c2-4cf0-bd49-0dace7481f91", - "11db4d07-c6c2-4cf0-bd49-0dace7481f91" + "163b5c54-3ef1-43cd-94c2-f53232928359", + "163b5c54-3ef1-43cd-94c2-f53232928359" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4318,19 +4508,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "149" + "144" ], "x-ms-correlation-request-id": [ - "3353e05e-9626-4739-bbfd-9e6d03fee004" + "fda26b44-bbd8-4ea7-b0ce-a3f3048a58f5" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T191721Z:3353e05e-9626-4739-bbfd-9e6d03fee004" + "JIOINDIAWEST:20220517T060609Z:fda26b44-bbd8-4ea7-b0ce-a3f3048a58f5" ], "Date": [ - "Thu, 24 Feb 2022 19:17:20 GMT" + "Tue, 17 May 2022 06:06:09 GMT" ], "Content-Length": [ - "2023" + "188" ], "Content-Type": [ "application/json" @@ -4339,26 +4529,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfee9dac/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrgbfee9dac;pstestvmbfee90/protectedItems/VM;iaasvmcontainerv2;pstestrgbfee9dac;pstestvmbfee90\",\r\n \"name\": \"VM;iaasvmcontainerv2;pstestrgbfee9dac;pstestvmbfee90\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems\",\r\n \"properties\": {\r\n \"kpisHealths\": {\r\n \"BackupOperationStatusKPI\": {\r\n \"resourceHealthStatus\": \"Healthy\",\r\n \"resourceHealthDetails\": [\r\n {\r\n \"code\": 0,\r\n \"title\": \"Success\",\r\n \"message\": \"\",\r\n \"recommendations\": []\r\n }\r\n ]\r\n },\r\n \"RestoreOperationStatusKPI\": {\r\n \"resourceHealthStatus\": \"Healthy\",\r\n \"resourceHealthDetails\": [\r\n {\r\n \"code\": 0,\r\n \"title\": \"Success\",\r\n \"message\": \"\",\r\n \"recommendations\": []\r\n }\r\n ]\r\n }\r\n },\r\n \"friendlyName\": \"PSTestVMbfee90\",\r\n \"virtualMachineId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.Compute/virtualMachines/PSTestVMbfee90\",\r\n \"protectionStatus\": \"Healthy\",\r\n \"protectionState\": \"Protected\",\r\n \"healthStatus\": \"Passed\",\r\n \"healthDetails\": [\r\n {\r\n \"code\": 400239,\r\n \"title\": \"IaasVmHealthGreenDefault\",\r\n \"message\": \"Backup pre-check status of this virtual machine is OK.\",\r\n \"recommendations\": []\r\n }\r\n ],\r\n \"lastBackupStatus\": \"Completed\",\r\n \"lastBackupTime\": \"2022-02-24T18:06:57.8348208Z\",\r\n \"protectedItemDataId\": \"211106729921870\",\r\n \"protectedItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"workloadType\": \"VM\",\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgbfee9dac;pstestvmbfee90\",\r\n \"sourceResourceId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.Compute/virtualMachines/PSTestVMbfee90\",\r\n \"policyId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfee9dac/backupPolicies/DefaultPolicy\",\r\n \"policyName\": \"DefaultPolicy\",\r\n \"lastRecoveryPoint\": \"2022-02-24T18:07:03.5199409Z\",\r\n \"isArchiveEnabled\": false\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"225b62c4-b764-41cf-8205-cc1b9e46d760\",\r\n \"name\": \"225b62c4-b764-41cf-8205-cc1b9e46d760\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T06:05:41.5940449Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfee9dac/backupFabrics/Azure/protectionContainers/IaasVMContainer%3Biaasvmcontainerv2%3Bpstestrgbfee9dac%3Bpstestvmbfee90/protectedItems/VM%3Biaasvmcontainerv2%3Bpstestrgbfee9dac%3Bpstestvmbfee90?$filter=expand%20eq%20'extendedinfo'&api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZlZTlkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmVlOWRhYy9iYWNrdXBGYWJyaWNzL0F6dXJlL3Byb3RlY3Rpb25Db250YWluZXJzL0lhYXNWTUNvbnRhaW5lciUzQmlhYXN2bWNvbnRhaW5lcnYyJTNCcHN0ZXN0cmdiZmVlOWRhYyUzQnBzdGVzdHZtYmZlZTkwL3Byb3RlY3RlZEl0ZW1zL1ZNJTNCaWFhc3ZtY29udGFpbmVydjIlM0Jwc3Rlc3RyZ2JmZWU5ZGFjJTNCcHN0ZXN0dm1iZmVlOTA/JGZpbHRlcj1leHBhbmQlMjBlcSUyMCdleHRlbmRlZGluZm8nJmFwaS12ZXJzaW9uPTIwMjEtMTAtMDE=", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupOperations/225b62c4-b764-41cf-8205-cc1b9e46d760?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMmEwODVmMWIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YyYTA4NWYxYi9iYWNrdXBPcGVyYXRpb25zLzIyNWI2MmM0LWI3NjQtNDFjZi04MjA1LWNjMWI5ZTQ2ZDc2MD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "db3ad689-3eca-4d20-9a01-82e59ec9fa69" + "163b5c54-3ef1-43cd-94c2-f53232928359" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -4372,11 +4562,11 @@ "nosniff" ], "x-ms-request-id": [ - "5c9a426f-13ce-4279-9eeb-d67d99de8abc" + "324f8df9-7253-43d2-bf02-0960e02557ff" ], "x-ms-client-request-id": [ - "db3ad689-3eca-4d20-9a01-82e59ec9fa69", - "db3ad689-3eca-4d20-9a01-82e59ec9fa69" + "163b5c54-3ef1-43cd-94c2-f53232928359", + "163b5c54-3ef1-43cd-94c2-f53232928359" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4388,19 +4578,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "149" + "143" ], "x-ms-correlation-request-id": [ - "5c9a426f-13ce-4279-9eeb-d67d99de8abc" + "324f8df9-7253-43d2-bf02-0960e02557ff" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T180657Z:5c9a426f-13ce-4279-9eeb-d67d99de8abc" + "JIOINDIAWEST:20220517T060615Z:324f8df9-7253-43d2-bf02-0960e02557ff" ], "Date": [ - "Thu, 24 Feb 2022 18:06:56 GMT" + "Tue, 17 May 2022 06:06:14 GMT" ], "Content-Length": [ - "1551" + "188" ], "Content-Type": [ "application/json" @@ -4409,32 +4599,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfee9dac/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrgbfee9dac;pstestvmbfee90/protectedItems/VM;iaasvmcontainerv2;pstestrgbfee9dac;pstestvmbfee90\",\r\n \"name\": \"VM;iaasvmcontainerv2;pstestrgbfee9dac;pstestvmbfee90\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems\",\r\n \"properties\": {\r\n \"kpisHealths\": {},\r\n \"friendlyName\": \"PSTestVMbfee90\",\r\n \"virtualMachineId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.Compute/virtualMachines/PSTestVMbfee90\",\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\": \"211106729921870\",\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;pstestrgbfee9dac;pstestvmbfee90\",\r\n \"sourceResourceId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.Compute/virtualMachines/PSTestVMbfee90\",\r\n \"policyId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfee9dac/backupPolicies/DefaultPolicy\",\r\n \"policyName\": \"DefaultPolicy\",\r\n \"isArchiveEnabled\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"225b62c4-b764-41cf-8205-cc1b9e46d760\",\r\n \"name\": \"225b62c4-b764-41cf-8205-cc1b9e46d760\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T06:05:41.5940449Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfee9dac/backupFabrics/Azure/protectionContainers/IaasVMContainer%3Biaasvmcontainerv2%3Bpstestrgbfee9dac%3Bpstestvmbfee90/protectedItems/VM%3Biaasvmcontainerv2%3Bpstestrgbfee9dac%3Bpstestvmbfee90/backup?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZlZTlkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmVlOWRhYy9iYWNrdXBGYWJyaWNzL0F6dXJlL3Byb3RlY3Rpb25Db250YWluZXJzL0lhYXNWTUNvbnRhaW5lciUzQmlhYXN2bWNvbnRhaW5lcnYyJTNCcHN0ZXN0cmdiZmVlOWRhYyUzQnBzdGVzdHZtYmZlZTkwL3Byb3RlY3RlZEl0ZW1zL1ZNJTNCaWFhc3ZtY29udGFpbmVydjIlM0Jwc3Rlc3RyZ2JmZWU5ZGFjJTNCcHN0ZXN0dm1iZmVlOTAvYmFja3VwP2FwaS12ZXJzaW9uPTIwMjEtMTAtMDE=", - "RequestMethod": "POST", - "RequestBody": "{\r\n \"properties\": {\r\n \"objectType\": \"IaasVMBackupRequest\"\r\n }\r\n}", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupOperations/225b62c4-b764-41cf-8205-cc1b9e46d760?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMmEwODVmMWIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YyYTA4NWYxYi9iYWNrdXBPcGVyYXRpb25zLzIyNWI2MmM0LWI3NjQtNDFjZi04MjA1LWNjMWI5ZTQ2ZDc2MD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f582a7a7-0991-4901-95d4-2fe00da1568c" + "163b5c54-3ef1-43cd-94c2-f53232928359" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "69" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -4444,70 +4628,67 @@ "Pragma": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfee9dac/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrgbfee9dac;pstestvmbfee90/protectedItems/VM;iaasvmcontainerv2;pstestrgbfee9dac;pstestvmbfee90/operationResults/680edf44-d9cb-4ad0-8c99-0e15b1caccb8?api-version=2021-10-01" - ], - "Retry-After": [ - "60" - ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfee9dac/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrgbfee9dac;pstestvmbfee90/protectedItems/VM;iaasvmcontainerv2;pstestrgbfee9dac;pstestvmbfee90/operationsStatus/680edf44-d9cb-4ad0-8c99-0e15b1caccb8?api-version=2021-10-01" - ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "2dfbf767-6bd8-4e92-b724-3a997bcb4c6a" + "57af792a-8408-4589-b0cb-4851add75caf" ], "x-ms-client-request-id": [ - "f582a7a7-0991-4901-95d4-2fe00da1568c", - "f582a7a7-0991-4901-95d4-2fe00da1568c" + "163b5c54-3ef1-43cd-94c2-f53232928359", + "163b5c54-3ef1-43cd-94c2-f53232928359" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-IIS/10.0" + ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "142" ], "x-ms-correlation-request-id": [ - "2dfbf767-6bd8-4e92-b724-3a997bcb4c6a" + "57af792a-8408-4589-b0cb-4851add75caf" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T180658Z:2dfbf767-6bd8-4e92-b724-3a997bcb4c6a" + "JIOINDIAWEST:20220517T060620Z:57af792a-8408-4589-b0cb-4851add75caf" ], "Date": [ - "Thu, 24 Feb 2022 18:06:57 GMT" + "Tue, 17 May 2022 06:06:20 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, - "ResponseBody": "", - "StatusCode": 202 + "ResponseBody": "{\r\n \"id\": \"225b62c4-b764-41cf-8205-cc1b9e46d760\",\r\n \"name\": \"225b62c4-b764-41cf-8205-cc1b9e46d760\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T06:05:41.5940449Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfee9dac/backupOperations/680edf44-d9cb-4ad0-8c99-0e15b1caccb8?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZlZTlkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmVlOWRhYy9iYWNrdXBPcGVyYXRpb25zLzY4MGVkZjQ0LWQ5Y2ItNGFkMC04Yzk5LTBlMTViMWNhY2NiOD9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupOperations/225b62c4-b764-41cf-8205-cc1b9e46d760?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMmEwODVmMWIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YyYTA4NWYxYi9iYWNrdXBPcGVyYXRpb25zLzIyNWI2MmM0LWI3NjQtNDFjZi04MjA1LWNjMWI5ZTQ2ZDc2MD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f582a7a7-0991-4901-95d4-2fe00da1568c" + "163b5c54-3ef1-43cd-94c2-f53232928359" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -4521,11 +4702,11 @@ "nosniff" ], "x-ms-request-id": [ - "ce578cfa-8cad-4fea-9a23-fdd5f2b8f6a4" + "4b71476c-8f8e-4be0-9b5f-81cbae7144e0" ], "x-ms-client-request-id": [ - "f582a7a7-0991-4901-95d4-2fe00da1568c", - "f582a7a7-0991-4901-95d4-2fe00da1568c" + "163b5c54-3ef1-43cd-94c2-f53232928359", + "163b5c54-3ef1-43cd-94c2-f53232928359" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4537,16 +4718,16 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "144" + "141" ], "x-ms-correlation-request-id": [ - "ce578cfa-8cad-4fea-9a23-fdd5f2b8f6a4" + "4b71476c-8f8e-4be0-9b5f-81cbae7144e0" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T180658Z:ce578cfa-8cad-4fea-9a23-fdd5f2b8f6a4" + "JIOINDIAWEST:20220517T060626Z:4b71476c-8f8e-4be0-9b5f-81cbae7144e0" ], "Date": [ - "Thu, 24 Feb 2022 18:06:58 GMT" + "Tue, 17 May 2022 06:06:25 GMT" ], "Content-Length": [ "304" @@ -4558,26 +4739,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"680edf44-d9cb-4ad0-8c99-0e15b1caccb8\",\r\n \"name\": \"680edf44-d9cb-4ad0-8c99-0e15b1caccb8\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-02-24T18:06:57.8348208Z\",\r\n \"endTime\": \"2022-02-24T18:06:57.8348208Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"933437e4-1125-4961-8fc4-572c4cc4b1e5\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"225b62c4-b764-41cf-8205-cc1b9e46d760\",\r\n \"name\": \"225b62c4-b764-41cf-8205-cc1b9e46d760\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-05-17T06:05:41.5940449Z\",\r\n \"endTime\": \"2022-05-17T06:05:41.5940449Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"ef59956d-6d20-4131-8a06-b462ae2074c6\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfee9dac/backupOperations/680edf44-d9cb-4ad0-8c99-0e15b1caccb8?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZlZTlkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmVlOWRhYy9iYWNrdXBPcGVyYXRpb25zLzY4MGVkZjQ0LWQ5Y2ItNGFkMC04Yzk5LTBlMTViMWNhY2NiOD9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupOperations/225b62c4-b764-41cf-8205-cc1b9e46d760?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMmEwODVmMWIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YyYTA4NWYxYi9iYWNrdXBPcGVyYXRpb25zLzIyNWI2MmM0LWI3NjQtNDFjZi04MjA1LWNjMWI5ZTQ2ZDc2MD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f582a7a7-0991-4901-95d4-2fe00da1568c" + "163b5c54-3ef1-43cd-94c2-f53232928359" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -4591,11 +4772,11 @@ "nosniff" ], "x-ms-request-id": [ - "3ef2354c-ee27-4e53-b816-7f6119256872" + "b008804c-6622-4ea4-bc2a-b9234c95ac7a" ], "x-ms-client-request-id": [ - "f582a7a7-0991-4901-95d4-2fe00da1568c", - "f582a7a7-0991-4901-95d4-2fe00da1568c" + "163b5c54-3ef1-43cd-94c2-f53232928359", + "163b5c54-3ef1-43cd-94c2-f53232928359" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4607,16 +4788,16 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "143" + "140" ], "x-ms-correlation-request-id": [ - "3ef2354c-ee27-4e53-b816-7f6119256872" + "b008804c-6622-4ea4-bc2a-b9234c95ac7a" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T180659Z:3ef2354c-ee27-4e53-b816-7f6119256872" + "JIOINDIAWEST:20220517T060626Z:b008804c-6622-4ea4-bc2a-b9234c95ac7a" ], "Date": [ - "Thu, 24 Feb 2022 18:06:58 GMT" + "Tue, 17 May 2022 06:06:25 GMT" ], "Content-Length": [ "304" @@ -4628,26 +4809,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"680edf44-d9cb-4ad0-8c99-0e15b1caccb8\",\r\n \"name\": \"680edf44-d9cb-4ad0-8c99-0e15b1caccb8\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-02-24T18:06:57.8348208Z\",\r\n \"endTime\": \"2022-02-24T18:06:57.8348208Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"933437e4-1125-4961-8fc4-572c4cc4b1e5\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"225b62c4-b764-41cf-8205-cc1b9e46d760\",\r\n \"name\": \"225b62c4-b764-41cf-8205-cc1b9e46d760\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-05-17T06:05:41.5940449Z\",\r\n \"endTime\": \"2022-05-17T06:05:41.5940449Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"ef59956d-6d20-4131-8a06-b462ae2074c6\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfee9dac/backupJobs/933437e4-1125-4961-8fc4-572c4cc4b1e5?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZlZTlkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmVlOWRhYy9iYWNrdXBKb2JzLzkzMzQzN2U0LTExMjUtNDk2MS04ZmM0LTU3MmM0Y2M0YjFlNT9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupJobs/ef59956d-6d20-4131-8a06-b462ae2074c6?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMmEwODVmMWIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YyYTA4NWYxYi9iYWNrdXBKb2JzL2VmNTk5NTZkLTZkMjAtNDEzMS04YTA2LWI0NjJhZTIwNzRjNj9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f582a7a7-0991-4901-95d4-2fe00da1568c" + "163b5c54-3ef1-43cd-94c2-f53232928359" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -4665,11 +4846,11 @@ "nosniff" ], "x-ms-request-id": [ - "5d1740bc-d0ce-4577-baa3-6fd509e836a1" + "fa6f11d4-4650-4aff-8003-0bb12574fec5" ], "x-ms-client-request-id": [ - "f582a7a7-0991-4901-95d4-2fe00da1568c", - "f582a7a7-0991-4901-95d4-2fe00da1568c" + "163b5c54-3ef1-43cd-94c2-f53232928359", + "163b5c54-3ef1-43cd-94c2-f53232928359" ], "X-Powered-By": [ "ASP.NET" @@ -4678,19 +4859,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "148" + "149" ], "x-ms-correlation-request-id": [ - "5d1740bc-d0ce-4577-baa3-6fd509e836a1" + "fa6f11d4-4650-4aff-8003-0bb12574fec5" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T180659Z:5d1740bc-d0ce-4577-baa3-6fd509e836a1" + "JIOINDIAWEST:20220517T060627Z:fa6f11d4-4650-4aff-8003-0bb12574fec5" ], "Date": [ - "Thu, 24 Feb 2022 18:06:59 GMT" + "Tue, 17 May 2022 06:06:26 GMT" ], "Content-Length": [ - "968" + "840" ], "Content-Type": [ "application/json" @@ -4699,26 +4880,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfee9dac/backupJobs/933437e4-1125-4961-8fc4-572c4cc4b1e5\",\r\n \"name\": \"933437e4-1125-4961-8fc4-572c4cc4b1e5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgbfee9dac;pstestvmbfee90\",\r\n \"duration\": \"PT1.6591381S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvmbfee90\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvmbfee90\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-24T18:06:57.8348208Z\",\r\n \"activityId\": \"f582a7a7-0991-4901-95d4-2fe00da1568c\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupJobs/ef59956d-6d20-4131-8a06-b462ae2074c6\",\r\n \"name\": \"ef59956d-6d20-4131-8a06-b462ae2074c6\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg2a085f1b;pstestvm2a0850\",\r\n \"duration\": \"PT41.1179523S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm2a0850\",\r\n \"Policy Name\": \"DefaultPolicy\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm2a0850\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"ConfigureBackup\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-05-17T06:05:41.5940449Z\",\r\n \"endTime\": \"2022-05-17T06:06:22.7119972Z\",\r\n \"activityId\": \"163b5c54-3ef1-43cd-94c2-f53232928359\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfee9dac/backupJobs/933437e4-1125-4961-8fc4-572c4cc4b1e5?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZlZTlkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmVlOWRhYy9iYWNrdXBKb2JzLzkzMzQzN2U0LTExMjUtNDk2MS04ZmM0LTU3MmM0Y2M0YjFlNT9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupProtectedItems?$filter=backupManagementType%20eq%20'AzureIaasVM'%20and%20itemType%20eq%20'VM'&api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMmEwODVmMWIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YyYTA4NWYxYi9iYWNrdXBQcm90ZWN0ZWRJdGVtcz8kZmlsdGVyPWJhY2t1cE1hbmFnZW1lbnRUeXBlJTIwZXElMjAnQXp1cmVJYWFzVk0nJTIwYW5kJTIwaXRlbVR5cGUlMjBlcSUyMCdWTScmYXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f582a7a7-0991-4901-95d4-2fe00da1568c" + "f093a601-0f36-40ed-a882-6d31a9a18813" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -4728,40 +4909,39 @@ "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-IIS/10.0" - ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "6c1ee74e-5f15-41d2-a11f-8cf71c779522" + "b07a619c-df80-4c20-9615-3a79a629b42c" ], "x-ms-client-request-id": [ - "f582a7a7-0991-4901-95d4-2fe00da1568c", - "f582a7a7-0991-4901-95d4-2fe00da1568c" - ], - "X-Powered-By": [ - "ASP.NET" + "f093a601-0f36-40ed-a882-6d31a9a18813", + "f093a601-0f36-40ed-a882-6d31a9a18813" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "147" + "149" ], "x-ms-correlation-request-id": [ - "6c1ee74e-5f15-41d2-a11f-8cf71c779522" + "b07a619c-df80-4c20-9615-3a79a629b42c" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T180700Z:6c1ee74e-5f15-41d2-a11f-8cf71c779522" + "JIOINDIAWEST:20220517T060628Z:b07a619c-df80-4c20-9615-3a79a629b42c" ], "Date": [ - "Thu, 24 Feb 2022 18:07:00 GMT" + "Tue, 17 May 2022 06:06:27 GMT" ], "Content-Length": [ - "967" + "1495" ], "Content-Type": [ "application/json" @@ -4770,26 +4950,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfee9dac/backupJobs/933437e4-1125-4961-8fc4-572c4cc4b1e5\",\r\n \"name\": \"933437e4-1125-4961-8fc4-572c4cc4b1e5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgbfee9dac;pstestvmbfee90\",\r\n \"duration\": \"PT2.391874S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvmbfee90\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvmbfee90\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-24T18:06:57.8348208Z\",\r\n \"activityId\": \"f582a7a7-0991-4901-95d4-2fe00da1568c\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrg2a085f1b;pstestvm2a0850/protectedItems/VM;iaasvmcontainerv2;pstestrg2a085f1b;pstestvm2a0850\",\r\n \"name\": \"VM;iaasvmcontainerv2;pstestrg2a085f1b;pstestvm2a0850\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems\",\r\n \"properties\": {\r\n \"kpisHealths\": {},\r\n \"friendlyName\": \"PSTestVM2a0850\",\r\n \"virtualMachineId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.Compute/virtualMachines/PSTestVM2a0850\",\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\": \"35184907332273\",\r\n \"protectedItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"workloadType\": \"VM\",\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg2a085f1b;pstestvm2a0850\",\r\n \"sourceResourceId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.Compute/virtualMachines/PSTestVM2a0850\",\r\n \"policyId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupPolicies/DefaultPolicy\",\r\n \"policyName\": \"DefaultPolicy\",\r\n \"isArchiveEnabled\": false\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfee9dac/backupJobs/933437e4-1125-4961-8fc4-572c4cc4b1e5?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZlZTlkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmVlOWRhYy9iYWNrdXBKb2JzLzkzMzQzN2U0LTExMjUtNDk2MS04ZmM0LTU3MmM0Y2M0YjFlNT9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupProtectedItems?$filter=backupManagementType%20eq%20'AzureIaasVM'%20and%20itemType%20eq%20'VM'&api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMmEwODVmMWIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YyYTA4NWYxYi9iYWNrdXBQcm90ZWN0ZWRJdGVtcz8kZmlsdGVyPWJhY2t1cE1hbmFnZW1lbnRUeXBlJTIwZXElMjAnQXp1cmVJYWFzVk0nJTIwYW5kJTIwaXRlbVR5cGUlMjBlcSUyMCdWTScmYXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f582a7a7-0991-4901-95d4-2fe00da1568c" + "93fbf2b4-1459-48fa-b43d-69ae241775c9" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -4799,40 +4979,39 @@ "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-IIS/10.0" - ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "636ca234-2c63-4147-b24d-ae1fc6f77d8c" + "9e9ec0a4-e535-487c-9d95-c5f1deb8b9c6" ], "x-ms-client-request-id": [ - "f582a7a7-0991-4901-95d4-2fe00da1568c", - "f582a7a7-0991-4901-95d4-2fe00da1568c" - ], - "X-Powered-By": [ - "ASP.NET" + "93fbf2b4-1459-48fa-b43d-69ae241775c9", + "93fbf2b4-1459-48fa-b43d-69ae241775c9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "146" + "148" ], "x-ms-correlation-request-id": [ - "636ca234-2c63-4147-b24d-ae1fc6f77d8c" + "9e9ec0a4-e535-487c-9d95-c5f1deb8b9c6" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T180814Z:636ca234-2c63-4147-b24d-ae1fc6f77d8c" + "JIOINDIAWEST:20220517T065543Z:9e9ec0a4-e535-487c-9d95-c5f1deb8b9c6" ], "Date": [ - "Thu, 24 Feb 2022 18:08:14 GMT" + "Tue, 17 May 2022 06:55:43 GMT" ], "Content-Length": [ - "971" + "2022" ], "Content-Type": [ "application/json" @@ -4841,26 +5020,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfee9dac/backupJobs/933437e4-1125-4961-8fc4-572c4cc4b1e5\",\r\n \"name\": \"933437e4-1125-4961-8fc4-572c4cc4b1e5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgbfee9dac;pstestvmbfee90\",\r\n \"duration\": \"PT1M14.2751704S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvmbfee90\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvmbfee90\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-24T18:06:57.8348208Z\",\r\n \"activityId\": \"f582a7a7-0991-4901-95d4-2fe00da1568c\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrg2a085f1b;pstestvm2a0850/protectedItems/VM;iaasvmcontainerv2;pstestrg2a085f1b;pstestvm2a0850\",\r\n \"name\": \"VM;iaasvmcontainerv2;pstestrg2a085f1b;pstestvm2a0850\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems\",\r\n \"properties\": {\r\n \"kpisHealths\": {\r\n \"BackupOperationStatusKPI\": {\r\n \"resourceHealthStatus\": \"Healthy\",\r\n \"resourceHealthDetails\": [\r\n {\r\n \"code\": 0,\r\n \"title\": \"Success\",\r\n \"message\": \"\",\r\n \"recommendations\": []\r\n }\r\n ]\r\n },\r\n \"RestoreOperationStatusKPI\": {\r\n \"resourceHealthStatus\": \"Healthy\",\r\n \"resourceHealthDetails\": [\r\n {\r\n \"code\": 0,\r\n \"title\": \"Success\",\r\n \"message\": \"\",\r\n \"recommendations\": []\r\n }\r\n ]\r\n }\r\n },\r\n \"friendlyName\": \"PSTestVM2a0850\",\r\n \"virtualMachineId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.Compute/virtualMachines/PSTestVM2a0850\",\r\n \"protectionStatus\": \"Healthy\",\r\n \"protectionState\": \"Protected\",\r\n \"healthStatus\": \"Passed\",\r\n \"healthDetails\": [\r\n {\r\n \"code\": 400239,\r\n \"title\": \"IaasVmHealthGreenDefault\",\r\n \"message\": \"Backup pre-check status of this virtual machine is OK.\",\r\n \"recommendations\": []\r\n }\r\n ],\r\n \"lastBackupStatus\": \"Completed\",\r\n \"lastBackupTime\": \"2022-05-17T06:06:29.7845766Z\",\r\n \"protectedItemDataId\": \"35184907332273\",\r\n \"protectedItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"workloadType\": \"VM\",\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg2a085f1b;pstestvm2a0850\",\r\n \"sourceResourceId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.Compute/virtualMachines/PSTestVM2a0850\",\r\n \"policyId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupPolicies/DefaultPolicy\",\r\n \"policyName\": \"DefaultPolicy\",\r\n \"lastRecoveryPoint\": \"2022-05-17T06:06:33.6089688Z\",\r\n \"isArchiveEnabled\": false\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfee9dac/backupJobs/933437e4-1125-4961-8fc4-572c4cc4b1e5?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZlZTlkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmVlOWRhYy9iYWNrdXBKb2JzLzkzMzQzN2U0LTExMjUtNDk2MS04ZmM0LTU3MmM0Y2M0YjFlNT9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupFabrics/Azure/protectionContainers/IaasVMContainer%3Biaasvmcontainerv2%3Bpstestrg2a085f1b%3Bpstestvm2a0850/protectedItems/VM%3Biaasvmcontainerv2%3Bpstestrg2a085f1b%3Bpstestvm2a0850?$filter=expand%20eq%20'extendedinfo'&api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMmEwODVmMWIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YyYTA4NWYxYi9iYWNrdXBGYWJyaWNzL0F6dXJlL3Byb3RlY3Rpb25Db250YWluZXJzL0lhYXNWTUNvbnRhaW5lciUzQmlhYXN2bWNvbnRhaW5lcnYyJTNCcHN0ZXN0cmcyYTA4NWYxYiUzQnBzdGVzdHZtMmEwODUwL3Byb3RlY3RlZEl0ZW1zL1ZNJTNCaWFhc3ZtY29udGFpbmVydjIlM0Jwc3Rlc3RyZzJhMDg1ZjFiJTNCcHN0ZXN0dm0yYTA4NTA/JGZpbHRlcj1leHBhbmQlMjBlcSUyMCdleHRlbmRlZGluZm8nJmFwaS12ZXJzaW9uPTIwMjItMDItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f582a7a7-0991-4901-95d4-2fe00da1568c" + "f093a601-0f36-40ed-a882-6d31a9a18813" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -4870,40 +5049,39 @@ "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-IIS/10.0" - ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "88c33dd5-627b-4a32-9d54-1f66d1a68add" + "ba0d06a8-152d-4550-a2dd-7c82bfa51786" ], "x-ms-client-request-id": [ - "f582a7a7-0991-4901-95d4-2fe00da1568c", - "f582a7a7-0991-4901-95d4-2fe00da1568c" - ], - "X-Powered-By": [ - "ASP.NET" + "f093a601-0f36-40ed-a882-6d31a9a18813", + "f093a601-0f36-40ed-a882-6d31a9a18813" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "145" + "149" ], "x-ms-correlation-request-id": [ - "88c33dd5-627b-4a32-9d54-1f66d1a68add" + "ba0d06a8-152d-4550-a2dd-7c82bfa51786" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T180916Z:88c33dd5-627b-4a32-9d54-1f66d1a68add" + "JIOINDIAWEST:20220517T060629Z:ba0d06a8-152d-4550-a2dd-7c82bfa51786" ], "Date": [ - "Thu, 24 Feb 2022 18:09:15 GMT" + "Tue, 17 May 2022 06:06:28 GMT" ], "Content-Length": [ - "970" + "1550" ], "Content-Type": [ "application/json" @@ -4912,26 +5090,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfee9dac/backupJobs/933437e4-1125-4961-8fc4-572c4cc4b1e5\",\r\n \"name\": \"933437e4-1125-4961-8fc4-572c4cc4b1e5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgbfee9dac;pstestvmbfee90\",\r\n \"duration\": \"PT2M17.815417S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvmbfee90\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvmbfee90\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-24T18:06:57.8348208Z\",\r\n \"activityId\": \"f582a7a7-0991-4901-95d4-2fe00da1568c\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrg2a085f1b;pstestvm2a0850/protectedItems/VM;iaasvmcontainerv2;pstestrg2a085f1b;pstestvm2a0850\",\r\n \"name\": \"VM;iaasvmcontainerv2;pstestrg2a085f1b;pstestvm2a0850\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems\",\r\n \"properties\": {\r\n \"kpisHealths\": {},\r\n \"friendlyName\": \"PSTestVM2a0850\",\r\n \"virtualMachineId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.Compute/virtualMachines/PSTestVM2a0850\",\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\": \"35184907332273\",\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;pstestrg2a085f1b;pstestvm2a0850\",\r\n \"sourceResourceId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.Compute/virtualMachines/PSTestVM2a0850\",\r\n \"policyId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupPolicies/DefaultPolicy\",\r\n \"policyName\": \"DefaultPolicy\",\r\n \"isArchiveEnabled\": false\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfee9dac/backupJobs/933437e4-1125-4961-8fc4-572c4cc4b1e5?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZlZTlkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmVlOWRhYy9iYWNrdXBKb2JzLzkzMzQzN2U0LTExMjUtNDk2MS04ZmM0LTU3MmM0Y2M0YjFlNT9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupFabrics/Azure/protectionContainers/IaasVMContainer%3Biaasvmcontainerv2%3Bpstestrg2a085f1b%3Bpstestvm2a0850/protectedItems/VM%3Biaasvmcontainerv2%3Bpstestrg2a085f1b%3Bpstestvm2a0850/backup?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMmEwODVmMWIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YyYTA4NWYxYi9iYWNrdXBGYWJyaWNzL0F6dXJlL3Byb3RlY3Rpb25Db250YWluZXJzL0lhYXNWTUNvbnRhaW5lciUzQmlhYXN2bWNvbnRhaW5lcnYyJTNCcHN0ZXN0cmcyYTA4NWYxYiUzQnBzdGVzdHZtMmEwODUwL3Byb3RlY3RlZEl0ZW1zL1ZNJTNCaWFhc3ZtY29udGFpbmVydjIlM0Jwc3Rlc3RyZzJhMDg1ZjFiJTNCcHN0ZXN0dm0yYTA4NTAvYmFja3VwP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"properties\": {\r\n \"objectType\": \"IaasVMBackupRequest\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "f582a7a7-0991-4901-95d4-2fe00da1568c" + "bcd2a12f-4272-4dc7-83e6-769270a3c520" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "69" ] }, "ResponseHeaders": { @@ -4941,68 +5125,70 @@ "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-IIS/10.0" + "Location": [ + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrg2a085f1b;pstestvm2a0850/protectedItems/VM;iaasvmcontainerv2;pstestrg2a085f1b;pstestvm2a0850/operationResults/a3dca49b-f5f3-44e4-9d41-f12eb04700a7?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrg2a085f1b;pstestvm2a0850/protectedItems/VM;iaasvmcontainerv2;pstestrg2a085f1b;pstestvm2a0850/operationsStatus/a3dca49b-f5f3-44e4-9d41-f12eb04700a7?api-version=2022-02-01" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "f9445364-908e-44ba-8efc-470735918482" + "8a7f954a-5e2c-4b5e-8734-4d34affed023" ], "x-ms-client-request-id": [ - "f582a7a7-0991-4901-95d4-2fe00da1568c", - "f582a7a7-0991-4901-95d4-2fe00da1568c" - ], - "X-Powered-By": [ - "ASP.NET" + "bcd2a12f-4272-4dc7-83e6-769270a3c520", + "bcd2a12f-4272-4dc7-83e6-769270a3c520" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "144" + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" ], "x-ms-correlation-request-id": [ - "f9445364-908e-44ba-8efc-470735918482" + "8a7f954a-5e2c-4b5e-8734-4d34affed023" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T181017Z:f9445364-908e-44ba-8efc-470735918482" + "JIOINDIAWEST:20220517T060629Z:8a7f954a-5e2c-4b5e-8734-4d34affed023" ], "Date": [ - "Thu, 24 Feb 2022 18:10:17 GMT" - ], - "Content-Length": [ - "971" - ], - "Content-Type": [ - "application/json" + "Tue, 17 May 2022 06:06:29 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfee9dac/backupJobs/933437e4-1125-4961-8fc4-572c4cc4b1e5\",\r\n \"name\": \"933437e4-1125-4961-8fc4-572c4cc4b1e5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgbfee9dac;pstestvmbfee90\",\r\n \"duration\": \"PT3M19.6504904S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvmbfee90\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvmbfee90\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-24T18:06:57.8348208Z\",\r\n \"activityId\": \"f582a7a7-0991-4901-95d4-2fe00da1568c\"\r\n }\r\n}", - "StatusCode": 200 + "ResponseBody": "", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfee9dac/backupJobs/933437e4-1125-4961-8fc4-572c4cc4b1e5?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZlZTlkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmVlOWRhYy9iYWNrdXBKb2JzLzkzMzQzN2U0LTExMjUtNDk2MS04ZmM0LTU3MmM0Y2M0YjFlNT9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupOperations/a3dca49b-f5f3-44e4-9d41-f12eb04700a7?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMmEwODVmMWIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YyYTA4NWYxYi9iYWNrdXBPcGVyYXRpb25zL2EzZGNhNDliLWY1ZjMtNDRlNC05ZDQxLWYxMmViMDQ3MDBhNz9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f582a7a7-0991-4901-95d4-2fe00da1568c" + "bcd2a12f-4272-4dc7-83e6-769270a3c520" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -5012,40 +5198,39 @@ "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-IIS/10.0" - ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "58cb6804-d6c3-4602-b9a5-bdb02184f33c" + "0dc4f315-a87b-4e52-bd47-97eb9a5b3ca1" ], "x-ms-client-request-id": [ - "f582a7a7-0991-4901-95d4-2fe00da1568c", - "f582a7a7-0991-4901-95d4-2fe00da1568c" - ], - "X-Powered-By": [ - "ASP.NET" + "bcd2a12f-4272-4dc7-83e6-769270a3c520", + "bcd2a12f-4272-4dc7-83e6-769270a3c520" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "143" - ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "139" + ], "x-ms-correlation-request-id": [ - "58cb6804-d6c3-4602-b9a5-bdb02184f33c" + "0dc4f315-a87b-4e52-bd47-97eb9a5b3ca1" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T181124Z:58cb6804-d6c3-4602-b9a5-bdb02184f33c" + "JIOINDIAWEST:20220517T060630Z:0dc4f315-a87b-4e52-bd47-97eb9a5b3ca1" ], "Date": [ - "Thu, 24 Feb 2022 18:11:24 GMT" + "Tue, 17 May 2022 06:06:29 GMT" ], "Content-Length": [ - "971" + "188" ], "Content-Type": [ "application/json" @@ -5054,26 +5239,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfee9dac/backupJobs/933437e4-1125-4961-8fc4-572c4cc4b1e5\",\r\n \"name\": \"933437e4-1125-4961-8fc4-572c4cc4b1e5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgbfee9dac;pstestvmbfee90\",\r\n \"duration\": \"PT4M26.0614131S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvmbfee90\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvmbfee90\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-24T18:06:57.8348208Z\",\r\n \"activityId\": \"f582a7a7-0991-4901-95d4-2fe00da1568c\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"a3dca49b-f5f3-44e4-9d41-f12eb04700a7\",\r\n \"name\": \"a3dca49b-f5f3-44e4-9d41-f12eb04700a7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T06:06:29.7845766Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfee9dac/backupJobs/933437e4-1125-4961-8fc4-572c4cc4b1e5?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZlZTlkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmVlOWRhYy9iYWNrdXBKb2JzLzkzMzQzN2U0LTExMjUtNDk2MS04ZmM0LTU3MmM0Y2M0YjFlNT9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupOperations/a3dca49b-f5f3-44e4-9d41-f12eb04700a7?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMmEwODVmMWIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YyYTA4NWYxYi9iYWNrdXBPcGVyYXRpb25zL2EzZGNhNDliLWY1ZjMtNDRlNC05ZDQxLWYxMmViMDQ3MDBhNz9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f582a7a7-0991-4901-95d4-2fe00da1568c" + "bcd2a12f-4272-4dc7-83e6-769270a3c520" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -5083,40 +5268,39 @@ "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-IIS/10.0" - ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "49639e14-f087-4392-814c-399d375538f2" + "c88ef60d-7caa-4f2a-a16b-73eeb9b19e86" ], "x-ms-client-request-id": [ - "f582a7a7-0991-4901-95d4-2fe00da1568c", - "f582a7a7-0991-4901-95d4-2fe00da1568c" - ], - "X-Powered-By": [ - "ASP.NET" + "bcd2a12f-4272-4dc7-83e6-769270a3c520", + "bcd2a12f-4272-4dc7-83e6-769270a3c520" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "142" + "138" ], "x-ms-correlation-request-id": [ - "49639e14-f087-4392-814c-399d375538f2" + "c88ef60d-7caa-4f2a-a16b-73eeb9b19e86" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T181226Z:49639e14-f087-4392-814c-399d375538f2" + "JIOINDIAWEST:20220517T060635Z:c88ef60d-7caa-4f2a-a16b-73eeb9b19e86" ], "Date": [ - "Thu, 24 Feb 2022 18:12:25 GMT" + "Tue, 17 May 2022 06:06:35 GMT" ], "Content-Length": [ - "971" + "304" ], "Content-Type": [ "application/json" @@ -5125,26 +5309,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfee9dac/backupJobs/933437e4-1125-4961-8fc4-572c4cc4b1e5\",\r\n \"name\": \"933437e4-1125-4961-8fc4-572c4cc4b1e5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgbfee9dac;pstestvmbfee90\",\r\n \"duration\": \"PT5M28.3508575S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvmbfee90\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvmbfee90\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-24T18:06:57.8348208Z\",\r\n \"activityId\": \"f582a7a7-0991-4901-95d4-2fe00da1568c\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"a3dca49b-f5f3-44e4-9d41-f12eb04700a7\",\r\n \"name\": \"a3dca49b-f5f3-44e4-9d41-f12eb04700a7\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-05-17T06:06:29.7845766Z\",\r\n \"endTime\": \"2022-05-17T06:06:29.7845766Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"16cb625d-51f4-4a5b-8932-85a9e11f8a09\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfee9dac/backupJobs/933437e4-1125-4961-8fc4-572c4cc4b1e5?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZlZTlkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmVlOWRhYy9iYWNrdXBKb2JzLzkzMzQzN2U0LTExMjUtNDk2MS04ZmM0LTU3MmM0Y2M0YjFlNT9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupOperations/a3dca49b-f5f3-44e4-9d41-f12eb04700a7?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMmEwODVmMWIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YyYTA4NWYxYi9iYWNrdXBPcGVyYXRpb25zL2EzZGNhNDliLWY1ZjMtNDRlNC05ZDQxLWYxMmViMDQ3MDBhNz9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f582a7a7-0991-4901-95d4-2fe00da1568c" + "bcd2a12f-4272-4dc7-83e6-769270a3c520" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -5154,40 +5338,39 @@ "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-IIS/10.0" - ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "7f3cde8f-04db-4092-b9b3-1ce337ba785a" + "8718b608-c427-463b-82b0-05faf89d717f" ], "x-ms-client-request-id": [ - "f582a7a7-0991-4901-95d4-2fe00da1568c", - "f582a7a7-0991-4901-95d4-2fe00da1568c" - ], - "X-Powered-By": [ - "ASP.NET" + "bcd2a12f-4272-4dc7-83e6-769270a3c520", + "bcd2a12f-4272-4dc7-83e6-769270a3c520" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "141" + "137" ], "x-ms-correlation-request-id": [ - "7f3cde8f-04db-4092-b9b3-1ce337ba785a" + "8718b608-c427-463b-82b0-05faf89d717f" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T181328Z:7f3cde8f-04db-4092-b9b3-1ce337ba785a" + "JIOINDIAWEST:20220517T060636Z:8718b608-c427-463b-82b0-05faf89d717f" ], "Date": [ - "Thu, 24 Feb 2022 18:13:28 GMT" + "Tue, 17 May 2022 06:06:35 GMT" ], "Content-Length": [ - "971" + "304" ], "Content-Type": [ "application/json" @@ -5196,26 +5379,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfee9dac/backupJobs/933437e4-1125-4961-8fc4-572c4cc4b1e5\",\r\n \"name\": \"933437e4-1125-4961-8fc4-572c4cc4b1e5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgbfee9dac;pstestvmbfee90\",\r\n \"duration\": \"PT6M30.4000556S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvmbfee90\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvmbfee90\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-24T18:06:57.8348208Z\",\r\n \"activityId\": \"f582a7a7-0991-4901-95d4-2fe00da1568c\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"a3dca49b-f5f3-44e4-9d41-f12eb04700a7\",\r\n \"name\": \"a3dca49b-f5f3-44e4-9d41-f12eb04700a7\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-05-17T06:06:29.7845766Z\",\r\n \"endTime\": \"2022-05-17T06:06:29.7845766Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"16cb625d-51f4-4a5b-8932-85a9e11f8a09\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfee9dac/backupJobs/933437e4-1125-4961-8fc4-572c4cc4b1e5?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZlZTlkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmVlOWRhYy9iYWNrdXBKb2JzLzkzMzQzN2U0LTExMjUtNDk2MS04ZmM0LTU3MmM0Y2M0YjFlNT9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupJobs/16cb625d-51f4-4a5b-8932-85a9e11f8a09?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMmEwODVmMWIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YyYTA4NWYxYi9iYWNrdXBKb2JzLzE2Y2I2MjVkLTUxZjQtNGE1Yi04OTMyLTg1YTllMTFmOGEwOT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f582a7a7-0991-4901-95d4-2fe00da1568c" + "bcd2a12f-4272-4dc7-83e6-769270a3c520" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -5233,11 +5416,11 @@ "nosniff" ], "x-ms-request-id": [ - "c809f597-a7da-450a-96b4-3dc723c3dcb2" + "503f4c84-9de5-4f9b-bb6e-e574c3fbec05" ], "x-ms-client-request-id": [ - "f582a7a7-0991-4901-95d4-2fe00da1568c", - "f582a7a7-0991-4901-95d4-2fe00da1568c" + "bcd2a12f-4272-4dc7-83e6-769270a3c520", + "bcd2a12f-4272-4dc7-83e6-769270a3c520" ], "X-Powered-By": [ "ASP.NET" @@ -5246,19 +5429,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "140" + "148" ], "x-ms-correlation-request-id": [ - "c809f597-a7da-450a-96b4-3dc723c3dcb2" + "503f4c84-9de5-4f9b-bb6e-e574c3fbec05" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T181430Z:c809f597-a7da-450a-96b4-3dc723c3dcb2" + "JIOINDIAWEST:20220517T060637Z:503f4c84-9de5-4f9b-bb6e-e574c3fbec05" ], "Date": [ - "Thu, 24 Feb 2022 18:14:30 GMT" + "Tue, 17 May 2022 06:06:36 GMT" ], "Content-Length": [ - "971" + "968" ], "Content-Type": [ "application/json" @@ -5267,26 +5450,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfee9dac/backupJobs/933437e4-1125-4961-8fc4-572c4cc4b1e5\",\r\n \"name\": \"933437e4-1125-4961-8fc4-572c4cc4b1e5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgbfee9dac;pstestvmbfee90\",\r\n \"duration\": \"PT7M32.2307868S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvmbfee90\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvmbfee90\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-24T18:06:57.8348208Z\",\r\n \"activityId\": \"f582a7a7-0991-4901-95d4-2fe00da1568c\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupJobs/16cb625d-51f4-4a5b-8932-85a9e11f8a09\",\r\n \"name\": \"16cb625d-51f4-4a5b-8932-85a9e11f8a09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg2a085f1b;pstestvm2a0850\",\r\n \"duration\": \"PT6.6812411S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm2a0850\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm2a0850\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T06:06:29.7845766Z\",\r\n \"activityId\": \"bcd2a12f-4272-4dc7-83e6-769270a3c520\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfee9dac/backupJobs/933437e4-1125-4961-8fc4-572c4cc4b1e5?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZlZTlkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmVlOWRhYy9iYWNrdXBKb2JzLzkzMzQzN2U0LTExMjUtNDk2MS04ZmM0LTU3MmM0Y2M0YjFlNT9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupJobs/16cb625d-51f4-4a5b-8932-85a9e11f8a09?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMmEwODVmMWIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YyYTA4NWYxYi9iYWNrdXBKb2JzLzE2Y2I2MjVkLTUxZjQtNGE1Yi04OTMyLTg1YTllMTFmOGEwOT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f582a7a7-0991-4901-95d4-2fe00da1568c" + "bcd2a12f-4272-4dc7-83e6-769270a3c520" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -5304,11 +5487,11 @@ "nosniff" ], "x-ms-request-id": [ - "bbb35da4-5766-452e-ab64-96e429a1dfce" + "7941c0d2-4038-43a1-98b3-aa5b91581998" ], "x-ms-client-request-id": [ - "f582a7a7-0991-4901-95d4-2fe00da1568c", - "f582a7a7-0991-4901-95d4-2fe00da1568c" + "bcd2a12f-4272-4dc7-83e6-769270a3c520", + "bcd2a12f-4272-4dc7-83e6-769270a3c520" ], "X-Powered-By": [ "ASP.NET" @@ -5317,19 +5500,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "139" + "147" ], "x-ms-correlation-request-id": [ - "bbb35da4-5766-452e-ab64-96e429a1dfce" + "7941c0d2-4038-43a1-98b3-aa5b91581998" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T181532Z:bbb35da4-5766-452e-ab64-96e429a1dfce" + "JIOINDIAWEST:20220517T060637Z:7941c0d2-4038-43a1-98b3-aa5b91581998" ], "Date": [ - "Thu, 24 Feb 2022 18:15:32 GMT" + "Tue, 17 May 2022 06:06:36 GMT" ], "Content-Length": [ - "970" + "968" ], "Content-Type": [ "application/json" @@ -5338,26 +5521,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfee9dac/backupJobs/933437e4-1125-4961-8fc4-572c4cc4b1e5\",\r\n \"name\": \"933437e4-1125-4961-8fc4-572c4cc4b1e5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgbfee9dac;pstestvmbfee90\",\r\n \"duration\": \"PT8M34.4474013S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvmbfee90\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvmbfee90\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-24T18:06:57.8348208Z\",\r\n \"activityId\": \"f582a7a7-0991-4901-95d4-2fe00da1568c\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupJobs/16cb625d-51f4-4a5b-8932-85a9e11f8a09\",\r\n \"name\": \"16cb625d-51f4-4a5b-8932-85a9e11f8a09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg2a085f1b;pstestvm2a0850\",\r\n \"duration\": \"PT7.3550109S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm2a0850\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm2a0850\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T06:06:29.7845766Z\",\r\n \"activityId\": \"bcd2a12f-4272-4dc7-83e6-769270a3c520\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfee9dac/backupJobs/933437e4-1125-4961-8fc4-572c4cc4b1e5?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZlZTlkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmVlOWRhYy9iYWNrdXBKb2JzLzkzMzQzN2U0LTExMjUtNDk2MS04ZmM0LTU3MmM0Y2M0YjFlNT9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupJobs/16cb625d-51f4-4a5b-8932-85a9e11f8a09?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMmEwODVmMWIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YyYTA4NWYxYi9iYWNrdXBKb2JzLzE2Y2I2MjVkLTUxZjQtNGE1Yi04OTMyLTg1YTllMTFmOGEwOT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f582a7a7-0991-4901-95d4-2fe00da1568c" + "bcd2a12f-4272-4dc7-83e6-769270a3c520" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -5375,11 +5558,11 @@ "nosniff" ], "x-ms-request-id": [ - "e35065bc-be39-4820-ab87-b26f981d6c3c" + "c790e3a6-02b7-451f-a464-5b7fbf1b380a" ], "x-ms-client-request-id": [ - "f582a7a7-0991-4901-95d4-2fe00da1568c", - "f582a7a7-0991-4901-95d4-2fe00da1568c" + "bcd2a12f-4272-4dc7-83e6-769270a3c520", + "bcd2a12f-4272-4dc7-83e6-769270a3c520" ], "X-Powered-By": [ "ASP.NET" @@ -5388,19 +5571,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "138" + "146" ], "x-ms-correlation-request-id": [ - "e35065bc-be39-4820-ab87-b26f981d6c3c" + "c790e3a6-02b7-451f-a464-5b7fbf1b380a" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T181633Z:e35065bc-be39-4820-ab87-b26f981d6c3c" + "JIOINDIAWEST:20220517T060708Z:c790e3a6-02b7-451f-a464-5b7fbf1b380a" ], "Date": [ - "Thu, 24 Feb 2022 18:16:33 GMT" + "Tue, 17 May 2022 06:07:07 GMT" ], "Content-Length": [ - "970" + "969" ], "Content-Type": [ "application/json" @@ -5409,26 +5592,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfee9dac/backupJobs/933437e4-1125-4961-8fc4-572c4cc4b1e5\",\r\n \"name\": \"933437e4-1125-4961-8fc4-572c4cc4b1e5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgbfee9dac;pstestvmbfee90\",\r\n \"duration\": \"PT9M35.3568837S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvmbfee90\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvmbfee90\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-24T18:06:57.8348208Z\",\r\n \"activityId\": \"f582a7a7-0991-4901-95d4-2fe00da1568c\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupJobs/16cb625d-51f4-4a5b-8932-85a9e11f8a09\",\r\n \"name\": \"16cb625d-51f4-4a5b-8932-85a9e11f8a09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg2a085f1b;pstestvm2a0850\",\r\n \"duration\": \"PT38.0522653S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm2a0850\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm2a0850\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T06:06:29.7845766Z\",\r\n \"activityId\": \"bcd2a12f-4272-4dc7-83e6-769270a3c520\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfee9dac/backupJobs/933437e4-1125-4961-8fc4-572c4cc4b1e5?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZlZTlkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmVlOWRhYy9iYWNrdXBKb2JzLzkzMzQzN2U0LTExMjUtNDk2MS04ZmM0LTU3MmM0Y2M0YjFlNT9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupJobs/16cb625d-51f4-4a5b-8932-85a9e11f8a09?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMmEwODVmMWIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YyYTA4NWYxYi9iYWNrdXBKb2JzLzE2Y2I2MjVkLTUxZjQtNGE1Yi04OTMyLTg1YTllMTFmOGEwOT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f582a7a7-0991-4901-95d4-2fe00da1568c" + "bcd2a12f-4272-4dc7-83e6-769270a3c520" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -5446,11 +5629,11 @@ "nosniff" ], "x-ms-request-id": [ - "6dece894-ea8d-4f93-b1ee-b5213593e8bf" + "79c103ee-bba0-4a43-b254-37e94c0f1eb6" ], "x-ms-client-request-id": [ - "f582a7a7-0991-4901-95d4-2fe00da1568c", - "f582a7a7-0991-4901-95d4-2fe00da1568c" + "bcd2a12f-4272-4dc7-83e6-769270a3c520", + "bcd2a12f-4272-4dc7-83e6-769270a3c520" ], "X-Powered-By": [ "ASP.NET" @@ -5459,19 +5642,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "137" + "145" ], "x-ms-correlation-request-id": [ - "6dece894-ea8d-4f93-b1ee-b5213593e8bf" + "79c103ee-bba0-4a43-b254-37e94c0f1eb6" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T181735Z:6dece894-ea8d-4f93-b1ee-b5213593e8bf" + "JIOINDIAWEST:20220517T060739Z:79c103ee-bba0-4a43-b254-37e94c0f1eb6" ], "Date": [ - "Thu, 24 Feb 2022 18:17:34 GMT" + "Tue, 17 May 2022 06:07:38 GMT" ], "Content-Length": [ - "971" + "970" ], "Content-Type": [ "application/json" @@ -5480,26 +5663,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfee9dac/backupJobs/933437e4-1125-4961-8fc4-572c4cc4b1e5\",\r\n \"name\": \"933437e4-1125-4961-8fc4-572c4cc4b1e5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgbfee9dac;pstestvmbfee90\",\r\n \"duration\": \"PT10M37.1741127S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvmbfee90\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvmbfee90\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-24T18:06:57.8348208Z\",\r\n \"activityId\": \"f582a7a7-0991-4901-95d4-2fe00da1568c\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupJobs/16cb625d-51f4-4a5b-8932-85a9e11f8a09\",\r\n \"name\": \"16cb625d-51f4-4a5b-8932-85a9e11f8a09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg2a085f1b;pstestvm2a0850\",\r\n \"duration\": \"PT1M8.7388362S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm2a0850\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm2a0850\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T06:06:29.7845766Z\",\r\n \"activityId\": \"bcd2a12f-4272-4dc7-83e6-769270a3c520\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfee9dac/backupJobs/933437e4-1125-4961-8fc4-572c4cc4b1e5?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZlZTlkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmVlOWRhYy9iYWNrdXBKb2JzLzkzMzQzN2U0LTExMjUtNDk2MS04ZmM0LTU3MmM0Y2M0YjFlNT9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupJobs/16cb625d-51f4-4a5b-8932-85a9e11f8a09?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMmEwODVmMWIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YyYTA4NWYxYi9iYWNrdXBKb2JzLzE2Y2I2MjVkLTUxZjQtNGE1Yi04OTMyLTg1YTllMTFmOGEwOT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f582a7a7-0991-4901-95d4-2fe00da1568c" + "bcd2a12f-4272-4dc7-83e6-769270a3c520" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -5517,11 +5700,11 @@ "nosniff" ], "x-ms-request-id": [ - "f2a3591c-2fab-478e-88fb-794e81e57d74" + "b58effcb-5420-4f9a-beb6-0dec235df77d" ], "x-ms-client-request-id": [ - "f582a7a7-0991-4901-95d4-2fe00da1568c", - "f582a7a7-0991-4901-95d4-2fe00da1568c" + "bcd2a12f-4272-4dc7-83e6-769270a3c520", + "bcd2a12f-4272-4dc7-83e6-769270a3c520" ], "X-Powered-By": [ "ASP.NET" @@ -5530,16 +5713,16 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "136" + "144" ], "x-ms-correlation-request-id": [ - "f2a3591c-2fab-478e-88fb-794e81e57d74" + "b58effcb-5420-4f9a-beb6-0dec235df77d" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T181837Z:f2a3591c-2fab-478e-88fb-794e81e57d74" + "JIOINDIAWEST:20220517T060809Z:b58effcb-5420-4f9a-beb6-0dec235df77d" ], "Date": [ - "Thu, 24 Feb 2022 18:18:36 GMT" + "Tue, 17 May 2022 06:08:09 GMT" ], "Content-Length": [ "971" @@ -5551,26 +5734,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfee9dac/backupJobs/933437e4-1125-4961-8fc4-572c4cc4b1e5\",\r\n \"name\": \"933437e4-1125-4961-8fc4-572c4cc4b1e5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgbfee9dac;pstestvmbfee90\",\r\n \"duration\": \"PT11M38.9760921S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvmbfee90\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvmbfee90\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-24T18:06:57.8348208Z\",\r\n \"activityId\": \"f582a7a7-0991-4901-95d4-2fe00da1568c\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupJobs/16cb625d-51f4-4a5b-8932-85a9e11f8a09\",\r\n \"name\": \"16cb625d-51f4-4a5b-8932-85a9e11f8a09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg2a085f1b;pstestvm2a0850\",\r\n \"duration\": \"PT1M39.5661935S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm2a0850\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm2a0850\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T06:06:29.7845766Z\",\r\n \"activityId\": \"bcd2a12f-4272-4dc7-83e6-769270a3c520\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfee9dac/backupJobs/933437e4-1125-4961-8fc4-572c4cc4b1e5?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZlZTlkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmVlOWRhYy9iYWNrdXBKb2JzLzkzMzQzN2U0LTExMjUtNDk2MS04ZmM0LTU3MmM0Y2M0YjFlNT9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupJobs/16cb625d-51f4-4a5b-8932-85a9e11f8a09?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMmEwODVmMWIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YyYTA4NWYxYi9iYWNrdXBKb2JzLzE2Y2I2MjVkLTUxZjQtNGE1Yi04OTMyLTg1YTllMTFmOGEwOT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f582a7a7-0991-4901-95d4-2fe00da1568c" + "bcd2a12f-4272-4dc7-83e6-769270a3c520" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -5588,11 +5771,11 @@ "nosniff" ], "x-ms-request-id": [ - "ecd42dee-ccea-4673-96c5-141488acdac4" + "17545938-36b7-4b5c-91d4-eebf375f6b3d" ], "x-ms-client-request-id": [ - "f582a7a7-0991-4901-95d4-2fe00da1568c", - "f582a7a7-0991-4901-95d4-2fe00da1568c" + "bcd2a12f-4272-4dc7-83e6-769270a3c520", + "bcd2a12f-4272-4dc7-83e6-769270a3c520" ], "X-Powered-By": [ "ASP.NET" @@ -5601,16 +5784,16 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "135" + "143" ], "x-ms-correlation-request-id": [ - "ecd42dee-ccea-4673-96c5-141488acdac4" + "17545938-36b7-4b5c-91d4-eebf375f6b3d" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T181941Z:ecd42dee-ccea-4673-96c5-141488acdac4" + "JIOINDIAWEST:20220517T060840Z:17545938-36b7-4b5c-91d4-eebf375f6b3d" ], "Date": [ - "Thu, 24 Feb 2022 18:19:40 GMT" + "Tue, 17 May 2022 06:08:39 GMT" ], "Content-Length": [ "971" @@ -5622,26 +5805,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfee9dac/backupJobs/933437e4-1125-4961-8fc4-572c4cc4b1e5\",\r\n \"name\": \"933437e4-1125-4961-8fc4-572c4cc4b1e5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgbfee9dac;pstestvmbfee90\",\r\n \"duration\": \"PT12M42.8127058S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvmbfee90\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvmbfee90\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-24T18:06:57.8348208Z\",\r\n \"activityId\": \"f582a7a7-0991-4901-95d4-2fe00da1568c\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupJobs/16cb625d-51f4-4a5b-8932-85a9e11f8a09\",\r\n \"name\": \"16cb625d-51f4-4a5b-8932-85a9e11f8a09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg2a085f1b;pstestvm2a0850\",\r\n \"duration\": \"PT2M10.2608413S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm2a0850\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm2a0850\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T06:06:29.7845766Z\",\r\n \"activityId\": \"bcd2a12f-4272-4dc7-83e6-769270a3c520\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfee9dac/backupJobs/933437e4-1125-4961-8fc4-572c4cc4b1e5?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZlZTlkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmVlOWRhYy9iYWNrdXBKb2JzLzkzMzQzN2U0LTExMjUtNDk2MS04ZmM0LTU3MmM0Y2M0YjFlNT9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupJobs/16cb625d-51f4-4a5b-8932-85a9e11f8a09?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMmEwODVmMWIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YyYTA4NWYxYi9iYWNrdXBKb2JzLzE2Y2I2MjVkLTUxZjQtNGE1Yi04OTMyLTg1YTllMTFmOGEwOT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f582a7a7-0991-4901-95d4-2fe00da1568c" + "bcd2a12f-4272-4dc7-83e6-769270a3c520" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -5659,11 +5842,11 @@ "nosniff" ], "x-ms-request-id": [ - "3e873670-6c17-456b-a834-bb67d622da9c" + "c07cb50a-628c-41b6-9981-eb1f94be127c" ], "x-ms-client-request-id": [ - "f582a7a7-0991-4901-95d4-2fe00da1568c", - "f582a7a7-0991-4901-95d4-2fe00da1568c" + "bcd2a12f-4272-4dc7-83e6-769270a3c520", + "bcd2a12f-4272-4dc7-83e6-769270a3c520" ], "X-Powered-By": [ "ASP.NET" @@ -5672,16 +5855,16 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "134" + "142" ], "x-ms-correlation-request-id": [ - "3e873670-6c17-456b-a834-bb67d622da9c" + "c07cb50a-628c-41b6-9981-eb1f94be127c" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T182057Z:3e873670-6c17-456b-a834-bb67d622da9c" + "JIOINDIAWEST:20220517T060911Z:c07cb50a-628c-41b6-9981-eb1f94be127c" ], "Date": [ - "Thu, 24 Feb 2022 18:20:57 GMT" + "Tue, 17 May 2022 06:09:11 GMT" ], "Content-Length": [ "971" @@ -5693,26 +5876,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfee9dac/backupJobs/933437e4-1125-4961-8fc4-572c4cc4b1e5\",\r\n \"name\": \"933437e4-1125-4961-8fc4-572c4cc4b1e5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgbfee9dac;pstestvmbfee90\",\r\n \"duration\": \"PT13M54.3550812S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvmbfee90\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvmbfee90\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-24T18:06:57.8348208Z\",\r\n \"activityId\": \"f582a7a7-0991-4901-95d4-2fe00da1568c\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupJobs/16cb625d-51f4-4a5b-8932-85a9e11f8a09\",\r\n \"name\": \"16cb625d-51f4-4a5b-8932-85a9e11f8a09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg2a085f1b;pstestvm2a0850\",\r\n \"duration\": \"PT2M41.4903208S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm2a0850\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm2a0850\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T06:06:29.7845766Z\",\r\n \"activityId\": \"bcd2a12f-4272-4dc7-83e6-769270a3c520\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfee9dac/backupJobs/933437e4-1125-4961-8fc4-572c4cc4b1e5?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZlZTlkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmVlOWRhYy9iYWNrdXBKb2JzLzkzMzQzN2U0LTExMjUtNDk2MS04ZmM0LTU3MmM0Y2M0YjFlNT9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupJobs/16cb625d-51f4-4a5b-8932-85a9e11f8a09?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMmEwODVmMWIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YyYTA4NWYxYi9iYWNrdXBKb2JzLzE2Y2I2MjVkLTUxZjQtNGE1Yi04OTMyLTg1YTllMTFmOGEwOT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f582a7a7-0991-4901-95d4-2fe00da1568c" + "bcd2a12f-4272-4dc7-83e6-769270a3c520" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -5730,11 +5913,11 @@ "nosniff" ], "x-ms-request-id": [ - "7fb1794a-f9db-4b21-be27-5622c4021bcd" + "7f08ee48-2ade-4aab-82e2-fd151a0621c8" ], "x-ms-client-request-id": [ - "f582a7a7-0991-4901-95d4-2fe00da1568c", - "f582a7a7-0991-4901-95d4-2fe00da1568c" + "bcd2a12f-4272-4dc7-83e6-769270a3c520", + "bcd2a12f-4272-4dc7-83e6-769270a3c520" ], "X-Powered-By": [ "ASP.NET" @@ -5743,19 +5926,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "133" + "141" ], "x-ms-correlation-request-id": [ - "7fb1794a-f9db-4b21-be27-5622c4021bcd" + "7f08ee48-2ade-4aab-82e2-fd151a0621c8" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T182159Z:7fb1794a-f9db-4b21-be27-5622c4021bcd" + "JIOINDIAWEST:20220517T060942Z:7f08ee48-2ade-4aab-82e2-fd151a0621c8" ], "Date": [ - "Thu, 24 Feb 2022 18:21:59 GMT" + "Tue, 17 May 2022 06:09:42 GMT" ], "Content-Length": [ - "970" + "971" ], "Content-Type": [ "application/json" @@ -5764,26 +5947,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfee9dac/backupJobs/933437e4-1125-4961-8fc4-572c4cc4b1e5\",\r\n \"name\": \"933437e4-1125-4961-8fc4-572c4cc4b1e5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgbfee9dac;pstestvmbfee90\",\r\n \"duration\": \"PT15M1.7423755S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvmbfee90\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvmbfee90\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-24T18:06:57.8348208Z\",\r\n \"activityId\": \"f582a7a7-0991-4901-95d4-2fe00da1568c\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupJobs/16cb625d-51f4-4a5b-8932-85a9e11f8a09\",\r\n \"name\": \"16cb625d-51f4-4a5b-8932-85a9e11f8a09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg2a085f1b;pstestvm2a0850\",\r\n \"duration\": \"PT3M12.4874072S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm2a0850\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm2a0850\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T06:06:29.7845766Z\",\r\n \"activityId\": \"bcd2a12f-4272-4dc7-83e6-769270a3c520\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfee9dac/backupJobs/933437e4-1125-4961-8fc4-572c4cc4b1e5?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZlZTlkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmVlOWRhYy9iYWNrdXBKb2JzLzkzMzQzN2U0LTExMjUtNDk2MS04ZmM0LTU3MmM0Y2M0YjFlNT9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupJobs/16cb625d-51f4-4a5b-8932-85a9e11f8a09?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMmEwODVmMWIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YyYTA4NWYxYi9iYWNrdXBKb2JzLzE2Y2I2MjVkLTUxZjQtNGE1Yi04OTMyLTg1YTllMTFmOGEwOT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f582a7a7-0991-4901-95d4-2fe00da1568c" + "bcd2a12f-4272-4dc7-83e6-769270a3c520" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -5801,11 +5984,11 @@ "nosniff" ], "x-ms-request-id": [ - "99b36ade-27fb-43fb-9ea9-1a1e9239c496" + "c3a99bc3-7cbb-49ed-bc3d-546fcec5d7c9" ], "x-ms-client-request-id": [ - "f582a7a7-0991-4901-95d4-2fe00da1568c", - "f582a7a7-0991-4901-95d4-2fe00da1568c" + "bcd2a12f-4272-4dc7-83e6-769270a3c520", + "bcd2a12f-4272-4dc7-83e6-769270a3c520" ], "X-Powered-By": [ "ASP.NET" @@ -5814,16 +5997,16 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "132" + "140" ], "x-ms-correlation-request-id": [ - "99b36ade-27fb-43fb-9ea9-1a1e9239c496" + "c3a99bc3-7cbb-49ed-bc3d-546fcec5d7c9" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T182309Z:99b36ade-27fb-43fb-9ea9-1a1e9239c496" + "JIOINDIAWEST:20220517T061013Z:c3a99bc3-7cbb-49ed-bc3d-546fcec5d7c9" ], "Date": [ - "Thu, 24 Feb 2022 18:23:09 GMT" + "Tue, 17 May 2022 06:10:12 GMT" ], "Content-Length": [ "971" @@ -5835,26 +6018,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfee9dac/backupJobs/933437e4-1125-4961-8fc4-572c4cc4b1e5\",\r\n \"name\": \"933437e4-1125-4961-8fc4-572c4cc4b1e5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgbfee9dac;pstestvmbfee90\",\r\n \"duration\": \"PT16M10.8422596S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvmbfee90\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvmbfee90\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-24T18:06:57.8348208Z\",\r\n \"activityId\": \"f582a7a7-0991-4901-95d4-2fe00da1568c\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupJobs/16cb625d-51f4-4a5b-8932-85a9e11f8a09\",\r\n \"name\": \"16cb625d-51f4-4a5b-8932-85a9e11f8a09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg2a085f1b;pstestvm2a0850\",\r\n \"duration\": \"PT3M43.0998233S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm2a0850\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm2a0850\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T06:06:29.7845766Z\",\r\n \"activityId\": \"bcd2a12f-4272-4dc7-83e6-769270a3c520\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfee9dac/backupJobs/933437e4-1125-4961-8fc4-572c4cc4b1e5?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZlZTlkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmVlOWRhYy9iYWNrdXBKb2JzLzkzMzQzN2U0LTExMjUtNDk2MS04ZmM0LTU3MmM0Y2M0YjFlNT9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupJobs/16cb625d-51f4-4a5b-8932-85a9e11f8a09?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMmEwODVmMWIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YyYTA4NWYxYi9iYWNrdXBKb2JzLzE2Y2I2MjVkLTUxZjQtNGE1Yi04OTMyLTg1YTllMTFmOGEwOT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f582a7a7-0991-4901-95d4-2fe00da1568c" + "bcd2a12f-4272-4dc7-83e6-769270a3c520" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -5872,11 +6055,11 @@ "nosniff" ], "x-ms-request-id": [ - "5a9a6351-2a6f-4ebc-a63e-528e0a7fcd68" + "34f2c192-79c6-475e-9dc2-020a4fc8824f" ], "x-ms-client-request-id": [ - "f582a7a7-0991-4901-95d4-2fe00da1568c", - "f582a7a7-0991-4901-95d4-2fe00da1568c" + "bcd2a12f-4272-4dc7-83e6-769270a3c520", + "bcd2a12f-4272-4dc7-83e6-769270a3c520" ], "X-Powered-By": [ "ASP.NET" @@ -5885,16 +6068,16 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "131" + "139" ], "x-ms-correlation-request-id": [ - "5a9a6351-2a6f-4ebc-a63e-528e0a7fcd68" + "34f2c192-79c6-475e-9dc2-020a4fc8824f" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T182419Z:5a9a6351-2a6f-4ebc-a63e-528e0a7fcd68" + "JIOINDIAWEST:20220517T061044Z:34f2c192-79c6-475e-9dc2-020a4fc8824f" ], "Date": [ - "Thu, 24 Feb 2022 18:24:18 GMT" + "Tue, 17 May 2022 06:10:43 GMT" ], "Content-Length": [ "971" @@ -5906,26 +6089,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfee9dac/backupJobs/933437e4-1125-4961-8fc4-572c4cc4b1e5\",\r\n \"name\": \"933437e4-1125-4961-8fc4-572c4cc4b1e5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgbfee9dac;pstestvmbfee90\",\r\n \"duration\": \"PT17M21.0819686S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvmbfee90\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvmbfee90\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-24T18:06:57.8348208Z\",\r\n \"activityId\": \"f582a7a7-0991-4901-95d4-2fe00da1568c\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupJobs/16cb625d-51f4-4a5b-8932-85a9e11f8a09\",\r\n \"name\": \"16cb625d-51f4-4a5b-8932-85a9e11f8a09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg2a085f1b;pstestvm2a0850\",\r\n \"duration\": \"PT4M13.8687296S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm2a0850\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm2a0850\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T06:06:29.7845766Z\",\r\n \"activityId\": \"bcd2a12f-4272-4dc7-83e6-769270a3c520\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfee9dac/backupJobs/933437e4-1125-4961-8fc4-572c4cc4b1e5?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZlZTlkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmVlOWRhYy9iYWNrdXBKb2JzLzkzMzQzN2U0LTExMjUtNDk2MS04ZmM0LTU3MmM0Y2M0YjFlNT9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupJobs/16cb625d-51f4-4a5b-8932-85a9e11f8a09?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMmEwODVmMWIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YyYTA4NWYxYi9iYWNrdXBKb2JzLzE2Y2I2MjVkLTUxZjQtNGE1Yi04OTMyLTg1YTllMTFmOGEwOT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f582a7a7-0991-4901-95d4-2fe00da1568c" + "bcd2a12f-4272-4dc7-83e6-769270a3c520" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -5943,11 +6126,11 @@ "nosniff" ], "x-ms-request-id": [ - "bd13c34b-35e0-4e34-9a4d-f2bdd290dd94" + "24dac6b9-c065-4bc3-8f50-ea15a8adc770" ], "x-ms-client-request-id": [ - "f582a7a7-0991-4901-95d4-2fe00da1568c", - "f582a7a7-0991-4901-95d4-2fe00da1568c" + "bcd2a12f-4272-4dc7-83e6-769270a3c520", + "bcd2a12f-4272-4dc7-83e6-769270a3c520" ], "X-Powered-By": [ "ASP.NET" @@ -5956,16 +6139,16 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "130" + "138" ], "x-ms-correlation-request-id": [ - "bd13c34b-35e0-4e34-9a4d-f2bdd290dd94" + "24dac6b9-c065-4bc3-8f50-ea15a8adc770" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T182521Z:bd13c34b-35e0-4e34-9a4d-f2bdd290dd94" + "JIOINDIAWEST:20220517T061114Z:24dac6b9-c065-4bc3-8f50-ea15a8adc770" ], "Date": [ - "Thu, 24 Feb 2022 18:25:21 GMT" + "Tue, 17 May 2022 06:11:14 GMT" ], "Content-Length": [ "971" @@ -5977,26 +6160,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfee9dac/backupJobs/933437e4-1125-4961-8fc4-572c4cc4b1e5\",\r\n \"name\": \"933437e4-1125-4961-8fc4-572c4cc4b1e5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgbfee9dac;pstestvmbfee90\",\r\n \"duration\": \"PT18M23.1722077S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvmbfee90\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvmbfee90\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-24T18:06:57.8348208Z\",\r\n \"activityId\": \"f582a7a7-0991-4901-95d4-2fe00da1568c\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupJobs/16cb625d-51f4-4a5b-8932-85a9e11f8a09\",\r\n \"name\": \"16cb625d-51f4-4a5b-8932-85a9e11f8a09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg2a085f1b;pstestvm2a0850\",\r\n \"duration\": \"PT4M44.5581982S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm2a0850\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm2a0850\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T06:06:29.7845766Z\",\r\n \"activityId\": \"bcd2a12f-4272-4dc7-83e6-769270a3c520\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfee9dac/backupJobs/933437e4-1125-4961-8fc4-572c4cc4b1e5?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZlZTlkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmVlOWRhYy9iYWNrdXBKb2JzLzkzMzQzN2U0LTExMjUtNDk2MS04ZmM0LTU3MmM0Y2M0YjFlNT9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupJobs/16cb625d-51f4-4a5b-8932-85a9e11f8a09?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMmEwODVmMWIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YyYTA4NWYxYi9iYWNrdXBKb2JzLzE2Y2I2MjVkLTUxZjQtNGE1Yi04OTMyLTg1YTllMTFmOGEwOT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f582a7a7-0991-4901-95d4-2fe00da1568c" + "bcd2a12f-4272-4dc7-83e6-769270a3c520" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -6014,11 +6197,11 @@ "nosniff" ], "x-ms-request-id": [ - "67bbd55a-eb81-4495-8591-75fc7538bf7b" + "35355cc5-1a30-4aa9-9fa8-8d6f8c33d86d" ], "x-ms-client-request-id": [ - "f582a7a7-0991-4901-95d4-2fe00da1568c", - "f582a7a7-0991-4901-95d4-2fe00da1568c" + "bcd2a12f-4272-4dc7-83e6-769270a3c520", + "bcd2a12f-4272-4dc7-83e6-769270a3c520" ], "X-Powered-By": [ "ASP.NET" @@ -6027,19 +6210,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "129" + "137" ], "x-ms-correlation-request-id": [ - "67bbd55a-eb81-4495-8591-75fc7538bf7b" + "35355cc5-1a30-4aa9-9fa8-8d6f8c33d86d" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T182640Z:67bbd55a-eb81-4495-8591-75fc7538bf7b" + "JIOINDIAWEST:20220517T061145Z:35355cc5-1a30-4aa9-9fa8-8d6f8c33d86d" ], "Date": [ - "Thu, 24 Feb 2022 18:26:40 GMT" + "Tue, 17 May 2022 06:11:44 GMT" ], "Content-Length": [ - "971" + "970" ], "Content-Type": [ "application/json" @@ -6048,26 +6231,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfee9dac/backupJobs/933437e4-1125-4961-8fc4-572c4cc4b1e5\",\r\n \"name\": \"933437e4-1125-4961-8fc4-572c4cc4b1e5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgbfee9dac;pstestvmbfee90\",\r\n \"duration\": \"PT19M41.3865582S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvmbfee90\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvmbfee90\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-24T18:06:57.8348208Z\",\r\n \"activityId\": \"f582a7a7-0991-4901-95d4-2fe00da1568c\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupJobs/16cb625d-51f4-4a5b-8932-85a9e11f8a09\",\r\n \"name\": \"16cb625d-51f4-4a5b-8932-85a9e11f8a09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg2a085f1b;pstestvm2a0850\",\r\n \"duration\": \"PT5M15.124914S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm2a0850\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm2a0850\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T06:06:29.7845766Z\",\r\n \"activityId\": \"bcd2a12f-4272-4dc7-83e6-769270a3c520\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfee9dac/backupJobs/933437e4-1125-4961-8fc4-572c4cc4b1e5?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZlZTlkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmVlOWRhYy9iYWNrdXBKb2JzLzkzMzQzN2U0LTExMjUtNDk2MS04ZmM0LTU3MmM0Y2M0YjFlNT9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupJobs/16cb625d-51f4-4a5b-8932-85a9e11f8a09?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMmEwODVmMWIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YyYTA4NWYxYi9iYWNrdXBKb2JzLzE2Y2I2MjVkLTUxZjQtNGE1Yi04OTMyLTg1YTllMTFmOGEwOT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f582a7a7-0991-4901-95d4-2fe00da1568c" + "bcd2a12f-4272-4dc7-83e6-769270a3c520" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -6085,11 +6268,11 @@ "nosniff" ], "x-ms-request-id": [ - "3b03c8d1-af88-4720-8cf5-260f8ffd6619" + "51bd0d0d-28f5-4fde-8bd4-44b35d4e8a10" ], "x-ms-client-request-id": [ - "f582a7a7-0991-4901-95d4-2fe00da1568c", - "f582a7a7-0991-4901-95d4-2fe00da1568c" + "bcd2a12f-4272-4dc7-83e6-769270a3c520", + "bcd2a12f-4272-4dc7-83e6-769270a3c520" ], "X-Powered-By": [ "ASP.NET" @@ -6098,16 +6281,16 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "128" + "136" ], "x-ms-correlation-request-id": [ - "3b03c8d1-af88-4720-8cf5-260f8ffd6619" + "51bd0d0d-28f5-4fde-8bd4-44b35d4e8a10" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T182740Z:3b03c8d1-af88-4720-8cf5-260f8ffd6619" + "JIOINDIAWEST:20220517T061216Z:51bd0d0d-28f5-4fde-8bd4-44b35d4e8a10" ], "Date": [ - "Thu, 24 Feb 2022 18:27:40 GMT" + "Tue, 17 May 2022 06:12:15 GMT" ], "Content-Length": [ "971" @@ -6119,26 +6302,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfee9dac/backupJobs/933437e4-1125-4961-8fc4-572c4cc4b1e5\",\r\n \"name\": \"933437e4-1125-4961-8fc4-572c4cc4b1e5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgbfee9dac;pstestvmbfee90\",\r\n \"duration\": \"PT20M42.5998062S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvmbfee90\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvmbfee90\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-24T18:06:57.8348208Z\",\r\n \"activityId\": \"f582a7a7-0991-4901-95d4-2fe00da1568c\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupJobs/16cb625d-51f4-4a5b-8932-85a9e11f8a09\",\r\n \"name\": \"16cb625d-51f4-4a5b-8932-85a9e11f8a09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg2a085f1b;pstestvm2a0850\",\r\n \"duration\": \"PT5M46.5134677S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm2a0850\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm2a0850\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T06:06:29.7845766Z\",\r\n \"activityId\": \"bcd2a12f-4272-4dc7-83e6-769270a3c520\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfee9dac/backupJobs/933437e4-1125-4961-8fc4-572c4cc4b1e5?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZlZTlkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmVlOWRhYy9iYWNrdXBKb2JzLzkzMzQzN2U0LTExMjUtNDk2MS04ZmM0LTU3MmM0Y2M0YjFlNT9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupJobs/16cb625d-51f4-4a5b-8932-85a9e11f8a09?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMmEwODVmMWIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YyYTA4NWYxYi9iYWNrdXBKb2JzLzE2Y2I2MjVkLTUxZjQtNGE1Yi04OTMyLTg1YTllMTFmOGEwOT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f582a7a7-0991-4901-95d4-2fe00da1568c" + "bcd2a12f-4272-4dc7-83e6-769270a3c520" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -6156,11 +6339,11 @@ "nosniff" ], "x-ms-request-id": [ - "050f8c0d-0400-4621-8015-a0932a73a923" + "5e63f127-aeea-4dce-a980-22e718e23748" ], "x-ms-client-request-id": [ - "f582a7a7-0991-4901-95d4-2fe00da1568c", - "f582a7a7-0991-4901-95d4-2fe00da1568c" + "bcd2a12f-4272-4dc7-83e6-769270a3c520", + "bcd2a12f-4272-4dc7-83e6-769270a3c520" ], "X-Powered-By": [ "ASP.NET" @@ -6169,16 +6352,16 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "127" + "135" ], "x-ms-correlation-request-id": [ - "050f8c0d-0400-4621-8015-a0932a73a923" + "5e63f127-aeea-4dce-a980-22e718e23748" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T182842Z:050f8c0d-0400-4621-8015-a0932a73a923" + "JIOINDIAWEST:20220517T061247Z:5e63f127-aeea-4dce-a980-22e718e23748" ], "Date": [ - "Thu, 24 Feb 2022 18:28:42 GMT" + "Tue, 17 May 2022 06:12:47 GMT" ], "Content-Length": [ "971" @@ -6190,26 +6373,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfee9dac/backupJobs/933437e4-1125-4961-8fc4-572c4cc4b1e5\",\r\n \"name\": \"933437e4-1125-4961-8fc4-572c4cc4b1e5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgbfee9dac;pstestvmbfee90\",\r\n \"duration\": \"PT21M44.5884002S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvmbfee90\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvmbfee90\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-24T18:06:57.8348208Z\",\r\n \"activityId\": \"f582a7a7-0991-4901-95d4-2fe00da1568c\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupJobs/16cb625d-51f4-4a5b-8932-85a9e11f8a09\",\r\n \"name\": \"16cb625d-51f4-4a5b-8932-85a9e11f8a09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg2a085f1b;pstestvm2a0850\",\r\n \"duration\": \"PT6M17.3663047S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm2a0850\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm2a0850\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T06:06:29.7845766Z\",\r\n \"activityId\": \"bcd2a12f-4272-4dc7-83e6-769270a3c520\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfee9dac/backupJobs/933437e4-1125-4961-8fc4-572c4cc4b1e5?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZlZTlkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmVlOWRhYy9iYWNrdXBKb2JzLzkzMzQzN2U0LTExMjUtNDk2MS04ZmM0LTU3MmM0Y2M0YjFlNT9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupJobs/16cb625d-51f4-4a5b-8932-85a9e11f8a09?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMmEwODVmMWIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YyYTA4NWYxYi9iYWNrdXBKb2JzLzE2Y2I2MjVkLTUxZjQtNGE1Yi04OTMyLTg1YTllMTFmOGEwOT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f582a7a7-0991-4901-95d4-2fe00da1568c" + "bcd2a12f-4272-4dc7-83e6-769270a3c520" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -6227,11 +6410,11 @@ "nosniff" ], "x-ms-request-id": [ - "9bd442c9-f343-46bd-9b86-91194a4cecde" + "f2935108-5410-4ef1-a60d-c768cfd438d6" ], "x-ms-client-request-id": [ - "f582a7a7-0991-4901-95d4-2fe00da1568c", - "f582a7a7-0991-4901-95d4-2fe00da1568c" + "bcd2a12f-4272-4dc7-83e6-769270a3c520", + "bcd2a12f-4272-4dc7-83e6-769270a3c520" ], "X-Powered-By": [ "ASP.NET" @@ -6240,16 +6423,16 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "126" + "134" ], "x-ms-correlation-request-id": [ - "9bd442c9-f343-46bd-9b86-91194a4cecde" + "f2935108-5410-4ef1-a60d-c768cfd438d6" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T182943Z:9bd442c9-f343-46bd-9b86-91194a4cecde" + "JIOINDIAWEST:20220517T061318Z:f2935108-5410-4ef1-a60d-c768cfd438d6" ], "Date": [ - "Thu, 24 Feb 2022 18:29:43 GMT" + "Tue, 17 May 2022 06:13:18 GMT" ], "Content-Length": [ "971" @@ -6261,26 +6444,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfee9dac/backupJobs/933437e4-1125-4961-8fc4-572c4cc4b1e5\",\r\n \"name\": \"933437e4-1125-4961-8fc4-572c4cc4b1e5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgbfee9dac;pstestvmbfee90\",\r\n \"duration\": \"PT22M45.4712585S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvmbfee90\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvmbfee90\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-24T18:06:57.8348208Z\",\r\n \"activityId\": \"f582a7a7-0991-4901-95d4-2fe00da1568c\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupJobs/16cb625d-51f4-4a5b-8932-85a9e11f8a09\",\r\n \"name\": \"16cb625d-51f4-4a5b-8932-85a9e11f8a09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg2a085f1b;pstestvm2a0850\",\r\n \"duration\": \"PT6M48.1222729S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm2a0850\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm2a0850\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T06:06:29.7845766Z\",\r\n \"activityId\": \"bcd2a12f-4272-4dc7-83e6-769270a3c520\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfee9dac/backupJobs/933437e4-1125-4961-8fc4-572c4cc4b1e5?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZlZTlkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmVlOWRhYy9iYWNrdXBKb2JzLzkzMzQzN2U0LTExMjUtNDk2MS04ZmM0LTU3MmM0Y2M0YjFlNT9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupJobs/16cb625d-51f4-4a5b-8932-85a9e11f8a09?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMmEwODVmMWIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YyYTA4NWYxYi9iYWNrdXBKb2JzLzE2Y2I2MjVkLTUxZjQtNGE1Yi04OTMyLTg1YTllMTFmOGEwOT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f582a7a7-0991-4901-95d4-2fe00da1568c" + "bcd2a12f-4272-4dc7-83e6-769270a3c520" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -6298,11 +6481,11 @@ "nosniff" ], "x-ms-request-id": [ - "d1b81026-63ea-4610-995b-4f61e134252b" + "03f9bd37-ce9a-4927-9e6c-a1d7ce8b48bf" ], "x-ms-client-request-id": [ - "f582a7a7-0991-4901-95d4-2fe00da1568c", - "f582a7a7-0991-4901-95d4-2fe00da1568c" + "bcd2a12f-4272-4dc7-83e6-769270a3c520", + "bcd2a12f-4272-4dc7-83e6-769270a3c520" ], "X-Powered-By": [ "ASP.NET" @@ -6311,16 +6494,16 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "125" + "133" ], "x-ms-correlation-request-id": [ - "d1b81026-63ea-4610-995b-4f61e134252b" + "03f9bd37-ce9a-4927-9e6c-a1d7ce8b48bf" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T183058Z:d1b81026-63ea-4610-995b-4f61e134252b" + "JIOINDIAWEST:20220517T061349Z:03f9bd37-ce9a-4927-9e6c-a1d7ce8b48bf" ], "Date": [ - "Thu, 24 Feb 2022 18:30:57 GMT" + "Tue, 17 May 2022 06:13:48 GMT" ], "Content-Length": [ "971" @@ -6332,26 +6515,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfee9dac/backupJobs/933437e4-1125-4961-8fc4-572c4cc4b1e5\",\r\n \"name\": \"933437e4-1125-4961-8fc4-572c4cc4b1e5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgbfee9dac;pstestvmbfee90\",\r\n \"duration\": \"PT23M59.2107886S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvmbfee90\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvmbfee90\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-24T18:06:57.8348208Z\",\r\n \"activityId\": \"f582a7a7-0991-4901-95d4-2fe00da1568c\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupJobs/16cb625d-51f4-4a5b-8932-85a9e11f8a09\",\r\n \"name\": \"16cb625d-51f4-4a5b-8932-85a9e11f8a09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg2a085f1b;pstestvm2a0850\",\r\n \"duration\": \"PT7M18.8859643S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm2a0850\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm2a0850\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T06:06:29.7845766Z\",\r\n \"activityId\": \"bcd2a12f-4272-4dc7-83e6-769270a3c520\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfee9dac/backupJobs/933437e4-1125-4961-8fc4-572c4cc4b1e5?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZlZTlkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmVlOWRhYy9iYWNrdXBKb2JzLzkzMzQzN2U0LTExMjUtNDk2MS04ZmM0LTU3MmM0Y2M0YjFlNT9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupJobs/16cb625d-51f4-4a5b-8932-85a9e11f8a09?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMmEwODVmMWIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YyYTA4NWYxYi9iYWNrdXBKb2JzLzE2Y2I2MjVkLTUxZjQtNGE1Yi04OTMyLTg1YTllMTFmOGEwOT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f582a7a7-0991-4901-95d4-2fe00da1568c" + "bcd2a12f-4272-4dc7-83e6-769270a3c520" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -6369,11 +6552,11 @@ "nosniff" ], "x-ms-request-id": [ - "a9428acd-7175-4c19-aa6a-ae8e2a0a0cf0" + "9a4c2240-e975-4194-8262-974eeae1b41d" ], "x-ms-client-request-id": [ - "f582a7a7-0991-4901-95d4-2fe00da1568c", - "f582a7a7-0991-4901-95d4-2fe00da1568c" + "bcd2a12f-4272-4dc7-83e6-769270a3c520", + "bcd2a12f-4272-4dc7-83e6-769270a3c520" ], "X-Powered-By": [ "ASP.NET" @@ -6382,19 +6565,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "124" + "132" ], "x-ms-correlation-request-id": [ - "a9428acd-7175-4c19-aa6a-ae8e2a0a0cf0" + "9a4c2240-e975-4194-8262-974eeae1b41d" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T183224Z:a9428acd-7175-4c19-aa6a-ae8e2a0a0cf0" + "JIOINDIAWEST:20220517T061419Z:9a4c2240-e975-4194-8262-974eeae1b41d" ], "Date": [ - "Thu, 24 Feb 2022 18:32:23 GMT" + "Tue, 17 May 2022 06:14:19 GMT" ], "Content-Length": [ - "971" + "970" ], "Content-Type": [ "application/json" @@ -6403,26 +6586,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfee9dac/backupJobs/933437e4-1125-4961-8fc4-572c4cc4b1e5\",\r\n \"name\": \"933437e4-1125-4961-8fc4-572c4cc4b1e5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgbfee9dac;pstestvmbfee90\",\r\n \"duration\": \"PT25M24.8809584S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvmbfee90\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvmbfee90\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-24T18:06:57.8348208Z\",\r\n \"activityId\": \"f582a7a7-0991-4901-95d4-2fe00da1568c\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupJobs/16cb625d-51f4-4a5b-8932-85a9e11f8a09\",\r\n \"name\": \"16cb625d-51f4-4a5b-8932-85a9e11f8a09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg2a085f1b;pstestvm2a0850\",\r\n \"duration\": \"PT7M49.6186971S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm2a0850\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm2a0850\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T06:06:29.7845766Z\",\r\n \"activityId\": \"bcd2a12f-4272-4dc7-83e6-769270a3c520\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfee9dac/backupJobs/933437e4-1125-4961-8fc4-572c4cc4b1e5?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZlZTlkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmVlOWRhYy9iYWNrdXBKb2JzLzkzMzQzN2U0LTExMjUtNDk2MS04ZmM0LTU3MmM0Y2M0YjFlNT9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupJobs/16cb625d-51f4-4a5b-8932-85a9e11f8a09?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMmEwODVmMWIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YyYTA4NWYxYi9iYWNrdXBKb2JzLzE2Y2I2MjVkLTUxZjQtNGE1Yi04OTMyLTg1YTllMTFmOGEwOT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f582a7a7-0991-4901-95d4-2fe00da1568c" + "bcd2a12f-4272-4dc7-83e6-769270a3c520" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -6440,11 +6623,11 @@ "nosniff" ], "x-ms-request-id": [ - "a66d29eb-2dc1-427e-8b8f-9f1850bfaac6" + "694151b6-d097-43cd-8a53-7689e50e96b0" ], "x-ms-client-request-id": [ - "f582a7a7-0991-4901-95d4-2fe00da1568c", - "f582a7a7-0991-4901-95d4-2fe00da1568c" + "bcd2a12f-4272-4dc7-83e6-769270a3c520", + "bcd2a12f-4272-4dc7-83e6-769270a3c520" ], "X-Powered-By": [ "ASP.NET" @@ -6453,19 +6636,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "123" + "131" ], "x-ms-correlation-request-id": [ - "a66d29eb-2dc1-427e-8b8f-9f1850bfaac6" + "694151b6-d097-43cd-8a53-7689e50e96b0" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T183326Z:a66d29eb-2dc1-427e-8b8f-9f1850bfaac6" + "JIOINDIAWEST:20220517T061450Z:694151b6-d097-43cd-8a53-7689e50e96b0" ], "Date": [ - "Thu, 24 Feb 2022 18:33:26 GMT" + "Tue, 17 May 2022 06:14:50 GMT" ], "Content-Length": [ - "971" + "970" ], "Content-Type": [ "application/json" @@ -6474,26 +6657,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfee9dac/backupJobs/933437e4-1125-4961-8fc4-572c4cc4b1e5\",\r\n \"name\": \"933437e4-1125-4961-8fc4-572c4cc4b1e5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgbfee9dac;pstestvmbfee90\",\r\n \"duration\": \"PT26M28.2261539S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvmbfee90\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvmbfee90\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-24T18:06:57.8348208Z\",\r\n \"activityId\": \"f582a7a7-0991-4901-95d4-2fe00da1568c\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupJobs/16cb625d-51f4-4a5b-8932-85a9e11f8a09\",\r\n \"name\": \"16cb625d-51f4-4a5b-8932-85a9e11f8a09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg2a085f1b;pstestvm2a0850\",\r\n \"duration\": \"PT8M20.6063226S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm2a0850\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm2a0850\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T06:06:29.7845766Z\",\r\n \"activityId\": \"bcd2a12f-4272-4dc7-83e6-769270a3c520\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfee9dac/backupJobs/933437e4-1125-4961-8fc4-572c4cc4b1e5?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZlZTlkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmVlOWRhYy9iYWNrdXBKb2JzLzkzMzQzN2U0LTExMjUtNDk2MS04ZmM0LTU3MmM0Y2M0YjFlNT9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupJobs/16cb625d-51f4-4a5b-8932-85a9e11f8a09?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMmEwODVmMWIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YyYTA4NWYxYi9iYWNrdXBKb2JzLzE2Y2I2MjVkLTUxZjQtNGE1Yi04OTMyLTg1YTllMTFmOGEwOT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f582a7a7-0991-4901-95d4-2fe00da1568c" + "bcd2a12f-4272-4dc7-83e6-769270a3c520" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -6511,11 +6694,11 @@ "nosniff" ], "x-ms-request-id": [ - "c061bf95-8659-4218-84a7-eccecebc90fe" + "fa8c322e-3ee0-4db1-bb38-701350ef0e48" ], "x-ms-client-request-id": [ - "f582a7a7-0991-4901-95d4-2fe00da1568c", - "f582a7a7-0991-4901-95d4-2fe00da1568c" + "bcd2a12f-4272-4dc7-83e6-769270a3c520", + "bcd2a12f-4272-4dc7-83e6-769270a3c520" ], "X-Powered-By": [ "ASP.NET" @@ -6524,19 +6707,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "122" + "130" ], "x-ms-correlation-request-id": [ - "c061bf95-8659-4218-84a7-eccecebc90fe" + "fa8c322e-3ee0-4db1-bb38-701350ef0e48" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T183428Z:c061bf95-8659-4218-84a7-eccecebc90fe" + "JIOINDIAWEST:20220517T061521Z:fa8c322e-3ee0-4db1-bb38-701350ef0e48" ], "Date": [ - "Thu, 24 Feb 2022 18:34:27 GMT" + "Tue, 17 May 2022 06:15:21 GMT" ], "Content-Length": [ - "971" + "970" ], "Content-Type": [ "application/json" @@ -6545,26 +6728,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfee9dac/backupJobs/933437e4-1125-4961-8fc4-572c4cc4b1e5\",\r\n \"name\": \"933437e4-1125-4961-8fc4-572c4cc4b1e5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgbfee9dac;pstestvmbfee90\",\r\n \"duration\": \"PT27M30.1198964S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvmbfee90\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvmbfee90\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-24T18:06:57.8348208Z\",\r\n \"activityId\": \"f582a7a7-0991-4901-95d4-2fe00da1568c\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupJobs/16cb625d-51f4-4a5b-8932-85a9e11f8a09\",\r\n \"name\": \"16cb625d-51f4-4a5b-8932-85a9e11f8a09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg2a085f1b;pstestvm2a0850\",\r\n \"duration\": \"PT8M51.2817204S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm2a0850\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm2a0850\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T06:06:29.7845766Z\",\r\n \"activityId\": \"bcd2a12f-4272-4dc7-83e6-769270a3c520\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfee9dac/backupJobs/933437e4-1125-4961-8fc4-572c4cc4b1e5?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZlZTlkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmVlOWRhYy9iYWNrdXBKb2JzLzkzMzQzN2U0LTExMjUtNDk2MS04ZmM0LTU3MmM0Y2M0YjFlNT9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupJobs/16cb625d-51f4-4a5b-8932-85a9e11f8a09?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMmEwODVmMWIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YyYTA4NWYxYi9iYWNrdXBKb2JzLzE2Y2I2MjVkLTUxZjQtNGE1Yi04OTMyLTg1YTllMTFmOGEwOT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f582a7a7-0991-4901-95d4-2fe00da1568c" + "bcd2a12f-4272-4dc7-83e6-769270a3c520" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -6582,11 +6765,11 @@ "nosniff" ], "x-ms-request-id": [ - "5c1c1995-9834-4029-ad4d-931a25c86d68" + "74fdd90d-0cfb-4b98-b109-1fd19eed718f" ], "x-ms-client-request-id": [ - "f582a7a7-0991-4901-95d4-2fe00da1568c", - "f582a7a7-0991-4901-95d4-2fe00da1568c" + "bcd2a12f-4272-4dc7-83e6-769270a3c520", + "bcd2a12f-4272-4dc7-83e6-769270a3c520" ], "X-Powered-By": [ "ASP.NET" @@ -6595,19 +6778,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "121" + "129" ], "x-ms-correlation-request-id": [ - "5c1c1995-9834-4029-ad4d-931a25c86d68" + "74fdd90d-0cfb-4b98-b109-1fd19eed718f" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T183530Z:5c1c1995-9834-4029-ad4d-931a25c86d68" + "JIOINDIAWEST:20220517T061552Z:74fdd90d-0cfb-4b98-b109-1fd19eed718f" ], "Date": [ - "Thu, 24 Feb 2022 18:35:29 GMT" + "Tue, 17 May 2022 06:15:51 GMT" ], "Content-Length": [ - "971" + "970" ], "Content-Type": [ "application/json" @@ -6616,26 +6799,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfee9dac/backupJobs/933437e4-1125-4961-8fc4-572c4cc4b1e5\",\r\n \"name\": \"933437e4-1125-4961-8fc4-572c4cc4b1e5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgbfee9dac;pstestvmbfee90\",\r\n \"duration\": \"PT28M32.0085639S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvmbfee90\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvmbfee90\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-24T18:06:57.8348208Z\",\r\n \"activityId\": \"f582a7a7-0991-4901-95d4-2fe00da1568c\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupJobs/16cb625d-51f4-4a5b-8932-85a9e11f8a09\",\r\n \"name\": \"16cb625d-51f4-4a5b-8932-85a9e11f8a09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg2a085f1b;pstestvm2a0850\",\r\n \"duration\": \"PT9M21.9232641S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm2a0850\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm2a0850\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T06:06:29.7845766Z\",\r\n \"activityId\": \"bcd2a12f-4272-4dc7-83e6-769270a3c520\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfee9dac/backupJobs/933437e4-1125-4961-8fc4-572c4cc4b1e5?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZlZTlkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmVlOWRhYy9iYWNrdXBKb2JzLzkzMzQzN2U0LTExMjUtNDk2MS04ZmM0LTU3MmM0Y2M0YjFlNT9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupJobs/16cb625d-51f4-4a5b-8932-85a9e11f8a09?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMmEwODVmMWIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YyYTA4NWYxYi9iYWNrdXBKb2JzLzE2Y2I2MjVkLTUxZjQtNGE1Yi04OTMyLTg1YTllMTFmOGEwOT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f582a7a7-0991-4901-95d4-2fe00da1568c" + "bcd2a12f-4272-4dc7-83e6-769270a3c520" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -6653,11 +6836,11 @@ "nosniff" ], "x-ms-request-id": [ - "84ef962e-b09a-45aa-ad7c-ff257fe0cd89" + "52f17b23-fc85-4183-a0e4-cac2e74af1dc" ], "x-ms-client-request-id": [ - "f582a7a7-0991-4901-95d4-2fe00da1568c", - "f582a7a7-0991-4901-95d4-2fe00da1568c" + "bcd2a12f-4272-4dc7-83e6-769270a3c520", + "bcd2a12f-4272-4dc7-83e6-769270a3c520" ], "X-Powered-By": [ "ASP.NET" @@ -6666,19 +6849,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "120" + "128" ], "x-ms-correlation-request-id": [ - "84ef962e-b09a-45aa-ad7c-ff257fe0cd89" + "52f17b23-fc85-4183-a0e4-cac2e74af1dc" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T183632Z:84ef962e-b09a-45aa-ad7c-ff257fe0cd89" + "JIOINDIAWEST:20220517T061623Z:52f17b23-fc85-4183-a0e4-cac2e74af1dc" ], "Date": [ - "Thu, 24 Feb 2022 18:36:31 GMT" + "Tue, 17 May 2022 06:16:22 GMT" ], "Content-Length": [ - "971" + "970" ], "Content-Type": [ "application/json" @@ -6687,26 +6870,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfee9dac/backupJobs/933437e4-1125-4961-8fc4-572c4cc4b1e5\",\r\n \"name\": \"933437e4-1125-4961-8fc4-572c4cc4b1e5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgbfee9dac;pstestvmbfee90\",\r\n \"duration\": \"PT29M33.9332753S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvmbfee90\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvmbfee90\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-24T18:06:57.8348208Z\",\r\n \"activityId\": \"f582a7a7-0991-4901-95d4-2fe00da1568c\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupJobs/16cb625d-51f4-4a5b-8932-85a9e11f8a09\",\r\n \"name\": \"16cb625d-51f4-4a5b-8932-85a9e11f8a09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg2a085f1b;pstestvm2a0850\",\r\n \"duration\": \"PT9M52.7092104S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm2a0850\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm2a0850\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T06:06:29.7845766Z\",\r\n \"activityId\": \"bcd2a12f-4272-4dc7-83e6-769270a3c520\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfee9dac/backupJobs/933437e4-1125-4961-8fc4-572c4cc4b1e5?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZlZTlkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmVlOWRhYy9iYWNrdXBKb2JzLzkzMzQzN2U0LTExMjUtNDk2MS04ZmM0LTU3MmM0Y2M0YjFlNT9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupJobs/16cb625d-51f4-4a5b-8932-85a9e11f8a09?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMmEwODVmMWIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YyYTA4NWYxYi9iYWNrdXBKb2JzLzE2Y2I2MjVkLTUxZjQtNGE1Yi04OTMyLTg1YTllMTFmOGEwOT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f582a7a7-0991-4901-95d4-2fe00da1568c" + "bcd2a12f-4272-4dc7-83e6-769270a3c520" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -6724,11 +6907,11 @@ "nosniff" ], "x-ms-request-id": [ - "e86b839f-f84c-4b43-b11d-ae1c24c76d61" + "6e4ddd8b-937d-4441-9b60-5ce8a65762b9" ], "x-ms-client-request-id": [ - "f582a7a7-0991-4901-95d4-2fe00da1568c", - "f582a7a7-0991-4901-95d4-2fe00da1568c" + "bcd2a12f-4272-4dc7-83e6-769270a3c520", + "bcd2a12f-4272-4dc7-83e6-769270a3c520" ], "X-Powered-By": [ "ASP.NET" @@ -6737,16 +6920,16 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "119" + "127" ], "x-ms-correlation-request-id": [ - "e86b839f-f84c-4b43-b11d-ae1c24c76d61" + "6e4ddd8b-937d-4441-9b60-5ce8a65762b9" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T183733Z:e86b839f-f84c-4b43-b11d-ae1c24c76d61" + "JIOINDIAWEST:20220517T061653Z:6e4ddd8b-937d-4441-9b60-5ce8a65762b9" ], "Date": [ - "Thu, 24 Feb 2022 18:37:33 GMT" + "Tue, 17 May 2022 06:16:52 GMT" ], "Content-Length": [ "971" @@ -6758,26 +6941,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfee9dac/backupJobs/933437e4-1125-4961-8fc4-572c4cc4b1e5\",\r\n \"name\": \"933437e4-1125-4961-8fc4-572c4cc4b1e5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgbfee9dac;pstestvmbfee90\",\r\n \"duration\": \"PT30M35.7969198S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvmbfee90\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvmbfee90\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-24T18:06:57.8348208Z\",\r\n \"activityId\": \"f582a7a7-0991-4901-95d4-2fe00da1568c\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupJobs/16cb625d-51f4-4a5b-8932-85a9e11f8a09\",\r\n \"name\": \"16cb625d-51f4-4a5b-8932-85a9e11f8a09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg2a085f1b;pstestvm2a0850\",\r\n \"duration\": \"PT10M23.3562142S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm2a0850\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm2a0850\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T06:06:29.7845766Z\",\r\n \"activityId\": \"bcd2a12f-4272-4dc7-83e6-769270a3c520\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfee9dac/backupJobs/933437e4-1125-4961-8fc4-572c4cc4b1e5?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZlZTlkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmVlOWRhYy9iYWNrdXBKb2JzLzkzMzQzN2U0LTExMjUtNDk2MS04ZmM0LTU3MmM0Y2M0YjFlNT9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupJobs/16cb625d-51f4-4a5b-8932-85a9e11f8a09?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMmEwODVmMWIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YyYTA4NWYxYi9iYWNrdXBKb2JzLzE2Y2I2MjVkLTUxZjQtNGE1Yi04OTMyLTg1YTllMTFmOGEwOT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f582a7a7-0991-4901-95d4-2fe00da1568c" + "bcd2a12f-4272-4dc7-83e6-769270a3c520" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -6795,11 +6978,11 @@ "nosniff" ], "x-ms-request-id": [ - "66bc09a6-d46c-4c7d-9fef-97a45f2dc68f" + "9540ff05-21c9-418a-81a7-cc0a678b49aa" ], "x-ms-client-request-id": [ - "f582a7a7-0991-4901-95d4-2fe00da1568c", - "f582a7a7-0991-4901-95d4-2fe00da1568c" + "bcd2a12f-4272-4dc7-83e6-769270a3c520", + "bcd2a12f-4272-4dc7-83e6-769270a3c520" ], "X-Powered-By": [ "ASP.NET" @@ -6808,16 +6991,16 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "118" + "126" ], "x-ms-correlation-request-id": [ - "66bc09a6-d46c-4c7d-9fef-97a45f2dc68f" + "9540ff05-21c9-418a-81a7-cc0a678b49aa" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T183836Z:66bc09a6-d46c-4c7d-9fef-97a45f2dc68f" + "JIOINDIAWEST:20220517T061724Z:9540ff05-21c9-418a-81a7-cc0a678b49aa" ], "Date": [ - "Thu, 24 Feb 2022 18:38:35 GMT" + "Tue, 17 May 2022 06:17:24 GMT" ], "Content-Length": [ "971" @@ -6829,26 +7012,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfee9dac/backupJobs/933437e4-1125-4961-8fc4-572c4cc4b1e5\",\r\n \"name\": \"933437e4-1125-4961-8fc4-572c4cc4b1e5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgbfee9dac;pstestvmbfee90\",\r\n \"duration\": \"PT31M38.2095068S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvmbfee90\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvmbfee90\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-24T18:06:57.8348208Z\",\r\n \"activityId\": \"f582a7a7-0991-4901-95d4-2fe00da1568c\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupJobs/16cb625d-51f4-4a5b-8932-85a9e11f8a09\",\r\n \"name\": \"16cb625d-51f4-4a5b-8932-85a9e11f8a09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg2a085f1b;pstestvm2a0850\",\r\n \"duration\": \"PT10M54.1137468S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm2a0850\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm2a0850\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T06:06:29.7845766Z\",\r\n \"activityId\": \"bcd2a12f-4272-4dc7-83e6-769270a3c520\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfee9dac/backupJobs/933437e4-1125-4961-8fc4-572c4cc4b1e5?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZlZTlkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmVlOWRhYy9iYWNrdXBKb2JzLzkzMzQzN2U0LTExMjUtNDk2MS04ZmM0LTU3MmM0Y2M0YjFlNT9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupJobs/16cb625d-51f4-4a5b-8932-85a9e11f8a09?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMmEwODVmMWIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YyYTA4NWYxYi9iYWNrdXBKb2JzLzE2Y2I2MjVkLTUxZjQtNGE1Yi04OTMyLTg1YTllMTFmOGEwOT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f582a7a7-0991-4901-95d4-2fe00da1568c" + "bcd2a12f-4272-4dc7-83e6-769270a3c520" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -6866,11 +7049,11 @@ "nosniff" ], "x-ms-request-id": [ - "65a08e73-141d-46df-ac00-29378433c0c1" + "ebd7f225-b52b-44b2-ad7b-d58d4f06d241" ], "x-ms-client-request-id": [ - "f582a7a7-0991-4901-95d4-2fe00da1568c", - "f582a7a7-0991-4901-95d4-2fe00da1568c" + "bcd2a12f-4272-4dc7-83e6-769270a3c520", + "bcd2a12f-4272-4dc7-83e6-769270a3c520" ], "X-Powered-By": [ "ASP.NET" @@ -6879,16 +7062,16 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "117" + "125" ], "x-ms-correlation-request-id": [ - "65a08e73-141d-46df-ac00-29378433c0c1" + "ebd7f225-b52b-44b2-ad7b-d58d4f06d241" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T183938Z:65a08e73-141d-46df-ac00-29378433c0c1" + "JIOINDIAWEST:20220517T061755Z:ebd7f225-b52b-44b2-ad7b-d58d4f06d241" ], "Date": [ - "Thu, 24 Feb 2022 18:39:38 GMT" + "Tue, 17 May 2022 06:17:55 GMT" ], "Content-Length": [ "971" @@ -6900,26 +7083,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfee9dac/backupJobs/933437e4-1125-4961-8fc4-572c4cc4b1e5\",\r\n \"name\": \"933437e4-1125-4961-8fc4-572c4cc4b1e5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgbfee9dac;pstestvmbfee90\",\r\n \"duration\": \"PT32M40.2806526S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvmbfee90\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvmbfee90\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-24T18:06:57.8348208Z\",\r\n \"activityId\": \"f582a7a7-0991-4901-95d4-2fe00da1568c\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupJobs/16cb625d-51f4-4a5b-8932-85a9e11f8a09\",\r\n \"name\": \"16cb625d-51f4-4a5b-8932-85a9e11f8a09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg2a085f1b;pstestvm2a0850\",\r\n \"duration\": \"PT11M25.3878677S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm2a0850\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm2a0850\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T06:06:29.7845766Z\",\r\n \"activityId\": \"bcd2a12f-4272-4dc7-83e6-769270a3c520\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfee9dac/backupJobs/933437e4-1125-4961-8fc4-572c4cc4b1e5?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZlZTlkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmVlOWRhYy9iYWNrdXBKb2JzLzkzMzQzN2U0LTExMjUtNDk2MS04ZmM0LTU3MmM0Y2M0YjFlNT9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupJobs/16cb625d-51f4-4a5b-8932-85a9e11f8a09?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMmEwODVmMWIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YyYTA4NWYxYi9iYWNrdXBKb2JzLzE2Y2I2MjVkLTUxZjQtNGE1Yi04OTMyLTg1YTllMTFmOGEwOT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f582a7a7-0991-4901-95d4-2fe00da1568c" + "bcd2a12f-4272-4dc7-83e6-769270a3c520" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -6937,11 +7120,11 @@ "nosniff" ], "x-ms-request-id": [ - "d5a213b8-80ab-465e-8729-bca38be89b7d" + "90282951-24d7-4d14-8fc7-32555a6bc673" ], "x-ms-client-request-id": [ - "f582a7a7-0991-4901-95d4-2fe00da1568c", - "f582a7a7-0991-4901-95d4-2fe00da1568c" + "bcd2a12f-4272-4dc7-83e6-769270a3c520", + "bcd2a12f-4272-4dc7-83e6-769270a3c520" ], "X-Powered-By": [ "ASP.NET" @@ -6950,16 +7133,16 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "116" + "124" ], "x-ms-correlation-request-id": [ - "d5a213b8-80ab-465e-8729-bca38be89b7d" + "90282951-24d7-4d14-8fc7-32555a6bc673" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T184111Z:d5a213b8-80ab-465e-8729-bca38be89b7d" + "JIOINDIAWEST:20220517T061826Z:90282951-24d7-4d14-8fc7-32555a6bc673" ], "Date": [ - "Thu, 24 Feb 2022 18:41:10 GMT" + "Tue, 17 May 2022 06:18:25 GMT" ], "Content-Length": [ "970" @@ -6971,26 +7154,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfee9dac/backupJobs/933437e4-1125-4961-8fc4-572c4cc4b1e5\",\r\n \"name\": \"933437e4-1125-4961-8fc4-572c4cc4b1e5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgbfee9dac;pstestvmbfee90\",\r\n \"duration\": \"PT34M7.1638161S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvmbfee90\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvmbfee90\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-24T18:06:57.8348208Z\",\r\n \"activityId\": \"f582a7a7-0991-4901-95d4-2fe00da1568c\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupJobs/16cb625d-51f4-4a5b-8932-85a9e11f8a09\",\r\n \"name\": \"16cb625d-51f4-4a5b-8932-85a9e11f8a09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg2a085f1b;pstestvm2a0850\",\r\n \"duration\": \"PT11M56.371211S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm2a0850\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm2a0850\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T06:06:29.7845766Z\",\r\n \"activityId\": \"bcd2a12f-4272-4dc7-83e6-769270a3c520\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfee9dac/backupJobs/933437e4-1125-4961-8fc4-572c4cc4b1e5?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZlZTlkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmVlOWRhYy9iYWNrdXBKb2JzLzkzMzQzN2U0LTExMjUtNDk2MS04ZmM0LTU3MmM0Y2M0YjFlNT9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupJobs/16cb625d-51f4-4a5b-8932-85a9e11f8a09?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMmEwODVmMWIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YyYTA4NWYxYi9iYWNrdXBKb2JzLzE2Y2I2MjVkLTUxZjQtNGE1Yi04OTMyLTg1YTllMTFmOGEwOT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f582a7a7-0991-4901-95d4-2fe00da1568c" + "bcd2a12f-4272-4dc7-83e6-769270a3c520" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -7008,11 +7191,11 @@ "nosniff" ], "x-ms-request-id": [ - "9f7bf4d2-99ce-46e7-b9ac-7b1614bad668" + "2dcf512c-31bd-4d11-9154-a7418f749a25" ], "x-ms-client-request-id": [ - "f582a7a7-0991-4901-95d4-2fe00da1568c", - "f582a7a7-0991-4901-95d4-2fe00da1568c" + "bcd2a12f-4272-4dc7-83e6-769270a3c520", + "bcd2a12f-4272-4dc7-83e6-769270a3c520" ], "X-Powered-By": [ "ASP.NET" @@ -7021,16 +7204,16 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "115" + "123" ], "x-ms-correlation-request-id": [ - "9f7bf4d2-99ce-46e7-b9ac-7b1614bad668" + "2dcf512c-31bd-4d11-9154-a7418f749a25" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T184213Z:9f7bf4d2-99ce-46e7-b9ac-7b1614bad668" + "JIOINDIAWEST:20220517T061858Z:2dcf512c-31bd-4d11-9154-a7418f749a25" ], "Date": [ - "Thu, 24 Feb 2022 18:42:13 GMT" + "Tue, 17 May 2022 06:18:57 GMT" ], "Content-Length": [ "971" @@ -7042,26 +7225,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfee9dac/backupJobs/933437e4-1125-4961-8fc4-572c4cc4b1e5\",\r\n \"name\": \"933437e4-1125-4961-8fc4-572c4cc4b1e5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgbfee9dac;pstestvmbfee90\",\r\n \"duration\": \"PT35M15.0151923S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvmbfee90\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvmbfee90\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-24T18:06:57.8348208Z\",\r\n \"activityId\": \"f582a7a7-0991-4901-95d4-2fe00da1568c\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupJobs/16cb625d-51f4-4a5b-8932-85a9e11f8a09\",\r\n \"name\": \"16cb625d-51f4-4a5b-8932-85a9e11f8a09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg2a085f1b;pstestvm2a0850\",\r\n \"duration\": \"PT12M27.8647167S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm2a0850\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm2a0850\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T06:06:29.7845766Z\",\r\n \"activityId\": \"bcd2a12f-4272-4dc7-83e6-769270a3c520\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfee9dac/backupJobs/933437e4-1125-4961-8fc4-572c4cc4b1e5?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZlZTlkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmVlOWRhYy9iYWNrdXBKb2JzLzkzMzQzN2U0LTExMjUtNDk2MS04ZmM0LTU3MmM0Y2M0YjFlNT9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupJobs/16cb625d-51f4-4a5b-8932-85a9e11f8a09?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMmEwODVmMWIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YyYTA4NWYxYi9iYWNrdXBKb2JzLzE2Y2I2MjVkLTUxZjQtNGE1Yi04OTMyLTg1YTllMTFmOGEwOT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f582a7a7-0991-4901-95d4-2fe00da1568c" + "bcd2a12f-4272-4dc7-83e6-769270a3c520" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -7079,11 +7262,11 @@ "nosniff" ], "x-ms-request-id": [ - "703fa026-4e38-4937-8734-110969cfdb4e" + "51de4a97-0366-4f35-b400-efdda81ad8d5" ], "x-ms-client-request-id": [ - "f582a7a7-0991-4901-95d4-2fe00da1568c", - "f582a7a7-0991-4901-95d4-2fe00da1568c" + "bcd2a12f-4272-4dc7-83e6-769270a3c520", + "bcd2a12f-4272-4dc7-83e6-769270a3c520" ], "X-Powered-By": [ "ASP.NET" @@ -7092,16 +7275,16 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "114" + "122" ], "x-ms-correlation-request-id": [ - "703fa026-4e38-4937-8734-110969cfdb4e" + "51de4a97-0366-4f35-b400-efdda81ad8d5" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T184315Z:703fa026-4e38-4937-8734-110969cfdb4e" + "JIOINDIAWEST:20220517T061929Z:51de4a97-0366-4f35-b400-efdda81ad8d5" ], "Date": [ - "Thu, 24 Feb 2022 18:43:14 GMT" + "Tue, 17 May 2022 06:19:28 GMT" ], "Content-Length": [ "971" @@ -7113,26 +7296,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfee9dac/backupJobs/933437e4-1125-4961-8fc4-572c4cc4b1e5\",\r\n \"name\": \"933437e4-1125-4961-8fc4-572c4cc4b1e5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgbfee9dac;pstestvmbfee90\",\r\n \"duration\": \"PT36M17.4828189S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvmbfee90\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvmbfee90\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-24T18:06:57.8348208Z\",\r\n \"activityId\": \"f582a7a7-0991-4901-95d4-2fe00da1568c\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupJobs/16cb625d-51f4-4a5b-8932-85a9e11f8a09\",\r\n \"name\": \"16cb625d-51f4-4a5b-8932-85a9e11f8a09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg2a085f1b;pstestvm2a0850\",\r\n \"duration\": \"PT12M58.6125949S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm2a0850\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm2a0850\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T06:06:29.7845766Z\",\r\n \"activityId\": \"bcd2a12f-4272-4dc7-83e6-769270a3c520\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfee9dac/backupJobs/933437e4-1125-4961-8fc4-572c4cc4b1e5?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZlZTlkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmVlOWRhYy9iYWNrdXBKb2JzLzkzMzQzN2U0LTExMjUtNDk2MS04ZmM0LTU3MmM0Y2M0YjFlNT9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupJobs/16cb625d-51f4-4a5b-8932-85a9e11f8a09?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMmEwODVmMWIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YyYTA4NWYxYi9iYWNrdXBKb2JzLzE2Y2I2MjVkLTUxZjQtNGE1Yi04OTMyLTg1YTllMTFmOGEwOT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f582a7a7-0991-4901-95d4-2fe00da1568c" + "bcd2a12f-4272-4dc7-83e6-769270a3c520" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -7150,11 +7333,11 @@ "nosniff" ], "x-ms-request-id": [ - "292670f4-5429-4c81-a35c-9028f5590b59" + "efab1f7b-1b77-4a4f-8ebf-5ca23162127f" ], "x-ms-client-request-id": [ - "f582a7a7-0991-4901-95d4-2fe00da1568c", - "f582a7a7-0991-4901-95d4-2fe00da1568c" + "bcd2a12f-4272-4dc7-83e6-769270a3c520", + "bcd2a12f-4272-4dc7-83e6-769270a3c520" ], "X-Powered-By": [ "ASP.NET" @@ -7163,16 +7346,16 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "113" + "121" ], "x-ms-correlation-request-id": [ - "292670f4-5429-4c81-a35c-9028f5590b59" + "efab1f7b-1b77-4a4f-8ebf-5ca23162127f" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T184417Z:292670f4-5429-4c81-a35c-9028f5590b59" + "JIOINDIAWEST:20220517T061959Z:efab1f7b-1b77-4a4f-8ebf-5ca23162127f" ], "Date": [ - "Thu, 24 Feb 2022 18:44:17 GMT" + "Tue, 17 May 2022 06:19:59 GMT" ], "Content-Length": [ "971" @@ -7184,26 +7367,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfee9dac/backupJobs/933437e4-1125-4961-8fc4-572c4cc4b1e5\",\r\n \"name\": \"933437e4-1125-4961-8fc4-572c4cc4b1e5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgbfee9dac;pstestvmbfee90\",\r\n \"duration\": \"PT37M19.4445366S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvmbfee90\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvmbfee90\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-24T18:06:57.8348208Z\",\r\n \"activityId\": \"f582a7a7-0991-4901-95d4-2fe00da1568c\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupJobs/16cb625d-51f4-4a5b-8932-85a9e11f8a09\",\r\n \"name\": \"16cb625d-51f4-4a5b-8932-85a9e11f8a09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg2a085f1b;pstestvm2a0850\",\r\n \"duration\": \"PT13M29.5503227S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm2a0850\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm2a0850\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T06:06:29.7845766Z\",\r\n \"activityId\": \"bcd2a12f-4272-4dc7-83e6-769270a3c520\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfee9dac/backupJobs/933437e4-1125-4961-8fc4-572c4cc4b1e5?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZlZTlkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmVlOWRhYy9iYWNrdXBKb2JzLzkzMzQzN2U0LTExMjUtNDk2MS04ZmM0LTU3MmM0Y2M0YjFlNT9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupJobs/16cb625d-51f4-4a5b-8932-85a9e11f8a09?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMmEwODVmMWIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YyYTA4NWYxYi9iYWNrdXBKb2JzLzE2Y2I2MjVkLTUxZjQtNGE1Yi04OTMyLTg1YTllMTFmOGEwOT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f582a7a7-0991-4901-95d4-2fe00da1568c" + "bcd2a12f-4272-4dc7-83e6-769270a3c520" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -7221,11 +7404,11 @@ "nosniff" ], "x-ms-request-id": [ - "c77906f8-fb83-4dce-b486-33b97419f697" + "f46ea9ee-53d7-419d-8944-64042e37d8a0" ], "x-ms-client-request-id": [ - "f582a7a7-0991-4901-95d4-2fe00da1568c", - "f582a7a7-0991-4901-95d4-2fe00da1568c" + "bcd2a12f-4272-4dc7-83e6-769270a3c520", + "bcd2a12f-4272-4dc7-83e6-769270a3c520" ], "X-Powered-By": [ "ASP.NET" @@ -7234,19 +7417,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "112" + "120" ], "x-ms-correlation-request-id": [ - "c77906f8-fb83-4dce-b486-33b97419f697" + "f46ea9ee-53d7-419d-8944-64042e37d8a0" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T184519Z:c77906f8-fb83-4dce-b486-33b97419f697" + "JIOINDIAWEST:20220517T062030Z:f46ea9ee-53d7-419d-8944-64042e37d8a0" ], "Date": [ - "Thu, 24 Feb 2022 18:45:19 GMT" + "Tue, 17 May 2022 06:20:30 GMT" ], "Content-Length": [ - "971" + "970" ], "Content-Type": [ "application/json" @@ -7255,26 +7438,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfee9dac/backupJobs/933437e4-1125-4961-8fc4-572c4cc4b1e5\",\r\n \"name\": \"933437e4-1125-4961-8fc4-572c4cc4b1e5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgbfee9dac;pstestvmbfee90\",\r\n \"duration\": \"PT38M21.2885282S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvmbfee90\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvmbfee90\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-24T18:06:57.8348208Z\",\r\n \"activityId\": \"f582a7a7-0991-4901-95d4-2fe00da1568c\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupJobs/16cb625d-51f4-4a5b-8932-85a9e11f8a09\",\r\n \"name\": \"16cb625d-51f4-4a5b-8932-85a9e11f8a09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg2a085f1b;pstestvm2a0850\",\r\n \"duration\": \"PT14M0.1860608S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm2a0850\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm2a0850\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T06:06:29.7845766Z\",\r\n \"activityId\": \"bcd2a12f-4272-4dc7-83e6-769270a3c520\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfee9dac/backupJobs/933437e4-1125-4961-8fc4-572c4cc4b1e5?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZlZTlkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmVlOWRhYy9iYWNrdXBKb2JzLzkzMzQzN2U0LTExMjUtNDk2MS04ZmM0LTU3MmM0Y2M0YjFlNT9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupJobs/16cb625d-51f4-4a5b-8932-85a9e11f8a09?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMmEwODVmMWIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YyYTA4NWYxYi9iYWNrdXBKb2JzLzE2Y2I2MjVkLTUxZjQtNGE1Yi04OTMyLTg1YTllMTFmOGEwOT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f582a7a7-0991-4901-95d4-2fe00da1568c" + "bcd2a12f-4272-4dc7-83e6-769270a3c520" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -7292,11 +7475,11 @@ "nosniff" ], "x-ms-request-id": [ - "1b4c9fc0-9e3a-4809-bd5c-23b8107be71c" + "75ee316a-5dcb-470c-9677-6e4f63c8d07f" ], "x-ms-client-request-id": [ - "f582a7a7-0991-4901-95d4-2fe00da1568c", - "f582a7a7-0991-4901-95d4-2fe00da1568c" + "bcd2a12f-4272-4dc7-83e6-769270a3c520", + "bcd2a12f-4272-4dc7-83e6-769270a3c520" ], "X-Powered-By": [ "ASP.NET" @@ -7305,16 +7488,16 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "111" + "119" ], "x-ms-correlation-request-id": [ - "1b4c9fc0-9e3a-4809-bd5c-23b8107be71c" + "75ee316a-5dcb-470c-9677-6e4f63c8d07f" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T184621Z:1b4c9fc0-9e3a-4809-bd5c-23b8107be71c" + "JIOINDIAWEST:20220517T062101Z:75ee316a-5dcb-470c-9677-6e4f63c8d07f" ], "Date": [ - "Thu, 24 Feb 2022 18:46:20 GMT" + "Tue, 17 May 2022 06:21:01 GMT" ], "Content-Length": [ "971" @@ -7326,26 +7509,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfee9dac/backupJobs/933437e4-1125-4961-8fc4-572c4cc4b1e5\",\r\n \"name\": \"933437e4-1125-4961-8fc4-572c4cc4b1e5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgbfee9dac;pstestvmbfee90\",\r\n \"duration\": \"PT39M22.9450285S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvmbfee90\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvmbfee90\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-24T18:06:57.8348208Z\",\r\n \"activityId\": \"f582a7a7-0991-4901-95d4-2fe00da1568c\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupJobs/16cb625d-51f4-4a5b-8932-85a9e11f8a09\",\r\n \"name\": \"16cb625d-51f4-4a5b-8932-85a9e11f8a09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg2a085f1b;pstestvm2a0850\",\r\n \"duration\": \"PT14M30.8837853S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm2a0850\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm2a0850\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T06:06:29.7845766Z\",\r\n \"activityId\": \"bcd2a12f-4272-4dc7-83e6-769270a3c520\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfee9dac/backupJobs/933437e4-1125-4961-8fc4-572c4cc4b1e5?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZlZTlkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmVlOWRhYy9iYWNrdXBKb2JzLzkzMzQzN2U0LTExMjUtNDk2MS04ZmM0LTU3MmM0Y2M0YjFlNT9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupJobs/16cb625d-51f4-4a5b-8932-85a9e11f8a09?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMmEwODVmMWIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YyYTA4NWYxYi9iYWNrdXBKb2JzLzE2Y2I2MjVkLTUxZjQtNGE1Yi04OTMyLTg1YTllMTFmOGEwOT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f582a7a7-0991-4901-95d4-2fe00da1568c" + "bcd2a12f-4272-4dc7-83e6-769270a3c520" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -7363,11 +7546,11 @@ "nosniff" ], "x-ms-request-id": [ - "724b4ac9-e49d-4cb8-be9a-34b66182bda2" + "2bd15989-57a9-4de4-9356-43e81ef15361" ], "x-ms-client-request-id": [ - "f582a7a7-0991-4901-95d4-2fe00da1568c", - "f582a7a7-0991-4901-95d4-2fe00da1568c" + "bcd2a12f-4272-4dc7-83e6-769270a3c520", + "bcd2a12f-4272-4dc7-83e6-769270a3c520" ], "X-Powered-By": [ "ASP.NET" @@ -7376,19 +7559,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "110" + "118" ], "x-ms-correlation-request-id": [ - "724b4ac9-e49d-4cb8-be9a-34b66182bda2" + "2bd15989-57a9-4de4-9356-43e81ef15361" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T184723Z:724b4ac9-e49d-4cb8-be9a-34b66182bda2" + "JIOINDIAWEST:20220517T062132Z:2bd15989-57a9-4de4-9356-43e81ef15361" ], "Date": [ - "Thu, 24 Feb 2022 18:47:22 GMT" + "Tue, 17 May 2022 06:21:31 GMT" ], "Content-Length": [ - "971" + "970" ], "Content-Type": [ "application/json" @@ -7397,26 +7580,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfee9dac/backupJobs/933437e4-1125-4961-8fc4-572c4cc4b1e5\",\r\n \"name\": \"933437e4-1125-4961-8fc4-572c4cc4b1e5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgbfee9dac;pstestvmbfee90\",\r\n \"duration\": \"PT40M24.9096201S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvmbfee90\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvmbfee90\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-24T18:06:57.8348208Z\",\r\n \"activityId\": \"f582a7a7-0991-4901-95d4-2fe00da1568c\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupJobs/16cb625d-51f4-4a5b-8932-85a9e11f8a09\",\r\n \"name\": \"16cb625d-51f4-4a5b-8932-85a9e11f8a09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg2a085f1b;pstestvm2a0850\",\r\n \"duration\": \"PT15M1.8390537S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm2a0850\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm2a0850\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T06:06:29.7845766Z\",\r\n \"activityId\": \"bcd2a12f-4272-4dc7-83e6-769270a3c520\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfee9dac/backupJobs/933437e4-1125-4961-8fc4-572c4cc4b1e5?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZlZTlkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmVlOWRhYy9iYWNrdXBKb2JzLzkzMzQzN2U0LTExMjUtNDk2MS04ZmM0LTU3MmM0Y2M0YjFlNT9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupJobs/16cb625d-51f4-4a5b-8932-85a9e11f8a09?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMmEwODVmMWIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YyYTA4NWYxYi9iYWNrdXBKb2JzLzE2Y2I2MjVkLTUxZjQtNGE1Yi04OTMyLTg1YTllMTFmOGEwOT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f582a7a7-0991-4901-95d4-2fe00da1568c" + "bcd2a12f-4272-4dc7-83e6-769270a3c520" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -7434,11 +7617,11 @@ "nosniff" ], "x-ms-request-id": [ - "f060802f-d8ed-4764-a4b1-5564ed4db866" + "69a57966-3748-4d68-a9bb-a098b69118cd" ], "x-ms-client-request-id": [ - "f582a7a7-0991-4901-95d4-2fe00da1568c", - "f582a7a7-0991-4901-95d4-2fe00da1568c" + "bcd2a12f-4272-4dc7-83e6-769270a3c520", + "bcd2a12f-4272-4dc7-83e6-769270a3c520" ], "X-Powered-By": [ "ASP.NET" @@ -7447,16 +7630,16 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "109" + "117" ], "x-ms-correlation-request-id": [ - "f060802f-d8ed-4764-a4b1-5564ed4db866" + "69a57966-3748-4d68-a9bb-a098b69118cd" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T184825Z:f060802f-d8ed-4764-a4b1-5564ed4db866" + "JIOINDIAWEST:20220517T062203Z:69a57966-3748-4d68-a9bb-a098b69118cd" ], "Date": [ - "Thu, 24 Feb 2022 18:48:24 GMT" + "Tue, 17 May 2022 06:22:02 GMT" ], "Content-Length": [ "971" @@ -7468,26 +7651,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfee9dac/backupJobs/933437e4-1125-4961-8fc4-572c4cc4b1e5\",\r\n \"name\": \"933437e4-1125-4961-8fc4-572c4cc4b1e5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgbfee9dac;pstestvmbfee90\",\r\n \"duration\": \"PT41M26.8844804S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvmbfee90\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvmbfee90\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-24T18:06:57.8348208Z\",\r\n \"activityId\": \"f582a7a7-0991-4901-95d4-2fe00da1568c\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupJobs/16cb625d-51f4-4a5b-8932-85a9e11f8a09\",\r\n \"name\": \"16cb625d-51f4-4a5b-8932-85a9e11f8a09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg2a085f1b;pstestvm2a0850\",\r\n \"duration\": \"PT15M33.1865581S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm2a0850\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm2a0850\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T06:06:29.7845766Z\",\r\n \"activityId\": \"bcd2a12f-4272-4dc7-83e6-769270a3c520\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfee9dac/backupJobs/933437e4-1125-4961-8fc4-572c4cc4b1e5?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZlZTlkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmVlOWRhYy9iYWNrdXBKb2JzLzkzMzQzN2U0LTExMjUtNDk2MS04ZmM0LTU3MmM0Y2M0YjFlNT9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupJobs/16cb625d-51f4-4a5b-8932-85a9e11f8a09?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMmEwODVmMWIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YyYTA4NWYxYi9iYWNrdXBKb2JzLzE2Y2I2MjVkLTUxZjQtNGE1Yi04OTMyLTg1YTllMTFmOGEwOT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f582a7a7-0991-4901-95d4-2fe00da1568c" + "bcd2a12f-4272-4dc7-83e6-769270a3c520" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -7505,11 +7688,11 @@ "nosniff" ], "x-ms-request-id": [ - "28d76b01-d702-4526-b606-9913cebccf68" + "7c419260-ab0a-4eac-b4e2-8aa66b53bd8f" ], "x-ms-client-request-id": [ - "f582a7a7-0991-4901-95d4-2fe00da1568c", - "f582a7a7-0991-4901-95d4-2fe00da1568c" + "bcd2a12f-4272-4dc7-83e6-769270a3c520", + "bcd2a12f-4272-4dc7-83e6-769270a3c520" ], "X-Powered-By": [ "ASP.NET" @@ -7518,19 +7701,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "108" + "116" ], "x-ms-correlation-request-id": [ - "28d76b01-d702-4526-b606-9913cebccf68" + "7c419260-ab0a-4eac-b4e2-8aa66b53bd8f" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T184925Z:28d76b01-d702-4526-b606-9913cebccf68" + "JIOINDIAWEST:20220517T062234Z:7c419260-ab0a-4eac-b4e2-8aa66b53bd8f" ], "Date": [ - "Thu, 24 Feb 2022 18:49:25 GMT" + "Tue, 17 May 2022 06:22:33 GMT" ], "Content-Length": [ - "971" + "970" ], "Content-Type": [ "application/json" @@ -7539,26 +7722,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfee9dac/backupJobs/933437e4-1125-4961-8fc4-572c4cc4b1e5\",\r\n \"name\": \"933437e4-1125-4961-8fc4-572c4cc4b1e5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgbfee9dac;pstestvmbfee90\",\r\n \"duration\": \"PT42M27.7268066S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvmbfee90\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvmbfee90\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-24T18:06:57.8348208Z\",\r\n \"activityId\": \"f582a7a7-0991-4901-95d4-2fe00da1568c\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupJobs/16cb625d-51f4-4a5b-8932-85a9e11f8a09\",\r\n \"name\": \"16cb625d-51f4-4a5b-8932-85a9e11f8a09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg2a085f1b;pstestvm2a0850\",\r\n \"duration\": \"PT16M4.0025525S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm2a0850\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm2a0850\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T06:06:29.7845766Z\",\r\n \"activityId\": \"bcd2a12f-4272-4dc7-83e6-769270a3c520\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfee9dac/backupJobs/933437e4-1125-4961-8fc4-572c4cc4b1e5?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZlZTlkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmVlOWRhYy9iYWNrdXBKb2JzLzkzMzQzN2U0LTExMjUtNDk2MS04ZmM0LTU3MmM0Y2M0YjFlNT9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupJobs/16cb625d-51f4-4a5b-8932-85a9e11f8a09?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMmEwODVmMWIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YyYTA4NWYxYi9iYWNrdXBKb2JzLzE2Y2I2MjVkLTUxZjQtNGE1Yi04OTMyLTg1YTllMTFmOGEwOT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f582a7a7-0991-4901-95d4-2fe00da1568c" + "bcd2a12f-4272-4dc7-83e6-769270a3c520" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -7576,11 +7759,11 @@ "nosniff" ], "x-ms-request-id": [ - "48204f36-4303-429c-a274-f2d5887c2dd8" + "b02d1bca-f338-4ad9-bda1-37f9bf7953cd" ], "x-ms-client-request-id": [ - "f582a7a7-0991-4901-95d4-2fe00da1568c", - "f582a7a7-0991-4901-95d4-2fe00da1568c" + "bcd2a12f-4272-4dc7-83e6-769270a3c520", + "bcd2a12f-4272-4dc7-83e6-769270a3c520" ], "X-Powered-By": [ "ASP.NET" @@ -7589,16 +7772,16 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "107" + "115" ], "x-ms-correlation-request-id": [ - "48204f36-4303-429c-a274-f2d5887c2dd8" + "b02d1bca-f338-4ad9-bda1-37f9bf7953cd" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T185027Z:48204f36-4303-429c-a274-f2d5887c2dd8" + "JIOINDIAWEST:20220517T062305Z:b02d1bca-f338-4ad9-bda1-37f9bf7953cd" ], "Date": [ - "Thu, 24 Feb 2022 18:50:26 GMT" + "Tue, 17 May 2022 06:23:04 GMT" ], "Content-Length": [ "971" @@ -7610,26 +7793,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfee9dac/backupJobs/933437e4-1125-4961-8fc4-572c4cc4b1e5\",\r\n \"name\": \"933437e4-1125-4961-8fc4-572c4cc4b1e5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgbfee9dac;pstestvmbfee90\",\r\n \"duration\": \"PT43M29.4753305S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvmbfee90\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvmbfee90\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-24T18:06:57.8348208Z\",\r\n \"activityId\": \"f582a7a7-0991-4901-95d4-2fe00da1568c\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupJobs/16cb625d-51f4-4a5b-8932-85a9e11f8a09\",\r\n \"name\": \"16cb625d-51f4-4a5b-8932-85a9e11f8a09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg2a085f1b;pstestvm2a0850\",\r\n \"duration\": \"PT16M34.7568243S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm2a0850\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm2a0850\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T06:06:29.7845766Z\",\r\n \"activityId\": \"bcd2a12f-4272-4dc7-83e6-769270a3c520\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfee9dac/backupJobs/933437e4-1125-4961-8fc4-572c4cc4b1e5?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZlZTlkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmVlOWRhYy9iYWNrdXBKb2JzLzkzMzQzN2U0LTExMjUtNDk2MS04ZmM0LTU3MmM0Y2M0YjFlNT9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupJobs/16cb625d-51f4-4a5b-8932-85a9e11f8a09?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMmEwODVmMWIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YyYTA4NWYxYi9iYWNrdXBKb2JzLzE2Y2I2MjVkLTUxZjQtNGE1Yi04OTMyLTg1YTllMTFmOGEwOT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f582a7a7-0991-4901-95d4-2fe00da1568c" + "bcd2a12f-4272-4dc7-83e6-769270a3c520" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -7647,11 +7830,11 @@ "nosniff" ], "x-ms-request-id": [ - "24d7b5a1-98d3-45a2-b2a1-0dc182967e05" + "2d508bcc-0fab-46d8-84c1-ac1db6a7cde7" ], "x-ms-client-request-id": [ - "f582a7a7-0991-4901-95d4-2fe00da1568c", - "f582a7a7-0991-4901-95d4-2fe00da1568c" + "bcd2a12f-4272-4dc7-83e6-769270a3c520", + "bcd2a12f-4272-4dc7-83e6-769270a3c520" ], "X-Powered-By": [ "ASP.NET" @@ -7660,19 +7843,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "106" + "114" ], "x-ms-correlation-request-id": [ - "24d7b5a1-98d3-45a2-b2a1-0dc182967e05" + "2d508bcc-0fab-46d8-84c1-ac1db6a7cde7" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T185129Z:24d7b5a1-98d3-45a2-b2a1-0dc182967e05" + "JIOINDIAWEST:20220517T062335Z:2d508bcc-0fab-46d8-84c1-ac1db6a7cde7" ], "Date": [ - "Thu, 24 Feb 2022 18:51:29 GMT" + "Tue, 17 May 2022 06:23:35 GMT" ], "Content-Length": [ - "971" + "970" ], "Content-Type": [ "application/json" @@ -7681,26 +7864,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfee9dac/backupJobs/933437e4-1125-4961-8fc4-572c4cc4b1e5\",\r\n \"name\": \"933437e4-1125-4961-8fc4-572c4cc4b1e5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgbfee9dac;pstestvmbfee90\",\r\n \"duration\": \"PT44M31.3527235S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvmbfee90\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvmbfee90\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-24T18:06:57.8348208Z\",\r\n \"activityId\": \"f582a7a7-0991-4901-95d4-2fe00da1568c\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupJobs/16cb625d-51f4-4a5b-8932-85a9e11f8a09\",\r\n \"name\": \"16cb625d-51f4-4a5b-8932-85a9e11f8a09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg2a085f1b;pstestvm2a0850\",\r\n \"duration\": \"PT17M5.4665831S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm2a0850\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm2a0850\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T06:06:29.7845766Z\",\r\n \"activityId\": \"bcd2a12f-4272-4dc7-83e6-769270a3c520\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfee9dac/backupJobs/933437e4-1125-4961-8fc4-572c4cc4b1e5?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZlZTlkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmVlOWRhYy9iYWNrdXBKb2JzLzkzMzQzN2U0LTExMjUtNDk2MS04ZmM0LTU3MmM0Y2M0YjFlNT9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupJobs/16cb625d-51f4-4a5b-8932-85a9e11f8a09?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMmEwODVmMWIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YyYTA4NWYxYi9iYWNrdXBKb2JzLzE2Y2I2MjVkLTUxZjQtNGE1Yi04OTMyLTg1YTllMTFmOGEwOT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f582a7a7-0991-4901-95d4-2fe00da1568c" + "bcd2a12f-4272-4dc7-83e6-769270a3c520" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -7718,11 +7901,11 @@ "nosniff" ], "x-ms-request-id": [ - "a168a99d-8d9d-4b94-a8c6-5d600d509a36" + "53affb74-01d1-4afa-9193-4c05a69ba32e" ], "x-ms-client-request-id": [ - "f582a7a7-0991-4901-95d4-2fe00da1568c", - "f582a7a7-0991-4901-95d4-2fe00da1568c" + "bcd2a12f-4272-4dc7-83e6-769270a3c520", + "bcd2a12f-4272-4dc7-83e6-769270a3c520" ], "X-Powered-By": [ "ASP.NET" @@ -7731,16 +7914,16 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "105" + "113" ], "x-ms-correlation-request-id": [ - "a168a99d-8d9d-4b94-a8c6-5d600d509a36" + "53affb74-01d1-4afa-9193-4c05a69ba32e" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T185231Z:a168a99d-8d9d-4b94-a8c6-5d600d509a36" + "JIOINDIAWEST:20220517T062406Z:53affb74-01d1-4afa-9193-4c05a69ba32e" ], "Date": [ - "Thu, 24 Feb 2022 18:52:31 GMT" + "Tue, 17 May 2022 06:24:05 GMT" ], "Content-Length": [ "971" @@ -7752,26 +7935,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfee9dac/backupJobs/933437e4-1125-4961-8fc4-572c4cc4b1e5\",\r\n \"name\": \"933437e4-1125-4961-8fc4-572c4cc4b1e5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgbfee9dac;pstestvmbfee90\",\r\n \"duration\": \"PT45M33.6330221S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvmbfee90\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvmbfee90\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-24T18:06:57.8348208Z\",\r\n \"activityId\": \"f582a7a7-0991-4901-95d4-2fe00da1568c\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupJobs/16cb625d-51f4-4a5b-8932-85a9e11f8a09\",\r\n \"name\": \"16cb625d-51f4-4a5b-8932-85a9e11f8a09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg2a085f1b;pstestvm2a0850\",\r\n \"duration\": \"PT17M36.2025143S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm2a0850\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm2a0850\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T06:06:29.7845766Z\",\r\n \"activityId\": \"bcd2a12f-4272-4dc7-83e6-769270a3c520\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfee9dac/backupJobs/933437e4-1125-4961-8fc4-572c4cc4b1e5?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZlZTlkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmVlOWRhYy9iYWNrdXBKb2JzLzkzMzQzN2U0LTExMjUtNDk2MS04ZmM0LTU3MmM0Y2M0YjFlNT9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupJobs/16cb625d-51f4-4a5b-8932-85a9e11f8a09?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMmEwODVmMWIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YyYTA4NWYxYi9iYWNrdXBKb2JzLzE2Y2I2MjVkLTUxZjQtNGE1Yi04OTMyLTg1YTllMTFmOGEwOT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f582a7a7-0991-4901-95d4-2fe00da1568c" + "bcd2a12f-4272-4dc7-83e6-769270a3c520" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -7789,11 +7972,11 @@ "nosniff" ], "x-ms-request-id": [ - "63d0b27a-c314-469d-a9e3-699620b605de" + "55570956-787d-47ed-be25-c91982a87558" ], "x-ms-client-request-id": [ - "f582a7a7-0991-4901-95d4-2fe00da1568c", - "f582a7a7-0991-4901-95d4-2fe00da1568c" + "bcd2a12f-4272-4dc7-83e6-769270a3c520", + "bcd2a12f-4272-4dc7-83e6-769270a3c520" ], "X-Powered-By": [ "ASP.NET" @@ -7802,19 +7985,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "104" + "112" ], "x-ms-correlation-request-id": [ - "63d0b27a-c314-469d-a9e3-699620b605de" + "55570956-787d-47ed-be25-c91982a87558" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T185333Z:63d0b27a-c314-469d-a9e3-699620b605de" + "JIOINDIAWEST:20220517T062437Z:55570956-787d-47ed-be25-c91982a87558" ], "Date": [ - "Thu, 24 Feb 2022 18:53:32 GMT" + "Tue, 17 May 2022 06:24:37 GMT" ], "Content-Length": [ - "971" + "970" ], "Content-Type": [ "application/json" @@ -7823,26 +8006,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfee9dac/backupJobs/933437e4-1125-4961-8fc4-572c4cc4b1e5\",\r\n \"name\": \"933437e4-1125-4961-8fc4-572c4cc4b1e5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgbfee9dac;pstestvmbfee90\",\r\n \"duration\": \"PT46M35.3709108S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvmbfee90\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvmbfee90\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-24T18:06:57.8348208Z\",\r\n \"activityId\": \"f582a7a7-0991-4901-95d4-2fe00da1568c\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupJobs/16cb625d-51f4-4a5b-8932-85a9e11f8a09\",\r\n \"name\": \"16cb625d-51f4-4a5b-8932-85a9e11f8a09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg2a085f1b;pstestvm2a0850\",\r\n \"duration\": \"PT18M6.9453418S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm2a0850\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm2a0850\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T06:06:29.7845766Z\",\r\n \"activityId\": \"bcd2a12f-4272-4dc7-83e6-769270a3c520\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfee9dac/backupJobs/933437e4-1125-4961-8fc4-572c4cc4b1e5?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZlZTlkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmVlOWRhYy9iYWNrdXBKb2JzLzkzMzQzN2U0LTExMjUtNDk2MS04ZmM0LTU3MmM0Y2M0YjFlNT9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupJobs/16cb625d-51f4-4a5b-8932-85a9e11f8a09?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMmEwODVmMWIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YyYTA4NWYxYi9iYWNrdXBKb2JzLzE2Y2I2MjVkLTUxZjQtNGE1Yi04OTMyLTg1YTllMTFmOGEwOT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f582a7a7-0991-4901-95d4-2fe00da1568c" + "bcd2a12f-4272-4dc7-83e6-769270a3c520" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -7860,11 +8043,11 @@ "nosniff" ], "x-ms-request-id": [ - "583510e5-8cef-4f8f-a12b-6d76d3b477ef" + "9860f578-f9e8-40c7-9bdb-3ef1807ff3b5" ], "x-ms-client-request-id": [ - "f582a7a7-0991-4901-95d4-2fe00da1568c", - "f582a7a7-0991-4901-95d4-2fe00da1568c" + "bcd2a12f-4272-4dc7-83e6-769270a3c520", + "bcd2a12f-4272-4dc7-83e6-769270a3c520" ], "X-Powered-By": [ "ASP.NET" @@ -7873,16 +8056,16 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "103" + "111" ], "x-ms-correlation-request-id": [ - "583510e5-8cef-4f8f-a12b-6d76d3b477ef" + "9860f578-f9e8-40c7-9bdb-3ef1807ff3b5" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T185435Z:583510e5-8cef-4f8f-a12b-6d76d3b477ef" + "JIOINDIAWEST:20220517T062507Z:9860f578-f9e8-40c7-9bdb-3ef1807ff3b5" ], "Date": [ - "Thu, 24 Feb 2022 18:54:35 GMT" + "Tue, 17 May 2022 06:25:07 GMT" ], "Content-Length": [ "971" @@ -7894,26 +8077,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfee9dac/backupJobs/933437e4-1125-4961-8fc4-572c4cc4b1e5\",\r\n \"name\": \"933437e4-1125-4961-8fc4-572c4cc4b1e5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgbfee9dac;pstestvmbfee90\",\r\n \"duration\": \"PT47M37.4626542S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvmbfee90\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvmbfee90\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-24T18:06:57.8348208Z\",\r\n \"activityId\": \"f582a7a7-0991-4901-95d4-2fe00da1568c\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupJobs/16cb625d-51f4-4a5b-8932-85a9e11f8a09\",\r\n \"name\": \"16cb625d-51f4-4a5b-8932-85a9e11f8a09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg2a085f1b;pstestvm2a0850\",\r\n \"duration\": \"PT18M37.6449758S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm2a0850\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm2a0850\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T06:06:29.7845766Z\",\r\n \"activityId\": \"bcd2a12f-4272-4dc7-83e6-769270a3c520\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfee9dac/backupJobs/933437e4-1125-4961-8fc4-572c4cc4b1e5?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZlZTlkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmVlOWRhYy9iYWNrdXBKb2JzLzkzMzQzN2U0LTExMjUtNDk2MS04ZmM0LTU3MmM0Y2M0YjFlNT9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupJobs/16cb625d-51f4-4a5b-8932-85a9e11f8a09?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMmEwODVmMWIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YyYTA4NWYxYi9iYWNrdXBKb2JzLzE2Y2I2MjVkLTUxZjQtNGE1Yi04OTMyLTg1YTllMTFmOGEwOT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f582a7a7-0991-4901-95d4-2fe00da1568c" + "bcd2a12f-4272-4dc7-83e6-769270a3c520" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -7931,11 +8114,11 @@ "nosniff" ], "x-ms-request-id": [ - "dcf76872-a3e3-4855-84d2-6cfc5b86e1ec" + "831552f4-7052-4861-b5d8-502efa176cd9" ], "x-ms-client-request-id": [ - "f582a7a7-0991-4901-95d4-2fe00da1568c", - "f582a7a7-0991-4901-95d4-2fe00da1568c" + "bcd2a12f-4272-4dc7-83e6-769270a3c520", + "bcd2a12f-4272-4dc7-83e6-769270a3c520" ], "X-Powered-By": [ "ASP.NET" @@ -7944,19 +8127,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "102" + "110" ], "x-ms-correlation-request-id": [ - "dcf76872-a3e3-4855-84d2-6cfc5b86e1ec" + "831552f4-7052-4861-b5d8-502efa176cd9" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T185557Z:dcf76872-a3e3-4855-84d2-6cfc5b86e1ec" + "JIOINDIAWEST:20220517T062539Z:831552f4-7052-4861-b5d8-502efa176cd9" ], "Date": [ - "Thu, 24 Feb 2022 18:55:57 GMT" + "Tue, 17 May 2022 06:25:38 GMT" ], "Content-Length": [ - "971" + "970" ], "Content-Type": [ "application/json" @@ -7965,26 +8148,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfee9dac/backupJobs/933437e4-1125-4961-8fc4-572c4cc4b1e5\",\r\n \"name\": \"933437e4-1125-4961-8fc4-572c4cc4b1e5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgbfee9dac;pstestvmbfee90\",\r\n \"duration\": \"PT48M58.7321134S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvmbfee90\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvmbfee90\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-24T18:06:57.8348208Z\",\r\n \"activityId\": \"f582a7a7-0991-4901-95d4-2fe00da1568c\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupJobs/16cb625d-51f4-4a5b-8932-85a9e11f8a09\",\r\n \"name\": \"16cb625d-51f4-4a5b-8932-85a9e11f8a09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg2a085f1b;pstestvm2a0850\",\r\n \"duration\": \"PT19M8.8822204S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm2a0850\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm2a0850\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T06:06:29.7845766Z\",\r\n \"activityId\": \"bcd2a12f-4272-4dc7-83e6-769270a3c520\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfee9dac/backupJobs/933437e4-1125-4961-8fc4-572c4cc4b1e5?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZlZTlkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmVlOWRhYy9iYWNrdXBKb2JzLzkzMzQzN2U0LTExMjUtNDk2MS04ZmM0LTU3MmM0Y2M0YjFlNT9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupJobs/16cb625d-51f4-4a5b-8932-85a9e11f8a09?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMmEwODVmMWIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YyYTA4NWYxYi9iYWNrdXBKb2JzLzE2Y2I2MjVkLTUxZjQtNGE1Yi04OTMyLTg1YTllMTFmOGEwOT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f582a7a7-0991-4901-95d4-2fe00da1568c" + "bcd2a12f-4272-4dc7-83e6-769270a3c520" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -8002,11 +8185,11 @@ "nosniff" ], "x-ms-request-id": [ - "4c7507b8-7920-4115-9a35-0f791e0532b1" + "153d4c78-6557-4bc3-a8fc-e81df06522cd" ], "x-ms-client-request-id": [ - "f582a7a7-0991-4901-95d4-2fe00da1568c", - "f582a7a7-0991-4901-95d4-2fe00da1568c" + "bcd2a12f-4272-4dc7-83e6-769270a3c520", + "bcd2a12f-4272-4dc7-83e6-769270a3c520" ], "X-Powered-By": [ "ASP.NET" @@ -8015,19 +8198,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "101" + "109" ], "x-ms-correlation-request-id": [ - "4c7507b8-7920-4115-9a35-0f791e0532b1" + "153d4c78-6557-4bc3-a8fc-e81df06522cd" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T185659Z:4c7507b8-7920-4115-9a35-0f791e0532b1" + "JIOINDIAWEST:20220517T062609Z:153d4c78-6557-4bc3-a8fc-e81df06522cd" ], "Date": [ - "Thu, 24 Feb 2022 18:56:59 GMT" + "Tue, 17 May 2022 06:26:09 GMT" ], "Content-Length": [ - "970" + "971" ], "Content-Type": [ "application/json" @@ -8036,26 +8219,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfee9dac/backupJobs/933437e4-1125-4961-8fc4-572c4cc4b1e5\",\r\n \"name\": \"933437e4-1125-4961-8fc4-572c4cc4b1e5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgbfee9dac;pstestvmbfee90\",\r\n \"duration\": \"PT50M1.1208757S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvmbfee90\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvmbfee90\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-24T18:06:57.8348208Z\",\r\n \"activityId\": \"f582a7a7-0991-4901-95d4-2fe00da1568c\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupJobs/16cb625d-51f4-4a5b-8932-85a9e11f8a09\",\r\n \"name\": \"16cb625d-51f4-4a5b-8932-85a9e11f8a09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg2a085f1b;pstestvm2a0850\",\r\n \"duration\": \"PT19M39.5566297S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm2a0850\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm2a0850\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T06:06:29.7845766Z\",\r\n \"activityId\": \"bcd2a12f-4272-4dc7-83e6-769270a3c520\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfee9dac/backupJobs/933437e4-1125-4961-8fc4-572c4cc4b1e5?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZlZTlkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmVlOWRhYy9iYWNrdXBKb2JzLzkzMzQzN2U0LTExMjUtNDk2MS04ZmM0LTU3MmM0Y2M0YjFlNT9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupJobs/16cb625d-51f4-4a5b-8932-85a9e11f8a09?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMmEwODVmMWIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YyYTA4NWYxYi9iYWNrdXBKb2JzLzE2Y2I2MjVkLTUxZjQtNGE1Yi04OTMyLTg1YTllMTFmOGEwOT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f582a7a7-0991-4901-95d4-2fe00da1568c" + "bcd2a12f-4272-4dc7-83e6-769270a3c520" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -8073,11 +8256,11 @@ "nosniff" ], "x-ms-request-id": [ - "cbee28a1-63a3-446d-884e-c1b6685087a5" + "0f5ca1d2-b726-4182-a206-a50e18a8d98c" ], "x-ms-client-request-id": [ - "f582a7a7-0991-4901-95d4-2fe00da1568c", - "f582a7a7-0991-4901-95d4-2fe00da1568c" + "bcd2a12f-4272-4dc7-83e6-769270a3c520", + "bcd2a12f-4272-4dc7-83e6-769270a3c520" ], "X-Powered-By": [ "ASP.NET" @@ -8086,19 +8269,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "100" + "108" ], "x-ms-correlation-request-id": [ - "cbee28a1-63a3-446d-884e-c1b6685087a5" + "0f5ca1d2-b726-4182-a206-a50e18a8d98c" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T185801Z:cbee28a1-63a3-446d-884e-c1b6685087a5" + "JIOINDIAWEST:20220517T062640Z:0f5ca1d2-b726-4182-a206-a50e18a8d98c" ], "Date": [ - "Thu, 24 Feb 2022 18:58:00 GMT" + "Tue, 17 May 2022 06:26:39 GMT" ], "Content-Length": [ - "970" + "971" ], "Content-Type": [ "application/json" @@ -8107,26 +8290,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfee9dac/backupJobs/933437e4-1125-4961-8fc4-572c4cc4b1e5\",\r\n \"name\": \"933437e4-1125-4961-8fc4-572c4cc4b1e5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgbfee9dac;pstestvmbfee90\",\r\n \"duration\": \"PT51M3.1272672S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvmbfee90\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvmbfee90\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-24T18:06:57.8348208Z\",\r\n \"activityId\": \"f582a7a7-0991-4901-95d4-2fe00da1568c\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupJobs/16cb625d-51f4-4a5b-8932-85a9e11f8a09\",\r\n \"name\": \"16cb625d-51f4-4a5b-8932-85a9e11f8a09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg2a085f1b;pstestvm2a0850\",\r\n \"duration\": \"PT20M10.4008434S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm2a0850\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm2a0850\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T06:06:29.7845766Z\",\r\n \"activityId\": \"bcd2a12f-4272-4dc7-83e6-769270a3c520\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfee9dac/backupJobs/933437e4-1125-4961-8fc4-572c4cc4b1e5?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZlZTlkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmVlOWRhYy9iYWNrdXBKb2JzLzkzMzQzN2U0LTExMjUtNDk2MS04ZmM0LTU3MmM0Y2M0YjFlNT9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupJobs/16cb625d-51f4-4a5b-8932-85a9e11f8a09?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMmEwODVmMWIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YyYTA4NWYxYi9iYWNrdXBKb2JzLzE2Y2I2MjVkLTUxZjQtNGE1Yi04OTMyLTg1YTllMTFmOGEwOT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f582a7a7-0991-4901-95d4-2fe00da1568c" + "bcd2a12f-4272-4dc7-83e6-769270a3c520" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -8144,11 +8327,11 @@ "nosniff" ], "x-ms-request-id": [ - "6c1a68af-21d3-4932-a415-dfb97c41809d" + "2de9ffe5-6244-4195-9bcc-23177ab9365e" ], "x-ms-client-request-id": [ - "f582a7a7-0991-4901-95d4-2fe00da1568c", - "f582a7a7-0991-4901-95d4-2fe00da1568c" + "bcd2a12f-4272-4dc7-83e6-769270a3c520", + "bcd2a12f-4272-4dc7-83e6-769270a3c520" ], "X-Powered-By": [ "ASP.NET" @@ -8157,19 +8340,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "99" + "107" ], "x-ms-correlation-request-id": [ - "6c1a68af-21d3-4932-a415-dfb97c41809d" + "2de9ffe5-6244-4195-9bcc-23177ab9365e" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T185931Z:6c1a68af-21d3-4932-a415-dfb97c41809d" + "JIOINDIAWEST:20220517T062711Z:2de9ffe5-6244-4195-9bcc-23177ab9365e" ], "Date": [ - "Thu, 24 Feb 2022 18:59:30 GMT" + "Tue, 17 May 2022 06:27:11 GMT" ], "Content-Length": [ - "1035" + "971" ], "Content-Type": [ "application/json" @@ -8178,26 +8361,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfee9dac/backupJobs/933437e4-1125-4961-8fc4-572c4cc4b1e5\",\r\n \"name\": \"933437e4-1125-4961-8fc4-572c4cc4b1e5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgbfee9dac;pstestvmbfee90\",\r\n \"duration\": \"PT51M14.0865908S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvmbfee90\",\r\n \"Backup Size\": \"10106 MB\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvmbfee90\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-02-24T18:06:57.8348208Z\",\r\n \"endTime\": \"2022-02-24T18:58:11.9214116Z\",\r\n \"activityId\": \"f582a7a7-0991-4901-95d4-2fe00da1568c\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupJobs/16cb625d-51f4-4a5b-8932-85a9e11f8a09\",\r\n \"name\": \"16cb625d-51f4-4a5b-8932-85a9e11f8a09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg2a085f1b;pstestvm2a0850\",\r\n \"duration\": \"PT20M41.1888723S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm2a0850\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm2a0850\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T06:06:29.7845766Z\",\r\n \"activityId\": \"bcd2a12f-4272-4dc7-83e6-769270a3c520\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfee9dac/backupFabrics/Azure/protectionContainers/IaasVMContainer%3Biaasvmcontainerv2%3Bpstestrgbfee9dac%3Bpstestvmbfee90/protectedItems/VM%3Biaasvmcontainerv2%3Bpstestrgbfee9dac%3Bpstestvmbfee90/recoveryPoints?$filter=startDate%20eq%20'2022-02-24%2006:05:57%20PM'%20and%20endDate%20eq%20'2022-02-24%2006:59:11%20PM'&api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZlZTlkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmVlOWRhYy9iYWNrdXBGYWJyaWNzL0F6dXJlL3Byb3RlY3Rpb25Db250YWluZXJzL0lhYXNWTUNvbnRhaW5lciUzQmlhYXN2bWNvbnRhaW5lcnYyJTNCcHN0ZXN0cmdiZmVlOWRhYyUzQnBzdGVzdHZtYmZlZTkwL3Byb3RlY3RlZEl0ZW1zL1ZNJTNCaWFhc3ZtY29udGFpbmVydjIlM0Jwc3Rlc3RyZ2JmZWU5ZGFjJTNCcHN0ZXN0dm1iZmVlOTAvcmVjb3ZlcnlQb2ludHM/JGZpbHRlcj1zdGFydERhdGUlMjBlcSUyMCcyMDIyLTAyLTI0JTIwMDY6MDU6NTclMjBQTSclMjBhbmQlMjBlbmREYXRlJTIwZXElMjAnMjAyMi0wMi0yNCUyMDA2OjU5OjExJTIwUE0nJmFwaS12ZXJzaW9uPTIwMjEtMTAtMDE=", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupJobs/16cb625d-51f4-4a5b-8932-85a9e11f8a09?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMmEwODVmMWIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YyYTA4NWYxYi9iYWNrdXBKb2JzLzE2Y2I2MjVkLTUxZjQtNGE1Yi04OTMyLTg1YTllMTFmOGEwOT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7d7f62a4-f01b-4244-a2d4-64e24ce44774" + "bcd2a12f-4272-4dc7-83e6-769270a3c520" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -8207,39 +8390,40 @@ "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-IIS/10.0", + "Microsoft-IIS/10.0" + ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "cc78cc2c-5d81-4e20-9335-13235f0417db" + "6ada1a97-e61e-47fc-8a28-49733342a44d" ], "x-ms-client-request-id": [ - "7d7f62a4-f01b-4244-a2d4-64e24ce44774", - "7d7f62a4-f01b-4244-a2d4-64e24ce44774" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-IIS/10.0" + "bcd2a12f-4272-4dc7-83e6-769270a3c520", + "bcd2a12f-4272-4dc7-83e6-769270a3c520" ], "X-Powered-By": [ "ASP.NET" ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "149" + "106" ], "x-ms-correlation-request-id": [ - "cc78cc2c-5d81-4e20-9335-13235f0417db" + "6ada1a97-e61e-47fc-8a28-49733342a44d" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T185932Z:cc78cc2c-5d81-4e20-9335-13235f0417db" + "JIOINDIAWEST:20220517T062742Z:6ada1a97-e61e-47fc-8a28-49733342a44d" ], "Date": [ - "Thu, 24 Feb 2022 18:59:32 GMT" + "Tue, 17 May 2022 06:27:41 GMT" ], "Content-Length": [ - "1259" + "970" ], "Content-Type": [ "application/json" @@ -8248,26 +8432,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfee9dac/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrgbfee9dac;pstestvmbfee90/protectedItems/VM;iaasvmcontainerv2;pstestrgbfee9dac;pstestvmbfee90/recoveryPoints/157250105138399\",\r\n \"name\": \"157250105138399\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints\",\r\n \"properties\": {\r\n \"objectType\": \"IaasVMRecoveryPoint\",\r\n \"recoveryPointType\": \"AppConsistent\",\r\n \"recoveryPointTime\": \"2022-02-24T18:07:03.5199409Z\",\r\n \"recoveryPointAdditionalInfo\": \"\",\r\n \"sourceVMStorageType\": \"NormalStorage\",\r\n \"isSourceVMEncrypted\": false,\r\n \"isInstantIlrSessionActive\": false,\r\n \"recoveryPointTierDetails\": [\r\n {\r\n \"type\": 1,\r\n \"status\": 1\r\n },\r\n {\r\n \"type\": 2,\r\n \"status\": 1\r\n }\r\n ],\r\n \"isManagedVirtualMachine\": true,\r\n \"virtualMachineSize\": \"Standard_D1_v2\",\r\n \"originalStorageAccountOption\": false,\r\n \"osType\": \"Windows\",\r\n \"recoveryPointMoveReadinessInfo\": {\r\n \"ArchivedRP\": {\r\n \"isReadyForMove\": false,\r\n \"additionalInfo\": \"Recovery point cannot be moved to Archive tier due to insufficient retention duration specified in policy.. Update policy on the protected item with appropriate retention setting and try again.\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupJobs/16cb625d-51f4-4a5b-8932-85a9e11f8a09\",\r\n \"name\": \"16cb625d-51f4-4a5b-8932-85a9e11f8a09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg2a085f1b;pstestvm2a0850\",\r\n \"duration\": \"PT21M11.892743S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm2a0850\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm2a0850\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T06:06:29.7845766Z\",\r\n \"activityId\": \"bcd2a12f-4272-4dc7-83e6-769270a3c520\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resources?$filter=resourceType%20eq%20'Microsoft.ClassicStorage%2FstorageAccounts'&api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5DbGFzc2ljU3RvcmFnZSUyRnN0b3JhZ2VBY2NvdW50cycmYXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupJobs/16cb625d-51f4-4a5b-8932-85a9e11f8a09?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMmEwODVmMWIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YyYTA4NWYxYi9iYWNrdXBKb2JzLzE2Y2I2MjVkLTUxZjQtNGE1Yi04OTMyLTg1YTllMTFmOGEwOT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "32ff9468-c517-4a23-9d95-222eef0018bc" + "bcd2a12f-4272-4dc7-83e6-769270a3c520" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -8277,57 +8461,68 @@ "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "Server": [ + "Microsoft-IIS/10.0", + "Microsoft-IIS/10.0" + ], + "X-Content-Type-Options": [ + "nosniff" ], "x-ms-request-id": [ - "32130d8c-60b3-49e1-b395-a93f6947ce46" + "26ef4bc7-8004-4198-9edc-98456b1c3d29" ], - "x-ms-correlation-request-id": [ - "32130d8c-60b3-49e1-b395-a93f6947ce46" + "x-ms-client-request-id": [ + "bcd2a12f-4272-4dc7-83e6-769270a3c520", + "bcd2a12f-4272-4dc7-83e6-769270a3c520" ], - "x-ms-routing-request-id": [ - "CENTRALUS:20220224T185933Z:32130d8c-60b3-49e1-b395-a93f6947ce46" + "X-Powered-By": [ + "ASP.NET" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ - "nosniff" + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "105" + ], + "x-ms-correlation-request-id": [ + "26ef4bc7-8004-4198-9edc-98456b1c3d29" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220517T062813Z:26ef4bc7-8004-4198-9edc-98456b1c3d29" ], "Date": [ - "Thu, 24 Feb 2022 18:59:32 GMT" + "Tue, 17 May 2022 06:28:12 GMT" + ], + "Content-Length": [ + "971" ], "Content-Type": [ - "application/json; charset=utf-8" + "application/json" ], "Expires": [ "-1" - ], - "Content-Length": [ - "12" ] }, - "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupJobs/16cb625d-51f4-4a5b-8932-85a9e11f8a09\",\r\n \"name\": \"16cb625d-51f4-4a5b-8932-85a9e11f8a09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg2a085f1b;pstestvm2a0850\",\r\n \"duration\": \"PT21M43.1257145S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm2a0850\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm2a0850\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T06:06:29.7845766Z\",\r\n \"activityId\": \"bcd2a12f-4272-4dc7-83e6-769270a3c520\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resources?$filter=resourceType%20eq%20'Microsoft.ClassicStorage%2FstorageAccounts'&api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5DbGFzc2ljU3RvcmFnZSUyRnN0b3JhZ2VBY2NvdW50cycmYXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupJobs/16cb625d-51f4-4a5b-8932-85a9e11f8a09?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMmEwODVmMWIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YyYTA4NWYxYi9iYWNrdXBKb2JzLzE2Y2I2MjVkLTUxZjQtNGE1Yi04OTMyLTg1YTllMTFmOGEwOT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d5ae230b-3d24-4553-a1b3-501e4e22f2d7" + "bcd2a12f-4272-4dc7-83e6-769270a3c520" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -8337,57 +8532,68 @@ "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "Server": [ + "Microsoft-IIS/10.0", + "Microsoft-IIS/10.0" + ], + "X-Content-Type-Options": [ + "nosniff" ], "x-ms-request-id": [ - "c8b49385-82b0-4e69-88c3-41911b5ecbc4" + "3a01fb76-b5e4-449d-9fa0-b4c255ea49f0" ], - "x-ms-correlation-request-id": [ - "c8b49385-82b0-4e69-88c3-41911b5ecbc4" + "x-ms-client-request-id": [ + "bcd2a12f-4272-4dc7-83e6-769270a3c520", + "bcd2a12f-4272-4dc7-83e6-769270a3c520" ], - "x-ms-routing-request-id": [ - "CENTRALUS:20220224T185933Z:c8b49385-82b0-4e69-88c3-41911b5ecbc4" + "X-Powered-By": [ + "ASP.NET" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ - "nosniff" + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "104" + ], + "x-ms-correlation-request-id": [ + "3a01fb76-b5e4-449d-9fa0-b4c255ea49f0" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220517T062844Z:3a01fb76-b5e4-449d-9fa0-b4c255ea49f0" ], "Date": [ - "Thu, 24 Feb 2022 18:59:32 GMT" + "Tue, 17 May 2022 06:28:43 GMT" + ], + "Content-Length": [ + "971" ], "Content-Type": [ - "application/json; charset=utf-8" + "application/json" ], "Expires": [ "-1" - ], - "Content-Length": [ - "12" ] }, - "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupJobs/16cb625d-51f4-4a5b-8932-85a9e11f8a09\",\r\n \"name\": \"16cb625d-51f4-4a5b-8932-85a9e11f8a09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg2a085f1b;pstestvm2a0850\",\r\n \"duration\": \"PT22M14.1068139S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm2a0850\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm2a0850\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T06:06:29.7845766Z\",\r\n \"activityId\": \"bcd2a12f-4272-4dc7-83e6-769270a3c520\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resources?$filter=resourceType%20eq%20'Microsoft.ClassicStorage%2FstorageAccounts'&api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5DbGFzc2ljU3RvcmFnZSUyRnN0b3JhZ2VBY2NvdW50cycmYXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupJobs/16cb625d-51f4-4a5b-8932-85a9e11f8a09?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMmEwODVmMWIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YyYTA4NWYxYi9iYWNrdXBKb2JzLzE2Y2I2MjVkLTUxZjQtNGE1Yi04OTMyLTg1YTllMTFmOGEwOT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0a13ea5c-4683-4930-847f-733fc7606ca5" + "bcd2a12f-4272-4dc7-83e6-769270a3c520" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -8397,57 +8603,68 @@ "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "Server": [ + "Microsoft-IIS/10.0", + "Microsoft-IIS/10.0" ], - "x-ms-request-id": [ - "d13ec988-4220-4934-9242-eaccbdd67a53" + "X-Content-Type-Options": [ + "nosniff" ], - "x-ms-correlation-request-id": [ - "d13ec988-4220-4934-9242-eaccbdd67a53" + "x-ms-request-id": [ + "4b61f00b-d11c-4ccb-bf2b-553c81091f3e" ], - "x-ms-routing-request-id": [ - "CENTRALUS:20220224T191607Z:d13ec988-4220-4934-9242-eaccbdd67a53" + "x-ms-client-request-id": [ + "bcd2a12f-4272-4dc7-83e6-769270a3c520", + "bcd2a12f-4272-4dc7-83e6-769270a3c520" + ], + "X-Powered-By": [ + "ASP.NET" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ - "nosniff" + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "103" + ], + "x-ms-correlation-request-id": [ + "4b61f00b-d11c-4ccb-bf2b-553c81091f3e" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220517T062915Z:4b61f00b-d11c-4ccb-bf2b-553c81091f3e" ], "Date": [ - "Thu, 24 Feb 2022 19:16:06 GMT" + "Tue, 17 May 2022 06:29:14 GMT" + ], + "Content-Length": [ + "971" ], "Content-Type": [ - "application/json; charset=utf-8" + "application/json" ], "Expires": [ "-1" - ], - "Content-Length": [ - "12" ] }, - "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupJobs/16cb625d-51f4-4a5b-8932-85a9e11f8a09\",\r\n \"name\": \"16cb625d-51f4-4a5b-8932-85a9e11f8a09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg2a085f1b;pstestvm2a0850\",\r\n \"duration\": \"PT22M44.6878841S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm2a0850\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm2a0850\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T06:06:29.7845766Z\",\r\n \"activityId\": \"bcd2a12f-4272-4dc7-83e6-769270a3c520\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resources?$filter=resourceType%20eq%20'Microsoft.Storage%2FstorageAccounts'&api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5TdG9yYWdlJTJGc3RvcmFnZUFjY291bnRzJyZhcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupJobs/16cb625d-51f4-4a5b-8932-85a9e11f8a09?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMmEwODVmMWIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YyYTA4NWYxYi9iYWNrdXBKb2JzLzE2Y2I2MjVkLTUxZjQtNGE1Yi04OTMyLTg1YTllMTFmOGEwOT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "32ff9468-c517-4a23-9d95-222eef0018bc" + "bcd2a12f-4272-4dc7-83e6-769270a3c520" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -8457,57 +8674,68 @@ "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "Server": [ + "Microsoft-IIS/10.0", + "Microsoft-IIS/10.0" + ], + "X-Content-Type-Options": [ + "nosniff" ], "x-ms-request-id": [ - "5ff67d90-aeab-4b1d-8abf-a430ee6a636d" + "d5c917f6-46bc-4196-a1b4-437a15c075b8" ], - "x-ms-correlation-request-id": [ - "5ff67d90-aeab-4b1d-8abf-a430ee6a636d" + "x-ms-client-request-id": [ + "bcd2a12f-4272-4dc7-83e6-769270a3c520", + "bcd2a12f-4272-4dc7-83e6-769270a3c520" ], - "x-ms-routing-request-id": [ - "CENTRALUS:20220224T185933Z:5ff67d90-aeab-4b1d-8abf-a430ee6a636d" + "X-Powered-By": [ + "ASP.NET" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ - "nosniff" + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "102" + ], + "x-ms-correlation-request-id": [ + "d5c917f6-46bc-4196-a1b4-437a15c075b8" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220517T062945Z:d5c917f6-46bc-4196-a1b4-437a15c075b8" ], "Date": [ - "Thu, 24 Feb 2022 18:59:32 GMT" + "Tue, 17 May 2022 06:29:45 GMT" + ], + "Content-Length": [ + "971" ], "Content-Type": [ - "application/json; charset=utf-8" + "application/json" ], "Expires": [ "-1" - ], - "Content-Length": [ - "2403" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/cloud-shell-storage-eastus/providers/Microsoft.Storage/storageAccounts/cs210037ffe990c019c\",\r\n \"name\": \"cs210037ffe990c019c\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"ms-resource-usage\": \"azure-cloud-shell\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/cloud-shell-storage-eastus/providers/Microsoft.Storage/storageAccounts/cs210032000aba2e07b\",\r\n \"name\": \"cs210032000aba2e07b\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"ms-resource-usage\": \"azure-cloud-shell\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/cloud-shell-storage-eastus/providers/Microsoft.Storage/storageAccounts/cs210032000ab9e6a19\",\r\n \"name\": \"cs210032000ab9e6a19\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"ms-resource-usage\": \"azure-cloud-shell\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/theo_test/providers/Microsoft.Storage/storageAccounts/theostoracc\",\r\n \"name\": \"theostoracc\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.Storage/storageAccounts/pstestsabfee9dac\",\r\n \"name\": \"pstestsabfee9dac\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/theo_test/providers/Microsoft.Storage/storageAccounts/theoml1885500734\",\r\n \"name\": \"theoml1885500734\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps5273/providers/Microsoft.Storage/storageAccounts/stocrptestps5273\",\r\n \"name\": \"stocrptestps5273\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupJobs/16cb625d-51f4-4a5b-8932-85a9e11f8a09\",\r\n \"name\": \"16cb625d-51f4-4a5b-8932-85a9e11f8a09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg2a085f1b;pstestvm2a0850\",\r\n \"duration\": \"PT23M15.3212666S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm2a0850\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm2a0850\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T06:06:29.7845766Z\",\r\n \"activityId\": \"bcd2a12f-4272-4dc7-83e6-769270a3c520\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resources?$filter=resourceType%20eq%20'Microsoft.Storage%2FstorageAccounts'&api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5TdG9yYWdlJTJGc3RvcmFnZUFjY291bnRzJyZhcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupJobs/16cb625d-51f4-4a5b-8932-85a9e11f8a09?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMmEwODVmMWIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YyYTA4NWYxYi9iYWNrdXBKb2JzLzE2Y2I2MjVkLTUxZjQtNGE1Yi04OTMyLTg1YTllMTFmOGEwOT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d5ae230b-3d24-4553-a1b3-501e4e22f2d7" + "bcd2a12f-4272-4dc7-83e6-769270a3c520" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -8517,57 +8745,68 @@ "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "Server": [ + "Microsoft-IIS/10.0", + "Microsoft-IIS/10.0" + ], + "X-Content-Type-Options": [ + "nosniff" ], "x-ms-request-id": [ - "767f0e5c-152c-4e41-a464-2468cd581f69" + "7f5d856d-29a8-4ce7-93e7-3348b40097e3" ], - "x-ms-correlation-request-id": [ - "767f0e5c-152c-4e41-a464-2468cd581f69" + "x-ms-client-request-id": [ + "bcd2a12f-4272-4dc7-83e6-769270a3c520", + "bcd2a12f-4272-4dc7-83e6-769270a3c520" ], - "x-ms-routing-request-id": [ - "CENTRALUS:20220224T185933Z:767f0e5c-152c-4e41-a464-2468cd581f69" + "X-Powered-By": [ + "ASP.NET" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ - "nosniff" + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "101" + ], + "x-ms-correlation-request-id": [ + "7f5d856d-29a8-4ce7-93e7-3348b40097e3" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220517T063016Z:7f5d856d-29a8-4ce7-93e7-3348b40097e3" ], "Date": [ - "Thu, 24 Feb 2022 18:59:32 GMT" + "Tue, 17 May 2022 06:30:15 GMT" + ], + "Content-Length": [ + "971" ], "Content-Type": [ - "application/json; charset=utf-8" + "application/json" ], "Expires": [ "-1" - ], - "Content-Length": [ - "2403" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/cloud-shell-storage-eastus/providers/Microsoft.Storage/storageAccounts/cs210037ffe990c019c\",\r\n \"name\": \"cs210037ffe990c019c\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"ms-resource-usage\": \"azure-cloud-shell\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/cloud-shell-storage-eastus/providers/Microsoft.Storage/storageAccounts/cs210032000aba2e07b\",\r\n \"name\": \"cs210032000aba2e07b\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"ms-resource-usage\": \"azure-cloud-shell\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/cloud-shell-storage-eastus/providers/Microsoft.Storage/storageAccounts/cs210032000ab9e6a19\",\r\n \"name\": \"cs210032000ab9e6a19\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"ms-resource-usage\": \"azure-cloud-shell\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/theo_test/providers/Microsoft.Storage/storageAccounts/theostoracc\",\r\n \"name\": \"theostoracc\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.Storage/storageAccounts/pstestsabfee9dac\",\r\n \"name\": \"pstestsabfee9dac\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/theo_test/providers/Microsoft.Storage/storageAccounts/theoml1885500734\",\r\n \"name\": \"theoml1885500734\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps5273/providers/Microsoft.Storage/storageAccounts/stocrptestps5273\",\r\n \"name\": \"stocrptestps5273\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupJobs/16cb625d-51f4-4a5b-8932-85a9e11f8a09\",\r\n \"name\": \"16cb625d-51f4-4a5b-8932-85a9e11f8a09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg2a085f1b;pstestvm2a0850\",\r\n \"duration\": \"PT23M45.9453425S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm2a0850\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm2a0850\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T06:06:29.7845766Z\",\r\n \"activityId\": \"bcd2a12f-4272-4dc7-83e6-769270a3c520\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resources?$filter=resourceType%20eq%20'Microsoft.Storage%2FstorageAccounts'&api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5TdG9yYWdlJTJGc3RvcmFnZUFjY291bnRzJyZhcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupJobs/16cb625d-51f4-4a5b-8932-85a9e11f8a09?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMmEwODVmMWIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YyYTA4NWYxYi9iYWNrdXBKb2JzLzE2Y2I2MjVkLTUxZjQtNGE1Yi04OTMyLTg1YTllMTFmOGEwOT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0a13ea5c-4683-4930-847f-733fc7606ca5" + "bcd2a12f-4272-4dc7-83e6-769270a3c520" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -8577,63 +8816,68 @@ "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "Server": [ + "Microsoft-IIS/10.0", + "Microsoft-IIS/10.0" + ], + "X-Content-Type-Options": [ + "nosniff" ], "x-ms-request-id": [ - "f6f86648-594d-4fc8-ba66-e92c044897a8" + "a4cf23b8-a385-4341-b1e4-69028cf21f58" ], - "x-ms-correlation-request-id": [ - "f6f86648-594d-4fc8-ba66-e92c044897a8" + "x-ms-client-request-id": [ + "bcd2a12f-4272-4dc7-83e6-769270a3c520", + "bcd2a12f-4272-4dc7-83e6-769270a3c520" ], - "x-ms-routing-request-id": [ - "CENTRALUS:20220224T191607Z:f6f86648-594d-4fc8-ba66-e92c044897a8" + "X-Powered-By": [ + "ASP.NET" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ - "nosniff" + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "100" + ], + "x-ms-correlation-request-id": [ + "a4cf23b8-a385-4341-b1e4-69028cf21f58" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220517T063046Z:a4cf23b8-a385-4341-b1e4-69028cf21f58" ], "Date": [ - "Thu, 24 Feb 2022 19:16:06 GMT" + "Tue, 17 May 2022 06:30:46 GMT" + ], + "Content-Length": [ + "971" ], "Content-Type": [ - "application/json; charset=utf-8" + "application/json" ], "Expires": [ "-1" - ], - "Content-Length": [ - "2403" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/cloud-shell-storage-eastus/providers/Microsoft.Storage/storageAccounts/cs210037ffe990c019c\",\r\n \"name\": \"cs210037ffe990c019c\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"ms-resource-usage\": \"azure-cloud-shell\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/cloud-shell-storage-eastus/providers/Microsoft.Storage/storageAccounts/cs210032000aba2e07b\",\r\n \"name\": \"cs210032000aba2e07b\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"ms-resource-usage\": \"azure-cloud-shell\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/cloud-shell-storage-eastus/providers/Microsoft.Storage/storageAccounts/cs210032000ab9e6a19\",\r\n \"name\": \"cs210032000ab9e6a19\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"ms-resource-usage\": \"azure-cloud-shell\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/theo_test/providers/Microsoft.Storage/storageAccounts/theostoracc\",\r\n \"name\": \"theostoracc\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.Storage/storageAccounts/pstestsabfee9dac\",\r\n \"name\": \"pstestsabfee9dac\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/theo_test/providers/Microsoft.Storage/storageAccounts/theoml1885500734\",\r\n \"name\": \"theoml1885500734\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps5273/providers/Microsoft.Storage/storageAccounts/stocrptestps5273\",\r\n \"name\": \"stocrptestps5273\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupJobs/16cb625d-51f4-4a5b-8932-85a9e11f8a09\",\r\n \"name\": \"16cb625d-51f4-4a5b-8932-85a9e11f8a09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg2a085f1b;pstestvm2a0850\",\r\n \"duration\": \"PT24M16.6484249S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm2a0850\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm2a0850\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T06:06:29.7845766Z\",\r\n \"activityId\": \"bcd2a12f-4272-4dc7-83e6-769270a3c520\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfee9dac/backupFabrics/Azure/protectionContainers/IaasVMContainer%3Biaasvmcontainerv2%3Bpstestrgbfee9dac%3Bpstestvmbfee90/protectedItems/VM%3Biaasvmcontainerv2%3Bpstestrgbfee9dac%3Bpstestvmbfee90/recoveryPoints/157250105138399/restore?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZlZTlkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmVlOWRhYy9iYWNrdXBGYWJyaWNzL0F6dXJlL3Byb3RlY3Rpb25Db250YWluZXJzL0lhYXNWTUNvbnRhaW5lciUzQmlhYXN2bWNvbnRhaW5lcnYyJTNCcHN0ZXN0cmdiZmVlOWRhYyUzQnBzdGVzdHZtYmZlZTkwL3Byb3RlY3RlZEl0ZW1zL1ZNJTNCaWFhc3ZtY29udGFpbmVydjIlM0Jwc3Rlc3RyZ2JmZWU5ZGFjJTNCcHN0ZXN0dm1iZmVlOTAvcmVjb3ZlcnlQb2ludHMvMTU3MjUwMTA1MTM4Mzk5L3Jlc3RvcmU/YXBpLXZlcnNpb249MjAyMS0xMC0wMQ==", - "RequestMethod": "POST", - "RequestBody": "{\r\n \"properties\": {\r\n \"objectType\": \"IaasVMRestoreRequest\",\r\n \"recoveryPointId\": \"157250105138399\",\r\n \"recoveryType\": \"RestoreDisks\",\r\n \"sourceResourceId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.Compute/virtualMachines/PSTestVMbfee90\",\r\n \"storageAccountId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.Storage/storageAccounts/pstestsabfee9dac\",\r\n \"region\": \"southeastasia\",\r\n \"createNewCloudService\": false,\r\n \"originalStorageAccountOption\": false,\r\n \"restoreWithManagedDisks\": false\r\n }\r\n}", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupJobs/16cb625d-51f4-4a5b-8932-85a9e11f8a09?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMmEwODVmMWIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YyYTA4NWYxYi9iYWNrdXBKb2JzLzE2Y2I2MjVkLTUxZjQtNGE1Yi04OTMyLTg1YTllMTFmOGEwOT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d5ae230b-3d24-4553-a1b3-501e4e22f2d7" + "bcd2a12f-4272-4dc7-83e6-769270a3c520" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "646" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -8643,76 +8887,68 @@ "Pragma": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfee9dac/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrgbfee9dac;pstestvmbfee90/protectedItems/VM;iaasvmcontainerv2;pstestrgbfee9dac;pstestvmbfee90/operationResults/c337c0a7-6b27-4ab7-a75e-498513e89c89?api-version=2021-10-01" - ], - "Retry-After": [ - "60" - ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfee9dac/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrgbfee9dac;pstestvmbfee90/protectedItems/VM;iaasvmcontainerv2;pstestrgbfee9dac;pstestvmbfee90/operationsStatus/c337c0a7-6b27-4ab7-a75e-498513e89c89?api-version=2021-10-01" + "Server": [ + "Microsoft-IIS/10.0", + "Microsoft-IIS/10.0" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "c048a03c-5922-4920-b7e2-a1de6ee9bcb3" + "dacef55f-3d81-4eb9-bacd-7bf1a2ed00ad" ], "x-ms-client-request-id": [ - "d5ae230b-3d24-4553-a1b3-501e4e22f2d7", - "d5ae230b-3d24-4553-a1b3-501e4e22f2d7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "bcd2a12f-4272-4dc7-83e6-769270a3c520", + "bcd2a12f-4272-4dc7-83e6-769270a3c520" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "99" ], "x-ms-correlation-request-id": [ - "c048a03c-5922-4920-b7e2-a1de6ee9bcb3" + "dacef55f-3d81-4eb9-bacd-7bf1a2ed00ad" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T185934Z:c048a03c-5922-4920-b7e2-a1de6ee9bcb3" + "JIOINDIAWEST:20220517T063117Z:dacef55f-3d81-4eb9-bacd-7bf1a2ed00ad" ], "Date": [ - "Thu, 24 Feb 2022 18:59:33 GMT" + "Tue, 17 May 2022 06:31:17 GMT" + ], + "Content-Length": [ + "971" + ], + "Content-Type": [ + "application/json" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, - "ResponseBody": "", - "StatusCode": 202 + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupJobs/16cb625d-51f4-4a5b-8932-85a9e11f8a09\",\r\n \"name\": \"16cb625d-51f4-4a5b-8932-85a9e11f8a09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg2a085f1b;pstestvm2a0850\",\r\n \"duration\": \"PT24M47.3731584S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm2a0850\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm2a0850\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T06:06:29.7845766Z\",\r\n \"activityId\": \"bcd2a12f-4272-4dc7-83e6-769270a3c520\"\r\n }\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfee9dac/backupFabrics/Azure/protectionContainers/IaasVMContainer%3Biaasvmcontainerv2%3Bpstestrgbfee9dac%3Bpstestvmbfee90/protectedItems/VM%3Biaasvmcontainerv2%3Bpstestrgbfee9dac%3Bpstestvmbfee90/recoveryPoints/157250105138399/restore?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZlZTlkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmVlOWRhYy9iYWNrdXBGYWJyaWNzL0F6dXJlL3Byb3RlY3Rpb25Db250YWluZXJzL0lhYXNWTUNvbnRhaW5lciUzQmlhYXN2bWNvbnRhaW5lcnYyJTNCcHN0ZXN0cmdiZmVlOWRhYyUzQnBzdGVzdHZtYmZlZTkwL3Byb3RlY3RlZEl0ZW1zL1ZNJTNCaWFhc3ZtY29udGFpbmVydjIlM0Jwc3Rlc3RyZ2JmZWU5ZGFjJTNCcHN0ZXN0dm1iZmVlOTAvcmVjb3ZlcnlQb2ludHMvMTU3MjUwMTA1MTM4Mzk5L3Jlc3RvcmU/YXBpLXZlcnNpb249MjAyMS0xMC0wMQ==", - "RequestMethod": "POST", - "RequestBody": "{\r\n \"properties\": {\r\n \"objectType\": \"IaasVMRestoreRequest\",\r\n \"recoveryPointId\": \"157250105138399\",\r\n \"recoveryType\": \"RestoreDisks\",\r\n \"sourceResourceId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.Compute/virtualMachines/PSTestVMbfee90\",\r\n \"targetResourceGroupId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac1\",\r\n \"storageAccountId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.Storage/storageAccounts/pstestsabfee9dac\",\r\n \"region\": \"southeastasia\",\r\n \"createNewCloudService\": false,\r\n \"originalStorageAccountOption\": false,\r\n \"restoreWithManagedDisks\": false\r\n }\r\n}", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupJobs/16cb625d-51f4-4a5b-8932-85a9e11f8a09?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMmEwODVmMWIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YyYTA4NWYxYi9iYWNrdXBKb2JzLzE2Y2I2MjVkLTUxZjQtNGE1Yi04OTMyLTg1YTllMTFmOGEwOT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0a13ea5c-4683-4930-847f-733fc7606ca5" + "bcd2a12f-4272-4dc7-83e6-769270a3c520" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "764" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -8722,67 +8958,68 @@ "Pragma": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfee9dac/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrgbfee9dac;pstestvmbfee90/protectedItems/VM;iaasvmcontainerv2;pstestrgbfee9dac;pstestvmbfee90/operationResults/75de57de-6390-4cab-82a8-e3c555eeec62?api-version=2021-10-01" - ], - "Retry-After": [ - "60" - ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfee9dac/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrgbfee9dac;pstestvmbfee90/protectedItems/VM;iaasvmcontainerv2;pstestrgbfee9dac;pstestvmbfee90/operationsStatus/75de57de-6390-4cab-82a8-e3c555eeec62?api-version=2021-10-01" + "Server": [ + "Microsoft-IIS/10.0", + "Microsoft-IIS/10.0" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "2a57342a-6a8d-4602-b128-9e7e63946982" + "2acbe45a-adda-4caf-8d8c-2deea502a079" ], "x-ms-client-request-id": [ - "0a13ea5c-4683-4930-847f-733fc7606ca5", - "0a13ea5c-4683-4930-847f-733fc7606ca5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "bcd2a12f-4272-4dc7-83e6-769270a3c520", + "bcd2a12f-4272-4dc7-83e6-769270a3c520" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "98" ], "x-ms-correlation-request-id": [ - "2a57342a-6a8d-4602-b128-9e7e63946982" + "2acbe45a-adda-4caf-8d8c-2deea502a079" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T191610Z:2a57342a-6a8d-4602-b128-9e7e63946982" + "JIOINDIAWEST:20220517T063148Z:2acbe45a-adda-4caf-8d8c-2deea502a079" ], "Date": [ - "Thu, 24 Feb 2022 19:16:09 GMT" + "Tue, 17 May 2022 06:31:48 GMT" + ], + "Content-Length": [ + "971" + ], + "Content-Type": [ + "application/json" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, - "ResponseBody": "", - "StatusCode": 202 + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupJobs/16cb625d-51f4-4a5b-8932-85a9e11f8a09\",\r\n \"name\": \"16cb625d-51f4-4a5b-8932-85a9e11f8a09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg2a085f1b;pstestvm2a0850\",\r\n \"duration\": \"PT25M18.0607195S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm2a0850\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm2a0850\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T06:06:29.7845766Z\",\r\n \"activityId\": \"bcd2a12f-4272-4dc7-83e6-769270a3c520\"\r\n }\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfee9dac/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrgbfee9dac;pstestvmbfee90/protectedItems/VM;iaasvmcontainerv2;pstestrgbfee9dac;pstestvmbfee90/operationsStatus/c337c0a7-6b27-4ab7-a75e-498513e89c89?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZlZTlkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmVlOWRhYy9iYWNrdXBGYWJyaWNzL0F6dXJlL3Byb3RlY3Rpb25Db250YWluZXJzL0lhYXNWTUNvbnRhaW5lcjtpYWFzdm1jb250YWluZXJ2Mjtwc3Rlc3RyZ2JmZWU5ZGFjO3BzdGVzdHZtYmZlZTkwL3Byb3RlY3RlZEl0ZW1zL1ZNO2lhYXN2bWNvbnRhaW5lcnYyO3BzdGVzdHJnYmZlZTlkYWM7cHN0ZXN0dm1iZmVlOTAvb3BlcmF0aW9uc1N0YXR1cy9jMzM3YzBhNy02YjI3LTRhYjctYTc1ZS00OTg1MTNlODljODk/YXBpLXZlcnNpb249MjAyMS0xMC0wMQ==", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupJobs/16cb625d-51f4-4a5b-8932-85a9e11f8a09?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMmEwODVmMWIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YyYTA4NWYxYi9iYWNrdXBKb2JzLzE2Y2I2MjVkLTUxZjQtNGE1Yi04OTMyLTg1YTllMTFmOGEwOT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d5ae230b-3d24-4553-a1b3-501e4e22f2d7" + "bcd2a12f-4272-4dc7-83e6-769270a3c520" + ], + "Accept-Language": [ + "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -8792,39 +9029,40 @@ "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-IIS/10.0", + "Microsoft-IIS/10.0" + ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "9340dbdd-04eb-4c42-a362-a5007d6e4052" + "746ded57-ff3f-48be-bdd9-2d7a5d5590d4" ], "x-ms-client-request-id": [ - "d5ae230b-3d24-4553-a1b3-501e4e22f2d7", - "d5ae230b-3d24-4553-a1b3-501e4e22f2d7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-IIS/10.0" + "bcd2a12f-4272-4dc7-83e6-769270a3c520", + "bcd2a12f-4272-4dc7-83e6-769270a3c520" ], "X-Powered-By": [ "ASP.NET" ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "149" + "97" ], "x-ms-correlation-request-id": [ - "9340dbdd-04eb-4c42-a362-a5007d6e4052" + "746ded57-ff3f-48be-bdd9-2d7a5d5590d4" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T190037Z:9340dbdd-04eb-4c42-a362-a5007d6e4052" + "JIOINDIAWEST:20220517T063219Z:746ded57-ff3f-48be-bdd9-2d7a5d5590d4" ], "Date": [ - "Thu, 24 Feb 2022 19:00:37 GMT" + "Tue, 17 May 2022 06:32:19 GMT" ], "Content-Length": [ - "304" + "971" ], "Content-Type": [ "application/json" @@ -8833,23 +9071,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"c337c0a7-6b27-4ab7-a75e-498513e89c89\",\r\n \"name\": \"c337c0a7-6b27-4ab7-a75e-498513e89c89\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-02-24T18:59:34.3783033Z\",\r\n \"endTime\": \"2022-02-24T18:59:34.3783033Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"c337c0a7-6b27-4ab7-a75e-498513e89c89\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupJobs/16cb625d-51f4-4a5b-8932-85a9e11f8a09\",\r\n \"name\": \"16cb625d-51f4-4a5b-8932-85a9e11f8a09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg2a085f1b;pstestvm2a0850\",\r\n \"duration\": \"PT25M49.2627753S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm2a0850\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm2a0850\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T06:06:29.7845766Z\",\r\n \"activityId\": \"bcd2a12f-4272-4dc7-83e6-769270a3c520\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfee9dac/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrgbfee9dac;pstestvmbfee90/protectedItems/VM;iaasvmcontainerv2;pstestrgbfee9dac;pstestvmbfee90/operationResults/c337c0a7-6b27-4ab7-a75e-498513e89c89?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZlZTlkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmVlOWRhYy9iYWNrdXBGYWJyaWNzL0F6dXJlL3Byb3RlY3Rpb25Db250YWluZXJzL0lhYXNWTUNvbnRhaW5lcjtpYWFzdm1jb250YWluZXJ2Mjtwc3Rlc3RyZ2JmZWU5ZGFjO3BzdGVzdHZtYmZlZTkwL3Byb3RlY3RlZEl0ZW1zL1ZNO2lhYXN2bWNvbnRhaW5lcnYyO3BzdGVzdHJnYmZlZTlkYWM7cHN0ZXN0dm1iZmVlOTAvb3BlcmF0aW9uUmVzdWx0cy9jMzM3YzBhNy02YjI3LTRhYjctYTc1ZS00OTg1MTNlODljODk/YXBpLXZlcnNpb249MjAyMS0xMC0wMQ==", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupJobs/16cb625d-51f4-4a5b-8932-85a9e11f8a09?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMmEwODVmMWIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YyYTA4NWYxYi9iYWNrdXBKb2JzLzE2Y2I2MjVkLTUxZjQtNGE1Yi04OTMyLTg1YTllMTFmOGEwOT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d5ae230b-3d24-4553-a1b3-501e4e22f2d7" + "bcd2a12f-4272-4dc7-83e6-769270a3c520" + ], + "Accept-Language": [ + "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -8859,67 +9100,68 @@ "Pragma": [ "no-cache" ], - "Retry-After": [ - "60" - ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfee9dac/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrgbfee9dac;pstestvmbfee90/protectedItems/VM;iaasvmcontainerv2;pstestrgbfee9dac;pstestvmbfee90/operationsStatus/c337c0a7-6b27-4ab7-a75e-498513e89c89?api-version=2021-10-01" + "Server": [ + "Microsoft-IIS/10.0", + "Microsoft-IIS/10.0" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "66845360-c336-4baa-b6fb-7f914bdfef80" + "d5e61fc4-0948-4117-ac01-93219e7bc8b1" ], "x-ms-client-request-id": [ - "d5ae230b-3d24-4553-a1b3-501e4e22f2d7", - "d5ae230b-3d24-4553-a1b3-501e4e22f2d7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "bcd2a12f-4272-4dc7-83e6-769270a3c520", + "bcd2a12f-4272-4dc7-83e6-769270a3c520" ], "X-Powered-By": [ "ASP.NET" ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "149" + "96" ], "x-ms-correlation-request-id": [ - "66845360-c336-4baa-b6fb-7f914bdfef80" + "d5e61fc4-0948-4117-ac01-93219e7bc8b1" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T190039Z:66845360-c336-4baa-b6fb-7f914bdfef80" + "JIOINDIAWEST:20220517T063250Z:d5e61fc4-0948-4117-ac01-93219e7bc8b1" ], "Date": [ - "Thu, 24 Feb 2022 19:00:38 GMT" + "Tue, 17 May 2022 06:32:50 GMT" + ], + "Content-Length": [ + "971" ], "Content-Type": [ - "application/json; charset=utf-8" + "application/json" ], "Expires": [ "-1" ] }, - "ResponseBody": "", - "StatusCode": 204 + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupJobs/16cb625d-51f4-4a5b-8932-85a9e11f8a09\",\r\n \"name\": \"16cb625d-51f4-4a5b-8932-85a9e11f8a09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg2a085f1b;pstestvm2a0850\",\r\n \"duration\": \"PT26M20.2399991S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm2a0850\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm2a0850\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T06:06:29.7845766Z\",\r\n \"activityId\": \"bcd2a12f-4272-4dc7-83e6-769270a3c520\"\r\n }\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfee9dac/backupOperations/c337c0a7-6b27-4ab7-a75e-498513e89c89?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZlZTlkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmVlOWRhYy9iYWNrdXBPcGVyYXRpb25zL2MzMzdjMGE3LTZiMjctNGFiNy1hNzVlLTQ5ODUxM2U4OWM4OT9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupJobs/16cb625d-51f4-4a5b-8932-85a9e11f8a09?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMmEwODVmMWIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YyYTA4NWYxYi9iYWNrdXBKb2JzLzE2Y2I2MjVkLTUxZjQtNGE1Yi04OTMyLTg1YTllMTFmOGEwOT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d5ae230b-3d24-4553-a1b3-501e4e22f2d7" + "bcd2a12f-4272-4dc7-83e6-769270a3c520" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -8929,39 +9171,40 @@ "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-IIS/10.0", + "Microsoft-IIS/10.0" + ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "e270136c-5bd2-4029-a60e-d376230eaf4a" + "b8ddd2be-17e7-46fb-921e-27aaa7404d49" ], "x-ms-client-request-id": [ - "d5ae230b-3d24-4553-a1b3-501e4e22f2d7", - "d5ae230b-3d24-4553-a1b3-501e4e22f2d7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-IIS/10.0" + "bcd2a12f-4272-4dc7-83e6-769270a3c520", + "bcd2a12f-4272-4dc7-83e6-769270a3c520" ], "X-Powered-By": [ "ASP.NET" ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "142" + "95" ], "x-ms-correlation-request-id": [ - "e270136c-5bd2-4029-a60e-d376230eaf4a" + "b8ddd2be-17e7-46fb-921e-27aaa7404d49" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T190105Z:e270136c-5bd2-4029-a60e-d376230eaf4a" + "JIOINDIAWEST:20220517T063321Z:b8ddd2be-17e7-46fb-921e-27aaa7404d49" ], "Date": [ - "Thu, 24 Feb 2022 19:01:04 GMT" + "Tue, 17 May 2022 06:33:20 GMT" ], "Content-Length": [ - "304" + "971" ], "Content-Type": [ "application/json" @@ -8970,26 +9213,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"c337c0a7-6b27-4ab7-a75e-498513e89c89\",\r\n \"name\": \"c337c0a7-6b27-4ab7-a75e-498513e89c89\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-02-24T18:59:34.3783033Z\",\r\n \"endTime\": \"2022-02-24T18:59:34.3783033Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"c337c0a7-6b27-4ab7-a75e-498513e89c89\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupJobs/16cb625d-51f4-4a5b-8932-85a9e11f8a09\",\r\n \"name\": \"16cb625d-51f4-4a5b-8932-85a9e11f8a09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg2a085f1b;pstestvm2a0850\",\r\n \"duration\": \"PT26M50.8153101S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm2a0850\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm2a0850\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T06:06:29.7845766Z\",\r\n \"activityId\": \"bcd2a12f-4272-4dc7-83e6-769270a3c520\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfee9dac/backupOperations/c337c0a7-6b27-4ab7-a75e-498513e89c89?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZlZTlkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmVlOWRhYy9iYWNrdXBPcGVyYXRpb25zL2MzMzdjMGE3LTZiMjctNGFiNy1hNzVlLTQ5ODUxM2U4OWM4OT9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupJobs/16cb625d-51f4-4a5b-8932-85a9e11f8a09?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMmEwODVmMWIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YyYTA4NWYxYi9iYWNrdXBKb2JzLzE2Y2I2MjVkLTUxZjQtNGE1Yi04OTMyLTg1YTllMTFmOGEwOT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d5ae230b-3d24-4553-a1b3-501e4e22f2d7" + "bcd2a12f-4272-4dc7-83e6-769270a3c520" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -8999,39 +9242,40 @@ "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-IIS/10.0", + "Microsoft-IIS/10.0" + ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "a8cc37c2-3119-451d-a6ca-c0740d452a48" + "71a9e2a7-1271-49b9-bd6a-c0c52c2c299e" ], "x-ms-client-request-id": [ - "d5ae230b-3d24-4553-a1b3-501e4e22f2d7", - "d5ae230b-3d24-4553-a1b3-501e4e22f2d7" + "bcd2a12f-4272-4dc7-83e6-769270a3c520", + "bcd2a12f-4272-4dc7-83e6-769270a3c520" + ], + "X-Powered-By": [ + "ASP.NET" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "141" + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "94" ], "x-ms-correlation-request-id": [ - "a8cc37c2-3119-451d-a6ca-c0740d452a48" + "71a9e2a7-1271-49b9-bd6a-c0c52c2c299e" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T190106Z:a8cc37c2-3119-451d-a6ca-c0740d452a48" + "JIOINDIAWEST:20220517T063351Z:71a9e2a7-1271-49b9-bd6a-c0c52c2c299e" ], "Date": [ - "Thu, 24 Feb 2022 19:01:05 GMT" + "Tue, 17 May 2022 06:33:51 GMT" ], "Content-Length": [ - "304" + "971" ], "Content-Type": [ "application/json" @@ -9040,26 +9284,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"c337c0a7-6b27-4ab7-a75e-498513e89c89\",\r\n \"name\": \"c337c0a7-6b27-4ab7-a75e-498513e89c89\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-02-24T18:59:34.3783033Z\",\r\n \"endTime\": \"2022-02-24T18:59:34.3783033Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"c337c0a7-6b27-4ab7-a75e-498513e89c89\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupJobs/16cb625d-51f4-4a5b-8932-85a9e11f8a09\",\r\n \"name\": \"16cb625d-51f4-4a5b-8932-85a9e11f8a09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg2a085f1b;pstestvm2a0850\",\r\n \"duration\": \"PT27M21.6333783S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm2a0850\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm2a0850\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T06:06:29.7845766Z\",\r\n \"activityId\": \"bcd2a12f-4272-4dc7-83e6-769270a3c520\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfee9dac/backupJobs/c337c0a7-6b27-4ab7-a75e-498513e89c89?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZlZTlkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmVlOWRhYy9iYWNrdXBKb2JzL2MzMzdjMGE3LTZiMjctNGFiNy1hNzVlLTQ5ODUxM2U4OWM4OT9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupJobs/16cb625d-51f4-4a5b-8932-85a9e11f8a09?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMmEwODVmMWIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YyYTA4NWYxYi9iYWNrdXBKb2JzLzE2Y2I2MjVkLTUxZjQtNGE1Yi04OTMyLTg1YTllMTFmOGEwOT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d5ae230b-3d24-4553-a1b3-501e4e22f2d7" + "bcd2a12f-4272-4dc7-83e6-769270a3c520" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -9077,11 +9321,11 @@ "nosniff" ], "x-ms-request-id": [ - "ff65440b-be07-4279-8694-c1c7689320e5" + "e928879b-97cd-4cb0-88a1-d56c182ce515" ], "x-ms-client-request-id": [ - "d5ae230b-3d24-4553-a1b3-501e4e22f2d7", - "d5ae230b-3d24-4553-a1b3-501e4e22f2d7" + "bcd2a12f-4272-4dc7-83e6-769270a3c520", + "bcd2a12f-4272-4dc7-83e6-769270a3c520" ], "X-Powered-By": [ "ASP.NET" @@ -9090,19 +9334,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "98" + "93" ], "x-ms-correlation-request-id": [ - "ff65440b-be07-4279-8694-c1c7689320e5" + "e928879b-97cd-4cb0-88a1-d56c182ce515" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T190106Z:ff65440b-be07-4279-8694-c1c7689320e5" + "JIOINDIAWEST:20220517T063423Z:e928879b-97cd-4cb0-88a1-d56c182ce515" ], "Date": [ - "Thu, 24 Feb 2022 19:01:06 GMT" + "Tue, 17 May 2022 06:34:22 GMT" ], "Content-Length": [ - "1066" + "971" ], "Content-Type": [ "application/json" @@ -9111,26 +9355,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfee9dac/backupJobs/c337c0a7-6b27-4ab7-a75e-498513e89c89\",\r\n \"name\": \"c337c0a7-6b27-4ab7-a75e-498513e89c89\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgbfee9dac;pstestvmbfee90\",\r\n \"duration\": \"PT1M31.7532686S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Transfer data from vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"Job Type\": \"Recover disks\",\r\n \"Target VM Name\": \"vmName\",\r\n \"Target Storage Account Name\": \"pstestsabfee9dac\",\r\n \"Recovery point time \": \"2/24/2022 6:07:03 PM\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"restoreLocationType\": \"RestoreDisks\"\r\n },\r\n \"progressPercentage\": 1.0\r\n },\r\n \"entityFriendlyName\": \"pstestvmbfee90\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-24T18:59:34.3783033Z\",\r\n \"activityId\": \"d5ae230b-3d24-4553-a1b3-501e4e22f2d7\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupJobs/16cb625d-51f4-4a5b-8932-85a9e11f8a09\",\r\n \"name\": \"16cb625d-51f4-4a5b-8932-85a9e11f8a09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg2a085f1b;pstestvm2a0850\",\r\n \"duration\": \"PT27M52.5590414S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm2a0850\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm2a0850\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T06:06:29.7845766Z\",\r\n \"activityId\": \"bcd2a12f-4272-4dc7-83e6-769270a3c520\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfee9dac/backupJobs/c337c0a7-6b27-4ab7-a75e-498513e89c89?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZlZTlkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmVlOWRhYy9iYWNrdXBKb2JzL2MzMzdjMGE3LTZiMjctNGFiNy1hNzVlLTQ5ODUxM2U4OWM4OT9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupJobs/16cb625d-51f4-4a5b-8932-85a9e11f8a09?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMmEwODVmMWIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YyYTA4NWYxYi9iYWNrdXBKb2JzLzE2Y2I2MjVkLTUxZjQtNGE1Yi04OTMyLTg1YTllMTFmOGEwOT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d5ae230b-3d24-4553-a1b3-501e4e22f2d7" + "bcd2a12f-4272-4dc7-83e6-769270a3c520" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -9148,11 +9392,11 @@ "nosniff" ], "x-ms-request-id": [ - "e3a38b77-d9d2-4e35-bd01-f704741a015a" + "5ece201a-9d5b-451e-a877-b554f4fc038f" ], "x-ms-client-request-id": [ - "d5ae230b-3d24-4553-a1b3-501e4e22f2d7", - "d5ae230b-3d24-4553-a1b3-501e4e22f2d7" + "bcd2a12f-4272-4dc7-83e6-769270a3c520", + "bcd2a12f-4272-4dc7-83e6-769270a3c520" ], "X-Powered-By": [ "ASP.NET" @@ -9161,19 +9405,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "97" + "92" ], "x-ms-correlation-request-id": [ - "e3a38b77-d9d2-4e35-bd01-f704741a015a" + "5ece201a-9d5b-451e-a877-b554f4fc038f" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T190107Z:e3a38b77-d9d2-4e35-bd01-f704741a015a" + "JIOINDIAWEST:20220517T063453Z:5ece201a-9d5b-451e-a877-b554f4fc038f" ], "Date": [ - "Thu, 24 Feb 2022 19:01:07 GMT" + "Tue, 17 May 2022 06:34:53 GMT" ], "Content-Length": [ - "1066" + "971" ], "Content-Type": [ "application/json" @@ -9182,26 +9426,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfee9dac/backupJobs/c337c0a7-6b27-4ab7-a75e-498513e89c89\",\r\n \"name\": \"c337c0a7-6b27-4ab7-a75e-498513e89c89\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgbfee9dac;pstestvmbfee90\",\r\n \"duration\": \"PT1M32.6647906S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Transfer data from vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"Job Type\": \"Recover disks\",\r\n \"Target VM Name\": \"vmName\",\r\n \"Target Storage Account Name\": \"pstestsabfee9dac\",\r\n \"Recovery point time \": \"2/24/2022 6:07:03 PM\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"restoreLocationType\": \"RestoreDisks\"\r\n },\r\n \"progressPercentage\": 1.0\r\n },\r\n \"entityFriendlyName\": \"pstestvmbfee90\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-24T18:59:34.3783033Z\",\r\n \"activityId\": \"d5ae230b-3d24-4553-a1b3-501e4e22f2d7\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupJobs/16cb625d-51f4-4a5b-8932-85a9e11f8a09\",\r\n \"name\": \"16cb625d-51f4-4a5b-8932-85a9e11f8a09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg2a085f1b;pstestvm2a0850\",\r\n \"duration\": \"PT28M23.3887341S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm2a0850\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm2a0850\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T06:06:29.7845766Z\",\r\n \"activityId\": \"bcd2a12f-4272-4dc7-83e6-769270a3c520\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfee9dac/backupJobs/c337c0a7-6b27-4ab7-a75e-498513e89c89?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZlZTlkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmVlOWRhYy9iYWNrdXBKb2JzL2MzMzdjMGE3LTZiMjctNGFiNy1hNzVlLTQ5ODUxM2U4OWM4OT9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupJobs/16cb625d-51f4-4a5b-8932-85a9e11f8a09?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMmEwODVmMWIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YyYTA4NWYxYi9iYWNrdXBKb2JzLzE2Y2I2MjVkLTUxZjQtNGE1Yi04OTMyLTg1YTllMTFmOGEwOT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d5ae230b-3d24-4553-a1b3-501e4e22f2d7" + "bcd2a12f-4272-4dc7-83e6-769270a3c520" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -9219,11 +9463,11 @@ "nosniff" ], "x-ms-request-id": [ - "736d15fb-7edc-4da2-8db4-2065a4ed206c" + "3cd4934e-b690-4620-9ead-70d3ba9863eb" ], "x-ms-client-request-id": [ - "d5ae230b-3d24-4553-a1b3-501e4e22f2d7", - "d5ae230b-3d24-4553-a1b3-501e4e22f2d7" + "bcd2a12f-4272-4dc7-83e6-769270a3c520", + "bcd2a12f-4272-4dc7-83e6-769270a3c520" ], "X-Powered-By": [ "ASP.NET" @@ -9232,19 +9476,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "96" + "91" ], "x-ms-correlation-request-id": [ - "736d15fb-7edc-4da2-8db4-2065a4ed206c" + "3cd4934e-b690-4620-9ead-70d3ba9863eb" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T190214Z:736d15fb-7edc-4da2-8db4-2065a4ed206c" + "JIOINDIAWEST:20220517T063524Z:3cd4934e-b690-4620-9ead-70d3ba9863eb" ], "Date": [ - "Thu, 24 Feb 2022 19:02:13 GMT" + "Tue, 17 May 2022 06:35:24 GMT" ], "Content-Length": [ - "1066" + "971" ], "Content-Type": [ "application/json" @@ -9253,26 +9497,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfee9dac/backupJobs/c337c0a7-6b27-4ab7-a75e-498513e89c89\",\r\n \"name\": \"c337c0a7-6b27-4ab7-a75e-498513e89c89\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgbfee9dac;pstestvmbfee90\",\r\n \"duration\": \"PT2M39.1493091S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Transfer data from vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"Job Type\": \"Recover disks\",\r\n \"Target VM Name\": \"vmName\",\r\n \"Target Storage Account Name\": \"pstestsabfee9dac\",\r\n \"Recovery point time \": \"2/24/2022 6:07:03 PM\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"restoreLocationType\": \"RestoreDisks\"\r\n },\r\n \"progressPercentage\": 1.0\r\n },\r\n \"entityFriendlyName\": \"pstestvmbfee90\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-24T18:59:34.3783033Z\",\r\n \"activityId\": \"d5ae230b-3d24-4553-a1b3-501e4e22f2d7\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupJobs/16cb625d-51f4-4a5b-8932-85a9e11f8a09\",\r\n \"name\": \"16cb625d-51f4-4a5b-8932-85a9e11f8a09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg2a085f1b;pstestvm2a0850\",\r\n \"duration\": \"PT28M54.2016155S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm2a0850\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm2a0850\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T06:06:29.7845766Z\",\r\n \"activityId\": \"bcd2a12f-4272-4dc7-83e6-769270a3c520\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfee9dac/backupJobs/c337c0a7-6b27-4ab7-a75e-498513e89c89?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZlZTlkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmVlOWRhYy9iYWNrdXBKb2JzL2MzMzdjMGE3LTZiMjctNGFiNy1hNzVlLTQ5ODUxM2U4OWM4OT9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupJobs/16cb625d-51f4-4a5b-8932-85a9e11f8a09?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMmEwODVmMWIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YyYTA4NWYxYi9iYWNrdXBKb2JzLzE2Y2I2MjVkLTUxZjQtNGE1Yi04OTMyLTg1YTllMTFmOGEwOT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d5ae230b-3d24-4553-a1b3-501e4e22f2d7" + "bcd2a12f-4272-4dc7-83e6-769270a3c520" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -9290,11 +9534,11 @@ "nosniff" ], "x-ms-request-id": [ - "c44556a5-e720-4918-8ed3-acf122a3f733" + "7653c3b9-d052-4560-b473-7e99bf274c73" ], "x-ms-client-request-id": [ - "d5ae230b-3d24-4553-a1b3-501e4e22f2d7", - "d5ae230b-3d24-4553-a1b3-501e4e22f2d7" + "bcd2a12f-4272-4dc7-83e6-769270a3c520", + "bcd2a12f-4272-4dc7-83e6-769270a3c520" ], "X-Powered-By": [ "ASP.NET" @@ -9303,19 +9547,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "95" + "90" ], "x-ms-correlation-request-id": [ - "c44556a5-e720-4918-8ed3-acf122a3f733" + "7653c3b9-d052-4560-b473-7e99bf274c73" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T190316Z:c44556a5-e720-4918-8ed3-acf122a3f733" + "JIOINDIAWEST:20220517T063555Z:7653c3b9-d052-4560-b473-7e99bf274c73" ], "Date": [ - "Thu, 24 Feb 2022 19:03:16 GMT" + "Tue, 17 May 2022 06:35:54 GMT" ], "Content-Length": [ - "1066" + "971" ], "Content-Type": [ "application/json" @@ -9324,26 +9568,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfee9dac/backupJobs/c337c0a7-6b27-4ab7-a75e-498513e89c89\",\r\n \"name\": \"c337c0a7-6b27-4ab7-a75e-498513e89c89\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgbfee9dac;pstestvmbfee90\",\r\n \"duration\": \"PT3M41.2591557S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Transfer data from vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"Job Type\": \"Recover disks\",\r\n \"Target VM Name\": \"vmName\",\r\n \"Target Storage Account Name\": \"pstestsabfee9dac\",\r\n \"Recovery point time \": \"2/24/2022 6:07:03 PM\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"restoreLocationType\": \"RestoreDisks\"\r\n },\r\n \"progressPercentage\": 1.0\r\n },\r\n \"entityFriendlyName\": \"pstestvmbfee90\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-24T18:59:34.3783033Z\",\r\n \"activityId\": \"d5ae230b-3d24-4553-a1b3-501e4e22f2d7\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupJobs/16cb625d-51f4-4a5b-8932-85a9e11f8a09\",\r\n \"name\": \"16cb625d-51f4-4a5b-8932-85a9e11f8a09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg2a085f1b;pstestvm2a0850\",\r\n \"duration\": \"PT29M25.1320848S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm2a0850\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm2a0850\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T06:06:29.7845766Z\",\r\n \"activityId\": \"bcd2a12f-4272-4dc7-83e6-769270a3c520\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfee9dac/backupJobs/c337c0a7-6b27-4ab7-a75e-498513e89c89?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZlZTlkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmVlOWRhYy9iYWNrdXBKb2JzL2MzMzdjMGE3LTZiMjctNGFiNy1hNzVlLTQ5ODUxM2U4OWM4OT9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupJobs/16cb625d-51f4-4a5b-8932-85a9e11f8a09?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMmEwODVmMWIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YyYTA4NWYxYi9iYWNrdXBKb2JzLzE2Y2I2MjVkLTUxZjQtNGE1Yi04OTMyLTg1YTllMTFmOGEwOT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d5ae230b-3d24-4553-a1b3-501e4e22f2d7" + "bcd2a12f-4272-4dc7-83e6-769270a3c520" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -9361,11 +9605,11 @@ "nosniff" ], "x-ms-request-id": [ - "6a6db06c-3d86-4367-baf3-b7ad9ffeb283" + "33f1ba91-1d05-4791-8628-bb35b13e7ecb" ], "x-ms-client-request-id": [ - "d5ae230b-3d24-4553-a1b3-501e4e22f2d7", - "d5ae230b-3d24-4553-a1b3-501e4e22f2d7" + "bcd2a12f-4272-4dc7-83e6-769270a3c520", + "bcd2a12f-4272-4dc7-83e6-769270a3c520" ], "X-Powered-By": [ "ASP.NET" @@ -9374,19 +9618,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "94" + "89" ], "x-ms-correlation-request-id": [ - "6a6db06c-3d86-4367-baf3-b7ad9ffeb283" + "33f1ba91-1d05-4791-8628-bb35b13e7ecb" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T190418Z:6a6db06c-3d86-4367-baf3-b7ad9ffeb283" + "JIOINDIAWEST:20220517T063626Z:33f1ba91-1d05-4791-8628-bb35b13e7ecb" ], "Date": [ - "Thu, 24 Feb 2022 19:04:17 GMT" + "Tue, 17 May 2022 06:36:26 GMT" ], "Content-Length": [ - "1066" + "971" ], "Content-Type": [ "application/json" @@ -9395,26 +9639,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfee9dac/backupJobs/c337c0a7-6b27-4ab7-a75e-498513e89c89\",\r\n \"name\": \"c337c0a7-6b27-4ab7-a75e-498513e89c89\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgbfee9dac;pstestvmbfee90\",\r\n \"duration\": \"PT4M43.3522099S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Transfer data from vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"Job Type\": \"Recover disks\",\r\n \"Target VM Name\": \"vmName\",\r\n \"Target Storage Account Name\": \"pstestsabfee9dac\",\r\n \"Recovery point time \": \"2/24/2022 6:07:03 PM\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"restoreLocationType\": \"RestoreDisks\"\r\n },\r\n \"progressPercentage\": 1.0\r\n },\r\n \"entityFriendlyName\": \"pstestvmbfee90\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-24T18:59:34.3783033Z\",\r\n \"activityId\": \"d5ae230b-3d24-4553-a1b3-501e4e22f2d7\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupJobs/16cb625d-51f4-4a5b-8932-85a9e11f8a09\",\r\n \"name\": \"16cb625d-51f4-4a5b-8932-85a9e11f8a09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg2a085f1b;pstestvm2a0850\",\r\n \"duration\": \"PT29M55.8805638S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm2a0850\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm2a0850\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T06:06:29.7845766Z\",\r\n \"activityId\": \"bcd2a12f-4272-4dc7-83e6-769270a3c520\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfee9dac/backupJobs/c337c0a7-6b27-4ab7-a75e-498513e89c89?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZlZTlkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmVlOWRhYy9iYWNrdXBKb2JzL2MzMzdjMGE3LTZiMjctNGFiNy1hNzVlLTQ5ODUxM2U4OWM4OT9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupJobs/16cb625d-51f4-4a5b-8932-85a9e11f8a09?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMmEwODVmMWIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YyYTA4NWYxYi9iYWNrdXBKb2JzLzE2Y2I2MjVkLTUxZjQtNGE1Yi04OTMyLTg1YTllMTFmOGEwOT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d5ae230b-3d24-4553-a1b3-501e4e22f2d7" + "bcd2a12f-4272-4dc7-83e6-769270a3c520" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -9432,11 +9676,11 @@ "nosniff" ], "x-ms-request-id": [ - "231d4d0b-87f7-410a-a17c-ca83ba839a15" + "4540f4af-9165-445f-9949-855404de38eb" ], "x-ms-client-request-id": [ - "d5ae230b-3d24-4553-a1b3-501e4e22f2d7", - "d5ae230b-3d24-4553-a1b3-501e4e22f2d7" + "bcd2a12f-4272-4dc7-83e6-769270a3c520", + "bcd2a12f-4272-4dc7-83e6-769270a3c520" ], "X-Powered-By": [ "ASP.NET" @@ -9445,19 +9689,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "93" + "88" ], "x-ms-correlation-request-id": [ - "231d4d0b-87f7-410a-a17c-ca83ba839a15" + "4540f4af-9165-445f-9949-855404de38eb" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T190520Z:231d4d0b-87f7-410a-a17c-ca83ba839a15" + "JIOINDIAWEST:20220517T063656Z:4540f4af-9165-445f-9949-855404de38eb" ], "Date": [ - "Thu, 24 Feb 2022 19:05:19 GMT" + "Tue, 17 May 2022 06:36:56 GMT" ], "Content-Length": [ - "1065" + "971" ], "Content-Type": [ "application/json" @@ -9466,26 +9710,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfee9dac/backupJobs/c337c0a7-6b27-4ab7-a75e-498513e89c89\",\r\n \"name\": \"c337c0a7-6b27-4ab7-a75e-498513e89c89\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgbfee9dac;pstestvmbfee90\",\r\n \"duration\": \"PT5M44.936839S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Transfer data from vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"Job Type\": \"Recover disks\",\r\n \"Target VM Name\": \"vmName\",\r\n \"Target Storage Account Name\": \"pstestsabfee9dac\",\r\n \"Recovery point time \": \"2/24/2022 6:07:03 PM\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"restoreLocationType\": \"RestoreDisks\"\r\n },\r\n \"progressPercentage\": 1.0\r\n },\r\n \"entityFriendlyName\": \"pstestvmbfee90\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-24T18:59:34.3783033Z\",\r\n \"activityId\": \"d5ae230b-3d24-4553-a1b3-501e4e22f2d7\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupJobs/16cb625d-51f4-4a5b-8932-85a9e11f8a09\",\r\n \"name\": \"16cb625d-51f4-4a5b-8932-85a9e11f8a09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg2a085f1b;pstestvm2a0850\",\r\n \"duration\": \"PT30M26.6082308S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm2a0850\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm2a0850\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T06:06:29.7845766Z\",\r\n \"activityId\": \"bcd2a12f-4272-4dc7-83e6-769270a3c520\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfee9dac/backupJobs/c337c0a7-6b27-4ab7-a75e-498513e89c89?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZlZTlkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmVlOWRhYy9iYWNrdXBKb2JzL2MzMzdjMGE3LTZiMjctNGFiNy1hNzVlLTQ5ODUxM2U4OWM4OT9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupJobs/16cb625d-51f4-4a5b-8932-85a9e11f8a09?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMmEwODVmMWIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YyYTA4NWYxYi9iYWNrdXBKb2JzLzE2Y2I2MjVkLTUxZjQtNGE1Yi04OTMyLTg1YTllMTFmOGEwOT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d5ae230b-3d24-4553-a1b3-501e4e22f2d7" + "bcd2a12f-4272-4dc7-83e6-769270a3c520" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -9503,11 +9747,11 @@ "nosniff" ], "x-ms-request-id": [ - "fce5d36c-afc3-4d8f-b3d0-38cdced85d46" + "4b02ea24-5298-4a71-a6b0-46d1c1bcfd7d" ], "x-ms-client-request-id": [ - "d5ae230b-3d24-4553-a1b3-501e4e22f2d7", - "d5ae230b-3d24-4553-a1b3-501e4e22f2d7" + "bcd2a12f-4272-4dc7-83e6-769270a3c520", + "bcd2a12f-4272-4dc7-83e6-769270a3c520" ], "X-Powered-By": [ "ASP.NET" @@ -9516,19 +9760,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "92" + "87" ], "x-ms-correlation-request-id": [ - "fce5d36c-afc3-4d8f-b3d0-38cdced85d46" + "4b02ea24-5298-4a71-a6b0-46d1c1bcfd7d" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T190626Z:fce5d36c-afc3-4d8f-b3d0-38cdced85d46" + "JIOINDIAWEST:20220517T063727Z:4b02ea24-5298-4a71-a6b0-46d1c1bcfd7d" ], "Date": [ - "Thu, 24 Feb 2022 19:06:25 GMT" + "Tue, 17 May 2022 06:37:27 GMT" ], "Content-Length": [ - "1066" + "971" ], "Content-Type": [ "application/json" @@ -9537,26 +9781,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfee9dac/backupJobs/c337c0a7-6b27-4ab7-a75e-498513e89c89\",\r\n \"name\": \"c337c0a7-6b27-4ab7-a75e-498513e89c89\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgbfee9dac;pstestvmbfee90\",\r\n \"duration\": \"PT6M50.7956898S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Transfer data from vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"Job Type\": \"Recover disks\",\r\n \"Target VM Name\": \"vmName\",\r\n \"Target Storage Account Name\": \"pstestsabfee9dac\",\r\n \"Recovery point time \": \"2/24/2022 6:07:03 PM\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"restoreLocationType\": \"RestoreDisks\"\r\n },\r\n \"progressPercentage\": 1.0\r\n },\r\n \"entityFriendlyName\": \"pstestvmbfee90\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-24T18:59:34.3783033Z\",\r\n \"activityId\": \"d5ae230b-3d24-4553-a1b3-501e4e22f2d7\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupJobs/16cb625d-51f4-4a5b-8932-85a9e11f8a09\",\r\n \"name\": \"16cb625d-51f4-4a5b-8932-85a9e11f8a09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg2a085f1b;pstestvm2a0850\",\r\n \"duration\": \"PT30M57.3453748S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm2a0850\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm2a0850\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T06:06:29.7845766Z\",\r\n \"activityId\": \"bcd2a12f-4272-4dc7-83e6-769270a3c520\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfee9dac/backupJobs/c337c0a7-6b27-4ab7-a75e-498513e89c89?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZlZTlkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmVlOWRhYy9iYWNrdXBKb2JzL2MzMzdjMGE3LTZiMjctNGFiNy1hNzVlLTQ5ODUxM2U4OWM4OT9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupJobs/16cb625d-51f4-4a5b-8932-85a9e11f8a09?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMmEwODVmMWIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YyYTA4NWYxYi9iYWNrdXBKb2JzLzE2Y2I2MjVkLTUxZjQtNGE1Yi04OTMyLTg1YTllMTFmOGEwOT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d5ae230b-3d24-4553-a1b3-501e4e22f2d7" + "bcd2a12f-4272-4dc7-83e6-769270a3c520" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -9574,11 +9818,11 @@ "nosniff" ], "x-ms-request-id": [ - "de59742c-b4a5-4ce1-a738-2cd0c43fee29" + "7262758f-f84e-499a-aa9d-16ee521c7b99" ], "x-ms-client-request-id": [ - "d5ae230b-3d24-4553-a1b3-501e4e22f2d7", - "d5ae230b-3d24-4553-a1b3-501e4e22f2d7" + "bcd2a12f-4272-4dc7-83e6-769270a3c520", + "bcd2a12f-4272-4dc7-83e6-769270a3c520" ], "X-Powered-By": [ "ASP.NET" @@ -9587,19 +9831,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "91" + "86" ], "x-ms-correlation-request-id": [ - "de59742c-b4a5-4ce1-a738-2cd0c43fee29" + "7262758f-f84e-499a-aa9d-16ee521c7b99" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T190727Z:de59742c-b4a5-4ce1-a738-2cd0c43fee29" + "JIOINDIAWEST:20220517T063758Z:7262758f-f84e-499a-aa9d-16ee521c7b99" ], "Date": [ - "Thu, 24 Feb 2022 19:07:27 GMT" + "Tue, 17 May 2022 06:37:57 GMT" ], "Content-Length": [ - "1065" + "1035" ], "Content-Type": [ "application/json" @@ -9608,26 +9852,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfee9dac/backupJobs/c337c0a7-6b27-4ab7-a75e-498513e89c89\",\r\n \"name\": \"c337c0a7-6b27-4ab7-a75e-498513e89c89\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgbfee9dac;pstestvmbfee90\",\r\n \"duration\": \"PT7M52.976127S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Transfer data from vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"Job Type\": \"Recover disks\",\r\n \"Target VM Name\": \"vmName\",\r\n \"Target Storage Account Name\": \"pstestsabfee9dac\",\r\n \"Recovery point time \": \"2/24/2022 6:07:03 PM\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"restoreLocationType\": \"RestoreDisks\"\r\n },\r\n \"progressPercentage\": 1.0\r\n },\r\n \"entityFriendlyName\": \"pstestvmbfee90\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-24T18:59:34.3783033Z\",\r\n \"activityId\": \"d5ae230b-3d24-4553-a1b3-501e4e22f2d7\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupJobs/16cb625d-51f4-4a5b-8932-85a9e11f8a09\",\r\n \"name\": \"16cb625d-51f4-4a5b-8932-85a9e11f8a09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg2a085f1b;pstestvm2a0850\",\r\n \"duration\": \"PT31M12.7198075S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm2a0850\",\r\n \"Backup Size\": \"10162 MB\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm2a0850\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-05-17T06:06:29.7845766Z\",\r\n \"endTime\": \"2022-05-17T06:37:42.5043841Z\",\r\n \"activityId\": \"bcd2a12f-4272-4dc7-83e6-769270a3c520\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfee9dac/backupJobs/c337c0a7-6b27-4ab7-a75e-498513e89c89?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZlZTlkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmVlOWRhYy9iYWNrdXBKb2JzL2MzMzdjMGE3LTZiMjctNGFiNy1hNzVlLTQ5ODUxM2U4OWM4OT9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupFabrics/Azure/protectionContainers/IaasVMContainer%3Biaasvmcontainerv2%3Bpstestrg2a085f1b%3Bpstestvm2a0850/protectedItems/VM%3Biaasvmcontainerv2%3Bpstestrg2a085f1b%3Bpstestvm2a0850/recoveryPoints?$filter=startDate%20eq%20'2022-05-17%2006:05:29%20AM'%20and%20endDate%20eq%20'2022-05-17%2006:38:42%20AM'&api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMmEwODVmMWIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YyYTA4NWYxYi9iYWNrdXBGYWJyaWNzL0F6dXJlL3Byb3RlY3Rpb25Db250YWluZXJzL0lhYXNWTUNvbnRhaW5lciUzQmlhYXN2bWNvbnRhaW5lcnYyJTNCcHN0ZXN0cmcyYTA4NWYxYiUzQnBzdGVzdHZtMmEwODUwL3Byb3RlY3RlZEl0ZW1zL1ZNJTNCaWFhc3ZtY29udGFpbmVydjIlM0Jwc3Rlc3RyZzJhMDg1ZjFiJTNCcHN0ZXN0dm0yYTA4NTAvcmVjb3ZlcnlQb2ludHM/JGZpbHRlcj1zdGFydERhdGUlMjBlcSUyMCcyMDIyLTA1LTE3JTIwMDY6MDU6MjklMjBBTSclMjBhbmQlMjBlbmREYXRlJTIwZXElMjAnMjAyMi0wNS0xNyUyMDA2OjM4OjQyJTIwQU0nJmFwaS12ZXJzaW9uPTIwMjItMDItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d5ae230b-3d24-4553-a1b3-501e4e22f2d7" + "653122fb-01b5-42b4-8fcd-1e28fec4e021" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -9637,40 +9881,39 @@ "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-IIS/10.0" - ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "c1e3449f-57fa-432e-8b3b-0af711ac4e85" + "a2629338-68c2-44d7-952d-a804d65828d7" ], "x-ms-client-request-id": [ - "d5ae230b-3d24-4553-a1b3-501e4e22f2d7", - "d5ae230b-3d24-4553-a1b3-501e4e22f2d7" - ], - "X-Powered-By": [ - "ASP.NET" + "653122fb-01b5-42b4-8fcd-1e28fec4e021", + "653122fb-01b5-42b4-8fcd-1e28fec4e021" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "90" + "149" ], "x-ms-correlation-request-id": [ - "c1e3449f-57fa-432e-8b3b-0af711ac4e85" + "a2629338-68c2-44d7-952d-a804d65828d7" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T190828Z:c1e3449f-57fa-432e-8b3b-0af711ac4e85" + "JIOINDIAWEST:20220517T063758Z:a2629338-68c2-44d7-952d-a804d65828d7" ], "Date": [ - "Thu, 24 Feb 2022 19:08:27 GMT" + "Tue, 17 May 2022 06:37:58 GMT" ], "Content-Length": [ - "1066" + "1194" ], "Content-Type": [ "application/json" @@ -9679,26 +9922,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfee9dac/backupJobs/c337c0a7-6b27-4ab7-a75e-498513e89c89\",\r\n \"name\": \"c337c0a7-6b27-4ab7-a75e-498513e89c89\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgbfee9dac;pstestvmbfee90\",\r\n \"duration\": \"PT8M53.8633605S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Transfer data from vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"Job Type\": \"Recover disks\",\r\n \"Target VM Name\": \"vmName\",\r\n \"Target Storage Account Name\": \"pstestsabfee9dac\",\r\n \"Recovery point time \": \"2/24/2022 6:07:03 PM\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"restoreLocationType\": \"RestoreDisks\"\r\n },\r\n \"progressPercentage\": 1.0\r\n },\r\n \"entityFriendlyName\": \"pstestvmbfee90\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-24T18:59:34.3783033Z\",\r\n \"activityId\": \"d5ae230b-3d24-4553-a1b3-501e4e22f2d7\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrg2a085f1b;pstestvm2a0850/protectedItems/VM;iaasvmcontainerv2;pstestrg2a085f1b;pstestvm2a0850/recoveryPoints/20218145283648\",\r\n \"name\": \"20218145283648\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints\",\r\n \"properties\": {\r\n \"objectType\": \"IaasVMRecoveryPoint\",\r\n \"recoveryPointType\": \"AppConsistent\",\r\n \"recoveryPointTime\": \"2022-05-17T06:06:33.6089688Z\",\r\n \"recoveryPointAdditionalInfo\": \"\",\r\n \"sourceVMStorageType\": \"NormalStorage\",\r\n \"isSourceVMEncrypted\": false,\r\n \"isInstantIlrSessionActive\": false,\r\n \"recoveryPointTierDetails\": [\r\n {\r\n \"type\": \"InstantRP\",\r\n \"status\": \"Valid\"\r\n },\r\n {\r\n \"type\": \"HardenedRP\",\r\n \"status\": \"Valid\"\r\n }\r\n ],\r\n \"isManagedVirtualMachine\": true,\r\n \"virtualMachineSize\": \"Standard_D1_v2\",\r\n \"originalStorageAccountOption\": false,\r\n \"osType\": \"Windows\",\r\n \"recoveryPointMoveReadinessInfo\": {\r\n \"ArchivedRP\": {\r\n \"isReadyForMove\": false,\r\n \"additionalInfo\": \"We're still determining if this Recovery Point can be moved.. Please check again after some time.\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfee9dac/backupJobs/c337c0a7-6b27-4ab7-a75e-498513e89c89?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZlZTlkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmVlOWRhYy9iYWNrdXBKb2JzL2MzMzdjMGE3LTZiMjctNGFiNy1hNzVlLTQ5ODUxM2U4OWM4OT9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resources?$filter=resourceType%20eq%20'Microsoft.ClassicStorage%2FstorageAccounts'&api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5DbGFzc2ljU3RvcmFnZSUyRnN0b3JhZ2VBY2NvdW50cycmYXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d5ae230b-3d24-4553-a1b3-501e4e22f2d7" + "ebcd495d-3422-4f86-b1ba-b74ba045df73" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" ] }, "ResponseHeaders": { @@ -9708,68 +9951,57 @@ "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-IIS/10.0" - ], - "X-Content-Type-Options": [ - "nosniff" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11984" ], "x-ms-request-id": [ - "2b15abb0-9aab-4f36-8f49-6c42701b3473" + "dc30782c-0d91-4740-8238-877baa81c8f4" ], - "x-ms-client-request-id": [ - "d5ae230b-3d24-4553-a1b3-501e4e22f2d7", - "d5ae230b-3d24-4553-a1b3-501e4e22f2d7" + "x-ms-correlation-request-id": [ + "dc30782c-0d91-4740-8238-877baa81c8f4" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220517T063759Z:dc30782c-0d91-4740-8238-877baa81c8f4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "89" - ], - "x-ms-correlation-request-id": [ - "2b15abb0-9aab-4f36-8f49-6c42701b3473" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20220224T190930Z:2b15abb0-9aab-4f36-8f49-6c42701b3473" + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Thu, 24 Feb 2022 19:09:29 GMT" - ], - "Content-Length": [ - "1066" + "Tue, 17 May 2022 06:37:58 GMT" ], "Content-Type": [ - "application/json" + "application/json; charset=utf-8" ], "Expires": [ "-1" + ], + "Content-Length": [ + "564" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfee9dac/backupJobs/c337c0a7-6b27-4ab7-a75e-498513e89c89\",\r\n \"name\": \"c337c0a7-6b27-4ab7-a75e-498513e89c89\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgbfee9dac;pstestvmbfee90\",\r\n \"duration\": \"PT9M55.6532327S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Transfer data from vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"Job Type\": \"Recover disks\",\r\n \"Target VM Name\": \"vmName\",\r\n \"Target Storage Account Name\": \"pstestsabfee9dac\",\r\n \"Recovery point time \": \"2/24/2022 6:07:03 PM\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"restoreLocationType\": \"RestoreDisks\"\r\n },\r\n \"progressPercentage\": 1.0\r\n },\r\n \"entityFriendlyName\": \"pstestvmbfee90\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-24T18:59:34.3783033Z\",\r\n \"activityId\": \"d5ae230b-3d24-4553-a1b3-501e4e22f2d7\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/vsarg-sea-RS-1606/providers/Microsoft.ClassicStorage/storageAccounts/vsargsears16068893\",\r\n \"name\": \"vsargsears16068893\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"southeastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/DefaultResourceGroup-SEA/providers/Microsoft.ClassicStorage/storageAccounts/seabvtdibz1dccons9kt6t\",\r\n \"name\": \"seabvtdibz1dccons9kt6t\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"southeastasia\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfee9dac/backupJobs/c337c0a7-6b27-4ab7-a75e-498513e89c89?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZlZTlkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmVlOWRhYy9iYWNrdXBKb2JzL2MzMzdjMGE3LTZiMjctNGFiNy1hNzVlLTQ5ODUxM2U4OWM4OT9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resources?$filter=resourceType%20eq%20'Microsoft.ClassicStorage%2FstorageAccounts'&api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5DbGFzc2ljU3RvcmFnZSUyRnN0b3JhZ2VBY2NvdW50cycmYXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d5ae230b-3d24-4553-a1b3-501e4e22f2d7" + "6431966e-427e-4416-93a1-2e4d7ebbe356" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" ] }, "ResponseHeaders": { @@ -9779,68 +10011,57 @@ "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-IIS/10.0" - ], - "X-Content-Type-Options": [ - "nosniff" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11982" ], "x-ms-request-id": [ - "0a8efcf9-260e-4fa0-9e9c-ea5b553d0a4c" + "6047a92b-d900-4f62-b6e4-450b01acdea0" ], - "x-ms-client-request-id": [ - "d5ae230b-3d24-4553-a1b3-501e4e22f2d7", - "d5ae230b-3d24-4553-a1b3-501e4e22f2d7" + "x-ms-correlation-request-id": [ + "6047a92b-d900-4f62-b6e4-450b01acdea0" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220517T063759Z:6047a92b-d900-4f62-b6e4-450b01acdea0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "93" - ], - "x-ms-correlation-request-id": [ - "0a8efcf9-260e-4fa0-9e9c-ea5b553d0a4c" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20220224T191032Z:0a8efcf9-260e-4fa0-9e9c-ea5b553d0a4c" + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Thu, 24 Feb 2022 19:10:32 GMT" - ], - "Content-Length": [ - "1171" + "Tue, 17 May 2022 06:37:59 GMT" ], "Content-Type": [ - "application/json" + "application/json; charset=utf-8" ], "Expires": [ "-1" + ], + "Content-Length": [ + "564" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfee9dac/backupJobs/c337c0a7-6b27-4ab7-a75e-498513e89c89\",\r\n \"name\": \"c337c0a7-6b27-4ab7-a75e-498513e89c89\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgbfee9dac;pstestvmbfee90\",\r\n \"duration\": \"PT10M57.7004566S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Transfer data from vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\",\r\n \"taskExecutionDetails\": \"67.5 GBs / 127 GBs Transferred\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"Job Type\": \"Recover disks\",\r\n \"Target VM Name\": \"vmName\",\r\n \"Target Storage Account Name\": \"pstestsabfee9dac\",\r\n \"Recovery point time \": \"2/24/2022 6:07:03 PM\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"restoreLocationType\": \"RestoreDisks\"\r\n },\r\n \"progressPercentage\": 53.0,\r\n \"estimatedRemainingDuration\": \"PT9M18.8685779S\"\r\n },\r\n \"entityFriendlyName\": \"pstestvmbfee90\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-24T18:59:34.3783033Z\",\r\n \"activityId\": \"d5ae230b-3d24-4553-a1b3-501e4e22f2d7\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/vsarg-sea-RS-1606/providers/Microsoft.ClassicStorage/storageAccounts/vsargsears16068893\",\r\n \"name\": \"vsargsears16068893\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"southeastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/DefaultResourceGroup-SEA/providers/Microsoft.ClassicStorage/storageAccounts/seabvtdibz1dccons9kt6t\",\r\n \"name\": \"seabvtdibz1dccons9kt6t\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"southeastasia\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfee9dac/backupJobs/c337c0a7-6b27-4ab7-a75e-498513e89c89?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZlZTlkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmVlOWRhYy9iYWNrdXBKb2JzL2MzMzdjMGE3LTZiMjctNGFiNy1hNzVlLTQ5ODUxM2U4OWM4OT9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resources?$filter=resourceType%20eq%20'Microsoft.ClassicStorage%2FstorageAccounts'&api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5DbGFzc2ljU3RvcmFnZSUyRnN0b3JhZ2VBY2NvdW50cycmYXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d5ae230b-3d24-4553-a1b3-501e4e22f2d7" + "ee983894-3ca4-48d2-af84-ffcef660d31b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" ] }, "ResponseHeaders": { @@ -9850,68 +10071,57 @@ "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-IIS/10.0" - ], - "X-Content-Type-Options": [ - "nosniff" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" ], "x-ms-request-id": [ - "b88c67c1-f306-4876-89aa-1818cd9f6530" + "12daf570-f120-4a0e-b810-909572c50f1c" ], - "x-ms-client-request-id": [ - "d5ae230b-3d24-4553-a1b3-501e4e22f2d7", - "d5ae230b-3d24-4553-a1b3-501e4e22f2d7" + "x-ms-correlation-request-id": [ + "12daf570-f120-4a0e-b810-909572c50f1c" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220517T065405Z:12daf570-f120-4a0e-b810-909572c50f1c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "92" - ], - "x-ms-correlation-request-id": [ - "b88c67c1-f306-4876-89aa-1818cd9f6530" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20220224T191133Z:b88c67c1-f306-4876-89aa-1818cd9f6530" + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Thu, 24 Feb 2022 19:11:32 GMT" - ], - "Content-Length": [ - "1171" + "Tue, 17 May 2022 06:54:05 GMT" ], "Content-Type": [ - "application/json" + "application/json; charset=utf-8" ], "Expires": [ "-1" + ], + "Content-Length": [ + "564" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfee9dac/backupJobs/c337c0a7-6b27-4ab7-a75e-498513e89c89\",\r\n \"name\": \"c337c0a7-6b27-4ab7-a75e-498513e89c89\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgbfee9dac;pstestvmbfee90\",\r\n \"duration\": \"PT11M58.4074125S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Transfer data from vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\",\r\n \"taskExecutionDetails\": \"67.5 GBs / 127 GBs Transferred\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"Job Type\": \"Recover disks\",\r\n \"Target VM Name\": \"vmName\",\r\n \"Target Storage Account Name\": \"pstestsabfee9dac\",\r\n \"Recovery point time \": \"2/24/2022 6:07:03 PM\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"restoreLocationType\": \"RestoreDisks\"\r\n },\r\n \"progressPercentage\": 53.0,\r\n \"estimatedRemainingDuration\": \"PT9M18.8685779S\"\r\n },\r\n \"entityFriendlyName\": \"pstestvmbfee90\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-24T18:59:34.3783033Z\",\r\n \"activityId\": \"d5ae230b-3d24-4553-a1b3-501e4e22f2d7\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/vsarg-sea-RS-1606/providers/Microsoft.ClassicStorage/storageAccounts/vsargsears16068893\",\r\n \"name\": \"vsargsears16068893\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"southeastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/DefaultResourceGroup-SEA/providers/Microsoft.ClassicStorage/storageAccounts/seabvtdibz1dccons9kt6t\",\r\n \"name\": \"seabvtdibz1dccons9kt6t\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"southeastasia\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfee9dac/backupJobs/c337c0a7-6b27-4ab7-a75e-498513e89c89?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZlZTlkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmVlOWRhYy9iYWNrdXBKb2JzL2MzMzdjMGE3LTZiMjctNGFiNy1hNzVlLTQ5ODUxM2U4OWM4OT9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resources?$filter=resourceType%20eq%20'Microsoft.Storage%2FstorageAccounts'&api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5TdG9yYWdlJTJGc3RvcmFnZUFjY291bnRzJyZhcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d5ae230b-3d24-4553-a1b3-501e4e22f2d7" + "ebcd495d-3422-4f86-b1ba-b74ba045df73" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" ] }, "ResponseHeaders": { @@ -9921,68 +10131,57 @@ "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-IIS/10.0" - ], - "X-Content-Type-Options": [ - "nosniff" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11983" ], "x-ms-request-id": [ - "14595947-2197-4271-a591-bf61054c4cce" + "e46905f6-f505-48c3-9dc6-c51fdf410def" ], - "x-ms-client-request-id": [ - "d5ae230b-3d24-4553-a1b3-501e4e22f2d7", - "d5ae230b-3d24-4553-a1b3-501e4e22f2d7" + "x-ms-correlation-request-id": [ + "e46905f6-f505-48c3-9dc6-c51fdf410def" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220517T063759Z:e46905f6-f505-48c3-9dc6-c51fdf410def" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "91" - ], - "x-ms-correlation-request-id": [ - "14595947-2197-4271-a591-bf61054c4cce" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20220224T191235Z:14595947-2197-4271-a591-bf61054c4cce" + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Thu, 24 Feb 2022 19:12:35 GMT" - ], - "Content-Length": [ - "1170" + "Tue, 17 May 2022 06:37:58 GMT" ], "Content-Type": [ - "application/json" + "application/json; charset=utf-8" ], "Expires": [ "-1" + ], + "Content-Length": [ + "19847" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfee9dac/backupJobs/c337c0a7-6b27-4ab7-a75e-498513e89c89\",\r\n \"name\": \"c337c0a7-6b27-4ab7-a75e-498513e89c89\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgbfee9dac;pstestvmbfee90\",\r\n \"duration\": \"PT13M0.5709363S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Transfer data from vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\",\r\n \"taskExecutionDetails\": \"67.5 GBs / 127 GBs Transferred\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"Job Type\": \"Recover disks\",\r\n \"Target VM Name\": \"vmName\",\r\n \"Target Storage Account Name\": \"pstestsabfee9dac\",\r\n \"Recovery point time \": \"2/24/2022 6:07:03 PM\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"restoreLocationType\": \"RestoreDisks\"\r\n },\r\n \"progressPercentage\": 53.0,\r\n \"estimatedRemainingDuration\": \"PT9M18.8685779S\"\r\n },\r\n \"entityFriendlyName\": \"pstestvmbfee90\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-24T18:59:34.3783033Z\",\r\n \"activityId\": \"d5ae230b-3d24-4553-a1b3-501e4e22f2d7\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\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 \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"DeleteBy\": \"01-2025\",\r\n \"Owner\": \"sarath\",\r\n \"Purpose\": \" BVT\"\r\n }\r\n },\r\n {\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 \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\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 \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\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 },\r\n {\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 \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\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 \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\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 \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\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 },\r\n {\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 \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\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 },\r\n {\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 \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\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 },\r\n {\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 \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\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 },\r\n {\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 \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\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 },\r\n {\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 \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\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 \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"germanywestcentral\",\r\n \"tags\": {}\r\n },\r\n {\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 \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\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 },\r\n {\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 \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\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 },\r\n {\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 \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"pscmd\": \"pscmd\"\r\n }\r\n },\r\n {\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 \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\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 },\r\n {\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 \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\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 },\r\n {\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 \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MAB Used\": \"Yes\",\r\n \"Owner\": \"nilsha\"\r\n }\r\n },\r\n {\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 \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"MAB Used\": \"Yes\",\r\n \"Owner\": \"nilsha\",\r\n \"Purpose\": \"BVT\"\r\n }\r\n },\r\n {\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 \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\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 },\r\n {\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 \"sku\": {\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\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 \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/mkheranipfs/providers/Microsoft.Storage/storageAccounts/mkheranipfs\",\r\n \"name\": \"mkheranipfs\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\"\r\n },\r\n \"kind\": \"FileStorage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\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 \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\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 \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\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 },\r\n {\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 \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\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 },\r\n {\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 \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\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 \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\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 \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\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 },\r\n {\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 \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\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 \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\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 \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\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 \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\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 \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\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 \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"centralus\",\r\n \"tags\": {}\r\n },\r\n {\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 \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\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 \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\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 \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\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 \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {}\r\n },\r\n {\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 \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"DeleteBy\": \"02-2020\",\r\n \"owner\": \"sarath\",\r\n \"Purpose\": \" Testing\"\r\n }\r\n },\r\n {\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 \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\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 \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\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 \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {}\r\n },\r\n {\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 \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southindia\",\r\n \"tags\": {}\r\n },\r\n {\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 \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\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 \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/akneema/providers/Microsoft.Storage/storageAccounts/akneemastorageaccount\",\r\n \"name\": \"akneemastorageaccount\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\",\r\n \"Owner\": \"akneema\",\r\n \"Purpose\": \"Testing\",\r\n \"AutoShutdown\": \"No\",\r\n \"DeleteBy\": \"12-9999\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/akkanaseSdKTesting/providers/Microsoft.Storage/storageAccounts/sdkafstest\",\r\n \"name\": \"sdkafstest\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"Mab Used\": \"yes\",\r\n \"Purpose\": \"test\",\r\n \"Owner\": \"akkanase\",\r\n \"DeleteBy\": \"05-2020\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/sarath-rg/providers/Microsoft.Storage/storageAccounts/sarath2807sa\",\r\n \"name\": \"sarath2807sa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/sarath-rg/providers/Microsoft.Storage/storageAccounts/integrationsatest2\",\r\n \"name\": \"integrationsatest2\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/clitest.rggnhec5fjqn/providers/Microsoft.Storage/storageAccounts/clitestid46ifaymywtrwjmi\",\r\n \"name\": \"clitestid46ifaymywtrwjmi\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/vishakrg/providers/Microsoft.Storage/storageAccounts/vishaksa1\",\r\n \"name\": \"vishaksa1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.Storage/storageAccounts/pstestsa2a085f1b\",\r\n \"name\": \"pstestsa2a085f1b\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/officialmabouterloopsarg/providers/Microsoft.Storage/storageAccounts/officialmabouterloopsa\",\r\n \"name\": \"officialmabouterloopsa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"MAB Used\": \"Yes\",\r\n \"Owner\": \"mkherani\",\r\n \"Purpose\": \"officialTestReprotMail\",\r\n \"DoNotDelete\": \"true\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/sarkuma-rg/providers/Microsoft.Storage/storageAccounts/sarkumasa010\",\r\n \"name\": \"sarkumasa010\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/myrandomrg2/providers/Microsoft.Storage/storageAccounts/store4t6y6trjxpxta\",\r\n \"name\": \"store4t6y6trjxpxta\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/mkheraniccy/providers/Microsoft.Storage/storageAccounts/mkheraniccysa\",\r\n \"name\": \"mkheraniccysa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfee9dac/backupJobs/c337c0a7-6b27-4ab7-a75e-498513e89c89?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZlZTlkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmVlOWRhYy9iYWNrdXBKb2JzL2MzMzdjMGE3LTZiMjctNGFiNy1hNzVlLTQ5ODUxM2U4OWM4OT9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resources?$filter=resourceType%20eq%20'Microsoft.Storage%2FstorageAccounts'&api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5TdG9yYWdlJTJGc3RvcmFnZUFjY291bnRzJyZhcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d5ae230b-3d24-4553-a1b3-501e4e22f2d7" + "6431966e-427e-4416-93a1-2e4d7ebbe356" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" ] }, "ResponseHeaders": { @@ -9992,68 +10191,57 @@ "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-IIS/10.0" - ], - "X-Content-Type-Options": [ - "nosniff" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11981" ], "x-ms-request-id": [ - "d6d0f6ba-e4af-4fe9-92b9-951b0ee173bd" + "8b0794a8-131c-4d10-afce-6236d78da2a9" ], - "x-ms-client-request-id": [ - "d5ae230b-3d24-4553-a1b3-501e4e22f2d7", - "d5ae230b-3d24-4553-a1b3-501e4e22f2d7" + "x-ms-correlation-request-id": [ + "8b0794a8-131c-4d10-afce-6236d78da2a9" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220517T063759Z:8b0794a8-131c-4d10-afce-6236d78da2a9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "90" - ], - "x-ms-correlation-request-id": [ - "d6d0f6ba-e4af-4fe9-92b9-951b0ee173bd" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20220224T191340Z:d6d0f6ba-e4af-4fe9-92b9-951b0ee173bd" + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Thu, 24 Feb 2022 19:13:40 GMT" - ], - "Content-Length": [ - "1170" + "Tue, 17 May 2022 06:37:59 GMT" ], "Content-Type": [ - "application/json" + "application/json; charset=utf-8" ], "Expires": [ "-1" + ], + "Content-Length": [ + "19847" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfee9dac/backupJobs/c337c0a7-6b27-4ab7-a75e-498513e89c89\",\r\n \"name\": \"c337c0a7-6b27-4ab7-a75e-498513e89c89\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgbfee9dac;pstestvmbfee90\",\r\n \"duration\": \"PT14M5.7469034S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Transfer data from vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\",\r\n \"taskExecutionDetails\": \"67.5 GBs / 127 GBs Transferred\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"Job Type\": \"Recover disks\",\r\n \"Target VM Name\": \"vmName\",\r\n \"Target Storage Account Name\": \"pstestsabfee9dac\",\r\n \"Recovery point time \": \"2/24/2022 6:07:03 PM\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"restoreLocationType\": \"RestoreDisks\"\r\n },\r\n \"progressPercentage\": 53.0,\r\n \"estimatedRemainingDuration\": \"PT9M18.8685779S\"\r\n },\r\n \"entityFriendlyName\": \"pstestvmbfee90\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-24T18:59:34.3783033Z\",\r\n \"activityId\": \"d5ae230b-3d24-4553-a1b3-501e4e22f2d7\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\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 \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"DeleteBy\": \"01-2025\",\r\n \"Owner\": \"sarath\",\r\n \"Purpose\": \" BVT\"\r\n }\r\n },\r\n {\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 \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\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 \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\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 },\r\n {\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 \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\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 \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\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 \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\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 },\r\n {\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 \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\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 },\r\n {\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 \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\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 },\r\n {\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 \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\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 },\r\n {\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 \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\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 },\r\n {\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 \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\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 \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"germanywestcentral\",\r\n \"tags\": {}\r\n },\r\n {\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 \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\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 },\r\n {\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 \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\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 },\r\n {\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 \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"pscmd\": \"pscmd\"\r\n }\r\n },\r\n {\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 \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\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 },\r\n {\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 \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\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 },\r\n {\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 \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MAB Used\": \"Yes\",\r\n \"Owner\": \"nilsha\"\r\n }\r\n },\r\n {\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 \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"MAB Used\": \"Yes\",\r\n \"Owner\": \"nilsha\",\r\n \"Purpose\": \"BVT\"\r\n }\r\n },\r\n {\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 \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\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 },\r\n {\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 \"sku\": {\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\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 \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/mkheranipfs/providers/Microsoft.Storage/storageAccounts/mkheranipfs\",\r\n \"name\": \"mkheranipfs\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\"\r\n },\r\n \"kind\": \"FileStorage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\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 \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\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 \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\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 },\r\n {\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 \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\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 },\r\n {\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 \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\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 \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\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 \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\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 },\r\n {\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 \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\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 \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\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 \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\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 \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\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 \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\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 \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"centralus\",\r\n \"tags\": {}\r\n },\r\n {\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 \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\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 \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\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 \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\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 \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {}\r\n },\r\n {\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 \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"DeleteBy\": \"02-2020\",\r\n \"owner\": \"sarath\",\r\n \"Purpose\": \" Testing\"\r\n }\r\n },\r\n {\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 \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\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 \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\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 \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {}\r\n },\r\n {\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 \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southindia\",\r\n \"tags\": {}\r\n },\r\n {\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 \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\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 \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/akneema/providers/Microsoft.Storage/storageAccounts/akneemastorageaccount\",\r\n \"name\": \"akneemastorageaccount\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\",\r\n \"Owner\": \"akneema\",\r\n \"Purpose\": \"Testing\",\r\n \"AutoShutdown\": \"No\",\r\n \"DeleteBy\": \"12-9999\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/akkanaseSdKTesting/providers/Microsoft.Storage/storageAccounts/sdkafstest\",\r\n \"name\": \"sdkafstest\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"Mab Used\": \"yes\",\r\n \"Purpose\": \"test\",\r\n \"Owner\": \"akkanase\",\r\n \"DeleteBy\": \"05-2020\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/sarath-rg/providers/Microsoft.Storage/storageAccounts/sarath2807sa\",\r\n \"name\": \"sarath2807sa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/sarath-rg/providers/Microsoft.Storage/storageAccounts/integrationsatest2\",\r\n \"name\": \"integrationsatest2\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/clitest.rggnhec5fjqn/providers/Microsoft.Storage/storageAccounts/clitestid46ifaymywtrwjmi\",\r\n \"name\": \"clitestid46ifaymywtrwjmi\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/vishakrg/providers/Microsoft.Storage/storageAccounts/vishaksa1\",\r\n \"name\": \"vishaksa1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.Storage/storageAccounts/pstestsa2a085f1b\",\r\n \"name\": \"pstestsa2a085f1b\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/officialmabouterloopsarg/providers/Microsoft.Storage/storageAccounts/officialmabouterloopsa\",\r\n \"name\": \"officialmabouterloopsa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"MAB Used\": \"Yes\",\r\n \"Owner\": \"mkherani\",\r\n \"Purpose\": \"officialTestReprotMail\",\r\n \"DoNotDelete\": \"true\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/sarkuma-rg/providers/Microsoft.Storage/storageAccounts/sarkumasa010\",\r\n \"name\": \"sarkumasa010\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/myrandomrg2/providers/Microsoft.Storage/storageAccounts/store4t6y6trjxpxta\",\r\n \"name\": \"store4t6y6trjxpxta\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/mkheraniccy/providers/Microsoft.Storage/storageAccounts/mkheraniccysa\",\r\n \"name\": \"mkheraniccysa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfee9dac/backupJobs/c337c0a7-6b27-4ab7-a75e-498513e89c89?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZlZTlkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmVlOWRhYy9iYWNrdXBKb2JzL2MzMzdjMGE3LTZiMjctNGFiNy1hNzVlLTQ5ODUxM2U4OWM4OT9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resources?$filter=resourceType%20eq%20'Microsoft.Storage%2FstorageAccounts'&api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5TdG9yYWdlJTJGc3RvcmFnZUFjY291bnRzJyZhcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d5ae230b-3d24-4553-a1b3-501e4e22f2d7" + "ee983894-3ca4-48d2-af84-ffcef660d31b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" ] }, "ResponseHeaders": { @@ -10063,68 +10251,63 @@ "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-IIS/10.0" - ], - "X-Content-Type-Options": [ - "nosniff" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" ], "x-ms-request-id": [ - "1bd84547-30fe-4469-8689-4be658cb311d" + "ee3b0d15-b9d4-4630-8c89-c25a8f691662" ], - "x-ms-client-request-id": [ - "d5ae230b-3d24-4553-a1b3-501e4e22f2d7", - "d5ae230b-3d24-4553-a1b3-501e4e22f2d7" + "x-ms-correlation-request-id": [ + "ee3b0d15-b9d4-4630-8c89-c25a8f691662" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220517T065405Z:ee3b0d15-b9d4-4630-8c89-c25a8f691662" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "89" - ], - "x-ms-correlation-request-id": [ - "1bd84547-30fe-4469-8689-4be658cb311d" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20220224T191442Z:1bd84547-30fe-4469-8689-4be658cb311d" + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Thu, 24 Feb 2022 19:14:41 GMT" - ], - "Content-Length": [ - "1169" + "Tue, 17 May 2022 06:54:05 GMT" ], "Content-Type": [ - "application/json" + "application/json; charset=utf-8" ], "Expires": [ "-1" + ], + "Content-Length": [ + "19847" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfee9dac/backupJobs/c337c0a7-6b27-4ab7-a75e-498513e89c89\",\r\n \"name\": \"c337c0a7-6b27-4ab7-a75e-498513e89c89\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgbfee9dac;pstestvmbfee90\",\r\n \"duration\": \"PT15M7.728834S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Transfer data from vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\",\r\n \"taskExecutionDetails\": \"67.5 GBs / 127 GBs Transferred\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"Job Type\": \"Recover disks\",\r\n \"Target VM Name\": \"vmName\",\r\n \"Target Storage Account Name\": \"pstestsabfee9dac\",\r\n \"Recovery point time \": \"2/24/2022 6:07:03 PM\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"restoreLocationType\": \"RestoreDisks\"\r\n },\r\n \"progressPercentage\": 53.0,\r\n \"estimatedRemainingDuration\": \"PT9M18.8685779S\"\r\n },\r\n \"entityFriendlyName\": \"pstestvmbfee90\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-24T18:59:34.3783033Z\",\r\n \"activityId\": \"d5ae230b-3d24-4553-a1b3-501e4e22f2d7\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\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 \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"DeleteBy\": \"01-2025\",\r\n \"Owner\": \"sarath\",\r\n \"Purpose\": \" BVT\"\r\n }\r\n },\r\n {\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 \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\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 \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\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 },\r\n {\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 \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\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 \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\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 \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\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 },\r\n {\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 \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\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 },\r\n {\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 \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\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 },\r\n {\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 \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\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 },\r\n {\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 \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\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 },\r\n {\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 \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\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 \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"germanywestcentral\",\r\n \"tags\": {}\r\n },\r\n {\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 \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\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 },\r\n {\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 \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\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 },\r\n {\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 \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"pscmd\": \"pscmd\"\r\n }\r\n },\r\n {\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 \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\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 },\r\n {\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 \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\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 },\r\n {\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 \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MAB Used\": \"Yes\",\r\n \"Owner\": \"nilsha\"\r\n }\r\n },\r\n {\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 \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"MAB Used\": \"Yes\",\r\n \"Owner\": \"nilsha\",\r\n \"Purpose\": \"BVT\"\r\n }\r\n },\r\n {\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 \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\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 },\r\n {\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 \"sku\": {\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\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 \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/mkheranipfs/providers/Microsoft.Storage/storageAccounts/mkheranipfs\",\r\n \"name\": \"mkheranipfs\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\"\r\n },\r\n \"kind\": \"FileStorage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\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 \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\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 \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\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 },\r\n {\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 \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\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 },\r\n {\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 \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\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 \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\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 \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\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 },\r\n {\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 \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\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 \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\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 \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\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 \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\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 \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\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 \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"centralus\",\r\n \"tags\": {}\r\n },\r\n {\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 \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\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 \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\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 \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\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 \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {}\r\n },\r\n {\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 \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"DeleteBy\": \"02-2020\",\r\n \"owner\": \"sarath\",\r\n \"Purpose\": \" Testing\"\r\n }\r\n },\r\n {\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 \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\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 \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\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 \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {}\r\n },\r\n {\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 \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southindia\",\r\n \"tags\": {}\r\n },\r\n {\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 \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\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 \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/akneema/providers/Microsoft.Storage/storageAccounts/akneemastorageaccount\",\r\n \"name\": \"akneemastorageaccount\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\",\r\n \"Owner\": \"akneema\",\r\n \"Purpose\": \"Testing\",\r\n \"AutoShutdown\": \"No\",\r\n \"DeleteBy\": \"12-9999\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/akkanaseSdKTesting/providers/Microsoft.Storage/storageAccounts/sdkafstest\",\r\n \"name\": \"sdkafstest\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"Mab Used\": \"yes\",\r\n \"Purpose\": \"test\",\r\n \"Owner\": \"akkanase\",\r\n \"DeleteBy\": \"05-2020\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/sarath-rg/providers/Microsoft.Storage/storageAccounts/sarath2807sa\",\r\n \"name\": \"sarath2807sa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/sarath-rg/providers/Microsoft.Storage/storageAccounts/integrationsatest2\",\r\n \"name\": \"integrationsatest2\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/clitest.rggnhec5fjqn/providers/Microsoft.Storage/storageAccounts/clitestid46ifaymywtrwjmi\",\r\n \"name\": \"clitestid46ifaymywtrwjmi\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/vishakrg/providers/Microsoft.Storage/storageAccounts/vishaksa1\",\r\n \"name\": \"vishaksa1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.Storage/storageAccounts/pstestsa2a085f1b\",\r\n \"name\": \"pstestsa2a085f1b\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/officialmabouterloopsarg/providers/Microsoft.Storage/storageAccounts/officialmabouterloopsa\",\r\n \"name\": \"officialmabouterloopsa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"MAB Used\": \"Yes\",\r\n \"Owner\": \"mkherani\",\r\n \"Purpose\": \"officialTestReprotMail\",\r\n \"DoNotDelete\": \"true\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/sarkuma-rg/providers/Microsoft.Storage/storageAccounts/sarkumasa010\",\r\n \"name\": \"sarkumasa010\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/myrandomrg2/providers/Microsoft.Storage/storageAccounts/store4t6y6trjxpxta\",\r\n \"name\": \"store4t6y6trjxpxta\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/mkheraniccy/providers/Microsoft.Storage/storageAccounts/mkheraniccysa\",\r\n \"name\": \"mkheraniccysa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfee9dac/backupJobs/c337c0a7-6b27-4ab7-a75e-498513e89c89?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZlZTlkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmVlOWRhYy9iYWNrdXBKb2JzL2MzMzdjMGE3LTZiMjctNGFiNy1hNzVlLTQ5ODUxM2U4OWM4OT9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupFabrics/Azure/protectionContainers/IaasVMContainer%3Biaasvmcontainerv2%3Bpstestrg2a085f1b%3Bpstestvm2a0850/protectedItems/VM%3Biaasvmcontainerv2%3Bpstestrg2a085f1b%3Bpstestvm2a0850/recoveryPoints/20218145283648/restore?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMmEwODVmMWIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YyYTA4NWYxYi9iYWNrdXBGYWJyaWNzL0F6dXJlL3Byb3RlY3Rpb25Db250YWluZXJzL0lhYXNWTUNvbnRhaW5lciUzQmlhYXN2bWNvbnRhaW5lcnYyJTNCcHN0ZXN0cmcyYTA4NWYxYiUzQnBzdGVzdHZtMmEwODUwL3Byb3RlY3RlZEl0ZW1zL1ZNJTNCaWFhc3ZtY29udGFpbmVydjIlM0Jwc3Rlc3RyZzJhMDg1ZjFiJTNCcHN0ZXN0dm0yYTA4NTAvcmVjb3ZlcnlQb2ludHMvMjAyMTgxNDUyODM2NDgvcmVzdG9yZT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"properties\": {\r\n \"objectType\": \"IaasVMRestoreRequest\",\r\n \"recoveryPointId\": \"20218145283648\",\r\n \"recoveryType\": \"RestoreDisks\",\r\n \"sourceResourceId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.Compute/virtualMachines/PSTestVM2a0850\",\r\n \"storageAccountId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.Storage/storageAccounts/pstestsa2a085f1b\",\r\n \"region\": \"southeastasia\",\r\n \"createNewCloudService\": false,\r\n \"originalStorageAccountOption\": false,\r\n \"restoreWithManagedDisks\": false\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "d5ae230b-3d24-4553-a1b3-501e4e22f2d7" + "6431966e-427e-4416-93a1-2e4d7ebbe356" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "645" ] }, "ResponseHeaders": { @@ -10134,65 +10317,146 @@ "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-IIS/10.0" + "Location": [ + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrg2a085f1b;pstestvm2a0850/protectedItems/VM;iaasvmcontainerv2;pstestrg2a085f1b;pstestvm2a0850/operationResults/add3f4ab-69aa-4e02-89ba-270cbcd42b97?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrg2a085f1b;pstestvm2a0850/protectedItems/VM;iaasvmcontainerv2;pstestrg2a085f1b;pstestvm2a0850/operationsStatus/add3f4ab-69aa-4e02-89ba-270cbcd42b97?api-version=2022-02-01" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "1e11d7c5-a6ea-4e06-a2f1-2aad9b104378" + "8c1a08d9-dae3-480a-9500-cf7c4942dd37" ], "x-ms-client-request-id": [ - "d5ae230b-3d24-4553-a1b3-501e4e22f2d7", - "d5ae230b-3d24-4553-a1b3-501e4e22f2d7" - ], - "X-Powered-By": [ - "ASP.NET" + "6431966e-427e-4416-93a1-2e4d7ebbe356", + "6431966e-427e-4416-93a1-2e4d7ebbe356" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "93" + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" ], "x-ms-correlation-request-id": [ - "1e11d7c5-a6ea-4e06-a2f1-2aad9b104378" + "8c1a08d9-dae3-480a-9500-cf7c4942dd37" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T191606Z:1e11d7c5-a6ea-4e06-a2f1-2aad9b104378" + "JIOINDIAWEST:20220517T063800Z:8c1a08d9-dae3-480a-9500-cf7c4942dd37" ], "Date": [ - "Thu, 24 Feb 2022 19:16:05 GMT" - ], - "Content-Length": [ - "1711" - ], - "Content-Type": [ - "application/json" + "Tue, 17 May 2022 06:37:59 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfee9dac/backupJobs/c337c0a7-6b27-4ab7-a75e-498513e89c89\",\r\n \"name\": \"c337c0a7-6b27-4ab7-a75e-498513e89c89\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgbfee9dac;pstestvmbfee90\",\r\n \"duration\": \"PT15M36.1861487S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Transfer data from vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\",\r\n \"taskExecutionDetails\": \"127 GBs / 127 GBs Transferred\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"Job Type\": \"Recover disks\",\r\n \"Target VM Name\": \"vmName\",\r\n \"Target Storage Account Name\": \"pstestsabfee9dac\",\r\n \"Recovery point time \": \"2/24/2022 6:07:03 PM\",\r\n \"Config Blob Name\": \"config-pstestvmbfee90-c337c0a7-6b27-4ab7-a75e-498513e89c89.json\",\r\n \"Config Blob Container Name\": \"pstestvmbfee90-2f2458ec624744c799441b4063baac50\",\r\n \"Config Blob Uri\": \"https://pstestsabfee9dac.blob.core.windows.net/pstestvmbfee90-2f2458ec624744c799441b4063baac50/config-pstestvmbfee90-c337c0a7-6b27-4ab7-a75e-498513e89c89.json\",\r\n \"Template Blob Uri\": \"https://pstestsabfee9dac.blob.core.windows.net/pstestvmbfee90-2f2458ec624744c799441b4063baac50/azuredeployc337c0a7-6b27-4ab7-a75e-498513e89c89.json\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"restoreLocationType\": \"RestoreDisks\"\r\n },\r\n \"progressPercentage\": 100.0,\r\n \"estimatedRemainingDuration\": \"PT0S\"\r\n },\r\n \"entityFriendlyName\": \"pstestvmbfee90\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-02-24T18:59:34.3783033Z\",\r\n \"endTime\": \"2022-02-24T19:15:10.564452Z\",\r\n \"activityId\": \"d5ae230b-3d24-4553-a1b3-501e4e22f2d7\"\r\n }\r\n}", - "StatusCode": 200 + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupFabrics/Azure/protectionContainers/IaasVMContainer%3Biaasvmcontainerv2%3Bpstestrg2a085f1b%3Bpstestvm2a0850/protectedItems/VM%3Biaasvmcontainerv2%3Bpstestrg2a085f1b%3Bpstestvm2a0850/recoveryPoints/20218145283648/restore?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMmEwODVmMWIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YyYTA4NWYxYi9iYWNrdXBGYWJyaWNzL0F6dXJlL3Byb3RlY3Rpb25Db250YWluZXJzL0lhYXNWTUNvbnRhaW5lciUzQmlhYXN2bWNvbnRhaW5lcnYyJTNCcHN0ZXN0cmcyYTA4NWYxYiUzQnBzdGVzdHZtMmEwODUwL3Byb3RlY3RlZEl0ZW1zL1ZNJTNCaWFhc3ZtY29udGFpbmVydjIlM0Jwc3Rlc3RyZzJhMDg1ZjFiJTNCcHN0ZXN0dm0yYTA4NTAvcmVjb3ZlcnlQb2ludHMvMjAyMTgxNDUyODM2NDgvcmVzdG9yZT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"properties\": {\r\n \"objectType\": \"IaasVMRestoreRequest\",\r\n \"recoveryPointId\": \"20218145283648\",\r\n \"recoveryType\": \"RestoreDisks\",\r\n \"sourceResourceId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.Compute/virtualMachines/PSTestVM2a0850\",\r\n \"targetResourceGroupId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b1\",\r\n \"storageAccountId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.Storage/storageAccounts/pstestsa2a085f1b\",\r\n \"region\": \"southeastasia\",\r\n \"createNewCloudService\": false,\r\n \"originalStorageAccountOption\": false,\r\n \"restoreWithManagedDisks\": false\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ee983894-3ca4-48d2-af84-ffcef660d31b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "763" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrg2a085f1b;pstestvm2a0850/protectedItems/VM;iaasvmcontainerv2;pstestrg2a085f1b;pstestvm2a0850/operationResults/ae5c62fa-6e6f-42d6-8a05-5fa3d55142af?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrg2a085f1b;pstestvm2a0850/protectedItems/VM;iaasvmcontainerv2;pstestrg2a085f1b;pstestvm2a0850/operationsStatus/ae5c62fa-6e6f-42d6-8a05-5fa3d55142af?api-version=2022-02-01" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "b5862d5a-2edd-41ae-b09e-726b3b3650ec" + ], + "x-ms-client-request-id": [ + "ee983894-3ca4-48d2-af84-ffcef660d31b", + "ee983894-3ca4-48d2-af84-ffcef660d31b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-correlation-request-id": [ + "b5862d5a-2edd-41ae-b09e-726b3b3650ec" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220517T065406Z:b5862d5a-2edd-41ae-b09e-726b3b3650ec" + ], + "Date": [ + "Tue, 17 May 2022 06:54:06 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfee9dac/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrgbfee9dac;pstestvmbfee90/protectedItems/VM;iaasvmcontainerv2;pstestrgbfee9dac;pstestvmbfee90/operationsStatus/75de57de-6390-4cab-82a8-e3c555eeec62?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZlZTlkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmVlOWRhYy9iYWNrdXBGYWJyaWNzL0F6dXJlL3Byb3RlY3Rpb25Db250YWluZXJzL0lhYXNWTUNvbnRhaW5lcjtpYWFzdm1jb250YWluZXJ2Mjtwc3Rlc3RyZ2JmZWU5ZGFjO3BzdGVzdHZtYmZlZTkwL3Byb3RlY3RlZEl0ZW1zL1ZNO2lhYXN2bWNvbnRhaW5lcnYyO3BzdGVzdHJnYmZlZTlkYWM7cHN0ZXN0dm1iZmVlOTAvb3BlcmF0aW9uc1N0YXR1cy83NWRlNTdkZS02MzkwLTRjYWItODJhOC1lM2M1NTVlZWVjNjI/YXBpLXZlcnNpb249MjAyMS0xMC0wMQ==", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrg2a085f1b;pstestvm2a0850/protectedItems/VM;iaasvmcontainerv2;pstestrg2a085f1b;pstestvm2a0850/operationsStatus/add3f4ab-69aa-4e02-89ba-270cbcd42b97?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMmEwODVmMWIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YyYTA4NWYxYi9iYWNrdXBGYWJyaWNzL0F6dXJlL3Byb3RlY3Rpb25Db250YWluZXJzL0lhYXNWTUNvbnRhaW5lcjtpYWFzdm1jb250YWluZXJ2Mjtwc3Rlc3RyZzJhMDg1ZjFiO3BzdGVzdHZtMmEwODUwL3Byb3RlY3RlZEl0ZW1zL1ZNO2lhYXN2bWNvbnRhaW5lcnYyO3BzdGVzdHJnMmEwODVmMWI7cHN0ZXN0dm0yYTA4NTAvb3BlcmF0aW9uc1N0YXR1cy9hZGQzZjRhYi02OWFhLTRlMDItODliYS0yNzBjYmNkNDJiOTc/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0a13ea5c-4683-4930-847f-733fc7606ca5" + "6431966e-427e-4416-93a1-2e4d7ebbe356" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -10206,11 +10470,11 @@ "nosniff" ], "x-ms-request-id": [ - "5d154a35-c556-4a31-9c60-a06c1346cf3b" + "10a935d6-e483-4304-a3fb-943ab6c3d649" ], "x-ms-client-request-id": [ - "0a13ea5c-4683-4930-847f-733fc7606ca5", - "0a13ea5c-4683-4930-847f-733fc7606ca5" + "6431966e-427e-4416-93a1-2e4d7ebbe356", + "6431966e-427e-4416-93a1-2e4d7ebbe356" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -10222,19 +10486,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "148" + "149" ], "x-ms-correlation-request-id": [ - "5d154a35-c556-4a31-9c60-a06c1346cf3b" + "10a935d6-e483-4304-a3fb-943ab6c3d649" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T191715Z:5d154a35-c556-4a31-9c60-a06c1346cf3b" + "JIOINDIAWEST:20220517T063901Z:10a935d6-e483-4304-a3fb-943ab6c3d649" ], "Date": [ - "Thu, 24 Feb 2022 19:17:14 GMT" + "Tue, 17 May 2022 06:39:01 GMT" ], "Content-Length": [ - "302" + "304" ], "Content-Type": [ "application/json" @@ -10243,23 +10507,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"75de57de-6390-4cab-82a8-e3c555eeec62\",\r\n \"name\": \"75de57de-6390-4cab-82a8-e3c555eeec62\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-02-24T19:16:09.695105Z\",\r\n \"endTime\": \"2022-02-24T19:16:09.695105Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"75de57de-6390-4cab-82a8-e3c555eeec62\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"add3f4ab-69aa-4e02-89ba-270cbcd42b97\",\r\n \"name\": \"add3f4ab-69aa-4e02-89ba-270cbcd42b97\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-05-17T06:38:00.3280088Z\",\r\n \"endTime\": \"2022-05-17T06:38:00.3280088Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"add3f4ab-69aa-4e02-89ba-270cbcd42b97\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfee9dac/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrgbfee9dac;pstestvmbfee90/protectedItems/VM;iaasvmcontainerv2;pstestrgbfee9dac;pstestvmbfee90/operationResults/75de57de-6390-4cab-82a8-e3c555eeec62?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZlZTlkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmVlOWRhYy9iYWNrdXBGYWJyaWNzL0F6dXJlL3Byb3RlY3Rpb25Db250YWluZXJzL0lhYXNWTUNvbnRhaW5lcjtpYWFzdm1jb250YWluZXJ2Mjtwc3Rlc3RyZ2JmZWU5ZGFjO3BzdGVzdHZtYmZlZTkwL3Byb3RlY3RlZEl0ZW1zL1ZNO2lhYXN2bWNvbnRhaW5lcnYyO3BzdGVzdHJnYmZlZTlkYWM7cHN0ZXN0dm1iZmVlOTAvb3BlcmF0aW9uUmVzdWx0cy83NWRlNTdkZS02MzkwLTRjYWItODJhOC1lM2M1NTVlZWVjNjI/YXBpLXZlcnNpb249MjAyMS0xMC0wMQ==", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrg2a085f1b;pstestvm2a0850/protectedItems/VM;iaasvmcontainerv2;pstestrg2a085f1b;pstestvm2a0850/operationResults/add3f4ab-69aa-4e02-89ba-270cbcd42b97?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMmEwODVmMWIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YyYTA4NWYxYi9iYWNrdXBGYWJyaWNzL0F6dXJlL3Byb3RlY3Rpb25Db250YWluZXJzL0lhYXNWTUNvbnRhaW5lcjtpYWFzdm1jb250YWluZXJ2Mjtwc3Rlc3RyZzJhMDg1ZjFiO3BzdGVzdHZtMmEwODUwL3Byb3RlY3RlZEl0ZW1zL1ZNO2lhYXN2bWNvbnRhaW5lcnYyO3BzdGVzdHJnMmEwODVmMWI7cHN0ZXN0dm0yYTA4NTAvb3BlcmF0aW9uUmVzdWx0cy9hZGQzZjRhYi02OWFhLTRlMDItODliYS0yNzBjYmNkNDJiOTc/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0a13ea5c-4683-4930-847f-733fc7606ca5" + "6431966e-427e-4416-93a1-2e4d7ebbe356" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -10273,17 +10537,17 @@ "60" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfee9dac/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrgbfee9dac;pstestvmbfee90/protectedItems/VM;iaasvmcontainerv2;pstestrgbfee9dac;pstestvmbfee90/operationsStatus/75de57de-6390-4cab-82a8-e3c555eeec62?api-version=2021-10-01" + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrg2a085f1b;pstestvm2a0850/protectedItems/VM;iaasvmcontainerv2;pstestrg2a085f1b;pstestvm2a0850/operationsStatus/add3f4ab-69aa-4e02-89ba-270cbcd42b97?api-version=2022-02-01" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "bd606e29-9d94-4aea-9fb7-06732f198e6d" + "8c457659-0715-48f5-b379-519015a92c91" ], "x-ms-client-request-id": [ - "0a13ea5c-4683-4930-847f-733fc7606ca5", - "0a13ea5c-4683-4930-847f-733fc7606ca5" + "6431966e-427e-4416-93a1-2e4d7ebbe356", + "6431966e-427e-4416-93a1-2e4d7ebbe356" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -10292,44 +10556,38 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "148" + "149" ], "x-ms-correlation-request-id": [ - "bd606e29-9d94-4aea-9fb7-06732f198e6d" + "8c457659-0715-48f5-b379-519015a92c91" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T191716Z:bd606e29-9d94-4aea-9fb7-06732f198e6d" + "JIOINDIAWEST:20220517T063902Z:8c457659-0715-48f5-b379-519015a92c91" ], "Date": [ - "Thu, 24 Feb 2022 19:17:15 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Tue, 17 May 2022 06:39:02 GMT" ] }, "ResponseBody": "", "StatusCode": 204 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfee9dac/backupOperations/75de57de-6390-4cab-82a8-e3c555eeec62?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZlZTlkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmVlOWRhYy9iYWNrdXBPcGVyYXRpb25zLzc1ZGU1N2RlLTYzOTAtNGNhYi04MmE4LWUzYzU1NWVlZWM2Mj9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupOperations/add3f4ab-69aa-4e02-89ba-270cbcd42b97?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMmEwODVmMWIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YyYTA4NWYxYi9iYWNrdXBPcGVyYXRpb25zL2FkZDNmNGFiLTY5YWEtNGUwMi04OWJhLTI3MGNiY2Q0MmI5Nz9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0a13ea5c-4683-4930-847f-733fc7606ca5" + "6431966e-427e-4416-93a1-2e4d7ebbe356" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -10343,11 +10601,11 @@ "nosniff" ], "x-ms-request-id": [ - "027af9c2-4c55-4da5-bb12-d5484d900b59" + "2643f2ce-e864-4ea5-b870-911946126003" ], "x-ms-client-request-id": [ - "0a13ea5c-4683-4930-847f-733fc7606ca5", - "0a13ea5c-4683-4930-847f-733fc7606ca5" + "6431966e-427e-4416-93a1-2e4d7ebbe356", + "6431966e-427e-4416-93a1-2e4d7ebbe356" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -10359,19 +10617,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "147" + "136" ], "x-ms-correlation-request-id": [ - "027af9c2-4c55-4da5-bb12-d5484d900b59" + "2643f2ce-e864-4ea5-b870-911946126003" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T191716Z:027af9c2-4c55-4da5-bb12-d5484d900b59" + "JIOINDIAWEST:20220517T063902Z:2643f2ce-e864-4ea5-b870-911946126003" ], "Date": [ - "Thu, 24 Feb 2022 19:17:16 GMT" + "Tue, 17 May 2022 06:39:02 GMT" ], "Content-Length": [ - "302" + "304" ], "Content-Type": [ "application/json" @@ -10380,26 +10638,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"75de57de-6390-4cab-82a8-e3c555eeec62\",\r\n \"name\": \"75de57de-6390-4cab-82a8-e3c555eeec62\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-02-24T19:16:09.695105Z\",\r\n \"endTime\": \"2022-02-24T19:16:09.695105Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"75de57de-6390-4cab-82a8-e3c555eeec62\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"add3f4ab-69aa-4e02-89ba-270cbcd42b97\",\r\n \"name\": \"add3f4ab-69aa-4e02-89ba-270cbcd42b97\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-05-17T06:38:00.3280088Z\",\r\n \"endTime\": \"2022-05-17T06:38:00.3280088Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"add3f4ab-69aa-4e02-89ba-270cbcd42b97\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfee9dac/backupOperations/75de57de-6390-4cab-82a8-e3c555eeec62?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZlZTlkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmVlOWRhYy9iYWNrdXBPcGVyYXRpb25zLzc1ZGU1N2RlLTYzOTAtNGNhYi04MmE4LWUzYzU1NWVlZWM2Mj9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupOperations/add3f4ab-69aa-4e02-89ba-270cbcd42b97?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMmEwODVmMWIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YyYTA4NWYxYi9iYWNrdXBPcGVyYXRpb25zL2FkZDNmNGFiLTY5YWEtNGUwMi04OWJhLTI3MGNiY2Q0MmI5Nz9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0a13ea5c-4683-4930-847f-733fc7606ca5" + "6431966e-427e-4416-93a1-2e4d7ebbe356" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -10413,11 +10671,11 @@ "nosniff" ], "x-ms-request-id": [ - "943a4025-0d36-4adf-8e9e-df7f99ef6b0b" + "da39842f-df36-44ab-806b-6306b67c8b95" ], "x-ms-client-request-id": [ - "0a13ea5c-4683-4930-847f-733fc7606ca5", - "0a13ea5c-4683-4930-847f-733fc7606ca5" + "6431966e-427e-4416-93a1-2e4d7ebbe356", + "6431966e-427e-4416-93a1-2e4d7ebbe356" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -10429,19 +10687,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "146" + "135" ], "x-ms-correlation-request-id": [ - "943a4025-0d36-4adf-8e9e-df7f99ef6b0b" + "da39842f-df36-44ab-806b-6306b67c8b95" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T191717Z:943a4025-0d36-4adf-8e9e-df7f99ef6b0b" + "JIOINDIAWEST:20220517T063903Z:da39842f-df36-44ab-806b-6306b67c8b95" ], "Date": [ - "Thu, 24 Feb 2022 19:17:16 GMT" + "Tue, 17 May 2022 06:39:03 GMT" ], "Content-Length": [ - "302" + "304" ], "Content-Type": [ "application/json" @@ -10450,26 +10708,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"75de57de-6390-4cab-82a8-e3c555eeec62\",\r\n \"name\": \"75de57de-6390-4cab-82a8-e3c555eeec62\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-02-24T19:16:09.695105Z\",\r\n \"endTime\": \"2022-02-24T19:16:09.695105Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"75de57de-6390-4cab-82a8-e3c555eeec62\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"add3f4ab-69aa-4e02-89ba-270cbcd42b97\",\r\n \"name\": \"add3f4ab-69aa-4e02-89ba-270cbcd42b97\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-05-17T06:38:00.3280088Z\",\r\n \"endTime\": \"2022-05-17T06:38:00.3280088Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"add3f4ab-69aa-4e02-89ba-270cbcd42b97\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfee9dac/backupJobs/75de57de-6390-4cab-82a8-e3c555eeec62?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZlZTlkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmVlOWRhYy9iYWNrdXBKb2JzLzc1ZGU1N2RlLTYzOTAtNGNhYi04MmE4LWUzYzU1NWVlZWM2Mj9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupJobs/add3f4ab-69aa-4e02-89ba-270cbcd42b97?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMmEwODVmMWIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YyYTA4NWYxYi9iYWNrdXBKb2JzL2FkZDNmNGFiLTY5YWEtNGUwMi04OWJhLTI3MGNiY2Q0MmI5Nz9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0a13ea5c-4683-4930-847f-733fc7606ca5" + "6431966e-427e-4416-93a1-2e4d7ebbe356" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -10487,11 +10745,11 @@ "nosniff" ], "x-ms-request-id": [ - "ad56e288-1f3e-42a2-8594-48c65a97cfd8" + "3b4f3d00-8d6a-4cf0-a674-c177630f4049" ], "x-ms-client-request-id": [ - "0a13ea5c-4683-4930-847f-733fc7606ca5", - "0a13ea5c-4683-4930-847f-733fc7606ca5" + "6431966e-427e-4416-93a1-2e4d7ebbe356", + "6431966e-427e-4416-93a1-2e4d7ebbe356" ], "X-Powered-By": [ "ASP.NET" @@ -10500,19 +10758,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "92" + "85" ], "x-ms-correlation-request-id": [ - "ad56e288-1f3e-42a2-8594-48c65a97cfd8" + "3b4f3d00-8d6a-4cf0-a674-c177630f4049" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T191717Z:ad56e288-1f3e-42a2-8594-48c65a97cfd8" + "JIOINDIAWEST:20220517T063904Z:3b4f3d00-8d6a-4cf0-a674-c177630f4049" ], "Date": [ - "Thu, 24 Feb 2022 19:17:17 GMT" + "Tue, 17 May 2022 06:39:04 GMT" ], "Content-Length": [ - "1753" + "1065" ], "Content-Type": [ "application/json" @@ -10521,26 +10779,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfee9dac/backupJobs/75de57de-6390-4cab-82a8-e3c555eeec62\",\r\n \"name\": \"75de57de-6390-4cab-82a8-e3c555eeec62\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgbfee9dac;pstestvmbfee90\",\r\n \"duration\": \"PT1M7.2254796S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Transfer data from vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\",\r\n \"taskExecutionDetails\": \"127 GBs / 127 GBs Transferred\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"Job Type\": \"Recover disks\",\r\n \"Target VM Name\": \"vmName\",\r\n \"Target Storage Account Name\": \"pstestsabfee9dac\",\r\n \"Recovery point time \": \"2/24/2022 6:07:03 PM\",\r\n \"Config Blob Name\": \"config-pstestvmbfee90-75de57de-6390-4cab-82a8-e3c555eeec62.json\",\r\n \"Config Blob Container Name\": \"pstestvmbfee90-65a4f129abed49b9b0bad985b80b761c\",\r\n \"Config Blob Uri\": \"https://pstestsabfee9dac.blob.core.windows.net/pstestvmbfee90-65a4f129abed49b9b0bad985b80b761c/config-pstestvmbfee90-75de57de-6390-4cab-82a8-e3c555eeec62.json\",\r\n \"Target resource group\": \"PSTestRGbfee9dac1\",\r\n \"Template Blob Uri\": \"https://pstestsabfee9dac.blob.core.windows.net/pstestvmbfee90-65a4f129abed49b9b0bad985b80b761c/azuredeploy75de57de-6390-4cab-82a8-e3c555eeec62.json\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"restoreLocationType\": \"RestoreDisks\"\r\n },\r\n \"progressPercentage\": 100.0,\r\n \"estimatedRemainingDuration\": \"PT0S\"\r\n },\r\n \"entityFriendlyName\": \"pstestvmbfee90\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-02-24T19:16:09.695105Z\",\r\n \"endTime\": \"2022-02-24T19:17:16.9205846Z\",\r\n \"activityId\": \"0a13ea5c-4683-4930-847f-733fc7606ca5\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupJobs/add3f4ab-69aa-4e02-89ba-270cbcd42b97\",\r\n \"name\": \"add3f4ab-69aa-4e02-89ba-270cbcd42b97\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg2a085f1b;pstestvm2a0850\",\r\n \"duration\": \"PT1M3.3191716S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Transfer data from vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"Job Type\": \"Recover disks\",\r\n \"Target VM Name\": \"vmName\",\r\n \"Target Storage Account Name\": \"pstestsa2a085f1b\",\r\n \"Recovery point time \": \"5/17/2022 6:06:33 AM\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"restoreLocationType\": \"RestoreDisks\"\r\n },\r\n \"progressPercentage\": 1.0\r\n },\r\n \"entityFriendlyName\": \"pstestvm2a0850\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T06:38:00.3280088Z\",\r\n \"activityId\": \"6431966e-427e-4416-93a1-2e4d7ebbe356\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfee9dac/backupJobs/75de57de-6390-4cab-82a8-e3c555eeec62?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZlZTlkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmVlOWRhYy9iYWNrdXBKb2JzLzc1ZGU1N2RlLTYzOTAtNGNhYi04MmE4LWUzYzU1NWVlZWM2Mj9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupJobs/add3f4ab-69aa-4e02-89ba-270cbcd42b97?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMmEwODVmMWIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YyYTA4NWYxYi9iYWNrdXBKb2JzL2FkZDNmNGFiLTY5YWEtNGUwMi04OWJhLTI3MGNiY2Q0MmI5Nz9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0a13ea5c-4683-4930-847f-733fc7606ca5" + "6431966e-427e-4416-93a1-2e4d7ebbe356" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -10558,11 +10816,11 @@ "nosniff" ], "x-ms-request-id": [ - "89aac9e8-2d84-4e13-8c43-e31e4278a23a" + "86eb10db-2f8a-4995-9868-03045188c17c" ], "x-ms-client-request-id": [ - "0a13ea5c-4683-4930-847f-733fc7606ca5", - "0a13ea5c-4683-4930-847f-733fc7606ca5" + "6431966e-427e-4416-93a1-2e4d7ebbe356", + "6431966e-427e-4416-93a1-2e4d7ebbe356" ], "X-Powered-By": [ "ASP.NET" @@ -10571,19 +10829,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "91" + "84" ], "x-ms-correlation-request-id": [ - "89aac9e8-2d84-4e13-8c43-e31e4278a23a" + "86eb10db-2f8a-4995-9868-03045188c17c" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T191718Z:89aac9e8-2d84-4e13-8c43-e31e4278a23a" + "JIOINDIAWEST:20220517T063904Z:86eb10db-2f8a-4995-9868-03045188c17c" ], "Date": [ - "Thu, 24 Feb 2022 19:17:17 GMT" + "Tue, 17 May 2022 06:39:04 GMT" ], "Content-Length": [ - "1753" + "1065" ], "Content-Type": [ "application/json" @@ -10592,26 +10850,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfee9dac/backupJobs/75de57de-6390-4cab-82a8-e3c555eeec62\",\r\n \"name\": \"75de57de-6390-4cab-82a8-e3c555eeec62\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgbfee9dac;pstestvmbfee90\",\r\n \"duration\": \"PT1M7.2254796S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Transfer data from vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\",\r\n \"taskExecutionDetails\": \"127 GBs / 127 GBs Transferred\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"Job Type\": \"Recover disks\",\r\n \"Target VM Name\": \"vmName\",\r\n \"Target Storage Account Name\": \"pstestsabfee9dac\",\r\n \"Recovery point time \": \"2/24/2022 6:07:03 PM\",\r\n \"Config Blob Name\": \"config-pstestvmbfee90-75de57de-6390-4cab-82a8-e3c555eeec62.json\",\r\n \"Config Blob Container Name\": \"pstestvmbfee90-65a4f129abed49b9b0bad985b80b761c\",\r\n \"Config Blob Uri\": \"https://pstestsabfee9dac.blob.core.windows.net/pstestvmbfee90-65a4f129abed49b9b0bad985b80b761c/config-pstestvmbfee90-75de57de-6390-4cab-82a8-e3c555eeec62.json\",\r\n \"Target resource group\": \"PSTestRGbfee9dac1\",\r\n \"Template Blob Uri\": \"https://pstestsabfee9dac.blob.core.windows.net/pstestvmbfee90-65a4f129abed49b9b0bad985b80b761c/azuredeploy75de57de-6390-4cab-82a8-e3c555eeec62.json\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"restoreLocationType\": \"RestoreDisks\"\r\n },\r\n \"progressPercentage\": 100.0,\r\n \"estimatedRemainingDuration\": \"PT0S\"\r\n },\r\n \"entityFriendlyName\": \"pstestvmbfee90\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-02-24T19:16:09.695105Z\",\r\n \"endTime\": \"2022-02-24T19:17:16.9205846Z\",\r\n \"activityId\": \"0a13ea5c-4683-4930-847f-733fc7606ca5\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupJobs/add3f4ab-69aa-4e02-89ba-270cbcd42b97\",\r\n \"name\": \"add3f4ab-69aa-4e02-89ba-270cbcd42b97\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg2a085f1b;pstestvm2a0850\",\r\n \"duration\": \"PT1M3.9451795S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Transfer data from vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"Job Type\": \"Recover disks\",\r\n \"Target VM Name\": \"vmName\",\r\n \"Target Storage Account Name\": \"pstestsa2a085f1b\",\r\n \"Recovery point time \": \"5/17/2022 6:06:33 AM\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"restoreLocationType\": \"RestoreDisks\"\r\n },\r\n \"progressPercentage\": 1.0\r\n },\r\n \"entityFriendlyName\": \"pstestvm2a0850\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T06:38:00.3280088Z\",\r\n \"activityId\": \"6431966e-427e-4416-93a1-2e4d7ebbe356\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.RecoveryServices/vaults?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZlZTlkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cz9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupJobs/add3f4ab-69aa-4e02-89ba-270cbcd42b97?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMmEwODVmMWIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YyYTA4NWYxYi9iYWNrdXBKb2JzL2FkZDNmNGFiLTY5YWEtNGUwMi04OWJhLTI3MGNiY2Q0MmI5Nz9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d529d4dd-7753-4d15-bc2b-0d4f2a0680e5" + "6431966e-427e-4416-93a1-2e4d7ebbe356" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesClient/4.3.2.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -10621,35 +10879,40 @@ "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-IIS/10.0", + "Microsoft-IIS/10.0" + ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "b5141111-bd5b-477b-91c4-790f4b747870" + "383766f0-7dbd-4a99-8211-88ef6568c567" ], "x-ms-client-request-id": [ - "d529d4dd-7753-4d15-bc2b-0d4f2a0680e5" + "6431966e-427e-4416-93a1-2e4d7ebbe356", + "6431966e-427e-4416-93a1-2e4d7ebbe356" + ], + "X-Powered-By": [ + "ASP.NET" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "83" ], "x-ms-correlation-request-id": [ - "b5141111-bd5b-477b-91c4-790f4b747870" + "383766f0-7dbd-4a99-8211-88ef6568c567" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T191720Z:b5141111-bd5b-477b-91c4-790f4b747870" + "JIOINDIAWEST:20220517T063935Z:383766f0-7dbd-4a99-8211-88ef6568c567" ], "Date": [ - "Thu, 24 Feb 2022 19:17:19 GMT" + "Tue, 17 May 2022 06:39:35 GMT" ], "Content-Length": [ - "478" + "1066" ], "Content-Type": [ "application/json" @@ -10658,26 +10921,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"PSTestRSVbfee9dac\",\r\n \"etag\": \"W/\\\"datetime'2022-02-24T18%3A05%3A43.2111159Z'\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateEndpointStateForBackup\": \"None\",\r\n \"privateEndpointStateForSiteRecovery\": \"None\"\r\n },\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfee9dac\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupJobs/add3f4ab-69aa-4e02-89ba-270cbcd42b97\",\r\n \"name\": \"add3f4ab-69aa-4e02-89ba-270cbcd42b97\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg2a085f1b;pstestvm2a0850\",\r\n \"duration\": \"PT1M34.6072889S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Transfer data from vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"Job Type\": \"Recover disks\",\r\n \"Target VM Name\": \"vmName\",\r\n \"Target Storage Account Name\": \"pstestsa2a085f1b\",\r\n \"Recovery point time \": \"5/17/2022 6:06:33 AM\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"restoreLocationType\": \"RestoreDisks\"\r\n },\r\n \"progressPercentage\": 1.0\r\n },\r\n \"entityFriendlyName\": \"pstestvm2a0850\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T06:38:00.3280088Z\",\r\n \"activityId\": \"6431966e-427e-4416-93a1-2e4d7ebbe356\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfee9dac/backupProtectionContainers?$filter=backupManagementType%20eq%20'AzureIaasVM'%20and%20status%20eq%20'Registered'&api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZlZTlkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmVlOWRhYy9iYWNrdXBQcm90ZWN0aW9uQ29udGFpbmVycz8kZmlsdGVyPWJhY2t1cE1hbmFnZW1lbnRUeXBlJTIwZXElMjAnQXp1cmVJYWFzVk0nJTIwYW5kJTIwc3RhdHVzJTIwZXElMjAnUmVnaXN0ZXJlZCcmYXBpLXZlcnNpb249MjAyMS0xMC0wMQ==", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupJobs/add3f4ab-69aa-4e02-89ba-270cbcd42b97?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMmEwODVmMWIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YyYTA4NWYxYi9iYWNrdXBKb2JzL2FkZDNmNGFiLTY5YWEtNGUwMi04OWJhLTI3MGNiY2Q0MmI5Nz9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fe309ea6-5bc1-42a4-8a8a-52e044b6ee43" + "6431966e-427e-4416-93a1-2e4d7ebbe356" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -10687,39 +10950,40 @@ "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-IIS/10.0", + "Microsoft-IIS/10.0" + ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "8b432c27-1df3-408c-bb0c-8e65b00bafff" + "7f290b0a-fbb7-4dcb-b58a-8bf9c6bb55e0" ], "x-ms-client-request-id": [ - "fe309ea6-5bc1-42a4-8a8a-52e044b6ee43", - "fe309ea6-5bc1-42a4-8a8a-52e044b6ee43" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-IIS/10.0" + "6431966e-427e-4416-93a1-2e4d7ebbe356", + "6431966e-427e-4416-93a1-2e4d7ebbe356" ], "X-Powered-By": [ "ASP.NET" ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "149" + "82" ], "x-ms-correlation-request-id": [ - "8b432c27-1df3-408c-bb0c-8e65b00bafff" + "7f290b0a-fbb7-4dcb-b58a-8bf9c6bb55e0" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T191720Z:8b432c27-1df3-408c-bb0c-8e65b00bafff" + "JIOINDIAWEST:20220517T064006Z:7f290b0a-fbb7-4dcb-b58a-8bf9c6bb55e0" ], "Date": [ - "Thu, 24 Feb 2022 19:17:20 GMT" + "Tue, 17 May 2022 06:40:05 GMT" ], "Content-Length": [ - "914" + "1065" ], "Content-Type": [ "application/json" @@ -10728,26 +10992,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfee9dac/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrgbfee9dac;pstestvmbfee90\",\r\n \"name\": \"IaasVMContainer;iaasvmcontainerv2;pstestrgbfee9dac;pstestvmbfee90\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers\",\r\n \"properties\": {\r\n \"virtualMachineId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.Compute/virtualMachines/PSTestVMbfee90\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"resourceGroup\": \"PSTestRGbfee9dac\",\r\n \"friendlyName\": \"PSTestVMbfee90\",\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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupJobs/add3f4ab-69aa-4e02-89ba-270cbcd42b97\",\r\n \"name\": \"add3f4ab-69aa-4e02-89ba-270cbcd42b97\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg2a085f1b;pstestvm2a0850\",\r\n \"duration\": \"PT2M5.2375391S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Transfer data from vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"Job Type\": \"Recover disks\",\r\n \"Target VM Name\": \"vmName\",\r\n \"Target Storage Account Name\": \"pstestsa2a085f1b\",\r\n \"Recovery point time \": \"5/17/2022 6:06:33 AM\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"restoreLocationType\": \"RestoreDisks\"\r\n },\r\n \"progressPercentage\": 1.0\r\n },\r\n \"entityFriendlyName\": \"pstestvm2a0850\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T06:38:00.3280088Z\",\r\n \"activityId\": \"6431966e-427e-4416-93a1-2e4d7ebbe356\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfee9dac/backupFabrics/Azure/protectionContainers/IaasVMContainer%3Biaasvmcontainerv2%3Bpstestrgbfee9dac%3Bpstestvmbfee90/protectedItems/VM%3Biaasvmcontainerv2%3Bpstestrgbfee9dac%3Bpstestvmbfee90/recoveryPoints?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZlZTlkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmVlOWRhYy9iYWNrdXBGYWJyaWNzL0F6dXJlL3Byb3RlY3Rpb25Db250YWluZXJzL0lhYXNWTUNvbnRhaW5lciUzQmlhYXN2bWNvbnRhaW5lcnYyJTNCcHN0ZXN0cmdiZmVlOWRhYyUzQnBzdGVzdHZtYmZlZTkwL3Byb3RlY3RlZEl0ZW1zL1ZNJTNCaWFhc3ZtY29udGFpbmVydjIlM0Jwc3Rlc3RyZ2JmZWU5ZGFjJTNCcHN0ZXN0dm1iZmVlOTAvcmVjb3ZlcnlQb2ludHM/YXBpLXZlcnNpb249MjAyMS0xMC0wMQ==", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupJobs/add3f4ab-69aa-4e02-89ba-270cbcd42b97?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMmEwODVmMWIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YyYTA4NWYxYi9iYWNrdXBKb2JzL2FkZDNmNGFiLTY5YWEtNGUwMi04OWJhLTI3MGNiY2Q0MmI5Nz9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e4a7f46f-f332-463d-9679-00bd4ddc5588" + "6431966e-427e-4416-93a1-2e4d7ebbe356" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -10757,39 +11021,40 @@ "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-IIS/10.0", + "Microsoft-IIS/10.0" + ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "4fb92257-b4a2-4718-8ebd-8bfb9884e502" + "312fd652-4d28-4d12-952a-504057670d39" ], "x-ms-client-request-id": [ - "e4a7f46f-f332-463d-9679-00bd4ddc5588", - "e4a7f46f-f332-463d-9679-00bd4ddc5588" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-IIS/10.0" + "6431966e-427e-4416-93a1-2e4d7ebbe356", + "6431966e-427e-4416-93a1-2e4d7ebbe356" ], "X-Powered-By": [ "ASP.NET" ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "148" + "81" ], "x-ms-correlation-request-id": [ - "4fb92257-b4a2-4718-8ebd-8bfb9884e502" + "312fd652-4d28-4d12-952a-504057670d39" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T191721Z:4fb92257-b4a2-4718-8ebd-8bfb9884e502" + "JIOINDIAWEST:20220517T064036Z:312fd652-4d28-4d12-952a-504057670d39" ], "Date": [ - "Thu, 24 Feb 2022 19:17:21 GMT" + "Tue, 17 May 2022 06:40:36 GMT" ], "Content-Length": [ - "1259" + "1065" ], "Content-Type": [ "application/json" @@ -10798,26 +11063,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfee9dac/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrgbfee9dac;pstestvmbfee90/protectedItems/VM;iaasvmcontainerv2;pstestrgbfee9dac;pstestvmbfee90/recoveryPoints/157250105138399\",\r\n \"name\": \"157250105138399\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints\",\r\n \"properties\": {\r\n \"objectType\": \"IaasVMRecoveryPoint\",\r\n \"recoveryPointType\": \"AppConsistent\",\r\n \"recoveryPointTime\": \"2022-02-24T18:07:03.5199409Z\",\r\n \"recoveryPointAdditionalInfo\": \"\",\r\n \"sourceVMStorageType\": \"NormalStorage\",\r\n \"isSourceVMEncrypted\": false,\r\n \"isInstantIlrSessionActive\": false,\r\n \"recoveryPointTierDetails\": [\r\n {\r\n \"type\": 1,\r\n \"status\": 1\r\n },\r\n {\r\n \"type\": 2,\r\n \"status\": 1\r\n }\r\n ],\r\n \"isManagedVirtualMachine\": true,\r\n \"virtualMachineSize\": \"Standard_D1_v2\",\r\n \"originalStorageAccountOption\": false,\r\n \"osType\": \"Windows\",\r\n \"recoveryPointMoveReadinessInfo\": {\r\n \"ArchivedRP\": {\r\n \"isReadyForMove\": false,\r\n \"additionalInfo\": \"Recovery point cannot be moved to Archive tier due to insufficient retention duration specified in policy.. Update policy on the protected item with appropriate retention setting and try again.\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupJobs/add3f4ab-69aa-4e02-89ba-270cbcd42b97\",\r\n \"name\": \"add3f4ab-69aa-4e02-89ba-270cbcd42b97\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg2a085f1b;pstestvm2a0850\",\r\n \"duration\": \"PT2M35.914238S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Transfer data from vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"Job Type\": \"Recover disks\",\r\n \"Target VM Name\": \"vmName\",\r\n \"Target Storage Account Name\": \"pstestsa2a085f1b\",\r\n \"Recovery point time \": \"5/17/2022 6:06:33 AM\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"restoreLocationType\": \"RestoreDisks\"\r\n },\r\n \"progressPercentage\": 1.0\r\n },\r\n \"entityFriendlyName\": \"pstestvm2a0850\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T06:38:00.3280088Z\",\r\n \"activityId\": \"6431966e-427e-4416-93a1-2e4d7ebbe356\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfee9dac/backupFabrics/Azure/protectionContainers/IaasVMContainer%3Biaasvmcontainerv2%3Bpstestrgbfee9dac%3Bpstestvmbfee90/protectedItems/VM%3Biaasvmcontainerv2%3Bpstestrgbfee9dac%3Bpstestvmbfee90?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZlZTlkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmVlOWRhYy9iYWNrdXBGYWJyaWNzL0F6dXJlL3Byb3RlY3Rpb25Db250YWluZXJzL0lhYXNWTUNvbnRhaW5lciUzQmlhYXN2bWNvbnRhaW5lcnYyJTNCcHN0ZXN0cmdiZmVlOWRhYyUzQnBzdGVzdHZtYmZlZTkwL3Byb3RlY3RlZEl0ZW1zL1ZNJTNCaWFhc3ZtY29udGFpbmVydjIlM0Jwc3Rlc3RyZ2JmZWU5ZGFjJTNCcHN0ZXN0dm1iZmVlOTA/YXBpLXZlcnNpb249MjAyMS0xMC0wMQ==", - "RequestMethod": "DELETE", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupJobs/add3f4ab-69aa-4e02-89ba-270cbcd42b97?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMmEwODVmMWIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YyYTA4NWYxYi9iYWNrdXBKb2JzL2FkZDNmNGFiLTY5YWEtNGUwMi04OWJhLTI3MGNiY2Q0MmI5Nz9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e4a7f46f-f332-463d-9679-00bd4ddc5588" + "6431966e-427e-4416-93a1-2e4d7ebbe356" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -10827,70 +11092,68 @@ "Pragma": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfee9dac/backupOperationResults/fde33c77-fe77-44e7-ab7d-de0cef3d79c0?api-version=2021-10-01" - ], - "Retry-After": [ - "60" - ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfee9dac/backupOperations/fde33c77-fe77-44e7-ab7d-de0cef3d79c0?api-version=2021-10-01" + "Server": [ + "Microsoft-IIS/10.0", + "Microsoft-IIS/10.0" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "8219f45e-a8f3-45b9-818b-a30ec08011d3" + "2d3348e7-9627-4628-82de-7e0d9f466e2b" ], "x-ms-client-request-id": [ - "e4a7f46f-f332-463d-9679-00bd4ddc5588", - "e4a7f46f-f332-463d-9679-00bd4ddc5588" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "6431966e-427e-4416-93a1-2e4d7ebbe356", + "6431966e-427e-4416-93a1-2e4d7ebbe356" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ - "14999" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "80" ], "x-ms-correlation-request-id": [ - "8219f45e-a8f3-45b9-818b-a30ec08011d3" + "2d3348e7-9627-4628-82de-7e0d9f466e2b" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T191723Z:8219f45e-a8f3-45b9-818b-a30ec08011d3" + "JIOINDIAWEST:20220517T064128Z:2d3348e7-9627-4628-82de-7e0d9f466e2b" ], "Date": [ - "Thu, 24 Feb 2022 19:17:22 GMT" + "Tue, 17 May 2022 06:41:28 GMT" + ], + "Content-Length": [ + "1066" + ], + "Content-Type": [ + "application/json" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, - "ResponseBody": "", - "StatusCode": 202 + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupJobs/add3f4ab-69aa-4e02-89ba-270cbcd42b97\",\r\n \"name\": \"add3f4ab-69aa-4e02-89ba-270cbcd42b97\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg2a085f1b;pstestvm2a0850\",\r\n \"duration\": \"PT3M27.7761374S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Transfer data from vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"Job Type\": \"Recover disks\",\r\n \"Target VM Name\": \"vmName\",\r\n \"Target Storage Account Name\": \"pstestsa2a085f1b\",\r\n \"Recovery point time \": \"5/17/2022 6:06:33 AM\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"restoreLocationType\": \"RestoreDisks\"\r\n },\r\n \"progressPercentage\": 1.0\r\n },\r\n \"entityFriendlyName\": \"pstestvm2a0850\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T06:38:00.3280088Z\",\r\n \"activityId\": \"6431966e-427e-4416-93a1-2e4d7ebbe356\"\r\n }\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfee9dac/backupOperations/fde33c77-fe77-44e7-ab7d-de0cef3d79c0?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZlZTlkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmVlOWRhYy9iYWNrdXBPcGVyYXRpb25zL2ZkZTMzYzc3LWZlNzctNDRlNy1hYjdkLWRlMGNlZjNkNzljMD9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupJobs/add3f4ab-69aa-4e02-89ba-270cbcd42b97?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMmEwODVmMWIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YyYTA4NWYxYi9iYWNrdXBKb2JzL2FkZDNmNGFiLTY5YWEtNGUwMi04OWJhLTI3MGNiY2Q0MmI5Nz9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e4a7f46f-f332-463d-9679-00bd4ddc5588" + "6431966e-427e-4416-93a1-2e4d7ebbe356" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -10900,39 +11163,40 @@ "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-IIS/10.0", + "Microsoft-IIS/10.0" + ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "0403b1c5-f65e-4454-aaa9-ed0ff68a4364" + "6a049c89-33d5-4e89-b767-15c7a0314cc6" ], "x-ms-client-request-id": [ - "e4a7f46f-f332-463d-9679-00bd4ddc5588", - "e4a7f46f-f332-463d-9679-00bd4ddc5588" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-IIS/10.0" + "6431966e-427e-4416-93a1-2e4d7ebbe356", + "6431966e-427e-4416-93a1-2e4d7ebbe356" ], "X-Powered-By": [ "ASP.NET" ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "145" + "79" ], "x-ms-correlation-request-id": [ - "0403b1c5-f65e-4454-aaa9-ed0ff68a4364" + "6a049c89-33d5-4e89-b767-15c7a0314cc6" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T191723Z:0403b1c5-f65e-4454-aaa9-ed0ff68a4364" + "JIOINDIAWEST:20220517T064216Z:6a049c89-33d5-4e89-b767-15c7a0314cc6" ], "Date": [ - "Thu, 24 Feb 2022 19:17:23 GMT" + "Tue, 17 May 2022 06:42:16 GMT" ], "Content-Length": [ - "188" + "1066" ], "Content-Type": [ "application/json" @@ -10941,26 +11205,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"fde33c77-fe77-44e7-ab7d-de0cef3d79c0\",\r\n \"name\": \"fde33c77-fe77-44e7-ab7d-de0cef3d79c0\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-24T19:17:23.0958763Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupJobs/add3f4ab-69aa-4e02-89ba-270cbcd42b97\",\r\n \"name\": \"add3f4ab-69aa-4e02-89ba-270cbcd42b97\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg2a085f1b;pstestvm2a0850\",\r\n \"duration\": \"PT4M14.8461696S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Transfer data from vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"Job Type\": \"Recover disks\",\r\n \"Target VM Name\": \"vmName\",\r\n \"Target Storage Account Name\": \"pstestsa2a085f1b\",\r\n \"Recovery point time \": \"5/17/2022 6:06:33 AM\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"restoreLocationType\": \"RestoreDisks\"\r\n },\r\n \"progressPercentage\": 1.0\r\n },\r\n \"entityFriendlyName\": \"pstestvm2a0850\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T06:38:00.3280088Z\",\r\n \"activityId\": \"6431966e-427e-4416-93a1-2e4d7ebbe356\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfee9dac/backupOperations/fde33c77-fe77-44e7-ab7d-de0cef3d79c0?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZlZTlkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmVlOWRhYy9iYWNrdXBPcGVyYXRpb25zL2ZkZTMzYzc3LWZlNzctNDRlNy1hYjdkLWRlMGNlZjNkNzljMD9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupJobs/add3f4ab-69aa-4e02-89ba-270cbcd42b97?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMmEwODVmMWIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YyYTA4NWYxYi9iYWNrdXBKb2JzL2FkZDNmNGFiLTY5YWEtNGUwMi04OWJhLTI3MGNiY2Q0MmI5Nz9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e4a7f46f-f332-463d-9679-00bd4ddc5588" + "6431966e-427e-4416-93a1-2e4d7ebbe356" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -10970,39 +11234,40 @@ "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-IIS/10.0", + "Microsoft-IIS/10.0" + ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "cde3b1b2-2cae-40ab-82da-0a1450f2ea0e" + "0e104710-9c0d-47a0-8ad8-1a9717f83e2f" ], "x-ms-client-request-id": [ - "e4a7f46f-f332-463d-9679-00bd4ddc5588", - "e4a7f46f-f332-463d-9679-00bd4ddc5588" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-IIS/10.0" + "6431966e-427e-4416-93a1-2e4d7ebbe356", + "6431966e-427e-4416-93a1-2e4d7ebbe356" ], "X-Powered-By": [ "ASP.NET" ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "144" + "78" ], "x-ms-correlation-request-id": [ - "cde3b1b2-2cae-40ab-82da-0a1450f2ea0e" + "0e104710-9c0d-47a0-8ad8-1a9717f83e2f" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T191734Z:cde3b1b2-2cae-40ab-82da-0a1450f2ea0e" + "JIOINDIAWEST:20220517T064256Z:0e104710-9c0d-47a0-8ad8-1a9717f83e2f" ], "Date": [ - "Thu, 24 Feb 2022 19:17:33 GMT" + "Tue, 17 May 2022 06:42:56 GMT" ], "Content-Length": [ - "188" + "1066" ], "Content-Type": [ "application/json" @@ -11011,26 +11276,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"fde33c77-fe77-44e7-ab7d-de0cef3d79c0\",\r\n \"name\": \"fde33c77-fe77-44e7-ab7d-de0cef3d79c0\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-24T19:17:23.0958763Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupJobs/add3f4ab-69aa-4e02-89ba-270cbcd42b97\",\r\n \"name\": \"add3f4ab-69aa-4e02-89ba-270cbcd42b97\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg2a085f1b;pstestvm2a0850\",\r\n \"duration\": \"PT4M55.8938145S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Transfer data from vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"Job Type\": \"Recover disks\",\r\n \"Target VM Name\": \"vmName\",\r\n \"Target Storage Account Name\": \"pstestsa2a085f1b\",\r\n \"Recovery point time \": \"5/17/2022 6:06:33 AM\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"restoreLocationType\": \"RestoreDisks\"\r\n },\r\n \"progressPercentage\": 1.0\r\n },\r\n \"entityFriendlyName\": \"pstestvm2a0850\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T06:38:00.3280088Z\",\r\n \"activityId\": \"6431966e-427e-4416-93a1-2e4d7ebbe356\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfee9dac/backupOperations/fde33c77-fe77-44e7-ab7d-de0cef3d79c0?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZlZTlkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmVlOWRhYy9iYWNrdXBPcGVyYXRpb25zL2ZkZTMzYzc3LWZlNzctNDRlNy1hYjdkLWRlMGNlZjNkNzljMD9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupJobs/add3f4ab-69aa-4e02-89ba-270cbcd42b97?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMmEwODVmMWIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YyYTA4NWYxYi9iYWNrdXBKb2JzL2FkZDNmNGFiLTY5YWEtNGUwMi04OWJhLTI3MGNiY2Q0MmI5Nz9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e4a7f46f-f332-463d-9679-00bd4ddc5588" + "6431966e-427e-4416-93a1-2e4d7ebbe356" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -11040,39 +11305,40 @@ "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-IIS/10.0", + "Microsoft-IIS/10.0" + ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "38a43a24-61ab-434e-9625-d4b2e038a39a" + "387ae593-0c4e-42d6-b7f9-5bf6511834c0" ], "x-ms-client-request-id": [ - "e4a7f46f-f332-463d-9679-00bd4ddc5588", - "e4a7f46f-f332-463d-9679-00bd4ddc5588" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-IIS/10.0" + "6431966e-427e-4416-93a1-2e4d7ebbe356", + "6431966e-427e-4416-93a1-2e4d7ebbe356" ], "X-Powered-By": [ "ASP.NET" ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "143" + "77" ], "x-ms-correlation-request-id": [ - "38a43a24-61ab-434e-9625-d4b2e038a39a" + "387ae593-0c4e-42d6-b7f9-5bf6511834c0" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T191745Z:38a43a24-61ab-434e-9625-d4b2e038a39a" + "JIOINDIAWEST:20220517T064341Z:387ae593-0c4e-42d6-b7f9-5bf6511834c0" ], "Date": [ - "Thu, 24 Feb 2022 19:17:44 GMT" + "Tue, 17 May 2022 06:43:41 GMT" ], "Content-Length": [ - "188" + "1066" ], "Content-Type": [ "application/json" @@ -11081,26 +11347,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"fde33c77-fe77-44e7-ab7d-de0cef3d79c0\",\r\n \"name\": \"fde33c77-fe77-44e7-ab7d-de0cef3d79c0\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-24T19:17:23.0958763Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupJobs/add3f4ab-69aa-4e02-89ba-270cbcd42b97\",\r\n \"name\": \"add3f4ab-69aa-4e02-89ba-270cbcd42b97\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg2a085f1b;pstestvm2a0850\",\r\n \"duration\": \"PT5M39.1644702S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Transfer data from vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"Job Type\": \"Recover disks\",\r\n \"Target VM Name\": \"vmName\",\r\n \"Target Storage Account Name\": \"pstestsa2a085f1b\",\r\n \"Recovery point time \": \"5/17/2022 6:06:33 AM\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"restoreLocationType\": \"RestoreDisks\"\r\n },\r\n \"progressPercentage\": 1.0\r\n },\r\n \"entityFriendlyName\": \"pstestvm2a0850\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T06:38:00.3280088Z\",\r\n \"activityId\": \"6431966e-427e-4416-93a1-2e4d7ebbe356\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfee9dac/backupOperations/fde33c77-fe77-44e7-ab7d-de0cef3d79c0?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZlZTlkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmVlOWRhYy9iYWNrdXBPcGVyYXRpb25zL2ZkZTMzYzc3LWZlNzctNDRlNy1hYjdkLWRlMGNlZjNkNzljMD9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupJobs/add3f4ab-69aa-4e02-89ba-270cbcd42b97?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMmEwODVmMWIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YyYTA4NWYxYi9iYWNrdXBKb2JzL2FkZDNmNGFiLTY5YWEtNGUwMi04OWJhLTI3MGNiY2Q0MmI5Nz9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e4a7f46f-f332-463d-9679-00bd4ddc5588" + "6431966e-427e-4416-93a1-2e4d7ebbe356" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -11110,39 +11376,40 @@ "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-IIS/10.0", + "Microsoft-IIS/10.0" + ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "98243da2-dfbb-482b-8f5c-80d0da8015df" + "44afaa68-8126-4221-b385-29c614710a5a" ], "x-ms-client-request-id": [ - "e4a7f46f-f332-463d-9679-00bd4ddc5588", - "e4a7f46f-f332-463d-9679-00bd4ddc5588" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-IIS/10.0" + "6431966e-427e-4416-93a1-2e4d7ebbe356", + "6431966e-427e-4416-93a1-2e4d7ebbe356" ], "X-Powered-By": [ "ASP.NET" ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "142" + "76" ], "x-ms-correlation-request-id": [ - "98243da2-dfbb-482b-8f5c-80d0da8015df" + "44afaa68-8126-4221-b385-29c614710a5a" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T191755Z:98243da2-dfbb-482b-8f5c-80d0da8015df" + "JIOINDIAWEST:20220517T064412Z:44afaa68-8126-4221-b385-29c614710a5a" ], "Date": [ - "Thu, 24 Feb 2022 19:17:55 GMT" + "Tue, 17 May 2022 06:44:12 GMT" ], "Content-Length": [ - "188" + "1065" ], "Content-Type": [ "application/json" @@ -11151,26 +11418,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"fde33c77-fe77-44e7-ab7d-de0cef3d79c0\",\r\n \"name\": \"fde33c77-fe77-44e7-ab7d-de0cef3d79c0\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-24T19:17:23.0958763Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupJobs/add3f4ab-69aa-4e02-89ba-270cbcd42b97\",\r\n \"name\": \"add3f4ab-69aa-4e02-89ba-270cbcd42b97\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg2a085f1b;pstestvm2a0850\",\r\n \"duration\": \"PT6M11.242445S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Transfer data from vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"Job Type\": \"Recover disks\",\r\n \"Target VM Name\": \"vmName\",\r\n \"Target Storage Account Name\": \"pstestsa2a085f1b\",\r\n \"Recovery point time \": \"5/17/2022 6:06:33 AM\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"restoreLocationType\": \"RestoreDisks\"\r\n },\r\n \"progressPercentage\": 1.0\r\n },\r\n \"entityFriendlyName\": \"pstestvm2a0850\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T06:38:00.3280088Z\",\r\n \"activityId\": \"6431966e-427e-4416-93a1-2e4d7ebbe356\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfee9dac/backupOperations/fde33c77-fe77-44e7-ab7d-de0cef3d79c0?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZlZTlkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmVlOWRhYy9iYWNrdXBPcGVyYXRpb25zL2ZkZTMzYzc3LWZlNzctNDRlNy1hYjdkLWRlMGNlZjNkNzljMD9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupJobs/add3f4ab-69aa-4e02-89ba-270cbcd42b97?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMmEwODVmMWIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YyYTA4NWYxYi9iYWNrdXBKb2JzL2FkZDNmNGFiLTY5YWEtNGUwMi04OWJhLTI3MGNiY2Q0MmI5Nz9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e4a7f46f-f332-463d-9679-00bd4ddc5588" + "6431966e-427e-4416-93a1-2e4d7ebbe356" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -11180,39 +11447,40 @@ "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-IIS/10.0", + "Microsoft-IIS/10.0" + ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "09334e55-0982-4013-b781-7cc185db3b0f" + "b4a1f3b1-5771-4167-a462-a76f796776d0" ], "x-ms-client-request-id": [ - "e4a7f46f-f332-463d-9679-00bd4ddc5588", - "e4a7f46f-f332-463d-9679-00bd4ddc5588" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-IIS/10.0" + "6431966e-427e-4416-93a1-2e4d7ebbe356", + "6431966e-427e-4416-93a1-2e4d7ebbe356" ], "X-Powered-By": [ "ASP.NET" ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "141" + "75" ], "x-ms-correlation-request-id": [ - "09334e55-0982-4013-b781-7cc185db3b0f" + "b4a1f3b1-5771-4167-a462-a76f796776d0" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T191806Z:09334e55-0982-4013-b781-7cc185db3b0f" + "JIOINDIAWEST:20220517T064443Z:b4a1f3b1-5771-4167-a462-a76f796776d0" ], "Date": [ - "Thu, 24 Feb 2022 19:18:05 GMT" + "Tue, 17 May 2022 06:44:42 GMT" ], "Content-Length": [ - "188" + "1065" ], "Content-Type": [ "application/json" @@ -11221,26 +11489,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"fde33c77-fe77-44e7-ab7d-de0cef3d79c0\",\r\n \"name\": \"fde33c77-fe77-44e7-ab7d-de0cef3d79c0\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-24T19:17:23.0958763Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupJobs/add3f4ab-69aa-4e02-89ba-270cbcd42b97\",\r\n \"name\": \"add3f4ab-69aa-4e02-89ba-270cbcd42b97\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg2a085f1b;pstestvm2a0850\",\r\n \"duration\": \"PT6M42.028951S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Transfer data from vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"Job Type\": \"Recover disks\",\r\n \"Target VM Name\": \"vmName\",\r\n \"Target Storage Account Name\": \"pstestsa2a085f1b\",\r\n \"Recovery point time \": \"5/17/2022 6:06:33 AM\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"restoreLocationType\": \"RestoreDisks\"\r\n },\r\n \"progressPercentage\": 1.0\r\n },\r\n \"entityFriendlyName\": \"pstestvm2a0850\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T06:38:00.3280088Z\",\r\n \"activityId\": \"6431966e-427e-4416-93a1-2e4d7ebbe356\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfee9dac/backupOperations/fde33c77-fe77-44e7-ab7d-de0cef3d79c0?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZlZTlkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmVlOWRhYy9iYWNrdXBPcGVyYXRpb25zL2ZkZTMzYzc3LWZlNzctNDRlNy1hYjdkLWRlMGNlZjNkNzljMD9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupJobs/add3f4ab-69aa-4e02-89ba-270cbcd42b97?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMmEwODVmMWIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YyYTA4NWYxYi9iYWNrdXBKb2JzL2FkZDNmNGFiLTY5YWEtNGUwMi04OWJhLTI3MGNiY2Q0MmI5Nz9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e4a7f46f-f332-463d-9679-00bd4ddc5588" + "6431966e-427e-4416-93a1-2e4d7ebbe356" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -11250,39 +11518,40 @@ "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-IIS/10.0", + "Microsoft-IIS/10.0" + ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "adc37ea4-8afc-4daf-9698-fa49f2ace8c5" + "1ff25445-2d6b-4b83-9139-8a6b3146be0b" ], "x-ms-client-request-id": [ - "e4a7f46f-f332-463d-9679-00bd4ddc5588", - "e4a7f46f-f332-463d-9679-00bd4ddc5588" + "6431966e-427e-4416-93a1-2e4d7ebbe356", + "6431966e-427e-4416-93a1-2e4d7ebbe356" + ], + "X-Powered-By": [ + "ASP.NET" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "140" + "74" ], "x-ms-correlation-request-id": [ - "adc37ea4-8afc-4daf-9698-fa49f2ace8c5" + "1ff25445-2d6b-4b83-9139-8a6b3146be0b" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T191816Z:adc37ea4-8afc-4daf-9698-fa49f2ace8c5" + "JIOINDIAWEST:20220517T064513Z:1ff25445-2d6b-4b83-9139-8a6b3146be0b" ], "Date": [ - "Thu, 24 Feb 2022 19:18:16 GMT" + "Tue, 17 May 2022 06:45:13 GMT" ], "Content-Length": [ - "188" + "1066" ], "Content-Type": [ "application/json" @@ -11291,26 +11560,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"fde33c77-fe77-44e7-ab7d-de0cef3d79c0\",\r\n \"name\": \"fde33c77-fe77-44e7-ab7d-de0cef3d79c0\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-24T19:17:23.0958763Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupJobs/add3f4ab-69aa-4e02-89ba-270cbcd42b97\",\r\n \"name\": \"add3f4ab-69aa-4e02-89ba-270cbcd42b97\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg2a085f1b;pstestvm2a0850\",\r\n \"duration\": \"PT7M12.7438364S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Transfer data from vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"Job Type\": \"Recover disks\",\r\n \"Target VM Name\": \"vmName\",\r\n \"Target Storage Account Name\": \"pstestsa2a085f1b\",\r\n \"Recovery point time \": \"5/17/2022 6:06:33 AM\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"restoreLocationType\": \"RestoreDisks\"\r\n },\r\n \"progressPercentage\": 1.0\r\n },\r\n \"entityFriendlyName\": \"pstestvm2a0850\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T06:38:00.3280088Z\",\r\n \"activityId\": \"6431966e-427e-4416-93a1-2e4d7ebbe356\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfee9dac/backupOperations/fde33c77-fe77-44e7-ab7d-de0cef3d79c0?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZlZTlkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmVlOWRhYy9iYWNrdXBPcGVyYXRpb25zL2ZkZTMzYzc3LWZlNzctNDRlNy1hYjdkLWRlMGNlZjNkNzljMD9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupJobs/add3f4ab-69aa-4e02-89ba-270cbcd42b97?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMmEwODVmMWIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YyYTA4NWYxYi9iYWNrdXBKb2JzL2FkZDNmNGFiLTY5YWEtNGUwMi04OWJhLTI3MGNiY2Q0MmI5Nz9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e4a7f46f-f332-463d-9679-00bd4ddc5588" + "6431966e-427e-4416-93a1-2e4d7ebbe356" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -11320,39 +11589,40 @@ "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-IIS/10.0", + "Microsoft-IIS/10.0" + ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "f0ba24a1-b086-42cc-b363-98a14f550b8d" + "ce0a2882-5f36-4174-9884-dd0584d30dbb" ], "x-ms-client-request-id": [ - "e4a7f46f-f332-463d-9679-00bd4ddc5588", - "e4a7f46f-f332-463d-9679-00bd4ddc5588" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-IIS/10.0" + "6431966e-427e-4416-93a1-2e4d7ebbe356", + "6431966e-427e-4416-93a1-2e4d7ebbe356" ], "X-Powered-By": [ "ASP.NET" ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "139" + "73" ], "x-ms-correlation-request-id": [ - "f0ba24a1-b086-42cc-b363-98a14f550b8d" + "ce0a2882-5f36-4174-9884-dd0584d30dbb" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T191827Z:f0ba24a1-b086-42cc-b363-98a14f550b8d" + "JIOINDIAWEST:20220517T064544Z:ce0a2882-5f36-4174-9884-dd0584d30dbb" ], "Date": [ - "Thu, 24 Feb 2022 19:18:26 GMT" + "Tue, 17 May 2022 06:45:43 GMT" ], "Content-Length": [ - "188" + "1066" ], "Content-Type": [ "application/json" @@ -11361,26 +11631,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"fde33c77-fe77-44e7-ab7d-de0cef3d79c0\",\r\n \"name\": \"fde33c77-fe77-44e7-ab7d-de0cef3d79c0\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-24T19:17:23.0958763Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupJobs/add3f4ab-69aa-4e02-89ba-270cbcd42b97\",\r\n \"name\": \"add3f4ab-69aa-4e02-89ba-270cbcd42b97\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg2a085f1b;pstestvm2a0850\",\r\n \"duration\": \"PT7M43.5516991S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Transfer data from vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"Job Type\": \"Recover disks\",\r\n \"Target VM Name\": \"vmName\",\r\n \"Target Storage Account Name\": \"pstestsa2a085f1b\",\r\n \"Recovery point time \": \"5/17/2022 6:06:33 AM\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"restoreLocationType\": \"RestoreDisks\"\r\n },\r\n \"progressPercentage\": 1.0\r\n },\r\n \"entityFriendlyName\": \"pstestvm2a0850\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T06:38:00.3280088Z\",\r\n \"activityId\": \"6431966e-427e-4416-93a1-2e4d7ebbe356\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfee9dac/backupOperations/fde33c77-fe77-44e7-ab7d-de0cef3d79c0?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZlZTlkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmVlOWRhYy9iYWNrdXBPcGVyYXRpb25zL2ZkZTMzYzc3LWZlNzctNDRlNy1hYjdkLWRlMGNlZjNkNzljMD9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupJobs/add3f4ab-69aa-4e02-89ba-270cbcd42b97?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMmEwODVmMWIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YyYTA4NWYxYi9iYWNrdXBKb2JzL2FkZDNmNGFiLTY5YWEtNGUwMi04OWJhLTI3MGNiY2Q0MmI5Nz9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e4a7f46f-f332-463d-9679-00bd4ddc5588" + "6431966e-427e-4416-93a1-2e4d7ebbe356" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -11390,39 +11660,40 @@ "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-IIS/10.0", + "Microsoft-IIS/10.0" + ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "0ed1e546-2627-4d41-8b44-8ae7aece7211" + "1cc0c670-5f37-4cea-977a-dd9d01e350d9" ], "x-ms-client-request-id": [ - "e4a7f46f-f332-463d-9679-00bd4ddc5588", - "e4a7f46f-f332-463d-9679-00bd4ddc5588" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-IIS/10.0" + "6431966e-427e-4416-93a1-2e4d7ebbe356", + "6431966e-427e-4416-93a1-2e4d7ebbe356" ], "X-Powered-By": [ "ASP.NET" ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "138" + "72" ], "x-ms-correlation-request-id": [ - "0ed1e546-2627-4d41-8b44-8ae7aece7211" + "1cc0c670-5f37-4cea-977a-dd9d01e350d9" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T191837Z:0ed1e546-2627-4d41-8b44-8ae7aece7211" + "JIOINDIAWEST:20220517T064621Z:1cc0c670-5f37-4cea-977a-dd9d01e350d9" ], "Date": [ - "Thu, 24 Feb 2022 19:18:37 GMT" + "Tue, 17 May 2022 06:46:21 GMT" ], "Content-Length": [ - "188" + "1066" ], "Content-Type": [ "application/json" @@ -11431,26 +11702,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"fde33c77-fe77-44e7-ab7d-de0cef3d79c0\",\r\n \"name\": \"fde33c77-fe77-44e7-ab7d-de0cef3d79c0\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-24T19:17:23.0958763Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupJobs/add3f4ab-69aa-4e02-89ba-270cbcd42b97\",\r\n \"name\": \"add3f4ab-69aa-4e02-89ba-270cbcd42b97\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg2a085f1b;pstestvm2a0850\",\r\n \"duration\": \"PT8M20.2945336S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Transfer data from vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"Job Type\": \"Recover disks\",\r\n \"Target VM Name\": \"vmName\",\r\n \"Target Storage Account Name\": \"pstestsa2a085f1b\",\r\n \"Recovery point time \": \"5/17/2022 6:06:33 AM\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"restoreLocationType\": \"RestoreDisks\"\r\n },\r\n \"progressPercentage\": 1.0\r\n },\r\n \"entityFriendlyName\": \"pstestvm2a0850\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T06:38:00.3280088Z\",\r\n \"activityId\": \"6431966e-427e-4416-93a1-2e4d7ebbe356\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfee9dac/backupOperations/fde33c77-fe77-44e7-ab7d-de0cef3d79c0?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZlZTlkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmVlOWRhYy9iYWNrdXBPcGVyYXRpb25zL2ZkZTMzYzc3LWZlNzctNDRlNy1hYjdkLWRlMGNlZjNkNzljMD9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupJobs/add3f4ab-69aa-4e02-89ba-270cbcd42b97?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMmEwODVmMWIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YyYTA4NWYxYi9iYWNrdXBKb2JzL2FkZDNmNGFiLTY5YWEtNGUwMi04OWJhLTI3MGNiY2Q0MmI5Nz9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e4a7f46f-f332-463d-9679-00bd4ddc5588" + "6431966e-427e-4416-93a1-2e4d7ebbe356" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -11460,39 +11731,40 @@ "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-IIS/10.0", + "Microsoft-IIS/10.0" + ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "b2eb5501-e817-40ca-bcd3-377410b0aa4e" + "7ea24059-6384-48e7-876e-3250e79a01ff" ], "x-ms-client-request-id": [ - "e4a7f46f-f332-463d-9679-00bd4ddc5588", - "e4a7f46f-f332-463d-9679-00bd4ddc5588" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-IIS/10.0" + "6431966e-427e-4416-93a1-2e4d7ebbe356", + "6431966e-427e-4416-93a1-2e4d7ebbe356" ], "X-Powered-By": [ "ASP.NET" ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "137" + "71" ], "x-ms-correlation-request-id": [ - "b2eb5501-e817-40ca-bcd3-377410b0aa4e" + "7ea24059-6384-48e7-876e-3250e79a01ff" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T191848Z:b2eb5501-e817-40ca-bcd3-377410b0aa4e" + "JIOINDIAWEST:20220517T064652Z:7ea24059-6384-48e7-876e-3250e79a01ff" ], "Date": [ - "Thu, 24 Feb 2022 19:18:47 GMT" + "Tue, 17 May 2022 06:46:52 GMT" ], "Content-Length": [ - "188" + "1066" ], "Content-Type": [ "application/json" @@ -11501,26 +11773,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"fde33c77-fe77-44e7-ab7d-de0cef3d79c0\",\r\n \"name\": \"fde33c77-fe77-44e7-ab7d-de0cef3d79c0\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-24T19:17:23.0958763Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupJobs/add3f4ab-69aa-4e02-89ba-270cbcd42b97\",\r\n \"name\": \"add3f4ab-69aa-4e02-89ba-270cbcd42b97\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg2a085f1b;pstestvm2a0850\",\r\n \"duration\": \"PT8M51.8547276S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Transfer data from vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"Job Type\": \"Recover disks\",\r\n \"Target VM Name\": \"vmName\",\r\n \"Target Storage Account Name\": \"pstestsa2a085f1b\",\r\n \"Recovery point time \": \"5/17/2022 6:06:33 AM\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"restoreLocationType\": \"RestoreDisks\"\r\n },\r\n \"progressPercentage\": 1.0\r\n },\r\n \"entityFriendlyName\": \"pstestvm2a0850\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T06:38:00.3280088Z\",\r\n \"activityId\": \"6431966e-427e-4416-93a1-2e4d7ebbe356\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfee9dac/backupOperations/fde33c77-fe77-44e7-ab7d-de0cef3d79c0?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZlZTlkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmVlOWRhYy9iYWNrdXBPcGVyYXRpb25zL2ZkZTMzYzc3LWZlNzctNDRlNy1hYjdkLWRlMGNlZjNkNzljMD9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupJobs/add3f4ab-69aa-4e02-89ba-270cbcd42b97?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMmEwODVmMWIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YyYTA4NWYxYi9iYWNrdXBKb2JzL2FkZDNmNGFiLTY5YWEtNGUwMi04OWJhLTI3MGNiY2Q0MmI5Nz9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e4a7f46f-f332-463d-9679-00bd4ddc5588" + "6431966e-427e-4416-93a1-2e4d7ebbe356" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -11530,39 +11802,40 @@ "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-IIS/10.0", + "Microsoft-IIS/10.0" + ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "845aedfe-071f-4fdc-8ff0-03ddaabd38f9" + "1750097d-765b-4115-9fb4-18c2378406bc" ], "x-ms-client-request-id": [ - "e4a7f46f-f332-463d-9679-00bd4ddc5588", - "e4a7f46f-f332-463d-9679-00bd4ddc5588" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-IIS/10.0" + "6431966e-427e-4416-93a1-2e4d7ebbe356", + "6431966e-427e-4416-93a1-2e4d7ebbe356" ], "X-Powered-By": [ "ASP.NET" ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "136" + "70" ], "x-ms-correlation-request-id": [ - "845aedfe-071f-4fdc-8ff0-03ddaabd38f9" + "1750097d-765b-4115-9fb4-18c2378406bc" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T191858Z:845aedfe-071f-4fdc-8ff0-03ddaabd38f9" + "JIOINDIAWEST:20220517T064723Z:1750097d-765b-4115-9fb4-18c2378406bc" ], "Date": [ - "Thu, 24 Feb 2022 19:18:58 GMT" + "Tue, 17 May 2022 06:47:22 GMT" ], "Content-Length": [ - "188" + "1066" ], "Content-Type": [ "application/json" @@ -11571,26 +11844,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"fde33c77-fe77-44e7-ab7d-de0cef3d79c0\",\r\n \"name\": \"fde33c77-fe77-44e7-ab7d-de0cef3d79c0\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-24T19:17:23.0958763Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupJobs/add3f4ab-69aa-4e02-89ba-270cbcd42b97\",\r\n \"name\": \"add3f4ab-69aa-4e02-89ba-270cbcd42b97\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg2a085f1b;pstestvm2a0850\",\r\n \"duration\": \"PT9M22.5977814S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Transfer data from vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"Job Type\": \"Recover disks\",\r\n \"Target VM Name\": \"vmName\",\r\n \"Target Storage Account Name\": \"pstestsa2a085f1b\",\r\n \"Recovery point time \": \"5/17/2022 6:06:33 AM\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"restoreLocationType\": \"RestoreDisks\"\r\n },\r\n \"progressPercentage\": 1.0\r\n },\r\n \"entityFriendlyName\": \"pstestvm2a0850\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T06:38:00.3280088Z\",\r\n \"activityId\": \"6431966e-427e-4416-93a1-2e4d7ebbe356\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfee9dac/backupOperations/fde33c77-fe77-44e7-ab7d-de0cef3d79c0?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZlZTlkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmVlOWRhYy9iYWNrdXBPcGVyYXRpb25zL2ZkZTMzYzc3LWZlNzctNDRlNy1hYjdkLWRlMGNlZjNkNzljMD9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupJobs/add3f4ab-69aa-4e02-89ba-270cbcd42b97?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMmEwODVmMWIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YyYTA4NWYxYi9iYWNrdXBKb2JzL2FkZDNmNGFiLTY5YWEtNGUwMi04OWJhLTI3MGNiY2Q0MmI5Nz9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e4a7f46f-f332-463d-9679-00bd4ddc5588" + "6431966e-427e-4416-93a1-2e4d7ebbe356" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -11600,39 +11873,40 @@ "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-IIS/10.0", + "Microsoft-IIS/10.0" + ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "c11fee42-4242-4e4a-8493-33db9cd46f3f" + "954f9310-2df7-4a21-b278-0cbf0330bcf7" ], "x-ms-client-request-id": [ - "e4a7f46f-f332-463d-9679-00bd4ddc5588", - "e4a7f46f-f332-463d-9679-00bd4ddc5588" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-IIS/10.0" + "6431966e-427e-4416-93a1-2e4d7ebbe356", + "6431966e-427e-4416-93a1-2e4d7ebbe356" ], "X-Powered-By": [ "ASP.NET" ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "135" + "69" ], "x-ms-correlation-request-id": [ - "c11fee42-4242-4e4a-8493-33db9cd46f3f" + "954f9310-2df7-4a21-b278-0cbf0330bcf7" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T191909Z:c11fee42-4242-4e4a-8493-33db9cd46f3f" + "JIOINDIAWEST:20220517T064754Z:954f9310-2df7-4a21-b278-0cbf0330bcf7" ], "Date": [ - "Thu, 24 Feb 2022 19:19:09 GMT" + "Tue, 17 May 2022 06:47:53 GMT" ], "Content-Length": [ - "188" + "1066" ], "Content-Type": [ "application/json" @@ -11641,26 +11915,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"fde33c77-fe77-44e7-ab7d-de0cef3d79c0\",\r\n \"name\": \"fde33c77-fe77-44e7-ab7d-de0cef3d79c0\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-24T19:17:23.0958763Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupJobs/add3f4ab-69aa-4e02-89ba-270cbcd42b97\",\r\n \"name\": \"add3f4ab-69aa-4e02-89ba-270cbcd42b97\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg2a085f1b;pstestvm2a0850\",\r\n \"duration\": \"PT9M53.3154524S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Transfer data from vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"Job Type\": \"Recover disks\",\r\n \"Target VM Name\": \"vmName\",\r\n \"Target Storage Account Name\": \"pstestsa2a085f1b\",\r\n \"Recovery point time \": \"5/17/2022 6:06:33 AM\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"restoreLocationType\": \"RestoreDisks\"\r\n },\r\n \"progressPercentage\": 1.0\r\n },\r\n \"entityFriendlyName\": \"pstestvm2a0850\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T06:38:00.3280088Z\",\r\n \"activityId\": \"6431966e-427e-4416-93a1-2e4d7ebbe356\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfee9dac/backupOperations/fde33c77-fe77-44e7-ab7d-de0cef3d79c0?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZlZTlkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmVlOWRhYy9iYWNrdXBPcGVyYXRpb25zL2ZkZTMzYzc3LWZlNzctNDRlNy1hYjdkLWRlMGNlZjNkNzljMD9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupJobs/add3f4ab-69aa-4e02-89ba-270cbcd42b97?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMmEwODVmMWIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YyYTA4NWYxYi9iYWNrdXBKb2JzL2FkZDNmNGFiLTY5YWEtNGUwMi04OWJhLTI3MGNiY2Q0MmI5Nz9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e4a7f46f-f332-463d-9679-00bd4ddc5588" + "6431966e-427e-4416-93a1-2e4d7ebbe356" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -11670,39 +11944,40 @@ "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-IIS/10.0", + "Microsoft-IIS/10.0" + ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "b8f9ee88-82d1-439d-9c18-adcf29efc9b0" + "eab5be9e-78e8-44f7-962d-7fd19ac384df" ], "x-ms-client-request-id": [ - "e4a7f46f-f332-463d-9679-00bd4ddc5588", - "e4a7f46f-f332-463d-9679-00bd4ddc5588" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-IIS/10.0" + "6431966e-427e-4416-93a1-2e4d7ebbe356", + "6431966e-427e-4416-93a1-2e4d7ebbe356" ], "X-Powered-By": [ "ASP.NET" ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "134" + "68" ], "x-ms-correlation-request-id": [ - "b8f9ee88-82d1-439d-9c18-adcf29efc9b0" + "eab5be9e-78e8-44f7-962d-7fd19ac384df" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T191920Z:b8f9ee88-82d1-439d-9c18-adcf29efc9b0" + "JIOINDIAWEST:20220517T064850Z:eab5be9e-78e8-44f7-962d-7fd19ac384df" ], "Date": [ - "Thu, 24 Feb 2022 19:19:20 GMT" + "Tue, 17 May 2022 06:48:50 GMT" ], "Content-Length": [ - "304" + "1170" ], "Content-Type": [ "application/json" @@ -11711,26 +11986,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"fde33c77-fe77-44e7-ab7d-de0cef3d79c0\",\r\n \"name\": \"fde33c77-fe77-44e7-ab7d-de0cef3d79c0\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-02-24T19:17:23.0958763Z\",\r\n \"endTime\": \"2022-02-24T19:17:23.0958763Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"dd8e514f-880b-4cf8-9f97-389ff51c5063\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupJobs/add3f4ab-69aa-4e02-89ba-270cbcd42b97\",\r\n \"name\": \"add3f4ab-69aa-4e02-89ba-270cbcd42b97\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg2a085f1b;pstestvm2a0850\",\r\n \"duration\": \"PT10M49.1564345S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Transfer data from vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\",\r\n \"taskExecutionDetails\": \"71.5 GBs / 127 GBs Transferred\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"Job Type\": \"Recover disks\",\r\n \"Target VM Name\": \"vmName\",\r\n \"Target Storage Account Name\": \"pstestsa2a085f1b\",\r\n \"Recovery point time \": \"5/17/2022 6:06:33 AM\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"restoreLocationType\": \"RestoreDisks\"\r\n },\r\n \"progressPercentage\": 56.0,\r\n \"estimatedRemainingDuration\": \"PT8M11.399853S\"\r\n },\r\n \"entityFriendlyName\": \"pstestvm2a0850\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T06:38:00.3280088Z\",\r\n \"activityId\": \"6431966e-427e-4416-93a1-2e4d7ebbe356\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfee9dac/backupOperations/fde33c77-fe77-44e7-ab7d-de0cef3d79c0?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZlZTlkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmVlOWRhYy9iYWNrdXBPcGVyYXRpb25zL2ZkZTMzYzc3LWZlNzctNDRlNy1hYjdkLWRlMGNlZjNkNzljMD9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupJobs/add3f4ab-69aa-4e02-89ba-270cbcd42b97?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMmEwODVmMWIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YyYTA4NWYxYi9iYWNrdXBKb2JzL2FkZDNmNGFiLTY5YWEtNGUwMi04OWJhLTI3MGNiY2Q0MmI5Nz9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e4a7f46f-f332-463d-9679-00bd4ddc5588" + "6431966e-427e-4416-93a1-2e4d7ebbe356" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -11740,39 +12015,40 @@ "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-IIS/10.0", + "Microsoft-IIS/10.0" + ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "df23f9b0-5fe7-4429-a9bc-aea6741945d8" + "ad931b07-b49c-451c-81a6-a3e75e8b9c96" ], "x-ms-client-request-id": [ - "e4a7f46f-f332-463d-9679-00bd4ddc5588", - "e4a7f46f-f332-463d-9679-00bd4ddc5588" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-IIS/10.0" + "6431966e-427e-4416-93a1-2e4d7ebbe356", + "6431966e-427e-4416-93a1-2e4d7ebbe356" ], "X-Powered-By": [ "ASP.NET" ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "133" + "67" ], "x-ms-correlation-request-id": [ - "df23f9b0-5fe7-4429-a9bc-aea6741945d8" + "ad931b07-b49c-451c-81a6-a3e75e8b9c96" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T191920Z:df23f9b0-5fe7-4429-a9bc-aea6741945d8" + "JIOINDIAWEST:20220517T064921Z:ad931b07-b49c-451c-81a6-a3e75e8b9c96" ], "Date": [ - "Thu, 24 Feb 2022 19:19:20 GMT" + "Tue, 17 May 2022 06:49:20 GMT" ], "Content-Length": [ - "304" + "1170" ], "Content-Type": [ "application/json" @@ -11781,26 +12057,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"fde33c77-fe77-44e7-ab7d-de0cef3d79c0\",\r\n \"name\": \"fde33c77-fe77-44e7-ab7d-de0cef3d79c0\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-02-24T19:17:23.0958763Z\",\r\n \"endTime\": \"2022-02-24T19:17:23.0958763Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"dd8e514f-880b-4cf8-9f97-389ff51c5063\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupJobs/add3f4ab-69aa-4e02-89ba-270cbcd42b97\",\r\n \"name\": \"add3f4ab-69aa-4e02-89ba-270cbcd42b97\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg2a085f1b;pstestvm2a0850\",\r\n \"duration\": \"PT11M20.3638177S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Transfer data from vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\",\r\n \"taskExecutionDetails\": \"71.5 GBs / 127 GBs Transferred\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"Job Type\": \"Recover disks\",\r\n \"Target VM Name\": \"vmName\",\r\n \"Target Storage Account Name\": \"pstestsa2a085f1b\",\r\n \"Recovery point time \": \"5/17/2022 6:06:33 AM\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"restoreLocationType\": \"RestoreDisks\"\r\n },\r\n \"progressPercentage\": 56.0,\r\n \"estimatedRemainingDuration\": \"PT8M11.399853S\"\r\n },\r\n \"entityFriendlyName\": \"pstestvm2a0850\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T06:38:00.3280088Z\",\r\n \"activityId\": \"6431966e-427e-4416-93a1-2e4d7ebbe356\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfee9dac/backupJobs/dd8e514f-880b-4cf8-9f97-389ff51c5063?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZlZTlkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmVlOWRhYy9iYWNrdXBKb2JzL2RkOGU1MTRmLTg4MGItNGNmOC05Zjk3LTM4OWZmNTFjNTA2Mz9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupJobs/add3f4ab-69aa-4e02-89ba-270cbcd42b97?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMmEwODVmMWIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YyYTA4NWYxYi9iYWNrdXBKb2JzL2FkZDNmNGFiLTY5YWEtNGUwMi04OWJhLTI3MGNiY2Q0MmI5Nz9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e4a7f46f-f332-463d-9679-00bd4ddc5588" + "6431966e-427e-4416-93a1-2e4d7ebbe356" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -11818,11 +12094,11 @@ "nosniff" ], "x-ms-request-id": [ - "5247d256-f183-4926-9fb0-d7660fef78d1" + "e404cdb2-6ece-44a4-8fcf-5ff91b79b981" ], "x-ms-client-request-id": [ - "e4a7f46f-f332-463d-9679-00bd4ddc5588", - "e4a7f46f-f332-463d-9679-00bd4ddc5588" + "6431966e-427e-4416-93a1-2e4d7ebbe356", + "6431966e-427e-4416-93a1-2e4d7ebbe356" ], "X-Powered-By": [ "ASP.NET" @@ -11831,19 +12107,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "90" + "66" ], "x-ms-correlation-request-id": [ - "5247d256-f183-4926-9fb0-d7660fef78d1" + "e404cdb2-6ece-44a4-8fcf-5ff91b79b981" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T191921Z:5247d256-f183-4926-9fb0-d7660fef78d1" + "JIOINDIAWEST:20220517T064952Z:e404cdb2-6ece-44a4-8fcf-5ff91b79b981" ], "Date": [ - "Thu, 24 Feb 2022 19:19:21 GMT" + "Tue, 17 May 2022 06:49:51 GMT" ], "Content-Length": [ - "845" + "1170" ], "Content-Type": [ "application/json" @@ -11852,26 +12128,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfee9dac/backupJobs/dd8e514f-880b-4cf8-9f97-389ff51c5063\",\r\n \"name\": \"dd8e514f-880b-4cf8-9f97-389ff51c5063\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgbfee9dac;pstestvmbfee90\",\r\n \"duration\": \"PT1M51.6902604S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"VM Name\": \"PSTestVMbfee90\",\r\n \"Number of Recovery Points\": \"1\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"PSTestVMbfee90\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"DeleteBackupData\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-02-24T19:17:23.0958763Z\",\r\n \"endTime\": \"2022-02-24T19:19:14.7861367Z\",\r\n \"activityId\": \"e4a7f46f-f332-463d-9679-00bd4ddc5588\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupJobs/add3f4ab-69aa-4e02-89ba-270cbcd42b97\",\r\n \"name\": \"add3f4ab-69aa-4e02-89ba-270cbcd42b97\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg2a085f1b;pstestvm2a0850\",\r\n \"duration\": \"PT11M51.1364658S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Transfer data from vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\",\r\n \"taskExecutionDetails\": \"71.5 GBs / 127 GBs Transferred\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"Job Type\": \"Recover disks\",\r\n \"Target VM Name\": \"vmName\",\r\n \"Target Storage Account Name\": \"pstestsa2a085f1b\",\r\n \"Recovery point time \": \"5/17/2022 6:06:33 AM\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"restoreLocationType\": \"RestoreDisks\"\r\n },\r\n \"progressPercentage\": 56.0,\r\n \"estimatedRemainingDuration\": \"PT8M11.399853S\"\r\n },\r\n \"entityFriendlyName\": \"pstestvm2a0850\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T06:38:00.3280088Z\",\r\n \"activityId\": \"6431966e-427e-4416-93a1-2e4d7ebbe356\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfee9dac?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZlZTlkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmVlOWRhYz9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", - "RequestMethod": "DELETE", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupJobs/add3f4ab-69aa-4e02-89ba-270cbcd42b97?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMmEwODVmMWIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YyYTA4NWYxYi9iYWNrdXBKb2JzL2FkZDNmNGFiLTY5YWEtNGUwMi04OWJhLTI3MGNiY2Q0MmI5Nz9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2f6b572b-7882-4e7b-ab6a-9a3efcd948ca" + "6431966e-427e-4416-93a1-2e4d7ebbe356" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesClient/4.3.2.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -11881,57 +12157,68 @@ "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-IIS/10.0", + "Microsoft-IIS/10.0" + ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "48d0fb9f-4948-407b-9c02-277c33f5653f" + "1ee311d4-035f-4096-88fb-fd032bcef402" ], "x-ms-client-request-id": [ - "2f6b572b-7882-4e7b-ab6a-9a3efcd948ca" + "6431966e-427e-4416-93a1-2e4d7ebbe356", + "6431966e-427e-4416-93a1-2e4d7ebbe356" + ], + "X-Powered-By": [ + "ASP.NET" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "9" + "65" ], "x-ms-correlation-request-id": [ - "48d0fb9f-4948-407b-9c02-277c33f5653f" + "1ee311d4-035f-4096-88fb-fd032bcef402" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T191934Z:48d0fb9f-4948-407b-9c02-277c33f5653f" + "JIOINDIAWEST:20220517T065023Z:1ee311d4-035f-4096-88fb-fd032bcef402" ], "Date": [ - "Thu, 24 Feb 2022 19:19:34 GMT" + "Tue, 17 May 2022 06:50:23 GMT" + ], + "Content-Length": [ + "1170" + ], + "Content-Type": [ + "application/json" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, - "ResponseBody": "", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupJobs/add3f4ab-69aa-4e02-89ba-270cbcd42b97\",\r\n \"name\": \"add3f4ab-69aa-4e02-89ba-270cbcd42b97\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg2a085f1b;pstestvm2a0850\",\r\n \"duration\": \"PT12M22.4824361S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Transfer data from vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\",\r\n \"taskExecutionDetails\": \"71.5 GBs / 127 GBs Transferred\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"Job Type\": \"Recover disks\",\r\n \"Target VM Name\": \"vmName\",\r\n \"Target Storage Account Name\": \"pstestsa2a085f1b\",\r\n \"Recovery point time \": \"5/17/2022 6:06:33 AM\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"restoreLocationType\": \"RestoreDisks\"\r\n },\r\n \"progressPercentage\": 56.0,\r\n \"estimatedRemainingDuration\": \"PT8M11.399853S\"\r\n },\r\n \"entityFriendlyName\": \"pstestvm2a0850\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T06:38:00.3280088Z\",\r\n \"activityId\": \"6431966e-427e-4416-93a1-2e4d7ebbe356\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourcegroups/PSTestRGbfee9dac?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlZ3JvdXBzL1BTVGVzdFJHYmZlZTlkYWM/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "DELETE", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupJobs/add3f4ab-69aa-4e02-89ba-270cbcd42b97?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMmEwODVmMWIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YyYTA4NWYxYi9iYWNrdXBKb2JzL2FkZDNmNGFiLTY5YWEtNGUwMi04OWJhLTI3MGNiY2Q0MmI5Nz9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "de31ebe8-3837-49b6-b4cf-92147a0add3e" + "6431966e-427e-4416-93a1-2e4d7ebbe356" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -11941,54 +12228,68 @@ "Pragma": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0JGRUU5REFDLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" + "Server": [ + "Microsoft-IIS/10.0", + "Microsoft-IIS/10.0" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ - "14999" + "X-Content-Type-Options": [ + "nosniff" ], "x-ms-request-id": [ - "377a03bf-214b-4cc9-aed6-a3dc69a69d66" + "0698b45d-0125-4023-ba6b-d2b5a7cb9598" ], - "x-ms-correlation-request-id": [ - "377a03bf-214b-4cc9-aed6-a3dc69a69d66" + "x-ms-client-request-id": [ + "6431966e-427e-4416-93a1-2e4d7ebbe356", + "6431966e-427e-4416-93a1-2e4d7ebbe356" ], - "x-ms-routing-request-id": [ - "CENTRALUS:20220224T191941Z:377a03bf-214b-4cc9-aed6-a3dc69a69d66" + "X-Powered-By": [ + "ASP.NET" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ - "nosniff" + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "64" + ], + "x-ms-correlation-request-id": [ + "0698b45d-0125-4023-ba6b-d2b5a7cb9598" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220517T065054Z:0698b45d-0125-4023-ba6b-d2b5a7cb9598" ], "Date": [ - "Thu, 24 Feb 2022 19:19:40 GMT" + "Tue, 17 May 2022 06:50:53 GMT" + ], + "Content-Length": [ + "1170" + ], + "Content-Type": [ + "application/json" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, - "ResponseBody": "", - "StatusCode": 202 + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupJobs/add3f4ab-69aa-4e02-89ba-270cbcd42b97\",\r\n \"name\": \"add3f4ab-69aa-4e02-89ba-270cbcd42b97\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg2a085f1b;pstestvm2a0850\",\r\n \"duration\": \"PT12M53.2200901S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Transfer data from vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\",\r\n \"taskExecutionDetails\": \"71.5 GBs / 127 GBs Transferred\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"Job Type\": \"Recover disks\",\r\n \"Target VM Name\": \"vmName\",\r\n \"Target Storage Account Name\": \"pstestsa2a085f1b\",\r\n \"Recovery point time \": \"5/17/2022 6:06:33 AM\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"restoreLocationType\": \"RestoreDisks\"\r\n },\r\n \"progressPercentage\": 56.0,\r\n \"estimatedRemainingDuration\": \"PT8M11.399853S\"\r\n },\r\n \"entityFriendlyName\": \"pstestvm2a0850\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T06:38:00.3280088Z\",\r\n \"activityId\": \"6431966e-427e-4416-93a1-2e4d7ebbe356\"\r\n }\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0JGRUU5REFDLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSMEpHUlVVNVJFRkRMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupJobs/add3f4ab-69aa-4e02-89ba-270cbcd42b97?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMmEwODVmMWIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YyYTA4NWYxYi9iYWNrdXBKb2JzL2FkZDNmNGFiLTY5YWEtNGUwMi04OWJhLTI3MGNiY2Q0MmI5Nz9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "6431966e-427e-4416-93a1-2e4d7ebbe356" + ], + "Accept-Language": [ + "en-US" + ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -11998,54 +12299,68 @@ "Pragma": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0JGRUU5REFDLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" + "Server": [ + "Microsoft-IIS/10.0", + "Microsoft-IIS/10.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "X-Content-Type-Options": [ + "nosniff" ], "x-ms-request-id": [ - "fcf57668-6821-46e6-ad1e-23557abf2ab2" + "132ebff6-8045-4420-a385-0b91579ccc54" ], - "x-ms-correlation-request-id": [ - "fcf57668-6821-46e6-ad1e-23557abf2ab2" + "x-ms-client-request-id": [ + "6431966e-427e-4416-93a1-2e4d7ebbe356", + "6431966e-427e-4416-93a1-2e4d7ebbe356" ], - "x-ms-routing-request-id": [ - "CENTRALUS:20220224T191957Z:fcf57668-6821-46e6-ad1e-23557abf2ab2" + "X-Powered-By": [ + "ASP.NET" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ - "nosniff" + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "63" + ], + "x-ms-correlation-request-id": [ + "132ebff6-8045-4420-a385-0b91579ccc54" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220517T065124Z:132ebff6-8045-4420-a385-0b91579ccc54" ], "Date": [ - "Thu, 24 Feb 2022 19:19:56 GMT" + "Tue, 17 May 2022 06:51:24 GMT" + ], + "Content-Length": [ + "1170" + ], + "Content-Type": [ + "application/json" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, - "ResponseBody": "", - "StatusCode": 202 + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupJobs/add3f4ab-69aa-4e02-89ba-270cbcd42b97\",\r\n \"name\": \"add3f4ab-69aa-4e02-89ba-270cbcd42b97\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg2a085f1b;pstestvm2a0850\",\r\n \"duration\": \"PT13M23.9537134S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Transfer data from vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\",\r\n \"taskExecutionDetails\": \"71.5 GBs / 127 GBs Transferred\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"Job Type\": \"Recover disks\",\r\n \"Target VM Name\": \"vmName\",\r\n \"Target Storage Account Name\": \"pstestsa2a085f1b\",\r\n \"Recovery point time \": \"5/17/2022 6:06:33 AM\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"restoreLocationType\": \"RestoreDisks\"\r\n },\r\n \"progressPercentage\": 56.0,\r\n \"estimatedRemainingDuration\": \"PT8M11.399853S\"\r\n },\r\n \"entityFriendlyName\": \"pstestvm2a0850\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T06:38:00.3280088Z\",\r\n \"activityId\": \"6431966e-427e-4416-93a1-2e4d7ebbe356\"\r\n }\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0JGRUU5REFDLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSMEpHUlVVNVJFRkRMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupJobs/add3f4ab-69aa-4e02-89ba-270cbcd42b97?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMmEwODVmMWIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YyYTA4NWYxYi9iYWNrdXBKb2JzL2FkZDNmNGFiLTY5YWEtNGUwMi04OWJhLTI3MGNiY2Q0MmI5Nz9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "6431966e-427e-4416-93a1-2e4d7ebbe356" + ], + "Accept-Language": [ + "en-US" + ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -12055,54 +12370,68 @@ "Pragma": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0JGRUU5REFDLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" + "Server": [ + "Microsoft-IIS/10.0", + "Microsoft-IIS/10.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "X-Content-Type-Options": [ + "nosniff" ], "x-ms-request-id": [ - "f127a26f-c272-4eb3-ba94-bbbbb57d6027" + "ce55f30b-e54c-42df-ba98-e61ff976c242" ], - "x-ms-correlation-request-id": [ - "f127a26f-c272-4eb3-ba94-bbbbb57d6027" + "x-ms-client-request-id": [ + "6431966e-427e-4416-93a1-2e4d7ebbe356", + "6431966e-427e-4416-93a1-2e4d7ebbe356" ], - "x-ms-routing-request-id": [ - "CENTRALUS:20220224T192012Z:f127a26f-c272-4eb3-ba94-bbbbb57d6027" + "X-Powered-By": [ + "ASP.NET" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ - "nosniff" + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "62" + ], + "x-ms-correlation-request-id": [ + "ce55f30b-e54c-42df-ba98-e61ff976c242" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220517T065202Z:ce55f30b-e54c-42df-ba98-e61ff976c242" ], "Date": [ - "Thu, 24 Feb 2022 19:20:12 GMT" + "Tue, 17 May 2022 06:52:01 GMT" + ], + "Content-Length": [ + "1169" + ], + "Content-Type": [ + "application/json" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, - "ResponseBody": "", - "StatusCode": 202 + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupJobs/add3f4ab-69aa-4e02-89ba-270cbcd42b97\",\r\n \"name\": \"add3f4ab-69aa-4e02-89ba-270cbcd42b97\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg2a085f1b;pstestvm2a0850\",\r\n \"duration\": \"PT14M0.4267995S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Transfer data from vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\",\r\n \"taskExecutionDetails\": \"71.5 GBs / 127 GBs Transferred\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"Job Type\": \"Recover disks\",\r\n \"Target VM Name\": \"vmName\",\r\n \"Target Storage Account Name\": \"pstestsa2a085f1b\",\r\n \"Recovery point time \": \"5/17/2022 6:06:33 AM\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"restoreLocationType\": \"RestoreDisks\"\r\n },\r\n \"progressPercentage\": 56.0,\r\n \"estimatedRemainingDuration\": \"PT8M11.399853S\"\r\n },\r\n \"entityFriendlyName\": \"pstestvm2a0850\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T06:38:00.3280088Z\",\r\n \"activityId\": \"6431966e-427e-4416-93a1-2e4d7ebbe356\"\r\n }\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0JGRUU5REFDLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSMEpHUlVVNVJFRkRMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupJobs/add3f4ab-69aa-4e02-89ba-270cbcd42b97?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMmEwODVmMWIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YyYTA4NWYxYi9iYWNrdXBKb2JzL2FkZDNmNGFiLTY5YWEtNGUwMi04OWJhLTI3MGNiY2Q0MmI5Nz9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "6431966e-427e-4416-93a1-2e4d7ebbe356" + ], + "Accept-Language": [ + "en-US" + ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -12112,54 +12441,68 @@ "Pragma": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0JGRUU5REFDLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" + "Server": [ + "Microsoft-IIS/10.0", + "Microsoft-IIS/10.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "X-Content-Type-Options": [ + "nosniff" ], "x-ms-request-id": [ - "5c5aedb6-3e9f-4579-bea2-282f21a267c6" + "2862d37d-1dc7-4964-9dcb-9a102722c858" ], - "x-ms-correlation-request-id": [ - "5c5aedb6-3e9f-4579-bea2-282f21a267c6" + "x-ms-client-request-id": [ + "6431966e-427e-4416-93a1-2e4d7ebbe356", + "6431966e-427e-4416-93a1-2e4d7ebbe356" ], - "x-ms-routing-request-id": [ - "CENTRALUS:20220224T192028Z:5c5aedb6-3e9f-4579-bea2-282f21a267c6" + "X-Powered-By": [ + "ASP.NET" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ - "nosniff" + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "61" + ], + "x-ms-correlation-request-id": [ + "2862d37d-1dc7-4964-9dcb-9a102722c858" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220517T065233Z:2862d37d-1dc7-4964-9dcb-9a102722c858" ], "Date": [ - "Thu, 24 Feb 2022 19:20:27 GMT" + "Tue, 17 May 2022 06:52:33 GMT" + ], + "Content-Length": [ + "1170" + ], + "Content-Type": [ + "application/json" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, - "ResponseBody": "", - "StatusCode": 202 + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupJobs/add3f4ab-69aa-4e02-89ba-270cbcd42b97\",\r\n \"name\": \"add3f4ab-69aa-4e02-89ba-270cbcd42b97\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg2a085f1b;pstestvm2a0850\",\r\n \"duration\": \"PT14M32.4287431S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Transfer data from vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\",\r\n \"taskExecutionDetails\": \"71.5 GBs / 127 GBs Transferred\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"Job Type\": \"Recover disks\",\r\n \"Target VM Name\": \"vmName\",\r\n \"Target Storage Account Name\": \"pstestsa2a085f1b\",\r\n \"Recovery point time \": \"5/17/2022 6:06:33 AM\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"restoreLocationType\": \"RestoreDisks\"\r\n },\r\n \"progressPercentage\": 56.0,\r\n \"estimatedRemainingDuration\": \"PT8M11.399853S\"\r\n },\r\n \"entityFriendlyName\": \"pstestvm2a0850\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T06:38:00.3280088Z\",\r\n \"activityId\": \"6431966e-427e-4416-93a1-2e4d7ebbe356\"\r\n }\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0JGRUU5REFDLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSMEpHUlVVNVJFRkRMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupJobs/add3f4ab-69aa-4e02-89ba-270cbcd42b97?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMmEwODVmMWIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YyYTA4NWYxYi9iYWNrdXBKb2JzL2FkZDNmNGFiLTY5YWEtNGUwMi04OWJhLTI3MGNiY2Q0MmI5Nz9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "6431966e-427e-4416-93a1-2e4d7ebbe356" + ], + "Accept-Language": [ + "en-US" + ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -12169,54 +12512,274 @@ "Pragma": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0JGRUU5REFDLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" + "Server": [ + "Microsoft-IIS/10.0", + "Microsoft-IIS/10.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "X-Content-Type-Options": [ + "nosniff" ], "x-ms-request-id": [ - "f03bb880-abe5-4589-ba6a-7907e89018ac" + "7e4912f5-54ce-4005-9bdc-8530fdaf91b4" + ], + "x-ms-client-request-id": [ + "6431966e-427e-4416-93a1-2e4d7ebbe356", + "6431966e-427e-4416-93a1-2e4d7ebbe356" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "60" ], "x-ms-correlation-request-id": [ - "f03bb880-abe5-4589-ba6a-7907e89018ac" + "7e4912f5-54ce-4005-9bdc-8530fdaf91b4" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T192043Z:f03bb880-abe5-4589-ba6a-7907e89018ac" + "JIOINDIAWEST:20220517T065304Z:7e4912f5-54ce-4005-9bdc-8530fdaf91b4" + ], + "Date": [ + "Tue, 17 May 2022 06:53:04 GMT" + ], + "Content-Length": [ + "1169" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupJobs/add3f4ab-69aa-4e02-89ba-270cbcd42b97\",\r\n \"name\": \"add3f4ab-69aa-4e02-89ba-270cbcd42b97\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg2a085f1b;pstestvm2a0850\",\r\n \"duration\": \"PT15M3.2402073S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Transfer data from vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\",\r\n \"taskExecutionDetails\": \"71.5 GBs / 127 GBs Transferred\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"Job Type\": \"Recover disks\",\r\n \"Target VM Name\": \"vmName\",\r\n \"Target Storage Account Name\": \"pstestsa2a085f1b\",\r\n \"Recovery point time \": \"5/17/2022 6:06:33 AM\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"restoreLocationType\": \"RestoreDisks\"\r\n },\r\n \"progressPercentage\": 56.0,\r\n \"estimatedRemainingDuration\": \"PT8M11.399853S\"\r\n },\r\n \"entityFriendlyName\": \"pstestvm2a0850\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T06:38:00.3280088Z\",\r\n \"activityId\": \"6431966e-427e-4416-93a1-2e4d7ebbe356\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupJobs/add3f4ab-69aa-4e02-89ba-270cbcd42b97?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMmEwODVmMWIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YyYTA4NWYxYi9iYWNrdXBKb2JzL2FkZDNmNGFiLTY5YWEtNGUwMi04OWJhLTI3MGNiY2Q0MmI5Nz9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6431966e-427e-4416-93a1-2e4d7ebbe356" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.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": [ + "52a96747-263f-4f42-a293-2ed718dd824f" + ], + "x-ms-client-request-id": [ + "6431966e-427e-4416-93a1-2e4d7ebbe356", + "6431966e-427e-4416-93a1-2e4d7ebbe356" + ], + "X-Powered-By": [ + "ASP.NET" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "59" + ], + "x-ms-correlation-request-id": [ + "52a96747-263f-4f42-a293-2ed718dd824f" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220517T065335Z:52a96747-263f-4f42-a293-2ed718dd824f" + ], + "Date": [ + "Tue, 17 May 2022 06:53:34 GMT" + ], + "Content-Length": [ + "1170" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupJobs/add3f4ab-69aa-4e02-89ba-270cbcd42b97\",\r\n \"name\": \"add3f4ab-69aa-4e02-89ba-270cbcd42b97\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg2a085f1b;pstestvm2a0850\",\r\n \"duration\": \"PT15M33.9997872S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Transfer data from vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\",\r\n \"taskExecutionDetails\": \"71.5 GBs / 127 GBs Transferred\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"Job Type\": \"Recover disks\",\r\n \"Target VM Name\": \"vmName\",\r\n \"Target Storage Account Name\": \"pstestsa2a085f1b\",\r\n \"Recovery point time \": \"5/17/2022 6:06:33 AM\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"restoreLocationType\": \"RestoreDisks\"\r\n },\r\n \"progressPercentage\": 56.0,\r\n \"estimatedRemainingDuration\": \"PT8M11.399853S\"\r\n },\r\n \"entityFriendlyName\": \"pstestvm2a0850\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T06:38:00.3280088Z\",\r\n \"activityId\": \"6431966e-427e-4416-93a1-2e4d7ebbe356\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupJobs/add3f4ab-69aa-4e02-89ba-270cbcd42b97?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMmEwODVmMWIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YyYTA4NWYxYi9iYWNrdXBKb2JzL2FkZDNmNGFiLTY5YWEtNGUwMi04OWJhLTI3MGNiY2Q0MmI5Nz9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6431966e-427e-4416-93a1-2e4d7ebbe356" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.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": [ + "a773d82b-6d95-46c2-a26d-ecf1d4a649dd" + ], + "x-ms-client-request-id": [ + "6431966e-427e-4416-93a1-2e4d7ebbe356", + "6431966e-427e-4416-93a1-2e4d7ebbe356" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "58" + ], + "x-ms-correlation-request-id": [ + "a773d82b-6d95-46c2-a26d-ecf1d4a649dd" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220517T065405Z:a773d82b-6d95-46c2-a26d-ecf1d4a649dd" + ], "Date": [ - "Thu, 24 Feb 2022 19:20:42 GMT" + "Tue, 17 May 2022 06:54:04 GMT" + ], + "Content-Length": [ + "1712" + ], + "Content-Type": [ + "application/json" ], "Expires": [ "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupJobs/add3f4ab-69aa-4e02-89ba-270cbcd42b97\",\r\n \"name\": \"add3f4ab-69aa-4e02-89ba-270cbcd42b97\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg2a085f1b;pstestvm2a0850\",\r\n \"duration\": \"PT15M47.3100223S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Transfer data from vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\",\r\n \"taskExecutionDetails\": \"127 GBs / 127 GBs Transferred\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"Job Type\": \"Recover disks\",\r\n \"Target VM Name\": \"vmName\",\r\n \"Target Storage Account Name\": \"pstestsa2a085f1b\",\r\n \"Recovery point time \": \"5/17/2022 6:06:33 AM\",\r\n \"Config Blob Name\": \"config-pstestvm2a0850-add3f4ab-69aa-4e02-89ba-270cbcd42b97.json\",\r\n \"Config Blob Container Name\": \"pstestvm2a0850-c1ebba3619f248de8d11029135943335\",\r\n \"Config Blob Uri\": \"https://pstestsa2a085f1b.blob.core.windows.net/pstestvm2a0850-c1ebba3619f248de8d11029135943335/config-pstestvm2a0850-add3f4ab-69aa-4e02-89ba-270cbcd42b97.json\",\r\n \"Template Blob Uri\": \"https://pstestsa2a085f1b.blob.core.windows.net/pstestvm2a0850-c1ebba3619f248de8d11029135943335/azuredeployadd3f4ab-69aa-4e02-89ba-270cbcd42b97.json\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"restoreLocationType\": \"RestoreDisks\"\r\n },\r\n \"progressPercentage\": 100.0,\r\n \"estimatedRemainingDuration\": \"PT0S\"\r\n },\r\n \"entityFriendlyName\": \"pstestvm2a0850\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-05-17T06:38:00.3280088Z\",\r\n \"endTime\": \"2022-05-17T06:53:47.6380311Z\",\r\n \"activityId\": \"6431966e-427e-4416-93a1-2e4d7ebbe356\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrg2a085f1b;pstestvm2a0850/protectedItems/VM;iaasvmcontainerv2;pstestrg2a085f1b;pstestvm2a0850/operationsStatus/ae5c62fa-6e6f-42d6-8a05-5fa3d55142af?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMmEwODVmMWIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YyYTA4NWYxYi9iYWNrdXBGYWJyaWNzL0F6dXJlL3Byb3RlY3Rpb25Db250YWluZXJzL0lhYXNWTUNvbnRhaW5lcjtpYWFzdm1jb250YWluZXJ2Mjtwc3Rlc3RyZzJhMDg1ZjFiO3BzdGVzdHZtMmEwODUwL3Byb3RlY3RlZEl0ZW1zL1ZNO2lhYXN2bWNvbnRhaW5lcnYyO3BzdGVzdHJnMmEwODVmMWI7cHN0ZXN0dm0yYTA4NTAvb3BlcmF0aW9uc1N0YXR1cy9hZTVjNjJmYS02ZTZmLTQyZDYtOGEwNS01ZmEzZDU1MTQyYWY/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ee983894-3ca4-48d2-af84-ffcef660d31b" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "bd355182-cbab-410f-95b8-f500239af5fe" + ], + "x-ms-client-request-id": [ + "ee983894-3ca4-48d2-af84-ffcef660d31b", + "ee983894-3ca4-48d2-af84-ffcef660d31b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "148" + ], + "x-ms-correlation-request-id": [ + "bd355182-cbab-410f-95b8-f500239af5fe" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220517T065508Z:bd355182-cbab-410f-95b8-f500239af5fe" + ], + "Date": [ + "Tue, 17 May 2022 06:55:08 GMT" ], "Content-Length": [ - "0" + "304" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" ] }, - "ResponseBody": "", - "StatusCode": 202 + "ResponseBody": "{\r\n \"id\": \"ae5c62fa-6e6f-42d6-8a05-5fa3d55142af\",\r\n \"name\": \"ae5c62fa-6e6f-42d6-8a05-5fa3d55142af\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-05-17T06:54:06.7579102Z\",\r\n \"endTime\": \"2022-05-17T06:54:06.7579102Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"ae5c62fa-6e6f-42d6-8a05-5fa3d55142af\"\r\n }\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0JGRUU5REFDLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSMEpHUlVVNVJFRkRMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrg2a085f1b;pstestvm2a0850/protectedItems/VM;iaasvmcontainerv2;pstestrg2a085f1b;pstestvm2a0850/operationResults/ae5c62fa-6e6f-42d6-8a05-5fa3d55142af?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMmEwODVmMWIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YyYTA4NWYxYi9iYWNrdXBGYWJyaWNzL0F6dXJlL3Byb3RlY3Rpb25Db250YWluZXJzL0lhYXNWTUNvbnRhaW5lcjtpYWFzdm1jb250YWluZXJ2Mjtwc3Rlc3RyZzJhMDg1ZjFiO3BzdGVzdHZtMmEwODUwL3Byb3RlY3RlZEl0ZW1zL1ZNO2lhYXN2bWNvbnRhaW5lcnYyO3BzdGVzdHJnMmEwODVmMWI7cHN0ZXN0dm0yYTA4NTAvb3BlcmF0aW9uUmVzdWx0cy9hZTVjNjJmYS02ZTZmLTQyZDYtOGEwNS01ZmEzZDU1MTQyYWY/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "ee983894-3ca4-48d2-af84-ffcef660d31b" + ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -12226,54 +12789,2093 @@ "Pragma": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0JGRUU5REFDLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" - ], "Retry-After": [ - "15" + "60" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrg2a085f1b;pstestvm2a0850/protectedItems/VM;iaasvmcontainerv2;pstestrg2a085f1b;pstestvm2a0850/operationsStatus/ae5c62fa-6e6f-42d6-8a05-5fa3d55142af?api-version=2022-02-01" + ], + "X-Content-Type-Options": [ + "nosniff" ], "x-ms-request-id": [ - "df0fb8d3-558c-4cfd-bae1-2381cef7b58b" + "e754971a-7ddf-4242-b482-06f3bedf3341" + ], + "x-ms-client-request-id": [ + "ee983894-3ca4-48d2-af84-ffcef660d31b", + "ee983894-3ca4-48d2-af84-ffcef660d31b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "148" + ], + "x-ms-correlation-request-id": [ + "e754971a-7ddf-4242-b482-06f3bedf3341" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220517T065508Z:e754971a-7ddf-4242-b482-06f3bedf3341" + ], + "Date": [ + "Tue, 17 May 2022 06:55:08 GMT" + ] + }, + "ResponseBody": "", + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupOperations/ae5c62fa-6e6f-42d6-8a05-5fa3d55142af?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMmEwODVmMWIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YyYTA4NWYxYi9iYWNrdXBPcGVyYXRpb25zL2FlNWM2MmZhLTZlNmYtNDJkNi04YTA1LTVmYTNkNTUxNDJhZj9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ee983894-3ca4-48d2-af84-ffcef660d31b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "2fad948a-f5c3-4dd8-9dec-d40eec7b5adb" + ], + "x-ms-client-request-id": [ + "ee983894-3ca4-48d2-af84-ffcef660d31b", + "ee983894-3ca4-48d2-af84-ffcef660d31b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "134" + ], + "x-ms-correlation-request-id": [ + "2fad948a-f5c3-4dd8-9dec-d40eec7b5adb" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220517T065508Z:2fad948a-f5c3-4dd8-9dec-d40eec7b5adb" + ], + "Date": [ + "Tue, 17 May 2022 06:55:08 GMT" + ], + "Content-Length": [ + "304" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"ae5c62fa-6e6f-42d6-8a05-5fa3d55142af\",\r\n \"name\": \"ae5c62fa-6e6f-42d6-8a05-5fa3d55142af\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-05-17T06:54:06.7579102Z\",\r\n \"endTime\": \"2022-05-17T06:54:06.7579102Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"ae5c62fa-6e6f-42d6-8a05-5fa3d55142af\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupOperations/ae5c62fa-6e6f-42d6-8a05-5fa3d55142af?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMmEwODVmMWIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YyYTA4NWYxYi9iYWNrdXBPcGVyYXRpb25zL2FlNWM2MmZhLTZlNmYtNDJkNi04YTA1LTVmYTNkNTUxNDJhZj9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ee983894-3ca4-48d2-af84-ffcef660d31b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "833ce29c-6748-4864-b49c-f2bed7f6e65c" + ], + "x-ms-client-request-id": [ + "ee983894-3ca4-48d2-af84-ffcef660d31b", + "ee983894-3ca4-48d2-af84-ffcef660d31b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "133" + ], + "x-ms-correlation-request-id": [ + "833ce29c-6748-4864-b49c-f2bed7f6e65c" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220517T065509Z:833ce29c-6748-4864-b49c-f2bed7f6e65c" + ], + "Date": [ + "Tue, 17 May 2022 06:55:09 GMT" + ], + "Content-Length": [ + "304" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"ae5c62fa-6e6f-42d6-8a05-5fa3d55142af\",\r\n \"name\": \"ae5c62fa-6e6f-42d6-8a05-5fa3d55142af\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-05-17T06:54:06.7579102Z\",\r\n \"endTime\": \"2022-05-17T06:54:06.7579102Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"ae5c62fa-6e6f-42d6-8a05-5fa3d55142af\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupJobs/ae5c62fa-6e6f-42d6-8a05-5fa3d55142af?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMmEwODVmMWIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YyYTA4NWYxYi9iYWNrdXBKb2JzL2FlNWM2MmZhLTZlNmYtNDJkNi04YTA1LTVmYTNkNTUxNDJhZj9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ee983894-3ca4-48d2-af84-ffcef660d31b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.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": [ + "fc95226f-eb04-451e-ad44-fa88dfb97682" + ], + "x-ms-client-request-id": [ + "ee983894-3ca4-48d2-af84-ffcef660d31b", + "ee983894-3ca4-48d2-af84-ffcef660d31b" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "57" + ], + "x-ms-correlation-request-id": [ + "fc95226f-eb04-451e-ad44-fa88dfb97682" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220517T065510Z:fc95226f-eb04-451e-ad44-fa88dfb97682" + ], + "Date": [ + "Tue, 17 May 2022 06:55:10 GMT" + ], + "Content-Length": [ + "1200" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupJobs/ae5c62fa-6e6f-42d6-8a05-5fa3d55142af\",\r\n \"name\": \"ae5c62fa-6e6f-42d6-8a05-5fa3d55142af\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg2a085f1b;pstestvm2a0850\",\r\n \"duration\": \"PT1M2.0606257S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Transfer data from vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\",\r\n \"taskExecutionDetails\": \"127 GBs / 127 GBs Transferred\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"Job Type\": \"Recover disks\",\r\n \"Target VM Name\": \"vmName\",\r\n \"Target Storage Account Name\": \"pstestsa2a085f1b\",\r\n \"Recovery point time \": \"5/17/2022 6:06:33 AM\",\r\n \"Target resource group\": \"PSTestRG2a085f1b1\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"restoreLocationType\": \"RestoreDisks\"\r\n },\r\n \"progressPercentage\": 99.0,\r\n \"estimatedRemainingDuration\": \"PT2M\"\r\n },\r\n \"entityFriendlyName\": \"pstestvm2a0850\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T06:54:07.9203986Z\",\r\n \"activityId\": \"ee983894-3ca4-48d2-af84-ffcef660d31b\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupJobs/ae5c62fa-6e6f-42d6-8a05-5fa3d55142af?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMmEwODVmMWIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YyYTA4NWYxYi9iYWNrdXBKb2JzL2FlNWM2MmZhLTZlNmYtNDJkNi04YTA1LTVmYTNkNTUxNDJhZj9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ee983894-3ca4-48d2-af84-ffcef660d31b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.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": [ + "8a087c1b-7937-449d-9a36-b744cba31899" + ], + "x-ms-client-request-id": [ + "ee983894-3ca4-48d2-af84-ffcef660d31b", + "ee983894-3ca4-48d2-af84-ffcef660d31b" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "56" + ], + "x-ms-correlation-request-id": [ + "8a087c1b-7937-449d-9a36-b744cba31899" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220517T065511Z:8a087c1b-7937-449d-9a36-b744cba31899" + ], + "Date": [ + "Tue, 17 May 2022 06:55:10 GMT" + ], + "Content-Length": [ + "1200" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupJobs/ae5c62fa-6e6f-42d6-8a05-5fa3d55142af\",\r\n \"name\": \"ae5c62fa-6e6f-42d6-8a05-5fa3d55142af\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg2a085f1b;pstestvm2a0850\",\r\n \"duration\": \"PT1M2.8145319S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Transfer data from vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\",\r\n \"taskExecutionDetails\": \"127 GBs / 127 GBs Transferred\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"Job Type\": \"Recover disks\",\r\n \"Target VM Name\": \"vmName\",\r\n \"Target Storage Account Name\": \"pstestsa2a085f1b\",\r\n \"Recovery point time \": \"5/17/2022 6:06:33 AM\",\r\n \"Target resource group\": \"PSTestRG2a085f1b1\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"restoreLocationType\": \"RestoreDisks\"\r\n },\r\n \"progressPercentage\": 99.0,\r\n \"estimatedRemainingDuration\": \"PT2M\"\r\n },\r\n \"entityFriendlyName\": \"pstestvm2a0850\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T06:54:07.9203986Z\",\r\n \"activityId\": \"ee983894-3ca4-48d2-af84-ffcef660d31b\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupJobs/ae5c62fa-6e6f-42d6-8a05-5fa3d55142af?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMmEwODVmMWIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YyYTA4NWYxYi9iYWNrdXBKb2JzL2FlNWM2MmZhLTZlNmYtNDJkNi04YTA1LTVmYTNkNTUxNDJhZj9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ee983894-3ca4-48d2-af84-ffcef660d31b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.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": [ + "539343f8-dc22-4a8d-a70a-3a75ab70130f" + ], + "x-ms-client-request-id": [ + "ee983894-3ca4-48d2-af84-ffcef660d31b", + "ee983894-3ca4-48d2-af84-ffcef660d31b" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "55" + ], + "x-ms-correlation-request-id": [ + "539343f8-dc22-4a8d-a70a-3a75ab70130f" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220517T065541Z:539343f8-dc22-4a8d-a70a-3a75ab70130f" + ], + "Date": [ + "Tue, 17 May 2022 06:55:41 GMT" + ], + "Content-Length": [ + "1753" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupJobs/ae5c62fa-6e6f-42d6-8a05-5fa3d55142af\",\r\n \"name\": \"ae5c62fa-6e6f-42d6-8a05-5fa3d55142af\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg2a085f1b;pstestvm2a0850\",\r\n \"duration\": \"PT1M8.1583794S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Transfer data from vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\",\r\n \"taskExecutionDetails\": \"127 GBs / 127 GBs Transferred\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"Job Type\": \"Recover disks\",\r\n \"Target VM Name\": \"vmName\",\r\n \"Target Storage Account Name\": \"pstestsa2a085f1b\",\r\n \"Recovery point time \": \"5/17/2022 6:06:33 AM\",\r\n \"Config Blob Name\": \"config-pstestvm2a0850-ae5c62fa-6e6f-42d6-8a05-5fa3d55142af.json\",\r\n \"Config Blob Container Name\": \"pstestvm2a0850-ad39eb0debba48b687f36aaa8f7aec45\",\r\n \"Config Blob Uri\": \"https://pstestsa2a085f1b.blob.core.windows.net/pstestvm2a0850-ad39eb0debba48b687f36aaa8f7aec45/config-pstestvm2a0850-ae5c62fa-6e6f-42d6-8a05-5fa3d55142af.json\",\r\n \"Target resource group\": \"PSTestRG2a085f1b1\",\r\n \"Template Blob Uri\": \"https://pstestsa2a085f1b.blob.core.windows.net/pstestvm2a0850-ad39eb0debba48b687f36aaa8f7aec45/azuredeployae5c62fa-6e6f-42d6-8a05-5fa3d55142af.json\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"restoreLocationType\": \"RestoreDisks\"\r\n },\r\n \"progressPercentage\": 100.0,\r\n \"estimatedRemainingDuration\": \"PT0S\"\r\n },\r\n \"entityFriendlyName\": \"pstestvm2a0850\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-05-17T06:54:07.9203986Z\",\r\n \"endTime\": \"2022-05-17T06:55:16.078778Z\",\r\n \"activityId\": \"ee983894-3ca4-48d2-af84-ffcef660d31b\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMmEwODVmMWIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cz9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "67b3d5ff-63e3-4939-a57f-2e49871f6c22" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesClient/4.3.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "9592d594-52e0-45ec-ac78-acc2ed59fea8" + ], + "x-ms-client-request-id": [ + "67b3d5ff-63e3-4939-a57f-2e49871f6c22" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "9592d594-52e0-45ec-ac78-acc2ed59fea8" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220517T065542Z:9592d594-52e0-45ec-ac78-acc2ed59fea8" + ], + "Date": [ + "Tue, 17 May 2022 06:55:42 GMT" + ], + "Content-Length": [ + "530" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"PSTestRSV2a085f1b\",\r\n \"etag\": \"W/\\\"datetime'2022-05-17T06%3A32%3A54.7527969Z'\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateEndpointStateForBackup\": \"None\",\r\n \"privateEndpointStateForSiteRecovery\": \"None\",\r\n \"networkSettings\": {\r\n \"publicNetworkAccess\": \"Enabled\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupProtectionContainers?$filter=backupManagementType%20eq%20'AzureIaasVM'%20and%20status%20eq%20'Registered'&api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMmEwODVmMWIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YyYTA4NWYxYi9iYWNrdXBQcm90ZWN0aW9uQ29udGFpbmVycz8kZmlsdGVyPWJhY2t1cE1hbmFnZW1lbnRUeXBlJTIwZXElMjAnQXp1cmVJYWFzVk0nJTIwYW5kJTIwc3RhdHVzJTIwZXElMjAnUmVnaXN0ZXJlZCcmYXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0eb0a1cc-8884-45b9-b2ea-6bd4731e73a5" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "aef6d1b7-b8de-4212-b7a9-16ea3a932243" + ], + "x-ms-client-request-id": [ + "0eb0a1cc-8884-45b9-b2ea-6bd4731e73a5", + "0eb0a1cc-8884-45b9-b2ea-6bd4731e73a5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "147" + ], + "x-ms-correlation-request-id": [ + "aef6d1b7-b8de-4212-b7a9-16ea3a932243" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220517T065543Z:aef6d1b7-b8de-4212-b7a9-16ea3a932243" + ], + "Date": [ + "Tue, 17 May 2022 06:55:43 GMT" + ], + "Content-Length": [ + "914" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrg2a085f1b;pstestvm2a0850\",\r\n \"name\": \"IaasVMContainer;iaasvmcontainerv2;pstestrg2a085f1b;pstestvm2a0850\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers\",\r\n \"properties\": {\r\n \"virtualMachineId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.Compute/virtualMachines/PSTestVM2a0850\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"resourceGroup\": \"PSTestRG2a085f1b\",\r\n \"friendlyName\": \"PSTestVM2a0850\",\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/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupFabrics/Azure/protectionContainers/IaasVMContainer%3Biaasvmcontainerv2%3Bpstestrg2a085f1b%3Bpstestvm2a0850/protectedItems/VM%3Biaasvmcontainerv2%3Bpstestrg2a085f1b%3Bpstestvm2a0850/recoveryPoints?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMmEwODVmMWIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YyYTA4NWYxYi9iYWNrdXBGYWJyaWNzL0F6dXJlL3Byb3RlY3Rpb25Db250YWluZXJzL0lhYXNWTUNvbnRhaW5lciUzQmlhYXN2bWNvbnRhaW5lcnYyJTNCcHN0ZXN0cmcyYTA4NWYxYiUzQnBzdGVzdHZtMmEwODUwL3Byb3RlY3RlZEl0ZW1zL1ZNJTNCaWFhc3ZtY29udGFpbmVydjIlM0Jwc3Rlc3RyZzJhMDg1ZjFiJTNCcHN0ZXN0dm0yYTA4NTAvcmVjb3ZlcnlQb2ludHM/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b35c8592-59fe-4b1e-96af-7eb79c76bb43" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "cef6c31e-2547-4267-a5c3-19cbf8062c55" + ], + "x-ms-client-request-id": [ + "b35c8592-59fe-4b1e-96af-7eb79c76bb43", + "b35c8592-59fe-4b1e-96af-7eb79c76bb43" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "148" + ], + "x-ms-correlation-request-id": [ + "cef6c31e-2547-4267-a5c3-19cbf8062c55" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220517T065544Z:cef6c31e-2547-4267-a5c3-19cbf8062c55" + ], + "Date": [ + "Tue, 17 May 2022 06:55:44 GMT" + ], + "Content-Length": [ + "1194" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrg2a085f1b;pstestvm2a0850/protectedItems/VM;iaasvmcontainerv2;pstestrg2a085f1b;pstestvm2a0850/recoveryPoints/20218145283648\",\r\n \"name\": \"20218145283648\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints\",\r\n \"properties\": {\r\n \"objectType\": \"IaasVMRecoveryPoint\",\r\n \"recoveryPointType\": \"AppConsistent\",\r\n \"recoveryPointTime\": \"2022-05-17T06:06:33.6089688Z\",\r\n \"recoveryPointAdditionalInfo\": \"\",\r\n \"sourceVMStorageType\": \"NormalStorage\",\r\n \"isSourceVMEncrypted\": false,\r\n \"isInstantIlrSessionActive\": false,\r\n \"recoveryPointTierDetails\": [\r\n {\r\n \"type\": \"InstantRP\",\r\n \"status\": \"Valid\"\r\n },\r\n {\r\n \"type\": \"HardenedRP\",\r\n \"status\": \"Valid\"\r\n }\r\n ],\r\n \"isManagedVirtualMachine\": true,\r\n \"virtualMachineSize\": \"Standard_D1_v2\",\r\n \"originalStorageAccountOption\": false,\r\n \"osType\": \"Windows\",\r\n \"recoveryPointMoveReadinessInfo\": {\r\n \"ArchivedRP\": {\r\n \"isReadyForMove\": false,\r\n \"additionalInfo\": \"We're still determining if this Recovery Point can be moved.. Please check again after some time.\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupFabrics/Azure/protectionContainers/IaasVMContainer%3Biaasvmcontainerv2%3Bpstestrg2a085f1b%3Bpstestvm2a0850/protectedItems/VM%3Biaasvmcontainerv2%3Bpstestrg2a085f1b%3Bpstestvm2a0850?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMmEwODVmMWIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YyYTA4NWYxYi9iYWNrdXBGYWJyaWNzL0F6dXJlL3Byb3RlY3Rpb25Db250YWluZXJzL0lhYXNWTUNvbnRhaW5lciUzQmlhYXN2bWNvbnRhaW5lcnYyJTNCcHN0ZXN0cmcyYTA4NWYxYiUzQnBzdGVzdHZtMmEwODUwL3Byb3RlY3RlZEl0ZW1zL1ZNJTNCaWFhc3ZtY29udGFpbmVydjIlM0Jwc3Rlc3RyZzJhMDg1ZjFiJTNCcHN0ZXN0dm0yYTA4NTA/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b35c8592-59fe-4b1e-96af-7eb79c76bb43" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupOperationResults/71c6722e-150d-42a2-858c-994d69edbcb0?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupOperations/71c6722e-150d-42a2-858c-994d69edbcb0?api-version=2022-02-01" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "66343e35-3376-467c-85ae-e2bb2b49a0fc" + ], + "x-ms-client-request-id": [ + "b35c8592-59fe-4b1e-96af-7eb79c76bb43", + "b35c8592-59fe-4b1e-96af-7eb79c76bb43" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-correlation-request-id": [ + "66343e35-3376-467c-85ae-e2bb2b49a0fc" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220517T065546Z:66343e35-3376-467c-85ae-e2bb2b49a0fc" + ], + "Date": [ + "Tue, 17 May 2022 06:55:46 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupOperations/71c6722e-150d-42a2-858c-994d69edbcb0?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMmEwODVmMWIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YyYTA4NWYxYi9iYWNrdXBPcGVyYXRpb25zLzcxYzY3MjJlLTE1MGQtNDJhMi04NThjLTk5NGQ2OWVkYmNiMD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b35c8592-59fe-4b1e-96af-7eb79c76bb43" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "2f54209e-57a2-41c6-bdb0-878f9792ac3f" + ], + "x-ms-client-request-id": [ + "b35c8592-59fe-4b1e-96af-7eb79c76bb43", + "b35c8592-59fe-4b1e-96af-7eb79c76bb43" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "132" + ], + "x-ms-correlation-request-id": [ + "2f54209e-57a2-41c6-bdb0-878f9792ac3f" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220517T065547Z:2f54209e-57a2-41c6-bdb0-878f9792ac3f" + ], + "Date": [ + "Tue, 17 May 2022 06:55:46 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"71c6722e-150d-42a2-858c-994d69edbcb0\",\r\n \"name\": \"71c6722e-150d-42a2-858c-994d69edbcb0\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T06:55:46.2975779Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupOperations/71c6722e-150d-42a2-858c-994d69edbcb0?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMmEwODVmMWIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YyYTA4NWYxYi9iYWNrdXBPcGVyYXRpb25zLzcxYzY3MjJlLTE1MGQtNDJhMi04NThjLTk5NGQ2OWVkYmNiMD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b35c8592-59fe-4b1e-96af-7eb79c76bb43" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "fde5a1af-c9bf-4e22-a47e-9b3c60720f9a" + ], + "x-ms-client-request-id": [ + "b35c8592-59fe-4b1e-96af-7eb79c76bb43", + "b35c8592-59fe-4b1e-96af-7eb79c76bb43" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "131" + ], + "x-ms-correlation-request-id": [ + "fde5a1af-c9bf-4e22-a47e-9b3c60720f9a" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220517T065552Z:fde5a1af-c9bf-4e22-a47e-9b3c60720f9a" + ], + "Date": [ + "Tue, 17 May 2022 06:55:52 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"71c6722e-150d-42a2-858c-994d69edbcb0\",\r\n \"name\": \"71c6722e-150d-42a2-858c-994d69edbcb0\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T06:55:46.2975779Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupOperations/71c6722e-150d-42a2-858c-994d69edbcb0?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMmEwODVmMWIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YyYTA4NWYxYi9iYWNrdXBPcGVyYXRpb25zLzcxYzY3MjJlLTE1MGQtNDJhMi04NThjLTk5NGQ2OWVkYmNiMD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b35c8592-59fe-4b1e-96af-7eb79c76bb43" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "e960efef-3271-40dc-a739-9c3af41358b3" + ], + "x-ms-client-request-id": [ + "b35c8592-59fe-4b1e-96af-7eb79c76bb43", + "b35c8592-59fe-4b1e-96af-7eb79c76bb43" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "130" + ], + "x-ms-correlation-request-id": [ + "e960efef-3271-40dc-a739-9c3af41358b3" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220517T065558Z:e960efef-3271-40dc-a739-9c3af41358b3" + ], + "Date": [ + "Tue, 17 May 2022 06:55:57 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"71c6722e-150d-42a2-858c-994d69edbcb0\",\r\n \"name\": \"71c6722e-150d-42a2-858c-994d69edbcb0\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T06:55:46.2975779Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupOperations/71c6722e-150d-42a2-858c-994d69edbcb0?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMmEwODVmMWIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YyYTA4NWYxYi9iYWNrdXBPcGVyYXRpb25zLzcxYzY3MjJlLTE1MGQtNDJhMi04NThjLTk5NGQ2OWVkYmNiMD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b35c8592-59fe-4b1e-96af-7eb79c76bb43" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "4871ee7f-b03e-451f-8811-77e8966a8be8" + ], + "x-ms-client-request-id": [ + "b35c8592-59fe-4b1e-96af-7eb79c76bb43", + "b35c8592-59fe-4b1e-96af-7eb79c76bb43" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "129" + ], + "x-ms-correlation-request-id": [ + "4871ee7f-b03e-451f-8811-77e8966a8be8" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220517T065603Z:4871ee7f-b03e-451f-8811-77e8966a8be8" + ], + "Date": [ + "Tue, 17 May 2022 06:56:03 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"71c6722e-150d-42a2-858c-994d69edbcb0\",\r\n \"name\": \"71c6722e-150d-42a2-858c-994d69edbcb0\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T06:55:46.2975779Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupOperations/71c6722e-150d-42a2-858c-994d69edbcb0?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMmEwODVmMWIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YyYTA4NWYxYi9iYWNrdXBPcGVyYXRpb25zLzcxYzY3MjJlLTE1MGQtNDJhMi04NThjLTk5NGQ2OWVkYmNiMD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b35c8592-59fe-4b1e-96af-7eb79c76bb43" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "704297b3-ebe3-4261-9ee1-7d23dcab9d82" + ], + "x-ms-client-request-id": [ + "b35c8592-59fe-4b1e-96af-7eb79c76bb43", + "b35c8592-59fe-4b1e-96af-7eb79c76bb43" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "128" + ], + "x-ms-correlation-request-id": [ + "704297b3-ebe3-4261-9ee1-7d23dcab9d82" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220517T065609Z:704297b3-ebe3-4261-9ee1-7d23dcab9d82" + ], + "Date": [ + "Tue, 17 May 2022 06:56:08 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"71c6722e-150d-42a2-858c-994d69edbcb0\",\r\n \"name\": \"71c6722e-150d-42a2-858c-994d69edbcb0\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T06:55:46.2975779Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupOperations/71c6722e-150d-42a2-858c-994d69edbcb0?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMmEwODVmMWIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YyYTA4NWYxYi9iYWNrdXBPcGVyYXRpb25zLzcxYzY3MjJlLTE1MGQtNDJhMi04NThjLTk5NGQ2OWVkYmNiMD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b35c8592-59fe-4b1e-96af-7eb79c76bb43" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "0b16bfc6-0f34-4ca8-94c2-112c837de41a" + ], + "x-ms-client-request-id": [ + "b35c8592-59fe-4b1e-96af-7eb79c76bb43", + "b35c8592-59fe-4b1e-96af-7eb79c76bb43" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "127" + ], + "x-ms-correlation-request-id": [ + "0b16bfc6-0f34-4ca8-94c2-112c837de41a" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220517T065614Z:0b16bfc6-0f34-4ca8-94c2-112c837de41a" + ], + "Date": [ + "Tue, 17 May 2022 06:56:14 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"71c6722e-150d-42a2-858c-994d69edbcb0\",\r\n \"name\": \"71c6722e-150d-42a2-858c-994d69edbcb0\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T06:55:46.2975779Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupOperations/71c6722e-150d-42a2-858c-994d69edbcb0?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMmEwODVmMWIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YyYTA4NWYxYi9iYWNrdXBPcGVyYXRpb25zLzcxYzY3MjJlLTE1MGQtNDJhMi04NThjLTk5NGQ2OWVkYmNiMD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b35c8592-59fe-4b1e-96af-7eb79c76bb43" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "49de1dc4-7ee4-4365-8ff2-511b1ae96d58" + ], + "x-ms-client-request-id": [ + "b35c8592-59fe-4b1e-96af-7eb79c76bb43", + "b35c8592-59fe-4b1e-96af-7eb79c76bb43" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "126" + ], + "x-ms-correlation-request-id": [ + "49de1dc4-7ee4-4365-8ff2-511b1ae96d58" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220517T065620Z:49de1dc4-7ee4-4365-8ff2-511b1ae96d58" + ], + "Date": [ + "Tue, 17 May 2022 06:56:19 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"71c6722e-150d-42a2-858c-994d69edbcb0\",\r\n \"name\": \"71c6722e-150d-42a2-858c-994d69edbcb0\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T06:55:46.2975779Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupOperations/71c6722e-150d-42a2-858c-994d69edbcb0?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMmEwODVmMWIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YyYTA4NWYxYi9iYWNrdXBPcGVyYXRpb25zLzcxYzY3MjJlLTE1MGQtNDJhMi04NThjLTk5NGQ2OWVkYmNiMD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b35c8592-59fe-4b1e-96af-7eb79c76bb43" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "64235d8a-0be4-4e44-ac41-63a4c3eb6105" + ], + "x-ms-client-request-id": [ + "b35c8592-59fe-4b1e-96af-7eb79c76bb43", + "b35c8592-59fe-4b1e-96af-7eb79c76bb43" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "125" + ], + "x-ms-correlation-request-id": [ + "64235d8a-0be4-4e44-ac41-63a4c3eb6105" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220517T065625Z:64235d8a-0be4-4e44-ac41-63a4c3eb6105" + ], + "Date": [ + "Tue, 17 May 2022 06:56:25 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"71c6722e-150d-42a2-858c-994d69edbcb0\",\r\n \"name\": \"71c6722e-150d-42a2-858c-994d69edbcb0\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T06:55:46.2975779Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupOperations/71c6722e-150d-42a2-858c-994d69edbcb0?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMmEwODVmMWIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YyYTA4NWYxYi9iYWNrdXBPcGVyYXRpb25zLzcxYzY3MjJlLTE1MGQtNDJhMi04NThjLTk5NGQ2OWVkYmNiMD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b35c8592-59fe-4b1e-96af-7eb79c76bb43" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "86da0934-1210-4b98-94b1-bcd4035989ab" + ], + "x-ms-client-request-id": [ + "b35c8592-59fe-4b1e-96af-7eb79c76bb43", + "b35c8592-59fe-4b1e-96af-7eb79c76bb43" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "124" + ], + "x-ms-correlation-request-id": [ + "86da0934-1210-4b98-94b1-bcd4035989ab" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220517T065631Z:86da0934-1210-4b98-94b1-bcd4035989ab" + ], + "Date": [ + "Tue, 17 May 2022 06:56:30 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"71c6722e-150d-42a2-858c-994d69edbcb0\",\r\n \"name\": \"71c6722e-150d-42a2-858c-994d69edbcb0\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T06:55:46.2975779Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupOperations/71c6722e-150d-42a2-858c-994d69edbcb0?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMmEwODVmMWIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YyYTA4NWYxYi9iYWNrdXBPcGVyYXRpb25zLzcxYzY3MjJlLTE1MGQtNDJhMi04NThjLTk5NGQ2OWVkYmNiMD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b35c8592-59fe-4b1e-96af-7eb79c76bb43" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "f4298977-0ace-405a-b8bf-e2527417a10f" + ], + "x-ms-client-request-id": [ + "b35c8592-59fe-4b1e-96af-7eb79c76bb43", + "b35c8592-59fe-4b1e-96af-7eb79c76bb43" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "123" + ], + "x-ms-correlation-request-id": [ + "f4298977-0ace-405a-b8bf-e2527417a10f" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220517T065637Z:f4298977-0ace-405a-b8bf-e2527417a10f" + ], + "Date": [ + "Tue, 17 May 2022 06:56:36 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"71c6722e-150d-42a2-858c-994d69edbcb0\",\r\n \"name\": \"71c6722e-150d-42a2-858c-994d69edbcb0\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T06:55:46.2975779Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupOperations/71c6722e-150d-42a2-858c-994d69edbcb0?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMmEwODVmMWIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YyYTA4NWYxYi9iYWNrdXBPcGVyYXRpb25zLzcxYzY3MjJlLTE1MGQtNDJhMi04NThjLTk5NGQ2OWVkYmNiMD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b35c8592-59fe-4b1e-96af-7eb79c76bb43" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "b81e98fd-94eb-4ba7-9825-3bf67878faec" + ], + "x-ms-client-request-id": [ + "b35c8592-59fe-4b1e-96af-7eb79c76bb43", + "b35c8592-59fe-4b1e-96af-7eb79c76bb43" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "122" + ], + "x-ms-correlation-request-id": [ + "b81e98fd-94eb-4ba7-9825-3bf67878faec" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220517T065642Z:b81e98fd-94eb-4ba7-9825-3bf67878faec" + ], + "Date": [ + "Tue, 17 May 2022 06:56:41 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"71c6722e-150d-42a2-858c-994d69edbcb0\",\r\n \"name\": \"71c6722e-150d-42a2-858c-994d69edbcb0\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T06:55:46.2975779Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupOperations/71c6722e-150d-42a2-858c-994d69edbcb0?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMmEwODVmMWIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YyYTA4NWYxYi9iYWNrdXBPcGVyYXRpb25zLzcxYzY3MjJlLTE1MGQtNDJhMi04NThjLTk5NGQ2OWVkYmNiMD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b35c8592-59fe-4b1e-96af-7eb79c76bb43" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "410cea31-ee59-44ad-9808-21249096266b" + ], + "x-ms-client-request-id": [ + "b35c8592-59fe-4b1e-96af-7eb79c76bb43", + "b35c8592-59fe-4b1e-96af-7eb79c76bb43" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "121" + ], + "x-ms-correlation-request-id": [ + "410cea31-ee59-44ad-9808-21249096266b" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220517T065648Z:410cea31-ee59-44ad-9808-21249096266b" + ], + "Date": [ + "Tue, 17 May 2022 06:56:47 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"71c6722e-150d-42a2-858c-994d69edbcb0\",\r\n \"name\": \"71c6722e-150d-42a2-858c-994d69edbcb0\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T06:55:46.2975779Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupOperations/71c6722e-150d-42a2-858c-994d69edbcb0?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMmEwODVmMWIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YyYTA4NWYxYi9iYWNrdXBPcGVyYXRpb25zLzcxYzY3MjJlLTE1MGQtNDJhMi04NThjLTk5NGQ2OWVkYmNiMD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b35c8592-59fe-4b1e-96af-7eb79c76bb43" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "6d7ccbc8-7ae9-4dbf-b1bc-abd670c9ebdf" + ], + "x-ms-client-request-id": [ + "b35c8592-59fe-4b1e-96af-7eb79c76bb43", + "b35c8592-59fe-4b1e-96af-7eb79c76bb43" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "120" + ], + "x-ms-correlation-request-id": [ + "6d7ccbc8-7ae9-4dbf-b1bc-abd670c9ebdf" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220517T065653Z:6d7ccbc8-7ae9-4dbf-b1bc-abd670c9ebdf" + ], + "Date": [ + "Tue, 17 May 2022 06:56:53 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"71c6722e-150d-42a2-858c-994d69edbcb0\",\r\n \"name\": \"71c6722e-150d-42a2-858c-994d69edbcb0\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T06:55:46.2975779Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupOperations/71c6722e-150d-42a2-858c-994d69edbcb0?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMmEwODVmMWIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YyYTA4NWYxYi9iYWNrdXBPcGVyYXRpb25zLzcxYzY3MjJlLTE1MGQtNDJhMi04NThjLTk5NGQ2OWVkYmNiMD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b35c8592-59fe-4b1e-96af-7eb79c76bb43" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "01d50ebb-1918-4e48-935a-f2ca71a9ced1" + ], + "x-ms-client-request-id": [ + "b35c8592-59fe-4b1e-96af-7eb79c76bb43", + "b35c8592-59fe-4b1e-96af-7eb79c76bb43" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "119" + ], + "x-ms-correlation-request-id": [ + "01d50ebb-1918-4e48-935a-f2ca71a9ced1" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220517T065659Z:01d50ebb-1918-4e48-935a-f2ca71a9ced1" + ], + "Date": [ + "Tue, 17 May 2022 06:56:58 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"71c6722e-150d-42a2-858c-994d69edbcb0\",\r\n \"name\": \"71c6722e-150d-42a2-858c-994d69edbcb0\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T06:55:46.2975779Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupOperations/71c6722e-150d-42a2-858c-994d69edbcb0?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMmEwODVmMWIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YyYTA4NWYxYi9iYWNrdXBPcGVyYXRpb25zLzcxYzY3MjJlLTE1MGQtNDJhMi04NThjLTk5NGQ2OWVkYmNiMD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b35c8592-59fe-4b1e-96af-7eb79c76bb43" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "a5e21f8d-a55a-4937-b04a-63f9a1e2d401" + ], + "x-ms-client-request-id": [ + "b35c8592-59fe-4b1e-96af-7eb79c76bb43", + "b35c8592-59fe-4b1e-96af-7eb79c76bb43" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "118" + ], + "x-ms-correlation-request-id": [ + "a5e21f8d-a55a-4937-b04a-63f9a1e2d401" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220517T065704Z:a5e21f8d-a55a-4937-b04a-63f9a1e2d401" + ], + "Date": [ + "Tue, 17 May 2022 06:57:04 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"71c6722e-150d-42a2-858c-994d69edbcb0\",\r\n \"name\": \"71c6722e-150d-42a2-858c-994d69edbcb0\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T06:55:46.2975779Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupOperations/71c6722e-150d-42a2-858c-994d69edbcb0?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMmEwODVmMWIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YyYTA4NWYxYi9iYWNrdXBPcGVyYXRpb25zLzcxYzY3MjJlLTE1MGQtNDJhMi04NThjLTk5NGQ2OWVkYmNiMD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b35c8592-59fe-4b1e-96af-7eb79c76bb43" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "b6be4064-2665-4585-bd04-724e19ab605c" + ], + "x-ms-client-request-id": [ + "b35c8592-59fe-4b1e-96af-7eb79c76bb43", + "b35c8592-59fe-4b1e-96af-7eb79c76bb43" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "117" + ], + "x-ms-correlation-request-id": [ + "b6be4064-2665-4585-bd04-724e19ab605c" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220517T065710Z:b6be4064-2665-4585-bd04-724e19ab605c" + ], + "Date": [ + "Tue, 17 May 2022 06:57:09 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"71c6722e-150d-42a2-858c-994d69edbcb0\",\r\n \"name\": \"71c6722e-150d-42a2-858c-994d69edbcb0\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T06:55:46.2975779Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupOperations/71c6722e-150d-42a2-858c-994d69edbcb0?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMmEwODVmMWIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YyYTA4NWYxYi9iYWNrdXBPcGVyYXRpb25zLzcxYzY3MjJlLTE1MGQtNDJhMi04NThjLTk5NGQ2OWVkYmNiMD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b35c8592-59fe-4b1e-96af-7eb79c76bb43" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "5e3e027b-26e4-4f84-b846-5ed60c5cb2a7" + ], + "x-ms-client-request-id": [ + "b35c8592-59fe-4b1e-96af-7eb79c76bb43", + "b35c8592-59fe-4b1e-96af-7eb79c76bb43" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "116" + ], + "x-ms-correlation-request-id": [ + "5e3e027b-26e4-4f84-b846-5ed60c5cb2a7" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220517T065715Z:5e3e027b-26e4-4f84-b846-5ed60c5cb2a7" + ], + "Date": [ + "Tue, 17 May 2022 06:57:15 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"71c6722e-150d-42a2-858c-994d69edbcb0\",\r\n \"name\": \"71c6722e-150d-42a2-858c-994d69edbcb0\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T06:55:46.2975779Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupOperations/71c6722e-150d-42a2-858c-994d69edbcb0?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMmEwODVmMWIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YyYTA4NWYxYi9iYWNrdXBPcGVyYXRpb25zLzcxYzY3MjJlLTE1MGQtNDJhMi04NThjLTk5NGQ2OWVkYmNiMD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b35c8592-59fe-4b1e-96af-7eb79c76bb43" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "b38446c5-8c02-4962-a975-eefcea44f9b5" + ], + "x-ms-client-request-id": [ + "b35c8592-59fe-4b1e-96af-7eb79c76bb43", + "b35c8592-59fe-4b1e-96af-7eb79c76bb43" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "115" + ], + "x-ms-correlation-request-id": [ + "b38446c5-8c02-4962-a975-eefcea44f9b5" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220517T065721Z:b38446c5-8c02-4962-a975-eefcea44f9b5" + ], + "Date": [ + "Tue, 17 May 2022 06:57:20 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"71c6722e-150d-42a2-858c-994d69edbcb0\",\r\n \"name\": \"71c6722e-150d-42a2-858c-994d69edbcb0\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T06:55:46.2975779Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupOperations/71c6722e-150d-42a2-858c-994d69edbcb0?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMmEwODVmMWIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YyYTA4NWYxYi9iYWNrdXBPcGVyYXRpb25zLzcxYzY3MjJlLTE1MGQtNDJhMi04NThjLTk5NGQ2OWVkYmNiMD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b35c8592-59fe-4b1e-96af-7eb79c76bb43" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "17cd40b2-71b0-43cd-b2b2-792d0e5dbb02" + ], + "x-ms-client-request-id": [ + "b35c8592-59fe-4b1e-96af-7eb79c76bb43", + "b35c8592-59fe-4b1e-96af-7eb79c76bb43" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "114" + ], + "x-ms-correlation-request-id": [ + "17cd40b2-71b0-43cd-b2b2-792d0e5dbb02" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220517T065726Z:17cd40b2-71b0-43cd-b2b2-792d0e5dbb02" + ], + "Date": [ + "Tue, 17 May 2022 06:57:25 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"71c6722e-150d-42a2-858c-994d69edbcb0\",\r\n \"name\": \"71c6722e-150d-42a2-858c-994d69edbcb0\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T06:55:46.2975779Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupOperations/71c6722e-150d-42a2-858c-994d69edbcb0?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMmEwODVmMWIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YyYTA4NWYxYi9iYWNrdXBPcGVyYXRpb25zLzcxYzY3MjJlLTE1MGQtNDJhMi04NThjLTk5NGQ2OWVkYmNiMD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b35c8592-59fe-4b1e-96af-7eb79c76bb43" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "09ba93c2-033f-45af-b14d-1f222031ad7f" + ], + "x-ms-client-request-id": [ + "b35c8592-59fe-4b1e-96af-7eb79c76bb43", + "b35c8592-59fe-4b1e-96af-7eb79c76bb43" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "113" ], "x-ms-correlation-request-id": [ - "df0fb8d3-558c-4cfd-bae1-2381cef7b58b" + "09ba93c2-033f-45af-b14d-1f222031ad7f" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T192059Z:df0fb8d3-558c-4cfd-bae1-2381cef7b58b" + "JIOINDIAWEST:20220517T065732Z:09ba93c2-033f-45af-b14d-1f222031ad7f" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "Date": [ + "Tue, 17 May 2022 06:57:31 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Content-Length": [ + "188" ], - "Date": [ - "Thu, 24 Feb 2022 19:20:58 GMT" + "Content-Type": [ + "application/json" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, - "ResponseBody": "", - "StatusCode": 202 + "ResponseBody": "{\r\n \"id\": \"71c6722e-150d-42a2-858c-994d69edbcb0\",\r\n \"name\": \"71c6722e-150d-42a2-858c-994d69edbcb0\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T06:55:46.2975779Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0JGRUU5REFDLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSMEpHUlVVNVJFRkRMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupOperations/71c6722e-150d-42a2-858c-994d69edbcb0?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMmEwODVmMWIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YyYTA4NWYxYi9iYWNrdXBPcGVyYXRpb25zLzcxYzY3MjJlLTE1MGQtNDJhMi04NThjLTk5NGQ2OWVkYmNiMD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "b35c8592-59fe-4b1e-96af-7eb79c76bb43" + ], + "Accept-Language": [ + "en-US" + ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -12283,54 +14885,67 @@ "Pragma": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0JGRUU5REFDLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" + "X-Content-Type-Options": [ + "nosniff" ], - "Retry-After": [ - "15" + "x-ms-request-id": [ + "feeca147-20c9-455b-84d8-9938732e2cb6" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "x-ms-client-request-id": [ + "b35c8592-59fe-4b1e-96af-7eb79c76bb43", + "b35c8592-59fe-4b1e-96af-7eb79c76bb43" ], - "x-ms-request-id": [ - "8c371836-9a28-4833-a007-27147678b3f6" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "112" ], "x-ms-correlation-request-id": [ - "8c371836-9a28-4833-a007-27147678b3f6" + "feeca147-20c9-455b-84d8-9938732e2cb6" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T192114Z:8c371836-9a28-4833-a007-27147678b3f6" + "JIOINDIAWEST:20220517T065738Z:feeca147-20c9-455b-84d8-9938732e2cb6" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "Date": [ + "Tue, 17 May 2022 06:57:37 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Content-Length": [ + "188" ], - "Date": [ - "Thu, 24 Feb 2022 19:21:13 GMT" + "Content-Type": [ + "application/json" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, - "ResponseBody": "", - "StatusCode": 202 + "ResponseBody": "{\r\n \"id\": \"71c6722e-150d-42a2-858c-994d69edbcb0\",\r\n \"name\": \"71c6722e-150d-42a2-858c-994d69edbcb0\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T06:55:46.2975779Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0JGRUU5REFDLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSMEpHUlVVNVJFRkRMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupOperations/71c6722e-150d-42a2-858c-994d69edbcb0?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMmEwODVmMWIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YyYTA4NWYxYi9iYWNrdXBPcGVyYXRpb25zLzcxYzY3MjJlLTE1MGQtNDJhMi04NThjLTk5NGQ2OWVkYmNiMD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "b35c8592-59fe-4b1e-96af-7eb79c76bb43" + ], + "Accept-Language": [ + "en-US" + ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -12340,54 +14955,67 @@ "Pragma": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0JGRUU5REFDLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" + "X-Content-Type-Options": [ + "nosniff" ], - "Retry-After": [ - "15" + "x-ms-request-id": [ + "d9ed914d-6485-4adb-8126-2018b43f3591" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "x-ms-client-request-id": [ + "b35c8592-59fe-4b1e-96af-7eb79c76bb43", + "b35c8592-59fe-4b1e-96af-7eb79c76bb43" ], - "x-ms-request-id": [ - "88228f7b-81ee-4d12-be34-1ca29516b79c" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "111" ], "x-ms-correlation-request-id": [ - "88228f7b-81ee-4d12-be34-1ca29516b79c" + "d9ed914d-6485-4adb-8126-2018b43f3591" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T192130Z:88228f7b-81ee-4d12-be34-1ca29516b79c" + "JIOINDIAWEST:20220517T065743Z:d9ed914d-6485-4adb-8126-2018b43f3591" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "Date": [ + "Tue, 17 May 2022 06:57:43 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Content-Length": [ + "304" ], - "Date": [ - "Thu, 24 Feb 2022 19:21:30 GMT" + "Content-Type": [ + "application/json" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, - "ResponseBody": "", - "StatusCode": 202 + "ResponseBody": "{\r\n \"id\": \"71c6722e-150d-42a2-858c-994d69edbcb0\",\r\n \"name\": \"71c6722e-150d-42a2-858c-994d69edbcb0\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-05-17T06:55:46.2975779Z\",\r\n \"endTime\": \"2022-05-17T06:55:46.2975779Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"909aded9-4748-4a8b-bc26-177028fccd70\"\r\n }\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0JGRUU5REFDLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSMEpHUlVVNVJFRkRMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupOperations/71c6722e-150d-42a2-858c-994d69edbcb0?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMmEwODVmMWIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YyYTA4NWYxYi9iYWNrdXBPcGVyYXRpb25zLzcxYzY3MjJlLTE1MGQtNDJhMi04NThjLTk5NGQ2OWVkYmNiMD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "b35c8592-59fe-4b1e-96af-7eb79c76bb43" + ], + "Accept-Language": [ + "en-US" + ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -12397,54 +15025,67 @@ "Pragma": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0JGRUU5REFDLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" + "X-Content-Type-Options": [ + "nosniff" ], - "Retry-After": [ - "15" + "x-ms-request-id": [ + "9f5142ab-c346-484b-ad6f-78d86f4d3c53" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "x-ms-client-request-id": [ + "b35c8592-59fe-4b1e-96af-7eb79c76bb43", + "b35c8592-59fe-4b1e-96af-7eb79c76bb43" ], - "x-ms-request-id": [ - "f74dfaf0-8c34-45fb-a37d-a71362a12286" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "110" ], "x-ms-correlation-request-id": [ - "f74dfaf0-8c34-45fb-a37d-a71362a12286" + "9f5142ab-c346-484b-ad6f-78d86f4d3c53" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T192145Z:f74dfaf0-8c34-45fb-a37d-a71362a12286" + "JIOINDIAWEST:20220517T065744Z:9f5142ab-c346-484b-ad6f-78d86f4d3c53" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "Date": [ + "Tue, 17 May 2022 06:57:44 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Content-Length": [ + "304" ], - "Date": [ - "Thu, 24 Feb 2022 19:21:45 GMT" + "Content-Type": [ + "application/json" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, - "ResponseBody": "", - "StatusCode": 202 + "ResponseBody": "{\r\n \"id\": \"71c6722e-150d-42a2-858c-994d69edbcb0\",\r\n \"name\": \"71c6722e-150d-42a2-858c-994d69edbcb0\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-05-17T06:55:46.2975779Z\",\r\n \"endTime\": \"2022-05-17T06:55:46.2975779Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"909aded9-4748-4a8b-bc26-177028fccd70\"\r\n }\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0JGRUU5REFDLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSMEpHUlVVNVJFRkRMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupJobs/909aded9-4748-4a8b-bc26-177028fccd70?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMmEwODVmMWIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YyYTA4NWYxYi9iYWNrdXBKb2JzLzkwOWFkZWQ5LTQ3NDgtNGE4Yi1iYzI2LTE3NzAyOGZjY2Q3MD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "b35c8592-59fe-4b1e-96af-7eb79c76bb43" + ], + "Accept-Language": [ + "en-US" + ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -12454,54 +15095,68 @@ "Pragma": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0JGRUU5REFDLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" + "Server": [ + "Microsoft-IIS/10.0", + "Microsoft-IIS/10.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "X-Content-Type-Options": [ + "nosniff" ], "x-ms-request-id": [ - "bc75ff4d-f738-4e86-9376-0bdeb3c1c96d" + "6f7dc4a5-dba3-40ed-9461-f9531efe1e0c" ], - "x-ms-correlation-request-id": [ - "bc75ff4d-f738-4e86-9376-0bdeb3c1c96d" + "x-ms-client-request-id": [ + "b35c8592-59fe-4b1e-96af-7eb79c76bb43", + "b35c8592-59fe-4b1e-96af-7eb79c76bb43" ], - "x-ms-routing-request-id": [ - "CENTRALUS:20220224T192201Z:bc75ff4d-f738-4e86-9376-0bdeb3c1c96d" + "X-Powered-By": [ + "ASP.NET" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ - "nosniff" + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "54" + ], + "x-ms-correlation-request-id": [ + "6f7dc4a5-dba3-40ed-9461-f9531efe1e0c" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220517T065744Z:6f7dc4a5-dba3-40ed-9461-f9531efe1e0c" ], "Date": [ - "Thu, 24 Feb 2022 19:22:01 GMT" + "Tue, 17 May 2022 06:57:44 GMT" + ], + "Content-Length": [ + "845" + ], + "Content-Type": [ + "application/json" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, - "ResponseBody": "", - "StatusCode": 202 + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b/backupJobs/909aded9-4748-4a8b-bc26-177028fccd70\",\r\n \"name\": \"909aded9-4748-4a8b-bc26-177028fccd70\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg2a085f1b;pstestvm2a0850\",\r\n \"duration\": \"PT1M51.7315799S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"VM Name\": \"PSTestVM2a0850\",\r\n \"Number of Recovery Points\": \"1\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"PSTestVM2a0850\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"DeleteBackupData\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-05-17T06:55:46.2975779Z\",\r\n \"endTime\": \"2022-05-17T06:57:38.0291578Z\",\r\n \"activityId\": \"b35c8592-59fe-4b1e-96af-7eb79c76bb43\"\r\n }\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0JGRUU5REFDLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSMEpHUlVVNVJFRkRMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", - "RequestMethod": "GET", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b/providers/Microsoft.RecoveryServices/vaults/PSTestRSV2a085f1b?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMmEwODVmMWIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YyYTA4NWYxYj9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", + "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "0fca4126-12ce-4489-8379-8571011e951a" + ], + "Accept-Language": [ + "en-US" + ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesClient/4.3.2.0" ] }, "ResponseHeaders": { @@ -12511,32 +15166,29 @@ "Pragma": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0JGRUU5REFDLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "X-Content-Type-Options": [ + "nosniff" ], "x-ms-request-id": [ - "b9eca4bf-0b73-488c-be8c-acf802cc2530" + "47638710-b06c-49af-b9c0-156b101aead1" ], - "x-ms-correlation-request-id": [ - "b9eca4bf-0b73-488c-be8c-acf802cc2530" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20220224T192216Z:b9eca4bf-0b73-488c-be8c-acf802cc2530" + "x-ms-client-request-id": [ + "0fca4126-12ce-4489-8379-8571011e951a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ - "nosniff" + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "9" + ], + "x-ms-correlation-request-id": [ + "47638710-b06c-49af-b9c0-156b101aead1" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220517T065752Z:47638710-b06c-49af-b9c0-156b101aead1" ], "Date": [ - "Thu, 24 Feb 2022 19:22:16 GMT" + "Tue, 17 May 2022 06:57:51 GMT" ], "Expires": [ "-1" @@ -12546,19 +15198,25 @@ ] }, "ResponseBody": "", - "StatusCode": 202 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0JGRUU5REFDLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSMEpHUlVVNVJFRkRMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", - "RequestMethod": "GET", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourcegroups/PSTestRG2a085f1b?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlZ3JvdXBzL1BTVGVzdFJHMmEwODVmMWI/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "f2e2dc26-6faf-4893-9272-d428312e5b47" + ], + "Accept-Language": [ + "en-US" + ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" ] }, "ResponseHeaders": { @@ -12569,22 +15227,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0JGRUU5REFDLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzJBMDg1RjFCLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" ], "Retry-After": [ "15" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" ], "x-ms-request-id": [ - "437ccbac-c253-4bbc-9b40-17a086c3d42d" + "41f23d75-7e62-4774-8ff4-8a3fd8d5f53d" ], "x-ms-correlation-request-id": [ - "437ccbac-c253-4bbc-9b40-17a086c3d42d" + "41f23d75-7e62-4774-8ff4-8a3fd8d5f53d" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T192232Z:437ccbac-c253-4bbc-9b40-17a086c3d42d" + "WESTINDIA:20220517T065754Z:41f23d75-7e62-4774-8ff4-8a3fd8d5f53d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -12593,7 +15251,7 @@ "nosniff" ], "Date": [ - "Thu, 24 Feb 2022 19:22:31 GMT" + "Tue, 17 May 2022 06:57:54 GMT" ], "Expires": [ "-1" @@ -12606,16 +15264,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0JGRUU5REFDLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSMEpHUlVVNVJFRkRMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzJBMDg1RjFCLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekpCTURnMVJqRkNMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" ] }, "ResponseHeaders": { @@ -12626,22 +15284,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0JGRUU5REFDLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzJBMDg1RjFCLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "11999" ], "x-ms-request-id": [ - "a99df9b4-e892-48ad-844f-4ba4888c62dd" + "b0a10edd-6f59-4ab1-9bc5-289efb317e66" ], "x-ms-correlation-request-id": [ - "a99df9b4-e892-48ad-844f-4ba4888c62dd" + "b0a10edd-6f59-4ab1-9bc5-289efb317e66" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T192247Z:a99df9b4-e892-48ad-844f-4ba4888c62dd" + "WESTINDIA:20220517T065809Z:b0a10edd-6f59-4ab1-9bc5-289efb317e66" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -12650,7 +15308,7 @@ "nosniff" ], "Date": [ - "Thu, 24 Feb 2022 19:22:47 GMT" + "Tue, 17 May 2022 06:58:09 GMT" ], "Expires": [ "-1" @@ -12663,16 +15321,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0JGRUU5REFDLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSMEpHUlVVNVJFRkRMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzJBMDg1RjFCLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekpCTURnMVJqRkNMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" ] }, "ResponseHeaders": { @@ -12683,22 +15341,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0JGRUU5REFDLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzJBMDg1RjFCLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "11998" ], "x-ms-request-id": [ - "b6b821e0-81ed-4d33-8fec-d72e5d1cde3f" + "e9e7d95d-152c-42eb-ac37-1fce63fb0e48" ], "x-ms-correlation-request-id": [ - "b6b821e0-81ed-4d33-8fec-d72e5d1cde3f" + "e9e7d95d-152c-42eb-ac37-1fce63fb0e48" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T192303Z:b6b821e0-81ed-4d33-8fec-d72e5d1cde3f" + "WESTINDIA:20220517T065824Z:e9e7d95d-152c-42eb-ac37-1fce63fb0e48" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -12707,7 +15365,7 @@ "nosniff" ], "Date": [ - "Thu, 24 Feb 2022 19:23:02 GMT" + "Tue, 17 May 2022 06:58:24 GMT" ], "Expires": [ "-1" @@ -12720,16 +15378,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0JGRUU5REFDLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSMEpHUlVVNVJFRkRMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzJBMDg1RjFCLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekpCTURnMVJqRkNMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" ] }, "ResponseHeaders": { @@ -12740,22 +15398,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0JGRUU5REFDLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzJBMDg1RjFCLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" + "11997" ], "x-ms-request-id": [ - "b9b50bd9-9fc3-451d-9235-2187461c8ba0" + "38962941-aef3-473c-8591-b5a9244cc980" ], "x-ms-correlation-request-id": [ - "b9b50bd9-9fc3-451d-9235-2187461c8ba0" + "38962941-aef3-473c-8591-b5a9244cc980" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T192318Z:b9b50bd9-9fc3-451d-9235-2187461c8ba0" + "WESTINDIA:20220517T065840Z:38962941-aef3-473c-8591-b5a9244cc980" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -12764,7 +15422,7 @@ "nosniff" ], "Date": [ - "Thu, 24 Feb 2022 19:23:18 GMT" + "Tue, 17 May 2022 06:58:39 GMT" ], "Expires": [ "-1" @@ -12777,16 +15435,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0JGRUU5REFDLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSMEpHUlVVNVJFRkRMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzJBMDg1RjFCLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekpCTURnMVJqRkNMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" ] }, "ResponseHeaders": { @@ -12797,22 +15455,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0JGRUU5REFDLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzJBMDg1RjFCLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" + "11996" ], "x-ms-request-id": [ - "02dbdeac-7c01-4162-b8b1-ca3017017bd8" + "9ce48bf8-b4ea-4679-a6d8-a2b50ec7e5ed" ], "x-ms-correlation-request-id": [ - "02dbdeac-7c01-4162-b8b1-ca3017017bd8" + "9ce48bf8-b4ea-4679-a6d8-a2b50ec7e5ed" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T192334Z:02dbdeac-7c01-4162-b8b1-ca3017017bd8" + "WESTINDIA:20220517T065855Z:9ce48bf8-b4ea-4679-a6d8-a2b50ec7e5ed" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -12821,7 +15479,7 @@ "nosniff" ], "Date": [ - "Thu, 24 Feb 2022 19:23:33 GMT" + "Tue, 17 May 2022 06:58:55 GMT" ], "Expires": [ "-1" @@ -12834,16 +15492,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0JGRUU5REFDLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSMEpHUlVVNVJFRkRMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzJBMDg1RjFCLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekpCTURnMVJqRkNMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" ] }, "ResponseHeaders": { @@ -12854,22 +15512,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0JGRUU5REFDLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzJBMDg1RjFCLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11984" + "11995" ], "x-ms-request-id": [ - "407068f6-c183-43f0-9d56-d09ff2993497" + "722fc01d-e1ab-4165-9070-91f849833821" ], "x-ms-correlation-request-id": [ - "407068f6-c183-43f0-9d56-d09ff2993497" + "722fc01d-e1ab-4165-9070-91f849833821" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T192349Z:407068f6-c183-43f0-9d56-d09ff2993497" + "WESTINDIA:20220517T065910Z:722fc01d-e1ab-4165-9070-91f849833821" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -12878,7 +15536,7 @@ "nosniff" ], "Date": [ - "Thu, 24 Feb 2022 19:23:49 GMT" + "Tue, 17 May 2022 06:59:09 GMT" ], "Expires": [ "-1" @@ -12891,16 +15549,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0JGRUU5REFDLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSMEpHUlVVNVJFRkRMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzJBMDg1RjFCLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekpCTURnMVJqRkNMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" ] }, "ResponseHeaders": { @@ -12911,22 +15569,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0JGRUU5REFDLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzJBMDg1RjFCLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11983" + "11994" ], "x-ms-request-id": [ - "d73cbd70-64c2-43b1-85c7-26149a1d9b57" + "5fd8a277-8168-4ca5-a22e-8ff5fd41f199" ], "x-ms-correlation-request-id": [ - "d73cbd70-64c2-43b1-85c7-26149a1d9b57" + "5fd8a277-8168-4ca5-a22e-8ff5fd41f199" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T192405Z:d73cbd70-64c2-43b1-85c7-26149a1d9b57" + "WESTINDIA:20220517T065925Z:5fd8a277-8168-4ca5-a22e-8ff5fd41f199" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -12935,7 +15593,7 @@ "nosniff" ], "Date": [ - "Thu, 24 Feb 2022 19:24:04 GMT" + "Tue, 17 May 2022 06:59:25 GMT" ], "Expires": [ "-1" @@ -12948,16 +15606,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0JGRUU5REFDLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSMEpHUlVVNVJFRkRMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzJBMDg1RjFCLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekpCTURnMVJqRkNMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" ] }, "ResponseHeaders": { @@ -12968,22 +15626,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0JGRUU5REFDLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzJBMDg1RjFCLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11982" + "11993" ], "x-ms-request-id": [ - "32750f3f-a053-4a8d-ab07-f51b81782d14" + "e23b9478-a862-402c-ab30-fc26dfe188ba" ], "x-ms-correlation-request-id": [ - "32750f3f-a053-4a8d-ab07-f51b81782d14" + "e23b9478-a862-402c-ab30-fc26dfe188ba" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T192421Z:32750f3f-a053-4a8d-ab07-f51b81782d14" + "WESTINDIA:20220517T065941Z:e23b9478-a862-402c-ab30-fc26dfe188ba" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -12992,7 +15650,7 @@ "nosniff" ], "Date": [ - "Thu, 24 Feb 2022 19:24:20 GMT" + "Tue, 17 May 2022 06:59:40 GMT" ], "Expires": [ "-1" @@ -13005,16 +15663,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0JGRUU5REFDLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSMEpHUlVVNVJFRkRMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzJBMDg1RjFCLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekpCTURnMVJqRkNMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" ] }, "ResponseHeaders": { @@ -13025,22 +15683,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0JGRUU5REFDLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzJBMDg1RjFCLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11981" + "11992" ], "x-ms-request-id": [ - "22b828c1-4c3c-490f-bc0a-4326392b958c" + "c90e6f7f-21a7-4c9a-861d-054ce4421749" ], "x-ms-correlation-request-id": [ - "22b828c1-4c3c-490f-bc0a-4326392b958c" + "c90e6f7f-21a7-4c9a-861d-054ce4421749" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T192436Z:22b828c1-4c3c-490f-bc0a-4326392b958c" + "WESTINDIA:20220517T065956Z:c90e6f7f-21a7-4c9a-861d-054ce4421749" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -13049,7 +15707,7 @@ "nosniff" ], "Date": [ - "Thu, 24 Feb 2022 19:24:35 GMT" + "Tue, 17 May 2022 06:59:55 GMT" ], "Expires": [ "-1" @@ -13062,16 +15720,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0JGRUU5REFDLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSMEpHUlVVNVJFRkRMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzJBMDg1RjFCLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekpCTURnMVJqRkNMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" ] }, "ResponseHeaders": { @@ -13082,22 +15740,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0JGRUU5REFDLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzJBMDg1RjFCLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11980" + "11991" ], "x-ms-request-id": [ - "448f78e5-e165-4a09-8bff-3a825666feaf" + "8c39f1e1-48d8-431a-9d9d-474f3231ddf1" ], "x-ms-correlation-request-id": [ - "448f78e5-e165-4a09-8bff-3a825666feaf" + "8c39f1e1-48d8-431a-9d9d-474f3231ddf1" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T192452Z:448f78e5-e165-4a09-8bff-3a825666feaf" + "WESTINDIA:20220517T070011Z:8c39f1e1-48d8-431a-9d9d-474f3231ddf1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -13106,7 +15764,7 @@ "nosniff" ], "Date": [ - "Thu, 24 Feb 2022 19:24:51 GMT" + "Tue, 17 May 2022 07:00:11 GMT" ], "Expires": [ "-1" @@ -13119,16 +15777,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0JGRUU5REFDLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSMEpHUlVVNVJFRkRMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzJBMDg1RjFCLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekpCTURnMVJqRkNMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" ] }, "ResponseHeaders": { @@ -13139,22 +15797,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0JGRUU5REFDLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzJBMDg1RjFCLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11979" + "11990" ], "x-ms-request-id": [ - "550dfd76-364e-496a-9e7d-edadd4453218" + "586d130f-eb45-4675-8f43-4e89cae1c093" ], "x-ms-correlation-request-id": [ - "550dfd76-364e-496a-9e7d-edadd4453218" + "586d130f-eb45-4675-8f43-4e89cae1c093" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T192507Z:550dfd76-364e-496a-9e7d-edadd4453218" + "WESTINDIA:20220517T070026Z:586d130f-eb45-4675-8f43-4e89cae1c093" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -13163,7 +15821,7 @@ "nosniff" ], "Date": [ - "Thu, 24 Feb 2022 19:25:06 GMT" + "Tue, 17 May 2022 07:00:26 GMT" ], "Expires": [ "-1" @@ -13176,16 +15834,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0JGRUU5REFDLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSMEpHUlVVNVJFRkRMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzJBMDg1RjFCLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekpCTURnMVJqRkNMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" ] }, "ResponseHeaders": { @@ -13196,22 +15854,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0JGRUU5REFDLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzJBMDg1RjFCLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11978" + "11989" ], "x-ms-request-id": [ - "13d6f07d-1388-4593-a1f6-7b74db2b8b1d" + "0d005efd-c8c3-4858-9cdc-137ad5957a0b" ], "x-ms-correlation-request-id": [ - "13d6f07d-1388-4593-a1f6-7b74db2b8b1d" + "0d005efd-c8c3-4858-9cdc-137ad5957a0b" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T192523Z:13d6f07d-1388-4593-a1f6-7b74db2b8b1d" + "WESTINDIA:20220517T070041Z:0d005efd-c8c3-4858-9cdc-137ad5957a0b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -13220,7 +15878,7 @@ "nosniff" ], "Date": [ - "Thu, 24 Feb 2022 19:25:23 GMT" + "Tue, 17 May 2022 07:00:41 GMT" ], "Expires": [ "-1" @@ -13233,16 +15891,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0JGRUU5REFDLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSMEpHUlVVNVJFRkRMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzJBMDg1RjFCLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekpCTURnMVJqRkNMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" ] }, "ResponseHeaders": { @@ -13253,22 +15911,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0JGRUU5REFDLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzJBMDg1RjFCLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11977" + "11988" ], "x-ms-request-id": [ - "52578c68-b2bb-4433-9595-bb48c7a11c05" + "995f799b-dce1-4868-9ef4-90f394a90d44" ], "x-ms-correlation-request-id": [ - "52578c68-b2bb-4433-9595-bb48c7a11c05" + "995f799b-dce1-4868-9ef4-90f394a90d44" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T192538Z:52578c68-b2bb-4433-9595-bb48c7a11c05" + "WESTINDIA:20220517T070057Z:995f799b-dce1-4868-9ef4-90f394a90d44" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -13277,7 +15935,7 @@ "nosniff" ], "Date": [ - "Thu, 24 Feb 2022 19:25:38 GMT" + "Tue, 17 May 2022 07:00:56 GMT" ], "Expires": [ "-1" @@ -13290,16 +15948,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0JGRUU5REFDLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSMEpHUlVVNVJFRkRMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzJBMDg1RjFCLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekpCTURnMVJqRkNMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" ] }, "ResponseHeaders": { @@ -13310,16 +15968,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11976" + "11987" ], "x-ms-request-id": [ - "2609fddf-8236-44bd-b08a-ed668cf3b61a" + "75ee1e3b-60d1-4159-b79f-aa7e58f25ea9" ], "x-ms-correlation-request-id": [ - "2609fddf-8236-44bd-b08a-ed668cf3b61a" + "75ee1e3b-60d1-4159-b79f-aa7e58f25ea9" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T192554Z:2609fddf-8236-44bd-b08a-ed668cf3b61a" + "WESTINDIA:20220517T070112Z:75ee1e3b-60d1-4159-b79f-aa7e58f25ea9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -13328,7 +15986,7 @@ "nosniff" ], "Date": [ - "Thu, 24 Feb 2022 19:25:53 GMT" + "Tue, 17 May 2022 07:01:11 GMT" ], "Expires": [ "-1" @@ -13341,16 +15999,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0JGRUU5REFDLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSMEpHUlVVNVJFRkRMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzJBMDg1RjFCLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekpCTURnMVJqRkNMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" ] }, "ResponseHeaders": { @@ -13361,16 +16019,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11975" + "11986" ], "x-ms-request-id": [ - "6a305070-d34f-48dd-8c5d-30dfd19afa9e" + "80d5088e-e2d6-4536-a98e-0539583e1968" ], "x-ms-correlation-request-id": [ - "6a305070-d34f-48dd-8c5d-30dfd19afa9e" + "80d5088e-e2d6-4536-a98e-0539583e1968" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T192554Z:6a305070-d34f-48dd-8c5d-30dfd19afa9e" + "WESTINDIA:20220517T070112Z:80d5088e-e2d6-4536-a98e-0539583e1968" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -13379,7 +16037,7 @@ "nosniff" ], "Date": [ - "Thu, 24 Feb 2022 19:25:54 GMT" + "Tue, 17 May 2022 07:01:11 GMT" ], "Expires": [ "-1" @@ -13392,19 +16050,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfee9dac1/providers/Microsoft.RecoveryServices/vaults?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZlZTlkYWMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHM/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG2a085f1b1/providers/Microsoft.RecoveryServices/vaults?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMmEwODVmMWIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHM/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4bd08277-9638-4c95-82a3-94afacb737d0" + "d2595fce-8f19-4269-b450-6033d67afaa2" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesClient/4.3.2.0" @@ -13421,13 +16079,13 @@ "11999" ], "x-ms-request-id": [ - "353120f5-780b-4f76-8cd3-4f70094a8f57" + "590110d2-22cf-4188-ade7-d15cfb61029e" ], "x-ms-correlation-request-id": [ - "353120f5-780b-4f76-8cd3-4f70094a8f57" + "590110d2-22cf-4188-ade7-d15cfb61029e" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T192554Z:353120f5-780b-4f76-8cd3-4f70094a8f57" + "JIOINDIAWEST:20220517T070113Z:590110d2-22cf-4188-ade7-d15cfb61029e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -13436,7 +16094,7 @@ "nosniff" ], "Date": [ - "Thu, 24 Feb 2022 19:25:54 GMT" + "Tue, 17 May 2022 07:01:12 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -13452,22 +16110,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourcegroups/PSTestRGbfee9dac1?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlZ3JvdXBzL1BTVGVzdFJHYmZlZTlkYWMxP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourcegroups/PSTestRG2a085f1b1?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlZ3JvdXBzL1BTVGVzdFJHMmEwODVmMWIxP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e9e3d03b-31ae-444f-95d5-c47d656a796a" + "96d96bf5-822a-4735-8b7e-f13704b12083" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" ] }, "ResponseHeaders": { @@ -13478,7 +16136,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0JGRUU5REFDMS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzJBMDg1RjFCMS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -13487,13 +16145,13 @@ "14998" ], "x-ms-request-id": [ - "0b4dfc07-d53e-433b-8a41-fb0b28ac66d8" + "479b8e44-2aea-4ee5-b166-5934df564f93" ], "x-ms-correlation-request-id": [ - "0b4dfc07-d53e-433b-8a41-fb0b28ac66d8" + "479b8e44-2aea-4ee5-b166-5934df564f93" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T192557Z:0b4dfc07-d53e-433b-8a41-fb0b28ac66d8" + "WESTINDIA:20220517T070114Z:479b8e44-2aea-4ee5-b166-5934df564f93" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -13502,7 +16160,7 @@ "nosniff" ], "Date": [ - "Thu, 24 Feb 2022 19:25:57 GMT" + "Tue, 17 May 2022 07:01:14 GMT" ], "Expires": [ "-1" @@ -13515,16 +16173,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0JGRUU5REFDMS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSMEpHUlVVNVJFRkRNUzFUVDFWVVNFVkJVMVJCVTBsQklpd2lhbTlpVEc5allYUnBiMjRpT2lKemIzVjBhR1ZoYzNSaGMybGhJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzJBMDg1RjFCMS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekpCTURnMVJqRkNNUzFUVDFWVVNFVkJVMVJCVTBsQklpd2lhbTlpVEc5allYUnBiMjRpT2lKemIzVjBhR1ZoYzNSaGMybGhJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" ] }, "ResponseHeaders": { @@ -13535,22 +16193,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0JGRUU5REFDMS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzJBMDg1RjFCMS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11973" + "11984" ], "x-ms-request-id": [ - "de7a5d1b-dc8b-482a-806e-787f2ea6108c" + "d7f24334-39bb-424f-92cb-b8a3c1c590e4" ], "x-ms-correlation-request-id": [ - "de7a5d1b-dc8b-482a-806e-787f2ea6108c" + "d7f24334-39bb-424f-92cb-b8a3c1c590e4" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T192613Z:de7a5d1b-dc8b-482a-806e-787f2ea6108c" + "WESTINDIA:20220517T070129Z:d7f24334-39bb-424f-92cb-b8a3c1c590e4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -13559,7 +16217,7 @@ "nosniff" ], "Date": [ - "Thu, 24 Feb 2022 19:26:13 GMT" + "Tue, 17 May 2022 07:01:28 GMT" ], "Expires": [ "-1" @@ -13572,16 +16230,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0JGRUU5REFDMS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSMEpHUlVVNVJFRkRNUzFUVDFWVVNFVkJVMVJCVTBsQklpd2lhbTlpVEc5allYUnBiMjRpT2lKemIzVjBhR1ZoYzNSaGMybGhJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzJBMDg1RjFCMS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekpCTURnMVJqRkNNUzFUVDFWVVNFVkJVMVJCVTBsQklpd2lhbTlpVEc5allYUnBiMjRpT2lKemIzVjBhR1ZoYzNSaGMybGhJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" ] }, "ResponseHeaders": { @@ -13592,22 +16250,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0JGRUU5REFDMS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzJBMDg1RjFCMS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11972" + "11983" ], "x-ms-request-id": [ - "01cf8614-078e-4580-94f3-49eb070997ec" + "bbabd565-c69b-4cfe-bef4-a2adfc3b519a" ], "x-ms-correlation-request-id": [ - "01cf8614-078e-4580-94f3-49eb070997ec" + "bbabd565-c69b-4cfe-bef4-a2adfc3b519a" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T192628Z:01cf8614-078e-4580-94f3-49eb070997ec" + "WESTINDIA:20220517T070144Z:bbabd565-c69b-4cfe-bef4-a2adfc3b519a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -13616,7 +16274,7 @@ "nosniff" ], "Date": [ - "Thu, 24 Feb 2022 19:26:28 GMT" + "Tue, 17 May 2022 07:01:43 GMT" ], "Expires": [ "-1" @@ -13629,16 +16287,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0JGRUU5REFDMS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSMEpHUlVVNVJFRkRNUzFUVDFWVVNFVkJVMVJCVTBsQklpd2lhbTlpVEc5allYUnBiMjRpT2lKemIzVjBhR1ZoYzNSaGMybGhJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzJBMDg1RjFCMS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekpCTURnMVJqRkNNUzFUVDFWVVNFVkJVMVJCVTBsQklpd2lhbTlpVEc5allYUnBiMjRpT2lKemIzVjBhR1ZoYzNSaGMybGhJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" ] }, "ResponseHeaders": { @@ -13649,22 +16307,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0JGRUU5REFDMS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzJBMDg1RjFCMS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11971" + "11982" ], "x-ms-request-id": [ - "62e507fa-97e7-4392-adbc-43ac6ea51eea" + "c40dd294-af7d-493e-bd64-b1acbe8e6b17" ], "x-ms-correlation-request-id": [ - "62e507fa-97e7-4392-adbc-43ac6ea51eea" + "c40dd294-af7d-493e-bd64-b1acbe8e6b17" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T192644Z:62e507fa-97e7-4392-adbc-43ac6ea51eea" + "WESTINDIA:20220517T070159Z:c40dd294-af7d-493e-bd64-b1acbe8e6b17" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -13673,7 +16331,7 @@ "nosniff" ], "Date": [ - "Thu, 24 Feb 2022 19:26:43 GMT" + "Tue, 17 May 2022 07:01:59 GMT" ], "Expires": [ "-1" @@ -13686,16 +16344,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0JGRUU5REFDMS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSMEpHUlVVNVJFRkRNUzFUVDFWVVNFVkJVMVJCVTBsQklpd2lhbTlpVEc5allYUnBiMjRpT2lKemIzVjBhR1ZoYzNSaGMybGhJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzJBMDg1RjFCMS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekpCTURnMVJqRkNNUzFUVDFWVVNFVkJVMVJCVTBsQklpd2lhbTlpVEc5allYUnBiMjRpT2lKemIzVjBhR1ZoYzNSaGMybGhJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" ] }, "ResponseHeaders": { @@ -13706,22 +16364,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0JGRUU5REFDMS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzJBMDg1RjFCMS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11970" + "11981" ], "x-ms-request-id": [ - "ede01834-dcfc-4295-a32e-629ec2474abd" + "d50fc7e9-5823-4c4d-91c7-c30e6a921a62" ], "x-ms-correlation-request-id": [ - "ede01834-dcfc-4295-a32e-629ec2474abd" + "d50fc7e9-5823-4c4d-91c7-c30e6a921a62" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T192659Z:ede01834-dcfc-4295-a32e-629ec2474abd" + "WESTINDIA:20220517T070214Z:d50fc7e9-5823-4c4d-91c7-c30e6a921a62" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -13730,7 +16388,7 @@ "nosniff" ], "Date": [ - "Thu, 24 Feb 2022 19:26:59 GMT" + "Tue, 17 May 2022 07:02:14 GMT" ], "Expires": [ "-1" @@ -13743,16 +16401,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0JGRUU5REFDMS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSMEpHUlVVNVJFRkRNUzFUVDFWVVNFVkJVMVJCVTBsQklpd2lhbTlpVEc5allYUnBiMjRpT2lKemIzVjBhR1ZoYzNSaGMybGhJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzJBMDg1RjFCMS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekpCTURnMVJqRkNNUzFUVDFWVVNFVkJVMVJCVTBsQklpd2lhbTlpVEc5allYUnBiMjRpT2lKemIzVjBhR1ZoYzNSaGMybGhJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" ] }, "ResponseHeaders": { @@ -13763,16 +16421,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11969" + "11980" ], "x-ms-request-id": [ - "9e9b6a74-c1cd-4d45-b64f-abe3eba21b41" + "694164f2-3b9a-41cc-878b-c000d2428599" ], "x-ms-correlation-request-id": [ - "9e9b6a74-c1cd-4d45-b64f-abe3eba21b41" + "694164f2-3b9a-41cc-878b-c000d2428599" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T192715Z:9e9b6a74-c1cd-4d45-b64f-abe3eba21b41" + "WESTINDIA:20220517T070230Z:694164f2-3b9a-41cc-878b-c000d2428599" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -13781,7 +16439,7 @@ "nosniff" ], "Date": [ - "Thu, 24 Feb 2022 19:27:14 GMT" + "Tue, 17 May 2022 07:02:29 GMT" ], "Expires": [ "-1" @@ -13794,16 +16452,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0JGRUU5REFDMS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSMEpHUlVVNVJFRkRNUzFUVDFWVVNFVkJVMVJCVTBsQklpd2lhbTlpVEc5allYUnBiMjRpT2lKemIzVjBhR1ZoYzNSaGMybGhJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzJBMDg1RjFCMS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekpCTURnMVJqRkNNUzFUVDFWVVNFVkJVMVJCVTBsQklpd2lhbTlpVEc5allYUnBiMjRpT2lKemIzVjBhR1ZoYzNSaGMybGhJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" ] }, "ResponseHeaders": { @@ -13814,16 +16472,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11968" + "11979" ], "x-ms-request-id": [ - "06e850f8-024a-4b20-adf1-c1c0b355afba" + "ba42b46c-7731-449a-a66f-3647c1906108" ], "x-ms-correlation-request-id": [ - "06e850f8-024a-4b20-adf1-c1c0b355afba" + "ba42b46c-7731-449a-a66f-3647c1906108" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T192715Z:06e850f8-024a-4b20-adf1-c1c0b355afba" + "WESTINDIA:20220517T070230Z:ba42b46c-7731-449a-a66f-3647c1906108" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -13832,7 +16490,7 @@ "nosniff" ], "Date": [ - "Thu, 24 Feb 2022 19:27:14 GMT" + "Tue, 17 May 2022 07:02:29 GMT" ], "Expires": [ "-1" @@ -13847,7 +16505,7 @@ ], "Names": {}, "Variables": { - "SubscriptionId": "e37510d7-33b6-4676-886f-ee75bcc01871", - "NamingSuffix": "bfee9dac-ea9a-4fae-a1eb-38ceaa280c5c" + "SubscriptionId": "da364f0f-307b-41c9-9d47-b7413ec45535", + "NamingSuffix": "2a085f1b-0877-4813-94e2-f3a0adfc504b" } } \ No newline at end of file diff --git a/src/RecoveryServices/RecoveryServices.Backup.Test/SessionRecords/Microsoft.Azure.Commands.RecoveryServices.Backup.Test.ScenarioTests.ItemTests/TestAzureVMGetItems.json b/src/RecoveryServices/RecoveryServices.Backup.Test/SessionRecords/Microsoft.Azure.Commands.RecoveryServices.Backup.Test.ScenarioTests.ItemTests/TestAzureVMGetItems.json index 1ab7ff8aed41..0613a826922f 100644 --- a/src/RecoveryServices/RecoveryServices.Backup.Test/SessionRecords/Microsoft.Azure.Commands.RecoveryServices.Backup.Test.ScenarioTests.ItemTests/TestAzureVMGetItems.json +++ b/src/RecoveryServices/RecoveryServices.Backup.Test/SessionRecords/Microsoft.Azure.Commands.RecoveryServices.Backup.Test.ScenarioTests.ItemTests/TestAzureVMGetItems.json @@ -1,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourcegroups/PSTestRGdbbbe2ca?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlZ3JvdXBzL1BTVGVzdFJHZGJiYmUyY2E/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourcegroups/PSTestRG9e387301?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlZ3JvdXBzL1BTVGVzdFJHOWUzODczMDE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ee2db7d5-9423-4689-afb2-7f3ea530a75c" + "fdfb11d7-33e3-4305-b480-b0a86d31eb47" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" ] }, "ResponseHeaders": { @@ -33,13 +33,13 @@ "11999" ], "x-ms-request-id": [ - "c8b806be-7748-40fd-ab21-5fd74ae2e5fe" + "7b1cfe7f-9636-4fc3-8b2b-597f0edfbb39" ], "x-ms-correlation-request-id": [ - "c8b806be-7748-40fd-ab21-5fd74ae2e5fe" + "7b1cfe7f-9636-4fc3-8b2b-597f0edfbb39" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T210233Z:c8b806be-7748-40fd-ab21-5fd74ae2e5fe" + "WESTINDIA:20220517T040513Z:7b1cfe7f-9636-4fc3-8b2b-597f0edfbb39" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -48,7 +48,7 @@ "nosniff" ], "Date": [ - "Thu, 24 Feb 2022 21:02:32 GMT" + "Tue, 17 May 2022 04:05:13 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -60,26 +60,26 @@ "108" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'PSTestRGdbbbe2ca' could not be found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'PSTestRG9e387301' could not be found.\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourcegroups/PSTestRGdbbbe2ca?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlZ3JvdXBzL1BTVGVzdFJHZGJiYmUyY2E/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourcegroups/PSTestRG9e387301?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlZ3JvdXBzL1BTVGVzdFJHOWUzODczMDE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "44de5d0c-bf17-4118-8ef3-2cdad899c1ac" + "115c97e3-3e15-4107-aa5b-e47473d2bb9e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" ] }, "ResponseHeaders": { @@ -90,16 +90,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11998" ], "x-ms-request-id": [ - "2751cac9-01a3-4520-8217-3ca9f2ad96ad" + "3d036cd8-c862-45f2-9349-4a35dce0f5ff" ], "x-ms-correlation-request-id": [ - "2751cac9-01a3-4520-8217-3ca9f2ad96ad" + "3d036cd8-c862-45f2-9349-4a35dce0f5ff" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T211436Z:2751cac9-01a3-4520-8217-3ca9f2ad96ad" + "WESTINDIA:20220517T041635Z:3d036cd8-c862-45f2-9349-4a35dce0f5ff" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -108,7 +108,7 @@ "nosniff" ], "Date": [ - "Thu, 24 Feb 2022 21:14:36 GMT" + "Tue, 17 May 2022 04:16:34 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -120,26 +120,26 @@ "192" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca\",\r\n \"name\": \"PSTestRGdbbbe2ca\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301\",\r\n \"name\": \"PSTestRG9e387301\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourcegroups/PSTestRGdbbbe2ca?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlZ3JvdXBzL1BTVGVzdFJHZGJiYmUyY2E/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourcegroups/PSTestRG9e387301?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlZ3JvdXBzL1BTVGVzdFJHOWUzODczMDE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"southeastasia\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "85d9ba5b-c901-4dd8-9b62-8da432b51816" + "92a13a92-8f9e-41f9-8e22-c349d17050f9" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" ], "Content-Type": [ "application/json; charset=utf-8" @@ -159,13 +159,13 @@ "1199" ], "x-ms-request-id": [ - "1223e51c-b48a-4550-ad0e-61f347d8c5e2" + "456d421b-569c-45fd-8200-e851cbff0290" ], "x-ms-correlation-request-id": [ - "1223e51c-b48a-4550-ad0e-61f347d8c5e2" + "456d421b-569c-45fd-8200-e851cbff0290" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T210236Z:1223e51c-b48a-4550-ad0e-61f347d8c5e2" + "WESTINDIA:20220517T040515Z:456d421b-569c-45fd-8200-e851cbff0290" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -174,7 +174,7 @@ "nosniff" ], "Date": [ - "Thu, 24 Feb 2022 21:02:35 GMT" + "Tue, 17 May 2022 04:05:14 GMT" ], "Content-Length": [ "192" @@ -186,26 +186,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca\",\r\n \"name\": \"PSTestRGdbbbe2ca\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301\",\r\n \"name\": \"PSTestRG9e387301\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Compute/virtualMachines/PSTestVMdbbbe1?api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZGJiYmUyY2EvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy9QU1Rlc3RWTWRiYmJlMT9hcGktdmVyc2lvbj0yMDIxLTExLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.Compute/virtualMachines/PSTestVM9e3871?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOWUzODczMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy9QU1Rlc3RWTTllMzg3MT9hcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1f0004c5-e3f3-4cc6-a976-8da0c5f2ec43" + "3347175a-ccef-4d06-af4d-95b5fd7d4f18" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ] }, "ResponseHeaders": { @@ -219,13 +219,13 @@ "gateway" ], "x-ms-request-id": [ - "99392d20-5be5-4ff1-ae47-8c6529ecd436" + "830f9bd5-1fa3-43ba-b2b3-08f44939ae28" ], "x-ms-correlation-request-id": [ - "99392d20-5be5-4ff1-ae47-8c6529ecd436" + "830f9bd5-1fa3-43ba-b2b3-08f44939ae28" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T210237Z:99392d20-5be5-4ff1-ae47-8c6529ecd436" + "JIOINDIAWEST:20220517T040516Z:830f9bd5-1fa3-43ba-b2b3-08f44939ae28" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -234,7 +234,7 @@ "nosniff" ], "Date": [ - "Thu, 24 Feb 2022 21:02:37 GMT" + "Tue, 17 May 2022 04:05:16 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -246,23 +246,23 @@ "236" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Compute/virtualMachines/PSTestVMdbbbe1' under resource group 'PSTestRGdbbbe2ca' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Compute/virtualMachines/PSTestVM9e3871' under resource group 'PSTestRG9e387301' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Compute/virtualMachines/PSTestVMdbbbe1?api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZGJiYmUyY2EvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy9QU1Rlc3RWTWRiYmJlMT9hcGktdmVyc2lvbj0yMDIxLTExLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.Compute/virtualMachines/PSTestVM9e3871?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOWUzODczMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy9QU1Rlc3RWTTllMzg3MT9hcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8d56546a-95e4-4a2e-9793-ce8cdb4d611c" + "7962ddbd-b113-4dea-b408-4a8701784462" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ] }, "ResponseHeaders": { @@ -273,35 +273,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/LowCostGet3Min;3998,Microsoft.Compute/LowCostGet30Min;31993" + "Microsoft.Compute/LowCostGet3Min;3990,Microsoft.Compute/LowCostGet30Min;31881" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f7aee452-0ef6-4862-b29e-b22e9ae50735" + "457f9e78-ef61-4f12-8b1d-b16bf8145547" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11994" ], "x-ms-correlation-request-id": [ - "96218a97-4f7c-426f-920c-5772f9251eb1" + "d0f7f48c-6087-4229-bf7d-e8abf0abee46" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T210514Z:96218a97-4f7c-426f-920c-5772f9251eb1" + "JIOINDIAWEST:20220517T040738Z:d0f7f48c-6087-4229-bf7d-e8abf0abee46" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 24 Feb 2022 21:05:14 GMT" + "Tue, 17 May 2022 04:07:38 GMT" ], "Content-Length": [ - "2265" + "2194" ], "Content-Type": [ "application/json; charset=utf-8" @@ -310,26 +310,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"PSTestVMdbbbe1\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Compute/virtualMachines/PSTestVMdbbbe1\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MabUsed\": \"Yes\",\r\n \"AutoShutDown\": \"No\",\r\n \"Purpose\": \"PSTest\",\r\n \"Owner\": \"sarath\",\r\n \"DeleteBy\": \"06-2022\",\r\n \"azsecpack\": \"nonprod\",\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": \"true\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"0245554f-3d3e-4750-a36c-5d10b06f89b3\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D1_v2\"\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.4946.220202\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"PSTestVMdbbbe1_OsDisk_1_a05c1b733a594a37ae61b7c91ff7923b\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Compute/disks/PSTestVMdbbbe1_OsDisk_1_a05c1b733a594a37ae61b7c91ff7923b\"\r\n },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"PSTestVMdbbbe1\",\r\n \"adminUsername\": \"demouser\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"AutomaticByOS\",\r\n \"assessmentMode\": \"ImageDefault\"\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Network/networkInterfaces/PSTestNICdbbbe1\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"timeCreated\": \"2022-02-24T16:03:20.6355369-05:00\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"PSTestVM9e3871\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.Compute/virtualMachines/PSTestVM9e3871\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"AutoShutDown\": \"No\",\r\n \"Purpose\": \"PSTest\",\r\n \"DeleteBy\": \"06-2022\",\r\n \"Owner\": \"sarath\",\r\n \"MabUsed\": \"Yes\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"9a0a52be-8703-478d-8abd-8e0a6f949a36\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D1_v2\"\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.5125.220505\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"PSTestVM9e3871_OsDisk_1_666720ddfbe84df7bfe629c1d9f1a672\",\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/PSTestRG9e387301/providers/Microsoft.Compute/disks/PSTestVM9e3871_OsDisk_1_666720ddfbe84df7bfe629c1d9f1a672\"\r\n },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"PSTestVM9e3871\",\r\n \"adminUsername\": \"demouser\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"AutomaticByOS\",\r\n \"assessmentMode\": \"ImageDefault\"\r\n },\r\n \"enableVMAgentPlatformUpdates\": false\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/PSTestRG9e387301/providers/Microsoft.Network/networkInterfaces/PSTestNIC9e3871\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"timeCreated\": \"2022-05-17T09:35:46.555039+05:30\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Compute/virtualMachines/PSTestVMdbbbe1?api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZGJiYmUyY2EvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy9QU1Rlc3RWTWRiYmJlMT9hcGktdmVyc2lvbj0yMDIxLTExLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.Compute/virtualMachines/PSTestVM9e3871?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOWUzODczMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy9QU1Rlc3RWTTllMzg3MT9hcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "844b1a5a-6166-4cc9-94c8-8828931bd7b7" + "9bf9bc03-6ebd-48a8-a68a-998aa3f310c2" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ] }, "ResponseHeaders": { @@ -340,35 +340,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/LowCostGet3Min;3993,Microsoft.Compute/LowCostGet30Min;31988" + "Microsoft.Compute/LowCostGet3Min;3987,Microsoft.Compute/LowCostGet30Min;31880" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "29f82b1f-3135-44b2-bbc5-0336a3bae885" + "e81b669c-6cea-4a26-ac6e-78f1a8e1058e" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" + "11984" ], "x-ms-correlation-request-id": [ - "50b801b2-5ec0-4733-a718-10ee405f30e5" + "aebc606d-2b14-485d-84c2-df37cd7a61d0" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T210725Z:50b801b2-5ec0-4733-a718-10ee405f30e5" + "JIOINDIAWEST:20220517T041014Z:aebc606d-2b14-485d-84c2-df37cd7a61d0" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 24 Feb 2022 21:07:25 GMT" + "Tue, 17 May 2022 04:10:14 GMT" ], "Content-Length": [ - "2828" + "2757" ], "Content-Type": [ "application/json; charset=utf-8" @@ -377,26 +377,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"PSTestVMdbbbe1\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Compute/virtualMachines/PSTestVMdbbbe1\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MabUsed\": \"Yes\",\r\n \"AutoShutDown\": \"No\",\r\n \"Purpose\": \"PSTest\",\r\n \"Owner\": \"sarath\",\r\n \"DeleteBy\": \"06-2022\",\r\n \"azsecpack\": \"nonprod\",\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": \"true\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"0245554f-3d3e-4750-a36c-5d10b06f89b3\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D1_v2\"\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.4946.220202\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"PSTestVMdbbbe1_OsDisk_1_a05c1b733a594a37ae61b7c91ff7923b\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Compute/disks/PSTestVMdbbbe1_OsDisk_1_a05c1b733a594a37ae61b7c91ff7923b\"\r\n },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"PSTestVMdbbbe1\",\r\n \"adminUsername\": \"demouser\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"AutomaticByOS\",\r\n \"assessmentMode\": \"ImageDefault\"\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Network/networkInterfaces/PSTestNICdbbbe1\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"timeCreated\": \"2022-02-24T16:03:20.6355369-05:00\"\r\n },\r\n \"resources\": [\r\n {\r\n \"name\": \"BGInfo\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Compute/virtualMachines/PSTestVMdbbbe1/extensions/BGInfo\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"southeastasia\",\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}", + "ResponseBody": "{\r\n \"name\": \"PSTestVM9e3871\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.Compute/virtualMachines/PSTestVM9e3871\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"AutoShutDown\": \"No\",\r\n \"Purpose\": \"PSTest\",\r\n \"DeleteBy\": \"06-2022\",\r\n \"Owner\": \"sarath\",\r\n \"MabUsed\": \"Yes\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"9a0a52be-8703-478d-8abd-8e0a6f949a36\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D1_v2\"\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.5125.220505\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"PSTestVM9e3871_OsDisk_1_666720ddfbe84df7bfe629c1d9f1a672\",\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/PSTestRG9e387301/providers/Microsoft.Compute/disks/PSTestVM9e3871_OsDisk_1_666720ddfbe84df7bfe629c1d9f1a672\"\r\n },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"PSTestVM9e3871\",\r\n \"adminUsername\": \"demouser\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"AutomaticByOS\",\r\n \"assessmentMode\": \"ImageDefault\"\r\n },\r\n \"enableVMAgentPlatformUpdates\": false\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/PSTestRG9e387301/providers/Microsoft.Network/networkInterfaces/PSTestNIC9e3871\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"timeCreated\": \"2022-05-17T09:35:46.555039+05:30\"\r\n },\r\n \"resources\": [\r\n {\r\n \"name\": \"BGInfo\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.Compute/virtualMachines/PSTestVM9e3871/extensions/BGInfo\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"BGInfo\",\r\n \"typeHandlerVersion\": \"2.2\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Network/virtualNetworks/PSTestVNETdbbbe1?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZGJiYmUyY2EvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy9QU1Rlc3RWTkVUZGJiYmUxP2FwaS12ZXJzaW9uPTIwMjEtMDUtMDE=", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.Network/virtualNetworks/PSTestVNET9e3871?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOWUzODczMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy9QU1Rlc3RWTkVUOWUzODcxP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f54e019b-0c05-4d1e-872b-d3a07c5fda17" + "fab7d692-eef7-4f9f-9be6-46eb363c8066" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ] }, "ResponseHeaders": { @@ -410,13 +410,13 @@ "gateway" ], "x-ms-request-id": [ - "dedc7e23-06eb-4a86-8a51-61641168c2b4" + "f9819fec-18d2-43a4-851d-43e5dad7f72a" ], "x-ms-correlation-request-id": [ - "dedc7e23-06eb-4a86-8a51-61641168c2b4" + "f9819fec-18d2-43a4-851d-43e5dad7f72a" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T210240Z:dedc7e23-06eb-4a86-8a51-61641168c2b4" + "JIOINDIAWEST:20220517T040517Z:f9819fec-18d2-43a4-851d-43e5dad7f72a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -425,7 +425,7 @@ "nosniff" ], "Date": [ - "Thu, 24 Feb 2022 21:02:39 GMT" + "Tue, 17 May 2022 04:05:17 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -437,23 +437,23 @@ "238" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/virtualNetworks/PSTestVNETdbbbe1' under resource group 'PSTestRGdbbbe2ca' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/virtualNetworks/PSTestVNET9e3871' under resource group 'PSTestRG9e387301' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Network/virtualNetworks/PSTestVNETdbbbe1?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZGJiYmUyY2EvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy9QU1Rlc3RWTkVUZGJiYmUxP2FwaS12ZXJzaW9uPTIwMjEtMDUtMDE=", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.Network/virtualNetworks/PSTestVNET9e3871?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOWUzODczMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy9QU1Rlc3RWTkVUOWUzODcxP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f54e019b-0c05-4d1e-872b-d3a07c5fda17" + "fab7d692-eef7-4f9f-9be6-46eb363c8066" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ] }, "ResponseHeaders": { @@ -464,16 +464,16 @@ "no-cache" ], "ETag": [ - "W/\"cc54a709-f4e9-4e65-b53d-a2638b122bca\"" + "W/\"da701be6-fcbf-4256-8c59-824f82243e8a\"" ], "x-ms-request-id": [ - "557798b6-203a-4fae-be59-2ed8ef374964" + "52545211-df8e-416e-856c-0143fabd3232" ], "x-ms-correlation-request-id": [ - "f9cbff41-7a88-4862-a2fc-7f6b97b69b03" + "62a285e8-a30d-4bb8-ae11-9f7676abbc99" ], "x-ms-arm-service-request-id": [ - "8ea135a8-aa69-42df-a04b-66f81d0983b7" + "15d4f737-3da6-498d-8e82-cb7bafdf4a3f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -486,13 +486,13 @@ "11997" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T210252Z:f9cbff41-7a88-4862-a2fc-7f6b97b69b03" + "JIOINDIAWEST:20220517T040526Z:62a285e8-a30d-4bb8-ae11-9f7676abbc99" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 24 Feb 2022 21:02:51 GMT" + "Tue, 17 May 2022 04:05:25 GMT" ], "Content-Length": [ "1315" @@ -504,26 +504,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"PSTestVNETdbbbe1\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Network/virtualNetworks/PSTestVNETdbbbe1\",\r\n \"etag\": \"W/\\\"cc54a709-f4e9-4e65-b53d-a2638b122bca\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"b1bf708a-be64-4aa1-acff-ff9d8eb3cea1\",\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\": \"PSTestSNCdbbbe1\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Network/virtualNetworks/PSTestVNETdbbbe1/subnets/PSTestSNCdbbbe1\",\r\n \"etag\": \"W/\\\"cc54a709-f4e9-4e65-b53d-a2638b122bca\\\"\",\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 },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"PSTestVNET9e3871\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.Network/virtualNetworks/PSTestVNET9e3871\",\r\n \"etag\": \"W/\\\"da701be6-fcbf-4256-8c59-824f82243e8a\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"c5265905-3296-4a9d-8a14-9b5df225e23a\",\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\": \"PSTestSNC9e3871\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.Network/virtualNetworks/PSTestVNET9e3871/subnets/PSTestSNC9e3871\",\r\n \"etag\": \"W/\\\"da701be6-fcbf-4256-8c59-824f82243e8a\\\"\",\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 },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Network/virtualNetworks/PSTestVNETdbbbe1?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZGJiYmUyY2EvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy9QU1Rlc3RWTkVUZGJiYmUxP2FwaS12ZXJzaW9uPTIwMjEtMDUtMDE=", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.Network/virtualNetworks/PSTestVNET9e3871?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOWUzODczMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy9QU1Rlc3RWTkVUOWUzODcxP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f54e019b-0c05-4d1e-872b-d3a07c5fda17" + "fab7d692-eef7-4f9f-9be6-46eb363c8066" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ] }, "ResponseHeaders": { @@ -534,16 +534,16 @@ "no-cache" ], "ETag": [ - "W/\"cc54a709-f4e9-4e65-b53d-a2638b122bca\"" + "W/\"da701be6-fcbf-4256-8c59-824f82243e8a\"" ], "x-ms-request-id": [ - "706fd91b-fdef-47c7-9b33-46cdf1ac9d0e" + "6bbe19b6-fd2a-490b-89b9-ad9156e37a6f" ], "x-ms-correlation-request-id": [ - "c7f37cc8-b2a8-4023-9320-e55421576aaa" + "a7f47d4a-5d77-46f7-b0ff-6ddecd82f8f1" ], "x-ms-arm-service-request-id": [ - "ee813a45-26f5-4660-bb83-722c82adb314" + "cb1bf2ec-5cca-4951-b7a0-a95c99e4c2b8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -556,13 +556,13 @@ "11996" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T210252Z:c7f37cc8-b2a8-4023-9320-e55421576aaa" + "JIOINDIAWEST:20220517T040526Z:a7f47d4a-5d77-46f7-b0ff-6ddecd82f8f1" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 24 Feb 2022 21:02:52 GMT" + "Tue, 17 May 2022 04:05:26 GMT" ], "Content-Length": [ "1315" @@ -574,26 +574,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"PSTestVNETdbbbe1\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Network/virtualNetworks/PSTestVNETdbbbe1\",\r\n \"etag\": \"W/\\\"cc54a709-f4e9-4e65-b53d-a2638b122bca\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"b1bf708a-be64-4aa1-acff-ff9d8eb3cea1\",\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\": \"PSTestSNCdbbbe1\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Network/virtualNetworks/PSTestVNETdbbbe1/subnets/PSTestSNCdbbbe1\",\r\n \"etag\": \"W/\\\"cc54a709-f4e9-4e65-b53d-a2638b122bca\\\"\",\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 },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"PSTestVNET9e3871\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.Network/virtualNetworks/PSTestVNET9e3871\",\r\n \"etag\": \"W/\\\"da701be6-fcbf-4256-8c59-824f82243e8a\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"c5265905-3296-4a9d-8a14-9b5df225e23a\",\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\": \"PSTestSNC9e3871\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.Network/virtualNetworks/PSTestVNET9e3871/subnets/PSTestSNC9e3871\",\r\n \"etag\": \"W/\\\"da701be6-fcbf-4256-8c59-824f82243e8a\\\"\",\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 },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Network/virtualNetworks/PSTestVNETdbbbe1?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZGJiYmUyY2EvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy9QU1Rlc3RWTkVUZGJiYmUxP2FwaS12ZXJzaW9uPTIwMjEtMDUtMDE=", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.Network/virtualNetworks/PSTestVNET9e3871?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOWUzODczMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy9QU1Rlc3RWTkVUOWUzODcxP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=", "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 \"applicationGatewayIpConfigurations\": []\r\n },\r\n \"name\": \"PSTestSNCdbbbe1\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"ipAllocations\": []\r\n },\r\n \"location\": \"southeastasia\"\r\n}", + "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 \"applicationGatewayIpConfigurations\": []\r\n },\r\n \"name\": \"PSTestSNC9e3871\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"ipAllocations\": []\r\n },\r\n \"location\": \"southeastasia\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "f54e019b-0c05-4d1e-872b-d3a07c5fda17" + "fab7d692-eef7-4f9f-9be6-46eb363c8066" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -613,19 +613,19 @@ "3" ], "x-ms-request-id": [ - "27881c6e-61a4-4201-b633-2618d12b7da4" + "da3acbca-b4f5-458a-9262-3dc4105c2fcb" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Network/locations/southeastasia/operations/27881c6e-61a4-4201-b633-2618d12b7da4?api-version=2021-05-01" + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Network/locations/southeastasia/operations/da3acbca-b4f5-458a-9262-3dc4105c2fcb?api-version=2021-08-01" ], "x-ms-correlation-request-id": [ - "e7e7684e-0f94-43bc-80b3-bc68bf9c312d" + "6fa8576f-ea7a-4a84-85dc-04fb5acd1923" ], "Azure-AsyncNotification": [ "Enabled" ], "x-ms-arm-service-request-id": [ - "a128d8b1-32b2-450b-8e85-6f4155cd41d7" + "ec4f831b-aa88-4c8f-8128-d070506fdef1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -638,13 +638,13 @@ "1199" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T210248Z:e7e7684e-0f94-43bc-80b3-bc68bf9c312d" + "JIOINDIAWEST:20220517T040522Z:6fa8576f-ea7a-4a84-85dc-04fb5acd1923" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 24 Feb 2022 21:02:48 GMT" + "Tue, 17 May 2022 04:05:22 GMT" ], "Content-Length": [ "1313" @@ -656,23 +656,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"PSTestVNETdbbbe1\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Network/virtualNetworks/PSTestVNETdbbbe1\",\r\n \"etag\": \"W/\\\"b8e43461-a0da-4913-bf14-df0a03b28298\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"b1bf708a-be64-4aa1-acff-ff9d8eb3cea1\",\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\": \"PSTestSNCdbbbe1\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Network/virtualNetworks/PSTestVNETdbbbe1/subnets/PSTestSNCdbbbe1\",\r\n \"etag\": \"W/\\\"b8e43461-a0da-4913-bf14-df0a03b28298\\\"\",\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 },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"PSTestVNET9e3871\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.Network/virtualNetworks/PSTestVNET9e3871\",\r\n \"etag\": \"W/\\\"3ece85fc-d9c2-4b9b-b633-c21cfd5c4fc5\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"c5265905-3296-4a9d-8a14-9b5df225e23a\",\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\": \"PSTestSNC9e3871\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.Network/virtualNetworks/PSTestVNET9e3871/subnets/PSTestSNC9e3871\",\r\n \"etag\": \"W/\\\"3ece85fc-d9c2-4b9b-b633-c21cfd5c4fc5\\\"\",\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 },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Network/locations/southeastasia/operations/27881c6e-61a4-4201-b633-2618d12b7da4?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzI3ODgxYzZlLTYxYTQtNDIwMS1iNjMzLTI2MThkMTJiN2RhND9hcGktdmVyc2lvbj0yMDIxLTA1LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Network/locations/southeastasia/operations/da3acbca-b4f5-458a-9262-3dc4105c2fcb?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2RhM2FjYmNhLWI0ZjUtNDU4YS05MjYyLTNkYzQxMDVjMmZjYj9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f54e019b-0c05-4d1e-872b-d3a07c5fda17" + "fab7d692-eef7-4f9f-9be6-46eb363c8066" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ] }, "ResponseHeaders": { @@ -683,13 +683,13 @@ "no-cache" ], "x-ms-request-id": [ - "edd27800-082f-4556-a2d4-29c7f0ad24ba" + "20405680-d033-4587-ab0e-606066726a0a" ], "x-ms-correlation-request-id": [ - "565c2189-9503-48e5-8529-34e37b741635" + "1c1784db-b5c4-46ea-9445-9b067fe140d2" ], "x-ms-arm-service-request-id": [ - "10c0bab8-2194-4cf8-8629-1dc2b6538081" + "8f2aec58-4c09-4cb5-b03b-bb869e1d7693" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -702,13 +702,13 @@ "11998" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T210251Z:565c2189-9503-48e5-8529-34e37b741635" + "JIOINDIAWEST:20220517T040526Z:1c1784db-b5c4-46ea-9445-9b067fe140d2" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 24 Feb 2022 21:02:51 GMT" + "Tue, 17 May 2022 04:05:25 GMT" ], "Content-Length": [ "29" @@ -724,22 +724,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Network/publicIPAddresses/pstestpublicdnsdbbbe1?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZGJiYmUyY2EvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BzdGVzdHB1YmxpY2Ruc2RiYmJlMT9hcGktdmVyc2lvbj0yMDIxLTA1LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.Network/publicIPAddresses/pstestpublicdns9e3871?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOWUzODczMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BzdGVzdHB1YmxpY2RuczllMzg3MT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d91fec73-d299-431f-8ba0-d9cfeb94d267" + "1633d0ed-33e3-4360-b73d-047402b9c139" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ] }, "ResponseHeaders": { @@ -753,13 +753,13 @@ "gateway" ], "x-ms-request-id": [ - "c653334b-c992-4386-9579-a45c73af74b7" + "a95656c3-8a27-432a-a45e-231a3eeac734" ], "x-ms-correlation-request-id": [ - "c653334b-c992-4386-9579-a45c73af74b7" + "a95656c3-8a27-432a-a45e-231a3eeac734" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T210252Z:c653334b-c992-4386-9579-a45c73af74b7" + "JIOINDIAWEST:20220517T040526Z:a95656c3-8a27-432a-a45e-231a3eeac734" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -768,7 +768,7 @@ "nosniff" ], "Date": [ - "Thu, 24 Feb 2022 21:02:52 GMT" + "Tue, 17 May 2022 04:05:26 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -780,23 +780,23 @@ "245" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/publicIPAddresses/pstestpublicdnsdbbbe1' under resource group 'PSTestRGdbbbe2ca' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/publicIPAddresses/pstestpublicdns9e3871' under resource group 'PSTestRG9e387301' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Network/publicIPAddresses/pstestpublicdnsdbbbe1?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZGJiYmUyY2EvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BzdGVzdHB1YmxpY2Ruc2RiYmJlMT9hcGktdmVyc2lvbj0yMDIxLTA1LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.Network/publicIPAddresses/pstestpublicdns9e3871?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOWUzODczMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BzdGVzdHB1YmxpY2RuczllMzg3MT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d91fec73-d299-431f-8ba0-d9cfeb94d267" + "1633d0ed-33e3-4360-b73d-047402b9c139" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ] }, "ResponseHeaders": { @@ -807,16 +807,16 @@ "no-cache" ], "ETag": [ - "W/\"c5fde781-cea8-4f36-9cea-f89a5e62ba9d\"" + "W/\"93897066-8255-4a1c-8e6d-f64d126cf6d8\"" ], "x-ms-request-id": [ - "2ad2e840-08ee-41eb-b5c1-c1fbb67b1897" + "94f9c980-56e3-4caf-842f-f9b002647853" ], "x-ms-correlation-request-id": [ - "84ec2c89-1e1f-4551-8063-ec4cca73e056" + "e7dee3df-526a-409a-ad59-ba27aaad8c76" ], "x-ms-arm-service-request-id": [ - "e92369dc-a37c-4f28-917a-7a84f5469d6a" + "2ac89963-8359-49bb-ba03-c5a550901422" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -829,16 +829,16 @@ "11993" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T210257Z:84ec2c89-1e1f-4551-8063-ec4cca73e056" + "JIOINDIAWEST:20220517T040530Z:e7dee3df-526a-409a-ad59-ba27aaad8c76" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 24 Feb 2022 21:02:57 GMT" + "Tue, 17 May 2022 04:05:30 GMT" ], "Content-Length": [ - "697" + "698" ], "Content-Type": [ "application/json; charset=utf-8" @@ -847,26 +847,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"pstestpublicdnsdbbbe1\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Network/publicIPAddresses/pstestpublicdnsdbbbe1\",\r\n \"etag\": \"W/\\\"c5fde781-cea8-4f36-9cea-f89a5e62ba9d\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"fdb18084-b870-47f2-80a9-dbc5cf0569ad\",\r\n \"ipAddress\": \"20.24.25.228\",\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 \"tier\": \"Regional\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"pstestpublicdns9e3871\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.Network/publicIPAddresses/pstestpublicdns9e3871\",\r\n \"etag\": \"W/\\\"93897066-8255-4a1c-8e6d-f64d126cf6d8\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"5fa74018-34fb-4533-9eee-40e330bb623c\",\r\n \"ipAddress\": \"52.187.26.244\",\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 \"tier\": \"Regional\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Network/publicIPAddresses/pstestpublicdnsdbbbe1?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZGJiYmUyY2EvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BzdGVzdHB1YmxpY2Ruc2RiYmJlMT9hcGktdmVyc2lvbj0yMDIxLTA1LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.Network/publicIPAddresses/pstestpublicdns9e3871?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOWUzODczMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BzdGVzdHB1YmxpY2RuczllMzg3MT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d91fec73-d299-431f-8ba0-d9cfeb94d267" + "1633d0ed-33e3-4360-b73d-047402b9c139" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ] }, "ResponseHeaders": { @@ -877,16 +877,16 @@ "no-cache" ], "ETag": [ - "W/\"c5fde781-cea8-4f36-9cea-f89a5e62ba9d\"" + "W/\"93897066-8255-4a1c-8e6d-f64d126cf6d8\"" ], "x-ms-request-id": [ - "7bb8b50d-1af3-4686-879d-9ffe43896fce" + "8c7efb9f-60de-40f8-b0e0-2e7d77c957e7" ], "x-ms-correlation-request-id": [ - "e631de8a-0e65-42ca-8d85-691bd14eefdd" + "21a8ec94-c113-4fef-9400-d5f5f7bc944d" ], "x-ms-arm-service-request-id": [ - "48543cb7-4929-49b3-bfbd-c7ecdc9d0cc1" + "482c309f-0824-4c13-a246-1bd88a8dfece" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -899,16 +899,16 @@ "11992" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T210258Z:e631de8a-0e65-42ca-8d85-691bd14eefdd" + "JIOINDIAWEST:20220517T040531Z:21a8ec94-c113-4fef-9400-d5f5f7bc944d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 24 Feb 2022 21:02:57 GMT" + "Tue, 17 May 2022 04:05:30 GMT" ], "Content-Length": [ - "697" + "698" ], "Content-Type": [ "application/json; charset=utf-8" @@ -917,26 +917,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"pstestpublicdnsdbbbe1\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Network/publicIPAddresses/pstestpublicdnsdbbbe1\",\r\n \"etag\": \"W/\\\"c5fde781-cea8-4f36-9cea-f89a5e62ba9d\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"fdb18084-b870-47f2-80a9-dbc5cf0569ad\",\r\n \"ipAddress\": \"20.24.25.228\",\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 \"tier\": \"Regional\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"pstestpublicdns9e3871\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.Network/publicIPAddresses/pstestpublicdns9e3871\",\r\n \"etag\": \"W/\\\"93897066-8255-4a1c-8e6d-f64d126cf6d8\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"5fa74018-34fb-4533-9eee-40e330bb623c\",\r\n \"ipAddress\": \"52.187.26.244\",\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 \"tier\": \"Regional\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Network/publicIPAddresses/pstestpublicdnsdbbbe1?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZGJiYmUyY2EvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BzdGVzdHB1YmxpY2Ruc2RiYmJlMT9hcGktdmVyc2lvbj0yMDIxLTA1LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.Network/publicIPAddresses/pstestpublicdns9e3871?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOWUzODczMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BzdGVzdHB1YmxpY2RuczllMzg3MT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "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\": \"southeastasia\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "d91fec73-d299-431f-8ba0-d9cfeb94d267" + "1633d0ed-33e3-4360-b73d-047402b9c139" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -956,19 +956,19 @@ "1" ], "x-ms-request-id": [ - "a5ff7056-f1f1-432f-936b-311d52b019d8" + "da422b6d-7d20-4f03-8d56-b038d7bc6d77" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Network/locations/southeastasia/operations/a5ff7056-f1f1-432f-936b-311d52b019d8?api-version=2021-05-01" + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Network/locations/southeastasia/operations/da422b6d-7d20-4f03-8d56-b038d7bc6d77?api-version=2021-08-01" ], "x-ms-correlation-request-id": [ - "5d3a417e-27fb-4fe9-86e3-8a0af5920450" + "56295876-517b-47ce-a7ad-0f6155ac65c7" ], "Azure-AsyncNotification": [ "Enabled" ], "x-ms-arm-service-request-id": [ - "e7cb74a1-17b5-4ab1-9d15-2590b215eaac" + "9d25db8a-6af8-4ef0-a13a-ca491f41c613" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -981,13 +981,13 @@ "1198" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T210256Z:5d3a417e-27fb-4fe9-86e3-8a0af5920450" + "JIOINDIAWEST:20220517T040529Z:56295876-517b-47ce-a7ad-0f6155ac65c7" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 24 Feb 2022 21:02:55 GMT" + "Tue, 17 May 2022 04:05:28 GMT" ], "Content-Length": [ "662" @@ -999,23 +999,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"pstestpublicdnsdbbbe1\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Network/publicIPAddresses/pstestpublicdnsdbbbe1\",\r\n \"etag\": \"W/\\\"098fb855-078b-46d1-a2b8-5c21fb5152c9\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"fdb18084-b870-47f2-80a9-dbc5cf0569ad\",\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 \"tier\": \"Regional\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"pstestpublicdns9e3871\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.Network/publicIPAddresses/pstestpublicdns9e3871\",\r\n \"etag\": \"W/\\\"87c1e37b-5fa7-4f44-bf39-60feef7648da\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"5fa74018-34fb-4533-9eee-40e330bb623c\",\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 \"tier\": \"Regional\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Network/locations/southeastasia/operations/a5ff7056-f1f1-432f-936b-311d52b019d8?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2E1ZmY3MDU2LWYxZjEtNDMyZi05MzZiLTMxMWQ1MmIwMTlkOD9hcGktdmVyc2lvbj0yMDIxLTA1LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Network/locations/southeastasia/operations/da422b6d-7d20-4f03-8d56-b038d7bc6d77?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2RhNDIyYjZkLTdkMjAtNGYwMy04ZDU2LWIwMzhkN2JjNmQ3Nz9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d91fec73-d299-431f-8ba0-d9cfeb94d267" + "1633d0ed-33e3-4360-b73d-047402b9c139" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ] }, "ResponseHeaders": { @@ -1026,13 +1026,13 @@ "no-cache" ], "x-ms-request-id": [ - "ff34fe9b-de4c-4878-927f-c197375ea16b" + "c874340f-a327-4e79-9ade-3a21c82d315b" ], "x-ms-correlation-request-id": [ - "3110216f-3d33-474c-8b84-e6c4c81946e6" + "e0859b5c-01fa-4438-b803-090e6fbf6cd9" ], "x-ms-arm-service-request-id": [ - "29cf7bca-738c-4215-b147-f20b0e414945" + "e3ff47cc-b7f0-4531-9a53-0ea2c973d3dd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1045,13 +1045,13 @@ "11994" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T210257Z:3110216f-3d33-474c-8b84-e6c4c81946e6" + "JIOINDIAWEST:20220517T040530Z:e0859b5c-01fa-4438-b803-090e6fbf6cd9" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 24 Feb 2022 21:02:57 GMT" + "Tue, 17 May 2022 04:05:30 GMT" ], "Content-Length": [ "29" @@ -1067,22 +1067,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGdbbbe1?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZGJiYmUyY2EvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtTZWN1cml0eUdyb3Vwcy9QU1Rlc3ROU0dkYmJiZTE/YXBpLXZlcnNpb249MjAyMS0wNS0wMQ==", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG9e3871?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOWUzODczMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtTZWN1cml0eUdyb3Vwcy9QU1Rlc3ROU0c5ZTM4NzE/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c3fac711-4325-4bd6-8a29-18a624de1429" + "d5a43145-b66d-4b54-b580-183313617bb8" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ] }, "ResponseHeaders": { @@ -1096,13 +1096,13 @@ "gateway" ], "x-ms-request-id": [ - "99dd77d7-4a08-4503-ac39-e92b69352b8d" + "0987a252-565e-446f-ac36-e61c0fb0f11a" ], "x-ms-correlation-request-id": [ - "99dd77d7-4a08-4503-ac39-e92b69352b8d" + "0987a252-565e-446f-ac36-e61c0fb0f11a" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T210258Z:99dd77d7-4a08-4503-ac39-e92b69352b8d" + "JIOINDIAWEST:20220517T040531Z:0987a252-565e-446f-ac36-e61c0fb0f11a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1111,7 +1111,7 @@ "nosniff" ], "Date": [ - "Thu, 24 Feb 2022 21:02:58 GMT" + "Tue, 17 May 2022 04:05:30 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1123,23 +1123,23 @@ "243" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/networkSecurityGroups/PSTestNSGdbbbe1' under resource group 'PSTestRGdbbbe2ca' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/networkSecurityGroups/PSTestNSG9e3871' under resource group 'PSTestRG9e387301' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGdbbbe1?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZGJiYmUyY2EvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtTZWN1cml0eUdyb3Vwcy9QU1Rlc3ROU0dkYmJiZTE/YXBpLXZlcnNpb249MjAyMS0wNS0wMQ==", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG9e3871?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOWUzODczMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtTZWN1cml0eUdyb3Vwcy9QU1Rlc3ROU0c5ZTM4NzE/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c3fac711-4325-4bd6-8a29-18a624de1429" + "d5a43145-b66d-4b54-b580-183313617bb8" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ] }, "ResponseHeaders": { @@ -1150,16 +1150,16 @@ "no-cache" ], "ETag": [ - "W/\"8b22f7f1-ce35-49ea-9738-2b6ef24e1b12\"" + "W/\"73d01813-3760-4617-8418-9346d0e28312\"" ], "x-ms-request-id": [ - "86c325cd-0362-4b2b-8473-a86297ae147e" + "13d86573-d02c-48fd-9bb5-10635a47be6c" ], "x-ms-correlation-request-id": [ - "c875fa4c-7a08-43fd-8bc6-d33d1355dc6b" + "184f45f8-ce6d-4677-b81f-4e42f459bdd5" ], "x-ms-arm-service-request-id": [ - "6f0596f5-0b9c-4f71-ae11-adc557f49772" + "a53b18d7-c278-489d-9f11-ee9a9ffc4db5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1172,13 +1172,13 @@ "11989" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T210306Z:c875fa4c-7a08-43fd-8bc6-d33d1355dc6b" + "JIOINDIAWEST:20220517T040536Z:184f45f8-ce6d-4677-b81f-4e42f459bdd5" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 24 Feb 2022 21:03:06 GMT" + "Tue, 17 May 2022 04:05:36 GMT" ], "Content-Length": [ "8475" @@ -1190,26 +1190,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"PSTestNSGdbbbe1\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGdbbbe1\",\r\n \"etag\": \"W/\\\"8b22f7f1-ce35-49ea-9738-2b6ef24e1b12\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"44bdb0ed-8e34-4765-ab80-a83008b91db3\",\r\n \"securityRules\": [\r\n {\r\n \"name\": \"PSTestNSGRuleRDPdbbbe1\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGdbbbe1/securityRules/PSTestNSGRuleRDPdbbbe1\",\r\n \"etag\": \"W/\\\"8b22f7f1-ce35-49ea-9738-2b6ef24e1b12\\\"\",\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\": \"PSTestNSGRuleWebdbbbe1\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGdbbbe1/securityRules/PSTestNSGRuleWebdbbbe1\",\r\n \"etag\": \"W/\\\"8b22f7f1-ce35-49ea-9738-2b6ef24e1b12\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGdbbbe1/defaultSecurityRules/AllowVnetInBound\",\r\n \"etag\": \"W/\\\"8b22f7f1-ce35-49ea-9738-2b6ef24e1b12\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGdbbbe1/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\r\n \"etag\": \"W/\\\"8b22f7f1-ce35-49ea-9738-2b6ef24e1b12\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGdbbbe1/defaultSecurityRules/DenyAllInBound\",\r\n \"etag\": \"W/\\\"8b22f7f1-ce35-49ea-9738-2b6ef24e1b12\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGdbbbe1/defaultSecurityRules/AllowVnetOutBound\",\r\n \"etag\": \"W/\\\"8b22f7f1-ce35-49ea-9738-2b6ef24e1b12\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGdbbbe1/defaultSecurityRules/AllowInternetOutBound\",\r\n \"etag\": \"W/\\\"8b22f7f1-ce35-49ea-9738-2b6ef24e1b12\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGdbbbe1/defaultSecurityRules/DenyAllOutBound\",\r\n \"etag\": \"W/\\\"8b22f7f1-ce35-49ea-9738-2b6ef24e1b12\\\"\",\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}", + "ResponseBody": "{\r\n \"name\": \"PSTestNSG9e3871\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG9e3871\",\r\n \"etag\": \"W/\\\"73d01813-3760-4617-8418-9346d0e28312\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"afe72342-8499-4b41-9cc4-51ddce2922d2\",\r\n \"securityRules\": [\r\n {\r\n \"name\": \"PSTestNSGRuleRDP9e3871\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG9e3871/securityRules/PSTestNSGRuleRDP9e3871\",\r\n \"etag\": \"W/\\\"73d01813-3760-4617-8418-9346d0e28312\\\"\",\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\": \"PSTestNSGRuleWeb9e3871\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG9e3871/securityRules/PSTestNSGRuleWeb9e3871\",\r\n \"etag\": \"W/\\\"73d01813-3760-4617-8418-9346d0e28312\\\"\",\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/PSTestRG9e387301/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG9e3871/defaultSecurityRules/AllowVnetInBound\",\r\n \"etag\": \"W/\\\"73d01813-3760-4617-8418-9346d0e28312\\\"\",\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/PSTestRG9e387301/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG9e3871/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\r\n \"etag\": \"W/\\\"73d01813-3760-4617-8418-9346d0e28312\\\"\",\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/PSTestRG9e387301/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG9e3871/defaultSecurityRules/DenyAllInBound\",\r\n \"etag\": \"W/\\\"73d01813-3760-4617-8418-9346d0e28312\\\"\",\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/PSTestRG9e387301/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG9e3871/defaultSecurityRules/AllowVnetOutBound\",\r\n \"etag\": \"W/\\\"73d01813-3760-4617-8418-9346d0e28312\\\"\",\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/PSTestRG9e387301/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG9e3871/defaultSecurityRules/AllowInternetOutBound\",\r\n \"etag\": \"W/\\\"73d01813-3760-4617-8418-9346d0e28312\\\"\",\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/PSTestRG9e387301/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG9e3871/defaultSecurityRules/DenyAllOutBound\",\r\n \"etag\": \"W/\\\"73d01813-3760-4617-8418-9346d0e28312\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGdbbbe1?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZGJiYmUyY2EvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtTZWN1cml0eUdyb3Vwcy9QU1Rlc3ROU0dkYmJiZTE/YXBpLXZlcnNpb249MjAyMS0wNS0wMQ==", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG9e3871?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOWUzODczMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtTZWN1cml0eUdyb3Vwcy9QU1Rlc3ROU0c5ZTM4NzE/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c3fac711-4325-4bd6-8a29-18a624de1429" + "d5a43145-b66d-4b54-b580-183313617bb8" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ] }, "ResponseHeaders": { @@ -1220,16 +1220,16 @@ "no-cache" ], "ETag": [ - "W/\"8b22f7f1-ce35-49ea-9738-2b6ef24e1b12\"" + "W/\"73d01813-3760-4617-8418-9346d0e28312\"" ], "x-ms-request-id": [ - "464fe2ca-85ce-4dda-a8bb-050de1860e3c" + "fb3eaeb8-ca25-4056-8118-898ecc5897e1" ], "x-ms-correlation-request-id": [ - "eea270dc-01e4-4d3e-b454-9a311fcbf5a4" + "2a42975d-67a2-43ee-97f4-a6bc1f0c9bfb" ], "x-ms-arm-service-request-id": [ - "062f3232-3b91-4edb-9130-0a33d3ea637c" + "a13a9502-64b8-4ac0-9ad8-e7b88c4c3fdc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1242,13 +1242,13 @@ "11988" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T210306Z:eea270dc-01e4-4d3e-b454-9a311fcbf5a4" + "JIOINDIAWEST:20220517T040537Z:2a42975d-67a2-43ee-97f4-a6bc1f0c9bfb" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 24 Feb 2022 21:03:06 GMT" + "Tue, 17 May 2022 04:05:36 GMT" ], "Content-Length": [ "8475" @@ -1260,26 +1260,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"PSTestNSGdbbbe1\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGdbbbe1\",\r\n \"etag\": \"W/\\\"8b22f7f1-ce35-49ea-9738-2b6ef24e1b12\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"44bdb0ed-8e34-4765-ab80-a83008b91db3\",\r\n \"securityRules\": [\r\n {\r\n \"name\": \"PSTestNSGRuleRDPdbbbe1\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGdbbbe1/securityRules/PSTestNSGRuleRDPdbbbe1\",\r\n \"etag\": \"W/\\\"8b22f7f1-ce35-49ea-9738-2b6ef24e1b12\\\"\",\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\": \"PSTestNSGRuleWebdbbbe1\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGdbbbe1/securityRules/PSTestNSGRuleWebdbbbe1\",\r\n \"etag\": \"W/\\\"8b22f7f1-ce35-49ea-9738-2b6ef24e1b12\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGdbbbe1/defaultSecurityRules/AllowVnetInBound\",\r\n \"etag\": \"W/\\\"8b22f7f1-ce35-49ea-9738-2b6ef24e1b12\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGdbbbe1/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\r\n \"etag\": \"W/\\\"8b22f7f1-ce35-49ea-9738-2b6ef24e1b12\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGdbbbe1/defaultSecurityRules/DenyAllInBound\",\r\n \"etag\": \"W/\\\"8b22f7f1-ce35-49ea-9738-2b6ef24e1b12\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGdbbbe1/defaultSecurityRules/AllowVnetOutBound\",\r\n \"etag\": \"W/\\\"8b22f7f1-ce35-49ea-9738-2b6ef24e1b12\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGdbbbe1/defaultSecurityRules/AllowInternetOutBound\",\r\n \"etag\": \"W/\\\"8b22f7f1-ce35-49ea-9738-2b6ef24e1b12\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGdbbbe1/defaultSecurityRules/DenyAllOutBound\",\r\n \"etag\": \"W/\\\"8b22f7f1-ce35-49ea-9738-2b6ef24e1b12\\\"\",\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}", + "ResponseBody": "{\r\n \"name\": \"PSTestNSG9e3871\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG9e3871\",\r\n \"etag\": \"W/\\\"73d01813-3760-4617-8418-9346d0e28312\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"afe72342-8499-4b41-9cc4-51ddce2922d2\",\r\n \"securityRules\": [\r\n {\r\n \"name\": \"PSTestNSGRuleRDP9e3871\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG9e3871/securityRules/PSTestNSGRuleRDP9e3871\",\r\n \"etag\": \"W/\\\"73d01813-3760-4617-8418-9346d0e28312\\\"\",\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\": \"PSTestNSGRuleWeb9e3871\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG9e3871/securityRules/PSTestNSGRuleWeb9e3871\",\r\n \"etag\": \"W/\\\"73d01813-3760-4617-8418-9346d0e28312\\\"\",\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/PSTestRG9e387301/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG9e3871/defaultSecurityRules/AllowVnetInBound\",\r\n \"etag\": \"W/\\\"73d01813-3760-4617-8418-9346d0e28312\\\"\",\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/PSTestRG9e387301/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG9e3871/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\r\n \"etag\": \"W/\\\"73d01813-3760-4617-8418-9346d0e28312\\\"\",\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/PSTestRG9e387301/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG9e3871/defaultSecurityRules/DenyAllInBound\",\r\n \"etag\": \"W/\\\"73d01813-3760-4617-8418-9346d0e28312\\\"\",\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/PSTestRG9e387301/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG9e3871/defaultSecurityRules/AllowVnetOutBound\",\r\n \"etag\": \"W/\\\"73d01813-3760-4617-8418-9346d0e28312\\\"\",\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/PSTestRG9e387301/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG9e3871/defaultSecurityRules/AllowInternetOutBound\",\r\n \"etag\": \"W/\\\"73d01813-3760-4617-8418-9346d0e28312\\\"\",\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/PSTestRG9e387301/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG9e3871/defaultSecurityRules/DenyAllOutBound\",\r\n \"etag\": \"W/\\\"73d01813-3760-4617-8418-9346d0e28312\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGdbbbe1?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZGJiYmUyY2EvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtTZWN1cml0eUdyb3Vwcy9QU1Rlc3ROU0dkYmJiZTE/YXBpLXZlcnNpb249MjAyMS0wNS0wMQ==", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG9e3871?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOWUzODczMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtTZWN1cml0eUdyb3Vwcy9QU1Rlc3ROU0c5ZTM4NzE/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==", "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\": \"PSTestNSGRuleRDPdbbbe1\"\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\": \"PSTestNSGRuleWebdbbbe1\"\r\n }\r\n ]\r\n },\r\n \"location\": \"southeastasia\"\r\n}", + "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\": \"PSTestNSGRuleRDP9e3871\"\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\": \"PSTestNSGRuleWeb9e3871\"\r\n }\r\n ]\r\n },\r\n \"location\": \"southeastasia\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "c3fac711-4325-4bd6-8a29-18a624de1429" + "d5a43145-b66d-4b54-b580-183313617bb8" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1299,19 +1299,19 @@ "3" ], "x-ms-request-id": [ - "530be016-3baf-49e4-b808-2d002cf91b2d" + "29e5d475-b376-45fe-8eed-0dfd16643b9e" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Network/locations/southeastasia/operations/530be016-3baf-49e4-b808-2d002cf91b2d?api-version=2021-05-01" + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Network/locations/southeastasia/operations/29e5d475-b376-45fe-8eed-0dfd16643b9e?api-version=2021-08-01" ], "x-ms-correlation-request-id": [ - "79709227-8a29-4639-b8f6-142084548f44" + "f7d6b4bd-39dd-4391-a0aa-3e83901f43e1" ], "Azure-AsyncNotification": [ "Enabled" ], "x-ms-arm-service-request-id": [ - "9d1b8989-4512-4c00-89f9-008a87691d4c" + "5d898186-2b6e-404a-8026-896112488f9d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1324,13 +1324,13 @@ "1197" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T210302Z:79709227-8a29-4639-b8f6-142084548f44" + "JIOINDIAWEST:20220517T040533Z:f7d6b4bd-39dd-4391-a0aa-3e83901f43e1" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 24 Feb 2022 21:03:02 GMT" + "Tue, 17 May 2022 04:05:33 GMT" ], "Content-Length": [ "8466" @@ -1342,23 +1342,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"PSTestNSGdbbbe1\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGdbbbe1\",\r\n \"etag\": \"W/\\\"65e9daa7-b66f-43a0-9f6b-f8501b3f77f6\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"44bdb0ed-8e34-4765-ab80-a83008b91db3\",\r\n \"securityRules\": [\r\n {\r\n \"name\": \"PSTestNSGRuleRDPdbbbe1\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGdbbbe1/securityRules/PSTestNSGRuleRDPdbbbe1\",\r\n \"etag\": \"W/\\\"65e9daa7-b66f-43a0-9f6b-f8501b3f77f6\\\"\",\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\": \"PSTestNSGRuleWebdbbbe1\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGdbbbe1/securityRules/PSTestNSGRuleWebdbbbe1\",\r\n \"etag\": \"W/\\\"65e9daa7-b66f-43a0-9f6b-f8501b3f77f6\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGdbbbe1/defaultSecurityRules/AllowVnetInBound\",\r\n \"etag\": \"W/\\\"65e9daa7-b66f-43a0-9f6b-f8501b3f77f6\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGdbbbe1/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\r\n \"etag\": \"W/\\\"65e9daa7-b66f-43a0-9f6b-f8501b3f77f6\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGdbbbe1/defaultSecurityRules/DenyAllInBound\",\r\n \"etag\": \"W/\\\"65e9daa7-b66f-43a0-9f6b-f8501b3f77f6\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGdbbbe1/defaultSecurityRules/AllowVnetOutBound\",\r\n \"etag\": \"W/\\\"65e9daa7-b66f-43a0-9f6b-f8501b3f77f6\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGdbbbe1/defaultSecurityRules/AllowInternetOutBound\",\r\n \"etag\": \"W/\\\"65e9daa7-b66f-43a0-9f6b-f8501b3f77f6\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGdbbbe1/defaultSecurityRules/DenyAllOutBound\",\r\n \"etag\": \"W/\\\"65e9daa7-b66f-43a0-9f6b-f8501b3f77f6\\\"\",\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}", + "ResponseBody": "{\r\n \"name\": \"PSTestNSG9e3871\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG9e3871\",\r\n \"etag\": \"W/\\\"d2faada4-055c-4802-b507-ae4bd1876a18\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"afe72342-8499-4b41-9cc4-51ddce2922d2\",\r\n \"securityRules\": [\r\n {\r\n \"name\": \"PSTestNSGRuleRDP9e3871\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG9e3871/securityRules/PSTestNSGRuleRDP9e3871\",\r\n \"etag\": \"W/\\\"d2faada4-055c-4802-b507-ae4bd1876a18\\\"\",\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\": \"PSTestNSGRuleWeb9e3871\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG9e3871/securityRules/PSTestNSGRuleWeb9e3871\",\r\n \"etag\": \"W/\\\"d2faada4-055c-4802-b507-ae4bd1876a18\\\"\",\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/PSTestRG9e387301/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG9e3871/defaultSecurityRules/AllowVnetInBound\",\r\n \"etag\": \"W/\\\"d2faada4-055c-4802-b507-ae4bd1876a18\\\"\",\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/PSTestRG9e387301/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG9e3871/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\r\n \"etag\": \"W/\\\"d2faada4-055c-4802-b507-ae4bd1876a18\\\"\",\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/PSTestRG9e387301/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG9e3871/defaultSecurityRules/DenyAllInBound\",\r\n \"etag\": \"W/\\\"d2faada4-055c-4802-b507-ae4bd1876a18\\\"\",\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/PSTestRG9e387301/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG9e3871/defaultSecurityRules/AllowVnetOutBound\",\r\n \"etag\": \"W/\\\"d2faada4-055c-4802-b507-ae4bd1876a18\\\"\",\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/PSTestRG9e387301/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG9e3871/defaultSecurityRules/AllowInternetOutBound\",\r\n \"etag\": \"W/\\\"d2faada4-055c-4802-b507-ae4bd1876a18\\\"\",\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/PSTestRG9e387301/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG9e3871/defaultSecurityRules/DenyAllOutBound\",\r\n \"etag\": \"W/\\\"d2faada4-055c-4802-b507-ae4bd1876a18\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Network/locations/southeastasia/operations/530be016-3baf-49e4-b808-2d002cf91b2d?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzUzMGJlMDE2LTNiYWYtNDllNC1iODA4LTJkMDAyY2Y5MWIyZD9hcGktdmVyc2lvbj0yMDIxLTA1LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Network/locations/southeastasia/operations/29e5d475-b376-45fe-8eed-0dfd16643b9e?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzI5ZTVkNDc1LWIzNzYtNDVmZS04ZWVkLTBkZmQxNjY0M2I5ZT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c3fac711-4325-4bd6-8a29-18a624de1429" + "d5a43145-b66d-4b54-b580-183313617bb8" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ] }, "ResponseHeaders": { @@ -1369,13 +1369,13 @@ "no-cache" ], "x-ms-request-id": [ - "a92f1995-2d25-4829-966c-c0ec94b0b4a5" + "2d28a5c8-53d5-449e-bfc6-6ace51496f19" ], "x-ms-correlation-request-id": [ - "d5bd2efa-4404-4bfa-9ecb-1fd8f893ef78" + "a497202b-b6f8-4100-9096-4ab3c5d2f68f" ], "x-ms-arm-service-request-id": [ - "a4089ca9-347f-47f4-8499-553acf628bd1" + "dfce4c14-7bee-4164-ba6b-ca546ae1d908" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1388,13 +1388,13 @@ "11990" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T210306Z:d5bd2efa-4404-4bfa-9ecb-1fd8f893ef78" + "JIOINDIAWEST:20220517T040536Z:a497202b-b6f8-4100-9096-4ab3c5d2f68f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 24 Feb 2022 21:03:05 GMT" + "Tue, 17 May 2022 04:05:36 GMT" ], "Content-Length": [ "29" @@ -1410,22 +1410,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Network/networkInterfaces/PSTestNICdbbbe1?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZGJiYmUyY2EvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL1BTVGVzdE5JQ2RiYmJlMT9hcGktdmVyc2lvbj0yMDIxLTA1LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.Network/networkInterfaces/PSTestNIC9e3871?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOWUzODczMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL1BTVGVzdE5JQzllMzg3MT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ee330e46-91e3-4630-8299-cf9173f032c0" + "271cf967-cc56-4c64-9360-5111e565ef54" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ] }, "ResponseHeaders": { @@ -1439,13 +1439,13 @@ "gateway" ], "x-ms-request-id": [ - "cd01009b-ee3f-471f-8512-2d6110523bd3" + "bc205afb-b400-4cb4-8f73-830a1a8c31f0" ], "x-ms-correlation-request-id": [ - "cd01009b-ee3f-471f-8512-2d6110523bd3" + "bc205afb-b400-4cb4-8f73-830a1a8c31f0" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T210307Z:cd01009b-ee3f-471f-8512-2d6110523bd3" + "JIOINDIAWEST:20220517T040537Z:bc205afb-b400-4cb4-8f73-830a1a8c31f0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1454,7 +1454,7 @@ "nosniff" ], "Date": [ - "Thu, 24 Feb 2022 21:03:06 GMT" + "Tue, 17 May 2022 04:05:37 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1466,23 +1466,23 @@ "239" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/networkInterfaces/PSTestNICdbbbe1' under resource group 'PSTestRGdbbbe2ca' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/networkInterfaces/PSTestNIC9e3871' under resource group 'PSTestRG9e387301' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Network/networkInterfaces/PSTestNICdbbbe1?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZGJiYmUyY2EvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL1BTVGVzdE5JQ2RiYmJlMT9hcGktdmVyc2lvbj0yMDIxLTA1LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.Network/networkInterfaces/PSTestNIC9e3871?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOWUzODczMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL1BTVGVzdE5JQzllMzg3MT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ee330e46-91e3-4630-8299-cf9173f032c0" + "271cf967-cc56-4c64-9360-5111e565ef54" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ] }, "ResponseHeaders": { @@ -1493,16 +1493,16 @@ "no-cache" ], "ETag": [ - "W/\"0fa6d553-b2c8-41bf-801b-2b82ba777b7b\"" + "W/\"749ada40-75cd-4c2b-80f9-8321deaea0d5\"" ], "x-ms-request-id": [ - "0ace32d2-345b-4252-9a85-5ba6d7eef8a8" + "b867ccb0-034a-41c6-8d43-e8b86c33cd87" ], "x-ms-correlation-request-id": [ - "12a4fa80-74ba-4765-a5f8-c05c55c520c9" + "cd865c92-1e47-4d2e-b95d-de492bcbd41e" ], "x-ms-arm-service-request-id": [ - "a5861b67-75a3-452a-8b2e-7306dd556909" + "b4bb135d-3d78-4372-876a-2c9f54154131" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1515,16 +1515,16 @@ "11986" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T210311Z:12a4fa80-74ba-4765-a5f8-c05c55c520c9" + "JIOINDIAWEST:20220517T040539Z:cd865c92-1e47-4d2e-b95d-de492bcbd41e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 24 Feb 2022 21:03:10 GMT" + "Tue, 17 May 2022 04:05:39 GMT" ], "Content-Length": [ - "2143" + "2165" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1533,26 +1533,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"PSTestNICdbbbe1\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Network/networkInterfaces/PSTestNICdbbbe1\",\r\n \"etag\": \"W/\\\"0fa6d553-b2c8-41bf-801b-2b82ba777b7b\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"4a5946d5-39b5-418a-b6b4-342dd0cc63b0\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Network/networkInterfaces/PSTestNICdbbbe1/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"0fa6d553-b2c8-41bf-801b-2b82ba777b7b\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Network/publicIPAddresses/pstestpublicdnsdbbbe1\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Network/virtualNetworks/PSTestVNETdbbbe1/subnets/PSTestSNCdbbbe1\"\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\": \"rjyl5mlex0quvlh554oy3m4oub.ix.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"vnetEncryptionSupported\": false,\r\n \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGdbbbe1\"\r\n },\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": [],\r\n \"nicType\": \"Standard\"\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"PSTestNIC9e3871\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.Network/networkInterfaces/PSTestNIC9e3871\",\r\n \"etag\": \"W/\\\"749ada40-75cd-4c2b-80f9-8321deaea0d5\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"ff31a41d-ea74-488b-b396-2bb0991dbdf2\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.Network/networkInterfaces/PSTestNIC9e3871/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"749ada40-75cd-4c2b-80f9-8321deaea0d5\\\"\",\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/PSTestRG9e387301/providers/Microsoft.Network/publicIPAddresses/pstestpublicdns9e3871\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.Network/virtualNetworks/PSTestVNET9e3871/subnets/PSTestSNC9e3871\"\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\": \"avmsnrmwgkouvcqutno5ejpchc.ix.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"vnetEncryptionSupported\": false,\r\n \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG9e3871\"\r\n },\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": [],\r\n \"nicType\": \"Standard\"\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"kind\": \"Regular\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Network/networkInterfaces/PSTestNICdbbbe1?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZGJiYmUyY2EvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL1BTVGVzdE5JQ2RiYmJlMT9hcGktdmVyc2lvbj0yMDIxLTA1LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.Network/networkInterfaces/PSTestNIC9e3871?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOWUzODczMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL1BTVGVzdE5JQzllMzg3MT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ee330e46-91e3-4630-8299-cf9173f032c0" + "271cf967-cc56-4c64-9360-5111e565ef54" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ] }, "ResponseHeaders": { @@ -1563,16 +1563,16 @@ "no-cache" ], "ETag": [ - "W/\"0fa6d553-b2c8-41bf-801b-2b82ba777b7b\"" + "W/\"749ada40-75cd-4c2b-80f9-8321deaea0d5\"" ], "x-ms-request-id": [ - "1ee9ad88-2310-448f-bc4a-d8e45cea46f9" + "00af2d42-a477-4d32-8815-7328681e152c" ], "x-ms-correlation-request-id": [ - "f611c342-240f-4315-9c4d-4ec6ff1d9e46" + "73c047eb-9706-45d6-9f93-39c64961eaac" ], "x-ms-arm-service-request-id": [ - "88749f2a-8760-420e-a72c-5cb858e396ff" + "d25c5837-04bc-43f5-95e7-2fcf0df4789f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1585,16 +1585,16 @@ "11985" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T210311Z:f611c342-240f-4315-9c4d-4ec6ff1d9e46" + "JIOINDIAWEST:20220517T040540Z:73c047eb-9706-45d6-9f93-39c64961eaac" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 24 Feb 2022 21:03:10 GMT" + "Tue, 17 May 2022 04:05:39 GMT" ], "Content-Length": [ - "2143" + "2165" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1603,26 +1603,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"PSTestNICdbbbe1\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Network/networkInterfaces/PSTestNICdbbbe1\",\r\n \"etag\": \"W/\\\"0fa6d553-b2c8-41bf-801b-2b82ba777b7b\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"4a5946d5-39b5-418a-b6b4-342dd0cc63b0\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Network/networkInterfaces/PSTestNICdbbbe1/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"0fa6d553-b2c8-41bf-801b-2b82ba777b7b\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Network/publicIPAddresses/pstestpublicdnsdbbbe1\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Network/virtualNetworks/PSTestVNETdbbbe1/subnets/PSTestSNCdbbbe1\"\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\": \"rjyl5mlex0quvlh554oy3m4oub.ix.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"vnetEncryptionSupported\": false,\r\n \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGdbbbe1\"\r\n },\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": [],\r\n \"nicType\": \"Standard\"\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"PSTestNIC9e3871\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.Network/networkInterfaces/PSTestNIC9e3871\",\r\n \"etag\": \"W/\\\"749ada40-75cd-4c2b-80f9-8321deaea0d5\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"ff31a41d-ea74-488b-b396-2bb0991dbdf2\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.Network/networkInterfaces/PSTestNIC9e3871/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"749ada40-75cd-4c2b-80f9-8321deaea0d5\\\"\",\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/PSTestRG9e387301/providers/Microsoft.Network/publicIPAddresses/pstestpublicdns9e3871\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.Network/virtualNetworks/PSTestVNET9e3871/subnets/PSTestSNC9e3871\"\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\": \"avmsnrmwgkouvcqutno5ejpchc.ix.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"vnetEncryptionSupported\": false,\r\n \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG9e3871\"\r\n },\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": [],\r\n \"nicType\": \"Standard\"\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"kind\": \"Regular\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Network/networkInterfaces/PSTestNICdbbbe1?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZGJiYmUyY2EvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL1BTVGVzdE5JQ2RiYmJlMT9hcGktdmVyc2lvbj0yMDIxLTA1LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.Network/networkInterfaces/PSTestNIC9e3871?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOWUzODczMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL1BTVGVzdE5JQzllMzg3MT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"networkSecurityGroup\": {\r\n \"properties\": {\r\n \"securityRules\": []\r\n },\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGdbbbe1\",\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 \"applicationGatewayIpConfigurations\": []\r\n },\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Network/virtualNetworks/PSTestVNETdbbbe1/subnets/PSTestSNCdbbbe1\"\r\n },\r\n \"primary\": true,\r\n \"publicIPAddress\": {\r\n \"properties\": {\r\n \"ipTags\": []\r\n },\r\n \"zones\": [],\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Network/publicIPAddresses/pstestpublicdnsdbbbe1\",\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\": \"southeastasia\"\r\n}", + "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/PSTestRG9e387301/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG9e3871\",\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 \"applicationGatewayIpConfigurations\": []\r\n },\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.Network/virtualNetworks/PSTestVNET9e3871/subnets/PSTestSNC9e3871\"\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/PSTestRG9e387301/providers/Microsoft.Network/publicIPAddresses/pstestpublicdns9e3871\",\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\": \"southeastasia\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "ee330e46-91e3-4630-8299-cf9173f032c0" + "271cf967-cc56-4c64-9360-5111e565ef54" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1639,19 +1639,19 @@ "no-cache" ], "x-ms-request-id": [ - "8c75f3fa-5fc6-4d39-96f6-26c2022541b7" + "38333ae5-37dc-452f-81e2-a92bcd993935" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Network/locations/southeastasia/operations/8c75f3fa-5fc6-4d39-96f6-26c2022541b7?api-version=2021-05-01" + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Network/locations/southeastasia/operations/38333ae5-37dc-452f-81e2-a92bcd993935?api-version=2021-08-01" ], "x-ms-correlation-request-id": [ - "a5bc6e94-272c-4b88-a410-b9dbae507653" + "ca444baf-41b5-48a0-8a54-f2b7a8a93938" ], "Azure-AsyncNotification": [ "Enabled" ], "x-ms-arm-service-request-id": [ - "78cc795b-549b-4edf-bbcd-1caf85cecb76" + "622cf3ca-6e2c-441c-9ade-78d2d9e0237b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1664,16 +1664,16 @@ "1196" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T210310Z:a5bc6e94-272c-4b88-a410-b9dbae507653" + "JIOINDIAWEST:20220517T040539Z:ca444baf-41b5-48a0-8a54-f2b7a8a93938" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 24 Feb 2022 21:03:10 GMT" + "Tue, 17 May 2022 04:05:39 GMT" ], "Content-Length": [ - "2143" + "2165" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1682,26 +1682,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"PSTestNICdbbbe1\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Network/networkInterfaces/PSTestNICdbbbe1\",\r\n \"etag\": \"W/\\\"0fa6d553-b2c8-41bf-801b-2b82ba777b7b\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"4a5946d5-39b5-418a-b6b4-342dd0cc63b0\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Network/networkInterfaces/PSTestNICdbbbe1/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"0fa6d553-b2c8-41bf-801b-2b82ba777b7b\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Network/publicIPAddresses/pstestpublicdnsdbbbe1\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Network/virtualNetworks/PSTestVNETdbbbe1/subnets/PSTestSNCdbbbe1\"\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\": \"rjyl5mlex0quvlh554oy3m4oub.ix.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"vnetEncryptionSupported\": false,\r\n \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGdbbbe1\"\r\n },\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": [],\r\n \"nicType\": \"Standard\"\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"PSTestNIC9e3871\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.Network/networkInterfaces/PSTestNIC9e3871\",\r\n \"etag\": \"W/\\\"749ada40-75cd-4c2b-80f9-8321deaea0d5\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"ff31a41d-ea74-488b-b396-2bb0991dbdf2\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.Network/networkInterfaces/PSTestNIC9e3871/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"749ada40-75cd-4c2b-80f9-8321deaea0d5\\\"\",\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/PSTestRG9e387301/providers/Microsoft.Network/publicIPAddresses/pstestpublicdns9e3871\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.Network/virtualNetworks/PSTestVNET9e3871/subnets/PSTestSNC9e3871\"\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\": \"avmsnrmwgkouvcqutno5ejpchc.ix.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"vnetEncryptionSupported\": false,\r\n \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG9e3871\"\r\n },\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": [],\r\n \"nicType\": \"Standard\"\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"kind\": \"Regular\"\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Storage/checkNameAvailability?api-version=2021-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9jaGVja05hbWVBdmFpbGFiaWxpdHk/YXBpLXZlcnNpb249MjAyMS0wMi0wMQ==", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Storage/checkNameAvailability?api-version=2021-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9jaGVja05hbWVBdmFpbGFiaWxpdHk/YXBpLXZlcnNpb249MjAyMS0wMi0wMQ==", "RequestMethod": "POST", - "RequestBody": "{\r\n \"name\": \"tespstestpste022416030\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n}", + "RequestBody": "{\r\n \"name\": \"tespstestpste051709350\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "8d56546a-95e4-4a2e-9793-ce8cdb4d611c" + "7962ddbd-b113-4dea-b408-4a8701784462" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.PowerShell.Cmdlets.Compute.Helpers.Storage.StorageManagementClient/4.23.0" + "Microsoft.Azure.PowerShell.Cmdlets.Compute.Helpers.Storage.StorageManagementClient/4.26.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1718,7 +1718,7 @@ "no-cache" ], "x-ms-request-id": [ - "35ca7ffe-be58-4edc-a9dc-5273c928c8aa" + "79e79425-512c-45fe-a149-f14f2930656c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1730,16 +1730,16 @@ "11999" ], "x-ms-correlation-request-id": [ - "436a24c1-db9c-4ea2-9d73-2261aee576c2" + "464ba7fe-e8c9-4945-aa5e-b67810d45fde" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T210312Z:436a24c1-db9c-4ea2-9d73-2261aee576c2" + "WESTINDIA:20220517T040541Z:464ba7fe-e8c9-4945-aa5e-b67810d45fde" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 24 Feb 2022 21:03:11 GMT" + "Tue, 17 May 2022 04:05:41 GMT" ], "Content-Length": [ "22" @@ -1755,22 +1755,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Storage/checkNameAvailability?api-version=2021-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9jaGVja05hbWVBdmFpbGFiaWxpdHk/YXBpLXZlcnNpb249MjAyMS0wMi0wMQ==", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Storage/checkNameAvailability?api-version=2021-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9jaGVja05hbWVBdmFpbGFiaWxpdHk/YXBpLXZlcnNpb249MjAyMS0wMi0wMQ==", "RequestMethod": "POST", - "RequestBody": "{\r\n \"name\": \"tespstestpste022416070\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n}", + "RequestBody": "{\r\n \"name\": \"tespstestpste051709400\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "561ae606-3a8a-4182-8dc9-1d51bc11b4bb" + "be79c9fe-1f81-4fea-a836-2d25fe26c65c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.PowerShell.Cmdlets.Compute.Helpers.Storage.StorageManagementClient/4.23.0" + "Microsoft.Azure.PowerShell.Cmdlets.Compute.Helpers.Storage.StorageManagementClient/4.26.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1787,7 +1787,7 @@ "no-cache" ], "x-ms-request-id": [ - "7b1ae890-1d7c-4092-90d6-2b366f062102" + "16e7b9ae-d14d-4b80-9b80-3f575697b1d5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1796,19 +1796,19 @@ "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11984" ], "x-ms-correlation-request-id": [ - "08a3d3e8-1788-4168-9ffa-c423b188e752" + "2e6ee6f0-950f-477f-b709-323bdeb08e49" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T210800Z:08a3d3e8-1788-4168-9ffa-c423b188e752" + "JIOINDIAWEST:20220517T041037Z:2e6ee6f0-950f-477f-b709-323bdeb08e49" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 24 Feb 2022 21:08:00 GMT" + "Tue, 17 May 2022 04:10:37 GMT" ], "Content-Length": [ "22" @@ -1824,22 +1824,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Compute/virtualMachines/PSTestVMdbbbe1?api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZGJiYmUyY2EvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy9QU1Rlc3RWTWRiYmJlMT9hcGktdmVyc2lvbj0yMDIxLTExLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.Compute/virtualMachines/PSTestVM9e3871?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOWUzODczMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy9QU1Rlc3RWTTllMzg3MT9hcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D1_v2\"\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\": \"PSTestVMdbbbe1\",\r\n \"adminUsername\": \"demouser\",\r\n \"adminPassword\": \"dbbbe2ca-133Aa.\",\r\n \"windowsConfiguration\": {}\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Network/networkInterfaces/PSTestNICdbbbe1\"\r\n }\r\n ]\r\n }\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MabUsed\": \"Yes\",\r\n \"AutoShutDown\": \"No\",\r\n \"Purpose\": \"PSTest\",\r\n \"Owner\": \"sarath\",\r\n \"DeleteBy\": \"06-2022\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D1_v2\"\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\": \"PSTestVM9e3871\",\r\n \"adminUsername\": \"demouser\",\r\n \"adminPassword\": \"9e387301-0ccAa.\",\r\n \"windowsConfiguration\": {}\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.Network/networkInterfaces/PSTestNIC9e3871\"\r\n }\r\n ]\r\n }\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"AutoShutDown\": \"No\",\r\n \"Purpose\": \"PSTest\",\r\n \"DeleteBy\": \"06-2022\",\r\n \"Owner\": \"sarath\",\r\n \"MabUsed\": \"Yes\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "8d56546a-95e4-4a2e-9793-ce8cdb4d611c" + "7962ddbd-b113-4dea-b408-4a8701784462" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1859,19 +1859,19 @@ "10" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/southeastasia/operations/cdb4ddaa-23b8-4423-b3c4-69e00056806b?p=34dc709c-01b2-42c4-84a2-256a9734610d&api-version=2021-11-01" + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Compute/locations/southeastasia/operations/10ec8137-3cc3-4099-aaca-b765393efd4f?p=e484ceca-6435-4a7f-b125-3d82e6b12014&api-version=2021-11-01" ], "Azure-AsyncNotification": [ "Enabled" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/PutVM3Min;239,Microsoft.Compute/PutVM30Min;1199" + "Microsoft.Compute/PutVM3Min;239,Microsoft.Compute/PutVM30Min;1198" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "cdb4ddaa-23b8-4423-b3c4-69e00056806b" + "10ec8137-3cc3-4099-aaca-b765393efd4f" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -1881,19 +1881,19 @@ "1199" ], "x-ms-correlation-request-id": [ - "e91f49c1-8b14-4991-abc4-347b644884ba" + "ed07d621-60a2-4a50-8852-1d385cf02991" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T210322Z:e91f49c1-8b14-4991-abc4-347b644884ba" + "JIOINDIAWEST:20220517T040547Z:ed07d621-60a2-4a50-8852-1d385cf02991" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 24 Feb 2022 21:03:22 GMT" + "Tue, 17 May 2022 04:05:46 GMT" ], "Content-Length": [ - "1992" + "1921" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1902,23 +1902,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"PSTestVMdbbbe1\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Compute/virtualMachines/PSTestVMdbbbe1\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MabUsed\": \"Yes\",\r\n \"AutoShutDown\": \"No\",\r\n \"Purpose\": \"PSTest\",\r\n \"Owner\": \"sarath\",\r\n \"DeleteBy\": \"06-2022\",\r\n \"azsecpack\": \"nonprod\",\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": \"true\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"0245554f-3d3e-4750-a36c-5d10b06f89b3\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D1_v2\"\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.4946.220202\"\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 \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"PSTestVMdbbbe1\",\r\n \"adminUsername\": \"demouser\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"AutomaticByOS\",\r\n \"assessmentMode\": \"ImageDefault\"\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Network/networkInterfaces/PSTestNICdbbbe1\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\",\r\n \"timeCreated\": \"2022-02-24T16:03:20.6355369-05:00\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"PSTestVM9e3871\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.Compute/virtualMachines/PSTestVM9e3871\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"AutoShutDown\": \"No\",\r\n \"Purpose\": \"PSTest\",\r\n \"DeleteBy\": \"06-2022\",\r\n \"Owner\": \"sarath\",\r\n \"MabUsed\": \"Yes\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"9a0a52be-8703-478d-8abd-8e0a6f949a36\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D1_v2\"\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.5125.220505\"\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 \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"PSTestVM9e3871\",\r\n \"adminUsername\": \"demouser\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"AutomaticByOS\",\r\n \"assessmentMode\": \"ImageDefault\"\r\n },\r\n \"enableVMAgentPlatformUpdates\": false\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/PSTestRG9e387301/providers/Microsoft.Network/networkInterfaces/PSTestNIC9e3871\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\",\r\n \"timeCreated\": \"2022-05-17T09:35:46.555039+05:30\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/southeastasia/operations/cdb4ddaa-23b8-4423-b3c4-69e00056806b?p=34dc709c-01b2-42c4-84a2-256a9734610d&api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2NkYjRkZGFhLTIzYjgtNDQyMy1iM2M0LTY5ZTAwMDU2ODA2Yj9wPTM0ZGM3MDljLTAxYjItNDJjNC04NGEyLTI1NmE5NzM0NjEwZCZhcGktdmVyc2lvbj0yMDIxLTExLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Compute/locations/southeastasia/operations/10ec8137-3cc3-4099-aaca-b765393efd4f?p=e484ceca-6435-4a7f-b125-3d82e6b12014&api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzEwZWM4MTM3LTNjYzMtNDA5OS1hYWNhLWI3NjUzOTNlZmQ0Zj9wPWU0ODRjZWNhLTY0MzUtNGE3Zi1iMTI1LTNkODJlNmIxMjAxNCZhcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8d56546a-95e4-4a2e-9793-ce8cdb4d611c" + "7962ddbd-b113-4dea-b408-4a8701784462" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ] }, "ResponseHeaders": { @@ -1932,32 +1932,32 @@ "50" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperation3Min;14999,Microsoft.Compute/GetOperation30Min;29995" + "Microsoft.Compute/GetOperation3Min;14998,Microsoft.Compute/GetOperation30Min;29985" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "18bef964-e074-464b-81dc-6597e2dc3723" + "c7fee606-76ad-4cba-bbe1-81fa23c29ecd" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11997" ], "x-ms-correlation-request-id": [ - "a8bc8ae7-4eb4-47df-9e0f-e8d6cc2da6b3" + "529d4884-9181-4127-ba71-9a6116dfd660" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T210333Z:a8bc8ae7-4eb4-47df-9e0f-e8d6cc2da6b3" + "JIOINDIAWEST:20220517T040557Z:529d4884-9181-4127-ba71-9a6116dfd660" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 24 Feb 2022 21:03:33 GMT" + "Tue, 17 May 2022 04:05:57 GMT" ], "Content-Length": [ "134" @@ -1969,23 +1969,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-02-24T16:03:20.2605114-05:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"cdb4ddaa-23b8-4423-b3c4-69e00056806b\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2022-05-17T09:35:45.3206746+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"10ec8137-3cc3-4099-aaca-b765393efd4f\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/southeastasia/operations/cdb4ddaa-23b8-4423-b3c4-69e00056806b?p=34dc709c-01b2-42c4-84a2-256a9734610d&api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2NkYjRkZGFhLTIzYjgtNDQyMy1iM2M0LTY5ZTAwMDU2ODA2Yj9wPTM0ZGM3MDljLTAxYjItNDJjNC04NGEyLTI1NmE5NzM0NjEwZCZhcGktdmVyc2lvbj0yMDIxLTExLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Compute/locations/southeastasia/operations/10ec8137-3cc3-4099-aaca-b765393efd4f?p=e484ceca-6435-4a7f-b125-3d82e6b12014&api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzEwZWM4MTM3LTNjYzMtNDA5OS1hYWNhLWI3NjUzOTNlZmQ0Zj9wPWU0ODRjZWNhLTY0MzUtNGE3Zi1iMTI1LTNkODJlNmIxMjAxNCZhcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8d56546a-95e4-4a2e-9793-ce8cdb4d611c" + "7962ddbd-b113-4dea-b408-4a8701784462" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ] }, "ResponseHeaders": { @@ -1996,32 +1996,32 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperation3Min;14998,Microsoft.Compute/GetOperation30Min;29994" + "Microsoft.Compute/GetOperation3Min;14997,Microsoft.Compute/GetOperation30Min;29984" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "7c43aa4d-4524-4895-ab8b-3c70159045ab" + "e8ef300a-d1a9-4ec5-ae39-c0efea48f3c3" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11996" ], "x-ms-correlation-request-id": [ - "aecf52d7-60d3-42e6-a1cb-616bcba942b5" + "46d2fd99-9497-4a14-be21-2d144a599db5" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T210424Z:aecf52d7-60d3-42e6-a1cb-616bcba942b5" + "JIOINDIAWEST:20220517T040648Z:46d2fd99-9497-4a14-be21-2d144a599db5" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 24 Feb 2022 21:04:23 GMT" + "Tue, 17 May 2022 04:06:47 GMT" ], "Content-Length": [ "134" @@ -2033,23 +2033,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-02-24T16:03:20.2605114-05:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"cdb4ddaa-23b8-4423-b3c4-69e00056806b\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2022-05-17T09:35:45.3206746+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"10ec8137-3cc3-4099-aaca-b765393efd4f\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/southeastasia/operations/cdb4ddaa-23b8-4423-b3c4-69e00056806b?p=34dc709c-01b2-42c4-84a2-256a9734610d&api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2NkYjRkZGFhLTIzYjgtNDQyMy1iM2M0LTY5ZTAwMDU2ODA2Yj9wPTM0ZGM3MDljLTAxYjItNDJjNC04NGEyLTI1NmE5NzM0NjEwZCZhcGktdmVyc2lvbj0yMDIxLTExLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Compute/locations/southeastasia/operations/10ec8137-3cc3-4099-aaca-b765393efd4f?p=e484ceca-6435-4a7f-b125-3d82e6b12014&api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzEwZWM4MTM3LTNjYzMtNDA5OS1hYWNhLWI3NjUzOTNlZmQ0Zj9wPWU0ODRjZWNhLTY0MzUtNGE3Zi1iMTI1LTNkODJlNmIxMjAxNCZhcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8d56546a-95e4-4a2e-9793-ce8cdb4d611c" + "7962ddbd-b113-4dea-b408-4a8701784462" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ] }, "ResponseHeaders": { @@ -2060,32 +2060,32 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperation3Min;14997,Microsoft.Compute/GetOperation30Min;29993" + "Microsoft.Compute/GetOperation3Min;14997,Microsoft.Compute/GetOperation30Min;29983" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "7e1a3f85-dc25-44bc-b5aa-ec285d309651" + "e0d7986d-0d5b-41f1-80ae-1736eaf7bfd1" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11995" ], "x-ms-correlation-request-id": [ - "b6c5ba2c-1bc8-4c14-9ff3-383daa7ebfaf" + "f426ae28-b0f9-411a-933d-529d1ec70e4a" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T210514Z:b6c5ba2c-1bc8-4c14-9ff3-383daa7ebfaf" + "JIOINDIAWEST:20220517T040738Z:f426ae28-b0f9-411a-933d-529d1ec70e4a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 24 Feb 2022 21:05:14 GMT" + "Tue, 17 May 2022 04:07:37 GMT" ], "Content-Length": [ "184" @@ -2097,26 +2097,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-02-24T16:03:20.2605114-05:00\",\r\n \"endTime\": \"2022-02-24T16:04:41.8240781-05:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"cdb4ddaa-23b8-4423-b3c4-69e00056806b\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2022-05-17T09:35:45.3206746+05:30\",\r\n \"endTime\": \"2022-05-17T09:37:21.0384546+05:30\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"10ec8137-3cc3-4099-aaca-b765393efd4f\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/southeastasia/publishers?api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9wdWJsaXNoZXJzP2FwaS12ZXJzaW9uPTIwMjEtMTEtMDE=", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Compute/locations/southeastasia/publishers?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9wdWJsaXNoZXJzP2FwaS12ZXJzaW9uPTIwMjEtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8d56546a-95e4-4a2e-9793-ce8cdb4d611c" + "7962ddbd-b113-4dea-b408-4a8701784462" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ] }, "ResponseHeaders": { @@ -2130,32 +2130,32 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "8d76ef5d-2d17-4297-8566-4612360b9f5a_132860269053396621" + "8d76ef5d-2d17-4297-8566-4612360b9f5a_132927459943306577" ], "x-ms-request-id": [ - "1e64c65e-5813-4980-93cc-fcb62ed64801" + "7474fd2d-da51-47b2-a22f-6dab0f0d518f" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11993" ], "x-ms-correlation-request-id": [ - "a46c4f31-f52d-438d-9aea-73987962d717" + "10d37f01-bb8b-4bb6-8762-79a8558c37d1" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T210517Z:a46c4f31-f52d-438d-9aea-73987962d717" + "JIOINDIAWEST:20220517T040739Z:10d37f01-bb8b-4bb6-8762-79a8558c37d1" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 24 Feb 2022 21:05:16 GMT" + "Tue, 17 May 2022 04:07:38 GMT" ], "Content-Length": [ - "420268" + "429382" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2164,26 +2164,26 @@ "-1" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"128technology\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/128technology\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1580863854728\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1580863854728\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1583411303229\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1583411303229\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1583465680865\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1583465680865\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1585118004523\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1585118004523\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1597644262255\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1597644262255\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1598955805825\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1598955805825\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1601633765871\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1601633765871\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1602067018799\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1602067018799\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1604579683207\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1604579683207\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1615257339685\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1615257339685\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1615278064010\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1615278064010\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1615455873642\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1615455873642\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1624590941808\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1624590941808\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1e\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1e\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"2021ai\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/2021ai\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"247commercelimited1611063941652\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/247commercelimited1611063941652\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"3cx-pbx\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/3cx-pbx\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"42crunch1580391915541\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/42crunch1580391915541\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"4psa\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/4psa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"5nine-software-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/5nine-software-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"7isolutions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/7isolutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"a10networks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/a10networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"a10networks1596136698788\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/a10networks1596136698788\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"abiquo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/abiquo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"abzoobainc1598420455082\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/abzoobainc1598420455082\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"accedian\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/accedian\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"accelario1579101623356\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/accelario1579101623356\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"accellion\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/accellion\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"accessdata-group\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/accessdata-group\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"accops\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/accops\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aciworldwide\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aciworldwide\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Acronis\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Acronis\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Acronis.Backup\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Acronis.Backup\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"actian-corp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/actian-corp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"actian_matrix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/actian_matrix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"actifio\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/actifio\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"actiphy\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/actiphy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"actiphyinc1627974506603\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/actiphyinc1627974506603\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"activecountermeasuresinc1631039410073\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/activecountermeasuresinc1631039410073\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"activeeon\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/activeeon\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"activeops\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/activeops\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"adastracorporation-4028356\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/adastracorporation-4028356\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"adgs\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/adgs\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"advantech\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/advantech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"advantech-webaccess\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/advantech-webaccess\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"advantys\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/advantys\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aelf\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aelf\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aerospike\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aerospike\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"affinio\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/affinio\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"affirmednetworks1607630812999\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/affirmednetworks1607630812999\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ageniumscale1591804889317\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ageniumscale1591804889317\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aggregion-ltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aggregion-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"agiledialogssl1603791911858\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/agiledialogssl1603791911858\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"agolo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/agolo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ahnlabinc1584495174865\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ahnlabinc1584495174865\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ahnlabinc1584495467593\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ahnlabinc1584495467593\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"airalabrus\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/airalabrus\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aiscaler-cache-control-ddos-and-url-rewriting-\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aiscaler-cache-control-ddos-and-url-rewriting-\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aisundowninc1618516322959\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aisundowninc1618516322959\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"akamai-technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/akamai-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"akumina\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/akumina\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"akumo-software\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/akumo-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"al-tamamunitedtradingcontractingcompany\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/al-tamamunitedtradingcontractingcompany\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"alachisoft\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/alachisoft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"alertlogic\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/alertlogic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"AlertLogic.Extension\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/AlertLogic.Extension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"algolyticstechnologies1606475101268\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/algolyticstechnologies1606475101268\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"alicetrix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/alicetrix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"alienvault\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/alienvault\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"alldigital-brevity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/alldigital-brevity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"almalinux\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/almalinux\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"almalinuxosfoundation1628089859865\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/almalinuxosfoundation1628089859865\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"altair-engineering-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/altair-engineering-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"altamira-corporation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/altamira-corporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"alteryx\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/alteryx\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"altova\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/altova\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"amergint1593131356777\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/amergint1593131356777\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ansys\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ansys\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"antmedia\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/antmedia\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aod\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aod\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"apigee\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/apigee\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"appcara\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appcara\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"appcelerator\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appcelerator\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"appex-networks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appex-networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"appistry\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appistry\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"appiyo_technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appiyo_technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"appmint_inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appmint_inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"apps-4-rent\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/apps-4-rent\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"appscale-marketplace\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appscale-marketplace\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"appsurifyinc1606933045773\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appsurifyinc1606933045773\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aquaforest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aquaforest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aquantyinc1598537176913\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aquantyinc1598537176913\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aquaveollc1633710529908\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aquaveollc1633710529908\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"arabesque-group\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/arabesque-group\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"arangodb\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/arangodb\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aras\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aras\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"arcblock\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/arcblock\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"arcesb\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/arcesb\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"arcontechsolutionsprivatelimited1623841797810\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/arcontechsolutionsprivatelimited1623841797810\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"arcserveusallc-marketing\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/arcserveusallc-marketing\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"arista-networks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/arista-networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ariwontollc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ariwontollc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"array_networks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/array_networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"artificial-intelligence-techniques-sl\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/artificial-intelligence-techniques-sl\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"arubanetworks-4922182\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/arubanetworks-4922182\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"asdivertissementinc1617837708654\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/asdivertissementinc1617837708654\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"asigra\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/asigra\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aspentechnologyhq-1353108\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aspentechnologyhq-1353108\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"astadia-1148316\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/astadia-1148316\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"asterasoftware1581022936015\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/asterasoftware1581022936015\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"asyscosoftwarebv\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/asyscosoftwarebv\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ataccama\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ataccama\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"athinfosystems1641442221349\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/athinfosystems1641442221349\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"atlgaming\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/atlgaming\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"atmosera\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/atmosera\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"atomicorp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/atomicorp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"atomizedinc1587939464368\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/atomizedinc1587939464368\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"attunity_cloudbeam\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/attunity_cloudbeam\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"audiocodes\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/audiocodes\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"auraportal\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/auraportal\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"auriq-systems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/auriq-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"automateio1592914387888\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/automateio1592914387888\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"automationanywhere\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/automationanywhere\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"avanseus\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/avanseus\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"avepoint\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/avepoint\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aveva1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aveva1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"avi-networks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/avi-networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aviatrix-systems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aviatrix-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"awingu\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/awingu\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"axedrasag1590581171549\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/axedrasag1590581171549\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"axsguardablenv\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/axsguardablenv\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"axshco\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/axshco\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"axway\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/axway\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"axxana\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/axxana\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"azhpc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/azhpc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"azul\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/azul\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"azure-dockit\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/azure-dockit\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"azurecyclecloud\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/azurecyclecloud\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"AzureDatabricks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/AzureDatabricks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"azureopenshift\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/azureopenshift\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"AzureRT.PIR.Synthetics.ProdTest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/AzureRT.PIR.Synthetics.ProdTest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"AzureRT.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/AzureRT.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"azuretesting\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/azuretesting\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"azuretesting2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/azuretesting2\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"azuretesting3\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/azuretesting3\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"AzureTools1type\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/AzureTools1type\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"baas-techbureau\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/baas-techbureau\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"baffle-io\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/baffle-io\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"balabit\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/balabit\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"barracudanetworks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/barracudanetworks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"basho\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/basho\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"batch\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/batch\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bayware\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bayware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bdy\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bdy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"belindaczsro1588885355210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/belindaczsro1588885355210\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bellsoft1582871421940\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bellsoft1582871421940\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"betsol\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/betsol\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"beyondtrust\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/beyondtrust\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bi-builders-as\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bi-builders-as\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"big-id\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/big-id\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"biolibinc1622552350258\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/biolibinc1622552350258\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bissantechnology1583581147809\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bissantechnology1583581147809\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bitdefendercybersecurity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bitdefendercybersecurity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Bitnami\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Bitnami\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bizagi\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bizagi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bizaptyltd1626489237351\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bizaptyltd1626489237351\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bizdataloome\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bizdataloome\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"biztalk360\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/biztalk360\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"black-duck-software\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/black-duck-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"blackbird\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/blackbird\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"blackmagicdesignincorporated1596492193249\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/blackmagicdesignincorporated1596492193249\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"blk-technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/blk-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"blockapps\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/blockapps\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"blockchain-foundry\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/blockchain-foundry\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"blockstack\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/blockstack\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bloombase\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bloombase\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bluecat\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bluecat\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bluejeansnetwork1638333611902\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bluejeansnetwork1638333611902\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"blueprismlimited-4827145\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/blueprismlimited-4827145\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bluesyntaxconsulting1617654548594\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bluesyntaxconsulting1617654548594\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bluetalon\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bluetalon\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bmc.ctm\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bmc.ctm\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bmcctm.test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bmcctm.test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"boardpacpvtltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/boardpacpvtltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bocada\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bocada\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"boemskats\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/boemskats\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"botanalytics\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/botanalytics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bowspritconsultingopcprivatelimited1596291408582\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bowspritconsultingopcprivatelimited1596291408582\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bravura-software-llc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bravura-software-llc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Brianjac.Symantec.CloudWorkloadProtection\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Brianjac.Symantec.CloudWorkloadProtection\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bricatainc1584472632111\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bricatainc1584472632111\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bright-computing\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bright-computing\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"brightcomputing\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/brightcomputing\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"brocade_communications\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/brocade_communications\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"brutale\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/brutale\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bryte\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bryte\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bssw\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bssw\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bt-americas-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bt-americas-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"buddhalabs\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/buddhalabs\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cadosecurityltd1626856705534\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cadosecurityltd1626856705534\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"calculated_systems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/calculated_systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"caloudi_corp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/caloudi_corp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"canadiancentreforcybersecurity1610638436359\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/canadiancentreforcybersecurity1610638436359\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Canonical\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Canonical\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"canonical-test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/canonical-test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"carto\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/carto\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cask\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cask\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"castaigroupinc1595243474856\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/castaigroupinc1595243474856\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"catechnologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/catechnologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"catonetworksltd1641478570665\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/catonetworksltd1641478570665\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cautelalabs\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cautelalabs\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cavirin\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cavirin\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cayosoftinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cayosoftinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cdatasoftware\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cdatasoftware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cds\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cds\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"celum-gmbh\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/celum-gmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"center-for-internet-security-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/center-for-internet-security-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"centeritysystems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/centeritysystems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"centrixeltd1594135951373\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/centrixeltd1594135951373\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"centrocomputerspa1584528117084\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/centrocomputerspa1584528117084\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"certifiedsecuritysolutionsinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/certifiedsecuritysolutionsinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"certivox\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/certivox\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cfd-direct\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cfd-direct\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"chain\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/chain\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"checkpoint\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/checkpoint\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"chef-software\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/chef-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Chef.Bootstrap.WindowsAzure\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Chef.Bootstrap.WindowsAzure\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"chunghwatelecom1587573688842\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/chunghwatelecom1587573688842\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cinchy\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cinchy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cinegy-gmbh\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cinegy-gmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"circleci\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/circleci\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cires21\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cires21\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cirruswaveinc1579234787943\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cirruswaveinc1579234787943\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cisco\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cisco\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"citrix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/citrix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Citrix.ADC\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Citrix.ADC\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"clapsodeughaftungsbeschrnkt1626333173563\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/clapsodeughaftungsbeschrnkt1626333173563\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"clear-linux-project\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/clear-linux-project\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"clone-systems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/clone-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"clouber\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/clouber\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloud-checkr\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloud-checkr\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloud-cruiser\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloud-cruiser\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloud-infrastructure-services\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloud-infrastructure-services\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudaccelinc1628754426775\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudaccelinc1628754426775\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudbees\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudbees\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudbees-enterprise-jenkins\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudbees-enterprise-jenkins\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudbolt-software\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudbolt-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudboltsoftware1639523402532\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudboltsoftware1639523402532\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudboost\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudboost\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudcover\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudcover\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudenablers-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudenablers-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudentity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudentity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudera\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudera\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudflare\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudflare\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudhouse\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudhouse\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudinfo-4919088\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudinfo-4919088\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudknox\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudknox\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudlanes\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudlanes\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudlink\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudlink\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"CloudLinkEMC.SecureVM\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/CloudLinkEMC.SecureVM\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudmavensolutions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudmavensolutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudneeti\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudneeti\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudplan-gmbh\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudplan-gmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudsecurity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudsecurity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudsoft\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudsoft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudwhizsolutions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudwhizsolutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudwrxsconsultingltd1631029702055\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudwrxsconsultingltd1631029702055\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"clustrix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/clustrix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cncf-upstream\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cncf-upstream\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"codaintelligence1606495376525\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/codaintelligence1606495376525\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"codelathe\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/codelathe\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"codenvy\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/codenvy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"codetwo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/codetwo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cognexcorporation1613759804979\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cognexcorporation1613759804979\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cognitive-scale\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cognitive-scale\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cognizant\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cognizant\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cognosys\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cognosys\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cohesity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cohesity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cohesitydev1592001764720\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cohesitydev1592001764720\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cohesive\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cohesive\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"coin-sciences-ltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/coin-sciences-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"collabcloudlimited\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/collabcloudlimited\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"collibranv1619508098620\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/collibranv1619508098620\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"commscopeinc1632135151062\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/commscopeinc1632135151062\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"commvault\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/commvault\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"compellon\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/compellon\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"composable\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/composable\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"comunity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/comunity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"concentrationheatandmomentumlimited1616154387047\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/concentrationheatandmomentumlimited1616154387047\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Confer\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Confer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"confluentinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/confluentinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"conflux\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/conflux\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"connecting-software\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/connecting-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"consensys\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/consensys\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"containeraider\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/containeraider\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"contiamogmbh\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/contiamogmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"controlcase\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/controlcase\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"controlplane\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/controlplane\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"controlplanecorporation1609967567639\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/controlplanecorporation1609967567639\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"convertigo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/convertigo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"corda\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/corda\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"core-stack\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/core-stack\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"corent-technology-pvt\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/corent-technology-pvt\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"CoreOS\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/CoreOS\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"couchbase\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/couchbase\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cpanel\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cpanel\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"credativ\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/credativ\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cristiesoftwareltd1599488127561\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cristiesoftwareltd1599488127561\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"crunchyard\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/crunchyard\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"crunchyardltd1623835391104\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/crunchyardltd1623835391104\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cryptocom1585727786636\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cryptocom1585727786636\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cryptosense1605170011574\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cryptosense1605170011574\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cryptzone\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cryptzone\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ctm.bmc.com\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ctm.bmc.com\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cubebackup\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cubebackup\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cyberark\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cyberark\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cybernetica-as\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cybernetica-as\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cyxtera\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cyxtera\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"d4t4_solutions-1164305\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/d4t4_solutions-1164305\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"daceitdbasensetrafficpulse1579892024934\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/daceitdbasensetrafficpulse1579892024934\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"danielsol.AzureTools1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/danielsol.AzureTools1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Dans.Windows.App\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Dans.Windows.App\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Dans3.Windows.App\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Dans3.Windows.App\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dataart\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dataart\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"databricks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/databricks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datacore\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datacore\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Datadog.Agent\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Datadog.Agent\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datadynamicsinc1581991927942\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datadynamicsinc1581991927942\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dataguiseinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dataguiseinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dataiku\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dataiku\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datalayer\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datalayer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datanomers1584919038987\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datanomers1584919038987\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datanova\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datanova\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datapredsa\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datapredsa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dataroadtechnologiesllc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dataroadtechnologiesllc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datasciencedojo1586563145740\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datasciencedojo1586563145740\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datastax\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datastax\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datasunrise\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datasunrise\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datavirtualitygmbh\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datavirtualitygmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datometry\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datometry\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dbs-h\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dbs-h\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ddn-whamcloud-5345716\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ddn-whamcloud-5345716\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Debian\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Debian\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dece-4446019\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dece-4446019\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"decisosalesbv\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/decisosalesbv\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"deepcognitioninc1593512758156\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/deepcognitioninc1593512758156\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"deepsiginc1581610210151\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/deepsiginc1581610210151\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"deepsurfacesecurityinc1632943333445\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/deepsurfacesecurityinc1632943333445\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dellemc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dellemc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dell_software\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dell_software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"delphix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/delphix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"deltapathlimited1592886319362\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/deltapathlimited1592886319362\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"denodo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/denodo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"denyall\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/denyall\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"derdack\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/derdack\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"desktopstudioag1580294245574\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/desktopstudioag1580294245574\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"devfactory\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/devfactory\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"device42inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/device42inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"deviceauthorityinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/deviceauthorityinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"devolutionsinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/devolutionsinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"devopsgroup-uk\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/devopsgroup-uk\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"df-portal-user\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/df-portal-user\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dgsecure\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dgsecure\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Dh2ico\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Dh2ico\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dh2icompany\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dh2icompany\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dhi\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dhi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"diagramics\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/diagramics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dicomsystems1584107398321\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dicomsystems1584107398321\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"diehl-metering\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/diehl-metering\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"digisitesystems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/digisitesystems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"digitaldefenseinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/digitaldefenseinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"digitaloffice\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/digitaloffice\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"digitamizeinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/digitamizeinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"digitate\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/digitate\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"diladele\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/diladele\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dimensionalmechanics-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dimensionalmechanics-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"diqa\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/diqa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"diyatech\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/diyatech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"diyotta\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/diyotta\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"djiindustrialincus\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/djiindustrialincus\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"docker\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/docker\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dome9\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dome9\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dorabot\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dorabot\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dremiocorporation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dremiocorporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"drizti\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/drizti\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"drone\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/drone\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dsi\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dsi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dundas\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dundas\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dyadic_security\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dyadic_security\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dynatrace\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dynatrace\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dynatrace.ruxit\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dynatrace.ruxit\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"e-magicinc1587696283171\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/e-magicinc1587696283171\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"eastwind-networks-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/eastwind-networks-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"easysoftwaresro1593005637384\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/easysoftwaresro1593005637384\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ebesllc1637780200500\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ebesllc1637780200500\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ecessa\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ecessa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"edevtech\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/edevtech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"edgelesssystems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/edgelesssystems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"edgenetworks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/edgenetworks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"edispheresoftwareprivatelimited1606199736428\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/edispheresoftwareprivatelimited1606199736428\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"education4sight\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/education4sight\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"eecservicesfzllc1604836615706\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/eecservicesfzllc1604836615706\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"egnyte\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/egnyte\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"egress1589289169584\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/egress1589289169584\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"eikonasystemsgmbh1601729310063\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/eikonasystemsgmbh1601729310063\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Elastic\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Elastic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"elasticbox\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/elasticbox\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"elecard\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/elecard\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"electric-cloud\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/electric-cloud\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"elevateiot\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/elevateiot\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"eleven01\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/eleven01\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"elfiqnetworks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/elfiqnetworks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"emercoin\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/emercoin\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"energisme1601990637842\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/energisme1601990637842\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"enforongo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/enforongo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"engineering-ingegneriainformatica-spa1626786889850\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/engineering-ingegneriainformatica-spa1626786889850\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"engysltd1624364546407\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/engysltd1624364546407\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"enterprise-ethereum-alliance\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/enterprise-ethereum-alliance\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"enterprisedb-corp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/enterprisedb-corp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"enterpriseworx-it\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/enterpriseworx-it\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"epicgames\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/epicgames\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"epicgamesinc1633466121071\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/epicgamesinc1633466121071\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"eproe\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/eproe\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"equalum\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/equalum\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"equilibrium\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/equilibrium\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"equinix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/equinix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ergoninformatikag1581586464404\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ergoninformatikag1581586464404\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"esdenera\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/esdenera\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ESET\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ESET\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"esetresearch1579795941720\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/esetresearch1579795941720\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"esri\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/esri\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"esyon\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/esyon\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ethereum\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ethereum\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"eurolinuxspzoo1620639373013\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/eurolinuxspzoo1620639373013\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"eventtracker\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/eventtracker\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"evertzmicrosystemsltd1586877923009\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/evertzmicrosystemsltd1586877923009\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"evostream-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/evostream-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"exact\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/exact\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"exasol\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/exasol\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"excelero1608461290726\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/excelero1608461290726\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"exivity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/exivity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"exonar\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/exonar\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"f5-networks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/f5-networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"falainapteltd1604661424876\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/falainapteltd1604661424876\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"falconstorsoftware\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/falconstorsoftware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fatalsecurity1604924013537\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fatalsecurity1604924013537\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fatpipe-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fatpipe-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fenestrae-1035066\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fenestrae-1035066\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fidesys\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fidesys\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"filecatalyst\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/filecatalyst\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"filemagellc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/filemagellc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fiorano\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fiorano\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fireeye\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fireeye\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"firehost\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/firehost\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"firemon\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/firemon\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"firstderivativesplc1596469572732\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/firstderivativesplc1596469572732\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"flashgrid-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/flashgrid-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"flexbby\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/flexbby\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"flexbby-5255860\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/flexbby-5255860\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"flexify-io\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/flexify-io\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"flexxibleit\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/flexxibleit\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"flowmon\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/flowmon\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"flynet\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/flynet\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"foghorn-systems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/foghorn-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"forcepoint-llc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/forcepoint-llc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"forescout\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/forescout\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"foreseetiab1613650409016\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/foreseetiab1613650409016\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"formpipesoftwareab\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/formpipesoftwareab\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"forscene\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/forscene\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fortanix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fortanix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fortinet\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fortinet\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fortycloud\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fortycloud\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"forumsystems1599756394904\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/forumsystems1599756394904\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fotopiatechnologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fotopiatechnologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"foxiteuropegmbh1585901066320\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/foxiteuropegmbh1585901066320\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"franzinc1593030725310\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/franzinc1593030725310\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fujitsu_fast\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fujitsu_fast\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fw\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fw\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"g2kgroupgmbh-4821943\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/g2kgroupgmbh-4821943\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gapteq\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gapteq\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gatlingcorp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gatlingcorp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gbs\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gbs\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gemalto-safenet\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gemalto-safenet\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Gemalto.SafeNet.ProtectV\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Gemalto.SafeNet.ProtectV\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"genuagmbhdevid1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/genuagmbhdevid1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"genua_gmbh\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/genua_gmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"genymobile\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/genymobile\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gigamon-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gigamon-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"GitHub\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/GitHub\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gitlab\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gitlab\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gitlabinc1586447921813\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gitlabinc1586447921813\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gladinet-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gladinet-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"glantoninc1591876792991\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/glantoninc1591876792991\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"globalidsinc1596800540598\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/globalidsinc1596800540598\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"globalscape\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/globalscape\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"globalsolutions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/globalsolutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gluwareinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gluwareinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"graphistry\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/graphistry\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"graphitegtc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/graphitegtc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"great-software-laboratory-private-limited\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/great-software-laboratory-private-limited\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"greensql\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/greensql\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"greycorbelsolutions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/greycorbelsolutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gridgain\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gridgain\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"guardicore\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/guardicore\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gxchainfoundationltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gxchainfoundationltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"h2o-ai\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/h2o-ai\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hackerbay\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hackerbay\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hackershub\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hackershub\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"haivision\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/haivision\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"haivisionsystemsinc1580780591922\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/haivisionsystemsinc1580780591922\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"haltdoscompvtltd1587136166019\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/haltdoscompvtltd1587136166019\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hanu\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hanu\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"haproxy-technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/haproxy-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"harmanconnectedservicesinc1594928575643\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/harmanconnectedservicesinc1594928575643\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"harpaitalia\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/harpaitalia\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hashhub\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hashhub\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hcl-technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hcl-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"heimdall-data\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/heimdall-data\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"help-systems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/help-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"helpyio\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/helpyio\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"heretechnologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/heretechnologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hewlett-packard\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hewlett-packard\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hillstone-networks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hillstone-networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hitachi-solutions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hitachi-solutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hitachivantara\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hitachivantara\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"holo-industrie40softwaregmbh1600957636008\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/holo-industrie40softwaregmbh1600957636008\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hortonworks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hortonworks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hpe\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hpe\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"HPE.Security.ApplicationDefender\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/HPE.Security.ApplicationDefender\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"huawei\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/huawei\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hubstor-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hubstor-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hush-hush\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hush-hush\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hvr\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hvr\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hyperglance\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hyperglance\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hypergrid\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hypergrid\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hystaxinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hystaxinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hytrust\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hytrust\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"i-exceed-technology\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/i-exceed-technology\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iaansys\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iaansys\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ibm\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ibm\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ibm-alliance-global-1560886\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ibm-alliance-global-1560886\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ibm-alliance-usa-ny-armonk-hq-ibmstorage-6201192\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ibm-alliance-usa-ny-armonk-hq-ibmstorage-6201192\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ibm-usa-ny-armonk-hq-6275750-ibmcloud-aiops\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ibm-usa-ny-armonk-hq-6275750-ibmcloud-aiops\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iboss\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iboss\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iconics\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iconics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iconsulting-spa\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iconsulting-spa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"icubeconsultancyservicesinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/icubeconsultancyservicesinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iguazio-5069960\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iguazio-5069960\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ikan\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ikan\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iliimbiliimveyazlmsistemlerisanvetica1617000555584\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iliimbiliimveyazlmsistemlerisanvetica1617000555584\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"illuminainc1586452220102\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/illuminainc1586452220102\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"image-technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/image-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"imaginecommunications\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/imaginecommunications\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"imperva\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/imperva\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"impetustechnologiesinc1591959591877\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/impetustechnologiesinc1591959591877\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"imprivatainc1580479939967\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/imprivatainc1580479939967\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"incorta\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/incorta\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"incredibuild\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/incredibuild\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"indexima1594300233028\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/indexima1594300233028\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"industry-weapon\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/industry-weapon\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"industryweapon1587162781833\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/industryweapon1587162781833\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"inenprocesosyplataformasdetisderldecv1615482385424\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/inenprocesosyplataformasdetisderldecv1615482385424\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"inergybv1637141413454\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/inergybv1637141413454\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"infinitesoftwarecorporation1579223971125\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/infinitesoftwarecorporation1579223971125\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"infiotinc1614034091460\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/infiotinc1614034091460\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"influxdata\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/influxdata\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"infoblox\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/infoblox\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"infogix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/infogix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"infolibrarian\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/infolibrarian\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"informatica\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/informatica\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"informationbuilders\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/informationbuilders\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"informationtechnologies_ltd_1179601\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/informationtechnologies_ltd_1179601\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"infotecsinternetsecuritysoftwaregmbh1636129257584\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/infotecsinternetsecuritysoftwaregmbh1636129257584\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"infront-consulting-group-ltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/infront-consulting-group-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"infscapeughaftungsbeschrnkt\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/infscapeughaftungsbeschrnkt\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ingenieurstudiohollaus1579587745438\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ingenieurstudiohollaus1579587745438\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ingrammicro\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ingrammicro\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"innomindssoftware\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/innomindssoftware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"innosepgmbh1618331344164\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/innosepgmbh1618331344164\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"innovatorartificialtechsrl1619180685551\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/innovatorartificialtechsrl1619180685551\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"innovtech\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/innovtech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"instight-technology\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/instight-technology\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"integration-objects\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/integration-objects\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"intel-bigdl\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/intel-bigdl\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"intel-fpga\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/intel-fpga\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"intellicus-technologies-pvt-ltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/intellicus-technologies-pvt-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"intelligent-plant-ltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/intelligent-plant-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"internationaltrustmachinescorporation1582190033865\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/internationaltrustmachinescorporation1582190033865\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"internet20inc1635882446190\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/internet20inc1635882446190\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"intersystems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/intersystems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"intigua\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/intigua\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"intigua1638692632641\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/intigua1638692632641\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"introspecioltd1629872641188\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/introspecioltd1629872641188\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iofabric\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iofabric\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ipinfusion1590066770520\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ipinfusion1590066770520\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ipswitch\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ipswitch\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iqsol\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iqsol\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iquate\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iquate\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iquest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iquest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"irion\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/irion\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ishlangu-load-balancer-adc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ishlangu-load-balancer-adc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"issp-corporation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/issp-corporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"isvtestukbigcat\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/isvtestukbigcat\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"isvtestuklegacy\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/isvtestuklegacy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"it4bizdoo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/it4bizdoo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"itelios\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/itelios\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"itrsgroupltd1620310702149\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/itrsgroupltd1620310702149\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ivanti-inc-pcs\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ivanti-inc-pcs\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ivix1595238749040\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ivix1595238749040\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iwnamespace\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iwnamespace\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"izenda\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/izenda\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"jamcracker\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/jamcracker\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"javlinltd1579185328273\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/javlinltd1579185328273\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"jedox\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/jedox\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"jelastic\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/jelastic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"jetnexus\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/jetnexus\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"jetware-srl\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/jetware-srl\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"jfrog\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/jfrog\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"jm-technology-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/jm-technology-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"jogetinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/jogetinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"juniper-networks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/juniper-networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"justanalytics\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/justanalytics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kaazing\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kaazing\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kadenallc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kadenallc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kali-linux\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kali-linux\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kalkitech\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kalkitech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kaminarioinc1588672951794\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kaminarioinc1588672951794\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Kaspersky.Lab\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Kaspersky.Lab\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"KasperskyLab.SecurityAgent\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/KasperskyLab.SecurityAgent\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kaspersky_lab\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kaspersky_lab\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kazendi\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kazendi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kelverion\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kelverion\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kemptech\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kemptech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kepion\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kepion\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"KevlarExtensions.M365Security.SecureOS\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/KevlarExtensions.M365Security.SecureOS\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"KevlarExtensions.M365SecurityHostIDS\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/KevlarExtensions.M365SecurityHostIDS\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"KevlarExtensions.M365SecurityInventory\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/KevlarExtensions.M365SecurityInventory\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"KevlarExtensions.M365SecurityInventory.NameChangeTest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/KevlarExtensions.M365SecurityInventory.NameChangeTest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"KevlarExtensions.M365SecurityODL\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/KevlarExtensions.M365SecurityODL\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"KevlarExtensions.M365SecurityTLSExtension\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/KevlarExtensions.M365SecurityTLSExtension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kinetica\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kinetica\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kinvolk\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kinvolk\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"knime\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/knime\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kobalt\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kobalt\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kognillc1600118221163\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kognillc1600118221163\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kognitivsparkinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kognitivsparkinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"konginc1581527938760\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/konginc1581527938760\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"konsys-ltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/konsys-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"koverseinc1588716263110\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/koverseinc1588716263110\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kryonsystems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kryonsystems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"krypc-technologies-pvt-ltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/krypc-technologies-pvt-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kyligence\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kyligence\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kyvos-insights-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kyvos-insights-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lab3solutions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lab3solutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lancom-systems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lancom-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lansa\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lansa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lastline\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lastline\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"leap-orbit\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/leap-orbit\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lenovosoftware1604394104439\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lenovosoftware1604394104439\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"leostream-corporation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/leostream-corporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lepide-software\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lepide-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"levacloudllc1602151818089\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/levacloudllc1602151818089\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"libelleag\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/libelleag\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"liberatii\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/liberatii\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"libraesva\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/libraesva\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"liebsoft\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/liebsoft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lightning-analyticsinc1582000647396\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lightning-analyticsinc1582000647396\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"linuxbasedsystemsdesignltd1580878904727\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/linuxbasedsystemsdesignltd1580878904727\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"liquid-files\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/liquid-files\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"liquidware\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/liquidware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"literatu\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/literatu\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"litespeedtechnologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/litespeedtechnologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"litespeed_technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/litespeed_technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"litionenergiegmbh1580128829115\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/litionenergiegmbh1580128829115\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"litmusautomation1582760223280\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/litmusautomation1582760223280\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"llcitpro\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/llcitpro\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lnw-softgmbh\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lnw-softgmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"loadbalancer\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/loadbalancer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"logicflowag1638535407949\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/logicflowag1638535407949\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"logsign\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/logsign\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"logstarecorp1635838645101\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/logstarecorp1635838645101\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"logtrust\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/logtrust\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"logzio\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/logzio\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"looker\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/looker\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lotus_beta_analytics\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lotus_beta_analytics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lti-lt-infotech\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lti-lt-infotech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"luminate-security\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/luminate-security\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"M365Security.KevlarExtensions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/M365Security.KevlarExtensions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"M365SecurityInventory\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/M365SecurityInventory\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"machinesense\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/machinesense\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"madhavajay1632269232059\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/madhavajay1632269232059\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"maidenhead-bridge\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/maidenhead-bridge\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"manageengine\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/manageengine\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mapd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mapd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mapr-technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mapr-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"marand\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/marand\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"marketplace-rdfe-caps\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/marketplace-rdfe-caps\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"marklogic\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/marklogic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"massiveanalytic-\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/massiveanalytic-\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mathworks-deployment\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mathworks-deployment\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mathworks-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mathworks-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"matillion\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/matillion\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mavinglobal\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mavinglobal\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"McAfee.EndpointSecurity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/McAfee.EndpointSecurity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"McAfee.EndpointSecurity.test3\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/McAfee.EndpointSecurity.test3\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"meanio\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/meanio\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"media3-adobe\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/media3-adobe\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"media3-technologies-llc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/media3-technologies-llc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mediatekinc1586141563888\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mediatekinc1586141563888\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mendix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mendix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"merlynnintelligencetechnologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/merlynnintelligencetechnologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"meshifyappinc1622759451429\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/meshifyappinc1622759451429\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"messagesolution\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/messagesolution\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"metaswitch\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/metaswitch\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mettainnovations-4900054\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mettainnovations-4900054\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mfe_azure\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mfe_azure\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mfiles\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mfiles\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mico\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mico\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"micro-focus\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/micro-focus\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microlinkpcukltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microlinkpcukltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microolap\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microolap\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-ads\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-ads\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-agci-gaming\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-agci-gaming\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-aks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-aks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-avere\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-avere\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-azure-batch\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-azure-batch\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-azure-compute\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-azure-compute\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-azure-hdinsight\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-azure-hdinsight\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-crypto\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-crypto\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-dsvm\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-dsvm\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-hyperv\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-hyperv\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-minecraft\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-minecraft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AdminCenter\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AdminCenter\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AKS\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AKS\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.ActiveDirectory\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.ActiveDirectory\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.ActiveDirectory.LinuxSSH\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.ActiveDirectory.LinuxSSH\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Applications\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Applications\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Automation.HybridWorker\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Automation.HybridWorker\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Automation.HybridWorker.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Automation.HybridWorker.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.AzureDefenderForServers\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.AzureDefenderForServers\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.AzureDefenderForSQL\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.AzureDefenderForSQL\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Backup.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Backup.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Backup.Test.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Backup.Test.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.ChangeTracking\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.ChangeTracking\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.ChangeTracking.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.ChangeTracking.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.ChangeTrackingAndInventory\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.ChangeTrackingAndInventory\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Chaos\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Chaos\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Compute.Security\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Compute.Security\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.ContainerUpstream\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.ContainerUpstream\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.DefenderForServers.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.DefenderForServers.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.DefenderForServers.Test2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.DefenderForServers.Test2\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Diagnostics\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Diagnostics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Diagnostics.Build.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Diagnostics.Build.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Diagnostics.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Diagnostics.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test012be407-61ea-4e45-a2c3-71a45999ca21-20191228083800\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test012be407-61ea-4e45-a2c3-71a45999ca21-20191228083800\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test01971384-3044-413b-8b1c-33b5d461bf23-20200107051823\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test01971384-3044-413b-8b1c-33b5d461bf23-20200107051823\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test0225ec7d-b36c-4ac8-82f0-aa4fafaf10a9-20200111051346\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test0225ec7d-b36c-4ac8-82f0-aa4fafaf10a9-20200111051346\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test025e16a1-328d-45a2-b7e3-71f7e4cde046-20191229064028\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test025e16a1-328d-45a2-b7e3-71f7e4cde046-20191229064028\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test02d1f941-5607-4757-8df7-fd8c5631ab45-20200103083810\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test02d1f941-5607-4757-8df7-fd8c5631ab45-20200103083810\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test039abd7f-360c-42a1-ad5d-77527c519286-20191002233412\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test039abd7f-360c-42a1-ad5d-77527c519286-20191002233412\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test04a0f157-c6fb-4595-b6ca-6c82a2338063-20200108101451\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test04a0f157-c6fb-4595-b6ca-6c82a2338063-20200108101451\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test0737f33e-63e0-4ba9-b04b-b93a1de4e997-20200106083639\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test0737f33e-63e0-4ba9-b04b-b93a1de4e997-20200106083639\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test0a44d7be-63fa-418d-a7b6-89a44dd21894-20200107052935\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test0a44d7be-63fa-418d-a7b6-89a44dd21894-20200107052935\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test0d01b487-7f79-4d87-b330-5c025068db45-20191004190331\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test0d01b487-7f79-4d87-b330-5c025068db45-20191004190331\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test0d643748-e6fe-41ad-b4d3-89a289a0cee0-20191003055620\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test0d643748-e6fe-41ad-b4d3-89a289a0cee0-20191003055620\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test0df83c51-5bb9-43f8-8ae9-bc896ea64f78-20200110220221\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test0df83c51-5bb9-43f8-8ae9-bc896ea64f78-20200110220221\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test0f02c246-7e65-4010-9367-ca4530c3897e-20191004190223\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test0f02c246-7e65-4010-9367-ca4530c3897e-20191004190223\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test157494ec-e788-43b0-8d26-a17e39ee07cc-20191002011945\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test157494ec-e788-43b0-8d26-a17e39ee07cc-20191002011945\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test1661d154-b623-4507-8a56-3a89812c456c-20200111083940\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test1661d154-b623-4507-8a56-3a89812c456c-20200111083940\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test17bbd860-f21d-40ab-9026-16e05f2907f0-20200106083451\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test17bbd860-f21d-40ab-9026-16e05f2907f0-20200106083451\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test194e2333-13cd-43e3-b0a4-c8cdcf1a3600-20200110211106\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test194e2333-13cd-43e3-b0a4-c8cdcf1a3600-20200110211106\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test1bc26b19-b8d8-41f9-a26d-818f277bdf93-20200101113139\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test1bc26b19-b8d8-41f9-a26d-818f277bdf93-20200101113139\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test1c840053-9213-4f2a-8f2e-9bf2297908bd-20200108101424\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test1c840053-9213-4f2a-8f2e-9bf2297908bd-20200108101424\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test1d7bba72-69f1-43cd-a38c-41ce0b5f4bae-20200109050041\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test1d7bba72-69f1-43cd-a38c-41ce0b5f4bae-20200109050041\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test1f7a8078-50e7-4a3a-91eb-d178fd4c403b-20191002233353\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test1f7a8078-50e7-4a3a-91eb-d178fd4c403b-20191002233353\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test1fef1fdc-57ba-46a8-a879-475ba7d45a7a-20200106083509\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test1fef1fdc-57ba-46a8-a879-475ba7d45a7a-20200106083509\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test21332f15-f78d-4d31-afac-79b9dc989432-20191231175840\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test21332f15-f78d-4d31-afac-79b9dc989432-20191231175840\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test22f10717-6939-4003-a9ce-38effd8b77d6-20191007191355\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test22f10717-6939-4003-a9ce-38effd8b77d6-20191007191355\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test2334e6e3-bb72-4241-a36f-c2429d69bc0b-20200106050834\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test2334e6e3-bb72-4241-a36f-c2429d69bc0b-20200106050834\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test24fa9eb5-1c59-4425-b61c-30fd638c2a45-20191003203802\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test24fa9eb5-1c59-4425-b61c-30fd638c2a45-20191003203802\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test2521a545-ed61-4a15-bed1-aba7ce1d81ee-20200106050804\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test2521a545-ed61-4a15-bed1-aba7ce1d81ee-20200106050804\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test25c6fe61-1282-43c2-867b-b5039219989c-20200105081851\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test25c6fe61-1282-43c2-867b-b5039219989c-20200105081851\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test27515c8c-6773-4f92-afb0-35691cc6e3b6-20200103083821\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test27515c8c-6773-4f92-afb0-35691cc6e3b6-20200103083821\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test28012680-48e7-4903-877f-2f29464e63d5-20191229033424\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test28012680-48e7-4903-877f-2f29464e63d5-20191229033424\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test29a7a529-d293-4728-9d7f-257ed996e64f-20200108081759\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test29a7a529-d293-4728-9d7f-257ed996e64f-20200108081759\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test2a5f2d2c-b8e3-46c2-850d-a1641c024fe7-20200107084228\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test2a5f2d2c-b8e3-46c2-850d-a1641c024fe7-20200107084228\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test2ce856af-ab17-48f2-ba3e-bcd9af091061-20200110013246\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test2ce856af-ab17-48f2-ba3e-bcd9af091061-20200110013246\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test2e012e83-6361-4365-963f-6ced8a08e91c-20200110211254\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test2e012e83-6361-4365-963f-6ced8a08e91c-20200110211254\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test2ecf67b2-fb63-4461-b6a6-7026c4fb1168-20191002214026\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test2ecf67b2-fb63-4461-b6a6-7026c4fb1168-20191002214026\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test2ede6564-c7cc-44cb-a1a8-902505c9829d-20191003020742\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test2ede6564-c7cc-44cb-a1a8-902505c9829d-20191003020742\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test2f4ebc17-e27e-48d9-9cc3-ff933c21884e-20200106092410\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test2f4ebc17-e27e-48d9-9cc3-ff933c21884e-20200106092410\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test349ee02c-af9b-4663-a963-823b40eefed8-20200108083612\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test349ee02c-af9b-4663-a963-823b40eefed8-20200108083612\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test34cf6b13-b78e-478b-b596-8b661629371d-20191007195455\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test34cf6b13-b78e-478b-b596-8b661629371d-20191007195455\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test36cc5b60-2b23-4a04-bf95-f7865e1141cf-20200110085718\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test36cc5b60-2b23-4a04-bf95-f7865e1141cf-20200110085718\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3712fca9-5cdd-4609-be69-b02aedc5c55c-20200107084115\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3712fca9-5cdd-4609-be69-b02aedc5c55c-20200107084115\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3772d042-92e2-4bcb-99b7-8a6a119cc088-20191231182808\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3772d042-92e2-4bcb-99b7-8a6a119cc088-20191231182808\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test37a6dd64-d44d-465e-85bc-3bc38be90350-20200104083535\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test37a6dd64-d44d-465e-85bc-3bc38be90350-20200104083535\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test381074d5-7156-472b-801a-b35f8fef4cc6-20200105050612\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test381074d5-7156-472b-801a-b35f8fef4cc6-20200105050612\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3877a44d-4c48-40db-80eb-227272d5acd6-20200110103540\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3877a44d-4c48-40db-80eb-227272d5acd6-20200110103540\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test38ecd28e-7018-4672-840c-3044a5e7a6b5-20200111084208\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test38ecd28e-7018-4672-840c-3044a5e7a6b5-20200111084208\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test395a0b49-442a-450c-8a1f-65b0aa3bcf47-20200105083839\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test395a0b49-442a-450c-8a1f-65b0aa3bcf47-20200105083839\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3971b300-edff-44a8-b61b-7f9b7460a8d6-20191003002234\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3971b300-edff-44a8-b61b-7f9b7460a8d6-20191003002234\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3adeec20-7458-4b3d-af26-0b6bc2aae3eb-20200103083751\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3adeec20-7458-4b3d-af26-0b6bc2aae3eb-20200103083751\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3b20dd96-f3e4-4798-998d-8c433c2449a7-20200108083635\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3b20dd96-f3e4-4798-998d-8c433c2449a7-20200108083635\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3ce2fd4a-8b5a-4c7e-b08d-3e48fc0f45e7-20200104083825\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3ce2fd4a-8b5a-4c7e-b08d-3e48fc0f45e7-20200104083825\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3d499ca7-cc8d-41cc-a6dc-ffb1a4ac4942-20200107053004\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3d499ca7-cc8d-41cc-a6dc-ffb1a4ac4942-20200107053004\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3db7240e-5e42-4d6d-b024-cc9fce3c828b-20200105083520\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3db7240e-5e42-4d6d-b024-cc9fce3c828b-20200105083520\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3f6b7341-635f-48d5-a36d-be5dfe3002c4-20200105050937\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3f6b7341-635f-48d5-a36d-be5dfe3002c4-20200105050937\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3fc26934-ede2-4482-ad5e-f66f6135d4a6-20191228055558\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3fc26934-ede2-4482-ad5e-f66f6135d4a6-20191228055558\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test406d077c-6017-4062-bc96-f809147a2331-20200106050748\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test406d077c-6017-4062-bc96-f809147a2331-20200106050748\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test4302336c-e039-4e70-bcb6-9275f6089e4a-20200108144821\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test4302336c-e039-4e70-bcb6-9275f6089e4a-20200108144821\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test453a087e-8435-46db-970a-4ee633cc4c4a-20200102083458\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test453a087e-8435-46db-970a-4ee633cc4c4a-20200102083458\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test46b73afa-2259-4aff-81e1-a58bf24b59aa-20191229033459\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test46b73afa-2259-4aff-81e1-a58bf24b59aa-20191229033459\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test4a3399ee-82ea-46aa-9e3a-5434b588e3b6-20191228013518\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test4a3399ee-82ea-46aa-9e3a-5434b588e3b6-20191228013518\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test4eb7a185-527b-4b9f-93a8-7f1cec9d062e-20191231151207\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test4eb7a185-527b-4b9f-93a8-7f1cec9d062e-20191231151207\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test520a0915-f9f0-4da4-9fa1-1b74fc1470aa-20200102083505\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test520a0915-f9f0-4da4-9fa1-1b74fc1470aa-20200102083505\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test5397960f-023b-4979-9a8b-800d049045a4-20191007195417\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test5397960f-023b-4979-9a8b-800d049045a4-20191007195417\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test55a36387-8a3f-4159-9884-29b97539a253-20200109080443\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test55a36387-8a3f-4159-9884-29b97539a253-20200109080443\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test5645f186-4ee5-4209-af37-423660e3318c-20191231175947\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test5645f186-4ee5-4209-af37-423660e3318c-20191231175947\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test58b4461d-4d2d-4395-b6d2-ab83d4d8c62f-20200111001002\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test58b4461d-4d2d-4395-b6d2-ab83d4d8c62f-20200111001002\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test5b0bf447-d98d-429d-8334-c032d197c743-20191003203846\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test5b0bf447-d98d-429d-8334-c032d197c743-20191003203846\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test5bc90367-1ea2-400b-a40c-321081bae3f3-20200108145035\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test5bc90367-1ea2-400b-a40c-321081bae3f3-20200108145035\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test5bd0562f-e939-456f-a6ee-c848d1aba616-20200101151641\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test5bd0562f-e939-456f-a6ee-c848d1aba616-20200101151641\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test5e4efe90-916c-4c96-802c-1508a5b6da78-20191231151150\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test5e4efe90-916c-4c96-802c-1508a5b6da78-20191231151150\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test5f8f0c10-cc3c-45ec-a068-fb1c7edfa0d9-20200101145958\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test5f8f0c10-cc3c-45ec-a068-fb1c7edfa0d9-20200101145958\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test60a000b7-286c-4b2b-9137-bbc088736419-20200108144920\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test60a000b7-286c-4b2b-9137-bbc088736419-20200108144920\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test6192a01b-ba47-4d08-904a-71647a49a112-20191008041625\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test6192a01b-ba47-4d08-904a-71647a49a112-20191008041625\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test62835538-89c6-4f66-9034-f7a4b176c615-20191007234245\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test62835538-89c6-4f66-9034-f7a4b176c615-20191007234245\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test651e4ad2-ee4a-462e-a506-b56b1969f5d0-20200110230749\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test651e4ad2-ee4a-462e-a506-b56b1969f5d0-20200110230749\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test691d94e5-c40c-4568-94b0-09b08aea42b1-20200106050808\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test691d94e5-c40c-4568-94b0-09b08aea42b1-20200106050808\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test6aa3643c-011a-4180-877f-cad955a8e664-20191007234642\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test6aa3643c-011a-4180-877f-cad955a8e664-20191007234642\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test6cfb469b-8478-468f-9bb5-691affd32abb-20200107083803\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test6cfb469b-8478-468f-9bb5-691affd32abb-20200107083803\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test6d36b6b2-7956-4e62-91c1-c33792fd4bb1-20200110123203\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test6d36b6b2-7956-4e62-91c1-c33792fd4bb1-20200110123203\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test6e28168e-a9c8-4c0a-8b40-60c2a1502d43-20200108052802\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test6e28168e-a9c8-4c0a-8b40-60c2a1502d43-20200108052802\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test6eb763ac-7fbe-4e44-bee7-aad035ee2a7d-20200110084429\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test6eb763ac-7fbe-4e44-bee7-aad035ee2a7d-20200110084429\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test6efec253-f625-46f0-9d74-324f69e963d8-20200107070514\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test6efec253-f625-46f0-9d74-324f69e963d8-20200107070514\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test70fa7e4c-3122-4ff7-aec6-fe75ab660a01-20200108105900\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test70fa7e4c-3122-4ff7-aec6-fe75ab660a01-20200108105900\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test710a5fbf-06c7-46ac-b96d-a29d2586422f-20200108083639\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test710a5fbf-06c7-46ac-b96d-a29d2586422f-20200108083639\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test71d72489-67c6-45e2-b1e6-a19546efc823-20200105112903\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test71d72489-67c6-45e2-b1e6-a19546efc823-20200105112903\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test721fccf1-2b3e-44b6-908f-51b910e88b09-20200111104931\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test721fccf1-2b3e-44b6-908f-51b910e88b09-20200111104931\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test742d0189-9e41-4f1b-8ad3-31c05d34903b-20200111103247\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test742d0189-9e41-4f1b-8ad3-31c05d34903b-20200111103247\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test7836a97c-f56e-48d0-8b5d-61e79aeb3226-20200111071656\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7836a97c-f56e-48d0-8b5d-61e79aeb3226-20200111071656\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test78666b2e-25c8-4a48-931a-3131a0317d73-20191002194352\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test78666b2e-25c8-4a48-931a-3131a0317d73-20191002194352\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test79f13508-fcbd-47b9-988f-1c21ef5e7f2e-20191002015429\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test79f13508-fcbd-47b9-988f-1c21ef5e7f2e-20191002015429\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test79fb90ce-4691-4212-99a7-6e4069bd5984-20191007234256\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test79fb90ce-4691-4212-99a7-6e4069bd5984-20191007234256\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test7a8cf687-6a21-4181-ba98-902fee717bd3-20200104103216\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7a8cf687-6a21-4181-ba98-902fee717bd3-20200104103216\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test7aabf813-6644-483a-b9e0-ba6f8973ba1f-20191002232822\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7aabf813-6644-483a-b9e0-ba6f8973ba1f-20191002232822\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test7c96c10a-0c8f-4ab0-83fd-1ad66a362e33-20191229033458\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7c96c10a-0c8f-4ab0-83fd-1ad66a362e33-20191229033458\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test7e79b6ff-2559-44fe-b3ba-afaa68d63636-20200108112116\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7e79b6ff-2559-44fe-b3ba-afaa68d63636-20200108112116\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test7ea372f7-ea7e-4b9e-bbad-4f35c1567aa2-20200108052736\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7ea372f7-ea7e-4b9e-bbad-4f35c1567aa2-20200108052736\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test7fac3d04-98a5-4fc4-904e-9ea3b86eadc2-20200106050751\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7fac3d04-98a5-4fc4-904e-9ea3b86eadc2-20200106050751\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test7fe20dd6-9ed9-4126-bb1d-031c01ac4550-20200101114504\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7fe20dd6-9ed9-4126-bb1d-031c01ac4550-20200101114504\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test7ff974d9-c841-4249-b05b-bbf663cb4605-20200106084104\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7ff974d9-c841-4249-b05b-bbf663cb4605-20200106084104\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test815bd4d5-fc24-4a47-be20-063c4809902c-20200109050508\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test815bd4d5-fc24-4a47-be20-063c4809902c-20200109050508\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test817654d0-2109-4d95-9284-8c8a9d960d08-20200108053758\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test817654d0-2109-4d95-9284-8c8a9d960d08-20200108053758\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test821ca3b6-dd05-4e80-b3d8-74ba03b2609b-20191231151151\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test821ca3b6-dd05-4e80-b3d8-74ba03b2609b-20191231151151\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test8285dc3e-637d-4d46-9695-adc39cbe7d2f-20200108144457\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test8285dc3e-637d-4d46-9695-adc39cbe7d2f-20200108144457\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test828aae03-9239-4938-a303-c23c42311878-20200102083419\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test828aae03-9239-4938-a303-c23c42311878-20200102083419\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test84afd814-5098-49ab-af99-e50350b5898b-20200110211134\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test84afd814-5098-49ab-af99-e50350b5898b-20200110211134\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test85b08563-b15f-4202-a0bc-f2bc2df2c71a-20200107053335\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test85b08563-b15f-4202-a0bc-f2bc2df2c71a-20200107053335\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test88aac268-c087-4481-b78e-99b920784a33-20200101084853\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test88aac268-c087-4481-b78e-99b920784a33-20200101084853\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test88dbd442-a8cc-4874-81a0-d3192c61df62-20191001224544\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test88dbd442-a8cc-4874-81a0-d3192c61df62-20191001224544\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test894dfb75-a00f-4f0c-894c-cae1c9846ad3-20200105051803\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test894dfb75-a00f-4f0c-894c-cae1c9846ad3-20200105051803\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test8d09bf4d-ee63-4ab1-a986-a4b802418403-20200111051447\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test8d09bf4d-ee63-4ab1-a986-a4b802418403-20200111051447\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test8d4d652b-4f05-4e99-93dd-78b9a36b5c78-20191003203755\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test8d4d652b-4f05-4e99-93dd-78b9a36b5c78-20191003203755\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test8de64739-43d8-4f84-af65-fdb3d0885288-20200108053543\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test8de64739-43d8-4f84-af65-fdb3d0885288-20200108053543\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test8e324c65-a51d-4eeb-9ec8-d5f8662dc041-20191228165107\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test8e324c65-a51d-4eeb-9ec8-d5f8662dc041-20191228165107\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test8e564580-8e53-4300-85f1-bf7f31dd37ff-20200107013348\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test8e564580-8e53-4300-85f1-bf7f31dd37ff-20200107013348\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test8f458ca7-8898-4d58-b93d-bfb0c3da028c-20200109050310\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test8f458ca7-8898-4d58-b93d-bfb0c3da028c-20200109050310\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test901cd6ca-5565-4552-a3de-d204d01935c0-20200108083706\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test901cd6ca-5565-4552-a3de-d204d01935c0-20200108083706\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test907b39e5-4008-4b55-93a0-18e9697b9cf3-20200108053817\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test907b39e5-4008-4b55-93a0-18e9697b9cf3-20200108053817\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test90c2be7c-d7ec-4abf-9fad-fef90fc3ef4d-20191004022234\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test90c2be7c-d7ec-4abf-9fad-fef90fc3ef4d-20191004022234\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test922db678-6ee8-43d5-86ff-6a86e132d332-20200107085231\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test922db678-6ee8-43d5-86ff-6a86e132d332-20200107085231\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test93b88aec-5277-4b1b-910c-7008e972ce91-20200107013304\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test93b88aec-5277-4b1b-910c-7008e972ce91-20200107013304\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test95a9104b-6cba-42d8-82ff-cc37e5ac44db-20200108081723\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test95a9104b-6cba-42d8-82ff-cc37e5ac44db-20200108081723\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test96da1605-19e0-46eb-9ce0-53e840f5e2cb-20200101111729\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test96da1605-19e0-46eb-9ce0-53e840f5e2cb-20200101111729\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test996066b2-7d29-400f-929b-e343a21046f7-20191231151212\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test996066b2-7d29-400f-929b-e343a21046f7-20191231151212\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test99663fff-ed21-4a91-9687-1a6da2abb033-20200106084508\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test99663fff-ed21-4a91-9687-1a6da2abb033-20200106084508\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test9eb5efa5-c3c1-4c13-80a6-11f5eba67372-20200108144852\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test9eb5efa5-c3c1-4c13-80a6-11f5eba67372-20200108144852\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testa3791896-b1fc-491e-ba0d-aefcd8d9e52a-20200105083503\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testa3791896-b1fc-491e-ba0d-aefcd8d9e52a-20200105083503\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testa37ff709-a078-45a0-8187-41733df8e101-20200109050003\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testa37ff709-a078-45a0-8187-41733df8e101-20200109050003\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testa4c5fe4e-936e-4be1-a612-a331aff54a8c-20200111105055\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testa4c5fe4e-936e-4be1-a612-a331aff54a8c-20200111105055\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testa59bce1d-e32c-423d-a86e-945d4aeb98b4-20200107051821\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testa59bce1d-e32c-423d-a86e-945d4aeb98b4-20200107051821\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testa604c059-8279-4f4d-a354-eec27222a06c-20200111051514\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testa604c059-8279-4f4d-a354-eec27222a06c-20200111051514\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testa71fefb1-0d9c-4fb3-8d3d-5dcd12d72b77-20200103103221\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testa71fefb1-0d9c-4fb3-8d3d-5dcd12d72b77-20200103103221\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testa748013d-c5a6-44f9-88eb-43167207c742-20200111051402\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testa748013d-c5a6-44f9-88eb-43167207c742-20200111051402\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testaab67022-4f2b-420d-a06a-2c4045110cdf-20191229033144\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testaab67022-4f2b-420d-a06a-2c4045110cdf-20191229033144\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testacab9541-280f-4491-9f49-ac57653f0a07-20200105083839\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testacab9541-280f-4491-9f49-ac57653f0a07-20200105083839\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testad298437-0349-4cc7-88a9-d8aabcba9df1-20191002233431\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testad298437-0349-4cc7-88a9-d8aabcba9df1-20191002233431\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testadd68286-f9e0-4ab1-a526-d8f3cf0f054e-20200105084128\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testadd68286-f9e0-4ab1-a526-d8f3cf0f054e-20200105084128\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testade4c52b-18f5-4b67-8e93-945358ce4f7d-20191007234259\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testade4c52b-18f5-4b67-8e93-945358ce4f7d-20191007234259\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testae421c1d-0211-4ef2-b372-564ce8ad484a-20200110104035\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testae421c1d-0211-4ef2-b372-564ce8ad484a-20200110104035\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testafbbd8bf-aec5-48bf-8fea-73fa15ccc315-20191001224727\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testafbbd8bf-aec5-48bf-8fea-73fa15ccc315-20191001224727\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testb15148bf-78d2-42d4-ad08-b3ad8fb4b122-20200101084759\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testb15148bf-78d2-42d4-ad08-b3ad8fb4b122-20200101084759\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testb4237708-3688-40ea-85a2-275c05f4d100-20191228083519\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testb4237708-3688-40ea-85a2-275c05f4d100-20191228083519\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testb799a18f-be45-4c5c-8438-163ac2e1f1e7-20191004190529\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testb799a18f-be45-4c5c-8438-163ac2e1f1e7-20191004190529\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testb7cee88a-e5ac-4af4-99c8-7247020b00c3-20200105051201\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testb7cee88a-e5ac-4af4-99c8-7247020b00c3-20200105051201\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testb7df0d9a-27c0-4ca5-b692-08dd90387b98-20200111083443\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testb7df0d9a-27c0-4ca5-b692-08dd90387b98-20200111083443\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testbbf6bf32-4bd0-4381-b8f7-2658f585df4d-20191003203846\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testbbf6bf32-4bd0-4381-b8f7-2658f585df4d-20191003203846\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testbeea1376-166a-4b1a-8923-c907cc9737d9-20200107013336\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testbeea1376-166a-4b1a-8923-c907cc9737d9-20200107013336\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testbf9154e9-6166-48c2-86fe-1f331be606d7-20200107051823\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testbf9154e9-6166-48c2-86fe-1f331be606d7-20200107051823\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc0d7c3c5-23b8-489c-a5e0-ae87c681b696-20200101083539\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc0d7c3c5-23b8-489c-a5e0-ae87c681b696-20200101083539\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc193f31a-5186-4e93-84f6-0e4ab87b73c1-20200107052937\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc193f31a-5186-4e93-84f6-0e4ab87b73c1-20200107052937\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc1c7e8dc-fa8c-47d9-8305-de6d1451b939-20200101085248\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc1c7e8dc-fa8c-47d9-8305-de6d1451b939-20200101085248\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc1d0c917-e2ae-430c-a2ca-383fb0fda046-20191007235839\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc1d0c917-e2ae-430c-a2ca-383fb0fda046-20191007235839\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc23a3fbb-6e95-4c0d-94fc-c8ab14dddf1c-20191231151117\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc23a3fbb-6e95-4c0d-94fc-c8ab14dddf1c-20191231151117\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc2697630-6247-411a-94b3-c2974ad8cbee-20191007195417\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc2697630-6247-411a-94b3-c2974ad8cbee-20191007195417\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc466b80f-670f-4383-89b8-44e0d509fa20-20191002000516\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc466b80f-670f-4383-89b8-44e0d509fa20-20191002000516\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc5c8d9bd-75fa-4db3-9f34-5d7b7098584c-20191003203851\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc5c8d9bd-75fa-4db3-9f34-5d7b7098584c-20191003203851\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc8b6d14b-a5db-48e0-bfad-a2818d432bea-20200104083443\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc8b6d14b-a5db-48e0-bfad-a2818d432bea-20200104083443\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc933efa8-c553-4b93-884f-b7221d9ca789-20191228083750\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc933efa8-c553-4b93-884f-b7221d9ca789-20191228083750\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testcbe8ab80-46ef-49b1-a7bb-4e3d6e50e49f-20200104050811\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testcbe8ab80-46ef-49b1-a7bb-4e3d6e50e49f-20200104050811\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testccc0b5e6-9b0d-451a-8ac4-6f4af293b913-20200106092645\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testccc0b5e6-9b0d-451a-8ac4-6f4af293b913-20200106092645\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testcec64786-04b1-487c-80ec-050da646fb1c-20191005123412\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testcec64786-04b1-487c-80ec-050da646fb1c-20191005123412\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testd104a52f-eba2-401d-8e7f-a841c90f7712-20191228083553\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testd104a52f-eba2-401d-8e7f-a841c90f7712-20191228083553\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testd724cea4-0d3c-4539-b2ff-be08fb23a67e-20200107083714\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testd724cea4-0d3c-4539-b2ff-be08fb23a67e-20200107083714\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testd8e60bac-27ff-4fba-90b8-732c9c5ff91c-20191228083751\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testd8e60bac-27ff-4fba-90b8-732c9c5ff91c-20191228083751\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testd99db4a5-7683-4584-89ad-fefd711de284-20191004190210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testd99db4a5-7683-4584-89ad-fefd711de284-20191004190210\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testd9b4309a-67bc-4cd8-ac47-094cb20ca6aa-20200101090202\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testd9b4309a-67bc-4cd8-ac47-094cb20ca6aa-20200101090202\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testda3320e0-28f2-4146-a002-e06296362711-20191004190115\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testda3320e0-28f2-4146-a002-e06296362711-20191004190115\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testda714121-3240-4253-90c3-48c43f115c90-20200102083419\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testda714121-3240-4253-90c3-48c43f115c90-20200102083419\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testdb357558-60b4-4ee3-9ec3-ba22c5d827fb-20191004020617\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testdb357558-60b4-4ee3-9ec3-ba22c5d827fb-20191004020617\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testdc7230e9-df6d-4edd-a57c-ef7e0432c463-20191002011345\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testdc7230e9-df6d-4edd-a57c-ef7e0432c463-20191002011345\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testdccb59de-436f-4935-bed6-2e677dcaf36a-20200109111802\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testdccb59de-436f-4935-bed6-2e677dcaf36a-20200109111802\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testde985b23-9333-4f6e-a5e8-82025a38b2af-20200102083510\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testde985b23-9333-4f6e-a5e8-82025a38b2af-20200102083510\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Teste271da3e-cbcb-4ee7-8770-f297f414451f-20191003015540\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Teste271da3e-cbcb-4ee7-8770-f297f414451f-20191003015540\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Teste4070edd-aec0-455d-8a79-aecdb7170b6d-20191007234642\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Teste4070edd-aec0-455d-8a79-aecdb7170b6d-20191007234642\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Teste42f351a-4da0-4f0d-93e9-ef1d98e06659-20200108083633\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Teste42f351a-4da0-4f0d-93e9-ef1d98e06659-20200108083633\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Teste66ca23c-f4bf-4eb3-8418-139364d19e7d-20200107062643\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Teste66ca23c-f4bf-4eb3-8418-139364d19e7d-20200107062643\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Teste78b1ab2-1380-48ab-9923-0276cdb7198b-20191001224742\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Teste78b1ab2-1380-48ab-9923-0276cdb7198b-20191001224742\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Teste8607e14-b4f8-472a-bd5b-893b8d9612e6-20200112045941\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Teste8607e14-b4f8-472a-bd5b-893b8d9612e6-20200112045941\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Teste980b80e-3add-42c0-bc98-a84020b2d128-20200108101640\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Teste980b80e-3add-42c0-bc98-a84020b2d128-20200108101640\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Tested79dba9-2d38-4ea9-a01c-56e94b30ca7a-20191007195447\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Tested79dba9-2d38-4ea9-a01c-56e94b30ca7a-20191007195447\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testee9dcf5f-f7c4-4192-a8f4-28e9bc7d0f7c-20191001225005\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testee9dcf5f-f7c4-4192-a8f4-28e9bc7d0f7c-20191001225005\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testefbb340a-b68b-4200-872b-d05e7d29f92d-20191007195432\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testefbb340a-b68b-4200-872b-d05e7d29f92d-20191007195432\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testf1fc0559-6740-48dd-9501-2b933c731d52-20200103083458\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testf1fc0559-6740-48dd-9501-2b933c731d52-20200103083458\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testf41dfc97-bb51-4fba-86ca-a6f2695c415a-20200107050834\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testf41dfc97-bb51-4fba-86ca-a6f2695c415a-20200107050834\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testf5784447-83ed-4c00-8764-ea0f932aafa2-20200106085748\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testf5784447-83ed-4c00-8764-ea0f932aafa2-20200106085748\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testf6128ef6-c13c-420e-8088-0710888ce88b-20200109050003\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testf6128ef6-c13c-420e-8088-0710888ce88b-20200109050003\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testf863ab2c-ada9-4646-84c7-1f83a82375d7-20191229033226\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testf863ab2c-ada9-4646-84c7-1f83a82375d7-20191229033226\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testfac552a7-418f-4baa-8f51-d199ceff5c68-20200103050817\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testfac552a7-418f-4baa-8f51-d199ceff5c68-20200103050817\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testfb7be054-5c15-494f-822c-b64f9a36e2f3-20200105051753\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testfb7be054-5c15-494f-822c-b64f9a36e2f3-20200105051753\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testfc5c7585-6c9a-4aa4-a7c4-1223a94e00c7-20200104083552\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testfc5c7585-6c9a-4aa4-a7c4-1223a94e00c7-20200104083552\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.FileServer.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.FileServer.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Geneva\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Geneva\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.KeyVault\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.KeyVault\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.KeyVault.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.KeyVault.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.LabServices\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.LabServices\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.LabServices.test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.LabServices.test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.Agent\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.Agent\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.Dev\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.Dev\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.Dev.INT\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.Dev.INT\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.Dev.SCALE\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.Dev.SCALE\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.Dev.TEST\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.Dev.TEST\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.GuestHealth\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.GuestHealth\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.DEV\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.DEV\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.INT\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.INT\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.SCALE\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.SCALE\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.TEST\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.TEST\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.INT.Dev\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.INT.Dev\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.SCALE.Dev\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.SCALE.Dev\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.TEST.Dev\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.TEST.Dev\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.WorkloadInsights.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.WorkloadInsights.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.WorkloadInsightsTest.newnamespace\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.WorkloadInsightsTest.newnamespace\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.Workloads\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.Workloads\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.Workloads.Dev\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.Workloads.Dev\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitoring.DependencyAgent\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitoring.DependencyAgent\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitoring.DependencyAgent.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitoring.DependencyAgent.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Networking.DNS\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Networking.DNS\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Networking.SDN\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Networking.SDN\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.NetworkWatcher\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.NetworkWatcher\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.NetworkWatcher.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.NetworkWatcher.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.OpenSSH\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.OpenSSH\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Performance.Diagnostics\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Performance.Diagnostics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Performance.Diagnostics.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Performance.Diagnostics.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.RecoveryServices\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.RecoveryServices.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices.SiteRecovery\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.RecoveryServices.SiteRecovery\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices.SiteRecovery2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.RecoveryServices.SiteRecovery2\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices.WorkloadBackup\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.RecoveryServices.WorkloadBackup\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices.WorkloadBackup.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.RecoveryServices.WorkloadBackup.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.AntimalwareSignature\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.AntimalwareSignature\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.AntimalwareSignature.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.AntimalwareSignature.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.Dsms\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.Dsms\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.Dsms.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.Dsms.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.LinuxAttestation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.LinuxAttestation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.LinuxTestAttestation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.LinuxTestAttestation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.Monitoring\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.Monitoring\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.Monitoring.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.Monitoring.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.Monitoring.Testing\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.Monitoring.Testing\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.TestWindowsAttestation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.TestWindowsAttestation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.WindowsAttestation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.WindowsAttestation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.WinTestAttestation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.WinTestAttestation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Sentinel.DnsExtension.Dev\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Sentinel.DnsExtension.Dev\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.ServiceFabric.MC\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.ServiceFabric.MC\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.ServiceFabric.MC.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.ServiceFabric.MC.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.SiteRecovery.Stage\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.SiteRecovery.Stage\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.SiteRecovery.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.SiteRecovery.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.SiteRecovery2.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.SiteRecovery2.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Test.Identity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Test.Identity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WindowsFabric.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WindowsFabric.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.ReleasePipeTest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.ReleasePipeTest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.ReleasePipeTest.INT\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.ReleasePipeTest.INT\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.ReleasePipeTest.TEST\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.ReleasePipeTest.TEST\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test2\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test3\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test3\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test4\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test4\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test5\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test5\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test5.INT\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test5.INT\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test5.TEST\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test5.TEST\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.VincentTest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.VincentTest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.VincentTest2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.VincentTest2\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.VincentTest3\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.VincentTest3\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.VincentTest4\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.VincentTest4\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.TestTest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.TestTest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.TestTest.INT\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.TestTest.INT\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.TestTest.TEST\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.TestTest.TEST\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Windows.ReleasePipeTest.INT\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Windows.ReleasePipeTest.INT\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Windows.ReleasePipeTest.TEST\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Windows.ReleasePipeTest.TEST\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoring\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoring.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoringTest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoringTest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureData\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureData\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureData.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureData.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.Canary\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights.Canary\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.Corp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights.Corp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.Linux.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights.Linux.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.LinuxTest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights.LinuxTest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.Meya0206\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights.Meya0206\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.MeyaCorp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights.MeyaCorp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.Testing\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights.Testing\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureSecurity.JITAccess\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureSecurity.JITAccess\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.CloudBackup.Workload.Extension\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.CloudBackup.Workload.Extension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.CloudBackup.Workload.Extension.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.CloudBackup.Workload.Extension.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Compute\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Compute.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Compute.TestSar\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute.TestSar\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.CPlat.Core\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.CPlat.Core\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.CPlat.Core.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.CPlat.Core.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Dcsswe.Extensions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Dcsswe.Extensions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.EnterpriseCloud.Monitoring\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.EnterpriseCloud.Monitoring.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.EnterpriseCloud.Monitoring.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Golive.Extensions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Golive.Extensions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.GuestConfig.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.GuestConfig.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.GuestConfiguration\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.GuestConfiguration\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.GuestConfiguration.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.GuestConfiguration.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.GuestConfiguration.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.GuestConfiguration.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.HpcCompute\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.HpcCompute\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.HpcCompute.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.HpcCompute.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.HpcPack\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.HpcPack\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Interceptor\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Interceptor\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.M365\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.M365\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.M365SecurityConfiguration.Kevlar.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.M365SecurityConfiguration.Kevlar.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.ManagedIdentity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.ManagedIdentity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.ManagedServices\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.ManagedServices\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.ManagedServices.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.ManagedServices.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.MonitoringAgent.Extension\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.MonitoringAgent.Extension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Network\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Network\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.OSTCExtensions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.OSTCExtensions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.OSTCExtensions.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.OSTCExtensions.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.OSTCExtensions.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.OSTCExtensions.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.OSTCExtensions.Testing\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.OSTCExtensions.Testing\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Powershell\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Powershell\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Powershell.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Powershell.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Powershell.Test01\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Powershell.Test01\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.SecurityManagement.Kevlar\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.SecurityManagement.Kevlar\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Sentinel.AzureMonitorAgentExtensions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Sentinel.AzureMonitorAgentExtensions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.SoftwareUpdateManagement\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.SoftwareUpdateManagement\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.SoftwareUpdateManagement.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.SoftwareUpdateManagement.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.SqlServer.Managability.IaaS.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.SqlServer.Managability.IaaS.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.SqlServer.Management\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.SqlServer.Management\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.SqlServer.Management.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.SqlServer.Management.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.SystemCenter\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.SystemCenter\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.SystemCenter.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.SystemCenter.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Test.Azure.Workloads\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Test.Azure.Workloads\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.TestSqlServer.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.TestSqlServer.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.ETWTraceListenerService\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.Azure.ETWTraceListenerService\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.RemoteDebug\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.Azure.RemoteDebug\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.RemoteDebug.Json\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.Azure.RemoteDebug.Json\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.ServiceProfiler\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.ServiceProfiler\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.Services\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.Services\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.WindowsAzure.DevTest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.WindowsAzure.DevTest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.WindowsAzure.DevTest.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.WindowsAzure.DevTest.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.WindowsAzure.RemoteDebug\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.WindowsAzure.RemoteDebug\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.WindowsAzure.Test.RemoteDebug\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.WindowsAzure.Test.RemoteDebug\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Windows.Azure.Extensions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Windows.Azure.Extensions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Windows.AzureRemoteApp.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Windows.AzureRemoteApp.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Windows.RemoteDesktop\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Windows.RemoteDesktop\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.WindowsAdminCenter\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.WindowsAdminCenter\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.WindowsAdminCenter.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.WindowsAdminCenter.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.WindowsAzure.Compute\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.WindowsAzure.Compute\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.WindowsAzure.Compute.test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.WindowsAzure.Compute.test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.WVD\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.WVD\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoftagciuk\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoftagciuk\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoftazurecituswarp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoftazurecituswarp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftAzureSiteRecovery\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftAzureSiteRecovery\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftBizTalkServer\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftBizTalkServer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftCBLMariner\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftCBLMariner\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoftcmotest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoftcmotest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoftcorporation1602274591143\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoftcorporation1602274591143\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoftcorporation1620407702632\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoftcorporation1620407702632\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftDynamicsAX\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftDynamicsAX\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftDynamicsGP\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftDynamicsGP\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftDynamicsNAV\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftDynamicsNAV\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoftfarmbeats\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoftfarmbeats\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftHybridCloudStorage\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftHybridCloudStorage\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftOSTC\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftOSTC\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftPowerBI\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftPowerBI\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftRServer\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftRServer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftSharePoint\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftSharePoint\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftSQLServer\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftSQLServer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftTestLinuxPPS\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftTestLinuxPPS\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftVisualStudio\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftVisualStudio\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftWindowsDesktop\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsDesktop\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftWindowsServer\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsServer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftWindowsServerHPCPack\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsServerHPCPack\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft_iot_edge\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft_iot_edge\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft_javaeeonazure_test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft_javaeeonazure_test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microstrategy\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microstrategy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"midasolutions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/midasolutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"middleware\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/middleware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"midfin\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/midfin\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"midvision\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/midvision\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mihupcommunicationspvtltd1599046998010\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mihupcommunicationspvtltd1599046998010\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mindcti\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mindcti\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"minio\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/minio\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"miraclelinux\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/miraclelinux\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"miracl_linux\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/miracl_linux\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"miri-infotech-pvt-ltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/miri-infotech-pvt-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mistio1601460379393\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mistio1601460379393\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mobilab\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mobilab\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"modern-systems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/modern-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"modexblockchaindatabase\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/modexblockchaindatabase\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"monetdbsolutions1611751313758\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/monetdbsolutions1611751313758\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"monitorapp1579029852605\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/monitorapp1579029852605\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"monitorcomputersystemsltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/monitorcomputersystemsltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"moogsoft\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/moogsoft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"morpheus-data\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/morpheus-data\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"moviemasher\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/moviemasher\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mriisoftllc1579457820427\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mriisoftllc1579457820427\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"msopentech\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/msopentech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mtnfog\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mtnfog\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"multisoft-ab\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/multisoft-ab\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mvp-systems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mvp-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mwg_azure\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mwg_azure\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mxhero\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mxhero\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"my-com\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/my-com\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"myarchinc1614657280935\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/myarchinc1614657280935\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"narrativescience\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/narrativescience\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nasuni\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nasuni\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nasunicorporation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nasunicorporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"navicloudrsoftwarepteltd1601967280369\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/navicloudrsoftwarepteltd1601967280369\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ncache\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ncache\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ncbi\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ncbi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ncomputingglobalinc1604353053068\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ncomputingglobalinc1604353053068\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ndl\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ndl\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nebbiolo-technologies-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nebbiolo-technologies-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nec-technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nec-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nefelinetworks1591201080882\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nefelinetworks1591201080882\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"neo4j\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/neo4j\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"neos\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/neos\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"neowaybusinesssolutions-4956350\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/neowaybusinesssolutions-4956350\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netapp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netapp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netatwork\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netatwork\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netfoundryinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netfoundryinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netgate\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netgate\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netikus-net-ltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netikus-net-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netiq\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netiq\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netka\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netka\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netmail\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netmail\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netscout\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netscout\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netspi\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netspi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netsweeper\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netsweeper\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"networksexchangetechnologyltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/networksexchangetechnologyltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netwrix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netwrix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netx\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netx\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"neusoft-neteye\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/neusoft-neteye\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"newnetcommunicationtechnologies1589991852134\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/newnetcommunicationtechnologies1589991852134\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"NewRelic.Infrastructure.Extensions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/NewRelic.Infrastructure.Extensions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"newtglobalconsultingllc1581492268566\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/newtglobalconsultingllc1581492268566\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nextronic-5290868\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nextronic-5290868\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nginxinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nginxinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nice-it-management-solutions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nice-it-management-solutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nicepeopleatwork\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nicepeopleatwork\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nilespartnersinc1617691698386\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nilespartnersinc1617691698386\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"niolabs-5229713\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/niolabs-5229713\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nirvatosoftwarepvtltd1601368706606\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nirvatosoftwarepvtltd1601368706606\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nodejsapi\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nodejsapi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"noianetworklimited1584098036197\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/noianetworklimited1584098036197\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nokiaofamericacorporation1591716055441\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nokiaofamericacorporation1591716055441\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"noobaa\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/noobaa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"norcominformationtechnologygmbhcokgaa\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/norcominformationtechnologygmbhcokgaa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"noricumcloudsolutions1600524477681\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/noricumcloudsolutions1600524477681\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"norsync\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/norsync\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"northbridge-secure\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/northbridge-secure\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nozominetworks1582208017986\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nozominetworks1582208017986\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nri\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nri\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ntegralinc1586961136942\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ntegralinc1586961136942\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ntt-data-intellilink-corporation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ntt-data-intellilink-corporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nttdata\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nttdata\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nttltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nttltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nuco-networks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nuco-networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"numbersbelieve\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/numbersbelieve\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"numtrallcpublisher\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/numtrallcpublisher\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nuxeo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nuxeo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nvidia\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nvidia\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"o2mc-real-time-data-platform\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/o2mc-real-time-data-platform\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"objectivity-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/objectivity-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"objectivity1595351622261\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/objectivity1595351622261\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"oceanblue-cloud\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/oceanblue-cloud\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"OctopusDeploy.Tentacle\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/OctopusDeploy.Tentacle\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"odix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/odix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"odysseuscomputationalsolutions1630242118741\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/odysseuscomputationalsolutions1630242118741\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"odysseyconsultantsltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/odysseyconsultantsltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"officeatwork-ag\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/officeatwork-ag\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"omega-software\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/omega-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"onapsis\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/onapsis\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"oncore_cloud_services-4944214\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/oncore_cloud_services-4944214\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"onexgroup\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/onexgroup\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"onspecta\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/onspecta\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ontology\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ontology\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"onyx-point-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/onyx-point-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"op5\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/op5\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"open-connect-systems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/open-connect-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"opencell\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/opencell\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"openlinkswcom-pago\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/openlinkswcom-pago\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"OpenLogic\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/OpenLogic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"openrefactoryinc1620140917523\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/openrefactoryinc1620140917523\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"openshotstudiosllc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/openshotstudiosllc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"opentext\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/opentext\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"openvpn\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/openvpn\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"opslogix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/opslogix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"opswatinc1619007967290\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/opswatinc1619007967290\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"optimitiveslu1618320281443\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/optimitiveslu1618320281443\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"option3\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/option3\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Oracle\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Oracle\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"oraylis\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/oraylis\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"oraylisbi\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/oraylisbi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"orbs-network\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/orbs-network\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"oriana\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/oriana\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"orientdb\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/orientdb\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"oroinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/oroinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"osirium-ltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/osirium-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"osisoft\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/osisoft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"osnexus\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/osnexus\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"outpost24\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/outpost24\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"outsystems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/outsystems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ovaledge1618392232783\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ovaledge1618392232783\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pachyderminc1585170006545\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pachyderminc1585170006545\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pacteratechnologiesinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pacteratechnologiesinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"paladionnetworkspvtltd1606120508449\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/paladionnetworkspvtltd1606120508449\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"paloaltonetworks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/paloaltonetworks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"panopta\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/panopta\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"panorama-necto\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/panorama-necto\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"panzura-file-system\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/panzura-file-system\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"parabole\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/parabole\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"paralaxiomtechnologiesprivatelimited1596433357886\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/paralaxiomtechnologiesprivatelimited1596433357886\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"parallels\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/parallels\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"parasoft\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/parasoft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"parkersoftwarelimited1609786657569\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/parkersoftwarelimited1609786657569\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"parsec-for-teams\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/parsec-for-teams\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pasifikciptamandiri\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pasifikciptamandiri\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"passlogy\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/passlogy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"paxata\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/paxata\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pcman\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pcman\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"peer-software-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/peer-software-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"penta-security-systems-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/penta-security-systems-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"percona\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/percona\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"perforce\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/perforce\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"periscope-tech-4791746\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/periscope-tech-4791746\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"piolinkinc1582849368309\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/piolinkinc1582849368309\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pivotal\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pivotal\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pixitmedia1591611150480\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pixitmedia1591611150480\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"plesk\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/plesk\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pmsoftwareinternational1603102514882\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pmsoftwareinternational1603102514882\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pnop\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pnop\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"polarityioinc1628691850891\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/polarityioinc1628691850891\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"portalarchitects\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/portalarchitects\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"portsysinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/portsysinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"postgres-pro\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/postgres-pro\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"powerbireach\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/powerbireach\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"prakshepprivatelimited1619949827900\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/prakshepprivatelimited1619949827900\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"prestashop\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/prestashop\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"prestige_informatique-1090178\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/prestige_informatique-1090178\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"prime-strategy\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/prime-strategy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"primekey\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/primekey\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"primestrategynewyorkinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/primestrategynewyorkinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pro-vision\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pro-vision\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"process-one\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/process-one\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"processgold\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/processgold\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"procomputers\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/procomputers\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"procomputerssrl1594239153814\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/procomputerssrl1594239153814\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"profecia\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/profecia\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Profiler.AgentOrchestrationRefactor.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Profiler.AgentOrchestrationRefactor.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Profiler.Master.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Profiler.Master.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"profisee\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/profisee\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"progelspa\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/progelspa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"progresssoftwarecorporation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/progresssoftwarecorporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"proliongmbh1628175060372\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/proliongmbh1628175060372\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"protegrityusainc1627404648458\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/protegrityusainc1627404648458\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"protiviti\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/protiviti\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"proventeq\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/proventeq\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ptc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ptc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ptsecurity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ptsecurity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pulse-secure\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pulse-secure\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pulsesecuretechnologies1638179500151\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pulsesecuretechnologies1638179500151\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"puppet\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/puppet\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"puppeteersoy1601024480557\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/puppeteersoy1601024480557\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"PuppetLabs\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/PuppetLabs\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"PuppetLabs.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/PuppetLabs.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"purestorageinc1578960262525\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/purestorageinc1578960262525\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pydio\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pydio\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pyramidanalytics\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pyramidanalytics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"qlik\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/qlik\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"qnapsystemsinc1601352084032\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/qnapsystemsinc1601352084032\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"qore-technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/qore-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"qs-solutions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/qs-solutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Qualys\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Qualys\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Qualys.LinuxAgent.GrayLabel\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Qualys.LinuxAgent.GrayLabel\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Qualys.WindowsAgent.GrayLabel\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Qualys.WindowsAgent.GrayLabel\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"qualysguard\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/qualysguard\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"quasardb\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/quasardb\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"qubole-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/qubole-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"quest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/quest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"racknap\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/racknap\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rackwareinc1619403669255\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rackwareinc1619403669255\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"radiant-logic\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/radiant-logic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"radware\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/radware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"raincode\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/raincode\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rancher\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rancher\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rapid7\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rapid7\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Rapid7.InsightPlatform\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Rapid7.InsightPlatform\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rapidminer\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rapidminer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"raynetgmbh\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/raynetgmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"readymind\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/readymind\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"realm\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/realm\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"reblaze\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/reblaze\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"RedHat\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/RedHat\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"redhat-rhel\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/redhat-rhel\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"redpoint-global\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/redpoint-global\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"refactr\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/refactr\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"refinitiv\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/refinitiv\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"refinitiv-4807503\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/refinitiv-4807503\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"relevance-lab\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/relevance-lab\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"remotelearner\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/remotelearner\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"res\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/res\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"resco\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/resco\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"resemblesystems1582780358300\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/resemblesystems1582780358300\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"responder-corp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/responder-corp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"revolution-analytics\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/revolution-analytics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rhcsolutions1586957910818\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rhcsolutions1586957910818\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ribboncommunications\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ribboncommunications\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"RightScaleLinux\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/RightScaleLinux\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"RightScaleWindowsServer\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/RightScaleWindowsServer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rimo3\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rimo3\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ringsoftwareresearchanddevelopmentinc1578946072257\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ringsoftwareresearchanddevelopmentinc1578946072257\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"riverbed\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/riverbed\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"RiverbedTechnology\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/RiverbedTechnology\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rmgtechnologiesinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rmgtechnologiesinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rocketml\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rocketml\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rocketsoftware\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rocketsoftware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rohdeschwarzcybersecuritygmbh\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rohdeschwarzcybersecuritygmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rohdeschwarzcybersecuritysas\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rohdeschwarzcybersecuritysas\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"roktech\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/roktech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rsa-security-llc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rsa-security-llc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rsk-labs\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rsk-labs\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rstudio-5237862\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rstudio-5237862\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rtts\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rtts\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rubrik-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rubrik-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"runecastsolutionslimited1614186396822\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/runecastsolutionslimited1614186396822\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"s2ix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/s2ix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"saama\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/saama\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"saasame-limited\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/saasame-limited\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"safesoftwareinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/safesoftwareinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"safeticatechnologiessro\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/safeticatechnologiessro\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"safetica_technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/safetica_technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"safetoopen1585013318137\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/safetoopen1585013318137\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"saltsecurity1583264186232\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/saltsecurity1583264186232\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"saltsecurity1583264669848\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/saltsecurity1583264669848\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"saltstack\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/saltstack\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"samsung-sds\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/samsung-sds\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"samsungelectronics1632860607983\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/samsungelectronics1632860607983\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"samsungsds-cello\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/samsungsds-cello\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"samsungsds_sdbe\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/samsungsds_sdbe\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sandhatatechnologieslimited1615753438737\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sandhatatechnologieslimited1615753438737\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sap\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sap\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sapphiretechnologieslimited1611758579346\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sapphiretechnologieslimited1611758579346\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sas-institute-560503\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sas-institute-560503\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"scaidata\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/scaidata\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"scalearc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/scalearc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"scalegrid\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/scalegrid\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"scality\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/scality\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"schrockeninc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/schrockeninc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sci\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sci\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sciencelogicinc1622565452194\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sciencelogicinc1622565452194\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"scientiamobile\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/scientiamobile\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"scontainug1595751515785\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/scontainug1595751515785\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"scubaanalytics\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/scubaanalytics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"scylladb1631195365807\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/scylladb1631195365807\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"seaqserviciossas1579029207572\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/seaqserviciossas1579029207572\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"searchbloxsoftwareinc1594309037050\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/searchbloxsoftwareinc1594309037050\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"secureworks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/secureworks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"securityonionsolutions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/securityonionsolutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"securityonionsolutionsllc1624649205155\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/securityonionsolutionsllc1624649205155\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"securosis\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/securosis\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"seequentltd1585781751395\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/seequentltd1585781751395\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"semarchy\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/semarchy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"semperis\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/semperis\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"senhasegura\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/senhasegura\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"SentinelOne.LinuxExtension\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/SentinelOne.LinuxExtension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"SentinelOne.WindowsExtension\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/SentinelOne.WindowsExtension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"SentinelOne.WindowsExtension.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/SentinelOne.WindowsExtension.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sentriumsl\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sentriumsl\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sentryone\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sentryone\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sepiosystems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sepiosystems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"seppmailag\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/seppmailag\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"seraumo1620002807288\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/seraumo1620002807288\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"service-control-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/service-control-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sesamesoftwareinc1622125191447\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sesamesoftwareinc1622125191447\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"shadow-soft\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/shadow-soft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"shareshiftneeraj.test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/shareshiftneeraj.test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sightapps\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sightapps\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"signal-sciences\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/signal-sciences\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"silk\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/silk\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"silver-peak-systems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/silver-peak-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"simmachinesinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/simmachinesinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"simontelephonics\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/simontelephonics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"simpledatalabsinc1635791235920\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/simpledatalabsinc1635791235920\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"simplifierag\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/simplifierag\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"simpligov\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/simpligov\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sinefa\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sinefa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sinequa\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sinequa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sinequa1588262295885\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sinequa1588262295885\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"singapore-telecommunications-limited\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/singapore-telecommunications-limited\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sios_datakeeper\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sios_datakeeper\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"siportalinc1581539156321\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/siportalinc1581539156321\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sisenseltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sisenseltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Site24x7\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Site24x7\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sktelecom\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sktelecom\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"skyarc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/skyarc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"skyboxsecurity1585187406404\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/skyboxsecurity1585187406404\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"skylarkcloud\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/skylarkcloud\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"smartbearsoftware\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/smartbearsoftware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"smartmessage-autoflow\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/smartmessage-autoflow\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"snaplogic\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/snaplogic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"snapt-adc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/snapt-adc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"snips\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/snips\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"soasta\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/soasta\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"softnas\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/softnas\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"softwarecentralas1642687699196\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/softwarecentralas1642687699196\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"softwarehut\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/softwarehut\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"softwebsolutions-4518310\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/softwebsolutions-4518310\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"soha\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/soha\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"solanolabs\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/solanolabs\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"solar-security\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/solar-security\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"solarwinds\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/solarwinds\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"solvedevops1643693563360\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/solvedevops1643693563360\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sonicwall-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sonicwall-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sophos\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sophos\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sourcegearllc1616101262784\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sourcegearllc1616101262784\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"south-river-technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/south-river-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"southrivertech1586314123192\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/southrivertech1586314123192\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"spacecurve\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/spacecurve\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"spaceliftinc1625499025476\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/spaceliftinc1625499025476\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"spagobi\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/spagobi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sparklinglogic\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sparklinglogic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"spectralcorelimited1619779004178\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/spectralcorelimited1619779004178\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"spektra\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/spektra\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sphere3d\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sphere3d\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"spideroakinc1588278690933\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/spideroakinc1588278690933\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"spirentcommunications1594084187199\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/spirentcommunications1594084187199\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"splunk\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/splunk\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sproutenetworks1593456311717\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sproutenetworks1593456311717\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sqlstream\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sqlstream\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"squadratechnologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/squadratechnologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"squaredup\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/squaredup\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"src-solution\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/src-solution\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stackato-platform-as-a-service\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stackato-platform-as-a-service\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Stackify.LinuxAgent.Extension\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Stackify.LinuxAgent.Extension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stackstorm\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stackstorm\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"startekfingerprintmatch\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/startekfingerprintmatch\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"startisolucoesemtecnologialtda1635263523201\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/startisolucoesemtecnologialtda1635263523201\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"starwind\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/starwind\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"StatusMonitor2.Diagnostics.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/StatusMonitor2.Diagnostics.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"StatusReport.Diagnostics.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/StatusReport.Diagnostics.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stealthbits\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stealthbits\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"steelhive\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/steelhive\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stonebondtechnologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stonebondtechnologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stonefly\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stonefly\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"storage_made_easy\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/storage_made_easy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stormshield\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stormshield\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"storone1594045543980\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/storone1594045543980\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"storreduce\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/storreduce\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"storwarespzoo1611743234900\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/storwarespzoo1611743234900\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"strangebee1595948424730\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/strangebee1595948424730\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"strataidentity1608323708170\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/strataidentity1608323708170\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stratis-group-ltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stratis-group-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stratodesk1611152769936\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stratodesk1611152769936\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stratumn\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stratumn\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"streamsets\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/streamsets\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"striim\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/striim\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stromasys\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stromasys\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"strongboxitllc1594816423884\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/strongboxitllc1594816423884\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"su\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/su\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"subscription.test.krsh\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/subscription.test.krsh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sumologic\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sumologic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sunatogmbh\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sunatogmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sunday\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sunday\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"SUSE\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/SUSE\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"swoopanalytics\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/swoopanalytics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sycom-technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sycom-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sycompatechnologycompanyinc1588192103892\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sycompatechnologycompanyinc1588192103892\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.CloudWorkloadProtection\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.CloudWorkloadProtection\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.CloudWorkloadProtection.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.CloudWorkloadProtection.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.CloudWorkloadProtection.TestOnStage\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.CloudWorkloadProtection.TestOnStage\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.QA\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.QA\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.staging\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.staging\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.test.ru2.latest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.test.ru2.latest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.test.ru2final\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.test.ru2final\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.test.ru2latest1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.test.ru2latest1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.test.ru4mp1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.test.ru4mp1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.test.ru4mp1.latest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.test.ru4mp1.latest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.test.ru4mp1final\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.test.ru4mp1final\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"symanteccorporation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/symanteccorporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"symantectest1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/symantectest1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"synack-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/synack-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"syncfusion\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/syncfusion\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"syncfusionbigdataplatfor\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/syncfusionbigdataplatfor\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"synechron-technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/synechron-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"synergixinc1585256339250\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/synergixinc1585256339250\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"synnexcorp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/synnexcorp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"syscomcomputerengineeringco1583913200141\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/syscomcomputerengineeringco1583913200141\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"syte\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/syte\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tableau\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tableau\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tactic\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tactic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"talari-networks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/talari-networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"talena-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/talena-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"talend\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/talend\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"talon\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/talon\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tamrinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tamrinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"targit\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/targit\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tata_communications\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tata_communications\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tavanttechnologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tavanttechnologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tavendo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tavendo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"te-systems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/te-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"techdivision\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/techdivision\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"techlatest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/techlatest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"technicheltd1606969724100\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/technicheltd1606969724100\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tecknolab\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tecknolab\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"telepat\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/telepat\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"teloscorporation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/teloscorporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tempered-networks-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tempered-networks-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tenable\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tenable\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tensormakecorpdbaoneclickai1608247756082\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tensormakecorpdbaoneclickai1608247756082\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"teradata\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/teradata\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Teradici\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Teradici\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"teramindinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/teramindinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.Gemalto.SafeNet.ProtectV\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.Gemalto.SafeNet.ProtectV\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.Gemalto.SafeNet.ProtectV.Azure\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.Gemalto.SafeNet.ProtectV.Azure\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.HP.AppDefender\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.HP.AppDefender\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.Microsoft.VisualStudio.Services\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.Microsoft.VisualStudio.Services\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.NJHP.AppDefender\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.NJHP.AppDefender\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.SqlServer.Managability\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.SqlServer.Managability\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.SqlServer.Management\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.SqlServer.Management\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.SqlServer.Management.corext\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.SqlServer.Management.corext\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test1.NJHP.AppDefender\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test1.NJHP.AppDefender\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test3.Microsoft.VisualStudio.Services\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test3.Microsoft.VisualStudio.Services\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"testable1603721901088\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/testable1603721901088\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"testpro\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/testpro\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"test_test_mix3pptest0011614206850774\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/test_test_mix3pptest0011614206850774\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"test_test_mneela1628617140187\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/test_test_mneela1628617140187\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"test_test_pmc2pc1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/test_test_pmc2pc1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thales-vormetric\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thales-vormetric\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thalesdiscplusainc1596561677238\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thalesdiscplusainc1596561677238\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thedatavaluefactoryltd1589348815922\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thedatavaluefactoryltd1589348815922\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thefreebsdfoundation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thefreebsdfoundation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thehdfgroup1616725197741\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thehdfgroup1616725197741\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"theumag1596442827072\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/theumag1596442827072\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"things-board\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/things-board\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thingscareinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thingscareinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thinprintgmbh\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thinprintgmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thorntechnologiesllc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thorntechnologiesllc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thoughtspot-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thoughtspot-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"threatintelligenceptyltd1586824172898\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/threatintelligenceptyltd1586824172898\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tibco-software\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tibco-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tidal-migrations\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tidal-migrations\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tidalmediainc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tidalmediainc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tig\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tig\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tiger-technology\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tiger-technology\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tigergraph\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tigergraph\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"timextender\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/timextender\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tmaxsoft\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tmaxsoft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tmaxsoft1608612658335\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tmaxsoft1608612658335\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tomsawyersoftwarecorp1613579206342\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tomsawyersoftwarecorp1613579206342\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"topicus\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/topicus\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"torusware\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/torusware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"totemo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/totemo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"townsend-security\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/townsend-security\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"transcendinformationinc1609918445926\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/transcendinformationinc1609918445926\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"transientxinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/transientxinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"transvault\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/transvault\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"trendmicro\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/trendmicro\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"TrendMicro.DeepSecurity.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/TrendMicro.DeepSecurity.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"TrendMicro.PortalProtect\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/TrendMicro.PortalProtect\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tresorit\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tresorit\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"trifacta\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/trifacta\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tripleblindinc1615730179432\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tripleblindinc1615730179432\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tripwire-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tripwire-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"truata1612259728221\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/truata1612259728221\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"truestack\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/truestack\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tryonsolutionsinc1596650621083\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tryonsolutionsinc1596650621083\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tsa-public-service\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tsa-public-service\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tunnelbiz\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tunnelbiz\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"turbonet\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/turbonet\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"turbonet1581982683964\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/turbonet1581982683964\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"twistlock\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/twistlock\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"typesafe\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/typesafe\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ubeeko\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ubeeko\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ubercloud\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ubercloud\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"uipath-5054924\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/uipath-5054924\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ulex\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ulex\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"unifi-software\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/unifi-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"unifiedstreaming1598872291606\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/unifiedstreaming1598872291606\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"uniprint-net\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/uniprint-net\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"unitrends\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/unitrends\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"unnisoft\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/unnisoft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"unravel-data\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/unravel-data\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"unscramblsingaporepteltd-4999260\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/unscramblsingaporepteltd-4999260\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"untangle\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/untangle\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"upsolver1594188634150\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/upsolver1594188634150\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"usp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/usp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"valohai\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/valohai\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"valtix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/valtix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"varmournetworks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/varmournetworks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"varnish\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/varnish\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vatacommunicationsinc1581644208717\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vatacommunicationsinc1581644208717\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vaultive-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vaultive-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vbot\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vbot\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vcinityinc1587684340545\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vcinityinc1587684340545\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vectraaiinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vectraaiinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"veeam\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/veeam\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"velocitydb-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/velocitydb-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"velocloud\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/velocloud\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vembutechnologiespvtltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vembutechnologiespvtltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vemn\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vemn\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"veritas\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/veritas\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"versanetworks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/versanetworks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"versasec\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/versasec\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vidispine\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vidispine\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vidizmo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vidizmo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vigyanlabs-innovations-pvt-ltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vigyanlabs-innovations-pvt-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vigyanlabsinc1581413676614\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vigyanlabsinc1581413676614\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"viptela\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/viptela\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vircom\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vircom\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"virtamovecorp1615909247913\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/virtamovecorp1615909247913\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"virtualpulsesro1607008728942\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/virtualpulsesro1607008728942\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"virtuozzointernationalgmbh1626704951469\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/virtuozzointernationalgmbh1626704951469\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"visualknowledgeshare1591795776234\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/visualknowledgeshare1591795776234\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"visualsoft-center\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/visualsoft-center\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vizixiotplatformretail001\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vizixiotplatformretail001\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vmlabinc1613642184700\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vmlabinc1613642184700\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vmturbo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vmturbo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vmware-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vmware-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vnomicinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vnomicinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"voiceelements\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/voiceelements\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"voleatechgmbh1636966911943\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/voleatechgmbh1636966911943\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"volterraedgeservices\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/volterraedgeservices\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Vormetric\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Vormetric\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vscconsultingptyltd1608535888097\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vscconsultingptyltd1608535888097\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vte\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vte\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vu-llc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vu-llc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vyulabsinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vyulabsinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"WAD2AI.Diagnostics.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/WAD2AI.Diagnostics.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"WAD2EventHub.Diagnostics.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/WAD2EventHub.Diagnostics.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wallarm\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wallarm\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wallix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wallix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wandisco\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wandisco\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wanos\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wanos\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wanpath-dba-myworkdrive\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wanpath-dba-myworkdrive\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wardy-it-solutions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wardy-it-solutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"warewolf-esb\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/warewolf-esb\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"watchguard-technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/watchguard-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"webaloinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/webaloinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"websense-apmailpe\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/websense-apmailpe\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"websoft9inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/websoft9inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wedoitllc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wedoitllc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"westernoceansoftwaresprivatelimited\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/westernoceansoftwaresprivatelimited\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wherescapesoftware\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wherescapesoftware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"winmagic_securedoc_cloudvm\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/winmagic_securedoc_cloudvm\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wintellisys-inc-4561600\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wintellisys-inc-4561600\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"witfooinc1590167223060\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/witfooinc1590167223060\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wmspanel\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wmspanel\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wood1595864497589\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wood1595864497589\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"workshare-technology\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/workshare-technology\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"world-programming\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/world-programming\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"worxogo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/worxogo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wowza\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wowza\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"xcontentptyltd-1329748\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/xcontentptyltd-1329748\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"xendata-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/xendata-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"xfinityinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/xfinityinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"xilinx\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/xilinx\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"xoriantcorporationazxteam1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/xoriantcorporationazxteam1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"xoriantsolutionspvtltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/xoriantsolutionspvtltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"xtremedata\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/xtremedata\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"xyzrd-group-ou\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/xyzrd-group-ou\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"yellowfin\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/yellowfin\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"yellowfininternationalptyltd1616363974066\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/yellowfininternationalptyltd1616363974066\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"yokogawarentalleasecorporation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/yokogawarentalleasecorporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"your-shop-online\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/your-shop-online\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"z1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/z1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"z4it-aps\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/z4it-aps\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zabbix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zabbix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zend\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zend\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zenterasystemsinc1605292453288\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zenterasystemsinc1605292453288\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zerodown_software\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zerodown_software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zerto\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zerto\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zettalane_systems-5254599\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zettalane_systems-5254599\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zevenet\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zevenet\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zilliz\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zilliz\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zoomdata\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zoomdata\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zscaler\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zscaler\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zscaler1579058425289\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zscaler1579058425289\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zultysinc1596831546163\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zultysinc1596831546163\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"128technology\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/128technology\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1580863854728\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1580863854728\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1583411303229\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1583411303229\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1583465680865\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1583465680865\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1585118004523\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1585118004523\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1592878437854\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1592878437854\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1597644262255\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1597644262255\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1598955805825\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1598955805825\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1601633765871\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1601633765871\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1602067018799\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1602067018799\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1604579683207\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1604579683207\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1615257339685\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1615257339685\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1615278064010\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1615278064010\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1615455873642\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1615455873642\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1624590941808\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1624590941808\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1640334196980\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1640334196980\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1e\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1e\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"2021ai\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/2021ai\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"247commercelimited1611063941652\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/247commercelimited1611063941652\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"3cx-pbx\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/3cx-pbx\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"42crunch1580391915541\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/42crunch1580391915541\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"4psa\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/4psa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"5nine-software-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/5nine-software-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"6124903\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/6124903\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"7isolutions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/7isolutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"a10networks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/a10networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"a10networks1596136698788\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/a10networks1596136698788\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"abiquo\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/abiquo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"abzoobainc1598420455082\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/abzoobainc1598420455082\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"accedian\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/accedian\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"accelario1579101623356\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/accelario1579101623356\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"accellion\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/accellion\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"accessdata-group\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/accessdata-group\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"accops\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/accops\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aciworldwide\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aciworldwide\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Acronis\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Acronis\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Acronis.Backup\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Acronis.Backup\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"actian-corp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/actian-corp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"actian_matrix\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/actian_matrix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"actifio\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/actifio\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"actiphy\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/actiphy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"actiphyinc1627974506603\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/actiphyinc1627974506603\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"activecountermeasuresinc1631039410073\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/activecountermeasuresinc1631039410073\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"activeeon\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/activeeon\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"activeops\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/activeops\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"adastracorporation-4028356\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/adastracorporation-4028356\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"adgs\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/adgs\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"advantech\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/advantech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"advantech-webaccess\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/advantech-webaccess\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"advantys\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/advantys\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aelf\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aelf\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aerospike\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aerospike\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"affinio\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/affinio\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"affirmednetworks1607630812999\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/affirmednetworks1607630812999\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ageniumscale1591804889317\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ageniumscale1591804889317\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aggregion-ltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aggregion-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"agiledialogssl1603791911858\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/agiledialogssl1603791911858\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"agolo\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/agolo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ahnlabinc1584495174865\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ahnlabinc1584495174865\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ahnlabinc1584495467593\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ahnlabinc1584495467593\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"airalabrus\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/airalabrus\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aiscaler-cache-control-ddos-and-url-rewriting-\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aiscaler-cache-control-ddos-and-url-rewriting-\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aisundowninc1618516322959\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aisundowninc1618516322959\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"akamai-technologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/akamai-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"akumina\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/akumina\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"akumo-software\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/akumo-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"al-tamamunitedtradingcontractingcompany\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/al-tamamunitedtradingcontractingcompany\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"alachisoft\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/alachisoft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"alertlogic\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/alertlogic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"AlertLogic.Extension\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/AlertLogic.Extension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"algolyticstechnologies1606475101268\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/algolyticstechnologies1606475101268\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"alicetrix\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/alicetrix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"alienvault\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/alienvault\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"alldigital-brevity\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/alldigital-brevity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"almalinux\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/almalinux\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"almalinuxosfoundation1628089859865\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/almalinuxosfoundation1628089859865\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"altair-engineering-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/altair-engineering-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"altamira-corporation\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/altamira-corporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"alteryx\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/alteryx\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"altova\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/altova\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"amergint1593131356777\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/amergint1593131356777\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"anjanadatasl1583402861145\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/anjanadatasl1583402861145\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ansys\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ansys\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"antmedia\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/antmedia\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aod\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aod\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"apigee\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/apigee\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"appcara\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appcara\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"appcelerator\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appcelerator\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"appex-networks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appex-networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"appistry\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appistry\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"appiyo_technologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appiyo_technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"appmint_inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appmint_inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"apps-4-rent\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/apps-4-rent\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"appscale-marketplace\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appscale-marketplace\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"appsurifyinc1606933045773\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appsurifyinc1606933045773\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aquaforest\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aquaforest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aquantyinc1598537176913\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aquantyinc1598537176913\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aquaveollc1633710529908\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aquaveollc1633710529908\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"arabesque-group\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/arabesque-group\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"arangodb\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/arangodb\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aras\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aras\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"arcblock\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/arcblock\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"arcesb\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/arcesb\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"arcontechsolutionsprivatelimited1623841797810\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/arcontechsolutionsprivatelimited1623841797810\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"arcserveusallc-marketing\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/arcserveusallc-marketing\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"arista-networks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/arista-networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ariwontollc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ariwontollc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"array_networks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/array_networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"artificial-intelligence-techniques-sl\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/artificial-intelligence-techniques-sl\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"arubanetworks-4922182\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/arubanetworks-4922182\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"asdivertissementinc1617837708654\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/asdivertissementinc1617837708654\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"asigra\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/asigra\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aspentechnologyhq-1353108\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aspentechnologyhq-1353108\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"astadia-1148316\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/astadia-1148316\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"asterasoftware1581022936015\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/asterasoftware1581022936015\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"asyscosoftwarebv\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/asyscosoftwarebv\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ataccama\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ataccama\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"athinfosystems1641442221349\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/athinfosystems1641442221349\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"athinfosystems1648710938250\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/athinfosystems1648710938250\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"atlgaming\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/atlgaming\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"atmosera\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/atmosera\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"atomicorp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/atomicorp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"atomizedinc1587939464368\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/atomizedinc1587939464368\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"attunity_cloudbeam\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/attunity_cloudbeam\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"audiocodes\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/audiocodes\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"auraportal\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/auraportal\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"auriq-systems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/auriq-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"automateio1592914387888\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/automateio1592914387888\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"automationanywhere\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/automationanywhere\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"avanseus\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/avanseus\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"avepoint\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/avepoint\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aveva1\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aveva1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"avi-networks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/avi-networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aviatrix-systems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aviatrix-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"awingu\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/awingu\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"axedrasag1590581171549\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/axedrasag1590581171549\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"axsguardablenv\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/axsguardablenv\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"axshco\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/axshco\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"axway\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/axway\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"axxana\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/axxana\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"azhpc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/azhpc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"azul\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/azul\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"azure-dockit\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/azure-dockit\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"azurecyclecloud\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/azurecyclecloud\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"AzureDatabricks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/AzureDatabricks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"azureopenshift\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/azureopenshift\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"AzureRT.PIR.Synthetics.ProdTest\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/AzureRT.PIR.Synthetics.ProdTest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"AzureRT.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/AzureRT.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"azuretesting\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/azuretesting\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"azuretesting2\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/azuretesting2\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"azuretesting3\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/azuretesting3\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"AzureTools1type\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/AzureTools1type\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"baas-techbureau\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/baas-techbureau\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"baffle-io\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/baffle-io\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"balabit\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/balabit\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"barracudanetworks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/barracudanetworks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"basho\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/basho\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"batch\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/batch\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bayware\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bayware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bdy\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bdy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"belindaczsro1588885355210\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/belindaczsro1588885355210\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bellsoft1582871421940\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bellsoft1582871421940\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"betsol\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/betsol\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"beyondtrust\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/beyondtrust\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bi-builders-as\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bi-builders-as\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"big-id\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/big-id\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"biolibinc1622552350258\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/biolibinc1622552350258\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bissantechnology1583581147809\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bissantechnology1583581147809\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bitdefendercybersecurity\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bitdefendercybersecurity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Bitnami\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Bitnami\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bizagi\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bizagi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bizaptyltd1626489237351\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bizaptyltd1626489237351\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bizdataloome\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bizdataloome\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"biztalk360\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/biztalk360\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"black-duck-software\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/black-duck-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"blackbird\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/blackbird\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"blackmagicdesignincorporated1596492193249\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/blackmagicdesignincorporated1596492193249\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"blk-technologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/blk-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"blockapps\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/blockapps\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"blockchain-foundry\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/blockchain-foundry\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"blockstack\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/blockstack\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bloombase\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bloombase\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bluecat\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bluecat\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bluejeansnetwork1638333611902\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bluejeansnetwork1638333611902\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"blueprismlimited-4827145\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/blueprismlimited-4827145\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bluesyntaxconsulting1617654548594\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bluesyntaxconsulting1617654548594\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bluetalon\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bluetalon\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bmc.ctm\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bmc.ctm\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bmcctm.test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bmcctm.test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"boardpacpvtltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/boardpacpvtltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bocada\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bocada\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"boemskats\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/boemskats\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"botanalytics\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/botanalytics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bowspritconsultingopcprivatelimited1596291408582\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bowspritconsultingopcprivatelimited1596291408582\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bravura-software-llc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bravura-software-llc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Brianjac.Symantec.CloudWorkloadProtection\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Brianjac.Symantec.CloudWorkloadProtection\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bricatainc1584472632111\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bricatainc1584472632111\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bright-computing\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bright-computing\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"brightcomputing\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/brightcomputing\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"brocade_communications\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/brocade_communications\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"brutale\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/brutale\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bryte\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bryte\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bssw\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bssw\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bt-americas-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bt-americas-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"buddhalabs\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/buddhalabs\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cadosecurityltd1626856705534\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cadosecurityltd1626856705534\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"calculated_systems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/calculated_systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"caloudi_corp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/caloudi_corp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"canadiancentreforcybersecurity1610638436359\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/canadiancentreforcybersecurity1610638436359\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Canonical\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Canonical\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"canonical-test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/canonical-test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"carto\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/carto\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cask\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cask\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"castaigroupinc1595243474856\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/castaigroupinc1595243474856\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"catechnologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/catechnologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"catonetworksltd1641478570665\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/catonetworksltd1641478570665\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cautelalabs\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cautelalabs\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cavirin\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cavirin\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cayosoftinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cayosoftinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cdatasoftware\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cdatasoftware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cds\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cds\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"celum-gmbh\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/celum-gmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"center-for-internet-security-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/center-for-internet-security-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"centeritysystems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/centeritysystems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"centrixeltd1594135951373\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/centrixeltd1594135951373\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"centrocomputerspa1584528117084\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/centrocomputerspa1584528117084\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"certifiedsecuritysolutionsinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/certifiedsecuritysolutionsinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"certivox\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/certivox\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cfd-direct\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cfd-direct\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"chain\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/chain\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"checkpoint\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/checkpoint\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"chef-software\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/chef-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Chef.Bootstrap.WindowsAzure\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Chef.Bootstrap.WindowsAzure\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"chunghwatelecom1587573688842\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/chunghwatelecom1587573688842\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cinchy\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cinchy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cinegy-gmbh\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cinegy-gmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ciphertechsinc1646670709341\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ciphertechsinc1646670709341\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"circleci\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/circleci\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cires21\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cires21\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cirruswaveinc1579234787943\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cirruswaveinc1579234787943\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cisco\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cisco\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"citrix\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/citrix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Citrix.ADC\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Citrix.ADC\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"clapsodeughaftungsbeschrnkt1626333173563\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/clapsodeughaftungsbeschrnkt1626333173563\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"clear-linux-project\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/clear-linux-project\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"clone-systems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/clone-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"clouber\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/clouber\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloud-checkr\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloud-checkr\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloud-cruiser\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloud-cruiser\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloud-infrastructure-services\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloud-infrastructure-services\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudaccelinc1628754426775\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudaccelinc1628754426775\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudbees\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudbees\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudbees-enterprise-jenkins\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudbees-enterprise-jenkins\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudbolt-software\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudbolt-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudboltsoftware1639523402532\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudboltsoftware1639523402532\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudboost\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudboost\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudcover\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudcover\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudenablers-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudenablers-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudentity\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudentity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudera\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudera\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudflare\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudflare\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudhouse\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudhouse\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudinfo-4919088\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudinfo-4919088\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudknox\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudknox\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudlanes\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudlanes\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudlink\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudlink\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"CloudLinkEMC.SecureVM\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/CloudLinkEMC.SecureVM\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudmavensolutions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudmavensolutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudneeti\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudneeti\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudplan-gmbh\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudplan-gmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudsecurity\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudsecurity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudsoft\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudsoft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudwhizsolutions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudwhizsolutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudwrxsconsultingltd1631029702055\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudwrxsconsultingltd1631029702055\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"clustrix\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/clustrix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cncf-upstream\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cncf-upstream\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"codaintelligence1606495376525\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/codaintelligence1606495376525\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"codelathe\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/codelathe\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"codenvy\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/codenvy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"codetwo\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/codetwo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cognexcorporation1613759804979\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cognexcorporation1613759804979\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cognexcorporation1647410785838\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cognexcorporation1647410785838\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cognitive-scale\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cognitive-scale\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cognizant\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cognizant\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cognosys\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cognosys\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cohesity\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cohesity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cohesitydev1592001764720\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cohesitydev1592001764720\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cohesive\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cohesive\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"coin-sciences-ltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/coin-sciences-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"collabcloudlimited\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/collabcloudlimited\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"collibranv1619508098620\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/collibranv1619508098620\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"commscopeinc1632135151062\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/commscopeinc1632135151062\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"commvault\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/commvault\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"compellon\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/compellon\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"composable\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/composable\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"comunity\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/comunity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"concentrationheatandmomentumlimited1616154387047\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/concentrationheatandmomentumlimited1616154387047\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Confer\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Confer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"confluentinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/confluentinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"conflux\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/conflux\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"connecting-software\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/connecting-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"consensys\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/consensys\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"containeraider\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/containeraider\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"contiamogmbh\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/contiamogmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"controlcase\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/controlcase\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"controlplane\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/controlplane\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"controlplanecorporation1609967567639\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/controlplanecorporation1609967567639\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"convertigo\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/convertigo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"corda\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/corda\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"core-stack\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/core-stack\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"corent-technology-pvt\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/corent-technology-pvt\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"CoreOS\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/CoreOS\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"couchbase\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/couchbase\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cpanel\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cpanel\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"credativ\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/credativ\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cristiesoftwareltd1599488127561\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cristiesoftwareltd1599488127561\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"crunchyard\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/crunchyard\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"crunchyardltd1623835391104\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/crunchyardltd1623835391104\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cryptocom1585727786636\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cryptocom1585727786636\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cryptosense1605170011574\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cryptosense1605170011574\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cryptzone\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cryptzone\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ctm.bmc.com\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ctm.bmc.com\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ctrliqinc1648673227698\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ctrliqinc1648673227698\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cubebackup\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cubebackup\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cyberark\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cyberark\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cybernetica-as\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cybernetica-as\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cygnalabscorp1646065782458\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cygnalabscorp1646065782458\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cyxtera\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cyxtera\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"d4t4_solutions-1164305\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/d4t4_solutions-1164305\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"daceitdbasensetrafficpulse1579892024934\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/daceitdbasensetrafficpulse1579892024934\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"danielsol.AzureTools1\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/danielsol.AzureTools1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Dans.Windows.App\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Dans.Windows.App\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Dans3.Windows.App\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Dans3.Windows.App\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dataart\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dataart\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"databricks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/databricks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datacore\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datacore\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Datadog.Agent\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Datadog.Agent\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datadynamicsinc1581991927942\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datadynamicsinc1581991927942\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datagapsinc1585348463636\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datagapsinc1585348463636\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dataguiseinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dataguiseinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dataiku\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dataiku\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datalayer\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datalayer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datanomers1584919038987\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datanomers1584919038987\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datanova\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datanova\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datapredsa\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datapredsa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dataroadtechnologiesllc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dataroadtechnologiesllc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datasciencedojo1586563145740\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datasciencedojo1586563145740\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datastax\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datastax\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datasunrise\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datasunrise\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datavirtualitygmbh\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datavirtualitygmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datometry\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datometry\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dbs-h\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dbs-h\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ddn-whamcloud-5345716\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ddn-whamcloud-5345716\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Debian\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Debian\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dece-4446019\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dece-4446019\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"decisosalesbv\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/decisosalesbv\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"deepcognitioninc1593512758156\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/deepcognitioninc1593512758156\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"deepsiginc1581610210151\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/deepsiginc1581610210151\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"deepsurfacesecurityinc1632943333445\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/deepsurfacesecurityinc1632943333445\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dellemc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dellemc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dell_software\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dell_software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"delphix\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/delphix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"deltapathlimited1592886319362\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/deltapathlimited1592886319362\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"denodo\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/denodo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"denyall\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/denyall\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"derdack\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/derdack\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"deskpro1650546806675\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/deskpro1650546806675\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"desktopstudioag1580294245574\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/desktopstudioag1580294245574\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"devfactory\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/devfactory\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"device42inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/device42inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"deviceauthorityinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/deviceauthorityinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"devolutionsinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/devolutionsinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"devopsgroup-uk\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/devopsgroup-uk\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"df-portal-user\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/df-portal-user\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dgsecure\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dgsecure\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Dh2ico\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Dh2ico\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dh2icompany\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dh2icompany\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dhi\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dhi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"diagramics\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/diagramics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dicomsystems1584107398321\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dicomsystems1584107398321\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"diehl-metering\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/diehl-metering\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"digisitesystems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/digisitesystems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"digitaldefenseinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/digitaldefenseinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"digitaloffice\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/digitaloffice\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"digitamizeinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/digitamizeinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"digitate\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/digitate\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"diladele\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/diladele\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dimensionalmechanics-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dimensionalmechanics-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"diqa\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/diqa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"diyatech\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/diyatech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"diyotta\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/diyotta\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"djiindustrialincus\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/djiindustrialincus\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"docker\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/docker\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dome9\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dome9\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dorabot\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dorabot\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dremiocorporation\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dremiocorporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"drizti\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/drizti\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"drone\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/drone\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dsi\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dsi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dundas\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dundas\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dyadic_security\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dyadic_security\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dynatrace\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dynatrace\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dynatrace.ruxit\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dynatrace.ruxit\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"e-magicinc1587696283171\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/e-magicinc1587696283171\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"eastwind-networks-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/eastwind-networks-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"easysoftwaresro1593005637384\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/easysoftwaresro1593005637384\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ebesllc1637780200500\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ebesllc1637780200500\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ecessa\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ecessa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"edevtech\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/edevtech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"edgelesssystems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/edgelesssystems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"edgenetworks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/edgenetworks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"edispheresoftwareprivatelimited1606199736428\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/edispheresoftwareprivatelimited1606199736428\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"education4sight\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/education4sight\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"eecservicesfzllc1604836615706\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/eecservicesfzllc1604836615706\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"egnyte\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/egnyte\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"egress1589289169584\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/egress1589289169584\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"eikonasystemsgmbh1601729310063\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/eikonasystemsgmbh1601729310063\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Elastic\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Elastic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"elasticbox\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/elasticbox\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"elecard\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/elecard\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"electric-cloud\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/electric-cloud\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"elevateiot\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/elevateiot\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"eleven01\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/eleven01\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"elfiqnetworks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/elfiqnetworks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"emercoin\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/emercoin\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"energisme1601990637842\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/energisme1601990637842\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"enforongo\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/enforongo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"engineering-ingegneriainformatica-spa1626786889850\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/engineering-ingegneriainformatica-spa1626786889850\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"engysltd1624364546407\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/engysltd1624364546407\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"enterprise-ethereum-alliance\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/enterprise-ethereum-alliance\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"enterprisedb-corp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/enterprisedb-corp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"enterpriseworx-it\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/enterpriseworx-it\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"epicgames\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/epicgames\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"epicgamesinc1633466121071\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/epicgamesinc1633466121071\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"eproe\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/eproe\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"equalum\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/equalum\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"equilibrium\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/equilibrium\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"equinix\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/equinix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ergoninformatikag1581586464404\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ergoninformatikag1581586464404\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"esdenera\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/esdenera\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ESET\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ESET\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"esetresearch1579795941720\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/esetresearch1579795941720\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"esri\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/esri\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"esyon\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/esyon\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ethereum\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ethereum\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"eurolinuxspzoo1620639373013\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/eurolinuxspzoo1620639373013\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"eventtracker\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/eventtracker\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"evertzmicrosystemsltd1586877923009\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/evertzmicrosystemsltd1586877923009\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"evostream-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/evostream-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"exact\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/exact\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"exasol\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/exasol\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"excelero1608461290726\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/excelero1608461290726\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"exivity\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/exivity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"exonar\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/exonar\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"f5-networks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/f5-networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"falainapteltd1604661424876\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/falainapteltd1604661424876\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"falconstorsoftware\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/falconstorsoftware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fatalsecurity1604924013537\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fatalsecurity1604924013537\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fatpipe-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fatpipe-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fenestrae-1035066\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fenestrae-1035066\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fidesys\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fidesys\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"filecatalyst\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/filecatalyst\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"filemagellc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/filemagellc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fiorano\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fiorano\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fireeye\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fireeye\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"firehost\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/firehost\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"firemon\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/firemon\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"firstderivativesplc1596469572732\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/firstderivativesplc1596469572732\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"flashgrid-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/flashgrid-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"flexbby\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/flexbby\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"flexbby-5255860\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/flexbby-5255860\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"flexify-io\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/flexify-io\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"flexxibleit\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/flexxibleit\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"flowmon\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/flowmon\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"flynet\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/flynet\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"foghorn-systems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/foghorn-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"forcepoint-llc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/forcepoint-llc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"forescout\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/forescout\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"foreseetiab1613650409016\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/foreseetiab1613650409016\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"formpipesoftwareab\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/formpipesoftwareab\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"forscene\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/forscene\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fortanix\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fortanix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fortinet\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fortinet\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fortycloud\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fortycloud\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"forumsystems1599756394904\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/forumsystems1599756394904\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fotopiatechnologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fotopiatechnologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"foxiteuropegmbh1585901066320\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/foxiteuropegmbh1585901066320\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"franzinc1593030725310\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/franzinc1593030725310\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fujitsu_fast\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fujitsu_fast\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fw\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fw\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"g2kgroupgmbh-4821943\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/g2kgroupgmbh-4821943\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gapteq\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gapteq\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gatlingcorp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gatlingcorp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gbs\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gbs\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gemalto-safenet\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gemalto-safenet\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Gemalto.SafeNet.ProtectV\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Gemalto.SafeNet.ProtectV\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"genesistechnologyinc1604912285911\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/genesistechnologyinc1604912285911\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"genuagmbhdevid1\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/genuagmbhdevid1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"genua_gmbh\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/genua_gmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"genymobile\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/genymobile\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gigamon-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gigamon-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"GitHub\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/GitHub\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gitlab\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gitlab\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gitlabinc1586447921813\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gitlabinc1586447921813\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gladinet-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gladinet-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"glantoninc1591876792991\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/glantoninc1591876792991\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"globalidsinc1596800540598\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/globalidsinc1596800540598\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"globalscape\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/globalscape\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"globalsolutions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/globalsolutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gluwareinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gluwareinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"graphistry\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/graphistry\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"graphitegtc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/graphitegtc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"great-software-laboratory-private-limited\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/great-software-laboratory-private-limited\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"greensql\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/greensql\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"greycorbelsolutions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/greycorbelsolutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gridgain\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gridgain\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"guardicore\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/guardicore\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gxchainfoundationltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gxchainfoundationltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"h2o-ai\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/h2o-ai\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hackerbay\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hackerbay\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hackershub\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hackershub\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"haivision\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/haivision\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"haivisionsystemsinc1580780591922\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/haivisionsystemsinc1580780591922\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"haltdoscompvtltd1587136166019\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/haltdoscompvtltd1587136166019\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hammerspace\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hammerspace\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hanu\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hanu\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"haproxy-technologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/haproxy-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"harmanconnectedservicesinc1594928575643\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/harmanconnectedservicesinc1594928575643\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"harpaitalia\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/harpaitalia\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hashhub\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hashhub\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hcl-technologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hcl-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"heimdall-data\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/heimdall-data\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"help-systems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/help-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"helpyio\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/helpyio\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"heretechnologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/heretechnologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hewlett-packard\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hewlett-packard\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hillstone-networks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hillstone-networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hitachi-solutions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hitachi-solutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hitachivantara\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hitachivantara\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"holo-industrie40softwaregmbh1600957636008\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/holo-industrie40softwaregmbh1600957636008\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hortonworks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hortonworks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hpe\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hpe\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"HPE.Security.ApplicationDefender\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/HPE.Security.ApplicationDefender\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"huawei\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/huawei\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hubstor-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hubstor-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hush-hush\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hush-hush\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hvr\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hvr\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hyperglance\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hyperglance\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hypergrid\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hypergrid\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hystaxinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hystaxinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hytrust\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hytrust\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"i-exceed-technology\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/i-exceed-technology\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iaansys\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iaansys\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ibm\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ibm\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ibm-alliance-global-1560886\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ibm-alliance-global-1560886\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ibm-alliance-usa-ny-armonk-hq-ibmstorage-6201192\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ibm-alliance-usa-ny-armonk-hq-ibmstorage-6201192\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ibm-usa-ny-armonk-hq-6275750-ibmcloud-aiops\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ibm-usa-ny-armonk-hq-6275750-ibmcloud-aiops\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iboss\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iboss\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iconics\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iconics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iconsulting-spa\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iconsulting-spa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"icubeconsultancyservicesinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/icubeconsultancyservicesinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iguazio-5069960\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iguazio-5069960\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ikan\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ikan\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iliimbiliimveyazlmsistemlerisanvetica1617000555584\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iliimbiliimveyazlmsistemlerisanvetica1617000555584\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"illuminainc1586452220102\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/illuminainc1586452220102\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"image-technologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/image-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"imaginecommunications\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/imaginecommunications\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"imperva\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/imperva\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"impetustechnologiesinc1591959591877\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/impetustechnologiesinc1591959591877\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"imprivatainc1580479939967\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/imprivatainc1580479939967\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"incorta\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/incorta\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"incredibuild\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/incredibuild\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"indexima1594300233028\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/indexima1594300233028\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"industry-weapon\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/industry-weapon\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"industryweapon1587162781833\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/industryweapon1587162781833\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"inenprocesosyplataformasdetisderldecv1615482385424\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/inenprocesosyplataformasdetisderldecv1615482385424\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"inergybv1637141413454\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/inergybv1637141413454\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"infinitesoftwarecorporation1579223971125\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/infinitesoftwarecorporation1579223971125\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"infiotinc1614034091460\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/infiotinc1614034091460\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"influxdata\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/influxdata\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"infoblox\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/infoblox\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"infogix\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/infogix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"infolibrarian\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/infolibrarian\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"informatica\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/informatica\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"informationbuilders\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/informationbuilders\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"informationtechnologies_ltd_1179601\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/informationtechnologies_ltd_1179601\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"infotecsinternetsecuritysoftwaregmbh1636129257584\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/infotecsinternetsecuritysoftwaregmbh1636129257584\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"infront-consulting-group-ltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/infront-consulting-group-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"infscapeughaftungsbeschrnkt\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/infscapeughaftungsbeschrnkt\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ingenieurstudiohollaus1579587745438\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ingenieurstudiohollaus1579587745438\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ingrammicro\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ingrammicro\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"innomindssoftware\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/innomindssoftware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"innosepgmbh1618331344164\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/innosepgmbh1618331344164\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"innovatorartificialtechsrl1619180685551\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/innovatorartificialtechsrl1619180685551\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"innovtech\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/innovtech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"instight-technology\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/instight-technology\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"integration-objects\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/integration-objects\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"intel-bigdl\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/intel-bigdl\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"intel-fpga\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/intel-fpga\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"intellicus-technologies-pvt-ltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/intellicus-technologies-pvt-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"intelligent-plant-ltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/intelligent-plant-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"intel_corporation\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/intel_corporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"internationaltrustmachinescorporation1582190033865\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/internationaltrustmachinescorporation1582190033865\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"internet20inc1635882446190\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/internet20inc1635882446190\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"intersystems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/intersystems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"intigua\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/intigua\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"intigua1638692632641\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/intigua1638692632641\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"introspecioltd1629872641188\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/introspecioltd1629872641188\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iofabric\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iofabric\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ipinfusion1590066770520\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ipinfusion1590066770520\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ipswitch\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ipswitch\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iqsol\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iqsol\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iquate\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iquate\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iquest\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iquest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"irion\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/irion\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ishlangu-load-balancer-adc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ishlangu-load-balancer-adc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"issp-corporation\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/issp-corporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"isvtestukbigcat\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/isvtestukbigcat\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"isvtestuklegacy\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/isvtestuklegacy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"it4bizdoo\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/it4bizdoo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"itelios\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/itelios\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"itrsgroupltd1620310702149\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/itrsgroupltd1620310702149\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ivanti-inc-pcs\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ivanti-inc-pcs\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ivanti-nzta\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ivanti-nzta\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ivix1595238749040\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ivix1595238749040\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iwnamespace\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iwnamespace\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"izenda\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/izenda\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"jamcracker\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/jamcracker\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"javlinltd1579185328273\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/javlinltd1579185328273\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"jedox\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/jedox\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"jelastic\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/jelastic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"jetnexus\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/jetnexus\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"jetware-srl\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/jetware-srl\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"jfrog\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/jfrog\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"jm-technology-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/jm-technology-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"jogetinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/jogetinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"johnsnowlabsinc1646051154808\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/johnsnowlabsinc1646051154808\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"juniper-networks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/juniper-networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"justanalytics\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/justanalytics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kaazing\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kaazing\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kadenallc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kadenallc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kali-linux\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kali-linux\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kalkitech\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kalkitech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kaminarioinc1588672951794\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kaminarioinc1588672951794\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Kaspersky.Lab\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Kaspersky.Lab\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"KasperskyLab.SecurityAgent\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/KasperskyLab.SecurityAgent\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kaspersky_lab\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kaspersky_lab\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kazendi\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kazendi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kelverion\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kelverion\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kemptech\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kemptech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kepion\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kepion\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"KevlarExtensions.M365Security.SecureOS\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/KevlarExtensions.M365Security.SecureOS\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"KevlarExtensions.M365SecurityHostIDS\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/KevlarExtensions.M365SecurityHostIDS\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"KevlarExtensions.M365SecurityInventory\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/KevlarExtensions.M365SecurityInventory\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"KevlarExtensions.M365SecurityInventory.NameChangeTest\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/KevlarExtensions.M365SecurityInventory.NameChangeTest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"KevlarExtensions.M365SecurityODL\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/KevlarExtensions.M365SecurityODL\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"KevlarExtensions.M365SecurityTLSExtension\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/KevlarExtensions.M365SecurityTLSExtension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kinetica\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kinetica\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kinvolk\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kinvolk\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"knime\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/knime\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kobalt\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kobalt\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kognillc1600118221163\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kognillc1600118221163\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kognitivsparkinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kognitivsparkinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"konginc1581527938760\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/konginc1581527938760\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"konsys-ltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/konsys-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"koverseinc1588716263110\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/koverseinc1588716263110\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kryonsystems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kryonsystems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"krypc-technologies-pvt-ltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/krypc-technologies-pvt-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kyligence\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kyligence\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kyvos-insights-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kyvos-insights-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lab3solutions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lab3solutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lancom-systems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lancom-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lansa\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lansa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lastline\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lastline\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"launchnodesltd1644561451121\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/launchnodesltd1644561451121\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"leap-orbit\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/leap-orbit\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lenovosoftware1604394104439\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lenovosoftware1604394104439\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"leostream-corporation\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/leostream-corporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lepide-software\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lepide-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"levacloudllc1602151818089\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/levacloudllc1602151818089\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"libelleag\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/libelleag\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"liberatii\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/liberatii\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"libraesva\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/libraesva\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"liebsoft\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/liebsoft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lightning-analyticsinc1582000647396\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lightning-analyticsinc1582000647396\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"linuxbasedsystemsdesignltd1580878904727\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/linuxbasedsystemsdesignltd1580878904727\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"liquid-files\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/liquid-files\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"liquidware\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/liquidware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"literatu\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/literatu\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"litespeedtechnologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/litespeedtechnologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"litespeed_technologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/litespeed_technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"litionenergiegmbh1580128829115\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/litionenergiegmbh1580128829115\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"litmusautomation1582760223280\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/litmusautomation1582760223280\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"llcitpro\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/llcitpro\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lnw-softgmbh\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lnw-softgmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"loadbalancer\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/loadbalancer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"logicflowag1638535407949\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/logicflowag1638535407949\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"logsign\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/logsign\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"logstarecorp1635838645101\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/logstarecorp1635838645101\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"logtrust\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/logtrust\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"logzio\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/logzio\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"looker\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/looker\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lotus_beta_analytics\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lotus_beta_analytics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lti-lt-infotech\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lti-lt-infotech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"luminate-security\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/luminate-security\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"M365Security.KevlarExtensions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/M365Security.KevlarExtensions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"M365SecurityInventory\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/M365SecurityInventory\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"machinesense\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/machinesense\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"madhavajay1632269232059\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/madhavajay1632269232059\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"maidenhead-bridge\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/maidenhead-bridge\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"manageengine\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/manageengine\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mapd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mapd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"maplelabsinc1623932715330\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/maplelabsinc1623932715330\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mapr-technologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mapr-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"marand\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/marand\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"marketplace-rdfe-caps\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/marketplace-rdfe-caps\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"marklogic\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/marklogic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"massiveanalytic-\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/massiveanalytic-\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mathworks-deployment\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mathworks-deployment\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mathworks-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mathworks-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"matillion\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/matillion\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mavinglobal\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mavinglobal\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"McAfee.EndpointSecurity\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/McAfee.EndpointSecurity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"McAfee.EndpointSecurity.test3\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/McAfee.EndpointSecurity.test3\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"meanio\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/meanio\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"media3-adobe\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/media3-adobe\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"media3-technologies-llc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/media3-technologies-llc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mediatekinc1586141563888\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mediatekinc1586141563888\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mendix\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mendix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"merlynnintelligencetechnologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/merlynnintelligencetechnologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"meshifyappinc1622759451429\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/meshifyappinc1622759451429\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"messagesolution\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/messagesolution\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"metaswitch\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/metaswitch\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mettainnovations-4900054\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mettainnovations-4900054\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mfe_azure\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mfe_azure\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mfiles\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mfiles\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mico\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mico\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"micro-focus\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/micro-focus\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microlinkpcukltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microlinkpcukltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microolap\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microolap\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsecpteltd1634010681688\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsecpteltd1634010681688\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-ads\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-ads\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-agci-gaming\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-agci-gaming\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-aks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-aks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-avere\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-avere\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-azure-batch\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-azure-batch\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-azure-compute\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-azure-compute\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-azure-hdinsight\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-azure-hdinsight\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-crypto\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-crypto\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-dsvm\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-dsvm\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-hyperv\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-hyperv\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-minecraft\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-minecraft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AdminCenter\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AdminCenter\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AKS\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AKS\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.ActiveDirectory\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.ActiveDirectory\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.ActiveDirectory.LinuxSSH\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.ActiveDirectory.LinuxSSH\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Applications\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Applications\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Automation.HybridWorker\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Automation.HybridWorker\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Automation.HybridWorker.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Automation.HybridWorker.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.AzureDefenderForServers\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.AzureDefenderForServers\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.AzureDefenderForSQL\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.AzureDefenderForSQL\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.AzureHybridBenefit\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.AzureHybridBenefit\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Backup.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Backup.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Backup.Test.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Backup.Test.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Batch\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Batch\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.ChangeTracking\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.ChangeTracking\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.ChangeTracking.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.ChangeTracking.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.ChangeTrackingAndInventory\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.ChangeTrackingAndInventory\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Chaos\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Chaos\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Compute.Security\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Compute.Security\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.ContainerUpstream\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.ContainerUpstream\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.DefenderForServers.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.DefenderForServers.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.DefenderForServers.Test2\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.DefenderForServers.Test2\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Diagnostics\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Diagnostics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Diagnostics.Build.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Diagnostics.Build.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Diagnostics.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Diagnostics.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test012be407-61ea-4e45-a2c3-71a45999ca21-20191228083800\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test01971384-3044-413b-8b1c-33b5d461bf23-20200107051823\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test0225ec7d-b36c-4ac8-82f0-aa4fafaf10a9-20200111051346\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test025e16a1-328d-45a2-b7e3-71f7e4cde046-20191229064028\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test02d1f941-5607-4757-8df7-fd8c5631ab45-20200103083810\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test039abd7f-360c-42a1-ad5d-77527c519286-20191002233412\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test04a0f157-c6fb-4595-b6ca-6c82a2338063-20200108101451\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test0737f33e-63e0-4ba9-b04b-b93a1de4e997-20200106083639\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test0a44d7be-63fa-418d-a7b6-89a44dd21894-20200107052935\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test0d01b487-7f79-4d87-b330-5c025068db45-20191004190331\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test0d643748-e6fe-41ad-b4d3-89a289a0cee0-20191003055620\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test0df83c51-5bb9-43f8-8ae9-bc896ea64f78-20200110220221\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test0f02c246-7e65-4010-9367-ca4530c3897e-20191004190223\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test157494ec-e788-43b0-8d26-a17e39ee07cc-20191002011945\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test1661d154-b623-4507-8a56-3a89812c456c-20200111083940\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test17bbd860-f21d-40ab-9026-16e05f2907f0-20200106083451\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test194e2333-13cd-43e3-b0a4-c8cdcf1a3600-20200110211106\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test1bc26b19-b8d8-41f9-a26d-818f277bdf93-20200101113139\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test1c840053-9213-4f2a-8f2e-9bf2297908bd-20200108101424\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test1d7bba72-69f1-43cd-a38c-41ce0b5f4bae-20200109050041\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test1f7a8078-50e7-4a3a-91eb-d178fd4c403b-20191002233353\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test1fef1fdc-57ba-46a8-a879-475ba7d45a7a-20200106083509\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test21332f15-f78d-4d31-afac-79b9dc989432-20191231175840\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test22f10717-6939-4003-a9ce-38effd8b77d6-20191007191355\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test2334e6e3-bb72-4241-a36f-c2429d69bc0b-20200106050834\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test24fa9eb5-1c59-4425-b61c-30fd638c2a45-20191003203802\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test2521a545-ed61-4a15-bed1-aba7ce1d81ee-20200106050804\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test25c6fe61-1282-43c2-867b-b5039219989c-20200105081851\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test27515c8c-6773-4f92-afb0-35691cc6e3b6-20200103083821\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test28012680-48e7-4903-877f-2f29464e63d5-20191229033424\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test29a7a529-d293-4728-9d7f-257ed996e64f-20200108081759\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test2a5f2d2c-b8e3-46c2-850d-a1641c024fe7-20200107084228\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test2ce856af-ab17-48f2-ba3e-bcd9af091061-20200110013246\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test2e012e83-6361-4365-963f-6ced8a08e91c-20200110211254\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test2ecf67b2-fb63-4461-b6a6-7026c4fb1168-20191002214026\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test2ede6564-c7cc-44cb-a1a8-902505c9829d-20191003020742\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test2f4ebc17-e27e-48d9-9cc3-ff933c21884e-20200106092410\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test349ee02c-af9b-4663-a963-823b40eefed8-20200108083612\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test34cf6b13-b78e-478b-b596-8b661629371d-20191007195455\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test36cc5b60-2b23-4a04-bf95-f7865e1141cf-20200110085718\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3712fca9-5cdd-4609-be69-b02aedc5c55c-20200107084115\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3772d042-92e2-4bcb-99b7-8a6a119cc088-20191231182808\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test37a6dd64-d44d-465e-85bc-3bc38be90350-20200104083535\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test381074d5-7156-472b-801a-b35f8fef4cc6-20200105050612\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3877a44d-4c48-40db-80eb-227272d5acd6-20200110103540\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test38ecd28e-7018-4672-840c-3044a5e7a6b5-20200111084208\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test395a0b49-442a-450c-8a1f-65b0aa3bcf47-20200105083839\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3971b300-edff-44a8-b61b-7f9b7460a8d6-20191003002234\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3adeec20-7458-4b3d-af26-0b6bc2aae3eb-20200103083751\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3b20dd96-f3e4-4798-998d-8c433c2449a7-20200108083635\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3ce2fd4a-8b5a-4c7e-b08d-3e48fc0f45e7-20200104083825\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3d499ca7-cc8d-41cc-a6dc-ffb1a4ac4942-20200107053004\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3db7240e-5e42-4d6d-b024-cc9fce3c828b-20200105083520\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3f6b7341-635f-48d5-a36d-be5dfe3002c4-20200105050937\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3fc26934-ede2-4482-ad5e-f66f6135d4a6-20191228055558\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test406d077c-6017-4062-bc96-f809147a2331-20200106050748\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test4302336c-e039-4e70-bcb6-9275f6089e4a-20200108144821\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test453a087e-8435-46db-970a-4ee633cc4c4a-20200102083458\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test46b73afa-2259-4aff-81e1-a58bf24b59aa-20191229033459\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test4a3399ee-82ea-46aa-9e3a-5434b588e3b6-20191228013518\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test4eb7a185-527b-4b9f-93a8-7f1cec9d062e-20191231151207\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test520a0915-f9f0-4da4-9fa1-1b74fc1470aa-20200102083505\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test5397960f-023b-4979-9a8b-800d049045a4-20191007195417\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test55a36387-8a3f-4159-9884-29b97539a253-20200109080443\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test5645f186-4ee5-4209-af37-423660e3318c-20191231175947\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test58b4461d-4d2d-4395-b6d2-ab83d4d8c62f-20200111001002\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test5b0bf447-d98d-429d-8334-c032d197c743-20191003203846\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test5bc90367-1ea2-400b-a40c-321081bae3f3-20200108145035\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test5bd0562f-e939-456f-a6ee-c848d1aba616-20200101151641\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test5e4efe90-916c-4c96-802c-1508a5b6da78-20191231151150\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test5f8f0c10-cc3c-45ec-a068-fb1c7edfa0d9-20200101145958\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test60a000b7-286c-4b2b-9137-bbc088736419-20200108144920\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test6192a01b-ba47-4d08-904a-71647a49a112-20191008041625\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test62835538-89c6-4f66-9034-f7a4b176c615-20191007234245\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test651e4ad2-ee4a-462e-a506-b56b1969f5d0-20200110230749\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test691d94e5-c40c-4568-94b0-09b08aea42b1-20200106050808\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test6aa3643c-011a-4180-877f-cad955a8e664-20191007234642\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test6cfb469b-8478-468f-9bb5-691affd32abb-20200107083803\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test6d36b6b2-7956-4e62-91c1-c33792fd4bb1-20200110123203\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test6e28168e-a9c8-4c0a-8b40-60c2a1502d43-20200108052802\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test6eb763ac-7fbe-4e44-bee7-aad035ee2a7d-20200110084429\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test6efec253-f625-46f0-9d74-324f69e963d8-20200107070514\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test70fa7e4c-3122-4ff7-aec6-fe75ab660a01-20200108105900\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test710a5fbf-06c7-46ac-b96d-a29d2586422f-20200108083639\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test71d72489-67c6-45e2-b1e6-a19546efc823-20200105112903\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test721fccf1-2b3e-44b6-908f-51b910e88b09-20200111104931\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test742d0189-9e41-4f1b-8ad3-31c05d34903b-20200111103247\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7836a97c-f56e-48d0-8b5d-61e79aeb3226-20200111071656\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test78666b2e-25c8-4a48-931a-3131a0317d73-20191002194352\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test79f13508-fcbd-47b9-988f-1c21ef5e7f2e-20191002015429\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test79fb90ce-4691-4212-99a7-6e4069bd5984-20191007234256\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7a8cf687-6a21-4181-ba98-902fee717bd3-20200104103216\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7aabf813-6644-483a-b9e0-ba6f8973ba1f-20191002232822\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7c96c10a-0c8f-4ab0-83fd-1ad66a362e33-20191229033458\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7e79b6ff-2559-44fe-b3ba-afaa68d63636-20200108112116\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7ea372f7-ea7e-4b9e-bbad-4f35c1567aa2-20200108052736\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7fac3d04-98a5-4fc4-904e-9ea3b86eadc2-20200106050751\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7fe20dd6-9ed9-4126-bb1d-031c01ac4550-20200101114504\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7ff974d9-c841-4249-b05b-bbf663cb4605-20200106084104\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test815bd4d5-fc24-4a47-be20-063c4809902c-20200109050508\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test817654d0-2109-4d95-9284-8c8a9d960d08-20200108053758\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test821ca3b6-dd05-4e80-b3d8-74ba03b2609b-20191231151151\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test8285dc3e-637d-4d46-9695-adc39cbe7d2f-20200108144457\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test828aae03-9239-4938-a303-c23c42311878-20200102083419\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test84afd814-5098-49ab-af99-e50350b5898b-20200110211134\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test85b08563-b15f-4202-a0bc-f2bc2df2c71a-20200107053335\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test88aac268-c087-4481-b78e-99b920784a33-20200101084853\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test88dbd442-a8cc-4874-81a0-d3192c61df62-20191001224544\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test894dfb75-a00f-4f0c-894c-cae1c9846ad3-20200105051803\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test8d09bf4d-ee63-4ab1-a986-a4b802418403-20200111051447\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test8d4d652b-4f05-4e99-93dd-78b9a36b5c78-20191003203755\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test8de64739-43d8-4f84-af65-fdb3d0885288-20200108053543\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test8e324c65-a51d-4eeb-9ec8-d5f8662dc041-20191228165107\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test8e564580-8e53-4300-85f1-bf7f31dd37ff-20200107013348\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test8f458ca7-8898-4d58-b93d-bfb0c3da028c-20200109050310\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test901cd6ca-5565-4552-a3de-d204d01935c0-20200108083706\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test907b39e5-4008-4b55-93a0-18e9697b9cf3-20200108053817\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test90c2be7c-d7ec-4abf-9fad-fef90fc3ef4d-20191004022234\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test922db678-6ee8-43d5-86ff-6a86e132d332-20200107085231\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test93b88aec-5277-4b1b-910c-7008e972ce91-20200107013304\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test95a9104b-6cba-42d8-82ff-cc37e5ac44db-20200108081723\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test96da1605-19e0-46eb-9ce0-53e840f5e2cb-20200101111729\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test996066b2-7d29-400f-929b-e343a21046f7-20191231151212\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test99663fff-ed21-4a91-9687-1a6da2abb033-20200106084508\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test9eb5efa5-c3c1-4c13-80a6-11f5eba67372-20200108144852\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testa3791896-b1fc-491e-ba0d-aefcd8d9e52a-20200105083503\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testa37ff709-a078-45a0-8187-41733df8e101-20200109050003\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testa4c5fe4e-936e-4be1-a612-a331aff54a8c-20200111105055\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testa59bce1d-e32c-423d-a86e-945d4aeb98b4-20200107051821\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testa604c059-8279-4f4d-a354-eec27222a06c-20200111051514\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testa71fefb1-0d9c-4fb3-8d3d-5dcd12d72b77-20200103103221\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testa748013d-c5a6-44f9-88eb-43167207c742-20200111051402\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testaab67022-4f2b-420d-a06a-2c4045110cdf-20191229033144\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testacab9541-280f-4491-9f49-ac57653f0a07-20200105083839\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testad298437-0349-4cc7-88a9-d8aabcba9df1-20191002233431\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testadd68286-f9e0-4ab1-a526-d8f3cf0f054e-20200105084128\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testade4c52b-18f5-4b67-8e93-945358ce4f7d-20191007234259\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testae421c1d-0211-4ef2-b372-564ce8ad484a-20200110104035\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testafbbd8bf-aec5-48bf-8fea-73fa15ccc315-20191001224727\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testb15148bf-78d2-42d4-ad08-b3ad8fb4b122-20200101084759\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testb4237708-3688-40ea-85a2-275c05f4d100-20191228083519\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testb799a18f-be45-4c5c-8438-163ac2e1f1e7-20191004190529\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testb7cee88a-e5ac-4af4-99c8-7247020b00c3-20200105051201\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testb7df0d9a-27c0-4ca5-b692-08dd90387b98-20200111083443\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testbbf6bf32-4bd0-4381-b8f7-2658f585df4d-20191003203846\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testbeea1376-166a-4b1a-8923-c907cc9737d9-20200107013336\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testbf9154e9-6166-48c2-86fe-1f331be606d7-20200107051823\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc0d7c3c5-23b8-489c-a5e0-ae87c681b696-20200101083539\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc193f31a-5186-4e93-84f6-0e4ab87b73c1-20200107052937\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc1c7e8dc-fa8c-47d9-8305-de6d1451b939-20200101085248\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc1d0c917-e2ae-430c-a2ca-383fb0fda046-20191007235839\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc23a3fbb-6e95-4c0d-94fc-c8ab14dddf1c-20191231151117\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc2697630-6247-411a-94b3-c2974ad8cbee-20191007195417\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc466b80f-670f-4383-89b8-44e0d509fa20-20191002000516\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc5c8d9bd-75fa-4db3-9f34-5d7b7098584c-20191003203851\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc8b6d14b-a5db-48e0-bfad-a2818d432bea-20200104083443\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc933efa8-c553-4b93-884f-b7221d9ca789-20191228083750\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testcbe8ab80-46ef-49b1-a7bb-4e3d6e50e49f-20200104050811\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testccc0b5e6-9b0d-451a-8ac4-6f4af293b913-20200106092645\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testcec64786-04b1-487c-80ec-050da646fb1c-20191005123412\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testd104a52f-eba2-401d-8e7f-a841c90f7712-20191228083553\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testd724cea4-0d3c-4539-b2ff-be08fb23a67e-20200107083714\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testd8e60bac-27ff-4fba-90b8-732c9c5ff91c-20191228083751\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testd99db4a5-7683-4584-89ad-fefd711de284-20191004190210\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testd9b4309a-67bc-4cd8-ac47-094cb20ca6aa-20200101090202\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testda3320e0-28f2-4146-a002-e06296362711-20191004190115\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testda714121-3240-4253-90c3-48c43f115c90-20200102083419\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testdb357558-60b4-4ee3-9ec3-ba22c5d827fb-20191004020617\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testdc7230e9-df6d-4edd-a57c-ef7e0432c463-20191002011345\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testdccb59de-436f-4935-bed6-2e677dcaf36a-20200109111802\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testde985b23-9333-4f6e-a5e8-82025a38b2af-20200102083510\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Teste271da3e-cbcb-4ee7-8770-f297f414451f-20191003015540\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Teste4070edd-aec0-455d-8a79-aecdb7170b6d-20191007234642\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Teste42f351a-4da0-4f0d-93e9-ef1d98e06659-20200108083633\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Teste66ca23c-f4bf-4eb3-8418-139364d19e7d-20200107062643\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Teste78b1ab2-1380-48ab-9923-0276cdb7198b-20191001224742\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Teste8607e14-b4f8-472a-bd5b-893b8d9612e6-20200112045941\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Teste980b80e-3add-42c0-bc98-a84020b2d128-20200108101640\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Tested79dba9-2d38-4ea9-a01c-56e94b30ca7a-20191007195447\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testee9dcf5f-f7c4-4192-a8f4-28e9bc7d0f7c-20191001225005\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testefbb340a-b68b-4200-872b-d05e7d29f92d-20191007195432\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testf1fc0559-6740-48dd-9501-2b933c731d52-20200103083458\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testf41dfc97-bb51-4fba-86ca-a6f2695c415a-20200107050834\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testf5784447-83ed-4c00-8764-ea0f932aafa2-20200106085748\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testf6128ef6-c13c-420e-8088-0710888ce88b-20200109050003\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testf863ab2c-ada9-4646-84c7-1f83a82375d7-20191229033226\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testfac552a7-418f-4baa-8f51-d199ceff5c68-20200103050817\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testfb7be054-5c15-494f-822c-b64f9a36e2f3-20200105051753\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testfc5c7585-6c9a-4aa4-a7c4-1223a94e00c7-20200104083552\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.FileServer.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.FileServer.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.FleetDiagnostics\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.FleetDiagnostics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.FleetDiagnostics.Dev\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.FleetDiagnostics.Dev\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Geneva\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Geneva\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.KeyVault\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.KeyVault\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.KeyVault.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.KeyVault.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.LabServices\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.LabServices\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.LabServices.test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.LabServices.test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.Agent\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.Agent\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.Dev\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.Dev\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.Dev.INT\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.Dev.INT\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.Dev.SCALE\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.Dev.SCALE\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.Dev.TEST\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.Dev.TEST\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.GuestHealth\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.GuestHealth\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.DEV\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.DEV\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.INT\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.INT\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.SCALE\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.SCALE\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.TEST\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.TEST\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.INT.Dev\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.INT.Dev\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.SCALE.Dev\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.SCALE.Dev\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.TEST.Dev\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.TEST.Dev\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.WorkloadInsights.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.WorkloadInsights.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.WorkloadInsightsTest.newnamespace\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.WorkloadInsightsTest.newnamespace\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.Workloads\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.Workloads\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.Workloads.Dev\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.Workloads.Dev\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitoring.DependencyAgent\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitoring.DependencyAgent\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitoring.DependencyAgent.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitoring.DependencyAgent.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Networking.DNS\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Networking.DNS\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Networking.SDN\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Networking.SDN\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.NetworkWatcher\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.NetworkWatcher\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.NetworkWatcher.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.NetworkWatcher.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.OpenSSH\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.OpenSSH\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Performance.Diagnostics\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Performance.Diagnostics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Performance.Diagnostics.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Performance.Diagnostics.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.RecoveryServices\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.RecoveryServices.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices.SiteRecovery\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.RecoveryServices.SiteRecovery\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices.SiteRecovery2\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.RecoveryServices.SiteRecovery2\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices.WorkloadBackup\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.RecoveryServices.WorkloadBackup\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices.WorkloadBackup.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.RecoveryServices.WorkloadBackup.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.AntimalwareSignature\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.AntimalwareSignature\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.AntimalwareSignature.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.AntimalwareSignature.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.Dsms\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.Dsms\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.Dsms.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.Dsms.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.LinuxAttestation\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.LinuxAttestation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.LinuxTestAttestation\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.LinuxTestAttestation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.Monitoring\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.Monitoring\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.Monitoring.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.Monitoring.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.Monitoring.Testing\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.Monitoring.Testing\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.TestWindowsAttestation\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.TestWindowsAttestation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.WindowsAttestation\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.WindowsAttestation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.WinTestAttestation\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.WinTestAttestation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Sentinel.DnsExtension.Dev\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Sentinel.DnsExtension.Dev\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.ServiceFabric.MC\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.ServiceFabric.MC\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.ServiceFabric.MC.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.ServiceFabric.MC.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.SiteRecovery.Stage\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.SiteRecovery.Stage\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.SiteRecovery.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.SiteRecovery.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.SiteRecovery2.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.SiteRecovery2.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Test.Identity\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Test.Identity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WindowsFabric.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WindowsFabric.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.ReleasePipeTest\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.ReleasePipeTest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.ReleasePipeTest.INT\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.ReleasePipeTest.INT\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.ReleasePipeTest.TEST\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.ReleasePipeTest.TEST\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test1\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test2\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test2\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test3\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test3\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test4\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test4\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test5\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test5\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test5.INT\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test5.INT\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test5.TEST\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test5.TEST\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.VincentTest\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.VincentTest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.VincentTest2\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.VincentTest2\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.VincentTest3\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.VincentTest3\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.VincentTest4\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.VincentTest4\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.TestTest\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.TestTest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.TestTest.INT\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.TestTest.INT\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.TestTest.TEST\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.TestTest.TEST\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Windows.ReleasePipeTest.INT\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Windows.ReleasePipeTest.INT\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Windows.ReleasePipeTest.TEST\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Windows.ReleasePipeTest.TEST\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoring\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoring.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoringTest\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoringTest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureData\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureData\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureData.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureData.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.Canary\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights.Canary\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.Corp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights.Corp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.Linux.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights.Linux.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.LinuxTest\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights.LinuxTest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.Meya0206\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights.Meya0206\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.MeyaCorp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights.MeyaCorp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.Testing\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights.Testing\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureSecurity.JITAccess\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureSecurity.JITAccess\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.CloudBackup.Workload.Extension\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.CloudBackup.Workload.Extension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.CloudBackup.Workload.Extension.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.CloudBackup.Workload.Extension.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Compute\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Compute.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Compute.TestSar\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute.TestSar\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.CPlat.Core\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.CPlat.Core\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.CPlat.Core.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.CPlat.Core.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Dcsswe.Extensions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Dcsswe.Extensions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.EnterpriseCloud.Monitoring\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.EnterpriseCloud.Monitoring.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.EnterpriseCloud.Monitoring.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Golive.Extensions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Golive.Extensions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.GuestConfig.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.GuestConfig.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.GuestConfiguration\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.GuestConfiguration\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.GuestConfiguration.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.GuestConfiguration.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.GuestConfiguration.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.GuestConfiguration.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.HpcCompute\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.HpcCompute\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.HpcCompute.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.HpcCompute.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.HpcPack\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.HpcPack\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Interceptor\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Interceptor\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.M365\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.M365\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.M365SecurityConfiguration.Kevlar.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.M365SecurityConfiguration.Kevlar.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.ManagedIdentity\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.ManagedIdentity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.ManagedServices\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.ManagedServices\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.ManagedServices.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.ManagedServices.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.MonitoringAgent.Extension\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.MonitoringAgent.Extension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Network\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Network\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.OSTCExtensions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.OSTCExtensions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.OSTCExtensions.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.OSTCExtensions.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.OSTCExtensions.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.OSTCExtensions.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.OSTCExtensions.Testing\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.OSTCExtensions.Testing\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Powershell\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Powershell\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Powershell.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Powershell.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Powershell.Test01\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Powershell.Test01\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.SecurityManagement.Kevlar\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.SecurityManagement.Kevlar\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Sentinel.AzureMonitorAgentExtensions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Sentinel.AzureMonitorAgentExtensions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.SoftwareUpdateManagement\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.SoftwareUpdateManagement\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.SoftwareUpdateManagement.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.SoftwareUpdateManagement.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.SqlServer.Managability.IaaS.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.SqlServer.Managability.IaaS.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.SqlServer.Management\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.SqlServer.Management\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.SqlServer.Management.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.SqlServer.Management.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.SystemCenter\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.SystemCenter\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.SystemCenter.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.SystemCenter.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Test.Azure.Workloads\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Test.Azure.Workloads\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.TestSqlServer.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.TestSqlServer.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.ETWTraceListenerService\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.Azure.ETWTraceListenerService\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.RemoteDebug\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.Azure.RemoteDebug\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.RemoteDebug.Json\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.Azure.RemoteDebug.Json\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.ServiceProfiler\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.ServiceProfiler\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.Services\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.Services\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.WindowsAzure.DevTest\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.WindowsAzure.DevTest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.WindowsAzure.DevTest.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.WindowsAzure.DevTest.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.WindowsAzure.RemoteDebug\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.WindowsAzure.RemoteDebug\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.WindowsAzure.Test.RemoteDebug\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.WindowsAzure.Test.RemoteDebug\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Windows.Azure.Extensions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Windows.Azure.Extensions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Windows.AzureRemoteApp.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Windows.AzureRemoteApp.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Windows.RemoteDesktop\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Windows.RemoteDesktop\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.WindowsAdminCenter\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.WindowsAdminCenter\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.WindowsAdminCenter.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.WindowsAdminCenter.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.WindowsAzure.Compute\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.WindowsAzure.Compute\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.WindowsAzure.Compute.test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.WindowsAzure.Compute.test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.WVD\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.WVD\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoftagciuk\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoftagciuk\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoftazurecituswarp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoftazurecituswarp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftAzureSiteRecovery\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftAzureSiteRecovery\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftBizTalkServer\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftBizTalkServer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftCBLMariner\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftCBLMariner\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoftcmotest\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoftcmotest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoftcorporation1602274591143\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoftcorporation1602274591143\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoftcorporation1620407702632\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoftcorporation1620407702632\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftDynamicsAX\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftDynamicsAX\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftDynamicsGP\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftDynamicsGP\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftDynamicsNAV\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftDynamicsNAV\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoftfarmbeats\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoftfarmbeats\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftHybridCloudStorage\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftHybridCloudStorage\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftOSTC\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftOSTC\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftPowerBI\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftPowerBI\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftRServer\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftRServer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftSharePoint\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftSharePoint\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftSQLServer\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftSQLServer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftTestLinuxPPS\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftTestLinuxPPS\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftVisualStudio\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftVisualStudio\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftWindowsDesktop\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsDesktop\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftWindowsServer\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsServer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftWindowsServerHPCPack\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsServerHPCPack\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft_iot_edge\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft_iot_edge\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft_javaeeonazure_test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft_javaeeonazure_test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microstrategy\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microstrategy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"midasolutions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/midasolutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"middleware\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/middleware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"midfin\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/midfin\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"midvision\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/midvision\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mihupcommunicationspvtltd1599046998010\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mihupcommunicationspvtltd1599046998010\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mindcti\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mindcti\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"minio\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/minio\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"miraclelinux\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/miraclelinux\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"miracl_linux\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/miracl_linux\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"miri-infotech-pvt-ltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/miri-infotech-pvt-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mistio1601460379393\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mistio1601460379393\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mobilab\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mobilab\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"modern-systems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/modern-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"modexblockchaindatabase\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/modexblockchaindatabase\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"monetdbsolutions1611751313758\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/monetdbsolutions1611751313758\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"monitorapp1579029852605\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/monitorapp1579029852605\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"monitorcomputersystemsltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/monitorcomputersystemsltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"moogsoft\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/moogsoft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"morpheus-data\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/morpheus-data\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"moviemasher\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/moviemasher\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mriisoftllc1579457820427\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mriisoftllc1579457820427\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"msopentech\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/msopentech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mtnfog\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mtnfog\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"multima1643619641681\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/multima1643619641681\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"multisoft-ab\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/multisoft-ab\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mvp-systems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mvp-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mwg_azure\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mwg_azure\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mxhero\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mxhero\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"my-com\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/my-com\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"myarchinc1614657280935\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/myarchinc1614657280935\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"narrativescience\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/narrativescience\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nasuni\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nasuni\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nasunicorporation\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nasunicorporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"navicloudrsoftwarepteltd1601967280369\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/navicloudrsoftwarepteltd1601967280369\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ncache\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ncache\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ncbi\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ncbi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ncomputingglobalinc1604353053068\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ncomputingglobalinc1604353053068\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ndl\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ndl\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ndstriyelotomasyonsistemlerisanvetica1623147454601\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ndstriyelotomasyonsistemlerisanvetica1623147454601\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nebbiolo-technologies-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nebbiolo-technologies-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nec-technologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nec-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nefelinetworks1591201080882\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nefelinetworks1591201080882\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"neo4j\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/neo4j\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"neos\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/neos\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"neowaybusinesssolutions-4956350\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/neowaybusinesssolutions-4956350\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netapp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netapp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netatwork\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netatwork\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netfoundryinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netfoundryinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netgate\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netgate\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netikus-net-ltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netikus-net-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netiq\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netiq\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netka\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netka\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netmail\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netmail\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netscout\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netscout\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netspi\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netspi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netsweeper\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netsweeper\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"networksexchangetechnologyltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/networksexchangetechnologyltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netwrix\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netwrix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netx\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netx\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"neusoft-neteye\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/neusoft-neteye\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"newegginc1646343565758\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/newegginc1646343565758\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"newnetcommunicationtechnologies1589991852134\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/newnetcommunicationtechnologies1589991852134\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"NewRelic.Infrastructure.Extensions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/NewRelic.Infrastructure.Extensions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"newtglobalconsultingllc1581492268566\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/newtglobalconsultingllc1581492268566\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nextronic-5290868\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nextronic-5290868\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nginxinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nginxinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nice-it-management-solutions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nice-it-management-solutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nicepeopleatwork\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nicepeopleatwork\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nilespartnersinc1617691698386\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nilespartnersinc1617691698386\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"niolabs-5229713\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/niolabs-5229713\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nirvatosoftwarepvtltd1601368706606\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nirvatosoftwarepvtltd1601368706606\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nodejsapi\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nodejsapi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"noianetworklimited1584098036197\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/noianetworklimited1584098036197\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nokiaofamericacorporation1591716055441\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nokiaofamericacorporation1591716055441\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"noobaa\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/noobaa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"norcominformationtechnologygmbhcokgaa\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/norcominformationtechnologygmbhcokgaa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"noricumcloudsolutions1600524477681\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/noricumcloudsolutions1600524477681\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"norsync\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/norsync\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"northbridge-secure\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/northbridge-secure\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nozominetworks1582208017986\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nozominetworks1582208017986\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nri\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nri\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ntegralinc1586961136942\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ntegralinc1586961136942\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ntt-data-intellilink-corporation\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ntt-data-intellilink-corporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nttdata\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nttdata\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nttltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nttltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nuco-networks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nuco-networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"numbersbelieve\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/numbersbelieve\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"numtrallcpublisher\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/numtrallcpublisher\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nuxeo\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nuxeo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nvidia\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nvidia\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"o2mc-real-time-data-platform\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/o2mc-real-time-data-platform\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"objectivity-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/objectivity-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"objectivity1595351622261\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/objectivity1595351622261\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"oceanblue-cloud\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/oceanblue-cloud\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"OctopusDeploy.Tentacle\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/OctopusDeploy.Tentacle\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"odix\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/odix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"odysseuscomputationalsolutions1630242118741\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/odysseuscomputationalsolutions1630242118741\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"odysseyconsultantsltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/odysseyconsultantsltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"officeatwork-ag\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/officeatwork-ag\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"omega-software\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/omega-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"onapsis\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/onapsis\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"oncore_cloud_services-4944214\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/oncore_cloud_services-4944214\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"onexgroup\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/onexgroup\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"onspecta\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/onspecta\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ontology\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ontology\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"onyx-point-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/onyx-point-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"op5\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/op5\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"open-connect-systems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/open-connect-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"opencell\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/opencell\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"openlinkswcom-pago\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/openlinkswcom-pago\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"OpenLogic\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/OpenLogic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"openrefactoryinc1620140917523\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/openrefactoryinc1620140917523\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"openshotstudiosllc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/openshotstudiosllc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"opentext\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/opentext\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"openvpn\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/openvpn\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"opslogix\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/opslogix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"opswatinc1619007967290\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/opswatinc1619007967290\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"optimitiveslu1618320281443\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/optimitiveslu1618320281443\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"option3\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/option3\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Oracle\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Oracle\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"oraylis\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/oraylis\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"oraylisbi\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/oraylisbi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"orbs-network\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/orbs-network\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"oriana\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/oriana\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"orientdb\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/orientdb\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"oroinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/oroinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"osirium-ltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/osirium-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"osisoft\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/osisoft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"osnexus\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/osnexus\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"outpost24\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/outpost24\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"outsystems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/outsystems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ovaledge1618392232783\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ovaledge1618392232783\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pachyderminc1585170006545\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pachyderminc1585170006545\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pacteratechnologiesinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pacteratechnologiesinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"paladionnetworkspvtltd1606120508449\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/paladionnetworkspvtltd1606120508449\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"paloaltonetworks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/paloaltonetworks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"panopta\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/panopta\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"panorama-necto\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/panorama-necto\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"panzura-file-system\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/panzura-file-system\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"parabole\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/parabole\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"paralaxiomtechnologiesprivatelimited1596433357886\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/paralaxiomtechnologiesprivatelimited1596433357886\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"parallels\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/parallels\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"parasoft\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/parasoft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"parkersoftwarelimited1609786657569\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/parkersoftwarelimited1609786657569\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"parsec-for-teams\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/parsec-for-teams\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pasifikciptamandiri\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pasifikciptamandiri\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"passlogy\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/passlogy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"paxata\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/paxata\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pcman\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pcman\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"peer-software-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/peer-software-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"penta-security-systems-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/penta-security-systems-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"percona\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/percona\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"perforce\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/perforce\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"periscope-tech-4791746\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/periscope-tech-4791746\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"piolinkinc1582849368309\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/piolinkinc1582849368309\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pivotal\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pivotal\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pixitmedia1591611150480\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pixitmedia1591611150480\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"plesk\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/plesk\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pmsoftwareinternational1603102514882\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pmsoftwareinternational1603102514882\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pnop\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pnop\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"polarityioinc1628691850891\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/polarityioinc1628691850891\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"portalarchitects\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/portalarchitects\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"portsysinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/portsysinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"postgres-pro\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/postgres-pro\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"powerbireach\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/powerbireach\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"prakshepprivatelimited1619949827900\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/prakshepprivatelimited1619949827900\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"prasselsrl1645470739547\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/prasselsrl1645470739547\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"prestashop\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/prestashop\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"prestige_informatique-1090178\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/prestige_informatique-1090178\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"prime-strategy\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/prime-strategy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"primekey\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/primekey\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"primestrategynewyorkinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/primestrategynewyorkinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pro-vision\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pro-vision\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"probityinc1581611299345\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/probityinc1581611299345\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"process-one\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/process-one\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"processgold\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/processgold\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"procomputers\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/procomputers\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"procomputerssrl1594239153814\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/procomputerssrl1594239153814\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"profecia\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/profecia\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Profiler.AgentOrchestrationRefactor.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Profiler.AgentOrchestrationRefactor.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Profiler.Master.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Profiler.Master.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"profisee\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/profisee\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"progelspa\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/progelspa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"progresssoftwarecorporation\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/progresssoftwarecorporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"proliongmbh1628175060372\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/proliongmbh1628175060372\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"protegrityusainc1627404648458\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/protegrityusainc1627404648458\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"protiviti\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/protiviti\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"proventeq\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/proventeq\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ptc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ptc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ptsecurity\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ptsecurity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pulse-secure\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pulse-secure\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pulsesecuretechnologies1638179500151\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pulsesecuretechnologies1638179500151\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"puppet\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/puppet\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"puppeteersoy1601024480557\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/puppeteersoy1601024480557\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"PuppetLabs\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/PuppetLabs\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"PuppetLabs.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/PuppetLabs.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"purestorageinc1578960262525\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/purestorageinc1578960262525\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pydio\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pydio\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pyramidanalytics\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pyramidanalytics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"qlik\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/qlik\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"qnapsystemsinc1601352084032\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/qnapsystemsinc1601352084032\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"qore-technologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/qore-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"qs-solutions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/qs-solutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Qualys\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Qualys\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Qualys.LinuxAgent.GrayLabel\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Qualys.LinuxAgent.GrayLabel\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Qualys.WindowsAgent.GrayLabel\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Qualys.WindowsAgent.GrayLabel\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"qualysguard\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/qualysguard\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"quasardb\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/quasardb\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"qubole-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/qubole-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"quest\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/quest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"racknap\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/racknap\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rackwareinc1619403669255\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rackwareinc1619403669255\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"radiant-logic\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/radiant-logic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"radware\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/radware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"raincode\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/raincode\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rancher\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rancher\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rapid7\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rapid7\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Rapid7.InsightPlatform\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Rapid7.InsightPlatform\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rapidminer\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rapidminer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"raynetgmbh\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/raynetgmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"readymind\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/readymind\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"realm\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/realm\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"reblaze\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/reblaze\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"RedHat\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/RedHat\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"redhat-rhel\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/redhat-rhel\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"redpoint-global\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/redpoint-global\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"refactr\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/refactr\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"refinitiv\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/refinitiv\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"refinitiv-4807503\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/refinitiv-4807503\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"relevance-lab\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/relevance-lab\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"remotelearner\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/remotelearner\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"res\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/res\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"resco\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/resco\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"researchgraphptyltd1598252602128\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/researchgraphptyltd1598252602128\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"resemblesystems1582780358300\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/resemblesystems1582780358300\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"responder-corp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/responder-corp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"revolution-analytics\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/revolution-analytics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rhcsolutions1586957910818\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rhcsolutions1586957910818\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ribboncommunications\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ribboncommunications\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"RightScaleLinux\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/RightScaleLinux\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"RightScaleWindowsServer\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/RightScaleWindowsServer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rimo3\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rimo3\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ringsoftwareresearchanddevelopmentinc1578946072257\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ringsoftwareresearchanddevelopmentinc1578946072257\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"riverbed\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/riverbed\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"RiverbedTechnology\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/RiverbedTechnology\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rmgtechnologiesinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rmgtechnologiesinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rocketml\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rocketml\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rocketsoftware\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rocketsoftware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rohdeschwarzcybersecuritygmbh\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rohdeschwarzcybersecuritygmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rohdeschwarzcybersecuritysas\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rohdeschwarzcybersecuritysas\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"roktech\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/roktech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rsa-security-llc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rsa-security-llc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rsk-labs\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rsk-labs\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rstudio-5237862\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rstudio-5237862\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rtts\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rtts\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rubrik-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rubrik-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"runecastsolutionslimited1614186396822\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/runecastsolutionslimited1614186396822\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"s2ix\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/s2ix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"saama\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/saama\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"saasame-limited\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/saasame-limited\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"safesoftwareinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/safesoftwareinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"safeticatechnologiessro\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/safeticatechnologiessro\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"safetica_technologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/safetica_technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"safetoopen1585013318137\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/safetoopen1585013318137\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"saltsecurity1583264186232\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/saltsecurity1583264186232\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"saltsecurity1583264669848\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/saltsecurity1583264669848\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"saltstack\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/saltstack\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"samsung-sds\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/samsung-sds\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"samsungelectronics1632860607983\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/samsungelectronics1632860607983\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"samsungsds-cello\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/samsungsds-cello\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"samsungsds_sdbe\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/samsungsds_sdbe\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sandhatatechnologieslimited1615753438737\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sandhatatechnologieslimited1615753438737\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sap\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sap\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sapphiretechnologieslimited1611758579346\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sapphiretechnologieslimited1611758579346\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sas-institute-560503\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sas-institute-560503\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"scaidata\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/scaidata\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"scalearc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/scalearc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"scalegrid\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/scalegrid\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"scality\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/scality\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"schrockeninc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/schrockeninc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sci\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sci\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sciencelogicinc1622565452194\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sciencelogicinc1622565452194\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"scientiamobile\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/scientiamobile\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"scontainug1595751515785\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/scontainug1595751515785\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"scubaanalytics\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/scubaanalytics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"scylladb1631195365807\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/scylladb1631195365807\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"seaqserviciossas1579029207572\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/seaqserviciossas1579029207572\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"searchbloxsoftwareinc1594309037050\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/searchbloxsoftwareinc1594309037050\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"secureworks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/secureworks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"securityonionsolutions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/securityonionsolutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"securityonionsolutionsllc1624649205155\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/securityonionsolutionsllc1624649205155\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"securosis\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/securosis\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"seequentltd1585781751395\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/seequentltd1585781751395\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"semarchy\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/semarchy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"semperis\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/semperis\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"senhasegura\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/senhasegura\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"SentinelOne.LinuxExtension\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/SentinelOne.LinuxExtension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"SentinelOne.LinuxExtension.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/SentinelOne.LinuxExtension.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"SentinelOne.WindowsExtension\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/SentinelOne.WindowsExtension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"SentinelOne.WindowsExtension.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/SentinelOne.WindowsExtension.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sentriumsl\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sentriumsl\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sentry51llc1616686725591\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sentry51llc1616686725591\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sentryone\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sentryone\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sepiosystems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sepiosystems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"seppmailag\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/seppmailag\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"seraumo1620002807288\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/seraumo1620002807288\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"service-control-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/service-control-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sesamesoftwareinc1622125191447\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sesamesoftwareinc1622125191447\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"shadow-soft\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/shadow-soft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"shareshiftneeraj.test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/shareshiftneeraj.test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sightapps\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sightapps\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"signal-sciences\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/signal-sciences\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"silk\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/silk\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"silver-peak-systems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/silver-peak-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"simmachinesinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/simmachinesinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"simontelephonics\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/simontelephonics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"simpledatalabsinc1635791235920\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/simpledatalabsinc1635791235920\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"simplifierag\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/simplifierag\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"simpligov\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/simpligov\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sinefa\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sinefa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sinequa\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sinequa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sinequa1588262295885\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sinequa1588262295885\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"singapore-telecommunications-limited\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/singapore-telecommunications-limited\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sios_datakeeper\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sios_datakeeper\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"siportalinc1581539156321\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/siportalinc1581539156321\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sisenseltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sisenseltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Site24x7\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Site24x7\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sktelecom\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sktelecom\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"skyarc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/skyarc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"skyboxsecurity1585187406404\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/skyboxsecurity1585187406404\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"skylarkcloud\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/skylarkcloud\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"smartbearsoftware\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/smartbearsoftware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"smartmessage-autoflow\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/smartmessage-autoflow\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"snaplogic\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/snaplogic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"snapt-adc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/snapt-adc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"snips\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/snips\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"soasta\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/soasta\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"softnas\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/softnas\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"softwarecentralas1642687699196\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/softwarecentralas1642687699196\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"softwarehut\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/softwarehut\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"softwebsolutions-4518310\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/softwebsolutions-4518310\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"soha\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/soha\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"solanolabs\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/solanolabs\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"solar-security\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/solar-security\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"solarwinds\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/solarwinds\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"solvedevops1643693563360\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/solvedevops1643693563360\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sonicwall-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sonicwall-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sophos\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sophos\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sourcegearllc1616101262784\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sourcegearllc1616101262784\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"south-river-technologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/south-river-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"southrivertech1586314123192\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/southrivertech1586314123192\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"spacecurve\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/spacecurve\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"spaceliftinc1625499025476\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/spaceliftinc1625499025476\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"spagobi\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/spagobi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sparklinglogic\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sparklinglogic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"spectralcorelimited1619779004178\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/spectralcorelimited1619779004178\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"spektra\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/spektra\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sphere3d\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sphere3d\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"spideroakinc1588278690933\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/spideroakinc1588278690933\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"spirentcommunications1594084187199\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/spirentcommunications1594084187199\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"splunk\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/splunk\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sproutenetworks1593456311717\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sproutenetworks1593456311717\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sqlstream\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sqlstream\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"squadratechnologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/squadratechnologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"squaredup\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/squaredup\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"src-solution\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/src-solution\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ssh2appsltd1621588462715\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ssh2appsltd1621588462715\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stackato-platform-as-a-service\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stackato-platform-as-a-service\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Stackify.LinuxAgent.Extension\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Stackify.LinuxAgent.Extension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stackstorm\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stackstorm\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"startekfingerprintmatch\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/startekfingerprintmatch\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"startisolucoesemtecnologialtda1635263523201\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/startisolucoesemtecnologialtda1635263523201\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"starwind\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/starwind\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"StatusMonitor2.Diagnostics.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/StatusMonitor2.Diagnostics.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"StatusReport.Diagnostics.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/StatusReport.Diagnostics.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stealthbits\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stealthbits\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"steelhive\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/steelhive\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stonebondtechnologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stonebondtechnologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stonefly\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stonefly\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"storage_made_easy\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/storage_made_easy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stormshield\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stormshield\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"storone1594045543980\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/storone1594045543980\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"storreduce\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/storreduce\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"storwarespzoo1611743234900\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/storwarespzoo1611743234900\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"strangebee1595948424730\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/strangebee1595948424730\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"strataidentity1608323708170\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/strataidentity1608323708170\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stratis-group-ltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stratis-group-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stratodesk1611152769936\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stratodesk1611152769936\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stratumn\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stratumn\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"streamsets\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/streamsets\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"striim\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/striim\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stromasys\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stromasys\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"strongboxitllc1594816423884\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/strongboxitllc1594816423884\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"su\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/su\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"subscription.test.krsh\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/subscription.test.krsh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sumologic\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sumologic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sunatogmbh\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sunatogmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sunday\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sunday\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"SUSE\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/SUSE\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"SUSE.AzureHybridBenefit\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/SUSE.AzureHybridBenefit\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"swoopanalytics\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/swoopanalytics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sycom-technologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sycom-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sycompatechnologycompanyinc1588192103892\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sycompatechnologycompanyinc1588192103892\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.CloudWorkloadProtection\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.CloudWorkloadProtection\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.CloudWorkloadProtection.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.CloudWorkloadProtection.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.CloudWorkloadProtection.TestOnStage\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.CloudWorkloadProtection.TestOnStage\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.QA\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.QA\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.staging\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.staging\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.test.ru2.latest\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.test.ru2.latest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.test.ru2final\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.test.ru2final\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.test.ru2latest1\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.test.ru2latest1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.test.ru4mp1\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.test.ru4mp1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.test.ru4mp1.latest\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.test.ru4mp1.latest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.test.ru4mp1final\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.test.ru4mp1final\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"symanteccorporation\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/symanteccorporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"symantectest1\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/symantectest1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"synack-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/synack-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"syncfusion\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/syncfusion\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"syncfusionbigdataplatfor\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/syncfusionbigdataplatfor\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"synechron-technologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/synechron-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"synergixinc1585256339250\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/synergixinc1585256339250\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"synnexcorp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/synnexcorp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"syscomcomputerengineeringco1583913200141\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/syscomcomputerengineeringco1583913200141\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"syte\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/syte\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tableau\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tableau\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tactic\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tactic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"talari-networks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/talari-networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"talena-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/talena-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"talend\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/talend\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"talon\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/talon\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tamrinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tamrinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"taniuminc1646329360287\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/taniuminc1646329360287\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"targit\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/targit\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tata_communications\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tata_communications\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tavanttechnologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tavanttechnologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tavendo\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tavendo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"te-systems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/te-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"techdivision\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/techdivision\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"techlatest\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/techlatest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"technicheltd1606969724100\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/technicheltd1606969724100\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tecknolab\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tecknolab\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"telepat\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/telepat\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"teloscorporation\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/teloscorporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tempered-networks-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tempered-networks-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tenable\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tenable\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tensormakecorpdbaoneclickai1608247756082\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tensormakecorpdbaoneclickai1608247756082\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tenthlineinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tenthlineinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"teradata\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/teradata\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Teradici\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Teradici\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"teramindinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/teramindinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.Gemalto.SafeNet.ProtectV\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.Gemalto.SafeNet.ProtectV\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.Gemalto.SafeNet.ProtectV.Azure\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.Gemalto.SafeNet.ProtectV.Azure\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.HP.AppDefender\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.HP.AppDefender\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.Microsoft.VisualStudio.Services\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.Microsoft.VisualStudio.Services\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.NJHP.AppDefender\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.NJHP.AppDefender\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.SqlServer.Managability\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.SqlServer.Managability\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.SqlServer.Management\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.SqlServer.Management\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.SqlServer.Management.corext\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.SqlServer.Management.corext\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test1.NJHP.AppDefender\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test1.NJHP.AppDefender\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test3.Microsoft.VisualStudio.Services\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test3.Microsoft.VisualStudio.Services\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"testable1603721901088\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/testable1603721901088\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"testpro\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/testpro\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"test_test_mix3pptest0011614206850774\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/test_test_mix3pptest0011614206850774\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"test_test_mneela1628617140187\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/test_test_mneela1628617140187\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"test_test_pmc2pc1\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/test_test_pmc2pc1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thales-vormetric\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thales-vormetric\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thalesdiscplusainc1596561677238\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thalesdiscplusainc1596561677238\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thedatavaluefactoryltd1589348815922\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thedatavaluefactoryltd1589348815922\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thefreebsdfoundation\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thefreebsdfoundation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thehdfgroup1616725197741\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thehdfgroup1616725197741\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"theumag1596442827072\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/theumag1596442827072\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"things-board\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/things-board\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thingscareinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thingscareinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thinprintgmbh\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thinprintgmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thorntechnologiesllc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thorntechnologiesllc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thoughtspot-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thoughtspot-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"threatintelligenceptyltd1586824172898\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/threatintelligenceptyltd1586824172898\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tibco-software\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tibco-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tidal-migrations\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tidal-migrations\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tidalmediainc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tidalmediainc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tig\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tig\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tiger-technology\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tiger-technology\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tigergraph\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tigergraph\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"timextender\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/timextender\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tmaxsoft\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tmaxsoft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tmaxsoft1608612658335\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tmaxsoft1608612658335\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tomsawyersoftwarecorp1613579206342\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tomsawyersoftwarecorp1613579206342\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"topicus\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/topicus\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"torusware\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/torusware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"totemo\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/totemo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"townsend-security\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/townsend-security\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"transcendinformationinc1609918445926\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/transcendinformationinc1609918445926\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"transientxinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/transientxinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"transvault\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/transvault\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"trendmicro\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/trendmicro\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"TrendMicro.DeepSecurity.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/TrendMicro.DeepSecurity.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"TrendMicro.PortalProtect\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/TrendMicro.PortalProtect\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tresorit\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tresorit\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"trifacta\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/trifacta\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tripleblindinc1615730179432\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tripleblindinc1615730179432\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tripwire-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tripwire-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"truata1612259728221\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/truata1612259728221\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"truestack\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/truestack\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tryonsolutionsinc1596650621083\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tryonsolutionsinc1596650621083\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tsa-public-service\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tsa-public-service\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tunnelbiz\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tunnelbiz\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"turbonet\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/turbonet\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"turbonet1581982683964\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/turbonet1581982683964\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"twistlock\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/twistlock\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"typesafe\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/typesafe\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ubeeko\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ubeeko\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ubercloud\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ubercloud\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"uipath-5054924\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/uipath-5054924\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ulex\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ulex\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"unifi-software\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/unifi-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"unifiedstreaming1598872291606\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/unifiedstreaming1598872291606\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"uniprint-net\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/uniprint-net\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"unitrends\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/unitrends\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"unnisoft\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/unnisoft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"unravel-data\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/unravel-data\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"unscramblsingaporepteltd-4999260\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/unscramblsingaporepteltd-4999260\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"untangle\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/untangle\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"upsolver1594188634150\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/upsolver1594188634150\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"usp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/usp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"valohai\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/valohai\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"valtix\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/valtix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"varmournetworks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/varmournetworks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"varnish\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/varnish\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vastdata1650451243415\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vastdata1650451243415\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vatacommunicationsinc1581644208717\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vatacommunicationsinc1581644208717\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vaultive-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vaultive-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vbot\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vbot\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vcinityinc1587684340545\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vcinityinc1587684340545\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vectraaiinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vectraaiinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"veeam\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/veeam\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"velocitydb-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/velocitydb-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"velocloud\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/velocloud\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vembutechnologiespvtltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vembutechnologiespvtltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vemn\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vemn\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"veritas\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/veritas\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"versanetworks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/versanetworks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"versasec\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/versasec\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vidispine\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vidispine\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vidizmo\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vidizmo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vigyanlabs-innovations-pvt-ltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vigyanlabs-innovations-pvt-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vigyanlabsinc1581413676614\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vigyanlabsinc1581413676614\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"viptela\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/viptela\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vircom\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vircom\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"virtamovecorp1615909247913\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/virtamovecorp1615909247913\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"virtualpulsesro1607008728942\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/virtualpulsesro1607008728942\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"virtuozzointernationalgmbh1626704951469\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/virtuozzointernationalgmbh1626704951469\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"visualknowledgeshare1591795776234\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/visualknowledgeshare1591795776234\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"visualsoft-center\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/visualsoft-center\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vizixiotplatformretail001\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vizixiotplatformretail001\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vmlabinc1613642184700\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vmlabinc1613642184700\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vmturbo\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vmturbo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vmware-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vmware-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vnomicinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vnomicinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"voiceelements\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/voiceelements\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"voleatechgmbh1636966911943\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/voleatechgmbh1636966911943\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"volterraedgeservices\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/volterraedgeservices\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Vormetric\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Vormetric\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vscconsultingptyltd1608535888097\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vscconsultingptyltd1608535888097\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vte\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vte\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vu-llc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vu-llc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vunetsystemsprivatelimited1646716402131\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vunetsystemsprivatelimited1646716402131\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vyulabsinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vyulabsinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"WAD2AI.Diagnostics.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/WAD2AI.Diagnostics.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"WAD2EventHub.Diagnostics.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/WAD2EventHub.Diagnostics.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wallarm\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wallarm\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wallix\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wallix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wandisco\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wandisco\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wanos\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wanos\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wanpath-dba-myworkdrive\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wanpath-dba-myworkdrive\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wardy-it-solutions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wardy-it-solutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"warewolf-esb\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/warewolf-esb\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"watchguard-technologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/watchguard-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"webaloinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/webaloinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"websense-apmailpe\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/websense-apmailpe\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"websoft9inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/websoft9inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wedoitllc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wedoitllc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"westernoceansoftwaresprivatelimited\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/westernoceansoftwaresprivatelimited\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wherescapesoftware\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wherescapesoftware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"winmagic_securedoc_cloudvm\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/winmagic_securedoc_cloudvm\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wintellisys-inc-4561600\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wintellisys-inc-4561600\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"witfooinc1590167223060\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/witfooinc1590167223060\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wmspanel\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wmspanel\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wood1595864497589\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wood1595864497589\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"workshare-technology\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/workshare-technology\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"world-programming\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/world-programming\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"worxogo\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/worxogo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wowza\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wowza\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"xcontentptyltd-1329748\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/xcontentptyltd-1329748\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"xendata-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/xendata-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"xfinityinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/xfinityinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"xilinx\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/xilinx\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"xoriantcorporationazxteam1\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/xoriantcorporationazxteam1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"xoriantsolutionspvtltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/xoriantsolutionspvtltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"xtremedata\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/xtremedata\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"xyzrd-group-ou\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/xyzrd-group-ou\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"yaseensmarket1645449809728\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/yaseensmarket1645449809728\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"yellowfin\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/yellowfin\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"yellowfininternationalptyltd1616363974066\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/yellowfininternationalptyltd1616363974066\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"yokogawarentalleasecorporation\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/yokogawarentalleasecorporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"your-shop-online\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/your-shop-online\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"z1\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/z1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"z4it-aps\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/z4it-aps\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zabbix\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zabbix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zend\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zend\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zenterasystemsinc1605292453288\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zenterasystemsinc1605292453288\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zerodown_software\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zerodown_software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zerto\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zerto\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zettalane_systems-5254599\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zettalane_systems-5254599\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zevenet\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zevenet\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zilliz\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zilliz\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zoomdata\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zoomdata\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zscaler\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zscaler\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zscaler1579058425289\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zscaler1579058425289\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zultysinc1596831546163\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zultysinc1596831546163\"\r\n }\r\n]", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/southeastasia/publishers?api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9wdWJsaXNoZXJzP2FwaS12ZXJzaW9uPTIwMjEtMTEtMDE=", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Compute/locations/southeastasia/publishers?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9wdWJsaXNoZXJzP2FwaS12ZXJzaW9uPTIwMjEtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "561ae606-3a8a-4182-8dc9-1d51bc11b4bb" + "be79c9fe-1f81-4fea-a836-2d25fe26c65c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ] }, "ResponseHeaders": { @@ -2197,32 +2197,32 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "8d76ef5d-2d17-4297-8566-4612360b9f5a_132860269053396621" + "8d76ef5d-2d17-4297-8566-4612360b9f5a_132927459943306577" ], "x-ms-request-id": [ - "7f358d9d-c676-4f5e-830f-5822f9219ad5" + "cd5eaa9e-9f53-4756-8da5-d835025c717b" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11980" + "11978" ], "x-ms-correlation-request-id": [ - "77f0f789-815b-4208-8352-2574dd8ec5a6" + "73f6756a-bd42-43e6-a4ed-21421d3ceb4f" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T211000Z:77f0f789-815b-4208-8352-2574dd8ec5a6" + "JIOINDIAWEST:20220517T041233Z:73f6756a-bd42-43e6-a4ed-21421d3ceb4f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 24 Feb 2022 21:09:59 GMT" + "Tue, 17 May 2022 04:12:32 GMT" ], "Content-Length": [ - "420268" + "429382" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2231,26 +2231,26 @@ "-1" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"128technology\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/128technology\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1580863854728\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1580863854728\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1583411303229\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1583411303229\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1583465680865\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1583465680865\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1585118004523\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1585118004523\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1597644262255\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1597644262255\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1598955805825\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1598955805825\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1601633765871\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1601633765871\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1602067018799\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1602067018799\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1604579683207\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1604579683207\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1615257339685\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1615257339685\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1615278064010\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1615278064010\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1615455873642\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1615455873642\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1624590941808\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1624590941808\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1e\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1e\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"2021ai\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/2021ai\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"247commercelimited1611063941652\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/247commercelimited1611063941652\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"3cx-pbx\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/3cx-pbx\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"42crunch1580391915541\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/42crunch1580391915541\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"4psa\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/4psa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"5nine-software-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/5nine-software-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"7isolutions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/7isolutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"a10networks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/a10networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"a10networks1596136698788\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/a10networks1596136698788\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"abiquo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/abiquo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"abzoobainc1598420455082\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/abzoobainc1598420455082\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"accedian\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/accedian\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"accelario1579101623356\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/accelario1579101623356\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"accellion\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/accellion\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"accessdata-group\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/accessdata-group\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"accops\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/accops\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aciworldwide\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aciworldwide\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Acronis\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Acronis\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Acronis.Backup\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Acronis.Backup\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"actian-corp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/actian-corp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"actian_matrix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/actian_matrix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"actifio\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/actifio\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"actiphy\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/actiphy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"actiphyinc1627974506603\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/actiphyinc1627974506603\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"activecountermeasuresinc1631039410073\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/activecountermeasuresinc1631039410073\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"activeeon\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/activeeon\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"activeops\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/activeops\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"adastracorporation-4028356\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/adastracorporation-4028356\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"adgs\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/adgs\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"advantech\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/advantech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"advantech-webaccess\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/advantech-webaccess\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"advantys\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/advantys\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aelf\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aelf\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aerospike\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aerospike\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"affinio\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/affinio\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"affirmednetworks1607630812999\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/affirmednetworks1607630812999\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ageniumscale1591804889317\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ageniumscale1591804889317\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aggregion-ltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aggregion-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"agiledialogssl1603791911858\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/agiledialogssl1603791911858\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"agolo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/agolo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ahnlabinc1584495174865\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ahnlabinc1584495174865\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ahnlabinc1584495467593\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ahnlabinc1584495467593\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"airalabrus\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/airalabrus\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aiscaler-cache-control-ddos-and-url-rewriting-\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aiscaler-cache-control-ddos-and-url-rewriting-\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aisundowninc1618516322959\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aisundowninc1618516322959\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"akamai-technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/akamai-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"akumina\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/akumina\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"akumo-software\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/akumo-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"al-tamamunitedtradingcontractingcompany\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/al-tamamunitedtradingcontractingcompany\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"alachisoft\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/alachisoft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"alertlogic\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/alertlogic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"AlertLogic.Extension\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/AlertLogic.Extension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"algolyticstechnologies1606475101268\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/algolyticstechnologies1606475101268\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"alicetrix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/alicetrix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"alienvault\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/alienvault\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"alldigital-brevity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/alldigital-brevity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"almalinux\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/almalinux\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"almalinuxosfoundation1628089859865\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/almalinuxosfoundation1628089859865\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"altair-engineering-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/altair-engineering-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"altamira-corporation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/altamira-corporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"alteryx\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/alteryx\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"altova\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/altova\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"amergint1593131356777\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/amergint1593131356777\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ansys\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ansys\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"antmedia\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/antmedia\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aod\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aod\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"apigee\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/apigee\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"appcara\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appcara\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"appcelerator\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appcelerator\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"appex-networks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appex-networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"appistry\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appistry\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"appiyo_technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appiyo_technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"appmint_inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appmint_inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"apps-4-rent\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/apps-4-rent\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"appscale-marketplace\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appscale-marketplace\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"appsurifyinc1606933045773\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appsurifyinc1606933045773\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aquaforest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aquaforest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aquantyinc1598537176913\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aquantyinc1598537176913\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aquaveollc1633710529908\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aquaveollc1633710529908\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"arabesque-group\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/arabesque-group\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"arangodb\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/arangodb\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aras\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aras\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"arcblock\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/arcblock\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"arcesb\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/arcesb\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"arcontechsolutionsprivatelimited1623841797810\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/arcontechsolutionsprivatelimited1623841797810\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"arcserveusallc-marketing\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/arcserveusallc-marketing\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"arista-networks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/arista-networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ariwontollc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ariwontollc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"array_networks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/array_networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"artificial-intelligence-techniques-sl\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/artificial-intelligence-techniques-sl\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"arubanetworks-4922182\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/arubanetworks-4922182\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"asdivertissementinc1617837708654\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/asdivertissementinc1617837708654\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"asigra\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/asigra\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aspentechnologyhq-1353108\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aspentechnologyhq-1353108\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"astadia-1148316\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/astadia-1148316\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"asterasoftware1581022936015\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/asterasoftware1581022936015\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"asyscosoftwarebv\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/asyscosoftwarebv\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ataccama\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ataccama\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"athinfosystems1641442221349\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/athinfosystems1641442221349\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"atlgaming\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/atlgaming\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"atmosera\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/atmosera\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"atomicorp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/atomicorp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"atomizedinc1587939464368\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/atomizedinc1587939464368\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"attunity_cloudbeam\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/attunity_cloudbeam\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"audiocodes\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/audiocodes\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"auraportal\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/auraportal\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"auriq-systems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/auriq-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"automateio1592914387888\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/automateio1592914387888\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"automationanywhere\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/automationanywhere\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"avanseus\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/avanseus\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"avepoint\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/avepoint\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aveva1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aveva1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"avi-networks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/avi-networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aviatrix-systems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aviatrix-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"awingu\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/awingu\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"axedrasag1590581171549\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/axedrasag1590581171549\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"axsguardablenv\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/axsguardablenv\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"axshco\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/axshco\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"axway\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/axway\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"axxana\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/axxana\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"azhpc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/azhpc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"azul\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/azul\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"azure-dockit\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/azure-dockit\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"azurecyclecloud\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/azurecyclecloud\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"AzureDatabricks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/AzureDatabricks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"azureopenshift\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/azureopenshift\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"AzureRT.PIR.Synthetics.ProdTest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/AzureRT.PIR.Synthetics.ProdTest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"AzureRT.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/AzureRT.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"azuretesting\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/azuretesting\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"azuretesting2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/azuretesting2\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"azuretesting3\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/azuretesting3\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"AzureTools1type\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/AzureTools1type\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"baas-techbureau\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/baas-techbureau\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"baffle-io\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/baffle-io\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"balabit\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/balabit\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"barracudanetworks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/barracudanetworks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"basho\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/basho\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"batch\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/batch\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bayware\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bayware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bdy\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bdy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"belindaczsro1588885355210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/belindaczsro1588885355210\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bellsoft1582871421940\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bellsoft1582871421940\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"betsol\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/betsol\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"beyondtrust\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/beyondtrust\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bi-builders-as\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bi-builders-as\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"big-id\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/big-id\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"biolibinc1622552350258\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/biolibinc1622552350258\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bissantechnology1583581147809\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bissantechnology1583581147809\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bitdefendercybersecurity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bitdefendercybersecurity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Bitnami\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Bitnami\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bizagi\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bizagi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bizaptyltd1626489237351\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bizaptyltd1626489237351\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bizdataloome\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bizdataloome\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"biztalk360\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/biztalk360\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"black-duck-software\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/black-duck-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"blackbird\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/blackbird\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"blackmagicdesignincorporated1596492193249\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/blackmagicdesignincorporated1596492193249\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"blk-technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/blk-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"blockapps\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/blockapps\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"blockchain-foundry\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/blockchain-foundry\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"blockstack\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/blockstack\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bloombase\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bloombase\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bluecat\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bluecat\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bluejeansnetwork1638333611902\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bluejeansnetwork1638333611902\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"blueprismlimited-4827145\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/blueprismlimited-4827145\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bluesyntaxconsulting1617654548594\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bluesyntaxconsulting1617654548594\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bluetalon\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bluetalon\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bmc.ctm\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bmc.ctm\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bmcctm.test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bmcctm.test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"boardpacpvtltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/boardpacpvtltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bocada\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bocada\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"boemskats\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/boemskats\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"botanalytics\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/botanalytics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bowspritconsultingopcprivatelimited1596291408582\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bowspritconsultingopcprivatelimited1596291408582\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bravura-software-llc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bravura-software-llc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Brianjac.Symantec.CloudWorkloadProtection\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Brianjac.Symantec.CloudWorkloadProtection\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bricatainc1584472632111\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bricatainc1584472632111\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bright-computing\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bright-computing\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"brightcomputing\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/brightcomputing\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"brocade_communications\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/brocade_communications\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"brutale\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/brutale\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bryte\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bryte\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bssw\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bssw\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bt-americas-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bt-americas-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"buddhalabs\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/buddhalabs\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cadosecurityltd1626856705534\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cadosecurityltd1626856705534\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"calculated_systems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/calculated_systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"caloudi_corp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/caloudi_corp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"canadiancentreforcybersecurity1610638436359\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/canadiancentreforcybersecurity1610638436359\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Canonical\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Canonical\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"canonical-test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/canonical-test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"carto\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/carto\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cask\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cask\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"castaigroupinc1595243474856\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/castaigroupinc1595243474856\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"catechnologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/catechnologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"catonetworksltd1641478570665\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/catonetworksltd1641478570665\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cautelalabs\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cautelalabs\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cavirin\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cavirin\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cayosoftinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cayosoftinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cdatasoftware\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cdatasoftware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cds\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cds\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"celum-gmbh\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/celum-gmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"center-for-internet-security-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/center-for-internet-security-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"centeritysystems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/centeritysystems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"centrixeltd1594135951373\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/centrixeltd1594135951373\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"centrocomputerspa1584528117084\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/centrocomputerspa1584528117084\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"certifiedsecuritysolutionsinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/certifiedsecuritysolutionsinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"certivox\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/certivox\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cfd-direct\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cfd-direct\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"chain\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/chain\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"checkpoint\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/checkpoint\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"chef-software\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/chef-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Chef.Bootstrap.WindowsAzure\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Chef.Bootstrap.WindowsAzure\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"chunghwatelecom1587573688842\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/chunghwatelecom1587573688842\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cinchy\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cinchy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cinegy-gmbh\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cinegy-gmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"circleci\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/circleci\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cires21\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cires21\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cirruswaveinc1579234787943\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cirruswaveinc1579234787943\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cisco\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cisco\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"citrix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/citrix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Citrix.ADC\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Citrix.ADC\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"clapsodeughaftungsbeschrnkt1626333173563\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/clapsodeughaftungsbeschrnkt1626333173563\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"clear-linux-project\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/clear-linux-project\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"clone-systems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/clone-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"clouber\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/clouber\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloud-checkr\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloud-checkr\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloud-cruiser\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloud-cruiser\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloud-infrastructure-services\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloud-infrastructure-services\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudaccelinc1628754426775\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudaccelinc1628754426775\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudbees\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudbees\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudbees-enterprise-jenkins\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudbees-enterprise-jenkins\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudbolt-software\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudbolt-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudboltsoftware1639523402532\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudboltsoftware1639523402532\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudboost\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudboost\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudcover\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudcover\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudenablers-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudenablers-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudentity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudentity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudera\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudera\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudflare\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudflare\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudhouse\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudhouse\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudinfo-4919088\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudinfo-4919088\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudknox\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudknox\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudlanes\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudlanes\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudlink\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudlink\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"CloudLinkEMC.SecureVM\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/CloudLinkEMC.SecureVM\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudmavensolutions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudmavensolutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudneeti\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudneeti\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudplan-gmbh\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudplan-gmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudsecurity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudsecurity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudsoft\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudsoft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudwhizsolutions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudwhizsolutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudwrxsconsultingltd1631029702055\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudwrxsconsultingltd1631029702055\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"clustrix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/clustrix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cncf-upstream\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cncf-upstream\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"codaintelligence1606495376525\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/codaintelligence1606495376525\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"codelathe\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/codelathe\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"codenvy\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/codenvy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"codetwo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/codetwo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cognexcorporation1613759804979\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cognexcorporation1613759804979\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cognitive-scale\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cognitive-scale\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cognizant\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cognizant\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cognosys\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cognosys\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cohesity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cohesity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cohesitydev1592001764720\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cohesitydev1592001764720\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cohesive\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cohesive\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"coin-sciences-ltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/coin-sciences-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"collabcloudlimited\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/collabcloudlimited\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"collibranv1619508098620\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/collibranv1619508098620\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"commscopeinc1632135151062\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/commscopeinc1632135151062\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"commvault\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/commvault\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"compellon\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/compellon\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"composable\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/composable\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"comunity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/comunity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"concentrationheatandmomentumlimited1616154387047\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/concentrationheatandmomentumlimited1616154387047\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Confer\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Confer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"confluentinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/confluentinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"conflux\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/conflux\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"connecting-software\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/connecting-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"consensys\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/consensys\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"containeraider\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/containeraider\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"contiamogmbh\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/contiamogmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"controlcase\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/controlcase\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"controlplane\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/controlplane\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"controlplanecorporation1609967567639\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/controlplanecorporation1609967567639\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"convertigo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/convertigo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"corda\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/corda\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"core-stack\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/core-stack\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"corent-technology-pvt\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/corent-technology-pvt\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"CoreOS\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/CoreOS\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"couchbase\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/couchbase\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cpanel\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cpanel\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"credativ\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/credativ\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cristiesoftwareltd1599488127561\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cristiesoftwareltd1599488127561\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"crunchyard\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/crunchyard\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"crunchyardltd1623835391104\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/crunchyardltd1623835391104\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cryptocom1585727786636\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cryptocom1585727786636\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cryptosense1605170011574\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cryptosense1605170011574\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cryptzone\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cryptzone\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ctm.bmc.com\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ctm.bmc.com\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cubebackup\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cubebackup\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cyberark\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cyberark\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cybernetica-as\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cybernetica-as\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cyxtera\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cyxtera\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"d4t4_solutions-1164305\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/d4t4_solutions-1164305\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"daceitdbasensetrafficpulse1579892024934\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/daceitdbasensetrafficpulse1579892024934\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"danielsol.AzureTools1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/danielsol.AzureTools1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Dans.Windows.App\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Dans.Windows.App\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Dans3.Windows.App\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Dans3.Windows.App\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dataart\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dataart\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"databricks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/databricks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datacore\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datacore\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Datadog.Agent\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Datadog.Agent\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datadynamicsinc1581991927942\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datadynamicsinc1581991927942\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dataguiseinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dataguiseinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dataiku\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dataiku\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datalayer\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datalayer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datanomers1584919038987\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datanomers1584919038987\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datanova\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datanova\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datapredsa\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datapredsa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dataroadtechnologiesllc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dataroadtechnologiesllc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datasciencedojo1586563145740\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datasciencedojo1586563145740\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datastax\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datastax\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datasunrise\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datasunrise\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datavirtualitygmbh\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datavirtualitygmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datometry\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datometry\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dbs-h\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dbs-h\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ddn-whamcloud-5345716\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ddn-whamcloud-5345716\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Debian\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Debian\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dece-4446019\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dece-4446019\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"decisosalesbv\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/decisosalesbv\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"deepcognitioninc1593512758156\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/deepcognitioninc1593512758156\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"deepsiginc1581610210151\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/deepsiginc1581610210151\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"deepsurfacesecurityinc1632943333445\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/deepsurfacesecurityinc1632943333445\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dellemc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dellemc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dell_software\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dell_software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"delphix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/delphix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"deltapathlimited1592886319362\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/deltapathlimited1592886319362\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"denodo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/denodo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"denyall\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/denyall\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"derdack\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/derdack\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"desktopstudioag1580294245574\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/desktopstudioag1580294245574\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"devfactory\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/devfactory\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"device42inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/device42inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"deviceauthorityinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/deviceauthorityinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"devolutionsinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/devolutionsinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"devopsgroup-uk\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/devopsgroup-uk\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"df-portal-user\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/df-portal-user\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dgsecure\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dgsecure\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Dh2ico\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Dh2ico\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dh2icompany\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dh2icompany\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dhi\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dhi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"diagramics\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/diagramics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dicomsystems1584107398321\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dicomsystems1584107398321\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"diehl-metering\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/diehl-metering\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"digisitesystems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/digisitesystems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"digitaldefenseinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/digitaldefenseinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"digitaloffice\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/digitaloffice\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"digitamizeinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/digitamizeinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"digitate\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/digitate\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"diladele\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/diladele\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dimensionalmechanics-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dimensionalmechanics-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"diqa\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/diqa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"diyatech\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/diyatech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"diyotta\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/diyotta\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"djiindustrialincus\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/djiindustrialincus\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"docker\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/docker\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dome9\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dome9\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dorabot\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dorabot\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dremiocorporation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dremiocorporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"drizti\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/drizti\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"drone\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/drone\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dsi\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dsi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dundas\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dundas\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dyadic_security\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dyadic_security\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dynatrace\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dynatrace\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dynatrace.ruxit\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dynatrace.ruxit\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"e-magicinc1587696283171\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/e-magicinc1587696283171\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"eastwind-networks-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/eastwind-networks-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"easysoftwaresro1593005637384\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/easysoftwaresro1593005637384\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ebesllc1637780200500\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ebesllc1637780200500\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ecessa\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ecessa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"edevtech\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/edevtech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"edgelesssystems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/edgelesssystems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"edgenetworks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/edgenetworks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"edispheresoftwareprivatelimited1606199736428\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/edispheresoftwareprivatelimited1606199736428\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"education4sight\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/education4sight\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"eecservicesfzllc1604836615706\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/eecservicesfzllc1604836615706\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"egnyte\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/egnyte\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"egress1589289169584\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/egress1589289169584\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"eikonasystemsgmbh1601729310063\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/eikonasystemsgmbh1601729310063\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Elastic\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Elastic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"elasticbox\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/elasticbox\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"elecard\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/elecard\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"electric-cloud\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/electric-cloud\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"elevateiot\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/elevateiot\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"eleven01\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/eleven01\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"elfiqnetworks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/elfiqnetworks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"emercoin\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/emercoin\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"energisme1601990637842\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/energisme1601990637842\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"enforongo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/enforongo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"engineering-ingegneriainformatica-spa1626786889850\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/engineering-ingegneriainformatica-spa1626786889850\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"engysltd1624364546407\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/engysltd1624364546407\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"enterprise-ethereum-alliance\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/enterprise-ethereum-alliance\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"enterprisedb-corp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/enterprisedb-corp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"enterpriseworx-it\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/enterpriseworx-it\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"epicgames\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/epicgames\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"epicgamesinc1633466121071\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/epicgamesinc1633466121071\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"eproe\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/eproe\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"equalum\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/equalum\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"equilibrium\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/equilibrium\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"equinix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/equinix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ergoninformatikag1581586464404\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ergoninformatikag1581586464404\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"esdenera\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/esdenera\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ESET\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ESET\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"esetresearch1579795941720\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/esetresearch1579795941720\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"esri\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/esri\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"esyon\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/esyon\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ethereum\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ethereum\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"eurolinuxspzoo1620639373013\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/eurolinuxspzoo1620639373013\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"eventtracker\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/eventtracker\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"evertzmicrosystemsltd1586877923009\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/evertzmicrosystemsltd1586877923009\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"evostream-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/evostream-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"exact\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/exact\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"exasol\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/exasol\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"excelero1608461290726\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/excelero1608461290726\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"exivity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/exivity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"exonar\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/exonar\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"f5-networks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/f5-networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"falainapteltd1604661424876\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/falainapteltd1604661424876\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"falconstorsoftware\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/falconstorsoftware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fatalsecurity1604924013537\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fatalsecurity1604924013537\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fatpipe-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fatpipe-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fenestrae-1035066\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fenestrae-1035066\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fidesys\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fidesys\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"filecatalyst\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/filecatalyst\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"filemagellc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/filemagellc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fiorano\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fiorano\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fireeye\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fireeye\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"firehost\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/firehost\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"firemon\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/firemon\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"firstderivativesplc1596469572732\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/firstderivativesplc1596469572732\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"flashgrid-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/flashgrid-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"flexbby\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/flexbby\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"flexbby-5255860\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/flexbby-5255860\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"flexify-io\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/flexify-io\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"flexxibleit\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/flexxibleit\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"flowmon\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/flowmon\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"flynet\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/flynet\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"foghorn-systems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/foghorn-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"forcepoint-llc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/forcepoint-llc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"forescout\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/forescout\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"foreseetiab1613650409016\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/foreseetiab1613650409016\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"formpipesoftwareab\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/formpipesoftwareab\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"forscene\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/forscene\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fortanix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fortanix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fortinet\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fortinet\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fortycloud\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fortycloud\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"forumsystems1599756394904\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/forumsystems1599756394904\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fotopiatechnologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fotopiatechnologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"foxiteuropegmbh1585901066320\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/foxiteuropegmbh1585901066320\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"franzinc1593030725310\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/franzinc1593030725310\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fujitsu_fast\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fujitsu_fast\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fw\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fw\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"g2kgroupgmbh-4821943\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/g2kgroupgmbh-4821943\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gapteq\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gapteq\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gatlingcorp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gatlingcorp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gbs\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gbs\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gemalto-safenet\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gemalto-safenet\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Gemalto.SafeNet.ProtectV\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Gemalto.SafeNet.ProtectV\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"genuagmbhdevid1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/genuagmbhdevid1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"genua_gmbh\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/genua_gmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"genymobile\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/genymobile\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gigamon-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gigamon-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"GitHub\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/GitHub\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gitlab\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gitlab\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gitlabinc1586447921813\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gitlabinc1586447921813\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gladinet-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gladinet-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"glantoninc1591876792991\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/glantoninc1591876792991\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"globalidsinc1596800540598\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/globalidsinc1596800540598\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"globalscape\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/globalscape\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"globalsolutions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/globalsolutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gluwareinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gluwareinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"graphistry\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/graphistry\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"graphitegtc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/graphitegtc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"great-software-laboratory-private-limited\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/great-software-laboratory-private-limited\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"greensql\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/greensql\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"greycorbelsolutions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/greycorbelsolutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gridgain\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gridgain\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"guardicore\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/guardicore\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gxchainfoundationltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gxchainfoundationltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"h2o-ai\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/h2o-ai\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hackerbay\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hackerbay\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hackershub\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hackershub\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"haivision\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/haivision\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"haivisionsystemsinc1580780591922\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/haivisionsystemsinc1580780591922\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"haltdoscompvtltd1587136166019\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/haltdoscompvtltd1587136166019\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hanu\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hanu\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"haproxy-technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/haproxy-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"harmanconnectedservicesinc1594928575643\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/harmanconnectedservicesinc1594928575643\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"harpaitalia\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/harpaitalia\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hashhub\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hashhub\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hcl-technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hcl-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"heimdall-data\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/heimdall-data\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"help-systems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/help-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"helpyio\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/helpyio\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"heretechnologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/heretechnologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hewlett-packard\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hewlett-packard\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hillstone-networks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hillstone-networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hitachi-solutions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hitachi-solutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hitachivantara\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hitachivantara\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"holo-industrie40softwaregmbh1600957636008\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/holo-industrie40softwaregmbh1600957636008\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hortonworks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hortonworks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hpe\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hpe\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"HPE.Security.ApplicationDefender\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/HPE.Security.ApplicationDefender\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"huawei\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/huawei\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hubstor-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hubstor-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hush-hush\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hush-hush\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hvr\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hvr\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hyperglance\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hyperglance\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hypergrid\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hypergrid\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hystaxinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hystaxinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hytrust\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hytrust\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"i-exceed-technology\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/i-exceed-technology\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iaansys\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iaansys\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ibm\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ibm\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ibm-alliance-global-1560886\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ibm-alliance-global-1560886\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ibm-alliance-usa-ny-armonk-hq-ibmstorage-6201192\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ibm-alliance-usa-ny-armonk-hq-ibmstorage-6201192\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ibm-usa-ny-armonk-hq-6275750-ibmcloud-aiops\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ibm-usa-ny-armonk-hq-6275750-ibmcloud-aiops\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iboss\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iboss\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iconics\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iconics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iconsulting-spa\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iconsulting-spa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"icubeconsultancyservicesinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/icubeconsultancyservicesinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iguazio-5069960\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iguazio-5069960\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ikan\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ikan\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iliimbiliimveyazlmsistemlerisanvetica1617000555584\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iliimbiliimveyazlmsistemlerisanvetica1617000555584\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"illuminainc1586452220102\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/illuminainc1586452220102\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"image-technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/image-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"imaginecommunications\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/imaginecommunications\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"imperva\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/imperva\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"impetustechnologiesinc1591959591877\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/impetustechnologiesinc1591959591877\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"imprivatainc1580479939967\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/imprivatainc1580479939967\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"incorta\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/incorta\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"incredibuild\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/incredibuild\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"indexima1594300233028\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/indexima1594300233028\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"industry-weapon\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/industry-weapon\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"industryweapon1587162781833\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/industryweapon1587162781833\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"inenprocesosyplataformasdetisderldecv1615482385424\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/inenprocesosyplataformasdetisderldecv1615482385424\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"inergybv1637141413454\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/inergybv1637141413454\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"infinitesoftwarecorporation1579223971125\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/infinitesoftwarecorporation1579223971125\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"infiotinc1614034091460\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/infiotinc1614034091460\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"influxdata\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/influxdata\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"infoblox\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/infoblox\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"infogix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/infogix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"infolibrarian\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/infolibrarian\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"informatica\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/informatica\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"informationbuilders\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/informationbuilders\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"informationtechnologies_ltd_1179601\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/informationtechnologies_ltd_1179601\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"infotecsinternetsecuritysoftwaregmbh1636129257584\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/infotecsinternetsecuritysoftwaregmbh1636129257584\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"infront-consulting-group-ltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/infront-consulting-group-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"infscapeughaftungsbeschrnkt\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/infscapeughaftungsbeschrnkt\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ingenieurstudiohollaus1579587745438\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ingenieurstudiohollaus1579587745438\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ingrammicro\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ingrammicro\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"innomindssoftware\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/innomindssoftware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"innosepgmbh1618331344164\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/innosepgmbh1618331344164\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"innovatorartificialtechsrl1619180685551\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/innovatorartificialtechsrl1619180685551\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"innovtech\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/innovtech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"instight-technology\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/instight-technology\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"integration-objects\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/integration-objects\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"intel-bigdl\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/intel-bigdl\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"intel-fpga\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/intel-fpga\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"intellicus-technologies-pvt-ltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/intellicus-technologies-pvt-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"intelligent-plant-ltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/intelligent-plant-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"internationaltrustmachinescorporation1582190033865\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/internationaltrustmachinescorporation1582190033865\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"internet20inc1635882446190\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/internet20inc1635882446190\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"intersystems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/intersystems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"intigua\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/intigua\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"intigua1638692632641\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/intigua1638692632641\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"introspecioltd1629872641188\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/introspecioltd1629872641188\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iofabric\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iofabric\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ipinfusion1590066770520\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ipinfusion1590066770520\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ipswitch\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ipswitch\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iqsol\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iqsol\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iquate\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iquate\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iquest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iquest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"irion\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/irion\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ishlangu-load-balancer-adc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ishlangu-load-balancer-adc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"issp-corporation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/issp-corporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"isvtestukbigcat\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/isvtestukbigcat\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"isvtestuklegacy\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/isvtestuklegacy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"it4bizdoo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/it4bizdoo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"itelios\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/itelios\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"itrsgroupltd1620310702149\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/itrsgroupltd1620310702149\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ivanti-inc-pcs\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ivanti-inc-pcs\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ivix1595238749040\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ivix1595238749040\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iwnamespace\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iwnamespace\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"izenda\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/izenda\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"jamcracker\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/jamcracker\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"javlinltd1579185328273\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/javlinltd1579185328273\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"jedox\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/jedox\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"jelastic\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/jelastic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"jetnexus\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/jetnexus\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"jetware-srl\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/jetware-srl\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"jfrog\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/jfrog\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"jm-technology-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/jm-technology-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"jogetinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/jogetinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"juniper-networks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/juniper-networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"justanalytics\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/justanalytics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kaazing\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kaazing\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kadenallc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kadenallc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kali-linux\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kali-linux\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kalkitech\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kalkitech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kaminarioinc1588672951794\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kaminarioinc1588672951794\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Kaspersky.Lab\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Kaspersky.Lab\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"KasperskyLab.SecurityAgent\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/KasperskyLab.SecurityAgent\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kaspersky_lab\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kaspersky_lab\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kazendi\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kazendi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kelverion\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kelverion\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kemptech\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kemptech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kepion\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kepion\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"KevlarExtensions.M365Security.SecureOS\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/KevlarExtensions.M365Security.SecureOS\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"KevlarExtensions.M365SecurityHostIDS\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/KevlarExtensions.M365SecurityHostIDS\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"KevlarExtensions.M365SecurityInventory\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/KevlarExtensions.M365SecurityInventory\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"KevlarExtensions.M365SecurityInventory.NameChangeTest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/KevlarExtensions.M365SecurityInventory.NameChangeTest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"KevlarExtensions.M365SecurityODL\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/KevlarExtensions.M365SecurityODL\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"KevlarExtensions.M365SecurityTLSExtension\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/KevlarExtensions.M365SecurityTLSExtension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kinetica\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kinetica\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kinvolk\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kinvolk\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"knime\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/knime\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kobalt\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kobalt\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kognillc1600118221163\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kognillc1600118221163\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kognitivsparkinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kognitivsparkinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"konginc1581527938760\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/konginc1581527938760\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"konsys-ltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/konsys-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"koverseinc1588716263110\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/koverseinc1588716263110\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kryonsystems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kryonsystems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"krypc-technologies-pvt-ltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/krypc-technologies-pvt-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kyligence\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kyligence\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kyvos-insights-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kyvos-insights-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lab3solutions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lab3solutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lancom-systems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lancom-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lansa\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lansa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lastline\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lastline\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"leap-orbit\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/leap-orbit\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lenovosoftware1604394104439\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lenovosoftware1604394104439\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"leostream-corporation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/leostream-corporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lepide-software\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lepide-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"levacloudllc1602151818089\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/levacloudllc1602151818089\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"libelleag\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/libelleag\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"liberatii\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/liberatii\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"libraesva\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/libraesva\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"liebsoft\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/liebsoft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lightning-analyticsinc1582000647396\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lightning-analyticsinc1582000647396\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"linuxbasedsystemsdesignltd1580878904727\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/linuxbasedsystemsdesignltd1580878904727\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"liquid-files\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/liquid-files\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"liquidware\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/liquidware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"literatu\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/literatu\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"litespeedtechnologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/litespeedtechnologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"litespeed_technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/litespeed_technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"litionenergiegmbh1580128829115\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/litionenergiegmbh1580128829115\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"litmusautomation1582760223280\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/litmusautomation1582760223280\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"llcitpro\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/llcitpro\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lnw-softgmbh\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lnw-softgmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"loadbalancer\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/loadbalancer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"logicflowag1638535407949\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/logicflowag1638535407949\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"logsign\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/logsign\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"logstarecorp1635838645101\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/logstarecorp1635838645101\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"logtrust\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/logtrust\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"logzio\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/logzio\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"looker\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/looker\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lotus_beta_analytics\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lotus_beta_analytics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lti-lt-infotech\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lti-lt-infotech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"luminate-security\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/luminate-security\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"M365Security.KevlarExtensions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/M365Security.KevlarExtensions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"M365SecurityInventory\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/M365SecurityInventory\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"machinesense\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/machinesense\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"madhavajay1632269232059\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/madhavajay1632269232059\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"maidenhead-bridge\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/maidenhead-bridge\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"manageengine\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/manageengine\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mapd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mapd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mapr-technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mapr-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"marand\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/marand\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"marketplace-rdfe-caps\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/marketplace-rdfe-caps\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"marklogic\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/marklogic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"massiveanalytic-\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/massiveanalytic-\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mathworks-deployment\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mathworks-deployment\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mathworks-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mathworks-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"matillion\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/matillion\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mavinglobal\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mavinglobal\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"McAfee.EndpointSecurity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/McAfee.EndpointSecurity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"McAfee.EndpointSecurity.test3\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/McAfee.EndpointSecurity.test3\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"meanio\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/meanio\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"media3-adobe\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/media3-adobe\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"media3-technologies-llc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/media3-technologies-llc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mediatekinc1586141563888\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mediatekinc1586141563888\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mendix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mendix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"merlynnintelligencetechnologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/merlynnintelligencetechnologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"meshifyappinc1622759451429\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/meshifyappinc1622759451429\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"messagesolution\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/messagesolution\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"metaswitch\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/metaswitch\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mettainnovations-4900054\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mettainnovations-4900054\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mfe_azure\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mfe_azure\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mfiles\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mfiles\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mico\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mico\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"micro-focus\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/micro-focus\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microlinkpcukltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microlinkpcukltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microolap\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microolap\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-ads\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-ads\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-agci-gaming\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-agci-gaming\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-aks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-aks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-avere\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-avere\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-azure-batch\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-azure-batch\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-azure-compute\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-azure-compute\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-azure-hdinsight\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-azure-hdinsight\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-crypto\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-crypto\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-dsvm\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-dsvm\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-hyperv\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-hyperv\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-minecraft\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-minecraft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AdminCenter\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AdminCenter\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AKS\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AKS\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.ActiveDirectory\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.ActiveDirectory\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.ActiveDirectory.LinuxSSH\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.ActiveDirectory.LinuxSSH\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Applications\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Applications\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Automation.HybridWorker\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Automation.HybridWorker\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Automation.HybridWorker.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Automation.HybridWorker.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.AzureDefenderForServers\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.AzureDefenderForServers\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.AzureDefenderForSQL\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.AzureDefenderForSQL\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Backup.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Backup.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Backup.Test.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Backup.Test.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.ChangeTracking\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.ChangeTracking\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.ChangeTracking.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.ChangeTracking.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.ChangeTrackingAndInventory\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.ChangeTrackingAndInventory\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Chaos\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Chaos\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Compute.Security\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Compute.Security\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.ContainerUpstream\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.ContainerUpstream\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.DefenderForServers.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.DefenderForServers.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.DefenderForServers.Test2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.DefenderForServers.Test2\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Diagnostics\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Diagnostics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Diagnostics.Build.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Diagnostics.Build.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Diagnostics.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Diagnostics.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test012be407-61ea-4e45-a2c3-71a45999ca21-20191228083800\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test012be407-61ea-4e45-a2c3-71a45999ca21-20191228083800\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test01971384-3044-413b-8b1c-33b5d461bf23-20200107051823\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test01971384-3044-413b-8b1c-33b5d461bf23-20200107051823\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test0225ec7d-b36c-4ac8-82f0-aa4fafaf10a9-20200111051346\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test0225ec7d-b36c-4ac8-82f0-aa4fafaf10a9-20200111051346\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test025e16a1-328d-45a2-b7e3-71f7e4cde046-20191229064028\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test025e16a1-328d-45a2-b7e3-71f7e4cde046-20191229064028\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test02d1f941-5607-4757-8df7-fd8c5631ab45-20200103083810\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test02d1f941-5607-4757-8df7-fd8c5631ab45-20200103083810\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test039abd7f-360c-42a1-ad5d-77527c519286-20191002233412\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test039abd7f-360c-42a1-ad5d-77527c519286-20191002233412\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test04a0f157-c6fb-4595-b6ca-6c82a2338063-20200108101451\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test04a0f157-c6fb-4595-b6ca-6c82a2338063-20200108101451\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test0737f33e-63e0-4ba9-b04b-b93a1de4e997-20200106083639\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test0737f33e-63e0-4ba9-b04b-b93a1de4e997-20200106083639\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test0a44d7be-63fa-418d-a7b6-89a44dd21894-20200107052935\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test0a44d7be-63fa-418d-a7b6-89a44dd21894-20200107052935\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test0d01b487-7f79-4d87-b330-5c025068db45-20191004190331\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test0d01b487-7f79-4d87-b330-5c025068db45-20191004190331\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test0d643748-e6fe-41ad-b4d3-89a289a0cee0-20191003055620\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test0d643748-e6fe-41ad-b4d3-89a289a0cee0-20191003055620\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test0df83c51-5bb9-43f8-8ae9-bc896ea64f78-20200110220221\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test0df83c51-5bb9-43f8-8ae9-bc896ea64f78-20200110220221\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test0f02c246-7e65-4010-9367-ca4530c3897e-20191004190223\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test0f02c246-7e65-4010-9367-ca4530c3897e-20191004190223\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test157494ec-e788-43b0-8d26-a17e39ee07cc-20191002011945\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test157494ec-e788-43b0-8d26-a17e39ee07cc-20191002011945\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test1661d154-b623-4507-8a56-3a89812c456c-20200111083940\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test1661d154-b623-4507-8a56-3a89812c456c-20200111083940\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test17bbd860-f21d-40ab-9026-16e05f2907f0-20200106083451\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test17bbd860-f21d-40ab-9026-16e05f2907f0-20200106083451\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test194e2333-13cd-43e3-b0a4-c8cdcf1a3600-20200110211106\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test194e2333-13cd-43e3-b0a4-c8cdcf1a3600-20200110211106\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test1bc26b19-b8d8-41f9-a26d-818f277bdf93-20200101113139\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test1bc26b19-b8d8-41f9-a26d-818f277bdf93-20200101113139\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test1c840053-9213-4f2a-8f2e-9bf2297908bd-20200108101424\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test1c840053-9213-4f2a-8f2e-9bf2297908bd-20200108101424\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test1d7bba72-69f1-43cd-a38c-41ce0b5f4bae-20200109050041\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test1d7bba72-69f1-43cd-a38c-41ce0b5f4bae-20200109050041\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test1f7a8078-50e7-4a3a-91eb-d178fd4c403b-20191002233353\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test1f7a8078-50e7-4a3a-91eb-d178fd4c403b-20191002233353\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test1fef1fdc-57ba-46a8-a879-475ba7d45a7a-20200106083509\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test1fef1fdc-57ba-46a8-a879-475ba7d45a7a-20200106083509\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test21332f15-f78d-4d31-afac-79b9dc989432-20191231175840\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test21332f15-f78d-4d31-afac-79b9dc989432-20191231175840\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test22f10717-6939-4003-a9ce-38effd8b77d6-20191007191355\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test22f10717-6939-4003-a9ce-38effd8b77d6-20191007191355\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test2334e6e3-bb72-4241-a36f-c2429d69bc0b-20200106050834\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test2334e6e3-bb72-4241-a36f-c2429d69bc0b-20200106050834\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test24fa9eb5-1c59-4425-b61c-30fd638c2a45-20191003203802\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test24fa9eb5-1c59-4425-b61c-30fd638c2a45-20191003203802\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test2521a545-ed61-4a15-bed1-aba7ce1d81ee-20200106050804\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test2521a545-ed61-4a15-bed1-aba7ce1d81ee-20200106050804\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test25c6fe61-1282-43c2-867b-b5039219989c-20200105081851\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test25c6fe61-1282-43c2-867b-b5039219989c-20200105081851\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test27515c8c-6773-4f92-afb0-35691cc6e3b6-20200103083821\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test27515c8c-6773-4f92-afb0-35691cc6e3b6-20200103083821\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test28012680-48e7-4903-877f-2f29464e63d5-20191229033424\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test28012680-48e7-4903-877f-2f29464e63d5-20191229033424\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test29a7a529-d293-4728-9d7f-257ed996e64f-20200108081759\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test29a7a529-d293-4728-9d7f-257ed996e64f-20200108081759\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test2a5f2d2c-b8e3-46c2-850d-a1641c024fe7-20200107084228\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test2a5f2d2c-b8e3-46c2-850d-a1641c024fe7-20200107084228\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test2ce856af-ab17-48f2-ba3e-bcd9af091061-20200110013246\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test2ce856af-ab17-48f2-ba3e-bcd9af091061-20200110013246\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test2e012e83-6361-4365-963f-6ced8a08e91c-20200110211254\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test2e012e83-6361-4365-963f-6ced8a08e91c-20200110211254\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test2ecf67b2-fb63-4461-b6a6-7026c4fb1168-20191002214026\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test2ecf67b2-fb63-4461-b6a6-7026c4fb1168-20191002214026\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test2ede6564-c7cc-44cb-a1a8-902505c9829d-20191003020742\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test2ede6564-c7cc-44cb-a1a8-902505c9829d-20191003020742\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test2f4ebc17-e27e-48d9-9cc3-ff933c21884e-20200106092410\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test2f4ebc17-e27e-48d9-9cc3-ff933c21884e-20200106092410\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test349ee02c-af9b-4663-a963-823b40eefed8-20200108083612\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test349ee02c-af9b-4663-a963-823b40eefed8-20200108083612\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test34cf6b13-b78e-478b-b596-8b661629371d-20191007195455\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test34cf6b13-b78e-478b-b596-8b661629371d-20191007195455\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test36cc5b60-2b23-4a04-bf95-f7865e1141cf-20200110085718\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test36cc5b60-2b23-4a04-bf95-f7865e1141cf-20200110085718\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3712fca9-5cdd-4609-be69-b02aedc5c55c-20200107084115\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3712fca9-5cdd-4609-be69-b02aedc5c55c-20200107084115\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3772d042-92e2-4bcb-99b7-8a6a119cc088-20191231182808\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3772d042-92e2-4bcb-99b7-8a6a119cc088-20191231182808\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test37a6dd64-d44d-465e-85bc-3bc38be90350-20200104083535\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test37a6dd64-d44d-465e-85bc-3bc38be90350-20200104083535\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test381074d5-7156-472b-801a-b35f8fef4cc6-20200105050612\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test381074d5-7156-472b-801a-b35f8fef4cc6-20200105050612\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3877a44d-4c48-40db-80eb-227272d5acd6-20200110103540\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3877a44d-4c48-40db-80eb-227272d5acd6-20200110103540\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test38ecd28e-7018-4672-840c-3044a5e7a6b5-20200111084208\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test38ecd28e-7018-4672-840c-3044a5e7a6b5-20200111084208\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test395a0b49-442a-450c-8a1f-65b0aa3bcf47-20200105083839\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test395a0b49-442a-450c-8a1f-65b0aa3bcf47-20200105083839\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3971b300-edff-44a8-b61b-7f9b7460a8d6-20191003002234\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3971b300-edff-44a8-b61b-7f9b7460a8d6-20191003002234\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3adeec20-7458-4b3d-af26-0b6bc2aae3eb-20200103083751\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3adeec20-7458-4b3d-af26-0b6bc2aae3eb-20200103083751\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3b20dd96-f3e4-4798-998d-8c433c2449a7-20200108083635\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3b20dd96-f3e4-4798-998d-8c433c2449a7-20200108083635\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3ce2fd4a-8b5a-4c7e-b08d-3e48fc0f45e7-20200104083825\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3ce2fd4a-8b5a-4c7e-b08d-3e48fc0f45e7-20200104083825\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3d499ca7-cc8d-41cc-a6dc-ffb1a4ac4942-20200107053004\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3d499ca7-cc8d-41cc-a6dc-ffb1a4ac4942-20200107053004\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3db7240e-5e42-4d6d-b024-cc9fce3c828b-20200105083520\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3db7240e-5e42-4d6d-b024-cc9fce3c828b-20200105083520\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3f6b7341-635f-48d5-a36d-be5dfe3002c4-20200105050937\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3f6b7341-635f-48d5-a36d-be5dfe3002c4-20200105050937\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3fc26934-ede2-4482-ad5e-f66f6135d4a6-20191228055558\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3fc26934-ede2-4482-ad5e-f66f6135d4a6-20191228055558\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test406d077c-6017-4062-bc96-f809147a2331-20200106050748\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test406d077c-6017-4062-bc96-f809147a2331-20200106050748\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test4302336c-e039-4e70-bcb6-9275f6089e4a-20200108144821\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test4302336c-e039-4e70-bcb6-9275f6089e4a-20200108144821\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test453a087e-8435-46db-970a-4ee633cc4c4a-20200102083458\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test453a087e-8435-46db-970a-4ee633cc4c4a-20200102083458\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test46b73afa-2259-4aff-81e1-a58bf24b59aa-20191229033459\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test46b73afa-2259-4aff-81e1-a58bf24b59aa-20191229033459\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test4a3399ee-82ea-46aa-9e3a-5434b588e3b6-20191228013518\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test4a3399ee-82ea-46aa-9e3a-5434b588e3b6-20191228013518\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test4eb7a185-527b-4b9f-93a8-7f1cec9d062e-20191231151207\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test4eb7a185-527b-4b9f-93a8-7f1cec9d062e-20191231151207\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test520a0915-f9f0-4da4-9fa1-1b74fc1470aa-20200102083505\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test520a0915-f9f0-4da4-9fa1-1b74fc1470aa-20200102083505\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test5397960f-023b-4979-9a8b-800d049045a4-20191007195417\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test5397960f-023b-4979-9a8b-800d049045a4-20191007195417\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test55a36387-8a3f-4159-9884-29b97539a253-20200109080443\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test55a36387-8a3f-4159-9884-29b97539a253-20200109080443\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test5645f186-4ee5-4209-af37-423660e3318c-20191231175947\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test5645f186-4ee5-4209-af37-423660e3318c-20191231175947\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test58b4461d-4d2d-4395-b6d2-ab83d4d8c62f-20200111001002\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test58b4461d-4d2d-4395-b6d2-ab83d4d8c62f-20200111001002\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test5b0bf447-d98d-429d-8334-c032d197c743-20191003203846\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test5b0bf447-d98d-429d-8334-c032d197c743-20191003203846\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test5bc90367-1ea2-400b-a40c-321081bae3f3-20200108145035\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test5bc90367-1ea2-400b-a40c-321081bae3f3-20200108145035\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test5bd0562f-e939-456f-a6ee-c848d1aba616-20200101151641\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test5bd0562f-e939-456f-a6ee-c848d1aba616-20200101151641\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test5e4efe90-916c-4c96-802c-1508a5b6da78-20191231151150\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test5e4efe90-916c-4c96-802c-1508a5b6da78-20191231151150\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test5f8f0c10-cc3c-45ec-a068-fb1c7edfa0d9-20200101145958\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test5f8f0c10-cc3c-45ec-a068-fb1c7edfa0d9-20200101145958\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test60a000b7-286c-4b2b-9137-bbc088736419-20200108144920\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test60a000b7-286c-4b2b-9137-bbc088736419-20200108144920\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test6192a01b-ba47-4d08-904a-71647a49a112-20191008041625\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test6192a01b-ba47-4d08-904a-71647a49a112-20191008041625\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test62835538-89c6-4f66-9034-f7a4b176c615-20191007234245\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test62835538-89c6-4f66-9034-f7a4b176c615-20191007234245\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test651e4ad2-ee4a-462e-a506-b56b1969f5d0-20200110230749\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test651e4ad2-ee4a-462e-a506-b56b1969f5d0-20200110230749\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test691d94e5-c40c-4568-94b0-09b08aea42b1-20200106050808\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test691d94e5-c40c-4568-94b0-09b08aea42b1-20200106050808\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test6aa3643c-011a-4180-877f-cad955a8e664-20191007234642\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test6aa3643c-011a-4180-877f-cad955a8e664-20191007234642\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test6cfb469b-8478-468f-9bb5-691affd32abb-20200107083803\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test6cfb469b-8478-468f-9bb5-691affd32abb-20200107083803\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test6d36b6b2-7956-4e62-91c1-c33792fd4bb1-20200110123203\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test6d36b6b2-7956-4e62-91c1-c33792fd4bb1-20200110123203\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test6e28168e-a9c8-4c0a-8b40-60c2a1502d43-20200108052802\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test6e28168e-a9c8-4c0a-8b40-60c2a1502d43-20200108052802\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test6eb763ac-7fbe-4e44-bee7-aad035ee2a7d-20200110084429\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test6eb763ac-7fbe-4e44-bee7-aad035ee2a7d-20200110084429\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test6efec253-f625-46f0-9d74-324f69e963d8-20200107070514\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test6efec253-f625-46f0-9d74-324f69e963d8-20200107070514\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test70fa7e4c-3122-4ff7-aec6-fe75ab660a01-20200108105900\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test70fa7e4c-3122-4ff7-aec6-fe75ab660a01-20200108105900\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test710a5fbf-06c7-46ac-b96d-a29d2586422f-20200108083639\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test710a5fbf-06c7-46ac-b96d-a29d2586422f-20200108083639\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test71d72489-67c6-45e2-b1e6-a19546efc823-20200105112903\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test71d72489-67c6-45e2-b1e6-a19546efc823-20200105112903\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test721fccf1-2b3e-44b6-908f-51b910e88b09-20200111104931\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test721fccf1-2b3e-44b6-908f-51b910e88b09-20200111104931\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test742d0189-9e41-4f1b-8ad3-31c05d34903b-20200111103247\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test742d0189-9e41-4f1b-8ad3-31c05d34903b-20200111103247\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test7836a97c-f56e-48d0-8b5d-61e79aeb3226-20200111071656\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7836a97c-f56e-48d0-8b5d-61e79aeb3226-20200111071656\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test78666b2e-25c8-4a48-931a-3131a0317d73-20191002194352\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test78666b2e-25c8-4a48-931a-3131a0317d73-20191002194352\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test79f13508-fcbd-47b9-988f-1c21ef5e7f2e-20191002015429\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test79f13508-fcbd-47b9-988f-1c21ef5e7f2e-20191002015429\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test79fb90ce-4691-4212-99a7-6e4069bd5984-20191007234256\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test79fb90ce-4691-4212-99a7-6e4069bd5984-20191007234256\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test7a8cf687-6a21-4181-ba98-902fee717bd3-20200104103216\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7a8cf687-6a21-4181-ba98-902fee717bd3-20200104103216\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test7aabf813-6644-483a-b9e0-ba6f8973ba1f-20191002232822\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7aabf813-6644-483a-b9e0-ba6f8973ba1f-20191002232822\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test7c96c10a-0c8f-4ab0-83fd-1ad66a362e33-20191229033458\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7c96c10a-0c8f-4ab0-83fd-1ad66a362e33-20191229033458\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test7e79b6ff-2559-44fe-b3ba-afaa68d63636-20200108112116\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7e79b6ff-2559-44fe-b3ba-afaa68d63636-20200108112116\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test7ea372f7-ea7e-4b9e-bbad-4f35c1567aa2-20200108052736\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7ea372f7-ea7e-4b9e-bbad-4f35c1567aa2-20200108052736\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test7fac3d04-98a5-4fc4-904e-9ea3b86eadc2-20200106050751\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7fac3d04-98a5-4fc4-904e-9ea3b86eadc2-20200106050751\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test7fe20dd6-9ed9-4126-bb1d-031c01ac4550-20200101114504\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7fe20dd6-9ed9-4126-bb1d-031c01ac4550-20200101114504\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test7ff974d9-c841-4249-b05b-bbf663cb4605-20200106084104\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7ff974d9-c841-4249-b05b-bbf663cb4605-20200106084104\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test815bd4d5-fc24-4a47-be20-063c4809902c-20200109050508\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test815bd4d5-fc24-4a47-be20-063c4809902c-20200109050508\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test817654d0-2109-4d95-9284-8c8a9d960d08-20200108053758\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test817654d0-2109-4d95-9284-8c8a9d960d08-20200108053758\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test821ca3b6-dd05-4e80-b3d8-74ba03b2609b-20191231151151\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test821ca3b6-dd05-4e80-b3d8-74ba03b2609b-20191231151151\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test8285dc3e-637d-4d46-9695-adc39cbe7d2f-20200108144457\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test8285dc3e-637d-4d46-9695-adc39cbe7d2f-20200108144457\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test828aae03-9239-4938-a303-c23c42311878-20200102083419\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test828aae03-9239-4938-a303-c23c42311878-20200102083419\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test84afd814-5098-49ab-af99-e50350b5898b-20200110211134\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test84afd814-5098-49ab-af99-e50350b5898b-20200110211134\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test85b08563-b15f-4202-a0bc-f2bc2df2c71a-20200107053335\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test85b08563-b15f-4202-a0bc-f2bc2df2c71a-20200107053335\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test88aac268-c087-4481-b78e-99b920784a33-20200101084853\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test88aac268-c087-4481-b78e-99b920784a33-20200101084853\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test88dbd442-a8cc-4874-81a0-d3192c61df62-20191001224544\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test88dbd442-a8cc-4874-81a0-d3192c61df62-20191001224544\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test894dfb75-a00f-4f0c-894c-cae1c9846ad3-20200105051803\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test894dfb75-a00f-4f0c-894c-cae1c9846ad3-20200105051803\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test8d09bf4d-ee63-4ab1-a986-a4b802418403-20200111051447\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test8d09bf4d-ee63-4ab1-a986-a4b802418403-20200111051447\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test8d4d652b-4f05-4e99-93dd-78b9a36b5c78-20191003203755\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test8d4d652b-4f05-4e99-93dd-78b9a36b5c78-20191003203755\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test8de64739-43d8-4f84-af65-fdb3d0885288-20200108053543\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test8de64739-43d8-4f84-af65-fdb3d0885288-20200108053543\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test8e324c65-a51d-4eeb-9ec8-d5f8662dc041-20191228165107\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test8e324c65-a51d-4eeb-9ec8-d5f8662dc041-20191228165107\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test8e564580-8e53-4300-85f1-bf7f31dd37ff-20200107013348\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test8e564580-8e53-4300-85f1-bf7f31dd37ff-20200107013348\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test8f458ca7-8898-4d58-b93d-bfb0c3da028c-20200109050310\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test8f458ca7-8898-4d58-b93d-bfb0c3da028c-20200109050310\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test901cd6ca-5565-4552-a3de-d204d01935c0-20200108083706\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test901cd6ca-5565-4552-a3de-d204d01935c0-20200108083706\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test907b39e5-4008-4b55-93a0-18e9697b9cf3-20200108053817\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test907b39e5-4008-4b55-93a0-18e9697b9cf3-20200108053817\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test90c2be7c-d7ec-4abf-9fad-fef90fc3ef4d-20191004022234\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test90c2be7c-d7ec-4abf-9fad-fef90fc3ef4d-20191004022234\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test922db678-6ee8-43d5-86ff-6a86e132d332-20200107085231\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test922db678-6ee8-43d5-86ff-6a86e132d332-20200107085231\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test93b88aec-5277-4b1b-910c-7008e972ce91-20200107013304\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test93b88aec-5277-4b1b-910c-7008e972ce91-20200107013304\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test95a9104b-6cba-42d8-82ff-cc37e5ac44db-20200108081723\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test95a9104b-6cba-42d8-82ff-cc37e5ac44db-20200108081723\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test96da1605-19e0-46eb-9ce0-53e840f5e2cb-20200101111729\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test96da1605-19e0-46eb-9ce0-53e840f5e2cb-20200101111729\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test996066b2-7d29-400f-929b-e343a21046f7-20191231151212\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test996066b2-7d29-400f-929b-e343a21046f7-20191231151212\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test99663fff-ed21-4a91-9687-1a6da2abb033-20200106084508\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test99663fff-ed21-4a91-9687-1a6da2abb033-20200106084508\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test9eb5efa5-c3c1-4c13-80a6-11f5eba67372-20200108144852\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test9eb5efa5-c3c1-4c13-80a6-11f5eba67372-20200108144852\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testa3791896-b1fc-491e-ba0d-aefcd8d9e52a-20200105083503\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testa3791896-b1fc-491e-ba0d-aefcd8d9e52a-20200105083503\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testa37ff709-a078-45a0-8187-41733df8e101-20200109050003\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testa37ff709-a078-45a0-8187-41733df8e101-20200109050003\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testa4c5fe4e-936e-4be1-a612-a331aff54a8c-20200111105055\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testa4c5fe4e-936e-4be1-a612-a331aff54a8c-20200111105055\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testa59bce1d-e32c-423d-a86e-945d4aeb98b4-20200107051821\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testa59bce1d-e32c-423d-a86e-945d4aeb98b4-20200107051821\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testa604c059-8279-4f4d-a354-eec27222a06c-20200111051514\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testa604c059-8279-4f4d-a354-eec27222a06c-20200111051514\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testa71fefb1-0d9c-4fb3-8d3d-5dcd12d72b77-20200103103221\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testa71fefb1-0d9c-4fb3-8d3d-5dcd12d72b77-20200103103221\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testa748013d-c5a6-44f9-88eb-43167207c742-20200111051402\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testa748013d-c5a6-44f9-88eb-43167207c742-20200111051402\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testaab67022-4f2b-420d-a06a-2c4045110cdf-20191229033144\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testaab67022-4f2b-420d-a06a-2c4045110cdf-20191229033144\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testacab9541-280f-4491-9f49-ac57653f0a07-20200105083839\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testacab9541-280f-4491-9f49-ac57653f0a07-20200105083839\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testad298437-0349-4cc7-88a9-d8aabcba9df1-20191002233431\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testad298437-0349-4cc7-88a9-d8aabcba9df1-20191002233431\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testadd68286-f9e0-4ab1-a526-d8f3cf0f054e-20200105084128\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testadd68286-f9e0-4ab1-a526-d8f3cf0f054e-20200105084128\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testade4c52b-18f5-4b67-8e93-945358ce4f7d-20191007234259\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testade4c52b-18f5-4b67-8e93-945358ce4f7d-20191007234259\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testae421c1d-0211-4ef2-b372-564ce8ad484a-20200110104035\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testae421c1d-0211-4ef2-b372-564ce8ad484a-20200110104035\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testafbbd8bf-aec5-48bf-8fea-73fa15ccc315-20191001224727\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testafbbd8bf-aec5-48bf-8fea-73fa15ccc315-20191001224727\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testb15148bf-78d2-42d4-ad08-b3ad8fb4b122-20200101084759\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testb15148bf-78d2-42d4-ad08-b3ad8fb4b122-20200101084759\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testb4237708-3688-40ea-85a2-275c05f4d100-20191228083519\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testb4237708-3688-40ea-85a2-275c05f4d100-20191228083519\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testb799a18f-be45-4c5c-8438-163ac2e1f1e7-20191004190529\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testb799a18f-be45-4c5c-8438-163ac2e1f1e7-20191004190529\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testb7cee88a-e5ac-4af4-99c8-7247020b00c3-20200105051201\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testb7cee88a-e5ac-4af4-99c8-7247020b00c3-20200105051201\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testb7df0d9a-27c0-4ca5-b692-08dd90387b98-20200111083443\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testb7df0d9a-27c0-4ca5-b692-08dd90387b98-20200111083443\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testbbf6bf32-4bd0-4381-b8f7-2658f585df4d-20191003203846\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testbbf6bf32-4bd0-4381-b8f7-2658f585df4d-20191003203846\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testbeea1376-166a-4b1a-8923-c907cc9737d9-20200107013336\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testbeea1376-166a-4b1a-8923-c907cc9737d9-20200107013336\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testbf9154e9-6166-48c2-86fe-1f331be606d7-20200107051823\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testbf9154e9-6166-48c2-86fe-1f331be606d7-20200107051823\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc0d7c3c5-23b8-489c-a5e0-ae87c681b696-20200101083539\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc0d7c3c5-23b8-489c-a5e0-ae87c681b696-20200101083539\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc193f31a-5186-4e93-84f6-0e4ab87b73c1-20200107052937\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc193f31a-5186-4e93-84f6-0e4ab87b73c1-20200107052937\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc1c7e8dc-fa8c-47d9-8305-de6d1451b939-20200101085248\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc1c7e8dc-fa8c-47d9-8305-de6d1451b939-20200101085248\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc1d0c917-e2ae-430c-a2ca-383fb0fda046-20191007235839\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc1d0c917-e2ae-430c-a2ca-383fb0fda046-20191007235839\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc23a3fbb-6e95-4c0d-94fc-c8ab14dddf1c-20191231151117\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc23a3fbb-6e95-4c0d-94fc-c8ab14dddf1c-20191231151117\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc2697630-6247-411a-94b3-c2974ad8cbee-20191007195417\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc2697630-6247-411a-94b3-c2974ad8cbee-20191007195417\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc466b80f-670f-4383-89b8-44e0d509fa20-20191002000516\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc466b80f-670f-4383-89b8-44e0d509fa20-20191002000516\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc5c8d9bd-75fa-4db3-9f34-5d7b7098584c-20191003203851\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc5c8d9bd-75fa-4db3-9f34-5d7b7098584c-20191003203851\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc8b6d14b-a5db-48e0-bfad-a2818d432bea-20200104083443\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc8b6d14b-a5db-48e0-bfad-a2818d432bea-20200104083443\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc933efa8-c553-4b93-884f-b7221d9ca789-20191228083750\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc933efa8-c553-4b93-884f-b7221d9ca789-20191228083750\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testcbe8ab80-46ef-49b1-a7bb-4e3d6e50e49f-20200104050811\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testcbe8ab80-46ef-49b1-a7bb-4e3d6e50e49f-20200104050811\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testccc0b5e6-9b0d-451a-8ac4-6f4af293b913-20200106092645\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testccc0b5e6-9b0d-451a-8ac4-6f4af293b913-20200106092645\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testcec64786-04b1-487c-80ec-050da646fb1c-20191005123412\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testcec64786-04b1-487c-80ec-050da646fb1c-20191005123412\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testd104a52f-eba2-401d-8e7f-a841c90f7712-20191228083553\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testd104a52f-eba2-401d-8e7f-a841c90f7712-20191228083553\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testd724cea4-0d3c-4539-b2ff-be08fb23a67e-20200107083714\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testd724cea4-0d3c-4539-b2ff-be08fb23a67e-20200107083714\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testd8e60bac-27ff-4fba-90b8-732c9c5ff91c-20191228083751\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testd8e60bac-27ff-4fba-90b8-732c9c5ff91c-20191228083751\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testd99db4a5-7683-4584-89ad-fefd711de284-20191004190210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testd99db4a5-7683-4584-89ad-fefd711de284-20191004190210\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testd9b4309a-67bc-4cd8-ac47-094cb20ca6aa-20200101090202\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testd9b4309a-67bc-4cd8-ac47-094cb20ca6aa-20200101090202\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testda3320e0-28f2-4146-a002-e06296362711-20191004190115\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testda3320e0-28f2-4146-a002-e06296362711-20191004190115\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testda714121-3240-4253-90c3-48c43f115c90-20200102083419\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testda714121-3240-4253-90c3-48c43f115c90-20200102083419\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testdb357558-60b4-4ee3-9ec3-ba22c5d827fb-20191004020617\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testdb357558-60b4-4ee3-9ec3-ba22c5d827fb-20191004020617\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testdc7230e9-df6d-4edd-a57c-ef7e0432c463-20191002011345\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testdc7230e9-df6d-4edd-a57c-ef7e0432c463-20191002011345\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testdccb59de-436f-4935-bed6-2e677dcaf36a-20200109111802\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testdccb59de-436f-4935-bed6-2e677dcaf36a-20200109111802\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testde985b23-9333-4f6e-a5e8-82025a38b2af-20200102083510\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testde985b23-9333-4f6e-a5e8-82025a38b2af-20200102083510\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Teste271da3e-cbcb-4ee7-8770-f297f414451f-20191003015540\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Teste271da3e-cbcb-4ee7-8770-f297f414451f-20191003015540\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Teste4070edd-aec0-455d-8a79-aecdb7170b6d-20191007234642\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Teste4070edd-aec0-455d-8a79-aecdb7170b6d-20191007234642\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Teste42f351a-4da0-4f0d-93e9-ef1d98e06659-20200108083633\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Teste42f351a-4da0-4f0d-93e9-ef1d98e06659-20200108083633\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Teste66ca23c-f4bf-4eb3-8418-139364d19e7d-20200107062643\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Teste66ca23c-f4bf-4eb3-8418-139364d19e7d-20200107062643\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Teste78b1ab2-1380-48ab-9923-0276cdb7198b-20191001224742\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Teste78b1ab2-1380-48ab-9923-0276cdb7198b-20191001224742\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Teste8607e14-b4f8-472a-bd5b-893b8d9612e6-20200112045941\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Teste8607e14-b4f8-472a-bd5b-893b8d9612e6-20200112045941\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Teste980b80e-3add-42c0-bc98-a84020b2d128-20200108101640\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Teste980b80e-3add-42c0-bc98-a84020b2d128-20200108101640\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Tested79dba9-2d38-4ea9-a01c-56e94b30ca7a-20191007195447\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Tested79dba9-2d38-4ea9-a01c-56e94b30ca7a-20191007195447\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testee9dcf5f-f7c4-4192-a8f4-28e9bc7d0f7c-20191001225005\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testee9dcf5f-f7c4-4192-a8f4-28e9bc7d0f7c-20191001225005\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testefbb340a-b68b-4200-872b-d05e7d29f92d-20191007195432\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testefbb340a-b68b-4200-872b-d05e7d29f92d-20191007195432\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testf1fc0559-6740-48dd-9501-2b933c731d52-20200103083458\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testf1fc0559-6740-48dd-9501-2b933c731d52-20200103083458\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testf41dfc97-bb51-4fba-86ca-a6f2695c415a-20200107050834\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testf41dfc97-bb51-4fba-86ca-a6f2695c415a-20200107050834\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testf5784447-83ed-4c00-8764-ea0f932aafa2-20200106085748\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testf5784447-83ed-4c00-8764-ea0f932aafa2-20200106085748\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testf6128ef6-c13c-420e-8088-0710888ce88b-20200109050003\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testf6128ef6-c13c-420e-8088-0710888ce88b-20200109050003\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testf863ab2c-ada9-4646-84c7-1f83a82375d7-20191229033226\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testf863ab2c-ada9-4646-84c7-1f83a82375d7-20191229033226\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testfac552a7-418f-4baa-8f51-d199ceff5c68-20200103050817\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testfac552a7-418f-4baa-8f51-d199ceff5c68-20200103050817\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testfb7be054-5c15-494f-822c-b64f9a36e2f3-20200105051753\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testfb7be054-5c15-494f-822c-b64f9a36e2f3-20200105051753\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testfc5c7585-6c9a-4aa4-a7c4-1223a94e00c7-20200104083552\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testfc5c7585-6c9a-4aa4-a7c4-1223a94e00c7-20200104083552\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.FileServer.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.FileServer.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Geneva\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Geneva\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.KeyVault\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.KeyVault\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.KeyVault.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.KeyVault.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.LabServices\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.LabServices\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.LabServices.test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.LabServices.test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.Agent\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.Agent\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.Dev\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.Dev\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.Dev.INT\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.Dev.INT\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.Dev.SCALE\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.Dev.SCALE\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.Dev.TEST\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.Dev.TEST\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.GuestHealth\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.GuestHealth\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.DEV\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.DEV\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.INT\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.INT\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.SCALE\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.SCALE\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.TEST\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.TEST\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.INT.Dev\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.INT.Dev\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.SCALE.Dev\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.SCALE.Dev\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.TEST.Dev\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.TEST.Dev\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.WorkloadInsights.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.WorkloadInsights.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.WorkloadInsightsTest.newnamespace\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.WorkloadInsightsTest.newnamespace\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.Workloads\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.Workloads\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.Workloads.Dev\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.Workloads.Dev\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitoring.DependencyAgent\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitoring.DependencyAgent\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitoring.DependencyAgent.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitoring.DependencyAgent.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Networking.DNS\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Networking.DNS\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Networking.SDN\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Networking.SDN\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.NetworkWatcher\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.NetworkWatcher\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.NetworkWatcher.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.NetworkWatcher.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.OpenSSH\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.OpenSSH\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Performance.Diagnostics\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Performance.Diagnostics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Performance.Diagnostics.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Performance.Diagnostics.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.RecoveryServices\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.RecoveryServices.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices.SiteRecovery\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.RecoveryServices.SiteRecovery\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices.SiteRecovery2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.RecoveryServices.SiteRecovery2\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices.WorkloadBackup\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.RecoveryServices.WorkloadBackup\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices.WorkloadBackup.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.RecoveryServices.WorkloadBackup.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.AntimalwareSignature\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.AntimalwareSignature\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.AntimalwareSignature.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.AntimalwareSignature.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.Dsms\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.Dsms\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.Dsms.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.Dsms.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.LinuxAttestation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.LinuxAttestation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.LinuxTestAttestation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.LinuxTestAttestation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.Monitoring\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.Monitoring\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.Monitoring.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.Monitoring.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.Monitoring.Testing\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.Monitoring.Testing\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.TestWindowsAttestation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.TestWindowsAttestation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.WindowsAttestation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.WindowsAttestation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.WinTestAttestation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.WinTestAttestation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Sentinel.DnsExtension.Dev\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Sentinel.DnsExtension.Dev\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.ServiceFabric.MC\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.ServiceFabric.MC\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.ServiceFabric.MC.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.ServiceFabric.MC.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.SiteRecovery.Stage\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.SiteRecovery.Stage\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.SiteRecovery.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.SiteRecovery.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.SiteRecovery2.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.SiteRecovery2.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Test.Identity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Test.Identity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WindowsFabric.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WindowsFabric.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.ReleasePipeTest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.ReleasePipeTest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.ReleasePipeTest.INT\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.ReleasePipeTest.INT\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.ReleasePipeTest.TEST\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.ReleasePipeTest.TEST\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test2\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test3\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test3\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test4\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test4\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test5\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test5\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test5.INT\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test5.INT\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test5.TEST\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test5.TEST\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.VincentTest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.VincentTest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.VincentTest2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.VincentTest2\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.VincentTest3\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.VincentTest3\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.VincentTest4\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.VincentTest4\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.TestTest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.TestTest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.TestTest.INT\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.TestTest.INT\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.TestTest.TEST\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.TestTest.TEST\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Windows.ReleasePipeTest.INT\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Windows.ReleasePipeTest.INT\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Windows.ReleasePipeTest.TEST\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Windows.ReleasePipeTest.TEST\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoring\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoring.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoringTest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoringTest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureData\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureData\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureData.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureData.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.Canary\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights.Canary\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.Corp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights.Corp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.Linux.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights.Linux.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.LinuxTest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights.LinuxTest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.Meya0206\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights.Meya0206\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.MeyaCorp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights.MeyaCorp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.Testing\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights.Testing\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureSecurity.JITAccess\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureSecurity.JITAccess\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.CloudBackup.Workload.Extension\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.CloudBackup.Workload.Extension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.CloudBackup.Workload.Extension.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.CloudBackup.Workload.Extension.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Compute\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Compute.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Compute.TestSar\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute.TestSar\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.CPlat.Core\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.CPlat.Core\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.CPlat.Core.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.CPlat.Core.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Dcsswe.Extensions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Dcsswe.Extensions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.EnterpriseCloud.Monitoring\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.EnterpriseCloud.Monitoring.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.EnterpriseCloud.Monitoring.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Golive.Extensions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Golive.Extensions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.GuestConfig.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.GuestConfig.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.GuestConfiguration\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.GuestConfiguration\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.GuestConfiguration.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.GuestConfiguration.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.GuestConfiguration.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.GuestConfiguration.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.HpcCompute\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.HpcCompute\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.HpcCompute.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.HpcCompute.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.HpcPack\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.HpcPack\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Interceptor\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Interceptor\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.M365\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.M365\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.M365SecurityConfiguration.Kevlar.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.M365SecurityConfiguration.Kevlar.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.ManagedIdentity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.ManagedIdentity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.ManagedServices\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.ManagedServices\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.ManagedServices.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.ManagedServices.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.MonitoringAgent.Extension\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.MonitoringAgent.Extension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Network\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Network\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.OSTCExtensions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.OSTCExtensions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.OSTCExtensions.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.OSTCExtensions.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.OSTCExtensions.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.OSTCExtensions.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.OSTCExtensions.Testing\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.OSTCExtensions.Testing\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Powershell\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Powershell\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Powershell.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Powershell.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Powershell.Test01\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Powershell.Test01\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.SecurityManagement.Kevlar\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.SecurityManagement.Kevlar\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Sentinel.AzureMonitorAgentExtensions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Sentinel.AzureMonitorAgentExtensions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.SoftwareUpdateManagement\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.SoftwareUpdateManagement\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.SoftwareUpdateManagement.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.SoftwareUpdateManagement.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.SqlServer.Managability.IaaS.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.SqlServer.Managability.IaaS.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.SqlServer.Management\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.SqlServer.Management\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.SqlServer.Management.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.SqlServer.Management.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.SystemCenter\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.SystemCenter\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.SystemCenter.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.SystemCenter.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Test.Azure.Workloads\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Test.Azure.Workloads\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.TestSqlServer.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.TestSqlServer.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.ETWTraceListenerService\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.Azure.ETWTraceListenerService\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.RemoteDebug\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.Azure.RemoteDebug\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.RemoteDebug.Json\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.Azure.RemoteDebug.Json\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.ServiceProfiler\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.ServiceProfiler\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.Services\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.Services\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.WindowsAzure.DevTest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.WindowsAzure.DevTest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.WindowsAzure.DevTest.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.WindowsAzure.DevTest.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.WindowsAzure.RemoteDebug\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.WindowsAzure.RemoteDebug\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.WindowsAzure.Test.RemoteDebug\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.WindowsAzure.Test.RemoteDebug\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Windows.Azure.Extensions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Windows.Azure.Extensions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Windows.AzureRemoteApp.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Windows.AzureRemoteApp.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Windows.RemoteDesktop\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Windows.RemoteDesktop\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.WindowsAdminCenter\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.WindowsAdminCenter\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.WindowsAdminCenter.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.WindowsAdminCenter.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.WindowsAzure.Compute\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.WindowsAzure.Compute\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.WindowsAzure.Compute.test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.WindowsAzure.Compute.test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.WVD\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.WVD\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoftagciuk\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoftagciuk\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoftazurecituswarp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoftazurecituswarp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftAzureSiteRecovery\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftAzureSiteRecovery\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftBizTalkServer\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftBizTalkServer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftCBLMariner\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftCBLMariner\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoftcmotest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoftcmotest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoftcorporation1602274591143\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoftcorporation1602274591143\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoftcorporation1620407702632\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoftcorporation1620407702632\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftDynamicsAX\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftDynamicsAX\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftDynamicsGP\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftDynamicsGP\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftDynamicsNAV\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftDynamicsNAV\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoftfarmbeats\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoftfarmbeats\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftHybridCloudStorage\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftHybridCloudStorage\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftOSTC\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftOSTC\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftPowerBI\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftPowerBI\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftRServer\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftRServer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftSharePoint\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftSharePoint\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftSQLServer\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftSQLServer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftTestLinuxPPS\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftTestLinuxPPS\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftVisualStudio\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftVisualStudio\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftWindowsDesktop\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsDesktop\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftWindowsServer\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsServer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftWindowsServerHPCPack\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsServerHPCPack\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft_iot_edge\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft_iot_edge\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft_javaeeonazure_test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft_javaeeonazure_test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microstrategy\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microstrategy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"midasolutions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/midasolutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"middleware\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/middleware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"midfin\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/midfin\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"midvision\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/midvision\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mihupcommunicationspvtltd1599046998010\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mihupcommunicationspvtltd1599046998010\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mindcti\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mindcti\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"minio\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/minio\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"miraclelinux\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/miraclelinux\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"miracl_linux\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/miracl_linux\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"miri-infotech-pvt-ltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/miri-infotech-pvt-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mistio1601460379393\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mistio1601460379393\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mobilab\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mobilab\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"modern-systems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/modern-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"modexblockchaindatabase\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/modexblockchaindatabase\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"monetdbsolutions1611751313758\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/monetdbsolutions1611751313758\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"monitorapp1579029852605\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/monitorapp1579029852605\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"monitorcomputersystemsltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/monitorcomputersystemsltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"moogsoft\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/moogsoft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"morpheus-data\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/morpheus-data\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"moviemasher\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/moviemasher\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mriisoftllc1579457820427\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mriisoftllc1579457820427\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"msopentech\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/msopentech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mtnfog\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mtnfog\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"multisoft-ab\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/multisoft-ab\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mvp-systems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mvp-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mwg_azure\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mwg_azure\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mxhero\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mxhero\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"my-com\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/my-com\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"myarchinc1614657280935\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/myarchinc1614657280935\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"narrativescience\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/narrativescience\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nasuni\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nasuni\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nasunicorporation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nasunicorporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"navicloudrsoftwarepteltd1601967280369\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/navicloudrsoftwarepteltd1601967280369\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ncache\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ncache\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ncbi\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ncbi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ncomputingglobalinc1604353053068\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ncomputingglobalinc1604353053068\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ndl\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ndl\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nebbiolo-technologies-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nebbiolo-technologies-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nec-technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nec-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nefelinetworks1591201080882\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nefelinetworks1591201080882\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"neo4j\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/neo4j\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"neos\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/neos\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"neowaybusinesssolutions-4956350\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/neowaybusinesssolutions-4956350\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netapp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netapp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netatwork\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netatwork\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netfoundryinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netfoundryinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netgate\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netgate\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netikus-net-ltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netikus-net-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netiq\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netiq\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netka\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netka\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netmail\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netmail\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netscout\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netscout\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netspi\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netspi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netsweeper\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netsweeper\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"networksexchangetechnologyltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/networksexchangetechnologyltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netwrix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netwrix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netx\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netx\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"neusoft-neteye\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/neusoft-neteye\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"newnetcommunicationtechnologies1589991852134\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/newnetcommunicationtechnologies1589991852134\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"NewRelic.Infrastructure.Extensions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/NewRelic.Infrastructure.Extensions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"newtglobalconsultingllc1581492268566\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/newtglobalconsultingllc1581492268566\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nextronic-5290868\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nextronic-5290868\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nginxinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nginxinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nice-it-management-solutions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nice-it-management-solutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nicepeopleatwork\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nicepeopleatwork\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nilespartnersinc1617691698386\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nilespartnersinc1617691698386\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"niolabs-5229713\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/niolabs-5229713\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nirvatosoftwarepvtltd1601368706606\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nirvatosoftwarepvtltd1601368706606\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nodejsapi\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nodejsapi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"noianetworklimited1584098036197\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/noianetworklimited1584098036197\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nokiaofamericacorporation1591716055441\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nokiaofamericacorporation1591716055441\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"noobaa\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/noobaa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"norcominformationtechnologygmbhcokgaa\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/norcominformationtechnologygmbhcokgaa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"noricumcloudsolutions1600524477681\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/noricumcloudsolutions1600524477681\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"norsync\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/norsync\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"northbridge-secure\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/northbridge-secure\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nozominetworks1582208017986\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nozominetworks1582208017986\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nri\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nri\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ntegralinc1586961136942\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ntegralinc1586961136942\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ntt-data-intellilink-corporation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ntt-data-intellilink-corporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nttdata\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nttdata\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nttltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nttltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nuco-networks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nuco-networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"numbersbelieve\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/numbersbelieve\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"numtrallcpublisher\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/numtrallcpublisher\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nuxeo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nuxeo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nvidia\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nvidia\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"o2mc-real-time-data-platform\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/o2mc-real-time-data-platform\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"objectivity-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/objectivity-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"objectivity1595351622261\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/objectivity1595351622261\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"oceanblue-cloud\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/oceanblue-cloud\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"OctopusDeploy.Tentacle\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/OctopusDeploy.Tentacle\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"odix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/odix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"odysseuscomputationalsolutions1630242118741\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/odysseuscomputationalsolutions1630242118741\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"odysseyconsultantsltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/odysseyconsultantsltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"officeatwork-ag\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/officeatwork-ag\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"omega-software\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/omega-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"onapsis\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/onapsis\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"oncore_cloud_services-4944214\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/oncore_cloud_services-4944214\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"onexgroup\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/onexgroup\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"onspecta\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/onspecta\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ontology\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ontology\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"onyx-point-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/onyx-point-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"op5\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/op5\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"open-connect-systems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/open-connect-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"opencell\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/opencell\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"openlinkswcom-pago\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/openlinkswcom-pago\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"OpenLogic\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/OpenLogic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"openrefactoryinc1620140917523\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/openrefactoryinc1620140917523\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"openshotstudiosllc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/openshotstudiosllc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"opentext\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/opentext\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"openvpn\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/openvpn\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"opslogix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/opslogix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"opswatinc1619007967290\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/opswatinc1619007967290\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"optimitiveslu1618320281443\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/optimitiveslu1618320281443\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"option3\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/option3\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Oracle\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Oracle\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"oraylis\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/oraylis\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"oraylisbi\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/oraylisbi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"orbs-network\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/orbs-network\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"oriana\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/oriana\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"orientdb\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/orientdb\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"oroinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/oroinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"osirium-ltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/osirium-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"osisoft\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/osisoft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"osnexus\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/osnexus\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"outpost24\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/outpost24\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"outsystems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/outsystems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ovaledge1618392232783\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ovaledge1618392232783\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pachyderminc1585170006545\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pachyderminc1585170006545\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pacteratechnologiesinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pacteratechnologiesinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"paladionnetworkspvtltd1606120508449\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/paladionnetworkspvtltd1606120508449\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"paloaltonetworks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/paloaltonetworks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"panopta\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/panopta\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"panorama-necto\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/panorama-necto\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"panzura-file-system\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/panzura-file-system\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"parabole\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/parabole\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"paralaxiomtechnologiesprivatelimited1596433357886\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/paralaxiomtechnologiesprivatelimited1596433357886\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"parallels\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/parallels\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"parasoft\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/parasoft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"parkersoftwarelimited1609786657569\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/parkersoftwarelimited1609786657569\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"parsec-for-teams\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/parsec-for-teams\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pasifikciptamandiri\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pasifikciptamandiri\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"passlogy\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/passlogy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"paxata\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/paxata\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pcman\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pcman\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"peer-software-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/peer-software-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"penta-security-systems-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/penta-security-systems-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"percona\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/percona\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"perforce\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/perforce\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"periscope-tech-4791746\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/periscope-tech-4791746\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"piolinkinc1582849368309\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/piolinkinc1582849368309\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pivotal\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pivotal\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pixitmedia1591611150480\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pixitmedia1591611150480\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"plesk\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/plesk\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pmsoftwareinternational1603102514882\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pmsoftwareinternational1603102514882\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pnop\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pnop\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"polarityioinc1628691850891\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/polarityioinc1628691850891\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"portalarchitects\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/portalarchitects\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"portsysinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/portsysinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"postgres-pro\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/postgres-pro\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"powerbireach\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/powerbireach\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"prakshepprivatelimited1619949827900\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/prakshepprivatelimited1619949827900\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"prestashop\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/prestashop\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"prestige_informatique-1090178\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/prestige_informatique-1090178\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"prime-strategy\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/prime-strategy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"primekey\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/primekey\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"primestrategynewyorkinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/primestrategynewyorkinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pro-vision\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pro-vision\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"process-one\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/process-one\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"processgold\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/processgold\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"procomputers\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/procomputers\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"procomputerssrl1594239153814\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/procomputerssrl1594239153814\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"profecia\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/profecia\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Profiler.AgentOrchestrationRefactor.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Profiler.AgentOrchestrationRefactor.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Profiler.Master.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Profiler.Master.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"profisee\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/profisee\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"progelspa\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/progelspa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"progresssoftwarecorporation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/progresssoftwarecorporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"proliongmbh1628175060372\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/proliongmbh1628175060372\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"protegrityusainc1627404648458\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/protegrityusainc1627404648458\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"protiviti\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/protiviti\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"proventeq\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/proventeq\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ptc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ptc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ptsecurity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ptsecurity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pulse-secure\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pulse-secure\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pulsesecuretechnologies1638179500151\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pulsesecuretechnologies1638179500151\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"puppet\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/puppet\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"puppeteersoy1601024480557\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/puppeteersoy1601024480557\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"PuppetLabs\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/PuppetLabs\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"PuppetLabs.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/PuppetLabs.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"purestorageinc1578960262525\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/purestorageinc1578960262525\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pydio\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pydio\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pyramidanalytics\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pyramidanalytics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"qlik\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/qlik\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"qnapsystemsinc1601352084032\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/qnapsystemsinc1601352084032\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"qore-technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/qore-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"qs-solutions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/qs-solutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Qualys\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Qualys\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Qualys.LinuxAgent.GrayLabel\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Qualys.LinuxAgent.GrayLabel\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Qualys.WindowsAgent.GrayLabel\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Qualys.WindowsAgent.GrayLabel\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"qualysguard\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/qualysguard\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"quasardb\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/quasardb\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"qubole-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/qubole-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"quest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/quest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"racknap\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/racknap\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rackwareinc1619403669255\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rackwareinc1619403669255\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"radiant-logic\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/radiant-logic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"radware\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/radware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"raincode\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/raincode\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rancher\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rancher\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rapid7\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rapid7\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Rapid7.InsightPlatform\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Rapid7.InsightPlatform\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rapidminer\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rapidminer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"raynetgmbh\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/raynetgmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"readymind\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/readymind\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"realm\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/realm\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"reblaze\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/reblaze\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"RedHat\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/RedHat\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"redhat-rhel\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/redhat-rhel\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"redpoint-global\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/redpoint-global\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"refactr\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/refactr\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"refinitiv\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/refinitiv\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"refinitiv-4807503\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/refinitiv-4807503\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"relevance-lab\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/relevance-lab\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"remotelearner\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/remotelearner\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"res\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/res\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"resco\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/resco\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"resemblesystems1582780358300\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/resemblesystems1582780358300\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"responder-corp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/responder-corp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"revolution-analytics\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/revolution-analytics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rhcsolutions1586957910818\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rhcsolutions1586957910818\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ribboncommunications\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ribboncommunications\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"RightScaleLinux\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/RightScaleLinux\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"RightScaleWindowsServer\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/RightScaleWindowsServer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rimo3\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rimo3\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ringsoftwareresearchanddevelopmentinc1578946072257\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ringsoftwareresearchanddevelopmentinc1578946072257\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"riverbed\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/riverbed\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"RiverbedTechnology\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/RiverbedTechnology\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rmgtechnologiesinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rmgtechnologiesinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rocketml\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rocketml\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rocketsoftware\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rocketsoftware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rohdeschwarzcybersecuritygmbh\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rohdeschwarzcybersecuritygmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rohdeschwarzcybersecuritysas\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rohdeschwarzcybersecuritysas\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"roktech\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/roktech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rsa-security-llc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rsa-security-llc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rsk-labs\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rsk-labs\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rstudio-5237862\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rstudio-5237862\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rtts\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rtts\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rubrik-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rubrik-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"runecastsolutionslimited1614186396822\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/runecastsolutionslimited1614186396822\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"s2ix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/s2ix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"saama\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/saama\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"saasame-limited\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/saasame-limited\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"safesoftwareinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/safesoftwareinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"safeticatechnologiessro\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/safeticatechnologiessro\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"safetica_technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/safetica_technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"safetoopen1585013318137\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/safetoopen1585013318137\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"saltsecurity1583264186232\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/saltsecurity1583264186232\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"saltsecurity1583264669848\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/saltsecurity1583264669848\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"saltstack\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/saltstack\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"samsung-sds\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/samsung-sds\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"samsungelectronics1632860607983\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/samsungelectronics1632860607983\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"samsungsds-cello\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/samsungsds-cello\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"samsungsds_sdbe\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/samsungsds_sdbe\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sandhatatechnologieslimited1615753438737\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sandhatatechnologieslimited1615753438737\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sap\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sap\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sapphiretechnologieslimited1611758579346\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sapphiretechnologieslimited1611758579346\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sas-institute-560503\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sas-institute-560503\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"scaidata\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/scaidata\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"scalearc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/scalearc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"scalegrid\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/scalegrid\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"scality\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/scality\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"schrockeninc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/schrockeninc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sci\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sci\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sciencelogicinc1622565452194\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sciencelogicinc1622565452194\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"scientiamobile\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/scientiamobile\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"scontainug1595751515785\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/scontainug1595751515785\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"scubaanalytics\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/scubaanalytics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"scylladb1631195365807\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/scylladb1631195365807\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"seaqserviciossas1579029207572\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/seaqserviciossas1579029207572\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"searchbloxsoftwareinc1594309037050\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/searchbloxsoftwareinc1594309037050\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"secureworks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/secureworks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"securityonionsolutions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/securityonionsolutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"securityonionsolutionsllc1624649205155\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/securityonionsolutionsllc1624649205155\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"securosis\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/securosis\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"seequentltd1585781751395\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/seequentltd1585781751395\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"semarchy\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/semarchy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"semperis\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/semperis\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"senhasegura\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/senhasegura\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"SentinelOne.LinuxExtension\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/SentinelOne.LinuxExtension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"SentinelOne.WindowsExtension\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/SentinelOne.WindowsExtension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"SentinelOne.WindowsExtension.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/SentinelOne.WindowsExtension.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sentriumsl\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sentriumsl\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sentryone\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sentryone\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sepiosystems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sepiosystems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"seppmailag\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/seppmailag\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"seraumo1620002807288\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/seraumo1620002807288\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"service-control-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/service-control-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sesamesoftwareinc1622125191447\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sesamesoftwareinc1622125191447\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"shadow-soft\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/shadow-soft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"shareshiftneeraj.test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/shareshiftneeraj.test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sightapps\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sightapps\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"signal-sciences\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/signal-sciences\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"silk\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/silk\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"silver-peak-systems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/silver-peak-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"simmachinesinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/simmachinesinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"simontelephonics\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/simontelephonics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"simpledatalabsinc1635791235920\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/simpledatalabsinc1635791235920\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"simplifierag\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/simplifierag\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"simpligov\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/simpligov\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sinefa\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sinefa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sinequa\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sinequa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sinequa1588262295885\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sinequa1588262295885\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"singapore-telecommunications-limited\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/singapore-telecommunications-limited\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sios_datakeeper\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sios_datakeeper\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"siportalinc1581539156321\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/siportalinc1581539156321\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sisenseltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sisenseltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Site24x7\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Site24x7\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sktelecom\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sktelecom\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"skyarc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/skyarc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"skyboxsecurity1585187406404\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/skyboxsecurity1585187406404\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"skylarkcloud\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/skylarkcloud\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"smartbearsoftware\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/smartbearsoftware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"smartmessage-autoflow\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/smartmessage-autoflow\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"snaplogic\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/snaplogic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"snapt-adc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/snapt-adc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"snips\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/snips\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"soasta\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/soasta\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"softnas\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/softnas\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"softwarecentralas1642687699196\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/softwarecentralas1642687699196\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"softwarehut\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/softwarehut\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"softwebsolutions-4518310\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/softwebsolutions-4518310\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"soha\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/soha\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"solanolabs\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/solanolabs\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"solar-security\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/solar-security\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"solarwinds\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/solarwinds\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"solvedevops1643693563360\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/solvedevops1643693563360\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sonicwall-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sonicwall-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sophos\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sophos\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sourcegearllc1616101262784\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sourcegearllc1616101262784\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"south-river-technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/south-river-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"southrivertech1586314123192\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/southrivertech1586314123192\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"spacecurve\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/spacecurve\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"spaceliftinc1625499025476\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/spaceliftinc1625499025476\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"spagobi\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/spagobi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sparklinglogic\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sparklinglogic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"spectralcorelimited1619779004178\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/spectralcorelimited1619779004178\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"spektra\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/spektra\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sphere3d\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sphere3d\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"spideroakinc1588278690933\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/spideroakinc1588278690933\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"spirentcommunications1594084187199\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/spirentcommunications1594084187199\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"splunk\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/splunk\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sproutenetworks1593456311717\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sproutenetworks1593456311717\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sqlstream\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sqlstream\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"squadratechnologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/squadratechnologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"squaredup\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/squaredup\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"src-solution\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/src-solution\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stackato-platform-as-a-service\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stackato-platform-as-a-service\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Stackify.LinuxAgent.Extension\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Stackify.LinuxAgent.Extension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stackstorm\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stackstorm\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"startekfingerprintmatch\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/startekfingerprintmatch\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"startisolucoesemtecnologialtda1635263523201\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/startisolucoesemtecnologialtda1635263523201\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"starwind\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/starwind\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"StatusMonitor2.Diagnostics.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/StatusMonitor2.Diagnostics.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"StatusReport.Diagnostics.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/StatusReport.Diagnostics.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stealthbits\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stealthbits\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"steelhive\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/steelhive\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stonebondtechnologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stonebondtechnologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stonefly\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stonefly\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"storage_made_easy\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/storage_made_easy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stormshield\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stormshield\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"storone1594045543980\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/storone1594045543980\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"storreduce\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/storreduce\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"storwarespzoo1611743234900\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/storwarespzoo1611743234900\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"strangebee1595948424730\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/strangebee1595948424730\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"strataidentity1608323708170\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/strataidentity1608323708170\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stratis-group-ltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stratis-group-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stratodesk1611152769936\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stratodesk1611152769936\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stratumn\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stratumn\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"streamsets\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/streamsets\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"striim\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/striim\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stromasys\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stromasys\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"strongboxitllc1594816423884\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/strongboxitllc1594816423884\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"su\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/su\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"subscription.test.krsh\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/subscription.test.krsh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sumologic\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sumologic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sunatogmbh\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sunatogmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sunday\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sunday\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"SUSE\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/SUSE\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"swoopanalytics\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/swoopanalytics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sycom-technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sycom-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sycompatechnologycompanyinc1588192103892\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sycompatechnologycompanyinc1588192103892\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.CloudWorkloadProtection\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.CloudWorkloadProtection\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.CloudWorkloadProtection.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.CloudWorkloadProtection.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.CloudWorkloadProtection.TestOnStage\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.CloudWorkloadProtection.TestOnStage\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.QA\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.QA\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.staging\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.staging\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.test.ru2.latest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.test.ru2.latest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.test.ru2final\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.test.ru2final\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.test.ru2latest1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.test.ru2latest1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.test.ru4mp1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.test.ru4mp1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.test.ru4mp1.latest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.test.ru4mp1.latest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.test.ru4mp1final\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.test.ru4mp1final\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"symanteccorporation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/symanteccorporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"symantectest1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/symantectest1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"synack-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/synack-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"syncfusion\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/syncfusion\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"syncfusionbigdataplatfor\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/syncfusionbigdataplatfor\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"synechron-technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/synechron-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"synergixinc1585256339250\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/synergixinc1585256339250\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"synnexcorp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/synnexcorp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"syscomcomputerengineeringco1583913200141\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/syscomcomputerengineeringco1583913200141\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"syte\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/syte\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tableau\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tableau\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tactic\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tactic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"talari-networks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/talari-networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"talena-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/talena-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"talend\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/talend\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"talon\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/talon\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tamrinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tamrinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"targit\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/targit\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tata_communications\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tata_communications\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tavanttechnologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tavanttechnologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tavendo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tavendo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"te-systems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/te-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"techdivision\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/techdivision\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"techlatest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/techlatest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"technicheltd1606969724100\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/technicheltd1606969724100\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tecknolab\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tecknolab\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"telepat\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/telepat\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"teloscorporation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/teloscorporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tempered-networks-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tempered-networks-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tenable\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tenable\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tensormakecorpdbaoneclickai1608247756082\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tensormakecorpdbaoneclickai1608247756082\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"teradata\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/teradata\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Teradici\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Teradici\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"teramindinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/teramindinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.Gemalto.SafeNet.ProtectV\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.Gemalto.SafeNet.ProtectV\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.Gemalto.SafeNet.ProtectV.Azure\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.Gemalto.SafeNet.ProtectV.Azure\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.HP.AppDefender\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.HP.AppDefender\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.Microsoft.VisualStudio.Services\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.Microsoft.VisualStudio.Services\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.NJHP.AppDefender\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.NJHP.AppDefender\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.SqlServer.Managability\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.SqlServer.Managability\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.SqlServer.Management\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.SqlServer.Management\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.SqlServer.Management.corext\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.SqlServer.Management.corext\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test1.NJHP.AppDefender\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test1.NJHP.AppDefender\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test3.Microsoft.VisualStudio.Services\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test3.Microsoft.VisualStudio.Services\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"testable1603721901088\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/testable1603721901088\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"testpro\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/testpro\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"test_test_mix3pptest0011614206850774\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/test_test_mix3pptest0011614206850774\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"test_test_mneela1628617140187\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/test_test_mneela1628617140187\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"test_test_pmc2pc1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/test_test_pmc2pc1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thales-vormetric\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thales-vormetric\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thalesdiscplusainc1596561677238\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thalesdiscplusainc1596561677238\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thedatavaluefactoryltd1589348815922\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thedatavaluefactoryltd1589348815922\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thefreebsdfoundation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thefreebsdfoundation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thehdfgroup1616725197741\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thehdfgroup1616725197741\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"theumag1596442827072\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/theumag1596442827072\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"things-board\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/things-board\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thingscareinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thingscareinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thinprintgmbh\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thinprintgmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thorntechnologiesllc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thorntechnologiesllc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thoughtspot-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thoughtspot-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"threatintelligenceptyltd1586824172898\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/threatintelligenceptyltd1586824172898\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tibco-software\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tibco-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tidal-migrations\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tidal-migrations\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tidalmediainc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tidalmediainc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tig\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tig\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tiger-technology\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tiger-technology\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tigergraph\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tigergraph\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"timextender\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/timextender\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tmaxsoft\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tmaxsoft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tmaxsoft1608612658335\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tmaxsoft1608612658335\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tomsawyersoftwarecorp1613579206342\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tomsawyersoftwarecorp1613579206342\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"topicus\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/topicus\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"torusware\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/torusware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"totemo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/totemo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"townsend-security\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/townsend-security\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"transcendinformationinc1609918445926\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/transcendinformationinc1609918445926\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"transientxinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/transientxinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"transvault\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/transvault\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"trendmicro\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/trendmicro\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"TrendMicro.DeepSecurity.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/TrendMicro.DeepSecurity.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"TrendMicro.PortalProtect\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/TrendMicro.PortalProtect\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tresorit\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tresorit\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"trifacta\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/trifacta\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tripleblindinc1615730179432\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tripleblindinc1615730179432\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tripwire-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tripwire-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"truata1612259728221\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/truata1612259728221\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"truestack\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/truestack\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tryonsolutionsinc1596650621083\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tryonsolutionsinc1596650621083\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tsa-public-service\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tsa-public-service\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tunnelbiz\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tunnelbiz\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"turbonet\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/turbonet\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"turbonet1581982683964\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/turbonet1581982683964\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"twistlock\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/twistlock\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"typesafe\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/typesafe\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ubeeko\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ubeeko\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ubercloud\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ubercloud\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"uipath-5054924\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/uipath-5054924\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ulex\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ulex\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"unifi-software\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/unifi-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"unifiedstreaming1598872291606\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/unifiedstreaming1598872291606\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"uniprint-net\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/uniprint-net\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"unitrends\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/unitrends\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"unnisoft\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/unnisoft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"unravel-data\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/unravel-data\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"unscramblsingaporepteltd-4999260\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/unscramblsingaporepteltd-4999260\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"untangle\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/untangle\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"upsolver1594188634150\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/upsolver1594188634150\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"usp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/usp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"valohai\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/valohai\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"valtix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/valtix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"varmournetworks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/varmournetworks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"varnish\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/varnish\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vatacommunicationsinc1581644208717\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vatacommunicationsinc1581644208717\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vaultive-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vaultive-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vbot\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vbot\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vcinityinc1587684340545\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vcinityinc1587684340545\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vectraaiinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vectraaiinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"veeam\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/veeam\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"velocitydb-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/velocitydb-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"velocloud\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/velocloud\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vembutechnologiespvtltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vembutechnologiespvtltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vemn\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vemn\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"veritas\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/veritas\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"versanetworks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/versanetworks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"versasec\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/versasec\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vidispine\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vidispine\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vidizmo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vidizmo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vigyanlabs-innovations-pvt-ltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vigyanlabs-innovations-pvt-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vigyanlabsinc1581413676614\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vigyanlabsinc1581413676614\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"viptela\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/viptela\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vircom\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vircom\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"virtamovecorp1615909247913\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/virtamovecorp1615909247913\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"virtualpulsesro1607008728942\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/virtualpulsesro1607008728942\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"virtuozzointernationalgmbh1626704951469\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/virtuozzointernationalgmbh1626704951469\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"visualknowledgeshare1591795776234\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/visualknowledgeshare1591795776234\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"visualsoft-center\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/visualsoft-center\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vizixiotplatformretail001\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vizixiotplatformretail001\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vmlabinc1613642184700\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vmlabinc1613642184700\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vmturbo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vmturbo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vmware-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vmware-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vnomicinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vnomicinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"voiceelements\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/voiceelements\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"voleatechgmbh1636966911943\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/voleatechgmbh1636966911943\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"volterraedgeservices\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/volterraedgeservices\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Vormetric\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Vormetric\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vscconsultingptyltd1608535888097\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vscconsultingptyltd1608535888097\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vte\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vte\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vu-llc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vu-llc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vyulabsinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vyulabsinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"WAD2AI.Diagnostics.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/WAD2AI.Diagnostics.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"WAD2EventHub.Diagnostics.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/WAD2EventHub.Diagnostics.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wallarm\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wallarm\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wallix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wallix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wandisco\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wandisco\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wanos\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wanos\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wanpath-dba-myworkdrive\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wanpath-dba-myworkdrive\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wardy-it-solutions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wardy-it-solutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"warewolf-esb\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/warewolf-esb\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"watchguard-technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/watchguard-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"webaloinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/webaloinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"websense-apmailpe\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/websense-apmailpe\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"websoft9inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/websoft9inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wedoitllc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wedoitllc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"westernoceansoftwaresprivatelimited\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/westernoceansoftwaresprivatelimited\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wherescapesoftware\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wherescapesoftware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"winmagic_securedoc_cloudvm\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/winmagic_securedoc_cloudvm\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wintellisys-inc-4561600\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wintellisys-inc-4561600\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"witfooinc1590167223060\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/witfooinc1590167223060\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wmspanel\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wmspanel\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wood1595864497589\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wood1595864497589\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"workshare-technology\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/workshare-technology\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"world-programming\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/world-programming\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"worxogo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/worxogo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wowza\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wowza\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"xcontentptyltd-1329748\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/xcontentptyltd-1329748\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"xendata-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/xendata-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"xfinityinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/xfinityinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"xilinx\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/xilinx\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"xoriantcorporationazxteam1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/xoriantcorporationazxteam1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"xoriantsolutionspvtltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/xoriantsolutionspvtltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"xtremedata\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/xtremedata\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"xyzrd-group-ou\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/xyzrd-group-ou\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"yellowfin\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/yellowfin\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"yellowfininternationalptyltd1616363974066\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/yellowfininternationalptyltd1616363974066\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"yokogawarentalleasecorporation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/yokogawarentalleasecorporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"your-shop-online\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/your-shop-online\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"z1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/z1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"z4it-aps\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/z4it-aps\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zabbix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zabbix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zend\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zend\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zenterasystemsinc1605292453288\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zenterasystemsinc1605292453288\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zerodown_software\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zerodown_software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zerto\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zerto\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zettalane_systems-5254599\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zettalane_systems-5254599\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zevenet\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zevenet\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zilliz\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zilliz\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zoomdata\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zoomdata\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zscaler\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zscaler\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zscaler1579058425289\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zscaler1579058425289\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zultysinc1596831546163\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zultysinc1596831546163\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"128technology\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/128technology\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1580863854728\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1580863854728\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1583411303229\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1583411303229\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1583465680865\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1583465680865\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1585118004523\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1585118004523\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1592878437854\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1592878437854\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1597644262255\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1597644262255\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1598955805825\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1598955805825\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1601633765871\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1601633765871\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1602067018799\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1602067018799\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1604579683207\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1604579683207\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1615257339685\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1615257339685\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1615278064010\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1615278064010\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1615455873642\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1615455873642\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1624590941808\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1624590941808\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1640334196980\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1640334196980\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1e\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1e\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"2021ai\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/2021ai\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"247commercelimited1611063941652\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/247commercelimited1611063941652\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"3cx-pbx\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/3cx-pbx\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"42crunch1580391915541\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/42crunch1580391915541\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"4psa\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/4psa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"5nine-software-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/5nine-software-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"6124903\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/6124903\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"7isolutions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/7isolutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"a10networks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/a10networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"a10networks1596136698788\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/a10networks1596136698788\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"abiquo\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/abiquo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"abzoobainc1598420455082\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/abzoobainc1598420455082\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"accedian\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/accedian\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"accelario1579101623356\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/accelario1579101623356\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"accellion\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/accellion\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"accessdata-group\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/accessdata-group\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"accops\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/accops\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aciworldwide\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aciworldwide\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Acronis\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Acronis\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Acronis.Backup\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Acronis.Backup\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"actian-corp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/actian-corp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"actian_matrix\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/actian_matrix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"actifio\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/actifio\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"actiphy\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/actiphy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"actiphyinc1627974506603\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/actiphyinc1627974506603\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"activecountermeasuresinc1631039410073\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/activecountermeasuresinc1631039410073\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"activeeon\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/activeeon\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"activeops\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/activeops\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"adastracorporation-4028356\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/adastracorporation-4028356\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"adgs\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/adgs\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"advantech\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/advantech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"advantech-webaccess\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/advantech-webaccess\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"advantys\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/advantys\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aelf\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aelf\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aerospike\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aerospike\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"affinio\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/affinio\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"affirmednetworks1607630812999\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/affirmednetworks1607630812999\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ageniumscale1591804889317\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ageniumscale1591804889317\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aggregion-ltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aggregion-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"agiledialogssl1603791911858\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/agiledialogssl1603791911858\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"agolo\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/agolo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ahnlabinc1584495174865\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ahnlabinc1584495174865\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ahnlabinc1584495467593\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ahnlabinc1584495467593\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"airalabrus\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/airalabrus\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aiscaler-cache-control-ddos-and-url-rewriting-\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aiscaler-cache-control-ddos-and-url-rewriting-\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aisundowninc1618516322959\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aisundowninc1618516322959\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"akamai-technologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/akamai-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"akumina\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/akumina\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"akumo-software\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/akumo-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"al-tamamunitedtradingcontractingcompany\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/al-tamamunitedtradingcontractingcompany\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"alachisoft\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/alachisoft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"alertlogic\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/alertlogic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"AlertLogic.Extension\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/AlertLogic.Extension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"algolyticstechnologies1606475101268\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/algolyticstechnologies1606475101268\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"alicetrix\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/alicetrix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"alienvault\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/alienvault\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"alldigital-brevity\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/alldigital-brevity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"almalinux\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/almalinux\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"almalinuxosfoundation1628089859865\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/almalinuxosfoundation1628089859865\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"altair-engineering-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/altair-engineering-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"altamira-corporation\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/altamira-corporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"alteryx\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/alteryx\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"altova\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/altova\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"amergint1593131356777\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/amergint1593131356777\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"anjanadatasl1583402861145\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/anjanadatasl1583402861145\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ansys\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ansys\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"antmedia\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/antmedia\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aod\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aod\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"apigee\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/apigee\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"appcara\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appcara\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"appcelerator\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appcelerator\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"appex-networks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appex-networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"appistry\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appistry\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"appiyo_technologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appiyo_technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"appmint_inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appmint_inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"apps-4-rent\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/apps-4-rent\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"appscale-marketplace\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appscale-marketplace\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"appsurifyinc1606933045773\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appsurifyinc1606933045773\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aquaforest\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aquaforest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aquantyinc1598537176913\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aquantyinc1598537176913\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aquaveollc1633710529908\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aquaveollc1633710529908\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"arabesque-group\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/arabesque-group\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"arangodb\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/arangodb\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aras\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aras\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"arcblock\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/arcblock\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"arcesb\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/arcesb\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"arcontechsolutionsprivatelimited1623841797810\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/arcontechsolutionsprivatelimited1623841797810\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"arcserveusallc-marketing\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/arcserveusallc-marketing\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"arista-networks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/arista-networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ariwontollc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ariwontollc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"array_networks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/array_networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"artificial-intelligence-techniques-sl\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/artificial-intelligence-techniques-sl\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"arubanetworks-4922182\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/arubanetworks-4922182\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"asdivertissementinc1617837708654\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/asdivertissementinc1617837708654\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"asigra\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/asigra\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aspentechnologyhq-1353108\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aspentechnologyhq-1353108\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"astadia-1148316\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/astadia-1148316\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"asterasoftware1581022936015\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/asterasoftware1581022936015\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"asyscosoftwarebv\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/asyscosoftwarebv\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ataccama\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ataccama\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"athinfosystems1641442221349\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/athinfosystems1641442221349\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"athinfosystems1648710938250\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/athinfosystems1648710938250\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"atlgaming\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/atlgaming\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"atmosera\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/atmosera\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"atomicorp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/atomicorp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"atomizedinc1587939464368\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/atomizedinc1587939464368\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"attunity_cloudbeam\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/attunity_cloudbeam\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"audiocodes\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/audiocodes\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"auraportal\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/auraportal\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"auriq-systems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/auriq-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"automateio1592914387888\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/automateio1592914387888\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"automationanywhere\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/automationanywhere\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"avanseus\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/avanseus\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"avepoint\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/avepoint\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aveva1\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aveva1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"avi-networks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/avi-networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aviatrix-systems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aviatrix-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"awingu\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/awingu\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"axedrasag1590581171549\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/axedrasag1590581171549\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"axsguardablenv\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/axsguardablenv\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"axshco\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/axshco\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"axway\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/axway\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"axxana\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/axxana\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"azhpc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/azhpc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"azul\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/azul\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"azure-dockit\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/azure-dockit\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"azurecyclecloud\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/azurecyclecloud\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"AzureDatabricks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/AzureDatabricks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"azureopenshift\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/azureopenshift\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"AzureRT.PIR.Synthetics.ProdTest\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/AzureRT.PIR.Synthetics.ProdTest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"AzureRT.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/AzureRT.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"azuretesting\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/azuretesting\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"azuretesting2\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/azuretesting2\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"azuretesting3\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/azuretesting3\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"AzureTools1type\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/AzureTools1type\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"baas-techbureau\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/baas-techbureau\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"baffle-io\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/baffle-io\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"balabit\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/balabit\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"barracudanetworks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/barracudanetworks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"basho\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/basho\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"batch\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/batch\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bayware\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bayware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bdy\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bdy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"belindaczsro1588885355210\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/belindaczsro1588885355210\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bellsoft1582871421940\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bellsoft1582871421940\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"betsol\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/betsol\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"beyondtrust\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/beyondtrust\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bi-builders-as\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bi-builders-as\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"big-id\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/big-id\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"biolibinc1622552350258\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/biolibinc1622552350258\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bissantechnology1583581147809\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bissantechnology1583581147809\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bitdefendercybersecurity\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bitdefendercybersecurity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Bitnami\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Bitnami\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bizagi\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bizagi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bizaptyltd1626489237351\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bizaptyltd1626489237351\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bizdataloome\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bizdataloome\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"biztalk360\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/biztalk360\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"black-duck-software\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/black-duck-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"blackbird\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/blackbird\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"blackmagicdesignincorporated1596492193249\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/blackmagicdesignincorporated1596492193249\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"blk-technologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/blk-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"blockapps\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/blockapps\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"blockchain-foundry\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/blockchain-foundry\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"blockstack\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/blockstack\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bloombase\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bloombase\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bluecat\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bluecat\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bluejeansnetwork1638333611902\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bluejeansnetwork1638333611902\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"blueprismlimited-4827145\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/blueprismlimited-4827145\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bluesyntaxconsulting1617654548594\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bluesyntaxconsulting1617654548594\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bluetalon\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bluetalon\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bmc.ctm\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bmc.ctm\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bmcctm.test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bmcctm.test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"boardpacpvtltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/boardpacpvtltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bocada\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bocada\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"boemskats\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/boemskats\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"botanalytics\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/botanalytics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bowspritconsultingopcprivatelimited1596291408582\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bowspritconsultingopcprivatelimited1596291408582\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bravura-software-llc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bravura-software-llc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Brianjac.Symantec.CloudWorkloadProtection\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Brianjac.Symantec.CloudWorkloadProtection\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bricatainc1584472632111\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bricatainc1584472632111\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bright-computing\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bright-computing\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"brightcomputing\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/brightcomputing\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"brocade_communications\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/brocade_communications\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"brutale\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/brutale\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bryte\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bryte\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bssw\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bssw\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bt-americas-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bt-americas-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"buddhalabs\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/buddhalabs\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cadosecurityltd1626856705534\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cadosecurityltd1626856705534\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"calculated_systems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/calculated_systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"caloudi_corp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/caloudi_corp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"canadiancentreforcybersecurity1610638436359\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/canadiancentreforcybersecurity1610638436359\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Canonical\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Canonical\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"canonical-test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/canonical-test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"carto\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/carto\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cask\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cask\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"castaigroupinc1595243474856\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/castaigroupinc1595243474856\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"catechnologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/catechnologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"catonetworksltd1641478570665\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/catonetworksltd1641478570665\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cautelalabs\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cautelalabs\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cavirin\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cavirin\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cayosoftinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cayosoftinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cdatasoftware\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cdatasoftware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cds\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cds\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"celum-gmbh\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/celum-gmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"center-for-internet-security-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/center-for-internet-security-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"centeritysystems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/centeritysystems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"centrixeltd1594135951373\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/centrixeltd1594135951373\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"centrocomputerspa1584528117084\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/centrocomputerspa1584528117084\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"certifiedsecuritysolutionsinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/certifiedsecuritysolutionsinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"certivox\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/certivox\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cfd-direct\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cfd-direct\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"chain\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/chain\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"checkpoint\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/checkpoint\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"chef-software\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/chef-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Chef.Bootstrap.WindowsAzure\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Chef.Bootstrap.WindowsAzure\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"chunghwatelecom1587573688842\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/chunghwatelecom1587573688842\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cinchy\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cinchy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cinegy-gmbh\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cinegy-gmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ciphertechsinc1646670709341\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ciphertechsinc1646670709341\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"circleci\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/circleci\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cires21\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cires21\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cirruswaveinc1579234787943\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cirruswaveinc1579234787943\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cisco\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cisco\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"citrix\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/citrix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Citrix.ADC\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Citrix.ADC\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"clapsodeughaftungsbeschrnkt1626333173563\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/clapsodeughaftungsbeschrnkt1626333173563\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"clear-linux-project\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/clear-linux-project\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"clone-systems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/clone-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"clouber\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/clouber\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloud-checkr\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloud-checkr\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloud-cruiser\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloud-cruiser\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloud-infrastructure-services\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloud-infrastructure-services\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudaccelinc1628754426775\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudaccelinc1628754426775\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudbees\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudbees\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudbees-enterprise-jenkins\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudbees-enterprise-jenkins\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudbolt-software\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudbolt-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudboltsoftware1639523402532\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudboltsoftware1639523402532\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudboost\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudboost\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudcover\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudcover\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudenablers-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudenablers-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudentity\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudentity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudera\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudera\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudflare\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudflare\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudhouse\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudhouse\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudinfo-4919088\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudinfo-4919088\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudknox\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudknox\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudlanes\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudlanes\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudlink\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudlink\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"CloudLinkEMC.SecureVM\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/CloudLinkEMC.SecureVM\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudmavensolutions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudmavensolutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudneeti\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudneeti\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudplan-gmbh\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudplan-gmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudsecurity\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudsecurity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudsoft\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudsoft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudwhizsolutions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudwhizsolutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudwrxsconsultingltd1631029702055\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudwrxsconsultingltd1631029702055\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"clustrix\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/clustrix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cncf-upstream\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cncf-upstream\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"codaintelligence1606495376525\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/codaintelligence1606495376525\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"codelathe\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/codelathe\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"codenvy\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/codenvy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"codetwo\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/codetwo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cognexcorporation1613759804979\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cognexcorporation1613759804979\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cognexcorporation1647410785838\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cognexcorporation1647410785838\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cognitive-scale\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cognitive-scale\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cognizant\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cognizant\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cognosys\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cognosys\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cohesity\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cohesity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cohesitydev1592001764720\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cohesitydev1592001764720\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cohesive\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cohesive\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"coin-sciences-ltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/coin-sciences-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"collabcloudlimited\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/collabcloudlimited\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"collibranv1619508098620\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/collibranv1619508098620\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"commscopeinc1632135151062\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/commscopeinc1632135151062\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"commvault\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/commvault\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"compellon\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/compellon\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"composable\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/composable\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"comunity\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/comunity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"concentrationheatandmomentumlimited1616154387047\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/concentrationheatandmomentumlimited1616154387047\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Confer\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Confer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"confluentinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/confluentinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"conflux\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/conflux\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"connecting-software\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/connecting-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"consensys\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/consensys\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"containeraider\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/containeraider\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"contiamogmbh\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/contiamogmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"controlcase\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/controlcase\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"controlplane\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/controlplane\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"controlplanecorporation1609967567639\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/controlplanecorporation1609967567639\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"convertigo\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/convertigo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"corda\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/corda\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"core-stack\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/core-stack\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"corent-technology-pvt\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/corent-technology-pvt\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"CoreOS\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/CoreOS\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"couchbase\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/couchbase\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cpanel\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cpanel\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"credativ\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/credativ\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cristiesoftwareltd1599488127561\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cristiesoftwareltd1599488127561\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"crunchyard\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/crunchyard\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"crunchyardltd1623835391104\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/crunchyardltd1623835391104\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cryptocom1585727786636\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cryptocom1585727786636\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cryptosense1605170011574\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cryptosense1605170011574\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cryptzone\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cryptzone\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ctm.bmc.com\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ctm.bmc.com\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ctrliqinc1648673227698\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ctrliqinc1648673227698\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cubebackup\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cubebackup\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cyberark\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cyberark\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cybernetica-as\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cybernetica-as\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cygnalabscorp1646065782458\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cygnalabscorp1646065782458\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cyxtera\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cyxtera\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"d4t4_solutions-1164305\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/d4t4_solutions-1164305\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"daceitdbasensetrafficpulse1579892024934\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/daceitdbasensetrafficpulse1579892024934\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"danielsol.AzureTools1\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/danielsol.AzureTools1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Dans.Windows.App\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Dans.Windows.App\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Dans3.Windows.App\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Dans3.Windows.App\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dataart\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dataart\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"databricks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/databricks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datacore\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datacore\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Datadog.Agent\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Datadog.Agent\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datadynamicsinc1581991927942\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datadynamicsinc1581991927942\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datagapsinc1585348463636\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datagapsinc1585348463636\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dataguiseinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dataguiseinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dataiku\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dataiku\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datalayer\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datalayer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datanomers1584919038987\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datanomers1584919038987\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datanova\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datanova\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datapredsa\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datapredsa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dataroadtechnologiesllc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dataroadtechnologiesllc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datasciencedojo1586563145740\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datasciencedojo1586563145740\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datastax\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datastax\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datasunrise\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datasunrise\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datavirtualitygmbh\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datavirtualitygmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datometry\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datometry\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dbs-h\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dbs-h\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ddn-whamcloud-5345716\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ddn-whamcloud-5345716\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Debian\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Debian\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dece-4446019\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dece-4446019\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"decisosalesbv\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/decisosalesbv\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"deepcognitioninc1593512758156\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/deepcognitioninc1593512758156\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"deepsiginc1581610210151\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/deepsiginc1581610210151\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"deepsurfacesecurityinc1632943333445\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/deepsurfacesecurityinc1632943333445\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dellemc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dellemc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dell_software\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dell_software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"delphix\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/delphix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"deltapathlimited1592886319362\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/deltapathlimited1592886319362\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"denodo\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/denodo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"denyall\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/denyall\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"derdack\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/derdack\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"deskpro1650546806675\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/deskpro1650546806675\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"desktopstudioag1580294245574\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/desktopstudioag1580294245574\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"devfactory\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/devfactory\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"device42inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/device42inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"deviceauthorityinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/deviceauthorityinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"devolutionsinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/devolutionsinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"devopsgroup-uk\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/devopsgroup-uk\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"df-portal-user\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/df-portal-user\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dgsecure\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dgsecure\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Dh2ico\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Dh2ico\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dh2icompany\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dh2icompany\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dhi\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dhi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"diagramics\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/diagramics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dicomsystems1584107398321\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dicomsystems1584107398321\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"diehl-metering\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/diehl-metering\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"digisitesystems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/digisitesystems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"digitaldefenseinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/digitaldefenseinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"digitaloffice\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/digitaloffice\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"digitamizeinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/digitamizeinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"digitate\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/digitate\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"diladele\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/diladele\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dimensionalmechanics-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dimensionalmechanics-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"diqa\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/diqa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"diyatech\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/diyatech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"diyotta\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/diyotta\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"djiindustrialincus\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/djiindustrialincus\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"docker\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/docker\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dome9\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dome9\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dorabot\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dorabot\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dremiocorporation\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dremiocorporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"drizti\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/drizti\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"drone\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/drone\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dsi\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dsi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dundas\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dundas\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dyadic_security\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dyadic_security\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dynatrace\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dynatrace\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dynatrace.ruxit\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dynatrace.ruxit\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"e-magicinc1587696283171\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/e-magicinc1587696283171\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"eastwind-networks-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/eastwind-networks-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"easysoftwaresro1593005637384\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/easysoftwaresro1593005637384\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ebesllc1637780200500\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ebesllc1637780200500\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ecessa\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ecessa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"edevtech\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/edevtech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"edgelesssystems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/edgelesssystems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"edgenetworks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/edgenetworks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"edispheresoftwareprivatelimited1606199736428\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/edispheresoftwareprivatelimited1606199736428\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"education4sight\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/education4sight\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"eecservicesfzllc1604836615706\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/eecservicesfzllc1604836615706\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"egnyte\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/egnyte\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"egress1589289169584\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/egress1589289169584\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"eikonasystemsgmbh1601729310063\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/eikonasystemsgmbh1601729310063\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Elastic\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Elastic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"elasticbox\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/elasticbox\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"elecard\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/elecard\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"electric-cloud\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/electric-cloud\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"elevateiot\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/elevateiot\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"eleven01\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/eleven01\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"elfiqnetworks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/elfiqnetworks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"emercoin\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/emercoin\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"energisme1601990637842\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/energisme1601990637842\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"enforongo\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/enforongo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"engineering-ingegneriainformatica-spa1626786889850\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/engineering-ingegneriainformatica-spa1626786889850\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"engysltd1624364546407\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/engysltd1624364546407\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"enterprise-ethereum-alliance\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/enterprise-ethereum-alliance\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"enterprisedb-corp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/enterprisedb-corp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"enterpriseworx-it\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/enterpriseworx-it\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"epicgames\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/epicgames\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"epicgamesinc1633466121071\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/epicgamesinc1633466121071\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"eproe\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/eproe\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"equalum\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/equalum\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"equilibrium\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/equilibrium\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"equinix\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/equinix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ergoninformatikag1581586464404\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ergoninformatikag1581586464404\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"esdenera\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/esdenera\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ESET\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ESET\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"esetresearch1579795941720\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/esetresearch1579795941720\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"esri\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/esri\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"esyon\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/esyon\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ethereum\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ethereum\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"eurolinuxspzoo1620639373013\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/eurolinuxspzoo1620639373013\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"eventtracker\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/eventtracker\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"evertzmicrosystemsltd1586877923009\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/evertzmicrosystemsltd1586877923009\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"evostream-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/evostream-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"exact\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/exact\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"exasol\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/exasol\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"excelero1608461290726\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/excelero1608461290726\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"exivity\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/exivity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"exonar\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/exonar\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"f5-networks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/f5-networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"falainapteltd1604661424876\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/falainapteltd1604661424876\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"falconstorsoftware\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/falconstorsoftware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fatalsecurity1604924013537\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fatalsecurity1604924013537\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fatpipe-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fatpipe-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fenestrae-1035066\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fenestrae-1035066\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fidesys\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fidesys\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"filecatalyst\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/filecatalyst\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"filemagellc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/filemagellc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fiorano\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fiorano\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fireeye\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fireeye\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"firehost\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/firehost\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"firemon\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/firemon\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"firstderivativesplc1596469572732\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/firstderivativesplc1596469572732\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"flashgrid-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/flashgrid-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"flexbby\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/flexbby\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"flexbby-5255860\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/flexbby-5255860\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"flexify-io\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/flexify-io\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"flexxibleit\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/flexxibleit\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"flowmon\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/flowmon\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"flynet\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/flynet\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"foghorn-systems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/foghorn-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"forcepoint-llc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/forcepoint-llc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"forescout\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/forescout\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"foreseetiab1613650409016\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/foreseetiab1613650409016\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"formpipesoftwareab\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/formpipesoftwareab\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"forscene\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/forscene\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fortanix\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fortanix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fortinet\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fortinet\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fortycloud\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fortycloud\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"forumsystems1599756394904\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/forumsystems1599756394904\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fotopiatechnologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fotopiatechnologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"foxiteuropegmbh1585901066320\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/foxiteuropegmbh1585901066320\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"franzinc1593030725310\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/franzinc1593030725310\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fujitsu_fast\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fujitsu_fast\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fw\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fw\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"g2kgroupgmbh-4821943\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/g2kgroupgmbh-4821943\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gapteq\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gapteq\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gatlingcorp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gatlingcorp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gbs\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gbs\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gemalto-safenet\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gemalto-safenet\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Gemalto.SafeNet.ProtectV\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Gemalto.SafeNet.ProtectV\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"genesistechnologyinc1604912285911\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/genesistechnologyinc1604912285911\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"genuagmbhdevid1\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/genuagmbhdevid1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"genua_gmbh\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/genua_gmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"genymobile\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/genymobile\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gigamon-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gigamon-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"GitHub\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/GitHub\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gitlab\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gitlab\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gitlabinc1586447921813\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gitlabinc1586447921813\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gladinet-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gladinet-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"glantoninc1591876792991\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/glantoninc1591876792991\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"globalidsinc1596800540598\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/globalidsinc1596800540598\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"globalscape\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/globalscape\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"globalsolutions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/globalsolutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gluwareinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gluwareinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"graphistry\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/graphistry\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"graphitegtc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/graphitegtc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"great-software-laboratory-private-limited\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/great-software-laboratory-private-limited\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"greensql\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/greensql\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"greycorbelsolutions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/greycorbelsolutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gridgain\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gridgain\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"guardicore\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/guardicore\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gxchainfoundationltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gxchainfoundationltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"h2o-ai\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/h2o-ai\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hackerbay\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hackerbay\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hackershub\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hackershub\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"haivision\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/haivision\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"haivisionsystemsinc1580780591922\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/haivisionsystemsinc1580780591922\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"haltdoscompvtltd1587136166019\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/haltdoscompvtltd1587136166019\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hammerspace\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hammerspace\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hanu\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hanu\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"haproxy-technologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/haproxy-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"harmanconnectedservicesinc1594928575643\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/harmanconnectedservicesinc1594928575643\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"harpaitalia\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/harpaitalia\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hashhub\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hashhub\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hcl-technologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hcl-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"heimdall-data\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/heimdall-data\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"help-systems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/help-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"helpyio\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/helpyio\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"heretechnologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/heretechnologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hewlett-packard\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hewlett-packard\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hillstone-networks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hillstone-networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hitachi-solutions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hitachi-solutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hitachivantara\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hitachivantara\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"holo-industrie40softwaregmbh1600957636008\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/holo-industrie40softwaregmbh1600957636008\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hortonworks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hortonworks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hpe\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hpe\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"HPE.Security.ApplicationDefender\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/HPE.Security.ApplicationDefender\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"huawei\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/huawei\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hubstor-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hubstor-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hush-hush\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hush-hush\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hvr\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hvr\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hyperglance\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hyperglance\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hypergrid\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hypergrid\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hystaxinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hystaxinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hytrust\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hytrust\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"i-exceed-technology\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/i-exceed-technology\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iaansys\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iaansys\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ibm\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ibm\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ibm-alliance-global-1560886\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ibm-alliance-global-1560886\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ibm-alliance-usa-ny-armonk-hq-ibmstorage-6201192\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ibm-alliance-usa-ny-armonk-hq-ibmstorage-6201192\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ibm-usa-ny-armonk-hq-6275750-ibmcloud-aiops\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ibm-usa-ny-armonk-hq-6275750-ibmcloud-aiops\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iboss\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iboss\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iconics\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iconics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iconsulting-spa\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iconsulting-spa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"icubeconsultancyservicesinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/icubeconsultancyservicesinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iguazio-5069960\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iguazio-5069960\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ikan\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ikan\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iliimbiliimveyazlmsistemlerisanvetica1617000555584\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iliimbiliimveyazlmsistemlerisanvetica1617000555584\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"illuminainc1586452220102\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/illuminainc1586452220102\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"image-technologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/image-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"imaginecommunications\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/imaginecommunications\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"imperva\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/imperva\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"impetustechnologiesinc1591959591877\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/impetustechnologiesinc1591959591877\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"imprivatainc1580479939967\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/imprivatainc1580479939967\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"incorta\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/incorta\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"incredibuild\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/incredibuild\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"indexima1594300233028\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/indexima1594300233028\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"industry-weapon\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/industry-weapon\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"industryweapon1587162781833\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/industryweapon1587162781833\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"inenprocesosyplataformasdetisderldecv1615482385424\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/inenprocesosyplataformasdetisderldecv1615482385424\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"inergybv1637141413454\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/inergybv1637141413454\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"infinitesoftwarecorporation1579223971125\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/infinitesoftwarecorporation1579223971125\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"infiotinc1614034091460\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/infiotinc1614034091460\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"influxdata\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/influxdata\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"infoblox\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/infoblox\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"infogix\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/infogix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"infolibrarian\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/infolibrarian\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"informatica\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/informatica\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"informationbuilders\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/informationbuilders\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"informationtechnologies_ltd_1179601\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/informationtechnologies_ltd_1179601\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"infotecsinternetsecuritysoftwaregmbh1636129257584\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/infotecsinternetsecuritysoftwaregmbh1636129257584\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"infront-consulting-group-ltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/infront-consulting-group-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"infscapeughaftungsbeschrnkt\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/infscapeughaftungsbeschrnkt\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ingenieurstudiohollaus1579587745438\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ingenieurstudiohollaus1579587745438\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ingrammicro\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ingrammicro\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"innomindssoftware\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/innomindssoftware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"innosepgmbh1618331344164\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/innosepgmbh1618331344164\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"innovatorartificialtechsrl1619180685551\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/innovatorartificialtechsrl1619180685551\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"innovtech\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/innovtech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"instight-technology\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/instight-technology\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"integration-objects\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/integration-objects\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"intel-bigdl\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/intel-bigdl\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"intel-fpga\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/intel-fpga\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"intellicus-technologies-pvt-ltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/intellicus-technologies-pvt-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"intelligent-plant-ltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/intelligent-plant-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"intel_corporation\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/intel_corporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"internationaltrustmachinescorporation1582190033865\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/internationaltrustmachinescorporation1582190033865\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"internet20inc1635882446190\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/internet20inc1635882446190\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"intersystems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/intersystems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"intigua\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/intigua\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"intigua1638692632641\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/intigua1638692632641\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"introspecioltd1629872641188\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/introspecioltd1629872641188\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iofabric\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iofabric\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ipinfusion1590066770520\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ipinfusion1590066770520\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ipswitch\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ipswitch\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iqsol\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iqsol\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iquate\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iquate\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iquest\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iquest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"irion\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/irion\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ishlangu-load-balancer-adc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ishlangu-load-balancer-adc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"issp-corporation\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/issp-corporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"isvtestukbigcat\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/isvtestukbigcat\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"isvtestuklegacy\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/isvtestuklegacy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"it4bizdoo\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/it4bizdoo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"itelios\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/itelios\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"itrsgroupltd1620310702149\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/itrsgroupltd1620310702149\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ivanti-inc-pcs\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ivanti-inc-pcs\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ivanti-nzta\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ivanti-nzta\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ivix1595238749040\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ivix1595238749040\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iwnamespace\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iwnamespace\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"izenda\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/izenda\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"jamcracker\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/jamcracker\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"javlinltd1579185328273\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/javlinltd1579185328273\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"jedox\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/jedox\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"jelastic\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/jelastic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"jetnexus\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/jetnexus\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"jetware-srl\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/jetware-srl\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"jfrog\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/jfrog\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"jm-technology-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/jm-technology-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"jogetinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/jogetinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"johnsnowlabsinc1646051154808\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/johnsnowlabsinc1646051154808\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"juniper-networks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/juniper-networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"justanalytics\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/justanalytics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kaazing\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kaazing\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kadenallc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kadenallc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kali-linux\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kali-linux\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kalkitech\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kalkitech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kaminarioinc1588672951794\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kaminarioinc1588672951794\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Kaspersky.Lab\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Kaspersky.Lab\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"KasperskyLab.SecurityAgent\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/KasperskyLab.SecurityAgent\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kaspersky_lab\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kaspersky_lab\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kazendi\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kazendi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kelverion\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kelverion\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kemptech\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kemptech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kepion\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kepion\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"KevlarExtensions.M365Security.SecureOS\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/KevlarExtensions.M365Security.SecureOS\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"KevlarExtensions.M365SecurityHostIDS\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/KevlarExtensions.M365SecurityHostIDS\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"KevlarExtensions.M365SecurityInventory\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/KevlarExtensions.M365SecurityInventory\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"KevlarExtensions.M365SecurityInventory.NameChangeTest\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/KevlarExtensions.M365SecurityInventory.NameChangeTest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"KevlarExtensions.M365SecurityODL\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/KevlarExtensions.M365SecurityODL\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"KevlarExtensions.M365SecurityTLSExtension\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/KevlarExtensions.M365SecurityTLSExtension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kinetica\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kinetica\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kinvolk\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kinvolk\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"knime\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/knime\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kobalt\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kobalt\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kognillc1600118221163\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kognillc1600118221163\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kognitivsparkinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kognitivsparkinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"konginc1581527938760\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/konginc1581527938760\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"konsys-ltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/konsys-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"koverseinc1588716263110\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/koverseinc1588716263110\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kryonsystems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kryonsystems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"krypc-technologies-pvt-ltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/krypc-technologies-pvt-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kyligence\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kyligence\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kyvos-insights-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kyvos-insights-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lab3solutions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lab3solutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lancom-systems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lancom-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lansa\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lansa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lastline\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lastline\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"launchnodesltd1644561451121\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/launchnodesltd1644561451121\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"leap-orbit\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/leap-orbit\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lenovosoftware1604394104439\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lenovosoftware1604394104439\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"leostream-corporation\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/leostream-corporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lepide-software\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lepide-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"levacloudllc1602151818089\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/levacloudllc1602151818089\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"libelleag\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/libelleag\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"liberatii\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/liberatii\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"libraesva\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/libraesva\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"liebsoft\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/liebsoft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lightning-analyticsinc1582000647396\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lightning-analyticsinc1582000647396\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"linuxbasedsystemsdesignltd1580878904727\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/linuxbasedsystemsdesignltd1580878904727\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"liquid-files\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/liquid-files\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"liquidware\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/liquidware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"literatu\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/literatu\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"litespeedtechnologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/litespeedtechnologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"litespeed_technologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/litespeed_technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"litionenergiegmbh1580128829115\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/litionenergiegmbh1580128829115\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"litmusautomation1582760223280\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/litmusautomation1582760223280\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"llcitpro\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/llcitpro\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lnw-softgmbh\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lnw-softgmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"loadbalancer\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/loadbalancer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"logicflowag1638535407949\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/logicflowag1638535407949\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"logsign\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/logsign\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"logstarecorp1635838645101\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/logstarecorp1635838645101\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"logtrust\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/logtrust\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"logzio\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/logzio\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"looker\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/looker\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lotus_beta_analytics\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lotus_beta_analytics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lti-lt-infotech\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lti-lt-infotech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"luminate-security\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/luminate-security\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"M365Security.KevlarExtensions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/M365Security.KevlarExtensions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"M365SecurityInventory\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/M365SecurityInventory\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"machinesense\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/machinesense\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"madhavajay1632269232059\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/madhavajay1632269232059\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"maidenhead-bridge\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/maidenhead-bridge\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"manageengine\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/manageengine\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mapd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mapd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"maplelabsinc1623932715330\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/maplelabsinc1623932715330\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mapr-technologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mapr-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"marand\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/marand\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"marketplace-rdfe-caps\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/marketplace-rdfe-caps\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"marklogic\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/marklogic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"massiveanalytic-\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/massiveanalytic-\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mathworks-deployment\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mathworks-deployment\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mathworks-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mathworks-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"matillion\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/matillion\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mavinglobal\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mavinglobal\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"McAfee.EndpointSecurity\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/McAfee.EndpointSecurity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"McAfee.EndpointSecurity.test3\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/McAfee.EndpointSecurity.test3\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"meanio\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/meanio\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"media3-adobe\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/media3-adobe\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"media3-technologies-llc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/media3-technologies-llc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mediatekinc1586141563888\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mediatekinc1586141563888\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mendix\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mendix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"merlynnintelligencetechnologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/merlynnintelligencetechnologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"meshifyappinc1622759451429\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/meshifyappinc1622759451429\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"messagesolution\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/messagesolution\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"metaswitch\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/metaswitch\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mettainnovations-4900054\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mettainnovations-4900054\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mfe_azure\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mfe_azure\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mfiles\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mfiles\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mico\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mico\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"micro-focus\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/micro-focus\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microlinkpcukltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microlinkpcukltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microolap\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microolap\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsecpteltd1634010681688\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsecpteltd1634010681688\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-ads\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-ads\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-agci-gaming\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-agci-gaming\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-aks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-aks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-avere\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-avere\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-azure-batch\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-azure-batch\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-azure-compute\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-azure-compute\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-azure-hdinsight\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-azure-hdinsight\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-crypto\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-crypto\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-dsvm\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-dsvm\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-hyperv\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-hyperv\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-minecraft\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-minecraft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AdminCenter\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AdminCenter\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AKS\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AKS\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.ActiveDirectory\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.ActiveDirectory\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.ActiveDirectory.LinuxSSH\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.ActiveDirectory.LinuxSSH\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Applications\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Applications\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Automation.HybridWorker\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Automation.HybridWorker\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Automation.HybridWorker.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Automation.HybridWorker.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.AzureDefenderForServers\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.AzureDefenderForServers\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.AzureDefenderForSQL\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.AzureDefenderForSQL\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.AzureHybridBenefit\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.AzureHybridBenefit\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Backup.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Backup.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Backup.Test.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Backup.Test.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Batch\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Batch\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.ChangeTracking\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.ChangeTracking\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.ChangeTracking.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.ChangeTracking.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.ChangeTrackingAndInventory\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.ChangeTrackingAndInventory\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Chaos\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Chaos\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Compute.Security\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Compute.Security\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.ContainerUpstream\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.ContainerUpstream\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.DefenderForServers.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.DefenderForServers.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.DefenderForServers.Test2\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.DefenderForServers.Test2\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Diagnostics\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Diagnostics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Diagnostics.Build.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Diagnostics.Build.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Diagnostics.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Diagnostics.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test012be407-61ea-4e45-a2c3-71a45999ca21-20191228083800\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test01971384-3044-413b-8b1c-33b5d461bf23-20200107051823\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test0225ec7d-b36c-4ac8-82f0-aa4fafaf10a9-20200111051346\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test025e16a1-328d-45a2-b7e3-71f7e4cde046-20191229064028\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test02d1f941-5607-4757-8df7-fd8c5631ab45-20200103083810\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test039abd7f-360c-42a1-ad5d-77527c519286-20191002233412\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test04a0f157-c6fb-4595-b6ca-6c82a2338063-20200108101451\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test0737f33e-63e0-4ba9-b04b-b93a1de4e997-20200106083639\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test0a44d7be-63fa-418d-a7b6-89a44dd21894-20200107052935\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test0d01b487-7f79-4d87-b330-5c025068db45-20191004190331\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test0d643748-e6fe-41ad-b4d3-89a289a0cee0-20191003055620\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test0df83c51-5bb9-43f8-8ae9-bc896ea64f78-20200110220221\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test0f02c246-7e65-4010-9367-ca4530c3897e-20191004190223\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test157494ec-e788-43b0-8d26-a17e39ee07cc-20191002011945\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test1661d154-b623-4507-8a56-3a89812c456c-20200111083940\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test17bbd860-f21d-40ab-9026-16e05f2907f0-20200106083451\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test194e2333-13cd-43e3-b0a4-c8cdcf1a3600-20200110211106\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test1bc26b19-b8d8-41f9-a26d-818f277bdf93-20200101113139\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test1c840053-9213-4f2a-8f2e-9bf2297908bd-20200108101424\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test1d7bba72-69f1-43cd-a38c-41ce0b5f4bae-20200109050041\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test1f7a8078-50e7-4a3a-91eb-d178fd4c403b-20191002233353\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test1fef1fdc-57ba-46a8-a879-475ba7d45a7a-20200106083509\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test21332f15-f78d-4d31-afac-79b9dc989432-20191231175840\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test22f10717-6939-4003-a9ce-38effd8b77d6-20191007191355\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test2334e6e3-bb72-4241-a36f-c2429d69bc0b-20200106050834\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test24fa9eb5-1c59-4425-b61c-30fd638c2a45-20191003203802\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test2521a545-ed61-4a15-bed1-aba7ce1d81ee-20200106050804\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test25c6fe61-1282-43c2-867b-b5039219989c-20200105081851\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test27515c8c-6773-4f92-afb0-35691cc6e3b6-20200103083821\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test28012680-48e7-4903-877f-2f29464e63d5-20191229033424\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test29a7a529-d293-4728-9d7f-257ed996e64f-20200108081759\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test2a5f2d2c-b8e3-46c2-850d-a1641c024fe7-20200107084228\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test2ce856af-ab17-48f2-ba3e-bcd9af091061-20200110013246\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test2e012e83-6361-4365-963f-6ced8a08e91c-20200110211254\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test2ecf67b2-fb63-4461-b6a6-7026c4fb1168-20191002214026\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test2ede6564-c7cc-44cb-a1a8-902505c9829d-20191003020742\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test2f4ebc17-e27e-48d9-9cc3-ff933c21884e-20200106092410\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test349ee02c-af9b-4663-a963-823b40eefed8-20200108083612\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test34cf6b13-b78e-478b-b596-8b661629371d-20191007195455\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test36cc5b60-2b23-4a04-bf95-f7865e1141cf-20200110085718\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3712fca9-5cdd-4609-be69-b02aedc5c55c-20200107084115\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3772d042-92e2-4bcb-99b7-8a6a119cc088-20191231182808\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test37a6dd64-d44d-465e-85bc-3bc38be90350-20200104083535\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test381074d5-7156-472b-801a-b35f8fef4cc6-20200105050612\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3877a44d-4c48-40db-80eb-227272d5acd6-20200110103540\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test38ecd28e-7018-4672-840c-3044a5e7a6b5-20200111084208\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test395a0b49-442a-450c-8a1f-65b0aa3bcf47-20200105083839\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3971b300-edff-44a8-b61b-7f9b7460a8d6-20191003002234\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3adeec20-7458-4b3d-af26-0b6bc2aae3eb-20200103083751\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3b20dd96-f3e4-4798-998d-8c433c2449a7-20200108083635\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3ce2fd4a-8b5a-4c7e-b08d-3e48fc0f45e7-20200104083825\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3d499ca7-cc8d-41cc-a6dc-ffb1a4ac4942-20200107053004\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3db7240e-5e42-4d6d-b024-cc9fce3c828b-20200105083520\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3f6b7341-635f-48d5-a36d-be5dfe3002c4-20200105050937\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3fc26934-ede2-4482-ad5e-f66f6135d4a6-20191228055558\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test406d077c-6017-4062-bc96-f809147a2331-20200106050748\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test4302336c-e039-4e70-bcb6-9275f6089e4a-20200108144821\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test453a087e-8435-46db-970a-4ee633cc4c4a-20200102083458\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test46b73afa-2259-4aff-81e1-a58bf24b59aa-20191229033459\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test4a3399ee-82ea-46aa-9e3a-5434b588e3b6-20191228013518\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test4eb7a185-527b-4b9f-93a8-7f1cec9d062e-20191231151207\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test520a0915-f9f0-4da4-9fa1-1b74fc1470aa-20200102083505\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test5397960f-023b-4979-9a8b-800d049045a4-20191007195417\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test55a36387-8a3f-4159-9884-29b97539a253-20200109080443\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test5645f186-4ee5-4209-af37-423660e3318c-20191231175947\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test58b4461d-4d2d-4395-b6d2-ab83d4d8c62f-20200111001002\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test5b0bf447-d98d-429d-8334-c032d197c743-20191003203846\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test5bc90367-1ea2-400b-a40c-321081bae3f3-20200108145035\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test5bd0562f-e939-456f-a6ee-c848d1aba616-20200101151641\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test5e4efe90-916c-4c96-802c-1508a5b6da78-20191231151150\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test5f8f0c10-cc3c-45ec-a068-fb1c7edfa0d9-20200101145958\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test60a000b7-286c-4b2b-9137-bbc088736419-20200108144920\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test6192a01b-ba47-4d08-904a-71647a49a112-20191008041625\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test62835538-89c6-4f66-9034-f7a4b176c615-20191007234245\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test651e4ad2-ee4a-462e-a506-b56b1969f5d0-20200110230749\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test691d94e5-c40c-4568-94b0-09b08aea42b1-20200106050808\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test6aa3643c-011a-4180-877f-cad955a8e664-20191007234642\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test6cfb469b-8478-468f-9bb5-691affd32abb-20200107083803\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test6d36b6b2-7956-4e62-91c1-c33792fd4bb1-20200110123203\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test6e28168e-a9c8-4c0a-8b40-60c2a1502d43-20200108052802\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test6eb763ac-7fbe-4e44-bee7-aad035ee2a7d-20200110084429\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test6efec253-f625-46f0-9d74-324f69e963d8-20200107070514\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test70fa7e4c-3122-4ff7-aec6-fe75ab660a01-20200108105900\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test710a5fbf-06c7-46ac-b96d-a29d2586422f-20200108083639\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test71d72489-67c6-45e2-b1e6-a19546efc823-20200105112903\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test721fccf1-2b3e-44b6-908f-51b910e88b09-20200111104931\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test742d0189-9e41-4f1b-8ad3-31c05d34903b-20200111103247\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7836a97c-f56e-48d0-8b5d-61e79aeb3226-20200111071656\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test78666b2e-25c8-4a48-931a-3131a0317d73-20191002194352\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test79f13508-fcbd-47b9-988f-1c21ef5e7f2e-20191002015429\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test79fb90ce-4691-4212-99a7-6e4069bd5984-20191007234256\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7a8cf687-6a21-4181-ba98-902fee717bd3-20200104103216\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7aabf813-6644-483a-b9e0-ba6f8973ba1f-20191002232822\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7c96c10a-0c8f-4ab0-83fd-1ad66a362e33-20191229033458\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7e79b6ff-2559-44fe-b3ba-afaa68d63636-20200108112116\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7ea372f7-ea7e-4b9e-bbad-4f35c1567aa2-20200108052736\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7fac3d04-98a5-4fc4-904e-9ea3b86eadc2-20200106050751\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7fe20dd6-9ed9-4126-bb1d-031c01ac4550-20200101114504\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7ff974d9-c841-4249-b05b-bbf663cb4605-20200106084104\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test815bd4d5-fc24-4a47-be20-063c4809902c-20200109050508\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test817654d0-2109-4d95-9284-8c8a9d960d08-20200108053758\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test821ca3b6-dd05-4e80-b3d8-74ba03b2609b-20191231151151\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test8285dc3e-637d-4d46-9695-adc39cbe7d2f-20200108144457\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test828aae03-9239-4938-a303-c23c42311878-20200102083419\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test84afd814-5098-49ab-af99-e50350b5898b-20200110211134\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test85b08563-b15f-4202-a0bc-f2bc2df2c71a-20200107053335\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test88aac268-c087-4481-b78e-99b920784a33-20200101084853\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test88dbd442-a8cc-4874-81a0-d3192c61df62-20191001224544\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test894dfb75-a00f-4f0c-894c-cae1c9846ad3-20200105051803\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test8d09bf4d-ee63-4ab1-a986-a4b802418403-20200111051447\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test8d4d652b-4f05-4e99-93dd-78b9a36b5c78-20191003203755\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test8de64739-43d8-4f84-af65-fdb3d0885288-20200108053543\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test8e324c65-a51d-4eeb-9ec8-d5f8662dc041-20191228165107\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test8e564580-8e53-4300-85f1-bf7f31dd37ff-20200107013348\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test8f458ca7-8898-4d58-b93d-bfb0c3da028c-20200109050310\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test901cd6ca-5565-4552-a3de-d204d01935c0-20200108083706\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test907b39e5-4008-4b55-93a0-18e9697b9cf3-20200108053817\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test90c2be7c-d7ec-4abf-9fad-fef90fc3ef4d-20191004022234\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test922db678-6ee8-43d5-86ff-6a86e132d332-20200107085231\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test93b88aec-5277-4b1b-910c-7008e972ce91-20200107013304\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test95a9104b-6cba-42d8-82ff-cc37e5ac44db-20200108081723\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test96da1605-19e0-46eb-9ce0-53e840f5e2cb-20200101111729\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test996066b2-7d29-400f-929b-e343a21046f7-20191231151212\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test99663fff-ed21-4a91-9687-1a6da2abb033-20200106084508\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test9eb5efa5-c3c1-4c13-80a6-11f5eba67372-20200108144852\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testa3791896-b1fc-491e-ba0d-aefcd8d9e52a-20200105083503\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testa37ff709-a078-45a0-8187-41733df8e101-20200109050003\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testa4c5fe4e-936e-4be1-a612-a331aff54a8c-20200111105055\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testa59bce1d-e32c-423d-a86e-945d4aeb98b4-20200107051821\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testa604c059-8279-4f4d-a354-eec27222a06c-20200111051514\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testa71fefb1-0d9c-4fb3-8d3d-5dcd12d72b77-20200103103221\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testa748013d-c5a6-44f9-88eb-43167207c742-20200111051402\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testaab67022-4f2b-420d-a06a-2c4045110cdf-20191229033144\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testacab9541-280f-4491-9f49-ac57653f0a07-20200105083839\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testad298437-0349-4cc7-88a9-d8aabcba9df1-20191002233431\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testadd68286-f9e0-4ab1-a526-d8f3cf0f054e-20200105084128\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testade4c52b-18f5-4b67-8e93-945358ce4f7d-20191007234259\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testae421c1d-0211-4ef2-b372-564ce8ad484a-20200110104035\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testafbbd8bf-aec5-48bf-8fea-73fa15ccc315-20191001224727\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testb15148bf-78d2-42d4-ad08-b3ad8fb4b122-20200101084759\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testb4237708-3688-40ea-85a2-275c05f4d100-20191228083519\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testb799a18f-be45-4c5c-8438-163ac2e1f1e7-20191004190529\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testb7cee88a-e5ac-4af4-99c8-7247020b00c3-20200105051201\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testb7df0d9a-27c0-4ca5-b692-08dd90387b98-20200111083443\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testbbf6bf32-4bd0-4381-b8f7-2658f585df4d-20191003203846\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testbeea1376-166a-4b1a-8923-c907cc9737d9-20200107013336\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testbf9154e9-6166-48c2-86fe-1f331be606d7-20200107051823\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc0d7c3c5-23b8-489c-a5e0-ae87c681b696-20200101083539\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc193f31a-5186-4e93-84f6-0e4ab87b73c1-20200107052937\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc1c7e8dc-fa8c-47d9-8305-de6d1451b939-20200101085248\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc1d0c917-e2ae-430c-a2ca-383fb0fda046-20191007235839\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc23a3fbb-6e95-4c0d-94fc-c8ab14dddf1c-20191231151117\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc2697630-6247-411a-94b3-c2974ad8cbee-20191007195417\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc466b80f-670f-4383-89b8-44e0d509fa20-20191002000516\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc5c8d9bd-75fa-4db3-9f34-5d7b7098584c-20191003203851\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc8b6d14b-a5db-48e0-bfad-a2818d432bea-20200104083443\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc933efa8-c553-4b93-884f-b7221d9ca789-20191228083750\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testcbe8ab80-46ef-49b1-a7bb-4e3d6e50e49f-20200104050811\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testccc0b5e6-9b0d-451a-8ac4-6f4af293b913-20200106092645\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testcec64786-04b1-487c-80ec-050da646fb1c-20191005123412\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testd104a52f-eba2-401d-8e7f-a841c90f7712-20191228083553\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testd724cea4-0d3c-4539-b2ff-be08fb23a67e-20200107083714\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testd8e60bac-27ff-4fba-90b8-732c9c5ff91c-20191228083751\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testd99db4a5-7683-4584-89ad-fefd711de284-20191004190210\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testd9b4309a-67bc-4cd8-ac47-094cb20ca6aa-20200101090202\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testda3320e0-28f2-4146-a002-e06296362711-20191004190115\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testda714121-3240-4253-90c3-48c43f115c90-20200102083419\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testdb357558-60b4-4ee3-9ec3-ba22c5d827fb-20191004020617\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testdc7230e9-df6d-4edd-a57c-ef7e0432c463-20191002011345\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testdccb59de-436f-4935-bed6-2e677dcaf36a-20200109111802\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testde985b23-9333-4f6e-a5e8-82025a38b2af-20200102083510\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Teste271da3e-cbcb-4ee7-8770-f297f414451f-20191003015540\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Teste4070edd-aec0-455d-8a79-aecdb7170b6d-20191007234642\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Teste42f351a-4da0-4f0d-93e9-ef1d98e06659-20200108083633\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Teste66ca23c-f4bf-4eb3-8418-139364d19e7d-20200107062643\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Teste78b1ab2-1380-48ab-9923-0276cdb7198b-20191001224742\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Teste8607e14-b4f8-472a-bd5b-893b8d9612e6-20200112045941\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Teste980b80e-3add-42c0-bc98-a84020b2d128-20200108101640\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Tested79dba9-2d38-4ea9-a01c-56e94b30ca7a-20191007195447\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testee9dcf5f-f7c4-4192-a8f4-28e9bc7d0f7c-20191001225005\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testefbb340a-b68b-4200-872b-d05e7d29f92d-20191007195432\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testf1fc0559-6740-48dd-9501-2b933c731d52-20200103083458\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testf41dfc97-bb51-4fba-86ca-a6f2695c415a-20200107050834\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testf5784447-83ed-4c00-8764-ea0f932aafa2-20200106085748\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testf6128ef6-c13c-420e-8088-0710888ce88b-20200109050003\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testf863ab2c-ada9-4646-84c7-1f83a82375d7-20191229033226\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testfac552a7-418f-4baa-8f51-d199ceff5c68-20200103050817\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testfb7be054-5c15-494f-822c-b64f9a36e2f3-20200105051753\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testfc5c7585-6c9a-4aa4-a7c4-1223a94e00c7-20200104083552\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.FileServer.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.FileServer.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.FleetDiagnostics\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.FleetDiagnostics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.FleetDiagnostics.Dev\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.FleetDiagnostics.Dev\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Geneva\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Geneva\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.KeyVault\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.KeyVault\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.KeyVault.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.KeyVault.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.LabServices\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.LabServices\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.LabServices.test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.LabServices.test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.Agent\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.Agent\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.Dev\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.Dev\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.Dev.INT\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.Dev.INT\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.Dev.SCALE\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.Dev.SCALE\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.Dev.TEST\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.Dev.TEST\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.GuestHealth\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.GuestHealth\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.DEV\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.DEV\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.INT\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.INT\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.SCALE\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.SCALE\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.TEST\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.TEST\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.INT.Dev\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.INT.Dev\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.SCALE.Dev\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.SCALE.Dev\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.TEST.Dev\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.TEST.Dev\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.WorkloadInsights.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.WorkloadInsights.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.WorkloadInsightsTest.newnamespace\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.WorkloadInsightsTest.newnamespace\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.Workloads\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.Workloads\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.Workloads.Dev\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.Workloads.Dev\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitoring.DependencyAgent\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitoring.DependencyAgent\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitoring.DependencyAgent.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitoring.DependencyAgent.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Networking.DNS\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Networking.DNS\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Networking.SDN\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Networking.SDN\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.NetworkWatcher\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.NetworkWatcher\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.NetworkWatcher.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.NetworkWatcher.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.OpenSSH\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.OpenSSH\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Performance.Diagnostics\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Performance.Diagnostics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Performance.Diagnostics.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Performance.Diagnostics.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.RecoveryServices\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.RecoveryServices.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices.SiteRecovery\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.RecoveryServices.SiteRecovery\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices.SiteRecovery2\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.RecoveryServices.SiteRecovery2\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices.WorkloadBackup\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.RecoveryServices.WorkloadBackup\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices.WorkloadBackup.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.RecoveryServices.WorkloadBackup.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.AntimalwareSignature\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.AntimalwareSignature\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.AntimalwareSignature.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.AntimalwareSignature.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.Dsms\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.Dsms\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.Dsms.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.Dsms.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.LinuxAttestation\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.LinuxAttestation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.LinuxTestAttestation\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.LinuxTestAttestation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.Monitoring\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.Monitoring\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.Monitoring.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.Monitoring.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.Monitoring.Testing\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.Monitoring.Testing\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.TestWindowsAttestation\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.TestWindowsAttestation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.WindowsAttestation\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.WindowsAttestation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.WinTestAttestation\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.WinTestAttestation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Sentinel.DnsExtension.Dev\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Sentinel.DnsExtension.Dev\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.ServiceFabric.MC\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.ServiceFabric.MC\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.ServiceFabric.MC.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.ServiceFabric.MC.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.SiteRecovery.Stage\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.SiteRecovery.Stage\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.SiteRecovery.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.SiteRecovery.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.SiteRecovery2.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.SiteRecovery2.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Test.Identity\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Test.Identity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WindowsFabric.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WindowsFabric.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.ReleasePipeTest\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.ReleasePipeTest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.ReleasePipeTest.INT\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.ReleasePipeTest.INT\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.ReleasePipeTest.TEST\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.ReleasePipeTest.TEST\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test1\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test2\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test2\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test3\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test3\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test4\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test4\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test5\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test5\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test5.INT\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test5.INT\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test5.TEST\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test5.TEST\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.VincentTest\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.VincentTest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.VincentTest2\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.VincentTest2\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.VincentTest3\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.VincentTest3\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.VincentTest4\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.VincentTest4\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.TestTest\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.TestTest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.TestTest.INT\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.TestTest.INT\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.TestTest.TEST\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.TestTest.TEST\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Windows.ReleasePipeTest.INT\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Windows.ReleasePipeTest.INT\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Windows.ReleasePipeTest.TEST\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Windows.ReleasePipeTest.TEST\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoring\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoring.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoringTest\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoringTest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureData\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureData\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureData.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureData.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.Canary\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights.Canary\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.Corp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights.Corp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.Linux.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights.Linux.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.LinuxTest\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights.LinuxTest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.Meya0206\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights.Meya0206\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.MeyaCorp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights.MeyaCorp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.Testing\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights.Testing\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureSecurity.JITAccess\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureSecurity.JITAccess\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.CloudBackup.Workload.Extension\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.CloudBackup.Workload.Extension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.CloudBackup.Workload.Extension.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.CloudBackup.Workload.Extension.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Compute\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Compute.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Compute.TestSar\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute.TestSar\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.CPlat.Core\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.CPlat.Core\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.CPlat.Core.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.CPlat.Core.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Dcsswe.Extensions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Dcsswe.Extensions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.EnterpriseCloud.Monitoring\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.EnterpriseCloud.Monitoring.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.EnterpriseCloud.Monitoring.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Golive.Extensions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Golive.Extensions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.GuestConfig.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.GuestConfig.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.GuestConfiguration\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.GuestConfiguration\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.GuestConfiguration.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.GuestConfiguration.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.GuestConfiguration.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.GuestConfiguration.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.HpcCompute\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.HpcCompute\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.HpcCompute.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.HpcCompute.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.HpcPack\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.HpcPack\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Interceptor\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Interceptor\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.M365\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.M365\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.M365SecurityConfiguration.Kevlar.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.M365SecurityConfiguration.Kevlar.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.ManagedIdentity\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.ManagedIdentity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.ManagedServices\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.ManagedServices\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.ManagedServices.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.ManagedServices.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.MonitoringAgent.Extension\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.MonitoringAgent.Extension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Network\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Network\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.OSTCExtensions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.OSTCExtensions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.OSTCExtensions.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.OSTCExtensions.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.OSTCExtensions.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.OSTCExtensions.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.OSTCExtensions.Testing\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.OSTCExtensions.Testing\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Powershell\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Powershell\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Powershell.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Powershell.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Powershell.Test01\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Powershell.Test01\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.SecurityManagement.Kevlar\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.SecurityManagement.Kevlar\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Sentinel.AzureMonitorAgentExtensions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Sentinel.AzureMonitorAgentExtensions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.SoftwareUpdateManagement\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.SoftwareUpdateManagement\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.SoftwareUpdateManagement.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.SoftwareUpdateManagement.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.SqlServer.Managability.IaaS.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.SqlServer.Managability.IaaS.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.SqlServer.Management\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.SqlServer.Management\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.SqlServer.Management.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.SqlServer.Management.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.SystemCenter\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.SystemCenter\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.SystemCenter.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.SystemCenter.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Test.Azure.Workloads\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Test.Azure.Workloads\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.TestSqlServer.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.TestSqlServer.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.ETWTraceListenerService\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.Azure.ETWTraceListenerService\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.RemoteDebug\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.Azure.RemoteDebug\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.RemoteDebug.Json\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.Azure.RemoteDebug.Json\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.ServiceProfiler\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.ServiceProfiler\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.Services\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.Services\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.WindowsAzure.DevTest\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.WindowsAzure.DevTest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.WindowsAzure.DevTest.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.WindowsAzure.DevTest.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.WindowsAzure.RemoteDebug\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.WindowsAzure.RemoteDebug\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.WindowsAzure.Test.RemoteDebug\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.WindowsAzure.Test.RemoteDebug\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Windows.Azure.Extensions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Windows.Azure.Extensions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Windows.AzureRemoteApp.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Windows.AzureRemoteApp.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Windows.RemoteDesktop\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Windows.RemoteDesktop\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.WindowsAdminCenter\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.WindowsAdminCenter\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.WindowsAdminCenter.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.WindowsAdminCenter.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.WindowsAzure.Compute\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.WindowsAzure.Compute\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.WindowsAzure.Compute.test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.WindowsAzure.Compute.test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.WVD\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.WVD\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoftagciuk\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoftagciuk\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoftazurecituswarp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoftazurecituswarp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftAzureSiteRecovery\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftAzureSiteRecovery\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftBizTalkServer\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftBizTalkServer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftCBLMariner\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftCBLMariner\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoftcmotest\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoftcmotest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoftcorporation1602274591143\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoftcorporation1602274591143\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoftcorporation1620407702632\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoftcorporation1620407702632\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftDynamicsAX\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftDynamicsAX\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftDynamicsGP\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftDynamicsGP\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftDynamicsNAV\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftDynamicsNAV\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoftfarmbeats\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoftfarmbeats\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftHybridCloudStorage\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftHybridCloudStorage\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftOSTC\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftOSTC\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftPowerBI\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftPowerBI\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftRServer\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftRServer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftSharePoint\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftSharePoint\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftSQLServer\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftSQLServer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftTestLinuxPPS\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftTestLinuxPPS\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftVisualStudio\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftVisualStudio\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftWindowsDesktop\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsDesktop\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftWindowsServer\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsServer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftWindowsServerHPCPack\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsServerHPCPack\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft_iot_edge\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft_iot_edge\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft_javaeeonazure_test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft_javaeeonazure_test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microstrategy\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microstrategy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"midasolutions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/midasolutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"middleware\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/middleware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"midfin\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/midfin\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"midvision\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/midvision\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mihupcommunicationspvtltd1599046998010\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mihupcommunicationspvtltd1599046998010\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mindcti\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mindcti\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"minio\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/minio\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"miraclelinux\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/miraclelinux\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"miracl_linux\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/miracl_linux\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"miri-infotech-pvt-ltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/miri-infotech-pvt-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mistio1601460379393\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mistio1601460379393\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mobilab\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mobilab\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"modern-systems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/modern-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"modexblockchaindatabase\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/modexblockchaindatabase\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"monetdbsolutions1611751313758\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/monetdbsolutions1611751313758\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"monitorapp1579029852605\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/monitorapp1579029852605\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"monitorcomputersystemsltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/monitorcomputersystemsltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"moogsoft\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/moogsoft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"morpheus-data\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/morpheus-data\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"moviemasher\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/moviemasher\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mriisoftllc1579457820427\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mriisoftllc1579457820427\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"msopentech\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/msopentech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mtnfog\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mtnfog\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"multima1643619641681\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/multima1643619641681\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"multisoft-ab\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/multisoft-ab\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mvp-systems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mvp-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mwg_azure\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mwg_azure\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mxhero\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mxhero\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"my-com\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/my-com\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"myarchinc1614657280935\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/myarchinc1614657280935\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"narrativescience\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/narrativescience\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nasuni\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nasuni\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nasunicorporation\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nasunicorporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"navicloudrsoftwarepteltd1601967280369\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/navicloudrsoftwarepteltd1601967280369\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ncache\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ncache\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ncbi\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ncbi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ncomputingglobalinc1604353053068\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ncomputingglobalinc1604353053068\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ndl\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ndl\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ndstriyelotomasyonsistemlerisanvetica1623147454601\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ndstriyelotomasyonsistemlerisanvetica1623147454601\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nebbiolo-technologies-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nebbiolo-technologies-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nec-technologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nec-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nefelinetworks1591201080882\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nefelinetworks1591201080882\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"neo4j\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/neo4j\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"neos\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/neos\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"neowaybusinesssolutions-4956350\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/neowaybusinesssolutions-4956350\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netapp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netapp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netatwork\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netatwork\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netfoundryinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netfoundryinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netgate\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netgate\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netikus-net-ltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netikus-net-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netiq\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netiq\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netka\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netka\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netmail\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netmail\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netscout\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netscout\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netspi\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netspi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netsweeper\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netsweeper\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"networksexchangetechnologyltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/networksexchangetechnologyltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netwrix\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netwrix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netx\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netx\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"neusoft-neteye\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/neusoft-neteye\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"newegginc1646343565758\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/newegginc1646343565758\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"newnetcommunicationtechnologies1589991852134\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/newnetcommunicationtechnologies1589991852134\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"NewRelic.Infrastructure.Extensions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/NewRelic.Infrastructure.Extensions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"newtglobalconsultingllc1581492268566\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/newtglobalconsultingllc1581492268566\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nextronic-5290868\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nextronic-5290868\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nginxinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nginxinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nice-it-management-solutions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nice-it-management-solutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nicepeopleatwork\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nicepeopleatwork\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nilespartnersinc1617691698386\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nilespartnersinc1617691698386\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"niolabs-5229713\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/niolabs-5229713\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nirvatosoftwarepvtltd1601368706606\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nirvatosoftwarepvtltd1601368706606\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nodejsapi\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nodejsapi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"noianetworklimited1584098036197\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/noianetworklimited1584098036197\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nokiaofamericacorporation1591716055441\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nokiaofamericacorporation1591716055441\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"noobaa\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/noobaa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"norcominformationtechnologygmbhcokgaa\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/norcominformationtechnologygmbhcokgaa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"noricumcloudsolutions1600524477681\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/noricumcloudsolutions1600524477681\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"norsync\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/norsync\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"northbridge-secure\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/northbridge-secure\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nozominetworks1582208017986\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nozominetworks1582208017986\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nri\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nri\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ntegralinc1586961136942\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ntegralinc1586961136942\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ntt-data-intellilink-corporation\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ntt-data-intellilink-corporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nttdata\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nttdata\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nttltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nttltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nuco-networks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nuco-networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"numbersbelieve\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/numbersbelieve\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"numtrallcpublisher\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/numtrallcpublisher\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nuxeo\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nuxeo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nvidia\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nvidia\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"o2mc-real-time-data-platform\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/o2mc-real-time-data-platform\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"objectivity-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/objectivity-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"objectivity1595351622261\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/objectivity1595351622261\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"oceanblue-cloud\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/oceanblue-cloud\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"OctopusDeploy.Tentacle\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/OctopusDeploy.Tentacle\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"odix\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/odix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"odysseuscomputationalsolutions1630242118741\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/odysseuscomputationalsolutions1630242118741\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"odysseyconsultantsltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/odysseyconsultantsltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"officeatwork-ag\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/officeatwork-ag\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"omega-software\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/omega-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"onapsis\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/onapsis\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"oncore_cloud_services-4944214\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/oncore_cloud_services-4944214\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"onexgroup\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/onexgroup\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"onspecta\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/onspecta\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ontology\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ontology\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"onyx-point-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/onyx-point-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"op5\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/op5\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"open-connect-systems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/open-connect-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"opencell\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/opencell\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"openlinkswcom-pago\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/openlinkswcom-pago\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"OpenLogic\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/OpenLogic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"openrefactoryinc1620140917523\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/openrefactoryinc1620140917523\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"openshotstudiosllc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/openshotstudiosllc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"opentext\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/opentext\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"openvpn\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/openvpn\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"opslogix\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/opslogix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"opswatinc1619007967290\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/opswatinc1619007967290\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"optimitiveslu1618320281443\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/optimitiveslu1618320281443\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"option3\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/option3\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Oracle\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Oracle\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"oraylis\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/oraylis\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"oraylisbi\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/oraylisbi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"orbs-network\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/orbs-network\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"oriana\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/oriana\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"orientdb\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/orientdb\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"oroinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/oroinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"osirium-ltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/osirium-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"osisoft\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/osisoft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"osnexus\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/osnexus\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"outpost24\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/outpost24\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"outsystems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/outsystems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ovaledge1618392232783\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ovaledge1618392232783\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pachyderminc1585170006545\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pachyderminc1585170006545\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pacteratechnologiesinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pacteratechnologiesinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"paladionnetworkspvtltd1606120508449\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/paladionnetworkspvtltd1606120508449\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"paloaltonetworks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/paloaltonetworks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"panopta\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/panopta\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"panorama-necto\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/panorama-necto\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"panzura-file-system\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/panzura-file-system\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"parabole\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/parabole\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"paralaxiomtechnologiesprivatelimited1596433357886\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/paralaxiomtechnologiesprivatelimited1596433357886\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"parallels\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/parallels\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"parasoft\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/parasoft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"parkersoftwarelimited1609786657569\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/parkersoftwarelimited1609786657569\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"parsec-for-teams\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/parsec-for-teams\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pasifikciptamandiri\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pasifikciptamandiri\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"passlogy\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/passlogy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"paxata\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/paxata\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pcman\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pcman\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"peer-software-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/peer-software-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"penta-security-systems-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/penta-security-systems-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"percona\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/percona\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"perforce\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/perforce\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"periscope-tech-4791746\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/periscope-tech-4791746\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"piolinkinc1582849368309\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/piolinkinc1582849368309\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pivotal\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pivotal\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pixitmedia1591611150480\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pixitmedia1591611150480\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"plesk\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/plesk\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pmsoftwareinternational1603102514882\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pmsoftwareinternational1603102514882\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pnop\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pnop\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"polarityioinc1628691850891\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/polarityioinc1628691850891\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"portalarchitects\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/portalarchitects\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"portsysinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/portsysinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"postgres-pro\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/postgres-pro\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"powerbireach\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/powerbireach\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"prakshepprivatelimited1619949827900\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/prakshepprivatelimited1619949827900\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"prasselsrl1645470739547\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/prasselsrl1645470739547\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"prestashop\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/prestashop\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"prestige_informatique-1090178\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/prestige_informatique-1090178\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"prime-strategy\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/prime-strategy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"primekey\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/primekey\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"primestrategynewyorkinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/primestrategynewyorkinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pro-vision\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pro-vision\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"probityinc1581611299345\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/probityinc1581611299345\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"process-one\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/process-one\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"processgold\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/processgold\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"procomputers\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/procomputers\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"procomputerssrl1594239153814\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/procomputerssrl1594239153814\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"profecia\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/profecia\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Profiler.AgentOrchestrationRefactor.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Profiler.AgentOrchestrationRefactor.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Profiler.Master.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Profiler.Master.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"profisee\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/profisee\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"progelspa\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/progelspa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"progresssoftwarecorporation\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/progresssoftwarecorporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"proliongmbh1628175060372\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/proliongmbh1628175060372\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"protegrityusainc1627404648458\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/protegrityusainc1627404648458\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"protiviti\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/protiviti\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"proventeq\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/proventeq\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ptc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ptc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ptsecurity\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ptsecurity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pulse-secure\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pulse-secure\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pulsesecuretechnologies1638179500151\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pulsesecuretechnologies1638179500151\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"puppet\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/puppet\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"puppeteersoy1601024480557\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/puppeteersoy1601024480557\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"PuppetLabs\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/PuppetLabs\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"PuppetLabs.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/PuppetLabs.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"purestorageinc1578960262525\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/purestorageinc1578960262525\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pydio\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pydio\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pyramidanalytics\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pyramidanalytics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"qlik\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/qlik\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"qnapsystemsinc1601352084032\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/qnapsystemsinc1601352084032\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"qore-technologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/qore-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"qs-solutions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/qs-solutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Qualys\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Qualys\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Qualys.LinuxAgent.GrayLabel\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Qualys.LinuxAgent.GrayLabel\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Qualys.WindowsAgent.GrayLabel\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Qualys.WindowsAgent.GrayLabel\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"qualysguard\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/qualysguard\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"quasardb\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/quasardb\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"qubole-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/qubole-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"quest\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/quest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"racknap\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/racknap\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rackwareinc1619403669255\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rackwareinc1619403669255\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"radiant-logic\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/radiant-logic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"radware\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/radware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"raincode\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/raincode\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rancher\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rancher\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rapid7\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rapid7\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Rapid7.InsightPlatform\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Rapid7.InsightPlatform\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rapidminer\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rapidminer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"raynetgmbh\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/raynetgmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"readymind\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/readymind\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"realm\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/realm\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"reblaze\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/reblaze\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"RedHat\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/RedHat\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"redhat-rhel\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/redhat-rhel\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"redpoint-global\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/redpoint-global\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"refactr\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/refactr\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"refinitiv\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/refinitiv\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"refinitiv-4807503\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/refinitiv-4807503\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"relevance-lab\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/relevance-lab\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"remotelearner\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/remotelearner\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"res\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/res\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"resco\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/resco\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"researchgraphptyltd1598252602128\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/researchgraphptyltd1598252602128\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"resemblesystems1582780358300\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/resemblesystems1582780358300\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"responder-corp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/responder-corp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"revolution-analytics\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/revolution-analytics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rhcsolutions1586957910818\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rhcsolutions1586957910818\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ribboncommunications\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ribboncommunications\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"RightScaleLinux\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/RightScaleLinux\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"RightScaleWindowsServer\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/RightScaleWindowsServer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rimo3\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rimo3\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ringsoftwareresearchanddevelopmentinc1578946072257\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ringsoftwareresearchanddevelopmentinc1578946072257\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"riverbed\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/riverbed\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"RiverbedTechnology\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/RiverbedTechnology\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rmgtechnologiesinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rmgtechnologiesinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rocketml\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rocketml\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rocketsoftware\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rocketsoftware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rohdeschwarzcybersecuritygmbh\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rohdeschwarzcybersecuritygmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rohdeschwarzcybersecuritysas\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rohdeschwarzcybersecuritysas\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"roktech\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/roktech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rsa-security-llc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rsa-security-llc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rsk-labs\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rsk-labs\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rstudio-5237862\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rstudio-5237862\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rtts\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rtts\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rubrik-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rubrik-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"runecastsolutionslimited1614186396822\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/runecastsolutionslimited1614186396822\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"s2ix\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/s2ix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"saama\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/saama\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"saasame-limited\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/saasame-limited\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"safesoftwareinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/safesoftwareinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"safeticatechnologiessro\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/safeticatechnologiessro\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"safetica_technologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/safetica_technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"safetoopen1585013318137\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/safetoopen1585013318137\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"saltsecurity1583264186232\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/saltsecurity1583264186232\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"saltsecurity1583264669848\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/saltsecurity1583264669848\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"saltstack\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/saltstack\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"samsung-sds\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/samsung-sds\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"samsungelectronics1632860607983\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/samsungelectronics1632860607983\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"samsungsds-cello\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/samsungsds-cello\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"samsungsds_sdbe\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/samsungsds_sdbe\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sandhatatechnologieslimited1615753438737\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sandhatatechnologieslimited1615753438737\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sap\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sap\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sapphiretechnologieslimited1611758579346\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sapphiretechnologieslimited1611758579346\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sas-institute-560503\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sas-institute-560503\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"scaidata\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/scaidata\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"scalearc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/scalearc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"scalegrid\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/scalegrid\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"scality\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/scality\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"schrockeninc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/schrockeninc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sci\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sci\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sciencelogicinc1622565452194\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sciencelogicinc1622565452194\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"scientiamobile\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/scientiamobile\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"scontainug1595751515785\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/scontainug1595751515785\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"scubaanalytics\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/scubaanalytics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"scylladb1631195365807\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/scylladb1631195365807\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"seaqserviciossas1579029207572\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/seaqserviciossas1579029207572\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"searchbloxsoftwareinc1594309037050\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/searchbloxsoftwareinc1594309037050\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"secureworks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/secureworks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"securityonionsolutions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/securityonionsolutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"securityonionsolutionsllc1624649205155\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/securityonionsolutionsllc1624649205155\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"securosis\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/securosis\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"seequentltd1585781751395\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/seequentltd1585781751395\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"semarchy\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/semarchy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"semperis\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/semperis\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"senhasegura\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/senhasegura\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"SentinelOne.LinuxExtension\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/SentinelOne.LinuxExtension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"SentinelOne.LinuxExtension.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/SentinelOne.LinuxExtension.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"SentinelOne.WindowsExtension\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/SentinelOne.WindowsExtension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"SentinelOne.WindowsExtension.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/SentinelOne.WindowsExtension.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sentriumsl\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sentriumsl\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sentry51llc1616686725591\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sentry51llc1616686725591\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sentryone\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sentryone\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sepiosystems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sepiosystems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"seppmailag\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/seppmailag\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"seraumo1620002807288\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/seraumo1620002807288\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"service-control-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/service-control-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sesamesoftwareinc1622125191447\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sesamesoftwareinc1622125191447\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"shadow-soft\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/shadow-soft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"shareshiftneeraj.test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/shareshiftneeraj.test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sightapps\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sightapps\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"signal-sciences\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/signal-sciences\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"silk\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/silk\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"silver-peak-systems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/silver-peak-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"simmachinesinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/simmachinesinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"simontelephonics\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/simontelephonics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"simpledatalabsinc1635791235920\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/simpledatalabsinc1635791235920\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"simplifierag\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/simplifierag\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"simpligov\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/simpligov\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sinefa\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sinefa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sinequa\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sinequa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sinequa1588262295885\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sinequa1588262295885\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"singapore-telecommunications-limited\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/singapore-telecommunications-limited\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sios_datakeeper\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sios_datakeeper\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"siportalinc1581539156321\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/siportalinc1581539156321\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sisenseltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sisenseltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Site24x7\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Site24x7\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sktelecom\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sktelecom\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"skyarc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/skyarc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"skyboxsecurity1585187406404\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/skyboxsecurity1585187406404\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"skylarkcloud\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/skylarkcloud\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"smartbearsoftware\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/smartbearsoftware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"smartmessage-autoflow\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/smartmessage-autoflow\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"snaplogic\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/snaplogic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"snapt-adc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/snapt-adc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"snips\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/snips\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"soasta\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/soasta\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"softnas\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/softnas\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"softwarecentralas1642687699196\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/softwarecentralas1642687699196\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"softwarehut\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/softwarehut\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"softwebsolutions-4518310\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/softwebsolutions-4518310\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"soha\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/soha\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"solanolabs\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/solanolabs\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"solar-security\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/solar-security\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"solarwinds\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/solarwinds\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"solvedevops1643693563360\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/solvedevops1643693563360\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sonicwall-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sonicwall-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sophos\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sophos\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sourcegearllc1616101262784\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sourcegearllc1616101262784\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"south-river-technologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/south-river-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"southrivertech1586314123192\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/southrivertech1586314123192\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"spacecurve\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/spacecurve\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"spaceliftinc1625499025476\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/spaceliftinc1625499025476\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"spagobi\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/spagobi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sparklinglogic\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sparklinglogic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"spectralcorelimited1619779004178\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/spectralcorelimited1619779004178\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"spektra\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/spektra\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sphere3d\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sphere3d\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"spideroakinc1588278690933\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/spideroakinc1588278690933\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"spirentcommunications1594084187199\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/spirentcommunications1594084187199\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"splunk\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/splunk\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sproutenetworks1593456311717\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sproutenetworks1593456311717\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sqlstream\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sqlstream\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"squadratechnologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/squadratechnologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"squaredup\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/squaredup\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"src-solution\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/src-solution\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ssh2appsltd1621588462715\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ssh2appsltd1621588462715\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stackato-platform-as-a-service\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stackato-platform-as-a-service\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Stackify.LinuxAgent.Extension\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Stackify.LinuxAgent.Extension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stackstorm\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stackstorm\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"startekfingerprintmatch\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/startekfingerprintmatch\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"startisolucoesemtecnologialtda1635263523201\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/startisolucoesemtecnologialtda1635263523201\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"starwind\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/starwind\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"StatusMonitor2.Diagnostics.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/StatusMonitor2.Diagnostics.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"StatusReport.Diagnostics.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/StatusReport.Diagnostics.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stealthbits\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stealthbits\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"steelhive\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/steelhive\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stonebondtechnologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stonebondtechnologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stonefly\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stonefly\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"storage_made_easy\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/storage_made_easy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stormshield\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stormshield\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"storone1594045543980\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/storone1594045543980\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"storreduce\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/storreduce\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"storwarespzoo1611743234900\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/storwarespzoo1611743234900\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"strangebee1595948424730\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/strangebee1595948424730\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"strataidentity1608323708170\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/strataidentity1608323708170\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stratis-group-ltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stratis-group-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stratodesk1611152769936\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stratodesk1611152769936\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stratumn\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stratumn\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"streamsets\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/streamsets\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"striim\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/striim\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stromasys\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stromasys\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"strongboxitllc1594816423884\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/strongboxitllc1594816423884\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"su\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/su\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"subscription.test.krsh\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/subscription.test.krsh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sumologic\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sumologic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sunatogmbh\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sunatogmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sunday\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sunday\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"SUSE\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/SUSE\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"SUSE.AzureHybridBenefit\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/SUSE.AzureHybridBenefit\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"swoopanalytics\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/swoopanalytics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sycom-technologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sycom-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sycompatechnologycompanyinc1588192103892\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sycompatechnologycompanyinc1588192103892\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.CloudWorkloadProtection\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.CloudWorkloadProtection\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.CloudWorkloadProtection.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.CloudWorkloadProtection.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.CloudWorkloadProtection.TestOnStage\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.CloudWorkloadProtection.TestOnStage\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.QA\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.QA\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.staging\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.staging\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.test.ru2.latest\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.test.ru2.latest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.test.ru2final\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.test.ru2final\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.test.ru2latest1\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.test.ru2latest1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.test.ru4mp1\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.test.ru4mp1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.test.ru4mp1.latest\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.test.ru4mp1.latest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.test.ru4mp1final\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.test.ru4mp1final\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"symanteccorporation\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/symanteccorporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"symantectest1\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/symantectest1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"synack-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/synack-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"syncfusion\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/syncfusion\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"syncfusionbigdataplatfor\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/syncfusionbigdataplatfor\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"synechron-technologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/synechron-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"synergixinc1585256339250\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/synergixinc1585256339250\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"synnexcorp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/synnexcorp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"syscomcomputerengineeringco1583913200141\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/syscomcomputerengineeringco1583913200141\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"syte\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/syte\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tableau\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tableau\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tactic\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tactic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"talari-networks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/talari-networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"talena-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/talena-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"talend\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/talend\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"talon\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/talon\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tamrinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tamrinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"taniuminc1646329360287\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/taniuminc1646329360287\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"targit\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/targit\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tata_communications\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tata_communications\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tavanttechnologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tavanttechnologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tavendo\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tavendo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"te-systems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/te-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"techdivision\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/techdivision\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"techlatest\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/techlatest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"technicheltd1606969724100\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/technicheltd1606969724100\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tecknolab\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tecknolab\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"telepat\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/telepat\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"teloscorporation\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/teloscorporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tempered-networks-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tempered-networks-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tenable\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tenable\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tensormakecorpdbaoneclickai1608247756082\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tensormakecorpdbaoneclickai1608247756082\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tenthlineinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tenthlineinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"teradata\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/teradata\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Teradici\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Teradici\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"teramindinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/teramindinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.Gemalto.SafeNet.ProtectV\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.Gemalto.SafeNet.ProtectV\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.Gemalto.SafeNet.ProtectV.Azure\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.Gemalto.SafeNet.ProtectV.Azure\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.HP.AppDefender\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.HP.AppDefender\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.Microsoft.VisualStudio.Services\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.Microsoft.VisualStudio.Services\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.NJHP.AppDefender\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.NJHP.AppDefender\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.SqlServer.Managability\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.SqlServer.Managability\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.SqlServer.Management\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.SqlServer.Management\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.SqlServer.Management.corext\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.SqlServer.Management.corext\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test1.NJHP.AppDefender\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test1.NJHP.AppDefender\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test3.Microsoft.VisualStudio.Services\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test3.Microsoft.VisualStudio.Services\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"testable1603721901088\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/testable1603721901088\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"testpro\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/testpro\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"test_test_mix3pptest0011614206850774\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/test_test_mix3pptest0011614206850774\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"test_test_mneela1628617140187\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/test_test_mneela1628617140187\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"test_test_pmc2pc1\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/test_test_pmc2pc1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thales-vormetric\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thales-vormetric\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thalesdiscplusainc1596561677238\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thalesdiscplusainc1596561677238\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thedatavaluefactoryltd1589348815922\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thedatavaluefactoryltd1589348815922\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thefreebsdfoundation\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thefreebsdfoundation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thehdfgroup1616725197741\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thehdfgroup1616725197741\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"theumag1596442827072\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/theumag1596442827072\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"things-board\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/things-board\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thingscareinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thingscareinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thinprintgmbh\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thinprintgmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thorntechnologiesllc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thorntechnologiesllc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thoughtspot-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thoughtspot-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"threatintelligenceptyltd1586824172898\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/threatintelligenceptyltd1586824172898\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tibco-software\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tibco-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tidal-migrations\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tidal-migrations\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tidalmediainc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tidalmediainc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tig\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tig\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tiger-technology\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tiger-technology\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tigergraph\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tigergraph\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"timextender\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/timextender\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tmaxsoft\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tmaxsoft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tmaxsoft1608612658335\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tmaxsoft1608612658335\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tomsawyersoftwarecorp1613579206342\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tomsawyersoftwarecorp1613579206342\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"topicus\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/topicus\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"torusware\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/torusware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"totemo\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/totemo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"townsend-security\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/townsend-security\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"transcendinformationinc1609918445926\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/transcendinformationinc1609918445926\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"transientxinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/transientxinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"transvault\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/transvault\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"trendmicro\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/trendmicro\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"TrendMicro.DeepSecurity.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/TrendMicro.DeepSecurity.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"TrendMicro.PortalProtect\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/TrendMicro.PortalProtect\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tresorit\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tresorit\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"trifacta\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/trifacta\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tripleblindinc1615730179432\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tripleblindinc1615730179432\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tripwire-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tripwire-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"truata1612259728221\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/truata1612259728221\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"truestack\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/truestack\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tryonsolutionsinc1596650621083\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tryonsolutionsinc1596650621083\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tsa-public-service\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tsa-public-service\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tunnelbiz\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tunnelbiz\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"turbonet\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/turbonet\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"turbonet1581982683964\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/turbonet1581982683964\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"twistlock\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/twistlock\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"typesafe\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/typesafe\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ubeeko\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ubeeko\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ubercloud\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ubercloud\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"uipath-5054924\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/uipath-5054924\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ulex\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ulex\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"unifi-software\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/unifi-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"unifiedstreaming1598872291606\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/unifiedstreaming1598872291606\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"uniprint-net\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/uniprint-net\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"unitrends\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/unitrends\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"unnisoft\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/unnisoft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"unravel-data\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/unravel-data\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"unscramblsingaporepteltd-4999260\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/unscramblsingaporepteltd-4999260\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"untangle\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/untangle\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"upsolver1594188634150\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/upsolver1594188634150\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"usp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/usp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"valohai\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/valohai\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"valtix\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/valtix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"varmournetworks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/varmournetworks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"varnish\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/varnish\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vastdata1650451243415\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vastdata1650451243415\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vatacommunicationsinc1581644208717\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vatacommunicationsinc1581644208717\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vaultive-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vaultive-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vbot\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vbot\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vcinityinc1587684340545\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vcinityinc1587684340545\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vectraaiinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vectraaiinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"veeam\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/veeam\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"velocitydb-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/velocitydb-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"velocloud\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/velocloud\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vembutechnologiespvtltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vembutechnologiespvtltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vemn\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vemn\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"veritas\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/veritas\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"versanetworks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/versanetworks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"versasec\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/versasec\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vidispine\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vidispine\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vidizmo\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vidizmo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vigyanlabs-innovations-pvt-ltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vigyanlabs-innovations-pvt-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vigyanlabsinc1581413676614\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vigyanlabsinc1581413676614\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"viptela\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/viptela\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vircom\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vircom\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"virtamovecorp1615909247913\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/virtamovecorp1615909247913\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"virtualpulsesro1607008728942\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/virtualpulsesro1607008728942\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"virtuozzointernationalgmbh1626704951469\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/virtuozzointernationalgmbh1626704951469\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"visualknowledgeshare1591795776234\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/visualknowledgeshare1591795776234\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"visualsoft-center\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/visualsoft-center\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vizixiotplatformretail001\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vizixiotplatformretail001\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vmlabinc1613642184700\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vmlabinc1613642184700\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vmturbo\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vmturbo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vmware-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vmware-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vnomicinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vnomicinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"voiceelements\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/voiceelements\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"voleatechgmbh1636966911943\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/voleatechgmbh1636966911943\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"volterraedgeservices\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/volterraedgeservices\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Vormetric\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Vormetric\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vscconsultingptyltd1608535888097\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vscconsultingptyltd1608535888097\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vte\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vte\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vu-llc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vu-llc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vunetsystemsprivatelimited1646716402131\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vunetsystemsprivatelimited1646716402131\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vyulabsinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vyulabsinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"WAD2AI.Diagnostics.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/WAD2AI.Diagnostics.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"WAD2EventHub.Diagnostics.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/WAD2EventHub.Diagnostics.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wallarm\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wallarm\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wallix\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wallix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wandisco\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wandisco\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wanos\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wanos\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wanpath-dba-myworkdrive\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wanpath-dba-myworkdrive\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wardy-it-solutions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wardy-it-solutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"warewolf-esb\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/warewolf-esb\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"watchguard-technologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/watchguard-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"webaloinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/webaloinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"websense-apmailpe\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/websense-apmailpe\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"websoft9inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/websoft9inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wedoitllc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wedoitllc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"westernoceansoftwaresprivatelimited\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/westernoceansoftwaresprivatelimited\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wherescapesoftware\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wherescapesoftware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"winmagic_securedoc_cloudvm\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/winmagic_securedoc_cloudvm\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wintellisys-inc-4561600\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wintellisys-inc-4561600\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"witfooinc1590167223060\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/witfooinc1590167223060\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wmspanel\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wmspanel\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wood1595864497589\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wood1595864497589\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"workshare-technology\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/workshare-technology\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"world-programming\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/world-programming\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"worxogo\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/worxogo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wowza\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wowza\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"xcontentptyltd-1329748\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/xcontentptyltd-1329748\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"xendata-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/xendata-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"xfinityinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/xfinityinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"xilinx\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/xilinx\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"xoriantcorporationazxteam1\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/xoriantcorporationazxteam1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"xoriantsolutionspvtltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/xoriantsolutionspvtltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"xtremedata\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/xtremedata\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"xyzrd-group-ou\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/xyzrd-group-ou\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"yaseensmarket1645449809728\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/yaseensmarket1645449809728\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"yellowfin\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/yellowfin\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"yellowfininternationalptyltd1616363974066\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/yellowfininternationalptyltd1616363974066\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"yokogawarentalleasecorporation\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/yokogawarentalleasecorporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"your-shop-online\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/your-shop-online\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"z1\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/z1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"z4it-aps\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/z4it-aps\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zabbix\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zabbix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zend\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zend\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zenterasystemsinc1605292453288\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zenterasystemsinc1605292453288\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zerodown_software\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zerodown_software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zerto\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zerto\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zettalane_systems-5254599\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zettalane_systems-5254599\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zevenet\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zevenet\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zilliz\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zilliz\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zoomdata\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zoomdata\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zscaler\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zscaler\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zscaler1579058425289\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zscaler1579058425289\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zultysinc1596831546163\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zultysinc1596831546163\"\r\n }\r\n]", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/southeastasia/publishers/Microsoft.Compute/artifacttypes/vmextension/types?api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9wdWJsaXNoZXJzL01pY3Jvc29mdC5Db21wdXRlL2FydGlmYWN0dHlwZXMvdm1leHRlbnNpb24vdHlwZXM/YXBpLXZlcnNpb249MjAyMS0xMS0wMQ==", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Compute/locations/southeastasia/publishers/Microsoft.Compute/artifacttypes/vmextension/types?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9wdWJsaXNoZXJzL01pY3Jvc29mdC5Db21wdXRlL2FydGlmYWN0dHlwZXMvdm1leHRlbnNpb24vdHlwZXM/YXBpLXZlcnNpb249MjAyMS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8d56546a-95e4-4a2e-9793-ce8cdb4d611c" + "7962ddbd-b113-4dea-b408-4a8701784462" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ] }, "ResponseHeaders": { @@ -2261,35 +2261,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/ListVMExtensionTypes3Min;17999,Microsoft.Compute/ListVMExtensionTypes30Min;22499" + "Microsoft.Compute/ListVMExtensionTypes3Min;17999,Microsoft.Compute/ListVMExtensionTypes30Min;22498" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "1f3ad383-bb66-4279-b2a8-fbbcd093a7e3_132678318374571324" + "1f3ad383-bb66-4279-b2a8-fbbcd093a7e3_132836337789816871" ], "x-ms-request-id": [ - "b5f29101-23e0-4b8e-8e08-7c04cde17cf2" + "7897dbc4-04f9-4a11-8d0b-88b1073d16a1" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11992" ], "x-ms-correlation-request-id": [ - "2e380b29-cb2c-44b1-a7c9-bb3f38d8e7fd" + "b4c51191-3641-4733-9966-e93cd6f7c035" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T210517Z:2e380b29-cb2c-44b1-a7c9-bb3f38d8e7fd" + "JIOINDIAWEST:20220517T040739Z:b4c51191-3641-4733-9966-e93cd6f7c035" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 24 Feb 2022 21:05:17 GMT" + "Tue, 17 May 2022 04:07:39 GMT" ], "Content-Length": [ "1089" @@ -2301,26 +2301,26 @@ "-1" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"BGInfo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"CustomScriptExtension\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"JsonADDomainExtension\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/JsonADDomainExtension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"VMAccessAgent\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/VMAccessAgent\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"BGInfo\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"CustomScriptExtension\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"JsonADDomainExtension\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/JsonADDomainExtension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"VMAccessAgent\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/VMAccessAgent\"\r\n }\r\n]", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/southeastasia/publishers/Microsoft.Compute/artifacttypes/vmextension/types?api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9wdWJsaXNoZXJzL01pY3Jvc29mdC5Db21wdXRlL2FydGlmYWN0dHlwZXMvdm1leHRlbnNpb24vdHlwZXM/YXBpLXZlcnNpb249MjAyMS0xMS0wMQ==", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Compute/locations/southeastasia/publishers/Microsoft.Compute/artifacttypes/vmextension/types?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9wdWJsaXNoZXJzL01pY3Jvc29mdC5Db21wdXRlL2FydGlmYWN0dHlwZXMvdm1leHRlbnNpb24vdHlwZXM/YXBpLXZlcnNpb249MjAyMS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "561ae606-3a8a-4182-8dc9-1d51bc11b4bb" + "be79c9fe-1f81-4fea-a836-2d25fe26c65c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ] }, "ResponseHeaders": { @@ -2331,35 +2331,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/ListVMExtensionTypes3Min;17999,Microsoft.Compute/ListVMExtensionTypes30Min;22498" + "Microsoft.Compute/ListVMExtensionTypes3Min;17999,Microsoft.Compute/ListVMExtensionTypes30Min;22497" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "1f3ad383-bb66-4279-b2a8-fbbcd093a7e3_132678318374571324" + "1f3ad383-bb66-4279-b2a8-fbbcd093a7e3_132836337789816871" ], "x-ms-request-id": [ - "17688f1c-ee6b-44bf-b160-0ddef6f0fceb" + "30173471-ef0e-4d92-a77b-8ec0783ac003" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11979" + "11977" ], "x-ms-correlation-request-id": [ - "9dfefe8e-454b-469d-8f83-b465f5b13443" + "6676919a-b842-418a-af8d-ec2c7c63dbc1" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T211000Z:9dfefe8e-454b-469d-8f83-b465f5b13443" + "JIOINDIAWEST:20220517T041233Z:6676919a-b842-418a-af8d-ec2c7c63dbc1" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 24 Feb 2022 21:09:59 GMT" + "Tue, 17 May 2022 04:12:32 GMT" ], "Content-Length": [ "1089" @@ -2371,26 +2371,26 @@ "-1" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"BGInfo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"CustomScriptExtension\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"JsonADDomainExtension\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/JsonADDomainExtension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"VMAccessAgent\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/VMAccessAgent\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"BGInfo\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"CustomScriptExtension\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"JsonADDomainExtension\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/JsonADDomainExtension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"VMAccessAgent\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/VMAccessAgent\"\r\n }\r\n]", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/southeastasia/publishers/Microsoft.Compute/artifacttypes/vmextension/types/BGInfo/versions?api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9wdWJsaXNoZXJzL01pY3Jvc29mdC5Db21wdXRlL2FydGlmYWN0dHlwZXMvdm1leHRlbnNpb24vdHlwZXMvQkdJbmZvL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMjEtMTEtMDE=", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Compute/locations/southeastasia/publishers/Microsoft.Compute/artifacttypes/vmextension/types/BGInfo/versions?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9wdWJsaXNoZXJzL01pY3Jvc29mdC5Db21wdXRlL2FydGlmYWN0dHlwZXMvdm1leHRlbnNpb24vdHlwZXMvQkdJbmZvL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMjEtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8d56546a-95e4-4a2e-9793-ce8cdb4d611c" + "7962ddbd-b113-4dea-b408-4a8701784462" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ] }, "ResponseHeaders": { @@ -2401,38 +2401,38 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/ListVMExtensions3Min;9999,Microsoft.Compute/ListVMExtensions30Min;21999" + "Microsoft.Compute/ListVMExtensions3Min;9999,Microsoft.Compute/ListVMExtensions30Min;21995" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "1f3ad383-bb66-4279-b2a8-fbbcd093a7e3_132678318374571324" + "1f3ad383-bb66-4279-b2a8-fbbcd093a7e3_132836337789816871" ], "x-ms-request-id": [ - "b840b167-6966-4cb4-906c-73177df8a7c6" + "e0337666-74c6-47f7-b506-92f37cc56bfc" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11991" ], "x-ms-correlation-request-id": [ - "61218c71-3a4e-4bf3-a7c2-43b17235ffab" + "98c12e54-1ff4-468a-8d40-0b145b735100" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T210518Z:61218c71-3a4e-4bf3-a7c2-43b17235ffab" + "JIOINDIAWEST:20220517T040739Z:98c12e54-1ff4-468a-8d40-0b145b735100" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 24 Feb 2022 21:05:17 GMT" + "Tue, 17 May 2022 04:07:39 GMT" ], "Content-Length": [ - "1589" + "1856" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2441,26 +2441,26 @@ "-1" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1.0\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo/Versions/1.0\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1.0.1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo/Versions/1.0.1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1.1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo/Versions/1.1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1.2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo/Versions/1.2\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1.2.2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo/Versions/1.2.2\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"2.1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo/Versions/2.1\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1.0\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo/Versions/1.0\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1.0.1\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo/Versions/1.0.1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1.1\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo/Versions/1.1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1.2\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo/Versions/1.2\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1.2.2\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo/Versions/1.2.2\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"2.1\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo/Versions/2.1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"2.2.2\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo/Versions/2.2.2\"\r\n }\r\n]", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/southeastasia/publishers/Microsoft.Compute/artifacttypes/vmextension/types/BGInfo/versions?api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9wdWJsaXNoZXJzL01pY3Jvc29mdC5Db21wdXRlL2FydGlmYWN0dHlwZXMvdm1leHRlbnNpb24vdHlwZXMvQkdJbmZvL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMjEtMTEtMDE=", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Compute/locations/southeastasia/publishers/Microsoft.Compute/artifacttypes/vmextension/types/BGInfo/versions?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9wdWJsaXNoZXJzL01pY3Jvc29mdC5Db21wdXRlL2FydGlmYWN0dHlwZXMvdm1leHRlbnNpb24vdHlwZXMvQkdJbmZvL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMjEtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "561ae606-3a8a-4182-8dc9-1d51bc11b4bb" + "be79c9fe-1f81-4fea-a836-2d25fe26c65c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ] }, "ResponseHeaders": { @@ -2471,38 +2471,38 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/ListVMExtensions3Min;9999,Microsoft.Compute/ListVMExtensions30Min;21996" + "Microsoft.Compute/ListVMExtensions3Min;9999,Microsoft.Compute/ListVMExtensions30Min;21992" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "1f3ad383-bb66-4279-b2a8-fbbcd093a7e3_132678318374571324" + "1f3ad383-bb66-4279-b2a8-fbbcd093a7e3_132836337789816871" ], "x-ms-request-id": [ - "23038294-7ce7-4b20-b7ac-d899ef4a3e8b" + "90a8b33e-ce6c-4362-8336-b68ab2e2e978" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11978" + "11976" ], "x-ms-correlation-request-id": [ - "be6b023b-5575-48e8-a2be-a10c4729aba0" + "bd94d59c-63b8-4605-a367-6923456f6e7c" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T211001Z:be6b023b-5575-48e8-a2be-a10c4729aba0" + "JIOINDIAWEST:20220517T041233Z:bd94d59c-63b8-4605-a367-6923456f6e7c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 24 Feb 2022 21:10:00 GMT" + "Tue, 17 May 2022 04:12:32 GMT" ], "Content-Length": [ - "1589" + "1856" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2511,26 +2511,26 @@ "-1" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1.0\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo/Versions/1.0\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1.0.1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo/Versions/1.0.1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1.1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo/Versions/1.1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1.2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo/Versions/1.2\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1.2.2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo/Versions/1.2.2\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"2.1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo/Versions/2.1\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1.0\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo/Versions/1.0\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1.0.1\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo/Versions/1.0.1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1.1\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo/Versions/1.1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1.2\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo/Versions/1.2\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1.2.2\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo/Versions/1.2.2\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"2.1\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo/Versions/2.1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"2.2.2\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo/Versions/2.2.2\"\r\n }\r\n]", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Compute/virtualMachines/PSTestVMdbbbe1/extensions/BGInfo?api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZGJiYmUyY2EvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy9QU1Rlc3RWTWRiYmJlMS9leHRlbnNpb25zL0JHSW5mbz9hcGktdmVyc2lvbj0yMDIxLTExLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.Compute/virtualMachines/PSTestVM9e3871/extensions/BGInfo?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOWUzODczMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy9QU1Rlc3RWTTllMzg3MS9leHRlbnNpb25zL0JHSW5mbz9hcGktdmVyc2lvbj0yMDIxLTExLTAx", "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\": \"southeastasia\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"BGInfo\",\r\n \"typeHandlerVersion\": \"2.2\",\r\n \"autoUpgradeMinorVersion\": true\r\n },\r\n \"location\": \"southeastasia\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "8d56546a-95e4-4a2e-9793-ce8cdb4d611c" + "7962ddbd-b113-4dea-b408-4a8701784462" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2547,19 +2547,19 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/southeastasia/operations/3026f771-db2f-4e40-83a0-23a7639ea658?p=34dc709c-01b2-42c4-84a2-256a9734610d&api-version=2021-11-01" + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Compute/locations/southeastasia/operations/68153832-799f-41e0-a63e-fae2794b86ff?p=e484ceca-6435-4a7f-b125-3d82e6b12014&api-version=2021-11-01" ], "Azure-AsyncNotification": [ "Enabled" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/UpdateVM3Min;239,Microsoft.Compute/UpdateVM30Min;1199" + "Microsoft.Compute/UpdateVM3Min;239,Microsoft.Compute/UpdateVM30Min;1198" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "3026f771-db2f-4e40-83a0-23a7639ea658" + "68153832-799f-41e0-a63e-fae2794b86ff" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -2569,16 +2569,16 @@ "1198" ], "x-ms-correlation-request-id": [ - "c9c5bc12-a1c0-4e8d-82b8-d01803cf0b1c" + "62b8932c-02e4-4bf3-8b6f-ac08ec1e1b47" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T210523Z:c9c5bc12-a1c0-4e8d-82b8-d01803cf0b1c" + "JIOINDIAWEST:20220517T040743Z:62b8932c-02e4-4bf3-8b6f-ac08ec1e1b47" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 24 Feb 2022 21:05:23 GMT" + "Tue, 17 May 2022 04:07:42 GMT" ], "Content-Length": [ "484" @@ -2590,23 +2590,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"BGInfo\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Compute/virtualMachines/PSTestVMdbbbe1/extensions/BGInfo\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"southeastasia\",\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}", + "ResponseBody": "{\r\n \"name\": \"BGInfo\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.Compute/virtualMachines/PSTestVM9e3871/extensions/BGInfo\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Creating\",\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"BGInfo\",\r\n \"typeHandlerVersion\": \"2.2\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/southeastasia/operations/3026f771-db2f-4e40-83a0-23a7639ea658?p=34dc709c-01b2-42c4-84a2-256a9734610d&api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzMwMjZmNzcxLWRiMmYtNGU0MC04M2EwLTIzYTc2MzllYTY1OD9wPTM0ZGM3MDljLTAxYjItNDJjNC04NGEyLTI1NmE5NzM0NjEwZCZhcGktdmVyc2lvbj0yMDIxLTExLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Compute/locations/southeastasia/operations/68153832-799f-41e0-a63e-fae2794b86ff?p=e484ceca-6435-4a7f-b125-3d82e6b12014&api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzY4MTUzODMyLTc5OWYtNDFlMC1hNjNlLWZhZTI3OTRiODZmZj9wPWU0ODRjZWNhLTY0MzUtNGE3Zi1iMTI1LTNkODJlNmIxMjAxNCZhcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8d56546a-95e4-4a2e-9793-ce8cdb4d611c" + "7962ddbd-b113-4dea-b408-4a8701784462" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ] }, "ResponseHeaders": { @@ -2617,32 +2617,32 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperation3Min;14995,Microsoft.Compute/GetOperation30Min;29991" + "Microsoft.Compute/GetOperation3Min;14995,Microsoft.Compute/GetOperation30Min;29981" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d4d758d9-a11b-42e0-a018-c2b41957501f" + "f185624a-ca31-4f93-a5f3-2782b662669f" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11990" ], "x-ms-correlation-request-id": [ - "d860c251-480b-42ba-a6cc-d07d60053af9" + "42a0801c-12c2-41be-bef3-f8cd8cd43dcb" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T210554Z:d860c251-480b-42ba-a6cc-d07d60053af9" + "JIOINDIAWEST:20220517T040813Z:42a0801c-12c2-41be-bef3-f8cd8cd43dcb" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 24 Feb 2022 21:05:53 GMT" + "Tue, 17 May 2022 04:08:13 GMT" ], "Content-Length": [ "134" @@ -2654,23 +2654,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-02-24T16:05:22.3245935-05:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"3026f771-db2f-4e40-83a0-23a7639ea658\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2022-05-17T09:37:42.4913805+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"68153832-799f-41e0-a63e-fae2794b86ff\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/southeastasia/operations/3026f771-db2f-4e40-83a0-23a7639ea658?p=34dc709c-01b2-42c4-84a2-256a9734610d&api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzMwMjZmNzcxLWRiMmYtNGU0MC04M2EwLTIzYTc2MzllYTY1OD9wPTM0ZGM3MDljLTAxYjItNDJjNC04NGEyLTI1NmE5NzM0NjEwZCZhcGktdmVyc2lvbj0yMDIxLTExLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Compute/locations/southeastasia/operations/68153832-799f-41e0-a63e-fae2794b86ff?p=e484ceca-6435-4a7f-b125-3d82e6b12014&api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzY4MTUzODMyLTc5OWYtNDFlMC1hNjNlLWZhZTI3OTRiODZmZj9wPWU0ODRjZWNhLTY0MzUtNGE3Zi1iMTI1LTNkODJlNmIxMjAxNCZhcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8d56546a-95e4-4a2e-9793-ce8cdb4d611c" + "7962ddbd-b113-4dea-b408-4a8701784462" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ] }, "ResponseHeaders": { @@ -2681,32 +2681,32 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperation3Min;14994,Microsoft.Compute/GetOperation30Min;29990" + "Microsoft.Compute/GetOperation3Min;14995,Microsoft.Compute/GetOperation30Min;29980" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "519cab23-63d5-49ba-aeab-d6bd9be00d84" + "dc1269ae-8fd8-44e6-8291-204fdafd1db7" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11989" ], "x-ms-correlation-request-id": [ - "dbe70527-dc9c-4fa8-ab19-0a65b9c72322" + "1c834243-6928-41c8-ae0e-3e5f18e4786c" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T210624Z:dbe70527-dc9c-4fa8-ab19-0a65b9c72322" + "JIOINDIAWEST:20220517T040843Z:1c834243-6928-41c8-ae0e-3e5f18e4786c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 24 Feb 2022 21:06:23 GMT" + "Tue, 17 May 2022 04:08:43 GMT" ], "Content-Length": [ "134" @@ -2718,23 +2718,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-02-24T16:05:22.3245935-05:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"3026f771-db2f-4e40-83a0-23a7639ea658\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2022-05-17T09:37:42.4913805+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"68153832-799f-41e0-a63e-fae2794b86ff\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/southeastasia/operations/3026f771-db2f-4e40-83a0-23a7639ea658?p=34dc709c-01b2-42c4-84a2-256a9734610d&api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzMwMjZmNzcxLWRiMmYtNGU0MC04M2EwLTIzYTc2MzllYTY1OD9wPTM0ZGM3MDljLTAxYjItNDJjNC04NGEyLTI1NmE5NzM0NjEwZCZhcGktdmVyc2lvbj0yMDIxLTExLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Compute/locations/southeastasia/operations/68153832-799f-41e0-a63e-fae2794b86ff?p=e484ceca-6435-4a7f-b125-3d82e6b12014&api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzY4MTUzODMyLTc5OWYtNDFlMC1hNjNlLWZhZTI3OTRiODZmZj9wPWU0ODRjZWNhLTY0MzUtNGE3Zi1iMTI1LTNkODJlNmIxMjAxNCZhcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8d56546a-95e4-4a2e-9793-ce8cdb4d611c" + "7962ddbd-b113-4dea-b408-4a8701784462" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ] }, "ResponseHeaders": { @@ -2745,32 +2745,32 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperation3Min;14994,Microsoft.Compute/GetOperation30Min;29989" + "Microsoft.Compute/GetOperation3Min;14994,Microsoft.Compute/GetOperation30Min;29979" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "1a9a0e31-bb7d-4471-a6fd-4358b76bdc29" + "ffda3f77-0710-4743-bbc8-f0575086282f" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11988" ], "x-ms-correlation-request-id": [ - "00fdbce9-03b4-4120-a049-7cbf5919c6af" + "e3292a69-e7e6-42ea-ada4-d68ec353c67b" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T210654Z:00fdbce9-03b4-4120-a049-7cbf5919c6af" + "JIOINDIAWEST:20220517T040913Z:e3292a69-e7e6-42ea-ada4-d68ec353c67b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 24 Feb 2022 21:06:54 GMT" + "Tue, 17 May 2022 04:09:13 GMT" ], "Content-Length": [ "134" @@ -2782,23 +2782,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-02-24T16:05:22.3245935-05:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"3026f771-db2f-4e40-83a0-23a7639ea658\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2022-05-17T09:37:42.4913805+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"68153832-799f-41e0-a63e-fae2794b86ff\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/southeastasia/operations/3026f771-db2f-4e40-83a0-23a7639ea658?p=34dc709c-01b2-42c4-84a2-256a9734610d&api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzMwMjZmNzcxLWRiMmYtNGU0MC04M2EwLTIzYTc2MzllYTY1OD9wPTM0ZGM3MDljLTAxYjItNDJjNC04NGEyLTI1NmE5NzM0NjEwZCZhcGktdmVyc2lvbj0yMDIxLTExLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Compute/locations/southeastasia/operations/68153832-799f-41e0-a63e-fae2794b86ff?p=e484ceca-6435-4a7f-b125-3d82e6b12014&api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzY4MTUzODMyLTc5OWYtNDFlMC1hNjNlLWZhZTI3OTRiODZmZj9wPWU0ODRjZWNhLTY0MzUtNGE3Zi1iMTI1LTNkODJlNmIxMjAxNCZhcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8d56546a-95e4-4a2e-9793-ce8cdb4d611c" + "7962ddbd-b113-4dea-b408-4a8701784462" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ] }, "ResponseHeaders": { @@ -2809,32 +2809,96 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperation3Min;14993,Microsoft.Compute/GetOperation30Min;29987" + "Microsoft.Compute/GetOperation3Min;14993,Microsoft.Compute/GetOperation30Min;29977" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "3def6897-7366-4436-afe8-bfcff0c6ccbc" + "a0fb4753-a794-4cfe-a1b3-97bb38589155" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "11987" + ], + "x-ms-correlation-request-id": [ + "6d785b4d-fb4f-492b-83da-2c6faf2f1bd0" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220517T040944Z:6d785b4d-fb4f-492b-83da-2c6faf2f1bd0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 17 May 2022 04:09:43 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2022-05-17T09:37:42.4913805+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"68153832-799f-41e0-a63e-fae2794b86ff\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Compute/locations/southeastasia/operations/68153832-799f-41e0-a63e-fae2794b86ff?p=e484ceca-6435-4a7f-b125-3d82e6b12014&api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzY4MTUzODMyLTc5OWYtNDFlMC1hNjNlLWZhZTI3OTRiODZmZj9wPWU0ODRjZWNhLTY0MzUtNGE3Zi1iMTI1LTNkODJlNmIxMjAxNCZhcGktdmVyc2lvbj0yMDIxLTExLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7962ddbd-b113-4dea-b408-4a8701784462" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperation3Min;14992,Microsoft.Compute/GetOperation30Min;29976" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "37fee0d1-f94e-4166-8f60-241e37c61e5b" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11986" ], "x-ms-correlation-request-id": [ - "1886a5f2-8256-433f-a5b9-dd0b2bb1d520" + "1e9c8c58-f9ee-4310-bb2b-877adf97a812" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T210725Z:1886a5f2-8256-433f-a5b9-dd0b2bb1d520" + "JIOINDIAWEST:20220517T041014Z:1e9c8c58-f9ee-4310-bb2b-877adf97a812" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 24 Feb 2022 21:07:24 GMT" + "Tue, 17 May 2022 04:10:13 GMT" ], "Content-Length": [ "184" @@ -2846,23 +2910,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-02-24T16:05:22.3245935-05:00\",\r\n \"endTime\": \"2022-02-24T16:07:17.4819597-05:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"3026f771-db2f-4e40-83a0-23a7639ea658\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2022-05-17T09:37:42.4913805+05:30\",\r\n \"endTime\": \"2022-05-17T09:39:57.5525556+05:30\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"68153832-799f-41e0-a63e-fae2794b86ff\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Compute/virtualMachines/PSTestVMdbbbe1/extensions/BGInfo?api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZGJiYmUyY2EvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy9QU1Rlc3RWTWRiYmJlMS9leHRlbnNpb25zL0JHSW5mbz9hcGktdmVyc2lvbj0yMDIxLTExLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.Compute/virtualMachines/PSTestVM9e3871/extensions/BGInfo?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOWUzODczMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy9QU1Rlc3RWTTllMzg3MS9leHRlbnNpb25zL0JHSW5mbz9hcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8d56546a-95e4-4a2e-9793-ce8cdb4d611c" + "7962ddbd-b113-4dea-b408-4a8701784462" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ] }, "ResponseHeaders": { @@ -2873,32 +2937,32 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/LowCostGet3Min;3994,Microsoft.Compute/LowCostGet30Min;31989" + "Microsoft.Compute/LowCostGet3Min;3988,Microsoft.Compute/LowCostGet30Min;31881" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "51e7bd46-4f73-4756-bf40-128cbe5bdc1b" + "9bcd5884-b0ec-4bcc-a1c0-c5c44c576ee0" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "11985" ], "x-ms-correlation-request-id": [ - "d4354434-c9d4-4967-bf4f-c698046cb7dd" + "3f66b083-f39c-4a73-b3f3-041017c465df" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T210725Z:d4354434-c9d4-4967-bf4f-c698046cb7dd" + "JIOINDIAWEST:20220517T041014Z:3f66b083-f39c-4a73-b3f3-041017c465df" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 24 Feb 2022 21:07:25 GMT" + "Tue, 17 May 2022 04:10:13 GMT" ], "Content-Length": [ "485" @@ -2910,26 +2974,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"BGInfo\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Compute/virtualMachines/PSTestVMdbbbe1/extensions/BGInfo\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"southeastasia\",\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}", + "ResponseBody": "{\r\n \"name\": \"BGInfo\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.Compute/virtualMachines/PSTestVM9e3871/extensions/BGInfo\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"BGInfo\",\r\n \"typeHandlerVersion\": \"2.2\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Compute/virtualMachines/PSTestVMdbbbe12?api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZGJiYmUyY2EvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy9QU1Rlc3RWTWRiYmJlMTI/YXBpLXZlcnNpb249MjAyMS0xMS0wMQ==", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.Compute/virtualMachines/PSTestVM9e38712?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOWUzODczMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy9QU1Rlc3RWTTllMzg3MTI/YXBpLXZlcnNpb249MjAyMS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "77f90b5a-f159-493d-b69d-8ebea25d7908" + "e40097cf-a0f8-4218-9290-81bba62b5d29" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ] }, "ResponseHeaders": { @@ -2943,13 +3007,13 @@ "gateway" ], "x-ms-request-id": [ - "163f17ed-e5c8-49eb-9a46-daa095ca7727" + "708961c2-2099-47f0-8fa1-ba8e3e487119" ], "x-ms-correlation-request-id": [ - "163f17ed-e5c8-49eb-9a46-daa095ca7727" + "708961c2-2099-47f0-8fa1-ba8e3e487119" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T210726Z:163f17ed-e5c8-49eb-9a46-daa095ca7727" + "JIOINDIAWEST:20220517T041014Z:708961c2-2099-47f0-8fa1-ba8e3e487119" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2958,7 +3022,7 @@ "nosniff" ], "Date": [ - "Thu, 24 Feb 2022 21:07:25 GMT" + "Tue, 17 May 2022 04:10:14 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2970,23 +3034,23 @@ "237" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Compute/virtualMachines/PSTestVMdbbbe12' under resource group 'PSTestRGdbbbe2ca' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Compute/virtualMachines/PSTestVM9e38712' under resource group 'PSTestRG9e387301' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Compute/virtualMachines/PSTestVMdbbbe12?api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZGJiYmUyY2EvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy9QU1Rlc3RWTWRiYmJlMTI/YXBpLXZlcnNpb249MjAyMS0xMS0wMQ==", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.Compute/virtualMachines/PSTestVM9e38712?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOWUzODczMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy9QU1Rlc3RWTTllMzg3MTI/YXBpLXZlcnNpb249MjAyMS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "561ae606-3a8a-4182-8dc9-1d51bc11b4bb" + "be79c9fe-1f81-4fea-a836-2d25fe26c65c" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ] }, "ResponseHeaders": { @@ -2997,35 +3061,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/LowCostGet3Min;3994,Microsoft.Compute/LowCostGet30Min;31986" + "Microsoft.Compute/LowCostGet3Min;3988,Microsoft.Compute/LowCostGet30Min;31871" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "8c80cb95-8af7-45e5-b463-8f8719a5c131" + "94271373-0388-4ad2-9863-1fff1d5f964a" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11981" + "11979" ], "x-ms-correlation-request-id": [ - "52ef6a80-13d9-4274-849c-8d078e778dfd" + "5fcc15cd-5af9-492b-b9d6-bc4f5efb754f" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T210958Z:52ef6a80-13d9-4274-849c-8d078e778dfd" + "JIOINDIAWEST:20220517T041232Z:5fcc15cd-5af9-492b-b9d6-bc4f5efb754f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 24 Feb 2022 21:09:57 GMT" + "Tue, 17 May 2022 04:12:31 GMT" ], "Content-Length": [ - "2271" + "2201" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3034,26 +3098,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"PSTestVMdbbbe12\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Compute/virtualMachines/PSTestVMdbbbe12\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MabUsed\": \"Yes\",\r\n \"AutoShutDown\": \"No\",\r\n \"Purpose\": \"PSTest\",\r\n \"Owner\": \"sarath\",\r\n \"DeleteBy\": \"06-2022\",\r\n \"azsecpack\": \"nonprod\",\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": \"true\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"7a42b96d-b64f-4d25-aadc-ec6d22026cb0\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D1_v2\"\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.4946.220202\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"PSTestVMdbbbe12_OsDisk_1_ede41f075fa34eaa988654f3dc00a360\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Compute/disks/PSTestVMdbbbe12_OsDisk_1_ede41f075fa34eaa988654f3dc00a360\"\r\n },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"PSTestVMdbbbe12\",\r\n \"adminUsername\": \"demouser\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"AutomaticByOS\",\r\n \"assessmentMode\": \"ImageDefault\"\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Network/networkInterfaces/PSTestNICdbbbe12\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"timeCreated\": \"2022-02-24T16:08:04.7953327-05:00\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"PSTestVM9e38712\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.Compute/virtualMachines/PSTestVM9e38712\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"AutoShutDown\": \"No\",\r\n \"Purpose\": \"PSTest\",\r\n \"DeleteBy\": \"06-2022\",\r\n \"Owner\": \"sarath\",\r\n \"MabUsed\": \"Yes\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"d8e766a2-4d64-493e-8a54-eab58538cd70\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D1_v2\"\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.5125.220505\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"PSTestVM9e38712_OsDisk_1_60e2238ff6824853b49fdf34a0603c36\",\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/PSTestRG9e387301/providers/Microsoft.Compute/disks/PSTestVM9e38712_OsDisk_1_60e2238ff6824853b49fdf34a0603c36\"\r\n },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"PSTestVM9e38712\",\r\n \"adminUsername\": \"demouser\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"AutomaticByOS\",\r\n \"assessmentMode\": \"ImageDefault\"\r\n },\r\n \"enableVMAgentPlatformUpdates\": false\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/PSTestRG9e387301/providers/Microsoft.Network/networkInterfaces/PSTestNIC9e38712\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"timeCreated\": \"2022-05-17T09:40:40.5052464+05:30\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Compute/virtualMachines/PSTestVMdbbbe12?api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZGJiYmUyY2EvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy9QU1Rlc3RWTWRiYmJlMTI/YXBpLXZlcnNpb249MjAyMS0xMS0wMQ==", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.Compute/virtualMachines/PSTestVM9e38712?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOWUzODczMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy9QU1Rlc3RWTTllMzg3MTI/YXBpLXZlcnNpb249MjAyMS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b319d7a0-4fa4-486a-a9f6-2477fefca1f5" + "8e509c2b-f84a-49fc-b63b-92d2bee1dfee" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ] }, "ResponseHeaders": { @@ -3064,35 +3128,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/LowCostGet3Min;3996,Microsoft.Compute/LowCostGet30Min;31982" + "Microsoft.Compute/LowCostGet3Min;3986,Microsoft.Compute/LowCostGet30Min;31862" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d5aa237f-88c8-4b73-84bc-682d5c3d83b0" + "83375403-2ea5-4b52-92f9-a75110d1fcd5" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11971" + "11970" ], "x-ms-correlation-request-id": [ - "fe0def23-4ca5-43ee-979a-413d2ddc5afb" + "7944ca43-1d13-45d6-8c8e-b51df7fe0670" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T211238Z:fe0def23-4ca5-43ee-979a-413d2ddc5afb" + "JIOINDIAWEST:20220517T041437Z:7944ca43-1d13-45d6-8c8e-b51df7fe0670" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 24 Feb 2022 21:12:37 GMT" + "Tue, 17 May 2022 04:14:36 GMT" ], "Content-Length": [ - "2835" + "2765" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3101,26 +3165,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"PSTestVMdbbbe12\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Compute/virtualMachines/PSTestVMdbbbe12\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MabUsed\": \"Yes\",\r\n \"AutoShutDown\": \"No\",\r\n \"Purpose\": \"PSTest\",\r\n \"Owner\": \"sarath\",\r\n \"DeleteBy\": \"06-2022\",\r\n \"azsecpack\": \"nonprod\",\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": \"true\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"7a42b96d-b64f-4d25-aadc-ec6d22026cb0\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D1_v2\"\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.4946.220202\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"PSTestVMdbbbe12_OsDisk_1_ede41f075fa34eaa988654f3dc00a360\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Compute/disks/PSTestVMdbbbe12_OsDisk_1_ede41f075fa34eaa988654f3dc00a360\"\r\n },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"PSTestVMdbbbe12\",\r\n \"adminUsername\": \"demouser\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"AutomaticByOS\",\r\n \"assessmentMode\": \"ImageDefault\"\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Network/networkInterfaces/PSTestNICdbbbe12\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"timeCreated\": \"2022-02-24T16:08:04.7953327-05:00\"\r\n },\r\n \"resources\": [\r\n {\r\n \"name\": \"BGInfo\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Compute/virtualMachines/PSTestVMdbbbe12/extensions/BGInfo\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"southeastasia\",\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}", + "ResponseBody": "{\r\n \"name\": \"PSTestVM9e38712\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.Compute/virtualMachines/PSTestVM9e38712\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"AutoShutDown\": \"No\",\r\n \"Purpose\": \"PSTest\",\r\n \"DeleteBy\": \"06-2022\",\r\n \"Owner\": \"sarath\",\r\n \"MabUsed\": \"Yes\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"d8e766a2-4d64-493e-8a54-eab58538cd70\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D1_v2\"\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.5125.220505\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"PSTestVM9e38712_OsDisk_1_60e2238ff6824853b49fdf34a0603c36\",\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/PSTestRG9e387301/providers/Microsoft.Compute/disks/PSTestVM9e38712_OsDisk_1_60e2238ff6824853b49fdf34a0603c36\"\r\n },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"PSTestVM9e38712\",\r\n \"adminUsername\": \"demouser\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"AutomaticByOS\",\r\n \"assessmentMode\": \"ImageDefault\"\r\n },\r\n \"enableVMAgentPlatformUpdates\": false\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/PSTestRG9e387301/providers/Microsoft.Network/networkInterfaces/PSTestNIC9e38712\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"timeCreated\": \"2022-05-17T09:40:40.5052464+05:30\"\r\n },\r\n \"resources\": [\r\n {\r\n \"name\": \"BGInfo\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.Compute/virtualMachines/PSTestVM9e38712/extensions/BGInfo\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"BGInfo\",\r\n \"typeHandlerVersion\": \"2.2\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Network/virtualNetworks/PSTestVNETdbbbe12?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZGJiYmUyY2EvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy9QU1Rlc3RWTkVUZGJiYmUxMj9hcGktdmVyc2lvbj0yMDIxLTA1LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.Network/virtualNetworks/PSTestVNET9e38712?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOWUzODczMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy9QU1Rlc3RWTkVUOWUzODcxMj9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "46bbb866-a15a-414a-aa27-f3459bbd358b" + "90071ab1-6fae-44b2-b384-1694f9869a0f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ] }, "ResponseHeaders": { @@ -3134,13 +3198,13 @@ "gateway" ], "x-ms-request-id": [ - "fbd5b7aa-3ac3-4580-a096-206732329a89" + "e911153b-5b1e-4667-b814-5e8a937eca26" ], "x-ms-correlation-request-id": [ - "fbd5b7aa-3ac3-4580-a096-206732329a89" + "e911153b-5b1e-4667-b814-5e8a937eca26" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T210728Z:fbd5b7aa-3ac3-4580-a096-206732329a89" + "JIOINDIAWEST:20220517T041015Z:e911153b-5b1e-4667-b814-5e8a937eca26" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3149,7 +3213,7 @@ "nosniff" ], "Date": [ - "Thu, 24 Feb 2022 21:07:27 GMT" + "Tue, 17 May 2022 04:10:15 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3161,23 +3225,23 @@ "239" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/virtualNetworks/PSTestVNETdbbbe12' under resource group 'PSTestRGdbbbe2ca' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/virtualNetworks/PSTestVNET9e38712' under resource group 'PSTestRG9e387301' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Network/virtualNetworks/PSTestVNETdbbbe12?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZGJiYmUyY2EvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy9QU1Rlc3RWTkVUZGJiYmUxMj9hcGktdmVyc2lvbj0yMDIxLTA1LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.Network/virtualNetworks/PSTestVNET9e38712?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOWUzODczMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy9QU1Rlc3RWTkVUOWUzODcxMj9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "46bbb866-a15a-414a-aa27-f3459bbd358b" + "90071ab1-6fae-44b2-b384-1694f9869a0f" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ] }, "ResponseHeaders": { @@ -3188,16 +3252,16 @@ "no-cache" ], "ETag": [ - "W/\"ba06beb6-7380-40cc-a539-9b3ac767846a\"" + "W/\"a04878ef-47c5-447c-9a92-a4bca5972d71\"" ], "x-ms-request-id": [ - "f5f174ce-815f-4fa3-ad02-28aa59072f9a" + "2690b774-8c94-440a-b0b9-7540ccad01df" ], "x-ms-correlation-request-id": [ - "4d2edeab-6be8-49be-8aff-4ca65d6089ae" + "80ad5a90-6cc7-46ef-88d5-3183b73e58fa" ], "x-ms-arm-service-request-id": [ - "0ccd3c36-802b-4879-9840-31bf4a1d8357" + "12dc8ecb-9733-4456-b699-78c1db2ca8e4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3210,13 +3274,13 @@ "11997" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T210740Z:4d2edeab-6be8-49be-8aff-4ca65d6089ae" + "JIOINDIAWEST:20220517T041023Z:80ad5a90-6cc7-46ef-88d5-3183b73e58fa" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 24 Feb 2022 21:07:39 GMT" + "Tue, 17 May 2022 04:10:23 GMT" ], "Content-Length": [ "1320" @@ -3228,26 +3292,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"PSTestVNETdbbbe12\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Network/virtualNetworks/PSTestVNETdbbbe12\",\r\n \"etag\": \"W/\\\"ba06beb6-7380-40cc-a539-9b3ac767846a\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"96336ad2-db25-425f-a668-79a9f6b5af76\",\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\": \"PSTestSNCdbbbe12\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Network/virtualNetworks/PSTestVNETdbbbe12/subnets/PSTestSNCdbbbe12\",\r\n \"etag\": \"W/\\\"ba06beb6-7380-40cc-a539-9b3ac767846a\\\"\",\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 },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"PSTestVNET9e38712\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.Network/virtualNetworks/PSTestVNET9e38712\",\r\n \"etag\": \"W/\\\"a04878ef-47c5-447c-9a92-a4bca5972d71\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"bb836b95-5a01-48ef-b5f4-12ef42a35ca6\",\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\": \"PSTestSNC9e38712\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.Network/virtualNetworks/PSTestVNET9e38712/subnets/PSTestSNC9e38712\",\r\n \"etag\": \"W/\\\"a04878ef-47c5-447c-9a92-a4bca5972d71\\\"\",\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 },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Network/virtualNetworks/PSTestVNETdbbbe12?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZGJiYmUyY2EvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy9QU1Rlc3RWTkVUZGJiYmUxMj9hcGktdmVyc2lvbj0yMDIxLTA1LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.Network/virtualNetworks/PSTestVNET9e38712?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOWUzODczMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy9QU1Rlc3RWTkVUOWUzODcxMj9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "46bbb866-a15a-414a-aa27-f3459bbd358b" + "90071ab1-6fae-44b2-b384-1694f9869a0f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ] }, "ResponseHeaders": { @@ -3258,16 +3322,16 @@ "no-cache" ], "ETag": [ - "W/\"ba06beb6-7380-40cc-a539-9b3ac767846a\"" + "W/\"a04878ef-47c5-447c-9a92-a4bca5972d71\"" ], "x-ms-request-id": [ - "a9e22f6e-fa33-4d82-beac-98e990830c0d" + "c5bf70fc-ccc9-44f7-a5af-c20a1db757b3" ], "x-ms-correlation-request-id": [ - "0ecc1bf8-dd14-47a1-9242-29d6bde1956a" + "574abc49-c4f5-4cb6-aada-01aabb398890" ], "x-ms-arm-service-request-id": [ - "4f83d9ab-3f2a-490a-a24b-4197d18d627b" + "d369f003-4b7e-4fb1-a295-d137233b2581" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3280,13 +3344,13 @@ "11996" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T210741Z:0ecc1bf8-dd14-47a1-9242-29d6bde1956a" + "JIOINDIAWEST:20220517T041023Z:574abc49-c4f5-4cb6-aada-01aabb398890" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 24 Feb 2022 21:07:40 GMT" + "Tue, 17 May 2022 04:10:23 GMT" ], "Content-Length": [ "1320" @@ -3298,26 +3362,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"PSTestVNETdbbbe12\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Network/virtualNetworks/PSTestVNETdbbbe12\",\r\n \"etag\": \"W/\\\"ba06beb6-7380-40cc-a539-9b3ac767846a\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"96336ad2-db25-425f-a668-79a9f6b5af76\",\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\": \"PSTestSNCdbbbe12\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Network/virtualNetworks/PSTestVNETdbbbe12/subnets/PSTestSNCdbbbe12\",\r\n \"etag\": \"W/\\\"ba06beb6-7380-40cc-a539-9b3ac767846a\\\"\",\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 },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"PSTestVNET9e38712\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.Network/virtualNetworks/PSTestVNET9e38712\",\r\n \"etag\": \"W/\\\"a04878ef-47c5-447c-9a92-a4bca5972d71\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"bb836b95-5a01-48ef-b5f4-12ef42a35ca6\",\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\": \"PSTestSNC9e38712\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.Network/virtualNetworks/PSTestVNET9e38712/subnets/PSTestSNC9e38712\",\r\n \"etag\": \"W/\\\"a04878ef-47c5-447c-9a92-a4bca5972d71\\\"\",\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 },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Network/virtualNetworks/PSTestVNETdbbbe12?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZGJiYmUyY2EvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy9QU1Rlc3RWTkVUZGJiYmUxMj9hcGktdmVyc2lvbj0yMDIxLTA1LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.Network/virtualNetworks/PSTestVNET9e38712?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOWUzODczMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy9QU1Rlc3RWTkVUOWUzODcxMj9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "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 \"applicationGatewayIpConfigurations\": []\r\n },\r\n \"name\": \"PSTestSNCdbbbe12\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"ipAllocations\": []\r\n },\r\n \"location\": \"southeastasia\"\r\n}", + "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 \"applicationGatewayIpConfigurations\": []\r\n },\r\n \"name\": \"PSTestSNC9e38712\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"ipAllocations\": []\r\n },\r\n \"location\": \"southeastasia\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "46bbb866-a15a-414a-aa27-f3459bbd358b" + "90071ab1-6fae-44b2-b384-1694f9869a0f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3337,19 +3401,19 @@ "3" ], "x-ms-request-id": [ - "eb2d9862-5a1d-49c8-9498-bffdd1497383" + "59c7b1e4-fd8c-44ca-9c30-055b9095e78a" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Network/locations/southeastasia/operations/eb2d9862-5a1d-49c8-9498-bffdd1497383?api-version=2021-05-01" + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Network/locations/southeastasia/operations/59c7b1e4-fd8c-44ca-9c30-055b9095e78a?api-version=2021-08-01" ], "x-ms-correlation-request-id": [ - "89502e21-dd0e-47f7-9ef0-a496f1cdf15e" + "29a49291-02f7-428b-bbdf-8d091dce8178" ], "Azure-AsyncNotification": [ "Enabled" ], "x-ms-arm-service-request-id": [ - "80b498e1-10f0-44bc-8582-3fc66ca405e8" + "78953fe6-0dd1-4d7c-922f-a7bd26677c04" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3362,13 +3426,13 @@ "1199" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T210737Z:89502e21-dd0e-47f7-9ef0-a496f1cdf15e" + "JIOINDIAWEST:20220517T041020Z:29a49291-02f7-428b-bbdf-8d091dce8178" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 24 Feb 2022 21:07:36 GMT" + "Tue, 17 May 2022 04:10:20 GMT" ], "Content-Length": [ "1318" @@ -3380,23 +3444,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"PSTestVNETdbbbe12\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Network/virtualNetworks/PSTestVNETdbbbe12\",\r\n \"etag\": \"W/\\\"c1bf805d-6726-4c40-befd-1ac4f16bdf84\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"96336ad2-db25-425f-a668-79a9f6b5af76\",\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\": \"PSTestSNCdbbbe12\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Network/virtualNetworks/PSTestVNETdbbbe12/subnets/PSTestSNCdbbbe12\",\r\n \"etag\": \"W/\\\"c1bf805d-6726-4c40-befd-1ac4f16bdf84\\\"\",\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 },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"PSTestVNET9e38712\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.Network/virtualNetworks/PSTestVNET9e38712\",\r\n \"etag\": \"W/\\\"ac59aeae-8684-4a2a-84e5-22b100ccd877\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"bb836b95-5a01-48ef-b5f4-12ef42a35ca6\",\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\": \"PSTestSNC9e38712\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.Network/virtualNetworks/PSTestVNET9e38712/subnets/PSTestSNC9e38712\",\r\n \"etag\": \"W/\\\"ac59aeae-8684-4a2a-84e5-22b100ccd877\\\"\",\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 },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Network/locations/southeastasia/operations/eb2d9862-5a1d-49c8-9498-bffdd1497383?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2ViMmQ5ODYyLTVhMWQtNDljOC05NDk4LWJmZmRkMTQ5NzM4Mz9hcGktdmVyc2lvbj0yMDIxLTA1LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Network/locations/southeastasia/operations/59c7b1e4-fd8c-44ca-9c30-055b9095e78a?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzU5YzdiMWU0LWZkOGMtNDRjYS05YzMwLTA1NWI5MDk1ZTc4YT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "46bbb866-a15a-414a-aa27-f3459bbd358b" + "90071ab1-6fae-44b2-b384-1694f9869a0f" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ] }, "ResponseHeaders": { @@ -3407,13 +3471,13 @@ "no-cache" ], "x-ms-request-id": [ - "f3e8c395-f10c-44a7-9142-ac7cc249226a" + "baaf0f18-8280-4f31-85fb-2af128c6ac3a" ], "x-ms-correlation-request-id": [ - "4b63779a-89de-402d-8811-af74fbe5f597" + "46fea862-f925-42fd-9ac2-499b58475e09" ], "x-ms-arm-service-request-id": [ - "dbaf8dc8-4d51-486b-b183-08d62834773e" + "22aa1e2b-6667-4b75-aa90-6ea16f254212" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3426,13 +3490,13 @@ "11998" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T210740Z:4b63779a-89de-402d-8811-af74fbe5f597" + "JIOINDIAWEST:20220517T041023Z:46fea862-f925-42fd-9ac2-499b58475e09" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 24 Feb 2022 21:07:39 GMT" + "Tue, 17 May 2022 04:10:23 GMT" ], "Content-Length": [ "29" @@ -3448,22 +3512,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Network/publicIPAddresses/pstestpublicdnsdbbbe12?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZGJiYmUyY2EvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BzdGVzdHB1YmxpY2Ruc2RiYmJlMTI/YXBpLXZlcnNpb249MjAyMS0wNS0wMQ==", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.Network/publicIPAddresses/pstestpublicdns9e38712?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOWUzODczMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BzdGVzdHB1YmxpY2RuczllMzg3MTI/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "21951e6f-76fd-40bf-a62c-b1c435c2f998" + "ffdbd0f5-453f-46e1-bf05-6dd85485b053" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ] }, "ResponseHeaders": { @@ -3477,13 +3541,13 @@ "gateway" ], "x-ms-request-id": [ - "b8958109-43bc-44e0-882e-657b42da6c2d" + "79f5a1f9-8b07-4639-83e4-5e7cbe8f328c" ], "x-ms-correlation-request-id": [ - "b8958109-43bc-44e0-882e-657b42da6c2d" + "79f5a1f9-8b07-4639-83e4-5e7cbe8f328c" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T210741Z:b8958109-43bc-44e0-882e-657b42da6c2d" + "JIOINDIAWEST:20220517T041024Z:79f5a1f9-8b07-4639-83e4-5e7cbe8f328c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3492,7 +3556,7 @@ "nosniff" ], "Date": [ - "Thu, 24 Feb 2022 21:07:40 GMT" + "Tue, 17 May 2022 04:10:24 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3504,23 +3568,23 @@ "246" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/publicIPAddresses/pstestpublicdnsdbbbe12' under resource group 'PSTestRGdbbbe2ca' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/publicIPAddresses/pstestpublicdns9e38712' under resource group 'PSTestRG9e387301' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Network/publicIPAddresses/pstestpublicdnsdbbbe12?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZGJiYmUyY2EvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BzdGVzdHB1YmxpY2Ruc2RiYmJlMTI/YXBpLXZlcnNpb249MjAyMS0wNS0wMQ==", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.Network/publicIPAddresses/pstestpublicdns9e38712?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOWUzODczMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BzdGVzdHB1YmxpY2RuczllMzg3MTI/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "21951e6f-76fd-40bf-a62c-b1c435c2f998" + "ffdbd0f5-453f-46e1-bf05-6dd85485b053" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ] }, "ResponseHeaders": { @@ -3531,16 +3595,16 @@ "no-cache" ], "ETag": [ - "W/\"f954ff22-7a89-44a0-8611-fc9ba5b1d429\"" + "W/\"baf49463-57b9-4e09-90b2-59d3bf2f7866\"" ], "x-ms-request-id": [ - "b331c5a6-daab-4868-b63d-00a831c8227b" + "de109347-d50f-4fd8-acdb-aea65a32750f" ], "x-ms-correlation-request-id": [ - "57ec3363-a91c-40c8-93b1-61b23445df1c" + "79881c54-3c36-4463-9aeb-4d9e906d0da3" ], "x-ms-arm-service-request-id": [ - "f4f751fc-17c3-41f9-9dd0-17395705d065" + "74105f7f-bad0-432e-b909-d905e1e851cb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3553,16 +3617,16 @@ "11993" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T210746Z:57ec3363-a91c-40c8-93b1-61b23445df1c" + "JIOINDIAWEST:20220517T041027Z:79881c54-3c36-4463-9aeb-4d9e906d0da3" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 24 Feb 2022 21:07:46 GMT" + "Tue, 17 May 2022 04:10:27 GMT" ], "Content-Length": [ - "699" + "700" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3571,26 +3635,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"pstestpublicdnsdbbbe12\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Network/publicIPAddresses/pstestpublicdnsdbbbe12\",\r\n \"etag\": \"W/\\\"f954ff22-7a89-44a0-8611-fc9ba5b1d429\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"7cbb044e-0f9c-4b2b-80b1-3d952a511898\",\r\n \"ipAddress\": \"20.212.51.92\",\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 \"tier\": \"Regional\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"pstestpublicdns9e38712\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.Network/publicIPAddresses/pstestpublicdns9e38712\",\r\n \"etag\": \"W/\\\"baf49463-57b9-4e09-90b2-59d3bf2f7866\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"92a9557b-ac9f-4d01-a52d-d92867d38698\",\r\n \"ipAddress\": \"52.230.31.243\",\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 \"tier\": \"Regional\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Network/publicIPAddresses/pstestpublicdnsdbbbe12?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZGJiYmUyY2EvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BzdGVzdHB1YmxpY2Ruc2RiYmJlMTI/YXBpLXZlcnNpb249MjAyMS0wNS0wMQ==", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.Network/publicIPAddresses/pstestpublicdns9e38712?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOWUzODczMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BzdGVzdHB1YmxpY2RuczllMzg3MTI/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "21951e6f-76fd-40bf-a62c-b1c435c2f998" + "ffdbd0f5-453f-46e1-bf05-6dd85485b053" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ] }, "ResponseHeaders": { @@ -3601,16 +3665,16 @@ "no-cache" ], "ETag": [ - "W/\"f954ff22-7a89-44a0-8611-fc9ba5b1d429\"" + "W/\"baf49463-57b9-4e09-90b2-59d3bf2f7866\"" ], "x-ms-request-id": [ - "d5a67356-7cd4-4415-8e08-ee45d0b5da64" + "66669927-c5c5-477b-bb69-8d532814b640" ], "x-ms-correlation-request-id": [ - "4a6b7d30-de97-443b-be85-a17ce0ee6993" + "9b24534c-895b-4b7b-bba3-0d88e6374ccf" ], "x-ms-arm-service-request-id": [ - "ce5d9c5c-9aa8-483b-968e-ff216404e7f4" + "490afac7-e4a6-4f92-9170-873be0e58340" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3623,16 +3687,16 @@ "11992" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T210747Z:4a6b7d30-de97-443b-be85-a17ce0ee6993" + "JIOINDIAWEST:20220517T041028Z:9b24534c-895b-4b7b-bba3-0d88e6374ccf" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 24 Feb 2022 21:07:46 GMT" + "Tue, 17 May 2022 04:10:28 GMT" ], "Content-Length": [ - "699" + "700" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3641,26 +3705,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"pstestpublicdnsdbbbe12\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Network/publicIPAddresses/pstestpublicdnsdbbbe12\",\r\n \"etag\": \"W/\\\"f954ff22-7a89-44a0-8611-fc9ba5b1d429\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"7cbb044e-0f9c-4b2b-80b1-3d952a511898\",\r\n \"ipAddress\": \"20.212.51.92\",\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 \"tier\": \"Regional\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"pstestpublicdns9e38712\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.Network/publicIPAddresses/pstestpublicdns9e38712\",\r\n \"etag\": \"W/\\\"baf49463-57b9-4e09-90b2-59d3bf2f7866\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"92a9557b-ac9f-4d01-a52d-d92867d38698\",\r\n \"ipAddress\": \"52.230.31.243\",\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 \"tier\": \"Regional\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Network/publicIPAddresses/pstestpublicdnsdbbbe12?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZGJiYmUyY2EvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BzdGVzdHB1YmxpY2Ruc2RiYmJlMTI/YXBpLXZlcnNpb249MjAyMS0wNS0wMQ==", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.Network/publicIPAddresses/pstestpublicdns9e38712?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOWUzODczMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BzdGVzdHB1YmxpY2RuczllMzg3MTI/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==", "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\": \"southeastasia\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "21951e6f-76fd-40bf-a62c-b1c435c2f998" + "ffdbd0f5-453f-46e1-bf05-6dd85485b053" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3680,19 +3744,19 @@ "1" ], "x-ms-request-id": [ - "17cf2c93-f3c0-490e-ae25-97caa033f376" + "7220b5ee-1a43-4d58-84ec-7c56f22f9c8d" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Network/locations/southeastasia/operations/17cf2c93-f3c0-490e-ae25-97caa033f376?api-version=2021-05-01" + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Network/locations/southeastasia/operations/7220b5ee-1a43-4d58-84ec-7c56f22f9c8d?api-version=2021-08-01" ], "x-ms-correlation-request-id": [ - "ed1e9192-cc94-494d-8fed-ce305e9613c7" + "06dac563-38ac-4908-b530-7e87d6922407" ], "Azure-AsyncNotification": [ "Enabled" ], "x-ms-arm-service-request-id": [ - "2564fb8d-b142-434a-83bf-47838d7227d7" + "801bd0b5-7d11-4d75-94fa-f0c01ec4da6a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3705,13 +3769,13 @@ "1198" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T210745Z:ed1e9192-cc94-494d-8fed-ce305e9613c7" + "JIOINDIAWEST:20220517T041026Z:06dac563-38ac-4908-b530-7e87d6922407" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 24 Feb 2022 21:07:45 GMT" + "Tue, 17 May 2022 04:10:26 GMT" ], "Content-Length": [ "664" @@ -3723,23 +3787,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"pstestpublicdnsdbbbe12\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Network/publicIPAddresses/pstestpublicdnsdbbbe12\",\r\n \"etag\": \"W/\\\"6556be67-117d-4c94-bc18-56f9d85a8443\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"7cbb044e-0f9c-4b2b-80b1-3d952a511898\",\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 \"tier\": \"Regional\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"pstestpublicdns9e38712\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.Network/publicIPAddresses/pstestpublicdns9e38712\",\r\n \"etag\": \"W/\\\"e14db4f7-ac14-4bbf-8c62-5355eecb1800\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"92a9557b-ac9f-4d01-a52d-d92867d38698\",\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 \"tier\": \"Regional\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Network/locations/southeastasia/operations/17cf2c93-f3c0-490e-ae25-97caa033f376?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzE3Y2YyYzkzLWYzYzAtNDkwZS1hZTI1LTk3Y2FhMDMzZjM3Nj9hcGktdmVyc2lvbj0yMDIxLTA1LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Network/locations/southeastasia/operations/7220b5ee-1a43-4d58-84ec-7c56f22f9c8d?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzcyMjBiNWVlLTFhNDMtNGQ1OC04NGVjLTdjNTZmMjJmOWM4ZD9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "21951e6f-76fd-40bf-a62c-b1c435c2f998" + "ffdbd0f5-453f-46e1-bf05-6dd85485b053" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ] }, "ResponseHeaders": { @@ -3750,13 +3814,13 @@ "no-cache" ], "x-ms-request-id": [ - "dc4eb34b-efef-4ee8-b05b-67089558e67d" + "14defa75-a72b-4a27-ae5e-4195f97e97ab" ], "x-ms-correlation-request-id": [ - "c0044cd8-661e-4572-9444-c456cfb65fe8" + "4ac4b9df-c0c7-4dab-a6ff-59b339e1a228" ], "x-ms-arm-service-request-id": [ - "36bd7573-619d-4474-b10f-4d0024b1e5a6" + "6fa1bd4b-9291-412b-9c85-526b0898e039" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3769,13 +3833,13 @@ "11994" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T210746Z:c0044cd8-661e-4572-9444-c456cfb65fe8" + "JIOINDIAWEST:20220517T041027Z:4ac4b9df-c0c7-4dab-a6ff-59b339e1a228" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 24 Feb 2022 21:07:46 GMT" + "Tue, 17 May 2022 04:10:27 GMT" ], "Content-Length": [ "29" @@ -3791,22 +3855,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGdbbbe12?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZGJiYmUyY2EvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtTZWN1cml0eUdyb3Vwcy9QU1Rlc3ROU0dkYmJiZTEyP2FwaS12ZXJzaW9uPTIwMjEtMDUtMDE=", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG9e38712?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOWUzODczMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtTZWN1cml0eUdyb3Vwcy9QU1Rlc3ROU0c5ZTM4NzEyP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "433e6b07-6c11-47f4-a501-d3a293120795" + "7ed19b88-58a2-41c2-bab5-8835620773b1" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ] }, "ResponseHeaders": { @@ -3820,13 +3884,13 @@ "gateway" ], "x-ms-request-id": [ - "fef3a14e-06a6-47be-b69e-7823e107c344" + "5d723f1d-ea60-41c1-812d-4e3231e8ce46" ], "x-ms-correlation-request-id": [ - "fef3a14e-06a6-47be-b69e-7823e107c344" + "5d723f1d-ea60-41c1-812d-4e3231e8ce46" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T210747Z:fef3a14e-06a6-47be-b69e-7823e107c344" + "JIOINDIAWEST:20220517T041028Z:5d723f1d-ea60-41c1-812d-4e3231e8ce46" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3835,7 +3899,7 @@ "nosniff" ], "Date": [ - "Thu, 24 Feb 2022 21:07:47 GMT" + "Tue, 17 May 2022 04:10:28 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3847,23 +3911,23 @@ "244" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/networkSecurityGroups/PSTestNSGdbbbe12' under resource group 'PSTestRGdbbbe2ca' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/networkSecurityGroups/PSTestNSG9e38712' under resource group 'PSTestRG9e387301' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGdbbbe12?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZGJiYmUyY2EvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtTZWN1cml0eUdyb3Vwcy9QU1Rlc3ROU0dkYmJiZTEyP2FwaS12ZXJzaW9uPTIwMjEtMDUtMDE=", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG9e38712?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOWUzODczMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtTZWN1cml0eUdyb3Vwcy9QU1Rlc3ROU0c5ZTM4NzEyP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "433e6b07-6c11-47f4-a501-d3a293120795" + "7ed19b88-58a2-41c2-bab5-8835620773b1" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ] }, "ResponseHeaders": { @@ -3874,16 +3938,16 @@ "no-cache" ], "ETag": [ - "W/\"e28d24d9-2834-4ffa-aeb0-3fe8eab065a4\"" + "W/\"30e5f6f4-d7c8-4635-b656-36e7808c9ac9\"" ], "x-ms-request-id": [ - "30bc7f30-9da5-4b67-893e-19e1e527b5c8" + "f9db2efb-8c37-405f-aba5-1bacbbf069be" ], "x-ms-correlation-request-id": [ - "c7a63319-e8a0-4b38-9eb9-86000eeee2bf" + "ad367589-c79c-483f-8537-2db3c7679bf6" ], "x-ms-arm-service-request-id": [ - "9545e9c1-b0c9-42d4-867f-0bed472fc22c" + "a3acc42e-bee9-4bea-ae23-9d149856cd0e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3896,13 +3960,13 @@ "11989" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T210754Z:c7a63319-e8a0-4b38-9eb9-86000eeee2bf" + "JIOINDIAWEST:20220517T041033Z:ad367589-c79c-483f-8537-2db3c7679bf6" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 24 Feb 2022 21:07:54 GMT" + "Tue, 17 May 2022 04:10:33 GMT" ], "Content-Length": [ "8489" @@ -3914,26 +3978,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"PSTestNSGdbbbe12\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGdbbbe12\",\r\n \"etag\": \"W/\\\"e28d24d9-2834-4ffa-aeb0-3fe8eab065a4\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"7e5f927b-1b68-4a28-abef-18b9d91fbc4a\",\r\n \"securityRules\": [\r\n {\r\n \"name\": \"PSTestNSGRuleRDPdbbbe12\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGdbbbe12/securityRules/PSTestNSGRuleRDPdbbbe12\",\r\n \"etag\": \"W/\\\"e28d24d9-2834-4ffa-aeb0-3fe8eab065a4\\\"\",\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\": \"PSTestNSGRuleWebdbbbe12\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGdbbbe12/securityRules/PSTestNSGRuleWebdbbbe12\",\r\n \"etag\": \"W/\\\"e28d24d9-2834-4ffa-aeb0-3fe8eab065a4\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGdbbbe12/defaultSecurityRules/AllowVnetInBound\",\r\n \"etag\": \"W/\\\"e28d24d9-2834-4ffa-aeb0-3fe8eab065a4\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGdbbbe12/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\r\n \"etag\": \"W/\\\"e28d24d9-2834-4ffa-aeb0-3fe8eab065a4\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGdbbbe12/defaultSecurityRules/DenyAllInBound\",\r\n \"etag\": \"W/\\\"e28d24d9-2834-4ffa-aeb0-3fe8eab065a4\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGdbbbe12/defaultSecurityRules/AllowVnetOutBound\",\r\n \"etag\": \"W/\\\"e28d24d9-2834-4ffa-aeb0-3fe8eab065a4\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGdbbbe12/defaultSecurityRules/AllowInternetOutBound\",\r\n \"etag\": \"W/\\\"e28d24d9-2834-4ffa-aeb0-3fe8eab065a4\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGdbbbe12/defaultSecurityRules/DenyAllOutBound\",\r\n \"etag\": \"W/\\\"e28d24d9-2834-4ffa-aeb0-3fe8eab065a4\\\"\",\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}", + "ResponseBody": "{\r\n \"name\": \"PSTestNSG9e38712\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG9e38712\",\r\n \"etag\": \"W/\\\"30e5f6f4-d7c8-4635-b656-36e7808c9ac9\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"e97f5f8b-eb29-4e88-b507-ae5446a83cc8\",\r\n \"securityRules\": [\r\n {\r\n \"name\": \"PSTestNSGRuleRDP9e38712\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG9e38712/securityRules/PSTestNSGRuleRDP9e38712\",\r\n \"etag\": \"W/\\\"30e5f6f4-d7c8-4635-b656-36e7808c9ac9\\\"\",\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\": \"PSTestNSGRuleWeb9e38712\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG9e38712/securityRules/PSTestNSGRuleWeb9e38712\",\r\n \"etag\": \"W/\\\"30e5f6f4-d7c8-4635-b656-36e7808c9ac9\\\"\",\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/PSTestRG9e387301/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG9e38712/defaultSecurityRules/AllowVnetInBound\",\r\n \"etag\": \"W/\\\"30e5f6f4-d7c8-4635-b656-36e7808c9ac9\\\"\",\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/PSTestRG9e387301/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG9e38712/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\r\n \"etag\": \"W/\\\"30e5f6f4-d7c8-4635-b656-36e7808c9ac9\\\"\",\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/PSTestRG9e387301/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG9e38712/defaultSecurityRules/DenyAllInBound\",\r\n \"etag\": \"W/\\\"30e5f6f4-d7c8-4635-b656-36e7808c9ac9\\\"\",\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/PSTestRG9e387301/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG9e38712/defaultSecurityRules/AllowVnetOutBound\",\r\n \"etag\": \"W/\\\"30e5f6f4-d7c8-4635-b656-36e7808c9ac9\\\"\",\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/PSTestRG9e387301/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG9e38712/defaultSecurityRules/AllowInternetOutBound\",\r\n \"etag\": \"W/\\\"30e5f6f4-d7c8-4635-b656-36e7808c9ac9\\\"\",\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/PSTestRG9e387301/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG9e38712/defaultSecurityRules/DenyAllOutBound\",\r\n \"etag\": \"W/\\\"30e5f6f4-d7c8-4635-b656-36e7808c9ac9\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGdbbbe12?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZGJiYmUyY2EvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtTZWN1cml0eUdyb3Vwcy9QU1Rlc3ROU0dkYmJiZTEyP2FwaS12ZXJzaW9uPTIwMjEtMDUtMDE=", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG9e38712?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOWUzODczMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtTZWN1cml0eUdyb3Vwcy9QU1Rlc3ROU0c5ZTM4NzEyP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "433e6b07-6c11-47f4-a501-d3a293120795" + "7ed19b88-58a2-41c2-bab5-8835620773b1" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ] }, "ResponseHeaders": { @@ -3944,16 +4008,16 @@ "no-cache" ], "ETag": [ - "W/\"e28d24d9-2834-4ffa-aeb0-3fe8eab065a4\"" + "W/\"30e5f6f4-d7c8-4635-b656-36e7808c9ac9\"" ], "x-ms-request-id": [ - "d8f2500e-047e-49ef-9db8-e6c0999c6a3b" + "7edfeb05-cde5-482d-bb25-b3660387fc66" ], "x-ms-correlation-request-id": [ - "99ca15ad-aefa-4922-921f-2fd588cc5a4b" + "5c78b27b-3ea7-424e-84e3-a42f64aa2a66" ], "x-ms-arm-service-request-id": [ - "01f266fd-0d22-43fd-abe1-dca63f6c2c40" + "218a4ff5-5a36-4ef5-ae2d-97e71ad4f73f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3966,13 +4030,13 @@ "11988" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T210754Z:99ca15ad-aefa-4922-921f-2fd588cc5a4b" + "JIOINDIAWEST:20220517T041033Z:5c78b27b-3ea7-424e-84e3-a42f64aa2a66" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 24 Feb 2022 21:07:54 GMT" + "Tue, 17 May 2022 04:10:33 GMT" ], "Content-Length": [ "8489" @@ -3984,26 +4048,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"PSTestNSGdbbbe12\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGdbbbe12\",\r\n \"etag\": \"W/\\\"e28d24d9-2834-4ffa-aeb0-3fe8eab065a4\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"7e5f927b-1b68-4a28-abef-18b9d91fbc4a\",\r\n \"securityRules\": [\r\n {\r\n \"name\": \"PSTestNSGRuleRDPdbbbe12\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGdbbbe12/securityRules/PSTestNSGRuleRDPdbbbe12\",\r\n \"etag\": \"W/\\\"e28d24d9-2834-4ffa-aeb0-3fe8eab065a4\\\"\",\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\": \"PSTestNSGRuleWebdbbbe12\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGdbbbe12/securityRules/PSTestNSGRuleWebdbbbe12\",\r\n \"etag\": \"W/\\\"e28d24d9-2834-4ffa-aeb0-3fe8eab065a4\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGdbbbe12/defaultSecurityRules/AllowVnetInBound\",\r\n \"etag\": \"W/\\\"e28d24d9-2834-4ffa-aeb0-3fe8eab065a4\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGdbbbe12/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\r\n \"etag\": \"W/\\\"e28d24d9-2834-4ffa-aeb0-3fe8eab065a4\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGdbbbe12/defaultSecurityRules/DenyAllInBound\",\r\n \"etag\": \"W/\\\"e28d24d9-2834-4ffa-aeb0-3fe8eab065a4\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGdbbbe12/defaultSecurityRules/AllowVnetOutBound\",\r\n \"etag\": \"W/\\\"e28d24d9-2834-4ffa-aeb0-3fe8eab065a4\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGdbbbe12/defaultSecurityRules/AllowInternetOutBound\",\r\n \"etag\": \"W/\\\"e28d24d9-2834-4ffa-aeb0-3fe8eab065a4\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGdbbbe12/defaultSecurityRules/DenyAllOutBound\",\r\n \"etag\": \"W/\\\"e28d24d9-2834-4ffa-aeb0-3fe8eab065a4\\\"\",\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}", + "ResponseBody": "{\r\n \"name\": \"PSTestNSG9e38712\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG9e38712\",\r\n \"etag\": \"W/\\\"30e5f6f4-d7c8-4635-b656-36e7808c9ac9\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"e97f5f8b-eb29-4e88-b507-ae5446a83cc8\",\r\n \"securityRules\": [\r\n {\r\n \"name\": \"PSTestNSGRuleRDP9e38712\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG9e38712/securityRules/PSTestNSGRuleRDP9e38712\",\r\n \"etag\": \"W/\\\"30e5f6f4-d7c8-4635-b656-36e7808c9ac9\\\"\",\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\": \"PSTestNSGRuleWeb9e38712\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG9e38712/securityRules/PSTestNSGRuleWeb9e38712\",\r\n \"etag\": \"W/\\\"30e5f6f4-d7c8-4635-b656-36e7808c9ac9\\\"\",\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/PSTestRG9e387301/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG9e38712/defaultSecurityRules/AllowVnetInBound\",\r\n \"etag\": \"W/\\\"30e5f6f4-d7c8-4635-b656-36e7808c9ac9\\\"\",\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/PSTestRG9e387301/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG9e38712/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\r\n \"etag\": \"W/\\\"30e5f6f4-d7c8-4635-b656-36e7808c9ac9\\\"\",\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/PSTestRG9e387301/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG9e38712/defaultSecurityRules/DenyAllInBound\",\r\n \"etag\": \"W/\\\"30e5f6f4-d7c8-4635-b656-36e7808c9ac9\\\"\",\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/PSTestRG9e387301/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG9e38712/defaultSecurityRules/AllowVnetOutBound\",\r\n \"etag\": \"W/\\\"30e5f6f4-d7c8-4635-b656-36e7808c9ac9\\\"\",\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/PSTestRG9e387301/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG9e38712/defaultSecurityRules/AllowInternetOutBound\",\r\n \"etag\": \"W/\\\"30e5f6f4-d7c8-4635-b656-36e7808c9ac9\\\"\",\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/PSTestRG9e387301/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG9e38712/defaultSecurityRules/DenyAllOutBound\",\r\n \"etag\": \"W/\\\"30e5f6f4-d7c8-4635-b656-36e7808c9ac9\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGdbbbe12?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZGJiYmUyY2EvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtTZWN1cml0eUdyb3Vwcy9QU1Rlc3ROU0dkYmJiZTEyP2FwaS12ZXJzaW9uPTIwMjEtMDUtMDE=", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG9e38712?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOWUzODczMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtTZWN1cml0eUdyb3Vwcy9QU1Rlc3ROU0c5ZTM4NzEyP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=", "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\": \"PSTestNSGRuleRDPdbbbe12\"\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\": \"PSTestNSGRuleWebdbbbe12\"\r\n }\r\n ]\r\n },\r\n \"location\": \"southeastasia\"\r\n}", + "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\": \"PSTestNSGRuleRDP9e38712\"\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\": \"PSTestNSGRuleWeb9e38712\"\r\n }\r\n ]\r\n },\r\n \"location\": \"southeastasia\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "433e6b07-6c11-47f4-a501-d3a293120795" + "7ed19b88-58a2-41c2-bab5-8835620773b1" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4023,19 +4087,19 @@ "3" ], "x-ms-request-id": [ - "1b1292e3-199d-4b8f-8246-a7d2ef0b4c06" + "39274927-0f26-43c4-809d-83a815ebebc5" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Network/locations/southeastasia/operations/1b1292e3-199d-4b8f-8246-a7d2ef0b4c06?api-version=2021-05-01" + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Network/locations/southeastasia/operations/39274927-0f26-43c4-809d-83a815ebebc5?api-version=2021-08-01" ], "x-ms-correlation-request-id": [ - "2e3aa454-25d4-4f4e-b59a-c80b14c58a7e" + "60b204e4-6961-4e25-aba8-c7112b71710a" ], "Azure-AsyncNotification": [ "Enabled" ], "x-ms-arm-service-request-id": [ - "6531e214-1c24-481f-8336-50c4876827b7" + "0b1889c9-5c12-4e54-865c-2f1272f02297" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4048,13 +4112,13 @@ "1197" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T210750Z:2e3aa454-25d4-4f4e-b59a-c80b14c58a7e" + "JIOINDIAWEST:20220517T041030Z:60b204e4-6961-4e25-aba8-c7112b71710a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 24 Feb 2022 21:07:50 GMT" + "Tue, 17 May 2022 04:10:30 GMT" ], "Content-Length": [ "8480" @@ -4066,23 +4130,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"PSTestNSGdbbbe12\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGdbbbe12\",\r\n \"etag\": \"W/\\\"3f565da7-4e69-4a1c-8513-88706fe3a48d\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"7e5f927b-1b68-4a28-abef-18b9d91fbc4a\",\r\n \"securityRules\": [\r\n {\r\n \"name\": \"PSTestNSGRuleRDPdbbbe12\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGdbbbe12/securityRules/PSTestNSGRuleRDPdbbbe12\",\r\n \"etag\": \"W/\\\"3f565da7-4e69-4a1c-8513-88706fe3a48d\\\"\",\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\": \"PSTestNSGRuleWebdbbbe12\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGdbbbe12/securityRules/PSTestNSGRuleWebdbbbe12\",\r\n \"etag\": \"W/\\\"3f565da7-4e69-4a1c-8513-88706fe3a48d\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGdbbbe12/defaultSecurityRules/AllowVnetInBound\",\r\n \"etag\": \"W/\\\"3f565da7-4e69-4a1c-8513-88706fe3a48d\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGdbbbe12/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\r\n \"etag\": \"W/\\\"3f565da7-4e69-4a1c-8513-88706fe3a48d\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGdbbbe12/defaultSecurityRules/DenyAllInBound\",\r\n \"etag\": \"W/\\\"3f565da7-4e69-4a1c-8513-88706fe3a48d\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGdbbbe12/defaultSecurityRules/AllowVnetOutBound\",\r\n \"etag\": \"W/\\\"3f565da7-4e69-4a1c-8513-88706fe3a48d\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGdbbbe12/defaultSecurityRules/AllowInternetOutBound\",\r\n \"etag\": \"W/\\\"3f565da7-4e69-4a1c-8513-88706fe3a48d\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGdbbbe12/defaultSecurityRules/DenyAllOutBound\",\r\n \"etag\": \"W/\\\"3f565da7-4e69-4a1c-8513-88706fe3a48d\\\"\",\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}", + "ResponseBody": "{\r\n \"name\": \"PSTestNSG9e38712\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG9e38712\",\r\n \"etag\": \"W/\\\"d02da89e-0b61-4873-bd9e-c4b1a38eaf97\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"e97f5f8b-eb29-4e88-b507-ae5446a83cc8\",\r\n \"securityRules\": [\r\n {\r\n \"name\": \"PSTestNSGRuleRDP9e38712\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG9e38712/securityRules/PSTestNSGRuleRDP9e38712\",\r\n \"etag\": \"W/\\\"d02da89e-0b61-4873-bd9e-c4b1a38eaf97\\\"\",\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\": \"PSTestNSGRuleWeb9e38712\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG9e38712/securityRules/PSTestNSGRuleWeb9e38712\",\r\n \"etag\": \"W/\\\"d02da89e-0b61-4873-bd9e-c4b1a38eaf97\\\"\",\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/PSTestRG9e387301/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG9e38712/defaultSecurityRules/AllowVnetInBound\",\r\n \"etag\": \"W/\\\"d02da89e-0b61-4873-bd9e-c4b1a38eaf97\\\"\",\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/PSTestRG9e387301/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG9e38712/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\r\n \"etag\": \"W/\\\"d02da89e-0b61-4873-bd9e-c4b1a38eaf97\\\"\",\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/PSTestRG9e387301/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG9e38712/defaultSecurityRules/DenyAllInBound\",\r\n \"etag\": \"W/\\\"d02da89e-0b61-4873-bd9e-c4b1a38eaf97\\\"\",\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/PSTestRG9e387301/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG9e38712/defaultSecurityRules/AllowVnetOutBound\",\r\n \"etag\": \"W/\\\"d02da89e-0b61-4873-bd9e-c4b1a38eaf97\\\"\",\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/PSTestRG9e387301/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG9e38712/defaultSecurityRules/AllowInternetOutBound\",\r\n \"etag\": \"W/\\\"d02da89e-0b61-4873-bd9e-c4b1a38eaf97\\\"\",\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/PSTestRG9e387301/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG9e38712/defaultSecurityRules/DenyAllOutBound\",\r\n \"etag\": \"W/\\\"d02da89e-0b61-4873-bd9e-c4b1a38eaf97\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Network/locations/southeastasia/operations/1b1292e3-199d-4b8f-8246-a7d2ef0b4c06?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzFiMTI5MmUzLTE5OWQtNGI4Zi04MjQ2LWE3ZDJlZjBiNGMwNj9hcGktdmVyc2lvbj0yMDIxLTA1LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Network/locations/southeastasia/operations/39274927-0f26-43c4-809d-83a815ebebc5?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzM5Mjc0OTI3LTBmMjYtNDNjNC04MDlkLTgzYTgxNWViZWJjNT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "433e6b07-6c11-47f4-a501-d3a293120795" + "7ed19b88-58a2-41c2-bab5-8835620773b1" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ] }, "ResponseHeaders": { @@ -4093,13 +4157,13 @@ "no-cache" ], "x-ms-request-id": [ - "8194cd83-4495-4b9e-a790-24a5053ca726" + "4d805002-6e85-4cb3-9eb4-a03aa5a55853" ], "x-ms-correlation-request-id": [ - "a87cfbdf-54de-41e5-8212-40821464028d" + "0996018f-dd72-455c-ae19-c53dffb0ebac" ], "x-ms-arm-service-request-id": [ - "37ebc046-8dcb-4806-a7d5-52154e7c0d7c" + "1b485750-86a9-4a11-8f79-1f3d10059eb4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4112,13 +4176,13 @@ "11990" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T210754Z:a87cfbdf-54de-41e5-8212-40821464028d" + "JIOINDIAWEST:20220517T041033Z:0996018f-dd72-455c-ae19-c53dffb0ebac" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 24 Feb 2022 21:07:53 GMT" + "Tue, 17 May 2022 04:10:33 GMT" ], "Content-Length": [ "29" @@ -4134,22 +4198,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Network/networkInterfaces/PSTestNICdbbbe12?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZGJiYmUyY2EvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL1BTVGVzdE5JQ2RiYmJlMTI/YXBpLXZlcnNpb249MjAyMS0wNS0wMQ==", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.Network/networkInterfaces/PSTestNIC9e38712?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOWUzODczMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL1BTVGVzdE5JQzllMzg3MTI/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e2eebef0-e3fc-44e1-baf0-9e1b17e6b704" + "8d3e1ee8-3512-43da-a02f-c300256d7118" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ] }, "ResponseHeaders": { @@ -4163,13 +4227,13 @@ "gateway" ], "x-ms-request-id": [ - "8cd85ddc-6698-4a6f-874c-33f5ff817969" + "651abc8f-2427-4877-b616-191c4ebb0b82" ], "x-ms-correlation-request-id": [ - "8cd85ddc-6698-4a6f-874c-33f5ff817969" + "651abc8f-2427-4877-b616-191c4ebb0b82" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T210755Z:8cd85ddc-6698-4a6f-874c-33f5ff817969" + "JIOINDIAWEST:20220517T041034Z:651abc8f-2427-4877-b616-191c4ebb0b82" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4178,7 +4242,7 @@ "nosniff" ], "Date": [ - "Thu, 24 Feb 2022 21:07:54 GMT" + "Tue, 17 May 2022 04:10:33 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4190,23 +4254,23 @@ "240" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/networkInterfaces/PSTestNICdbbbe12' under resource group 'PSTestRGdbbbe2ca' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/networkInterfaces/PSTestNIC9e38712' under resource group 'PSTestRG9e387301' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Network/networkInterfaces/PSTestNICdbbbe12?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZGJiYmUyY2EvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL1BTVGVzdE5JQ2RiYmJlMTI/YXBpLXZlcnNpb249MjAyMS0wNS0wMQ==", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.Network/networkInterfaces/PSTestNIC9e38712?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOWUzODczMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL1BTVGVzdE5JQzllMzg3MTI/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e2eebef0-e3fc-44e1-baf0-9e1b17e6b704" + "8d3e1ee8-3512-43da-a02f-c300256d7118" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ] }, "ResponseHeaders": { @@ -4217,16 +4281,16 @@ "no-cache" ], "ETag": [ - "W/\"eb6805c9-6d56-4fcc-9480-59e989702dbb\"" + "W/\"b5bcfeff-3c97-47ff-98f8-19bf909da265\"" ], "x-ms-request-id": [ - "dc823621-b8f3-4c1c-84be-3c07fd3b99cf" + "f49a7f6e-6356-40e4-8b8b-09213142ca0f" ], "x-ms-correlation-request-id": [ - "e4932b6e-6449-482d-87c9-be426562dac4" + "a2c0e8fe-0d5c-4c86-876e-094e75551ecf" ], "x-ms-arm-service-request-id": [ - "5d3a4719-5a15-443a-be72-8cefa28275b0" + "5ecc7f0a-82d9-4211-863e-94a4efbda944" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4239,16 +4303,16 @@ "11986" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T210759Z:e4932b6e-6449-482d-87c9-be426562dac4" + "JIOINDIAWEST:20220517T041036Z:a2c0e8fe-0d5c-4c86-876e-094e75551ecf" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 24 Feb 2022 21:07:59 GMT" + "Tue, 17 May 2022 04:10:35 GMT" ], "Content-Length": [ - "2150" + "2172" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4257,26 +4321,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"PSTestNICdbbbe12\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Network/networkInterfaces/PSTestNICdbbbe12\",\r\n \"etag\": \"W/\\\"eb6805c9-6d56-4fcc-9480-59e989702dbb\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"6b9296f1-9398-453a-80c5-5d18c4ecd6eb\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Network/networkInterfaces/PSTestNICdbbbe12/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"eb6805c9-6d56-4fcc-9480-59e989702dbb\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Network/publicIPAddresses/pstestpublicdnsdbbbe12\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Network/virtualNetworks/PSTestVNETdbbbe12/subnets/PSTestSNCdbbbe12\"\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\": \"0jvdhfrf1npufjtipgu5nnnpog.ix.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"vnetEncryptionSupported\": false,\r\n \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGdbbbe12\"\r\n },\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": [],\r\n \"nicType\": \"Standard\"\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"PSTestNIC9e38712\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.Network/networkInterfaces/PSTestNIC9e38712\",\r\n \"etag\": \"W/\\\"b5bcfeff-3c97-47ff-98f8-19bf909da265\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"c38a5613-fb13-40e9-9e2b-888622db8a64\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.Network/networkInterfaces/PSTestNIC9e38712/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"b5bcfeff-3c97-47ff-98f8-19bf909da265\\\"\",\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/PSTestRG9e387301/providers/Microsoft.Network/publicIPAddresses/pstestpublicdns9e38712\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.Network/virtualNetworks/PSTestVNET9e38712/subnets/PSTestSNC9e38712\"\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\": \"svvyhoybllxurnpuclxufi02ug.ix.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"vnetEncryptionSupported\": false,\r\n \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG9e38712\"\r\n },\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": [],\r\n \"nicType\": \"Standard\"\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"kind\": \"Regular\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Network/networkInterfaces/PSTestNICdbbbe12?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZGJiYmUyY2EvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL1BTVGVzdE5JQ2RiYmJlMTI/YXBpLXZlcnNpb249MjAyMS0wNS0wMQ==", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.Network/networkInterfaces/PSTestNIC9e38712?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOWUzODczMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL1BTVGVzdE5JQzllMzg3MTI/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e2eebef0-e3fc-44e1-baf0-9e1b17e6b704" + "8d3e1ee8-3512-43da-a02f-c300256d7118" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ] }, "ResponseHeaders": { @@ -4287,16 +4351,16 @@ "no-cache" ], "ETag": [ - "W/\"eb6805c9-6d56-4fcc-9480-59e989702dbb\"" + "W/\"b5bcfeff-3c97-47ff-98f8-19bf909da265\"" ], "x-ms-request-id": [ - "a13df92e-21f2-4f08-b4c0-9787bcedd566" + "8a1895a4-f65f-4ea0-a503-e6fac36465c2" ], "x-ms-correlation-request-id": [ - "67350042-fa38-4dd7-a717-fdd89fc12fa5" + "93879bf8-67ab-4139-afdd-474a0d7eb8b3" ], "x-ms-arm-service-request-id": [ - "827e134a-46a5-4bf9-a2d3-5598eaaeb89b" + "71505fc8-56ef-411f-9e2d-3e022bc63182" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4309,16 +4373,16 @@ "11985" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T210759Z:67350042-fa38-4dd7-a717-fdd89fc12fa5" + "JIOINDIAWEST:20220517T041036Z:93879bf8-67ab-4139-afdd-474a0d7eb8b3" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 24 Feb 2022 21:07:59 GMT" + "Tue, 17 May 2022 04:10:36 GMT" ], "Content-Length": [ - "2150" + "2172" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4327,26 +4391,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"PSTestNICdbbbe12\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Network/networkInterfaces/PSTestNICdbbbe12\",\r\n \"etag\": \"W/\\\"eb6805c9-6d56-4fcc-9480-59e989702dbb\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"6b9296f1-9398-453a-80c5-5d18c4ecd6eb\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Network/networkInterfaces/PSTestNICdbbbe12/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"eb6805c9-6d56-4fcc-9480-59e989702dbb\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Network/publicIPAddresses/pstestpublicdnsdbbbe12\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Network/virtualNetworks/PSTestVNETdbbbe12/subnets/PSTestSNCdbbbe12\"\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\": \"0jvdhfrf1npufjtipgu5nnnpog.ix.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"vnetEncryptionSupported\": false,\r\n \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGdbbbe12\"\r\n },\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": [],\r\n \"nicType\": \"Standard\"\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"PSTestNIC9e38712\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.Network/networkInterfaces/PSTestNIC9e38712\",\r\n \"etag\": \"W/\\\"b5bcfeff-3c97-47ff-98f8-19bf909da265\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"c38a5613-fb13-40e9-9e2b-888622db8a64\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.Network/networkInterfaces/PSTestNIC9e38712/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"b5bcfeff-3c97-47ff-98f8-19bf909da265\\\"\",\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/PSTestRG9e387301/providers/Microsoft.Network/publicIPAddresses/pstestpublicdns9e38712\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.Network/virtualNetworks/PSTestVNET9e38712/subnets/PSTestSNC9e38712\"\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\": \"svvyhoybllxurnpuclxufi02ug.ix.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"vnetEncryptionSupported\": false,\r\n \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG9e38712\"\r\n },\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": [],\r\n \"nicType\": \"Standard\"\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"kind\": \"Regular\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Network/networkInterfaces/PSTestNICdbbbe12?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZGJiYmUyY2EvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL1BTVGVzdE5JQ2RiYmJlMTI/YXBpLXZlcnNpb249MjAyMS0wNS0wMQ==", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.Network/networkInterfaces/PSTestNIC9e38712?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOWUzODczMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL1BTVGVzdE5JQzllMzg3MTI/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"networkSecurityGroup\": {\r\n \"properties\": {\r\n \"securityRules\": []\r\n },\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGdbbbe12\",\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 \"applicationGatewayIpConfigurations\": []\r\n },\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Network/virtualNetworks/PSTestVNETdbbbe12/subnets/PSTestSNCdbbbe12\"\r\n },\r\n \"primary\": true,\r\n \"publicIPAddress\": {\r\n \"properties\": {\r\n \"ipTags\": []\r\n },\r\n \"zones\": [],\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Network/publicIPAddresses/pstestpublicdnsdbbbe12\",\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\": \"southeastasia\"\r\n}", + "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/PSTestRG9e387301/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG9e38712\",\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 \"applicationGatewayIpConfigurations\": []\r\n },\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.Network/virtualNetworks/PSTestVNET9e38712/subnets/PSTestSNC9e38712\"\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/PSTestRG9e387301/providers/Microsoft.Network/publicIPAddresses/pstestpublicdns9e38712\",\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\": \"southeastasia\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "e2eebef0-e3fc-44e1-baf0-9e1b17e6b704" + "8d3e1ee8-3512-43da-a02f-c300256d7118" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4363,19 +4427,19 @@ "no-cache" ], "x-ms-request-id": [ - "5d17ea1a-7792-45d3-91eb-a80b01de16af" + "12f956ec-606e-4618-af3d-91f50ff3aae6" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Network/locations/southeastasia/operations/5d17ea1a-7792-45d3-91eb-a80b01de16af?api-version=2021-05-01" + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Network/locations/southeastasia/operations/12f956ec-606e-4618-af3d-91f50ff3aae6?api-version=2021-08-01" ], "x-ms-correlation-request-id": [ - "feb8b34e-9657-48e8-8977-1f8b4629bcec" + "01efe78e-023e-4586-b70a-202bc96e48a1" ], "Azure-AsyncNotification": [ "Enabled" ], "x-ms-arm-service-request-id": [ - "5674d1e2-4316-4786-b0ea-1136b9c164c9" + "85085c4d-13a0-40f9-9afa-2c2c8435291c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4388,16 +4452,16 @@ "1196" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T210759Z:feb8b34e-9657-48e8-8977-1f8b4629bcec" + "JIOINDIAWEST:20220517T041035Z:01efe78e-023e-4586-b70a-202bc96e48a1" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 24 Feb 2022 21:07:58 GMT" + "Tue, 17 May 2022 04:10:35 GMT" ], "Content-Length": [ - "2150" + "2172" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4406,26 +4470,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"PSTestNICdbbbe12\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Network/networkInterfaces/PSTestNICdbbbe12\",\r\n \"etag\": \"W/\\\"eb6805c9-6d56-4fcc-9480-59e989702dbb\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"6b9296f1-9398-453a-80c5-5d18c4ecd6eb\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Network/networkInterfaces/PSTestNICdbbbe12/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"eb6805c9-6d56-4fcc-9480-59e989702dbb\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Network/publicIPAddresses/pstestpublicdnsdbbbe12\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Network/virtualNetworks/PSTestVNETdbbbe12/subnets/PSTestSNCdbbbe12\"\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\": \"0jvdhfrf1npufjtipgu5nnnpog.ix.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"vnetEncryptionSupported\": false,\r\n \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGdbbbe12\"\r\n },\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": [],\r\n \"nicType\": \"Standard\"\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"PSTestNIC9e38712\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.Network/networkInterfaces/PSTestNIC9e38712\",\r\n \"etag\": \"W/\\\"b5bcfeff-3c97-47ff-98f8-19bf909da265\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"c38a5613-fb13-40e9-9e2b-888622db8a64\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.Network/networkInterfaces/PSTestNIC9e38712/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"b5bcfeff-3c97-47ff-98f8-19bf909da265\\\"\",\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/PSTestRG9e387301/providers/Microsoft.Network/publicIPAddresses/pstestpublicdns9e38712\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.Network/virtualNetworks/PSTestVNET9e38712/subnets/PSTestSNC9e38712\"\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\": \"svvyhoybllxurnpuclxufi02ug.ix.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"vnetEncryptionSupported\": false,\r\n \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG9e38712\"\r\n },\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": [],\r\n \"nicType\": \"Standard\"\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"kind\": \"Regular\"\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Compute/virtualMachines/PSTestVMdbbbe12?api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZGJiYmUyY2EvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy9QU1Rlc3RWTWRiYmJlMTI/YXBpLXZlcnNpb249MjAyMS0xMS0wMQ==", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.Compute/virtualMachines/PSTestVM9e38712?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOWUzODczMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy9QU1Rlc3RWTTllMzg3MTI/YXBpLXZlcnNpb249MjAyMS0xMS0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D1_v2\"\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\": \"PSTestVMdbbbe12\",\r\n \"adminUsername\": \"demouser\",\r\n \"adminPassword\": \"dbbbe2ca-133Aa.\",\r\n \"windowsConfiguration\": {}\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Network/networkInterfaces/PSTestNICdbbbe12\"\r\n }\r\n ]\r\n }\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MabUsed\": \"Yes\",\r\n \"AutoShutDown\": \"No\",\r\n \"Purpose\": \"PSTest\",\r\n \"Owner\": \"sarath\",\r\n \"DeleteBy\": \"06-2022\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D1_v2\"\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\": \"PSTestVM9e38712\",\r\n \"adminUsername\": \"demouser\",\r\n \"adminPassword\": \"9e387301-0ccAa.\",\r\n \"windowsConfiguration\": {}\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.Network/networkInterfaces/PSTestNIC9e38712\"\r\n }\r\n ]\r\n }\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"AutoShutDown\": \"No\",\r\n \"Purpose\": \"PSTest\",\r\n \"DeleteBy\": \"06-2022\",\r\n \"Owner\": \"sarath\",\r\n \"MabUsed\": \"Yes\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "561ae606-3a8a-4182-8dc9-1d51bc11b4bb" + "be79c9fe-1f81-4fea-a836-2d25fe26c65c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4445,19 +4509,19 @@ "10" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/southeastasia/operations/baaeed46-a0b9-4037-9495-8b8ff4d8f663?p=34dc709c-01b2-42c4-84a2-256a9734610d&api-version=2021-11-01" + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Compute/locations/southeastasia/operations/3a9b5c09-b027-457d-bccb-305a59f1926c?p=e484ceca-6435-4a7f-b125-3d82e6b12014&api-version=2021-11-01" ], "Azure-AsyncNotification": [ "Enabled" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/PutVM3Min;239,Microsoft.Compute/PutVM30Min;1198" + "Microsoft.Compute/PutVM3Min;239,Microsoft.Compute/PutVM30Min;1197" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "baaeed46-a0b9-4037-9495-8b8ff4d8f663" + "3a9b5c09-b027-457d-bccb-305a59f1926c" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -4467,19 +4531,19 @@ "1197" ], "x-ms-correlation-request-id": [ - "96e9d7cf-ad13-4723-b3e5-56c40e1e196c" + "6a52afa7-218f-4ae7-bb36-59a0c5754aeb" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T210806Z:96e9d7cf-ad13-4723-b3e5-56c40e1e196c" + "JIOINDIAWEST:20220517T041041Z:6a52afa7-218f-4ae7-bb36-59a0c5754aeb" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 24 Feb 2022 21:08:06 GMT" + "Tue, 17 May 2022 04:10:41 GMT" ], "Content-Length": [ - "1996" + "1926" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4488,23 +4552,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"PSTestVMdbbbe12\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Compute/virtualMachines/PSTestVMdbbbe12\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MabUsed\": \"Yes\",\r\n \"AutoShutDown\": \"No\",\r\n \"Purpose\": \"PSTest\",\r\n \"Owner\": \"sarath\",\r\n \"DeleteBy\": \"06-2022\",\r\n \"azsecpack\": \"nonprod\",\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": \"true\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"7a42b96d-b64f-4d25-aadc-ec6d22026cb0\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D1_v2\"\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.4946.220202\"\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 \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"PSTestVMdbbbe12\",\r\n \"adminUsername\": \"demouser\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"AutomaticByOS\",\r\n \"assessmentMode\": \"ImageDefault\"\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Network/networkInterfaces/PSTestNICdbbbe12\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\",\r\n \"timeCreated\": \"2022-02-24T16:08:04.7953327-05:00\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"PSTestVM9e38712\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.Compute/virtualMachines/PSTestVM9e38712\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"AutoShutDown\": \"No\",\r\n \"Purpose\": \"PSTest\",\r\n \"DeleteBy\": \"06-2022\",\r\n \"Owner\": \"sarath\",\r\n \"MabUsed\": \"Yes\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"d8e766a2-4d64-493e-8a54-eab58538cd70\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D1_v2\"\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.5125.220505\"\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 \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"PSTestVM9e38712\",\r\n \"adminUsername\": \"demouser\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"AutomaticByOS\",\r\n \"assessmentMode\": \"ImageDefault\"\r\n },\r\n \"enableVMAgentPlatformUpdates\": false\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/PSTestRG9e387301/providers/Microsoft.Network/networkInterfaces/PSTestNIC9e38712\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\",\r\n \"timeCreated\": \"2022-05-17T09:40:40.5052464+05:30\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/southeastasia/operations/baaeed46-a0b9-4037-9495-8b8ff4d8f663?p=34dc709c-01b2-42c4-84a2-256a9734610d&api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2JhYWVlZDQ2LWEwYjktNDAzNy05NDk1LThiOGZmNGQ4ZjY2Mz9wPTM0ZGM3MDljLTAxYjItNDJjNC04NGEyLTI1NmE5NzM0NjEwZCZhcGktdmVyc2lvbj0yMDIxLTExLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Compute/locations/southeastasia/operations/3a9b5c09-b027-457d-bccb-305a59f1926c?p=e484ceca-6435-4a7f-b125-3d82e6b12014&api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzNhOWI1YzA5LWIwMjctNDU3ZC1iY2NiLTMwNWE1OWYxOTI2Yz9wPWU0ODRjZWNhLTY0MzUtNGE3Zi1iMTI1LTNkODJlNmIxMjAxNCZhcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "561ae606-3a8a-4182-8dc9-1d51bc11b4bb" + "be79c9fe-1f81-4fea-a836-2d25fe26c65c" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ] }, "ResponseHeaders": { @@ -4518,35 +4582,35 @@ "50" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperation3Min;14994,Microsoft.Compute/GetOperation30Min;29986" + "Microsoft.Compute/GetOperation3Min;14993,Microsoft.Compute/GetOperation30Min;29975" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "28ed82be-fd1b-4bae-aeb7-80882f2c185a" + "ef8ea661-bbb0-4e10-be90-623a7da1fc17" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11984" + "11982" ], "x-ms-correlation-request-id": [ - "17185e39-2b76-441e-99cd-82040a4383e1" + "d4b7d0f1-cd29-4f5a-ba64-0004b1162164" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T210817Z:17185e39-2b76-441e-99cd-82040a4383e1" + "JIOINDIAWEST:20220517T041051Z:d4b7d0f1-cd29-4f5a-ba64-0004b1162164" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 24 Feb 2022 21:08:16 GMT" + "Tue, 17 May 2022 04:10:51 GMT" ], "Content-Length": [ - "133" + "134" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4555,23 +4619,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-02-24T16:08:04.201616-05:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"baaeed46-a0b9-4037-9495-8b8ff4d8f663\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2022-05-17T09:40:39.9271479+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"3a9b5c09-b027-457d-bccb-305a59f1926c\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/southeastasia/operations/baaeed46-a0b9-4037-9495-8b8ff4d8f663?p=34dc709c-01b2-42c4-84a2-256a9734610d&api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2JhYWVlZDQ2LWEwYjktNDAzNy05NDk1LThiOGZmNGQ4ZjY2Mz9wPTM0ZGM3MDljLTAxYjItNDJjNC04NGEyLTI1NmE5NzM0NjEwZCZhcGktdmVyc2lvbj0yMDIxLTExLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Compute/locations/southeastasia/operations/3a9b5c09-b027-457d-bccb-305a59f1926c?p=e484ceca-6435-4a7f-b125-3d82e6b12014&api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzNhOWI1YzA5LWIwMjctNDU3ZC1iY2NiLTMwNWE1OWYxOTI2Yz9wPWU0ODRjZWNhLTY0MzUtNGE3Zi1iMTI1LTNkODJlNmIxMjAxNCZhcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "561ae606-3a8a-4182-8dc9-1d51bc11b4bb" + "be79c9fe-1f81-4fea-a836-2d25fe26c65c" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ] }, "ResponseHeaders": { @@ -4582,35 +4646,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperation3Min;14995,Microsoft.Compute/GetOperation30Min;29985" + "Microsoft.Compute/GetOperation3Min;14994,Microsoft.Compute/GetOperation30Min;29974" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b2ab2c45-c872-4e48-9ac5-0cfa6298676a" + "c0eed22f-7d3d-496b-8125-8724cf2aca4f" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11983" + "11981" ], "x-ms-correlation-request-id": [ - "fe16c6d9-0f56-4638-9152-a0661fae1e3d" + "94c2d504-942b-4723-9717-a416a650c864" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T210907Z:fe16c6d9-0f56-4638-9152-a0661fae1e3d" + "JIOINDIAWEST:20220517T041141Z:94c2d504-942b-4723-9717-a416a650c864" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 24 Feb 2022 21:09:07 GMT" + "Tue, 17 May 2022 04:11:40 GMT" ], "Content-Length": [ - "133" + "134" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4619,23 +4683,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-02-24T16:08:04.201616-05:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"baaeed46-a0b9-4037-9495-8b8ff4d8f663\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2022-05-17T09:40:39.9271479+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"3a9b5c09-b027-457d-bccb-305a59f1926c\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/southeastasia/operations/baaeed46-a0b9-4037-9495-8b8ff4d8f663?p=34dc709c-01b2-42c4-84a2-256a9734610d&api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2JhYWVlZDQ2LWEwYjktNDAzNy05NDk1LThiOGZmNGQ4ZjY2Mz9wPTM0ZGM3MDljLTAxYjItNDJjNC04NGEyLTI1NmE5NzM0NjEwZCZhcGktdmVyc2lvbj0yMDIxLTExLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Compute/locations/southeastasia/operations/3a9b5c09-b027-457d-bccb-305a59f1926c?p=e484ceca-6435-4a7f-b125-3d82e6b12014&api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzNhOWI1YzA5LWIwMjctNDU3ZC1iY2NiLTMwNWE1OWYxOTI2Yz9wPWU0ODRjZWNhLTY0MzUtNGE3Zi1iMTI1LTNkODJlNmIxMjAxNCZhcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "561ae606-3a8a-4182-8dc9-1d51bc11b4bb" + "be79c9fe-1f81-4fea-a836-2d25fe26c65c" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ] }, "ResponseHeaders": { @@ -4646,35 +4710,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperation3Min;14995,Microsoft.Compute/GetOperation30Min;29984" + "Microsoft.Compute/GetOperation3Min;14995,Microsoft.Compute/GetOperation30Min;29972" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "573f0f92-91cd-4b9d-8655-0452291be576" + "1aac849d-12a4-42f5-9a94-9c3c3391aef5" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11982" + "11980" ], "x-ms-correlation-request-id": [ - "12ce6c69-5e04-49a2-a50c-f89f2d3b0cdc" + "c2abe8d3-f716-4f48-b9d2-bd85558c9ef5" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T210957Z:12ce6c69-5e04-49a2-a50c-f89f2d3b0cdc" + "JIOINDIAWEST:20220517T041231Z:c2abe8d3-f716-4f48-b9d2-bd85558c9ef5" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 24 Feb 2022 21:09:56 GMT" + "Tue, 17 May 2022 04:12:31 GMT" ], "Content-Length": [ - "183" + "184" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4683,26 +4747,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-02-24T16:08:04.201616-05:00\",\r\n \"endTime\": \"2022-02-24T16:09:52.7499009-05:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"baaeed46-a0b9-4037-9495-8b8ff4d8f663\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2022-05-17T09:40:39.9271479+05:30\",\r\n \"endTime\": \"2022-05-17T09:41:53.9576188+05:30\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"3a9b5c09-b027-457d-bccb-305a59f1926c\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Compute/virtualMachines/PSTestVMdbbbe12/extensions/BGInfo?api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZGJiYmUyY2EvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy9QU1Rlc3RWTWRiYmJlMTIvZXh0ZW5zaW9ucy9CR0luZm8/YXBpLXZlcnNpb249MjAyMS0xMS0wMQ==", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.Compute/virtualMachines/PSTestVM9e38712/extensions/BGInfo?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOWUzODczMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy9QU1Rlc3RWTTllMzg3MTIvZXh0ZW5zaW9ucy9CR0luZm8/YXBpLXZlcnNpb249MjAyMS0xMS0wMQ==", "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\": \"southeastasia\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"BGInfo\",\r\n \"typeHandlerVersion\": \"2.2\",\r\n \"autoUpgradeMinorVersion\": true\r\n },\r\n \"location\": \"southeastasia\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "561ae606-3a8a-4182-8dc9-1d51bc11b4bb" + "be79c9fe-1f81-4fea-a836-2d25fe26c65c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4719,38 +4783,38 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/southeastasia/operations/35b65f3a-189e-4cc5-acae-893c170db6f0?p=34dc709c-01b2-42c4-84a2-256a9734610d&api-version=2021-11-01" + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Compute/locations/southeastasia/operations/7d181fb7-c660-4741-b324-45d7bb708fe7?p=e484ceca-6435-4a7f-b125-3d82e6b12014&api-version=2021-11-01" ], "Azure-AsyncNotification": [ "Enabled" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/UpdateVM3Min;239,Microsoft.Compute/UpdateVM30Min;1198" + "Microsoft.Compute/UpdateVM3Min;239,Microsoft.Compute/UpdateVM30Min;1197" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "35b65f3a-189e-4cc5-acae-893c170db6f0" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "7d181fb7-c660-4741-b324-45d7bb708fe7" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" + ], "x-ms-correlation-request-id": [ - "4b67cbe6-93c0-4efd-b8b2-23124706f3b3" + "4c59f8c7-bc8f-48ad-b405-2994fd91170b" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T211005Z:4b67cbe6-93c0-4efd-b8b2-23124706f3b3" + "JIOINDIAWEST:20220517T041235Z:4c59f8c7-bc8f-48ad-b405-2994fd91170b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 24 Feb 2022 21:10:04 GMT" + "Tue, 17 May 2022 04:12:35 GMT" ], "Content-Length": [ "485" @@ -4762,87 +4826,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"BGInfo\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Compute/virtualMachines/PSTestVMdbbbe12/extensions/BGInfo\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"southeastasia\",\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}", + "ResponseBody": "{\r\n \"name\": \"BGInfo\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.Compute/virtualMachines/PSTestVM9e38712/extensions/BGInfo\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Creating\",\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"BGInfo\",\r\n \"typeHandlerVersion\": \"2.2\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/southeastasia/operations/35b65f3a-189e-4cc5-acae-893c170db6f0?p=34dc709c-01b2-42c4-84a2-256a9734610d&api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzM1YjY1ZjNhLTE4OWUtNGNjNS1hY2FlLTg5M2MxNzBkYjZmMD9wPTM0ZGM3MDljLTAxYjItNDJjNC04NGEyLTI1NmE5NzM0NjEwZCZhcGktdmVyc2lvbj0yMDIxLTExLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "561ae606-3a8a-4182-8dc9-1d51bc11b4bb" - ], - "User-Agent": [ - "FxVersion/4.700.21.56803", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.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": [ - "c16cdf08-2af1-4b25-aba0-d82469a5093e" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11977" - ], - "x-ms-correlation-request-id": [ - "b670e754-a748-4436-9f89-7923254ea80f" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20220224T211035Z:b670e754-a748-4436-9f89-7923254ea80f" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 24 Feb 2022 21:10:35 GMT" - ], - "Content-Length": [ - "134" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"startTime\": \"2022-02-24T16:10:03.9062783-05:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"35b65f3a-189e-4cc5-acae-893c170db6f0\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/southeastasia/operations/35b65f3a-189e-4cc5-acae-893c170db6f0?p=34dc709c-01b2-42c4-84a2-256a9734610d&api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzM1YjY1ZjNhLTE4OWUtNGNjNS1hY2FlLTg5M2MxNzBkYjZmMD9wPTM0ZGM3MDljLTAxYjItNDJjNC04NGEyLTI1NmE5NzM0NjEwZCZhcGktdmVyc2lvbj0yMDIxLTExLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Compute/locations/southeastasia/operations/7d181fb7-c660-4741-b324-45d7bb708fe7?p=e484ceca-6435-4a7f-b125-3d82e6b12014&api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzdkMTgxZmI3LWM2NjAtNDc0MS1iMzI0LTQ1ZDdiYjcwOGZlNz9wPWU0ODRjZWNhLTY0MzUtNGE3Zi1iMTI1LTNkODJlNmIxMjAxNCZhcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "561ae606-3a8a-4182-8dc9-1d51bc11b4bb" + "be79c9fe-1f81-4fea-a836-2d25fe26c65c" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ] }, "ResponseHeaders": { @@ -4853,32 +4853,32 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperation3Min;14995,Microsoft.Compute/GetOperation30Min;29981" + "Microsoft.Compute/GetOperation3Min;14993,Microsoft.Compute/GetOperation30Min;29969" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "5b3b38ce-07a0-4567-930c-126e811b0429" + "ae76a131-8d41-48c5-a96e-1b6f160f9e6b" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11976" + "11975" ], "x-ms-correlation-request-id": [ - "3983721f-baf8-403e-8432-2bda975601d4" + "0fd18fe1-3b82-45be-8c5f-31764ed77c35" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T211106Z:3983721f-baf8-403e-8432-2bda975601d4" + "JIOINDIAWEST:20220517T041306Z:0fd18fe1-3b82-45be-8c5f-31764ed77c35" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 24 Feb 2022 21:11:05 GMT" + "Tue, 17 May 2022 04:13:06 GMT" ], "Content-Length": [ "134" @@ -4890,23 +4890,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-02-24T16:10:03.9062783-05:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"35b65f3a-189e-4cc5-acae-893c170db6f0\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2022-05-17T09:42:35.1916243+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"7d181fb7-c660-4741-b324-45d7bb708fe7\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/southeastasia/operations/35b65f3a-189e-4cc5-acae-893c170db6f0?p=34dc709c-01b2-42c4-84a2-256a9734610d&api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzM1YjY1ZjNhLTE4OWUtNGNjNS1hY2FlLTg5M2MxNzBkYjZmMD9wPTM0ZGM3MDljLTAxYjItNDJjNC04NGEyLTI1NmE5NzM0NjEwZCZhcGktdmVyc2lvbj0yMDIxLTExLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Compute/locations/southeastasia/operations/7d181fb7-c660-4741-b324-45d7bb708fe7?p=e484ceca-6435-4a7f-b125-3d82e6b12014&api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzdkMTgxZmI3LWM2NjAtNDc0MS1iMzI0LTQ1ZDdiYjcwOGZlNz9wPWU0ODRjZWNhLTY0MzUtNGE3Zi1iMTI1LTNkODJlNmIxMjAxNCZhcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "561ae606-3a8a-4182-8dc9-1d51bc11b4bb" + "be79c9fe-1f81-4fea-a836-2d25fe26c65c" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ] }, "ResponseHeaders": { @@ -4917,32 +4917,32 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperation3Min;14994,Microsoft.Compute/GetOperation30Min;29980" + "Microsoft.Compute/GetOperation3Min;14993,Microsoft.Compute/GetOperation30Min;29968" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d66b0e52-210a-4bbe-b691-3ba916874792" + "0237284d-5a34-4dcf-a8c3-ce2697723547" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11975" + "11974" ], "x-ms-correlation-request-id": [ - "8605dcb7-a485-4999-83b0-a9c4c4307e2b" + "97b0c392-7631-417e-b35d-a81585aa700d" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T211137Z:8605dcb7-a485-4999-83b0-a9c4c4307e2b" + "JIOINDIAWEST:20220517T041336Z:97b0c392-7631-417e-b35d-a81585aa700d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 24 Feb 2022 21:11:36 GMT" + "Tue, 17 May 2022 04:13:35 GMT" ], "Content-Length": [ "134" @@ -4954,23 +4954,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-02-24T16:10:03.9062783-05:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"35b65f3a-189e-4cc5-acae-893c170db6f0\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2022-05-17T09:42:35.1916243+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"7d181fb7-c660-4741-b324-45d7bb708fe7\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/southeastasia/operations/35b65f3a-189e-4cc5-acae-893c170db6f0?p=34dc709c-01b2-42c4-84a2-256a9734610d&api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzM1YjY1ZjNhLTE4OWUtNGNjNS1hY2FlLTg5M2MxNzBkYjZmMD9wPTM0ZGM3MDljLTAxYjItNDJjNC04NGEyLTI1NmE5NzM0NjEwZCZhcGktdmVyc2lvbj0yMDIxLTExLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Compute/locations/southeastasia/operations/7d181fb7-c660-4741-b324-45d7bb708fe7?p=e484ceca-6435-4a7f-b125-3d82e6b12014&api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzdkMTgxZmI3LWM2NjAtNDc0MS1iMzI0LTQ1ZDdiYjcwOGZlNz9wPWU0ODRjZWNhLTY0MzUtNGE3Zi1iMTI1LTNkODJlNmIxMjAxNCZhcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "561ae606-3a8a-4182-8dc9-1d51bc11b4bb" + "be79c9fe-1f81-4fea-a836-2d25fe26c65c" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ] }, "ResponseHeaders": { @@ -4981,32 +4981,32 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperation3Min;14993,Microsoft.Compute/GetOperation30Min;29978" + "Microsoft.Compute/GetOperation3Min;14992,Microsoft.Compute/GetOperation30Min;29967" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "1a9607be-6613-42bb-b8be-4db9d971fa98" + "d68afcde-5c52-43bb-831f-6d8d089768c1" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11974" + "11973" ], "x-ms-correlation-request-id": [ - "53a8d3b9-2aea-4086-a1b8-c98d9d19cbbc" + "d364f7ef-8e19-4e25-8781-9e6d4e2b320a" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T211207Z:53a8d3b9-2aea-4086-a1b8-c98d9d19cbbc" + "JIOINDIAWEST:20220517T041406Z:d364f7ef-8e19-4e25-8781-9e6d4e2b320a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 24 Feb 2022 21:12:07 GMT" + "Tue, 17 May 2022 04:14:05 GMT" ], "Content-Length": [ "134" @@ -5018,23 +5018,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-02-24T16:10:03.9062783-05:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"35b65f3a-189e-4cc5-acae-893c170db6f0\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2022-05-17T09:42:35.1916243+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"7d181fb7-c660-4741-b324-45d7bb708fe7\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/southeastasia/operations/35b65f3a-189e-4cc5-acae-893c170db6f0?p=34dc709c-01b2-42c4-84a2-256a9734610d&api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzM1YjY1ZjNhLTE4OWUtNGNjNS1hY2FlLTg5M2MxNzBkYjZmMD9wPTM0ZGM3MDljLTAxYjItNDJjNC04NGEyLTI1NmE5NzM0NjEwZCZhcGktdmVyc2lvbj0yMDIxLTExLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Compute/locations/southeastasia/operations/7d181fb7-c660-4741-b324-45d7bb708fe7?p=e484ceca-6435-4a7f-b125-3d82e6b12014&api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzdkMTgxZmI3LWM2NjAtNDc0MS1iMzI0LTQ1ZDdiYjcwOGZlNz9wPWU0ODRjZWNhLTY0MzUtNGE3Zi1iMTI1LTNkODJlNmIxMjAxNCZhcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "561ae606-3a8a-4182-8dc9-1d51bc11b4bb" + "be79c9fe-1f81-4fea-a836-2d25fe26c65c" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ] }, "ResponseHeaders": { @@ -5045,35 +5045,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperation3Min;14993,Microsoft.Compute/GetOperation30Min;29977" + "Microsoft.Compute/GetOperation3Min;14992,Microsoft.Compute/GetOperation30Min;29965" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ff2124b0-b7bb-4f36-a929-b4d0c5563116" + "793f6c2c-3980-4c01-9887-0a80c2498190" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11973" + "11972" ], "x-ms-correlation-request-id": [ - "c392ee31-50c5-4a92-9013-ed761447769b" + "152a7a71-7c35-4427-a134-84308b05fdcc" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T211237Z:c392ee31-50c5-4a92-9013-ed761447769b" + "JIOINDIAWEST:20220517T041436Z:152a7a71-7c35-4427-a134-84308b05fdcc" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 24 Feb 2022 21:12:37 GMT" + "Tue, 17 May 2022 04:14:36 GMT" ], "Content-Length": [ - "183" + "184" ], "Content-Type": [ "application/json; charset=utf-8" @@ -5082,23 +5082,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-02-24T16:10:03.9062783-05:00\",\r\n \"endTime\": \"2022-02-24T16:12:09.189133-05:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"35b65f3a-189e-4cc5-acae-893c170db6f0\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2022-05-17T09:42:35.1916243+05:30\",\r\n \"endTime\": \"2022-05-17T09:44:14.7843969+05:30\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"7d181fb7-c660-4741-b324-45d7bb708fe7\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Compute/virtualMachines/PSTestVMdbbbe12/extensions/BGInfo?api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZGJiYmUyY2EvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy9QU1Rlc3RWTWRiYmJlMTIvZXh0ZW5zaW9ucy9CR0luZm8/YXBpLXZlcnNpb249MjAyMS0xMS0wMQ==", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.Compute/virtualMachines/PSTestVM9e38712/extensions/BGInfo?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOWUzODczMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy9QU1Rlc3RWTTllMzg3MTIvZXh0ZW5zaW9ucy9CR0luZm8/YXBpLXZlcnNpb249MjAyMS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "561ae606-3a8a-4182-8dc9-1d51bc11b4bb" + "be79c9fe-1f81-4fea-a836-2d25fe26c65c" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ] }, "ResponseHeaders": { @@ -5109,32 +5109,32 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/LowCostGet3Min;3997,Microsoft.Compute/LowCostGet30Min;31983" + "Microsoft.Compute/LowCostGet3Min;3987,Microsoft.Compute/LowCostGet30Min;31863" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a7c42d56-100d-458a-912b-006ce6a540a5" + "4422150a-f4a1-409d-8476-475e3b8db770" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11972" + "11971" ], "x-ms-correlation-request-id": [ - "092a667b-8289-4b62-85f8-c9667f5b8ffc" + "e169e6db-01cb-404c-8833-5309f3fb4ba5" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T211238Z:092a667b-8289-4b62-85f8-c9667f5b8ffc" + "JIOINDIAWEST:20220517T041436Z:e169e6db-01cb-404c-8833-5309f3fb4ba5" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 24 Feb 2022 21:12:37 GMT" + "Tue, 17 May 2022 04:14:36 GMT" ], "Content-Length": [ "486" @@ -5146,23 +5146,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"BGInfo\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Compute/virtualMachines/PSTestVMdbbbe12/extensions/BGInfo\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"southeastasia\",\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}", + "ResponseBody": "{\r\n \"name\": \"BGInfo\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.Compute/virtualMachines/PSTestVM9e38712/extensions/BGInfo\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"BGInfo\",\r\n \"typeHandlerVersion\": \"2.2\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.RecoveryServices/vaults/PSTestRSVdbbbe2ca?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZGJiYmUyY2EvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZkYmJiZTJjYT9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.RecoveryServices/vaults/PSTestRSV9e387301?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOWUzODczMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5ZTM4NzMwMT9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5f722a55-3466-4ff2-aeda-5b096c0ef08b" + "c0e18e62-49ec-49b8-9e4a-0f9c93225f04" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesClient/4.3.2.0" @@ -5179,13 +5179,13 @@ "gateway" ], "x-ms-request-id": [ - "30a013b6-5404-4c50-a322-660c74dbe876" + "6e968257-5f57-46ec-82f9-dcaa97a364fe" ], "x-ms-correlation-request-id": [ - "30a013b6-5404-4c50-a322-660c74dbe876" + "6e968257-5f57-46ec-82f9-dcaa97a364fe" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T211241Z:30a013b6-5404-4c50-a322-660c74dbe876" + "JIOINDIAWEST:20220517T041438Z:6e968257-5f57-46ec-82f9-dcaa97a364fe" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5194,7 +5194,7 @@ "nosniff" ], "Date": [ - "Thu, 24 Feb 2022 21:12:40 GMT" + "Tue, 17 May 2022 04:14:37 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -5206,23 +5206,23 @@ "239" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.RecoveryServices/vaults/PSTestRSVdbbbe2ca' under resource group 'PSTestRGdbbbe2ca' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.RecoveryServices/vaults/PSTestRSV9e387301' under resource group 'PSTestRG9e387301' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.RecoveryServices/vaults/PSTestRSVdbbbe2ca?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZGJiYmUyY2EvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZkYmJiZTJjYT9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.RecoveryServices/vaults/PSTestRSV9e387301?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOWUzODczMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5ZTM4NzMwMT9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"southeastasia\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "fc428615-5b76-4949-92b1-ae07df90f267" + "2dabda8a-d4be-483e-9842-ec0f61a554c3" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesClient/4.3.2.0" @@ -5245,10 +5245,10 @@ "nosniff" ], "x-ms-request-id": [ - "e36c460c-0a6a-4935-96dd-cd922c22db9a" + "fb905976-97b1-4ebf-b973-d43b3c06b6f9" ], "x-ms-client-request-id": [ - "fc428615-5b76-4949-92b1-ae07df90f267" + "2dabda8a-d4be-483e-9842-ec0f61a554c3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5260,16 +5260,16 @@ "209" ], "x-ms-correlation-request-id": [ - "e36c460c-0a6a-4935-96dd-cd922c22db9a" + "fb905976-97b1-4ebf-b973-d43b3c06b6f9" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T211251Z:e36c460c-0a6a-4935-96dd-cd922c22db9a" + "JIOINDIAWEST:20220517T041444Z:fb905976-97b1-4ebf-b973-d43b3c06b6f9" ], "Date": [ - "Thu, 24 Feb 2022 21:12:51 GMT" + "Tue, 17 May 2022 04:14:43 GMT" ], "Content-Length": [ - "466" + "518" ], "Content-Type": [ "application/json" @@ -5278,26 +5278,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"location\": \"southeastasia\",\r\n \"name\": \"PSTestRSVdbbbe2ca\",\r\n \"etag\": \"W/\\\"datetime'2022-02-24T21%3A12%3A50.2453378Z'\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateEndpointStateForBackup\": \"None\",\r\n \"privateEndpointStateForSiteRecovery\": \"None\"\r\n },\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.RecoveryServices/vaults/PSTestRSVdbbbe2ca\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"location\": \"southeastasia\",\r\n \"name\": \"PSTestRSV9e387301\",\r\n \"etag\": \"W/\\\"datetime'2022-05-17T04%3A14%3A43.6540486Z'\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateEndpointStateForBackup\": \"None\",\r\n \"privateEndpointStateForSiteRecovery\": \"None\",\r\n \"networkSettings\": {\r\n \"publicNetworkAccess\": \"Enabled\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.RecoveryServices/vaults/PSTestRSV9e387301\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.RecoveryServices/vaults/PSTestRSVdbbbe2ca/backupconfig/vaultconfig?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZGJiYmUyY2EvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZkYmJiZTJjYS9iYWNrdXBjb25maWcvdmF1bHRjb25maWc/YXBpLXZlcnNpb249MjAyMS0xMC0wMQ==", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.RecoveryServices/vaults/PSTestRSV9e387301/backupconfig/vaultconfig?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOWUzODczMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5ZTM4NzMwMS9iYWNrdXBjb25maWcvdmF1bHRjb25maWc/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bc29827b-7100-44bf-82cf-5d1907b95e17" + "2c0ad125-4196-4e58-935b-4c96fe45a538" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -5311,15 +5311,14 @@ "nosniff" ], "x-ms-request-id": [ - "5dffb070-30a9-42f8-bc9f-11833b743c17" - ], - "x-ms-client-request-id": [ - "bc29827b-7100-44bf-82cf-5d1907b95e17", - "bc29827b-7100-44bf-82cf-5d1907b95e17" + "" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-client-request-id": [ + "2c0ad125-4196-4e58-935b-4c96fe45a538" + ], "Server": [ "Microsoft-IIS/10.0" ], @@ -5330,13 +5329,13 @@ "149" ], "x-ms-correlation-request-id": [ - "5dffb070-30a9-42f8-bc9f-11833b743c17" + "09653828-11fe-475d-a0a0-b3100cd0f3c5" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T211253Z:5dffb070-30a9-42f8-bc9f-11833b743c17" + "JIOINDIAWEST:20220517T041446Z:09653828-11fe-475d-a0a0-b3100cd0f3c5" ], "Date": [ - "Thu, 24 Feb 2022 21:12:53 GMT" + "Tue, 17 May 2022 04:14:45 GMT" ], "Content-Length": [ "380" @@ -5348,32 +5347,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.RecoveryServices/vaults/PSTestRSVdbbbe2ca/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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.RecoveryServices/vaults/PSTestRSV9e387301/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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.RecoveryServices/vaults/PSTestRSVdbbbe2ca/backupconfig/vaultconfig?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZGJiYmUyY2EvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZkYmJiZTJjYS9iYWNrdXBjb25maWcvdmF1bHRjb25maWc/YXBpLXZlcnNpb249MjAyMS0xMC0wMQ==", - "RequestMethod": "PATCH", - "RequestBody": "{\r\n \"properties\": {\r\n \"enhancedSecurityState\": \"Enabled\",\r\n \"softDeleteFeatureState\": \"Disabled\"\r\n }\r\n}", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.RecoveryServices/vaults/PSTestRSV9e387301/backupResourceGuardProxies?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOWUzODczMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5ZTM4NzMwMS9iYWNrdXBSZXNvdXJjZUd1YXJkUHJveGllcz9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bc29827b-7100-44bf-82cf-5d1907b95e17" + "2c0ad125-4196-4e58-935b-4c96fe45a538" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "111" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -5387,11 +5380,11 @@ "nosniff" ], "x-ms-request-id": [ - "12d12bbc-8ab3-49eb-8357-94c1a102f330" + "4d53cc17-6100-4950-abf5-77868b51e775" ], "x-ms-client-request-id": [ - "bc29827b-7100-44bf-82cf-5d1907b95e17", - "bc29827b-7100-44bf-82cf-5d1907b95e17" + "2c0ad125-4196-4e58-935b-4c96fe45a538", + "2c0ad125-4196-4e58-935b-4c96fe45a538" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5402,20 +5395,20 @@ "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" ], "x-ms-correlation-request-id": [ - "12d12bbc-8ab3-49eb-8357-94c1a102f330" + "4d53cc17-6100-4950-abf5-77868b51e775" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T211255Z:12d12bbc-8ab3-49eb-8357-94c1a102f330" + "JIOINDIAWEST:20220517T041447Z:4d53cc17-6100-4950-abf5-77868b51e775" ], "Date": [ - "Thu, 24 Feb 2022 21:12:54 GMT" + "Tue, 17 May 2022 04:14:46 GMT" ], "Content-Length": [ - "381" + "12" ], "Content-Type": [ "application/json" @@ -5424,26 +5417,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.RecoveryServices/vaults/PSTestRSVdbbbe2ca/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}", + "ResponseBody": "{\r\n \"value\": []\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.RecoveryServices/vaults/PSTestRSVdbbbe2ca/backupProtectionContainers?$filter=friendlyName%20eq%20'PSTestVMdbbbe1'%20and%20backupManagementType%20eq%20'AzureIaasVM'%20and%20status%20eq%20'Registered'&api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZGJiYmUyY2EvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZkYmJiZTJjYS9iYWNrdXBQcm90ZWN0aW9uQ29udGFpbmVycz8kZmlsdGVyPWZyaWVuZGx5TmFtZSUyMGVxJTIwJ1BTVGVzdFZNZGJiYmUxJyUyMGFuZCUyMGJhY2t1cE1hbmFnZW1lbnRUeXBlJTIwZXElMjAnQXp1cmVJYWFzVk0nJTIwYW5kJTIwc3RhdHVzJTIwZXElMjAnUmVnaXN0ZXJlZCcmYXBpLXZlcnNpb249MjAyMS0xMC0wMQ==", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.RecoveryServices/vaults/PSTestRSV9e387301/backupResourceGuardProxies?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOWUzODczMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5ZTM4NzMwMS9iYWNrdXBSZXNvdXJjZUd1YXJkUHJveGllcz9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "eb2479f6-7232-4b94-89ef-e26e0c0c47b6" + "487144d1-36fd-4605-8b49-ca0db60fe44d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -5457,11 +5450,11 @@ "nosniff" ], "x-ms-request-id": [ - "24783ebc-6b75-4388-b4e5-5ad7961a746f" + "f4ef08d6-496b-4687-b077-00cd2f303b99" ], "x-ms-client-request-id": [ - "eb2479f6-7232-4b94-89ef-e26e0c0c47b6", - "eb2479f6-7232-4b94-89ef-e26e0c0c47b6" + "487144d1-36fd-4605-8b49-ca0db60fe44d", + "487144d1-36fd-4605-8b49-ca0db60fe44d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5472,17 +5465,17 @@ "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "149" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" ], "x-ms-correlation-request-id": [ - "24783ebc-6b75-4388-b4e5-5ad7961a746f" + "f4ef08d6-496b-4687-b077-00cd2f303b99" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T211301Z:24783ebc-6b75-4388-b4e5-5ad7961a746f" + "JIOINDIAWEST:20220517T041638Z:f4ef08d6-496b-4687-b077-00cd2f303b99" ], "Date": [ - "Thu, 24 Feb 2022 21:13:00 GMT" + "Tue, 17 May 2022 04:16:37 GMT" ], "Content-Length": [ "12" @@ -5498,22 +5491,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.RecoveryServices/vaults/PSTestRSVdbbbe2ca/backupProtectionContainers?$filter=friendlyName%20eq%20'PSTestVMdbbbe1'%20and%20backupManagementType%20eq%20'AzureIaasVM'%20and%20status%20eq%20'Registered'&api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZGJiYmUyY2EvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZkYmJiZTJjYS9iYWNrdXBQcm90ZWN0aW9uQ29udGFpbmVycz8kZmlsdGVyPWZyaWVuZGx5TmFtZSUyMGVxJTIwJ1BTVGVzdFZNZGJiYmUxJyUyMGFuZCUyMGJhY2t1cE1hbmFnZW1lbnRUeXBlJTIwZXElMjAnQXp1cmVJYWFzVk0nJTIwYW5kJTIwc3RhdHVzJTIwZXElMjAnUmVnaXN0ZXJlZCcmYXBpLXZlcnNpb249MjAyMS0xMC0wMQ==", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.RecoveryServices/vaults/PSTestRSV9e387301/backupResourceGuardProxies?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOWUzODczMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5ZTM4NzMwMS9iYWNrdXBSZXNvdXJjZUd1YXJkUHJveGllcz9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f0c0011f-79df-48bc-a6c5-d7a54981e1b2" + "373cb068-1d2a-4796-ad62-a455baaab9cc" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -5527,11 +5520,11 @@ "nosniff" ], "x-ms-request-id": [ - "9ea506d3-ad6c-4d9f-aa3b-0bef37da9772" + "92e29f7a-c472-4164-a868-85a8897410e2" ], "x-ms-client-request-id": [ - "f0c0011f-79df-48bc-a6c5-d7a54981e1b2", - "f0c0011f-79df-48bc-a6c5-d7a54981e1b2" + "373cb068-1d2a-4796-ad62-a455baaab9cc", + "373cb068-1d2a-4796-ad62-a455baaab9cc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5542,20 +5535,20 @@ "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "148" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" ], "x-ms-correlation-request-id": [ - "9ea506d3-ad6c-4d9f-aa3b-0bef37da9772" + "92e29f7a-c472-4164-a868-85a8897410e2" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T211338Z:9ea506d3-ad6c-4d9f-aa3b-0bef37da9772" + "JIOINDIAWEST:20220517T041837Z:92e29f7a-c472-4164-a868-85a8897410e2" ], "Date": [ - "Thu, 24 Feb 2022 21:13:37 GMT" + "Tue, 17 May 2022 04:18:36 GMT" ], "Content-Length": [ - "914" + "12" ], "Content-Type": [ "application/json" @@ -5564,26 +5557,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.RecoveryServices/vaults/PSTestRSVdbbbe2ca/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrgdbbbe2ca;pstestvmdbbbe1\",\r\n \"name\": \"IaasVMContainer;iaasvmcontainerv2;pstestrgdbbbe2ca;pstestvmdbbbe1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers\",\r\n \"properties\": {\r\n \"virtualMachineId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Compute/virtualMachines/PSTestVMdbbbe1\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"resourceGroup\": \"PSTestRGdbbbe2ca\",\r\n \"friendlyName\": \"PSTestVMdbbbe1\",\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}", + "ResponseBody": "{\r\n \"value\": []\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.RecoveryServices/vaults/PSTestRSVdbbbe2ca/backupProtectionContainers?$filter=friendlyName%20eq%20'PSTestVMdbbbe1'%20and%20backupManagementType%20eq%20'AzureIaasVM'%20and%20status%20eq%20'Registered'&api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZGJiYmUyY2EvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZkYmJiZTJjYS9iYWNrdXBQcm90ZWN0aW9uQ29udGFpbmVycz8kZmlsdGVyPWZyaWVuZGx5TmFtZSUyMGVxJTIwJ1BTVGVzdFZNZGJiYmUxJyUyMGFuZCUyMGJhY2t1cE1hbmFnZW1lbnRUeXBlJTIwZXElMjAnQXp1cmVJYWFzVk0nJTIwYW5kJTIwc3RhdHVzJTIwZXElMjAnUmVnaXN0ZXJlZCcmYXBpLXZlcnNpb249MjAyMS0xMC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.RecoveryServices/vaults/PSTestRSV9e387301/backupconfig/vaultconfig?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOWUzODczMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5ZTM4NzMwMS9iYWNrdXBjb25maWcvdmF1bHRjb25maWc/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "PATCH", + "RequestBody": "{\r\n \"properties\": {\r\n \"enhancedSecurityState\": \"Enabled\",\r\n \"softDeleteFeatureState\": \"Disabled\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "79e88866-ebd2-447c-874b-8429fedd9821" + "2c0ad125-4196-4e58-935b-4c96fe45a538" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "111" ] }, "ResponseHeaders": { @@ -5597,11 +5596,11 @@ "nosniff" ], "x-ms-request-id": [ - "3b9b3d91-4695-4bde-95a0-71eb4033ae89" + "ceb80835-e1c5-4bf1-bddc-42e604221d16" ], "x-ms-client-request-id": [ - "79e88866-ebd2-447c-874b-8429fedd9821", - "79e88866-ebd2-447c-874b-8429fedd9821" + "2c0ad125-4196-4e58-935b-4c96fe45a538", + "2c0ad125-4196-4e58-935b-4c96fe45a538" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5612,20 +5611,20 @@ "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "145" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" ], "x-ms-correlation-request-id": [ - "3b9b3d91-4695-4bde-95a0-71eb4033ae89" + "ceb80835-e1c5-4bf1-bddc-42e604221d16" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T211426Z:3b9b3d91-4695-4bde-95a0-71eb4033ae89" + "JIOINDIAWEST:20220517T041449Z:ceb80835-e1c5-4bf1-bddc-42e604221d16" ], "Date": [ - "Thu, 24 Feb 2022 21:14:26 GMT" + "Tue, 17 May 2022 04:14:48 GMT" ], "Content-Length": [ - "914" + "381" ], "Content-Type": [ "application/json" @@ -5634,26 +5633,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.RecoveryServices/vaults/PSTestRSVdbbbe2ca/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrgdbbbe2ca;pstestvmdbbbe1\",\r\n \"name\": \"IaasVMContainer;iaasvmcontainerv2;pstestrgdbbbe2ca;pstestvmdbbbe1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers\",\r\n \"properties\": {\r\n \"virtualMachineId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Compute/virtualMachines/PSTestVMdbbbe1\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"resourceGroup\": \"PSTestRGdbbbe2ca\",\r\n \"friendlyName\": \"PSTestVMdbbbe1\",\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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.RecoveryServices/vaults/PSTestRSV9e387301/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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.RecoveryServices/vaults/PSTestRSVdbbbe2ca/backupPolicies/DefaultPolicy?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZGJiYmUyY2EvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZkYmJiZTJjYS9iYWNrdXBQb2xpY2llcy9EZWZhdWx0UG9saWN5P2FwaS12ZXJzaW9uPTIwMjEtMTAtMDE=", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.RecoveryServices/vaults/PSTestRSV9e387301/backupProtectionContainers?$filter=friendlyName%20eq%20'PSTestVM9e3871'%20and%20backupManagementType%20eq%20'AzureIaasVM'%20and%20status%20eq%20'Registered'&api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOWUzODczMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5ZTM4NzMwMS9iYWNrdXBQcm90ZWN0aW9uQ29udGFpbmVycz8kZmlsdGVyPWZyaWVuZGx5TmFtZSUyMGVxJTIwJ1BTVGVzdFZNOWUzODcxJyUyMGFuZCUyMGJhY2t1cE1hbmFnZW1lbnRUeXBlJTIwZXElMjAnQXp1cmVJYWFzVk0nJTIwYW5kJTIwc3RhdHVzJTIwZXElMjAnUmVnaXN0ZXJlZCcmYXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b650a06c-8479-441e-ae6b-16e4b0ec32a7" + "3ef7278d-fd76-4f03-ab42-75fc357d2094" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -5667,11 +5666,11 @@ "nosniff" ], "x-ms-request-id": [ - "9377ea09-4baa-4cc6-8ba9-f191788702b2" + "0b6d5b5b-88b7-497e-afc7-86e5bc985f4f" ], "x-ms-client-request-id": [ - "b650a06c-8479-441e-ae6b-16e4b0ec32a7", - "b650a06c-8479-441e-ae6b-16e4b0ec32a7" + "3ef7278d-fd76-4f03-ab42-75fc357d2094", + "3ef7278d-fd76-4f03-ab42-75fc357d2094" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5686,16 +5685,16 @@ "149" ], "x-ms-correlation-request-id": [ - "9377ea09-4baa-4cc6-8ba9-f191788702b2" + "0b6d5b5b-88b7-497e-afc7-86e5bc985f4f" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T211302Z:9377ea09-4baa-4cc6-8ba9-f191788702b2" + "JIOINDIAWEST:20220517T041454Z:0b6d5b5b-88b7-497e-afc7-86e5bc985f4f" ], "Date": [ - "Thu, 24 Feb 2022 21:13:01 GMT" + "Tue, 17 May 2022 04:14:53 GMT" ], "Content-Length": [ - "762" + "12" ], "Content-Type": [ "application/json" @@ -5704,26 +5703,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.RecoveryServices/vaults/PSTestRSVdbbbe2ca/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 \"2022-02-25T07:00:00Z\"\r\n ],\r\n \"scheduleWeeklyFrequency\": 0\r\n },\r\n \"retentionPolicy\": {\r\n \"retentionPolicyType\": \"LongTermRetentionPolicy\",\r\n \"dailySchedule\": {\r\n \"retentionTimes\": [\r\n \"2022-02-25T07:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 30,\r\n \"durationType\": \"Days\"\r\n }\r\n }\r\n },\r\n \"instantRpRetentionRangeInDays\": 2,\r\n \"timeZone\": \"UTC\",\r\n \"protectedItemsCount\": 0\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": []\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.RecoveryServices/vaults/PSTestRSVdbbbe2ca/backupPolicies/DefaultPolicy?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZGJiYmUyY2EvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZkYmJiZTJjYS9iYWNrdXBQb2xpY2llcy9EZWZhdWx0UG9saWN5P2FwaS12ZXJzaW9uPTIwMjEtMTAtMDE=", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.RecoveryServices/vaults/PSTestRSV9e387301/backupProtectionContainers?$filter=friendlyName%20eq%20'PSTestVM9e3871'%20and%20backupManagementType%20eq%20'AzureIaasVM'%20and%20status%20eq%20'Registered'&api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOWUzODczMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5ZTM4NzMwMS9iYWNrdXBQcm90ZWN0aW9uQ29udGFpbmVycz8kZmlsdGVyPWZyaWVuZGx5TmFtZSUyMGVxJTIwJ1BTVGVzdFZNOWUzODcxJyUyMGFuZCUyMGJhY2t1cE1hbmFnZW1lbnRUeXBlJTIwZXElMjAnQXp1cmVJYWFzVk0nJTIwYW5kJTIwc3RhdHVzJTIwZXElMjAnUmVnaXN0ZXJlZCcmYXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4fe89699-1f4f-4066-83cb-7251da57ec06" + "027d1eac-7d58-41f3-be43-bcb286ec8748" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -5737,11 +5736,11 @@ "nosniff" ], "x-ms-request-id": [ - "b0d69c05-da10-44bf-98eb-23aefb9faf57" + "76b1b350-16f8-48c9-b4a0-b80daeb3d98e" ], "x-ms-client-request-id": [ - "4fe89699-1f4f-4066-83cb-7251da57ec06", - "4fe89699-1f4f-4066-83cb-7251da57ec06" + "027d1eac-7d58-41f3-be43-bcb286ec8748", + "027d1eac-7d58-41f3-be43-bcb286ec8748" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5756,16 +5755,16 @@ "148" ], "x-ms-correlation-request-id": [ - "b0d69c05-da10-44bf-98eb-23aefb9faf57" + "76b1b350-16f8-48c9-b4a0-b80daeb3d98e" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T211345Z:b0d69c05-da10-44bf-98eb-23aefb9faf57" + "JIOINDIAWEST:20220517T041532Z:76b1b350-16f8-48c9-b4a0-b80daeb3d98e" ], "Date": [ - "Thu, 24 Feb 2022 21:13:44 GMT" + "Tue, 17 May 2022 04:15:32 GMT" ], "Content-Length": [ - "762" + "914" ], "Content-Type": [ "application/json" @@ -5774,26 +5773,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.RecoveryServices/vaults/PSTestRSVdbbbe2ca/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 \"2022-02-25T07:00:00Z\"\r\n ],\r\n \"scheduleWeeklyFrequency\": 0\r\n },\r\n \"retentionPolicy\": {\r\n \"retentionPolicyType\": \"LongTermRetentionPolicy\",\r\n \"dailySchedule\": {\r\n \"retentionTimes\": [\r\n \"2022-02-25T07:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 30,\r\n \"durationType\": \"Days\"\r\n }\r\n }\r\n },\r\n \"instantRpRetentionRangeInDays\": 2,\r\n \"timeZone\": \"UTC\",\r\n \"protectedItemsCount\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.RecoveryServices/vaults/PSTestRSV9e387301/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrg9e387301;pstestvm9e3871\",\r\n \"name\": \"IaasVMContainer;iaasvmcontainerv2;pstestrg9e387301;pstestvm9e3871\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers\",\r\n \"properties\": {\r\n \"virtualMachineId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.Compute/virtualMachines/PSTestVM9e3871\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"resourceGroup\": \"PSTestRG9e387301\",\r\n \"friendlyName\": \"PSTestVM9e3871\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.RecoveryServices/vaults/PSTestRSVdbbbe2ca/backupPolicies/DefaultPolicy?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZGJiYmUyY2EvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZkYmJiZTJjYS9iYWNrdXBQb2xpY2llcy9EZWZhdWx0UG9saWN5P2FwaS12ZXJzaW9uPTIwMjEtMTAtMDE=", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.RecoveryServices/vaults/PSTestRSV9e387301/backupProtectionContainers?$filter=friendlyName%20eq%20'PSTestVM9e3871'%20and%20backupManagementType%20eq%20'AzureIaasVM'%20and%20status%20eq%20'Registered'&api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOWUzODczMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5ZTM4NzMwMS9iYWNrdXBQcm90ZWN0aW9uQ29udGFpbmVycz8kZmlsdGVyPWZyaWVuZGx5TmFtZSUyMGVxJTIwJ1BTVGVzdFZNOWUzODcxJyUyMGFuZCUyMGJhY2t1cE1hbmFnZW1lbnRUeXBlJTIwZXElMjAnQXp1cmVJYWFzVk0nJTIwYW5kJTIwc3RhdHVzJTIwZXElMjAnUmVnaXN0ZXJlZCcmYXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "48342439-384a-4a41-9fda-995155b5a21a" + "6b2e7ea9-1306-4cfd-a8d8-f724edd38943" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -5807,11 +5806,11 @@ "nosniff" ], "x-ms-request-id": [ - "b9451e86-6ed6-44aa-87dd-0ed5fa6fe6fb" + "318e57a6-6094-44ba-9e79-0ef02a3a4922" ], "x-ms-client-request-id": [ - "48342439-384a-4a41-9fda-995155b5a21a", - "48342439-384a-4a41-9fda-995155b5a21a" + "6b2e7ea9-1306-4cfd-a8d8-f724edd38943", + "6b2e7ea9-1306-4cfd-a8d8-f724edd38943" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5823,19 +5822,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "147" + "145" ], "x-ms-correlation-request-id": [ - "b9451e86-6ed6-44aa-87dd-0ed5fa6fe6fb" + "318e57a6-6094-44ba-9e79-0ef02a3a4922" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T211425Z:b9451e86-6ed6-44aa-87dd-0ed5fa6fe6fb" + "JIOINDIAWEST:20220517T041629Z:318e57a6-6094-44ba-9e79-0ef02a3a4922" ], "Date": [ - "Thu, 24 Feb 2022 21:14:25 GMT" + "Tue, 17 May 2022 04:16:28 GMT" ], "Content-Length": [ - "762" + "914" ], "Content-Type": [ "application/json" @@ -5844,26 +5843,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.RecoveryServices/vaults/PSTestRSVdbbbe2ca/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 \"2022-02-25T07:00:00Z\"\r\n ],\r\n \"scheduleWeeklyFrequency\": 0\r\n },\r\n \"retentionPolicy\": {\r\n \"retentionPolicyType\": \"LongTermRetentionPolicy\",\r\n \"dailySchedule\": {\r\n \"retentionTimes\": [\r\n \"2022-02-25T07:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 30,\r\n \"durationType\": \"Days\"\r\n }\r\n }\r\n },\r\n \"instantRpRetentionRangeInDays\": 2,\r\n \"timeZone\": \"UTC\",\r\n \"protectedItemsCount\": 2\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.RecoveryServices/vaults/PSTestRSV9e387301/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrg9e387301;pstestvm9e3871\",\r\n \"name\": \"IaasVMContainer;iaasvmcontainerv2;pstestrg9e387301;pstestvm9e3871\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers\",\r\n \"properties\": {\r\n \"virtualMachineId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.Compute/virtualMachines/PSTestVM9e3871\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"resourceGroup\": \"PSTestRG9e387301\",\r\n \"friendlyName\": \"PSTestVM9e3871\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.RecoveryServices/vaults/PSTestRSVdbbbe2ca/backupProtectableItems?$filter=backupManagementType%20eq%20'AzureIaasVM'&api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZGJiYmUyY2EvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZkYmJiZTJjYS9iYWNrdXBQcm90ZWN0YWJsZUl0ZW1zPyRmaWx0ZXI9YmFja3VwTWFuYWdlbWVudFR5cGUlMjBlcSUyMCdBenVyZUlhYXNWTScmYXBpLXZlcnNpb249MjAyMS0xMC0wMQ==", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.RecoveryServices/vaults/PSTestRSV9e387301/backupPolicies/DefaultPolicy?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOWUzODczMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5ZTM4NzMwMS9iYWNrdXBQb2xpY2llcy9EZWZhdWx0UG9saWN5P2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "94a69640-acbe-4dd1-8364-7b842f916ed0" + "5b3da4e8-c8bf-4699-b871-990bd72e5260" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -5877,11 +5876,11 @@ "nosniff" ], "x-ms-request-id": [ - "ec13c27a-74f5-42ab-beae-ae1927f2ea96" + "5a293c38-1571-475e-8bf5-73ea9ba751c1" ], "x-ms-client-request-id": [ - "94a69640-acbe-4dd1-8364-7b842f916ed0", - "94a69640-acbe-4dd1-8364-7b842f916ed0" + "5b3da4e8-c8bf-4699-b871-990bd72e5260", + "5b3da4e8-c8bf-4699-b871-990bd72e5260" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5896,16 +5895,16 @@ "149" ], "x-ms-correlation-request-id": [ - "ec13c27a-74f5-42ab-beae-ae1927f2ea96" + "5a293c38-1571-475e-8bf5-73ea9ba751c1" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T211302Z:ec13c27a-74f5-42ab-beae-ae1927f2ea96" + "JIOINDIAWEST:20220517T041455Z:5a293c38-1571-475e-8bf5-73ea9ba751c1" ], "Date": [ - "Thu, 24 Feb 2022 21:13:02 GMT" + "Tue, 17 May 2022 04:14:54 GMT" ], "Content-Length": [ - "1804" + "762" ], "Content-Type": [ "application/json" @@ -5914,26 +5913,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.RecoveryServices/vaults/PSTestRSVdbbbe2ca/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrgdbbbe2ca;pstestvmdbbbe1/protectableItems/vm;iaasvmcontainerv2;pstestrgdbbbe2ca;pstestvmdbbbe1\",\r\n \"name\": \"iaasvmcontainerv2;pstestrgdbbbe2ca;pstestvmdbbbe1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems\",\r\n \"properties\": {\r\n \"virtualMachineId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Compute/virtualMachines/PSTestVMdbbbe1\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"resourceGroup\": \"PSTestRGdbbbe2ca\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"protectableItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"friendlyName\": \"PSTestVMdbbbe1\",\r\n \"protectionState\": \"NotProtected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.RecoveryServices/vaults/PSTestRSVdbbbe2ca/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrgdbbbe2ca;pstestvmdbbbe12/protectableItems/vm;iaasvmcontainerv2;pstestrgdbbbe2ca;pstestvmdbbbe12\",\r\n \"name\": \"iaasvmcontainerv2;pstestrgdbbbe2ca;pstestvmdbbbe12\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems\",\r\n \"properties\": {\r\n \"virtualMachineId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Compute/virtualMachines/PSTestVMdbbbe12\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"resourceGroup\": \"PSTestRGdbbbe2ca\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"protectableItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"friendlyName\": \"PSTestVMdbbbe12\",\r\n \"protectionState\": \"NotProtected\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.RecoveryServices/vaults/PSTestRSV9e387301/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 \"2022-05-17T14:00:00Z\"\r\n ],\r\n \"scheduleWeeklyFrequency\": 0\r\n },\r\n \"retentionPolicy\": {\r\n \"retentionPolicyType\": \"LongTermRetentionPolicy\",\r\n \"dailySchedule\": {\r\n \"retentionTimes\": [\r\n \"2022-05-17T14:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 30,\r\n \"durationType\": \"Days\"\r\n }\r\n }\r\n },\r\n \"instantRpRetentionRangeInDays\": 2,\r\n \"timeZone\": \"UTC\",\r\n \"protectedItemsCount\": 0\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.RecoveryServices/vaults/PSTestRSVdbbbe2ca/backupProtectableItems?$filter=backupManagementType%20eq%20'AzureIaasVM'&api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZGJiYmUyY2EvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZkYmJiZTJjYS9iYWNrdXBQcm90ZWN0YWJsZUl0ZW1zPyRmaWx0ZXI9YmFja3VwTWFuYWdlbWVudFR5cGUlMjBlcSUyMCdBenVyZUlhYXNWTScmYXBpLXZlcnNpb249MjAyMS0xMC0wMQ==", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.RecoveryServices/vaults/PSTestRSV9e387301/backupPolicies/DefaultPolicy?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOWUzODczMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5ZTM4NzMwMS9iYWNrdXBQb2xpY2llcy9EZWZhdWx0UG9saWN5P2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1bb928f6-fc23-460f-a294-2664d65093a8" + "9edc1b22-52f4-41a9-9aef-214ad8a28b87" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -5947,11 +5946,11 @@ "nosniff" ], "x-ms-request-id": [ - "18142045-386f-4801-b902-e5e940f2f779" + "b0669465-5977-4086-9f2c-0a4d0acf20c3" ], "x-ms-client-request-id": [ - "1bb928f6-fc23-460f-a294-2664d65093a8", - "1bb928f6-fc23-460f-a294-2664d65093a8" + "9edc1b22-52f4-41a9-9aef-214ad8a28b87", + "9edc1b22-52f4-41a9-9aef-214ad8a28b87" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5966,16 +5965,16 @@ "148" ], "x-ms-correlation-request-id": [ - "18142045-386f-4801-b902-e5e940f2f779" + "b0669465-5977-4086-9f2c-0a4d0acf20c3" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T211346Z:18142045-386f-4801-b902-e5e940f2f779" + "JIOINDIAWEST:20220517T041539Z:b0669465-5977-4086-9f2c-0a4d0acf20c3" ], "Date": [ - "Thu, 24 Feb 2022 21:13:45 GMT" + "Tue, 17 May 2022 04:15:39 GMT" ], "Content-Length": [ - "910" + "762" ], "Content-Type": [ "application/json" @@ -5984,32 +5983,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.RecoveryServices/vaults/PSTestRSVdbbbe2ca/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrgdbbbe2ca;pstestvmdbbbe12/protectableItems/vm;iaasvmcontainerv2;pstestrgdbbbe2ca;pstestvmdbbbe12\",\r\n \"name\": \"iaasvmcontainerv2;pstestrgdbbbe2ca;pstestvmdbbbe12\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems\",\r\n \"properties\": {\r\n \"virtualMachineId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Compute/virtualMachines/PSTestVMdbbbe12\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"resourceGroup\": \"PSTestRGdbbbe2ca\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"protectableItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"friendlyName\": \"PSTestVMdbbbe12\",\r\n \"protectionState\": \"NotProtected\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.RecoveryServices/vaults/PSTestRSV9e387301/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 \"2022-05-17T14:00:00Z\"\r\n ],\r\n \"scheduleWeeklyFrequency\": 0\r\n },\r\n \"retentionPolicy\": {\r\n \"retentionPolicyType\": \"LongTermRetentionPolicy\",\r\n \"dailySchedule\": {\r\n \"retentionTimes\": [\r\n \"2022-05-17T14:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 30,\r\n \"durationType\": \"Days\"\r\n }\r\n }\r\n },\r\n \"instantRpRetentionRangeInDays\": 2,\r\n \"timeZone\": \"UTC\",\r\n \"protectedItemsCount\": 1\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.RecoveryServices/vaults/PSTestRSVdbbbe2ca/backupFabrics/Azure/protectionContainers/IaasVMContainer%3Biaasvmcontainerv2%3Bpstestrgdbbbe2ca%3Bpstestvmdbbbe1/protectedItems/vm%3Biaasvmcontainerv2%3Bpstestrgdbbbe2ca%3Bpstestvmdbbbe1?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZGJiYmUyY2EvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZkYmJiZTJjYS9iYWNrdXBGYWJyaWNzL0F6dXJlL3Byb3RlY3Rpb25Db250YWluZXJzL0lhYXNWTUNvbnRhaW5lciUzQmlhYXN2bWNvbnRhaW5lcnYyJTNCcHN0ZXN0cmdkYmJiZTJjYSUzQnBzdGVzdHZtZGJiYmUxL3Byb3RlY3RlZEl0ZW1zL3ZtJTNCaWFhc3ZtY29udGFpbmVydjIlM0Jwc3Rlc3RyZ2RiYmJlMmNhJTNCcHN0ZXN0dm1kYmJiZTE/YXBpLXZlcnNpb249MjAyMS0xMC0wMQ==", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"protectedItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"sourceResourceId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Compute/virtualMachines/PSTestVMdbbbe1\",\r\n \"policyId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.RecoveryServices/vaults/PSTestRSVdbbbe2ca/backupPolicies/DefaultPolicy\"\r\n }\r\n}", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.RecoveryServices/vaults/PSTestRSV9e387301/backupPolicies/DefaultPolicy?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOWUzODczMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5ZTM4NzMwMS9iYWNrdXBQb2xpY2llcy9EZWZhdWx0UG9saWN5P2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "94a69640-acbe-4dd1-8364-7b842f916ed0" + "5f05709e-b34b-4e69-9141-4b5871648507" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "456" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -6019,70 +6012,67 @@ "Pragma": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.RecoveryServices/vaults/PSTestRSVdbbbe2ca/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrgdbbbe2ca;pstestvmdbbbe1/protectedItems/vm;iaasvmcontainerv2;pstestrgdbbbe2ca;pstestvmdbbbe1/operationResults/635b698f-e7ca-48ac-8372-5c970f2549c1?api-version=2021-10-01" - ], - "Retry-After": [ - "60" - ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.RecoveryServices/vaults/PSTestRSVdbbbe2ca/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrgdbbbe2ca;pstestvmdbbbe1/protectedItems/vm;iaasvmcontainerv2;pstestrgdbbbe2ca;pstestvmdbbbe1/operationsStatus/635b698f-e7ca-48ac-8372-5c970f2549c1?api-version=2021-10-01" - ], - "X-Content-Type-Options": [ - "nosniff" + "X-Content-Type-Options": [ + "nosniff" ], "x-ms-request-id": [ - "831c98e0-f387-475e-920f-adb3570342f1" + "56c395f6-37d8-46c0-a770-987c4e7f5149" ], "x-ms-client-request-id": [ - "94a69640-acbe-4dd1-8364-7b842f916ed0", - "94a69640-acbe-4dd1-8364-7b842f916ed0" + "5f05709e-b34b-4e69-9141-4b5871648507", + "5f05709e-b34b-4e69-9141-4b5871648507" ], "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-ratelimit-remaining-subscription-resource-requests": [ + "147" ], "x-ms-correlation-request-id": [ - "831c98e0-f387-475e-920f-adb3570342f1" + "56c395f6-37d8-46c0-a770-987c4e7f5149" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T211304Z:831c98e0-f387-475e-920f-adb3570342f1" + "JIOINDIAWEST:20220517T041628Z:56c395f6-37d8-46c0-a770-987c4e7f5149" ], "Date": [ - "Thu, 24 Feb 2022 21:13:03 GMT" + "Tue, 17 May 2022 04:16:27 GMT" + ], + "Content-Length": [ + "762" + ], + "Content-Type": [ + "application/json" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, - "ResponseBody": "", - "StatusCode": 202 + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.RecoveryServices/vaults/PSTestRSV9e387301/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 \"2022-05-17T14:00:00Z\"\r\n ],\r\n \"scheduleWeeklyFrequency\": 0\r\n },\r\n \"retentionPolicy\": {\r\n \"retentionPolicyType\": \"LongTermRetentionPolicy\",\r\n \"dailySchedule\": {\r\n \"retentionTimes\": [\r\n \"2022-05-17T14:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 30,\r\n \"durationType\": \"Days\"\r\n }\r\n }\r\n },\r\n \"instantRpRetentionRangeInDays\": 2,\r\n \"timeZone\": \"UTC\",\r\n \"protectedItemsCount\": 2\r\n }\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.RecoveryServices/vaults/PSTestRSVdbbbe2ca/backupOperations/635b698f-e7ca-48ac-8372-5c970f2549c1?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZGJiYmUyY2EvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZkYmJiZTJjYS9iYWNrdXBPcGVyYXRpb25zLzYzNWI2OThmLWU3Y2EtNDhhYy04MzcyLTVjOTcwZjI1NDljMT9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.RecoveryServices/vaults/PSTestRSV9e387301/backupProtectableItems?$filter=backupManagementType%20eq%20'AzureIaasVM'&api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOWUzODczMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5ZTM4NzMwMS9iYWNrdXBQcm90ZWN0YWJsZUl0ZW1zPyRmaWx0ZXI9YmFja3VwTWFuYWdlbWVudFR5cGUlMjBlcSUyMCdBenVyZUlhYXNWTScmYXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "94a69640-acbe-4dd1-8364-7b842f916ed0" + "77f2ca5b-896f-4e31-83a6-6c342ca54700" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -6096,11 +6086,11 @@ "nosniff" ], "x-ms-request-id": [ - "e6a186a8-90d5-4d9a-9c94-47e96590c353" + "9cde9be2-0fe1-4622-a984-86b8b9150134" ], "x-ms-client-request-id": [ - "94a69640-acbe-4dd1-8364-7b842f916ed0", - "94a69640-acbe-4dd1-8364-7b842f916ed0" + "77f2ca5b-896f-4e31-83a6-6c342ca54700", + "77f2ca5b-896f-4e31-83a6-6c342ca54700" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6115,16 +6105,16 @@ "149" ], "x-ms-correlation-request-id": [ - "e6a186a8-90d5-4d9a-9c94-47e96590c353" + "9cde9be2-0fe1-4622-a984-86b8b9150134" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T211304Z:e6a186a8-90d5-4d9a-9c94-47e96590c353" + "JIOINDIAWEST:20220517T041455Z:9cde9be2-0fe1-4622-a984-86b8b9150134" ], "Date": [ - "Thu, 24 Feb 2022 21:13:04 GMT" + "Tue, 17 May 2022 04:14:55 GMT" ], "Content-Length": [ - "188" + "7932" ], "Content-Type": [ "application/json" @@ -6133,26 +6123,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"635b698f-e7ca-48ac-8372-5c970f2549c1\",\r\n \"name\": \"635b698f-e7ca-48ac-8372-5c970f2549c1\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-24T21:13:03.7868428Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.RecoveryServices/vaults/PSTestRSV9e387301/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;akneema;akneema-hana-vm/protectableItems/vm;iaasvmcontainerv2;akneema;akneema-hana-vm\",\r\n \"name\": \"iaasvmcontainerv2;akneema;akneema-hana-vm\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems\",\r\n \"properties\": {\r\n \"virtualMachineId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/akneema/providers/Microsoft.Compute/virtualMachines/akneema-hana-vm\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"resourceGroup\": \"akneema\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"protectableItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"friendlyName\": \"akneema-hana-vm\",\r\n \"protectionState\": \"NotProtected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.RecoveryServices/vaults/PSTestRSV9e387301/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;containerautoprotection;shrja-2019/protectableItems/vm;iaasvmcontainerv2;containerautoprotection;shrja-2019\",\r\n \"name\": \"iaasvmcontainerv2;containerautoprotection;shrja-2019\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems\",\r\n \"properties\": {\r\n \"virtualMachineId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/ContainerAutoProtection/providers/Microsoft.Compute/virtualMachines/shrja-2019\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"resourceGroup\": \"ContainerAutoProtection\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"protectableItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"friendlyName\": \"shrja-2019\",\r\n \"protectionState\": \"NotProtected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.RecoveryServices/vaults/PSTestRSV9e387301/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrg9e387301;pstestvm9e3871/protectableItems/vm;iaasvmcontainerv2;pstestrg9e387301;pstestvm9e3871\",\r\n \"name\": \"iaasvmcontainerv2;pstestrg9e387301;pstestvm9e3871\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems\",\r\n \"properties\": {\r\n \"virtualMachineId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.Compute/virtualMachines/PSTestVM9e3871\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"resourceGroup\": \"PSTestRG9e387301\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"protectableItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"friendlyName\": \"PSTestVM9e3871\",\r\n \"protectionState\": \"NotProtected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.RecoveryServices/vaults/PSTestRSV9e387301/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrg9e387301;pstestvm9e38712/protectableItems/vm;iaasvmcontainerv2;pstestrg9e387301;pstestvm9e38712\",\r\n \"name\": \"iaasvmcontainerv2;pstestrg9e387301;pstestvm9e38712\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems\",\r\n \"properties\": {\r\n \"virtualMachineId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.Compute/virtualMachines/PSTestVM9e38712\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"resourceGroup\": \"PSTestRG9e387301\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"protectableItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"friendlyName\": \"PSTestVM9e38712\",\r\n \"protectionState\": \"NotProtected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.RecoveryServices/vaults/PSTestRSV9e387301/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestwlrg1bca8;pstestwlvm1bca8/protectableItems/vm;iaasvmcontainerv2;pstestwlrg1bca8;pstestwlvm1bca8\",\r\n \"name\": \"iaasvmcontainerv2;pstestwlrg1bca8;pstestwlvm1bca8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems\",\r\n \"properties\": {\r\n \"virtualMachineId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/pstestwlRG1bca8/providers/Microsoft.Compute/virtualMachines/pstestwlvm1bca8\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"resourceGroup\": \"pstestwlRG1bca8\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"protectableItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"friendlyName\": \"pstestwlvm1bca8\",\r\n \"protectionState\": \"NotProtected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.RecoveryServices/vaults/PSTestRSV9e387301/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;shrja2008_group;shrja2008/protectableItems/vm;iaasvmcontainerv2;shrja2008_group;shrja2008\",\r\n \"name\": \"iaasvmcontainerv2;shrja2008_group;shrja2008\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems\",\r\n \"properties\": {\r\n \"virtualMachineId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/shrja2008_group/providers/Microsoft.Compute/virtualMachines/shrja2008\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"resourceGroup\": \"shrja2008_group\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"protectableItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"friendlyName\": \"shrja2008\",\r\n \"protectionState\": \"NotProtected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.RecoveryServices/vaults/PSTestRSV9e387301/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;shswain-rg-donotuse;dsdsdsad/protectableItems/vm;iaasvmcontainerv2;shswain-rg-donotuse;dsdsdsad\",\r\n \"name\": \"iaasvmcontainerv2;shswain-rg-donotuse;dsdsdsad\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems\",\r\n \"properties\": {\r\n \"virtualMachineId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/shswain-rg-donotuse/providers/Microsoft.Compute/virtualMachines/dsdsdsad\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"resourceGroup\": \"shswain-rg-donotuse\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"protectableItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"friendlyName\": \"dsdsdsad\",\r\n \"protectionState\": \"NotProtected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.RecoveryServices/vaults/PSTestRSV9e387301/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;shswain-rg-donotuse;iumjjkuui/protectableItems/vm;iaasvmcontainerv2;shswain-rg-donotuse;iumjjkuui\",\r\n \"name\": \"iaasvmcontainerv2;shswain-rg-donotuse;iumjjkuui\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems\",\r\n \"properties\": {\r\n \"virtualMachineId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/shswain-rg-donotuse/providers/Microsoft.Compute/virtualMachines/iumjjkuui\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"resourceGroup\": \"shswain-rg-donotuse\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"protectableItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"friendlyName\": \"iumjjkuui\",\r\n \"protectionState\": \"NotProtected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.RecoveryServices/vaults/PSTestRSV9e387301/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;sisi-rsv;sisi-mercury/protectableItems/vm;iaasvmcontainerv2;sisi-rsv;sisi-mercury\",\r\n \"name\": \"iaasvmcontainerv2;sisi-rsv;sisi-mercury\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems\",\r\n \"properties\": {\r\n \"virtualMachineId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/sisi-RSV/providers/Microsoft.Compute/virtualMachines/sisi-mercury\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"resourceGroup\": \"sisi-RSV\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"protectableItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"friendlyName\": \"sisi-mercury\",\r\n \"protectionState\": \"NotProtected\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.RecoveryServices/vaults/PSTestRSVdbbbe2ca/backupOperations/635b698f-e7ca-48ac-8372-5c970f2549c1?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZGJiYmUyY2EvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZkYmJiZTJjYS9iYWNrdXBPcGVyYXRpb25zLzYzNWI2OThmLWU3Y2EtNDhhYy04MzcyLTVjOTcwZjI1NDljMT9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.RecoveryServices/vaults/PSTestRSV9e387301/backupProtectableItems?$filter=backupManagementType%20eq%20'AzureIaasVM'&api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOWUzODczMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5ZTM4NzMwMS9iYWNrdXBQcm90ZWN0YWJsZUl0ZW1zPyRmaWx0ZXI9YmFja3VwTWFuYWdlbWVudFR5cGUlMjBlcSUyMCdBenVyZUlhYXNWTScmYXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "94a69640-acbe-4dd1-8364-7b842f916ed0" + "6698e185-807e-4883-9b00-97569ea66115" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -6166,11 +6156,11 @@ "nosniff" ], "x-ms-request-id": [ - "59ffd427-d184-4bc1-aa32-005e79d1a467" + "941487f5-5330-4b4d-a680-6e4496946abb" ], "x-ms-client-request-id": [ - "94a69640-acbe-4dd1-8364-7b842f916ed0", - "94a69640-acbe-4dd1-8364-7b842f916ed0" + "6698e185-807e-4883-9b00-97569ea66115", + "6698e185-807e-4883-9b00-97569ea66115" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6185,16 +6175,16 @@ "148" ], "x-ms-correlation-request-id": [ - "59ffd427-d184-4bc1-aa32-005e79d1a467" + "941487f5-5330-4b4d-a680-6e4496946abb" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T211315Z:59ffd427-d184-4bc1-aa32-005e79d1a467" + "JIOINDIAWEST:20220517T041540Z:941487f5-5330-4b4d-a680-6e4496946abb" ], "Date": [ - "Thu, 24 Feb 2022 21:13:14 GMT" + "Tue, 17 May 2022 04:15:40 GMT" ], "Content-Length": [ - "188" + "7038" ], "Content-Type": [ "application/json" @@ -6203,26 +6193,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"635b698f-e7ca-48ac-8372-5c970f2549c1\",\r\n \"name\": \"635b698f-e7ca-48ac-8372-5c970f2549c1\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-24T21:13:03.7868428Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.RecoveryServices/vaults/PSTestRSV9e387301/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;akneema;akneema-hana-vm/protectableItems/vm;iaasvmcontainerv2;akneema;akneema-hana-vm\",\r\n \"name\": \"iaasvmcontainerv2;akneema;akneema-hana-vm\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems\",\r\n \"properties\": {\r\n \"virtualMachineId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/akneema/providers/Microsoft.Compute/virtualMachines/akneema-hana-vm\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"resourceGroup\": \"akneema\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"protectableItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"friendlyName\": \"akneema-hana-vm\",\r\n \"protectionState\": \"NotProtected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.RecoveryServices/vaults/PSTestRSV9e387301/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;containerautoprotection;shrja-2019/protectableItems/vm;iaasvmcontainerv2;containerautoprotection;shrja-2019\",\r\n \"name\": \"iaasvmcontainerv2;containerautoprotection;shrja-2019\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems\",\r\n \"properties\": {\r\n \"virtualMachineId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/ContainerAutoProtection/providers/Microsoft.Compute/virtualMachines/shrja-2019\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"resourceGroup\": \"ContainerAutoProtection\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"protectableItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"friendlyName\": \"shrja-2019\",\r\n \"protectionState\": \"NotProtected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.RecoveryServices/vaults/PSTestRSV9e387301/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrg9e387301;pstestvm9e38712/protectableItems/vm;iaasvmcontainerv2;pstestrg9e387301;pstestvm9e38712\",\r\n \"name\": \"iaasvmcontainerv2;pstestrg9e387301;pstestvm9e38712\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems\",\r\n \"properties\": {\r\n \"virtualMachineId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.Compute/virtualMachines/PSTestVM9e38712\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"resourceGroup\": \"PSTestRG9e387301\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"protectableItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"friendlyName\": \"PSTestVM9e38712\",\r\n \"protectionState\": \"NotProtected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.RecoveryServices/vaults/PSTestRSV9e387301/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestwlrg1bca8;pstestwlvm1bca8/protectableItems/vm;iaasvmcontainerv2;pstestwlrg1bca8;pstestwlvm1bca8\",\r\n \"name\": \"iaasvmcontainerv2;pstestwlrg1bca8;pstestwlvm1bca8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems\",\r\n \"properties\": {\r\n \"virtualMachineId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/pstestwlRG1bca8/providers/Microsoft.Compute/virtualMachines/pstestwlvm1bca8\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"resourceGroup\": \"pstestwlRG1bca8\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"protectableItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"friendlyName\": \"pstestwlvm1bca8\",\r\n \"protectionState\": \"NotProtected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.RecoveryServices/vaults/PSTestRSV9e387301/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;shrja2008_group;shrja2008/protectableItems/vm;iaasvmcontainerv2;shrja2008_group;shrja2008\",\r\n \"name\": \"iaasvmcontainerv2;shrja2008_group;shrja2008\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems\",\r\n \"properties\": {\r\n \"virtualMachineId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/shrja2008_group/providers/Microsoft.Compute/virtualMachines/shrja2008\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"resourceGroup\": \"shrja2008_group\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"protectableItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"friendlyName\": \"shrja2008\",\r\n \"protectionState\": \"NotProtected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.RecoveryServices/vaults/PSTestRSV9e387301/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;shswain-rg-donotuse;dsdsdsad/protectableItems/vm;iaasvmcontainerv2;shswain-rg-donotuse;dsdsdsad\",\r\n \"name\": \"iaasvmcontainerv2;shswain-rg-donotuse;dsdsdsad\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems\",\r\n \"properties\": {\r\n \"virtualMachineId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/shswain-rg-donotuse/providers/Microsoft.Compute/virtualMachines/dsdsdsad\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"resourceGroup\": \"shswain-rg-donotuse\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"protectableItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"friendlyName\": \"dsdsdsad\",\r\n \"protectionState\": \"NotProtected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.RecoveryServices/vaults/PSTestRSV9e387301/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;shswain-rg-donotuse;iumjjkuui/protectableItems/vm;iaasvmcontainerv2;shswain-rg-donotuse;iumjjkuui\",\r\n \"name\": \"iaasvmcontainerv2;shswain-rg-donotuse;iumjjkuui\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems\",\r\n \"properties\": {\r\n \"virtualMachineId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/shswain-rg-donotuse/providers/Microsoft.Compute/virtualMachines/iumjjkuui\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"resourceGroup\": \"shswain-rg-donotuse\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"protectableItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"friendlyName\": \"iumjjkuui\",\r\n \"protectionState\": \"NotProtected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.RecoveryServices/vaults/PSTestRSV9e387301/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;sisi-rsv;sisi-mercury/protectableItems/vm;iaasvmcontainerv2;sisi-rsv;sisi-mercury\",\r\n \"name\": \"iaasvmcontainerv2;sisi-rsv;sisi-mercury\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems\",\r\n \"properties\": {\r\n \"virtualMachineId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/sisi-RSV/providers/Microsoft.Compute/virtualMachines/sisi-mercury\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"resourceGroup\": \"sisi-RSV\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"protectableItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"friendlyName\": \"sisi-mercury\",\r\n \"protectionState\": \"NotProtected\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.RecoveryServices/vaults/PSTestRSVdbbbe2ca/backupOperations/635b698f-e7ca-48ac-8372-5c970f2549c1?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZGJiYmUyY2EvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZkYmJiZTJjYS9iYWNrdXBPcGVyYXRpb25zLzYzNWI2OThmLWU3Y2EtNDhhYy04MzcyLTVjOTcwZjI1NDljMT9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.RecoveryServices/vaults/PSTestRSV9e387301/backupFabrics/Azure/protectionContainers/IaasVMContainer%3Biaasvmcontainerv2%3Bpstestrg9e387301%3Bpstestvm9e3871/protectedItems/vm%3Biaasvmcontainerv2%3Bpstestrg9e387301%3Bpstestvm9e3871?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOWUzODczMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5ZTM4NzMwMS9iYWNrdXBGYWJyaWNzL0F6dXJlL3Byb3RlY3Rpb25Db250YWluZXJzL0lhYXNWTUNvbnRhaW5lciUzQmlhYXN2bWNvbnRhaW5lcnYyJTNCcHN0ZXN0cmc5ZTM4NzMwMSUzQnBzdGVzdHZtOWUzODcxL3Byb3RlY3RlZEl0ZW1zL3ZtJTNCaWFhc3ZtY29udGFpbmVydjIlM0Jwc3Rlc3RyZzllMzg3MzAxJTNCcHN0ZXN0dm05ZTM4NzE/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"protectedItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"sourceResourceId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.Compute/virtualMachines/PSTestVM9e3871\",\r\n \"policyId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.RecoveryServices/vaults/PSTestRSV9e387301/backupPolicies/DefaultPolicy\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "94a69640-acbe-4dd1-8364-7b842f916ed0" + "77f2ca5b-896f-4e31-83a6-6c342ca54700" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "456" ] }, "ResponseHeaders": { @@ -6232,67 +6228,70 @@ "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.RecoveryServices/vaults/PSTestRSV9e387301/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrg9e387301;pstestvm9e3871/protectedItems/vm;iaasvmcontainerv2;pstestrg9e387301;pstestvm9e3871/operationResults/f7e924bf-9cd0-4507-b39a-5f08e86aaa03?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.RecoveryServices/vaults/PSTestRSV9e387301/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrg9e387301;pstestvm9e3871/protectedItems/vm;iaasvmcontainerv2;pstestrg9e387301;pstestvm9e3871/operationsStatus/f7e924bf-9cd0-4507-b39a-5f08e86aaa03?api-version=2022-02-01" + ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "3a07882d-61b8-45ad-932f-c44abf8cb8cb" + "6965aead-ae7b-40a1-99fd-1635594a8af1" ], "x-ms-client-request-id": [ - "94a69640-acbe-4dd1-8364-7b842f916ed0", - "94a69640-acbe-4dd1-8364-7b842f916ed0" + "77f2ca5b-896f-4e31-83a6-6c342ca54700", + "77f2ca5b-896f-4e31-83a6-6c342ca54700" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Server": [ - "Microsoft-IIS/10.0" - ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "147" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" ], "x-ms-correlation-request-id": [ - "3a07882d-61b8-45ad-932f-c44abf8cb8cb" + "6965aead-ae7b-40a1-99fd-1635594a8af1" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T211326Z:3a07882d-61b8-45ad-932f-c44abf8cb8cb" + "JIOINDIAWEST:20220517T041456Z:6965aead-ae7b-40a1-99fd-1635594a8af1" ], "Date": [ - "Thu, 24 Feb 2022 21:13:25 GMT" - ], - "Content-Length": [ - "188" - ], - "Content-Type": [ - "application/json" + "Tue, 17 May 2022 04:14:56 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, - "ResponseBody": "{\r\n \"id\": \"635b698f-e7ca-48ac-8372-5c970f2549c1\",\r\n \"name\": \"635b698f-e7ca-48ac-8372-5c970f2549c1\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-24T21:13:03.7868428Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", - "StatusCode": 200 + "ResponseBody": "", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.RecoveryServices/vaults/PSTestRSVdbbbe2ca/backupOperations/635b698f-e7ca-48ac-8372-5c970f2549c1?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZGJiYmUyY2EvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZkYmJiZTJjYS9iYWNrdXBPcGVyYXRpb25zLzYzNWI2OThmLWU3Y2EtNDhhYy04MzcyLTVjOTcwZjI1NDljMT9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.RecoveryServices/vaults/PSTestRSV9e387301/backupOperations/f7e924bf-9cd0-4507-b39a-5f08e86aaa03?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOWUzODczMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5ZTM4NzMwMS9iYWNrdXBPcGVyYXRpb25zL2Y3ZTkyNGJmLTljZDAtNDUwNy1iMzlhLTVmMDhlODZhYWEwMz9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "94a69640-acbe-4dd1-8364-7b842f916ed0" + "77f2ca5b-896f-4e31-83a6-6c342ca54700" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -6306,11 +6305,11 @@ "nosniff" ], "x-ms-request-id": [ - "103f852f-6114-495a-b370-9c0042bbf4d8" + "eedf5888-b592-4236-a45b-4c75f31b8932" ], "x-ms-client-request-id": [ - "94a69640-acbe-4dd1-8364-7b842f916ed0", - "94a69640-acbe-4dd1-8364-7b842f916ed0" + "77f2ca5b-896f-4e31-83a6-6c342ca54700", + "77f2ca5b-896f-4e31-83a6-6c342ca54700" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6322,19 +6321,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "146" + "149" ], "x-ms-correlation-request-id": [ - "103f852f-6114-495a-b370-9c0042bbf4d8" + "eedf5888-b592-4236-a45b-4c75f31b8932" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T211336Z:103f852f-6114-495a-b370-9c0042bbf4d8" + "JIOINDIAWEST:20220517T041457Z:eedf5888-b592-4236-a45b-4c75f31b8932" ], "Date": [ - "Thu, 24 Feb 2022 21:13:36 GMT" + "Tue, 17 May 2022 04:14:56 GMT" ], "Content-Length": [ - "304" + "186" ], "Content-Type": [ "application/json" @@ -6343,26 +6342,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"635b698f-e7ca-48ac-8372-5c970f2549c1\",\r\n \"name\": \"635b698f-e7ca-48ac-8372-5c970f2549c1\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-02-24T21:13:03.7868428Z\",\r\n \"endTime\": \"2022-02-24T21:13:03.7868428Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"ceb3dbde-3a9d-4423-9cc5-850a28e73489\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"f7e924bf-9cd0-4507-b39a-5f08e86aaa03\",\r\n \"name\": \"f7e924bf-9cd0-4507-b39a-5f08e86aaa03\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T04:14:56.74325Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.RecoveryServices/vaults/PSTestRSVdbbbe2ca/backupOperations/635b698f-e7ca-48ac-8372-5c970f2549c1?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZGJiYmUyY2EvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZkYmJiZTJjYS9iYWNrdXBPcGVyYXRpb25zLzYzNWI2OThmLWU3Y2EtNDhhYy04MzcyLTVjOTcwZjI1NDljMT9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.RecoveryServices/vaults/PSTestRSV9e387301/backupOperations/f7e924bf-9cd0-4507-b39a-5f08e86aaa03?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOWUzODczMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5ZTM4NzMwMS9iYWNrdXBPcGVyYXRpb25zL2Y3ZTkyNGJmLTljZDAtNDUwNy1iMzlhLTVmMDhlODZhYWEwMz9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "94a69640-acbe-4dd1-8364-7b842f916ed0" + "77f2ca5b-896f-4e31-83a6-6c342ca54700" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -6376,11 +6375,11 @@ "nosniff" ], "x-ms-request-id": [ - "2b425591-a12e-429f-8b45-9bfedcdf25da" + "588f39df-8a07-45f9-9ab3-d97b8739b010" ], "x-ms-client-request-id": [ - "94a69640-acbe-4dd1-8364-7b842f916ed0", - "94a69640-acbe-4dd1-8364-7b842f916ed0" + "77f2ca5b-896f-4e31-83a6-6c342ca54700", + "77f2ca5b-896f-4e31-83a6-6c342ca54700" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6392,19 +6391,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "145" + "148" ], "x-ms-correlation-request-id": [ - "2b425591-a12e-429f-8b45-9bfedcdf25da" + "588f39df-8a07-45f9-9ab3-d97b8739b010" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T211337Z:2b425591-a12e-429f-8b45-9bfedcdf25da" + "JIOINDIAWEST:20220517T041502Z:588f39df-8a07-45f9-9ab3-d97b8739b010" ], "Date": [ - "Thu, 24 Feb 2022 21:13:36 GMT" + "Tue, 17 May 2022 04:15:02 GMT" ], "Content-Length": [ - "304" + "186" ], "Content-Type": [ "application/json" @@ -6413,26 +6412,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"635b698f-e7ca-48ac-8372-5c970f2549c1\",\r\n \"name\": \"635b698f-e7ca-48ac-8372-5c970f2549c1\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-02-24T21:13:03.7868428Z\",\r\n \"endTime\": \"2022-02-24T21:13:03.7868428Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"ceb3dbde-3a9d-4423-9cc5-850a28e73489\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"f7e924bf-9cd0-4507-b39a-5f08e86aaa03\",\r\n \"name\": \"f7e924bf-9cd0-4507-b39a-5f08e86aaa03\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T04:14:56.74325Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.RecoveryServices/vaults/PSTestRSVdbbbe2ca/backupJobs/ceb3dbde-3a9d-4423-9cc5-850a28e73489?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZGJiYmUyY2EvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZkYmJiZTJjYS9iYWNrdXBKb2JzL2NlYjNkYmRlLTNhOWQtNDQyMy05Y2M1LTg1MGEyOGU3MzQ4OT9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.RecoveryServices/vaults/PSTestRSV9e387301/backupOperations/f7e924bf-9cd0-4507-b39a-5f08e86aaa03?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOWUzODczMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5ZTM4NzMwMS9iYWNrdXBPcGVyYXRpb25zL2Y3ZTkyNGJmLTljZDAtNDUwNy1iMzlhLTVmMDhlODZhYWEwMz9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "94a69640-acbe-4dd1-8364-7b842f916ed0" + "77f2ca5b-896f-4e31-83a6-6c342ca54700" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -6442,40 +6441,39 @@ "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-IIS/10.0" - ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "b30261cc-13e0-41ff-a45c-9c9613f0019e" + "a5a63e10-38ee-417f-9845-7b68623da6fc" ], "x-ms-client-request-id": [ - "94a69640-acbe-4dd1-8364-7b842f916ed0", - "94a69640-acbe-4dd1-8364-7b842f916ed0" - ], - "X-Powered-By": [ - "ASP.NET" + "77f2ca5b-896f-4e31-83a6-6c342ca54700", + "77f2ca5b-896f-4e31-83a6-6c342ca54700" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "149" + "147" ], "x-ms-correlation-request-id": [ - "b30261cc-13e0-41ff-a45c-9c9613f0019e" + "a5a63e10-38ee-417f-9845-7b68623da6fc" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T211337Z:b30261cc-13e0-41ff-a45c-9c9613f0019e" + "JIOINDIAWEST:20220517T041508Z:a5a63e10-38ee-417f-9845-7b68623da6fc" ], "Date": [ - "Thu, 24 Feb 2022 21:13:37 GMT" + "Tue, 17 May 2022 04:15:07 GMT" ], "Content-Length": [ - "839" + "186" ], "Content-Type": [ "application/json" @@ -6484,26 +6482,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.RecoveryServices/vaults/PSTestRSVdbbbe2ca/backupJobs/ceb3dbde-3a9d-4423-9cc5-850a28e73489\",\r\n \"name\": \"ceb3dbde-3a9d-4423-9cc5-850a28e73489\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgdbbbe2ca;pstestvmdbbbe1\",\r\n \"duration\": \"PT31.0113452S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvmdbbbe1\",\r\n \"Policy Name\": \"DefaultPolicy\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvmdbbbe1\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"ConfigureBackup\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-02-24T21:13:03.7868428Z\",\r\n \"endTime\": \"2022-02-24T21:13:34.798188Z\",\r\n \"activityId\": \"94a69640-acbe-4dd1-8364-7b842f916ed0\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"f7e924bf-9cd0-4507-b39a-5f08e86aaa03\",\r\n \"name\": \"f7e924bf-9cd0-4507-b39a-5f08e86aaa03\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T04:14:56.74325Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.RecoveryServices/vaults/PSTestRSVdbbbe2ca/backupProtectedItems?$filter=backupManagementType%20eq%20'AzureIaasVM'%20and%20itemType%20eq%20'VM'&api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZGJiYmUyY2EvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZkYmJiZTJjYS9iYWNrdXBQcm90ZWN0ZWRJdGVtcz8kZmlsdGVyPWJhY2t1cE1hbmFnZW1lbnRUeXBlJTIwZXElMjAnQXp1cmVJYWFzVk0nJTIwYW5kJTIwaXRlbVR5cGUlMjBlcSUyMCdWTScmYXBpLXZlcnNpb249MjAyMS0xMC0wMQ==", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.RecoveryServices/vaults/PSTestRSV9e387301/backupOperations/f7e924bf-9cd0-4507-b39a-5f08e86aaa03?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOWUzODczMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5ZTM4NzMwMS9iYWNrdXBPcGVyYXRpb25zL2Y3ZTkyNGJmLTljZDAtNDUwNy1iMzlhLTVmMDhlODZhYWEwMz9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "eb8ef3e3-e984-4226-9aef-0076ffc23c2d" + "77f2ca5b-896f-4e31-83a6-6c342ca54700" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -6517,11 +6515,11 @@ "nosniff" ], "x-ms-request-id": [ - "e4fc45d2-ab72-41ef-8a49-878c88d4df0f" + "338d1429-0fb5-4373-93ef-bc2722e2bd53" ], "x-ms-client-request-id": [ - "eb8ef3e3-e984-4226-9aef-0076ffc23c2d", - "eb8ef3e3-e984-4226-9aef-0076ffc23c2d" + "77f2ca5b-896f-4e31-83a6-6c342ca54700", + "77f2ca5b-896f-4e31-83a6-6c342ca54700" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6533,19 +6531,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "149" + "146" ], "x-ms-correlation-request-id": [ - "e4fc45d2-ab72-41ef-8a49-878c88d4df0f" + "338d1429-0fb5-4373-93ef-bc2722e2bd53" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T211339Z:e4fc45d2-ab72-41ef-8a49-878c88d4df0f" + "JIOINDIAWEST:20220517T041513Z:338d1429-0fb5-4373-93ef-bc2722e2bd53" ], "Date": [ - "Thu, 24 Feb 2022 21:13:38 GMT" + "Tue, 17 May 2022 04:15:12 GMT" ], "Content-Length": [ - "1496" + "186" ], "Content-Type": [ "application/json" @@ -6554,26 +6552,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.RecoveryServices/vaults/PSTestRSVdbbbe2ca/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrgdbbbe2ca;pstestvmdbbbe1/protectedItems/VM;iaasvmcontainerv2;pstestrgdbbbe2ca;pstestvmdbbbe1\",\r\n \"name\": \"VM;iaasvmcontainerv2;pstestrgdbbbe2ca;pstestvmdbbbe1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems\",\r\n \"properties\": {\r\n \"kpisHealths\": {},\r\n \"friendlyName\": \"PSTestVMdbbbe1\",\r\n \"virtualMachineId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Compute/virtualMachines/PSTestVMdbbbe1\",\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\": \"175923196429439\",\r\n \"protectedItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"workloadType\": \"VM\",\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgdbbbe2ca;pstestvmdbbbe1\",\r\n \"sourceResourceId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Compute/virtualMachines/PSTestVMdbbbe1\",\r\n \"policyId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.RecoveryServices/vaults/PSTestRSVdbbbe2ca/backupPolicies/DefaultPolicy\",\r\n \"policyName\": \"DefaultPolicy\",\r\n \"isArchiveEnabled\": false\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"f7e924bf-9cd0-4507-b39a-5f08e86aaa03\",\r\n \"name\": \"f7e924bf-9cd0-4507-b39a-5f08e86aaa03\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T04:14:56.74325Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.RecoveryServices/vaults/PSTestRSVdbbbe2ca/backupProtectedItems?$filter=backupManagementType%20eq%20'AzureIaasVM'%20and%20itemType%20eq%20'VM'&api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZGJiYmUyY2EvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZkYmJiZTJjYS9iYWNrdXBQcm90ZWN0ZWRJdGVtcz8kZmlsdGVyPWJhY2t1cE1hbmFnZW1lbnRUeXBlJTIwZXElMjAnQXp1cmVJYWFzVk0nJTIwYW5kJTIwaXRlbVR5cGUlMjBlcSUyMCdWTScmYXBpLXZlcnNpb249MjAyMS0xMC0wMQ==", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.RecoveryServices/vaults/PSTestRSV9e387301/backupOperations/f7e924bf-9cd0-4507-b39a-5f08e86aaa03?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOWUzODczMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5ZTM4NzMwMS9iYWNrdXBPcGVyYXRpb25zL2Y3ZTkyNGJmLTljZDAtNDUwNy1iMzlhLTVmMDhlODZhYWEwMz9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "073930e0-08fd-49af-bffa-3d2d22c58e8a" + "77f2ca5b-896f-4e31-83a6-6c342ca54700" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -6587,11 +6585,11 @@ "nosniff" ], "x-ms-request-id": [ - "4687df01-c8e7-4779-bf53-1995541f0c0e" + "20a1a805-3633-4f45-bb86-65c7ed55acde" ], "x-ms-client-request-id": [ - "073930e0-08fd-49af-bffa-3d2d22c58e8a", - "073930e0-08fd-49af-bffa-3d2d22c58e8a" + "77f2ca5b-896f-4e31-83a6-6c342ca54700", + "77f2ca5b-896f-4e31-83a6-6c342ca54700" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6603,19 +6601,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "148" + "145" ], "x-ms-correlation-request-id": [ - "4687df01-c8e7-4779-bf53-1995541f0c0e" + "20a1a805-3633-4f45-bb86-65c7ed55acde" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T211424Z:4687df01-c8e7-4779-bf53-1995541f0c0e" + "JIOINDIAWEST:20220517T041519Z:20a1a805-3633-4f45-bb86-65c7ed55acde" ], "Date": [ - "Thu, 24 Feb 2022 21:14:24 GMT" + "Tue, 17 May 2022 04:15:19 GMT" ], "Content-Length": [ - "2988" + "186" ], "Content-Type": [ "application/json" @@ -6624,26 +6622,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.RecoveryServices/vaults/PSTestRSVdbbbe2ca/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrgdbbbe2ca;pstestvmdbbbe12/protectedItems/VM;iaasvmcontainerv2;pstestrgdbbbe2ca;pstestvmdbbbe12\",\r\n \"name\": \"VM;iaasvmcontainerv2;pstestrgdbbbe2ca;pstestvmdbbbe12\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems\",\r\n \"properties\": {\r\n \"kpisHealths\": {},\r\n \"friendlyName\": \"PSTestVMdbbbe12\",\r\n \"virtualMachineId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Compute/virtualMachines/PSTestVMdbbbe12\",\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\": \"175923582440713\",\r\n \"protectedItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"workloadType\": \"VM\",\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgdbbbe2ca;pstestvmdbbbe12\",\r\n \"sourceResourceId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Compute/virtualMachines/PSTestVMdbbbe12\",\r\n \"policyId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.RecoveryServices/vaults/PSTestRSVdbbbe2ca/backupPolicies/DefaultPolicy\",\r\n \"policyName\": \"DefaultPolicy\",\r\n \"isArchiveEnabled\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.RecoveryServices/vaults/PSTestRSVdbbbe2ca/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrgdbbbe2ca;pstestvmdbbbe1/protectedItems/VM;iaasvmcontainerv2;pstestrgdbbbe2ca;pstestvmdbbbe1\",\r\n \"name\": \"VM;iaasvmcontainerv2;pstestrgdbbbe2ca;pstestvmdbbbe1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems\",\r\n \"properties\": {\r\n \"kpisHealths\": {},\r\n \"friendlyName\": \"PSTestVMdbbbe1\",\r\n \"virtualMachineId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Compute/virtualMachines/PSTestVMdbbbe1\",\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\": \"175923196429439\",\r\n \"protectedItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"workloadType\": \"VM\",\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgdbbbe2ca;pstestvmdbbbe1\",\r\n \"sourceResourceId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Compute/virtualMachines/PSTestVMdbbbe1\",\r\n \"policyId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.RecoveryServices/vaults/PSTestRSVdbbbe2ca/backupPolicies/DefaultPolicy\",\r\n \"policyName\": \"DefaultPolicy\",\r\n \"isArchiveEnabled\": false\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"f7e924bf-9cd0-4507-b39a-5f08e86aaa03\",\r\n \"name\": \"f7e924bf-9cd0-4507-b39a-5f08e86aaa03\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T04:14:56.74325Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.RecoveryServices/vaults/PSTestRSVdbbbe2ca/backupProtectedItems?$filter=backupManagementType%20eq%20'AzureIaasVM'%20and%20itemType%20eq%20'VM'&api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZGJiYmUyY2EvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZkYmJiZTJjYS9iYWNrdXBQcm90ZWN0ZWRJdGVtcz8kZmlsdGVyPWJhY2t1cE1hbmFnZW1lbnRUeXBlJTIwZXElMjAnQXp1cmVJYWFzVk0nJTIwYW5kJTIwaXRlbVR5cGUlMjBlcSUyMCdWTScmYXBpLXZlcnNpb249MjAyMS0xMC0wMQ==", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.RecoveryServices/vaults/PSTestRSV9e387301/backupOperations/f7e924bf-9cd0-4507-b39a-5f08e86aaa03?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOWUzODczMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5ZTM4NzMwMS9iYWNrdXBPcGVyYXRpb25zL2Y3ZTkyNGJmLTljZDAtNDUwNy1iMzlhLTVmMDhlODZhYWEwMz9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f78e23a9-b0e4-4d2b-afb6-1e70d7df4341" + "77f2ca5b-896f-4e31-83a6-6c342ca54700" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -6657,11 +6655,11 @@ "nosniff" ], "x-ms-request-id": [ - "d3b95fd7-2bc6-4ca5-99e2-c8646b3f9c1c" + "f388e75f-60d8-490d-86d7-7fbcdd498799" ], "x-ms-client-request-id": [ - "f78e23a9-b0e4-4d2b-afb6-1e70d7df4341", - "f78e23a9-b0e4-4d2b-afb6-1e70d7df4341" + "77f2ca5b-896f-4e31-83a6-6c342ca54700", + "77f2ca5b-896f-4e31-83a6-6c342ca54700" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6673,19 +6671,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "147" + "144" ], "x-ms-correlation-request-id": [ - "d3b95fd7-2bc6-4ca5-99e2-c8646b3f9c1c" + "f388e75f-60d8-490d-86d7-7fbcdd498799" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T211427Z:d3b95fd7-2bc6-4ca5-99e2-c8646b3f9c1c" + "JIOINDIAWEST:20220517T041524Z:f388e75f-60d8-490d-86d7-7fbcdd498799" ], "Date": [ - "Thu, 24 Feb 2022 21:14:26 GMT" + "Tue, 17 May 2022 04:15:24 GMT" ], "Content-Length": [ - "2988" + "186" ], "Content-Type": [ "application/json" @@ -6694,26 +6692,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.RecoveryServices/vaults/PSTestRSVdbbbe2ca/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrgdbbbe2ca;pstestvmdbbbe12/protectedItems/VM;iaasvmcontainerv2;pstestrgdbbbe2ca;pstestvmdbbbe12\",\r\n \"name\": \"VM;iaasvmcontainerv2;pstestrgdbbbe2ca;pstestvmdbbbe12\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems\",\r\n \"properties\": {\r\n \"kpisHealths\": {},\r\n \"friendlyName\": \"PSTestVMdbbbe12\",\r\n \"virtualMachineId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Compute/virtualMachines/PSTestVMdbbbe12\",\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\": \"175923582440713\",\r\n \"protectedItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"workloadType\": \"VM\",\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgdbbbe2ca;pstestvmdbbbe12\",\r\n \"sourceResourceId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Compute/virtualMachines/PSTestVMdbbbe12\",\r\n \"policyId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.RecoveryServices/vaults/PSTestRSVdbbbe2ca/backupPolicies/DefaultPolicy\",\r\n \"policyName\": \"DefaultPolicy\",\r\n \"isArchiveEnabled\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.RecoveryServices/vaults/PSTestRSVdbbbe2ca/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrgdbbbe2ca;pstestvmdbbbe1/protectedItems/VM;iaasvmcontainerv2;pstestrgdbbbe2ca;pstestvmdbbbe1\",\r\n \"name\": \"VM;iaasvmcontainerv2;pstestrgdbbbe2ca;pstestvmdbbbe1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems\",\r\n \"properties\": {\r\n \"kpisHealths\": {},\r\n \"friendlyName\": \"PSTestVMdbbbe1\",\r\n \"virtualMachineId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Compute/virtualMachines/PSTestVMdbbbe1\",\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\": \"175923196429439\",\r\n \"protectedItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"workloadType\": \"VM\",\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgdbbbe2ca;pstestvmdbbbe1\",\r\n \"sourceResourceId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Compute/virtualMachines/PSTestVMdbbbe1\",\r\n \"policyId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.RecoveryServices/vaults/PSTestRSVdbbbe2ca/backupPolicies/DefaultPolicy\",\r\n \"policyName\": \"DefaultPolicy\",\r\n \"isArchiveEnabled\": false\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"f7e924bf-9cd0-4507-b39a-5f08e86aaa03\",\r\n \"name\": \"f7e924bf-9cd0-4507-b39a-5f08e86aaa03\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T04:14:56.74325Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.RecoveryServices/vaults/PSTestRSVdbbbe2ca/backupProtectedItems?$filter=backupManagementType%20eq%20'AzureIaasVM'%20and%20itemType%20eq%20'VM'&api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZGJiYmUyY2EvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZkYmJiZTJjYS9iYWNrdXBQcm90ZWN0ZWRJdGVtcz8kZmlsdGVyPWJhY2t1cE1hbmFnZW1lbnRUeXBlJTIwZXElMjAnQXp1cmVJYWFzVk0nJTIwYW5kJTIwaXRlbVR5cGUlMjBlcSUyMCdWTScmYXBpLXZlcnNpb249MjAyMS0xMC0wMQ==", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.RecoveryServices/vaults/PSTestRSV9e387301/backupOperations/f7e924bf-9cd0-4507-b39a-5f08e86aaa03?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOWUzODczMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5ZTM4NzMwMS9iYWNrdXBPcGVyYXRpb25zL2Y3ZTkyNGJmLTljZDAtNDUwNy1iMzlhLTVmMDhlODZhYWEwMz9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c71f44d9-9aa3-4d79-8bcd-e4d06e0f8e3d" + "77f2ca5b-896f-4e31-83a6-6c342ca54700" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -6727,11 +6725,11 @@ "nosniff" ], "x-ms-request-id": [ - "23063e9f-3b85-4dcf-823f-81745d93a7b9" + "3fc13208-8588-4109-bb9e-489c2bcdf078" ], "x-ms-client-request-id": [ - "c71f44d9-9aa3-4d79-8bcd-e4d06e0f8e3d", - "c71f44d9-9aa3-4d79-8bcd-e4d06e0f8e3d" + "77f2ca5b-896f-4e31-83a6-6c342ca54700", + "77f2ca5b-896f-4e31-83a6-6c342ca54700" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6743,19 +6741,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "146" + "143" ], "x-ms-correlation-request-id": [ - "23063e9f-3b85-4dcf-823f-81745d93a7b9" + "3fc13208-8588-4109-bb9e-489c2bcdf078" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T211427Z:23063e9f-3b85-4dcf-823f-81745d93a7b9" + "JIOINDIAWEST:20220517T041530Z:3fc13208-8588-4109-bb9e-489c2bcdf078" ], "Date": [ - "Thu, 24 Feb 2022 21:14:27 GMT" + "Tue, 17 May 2022 04:15:30 GMT" ], "Content-Length": [ - "2988" + "300" ], "Content-Type": [ "application/json" @@ -6764,26 +6762,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.RecoveryServices/vaults/PSTestRSVdbbbe2ca/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrgdbbbe2ca;pstestvmdbbbe12/protectedItems/VM;iaasvmcontainerv2;pstestrgdbbbe2ca;pstestvmdbbbe12\",\r\n \"name\": \"VM;iaasvmcontainerv2;pstestrgdbbbe2ca;pstestvmdbbbe12\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems\",\r\n \"properties\": {\r\n \"kpisHealths\": {},\r\n \"friendlyName\": \"PSTestVMdbbbe12\",\r\n \"virtualMachineId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Compute/virtualMachines/PSTestVMdbbbe12\",\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\": \"175923582440713\",\r\n \"protectedItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"workloadType\": \"VM\",\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgdbbbe2ca;pstestvmdbbbe12\",\r\n \"sourceResourceId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Compute/virtualMachines/PSTestVMdbbbe12\",\r\n \"policyId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.RecoveryServices/vaults/PSTestRSVdbbbe2ca/backupPolicies/DefaultPolicy\",\r\n \"policyName\": \"DefaultPolicy\",\r\n \"isArchiveEnabled\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.RecoveryServices/vaults/PSTestRSVdbbbe2ca/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrgdbbbe2ca;pstestvmdbbbe1/protectedItems/VM;iaasvmcontainerv2;pstestrgdbbbe2ca;pstestvmdbbbe1\",\r\n \"name\": \"VM;iaasvmcontainerv2;pstestrgdbbbe2ca;pstestvmdbbbe1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems\",\r\n \"properties\": {\r\n \"kpisHealths\": {},\r\n \"friendlyName\": \"PSTestVMdbbbe1\",\r\n \"virtualMachineId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Compute/virtualMachines/PSTestVMdbbbe1\",\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\": \"175923196429439\",\r\n \"protectedItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"workloadType\": \"VM\",\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgdbbbe2ca;pstestvmdbbbe1\",\r\n \"sourceResourceId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Compute/virtualMachines/PSTestVMdbbbe1\",\r\n \"policyId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.RecoveryServices/vaults/PSTestRSVdbbbe2ca/backupPolicies/DefaultPolicy\",\r\n \"policyName\": \"DefaultPolicy\",\r\n \"isArchiveEnabled\": false\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"f7e924bf-9cd0-4507-b39a-5f08e86aaa03\",\r\n \"name\": \"f7e924bf-9cd0-4507-b39a-5f08e86aaa03\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-05-17T04:14:56.74325Z\",\r\n \"endTime\": \"2022-05-17T04:14:56.74325Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"4f7657ab-550b-49e6-827c-df7360f93c19\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.RecoveryServices/vaults/PSTestRSVdbbbe2ca/backupProtectedItems?$filter=backupManagementType%20eq%20'AzureIaasVM'%20and%20itemType%20eq%20'VM'&api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZGJiYmUyY2EvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZkYmJiZTJjYS9iYWNrdXBQcm90ZWN0ZWRJdGVtcz8kZmlsdGVyPWJhY2t1cE1hbmFnZW1lbnRUeXBlJTIwZXElMjAnQXp1cmVJYWFzVk0nJTIwYW5kJTIwaXRlbVR5cGUlMjBlcSUyMCdWTScmYXBpLXZlcnNpb249MjAyMS0xMC0wMQ==", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.RecoveryServices/vaults/PSTestRSV9e387301/backupOperations/f7e924bf-9cd0-4507-b39a-5f08e86aaa03?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOWUzODczMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5ZTM4NzMwMS9iYWNrdXBPcGVyYXRpb25zL2Y3ZTkyNGJmLTljZDAtNDUwNy1iMzlhLTVmMDhlODZhYWEwMz9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7a8d3334-c400-4210-a986-7de04889b71a" + "77f2ca5b-896f-4e31-83a6-6c342ca54700" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -6797,11 +6795,11 @@ "nosniff" ], "x-ms-request-id": [ - "7c40a61a-36e0-48a6-989d-27a0380a91ea" + "153b7e32-d871-4f7c-8fc6-079f1fa3aeb8" ], "x-ms-client-request-id": [ - "7a8d3334-c400-4210-a986-7de04889b71a", - "7a8d3334-c400-4210-a986-7de04889b71a" + "77f2ca5b-896f-4e31-83a6-6c342ca54700", + "77f2ca5b-896f-4e31-83a6-6c342ca54700" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6813,19 +6811,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "145" + "142" ], "x-ms-correlation-request-id": [ - "7c40a61a-36e0-48a6-989d-27a0380a91ea" + "153b7e32-d871-4f7c-8fc6-079f1fa3aeb8" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T211429Z:7c40a61a-36e0-48a6-989d-27a0380a91ea" + "JIOINDIAWEST:20220517T041530Z:153b7e32-d871-4f7c-8fc6-079f1fa3aeb8" ], "Date": [ - "Thu, 24 Feb 2022 21:14:29 GMT" + "Tue, 17 May 2022 04:15:30 GMT" ], "Content-Length": [ - "2988" + "300" ], "Content-Type": [ "application/json" @@ -6834,26 +6832,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.RecoveryServices/vaults/PSTestRSVdbbbe2ca/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrgdbbbe2ca;pstestvmdbbbe12/protectedItems/VM;iaasvmcontainerv2;pstestrgdbbbe2ca;pstestvmdbbbe12\",\r\n \"name\": \"VM;iaasvmcontainerv2;pstestrgdbbbe2ca;pstestvmdbbbe12\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems\",\r\n \"properties\": {\r\n \"kpisHealths\": {},\r\n \"friendlyName\": \"PSTestVMdbbbe12\",\r\n \"virtualMachineId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Compute/virtualMachines/PSTestVMdbbbe12\",\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\": \"175923582440713\",\r\n \"protectedItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"workloadType\": \"VM\",\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgdbbbe2ca;pstestvmdbbbe12\",\r\n \"sourceResourceId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Compute/virtualMachines/PSTestVMdbbbe12\",\r\n \"policyId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.RecoveryServices/vaults/PSTestRSVdbbbe2ca/backupPolicies/DefaultPolicy\",\r\n \"policyName\": \"DefaultPolicy\",\r\n \"isArchiveEnabled\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.RecoveryServices/vaults/PSTestRSVdbbbe2ca/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrgdbbbe2ca;pstestvmdbbbe1/protectedItems/VM;iaasvmcontainerv2;pstestrgdbbbe2ca;pstestvmdbbbe1\",\r\n \"name\": \"VM;iaasvmcontainerv2;pstestrgdbbbe2ca;pstestvmdbbbe1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems\",\r\n \"properties\": {\r\n \"kpisHealths\": {},\r\n \"friendlyName\": \"PSTestVMdbbbe1\",\r\n \"virtualMachineId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Compute/virtualMachines/PSTestVMdbbbe1\",\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\": \"175923196429439\",\r\n \"protectedItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"workloadType\": \"VM\",\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgdbbbe2ca;pstestvmdbbbe1\",\r\n \"sourceResourceId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Compute/virtualMachines/PSTestVMdbbbe1\",\r\n \"policyId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.RecoveryServices/vaults/PSTestRSVdbbbe2ca/backupPolicies/DefaultPolicy\",\r\n \"policyName\": \"DefaultPolicy\",\r\n \"isArchiveEnabled\": false\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"f7e924bf-9cd0-4507-b39a-5f08e86aaa03\",\r\n \"name\": \"f7e924bf-9cd0-4507-b39a-5f08e86aaa03\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-05-17T04:14:56.74325Z\",\r\n \"endTime\": \"2022-05-17T04:14:56.74325Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"4f7657ab-550b-49e6-827c-df7360f93c19\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.RecoveryServices/vaults/PSTestRSVdbbbe2ca/backupProtectedItems?$filter=backupManagementType%20eq%20'AzureIaasVM'%20and%20itemType%20eq%20'VM'&api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZGJiYmUyY2EvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZkYmJiZTJjYS9iYWNrdXBQcm90ZWN0ZWRJdGVtcz8kZmlsdGVyPWJhY2t1cE1hbmFnZW1lbnRUeXBlJTIwZXElMjAnQXp1cmVJYWFzVk0nJTIwYW5kJTIwaXRlbVR5cGUlMjBlcSUyMCdWTScmYXBpLXZlcnNpb249MjAyMS0xMC0wMQ==", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.RecoveryServices/vaults/PSTestRSV9e387301/backupJobs/4f7657ab-550b-49e6-827c-df7360f93c19?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOWUzODczMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5ZTM4NzMwMS9iYWNrdXBKb2JzLzRmNzY1N2FiLTU1MGItNDllNi04MjdjLWRmNzM2MGY5M2MxOT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fa44dc9b-49d3-4781-b4a2-0a0143a423b8" + "77f2ca5b-896f-4e31-83a6-6c342ca54700" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -6863,39 +6861,40 @@ "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-IIS/10.0", + "Microsoft-IIS/10.0" + ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "dcf343b5-caee-4893-a793-2dde0a211998" + "9cb72608-4c0d-4135-954a-3ddc8642db66" ], "x-ms-client-request-id": [ - "fa44dc9b-49d3-4781-b4a2-0a0143a423b8", - "fa44dc9b-49d3-4781-b4a2-0a0143a423b8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-IIS/10.0" + "77f2ca5b-896f-4e31-83a6-6c342ca54700", + "77f2ca5b-896f-4e31-83a6-6c342ca54700" ], "X-Powered-By": [ "ASP.NET" ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "144" + "149" ], "x-ms-correlation-request-id": [ - "dcf343b5-caee-4893-a793-2dde0a211998" + "9cb72608-4c0d-4135-954a-3ddc8642db66" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T211430Z:dcf343b5-caee-4893-a793-2dde0a211998" + "JIOINDIAWEST:20220517T041531Z:9cb72608-4c0d-4135-954a-3ddc8642db66" ], "Date": [ - "Thu, 24 Feb 2022 21:14:30 GMT" + "Tue, 17 May 2022 04:15:31 GMT" ], "Content-Length": [ - "2988" + "838" ], "Content-Type": [ "application/json" @@ -6904,26 +6903,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.RecoveryServices/vaults/PSTestRSVdbbbe2ca/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrgdbbbe2ca;pstestvmdbbbe12/protectedItems/VM;iaasvmcontainerv2;pstestrgdbbbe2ca;pstestvmdbbbe12\",\r\n \"name\": \"VM;iaasvmcontainerv2;pstestrgdbbbe2ca;pstestvmdbbbe12\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems\",\r\n \"properties\": {\r\n \"kpisHealths\": {},\r\n \"friendlyName\": \"PSTestVMdbbbe12\",\r\n \"virtualMachineId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Compute/virtualMachines/PSTestVMdbbbe12\",\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\": \"175923582440713\",\r\n \"protectedItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"workloadType\": \"VM\",\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgdbbbe2ca;pstestvmdbbbe12\",\r\n \"sourceResourceId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Compute/virtualMachines/PSTestVMdbbbe12\",\r\n \"policyId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.RecoveryServices/vaults/PSTestRSVdbbbe2ca/backupPolicies/DefaultPolicy\",\r\n \"policyName\": \"DefaultPolicy\",\r\n \"isArchiveEnabled\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.RecoveryServices/vaults/PSTestRSVdbbbe2ca/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrgdbbbe2ca;pstestvmdbbbe1/protectedItems/VM;iaasvmcontainerv2;pstestrgdbbbe2ca;pstestvmdbbbe1\",\r\n \"name\": \"VM;iaasvmcontainerv2;pstestrgdbbbe2ca;pstestvmdbbbe1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems\",\r\n \"properties\": {\r\n \"kpisHealths\": {},\r\n \"friendlyName\": \"PSTestVMdbbbe1\",\r\n \"virtualMachineId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Compute/virtualMachines/PSTestVMdbbbe1\",\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\": \"175923196429439\",\r\n \"protectedItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"workloadType\": \"VM\",\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgdbbbe2ca;pstestvmdbbbe1\",\r\n \"sourceResourceId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Compute/virtualMachines/PSTestVMdbbbe1\",\r\n \"policyId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.RecoveryServices/vaults/PSTestRSVdbbbe2ca/backupPolicies/DefaultPolicy\",\r\n \"policyName\": \"DefaultPolicy\",\r\n \"isArchiveEnabled\": false\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.RecoveryServices/vaults/PSTestRSV9e387301/backupJobs/4f7657ab-550b-49e6-827c-df7360f93c19\",\r\n \"name\": \"4f7657ab-550b-49e6-827c-df7360f93c19\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg9e387301;pstestvm9e3871\",\r\n \"duration\": \"PT30.9519644S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm9e3871\",\r\n \"Policy Name\": \"DefaultPolicy\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm9e3871\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"ConfigureBackup\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-05-17T04:14:56.74325Z\",\r\n \"endTime\": \"2022-05-17T04:15:27.6952144Z\",\r\n \"activityId\": \"77f2ca5b-896f-4e31-83a6-6c342ca54700\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.RecoveryServices/vaults/PSTestRSVdbbbe2ca/backupProtectedItems?$filter=backupManagementType%20eq%20'AzureIaasVM'%20and%20itemType%20eq%20'VM'&api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZGJiYmUyY2EvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZkYmJiZTJjYS9iYWNrdXBQcm90ZWN0ZWRJdGVtcz8kZmlsdGVyPWJhY2t1cE1hbmFnZW1lbnRUeXBlJTIwZXElMjAnQXp1cmVJYWFzVk0nJTIwYW5kJTIwaXRlbVR5cGUlMjBlcSUyMCdWTScmYXBpLXZlcnNpb249MjAyMS0xMC0wMQ==", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.RecoveryServices/vaults/PSTestRSV9e387301/backupProtectedItems?$filter=backupManagementType%20eq%20'AzureIaasVM'%20and%20itemType%20eq%20'VM'&api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOWUzODczMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5ZTM4NzMwMS9iYWNrdXBQcm90ZWN0ZWRJdGVtcz8kZmlsdGVyPWJhY2t1cE1hbmFnZW1lbnRUeXBlJTIwZXElMjAnQXp1cmVJYWFzVk0nJTIwYW5kJTIwaXRlbVR5cGUlMjBlcSUyMCdWTScmYXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6b7df36a-4de3-4ed8-a178-8e35b123c154" + "d5e17c36-9c1d-4110-becf-bfbed2b23912" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -6937,11 +6936,11 @@ "nosniff" ], "x-ms-request-id": [ - "64e833b9-4fd0-478f-8528-9f95fb022612" + "f7e9f1d4-4c35-4946-a22d-7ff54b08d23a" ], "x-ms-client-request-id": [ - "6b7df36a-4de3-4ed8-a178-8e35b123c154", - "6b7df36a-4de3-4ed8-a178-8e35b123c154" + "d5e17c36-9c1d-4110-becf-bfbed2b23912", + "d5e17c36-9c1d-4110-becf-bfbed2b23912" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6953,19 +6952,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "143" + "149" ], "x-ms-correlation-request-id": [ - "64e833b9-4fd0-478f-8528-9f95fb022612" + "f7e9f1d4-4c35-4946-a22d-7ff54b08d23a" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T211431Z:64e833b9-4fd0-478f-8528-9f95fb022612" + "JIOINDIAWEST:20220517T041533Z:f7e9f1d4-4c35-4946-a22d-7ff54b08d23a" ], "Date": [ - "Thu, 24 Feb 2022 21:14:30 GMT" + "Tue, 17 May 2022 04:15:33 GMT" ], "Content-Length": [ - "2988" + "1495" ], "Content-Type": [ "application/json" @@ -6974,26 +6973,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.RecoveryServices/vaults/PSTestRSVdbbbe2ca/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrgdbbbe2ca;pstestvmdbbbe12/protectedItems/VM;iaasvmcontainerv2;pstestrgdbbbe2ca;pstestvmdbbbe12\",\r\n \"name\": \"VM;iaasvmcontainerv2;pstestrgdbbbe2ca;pstestvmdbbbe12\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems\",\r\n \"properties\": {\r\n \"kpisHealths\": {},\r\n \"friendlyName\": \"PSTestVMdbbbe12\",\r\n \"virtualMachineId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Compute/virtualMachines/PSTestVMdbbbe12\",\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\": \"175923582440713\",\r\n \"protectedItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"workloadType\": \"VM\",\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgdbbbe2ca;pstestvmdbbbe12\",\r\n \"sourceResourceId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Compute/virtualMachines/PSTestVMdbbbe12\",\r\n \"policyId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.RecoveryServices/vaults/PSTestRSVdbbbe2ca/backupPolicies/DefaultPolicy\",\r\n \"policyName\": \"DefaultPolicy\",\r\n \"isArchiveEnabled\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.RecoveryServices/vaults/PSTestRSVdbbbe2ca/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrgdbbbe2ca;pstestvmdbbbe1/protectedItems/VM;iaasvmcontainerv2;pstestrgdbbbe2ca;pstestvmdbbbe1\",\r\n \"name\": \"VM;iaasvmcontainerv2;pstestrgdbbbe2ca;pstestvmdbbbe1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems\",\r\n \"properties\": {\r\n \"kpisHealths\": {},\r\n \"friendlyName\": \"PSTestVMdbbbe1\",\r\n \"virtualMachineId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Compute/virtualMachines/PSTestVMdbbbe1\",\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\": \"175923196429439\",\r\n \"protectedItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"workloadType\": \"VM\",\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgdbbbe2ca;pstestvmdbbbe1\",\r\n \"sourceResourceId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Compute/virtualMachines/PSTestVMdbbbe1\",\r\n \"policyId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.RecoveryServices/vaults/PSTestRSVdbbbe2ca/backupPolicies/DefaultPolicy\",\r\n \"policyName\": \"DefaultPolicy\",\r\n \"isArchiveEnabled\": false\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.RecoveryServices/vaults/PSTestRSV9e387301/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrg9e387301;pstestvm9e3871/protectedItems/VM;iaasvmcontainerv2;pstestrg9e387301;pstestvm9e3871\",\r\n \"name\": \"VM;iaasvmcontainerv2;pstestrg9e387301;pstestvm9e3871\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems\",\r\n \"properties\": {\r\n \"kpisHealths\": {},\r\n \"friendlyName\": \"PSTestVM9e3871\",\r\n \"virtualMachineId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.Compute/virtualMachines/PSTestVM9e3871\",\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\": \"17593768254886\",\r\n \"protectedItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"workloadType\": \"VM\",\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg9e387301;pstestvm9e3871\",\r\n \"sourceResourceId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.Compute/virtualMachines/PSTestVM9e3871\",\r\n \"policyId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.RecoveryServices/vaults/PSTestRSV9e387301/backupPolicies/DefaultPolicy\",\r\n \"policyName\": \"DefaultPolicy\",\r\n \"isArchiveEnabled\": false\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.RecoveryServices/vaults/PSTestRSVdbbbe2ca/backupProtectedItems?$filter=backupManagementType%20eq%20'AzureIaasVM'%20and%20itemType%20eq%20'VM'&api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZGJiYmUyY2EvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZkYmJiZTJjYS9iYWNrdXBQcm90ZWN0ZWRJdGVtcz8kZmlsdGVyPWJhY2t1cE1hbmFnZW1lbnRUeXBlJTIwZXElMjAnQXp1cmVJYWFzVk0nJTIwYW5kJTIwaXRlbVR5cGUlMjBlcSUyMCdWTScmYXBpLXZlcnNpb249MjAyMS0xMC0wMQ==", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.RecoveryServices/vaults/PSTestRSV9e387301/backupProtectedItems?$filter=backupManagementType%20eq%20'AzureIaasVM'%20and%20itemType%20eq%20'VM'&api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOWUzODczMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5ZTM4NzMwMS9iYWNrdXBQcm90ZWN0ZWRJdGVtcz8kZmlsdGVyPWJhY2t1cE1hbmFnZW1lbnRUeXBlJTIwZXElMjAnQXp1cmVJYWFzVk0nJTIwYW5kJTIwaXRlbVR5cGUlMjBlcSUyMCdWTScmYXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "59f4667f-5163-4db5-92d6-9a1bf93b9d8b" + "f2246cd3-8f2b-4e24-b2c3-77a3648f1e8c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -7007,11 +7006,11 @@ "nosniff" ], "x-ms-request-id": [ - "ed95c361-0838-468c-b3ef-c2519c64617c" + "596d8e00-8537-4748-9676-b994cf704bd7" ], "x-ms-client-request-id": [ - "59f4667f-5163-4db5-92d6-9a1bf93b9d8b", - "59f4667f-5163-4db5-92d6-9a1bf93b9d8b" + "f2246cd3-8f2b-4e24-b2c3-77a3648f1e8c", + "f2246cd3-8f2b-4e24-b2c3-77a3648f1e8c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -7023,19 +7022,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "142" + "148" ], "x-ms-correlation-request-id": [ - "ed95c361-0838-468c-b3ef-c2519c64617c" + "596d8e00-8537-4748-9676-b994cf704bd7" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T211432Z:ed95c361-0838-468c-b3ef-c2519c64617c" + "JIOINDIAWEST:20220517T041627Z:596d8e00-8537-4748-9676-b994cf704bd7" ], "Date": [ - "Thu, 24 Feb 2022 21:14:32 GMT" + "Tue, 17 May 2022 04:16:26 GMT" ], "Content-Length": [ - "2988" + "2986" ], "Content-Type": [ "application/json" @@ -7044,26 +7043,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.RecoveryServices/vaults/PSTestRSVdbbbe2ca/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrgdbbbe2ca;pstestvmdbbbe12/protectedItems/VM;iaasvmcontainerv2;pstestrgdbbbe2ca;pstestvmdbbbe12\",\r\n \"name\": \"VM;iaasvmcontainerv2;pstestrgdbbbe2ca;pstestvmdbbbe12\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems\",\r\n \"properties\": {\r\n \"kpisHealths\": {},\r\n \"friendlyName\": \"PSTestVMdbbbe12\",\r\n \"virtualMachineId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Compute/virtualMachines/PSTestVMdbbbe12\",\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\": \"175923582440713\",\r\n \"protectedItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"workloadType\": \"VM\",\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgdbbbe2ca;pstestvmdbbbe12\",\r\n \"sourceResourceId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Compute/virtualMachines/PSTestVMdbbbe12\",\r\n \"policyId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.RecoveryServices/vaults/PSTestRSVdbbbe2ca/backupPolicies/DefaultPolicy\",\r\n \"policyName\": \"DefaultPolicy\",\r\n \"isArchiveEnabled\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.RecoveryServices/vaults/PSTestRSVdbbbe2ca/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrgdbbbe2ca;pstestvmdbbbe1/protectedItems/VM;iaasvmcontainerv2;pstestrgdbbbe2ca;pstestvmdbbbe1\",\r\n \"name\": \"VM;iaasvmcontainerv2;pstestrgdbbbe2ca;pstestvmdbbbe1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems\",\r\n \"properties\": {\r\n \"kpisHealths\": {},\r\n \"friendlyName\": \"PSTestVMdbbbe1\",\r\n \"virtualMachineId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Compute/virtualMachines/PSTestVMdbbbe1\",\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\": \"175923196429439\",\r\n \"protectedItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"workloadType\": \"VM\",\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgdbbbe2ca;pstestvmdbbbe1\",\r\n \"sourceResourceId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Compute/virtualMachines/PSTestVMdbbbe1\",\r\n \"policyId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.RecoveryServices/vaults/PSTestRSVdbbbe2ca/backupPolicies/DefaultPolicy\",\r\n \"policyName\": \"DefaultPolicy\",\r\n \"isArchiveEnabled\": false\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.RecoveryServices/vaults/PSTestRSV9e387301/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrg9e387301;pstestvm9e38712/protectedItems/VM;iaasvmcontainerv2;pstestrg9e387301;pstestvm9e38712\",\r\n \"name\": \"VM;iaasvmcontainerv2;pstestrg9e387301;pstestvm9e38712\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems\",\r\n \"properties\": {\r\n \"kpisHealths\": {},\r\n \"friendlyName\": \"PSTestVM9e38712\",\r\n \"virtualMachineId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.Compute/virtualMachines/PSTestVM9e38712\",\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\": \"17592535165370\",\r\n \"protectedItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"workloadType\": \"VM\",\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg9e387301;pstestvm9e38712\",\r\n \"sourceResourceId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.Compute/virtualMachines/PSTestVM9e38712\",\r\n \"policyId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.RecoveryServices/vaults/PSTestRSV9e387301/backupPolicies/DefaultPolicy\",\r\n \"policyName\": \"DefaultPolicy\",\r\n \"isArchiveEnabled\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.RecoveryServices/vaults/PSTestRSV9e387301/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrg9e387301;pstestvm9e3871/protectedItems/VM;iaasvmcontainerv2;pstestrg9e387301;pstestvm9e3871\",\r\n \"name\": \"VM;iaasvmcontainerv2;pstestrg9e387301;pstestvm9e3871\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems\",\r\n \"properties\": {\r\n \"kpisHealths\": {},\r\n \"friendlyName\": \"PSTestVM9e3871\",\r\n \"virtualMachineId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.Compute/virtualMachines/PSTestVM9e3871\",\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\": \"17593768254886\",\r\n \"protectedItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"workloadType\": \"VM\",\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg9e387301;pstestvm9e3871\",\r\n \"sourceResourceId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.Compute/virtualMachines/PSTestVM9e3871\",\r\n \"policyId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.RecoveryServices/vaults/PSTestRSV9e387301/backupPolicies/DefaultPolicy\",\r\n \"policyName\": \"DefaultPolicy\",\r\n \"isArchiveEnabled\": false\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.RecoveryServices/vaults/PSTestRSVdbbbe2ca/backupProtectedItems?$filter=backupManagementType%20eq%20'AzureIaasVM'%20and%20itemType%20eq%20'VM'&api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZGJiYmUyY2EvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZkYmJiZTJjYS9iYWNrdXBQcm90ZWN0ZWRJdGVtcz8kZmlsdGVyPWJhY2t1cE1hbmFnZW1lbnRUeXBlJTIwZXElMjAnQXp1cmVJYWFzVk0nJTIwYW5kJTIwaXRlbVR5cGUlMjBlcSUyMCdWTScmYXBpLXZlcnNpb249MjAyMS0xMC0wMQ==", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.RecoveryServices/vaults/PSTestRSV9e387301/backupProtectedItems?$filter=backupManagementType%20eq%20'AzureIaasVM'%20and%20itemType%20eq%20'VM'&api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOWUzODczMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5ZTM4NzMwMS9iYWNrdXBQcm90ZWN0ZWRJdGVtcz8kZmlsdGVyPWJhY2t1cE1hbmFnZW1lbnRUeXBlJTIwZXElMjAnQXp1cmVJYWFzVk0nJTIwYW5kJTIwaXRlbVR5cGUlMjBlcSUyMCdWTScmYXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bae5fa39-b372-4025-b77e-26f80b076b2a" + "d7cb7a42-e98d-4762-9ca9-837dac90d6e8" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -7077,11 +7076,11 @@ "nosniff" ], "x-ms-request-id": [ - "bda17ee5-2f06-4619-8433-315c72a4fa5d" + "d77bc906-9111-4cb0-8fe8-cd2744e91a4d" ], "x-ms-client-request-id": [ - "bae5fa39-b372-4025-b77e-26f80b076b2a", - "bae5fa39-b372-4025-b77e-26f80b076b2a" + "d7cb7a42-e98d-4762-9ca9-837dac90d6e8", + "d7cb7a42-e98d-4762-9ca9-837dac90d6e8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -7093,19 +7092,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "141" + "147" ], "x-ms-correlation-request-id": [ - "bda17ee5-2f06-4619-8433-315c72a4fa5d" + "d77bc906-9111-4cb0-8fe8-cd2744e91a4d" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T211433Z:bda17ee5-2f06-4619-8433-315c72a4fa5d" + "JIOINDIAWEST:20220517T041629Z:d77bc906-9111-4cb0-8fe8-cd2744e91a4d" ], "Date": [ - "Thu, 24 Feb 2022 21:14:33 GMT" + "Tue, 17 May 2022 04:16:28 GMT" ], "Content-Length": [ - "2988" + "2986" ], "Content-Type": [ "application/json" @@ -7114,26 +7113,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.RecoveryServices/vaults/PSTestRSVdbbbe2ca/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrgdbbbe2ca;pstestvmdbbbe12/protectedItems/VM;iaasvmcontainerv2;pstestrgdbbbe2ca;pstestvmdbbbe12\",\r\n \"name\": \"VM;iaasvmcontainerv2;pstestrgdbbbe2ca;pstestvmdbbbe12\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems\",\r\n \"properties\": {\r\n \"kpisHealths\": {},\r\n \"friendlyName\": \"PSTestVMdbbbe12\",\r\n \"virtualMachineId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Compute/virtualMachines/PSTestVMdbbbe12\",\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\": \"175923582440713\",\r\n \"protectedItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"workloadType\": \"VM\",\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgdbbbe2ca;pstestvmdbbbe12\",\r\n \"sourceResourceId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Compute/virtualMachines/PSTestVMdbbbe12\",\r\n \"policyId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.RecoveryServices/vaults/PSTestRSVdbbbe2ca/backupPolicies/DefaultPolicy\",\r\n \"policyName\": \"DefaultPolicy\",\r\n \"isArchiveEnabled\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.RecoveryServices/vaults/PSTestRSVdbbbe2ca/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrgdbbbe2ca;pstestvmdbbbe1/protectedItems/VM;iaasvmcontainerv2;pstestrgdbbbe2ca;pstestvmdbbbe1\",\r\n \"name\": \"VM;iaasvmcontainerv2;pstestrgdbbbe2ca;pstestvmdbbbe1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems\",\r\n \"properties\": {\r\n \"kpisHealths\": {},\r\n \"friendlyName\": \"PSTestVMdbbbe1\",\r\n \"virtualMachineId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Compute/virtualMachines/PSTestVMdbbbe1\",\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\": \"175923196429439\",\r\n \"protectedItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"workloadType\": \"VM\",\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgdbbbe2ca;pstestvmdbbbe1\",\r\n \"sourceResourceId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Compute/virtualMachines/PSTestVMdbbbe1\",\r\n \"policyId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.RecoveryServices/vaults/PSTestRSVdbbbe2ca/backupPolicies/DefaultPolicy\",\r\n \"policyName\": \"DefaultPolicy\",\r\n \"isArchiveEnabled\": false\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.RecoveryServices/vaults/PSTestRSV9e387301/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrg9e387301;pstestvm9e38712/protectedItems/VM;iaasvmcontainerv2;pstestrg9e387301;pstestvm9e38712\",\r\n \"name\": \"VM;iaasvmcontainerv2;pstestrg9e387301;pstestvm9e38712\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems\",\r\n \"properties\": {\r\n \"kpisHealths\": {},\r\n \"friendlyName\": \"PSTestVM9e38712\",\r\n \"virtualMachineId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.Compute/virtualMachines/PSTestVM9e38712\",\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\": \"17592535165370\",\r\n \"protectedItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"workloadType\": \"VM\",\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg9e387301;pstestvm9e38712\",\r\n \"sourceResourceId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.Compute/virtualMachines/PSTestVM9e38712\",\r\n \"policyId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.RecoveryServices/vaults/PSTestRSV9e387301/backupPolicies/DefaultPolicy\",\r\n \"policyName\": \"DefaultPolicy\",\r\n \"isArchiveEnabled\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.RecoveryServices/vaults/PSTestRSV9e387301/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrg9e387301;pstestvm9e3871/protectedItems/VM;iaasvmcontainerv2;pstestrg9e387301;pstestvm9e3871\",\r\n \"name\": \"VM;iaasvmcontainerv2;pstestrg9e387301;pstestvm9e3871\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems\",\r\n \"properties\": {\r\n \"kpisHealths\": {},\r\n \"friendlyName\": \"PSTestVM9e3871\",\r\n \"virtualMachineId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.Compute/virtualMachines/PSTestVM9e3871\",\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\": \"17593768254886\",\r\n \"protectedItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"workloadType\": \"VM\",\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg9e387301;pstestvm9e3871\",\r\n \"sourceResourceId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.Compute/virtualMachines/PSTestVM9e3871\",\r\n \"policyId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.RecoveryServices/vaults/PSTestRSV9e387301/backupPolicies/DefaultPolicy\",\r\n \"policyName\": \"DefaultPolicy\",\r\n \"isArchiveEnabled\": false\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.RecoveryServices/vaults/PSTestRSVdbbbe2ca/backupProtectedItems?$filter=backupManagementType%20eq%20'AzureIaasVM'%20and%20itemType%20eq%20'VM'&api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZGJiYmUyY2EvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZkYmJiZTJjYS9iYWNrdXBQcm90ZWN0ZWRJdGVtcz8kZmlsdGVyPWJhY2t1cE1hbmFnZW1lbnRUeXBlJTIwZXElMjAnQXp1cmVJYWFzVk0nJTIwYW5kJTIwaXRlbVR5cGUlMjBlcSUyMCdWTScmYXBpLXZlcnNpb249MjAyMS0xMC0wMQ==", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.RecoveryServices/vaults/PSTestRSV9e387301/backupProtectedItems?$filter=backupManagementType%20eq%20'AzureIaasVM'%20and%20itemType%20eq%20'VM'&api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOWUzODczMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5ZTM4NzMwMS9iYWNrdXBQcm90ZWN0ZWRJdGVtcz8kZmlsdGVyPWJhY2t1cE1hbmFnZW1lbnRUeXBlJTIwZXElMjAnQXp1cmVJYWFzVk0nJTIwYW5kJTIwaXRlbVR5cGUlMjBlcSUyMCdWTScmYXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "97ea6b98-c2d1-4579-8ec1-a1ca86952328" + "2d88c384-8e0d-4277-84e3-f41cd5b66618" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -7147,11 +7146,11 @@ "nosniff" ], "x-ms-request-id": [ - "20594af9-a27d-4f72-baae-350f2f99412d" + "abff6d17-205a-47ee-a375-b1d460993e0d" ], "x-ms-client-request-id": [ - "97ea6b98-c2d1-4579-8ec1-a1ca86952328", - "97ea6b98-c2d1-4579-8ec1-a1ca86952328" + "2d88c384-8e0d-4277-84e3-f41cd5b66618", + "2d88c384-8e0d-4277-84e3-f41cd5b66618" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -7163,19 +7162,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "140" + "146" ], "x-ms-correlation-request-id": [ - "20594af9-a27d-4f72-baae-350f2f99412d" + "abff6d17-205a-47ee-a375-b1d460993e0d" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T211434Z:20594af9-a27d-4f72-baae-350f2f99412d" + "JIOINDIAWEST:20220517T041630Z:abff6d17-205a-47ee-a375-b1d460993e0d" ], "Date": [ - "Thu, 24 Feb 2022 21:14:33 GMT" + "Tue, 17 May 2022 04:16:29 GMT" ], "Content-Length": [ - "2988" + "2986" ], "Content-Type": [ "application/json" @@ -7184,26 +7183,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.RecoveryServices/vaults/PSTestRSVdbbbe2ca/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrgdbbbe2ca;pstestvmdbbbe12/protectedItems/VM;iaasvmcontainerv2;pstestrgdbbbe2ca;pstestvmdbbbe12\",\r\n \"name\": \"VM;iaasvmcontainerv2;pstestrgdbbbe2ca;pstestvmdbbbe12\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems\",\r\n \"properties\": {\r\n \"kpisHealths\": {},\r\n \"friendlyName\": \"PSTestVMdbbbe12\",\r\n \"virtualMachineId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Compute/virtualMachines/PSTestVMdbbbe12\",\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\": \"175923582440713\",\r\n \"protectedItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"workloadType\": \"VM\",\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgdbbbe2ca;pstestvmdbbbe12\",\r\n \"sourceResourceId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Compute/virtualMachines/PSTestVMdbbbe12\",\r\n \"policyId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.RecoveryServices/vaults/PSTestRSVdbbbe2ca/backupPolicies/DefaultPolicy\",\r\n \"policyName\": \"DefaultPolicy\",\r\n \"isArchiveEnabled\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.RecoveryServices/vaults/PSTestRSVdbbbe2ca/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrgdbbbe2ca;pstestvmdbbbe1/protectedItems/VM;iaasvmcontainerv2;pstestrgdbbbe2ca;pstestvmdbbbe1\",\r\n \"name\": \"VM;iaasvmcontainerv2;pstestrgdbbbe2ca;pstestvmdbbbe1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems\",\r\n \"properties\": {\r\n \"kpisHealths\": {},\r\n \"friendlyName\": \"PSTestVMdbbbe1\",\r\n \"virtualMachineId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Compute/virtualMachines/PSTestVMdbbbe1\",\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\": \"175923196429439\",\r\n \"protectedItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"workloadType\": \"VM\",\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgdbbbe2ca;pstestvmdbbbe1\",\r\n \"sourceResourceId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Compute/virtualMachines/PSTestVMdbbbe1\",\r\n \"policyId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.RecoveryServices/vaults/PSTestRSVdbbbe2ca/backupPolicies/DefaultPolicy\",\r\n \"policyName\": \"DefaultPolicy\",\r\n \"isArchiveEnabled\": false\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.RecoveryServices/vaults/PSTestRSV9e387301/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrg9e387301;pstestvm9e38712/protectedItems/VM;iaasvmcontainerv2;pstestrg9e387301;pstestvm9e38712\",\r\n \"name\": \"VM;iaasvmcontainerv2;pstestrg9e387301;pstestvm9e38712\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems\",\r\n \"properties\": {\r\n \"kpisHealths\": {},\r\n \"friendlyName\": \"PSTestVM9e38712\",\r\n \"virtualMachineId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.Compute/virtualMachines/PSTestVM9e38712\",\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\": \"17592535165370\",\r\n \"protectedItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"workloadType\": \"VM\",\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg9e387301;pstestvm9e38712\",\r\n \"sourceResourceId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.Compute/virtualMachines/PSTestVM9e38712\",\r\n \"policyId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.RecoveryServices/vaults/PSTestRSV9e387301/backupPolicies/DefaultPolicy\",\r\n \"policyName\": \"DefaultPolicy\",\r\n \"isArchiveEnabled\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.RecoveryServices/vaults/PSTestRSV9e387301/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrg9e387301;pstestvm9e3871/protectedItems/VM;iaasvmcontainerv2;pstestrg9e387301;pstestvm9e3871\",\r\n \"name\": \"VM;iaasvmcontainerv2;pstestrg9e387301;pstestvm9e3871\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems\",\r\n \"properties\": {\r\n \"kpisHealths\": {},\r\n \"friendlyName\": \"PSTestVM9e3871\",\r\n \"virtualMachineId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.Compute/virtualMachines/PSTestVM9e3871\",\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\": \"17593768254886\",\r\n \"protectedItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"workloadType\": \"VM\",\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg9e387301;pstestvm9e3871\",\r\n \"sourceResourceId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.Compute/virtualMachines/PSTestVM9e3871\",\r\n \"policyId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.RecoveryServices/vaults/PSTestRSV9e387301/backupPolicies/DefaultPolicy\",\r\n \"policyName\": \"DefaultPolicy\",\r\n \"isArchiveEnabled\": false\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.RecoveryServices/vaults/PSTestRSVdbbbe2ca/backupProtectedItems?$filter=backupManagementType%20eq%20'AzureIaasVM'%20and%20itemType%20eq%20'VM'&api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZGJiYmUyY2EvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZkYmJiZTJjYS9iYWNrdXBQcm90ZWN0ZWRJdGVtcz8kZmlsdGVyPWJhY2t1cE1hbmFnZW1lbnRUeXBlJTIwZXElMjAnQXp1cmVJYWFzVk0nJTIwYW5kJTIwaXRlbVR5cGUlMjBlcSUyMCdWTScmYXBpLXZlcnNpb249MjAyMS0xMC0wMQ==", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.RecoveryServices/vaults/PSTestRSV9e387301/backupProtectedItems?$filter=backupManagementType%20eq%20'AzureIaasVM'%20and%20itemType%20eq%20'VM'&api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOWUzODczMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5ZTM4NzMwMS9iYWNrdXBQcm90ZWN0ZWRJdGVtcz8kZmlsdGVyPWJhY2t1cE1hbmFnZW1lbnRUeXBlJTIwZXElMjAnQXp1cmVJYWFzVk0nJTIwYW5kJTIwaXRlbVR5cGUlMjBlcSUyMCdWTScmYXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ca15f55a-22bd-40ea-86e3-abe2f9f1a635" + "8c4b6ef8-ba97-4074-9f01-43e05feb5e93" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -7217,11 +7216,11 @@ "nosniff" ], "x-ms-request-id": [ - "7caa1286-5e2d-4c03-bf51-2011a455279a" + "407fcbbe-2578-4d7c-a55f-c0da0b0e884a" ], "x-ms-client-request-id": [ - "ca15f55a-22bd-40ea-86e3-abe2f9f1a635", - "ca15f55a-22bd-40ea-86e3-abe2f9f1a635" + "8c4b6ef8-ba97-4074-9f01-43e05feb5e93", + "8c4b6ef8-ba97-4074-9f01-43e05feb5e93" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -7233,19 +7232,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "138" + "145" ], "x-ms-correlation-request-id": [ - "7caa1286-5e2d-4c03-bf51-2011a455279a" + "407fcbbe-2578-4d7c-a55f-c0da0b0e884a" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T211438Z:7caa1286-5e2d-4c03-bf51-2011a455279a" + "JIOINDIAWEST:20220517T041631Z:407fcbbe-2578-4d7c-a55f-c0da0b0e884a" ], "Date": [ - "Thu, 24 Feb 2022 21:14:38 GMT" + "Tue, 17 May 2022 04:16:30 GMT" ], "Content-Length": [ - "2988" + "2986" ], "Content-Type": [ "application/json" @@ -7254,26 +7253,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.RecoveryServices/vaults/PSTestRSVdbbbe2ca/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrgdbbbe2ca;pstestvmdbbbe12/protectedItems/VM;iaasvmcontainerv2;pstestrgdbbbe2ca;pstestvmdbbbe12\",\r\n \"name\": \"VM;iaasvmcontainerv2;pstestrgdbbbe2ca;pstestvmdbbbe12\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems\",\r\n \"properties\": {\r\n \"kpisHealths\": {},\r\n \"friendlyName\": \"PSTestVMdbbbe12\",\r\n \"virtualMachineId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Compute/virtualMachines/PSTestVMdbbbe12\",\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\": \"175923582440713\",\r\n \"protectedItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"workloadType\": \"VM\",\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgdbbbe2ca;pstestvmdbbbe12\",\r\n \"sourceResourceId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Compute/virtualMachines/PSTestVMdbbbe12\",\r\n \"policyId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.RecoveryServices/vaults/PSTestRSVdbbbe2ca/backupPolicies/DefaultPolicy\",\r\n \"policyName\": \"DefaultPolicy\",\r\n \"isArchiveEnabled\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.RecoveryServices/vaults/PSTestRSVdbbbe2ca/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrgdbbbe2ca;pstestvmdbbbe1/protectedItems/VM;iaasvmcontainerv2;pstestrgdbbbe2ca;pstestvmdbbbe1\",\r\n \"name\": \"VM;iaasvmcontainerv2;pstestrgdbbbe2ca;pstestvmdbbbe1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems\",\r\n \"properties\": {\r\n \"kpisHealths\": {},\r\n \"friendlyName\": \"PSTestVMdbbbe1\",\r\n \"virtualMachineId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Compute/virtualMachines/PSTestVMdbbbe1\",\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\": \"175923196429439\",\r\n \"protectedItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"workloadType\": \"VM\",\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgdbbbe2ca;pstestvmdbbbe1\",\r\n \"sourceResourceId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Compute/virtualMachines/PSTestVMdbbbe1\",\r\n \"policyId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.RecoveryServices/vaults/PSTestRSVdbbbe2ca/backupPolicies/DefaultPolicy\",\r\n \"policyName\": \"DefaultPolicy\",\r\n \"isArchiveEnabled\": false\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.RecoveryServices/vaults/PSTestRSV9e387301/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrg9e387301;pstestvm9e38712/protectedItems/VM;iaasvmcontainerv2;pstestrg9e387301;pstestvm9e38712\",\r\n \"name\": \"VM;iaasvmcontainerv2;pstestrg9e387301;pstestvm9e38712\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems\",\r\n \"properties\": {\r\n \"kpisHealths\": {},\r\n \"friendlyName\": \"PSTestVM9e38712\",\r\n \"virtualMachineId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.Compute/virtualMachines/PSTestVM9e38712\",\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\": \"17592535165370\",\r\n \"protectedItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"workloadType\": \"VM\",\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg9e387301;pstestvm9e38712\",\r\n \"sourceResourceId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.Compute/virtualMachines/PSTestVM9e38712\",\r\n \"policyId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.RecoveryServices/vaults/PSTestRSV9e387301/backupPolicies/DefaultPolicy\",\r\n \"policyName\": \"DefaultPolicy\",\r\n \"isArchiveEnabled\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.RecoveryServices/vaults/PSTestRSV9e387301/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrg9e387301;pstestvm9e3871/protectedItems/VM;iaasvmcontainerv2;pstestrg9e387301;pstestvm9e3871\",\r\n \"name\": \"VM;iaasvmcontainerv2;pstestrg9e387301;pstestvm9e3871\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems\",\r\n \"properties\": {\r\n \"kpisHealths\": {},\r\n \"friendlyName\": \"PSTestVM9e3871\",\r\n \"virtualMachineId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.Compute/virtualMachines/PSTestVM9e3871\",\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\": \"17593768254886\",\r\n \"protectedItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"workloadType\": \"VM\",\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg9e387301;pstestvm9e3871\",\r\n \"sourceResourceId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.Compute/virtualMachines/PSTestVM9e3871\",\r\n \"policyId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.RecoveryServices/vaults/PSTestRSV9e387301/backupPolicies/DefaultPolicy\",\r\n \"policyName\": \"DefaultPolicy\",\r\n \"isArchiveEnabled\": false\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.RecoveryServices/vaults/PSTestRSVdbbbe2ca/backupProtectedItems?$filter=backupManagementType%20eq%20'AzureIaasVM'%20and%20itemType%20eq%20'VM'&api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZGJiYmUyY2EvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZkYmJiZTJjYS9iYWNrdXBQcm90ZWN0ZWRJdGVtcz8kZmlsdGVyPWJhY2t1cE1hbmFnZW1lbnRUeXBlJTIwZXElMjAnQXp1cmVJYWFzVk0nJTIwYW5kJTIwaXRlbVR5cGUlMjBlcSUyMCdWTScmYXBpLXZlcnNpb249MjAyMS0xMC0wMQ==", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.RecoveryServices/vaults/PSTestRSV9e387301/backupProtectedItems?$filter=backupManagementType%20eq%20'AzureIaasVM'%20and%20itemType%20eq%20'VM'&api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOWUzODczMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5ZTM4NzMwMS9iYWNrdXBQcm90ZWN0ZWRJdGVtcz8kZmlsdGVyPWJhY2t1cE1hbmFnZW1lbnRUeXBlJTIwZXElMjAnQXp1cmVJYWFzVk0nJTIwYW5kJTIwaXRlbVR5cGUlMjBlcSUyMCdWTScmYXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d05954bc-f873-4f9f-84b9-2e9e7878cb80" + "3ee7f80d-f6f8-464c-bbf7-36d53536b5f0" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -7287,11 +7286,11 @@ "nosniff" ], "x-ms-request-id": [ - "c511ef7e-8e3c-4ee7-bdc7-5d4a6d572653" + "95491420-0657-45d4-a464-4ef84d7e0bb9" ], "x-ms-client-request-id": [ - "d05954bc-f873-4f9f-84b9-2e9e7878cb80", - "d05954bc-f873-4f9f-84b9-2e9e7878cb80" + "3ee7f80d-f6f8-464c-bbf7-36d53536b5f0", + "3ee7f80d-f6f8-464c-bbf7-36d53536b5f0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -7303,19 +7302,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "137" + "144" ], "x-ms-correlation-request-id": [ - "c511ef7e-8e3c-4ee7-bdc7-5d4a6d572653" + "95491420-0657-45d4-a464-4ef84d7e0bb9" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T211640Z:c511ef7e-8e3c-4ee7-bdc7-5d4a6d572653" + "JIOINDIAWEST:20220517T041631Z:95491420-0657-45d4-a464-4ef84d7e0bb9" ], "Date": [ - "Thu, 24 Feb 2022 21:16:39 GMT" + "Tue, 17 May 2022 04:16:30 GMT" ], "Content-Length": [ - "1503" + "2986" ], "Content-Type": [ "application/json" @@ -7324,26 +7323,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.RecoveryServices/vaults/PSTestRSVdbbbe2ca/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrgdbbbe2ca;pstestvmdbbbe12/protectedItems/VM;iaasvmcontainerv2;pstestrgdbbbe2ca;pstestvmdbbbe12\",\r\n \"name\": \"VM;iaasvmcontainerv2;pstestrgdbbbe2ca;pstestvmdbbbe12\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems\",\r\n \"properties\": {\r\n \"kpisHealths\": {},\r\n \"friendlyName\": \"PSTestVMdbbbe12\",\r\n \"virtualMachineId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Compute/virtualMachines/PSTestVMdbbbe12\",\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\": \"175923582440713\",\r\n \"protectedItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"workloadType\": \"VM\",\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgdbbbe2ca;pstestvmdbbbe12\",\r\n \"sourceResourceId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Compute/virtualMachines/PSTestVMdbbbe12\",\r\n \"policyId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.RecoveryServices/vaults/PSTestRSVdbbbe2ca/backupPolicies/DefaultPolicy\",\r\n \"policyName\": \"DefaultPolicy\",\r\n \"isArchiveEnabled\": false\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.RecoveryServices/vaults/PSTestRSV9e387301/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrg9e387301;pstestvm9e38712/protectedItems/VM;iaasvmcontainerv2;pstestrg9e387301;pstestvm9e38712\",\r\n \"name\": \"VM;iaasvmcontainerv2;pstestrg9e387301;pstestvm9e38712\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems\",\r\n \"properties\": {\r\n \"kpisHealths\": {},\r\n \"friendlyName\": \"PSTestVM9e38712\",\r\n \"virtualMachineId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.Compute/virtualMachines/PSTestVM9e38712\",\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\": \"17592535165370\",\r\n \"protectedItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"workloadType\": \"VM\",\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg9e387301;pstestvm9e38712\",\r\n \"sourceResourceId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.Compute/virtualMachines/PSTestVM9e38712\",\r\n \"policyId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.RecoveryServices/vaults/PSTestRSV9e387301/backupPolicies/DefaultPolicy\",\r\n \"policyName\": \"DefaultPolicy\",\r\n \"isArchiveEnabled\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.RecoveryServices/vaults/PSTestRSV9e387301/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrg9e387301;pstestvm9e3871/protectedItems/VM;iaasvmcontainerv2;pstestrg9e387301;pstestvm9e3871\",\r\n \"name\": \"VM;iaasvmcontainerv2;pstestrg9e387301;pstestvm9e3871\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems\",\r\n \"properties\": {\r\n \"kpisHealths\": {},\r\n \"friendlyName\": \"PSTestVM9e3871\",\r\n \"virtualMachineId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.Compute/virtualMachines/PSTestVM9e3871\",\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\": \"17593768254886\",\r\n \"protectedItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"workloadType\": \"VM\",\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg9e387301;pstestvm9e3871\",\r\n \"sourceResourceId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.Compute/virtualMachines/PSTestVM9e3871\",\r\n \"policyId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.RecoveryServices/vaults/PSTestRSV9e387301/backupPolicies/DefaultPolicy\",\r\n \"policyName\": \"DefaultPolicy\",\r\n \"isArchiveEnabled\": false\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.RecoveryServices/vaults/PSTestRSVdbbbe2ca/backupFabrics/Azure/protectionContainers/IaasVMContainer%3Biaasvmcontainerv2%3Bpstestrgdbbbe2ca%3Bpstestvmdbbbe1/protectedItems/VM%3Biaasvmcontainerv2%3Bpstestrgdbbbe2ca%3Bpstestvmdbbbe1?$filter=expand%20eq%20'extendedinfo'&api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZGJiYmUyY2EvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZkYmJiZTJjYS9iYWNrdXBGYWJyaWNzL0F6dXJlL3Byb3RlY3Rpb25Db250YWluZXJzL0lhYXNWTUNvbnRhaW5lciUzQmlhYXN2bWNvbnRhaW5lcnYyJTNCcHN0ZXN0cmdkYmJiZTJjYSUzQnBzdGVzdHZtZGJiYmUxL3Byb3RlY3RlZEl0ZW1zL1ZNJTNCaWFhc3ZtY29udGFpbmVydjIlM0Jwc3Rlc3RyZ2RiYmJlMmNhJTNCcHN0ZXN0dm1kYmJiZTE/JGZpbHRlcj1leHBhbmQlMjBlcSUyMCdleHRlbmRlZGluZm8nJmFwaS12ZXJzaW9uPTIwMjEtMTAtMDE=", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.RecoveryServices/vaults/PSTestRSV9e387301/backupProtectedItems?$filter=backupManagementType%20eq%20'AzureIaasVM'%20and%20itemType%20eq%20'VM'&api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOWUzODczMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5ZTM4NzMwMS9iYWNrdXBQcm90ZWN0ZWRJdGVtcz8kZmlsdGVyPWJhY2t1cE1hbmFnZW1lbnRUeXBlJTIwZXElMjAnQXp1cmVJYWFzVk0nJTIwYW5kJTIwaXRlbVR5cGUlMjBlcSUyMCdWTScmYXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "eb8ef3e3-e984-4226-9aef-0076ffc23c2d" + "d726f18b-ce0c-4cd4-a99e-7d0946b180b9" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -7357,11 +7356,11 @@ "nosniff" ], "x-ms-request-id": [ - "d6912222-53e0-4ab5-8c2f-4e2d89428adb" + "5a981317-8d99-4a30-b21f-e2d470c424ef" ], "x-ms-client-request-id": [ - "eb8ef3e3-e984-4226-9aef-0076ffc23c2d", - "eb8ef3e3-e984-4226-9aef-0076ffc23c2d" + "d726f18b-ce0c-4cd4-a99e-7d0946b180b9", + "d726f18b-ce0c-4cd4-a99e-7d0946b180b9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -7373,19 +7372,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "149" + "143" ], "x-ms-correlation-request-id": [ - "d6912222-53e0-4ab5-8c2f-4e2d89428adb" + "5a981317-8d99-4a30-b21f-e2d470c424ef" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T211339Z:d6912222-53e0-4ab5-8c2f-4e2d89428adb" + "JIOINDIAWEST:20220517T041632Z:5a981317-8d99-4a30-b21f-e2d470c424ef" ], "Date": [ - "Thu, 24 Feb 2022 21:13:38 GMT" + "Tue, 17 May 2022 04:16:31 GMT" ], "Content-Length": [ - "1551" + "2986" ], "Content-Type": [ "application/json" @@ -7394,26 +7393,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.RecoveryServices/vaults/PSTestRSVdbbbe2ca/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrgdbbbe2ca;pstestvmdbbbe1/protectedItems/VM;iaasvmcontainerv2;pstestrgdbbbe2ca;pstestvmdbbbe1\",\r\n \"name\": \"VM;iaasvmcontainerv2;pstestrgdbbbe2ca;pstestvmdbbbe1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems\",\r\n \"properties\": {\r\n \"kpisHealths\": {},\r\n \"friendlyName\": \"PSTestVMdbbbe1\",\r\n \"virtualMachineId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Compute/virtualMachines/PSTestVMdbbbe1\",\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\": \"175923196429439\",\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;pstestrgdbbbe2ca;pstestvmdbbbe1\",\r\n \"sourceResourceId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Compute/virtualMachines/PSTestVMdbbbe1\",\r\n \"policyId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.RecoveryServices/vaults/PSTestRSVdbbbe2ca/backupPolicies/DefaultPolicy\",\r\n \"policyName\": \"DefaultPolicy\",\r\n \"isArchiveEnabled\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.RecoveryServices/vaults/PSTestRSV9e387301/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrg9e387301;pstestvm9e38712/protectedItems/VM;iaasvmcontainerv2;pstestrg9e387301;pstestvm9e38712\",\r\n \"name\": \"VM;iaasvmcontainerv2;pstestrg9e387301;pstestvm9e38712\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems\",\r\n \"properties\": {\r\n \"kpisHealths\": {},\r\n \"friendlyName\": \"PSTestVM9e38712\",\r\n \"virtualMachineId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.Compute/virtualMachines/PSTestVM9e38712\",\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\": \"17592535165370\",\r\n \"protectedItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"workloadType\": \"VM\",\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg9e387301;pstestvm9e38712\",\r\n \"sourceResourceId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.Compute/virtualMachines/PSTestVM9e38712\",\r\n \"policyId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.RecoveryServices/vaults/PSTestRSV9e387301/backupPolicies/DefaultPolicy\",\r\n \"policyName\": \"DefaultPolicy\",\r\n \"isArchiveEnabled\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.RecoveryServices/vaults/PSTestRSV9e387301/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrg9e387301;pstestvm9e3871/protectedItems/VM;iaasvmcontainerv2;pstestrg9e387301;pstestvm9e3871\",\r\n \"name\": \"VM;iaasvmcontainerv2;pstestrg9e387301;pstestvm9e3871\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems\",\r\n \"properties\": {\r\n \"kpisHealths\": {},\r\n \"friendlyName\": \"PSTestVM9e3871\",\r\n \"virtualMachineId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.Compute/virtualMachines/PSTestVM9e3871\",\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\": \"17593768254886\",\r\n \"protectedItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"workloadType\": \"VM\",\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg9e387301;pstestvm9e3871\",\r\n \"sourceResourceId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.Compute/virtualMachines/PSTestVM9e3871\",\r\n \"policyId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.RecoveryServices/vaults/PSTestRSV9e387301/backupPolicies/DefaultPolicy\",\r\n \"policyName\": \"DefaultPolicy\",\r\n \"isArchiveEnabled\": false\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.RecoveryServices/vaults/PSTestRSVdbbbe2ca/backupFabrics/Azure/protectionContainers/IaasVMContainer%3Biaasvmcontainerv2%3Bpstestrgdbbbe2ca%3Bpstestvmdbbbe1/protectedItems/VM%3Biaasvmcontainerv2%3Bpstestrgdbbbe2ca%3Bpstestvmdbbbe1?$filter=expand%20eq%20'extendedinfo'&api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZGJiYmUyY2EvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZkYmJiZTJjYS9iYWNrdXBGYWJyaWNzL0F6dXJlL3Byb3RlY3Rpb25Db250YWluZXJzL0lhYXNWTUNvbnRhaW5lciUzQmlhYXN2bWNvbnRhaW5lcnYyJTNCcHN0ZXN0cmdkYmJiZTJjYSUzQnBzdGVzdHZtZGJiYmUxL3Byb3RlY3RlZEl0ZW1zL1ZNJTNCaWFhc3ZtY29udGFpbmVydjIlM0Jwc3Rlc3RyZ2RiYmJlMmNhJTNCcHN0ZXN0dm1kYmJiZTE/JGZpbHRlcj1leHBhbmQlMjBlcSUyMCdleHRlbmRlZGluZm8nJmFwaS12ZXJzaW9uPTIwMjEtMTAtMDE=", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.RecoveryServices/vaults/PSTestRSV9e387301/backupProtectedItems?$filter=backupManagementType%20eq%20'AzureIaasVM'%20and%20itemType%20eq%20'VM'&api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOWUzODczMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5ZTM4NzMwMS9iYWNrdXBQcm90ZWN0ZWRJdGVtcz8kZmlsdGVyPWJhY2t1cE1hbmFnZW1lbnRUeXBlJTIwZXElMjAnQXp1cmVJYWFzVk0nJTIwYW5kJTIwaXRlbVR5cGUlMjBlcSUyMCdWTScmYXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c71f44d9-9aa3-4d79-8bcd-e4d06e0f8e3d" + "904507ac-b579-43ca-9614-be17c2412237" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -7427,11 +7426,11 @@ "nosniff" ], "x-ms-request-id": [ - "7ac407f4-464e-40ea-bf75-d541be989568" + "e90076aa-65b9-4ec7-86b2-e75928177c36" ], "x-ms-client-request-id": [ - "c71f44d9-9aa3-4d79-8bcd-e4d06e0f8e3d", - "c71f44d9-9aa3-4d79-8bcd-e4d06e0f8e3d" + "904507ac-b579-43ca-9614-be17c2412237", + "904507ac-b579-43ca-9614-be17c2412237" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -7443,19 +7442,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "147" + "142" ], "x-ms-correlation-request-id": [ - "7ac407f4-464e-40ea-bf75-d541be989568" + "e90076aa-65b9-4ec7-86b2-e75928177c36" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T211428Z:7ac407f4-464e-40ea-bf75-d541be989568" + "JIOINDIAWEST:20220517T041633Z:e90076aa-65b9-4ec7-86b2-e75928177c36" ], "Date": [ - "Thu, 24 Feb 2022 21:14:28 GMT" + "Tue, 17 May 2022 04:16:32 GMT" ], "Content-Length": [ - "1551" + "2986" ], "Content-Type": [ "application/json" @@ -7464,26 +7463,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.RecoveryServices/vaults/PSTestRSVdbbbe2ca/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrgdbbbe2ca;pstestvmdbbbe1/protectedItems/VM;iaasvmcontainerv2;pstestrgdbbbe2ca;pstestvmdbbbe1\",\r\n \"name\": \"VM;iaasvmcontainerv2;pstestrgdbbbe2ca;pstestvmdbbbe1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems\",\r\n \"properties\": {\r\n \"kpisHealths\": {},\r\n \"friendlyName\": \"PSTestVMdbbbe1\",\r\n \"virtualMachineId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Compute/virtualMachines/PSTestVMdbbbe1\",\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\": \"175923196429439\",\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;pstestrgdbbbe2ca;pstestvmdbbbe1\",\r\n \"sourceResourceId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Compute/virtualMachines/PSTestVMdbbbe1\",\r\n \"policyId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.RecoveryServices/vaults/PSTestRSVdbbbe2ca/backupPolicies/DefaultPolicy\",\r\n \"policyName\": \"DefaultPolicy\",\r\n \"isArchiveEnabled\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.RecoveryServices/vaults/PSTestRSV9e387301/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrg9e387301;pstestvm9e38712/protectedItems/VM;iaasvmcontainerv2;pstestrg9e387301;pstestvm9e38712\",\r\n \"name\": \"VM;iaasvmcontainerv2;pstestrg9e387301;pstestvm9e38712\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems\",\r\n \"properties\": {\r\n \"kpisHealths\": {},\r\n \"friendlyName\": \"PSTestVM9e38712\",\r\n \"virtualMachineId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.Compute/virtualMachines/PSTestVM9e38712\",\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\": \"17592535165370\",\r\n \"protectedItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"workloadType\": \"VM\",\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg9e387301;pstestvm9e38712\",\r\n \"sourceResourceId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.Compute/virtualMachines/PSTestVM9e38712\",\r\n \"policyId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.RecoveryServices/vaults/PSTestRSV9e387301/backupPolicies/DefaultPolicy\",\r\n \"policyName\": \"DefaultPolicy\",\r\n \"isArchiveEnabled\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.RecoveryServices/vaults/PSTestRSV9e387301/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrg9e387301;pstestvm9e3871/protectedItems/VM;iaasvmcontainerv2;pstestrg9e387301;pstestvm9e3871\",\r\n \"name\": \"VM;iaasvmcontainerv2;pstestrg9e387301;pstestvm9e3871\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems\",\r\n \"properties\": {\r\n \"kpisHealths\": {},\r\n \"friendlyName\": \"PSTestVM9e3871\",\r\n \"virtualMachineId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.Compute/virtualMachines/PSTestVM9e3871\",\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\": \"17593768254886\",\r\n \"protectedItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"workloadType\": \"VM\",\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg9e387301;pstestvm9e3871\",\r\n \"sourceResourceId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.Compute/virtualMachines/PSTestVM9e3871\",\r\n \"policyId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.RecoveryServices/vaults/PSTestRSV9e387301/backupPolicies/DefaultPolicy\",\r\n \"policyName\": \"DefaultPolicy\",\r\n \"isArchiveEnabled\": false\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.RecoveryServices/vaults/PSTestRSVdbbbe2ca/backupFabrics/Azure/protectionContainers/IaasVMContainer%3Biaasvmcontainerv2%3Bpstestrgdbbbe2ca%3Bpstestvmdbbbe1/protectedItems/VM%3Biaasvmcontainerv2%3Bpstestrgdbbbe2ca%3Bpstestvmdbbbe1?$filter=expand%20eq%20'extendedinfo'&api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZGJiYmUyY2EvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZkYmJiZTJjYS9iYWNrdXBGYWJyaWNzL0F6dXJlL3Byb3RlY3Rpb25Db250YWluZXJzL0lhYXNWTUNvbnRhaW5lciUzQmlhYXN2bWNvbnRhaW5lcnYyJTNCcHN0ZXN0cmdkYmJiZTJjYSUzQnBzdGVzdHZtZGJiYmUxL3Byb3RlY3RlZEl0ZW1zL1ZNJTNCaWFhc3ZtY29udGFpbmVydjIlM0Jwc3Rlc3RyZ2RiYmJlMmNhJTNCcHN0ZXN0dm1kYmJiZTE/JGZpbHRlcj1leHBhbmQlMjBlcSUyMCdleHRlbmRlZGluZm8nJmFwaS12ZXJzaW9uPTIwMjEtMTAtMDE=", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.RecoveryServices/vaults/PSTestRSV9e387301/backupProtectedItems?$filter=backupManagementType%20eq%20'AzureIaasVM'%20and%20itemType%20eq%20'VM'&api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOWUzODczMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5ZTM4NzMwMS9iYWNrdXBQcm90ZWN0ZWRJdGVtcz8kZmlsdGVyPWJhY2t1cE1hbmFnZW1lbnRUeXBlJTIwZXElMjAnQXp1cmVJYWFzVk0nJTIwYW5kJTIwaXRlbVR5cGUlMjBlcSUyMCdWTScmYXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6b7df36a-4de3-4ed8-a178-8e35b123c154" + "612cf6ce-8d03-4d5d-ab52-36e585b0801e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -7497,11 +7496,11 @@ "nosniff" ], "x-ms-request-id": [ - "059676e7-7fd8-410d-b5e4-a076c44954f7" + "1e85ec42-9913-44a9-96f0-b6d999e9d225" ], "x-ms-client-request-id": [ - "6b7df36a-4de3-4ed8-a178-8e35b123c154", - "6b7df36a-4de3-4ed8-a178-8e35b123c154" + "612cf6ce-8d03-4d5d-ab52-36e585b0801e", + "612cf6ce-8d03-4d5d-ab52-36e585b0801e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -7513,19 +7512,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "146" + "141" ], "x-ms-correlation-request-id": [ - "059676e7-7fd8-410d-b5e4-a076c44954f7" + "1e85ec42-9913-44a9-96f0-b6d999e9d225" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T211432Z:059676e7-7fd8-410d-b5e4-a076c44954f7" + "JIOINDIAWEST:20220517T041634Z:1e85ec42-9913-44a9-96f0-b6d999e9d225" ], "Date": [ - "Thu, 24 Feb 2022 21:14:31 GMT" + "Tue, 17 May 2022 04:16:33 GMT" ], "Content-Length": [ - "1551" + "2986" ], "Content-Type": [ "application/json" @@ -7534,26 +7533,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.RecoveryServices/vaults/PSTestRSVdbbbe2ca/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrgdbbbe2ca;pstestvmdbbbe1/protectedItems/VM;iaasvmcontainerv2;pstestrgdbbbe2ca;pstestvmdbbbe1\",\r\n \"name\": \"VM;iaasvmcontainerv2;pstestrgdbbbe2ca;pstestvmdbbbe1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems\",\r\n \"properties\": {\r\n \"kpisHealths\": {},\r\n \"friendlyName\": \"PSTestVMdbbbe1\",\r\n \"virtualMachineId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Compute/virtualMachines/PSTestVMdbbbe1\",\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\": \"175923196429439\",\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;pstestrgdbbbe2ca;pstestvmdbbbe1\",\r\n \"sourceResourceId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Compute/virtualMachines/PSTestVMdbbbe1\",\r\n \"policyId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.RecoveryServices/vaults/PSTestRSVdbbbe2ca/backupPolicies/DefaultPolicy\",\r\n \"policyName\": \"DefaultPolicy\",\r\n \"isArchiveEnabled\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.RecoveryServices/vaults/PSTestRSV9e387301/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrg9e387301;pstestvm9e38712/protectedItems/VM;iaasvmcontainerv2;pstestrg9e387301;pstestvm9e38712\",\r\n \"name\": \"VM;iaasvmcontainerv2;pstestrg9e387301;pstestvm9e38712\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems\",\r\n \"properties\": {\r\n \"kpisHealths\": {},\r\n \"friendlyName\": \"PSTestVM9e38712\",\r\n \"virtualMachineId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.Compute/virtualMachines/PSTestVM9e38712\",\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\": \"17592535165370\",\r\n \"protectedItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"workloadType\": \"VM\",\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg9e387301;pstestvm9e38712\",\r\n \"sourceResourceId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.Compute/virtualMachines/PSTestVM9e38712\",\r\n \"policyId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.RecoveryServices/vaults/PSTestRSV9e387301/backupPolicies/DefaultPolicy\",\r\n \"policyName\": \"DefaultPolicy\",\r\n \"isArchiveEnabled\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.RecoveryServices/vaults/PSTestRSV9e387301/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrg9e387301;pstestvm9e3871/protectedItems/VM;iaasvmcontainerv2;pstestrg9e387301;pstestvm9e3871\",\r\n \"name\": \"VM;iaasvmcontainerv2;pstestrg9e387301;pstestvm9e3871\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems\",\r\n \"properties\": {\r\n \"kpisHealths\": {},\r\n \"friendlyName\": \"PSTestVM9e3871\",\r\n \"virtualMachineId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.Compute/virtualMachines/PSTestVM9e3871\",\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\": \"17593768254886\",\r\n \"protectedItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"workloadType\": \"VM\",\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg9e387301;pstestvm9e3871\",\r\n \"sourceResourceId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.Compute/virtualMachines/PSTestVM9e3871\",\r\n \"policyId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.RecoveryServices/vaults/PSTestRSV9e387301/backupPolicies/DefaultPolicy\",\r\n \"policyName\": \"DefaultPolicy\",\r\n \"isArchiveEnabled\": false\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.RecoveryServices/vaults/PSTestRSVdbbbe2ca/backupFabrics/Azure/protectionContainers/IaasVMContainer%3Biaasvmcontainerv2%3Bpstestrgdbbbe2ca%3Bpstestvmdbbbe1/protectedItems/VM%3Biaasvmcontainerv2%3Bpstestrgdbbbe2ca%3Bpstestvmdbbbe1?$filter=expand%20eq%20'extendedinfo'&api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZGJiYmUyY2EvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZkYmJiZTJjYS9iYWNrdXBGYWJyaWNzL0F6dXJlL3Byb3RlY3Rpb25Db250YWluZXJzL0lhYXNWTUNvbnRhaW5lciUzQmlhYXN2bWNvbnRhaW5lcnYyJTNCcHN0ZXN0cmdkYmJiZTJjYSUzQnBzdGVzdHZtZGJiYmUxL3Byb3RlY3RlZEl0ZW1zL1ZNJTNCaWFhc3ZtY29udGFpbmVydjIlM0Jwc3Rlc3RyZ2RiYmJlMmNhJTNCcHN0ZXN0dm1kYmJiZTE/JGZpbHRlcj1leHBhbmQlMjBlcSUyMCdleHRlbmRlZGluZm8nJmFwaS12ZXJzaW9uPTIwMjEtMTAtMDE=", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.RecoveryServices/vaults/PSTestRSV9e387301/backupProtectedItems?$filter=backupManagementType%20eq%20'AzureIaasVM'%20and%20itemType%20eq%20'VM'&api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOWUzODczMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5ZTM4NzMwMS9iYWNrdXBQcm90ZWN0ZWRJdGVtcz8kZmlsdGVyPWJhY2t1cE1hbmFnZW1lbnRUeXBlJTIwZXElMjAnQXp1cmVJYWFzVk0nJTIwYW5kJTIwaXRlbVR5cGUlMjBlcSUyMCdWTScmYXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "59f4667f-5163-4db5-92d6-9a1bf93b9d8b" + "f23befaa-eddf-47e8-a3d3-5f4c6244be06" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -7567,11 +7566,11 @@ "nosniff" ], "x-ms-request-id": [ - "76b8af3c-4d81-4946-ab5c-818529b2f252" + "afbe0bb6-099f-4ec0-9aae-708ec2662833" ], "x-ms-client-request-id": [ - "59f4667f-5163-4db5-92d6-9a1bf93b9d8b", - "59f4667f-5163-4db5-92d6-9a1bf93b9d8b" + "f23befaa-eddf-47e8-a3d3-5f4c6244be06", + "f23befaa-eddf-47e8-a3d3-5f4c6244be06" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -7583,19 +7582,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "145" + "140" ], "x-ms-correlation-request-id": [ - "76b8af3c-4d81-4946-ab5c-818529b2f252" + "afbe0bb6-099f-4ec0-9aae-708ec2662833" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T211433Z:76b8af3c-4d81-4946-ab5c-818529b2f252" + "JIOINDIAWEST:20220517T041634Z:afbe0bb6-099f-4ec0-9aae-708ec2662833" ], "Date": [ - "Thu, 24 Feb 2022 21:14:32 GMT" + "Tue, 17 May 2022 04:16:33 GMT" ], "Content-Length": [ - "1551" + "2986" ], "Content-Type": [ "application/json" @@ -7604,26 +7603,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.RecoveryServices/vaults/PSTestRSVdbbbe2ca/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrgdbbbe2ca;pstestvmdbbbe1/protectedItems/VM;iaasvmcontainerv2;pstestrgdbbbe2ca;pstestvmdbbbe1\",\r\n \"name\": \"VM;iaasvmcontainerv2;pstestrgdbbbe2ca;pstestvmdbbbe1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems\",\r\n \"properties\": {\r\n \"kpisHealths\": {},\r\n \"friendlyName\": \"PSTestVMdbbbe1\",\r\n \"virtualMachineId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Compute/virtualMachines/PSTestVMdbbbe1\",\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\": \"175923196429439\",\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;pstestrgdbbbe2ca;pstestvmdbbbe1\",\r\n \"sourceResourceId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Compute/virtualMachines/PSTestVMdbbbe1\",\r\n \"policyId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.RecoveryServices/vaults/PSTestRSVdbbbe2ca/backupPolicies/DefaultPolicy\",\r\n \"policyName\": \"DefaultPolicy\",\r\n \"isArchiveEnabled\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.RecoveryServices/vaults/PSTestRSV9e387301/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrg9e387301;pstestvm9e38712/protectedItems/VM;iaasvmcontainerv2;pstestrg9e387301;pstestvm9e38712\",\r\n \"name\": \"VM;iaasvmcontainerv2;pstestrg9e387301;pstestvm9e38712\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems\",\r\n \"properties\": {\r\n \"kpisHealths\": {},\r\n \"friendlyName\": \"PSTestVM9e38712\",\r\n \"virtualMachineId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.Compute/virtualMachines/PSTestVM9e38712\",\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\": \"17592535165370\",\r\n \"protectedItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"workloadType\": \"VM\",\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg9e387301;pstestvm9e38712\",\r\n \"sourceResourceId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.Compute/virtualMachines/PSTestVM9e38712\",\r\n \"policyId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.RecoveryServices/vaults/PSTestRSV9e387301/backupPolicies/DefaultPolicy\",\r\n \"policyName\": \"DefaultPolicy\",\r\n \"isArchiveEnabled\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.RecoveryServices/vaults/PSTestRSV9e387301/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrg9e387301;pstestvm9e3871/protectedItems/VM;iaasvmcontainerv2;pstestrg9e387301;pstestvm9e3871\",\r\n \"name\": \"VM;iaasvmcontainerv2;pstestrg9e387301;pstestvm9e3871\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems\",\r\n \"properties\": {\r\n \"kpisHealths\": {},\r\n \"friendlyName\": \"PSTestVM9e3871\",\r\n \"virtualMachineId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.Compute/virtualMachines/PSTestVM9e3871\",\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\": \"17593768254886\",\r\n \"protectedItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"workloadType\": \"VM\",\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg9e387301;pstestvm9e3871\",\r\n \"sourceResourceId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.Compute/virtualMachines/PSTestVM9e3871\",\r\n \"policyId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.RecoveryServices/vaults/PSTestRSV9e387301/backupPolicies/DefaultPolicy\",\r\n \"policyName\": \"DefaultPolicy\",\r\n \"isArchiveEnabled\": false\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.RecoveryServices/vaults/PSTestRSVdbbbe2ca/backupFabrics/Azure/protectionContainers/IaasVMContainer%3Biaasvmcontainerv2%3Bpstestrgdbbbe2ca%3Bpstestvmdbbbe1/protectedItems/VM%3Biaasvmcontainerv2%3Bpstestrgdbbbe2ca%3Bpstestvmdbbbe1?$filter=expand%20eq%20'extendedinfo'&api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZGJiYmUyY2EvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZkYmJiZTJjYS9iYWNrdXBGYWJyaWNzL0F6dXJlL3Byb3RlY3Rpb25Db250YWluZXJzL0lhYXNWTUNvbnRhaW5lciUzQmlhYXN2bWNvbnRhaW5lcnYyJTNCcHN0ZXN0cmdkYmJiZTJjYSUzQnBzdGVzdHZtZGJiYmUxL3Byb3RlY3RlZEl0ZW1zL1ZNJTNCaWFhc3ZtY29udGFpbmVydjIlM0Jwc3Rlc3RyZ2RiYmJlMmNhJTNCcHN0ZXN0dm1kYmJiZTE/JGZpbHRlcj1leHBhbmQlMjBlcSUyMCdleHRlbmRlZGluZm8nJmFwaS12ZXJzaW9uPTIwMjEtMTAtMDE=", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.RecoveryServices/vaults/PSTestRSV9e387301/backupProtectedItems?$filter=backupManagementType%20eq%20'AzureIaasVM'%20and%20itemType%20eq%20'VM'&api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOWUzODczMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5ZTM4NzMwMS9iYWNrdXBQcm90ZWN0ZWRJdGVtcz8kZmlsdGVyPWJhY2t1cE1hbmFnZW1lbnRUeXBlJTIwZXElMjAnQXp1cmVJYWFzVk0nJTIwYW5kJTIwaXRlbVR5cGUlMjBlcSUyMCdWTScmYXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "97ea6b98-c2d1-4579-8ec1-a1ca86952328" + "582e3787-5080-44de-b02d-0b9812ecd3e9" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -7637,11 +7636,11 @@ "nosniff" ], "x-ms-request-id": [ - "79e950a2-def4-4a4f-9960-a54e005cc0dd" + "06b4777f-5a9d-44e9-a53e-74031ac72034" ], "x-ms-client-request-id": [ - "97ea6b98-c2d1-4579-8ec1-a1ca86952328", - "97ea6b98-c2d1-4579-8ec1-a1ca86952328" + "582e3787-5080-44de-b02d-0b9812ecd3e9", + "582e3787-5080-44de-b02d-0b9812ecd3e9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -7653,19 +7652,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "144" + "138" ], "x-ms-correlation-request-id": [ - "79e950a2-def4-4a4f-9960-a54e005cc0dd" + "06b4777f-5a9d-44e9-a53e-74031ac72034" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T211435Z:79e950a2-def4-4a4f-9960-a54e005cc0dd" + "JIOINDIAWEST:20220517T041637Z:06b4777f-5a9d-44e9-a53e-74031ac72034" ], "Date": [ - "Thu, 24 Feb 2022 21:14:34 GMT" + "Tue, 17 May 2022 04:16:36 GMT" ], "Content-Length": [ - "1551" + "2986" ], "Content-Type": [ "application/json" @@ -7674,26 +7673,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.RecoveryServices/vaults/PSTestRSVdbbbe2ca/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrgdbbbe2ca;pstestvmdbbbe1/protectedItems/VM;iaasvmcontainerv2;pstestrgdbbbe2ca;pstestvmdbbbe1\",\r\n \"name\": \"VM;iaasvmcontainerv2;pstestrgdbbbe2ca;pstestvmdbbbe1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems\",\r\n \"properties\": {\r\n \"kpisHealths\": {},\r\n \"friendlyName\": \"PSTestVMdbbbe1\",\r\n \"virtualMachineId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Compute/virtualMachines/PSTestVMdbbbe1\",\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\": \"175923196429439\",\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;pstestrgdbbbe2ca;pstestvmdbbbe1\",\r\n \"sourceResourceId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Compute/virtualMachines/PSTestVMdbbbe1\",\r\n \"policyId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.RecoveryServices/vaults/PSTestRSVdbbbe2ca/backupPolicies/DefaultPolicy\",\r\n \"policyName\": \"DefaultPolicy\",\r\n \"isArchiveEnabled\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.RecoveryServices/vaults/PSTestRSV9e387301/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrg9e387301;pstestvm9e38712/protectedItems/VM;iaasvmcontainerv2;pstestrg9e387301;pstestvm9e38712\",\r\n \"name\": \"VM;iaasvmcontainerv2;pstestrg9e387301;pstestvm9e38712\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems\",\r\n \"properties\": {\r\n \"kpisHealths\": {},\r\n \"friendlyName\": \"PSTestVM9e38712\",\r\n \"virtualMachineId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.Compute/virtualMachines/PSTestVM9e38712\",\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\": \"17592535165370\",\r\n \"protectedItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"workloadType\": \"VM\",\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg9e387301;pstestvm9e38712\",\r\n \"sourceResourceId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.Compute/virtualMachines/PSTestVM9e38712\",\r\n \"policyId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.RecoveryServices/vaults/PSTestRSV9e387301/backupPolicies/DefaultPolicy\",\r\n \"policyName\": \"DefaultPolicy\",\r\n \"isArchiveEnabled\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.RecoveryServices/vaults/PSTestRSV9e387301/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrg9e387301;pstestvm9e3871/protectedItems/VM;iaasvmcontainerv2;pstestrg9e387301;pstestvm9e3871\",\r\n \"name\": \"VM;iaasvmcontainerv2;pstestrg9e387301;pstestvm9e3871\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems\",\r\n \"properties\": {\r\n \"kpisHealths\": {},\r\n \"friendlyName\": \"PSTestVM9e3871\",\r\n \"virtualMachineId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.Compute/virtualMachines/PSTestVM9e3871\",\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\": \"17593768254886\",\r\n \"protectedItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"workloadType\": \"VM\",\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg9e387301;pstestvm9e3871\",\r\n \"sourceResourceId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.Compute/virtualMachines/PSTestVM9e3871\",\r\n \"policyId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.RecoveryServices/vaults/PSTestRSV9e387301/backupPolicies/DefaultPolicy\",\r\n \"policyName\": \"DefaultPolicy\",\r\n \"isArchiveEnabled\": false\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.RecoveryServices/vaults/PSTestRSVdbbbe2ca/backupProtectionContainers?$filter=friendlyName%20eq%20'PSTestVMdbbbe12'%20and%20backupManagementType%20eq%20'AzureIaasVM'%20and%20status%20eq%20'Registered'&api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZGJiYmUyY2EvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZkYmJiZTJjYS9iYWNrdXBQcm90ZWN0aW9uQ29udGFpbmVycz8kZmlsdGVyPWZyaWVuZGx5TmFtZSUyMGVxJTIwJ1BTVGVzdFZNZGJiYmUxMiclMjBhbmQlMjBiYWNrdXBNYW5hZ2VtZW50VHlwZSUyMGVxJTIwJ0F6dXJlSWFhc1ZNJyUyMGFuZCUyMHN0YXR1cyUyMGVxJTIwJ1JlZ2lzdGVyZWQnJmFwaS12ZXJzaW9uPTIwMjEtMTAtMDE=", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.RecoveryServices/vaults/PSTestRSV9e387301/backupProtectedItems?$filter=backupManagementType%20eq%20'AzureIaasVM'%20and%20itemType%20eq%20'VM'&api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOWUzODczMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5ZTM4NzMwMS9iYWNrdXBQcm90ZWN0ZWRJdGVtcz8kZmlsdGVyPWJhY2t1cE1hbmFnZW1lbnRUeXBlJTIwZXElMjAnQXp1cmVJYWFzVk0nJTIwYW5kJTIwaXRlbVR5cGUlMjBlcSUyMCdWTScmYXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f17a174e-1aaa-40bc-95ba-ee0e83cf23f6" + "ae622d8a-a5a4-4dbc-a241-ceef915058fa" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -7707,11 +7706,11 @@ "nosniff" ], "x-ms-request-id": [ - "6aae62d4-e9fe-4899-8f5a-395ba82b8bea" + "0d6e3535-7daf-4dfe-8102-0d64b563d989" ], "x-ms-client-request-id": [ - "f17a174e-1aaa-40bc-95ba-ee0e83cf23f6", - "f17a174e-1aaa-40bc-95ba-ee0e83cf23f6" + "ae622d8a-a5a4-4dbc-a241-ceef915058fa", + "ae622d8a-a5a4-4dbc-a241-ceef915058fa" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -7723,19 +7722,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "147" + "137" ], "x-ms-correlation-request-id": [ - "6aae62d4-e9fe-4899-8f5a-395ba82b8bea" + "0d6e3535-7daf-4dfe-8102-0d64b563d989" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T211345Z:6aae62d4-e9fe-4899-8f5a-395ba82b8bea" + "JIOINDIAWEST:20220517T041836Z:0d6e3535-7daf-4dfe-8102-0d64b563d989" ], "Date": [ - "Thu, 24 Feb 2022 21:13:44 GMT" + "Tue, 17 May 2022 04:18:35 GMT" ], "Content-Length": [ - "12" + "1502" ], "Content-Type": [ "application/json" @@ -7744,26 +7743,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.RecoveryServices/vaults/PSTestRSV9e387301/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrg9e387301;pstestvm9e38712/protectedItems/VM;iaasvmcontainerv2;pstestrg9e387301;pstestvm9e38712\",\r\n \"name\": \"VM;iaasvmcontainerv2;pstestrg9e387301;pstestvm9e38712\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems\",\r\n \"properties\": {\r\n \"kpisHealths\": {},\r\n \"friendlyName\": \"PSTestVM9e38712\",\r\n \"virtualMachineId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.Compute/virtualMachines/PSTestVM9e38712\",\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\": \"17592535165370\",\r\n \"protectedItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"workloadType\": \"VM\",\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg9e387301;pstestvm9e38712\",\r\n \"sourceResourceId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.Compute/virtualMachines/PSTestVM9e38712\",\r\n \"policyId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.RecoveryServices/vaults/PSTestRSV9e387301/backupPolicies/DefaultPolicy\",\r\n \"policyName\": \"DefaultPolicy\",\r\n \"isArchiveEnabled\": false\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.RecoveryServices/vaults/PSTestRSVdbbbe2ca/backupProtectionContainers?$filter=friendlyName%20eq%20'PSTestVMdbbbe12'%20and%20backupManagementType%20eq%20'AzureIaasVM'%20and%20status%20eq%20'Registered'&api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZGJiYmUyY2EvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZkYmJiZTJjYS9iYWNrdXBQcm90ZWN0aW9uQ29udGFpbmVycz8kZmlsdGVyPWZyaWVuZGx5TmFtZSUyMGVxJTIwJ1BTVGVzdFZNZGJiYmUxMiclMjBhbmQlMjBiYWNrdXBNYW5hZ2VtZW50VHlwZSUyMGVxJTIwJ0F6dXJlSWFhc1ZNJyUyMGFuZCUyMHN0YXR1cyUyMGVxJTIwJ1JlZ2lzdGVyZWQnJmFwaS12ZXJzaW9uPTIwMjEtMTAtMDE=", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.RecoveryServices/vaults/PSTestRSV9e387301/backupFabrics/Azure/protectionContainers/IaasVMContainer%3Biaasvmcontainerv2%3Bpstestrg9e387301%3Bpstestvm9e3871/protectedItems/VM%3Biaasvmcontainerv2%3Bpstestrg9e387301%3Bpstestvm9e3871?$filter=expand%20eq%20'extendedinfo'&api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOWUzODczMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5ZTM4NzMwMS9iYWNrdXBGYWJyaWNzL0F6dXJlL3Byb3RlY3Rpb25Db250YWluZXJzL0lhYXNWTUNvbnRhaW5lciUzQmlhYXN2bWNvbnRhaW5lcnYyJTNCcHN0ZXN0cmc5ZTM4NzMwMSUzQnBzdGVzdHZtOWUzODcxL3Byb3RlY3RlZEl0ZW1zL1ZNJTNCaWFhc3ZtY29udGFpbmVydjIlM0Jwc3Rlc3RyZzllMzg3MzAxJTNCcHN0ZXN0dm05ZTM4NzE/JGZpbHRlcj1leHBhbmQlMjBlcSUyMCdleHRlbmRlZGluZm8nJmFwaS12ZXJzaW9uPTIwMjItMDItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3bf6720e-c1a7-4766-93b7-0cec777afab0" + "d5e17c36-9c1d-4110-becf-bfbed2b23912" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -7777,11 +7776,11 @@ "nosniff" ], "x-ms-request-id": [ - "a74ab09e-5a5c-4e5d-be38-5eeb370337d0" + "dae7d1cb-10ff-4d13-8f1a-3b0402a0b64a" ], "x-ms-client-request-id": [ - "3bf6720e-c1a7-4766-93b7-0cec777afab0", - "3bf6720e-c1a7-4766-93b7-0cec777afab0" + "d5e17c36-9c1d-4110-becf-bfbed2b23912", + "d5e17c36-9c1d-4110-becf-bfbed2b23912" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -7793,19 +7792,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "146" + "149" ], "x-ms-correlation-request-id": [ - "a74ab09e-5a5c-4e5d-be38-5eeb370337d0" + "dae7d1cb-10ff-4d13-8f1a-3b0402a0b64a" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T211423Z:a74ab09e-5a5c-4e5d-be38-5eeb370337d0" + "JIOINDIAWEST:20220517T041533Z:dae7d1cb-10ff-4d13-8f1a-3b0402a0b64a" ], "Date": [ - "Thu, 24 Feb 2022 21:14:23 GMT" + "Tue, 17 May 2022 04:15:33 GMT" ], "Content-Length": [ - "918" + "1550" ], "Content-Type": [ "application/json" @@ -7814,32 +7813,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.RecoveryServices/vaults/PSTestRSVdbbbe2ca/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrgdbbbe2ca;pstestvmdbbbe12\",\r\n \"name\": \"IaasVMContainer;iaasvmcontainerv2;pstestrgdbbbe2ca;pstestvmdbbbe12\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers\",\r\n \"properties\": {\r\n \"virtualMachineId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Compute/virtualMachines/PSTestVMdbbbe12\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"resourceGroup\": \"PSTestRGdbbbe2ca\",\r\n \"friendlyName\": \"PSTestVMdbbbe12\",\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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.RecoveryServices/vaults/PSTestRSV9e387301/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrg9e387301;pstestvm9e3871/protectedItems/VM;iaasvmcontainerv2;pstestrg9e387301;pstestvm9e3871\",\r\n \"name\": \"VM;iaasvmcontainerv2;pstestrg9e387301;pstestvm9e3871\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems\",\r\n \"properties\": {\r\n \"kpisHealths\": {},\r\n \"friendlyName\": \"PSTestVM9e3871\",\r\n \"virtualMachineId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.Compute/virtualMachines/PSTestVM9e3871\",\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\": \"17593768254886\",\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;pstestrg9e387301;pstestvm9e3871\",\r\n \"sourceResourceId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.Compute/virtualMachines/PSTestVM9e3871\",\r\n \"policyId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.RecoveryServices/vaults/PSTestRSV9e387301/backupPolicies/DefaultPolicy\",\r\n \"policyName\": \"DefaultPolicy\",\r\n \"isArchiveEnabled\": false\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.RecoveryServices/vaults/PSTestRSVdbbbe2ca/backupFabrics/Azure/protectionContainers/IaasVMContainer%3Biaasvmcontainerv2%3Bpstestrgdbbbe2ca%3Bpstestvmdbbbe12/protectedItems/vm%3Biaasvmcontainerv2%3Bpstestrgdbbbe2ca%3Bpstestvmdbbbe12?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZGJiYmUyY2EvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZkYmJiZTJjYS9iYWNrdXBGYWJyaWNzL0F6dXJlL3Byb3RlY3Rpb25Db250YWluZXJzL0lhYXNWTUNvbnRhaW5lciUzQmlhYXN2bWNvbnRhaW5lcnYyJTNCcHN0ZXN0cmdkYmJiZTJjYSUzQnBzdGVzdHZtZGJiYmUxMi9wcm90ZWN0ZWRJdGVtcy92bSUzQmlhYXN2bWNvbnRhaW5lcnYyJTNCcHN0ZXN0cmdkYmJiZTJjYSUzQnBzdGVzdHZtZGJiYmUxMj9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"protectedItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"sourceResourceId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Compute/virtualMachines/PSTestVMdbbbe12\",\r\n \"policyId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.RecoveryServices/vaults/PSTestRSVdbbbe2ca/backupPolicies/DefaultPolicy\"\r\n }\r\n}", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.RecoveryServices/vaults/PSTestRSV9e387301/backupFabrics/Azure/protectionContainers/IaasVMContainer%3Biaasvmcontainerv2%3Bpstestrg9e387301%3Bpstestvm9e3871/protectedItems/VM%3Biaasvmcontainerv2%3Bpstestrg9e387301%3Bpstestvm9e3871?$filter=expand%20eq%20'extendedinfo'&api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOWUzODczMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5ZTM4NzMwMS9iYWNrdXBGYWJyaWNzL0F6dXJlL3Byb3RlY3Rpb25Db250YWluZXJzL0lhYXNWTUNvbnRhaW5lciUzQmlhYXN2bWNvbnRhaW5lcnYyJTNCcHN0ZXN0cmc5ZTM4NzMwMSUzQnBzdGVzdHZtOWUzODcxL3Byb3RlY3RlZEl0ZW1zL1ZNJTNCaWFhc3ZtY29udGFpbmVydjIlM0Jwc3Rlc3RyZzllMzg3MzAxJTNCcHN0ZXN0dm05ZTM4NzE/JGZpbHRlcj1leHBhbmQlMjBlcSUyMCdleHRlbmRlZGluZm8nJmFwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1bb928f6-fc23-460f-a294-2664d65093a8" + "2d88c384-8e0d-4277-84e3-f41cd5b66618" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "457" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -7849,70 +7842,67 @@ "Pragma": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.RecoveryServices/vaults/PSTestRSVdbbbe2ca/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrgdbbbe2ca;pstestvmdbbbe12/protectedItems/vm;iaasvmcontainerv2;pstestrgdbbbe2ca;pstestvmdbbbe12/operationResults/5a77579f-cf44-47d4-9b2c-e161c24b2a8d?api-version=2021-10-01" - ], - "Retry-After": [ - "60" - ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.RecoveryServices/vaults/PSTestRSVdbbbe2ca/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrgdbbbe2ca;pstestvmdbbbe12/protectedItems/vm;iaasvmcontainerv2;pstestrgdbbbe2ca;pstestvmdbbbe12/operationsStatus/5a77579f-cf44-47d4-9b2c-e161c24b2a8d?api-version=2021-10-01" - ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "ca38faa2-bf3e-4c15-933a-8dcb9013a988" + "bb140847-1b03-4bc0-b715-71e34bb36efd" ], "x-ms-client-request-id": [ - "1bb928f6-fc23-460f-a294-2664d65093a8", - "1bb928f6-fc23-460f-a294-2664d65093a8" + "2d88c384-8e0d-4277-84e3-f41cd5b66618", + "2d88c384-8e0d-4277-84e3-f41cd5b66618" ], "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-ratelimit-remaining-subscription-resource-requests": [ + "147" ], "x-ms-correlation-request-id": [ - "ca38faa2-bf3e-4c15-933a-8dcb9013a988" + "bb140847-1b03-4bc0-b715-71e34bb36efd" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T211347Z:ca38faa2-bf3e-4c15-933a-8dcb9013a988" + "JIOINDIAWEST:20220517T041630Z:bb140847-1b03-4bc0-b715-71e34bb36efd" ], "Date": [ - "Thu, 24 Feb 2022 21:13:46 GMT" + "Tue, 17 May 2022 04:16:29 GMT" + ], + "Content-Length": [ + "1550" + ], + "Content-Type": [ + "application/json" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, - "ResponseBody": "", - "StatusCode": 202 + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.RecoveryServices/vaults/PSTestRSV9e387301/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrg9e387301;pstestvm9e3871/protectedItems/VM;iaasvmcontainerv2;pstestrg9e387301;pstestvm9e3871\",\r\n \"name\": \"VM;iaasvmcontainerv2;pstestrg9e387301;pstestvm9e3871\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems\",\r\n \"properties\": {\r\n \"kpisHealths\": {},\r\n \"friendlyName\": \"PSTestVM9e3871\",\r\n \"virtualMachineId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.Compute/virtualMachines/PSTestVM9e3871\",\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\": \"17593768254886\",\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;pstestrg9e387301;pstestvm9e3871\",\r\n \"sourceResourceId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.Compute/virtualMachines/PSTestVM9e3871\",\r\n \"policyId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.RecoveryServices/vaults/PSTestRSV9e387301/backupPolicies/DefaultPolicy\",\r\n \"policyName\": \"DefaultPolicy\",\r\n \"isArchiveEnabled\": false\r\n }\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.RecoveryServices/vaults/PSTestRSVdbbbe2ca/backupOperations/5a77579f-cf44-47d4-9b2c-e161c24b2a8d?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZGJiYmUyY2EvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZkYmJiZTJjYS9iYWNrdXBPcGVyYXRpb25zLzVhNzc1NzlmLWNmNDQtNDdkNC05YjJjLWUxNjFjMjRiMmE4ZD9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.RecoveryServices/vaults/PSTestRSV9e387301/backupFabrics/Azure/protectionContainers/IaasVMContainer%3Biaasvmcontainerv2%3Bpstestrg9e387301%3Bpstestvm9e3871/protectedItems/VM%3Biaasvmcontainerv2%3Bpstestrg9e387301%3Bpstestvm9e3871?$filter=expand%20eq%20'extendedinfo'&api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOWUzODczMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5ZTM4NzMwMS9iYWNrdXBGYWJyaWNzL0F6dXJlL3Byb3RlY3Rpb25Db250YWluZXJzL0lhYXNWTUNvbnRhaW5lciUzQmlhYXN2bWNvbnRhaW5lcnYyJTNCcHN0ZXN0cmc5ZTM4NzMwMSUzQnBzdGVzdHZtOWUzODcxL3Byb3RlY3RlZEl0ZW1zL1ZNJTNCaWFhc3ZtY29udGFpbmVydjIlM0Jwc3Rlc3RyZzllMzg3MzAxJTNCcHN0ZXN0dm05ZTM4NzE/JGZpbHRlcj1leHBhbmQlMjBlcSUyMCdleHRlbmRlZGluZm8nJmFwaS12ZXJzaW9uPTIwMjItMDItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1bb928f6-fc23-460f-a294-2664d65093a8" + "d726f18b-ce0c-4cd4-a99e-7d0946b180b9" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -7926,11 +7916,11 @@ "nosniff" ], "x-ms-request-id": [ - "a1dbbf44-4990-4313-9db0-9387d8a38393" + "0c0573c1-3974-4aaf-9cca-9fa63c990463" ], "x-ms-client-request-id": [ - "1bb928f6-fc23-460f-a294-2664d65093a8", - "1bb928f6-fc23-460f-a294-2664d65093a8" + "d726f18b-ce0c-4cd4-a99e-7d0946b180b9", + "d726f18b-ce0c-4cd4-a99e-7d0946b180b9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -7942,19 +7932,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "144" + "146" ], "x-ms-correlation-request-id": [ - "a1dbbf44-4990-4313-9db0-9387d8a38393" + "0c0573c1-3974-4aaf-9cca-9fa63c990463" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T211347Z:a1dbbf44-4990-4313-9db0-9387d8a38393" + "JIOINDIAWEST:20220517T041632Z:0c0573c1-3974-4aaf-9cca-9fa63c990463" ], "Date": [ - "Thu, 24 Feb 2022 21:13:46 GMT" + "Tue, 17 May 2022 04:16:31 GMT" ], "Content-Length": [ - "188" + "1550" ], "Content-Type": [ "application/json" @@ -7963,26 +7953,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"5a77579f-cf44-47d4-9b2c-e161c24b2a8d\",\r\n \"name\": \"5a77579f-cf44-47d4-9b2c-e161c24b2a8d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-24T21:13:46.9165504Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.RecoveryServices/vaults/PSTestRSV9e387301/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrg9e387301;pstestvm9e3871/protectedItems/VM;iaasvmcontainerv2;pstestrg9e387301;pstestvm9e3871\",\r\n \"name\": \"VM;iaasvmcontainerv2;pstestrg9e387301;pstestvm9e3871\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems\",\r\n \"properties\": {\r\n \"kpisHealths\": {},\r\n \"friendlyName\": \"PSTestVM9e3871\",\r\n \"virtualMachineId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.Compute/virtualMachines/PSTestVM9e3871\",\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\": \"17593768254886\",\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;pstestrg9e387301;pstestvm9e3871\",\r\n \"sourceResourceId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.Compute/virtualMachines/PSTestVM9e3871\",\r\n \"policyId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.RecoveryServices/vaults/PSTestRSV9e387301/backupPolicies/DefaultPolicy\",\r\n \"policyName\": \"DefaultPolicy\",\r\n \"isArchiveEnabled\": false\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.RecoveryServices/vaults/PSTestRSVdbbbe2ca/backupOperations/5a77579f-cf44-47d4-9b2c-e161c24b2a8d?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZGJiYmUyY2EvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZkYmJiZTJjYS9iYWNrdXBPcGVyYXRpb25zLzVhNzc1NzlmLWNmNDQtNDdkNC05YjJjLWUxNjFjMjRiMmE4ZD9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.RecoveryServices/vaults/PSTestRSV9e387301/backupFabrics/Azure/protectionContainers/IaasVMContainer%3Biaasvmcontainerv2%3Bpstestrg9e387301%3Bpstestvm9e3871/protectedItems/VM%3Biaasvmcontainerv2%3Bpstestrg9e387301%3Bpstestvm9e3871?$filter=expand%20eq%20'extendedinfo'&api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOWUzODczMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5ZTM4NzMwMS9iYWNrdXBGYWJyaWNzL0F6dXJlL3Byb3RlY3Rpb25Db250YWluZXJzL0lhYXNWTUNvbnRhaW5lciUzQmlhYXN2bWNvbnRhaW5lcnYyJTNCcHN0ZXN0cmc5ZTM4NzMwMSUzQnBzdGVzdHZtOWUzODcxL3Byb3RlY3RlZEl0ZW1zL1ZNJTNCaWFhc3ZtY29udGFpbmVydjIlM0Jwc3Rlc3RyZzllMzg3MzAxJTNCcHN0ZXN0dm05ZTM4NzE/JGZpbHRlcj1leHBhbmQlMjBlcSUyMCdleHRlbmRlZGluZm8nJmFwaS12ZXJzaW9uPTIwMjItMDItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1bb928f6-fc23-460f-a294-2664d65093a8" + "904507ac-b579-43ca-9614-be17c2412237" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -7996,11 +7986,11 @@ "nosniff" ], "x-ms-request-id": [ - "a14a97b7-4899-4bd7-b3d3-a859241153bb" + "cce4c625-00ba-4fc7-8734-912e904a6ffb" ], "x-ms-client-request-id": [ - "1bb928f6-fc23-460f-a294-2664d65093a8", - "1bb928f6-fc23-460f-a294-2664d65093a8" + "904507ac-b579-43ca-9614-be17c2412237", + "904507ac-b579-43ca-9614-be17c2412237" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -8012,19 +8002,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "143" + "145" ], "x-ms-correlation-request-id": [ - "a14a97b7-4899-4bd7-b3d3-a859241153bb" + "cce4c625-00ba-4fc7-8734-912e904a6ffb" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T211411Z:a14a97b7-4899-4bd7-b3d3-a859241153bb" + "JIOINDIAWEST:20220517T041633Z:cce4c625-00ba-4fc7-8734-912e904a6ffb" ], "Date": [ - "Thu, 24 Feb 2022 21:14:11 GMT" + "Tue, 17 May 2022 04:16:32 GMT" ], "Content-Length": [ - "188" + "1550" ], "Content-Type": [ "application/json" @@ -8033,26 +8023,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"5a77579f-cf44-47d4-9b2c-e161c24b2a8d\",\r\n \"name\": \"5a77579f-cf44-47d4-9b2c-e161c24b2a8d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-24T21:13:46.9165504Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.RecoveryServices/vaults/PSTestRSV9e387301/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrg9e387301;pstestvm9e3871/protectedItems/VM;iaasvmcontainerv2;pstestrg9e387301;pstestvm9e3871\",\r\n \"name\": \"VM;iaasvmcontainerv2;pstestrg9e387301;pstestvm9e3871\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems\",\r\n \"properties\": {\r\n \"kpisHealths\": {},\r\n \"friendlyName\": \"PSTestVM9e3871\",\r\n \"virtualMachineId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.Compute/virtualMachines/PSTestVM9e3871\",\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\": \"17593768254886\",\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;pstestrg9e387301;pstestvm9e3871\",\r\n \"sourceResourceId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.Compute/virtualMachines/PSTestVM9e3871\",\r\n \"policyId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.RecoveryServices/vaults/PSTestRSV9e387301/backupPolicies/DefaultPolicy\",\r\n \"policyName\": \"DefaultPolicy\",\r\n \"isArchiveEnabled\": false\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.RecoveryServices/vaults/PSTestRSVdbbbe2ca/backupOperations/5a77579f-cf44-47d4-9b2c-e161c24b2a8d?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZGJiYmUyY2EvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZkYmJiZTJjYS9iYWNrdXBPcGVyYXRpb25zLzVhNzc1NzlmLWNmNDQtNDdkNC05YjJjLWUxNjFjMjRiMmE4ZD9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.RecoveryServices/vaults/PSTestRSV9e387301/backupFabrics/Azure/protectionContainers/IaasVMContainer%3Biaasvmcontainerv2%3Bpstestrg9e387301%3Bpstestvm9e3871/protectedItems/VM%3Biaasvmcontainerv2%3Bpstestrg9e387301%3Bpstestvm9e3871?$filter=expand%20eq%20'extendedinfo'&api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOWUzODczMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5ZTM4NzMwMS9iYWNrdXBGYWJyaWNzL0F6dXJlL3Byb3RlY3Rpb25Db250YWluZXJzL0lhYXNWTUNvbnRhaW5lciUzQmlhYXN2bWNvbnRhaW5lcnYyJTNCcHN0ZXN0cmc5ZTM4NzMwMSUzQnBzdGVzdHZtOWUzODcxL3Byb3RlY3RlZEl0ZW1zL1ZNJTNCaWFhc3ZtY29udGFpbmVydjIlM0Jwc3Rlc3RyZzllMzg3MzAxJTNCcHN0ZXN0dm05ZTM4NzE/JGZpbHRlcj1leHBhbmQlMjBlcSUyMCdleHRlbmRlZGluZm8nJmFwaS12ZXJzaW9uPTIwMjItMDItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1bb928f6-fc23-460f-a294-2664d65093a8" + "f23befaa-eddf-47e8-a3d3-5f4c6244be06" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -8066,11 +8056,11 @@ "nosniff" ], "x-ms-request-id": [ - "b4e5c904-18ad-43ff-a966-16ea44bfc8f9" + "948383a9-eec8-401b-a31a-6160091b6f7f" ], "x-ms-client-request-id": [ - "1bb928f6-fc23-460f-a294-2664d65093a8", - "1bb928f6-fc23-460f-a294-2664d65093a8" + "f23befaa-eddf-47e8-a3d3-5f4c6244be06", + "f23befaa-eddf-47e8-a3d3-5f4c6244be06" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -8082,19 +8072,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "142" + "144" ], "x-ms-correlation-request-id": [ - "b4e5c904-18ad-43ff-a966-16ea44bfc8f9" + "948383a9-eec8-401b-a31a-6160091b6f7f" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T211422Z:b4e5c904-18ad-43ff-a966-16ea44bfc8f9" + "JIOINDIAWEST:20220517T041634Z:948383a9-eec8-401b-a31a-6160091b6f7f" ], "Date": [ - "Thu, 24 Feb 2022 21:14:22 GMT" + "Tue, 17 May 2022 04:16:34 GMT" ], "Content-Length": [ - "304" + "1550" ], "Content-Type": [ "application/json" @@ -8103,26 +8093,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"5a77579f-cf44-47d4-9b2c-e161c24b2a8d\",\r\n \"name\": \"5a77579f-cf44-47d4-9b2c-e161c24b2a8d\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-02-24T21:13:46.9165504Z\",\r\n \"endTime\": \"2022-02-24T21:13:46.9165504Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"06beb7ee-503c-4538-9edf-50764f95cb65\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.RecoveryServices/vaults/PSTestRSV9e387301/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrg9e387301;pstestvm9e3871/protectedItems/VM;iaasvmcontainerv2;pstestrg9e387301;pstestvm9e3871\",\r\n \"name\": \"VM;iaasvmcontainerv2;pstestrg9e387301;pstestvm9e3871\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems\",\r\n \"properties\": {\r\n \"kpisHealths\": {},\r\n \"friendlyName\": \"PSTestVM9e3871\",\r\n \"virtualMachineId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.Compute/virtualMachines/PSTestVM9e3871\",\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\": \"17593768254886\",\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;pstestrg9e387301;pstestvm9e3871\",\r\n \"sourceResourceId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.Compute/virtualMachines/PSTestVM9e3871\",\r\n \"policyId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.RecoveryServices/vaults/PSTestRSV9e387301/backupPolicies/DefaultPolicy\",\r\n \"policyName\": \"DefaultPolicy\",\r\n \"isArchiveEnabled\": false\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.RecoveryServices/vaults/PSTestRSVdbbbe2ca/backupOperations/5a77579f-cf44-47d4-9b2c-e161c24b2a8d?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZGJiYmUyY2EvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZkYmJiZTJjYS9iYWNrdXBPcGVyYXRpb25zLzVhNzc1NzlmLWNmNDQtNDdkNC05YjJjLWUxNjFjMjRiMmE4ZD9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.RecoveryServices/vaults/PSTestRSV9e387301/backupProtectionContainers?$filter=friendlyName%20eq%20'PSTestVM9e38712'%20and%20backupManagementType%20eq%20'AzureIaasVM'%20and%20status%20eq%20'Registered'&api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOWUzODczMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5ZTM4NzMwMS9iYWNrdXBQcm90ZWN0aW9uQ29udGFpbmVycz8kZmlsdGVyPWZyaWVuZGx5TmFtZSUyMGVxJTIwJ1BTVGVzdFZNOWUzODcxMiclMjBhbmQlMjBiYWNrdXBNYW5hZ2VtZW50VHlwZSUyMGVxJTIwJ0F6dXJlSWFhc1ZNJyUyMGFuZCUyMHN0YXR1cyUyMGVxJTIwJ1JlZ2lzdGVyZWQnJmFwaS12ZXJzaW9uPTIwMjItMDItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1bb928f6-fc23-460f-a294-2664d65093a8" + "f0c4b663-a2d7-4017-a9ab-40a3a5e67255" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -8136,11 +8126,11 @@ "nosniff" ], "x-ms-request-id": [ - "083666c2-3f58-40ad-852c-c5eaef3ae5c0" + "2a8d6adc-e190-40ff-af26-fc99be829267" ], "x-ms-client-request-id": [ - "1bb928f6-fc23-460f-a294-2664d65093a8", - "1bb928f6-fc23-460f-a294-2664d65093a8" + "f0c4b663-a2d7-4017-a9ab-40a3a5e67255", + "f0c4b663-a2d7-4017-a9ab-40a3a5e67255" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -8152,19 +8142,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "141" + "147" ], "x-ms-correlation-request-id": [ - "083666c2-3f58-40ad-852c-c5eaef3ae5c0" + "2a8d6adc-e190-40ff-af26-fc99be829267" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T211422Z:083666c2-3f58-40ad-852c-c5eaef3ae5c0" + "JIOINDIAWEST:20220517T041539Z:2a8d6adc-e190-40ff-af26-fc99be829267" ], "Date": [ - "Thu, 24 Feb 2022 21:14:22 GMT" + "Tue, 17 May 2022 04:15:39 GMT" ], "Content-Length": [ - "304" + "12" ], "Content-Type": [ "application/json" @@ -8173,26 +8163,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"5a77579f-cf44-47d4-9b2c-e161c24b2a8d\",\r\n \"name\": \"5a77579f-cf44-47d4-9b2c-e161c24b2a8d\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-02-24T21:13:46.9165504Z\",\r\n \"endTime\": \"2022-02-24T21:13:46.9165504Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"06beb7ee-503c-4538-9edf-50764f95cb65\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": []\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.RecoveryServices/vaults/PSTestRSVdbbbe2ca/backupJobs/06beb7ee-503c-4538-9edf-50764f95cb65?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZGJiYmUyY2EvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZkYmJiZTJjYS9iYWNrdXBKb2JzLzA2YmViN2VlLTUwM2MtNDUzOC05ZWRmLTUwNzY0Zjk1Y2I2NT9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.RecoveryServices/vaults/PSTestRSV9e387301/backupProtectionContainers?$filter=friendlyName%20eq%20'PSTestVM9e38712'%20and%20backupManagementType%20eq%20'AzureIaasVM'%20and%20status%20eq%20'Registered'&api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOWUzODczMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5ZTM4NzMwMS9iYWNrdXBQcm90ZWN0aW9uQ29udGFpbmVycz8kZmlsdGVyPWZyaWVuZGx5TmFtZSUyMGVxJTIwJ1BTVGVzdFZNOWUzODcxMiclMjBhbmQlMjBiYWNrdXBNYW5hZ2VtZW50VHlwZSUyMGVxJTIwJ0F6dXJlSWFhc1ZNJyUyMGFuZCUyMHN0YXR1cyUyMGVxJTIwJ1JlZ2lzdGVyZWQnJmFwaS12ZXJzaW9uPTIwMjItMDItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1bb928f6-fc23-460f-a294-2664d65093a8" + "8a90abb2-b408-4c93-8e01-e38c90f7c8ea" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -8202,40 +8192,39 @@ "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-IIS/10.0" - ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "eb1de86d-931c-49eb-8862-be4f0962ea17" + "67ba1971-f8c0-4b74-ae48-011b0abd1d23" ], "x-ms-client-request-id": [ - "1bb928f6-fc23-460f-a294-2664d65093a8", - "1bb928f6-fc23-460f-a294-2664d65093a8" - ], - "X-Powered-By": [ - "ASP.NET" + "8a90abb2-b408-4c93-8e01-e38c90f7c8ea", + "8a90abb2-b408-4c93-8e01-e38c90f7c8ea" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "148" + "146" ], "x-ms-correlation-request-id": [ - "eb1de86d-931c-49eb-8862-be4f0962ea17" + "67ba1971-f8c0-4b74-ae48-011b0abd1d23" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T211423Z:eb1de86d-931c-49eb-8862-be4f0962ea17" + "JIOINDIAWEST:20220517T041627Z:67ba1971-f8c0-4b74-ae48-011b0abd1d23" ], "Date": [ - "Thu, 24 Feb 2022 21:14:23 GMT" + "Tue, 17 May 2022 04:16:26 GMT" ], "Content-Length": [ - "843" + "918" ], "Content-Type": [ "application/json" @@ -8244,26 +8233,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.RecoveryServices/vaults/PSTestRSVdbbbe2ca/backupJobs/06beb7ee-503c-4538-9edf-50764f95cb65\",\r\n \"name\": \"06beb7ee-503c-4538-9edf-50764f95cb65\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgdbbbe2ca;pstestvmdbbbe12\",\r\n \"duration\": \"PT30.8086989S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvmdbbbe12\",\r\n \"Policy Name\": \"DefaultPolicy\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvmdbbbe12\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"ConfigureBackup\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-02-24T21:13:46.9165504Z\",\r\n \"endTime\": \"2022-02-24T21:14:17.7252493Z\",\r\n \"activityId\": \"1bb928f6-fc23-460f-a294-2664d65093a8\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.RecoveryServices/vaults/PSTestRSV9e387301/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrg9e387301;pstestvm9e38712\",\r\n \"name\": \"IaasVMContainer;iaasvmcontainerv2;pstestrg9e387301;pstestvm9e38712\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers\",\r\n \"properties\": {\r\n \"virtualMachineId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.Compute/virtualMachines/PSTestVM9e38712\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"resourceGroup\": \"PSTestRG9e387301\",\r\n \"friendlyName\": \"PSTestVM9e38712\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.RecoveryServices/vaults/PSTestRSVdbbbe2ca/backupFabrics/Azure/protectionContainers/IaasVMContainer%3Biaasvmcontainerv2%3Bpstestrgdbbbe2ca%3Bpstestvmdbbbe12/protectedItems/VM%3Biaasvmcontainerv2%3Bpstestrgdbbbe2ca%3Bpstestvmdbbbe12?$filter=expand%20eq%20'extendedinfo'&api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZGJiYmUyY2EvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZkYmJiZTJjYS9iYWNrdXBGYWJyaWNzL0F6dXJlL3Byb3RlY3Rpb25Db250YWluZXJzL0lhYXNWTUNvbnRhaW5lciUzQmlhYXN2bWNvbnRhaW5lcnYyJTNCcHN0ZXN0cmdkYmJiZTJjYSUzQnBzdGVzdHZtZGJiYmUxMi9wcm90ZWN0ZWRJdGVtcy9WTSUzQmlhYXN2bWNvbnRhaW5lcnYyJTNCcHN0ZXN0cmdkYmJiZTJjYSUzQnBzdGVzdHZtZGJiYmUxMj8kZmlsdGVyPWV4cGFuZCUyMGVxJTIwJ2V4dGVuZGVkaW5mbycmYXBpLXZlcnNpb249MjAyMS0xMC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.RecoveryServices/vaults/PSTestRSV9e387301/backupFabrics/Azure/protectionContainers/IaasVMContainer%3Biaasvmcontainerv2%3Bpstestrg9e387301%3Bpstestvm9e38712/protectedItems/vm%3Biaasvmcontainerv2%3Bpstestrg9e387301%3Bpstestvm9e38712?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOWUzODczMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5ZTM4NzMwMS9iYWNrdXBGYWJyaWNzL0F6dXJlL3Byb3RlY3Rpb25Db250YWluZXJzL0lhYXNWTUNvbnRhaW5lciUzQmlhYXN2bWNvbnRhaW5lcnYyJTNCcHN0ZXN0cmc5ZTM4NzMwMSUzQnBzdGVzdHZtOWUzODcxMi9wcm90ZWN0ZWRJdGVtcy92bSUzQmlhYXN2bWNvbnRhaW5lcnYyJTNCcHN0ZXN0cmc5ZTM4NzMwMSUzQnBzdGVzdHZtOWUzODcxMj9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"protectedItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"sourceResourceId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.Compute/virtualMachines/PSTestVM9e38712\",\r\n \"policyId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.RecoveryServices/vaults/PSTestRSV9e387301/backupPolicies/DefaultPolicy\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "073930e0-08fd-49af-bffa-3d2d22c58e8a" + "6698e185-807e-4883-9b00-97569ea66115" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "457" ] }, "ResponseHeaders": { @@ -8273,67 +8268,70 @@ "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.RecoveryServices/vaults/PSTestRSV9e387301/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrg9e387301;pstestvm9e38712/protectedItems/vm;iaasvmcontainerv2;pstestrg9e387301;pstestvm9e38712/operationResults/b92c2247-ea82-4f6a-8ec0-956ff6cab63b?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.RecoveryServices/vaults/PSTestRSV9e387301/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrg9e387301;pstestvm9e38712/protectedItems/vm;iaasvmcontainerv2;pstestrg9e387301;pstestvm9e38712/operationsStatus/b92c2247-ea82-4f6a-8ec0-956ff6cab63b?api-version=2022-02-01" + ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "a00dbc0a-4143-4fb0-ae3a-83909590c183" + "35cd9aa5-4d7b-4c84-8727-c9b2cd749436" ], "x-ms-client-request-id": [ - "073930e0-08fd-49af-bffa-3d2d22c58e8a", - "073930e0-08fd-49af-bffa-3d2d22c58e8a" + "6698e185-807e-4883-9b00-97569ea66115", + "6698e185-807e-4883-9b00-97569ea66115" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Server": [ - "Microsoft-IIS/10.0" - ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "148" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" ], "x-ms-correlation-request-id": [ - "a00dbc0a-4143-4fb0-ae3a-83909590c183" + "35cd9aa5-4d7b-4c84-8727-c9b2cd749436" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T211425Z:a00dbc0a-4143-4fb0-ae3a-83909590c183" + "JIOINDIAWEST:20220517T041541Z:35cd9aa5-4d7b-4c84-8727-c9b2cd749436" ], "Date": [ - "Thu, 24 Feb 2022 21:14:24 GMT" - ], - "Content-Length": [ - "1558" - ], - "Content-Type": [ - "application/json" + "Tue, 17 May 2022 04:15:41 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.RecoveryServices/vaults/PSTestRSVdbbbe2ca/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrgdbbbe2ca;pstestvmdbbbe12/protectedItems/VM;iaasvmcontainerv2;pstestrgdbbbe2ca;pstestvmdbbbe12\",\r\n \"name\": \"VM;iaasvmcontainerv2;pstestrgdbbbe2ca;pstestvmdbbbe12\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems\",\r\n \"properties\": {\r\n \"kpisHealths\": {},\r\n \"friendlyName\": \"PSTestVMdbbbe12\",\r\n \"virtualMachineId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Compute/virtualMachines/PSTestVMdbbbe12\",\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\": \"175923582440713\",\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;pstestrgdbbbe2ca;pstestvmdbbbe12\",\r\n \"sourceResourceId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Compute/virtualMachines/PSTestVMdbbbe12\",\r\n \"policyId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.RecoveryServices/vaults/PSTestRSVdbbbe2ca/backupPolicies/DefaultPolicy\",\r\n \"policyName\": \"DefaultPolicy\",\r\n \"isArchiveEnabled\": false\r\n }\r\n}", - "StatusCode": 200 + "ResponseBody": "", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.RecoveryServices/vaults/PSTestRSVdbbbe2ca/backupProtectedItems?$filter=backupManagementType%20eq%20'AzureIaasVM'%20and%20itemType%20eq%20'VM'%20and%20policyName%20eq%20'DefaultPolicy'&api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZGJiYmUyY2EvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZkYmJiZTJjYS9iYWNrdXBQcm90ZWN0ZWRJdGVtcz8kZmlsdGVyPWJhY2t1cE1hbmFnZW1lbnRUeXBlJTIwZXElMjAnQXp1cmVJYWFzVk0nJTIwYW5kJTIwaXRlbVR5cGUlMjBlcSUyMCdWTSclMjBhbmQlMjBwb2xpY3lOYW1lJTIwZXElMjAnRGVmYXVsdFBvbGljeScmYXBpLXZlcnNpb249MjAyMS0xMC0wMQ==", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.RecoveryServices/vaults/PSTestRSV9e387301/backupOperations/b92c2247-ea82-4f6a-8ec0-956ff6cab63b?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOWUzODczMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5ZTM4NzMwMS9iYWNrdXBPcGVyYXRpb25zL2I5MmMyMjQ3LWVhODItNGY2YS04ZWMwLTk1NmZmNmNhYjYzYj9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2b8ae6ee-a047-40ed-9227-0f2b47207441" + "6698e185-807e-4883-9b00-97569ea66115" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -8347,11 +8345,11 @@ "nosniff" ], "x-ms-request-id": [ - "7cb56bca-7238-414b-9b5e-72685c6e44f3" + "685dbfe8-5b89-4237-8be7-0358e1af1367" ], "x-ms-client-request-id": [ - "2b8ae6ee-a047-40ed-9227-0f2b47207441", - "2b8ae6ee-a047-40ed-9227-0f2b47207441" + "6698e185-807e-4883-9b00-97569ea66115", + "6698e185-807e-4883-9b00-97569ea66115" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -8363,19 +8361,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "139" + "141" ], "x-ms-correlation-request-id": [ - "7cb56bca-7238-414b-9b5e-72685c6e44f3" + "685dbfe8-5b89-4237-8be7-0358e1af1367" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T211435Z:7cb56bca-7238-414b-9b5e-72685c6e44f3" + "JIOINDIAWEST:20220517T041541Z:685dbfe8-5b89-4237-8be7-0358e1af1367" ], "Date": [ - "Thu, 24 Feb 2022 21:14:35 GMT" + "Tue, 17 May 2022 04:15:41 GMT" ], "Content-Length": [ - "2988" + "188" ], "Content-Type": [ "application/json" @@ -8384,26 +8382,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.RecoveryServices/vaults/PSTestRSVdbbbe2ca/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrgdbbbe2ca;pstestvmdbbbe12/protectedItems/VM;iaasvmcontainerv2;pstestrgdbbbe2ca;pstestvmdbbbe12\",\r\n \"name\": \"VM;iaasvmcontainerv2;pstestrgdbbbe2ca;pstestvmdbbbe12\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems\",\r\n \"properties\": {\r\n \"kpisHealths\": {},\r\n \"friendlyName\": \"PSTestVMdbbbe12\",\r\n \"virtualMachineId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Compute/virtualMachines/PSTestVMdbbbe12\",\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\": \"175923582440713\",\r\n \"protectedItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"workloadType\": \"VM\",\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgdbbbe2ca;pstestvmdbbbe12\",\r\n \"sourceResourceId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Compute/virtualMachines/PSTestVMdbbbe12\",\r\n \"policyId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.RecoveryServices/vaults/PSTestRSVdbbbe2ca/backupPolicies/DefaultPolicy\",\r\n \"policyName\": \"DefaultPolicy\",\r\n \"isArchiveEnabled\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.RecoveryServices/vaults/PSTestRSVdbbbe2ca/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrgdbbbe2ca;pstestvmdbbbe1/protectedItems/VM;iaasvmcontainerv2;pstestrgdbbbe2ca;pstestvmdbbbe1\",\r\n \"name\": \"VM;iaasvmcontainerv2;pstestrgdbbbe2ca;pstestvmdbbbe1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems\",\r\n \"properties\": {\r\n \"kpisHealths\": {},\r\n \"friendlyName\": \"PSTestVMdbbbe1\",\r\n \"virtualMachineId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Compute/virtualMachines/PSTestVMdbbbe1\",\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\": \"175923196429439\",\r\n \"protectedItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"workloadType\": \"VM\",\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgdbbbe2ca;pstestvmdbbbe1\",\r\n \"sourceResourceId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Compute/virtualMachines/PSTestVMdbbbe1\",\r\n \"policyId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.RecoveryServices/vaults/PSTestRSVdbbbe2ca/backupPolicies/DefaultPolicy\",\r\n \"policyName\": \"DefaultPolicy\",\r\n \"isArchiveEnabled\": false\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"b92c2247-ea82-4f6a-8ec0-956ff6cab63b\",\r\n \"name\": \"b92c2247-ea82-4f6a-8ec0-956ff6cab63b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T04:15:41.2673757Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.RecoveryServices/vaults?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZGJiYmUyY2EvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cz9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.RecoveryServices/vaults/PSTestRSV9e387301/backupOperations/b92c2247-ea82-4f6a-8ec0-956ff6cab63b?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOWUzODczMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5ZTM4NzMwMS9iYWNrdXBPcGVyYXRpb25zL2I5MmMyMjQ3LWVhODItNGY2YS04ZWMwLTk1NmZmNmNhYjYzYj9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "097e658b-229d-40a8-abea-8f1d65625edb" + "6698e185-807e-4883-9b00-97569ea66115" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesClient/4.3.2.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -8417,10 +8415,11 @@ "nosniff" ], "x-ms-request-id": [ - "c7a93192-c0c9-41d4-beff-7e3ae386f1b3" + "6bd08638-9881-4cf5-ad95-aae6ce837b13" ], "x-ms-client-request-id": [ - "097e658b-229d-40a8-abea-8f1d65625edb" + "6698e185-807e-4883-9b00-97569ea66115", + "6698e185-807e-4883-9b00-97569ea66115" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -8428,20 +8427,23 @@ "Server": [ "Microsoft-IIS/10.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "140" ], "x-ms-correlation-request-id": [ - "c7a93192-c0c9-41d4-beff-7e3ae386f1b3" + "6bd08638-9881-4cf5-ad95-aae6ce837b13" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T211437Z:c7a93192-c0c9-41d4-beff-7e3ae386f1b3" + "JIOINDIAWEST:20220517T041547Z:6bd08638-9881-4cf5-ad95-aae6ce837b13" ], "Date": [ - "Thu, 24 Feb 2022 21:14:37 GMT" + "Tue, 17 May 2022 04:15:46 GMT" ], "Content-Length": [ - "478" + "188" ], "Content-Type": [ "application/json" @@ -8450,26 +8452,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"PSTestRSVdbbbe2ca\",\r\n \"etag\": \"W/\\\"datetime'2022-02-24T21%3A12%3A50.2453378Z'\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateEndpointStateForBackup\": \"None\",\r\n \"privateEndpointStateForSiteRecovery\": \"None\"\r\n },\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.RecoveryServices/vaults/PSTestRSVdbbbe2ca\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"b92c2247-ea82-4f6a-8ec0-956ff6cab63b\",\r\n \"name\": \"b92c2247-ea82-4f6a-8ec0-956ff6cab63b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T04:15:41.2673757Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.RecoveryServices/vaults/PSTestRSVdbbbe2ca/backupProtectionContainers?$filter=backupManagementType%20eq%20'AzureIaasVM'%20and%20status%20eq%20'Registered'&api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZGJiYmUyY2EvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZkYmJiZTJjYS9iYWNrdXBQcm90ZWN0aW9uQ29udGFpbmVycz8kZmlsdGVyPWJhY2t1cE1hbmFnZW1lbnRUeXBlJTIwZXElMjAnQXp1cmVJYWFzVk0nJTIwYW5kJTIwc3RhdHVzJTIwZXElMjAnUmVnaXN0ZXJlZCcmYXBpLXZlcnNpb249MjAyMS0xMC0wMQ==", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.RecoveryServices/vaults/PSTestRSV9e387301/backupOperations/b92c2247-ea82-4f6a-8ec0-956ff6cab63b?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOWUzODczMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5ZTM4NzMwMS9iYWNrdXBPcGVyYXRpb25zL2I5MmMyMjQ3LWVhODItNGY2YS04ZWMwLTk1NmZmNmNhYjYzYj9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1df57f10-4059-4001-9f1f-3135a09c1aae" + "6698e185-807e-4883-9b00-97569ea66115" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -8483,11 +8485,11 @@ "nosniff" ], "x-ms-request-id": [ - "1c0f5a90-d08d-4401-94ce-88a8135330d1" + "1eea38fa-e6cc-4593-b940-607aaee8cb56" ], "x-ms-client-request-id": [ - "1df57f10-4059-4001-9f1f-3135a09c1aae", - "1df57f10-4059-4001-9f1f-3135a09c1aae" + "6698e185-807e-4883-9b00-97569ea66115", + "6698e185-807e-4883-9b00-97569ea66115" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -8499,19 +8501,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "144" + "139" ], "x-ms-correlation-request-id": [ - "1c0f5a90-d08d-4401-94ce-88a8135330d1" + "1eea38fa-e6cc-4593-b940-607aaee8cb56" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T211438Z:1c0f5a90-d08d-4401-94ce-88a8135330d1" + "JIOINDIAWEST:20220517T041552Z:1eea38fa-e6cc-4593-b940-607aaee8cb56" ], "Date": [ - "Thu, 24 Feb 2022 21:14:37 GMT" + "Tue, 17 May 2022 04:15:52 GMT" ], "Content-Length": [ - "1821" + "188" ], "Content-Type": [ "application/json" @@ -8520,26 +8522,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.RecoveryServices/vaults/PSTestRSVdbbbe2ca/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrgdbbbe2ca;pstestvmdbbbe1\",\r\n \"name\": \"IaasVMContainer;iaasvmcontainerv2;pstestrgdbbbe2ca;pstestvmdbbbe1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers\",\r\n \"properties\": {\r\n \"virtualMachineId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Compute/virtualMachines/PSTestVMdbbbe1\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"resourceGroup\": \"PSTestRGdbbbe2ca\",\r\n \"friendlyName\": \"PSTestVMdbbbe1\",\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 \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.RecoveryServices/vaults/PSTestRSVdbbbe2ca/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrgdbbbe2ca;pstestvmdbbbe12\",\r\n \"name\": \"IaasVMContainer;iaasvmcontainerv2;pstestrgdbbbe2ca;pstestvmdbbbe12\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers\",\r\n \"properties\": {\r\n \"virtualMachineId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.Compute/virtualMachines/PSTestVMdbbbe12\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"resourceGroup\": \"PSTestRGdbbbe2ca\",\r\n \"friendlyName\": \"PSTestVMdbbbe12\",\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}", + "ResponseBody": "{\r\n \"id\": \"b92c2247-ea82-4f6a-8ec0-956ff6cab63b\",\r\n \"name\": \"b92c2247-ea82-4f6a-8ec0-956ff6cab63b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T04:15:41.2673757Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.RecoveryServices/vaults/PSTestRSVdbbbe2ca/backupFabrics/Azure/protectionContainers/IaasVMContainer%3Biaasvmcontainerv2%3Bpstestrgdbbbe2ca%3Bpstestvmdbbbe1/protectedItems/VM%3Biaasvmcontainerv2%3Bpstestrgdbbbe2ca%3Bpstestvmdbbbe1/recoveryPoints?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZGJiYmUyY2EvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZkYmJiZTJjYS9iYWNrdXBGYWJyaWNzL0F6dXJlL3Byb3RlY3Rpb25Db250YWluZXJzL0lhYXNWTUNvbnRhaW5lciUzQmlhYXN2bWNvbnRhaW5lcnYyJTNCcHN0ZXN0cmdkYmJiZTJjYSUzQnBzdGVzdHZtZGJiYmUxL3Byb3RlY3RlZEl0ZW1zL1ZNJTNCaWFhc3ZtY29udGFpbmVydjIlM0Jwc3Rlc3RyZ2RiYmJlMmNhJTNCcHN0ZXN0dm1kYmJiZTEvcmVjb3ZlcnlQb2ludHM/YXBpLXZlcnNpb249MjAyMS0xMC0wMQ==", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.RecoveryServices/vaults/PSTestRSV9e387301/backupOperations/b92c2247-ea82-4f6a-8ec0-956ff6cab63b?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOWUzODczMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5ZTM4NzMwMS9iYWNrdXBPcGVyYXRpb25zL2I5MmMyMjQ3LWVhODItNGY2YS04ZWMwLTk1NmZmNmNhYjYzYj9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9ecd3f98-01d5-4d92-a67c-1915e59b521f" + "6698e185-807e-4883-9b00-97569ea66115" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -8553,11 +8555,11 @@ "nosniff" ], "x-ms-request-id": [ - "5a2e6b3b-ebab-4d7f-ba1b-5f575981a877" + "7d3a2a3c-73fb-4d46-813c-42b00ab39140" ], "x-ms-client-request-id": [ - "9ecd3f98-01d5-4d92-a67c-1915e59b521f", - "9ecd3f98-01d5-4d92-a67c-1915e59b521f" + "6698e185-807e-4883-9b00-97569ea66115", + "6698e185-807e-4883-9b00-97569ea66115" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -8569,19 +8571,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "149" + "138" ], "x-ms-correlation-request-id": [ - "5a2e6b3b-ebab-4d7f-ba1b-5f575981a877" + "7d3a2a3c-73fb-4d46-813c-42b00ab39140" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T211439Z:5a2e6b3b-ebab-4d7f-ba1b-5f575981a877" + "JIOINDIAWEST:20220517T041558Z:7d3a2a3c-73fb-4d46-813c-42b00ab39140" ], "Date": [ - "Thu, 24 Feb 2022 21:14:38 GMT" + "Tue, 17 May 2022 04:15:57 GMT" ], "Content-Length": [ - "12" + "188" ], "Content-Type": [ "application/json" @@ -8590,26 +8592,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseBody": "{\r\n \"id\": \"b92c2247-ea82-4f6a-8ec0-956ff6cab63b\",\r\n \"name\": \"b92c2247-ea82-4f6a-8ec0-956ff6cab63b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T04:15:41.2673757Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.RecoveryServices/vaults/PSTestRSVdbbbe2ca/backupFabrics/Azure/protectionContainers/IaasVMContainer%3Biaasvmcontainerv2%3Bpstestrgdbbbe2ca%3Bpstestvmdbbbe1/protectedItems/VM%3Biaasvmcontainerv2%3Bpstestrgdbbbe2ca%3Bpstestvmdbbbe1?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZGJiYmUyY2EvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZkYmJiZTJjYS9iYWNrdXBGYWJyaWNzL0F6dXJlL3Byb3RlY3Rpb25Db250YWluZXJzL0lhYXNWTUNvbnRhaW5lciUzQmlhYXN2bWNvbnRhaW5lcnYyJTNCcHN0ZXN0cmdkYmJiZTJjYSUzQnBzdGVzdHZtZGJiYmUxL3Byb3RlY3RlZEl0ZW1zL1ZNJTNCaWFhc3ZtY29udGFpbmVydjIlM0Jwc3Rlc3RyZ2RiYmJlMmNhJTNCcHN0ZXN0dm1kYmJiZTE/YXBpLXZlcnNpb249MjAyMS0xMC0wMQ==", - "RequestMethod": "DELETE", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.RecoveryServices/vaults/PSTestRSV9e387301/backupOperations/b92c2247-ea82-4f6a-8ec0-956ff6cab63b?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOWUzODczMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5ZTM4NzMwMS9iYWNrdXBPcGVyYXRpb25zL2I5MmMyMjQ3LWVhODItNGY2YS04ZWMwLTk1NmZmNmNhYjYzYj9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9ecd3f98-01d5-4d92-a67c-1915e59b521f" + "6698e185-807e-4883-9b00-97569ea66115" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -8619,70 +8621,67 @@ "Pragma": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.RecoveryServices/vaults/PSTestRSVdbbbe2ca/backupOperationResults/37bdb8e5-381b-4f7b-a134-055045b39169?api-version=2021-10-01" - ], - "Retry-After": [ - "60" - ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.RecoveryServices/vaults/PSTestRSVdbbbe2ca/backupOperations/37bdb8e5-381b-4f7b-a134-055045b39169?api-version=2021-10-01" - ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "f9be6ace-e5df-4111-824c-017cd0a4e4c8" + "3c9dd1ae-8a24-4f94-bc0d-1d2965d19dfa" ], "x-ms-client-request-id": [ - "9ecd3f98-01d5-4d92-a67c-1915e59b521f", - "9ecd3f98-01d5-4d92-a67c-1915e59b521f" + "6698e185-807e-4883-9b00-97569ea66115", + "6698e185-807e-4883-9b00-97569ea66115" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-IIS/10.0" + ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ - "14999" + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "137" ], "x-ms-correlation-request-id": [ - "f9be6ace-e5df-4111-824c-017cd0a4e4c8" + "3c9dd1ae-8a24-4f94-bc0d-1d2965d19dfa" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T211439Z:f9be6ace-e5df-4111-824c-017cd0a4e4c8" + "JIOINDIAWEST:20220517T041603Z:3c9dd1ae-8a24-4f94-bc0d-1d2965d19dfa" ], "Date": [ - "Thu, 24 Feb 2022 21:14:39 GMT" + "Tue, 17 May 2022 04:16:03 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, - "ResponseBody": "", - "StatusCode": 202 + "ResponseBody": "{\r\n \"id\": \"b92c2247-ea82-4f6a-8ec0-956ff6cab63b\",\r\n \"name\": \"b92c2247-ea82-4f6a-8ec0-956ff6cab63b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T04:15:41.2673757Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.RecoveryServices/vaults/PSTestRSVdbbbe2ca/backupOperations/37bdb8e5-381b-4f7b-a134-055045b39169?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZGJiYmUyY2EvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZkYmJiZTJjYS9iYWNrdXBPcGVyYXRpb25zLzM3YmRiOGU1LTM4MWItNGY3Yi1hMTM0LTA1NTA0NWIzOTE2OT9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.RecoveryServices/vaults/PSTestRSV9e387301/backupOperations/b92c2247-ea82-4f6a-8ec0-956ff6cab63b?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOWUzODczMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5ZTM4NzMwMS9iYWNrdXBPcGVyYXRpb25zL2I5MmMyMjQ3LWVhODItNGY2YS04ZWMwLTk1NmZmNmNhYjYzYj9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9ecd3f98-01d5-4d92-a67c-1915e59b521f" + "6698e185-807e-4883-9b00-97569ea66115" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -8696,11 +8695,11 @@ "nosniff" ], "x-ms-request-id": [ - "287bea4c-fbb1-4217-a54f-f4ff1408dd69" + "0902af60-0875-4e1b-b01d-9a266527ad1a" ], "x-ms-client-request-id": [ - "9ecd3f98-01d5-4d92-a67c-1915e59b521f", - "9ecd3f98-01d5-4d92-a67c-1915e59b521f" + "6698e185-807e-4883-9b00-97569ea66115", + "6698e185-807e-4883-9b00-97569ea66115" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -8712,19 +8711,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "140" + "136" ], "x-ms-correlation-request-id": [ - "287bea4c-fbb1-4217-a54f-f4ff1408dd69" + "0902af60-0875-4e1b-b01d-9a266527ad1a" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T211440Z:287bea4c-fbb1-4217-a54f-f4ff1408dd69" + "JIOINDIAWEST:20220517T041609Z:0902af60-0875-4e1b-b01d-9a266527ad1a" ], "Date": [ - "Thu, 24 Feb 2022 21:14:39 GMT" + "Tue, 17 May 2022 04:16:08 GMT" ], "Content-Length": [ - "187" + "188" ], "Content-Type": [ "application/json" @@ -8733,26 +8732,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"37bdb8e5-381b-4f7b-a134-055045b39169\",\r\n \"name\": \"37bdb8e5-381b-4f7b-a134-055045b39169\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-24T21:14:39.773436Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"b92c2247-ea82-4f6a-8ec0-956ff6cab63b\",\r\n \"name\": \"b92c2247-ea82-4f6a-8ec0-956ff6cab63b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T04:15:41.2673757Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.RecoveryServices/vaults/PSTestRSVdbbbe2ca/backupOperations/37bdb8e5-381b-4f7b-a134-055045b39169?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZGJiYmUyY2EvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZkYmJiZTJjYS9iYWNrdXBPcGVyYXRpb25zLzM3YmRiOGU1LTM4MWItNGY3Yi1hMTM0LTA1NTA0NWIzOTE2OT9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.RecoveryServices/vaults/PSTestRSV9e387301/backupOperations/b92c2247-ea82-4f6a-8ec0-956ff6cab63b?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOWUzODczMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5ZTM4NzMwMS9iYWNrdXBPcGVyYXRpb25zL2I5MmMyMjQ3LWVhODItNGY2YS04ZWMwLTk1NmZmNmNhYjYzYj9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9ecd3f98-01d5-4d92-a67c-1915e59b521f" + "6698e185-807e-4883-9b00-97569ea66115" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -8766,11 +8765,11 @@ "nosniff" ], "x-ms-request-id": [ - "b73c789d-aa2c-45cb-9504-3c9696553fa6" + "cf13a3f2-6acc-4cf1-b535-d067f30e9f01" ], "x-ms-client-request-id": [ - "9ecd3f98-01d5-4d92-a67c-1915e59b521f", - "9ecd3f98-01d5-4d92-a67c-1915e59b521f" + "6698e185-807e-4883-9b00-97569ea66115", + "6698e185-807e-4883-9b00-97569ea66115" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -8782,19 +8781,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "139" + "135" ], "x-ms-correlation-request-id": [ - "b73c789d-aa2c-45cb-9504-3c9696553fa6" + "cf13a3f2-6acc-4cf1-b535-d067f30e9f01" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T211451Z:b73c789d-aa2c-45cb-9504-3c9696553fa6" + "JIOINDIAWEST:20220517T041614Z:cf13a3f2-6acc-4cf1-b535-d067f30e9f01" ], "Date": [ - "Thu, 24 Feb 2022 21:14:50 GMT" + "Tue, 17 May 2022 04:16:14 GMT" ], "Content-Length": [ - "187" + "188" ], "Content-Type": [ "application/json" @@ -8803,26 +8802,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"37bdb8e5-381b-4f7b-a134-055045b39169\",\r\n \"name\": \"37bdb8e5-381b-4f7b-a134-055045b39169\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-24T21:14:39.773436Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"b92c2247-ea82-4f6a-8ec0-956ff6cab63b\",\r\n \"name\": \"b92c2247-ea82-4f6a-8ec0-956ff6cab63b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T04:15:41.2673757Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.RecoveryServices/vaults/PSTestRSVdbbbe2ca/backupOperations/37bdb8e5-381b-4f7b-a134-055045b39169?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZGJiYmUyY2EvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZkYmJiZTJjYS9iYWNrdXBPcGVyYXRpb25zLzM3YmRiOGU1LTM4MWItNGY3Yi1hMTM0LTA1NTA0NWIzOTE2OT9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.RecoveryServices/vaults/PSTestRSV9e387301/backupOperations/b92c2247-ea82-4f6a-8ec0-956ff6cab63b?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOWUzODczMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5ZTM4NzMwMS9iYWNrdXBPcGVyYXRpb25zL2I5MmMyMjQ3LWVhODItNGY2YS04ZWMwLTk1NmZmNmNhYjYzYj9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9ecd3f98-01d5-4d92-a67c-1915e59b521f" + "6698e185-807e-4883-9b00-97569ea66115" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -8836,11 +8835,11 @@ "nosniff" ], "x-ms-request-id": [ - "a9534e46-5020-411f-9b73-f2548df16485" + "84703769-f697-4a8d-8755-2db161f42073" ], "x-ms-client-request-id": [ - "9ecd3f98-01d5-4d92-a67c-1915e59b521f", - "9ecd3f98-01d5-4d92-a67c-1915e59b521f" + "6698e185-807e-4883-9b00-97569ea66115", + "6698e185-807e-4883-9b00-97569ea66115" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -8852,19 +8851,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "138" + "134" ], "x-ms-correlation-request-id": [ - "a9534e46-5020-411f-9b73-f2548df16485" + "84703769-f697-4a8d-8755-2db161f42073" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T211501Z:a9534e46-5020-411f-9b73-f2548df16485" + "JIOINDIAWEST:20220517T041620Z:84703769-f697-4a8d-8755-2db161f42073" ], "Date": [ - "Thu, 24 Feb 2022 21:15:01 GMT" + "Tue, 17 May 2022 04:16:19 GMT" ], "Content-Length": [ - "187" + "188" ], "Content-Type": [ "application/json" @@ -8873,26 +8872,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"37bdb8e5-381b-4f7b-a134-055045b39169\",\r\n \"name\": \"37bdb8e5-381b-4f7b-a134-055045b39169\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-24T21:14:39.773436Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"b92c2247-ea82-4f6a-8ec0-956ff6cab63b\",\r\n \"name\": \"b92c2247-ea82-4f6a-8ec0-956ff6cab63b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T04:15:41.2673757Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.RecoveryServices/vaults/PSTestRSVdbbbe2ca/backupOperations/37bdb8e5-381b-4f7b-a134-055045b39169?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZGJiYmUyY2EvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZkYmJiZTJjYS9iYWNrdXBPcGVyYXRpb25zLzM3YmRiOGU1LTM4MWItNGY3Yi1hMTM0LTA1NTA0NWIzOTE2OT9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.RecoveryServices/vaults/PSTestRSV9e387301/backupOperations/b92c2247-ea82-4f6a-8ec0-956ff6cab63b?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOWUzODczMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5ZTM4NzMwMS9iYWNrdXBPcGVyYXRpb25zL2I5MmMyMjQ3LWVhODItNGY2YS04ZWMwLTk1NmZmNmNhYjYzYj9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9ecd3f98-01d5-4d92-a67c-1915e59b521f" + "6698e185-807e-4883-9b00-97569ea66115" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -8906,11 +8905,11 @@ "nosniff" ], "x-ms-request-id": [ - "a82bb12f-ef6d-47f5-b113-8d5cbc9e2b79" + "ec9b7326-2e4e-4727-99e6-947dc45d53d6" ], "x-ms-client-request-id": [ - "9ecd3f98-01d5-4d92-a67c-1915e59b521f", - "9ecd3f98-01d5-4d92-a67c-1915e59b521f" + "6698e185-807e-4883-9b00-97569ea66115", + "6698e185-807e-4883-9b00-97569ea66115" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -8922,19 +8921,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "137" + "133" ], "x-ms-correlation-request-id": [ - "a82bb12f-ef6d-47f5-b113-8d5cbc9e2b79" + "ec9b7326-2e4e-4727-99e6-947dc45d53d6" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T211512Z:a82bb12f-ef6d-47f5-b113-8d5cbc9e2b79" + "JIOINDIAWEST:20220517T041625Z:ec9b7326-2e4e-4727-99e6-947dc45d53d6" ], "Date": [ - "Thu, 24 Feb 2022 21:15:11 GMT" + "Tue, 17 May 2022 04:16:25 GMT" ], "Content-Length": [ - "187" + "304" ], "Content-Type": [ "application/json" @@ -8943,26 +8942,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"37bdb8e5-381b-4f7b-a134-055045b39169\",\r\n \"name\": \"37bdb8e5-381b-4f7b-a134-055045b39169\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-24T21:14:39.773436Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"b92c2247-ea82-4f6a-8ec0-956ff6cab63b\",\r\n \"name\": \"b92c2247-ea82-4f6a-8ec0-956ff6cab63b\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-05-17T04:15:41.2673757Z\",\r\n \"endTime\": \"2022-05-17T04:15:41.2673757Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"dba0877f-3b9b-463c-915c-e9c80e8ac6b2\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.RecoveryServices/vaults/PSTestRSVdbbbe2ca/backupOperations/37bdb8e5-381b-4f7b-a134-055045b39169?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZGJiYmUyY2EvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZkYmJiZTJjYS9iYWNrdXBPcGVyYXRpb25zLzM3YmRiOGU1LTM4MWItNGY3Yi1hMTM0LTA1NTA0NWIzOTE2OT9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.RecoveryServices/vaults/PSTestRSV9e387301/backupOperations/b92c2247-ea82-4f6a-8ec0-956ff6cab63b?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOWUzODczMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5ZTM4NzMwMS9iYWNrdXBPcGVyYXRpb25zL2I5MmMyMjQ3LWVhODItNGY2YS04ZWMwLTk1NmZmNmNhYjYzYj9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9ecd3f98-01d5-4d92-a67c-1915e59b521f" + "6698e185-807e-4883-9b00-97569ea66115" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -8976,11 +8975,11 @@ "nosniff" ], "x-ms-request-id": [ - "b597d10c-0b32-48c3-a727-5ffab677f4d6" + "9da7daf9-12b1-4f26-aa60-700ed6f188c5" ], "x-ms-client-request-id": [ - "9ecd3f98-01d5-4d92-a67c-1915e59b521f", - "9ecd3f98-01d5-4d92-a67c-1915e59b521f" + "6698e185-807e-4883-9b00-97569ea66115", + "6698e185-807e-4883-9b00-97569ea66115" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -8992,19 +8991,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "136" + "132" ], "x-ms-correlation-request-id": [ - "b597d10c-0b32-48c3-a727-5ffab677f4d6" + "9da7daf9-12b1-4f26-aa60-700ed6f188c5" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T211523Z:b597d10c-0b32-48c3-a727-5ffab677f4d6" + "JIOINDIAWEST:20220517T041626Z:9da7daf9-12b1-4f26-aa60-700ed6f188c5" ], "Date": [ - "Thu, 24 Feb 2022 21:15:22 GMT" + "Tue, 17 May 2022 04:16:25 GMT" ], "Content-Length": [ - "187" + "304" ], "Content-Type": [ "application/json" @@ -9013,26 +9012,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"37bdb8e5-381b-4f7b-a134-055045b39169\",\r\n \"name\": \"37bdb8e5-381b-4f7b-a134-055045b39169\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-24T21:14:39.773436Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"b92c2247-ea82-4f6a-8ec0-956ff6cab63b\",\r\n \"name\": \"b92c2247-ea82-4f6a-8ec0-956ff6cab63b\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-05-17T04:15:41.2673757Z\",\r\n \"endTime\": \"2022-05-17T04:15:41.2673757Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"dba0877f-3b9b-463c-915c-e9c80e8ac6b2\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.RecoveryServices/vaults/PSTestRSVdbbbe2ca/backupOperations/37bdb8e5-381b-4f7b-a134-055045b39169?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZGJiYmUyY2EvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZkYmJiZTJjYS9iYWNrdXBPcGVyYXRpb25zLzM3YmRiOGU1LTM4MWItNGY3Yi1hMTM0LTA1NTA0NWIzOTE2OT9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.RecoveryServices/vaults/PSTestRSV9e387301/backupJobs/dba0877f-3b9b-463c-915c-e9c80e8ac6b2?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOWUzODczMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5ZTM4NzMwMS9iYWNrdXBKb2JzL2RiYTA4NzdmLTNiOWItNDYzYy05MTVjLWU5YzgwZThhYzZiMj9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9ecd3f98-01d5-4d92-a67c-1915e59b521f" + "6698e185-807e-4883-9b00-97569ea66115" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -9042,39 +9041,40 @@ "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-IIS/10.0", + "Microsoft-IIS/10.0" + ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "b84e25f6-5668-414d-87aa-d178af8c2f62" + "81318f9b-a84f-4300-b011-6596d21ad086" ], "x-ms-client-request-id": [ - "9ecd3f98-01d5-4d92-a67c-1915e59b521f", - "9ecd3f98-01d5-4d92-a67c-1915e59b521f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-IIS/10.0" + "6698e185-807e-4883-9b00-97569ea66115", + "6698e185-807e-4883-9b00-97569ea66115" ], "X-Powered-By": [ "ASP.NET" ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "135" + "148" ], "x-ms-correlation-request-id": [ - "b84e25f6-5668-414d-87aa-d178af8c2f62" + "81318f9b-a84f-4300-b011-6596d21ad086" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T211533Z:b84e25f6-5668-414d-87aa-d178af8c2f62" + "JIOINDIAWEST:20220517T041626Z:81318f9b-a84f-4300-b011-6596d21ad086" ], "Date": [ - "Thu, 24 Feb 2022 21:15:33 GMT" + "Tue, 17 May 2022 04:16:26 GMT" ], "Content-Length": [ - "187" + "842" ], "Content-Type": [ "application/json" @@ -9083,26 +9083,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"37bdb8e5-381b-4f7b-a134-055045b39169\",\r\n \"name\": \"37bdb8e5-381b-4f7b-a134-055045b39169\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-24T21:14:39.773436Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.RecoveryServices/vaults/PSTestRSV9e387301/backupJobs/dba0877f-3b9b-463c-915c-e9c80e8ac6b2\",\r\n \"name\": \"dba0877f-3b9b-463c-915c-e9c80e8ac6b2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg9e387301;pstestvm9e38712\",\r\n \"duration\": \"PT41.2084423S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm9e38712\",\r\n \"Policy Name\": \"DefaultPolicy\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm9e38712\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"ConfigureBackup\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-05-17T04:15:41.2673757Z\",\r\n \"endTime\": \"2022-05-17T04:16:22.475818Z\",\r\n \"activityId\": \"6698e185-807e-4883-9b00-97569ea66115\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.RecoveryServices/vaults/PSTestRSVdbbbe2ca/backupOperations/37bdb8e5-381b-4f7b-a134-055045b39169?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZGJiYmUyY2EvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZkYmJiZTJjYS9iYWNrdXBPcGVyYXRpb25zLzM3YmRiOGU1LTM4MWItNGY3Yi1hMTM0LTA1NTA0NWIzOTE2OT9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.RecoveryServices/vaults/PSTestRSV9e387301/backupFabrics/Azure/protectionContainers/IaasVMContainer%3Biaasvmcontainerv2%3Bpstestrg9e387301%3Bpstestvm9e38712/protectedItems/VM%3Biaasvmcontainerv2%3Bpstestrg9e387301%3Bpstestvm9e38712?$filter=expand%20eq%20'extendedinfo'&api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOWUzODczMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5ZTM4NzMwMS9iYWNrdXBGYWJyaWNzL0F6dXJlL3Byb3RlY3Rpb25Db250YWluZXJzL0lhYXNWTUNvbnRhaW5lciUzQmlhYXN2bWNvbnRhaW5lcnYyJTNCcHN0ZXN0cmc5ZTM4NzMwMSUzQnBzdGVzdHZtOWUzODcxMi9wcm90ZWN0ZWRJdGVtcy9WTSUzQmlhYXN2bWNvbnRhaW5lcnYyJTNCcHN0ZXN0cmc5ZTM4NzMwMSUzQnBzdGVzdHZtOWUzODcxMj8kZmlsdGVyPWV4cGFuZCUyMGVxJTIwJ2V4dGVuZGVkaW5mbycmYXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9ecd3f98-01d5-4d92-a67c-1915e59b521f" + "f2246cd3-8f2b-4e24-b2c3-77a3648f1e8c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -9116,11 +9116,11 @@ "nosniff" ], "x-ms-request-id": [ - "9dd729c6-aca4-4b4f-b8ac-5d195460487d" + "6dd4c299-e1d7-4001-9868-63780cf7e248" ], "x-ms-client-request-id": [ - "9ecd3f98-01d5-4d92-a67c-1915e59b521f", - "9ecd3f98-01d5-4d92-a67c-1915e59b521f" + "f2246cd3-8f2b-4e24-b2c3-77a3648f1e8c", + "f2246cd3-8f2b-4e24-b2c3-77a3648f1e8c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -9132,19 +9132,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "134" + "148" ], "x-ms-correlation-request-id": [ - "9dd729c6-aca4-4b4f-b8ac-5d195460487d" + "6dd4c299-e1d7-4001-9868-63780cf7e248" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T211556Z:9dd729c6-aca4-4b4f-b8ac-5d195460487d" + "JIOINDIAWEST:20220517T041628Z:6dd4c299-e1d7-4001-9868-63780cf7e248" ], "Date": [ - "Thu, 24 Feb 2022 21:15:56 GMT" + "Tue, 17 May 2022 04:16:27 GMT" ], "Content-Length": [ - "187" + "1557" ], "Content-Type": [ "application/json" @@ -9153,26 +9153,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"37bdb8e5-381b-4f7b-a134-055045b39169\",\r\n \"name\": \"37bdb8e5-381b-4f7b-a134-055045b39169\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-24T21:14:39.773436Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.RecoveryServices/vaults/PSTestRSV9e387301/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrg9e387301;pstestvm9e38712/protectedItems/VM;iaasvmcontainerv2;pstestrg9e387301;pstestvm9e38712\",\r\n \"name\": \"VM;iaasvmcontainerv2;pstestrg9e387301;pstestvm9e38712\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems\",\r\n \"properties\": {\r\n \"kpisHealths\": {},\r\n \"friendlyName\": \"PSTestVM9e38712\",\r\n \"virtualMachineId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.Compute/virtualMachines/PSTestVM9e38712\",\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\": \"17592535165370\",\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;pstestrg9e387301;pstestvm9e38712\",\r\n \"sourceResourceId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.Compute/virtualMachines/PSTestVM9e38712\",\r\n \"policyId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.RecoveryServices/vaults/PSTestRSV9e387301/backupPolicies/DefaultPolicy\",\r\n \"policyName\": \"DefaultPolicy\",\r\n \"isArchiveEnabled\": false\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.RecoveryServices/vaults/PSTestRSVdbbbe2ca/backupOperations/37bdb8e5-381b-4f7b-a134-055045b39169?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZGJiYmUyY2EvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZkYmJiZTJjYS9iYWNrdXBPcGVyYXRpb25zLzM3YmRiOGU1LTM4MWItNGY3Yi1hMTM0LTA1NTA0NWIzOTE2OT9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.RecoveryServices/vaults/PSTestRSV9e387301/backupProtectedItems?$filter=backupManagementType%20eq%20'AzureIaasVM'%20and%20itemType%20eq%20'VM'%20and%20policyName%20eq%20'DefaultPolicy'&api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOWUzODczMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5ZTM4NzMwMS9iYWNrdXBQcm90ZWN0ZWRJdGVtcz8kZmlsdGVyPWJhY2t1cE1hbmFnZW1lbnRUeXBlJTIwZXElMjAnQXp1cmVJYWFzVk0nJTIwYW5kJTIwaXRlbVR5cGUlMjBlcSUyMCdWTSclMjBhbmQlMjBwb2xpY3lOYW1lJTIwZXElMjAnRGVmYXVsdFBvbGljeScmYXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9ecd3f98-01d5-4d92-a67c-1915e59b521f" + "e6e4865b-45a8-48bb-ae82-e1a0374cc7a5" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -9186,11 +9186,11 @@ "nosniff" ], "x-ms-request-id": [ - "0f8c685a-c707-44f7-89ab-ee5d76aea25b" + "b5d1a28c-d079-4a18-909d-2b7069874df2" ], "x-ms-client-request-id": [ - "9ecd3f98-01d5-4d92-a67c-1915e59b521f", - "9ecd3f98-01d5-4d92-a67c-1915e59b521f" + "e6e4865b-45a8-48bb-ae82-e1a0374cc7a5", + "e6e4865b-45a8-48bb-ae82-e1a0374cc7a5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -9202,19 +9202,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "133" + "139" ], "x-ms-correlation-request-id": [ - "0f8c685a-c707-44f7-89ab-ee5d76aea25b" + "b5d1a28c-d079-4a18-909d-2b7069874df2" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T211607Z:0f8c685a-c707-44f7-89ab-ee5d76aea25b" + "JIOINDIAWEST:20220517T041635Z:b5d1a28c-d079-4a18-909d-2b7069874df2" ], "Date": [ - "Thu, 24 Feb 2022 21:16:06 GMT" + "Tue, 17 May 2022 04:16:34 GMT" ], "Content-Length": [ - "187" + "2986" ], "Content-Type": [ "application/json" @@ -9223,26 +9223,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"37bdb8e5-381b-4f7b-a134-055045b39169\",\r\n \"name\": \"37bdb8e5-381b-4f7b-a134-055045b39169\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-24T21:14:39.773436Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.RecoveryServices/vaults/PSTestRSV9e387301/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrg9e387301;pstestvm9e38712/protectedItems/VM;iaasvmcontainerv2;pstestrg9e387301;pstestvm9e38712\",\r\n \"name\": \"VM;iaasvmcontainerv2;pstestrg9e387301;pstestvm9e38712\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems\",\r\n \"properties\": {\r\n \"kpisHealths\": {},\r\n \"friendlyName\": \"PSTestVM9e38712\",\r\n \"virtualMachineId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.Compute/virtualMachines/PSTestVM9e38712\",\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\": \"17592535165370\",\r\n \"protectedItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"workloadType\": \"VM\",\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg9e387301;pstestvm9e38712\",\r\n \"sourceResourceId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.Compute/virtualMachines/PSTestVM9e38712\",\r\n \"policyId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.RecoveryServices/vaults/PSTestRSV9e387301/backupPolicies/DefaultPolicy\",\r\n \"policyName\": \"DefaultPolicy\",\r\n \"isArchiveEnabled\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.RecoveryServices/vaults/PSTestRSV9e387301/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrg9e387301;pstestvm9e3871/protectedItems/VM;iaasvmcontainerv2;pstestrg9e387301;pstestvm9e3871\",\r\n \"name\": \"VM;iaasvmcontainerv2;pstestrg9e387301;pstestvm9e3871\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems\",\r\n \"properties\": {\r\n \"kpisHealths\": {},\r\n \"friendlyName\": \"PSTestVM9e3871\",\r\n \"virtualMachineId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.Compute/virtualMachines/PSTestVM9e3871\",\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\": \"17593768254886\",\r\n \"protectedItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"workloadType\": \"VM\",\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg9e387301;pstestvm9e3871\",\r\n \"sourceResourceId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.Compute/virtualMachines/PSTestVM9e3871\",\r\n \"policyId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.RecoveryServices/vaults/PSTestRSV9e387301/backupPolicies/DefaultPolicy\",\r\n \"policyName\": \"DefaultPolicy\",\r\n \"isArchiveEnabled\": false\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.RecoveryServices/vaults/PSTestRSVdbbbe2ca/backupOperations/37bdb8e5-381b-4f7b-a134-055045b39169?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZGJiYmUyY2EvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZkYmJiZTJjYS9iYWNrdXBPcGVyYXRpb25zLzM3YmRiOGU1LTM4MWItNGY3Yi1hMTM0LTA1NTA0NWIzOTE2OT9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.RecoveryServices/vaults?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOWUzODczMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cz9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9ecd3f98-01d5-4d92-a67c-1915e59b521f" + "6dc1cea1-06f8-43ef-8cfd-df7255309fcd" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesClient/4.3.2.0" ] }, "ResponseHeaders": { @@ -9256,11 +9256,10 @@ "nosniff" ], "x-ms-request-id": [ - "020931e7-b125-4c77-986d-96b9828d24ef" + "96cfd29b-9e7c-4e0c-a738-deb82f124f47" ], "x-ms-client-request-id": [ - "9ecd3f98-01d5-4d92-a67c-1915e59b521f", - "9ecd3f98-01d5-4d92-a67c-1915e59b521f" + "6dc1cea1-06f8-43ef-8cfd-df7255309fcd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -9268,23 +9267,20 @@ "Server": [ "Microsoft-IIS/10.0" ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "132" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" ], "x-ms-correlation-request-id": [ - "020931e7-b125-4c77-986d-96b9828d24ef" + "96cfd29b-9e7c-4e0c-a738-deb82f124f47" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T211617Z:020931e7-b125-4c77-986d-96b9828d24ef" + "JIOINDIAWEST:20220517T041636Z:96cfd29b-9e7c-4e0c-a738-deb82f124f47" ], "Date": [ - "Thu, 24 Feb 2022 21:16:16 GMT" + "Tue, 17 May 2022 04:16:35 GMT" ], "Content-Length": [ - "187" + "530" ], "Content-Type": [ "application/json" @@ -9293,26 +9289,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"37bdb8e5-381b-4f7b-a134-055045b39169\",\r\n \"name\": \"37bdb8e5-381b-4f7b-a134-055045b39169\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-24T21:14:39.773436Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"PSTestRSV9e387301\",\r\n \"etag\": \"W/\\\"datetime'2022-05-17T04%3A14%3A43.6770411Z'\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateEndpointStateForBackup\": \"None\",\r\n \"privateEndpointStateForSiteRecovery\": \"None\",\r\n \"networkSettings\": {\r\n \"publicNetworkAccess\": \"Enabled\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.RecoveryServices/vaults/PSTestRSV9e387301\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.RecoveryServices/vaults/PSTestRSVdbbbe2ca/backupOperations/37bdb8e5-381b-4f7b-a134-055045b39169?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZGJiYmUyY2EvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZkYmJiZTJjYS9iYWNrdXBPcGVyYXRpb25zLzM3YmRiOGU1LTM4MWItNGY3Yi1hMTM0LTA1NTA0NWIzOTE2OT9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.RecoveryServices/vaults/PSTestRSV9e387301/backupProtectionContainers?$filter=backupManagementType%20eq%20'AzureIaasVM'%20and%20status%20eq%20'Registered'&api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOWUzODczMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5ZTM4NzMwMS9iYWNrdXBQcm90ZWN0aW9uQ29udGFpbmVycz8kZmlsdGVyPWJhY2t1cE1hbmFnZW1lbnRUeXBlJTIwZXElMjAnQXp1cmVJYWFzVk0nJTIwYW5kJTIwc3RhdHVzJTIwZXElMjAnUmVnaXN0ZXJlZCcmYXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9ecd3f98-01d5-4d92-a67c-1915e59b521f" + "97c1b793-2b74-49b5-86ba-9524b3ebb65b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -9326,11 +9322,11 @@ "nosniff" ], "x-ms-request-id": [ - "a8143bdd-d934-4aa1-b852-ecf91405d9ed" + "ab04b4a1-4eb1-423f-a5d9-322e497e6615" ], "x-ms-client-request-id": [ - "9ecd3f98-01d5-4d92-a67c-1915e59b521f", - "9ecd3f98-01d5-4d92-a67c-1915e59b521f" + "97c1b793-2b74-49b5-86ba-9524b3ebb65b", + "97c1b793-2b74-49b5-86ba-9524b3ebb65b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -9342,19 +9338,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "131" + "144" ], "x-ms-correlation-request-id": [ - "a8143bdd-d934-4aa1-b852-ecf91405d9ed" + "ab04b4a1-4eb1-423f-a5d9-322e497e6615" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T211628Z:a8143bdd-d934-4aa1-b852-ecf91405d9ed" + "JIOINDIAWEST:20220517T041636Z:ab04b4a1-4eb1-423f-a5d9-322e497e6615" ], "Date": [ - "Thu, 24 Feb 2022 21:16:27 GMT" + "Tue, 17 May 2022 04:16:36 GMT" ], "Content-Length": [ - "187" + "1821" ], "Content-Type": [ "application/json" @@ -9363,26 +9359,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"37bdb8e5-381b-4f7b-a134-055045b39169\",\r\n \"name\": \"37bdb8e5-381b-4f7b-a134-055045b39169\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-24T21:14:39.773436Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.RecoveryServices/vaults/PSTestRSV9e387301/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrg9e387301;pstestvm9e3871\",\r\n \"name\": \"IaasVMContainer;iaasvmcontainerv2;pstestrg9e387301;pstestvm9e3871\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers\",\r\n \"properties\": {\r\n \"virtualMachineId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.Compute/virtualMachines/PSTestVM9e3871\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"resourceGroup\": \"PSTestRG9e387301\",\r\n \"friendlyName\": \"PSTestVM9e3871\",\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 \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.RecoveryServices/vaults/PSTestRSV9e387301/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrg9e387301;pstestvm9e38712\",\r\n \"name\": \"IaasVMContainer;iaasvmcontainerv2;pstestrg9e387301;pstestvm9e38712\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers\",\r\n \"properties\": {\r\n \"virtualMachineId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.Compute/virtualMachines/PSTestVM9e38712\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"resourceGroup\": \"PSTestRG9e387301\",\r\n \"friendlyName\": \"PSTestVM9e38712\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.RecoveryServices/vaults/PSTestRSVdbbbe2ca/backupOperations/37bdb8e5-381b-4f7b-a134-055045b39169?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZGJiYmUyY2EvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZkYmJiZTJjYS9iYWNrdXBPcGVyYXRpb25zLzM3YmRiOGU1LTM4MWItNGY3Yi1hMTM0LTA1NTA0NWIzOTE2OT9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.RecoveryServices/vaults/PSTestRSV9e387301/backupFabrics/Azure/protectionContainers/IaasVMContainer%3Biaasvmcontainerv2%3Bpstestrg9e387301%3Bpstestvm9e3871/protectedItems/VM%3Biaasvmcontainerv2%3Bpstestrg9e387301%3Bpstestvm9e3871/recoveryPoints?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOWUzODczMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5ZTM4NzMwMS9iYWNrdXBGYWJyaWNzL0F6dXJlL3Byb3RlY3Rpb25Db250YWluZXJzL0lhYXNWTUNvbnRhaW5lciUzQmlhYXN2bWNvbnRhaW5lcnYyJTNCcHN0ZXN0cmc5ZTM4NzMwMSUzQnBzdGVzdHZtOWUzODcxL3Byb3RlY3RlZEl0ZW1zL1ZNJTNCaWFhc3ZtY29udGFpbmVydjIlM0Jwc3Rlc3RyZzllMzg3MzAxJTNCcHN0ZXN0dm05ZTM4NzEvcmVjb3ZlcnlQb2ludHM/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9ecd3f98-01d5-4d92-a67c-1915e59b521f" + "487144d1-36fd-4605-8b49-ca0db60fe44d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -9396,11 +9392,11 @@ "nosniff" ], "x-ms-request-id": [ - "145396a8-20ef-41b3-8a27-ffa69d6dbec5" + "8f85ec49-a6d1-41bc-9488-ab836e89ac3f" ], "x-ms-client-request-id": [ - "9ecd3f98-01d5-4d92-a67c-1915e59b521f", - "9ecd3f98-01d5-4d92-a67c-1915e59b521f" + "487144d1-36fd-4605-8b49-ca0db60fe44d", + "487144d1-36fd-4605-8b49-ca0db60fe44d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -9412,19 +9408,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "130" + "149" ], "x-ms-correlation-request-id": [ - "145396a8-20ef-41b3-8a27-ffa69d6dbec5" + "8f85ec49-a6d1-41bc-9488-ab836e89ac3f" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T211638Z:145396a8-20ef-41b3-8a27-ffa69d6dbec5" + "JIOINDIAWEST:20220517T041637Z:8f85ec49-a6d1-41bc-9488-ab836e89ac3f" ], "Date": [ - "Thu, 24 Feb 2022 21:16:38 GMT" + "Tue, 17 May 2022 04:16:36 GMT" ], "Content-Length": [ - "302" + "12" ], "Content-Type": [ "application/json" @@ -9433,26 +9429,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"37bdb8e5-381b-4f7b-a134-055045b39169\",\r\n \"name\": \"37bdb8e5-381b-4f7b-a134-055045b39169\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-02-24T21:14:39.773436Z\",\r\n \"endTime\": \"2022-02-24T21:14:39.773436Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"782275dd-5f03-452e-afcb-bb3fb6764176\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": []\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.RecoveryServices/vaults/PSTestRSVdbbbe2ca/backupOperations/37bdb8e5-381b-4f7b-a134-055045b39169?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZGJiYmUyY2EvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZkYmJiZTJjYS9iYWNrdXBPcGVyYXRpb25zLzM3YmRiOGU1LTM4MWItNGY3Yi1hMTM0LTA1NTA0NWIzOTE2OT9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", - "RequestMethod": "GET", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.RecoveryServices/vaults/PSTestRSV9e387301/backupFabrics/Azure/protectionContainers/IaasVMContainer%3Biaasvmcontainerv2%3Bpstestrg9e387301%3Bpstestvm9e3871/protectedItems/VM%3Biaasvmcontainerv2%3Bpstestrg9e387301%3Bpstestvm9e3871?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOWUzODczMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5ZTM4NzMwMS9iYWNrdXBGYWJyaWNzL0F6dXJlL3Byb3RlY3Rpb25Db250YWluZXJzL0lhYXNWTUNvbnRhaW5lciUzQmlhYXN2bWNvbnRhaW5lcnYyJTNCcHN0ZXN0cmc5ZTM4NzMwMSUzQnBzdGVzdHZtOWUzODcxL3Byb3RlY3RlZEl0ZW1zL1ZNJTNCaWFhc3ZtY29udGFpbmVydjIlM0Jwc3Rlc3RyZzllMzg3MzAxJTNCcHN0ZXN0dm05ZTM4NzE/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9ecd3f98-01d5-4d92-a67c-1915e59b521f" + "487144d1-36fd-4605-8b49-ca0db60fe44d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -9462,67 +9458,70 @@ "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.RecoveryServices/vaults/PSTestRSV9e387301/backupOperationResults/eaa76005-707c-4905-9eec-34721382e7c9?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.RecoveryServices/vaults/PSTestRSV9e387301/backupOperations/eaa76005-707c-4905-9eec-34721382e7c9?api-version=2022-02-01" + ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "37796b3e-4933-4d20-ada2-ecdd9a5f389c" + "f34913bb-73f4-4bcf-9233-aa57a9e7c02e" ], "x-ms-client-request-id": [ - "9ecd3f98-01d5-4d92-a67c-1915e59b521f", - "9ecd3f98-01d5-4d92-a67c-1915e59b521f" + "487144d1-36fd-4605-8b49-ca0db60fe44d", + "487144d1-36fd-4605-8b49-ca0db60fe44d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Server": [ - "Microsoft-IIS/10.0" - ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "129" + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" ], "x-ms-correlation-request-id": [ - "37796b3e-4933-4d20-ada2-ecdd9a5f389c" + "f34913bb-73f4-4bcf-9233-aa57a9e7c02e" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T211639Z:37796b3e-4933-4d20-ada2-ecdd9a5f389c" + "JIOINDIAWEST:20220517T041639Z:f34913bb-73f4-4bcf-9233-aa57a9e7c02e" ], "Date": [ - "Thu, 24 Feb 2022 21:16:38 GMT" - ], - "Content-Length": [ - "302" - ], - "Content-Type": [ - "application/json" + "Tue, 17 May 2022 04:16:38 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, - "ResponseBody": "{\r\n \"id\": \"37bdb8e5-381b-4f7b-a134-055045b39169\",\r\n \"name\": \"37bdb8e5-381b-4f7b-a134-055045b39169\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-02-24T21:14:39.773436Z\",\r\n \"endTime\": \"2022-02-24T21:14:39.773436Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"782275dd-5f03-452e-afcb-bb3fb6764176\"\r\n }\r\n}", - "StatusCode": 200 + "ResponseBody": "", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.RecoveryServices/vaults/PSTestRSVdbbbe2ca/backupJobs/782275dd-5f03-452e-afcb-bb3fb6764176?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZGJiYmUyY2EvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZkYmJiZTJjYS9iYWNrdXBKb2JzLzc4MjI3NWRkLTVmMDMtNDUyZS1hZmNiLWJiM2ZiNjc2NDE3Nj9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.RecoveryServices/vaults/PSTestRSV9e387301/backupOperations/eaa76005-707c-4905-9eec-34721382e7c9?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOWUzODczMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5ZTM4NzMwMS9iYWNrdXBPcGVyYXRpb25zL2VhYTc2MDA1LTcwN2MtNDkwNS05ZWVjLTM0NzIxMzgyZTdjOT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9ecd3f98-01d5-4d92-a67c-1915e59b521f" + "487144d1-36fd-4605-8b49-ca0db60fe44d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -9532,40 +9531,39 @@ "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-IIS/10.0" - ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "217ce35e-d63c-4b08-93e6-1b41e45c4741" + "e2a981b4-5b33-4db9-bcbf-d346e37ea7ae" ], "x-ms-client-request-id": [ - "9ecd3f98-01d5-4d92-a67c-1915e59b521f", - "9ecd3f98-01d5-4d92-a67c-1915e59b521f" - ], - "X-Powered-By": [ - "ASP.NET" + "487144d1-36fd-4605-8b49-ca0db60fe44d", + "487144d1-36fd-4605-8b49-ca0db60fe44d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "147" + "131" ], "x-ms-correlation-request-id": [ - "217ce35e-d63c-4b08-93e6-1b41e45c4741" + "e2a981b4-5b33-4db9-bcbf-d346e37ea7ae" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T211639Z:217ce35e-d63c-4b08-93e6-1b41e45c4741" + "JIOINDIAWEST:20220517T041639Z:e2a981b4-5b33-4db9-bcbf-d346e37ea7ae" ], "Date": [ - "Thu, 24 Feb 2022 21:16:39 GMT" + "Tue, 17 May 2022 04:16:38 GMT" ], "Content-Length": [ - "844" + "188" ], "Content-Type": [ "application/json" @@ -9574,26 +9572,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.RecoveryServices/vaults/PSTestRSVdbbbe2ca/backupJobs/782275dd-5f03-452e-afcb-bb3fb6764176\",\r\n \"name\": \"782275dd-5f03-452e-afcb-bb3fb6764176\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgdbbbe2ca;pstestvmdbbbe1\",\r\n \"duration\": \"PT1M51.4535924S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"VM Name\": \"PSTestVMdbbbe1\",\r\n \"Number of Recovery Points\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"PSTestVMdbbbe1\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"DeleteBackupData\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-02-24T21:14:39.773436Z\",\r\n \"endTime\": \"2022-02-24T21:16:31.2270284Z\",\r\n \"activityId\": \"9ecd3f98-01d5-4d92-a67c-1915e59b521f\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"eaa76005-707c-4905-9eec-34721382e7c9\",\r\n \"name\": \"eaa76005-707c-4905-9eec-34721382e7c9\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T04:16:38.9853552Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.RecoveryServices/vaults/PSTestRSVdbbbe2ca/backupFabrics/Azure/protectionContainers/IaasVMContainer%3Biaasvmcontainerv2%3Bpstestrgdbbbe2ca%3Bpstestvmdbbbe12/protectedItems/VM%3Biaasvmcontainerv2%3Bpstestrgdbbbe2ca%3Bpstestvmdbbbe12/recoveryPoints?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZGJiYmUyY2EvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZkYmJiZTJjYS9iYWNrdXBGYWJyaWNzL0F6dXJlL3Byb3RlY3Rpb25Db250YWluZXJzL0lhYXNWTUNvbnRhaW5lciUzQmlhYXN2bWNvbnRhaW5lcnYyJTNCcHN0ZXN0cmdkYmJiZTJjYSUzQnBzdGVzdHZtZGJiYmUxMi9wcm90ZWN0ZWRJdGVtcy9WTSUzQmlhYXN2bWNvbnRhaW5lcnYyJTNCcHN0ZXN0cmdkYmJiZTJjYSUzQnBzdGVzdHZtZGJiYmUxMi9yZWNvdmVyeVBvaW50cz9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.RecoveryServices/vaults/PSTestRSV9e387301/backupOperations/eaa76005-707c-4905-9eec-34721382e7c9?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOWUzODczMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5ZTM4NzMwMS9iYWNrdXBPcGVyYXRpb25zL2VhYTc2MDA1LTcwN2MtNDkwNS05ZWVjLTM0NzIxMzgyZTdjOT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e7f6dcfc-bcc1-42d9-83f2-efefa94f4d7a" + "487144d1-36fd-4605-8b49-ca0db60fe44d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -9607,11 +9605,11 @@ "nosniff" ], "x-ms-request-id": [ - "724a8575-6e45-4b42-97af-de4ea51f688c" + "67bc3b6c-7d26-425e-b0ba-a86b7ada5003" ], "x-ms-client-request-id": [ - "e7f6dcfc-bcc1-42d9-83f2-efefa94f4d7a", - "e7f6dcfc-bcc1-42d9-83f2-efefa94f4d7a" + "487144d1-36fd-4605-8b49-ca0db60fe44d", + "487144d1-36fd-4605-8b49-ca0db60fe44d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -9623,19 +9621,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "148" + "130" ], "x-ms-correlation-request-id": [ - "724a8575-6e45-4b42-97af-de4ea51f688c" + "67bc3b6c-7d26-425e-b0ba-a86b7ada5003" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T211641Z:724a8575-6e45-4b42-97af-de4ea51f688c" + "JIOINDIAWEST:20220517T041645Z:67bc3b6c-7d26-425e-b0ba-a86b7ada5003" ], "Date": [ - "Thu, 24 Feb 2022 21:16:40 GMT" + "Tue, 17 May 2022 04:16:44 GMT" ], "Content-Length": [ - "12" + "188" ], "Content-Type": [ "application/json" @@ -9644,26 +9642,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseBody": "{\r\n \"id\": \"eaa76005-707c-4905-9eec-34721382e7c9\",\r\n \"name\": \"eaa76005-707c-4905-9eec-34721382e7c9\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T04:16:38.9853552Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.RecoveryServices/vaults/PSTestRSVdbbbe2ca/backupFabrics/Azure/protectionContainers/IaasVMContainer%3Biaasvmcontainerv2%3Bpstestrgdbbbe2ca%3Bpstestvmdbbbe12/protectedItems/VM%3Biaasvmcontainerv2%3Bpstestrgdbbbe2ca%3Bpstestvmdbbbe12?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZGJiYmUyY2EvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZkYmJiZTJjYS9iYWNrdXBGYWJyaWNzL0F6dXJlL3Byb3RlY3Rpb25Db250YWluZXJzL0lhYXNWTUNvbnRhaW5lciUzQmlhYXN2bWNvbnRhaW5lcnYyJTNCcHN0ZXN0cmdkYmJiZTJjYSUzQnBzdGVzdHZtZGJiYmUxMi9wcm90ZWN0ZWRJdGVtcy9WTSUzQmlhYXN2bWNvbnRhaW5lcnYyJTNCcHN0ZXN0cmdkYmJiZTJjYSUzQnBzdGVzdHZtZGJiYmUxMj9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", - "RequestMethod": "DELETE", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.RecoveryServices/vaults/PSTestRSV9e387301/backupOperations/eaa76005-707c-4905-9eec-34721382e7c9?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOWUzODczMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5ZTM4NzMwMS9iYWNrdXBPcGVyYXRpb25zL2VhYTc2MDA1LTcwN2MtNDkwNS05ZWVjLTM0NzIxMzgyZTdjOT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e7f6dcfc-bcc1-42d9-83f2-efefa94f4d7a" + "487144d1-36fd-4605-8b49-ca0db60fe44d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -9673,70 +9671,67 @@ "Pragma": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.RecoveryServices/vaults/PSTestRSVdbbbe2ca/backupOperationResults/ae55286a-ea1a-4870-b115-95ff2e2e83c5?api-version=2021-10-01" - ], - "Retry-After": [ - "60" - ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.RecoveryServices/vaults/PSTestRSVdbbbe2ca/backupOperations/ae55286a-ea1a-4870-b115-95ff2e2e83c5?api-version=2021-10-01" - ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "38dee35a-09ee-49d8-9dcb-7334621e6c89" + "602abe32-ac0b-4a59-a065-19abcd43490e" ], "x-ms-client-request-id": [ - "e7f6dcfc-bcc1-42d9-83f2-efefa94f4d7a", - "e7f6dcfc-bcc1-42d9-83f2-efefa94f4d7a" + "487144d1-36fd-4605-8b49-ca0db60fe44d", + "487144d1-36fd-4605-8b49-ca0db60fe44d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-IIS/10.0" + ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ - "14998" + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "129" ], "x-ms-correlation-request-id": [ - "38dee35a-09ee-49d8-9dcb-7334621e6c89" + "602abe32-ac0b-4a59-a065-19abcd43490e" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T211642Z:38dee35a-09ee-49d8-9dcb-7334621e6c89" + "JIOINDIAWEST:20220517T041650Z:602abe32-ac0b-4a59-a065-19abcd43490e" ], "Date": [ - "Thu, 24 Feb 2022 21:16:41 GMT" + "Tue, 17 May 2022 04:16:50 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, - "ResponseBody": "", - "StatusCode": 202 + "ResponseBody": "{\r\n \"id\": \"eaa76005-707c-4905-9eec-34721382e7c9\",\r\n \"name\": \"eaa76005-707c-4905-9eec-34721382e7c9\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T04:16:38.9853552Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.RecoveryServices/vaults/PSTestRSVdbbbe2ca/backupOperations/ae55286a-ea1a-4870-b115-95ff2e2e83c5?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZGJiYmUyY2EvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZkYmJiZTJjYS9iYWNrdXBPcGVyYXRpb25zL2FlNTUyODZhLWVhMWEtNDg3MC1iMTE1LTk1ZmYyZTJlODNjNT9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.RecoveryServices/vaults/PSTestRSV9e387301/backupOperations/eaa76005-707c-4905-9eec-34721382e7c9?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOWUzODczMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5ZTM4NzMwMS9iYWNrdXBPcGVyYXRpb25zL2VhYTc2MDA1LTcwN2MtNDkwNS05ZWVjLTM0NzIxMzgyZTdjOT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e7f6dcfc-bcc1-42d9-83f2-efefa94f4d7a" + "487144d1-36fd-4605-8b49-ca0db60fe44d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -9750,32 +9745,32 @@ "nosniff" ], "x-ms-request-id": [ - "bd0a4280-a33f-45f7-9a74-8034f4cc8e12" + "d18553a8-7b3b-48b4-ae51-d78f05a63446" ], "x-ms-client-request-id": [ - "e7f6dcfc-bcc1-42d9-83f2-efefa94f4d7a", - "e7f6dcfc-bcc1-42d9-83f2-efefa94f4d7a" + "487144d1-36fd-4605-8b49-ca0db60fe44d", + "487144d1-36fd-4605-8b49-ca0db60fe44d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "128" - ], "Server": [ "Microsoft-IIS/10.0" ], "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "128" + ], "x-ms-correlation-request-id": [ - "bd0a4280-a33f-45f7-9a74-8034f4cc8e12" + "d18553a8-7b3b-48b4-ae51-d78f05a63446" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T211643Z:bd0a4280-a33f-45f7-9a74-8034f4cc8e12" + "JIOINDIAWEST:20220517T041656Z:d18553a8-7b3b-48b4-ae51-d78f05a63446" ], "Date": [ - "Thu, 24 Feb 2022 21:16:42 GMT" + "Tue, 17 May 2022 04:16:55 GMT" ], "Content-Length": [ "188" @@ -9787,26 +9782,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"ae55286a-ea1a-4870-b115-95ff2e2e83c5\",\r\n \"name\": \"ae55286a-ea1a-4870-b115-95ff2e2e83c5\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-24T21:16:41.7272276Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"eaa76005-707c-4905-9eec-34721382e7c9\",\r\n \"name\": \"eaa76005-707c-4905-9eec-34721382e7c9\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T04:16:38.9853552Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.RecoveryServices/vaults/PSTestRSVdbbbe2ca/backupOperations/ae55286a-ea1a-4870-b115-95ff2e2e83c5?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZGJiYmUyY2EvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZkYmJiZTJjYS9iYWNrdXBPcGVyYXRpb25zL2FlNTUyODZhLWVhMWEtNDg3MC1iMTE1LTk1ZmYyZTJlODNjNT9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.RecoveryServices/vaults/PSTestRSV9e387301/backupOperations/eaa76005-707c-4905-9eec-34721382e7c9?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOWUzODczMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5ZTM4NzMwMS9iYWNrdXBPcGVyYXRpb25zL2VhYTc2MDA1LTcwN2MtNDkwNS05ZWVjLTM0NzIxMzgyZTdjOT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e7f6dcfc-bcc1-42d9-83f2-efefa94f4d7a" + "487144d1-36fd-4605-8b49-ca0db60fe44d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -9820,11 +9815,11 @@ "nosniff" ], "x-ms-request-id": [ - "97f682ea-28ed-4907-a764-cd52c1c4ac72" + "79b10655-2f75-41dd-bb94-c48c6329b301" ], "x-ms-client-request-id": [ - "e7f6dcfc-bcc1-42d9-83f2-efefa94f4d7a", - "e7f6dcfc-bcc1-42d9-83f2-efefa94f4d7a" + "487144d1-36fd-4605-8b49-ca0db60fe44d", + "487144d1-36fd-4605-8b49-ca0db60fe44d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -9839,13 +9834,13 @@ "127" ], "x-ms-correlation-request-id": [ - "97f682ea-28ed-4907-a764-cd52c1c4ac72" + "79b10655-2f75-41dd-bb94-c48c6329b301" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T211654Z:97f682ea-28ed-4907-a764-cd52c1c4ac72" + "JIOINDIAWEST:20220517T041701Z:79b10655-2f75-41dd-bb94-c48c6329b301" ], "Date": [ - "Thu, 24 Feb 2022 21:16:54 GMT" + "Tue, 17 May 2022 04:17:01 GMT" ], "Content-Length": [ "188" @@ -9857,26 +9852,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"ae55286a-ea1a-4870-b115-95ff2e2e83c5\",\r\n \"name\": \"ae55286a-ea1a-4870-b115-95ff2e2e83c5\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-24T21:16:41.7272276Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"eaa76005-707c-4905-9eec-34721382e7c9\",\r\n \"name\": \"eaa76005-707c-4905-9eec-34721382e7c9\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T04:16:38.9853552Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.RecoveryServices/vaults/PSTestRSVdbbbe2ca/backupOperations/ae55286a-ea1a-4870-b115-95ff2e2e83c5?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZGJiYmUyY2EvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZkYmJiZTJjYS9iYWNrdXBPcGVyYXRpb25zL2FlNTUyODZhLWVhMWEtNDg3MC1iMTE1LTk1ZmYyZTJlODNjNT9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.RecoveryServices/vaults/PSTestRSV9e387301/backupOperations/eaa76005-707c-4905-9eec-34721382e7c9?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOWUzODczMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5ZTM4NzMwMS9iYWNrdXBPcGVyYXRpb25zL2VhYTc2MDA1LTcwN2MtNDkwNS05ZWVjLTM0NzIxMzgyZTdjOT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e7f6dcfc-bcc1-42d9-83f2-efefa94f4d7a" + "487144d1-36fd-4605-8b49-ca0db60fe44d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -9890,11 +9885,11 @@ "nosniff" ], "x-ms-request-id": [ - "1a17e547-a460-4091-b9a6-df96b9f199b0" + "cb2448fc-5d6a-43c3-a900-03161f471ddb" ], "x-ms-client-request-id": [ - "e7f6dcfc-bcc1-42d9-83f2-efefa94f4d7a", - "e7f6dcfc-bcc1-42d9-83f2-efefa94f4d7a" + "487144d1-36fd-4605-8b49-ca0db60fe44d", + "487144d1-36fd-4605-8b49-ca0db60fe44d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -9909,13 +9904,13 @@ "126" ], "x-ms-correlation-request-id": [ - "1a17e547-a460-4091-b9a6-df96b9f199b0" + "cb2448fc-5d6a-43c3-a900-03161f471ddb" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T211710Z:1a17e547-a460-4091-b9a6-df96b9f199b0" + "JIOINDIAWEST:20220517T041706Z:cb2448fc-5d6a-43c3-a900-03161f471ddb" ], "Date": [ - "Thu, 24 Feb 2022 21:17:10 GMT" + "Tue, 17 May 2022 04:17:06 GMT" ], "Content-Length": [ "188" @@ -9927,26 +9922,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"ae55286a-ea1a-4870-b115-95ff2e2e83c5\",\r\n \"name\": \"ae55286a-ea1a-4870-b115-95ff2e2e83c5\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-24T21:16:41.7272276Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"eaa76005-707c-4905-9eec-34721382e7c9\",\r\n \"name\": \"eaa76005-707c-4905-9eec-34721382e7c9\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T04:16:38.9853552Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.RecoveryServices/vaults/PSTestRSVdbbbe2ca/backupOperations/ae55286a-ea1a-4870-b115-95ff2e2e83c5?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZGJiYmUyY2EvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZkYmJiZTJjYS9iYWNrdXBPcGVyYXRpb25zL2FlNTUyODZhLWVhMWEtNDg3MC1iMTE1LTk1ZmYyZTJlODNjNT9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.RecoveryServices/vaults/PSTestRSV9e387301/backupOperations/eaa76005-707c-4905-9eec-34721382e7c9?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOWUzODczMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5ZTM4NzMwMS9iYWNrdXBPcGVyYXRpb25zL2VhYTc2MDA1LTcwN2MtNDkwNS05ZWVjLTM0NzIxMzgyZTdjOT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e7f6dcfc-bcc1-42d9-83f2-efefa94f4d7a" + "487144d1-36fd-4605-8b49-ca0db60fe44d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -9960,11 +9955,11 @@ "nosniff" ], "x-ms-request-id": [ - "2e9fbcee-55af-4aae-8482-77343a86af21" + "76fa318e-a363-4119-ac37-2fa61848d98d" ], "x-ms-client-request-id": [ - "e7f6dcfc-bcc1-42d9-83f2-efefa94f4d7a", - "e7f6dcfc-bcc1-42d9-83f2-efefa94f4d7a" + "487144d1-36fd-4605-8b49-ca0db60fe44d", + "487144d1-36fd-4605-8b49-ca0db60fe44d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -9979,13 +9974,13 @@ "125" ], "x-ms-correlation-request-id": [ - "2e9fbcee-55af-4aae-8482-77343a86af21" + "76fa318e-a363-4119-ac37-2fa61848d98d" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T211721Z:2e9fbcee-55af-4aae-8482-77343a86af21" + "JIOINDIAWEST:20220517T041712Z:76fa318e-a363-4119-ac37-2fa61848d98d" ], "Date": [ - "Thu, 24 Feb 2022 21:17:21 GMT" + "Tue, 17 May 2022 04:17:12 GMT" ], "Content-Length": [ "188" @@ -9997,26 +9992,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"ae55286a-ea1a-4870-b115-95ff2e2e83c5\",\r\n \"name\": \"ae55286a-ea1a-4870-b115-95ff2e2e83c5\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-24T21:16:41.7272276Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"eaa76005-707c-4905-9eec-34721382e7c9\",\r\n \"name\": \"eaa76005-707c-4905-9eec-34721382e7c9\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T04:16:38.9853552Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.RecoveryServices/vaults/PSTestRSVdbbbe2ca/backupOperations/ae55286a-ea1a-4870-b115-95ff2e2e83c5?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZGJiYmUyY2EvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZkYmJiZTJjYS9iYWNrdXBPcGVyYXRpb25zL2FlNTUyODZhLWVhMWEtNDg3MC1iMTE1LTk1ZmYyZTJlODNjNT9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.RecoveryServices/vaults/PSTestRSV9e387301/backupOperations/eaa76005-707c-4905-9eec-34721382e7c9?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOWUzODczMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5ZTM4NzMwMS9iYWNrdXBPcGVyYXRpb25zL2VhYTc2MDA1LTcwN2MtNDkwNS05ZWVjLTM0NzIxMzgyZTdjOT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e7f6dcfc-bcc1-42d9-83f2-efefa94f4d7a" + "487144d1-36fd-4605-8b49-ca0db60fe44d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -10030,11 +10025,11 @@ "nosniff" ], "x-ms-request-id": [ - "0851b423-7deb-4c00-a7c7-5adfc5a0c967" + "5b0713c9-515e-4c6c-8803-06346c3bbede" ], "x-ms-client-request-id": [ - "e7f6dcfc-bcc1-42d9-83f2-efefa94f4d7a", - "e7f6dcfc-bcc1-42d9-83f2-efefa94f4d7a" + "487144d1-36fd-4605-8b49-ca0db60fe44d", + "487144d1-36fd-4605-8b49-ca0db60fe44d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -10049,13 +10044,13 @@ "124" ], "x-ms-correlation-request-id": [ - "0851b423-7deb-4c00-a7c7-5adfc5a0c967" + "5b0713c9-515e-4c6c-8803-06346c3bbede" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T211731Z:0851b423-7deb-4c00-a7c7-5adfc5a0c967" + "JIOINDIAWEST:20220517T041717Z:5b0713c9-515e-4c6c-8803-06346c3bbede" ], "Date": [ - "Thu, 24 Feb 2022 21:17:31 GMT" + "Tue, 17 May 2022 04:17:17 GMT" ], "Content-Length": [ "188" @@ -10067,26 +10062,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"ae55286a-ea1a-4870-b115-95ff2e2e83c5\",\r\n \"name\": \"ae55286a-ea1a-4870-b115-95ff2e2e83c5\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-24T21:16:41.7272276Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"eaa76005-707c-4905-9eec-34721382e7c9\",\r\n \"name\": \"eaa76005-707c-4905-9eec-34721382e7c9\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T04:16:38.9853552Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.RecoveryServices/vaults/PSTestRSVdbbbe2ca/backupOperations/ae55286a-ea1a-4870-b115-95ff2e2e83c5?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZGJiYmUyY2EvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZkYmJiZTJjYS9iYWNrdXBPcGVyYXRpb25zL2FlNTUyODZhLWVhMWEtNDg3MC1iMTE1LTk1ZmYyZTJlODNjNT9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.RecoveryServices/vaults/PSTestRSV9e387301/backupOperations/eaa76005-707c-4905-9eec-34721382e7c9?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOWUzODczMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5ZTM4NzMwMS9iYWNrdXBPcGVyYXRpb25zL2VhYTc2MDA1LTcwN2MtNDkwNS05ZWVjLTM0NzIxMzgyZTdjOT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e7f6dcfc-bcc1-42d9-83f2-efefa94f4d7a" + "487144d1-36fd-4605-8b49-ca0db60fe44d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -10100,11 +10095,11 @@ "nosniff" ], "x-ms-request-id": [ - "62e2891b-2b7f-4a14-a30d-fc35158e9311" + "e191a222-a287-4714-9e6b-278e7581f5ab" ], "x-ms-client-request-id": [ - "e7f6dcfc-bcc1-42d9-83f2-efefa94f4d7a", - "e7f6dcfc-bcc1-42d9-83f2-efefa94f4d7a" + "487144d1-36fd-4605-8b49-ca0db60fe44d", + "487144d1-36fd-4605-8b49-ca0db60fe44d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -10119,13 +10114,13 @@ "123" ], "x-ms-correlation-request-id": [ - "62e2891b-2b7f-4a14-a30d-fc35158e9311" + "e191a222-a287-4714-9e6b-278e7581f5ab" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T211742Z:62e2891b-2b7f-4a14-a30d-fc35158e9311" + "JIOINDIAWEST:20220517T041723Z:e191a222-a287-4714-9e6b-278e7581f5ab" ], "Date": [ - "Thu, 24 Feb 2022 21:17:42 GMT" + "Tue, 17 May 2022 04:17:22 GMT" ], "Content-Length": [ "188" @@ -10137,26 +10132,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"ae55286a-ea1a-4870-b115-95ff2e2e83c5\",\r\n \"name\": \"ae55286a-ea1a-4870-b115-95ff2e2e83c5\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-24T21:16:41.7272276Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"eaa76005-707c-4905-9eec-34721382e7c9\",\r\n \"name\": \"eaa76005-707c-4905-9eec-34721382e7c9\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T04:16:38.9853552Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.RecoveryServices/vaults/PSTestRSVdbbbe2ca/backupOperations/ae55286a-ea1a-4870-b115-95ff2e2e83c5?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZGJiYmUyY2EvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZkYmJiZTJjYS9iYWNrdXBPcGVyYXRpb25zL2FlNTUyODZhLWVhMWEtNDg3MC1iMTE1LTk1ZmYyZTJlODNjNT9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.RecoveryServices/vaults/PSTestRSV9e387301/backupOperations/eaa76005-707c-4905-9eec-34721382e7c9?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOWUzODczMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5ZTM4NzMwMS9iYWNrdXBPcGVyYXRpb25zL2VhYTc2MDA1LTcwN2MtNDkwNS05ZWVjLTM0NzIxMzgyZTdjOT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e7f6dcfc-bcc1-42d9-83f2-efefa94f4d7a" + "487144d1-36fd-4605-8b49-ca0db60fe44d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -10170,11 +10165,11 @@ "nosniff" ], "x-ms-request-id": [ - "8a4f5245-e83c-4af3-88bb-b020b9112d55" + "8127e975-25d7-42aa-b53c-77d8d3e0cc18" ], "x-ms-client-request-id": [ - "e7f6dcfc-bcc1-42d9-83f2-efefa94f4d7a", - "e7f6dcfc-bcc1-42d9-83f2-efefa94f4d7a" + "487144d1-36fd-4605-8b49-ca0db60fe44d", + "487144d1-36fd-4605-8b49-ca0db60fe44d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -10189,13 +10184,13 @@ "122" ], "x-ms-correlation-request-id": [ - "8a4f5245-e83c-4af3-88bb-b020b9112d55" + "8127e975-25d7-42aa-b53c-77d8d3e0cc18" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T211753Z:8a4f5245-e83c-4af3-88bb-b020b9112d55" + "JIOINDIAWEST:20220517T041728Z:8127e975-25d7-42aa-b53c-77d8d3e0cc18" ], "Date": [ - "Thu, 24 Feb 2022 21:17:52 GMT" + "Tue, 17 May 2022 04:17:28 GMT" ], "Content-Length": [ "188" @@ -10207,26 +10202,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"ae55286a-ea1a-4870-b115-95ff2e2e83c5\",\r\n \"name\": \"ae55286a-ea1a-4870-b115-95ff2e2e83c5\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-24T21:16:41.7272276Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"eaa76005-707c-4905-9eec-34721382e7c9\",\r\n \"name\": \"eaa76005-707c-4905-9eec-34721382e7c9\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T04:16:38.9853552Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.RecoveryServices/vaults/PSTestRSVdbbbe2ca/backupOperations/ae55286a-ea1a-4870-b115-95ff2e2e83c5?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZGJiYmUyY2EvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZkYmJiZTJjYS9iYWNrdXBPcGVyYXRpb25zL2FlNTUyODZhLWVhMWEtNDg3MC1iMTE1LTk1ZmYyZTJlODNjNT9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.RecoveryServices/vaults/PSTestRSV9e387301/backupOperations/eaa76005-707c-4905-9eec-34721382e7c9?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOWUzODczMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5ZTM4NzMwMS9iYWNrdXBPcGVyYXRpb25zL2VhYTc2MDA1LTcwN2MtNDkwNS05ZWVjLTM0NzIxMzgyZTdjOT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e7f6dcfc-bcc1-42d9-83f2-efefa94f4d7a" + "487144d1-36fd-4605-8b49-ca0db60fe44d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -10240,11 +10235,11 @@ "nosniff" ], "x-ms-request-id": [ - "4542bc44-3212-4b80-b3cb-cd1ddda1d01a" + "b118d9d4-a6b3-42e2-ae59-9b257938efb1" ], "x-ms-client-request-id": [ - "e7f6dcfc-bcc1-42d9-83f2-efefa94f4d7a", - "e7f6dcfc-bcc1-42d9-83f2-efefa94f4d7a" + "487144d1-36fd-4605-8b49-ca0db60fe44d", + "487144d1-36fd-4605-8b49-ca0db60fe44d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -10259,13 +10254,13 @@ "121" ], "x-ms-correlation-request-id": [ - "4542bc44-3212-4b80-b3cb-cd1ddda1d01a" + "b118d9d4-a6b3-42e2-ae59-9b257938efb1" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T211803Z:4542bc44-3212-4b80-b3cb-cd1ddda1d01a" + "JIOINDIAWEST:20220517T041734Z:b118d9d4-a6b3-42e2-ae59-9b257938efb1" ], "Date": [ - "Thu, 24 Feb 2022 21:18:03 GMT" + "Tue, 17 May 2022 04:17:34 GMT" ], "Content-Length": [ "188" @@ -10277,26 +10272,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"ae55286a-ea1a-4870-b115-95ff2e2e83c5\",\r\n \"name\": \"ae55286a-ea1a-4870-b115-95ff2e2e83c5\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-24T21:16:41.7272276Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"eaa76005-707c-4905-9eec-34721382e7c9\",\r\n \"name\": \"eaa76005-707c-4905-9eec-34721382e7c9\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T04:16:38.9853552Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.RecoveryServices/vaults/PSTestRSVdbbbe2ca/backupOperations/ae55286a-ea1a-4870-b115-95ff2e2e83c5?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZGJiYmUyY2EvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZkYmJiZTJjYS9iYWNrdXBPcGVyYXRpb25zL2FlNTUyODZhLWVhMWEtNDg3MC1iMTE1LTk1ZmYyZTJlODNjNT9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.RecoveryServices/vaults/PSTestRSV9e387301/backupOperations/eaa76005-707c-4905-9eec-34721382e7c9?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOWUzODczMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5ZTM4NzMwMS9iYWNrdXBPcGVyYXRpb25zL2VhYTc2MDA1LTcwN2MtNDkwNS05ZWVjLTM0NzIxMzgyZTdjOT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e7f6dcfc-bcc1-42d9-83f2-efefa94f4d7a" + "487144d1-36fd-4605-8b49-ca0db60fe44d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -10310,11 +10305,11 @@ "nosniff" ], "x-ms-request-id": [ - "afa4380a-4f52-48b9-92c2-9f3db28c0b70" + "ccef21b7-fa7c-47e0-894a-b032d8627671" ], "x-ms-client-request-id": [ - "e7f6dcfc-bcc1-42d9-83f2-efefa94f4d7a", - "e7f6dcfc-bcc1-42d9-83f2-efefa94f4d7a" + "487144d1-36fd-4605-8b49-ca0db60fe44d", + "487144d1-36fd-4605-8b49-ca0db60fe44d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -10329,13 +10324,13 @@ "120" ], "x-ms-correlation-request-id": [ - "afa4380a-4f52-48b9-92c2-9f3db28c0b70" + "ccef21b7-fa7c-47e0-894a-b032d8627671" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T211814Z:afa4380a-4f52-48b9-92c2-9f3db28c0b70" + "JIOINDIAWEST:20220517T041739Z:ccef21b7-fa7c-47e0-894a-b032d8627671" ], "Date": [ - "Thu, 24 Feb 2022 21:18:13 GMT" + "Tue, 17 May 2022 04:17:39 GMT" ], "Content-Length": [ "188" @@ -10347,26 +10342,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"ae55286a-ea1a-4870-b115-95ff2e2e83c5\",\r\n \"name\": \"ae55286a-ea1a-4870-b115-95ff2e2e83c5\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-24T21:16:41.7272276Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"eaa76005-707c-4905-9eec-34721382e7c9\",\r\n \"name\": \"eaa76005-707c-4905-9eec-34721382e7c9\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T04:16:38.9853552Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.RecoveryServices/vaults/PSTestRSVdbbbe2ca/backupOperations/ae55286a-ea1a-4870-b115-95ff2e2e83c5?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZGJiYmUyY2EvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZkYmJiZTJjYS9iYWNrdXBPcGVyYXRpb25zL2FlNTUyODZhLWVhMWEtNDg3MC1iMTE1LTk1ZmYyZTJlODNjNT9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.RecoveryServices/vaults/PSTestRSV9e387301/backupOperations/eaa76005-707c-4905-9eec-34721382e7c9?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOWUzODczMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5ZTM4NzMwMS9iYWNrdXBPcGVyYXRpb25zL2VhYTc2MDA1LTcwN2MtNDkwNS05ZWVjLTM0NzIxMzgyZTdjOT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e7f6dcfc-bcc1-42d9-83f2-efefa94f4d7a" + "487144d1-36fd-4605-8b49-ca0db60fe44d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -10380,11 +10375,11 @@ "nosniff" ], "x-ms-request-id": [ - "4fc2572e-58a3-470f-9515-fe1e1444ced3" + "d202b848-a3d0-4844-8167-1dd34e228bb3" ], "x-ms-client-request-id": [ - "e7f6dcfc-bcc1-42d9-83f2-efefa94f4d7a", - "e7f6dcfc-bcc1-42d9-83f2-efefa94f4d7a" + "487144d1-36fd-4605-8b49-ca0db60fe44d", + "487144d1-36fd-4605-8b49-ca0db60fe44d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -10399,13 +10394,13 @@ "119" ], "x-ms-correlation-request-id": [ - "4fc2572e-58a3-470f-9515-fe1e1444ced3" + "d202b848-a3d0-4844-8167-1dd34e228bb3" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T211825Z:4fc2572e-58a3-470f-9515-fe1e1444ced3" + "JIOINDIAWEST:20220517T041745Z:d202b848-a3d0-4844-8167-1dd34e228bb3" ], "Date": [ - "Thu, 24 Feb 2022 21:18:24 GMT" + "Tue, 17 May 2022 04:17:44 GMT" ], "Content-Length": [ "188" @@ -10417,26 +10412,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"ae55286a-ea1a-4870-b115-95ff2e2e83c5\",\r\n \"name\": \"ae55286a-ea1a-4870-b115-95ff2e2e83c5\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-24T21:16:41.7272276Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"eaa76005-707c-4905-9eec-34721382e7c9\",\r\n \"name\": \"eaa76005-707c-4905-9eec-34721382e7c9\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T04:16:38.9853552Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.RecoveryServices/vaults/PSTestRSVdbbbe2ca/backupOperations/ae55286a-ea1a-4870-b115-95ff2e2e83c5?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZGJiYmUyY2EvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZkYmJiZTJjYS9iYWNrdXBPcGVyYXRpb25zL2FlNTUyODZhLWVhMWEtNDg3MC1iMTE1LTk1ZmYyZTJlODNjNT9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.RecoveryServices/vaults/PSTestRSV9e387301/backupOperations/eaa76005-707c-4905-9eec-34721382e7c9?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOWUzODczMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5ZTM4NzMwMS9iYWNrdXBPcGVyYXRpb25zL2VhYTc2MDA1LTcwN2MtNDkwNS05ZWVjLTM0NzIxMzgyZTdjOT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e7f6dcfc-bcc1-42d9-83f2-efefa94f4d7a" + "487144d1-36fd-4605-8b49-ca0db60fe44d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -10450,11 +10445,11 @@ "nosniff" ], "x-ms-request-id": [ - "a4f0a245-8007-468a-801b-dafbc766a98a" + "d75bf7c2-b2ab-4014-9add-2bdbd3fdb384" ], "x-ms-client-request-id": [ - "e7f6dcfc-bcc1-42d9-83f2-efefa94f4d7a", - "e7f6dcfc-bcc1-42d9-83f2-efefa94f4d7a" + "487144d1-36fd-4605-8b49-ca0db60fe44d", + "487144d1-36fd-4605-8b49-ca0db60fe44d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -10469,16 +10464,16 @@ "118" ], "x-ms-correlation-request-id": [ - "a4f0a245-8007-468a-801b-dafbc766a98a" + "d75bf7c2-b2ab-4014-9add-2bdbd3fdb384" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T211835Z:a4f0a245-8007-468a-801b-dafbc766a98a" + "JIOINDIAWEST:20220517T041750Z:d75bf7c2-b2ab-4014-9add-2bdbd3fdb384" ], "Date": [ - "Thu, 24 Feb 2022 21:18:35 GMT" + "Tue, 17 May 2022 04:17:50 GMT" ], "Content-Length": [ - "304" + "188" ], "Content-Type": [ "application/json" @@ -10487,26 +10482,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"ae55286a-ea1a-4870-b115-95ff2e2e83c5\",\r\n \"name\": \"ae55286a-ea1a-4870-b115-95ff2e2e83c5\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-02-24T21:16:41.7272276Z\",\r\n \"endTime\": \"2022-02-24T21:16:41.7272276Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"3902a5e6-6410-4e08-a166-5a16b055fbea\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"eaa76005-707c-4905-9eec-34721382e7c9\",\r\n \"name\": \"eaa76005-707c-4905-9eec-34721382e7c9\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T04:16:38.9853552Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.RecoveryServices/vaults/PSTestRSVdbbbe2ca/backupOperations/ae55286a-ea1a-4870-b115-95ff2e2e83c5?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZGJiYmUyY2EvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZkYmJiZTJjYS9iYWNrdXBPcGVyYXRpb25zL2FlNTUyODZhLWVhMWEtNDg3MC1iMTE1LTk1ZmYyZTJlODNjNT9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.RecoveryServices/vaults/PSTestRSV9e387301/backupOperations/eaa76005-707c-4905-9eec-34721382e7c9?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOWUzODczMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5ZTM4NzMwMS9iYWNrdXBPcGVyYXRpb25zL2VhYTc2MDA1LTcwN2MtNDkwNS05ZWVjLTM0NzIxMzgyZTdjOT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e7f6dcfc-bcc1-42d9-83f2-efefa94f4d7a" + "487144d1-36fd-4605-8b49-ca0db60fe44d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -10520,11 +10515,11 @@ "nosniff" ], "x-ms-request-id": [ - "89fa1c7a-b8a5-45e9-b1c3-716a658d1fe3" + "d05679c6-9ccf-4b10-9a5f-35f249eb1e82" ], "x-ms-client-request-id": [ - "e7f6dcfc-bcc1-42d9-83f2-efefa94f4d7a", - "e7f6dcfc-bcc1-42d9-83f2-efefa94f4d7a" + "487144d1-36fd-4605-8b49-ca0db60fe44d", + "487144d1-36fd-4605-8b49-ca0db60fe44d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -10539,16 +10534,16 @@ "117" ], "x-ms-correlation-request-id": [ - "89fa1c7a-b8a5-45e9-b1c3-716a658d1fe3" + "d05679c6-9ccf-4b10-9a5f-35f249eb1e82" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T211836Z:89fa1c7a-b8a5-45e9-b1c3-716a658d1fe3" + "JIOINDIAWEST:20220517T041756Z:d05679c6-9ccf-4b10-9a5f-35f249eb1e82" ], "Date": [ - "Thu, 24 Feb 2022 21:18:36 GMT" + "Tue, 17 May 2022 04:17:55 GMT" ], "Content-Length": [ - "304" + "188" ], "Content-Type": [ "application/json" @@ -10557,26 +10552,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"ae55286a-ea1a-4870-b115-95ff2e2e83c5\",\r\n \"name\": \"ae55286a-ea1a-4870-b115-95ff2e2e83c5\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-02-24T21:16:41.7272276Z\",\r\n \"endTime\": \"2022-02-24T21:16:41.7272276Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"3902a5e6-6410-4e08-a166-5a16b055fbea\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"eaa76005-707c-4905-9eec-34721382e7c9\",\r\n \"name\": \"eaa76005-707c-4905-9eec-34721382e7c9\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T04:16:38.9853552Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.RecoveryServices/vaults/PSTestRSVdbbbe2ca/backupJobs/3902a5e6-6410-4e08-a166-5a16b055fbea?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZGJiYmUyY2EvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZkYmJiZTJjYS9iYWNrdXBKb2JzLzM5MDJhNWU2LTY0MTAtNGUwOC1hMTY2LTVhMTZiMDU1ZmJlYT9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.RecoveryServices/vaults/PSTestRSV9e387301/backupOperations/eaa76005-707c-4905-9eec-34721382e7c9?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOWUzODczMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5ZTM4NzMwMS9iYWNrdXBPcGVyYXRpb25zL2VhYTc2MDA1LTcwN2MtNDkwNS05ZWVjLTM0NzIxMzgyZTdjOT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e7f6dcfc-bcc1-42d9-83f2-efefa94f4d7a" + "487144d1-36fd-4605-8b49-ca0db60fe44d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -10586,40 +10581,39 @@ "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-IIS/10.0" - ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "8787d942-05fb-491b-99ab-efcedf8bfa9c" + "308bef09-66ae-48b9-a5fd-e64c665cfe70" ], "x-ms-client-request-id": [ - "e7f6dcfc-bcc1-42d9-83f2-efefa94f4d7a", - "e7f6dcfc-bcc1-42d9-83f2-efefa94f4d7a" - ], - "X-Powered-By": [ - "ASP.NET" + "487144d1-36fd-4605-8b49-ca0db60fe44d", + "487144d1-36fd-4605-8b49-ca0db60fe44d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "146" + "116" ], "x-ms-correlation-request-id": [ - "8787d942-05fb-491b-99ab-efcedf8bfa9c" + "308bef09-66ae-48b9-a5fd-e64c665cfe70" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T211836Z:8787d942-05fb-491b-99ab-efcedf8bfa9c" + "JIOINDIAWEST:20220517T041801Z:308bef09-66ae-48b9-a5fd-e64c665cfe70" ], "Date": [ - "Thu, 24 Feb 2022 21:18:36 GMT" + "Tue, 17 May 2022 04:18:01 GMT" ], "Content-Length": [ - "848" + "188" ], "Content-Type": [ "application/json" @@ -10628,26 +10622,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.RecoveryServices/vaults/PSTestRSVdbbbe2ca/backupJobs/3902a5e6-6410-4e08-a166-5a16b055fbea\",\r\n \"name\": \"3902a5e6-6410-4e08-a166-5a16b055fbea\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgdbbbe2ca;pstestvmdbbbe12\",\r\n \"duration\": \"PT1M51.3446056S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"VM Name\": \"PSTestVMdbbbe12\",\r\n \"Number of Recovery Points\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"PSTestVMdbbbe12\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"DeleteBackupData\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-02-24T21:16:41.7272276Z\",\r\n \"endTime\": \"2022-02-24T21:18:33.0718332Z\",\r\n \"activityId\": \"e7f6dcfc-bcc1-42d9-83f2-efefa94f4d7a\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"eaa76005-707c-4905-9eec-34721382e7c9\",\r\n \"name\": \"eaa76005-707c-4905-9eec-34721382e7c9\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T04:16:38.9853552Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGdbbbe2ca/providers/Microsoft.RecoveryServices/vaults/PSTestRSVdbbbe2ca?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZGJiYmUyY2EvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZkYmJiZTJjYT9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", - "RequestMethod": "DELETE", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.RecoveryServices/vaults/PSTestRSV9e387301/backupOperations/eaa76005-707c-4905-9eec-34721382e7c9?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOWUzODczMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5ZTM4NzMwMS9iYWNrdXBPcGVyYXRpb25zL2VhYTc2MDA1LTcwN2MtNDkwNS05ZWVjLTM0NzIxMzgyZTdjOT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2f02c3c0-2f83-43b6-8d09-77c554bc92ce" + "487144d1-36fd-4605-8b49-ca0db60fe44d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesClient/4.3.2.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -10661,53 +10655,63 @@ "nosniff" ], "x-ms-request-id": [ - "86c45fcd-00de-4bf5-b77a-8f1a79cd18e5" + "a5ebf641-3ed4-4682-ad57-815c80340563" ], "x-ms-client-request-id": [ - "2f02c3c0-2f83-43b6-8d09-77c554bc92ce" + "487144d1-36fd-4605-8b49-ca0db60fe44d", + "487144d1-36fd-4605-8b49-ca0db60fe44d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "9" + "115" ], "x-ms-correlation-request-id": [ - "86c45fcd-00de-4bf5-b77a-8f1a79cd18e5" + "a5ebf641-3ed4-4682-ad57-815c80340563" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T211848Z:86c45fcd-00de-4bf5-b77a-8f1a79cd18e5" + "JIOINDIAWEST:20220517T041807Z:a5ebf641-3ed4-4682-ad57-815c80340563" ], "Date": [ - "Thu, 24 Feb 2022 21:18:48 GMT" + "Tue, 17 May 2022 04:18:06 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, - "ResponseBody": "", + "ResponseBody": "{\r\n \"id\": \"eaa76005-707c-4905-9eec-34721382e7c9\",\r\n \"name\": \"eaa76005-707c-4905-9eec-34721382e7c9\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T04:16:38.9853552Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourcegroups/PSTestRGdbbbe2ca?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlZ3JvdXBzL1BTVGVzdFJHZGJiYmUyY2E/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "DELETE", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.RecoveryServices/vaults/PSTestRSV9e387301/backupOperations/eaa76005-707c-4905-9eec-34721382e7c9?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOWUzODczMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5ZTM4NzMwMS9iYWNrdXBPcGVyYXRpb25zL2VhYTc2MDA1LTcwN2MtNDkwNS05ZWVjLTM0NzIxMzgyZTdjOT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a08df112-c098-4454-a20f-ce43003db52b" + "487144d1-36fd-4605-8b49-ca0db60fe44d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -10717,54 +10721,67 @@ "Pragma": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0RCQkJFMkNBLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" + "X-Content-Type-Options": [ + "nosniff" ], - "Retry-After": [ - "15" + "x-ms-request-id": [ + "65a55654-9d39-44da-a1ec-d09d1ab39570" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ - "14999" + "x-ms-client-request-id": [ + "487144d1-36fd-4605-8b49-ca0db60fe44d", + "487144d1-36fd-4605-8b49-ca0db60fe44d" ], - "x-ms-request-id": [ - "e934d27a-44b6-4986-8493-e17069c6417d" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "114" ], "x-ms-correlation-request-id": [ - "e934d27a-44b6-4986-8493-e17069c6417d" + "65a55654-9d39-44da-a1ec-d09d1ab39570" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T211855Z:e934d27a-44b6-4986-8493-e17069c6417d" + "JIOINDIAWEST:20220517T041812Z:65a55654-9d39-44da-a1ec-d09d1ab39570" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "Date": [ + "Tue, 17 May 2022 04:18:11 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Content-Length": [ + "188" ], - "Date": [ - "Thu, 24 Feb 2022 21:18:54 GMT" + "Content-Type": [ + "application/json" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, - "ResponseBody": "", - "StatusCode": 202 + "ResponseBody": "{\r\n \"id\": \"eaa76005-707c-4905-9eec-34721382e7c9\",\r\n \"name\": \"eaa76005-707c-4905-9eec-34721382e7c9\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T04:16:38.9853552Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0RCQkJFMkNBLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSMFJDUWtKRk1rTkJMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.RecoveryServices/vaults/PSTestRSV9e387301/backupOperations/eaa76005-707c-4905-9eec-34721382e7c9?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOWUzODczMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5ZTM4NzMwMS9iYWNrdXBPcGVyYXRpb25zL2VhYTc2MDA1LTcwN2MtNDkwNS05ZWVjLTM0NzIxMzgyZTdjOT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "487144d1-36fd-4605-8b49-ca0db60fe44d" + ], + "Accept-Language": [ + "en-US" + ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -10774,32 +10791,2622 @@ "Pragma": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0RCQkJFMkNBLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "X-Content-Type-Options": [ + "nosniff" ], "x-ms-request-id": [ - "cbebd35a-1aa2-4742-a825-25f77a9c10ff" - ], - "x-ms-correlation-request-id": [ - "cbebd35a-1aa2-4742-a825-25f77a9c10ff" + "1acf935a-d950-4af1-a025-529dbd30c298" ], - "x-ms-routing-request-id": [ - "CENTRALUS:20220224T211910Z:cbebd35a-1aa2-4742-a825-25f77a9c10ff" + "x-ms-client-request-id": [ + "487144d1-36fd-4605-8b49-ca0db60fe44d", + "487144d1-36fd-4605-8b49-ca0db60fe44d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "113" + ], + "x-ms-correlation-request-id": [ + "1acf935a-d950-4af1-a025-529dbd30c298" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220517T041818Z:1acf935a-d950-4af1-a025-529dbd30c298" + ], + "Date": [ + "Tue, 17 May 2022 04:18:18 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"eaa76005-707c-4905-9eec-34721382e7c9\",\r\n \"name\": \"eaa76005-707c-4905-9eec-34721382e7c9\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T04:16:38.9853552Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.RecoveryServices/vaults/PSTestRSV9e387301/backupOperations/eaa76005-707c-4905-9eec-34721382e7c9?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOWUzODczMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5ZTM4NzMwMS9iYWNrdXBPcGVyYXRpb25zL2VhYTc2MDA1LTcwN2MtNDkwNS05ZWVjLTM0NzIxMzgyZTdjOT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "487144d1-36fd-4605-8b49-ca0db60fe44d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "f0537873-29a5-4d81-b18d-608b816271b2" + ], + "x-ms-client-request-id": [ + "487144d1-36fd-4605-8b49-ca0db60fe44d", + "487144d1-36fd-4605-8b49-ca0db60fe44d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "112" + ], + "x-ms-correlation-request-id": [ + "f0537873-29a5-4d81-b18d-608b816271b2" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220517T041823Z:f0537873-29a5-4d81-b18d-608b816271b2" + ], + "Date": [ + "Tue, 17 May 2022 04:18:23 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"eaa76005-707c-4905-9eec-34721382e7c9\",\r\n \"name\": \"eaa76005-707c-4905-9eec-34721382e7c9\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T04:16:38.9853552Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.RecoveryServices/vaults/PSTestRSV9e387301/backupOperations/eaa76005-707c-4905-9eec-34721382e7c9?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOWUzODczMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5ZTM4NzMwMS9iYWNrdXBPcGVyYXRpb25zL2VhYTc2MDA1LTcwN2MtNDkwNS05ZWVjLTM0NzIxMzgyZTdjOT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "487144d1-36fd-4605-8b49-ca0db60fe44d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "63d6a3f7-19cc-45bb-9cbd-34007aebd24e" + ], + "x-ms-client-request-id": [ + "487144d1-36fd-4605-8b49-ca0db60fe44d", + "487144d1-36fd-4605-8b49-ca0db60fe44d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "111" + ], + "x-ms-correlation-request-id": [ + "63d6a3f7-19cc-45bb-9cbd-34007aebd24e" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220517T041829Z:63d6a3f7-19cc-45bb-9cbd-34007aebd24e" + ], + "Date": [ + "Tue, 17 May 2022 04:18:29 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"eaa76005-707c-4905-9eec-34721382e7c9\",\r\n \"name\": \"eaa76005-707c-4905-9eec-34721382e7c9\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T04:16:38.9853552Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.RecoveryServices/vaults/PSTestRSV9e387301/backupOperations/eaa76005-707c-4905-9eec-34721382e7c9?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOWUzODczMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5ZTM4NzMwMS9iYWNrdXBPcGVyYXRpb25zL2VhYTc2MDA1LTcwN2MtNDkwNS05ZWVjLTM0NzIxMzgyZTdjOT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "487144d1-36fd-4605-8b49-ca0db60fe44d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "a9503771-1cd3-4d08-8fa0-d6b377234b36" + ], + "x-ms-client-request-id": [ + "487144d1-36fd-4605-8b49-ca0db60fe44d", + "487144d1-36fd-4605-8b49-ca0db60fe44d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "110" + ], + "x-ms-correlation-request-id": [ + "a9503771-1cd3-4d08-8fa0-d6b377234b36" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220517T041834Z:a9503771-1cd3-4d08-8fa0-d6b377234b36" + ], + "Date": [ + "Tue, 17 May 2022 04:18:34 GMT" + ], + "Content-Length": [ + "304" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"eaa76005-707c-4905-9eec-34721382e7c9\",\r\n \"name\": \"eaa76005-707c-4905-9eec-34721382e7c9\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-05-17T04:16:38.9853552Z\",\r\n \"endTime\": \"2022-05-17T04:16:38.9853552Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"847b0aa0-95c2-4c07-9f74-ad71bcb334ce\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.RecoveryServices/vaults/PSTestRSV9e387301/backupOperations/eaa76005-707c-4905-9eec-34721382e7c9?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOWUzODczMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5ZTM4NzMwMS9iYWNrdXBPcGVyYXRpb25zL2VhYTc2MDA1LTcwN2MtNDkwNS05ZWVjLTM0NzIxMzgyZTdjOT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "487144d1-36fd-4605-8b49-ca0db60fe44d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "5d83e565-a027-47c2-bdc6-5b4dc4bddceb" + ], + "x-ms-client-request-id": [ + "487144d1-36fd-4605-8b49-ca0db60fe44d", + "487144d1-36fd-4605-8b49-ca0db60fe44d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "109" + ], + "x-ms-correlation-request-id": [ + "5d83e565-a027-47c2-bdc6-5b4dc4bddceb" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220517T041835Z:5d83e565-a027-47c2-bdc6-5b4dc4bddceb" + ], + "Date": [ + "Tue, 17 May 2022 04:18:34 GMT" + ], + "Content-Length": [ + "304" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"eaa76005-707c-4905-9eec-34721382e7c9\",\r\n \"name\": \"eaa76005-707c-4905-9eec-34721382e7c9\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-05-17T04:16:38.9853552Z\",\r\n \"endTime\": \"2022-05-17T04:16:38.9853552Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"847b0aa0-95c2-4c07-9f74-ad71bcb334ce\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.RecoveryServices/vaults/PSTestRSV9e387301/backupJobs/847b0aa0-95c2-4c07-9f74-ad71bcb334ce?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOWUzODczMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5ZTM4NzMwMS9iYWNrdXBKb2JzLzg0N2IwYWEwLTk1YzItNGMwNy05Zjc0LWFkNzFiY2IzMzRjZT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "487144d1-36fd-4605-8b49-ca0db60fe44d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.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": [ + "b701b5d1-a056-4f46-98d1-6d1d7f7bfa1c" + ], + "x-ms-client-request-id": [ + "487144d1-36fd-4605-8b49-ca0db60fe44d", + "487144d1-36fd-4605-8b49-ca0db60fe44d" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "147" + ], + "x-ms-correlation-request-id": [ + "b701b5d1-a056-4f46-98d1-6d1d7f7bfa1c" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220517T041835Z:b701b5d1-a056-4f46-98d1-6d1d7f7bfa1c" + ], + "Date": [ + "Tue, 17 May 2022 04:18:35 GMT" + ], + "Content-Length": [ + "845" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.RecoveryServices/vaults/PSTestRSV9e387301/backupJobs/847b0aa0-95c2-4c07-9f74-ad71bcb334ce\",\r\n \"name\": \"847b0aa0-95c2-4c07-9f74-ad71bcb334ce\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg9e387301;pstestvm9e3871\",\r\n \"duration\": \"PT1M51.4310226S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"VM Name\": \"PSTestVM9e3871\",\r\n \"Number of Recovery Points\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"PSTestVM9e3871\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"DeleteBackupData\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-05-17T04:16:38.9853552Z\",\r\n \"endTime\": \"2022-05-17T04:18:30.4163778Z\",\r\n \"activityId\": \"487144d1-36fd-4605-8b49-ca0db60fe44d\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.RecoveryServices/vaults/PSTestRSV9e387301/backupFabrics/Azure/protectionContainers/IaasVMContainer%3Biaasvmcontainerv2%3Bpstestrg9e387301%3Bpstestvm9e38712/protectedItems/VM%3Biaasvmcontainerv2%3Bpstestrg9e387301%3Bpstestvm9e38712/recoveryPoints?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOWUzODczMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5ZTM4NzMwMS9iYWNrdXBGYWJyaWNzL0F6dXJlL3Byb3RlY3Rpb25Db250YWluZXJzL0lhYXNWTUNvbnRhaW5lciUzQmlhYXN2bWNvbnRhaW5lcnYyJTNCcHN0ZXN0cmc5ZTM4NzMwMSUzQnBzdGVzdHZtOWUzODcxMi9wcm90ZWN0ZWRJdGVtcy9WTSUzQmlhYXN2bWNvbnRhaW5lcnYyJTNCcHN0ZXN0cmc5ZTM4NzMwMSUzQnBzdGVzdHZtOWUzODcxMi9yZWNvdmVyeVBvaW50cz9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "373cb068-1d2a-4796-ad62-a455baaab9cc" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "0a2df718-58e5-4098-89c0-a40d4a62654c" + ], + "x-ms-client-request-id": [ + "373cb068-1d2a-4796-ad62-a455baaab9cc", + "373cb068-1d2a-4796-ad62-a455baaab9cc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "148" + ], + "x-ms-correlation-request-id": [ + "0a2df718-58e5-4098-89c0-a40d4a62654c" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220517T041836Z:0a2df718-58e5-4098-89c0-a40d4a62654c" + ], + "Date": [ + "Tue, 17 May 2022 04:18:36 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/PSTestRG9e387301/providers/Microsoft.RecoveryServices/vaults/PSTestRSV9e387301/backupFabrics/Azure/protectionContainers/IaasVMContainer%3Biaasvmcontainerv2%3Bpstestrg9e387301%3Bpstestvm9e38712/protectedItems/VM%3Biaasvmcontainerv2%3Bpstestrg9e387301%3Bpstestvm9e38712?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOWUzODczMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5ZTM4NzMwMS9iYWNrdXBGYWJyaWNzL0F6dXJlL3Byb3RlY3Rpb25Db250YWluZXJzL0lhYXNWTUNvbnRhaW5lciUzQmlhYXN2bWNvbnRhaW5lcnYyJTNCcHN0ZXN0cmc5ZTM4NzMwMSUzQnBzdGVzdHZtOWUzODcxMi9wcm90ZWN0ZWRJdGVtcy9WTSUzQmlhYXN2bWNvbnRhaW5lcnYyJTNCcHN0ZXN0cmc5ZTM4NzMwMSUzQnBzdGVzdHZtOWUzODcxMj9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "373cb068-1d2a-4796-ad62-a455baaab9cc" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.RecoveryServices/vaults/PSTestRSV9e387301/backupOperationResults/136b4c06-6e99-4c08-84b7-c7f3310ace14?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.RecoveryServices/vaults/PSTestRSV9e387301/backupOperations/136b4c06-6e99-4c08-84b7-c7f3310ace14?api-version=2022-02-01" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "f49a1eb1-02ba-4793-973e-0370ca41ea87" + ], + "x-ms-client-request-id": [ + "373cb068-1d2a-4796-ad62-a455baaab9cc", + "373cb068-1d2a-4796-ad62-a455baaab9cc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14998" + ], + "x-ms-correlation-request-id": [ + "f49a1eb1-02ba-4793-973e-0370ca41ea87" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220517T041837Z:f49a1eb1-02ba-4793-973e-0370ca41ea87" + ], + "Date": [ + "Tue, 17 May 2022 04:18:37 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.RecoveryServices/vaults/PSTestRSV9e387301/backupOperations/136b4c06-6e99-4c08-84b7-c7f3310ace14?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOWUzODczMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5ZTM4NzMwMS9iYWNrdXBPcGVyYXRpb25zLzEzNmI0YzA2LTZlOTktNGMwOC04NGI3LWM3ZjMzMTBhY2UxND9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "373cb068-1d2a-4796-ad62-a455baaab9cc" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "d1395bd2-b8ab-45a0-8cc9-c0aef36bdbae" + ], + "x-ms-client-request-id": [ + "373cb068-1d2a-4796-ad62-a455baaab9cc", + "373cb068-1d2a-4796-ad62-a455baaab9cc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "108" + ], + "x-ms-correlation-request-id": [ + "d1395bd2-b8ab-45a0-8cc9-c0aef36bdbae" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220517T041838Z:d1395bd2-b8ab-45a0-8cc9-c0aef36bdbae" + ], + "Date": [ + "Tue, 17 May 2022 04:18:38 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"136b4c06-6e99-4c08-84b7-c7f3310ace14\",\r\n \"name\": \"136b4c06-6e99-4c08-84b7-c7f3310ace14\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T04:18:37.8475598Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.RecoveryServices/vaults/PSTestRSV9e387301/backupOperations/136b4c06-6e99-4c08-84b7-c7f3310ace14?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOWUzODczMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5ZTM4NzMwMS9iYWNrdXBPcGVyYXRpb25zLzEzNmI0YzA2LTZlOTktNGMwOC04NGI3LWM3ZjMzMTBhY2UxND9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "373cb068-1d2a-4796-ad62-a455baaab9cc" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "d86d8273-7d21-46f1-bf4a-a4174953935a" + ], + "x-ms-client-request-id": [ + "373cb068-1d2a-4796-ad62-a455baaab9cc", + "373cb068-1d2a-4796-ad62-a455baaab9cc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "107" + ], + "x-ms-correlation-request-id": [ + "d86d8273-7d21-46f1-bf4a-a4174953935a" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220517T041843Z:d86d8273-7d21-46f1-bf4a-a4174953935a" + ], + "Date": [ + "Tue, 17 May 2022 04:18:43 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"136b4c06-6e99-4c08-84b7-c7f3310ace14\",\r\n \"name\": \"136b4c06-6e99-4c08-84b7-c7f3310ace14\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T04:18:37.8475598Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.RecoveryServices/vaults/PSTestRSV9e387301/backupOperations/136b4c06-6e99-4c08-84b7-c7f3310ace14?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOWUzODczMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5ZTM4NzMwMS9iYWNrdXBPcGVyYXRpb25zLzEzNmI0YzA2LTZlOTktNGMwOC04NGI3LWM3ZjMzMTBhY2UxND9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "373cb068-1d2a-4796-ad62-a455baaab9cc" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "771c5d58-9a7f-43a9-80ad-25dcf393df41" + ], + "x-ms-client-request-id": [ + "373cb068-1d2a-4796-ad62-a455baaab9cc", + "373cb068-1d2a-4796-ad62-a455baaab9cc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "106" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-correlation-request-id": [ + "771c5d58-9a7f-43a9-80ad-25dcf393df41" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220517T041849Z:771c5d58-9a7f-43a9-80ad-25dcf393df41" + ], + "Date": [ + "Tue, 17 May 2022 04:18:49 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"136b4c06-6e99-4c08-84b7-c7f3310ace14\",\r\n \"name\": \"136b4c06-6e99-4c08-84b7-c7f3310ace14\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T04:18:37.8475598Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.RecoveryServices/vaults/PSTestRSV9e387301/backupOperations/136b4c06-6e99-4c08-84b7-c7f3310ace14?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOWUzODczMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5ZTM4NzMwMS9iYWNrdXBPcGVyYXRpb25zLzEzNmI0YzA2LTZlOTktNGMwOC04NGI3LWM3ZjMzMTBhY2UxND9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "373cb068-1d2a-4796-ad62-a455baaab9cc" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "d8f6a5db-7f4c-4ea7-a13e-c441dd7bfa60" + ], + "x-ms-client-request-id": [ + "373cb068-1d2a-4796-ad62-a455baaab9cc", + "373cb068-1d2a-4796-ad62-a455baaab9cc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "105" + ], + "x-ms-correlation-request-id": [ + "d8f6a5db-7f4c-4ea7-a13e-c441dd7bfa60" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220517T041855Z:d8f6a5db-7f4c-4ea7-a13e-c441dd7bfa60" + ], + "Date": [ + "Tue, 17 May 2022 04:18:55 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"136b4c06-6e99-4c08-84b7-c7f3310ace14\",\r\n \"name\": \"136b4c06-6e99-4c08-84b7-c7f3310ace14\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T04:18:37.8475598Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.RecoveryServices/vaults/PSTestRSV9e387301/backupOperations/136b4c06-6e99-4c08-84b7-c7f3310ace14?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOWUzODczMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5ZTM4NzMwMS9iYWNrdXBPcGVyYXRpb25zLzEzNmI0YzA2LTZlOTktNGMwOC04NGI3LWM3ZjMzMTBhY2UxND9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "373cb068-1d2a-4796-ad62-a455baaab9cc" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "afbdb686-62a6-41c5-8926-3758a0d87d98" + ], + "x-ms-client-request-id": [ + "373cb068-1d2a-4796-ad62-a455baaab9cc", + "373cb068-1d2a-4796-ad62-a455baaab9cc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "104" + ], + "x-ms-correlation-request-id": [ + "afbdb686-62a6-41c5-8926-3758a0d87d98" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220517T041901Z:afbdb686-62a6-41c5-8926-3758a0d87d98" + ], + "Date": [ + "Tue, 17 May 2022 04:19:00 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"136b4c06-6e99-4c08-84b7-c7f3310ace14\",\r\n \"name\": \"136b4c06-6e99-4c08-84b7-c7f3310ace14\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T04:18:37.8475598Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.RecoveryServices/vaults/PSTestRSV9e387301/backupOperations/136b4c06-6e99-4c08-84b7-c7f3310ace14?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOWUzODczMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5ZTM4NzMwMS9iYWNrdXBPcGVyYXRpb25zLzEzNmI0YzA2LTZlOTktNGMwOC04NGI3LWM3ZjMzMTBhY2UxND9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "373cb068-1d2a-4796-ad62-a455baaab9cc" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "1adf7e8b-1975-4dee-8971-a2304b09a6e7" + ], + "x-ms-client-request-id": [ + "373cb068-1d2a-4796-ad62-a455baaab9cc", + "373cb068-1d2a-4796-ad62-a455baaab9cc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "103" + ], + "x-ms-correlation-request-id": [ + "1adf7e8b-1975-4dee-8971-a2304b09a6e7" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220517T041906Z:1adf7e8b-1975-4dee-8971-a2304b09a6e7" + ], + "Date": [ + "Tue, 17 May 2022 04:19:06 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"136b4c06-6e99-4c08-84b7-c7f3310ace14\",\r\n \"name\": \"136b4c06-6e99-4c08-84b7-c7f3310ace14\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T04:18:37.8475598Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.RecoveryServices/vaults/PSTestRSV9e387301/backupOperations/136b4c06-6e99-4c08-84b7-c7f3310ace14?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOWUzODczMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5ZTM4NzMwMS9iYWNrdXBPcGVyYXRpb25zLzEzNmI0YzA2LTZlOTktNGMwOC04NGI3LWM3ZjMzMTBhY2UxND9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "373cb068-1d2a-4796-ad62-a455baaab9cc" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "95b4482d-a188-4b63-bfd4-99461b653f30" + ], + "x-ms-client-request-id": [ + "373cb068-1d2a-4796-ad62-a455baaab9cc", + "373cb068-1d2a-4796-ad62-a455baaab9cc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "102" + ], + "x-ms-correlation-request-id": [ + "95b4482d-a188-4b63-bfd4-99461b653f30" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220517T041912Z:95b4482d-a188-4b63-bfd4-99461b653f30" + ], + "Date": [ + "Tue, 17 May 2022 04:19:11 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"136b4c06-6e99-4c08-84b7-c7f3310ace14\",\r\n \"name\": \"136b4c06-6e99-4c08-84b7-c7f3310ace14\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T04:18:37.8475598Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.RecoveryServices/vaults/PSTestRSV9e387301/backupOperations/136b4c06-6e99-4c08-84b7-c7f3310ace14?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOWUzODczMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5ZTM4NzMwMS9iYWNrdXBPcGVyYXRpb25zLzEzNmI0YzA2LTZlOTktNGMwOC04NGI3LWM3ZjMzMTBhY2UxND9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "373cb068-1d2a-4796-ad62-a455baaab9cc" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "0de15756-7f70-4695-9a70-010fc4989da0" + ], + "x-ms-client-request-id": [ + "373cb068-1d2a-4796-ad62-a455baaab9cc", + "373cb068-1d2a-4796-ad62-a455baaab9cc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "101" + ], + "x-ms-correlation-request-id": [ + "0de15756-7f70-4695-9a70-010fc4989da0" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220517T041917Z:0de15756-7f70-4695-9a70-010fc4989da0" + ], + "Date": [ + "Tue, 17 May 2022 04:19:16 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"136b4c06-6e99-4c08-84b7-c7f3310ace14\",\r\n \"name\": \"136b4c06-6e99-4c08-84b7-c7f3310ace14\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T04:18:37.8475598Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.RecoveryServices/vaults/PSTestRSV9e387301/backupOperations/136b4c06-6e99-4c08-84b7-c7f3310ace14?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOWUzODczMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5ZTM4NzMwMS9iYWNrdXBPcGVyYXRpb25zLzEzNmI0YzA2LTZlOTktNGMwOC04NGI3LWM3ZjMzMTBhY2UxND9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "373cb068-1d2a-4796-ad62-a455baaab9cc" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "2ce511e2-f481-4e98-85e2-6b7145d6768a" + ], + "x-ms-client-request-id": [ + "373cb068-1d2a-4796-ad62-a455baaab9cc", + "373cb068-1d2a-4796-ad62-a455baaab9cc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "100" + ], + "x-ms-correlation-request-id": [ + "2ce511e2-f481-4e98-85e2-6b7145d6768a" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220517T041923Z:2ce511e2-f481-4e98-85e2-6b7145d6768a" + ], + "Date": [ + "Tue, 17 May 2022 04:19:22 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"136b4c06-6e99-4c08-84b7-c7f3310ace14\",\r\n \"name\": \"136b4c06-6e99-4c08-84b7-c7f3310ace14\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T04:18:37.8475598Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.RecoveryServices/vaults/PSTestRSV9e387301/backupOperations/136b4c06-6e99-4c08-84b7-c7f3310ace14?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOWUzODczMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5ZTM4NzMwMS9iYWNrdXBPcGVyYXRpb25zLzEzNmI0YzA2LTZlOTktNGMwOC04NGI3LWM3ZjMzMTBhY2UxND9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "373cb068-1d2a-4796-ad62-a455baaab9cc" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "4f47308f-899a-43bd-8f96-a0be5d875365" + ], + "x-ms-client-request-id": [ + "373cb068-1d2a-4796-ad62-a455baaab9cc", + "373cb068-1d2a-4796-ad62-a455baaab9cc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "99" + ], + "x-ms-correlation-request-id": [ + "4f47308f-899a-43bd-8f96-a0be5d875365" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220517T041928Z:4f47308f-899a-43bd-8f96-a0be5d875365" + ], + "Date": [ + "Tue, 17 May 2022 04:19:27 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"136b4c06-6e99-4c08-84b7-c7f3310ace14\",\r\n \"name\": \"136b4c06-6e99-4c08-84b7-c7f3310ace14\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T04:18:37.8475598Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.RecoveryServices/vaults/PSTestRSV9e387301/backupOperations/136b4c06-6e99-4c08-84b7-c7f3310ace14?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOWUzODczMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5ZTM4NzMwMS9iYWNrdXBPcGVyYXRpb25zLzEzNmI0YzA2LTZlOTktNGMwOC04NGI3LWM3ZjMzMTBhY2UxND9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "373cb068-1d2a-4796-ad62-a455baaab9cc" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "516dcb2b-b99c-4cb7-988f-55dd36cff57c" + ], + "x-ms-client-request-id": [ + "373cb068-1d2a-4796-ad62-a455baaab9cc", + "373cb068-1d2a-4796-ad62-a455baaab9cc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "98" + ], + "x-ms-correlation-request-id": [ + "516dcb2b-b99c-4cb7-988f-55dd36cff57c" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220517T041934Z:516dcb2b-b99c-4cb7-988f-55dd36cff57c" + ], + "Date": [ + "Tue, 17 May 2022 04:19:33 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"136b4c06-6e99-4c08-84b7-c7f3310ace14\",\r\n \"name\": \"136b4c06-6e99-4c08-84b7-c7f3310ace14\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T04:18:37.8475598Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.RecoveryServices/vaults/PSTestRSV9e387301/backupOperations/136b4c06-6e99-4c08-84b7-c7f3310ace14?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOWUzODczMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5ZTM4NzMwMS9iYWNrdXBPcGVyYXRpb25zLzEzNmI0YzA2LTZlOTktNGMwOC04NGI3LWM3ZjMzMTBhY2UxND9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "373cb068-1d2a-4796-ad62-a455baaab9cc" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "db440f37-db1a-441f-867f-fdb0444a30f1" + ], + "x-ms-client-request-id": [ + "373cb068-1d2a-4796-ad62-a455baaab9cc", + "373cb068-1d2a-4796-ad62-a455baaab9cc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "97" + ], + "x-ms-correlation-request-id": [ + "db440f37-db1a-441f-867f-fdb0444a30f1" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220517T041939Z:db440f37-db1a-441f-867f-fdb0444a30f1" + ], + "Date": [ + "Tue, 17 May 2022 04:19:38 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"136b4c06-6e99-4c08-84b7-c7f3310ace14\",\r\n \"name\": \"136b4c06-6e99-4c08-84b7-c7f3310ace14\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T04:18:37.8475598Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.RecoveryServices/vaults/PSTestRSV9e387301/backupOperations/136b4c06-6e99-4c08-84b7-c7f3310ace14?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOWUzODczMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5ZTM4NzMwMS9iYWNrdXBPcGVyYXRpb25zLzEzNmI0YzA2LTZlOTktNGMwOC04NGI3LWM3ZjMzMTBhY2UxND9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "373cb068-1d2a-4796-ad62-a455baaab9cc" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "78fb18ce-a3c3-463a-b334-f48431057f51" + ], + "x-ms-client-request-id": [ + "373cb068-1d2a-4796-ad62-a455baaab9cc", + "373cb068-1d2a-4796-ad62-a455baaab9cc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "96" + ], + "x-ms-correlation-request-id": [ + "78fb18ce-a3c3-463a-b334-f48431057f51" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220517T041945Z:78fb18ce-a3c3-463a-b334-f48431057f51" + ], + "Date": [ + "Tue, 17 May 2022 04:19:44 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"136b4c06-6e99-4c08-84b7-c7f3310ace14\",\r\n \"name\": \"136b4c06-6e99-4c08-84b7-c7f3310ace14\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T04:18:37.8475598Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.RecoveryServices/vaults/PSTestRSV9e387301/backupOperations/136b4c06-6e99-4c08-84b7-c7f3310ace14?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOWUzODczMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5ZTM4NzMwMS9iYWNrdXBPcGVyYXRpb25zLzEzNmI0YzA2LTZlOTktNGMwOC04NGI3LWM3ZjMzMTBhY2UxND9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "373cb068-1d2a-4796-ad62-a455baaab9cc" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "b85f649d-5345-43c7-b2ef-9714afe274dd" + ], + "x-ms-client-request-id": [ + "373cb068-1d2a-4796-ad62-a455baaab9cc", + "373cb068-1d2a-4796-ad62-a455baaab9cc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "95" + ], + "x-ms-correlation-request-id": [ + "b85f649d-5345-43c7-b2ef-9714afe274dd" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220517T041950Z:b85f649d-5345-43c7-b2ef-9714afe274dd" + ], + "Date": [ + "Tue, 17 May 2022 04:19:49 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"136b4c06-6e99-4c08-84b7-c7f3310ace14\",\r\n \"name\": \"136b4c06-6e99-4c08-84b7-c7f3310ace14\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T04:18:37.8475598Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.RecoveryServices/vaults/PSTestRSV9e387301/backupOperations/136b4c06-6e99-4c08-84b7-c7f3310ace14?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOWUzODczMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5ZTM4NzMwMS9iYWNrdXBPcGVyYXRpb25zLzEzNmI0YzA2LTZlOTktNGMwOC04NGI3LWM3ZjMzMTBhY2UxND9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "373cb068-1d2a-4796-ad62-a455baaab9cc" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "f3c4b9a1-6963-4282-bce7-8b45566bf3bf" + ], + "x-ms-client-request-id": [ + "373cb068-1d2a-4796-ad62-a455baaab9cc", + "373cb068-1d2a-4796-ad62-a455baaab9cc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "94" + ], + "x-ms-correlation-request-id": [ + "f3c4b9a1-6963-4282-bce7-8b45566bf3bf" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220517T041956Z:f3c4b9a1-6963-4282-bce7-8b45566bf3bf" + ], + "Date": [ + "Tue, 17 May 2022 04:19:56 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"136b4c06-6e99-4c08-84b7-c7f3310ace14\",\r\n \"name\": \"136b4c06-6e99-4c08-84b7-c7f3310ace14\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T04:18:37.8475598Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.RecoveryServices/vaults/PSTestRSV9e387301/backupOperations/136b4c06-6e99-4c08-84b7-c7f3310ace14?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOWUzODczMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5ZTM4NzMwMS9iYWNrdXBPcGVyYXRpb25zLzEzNmI0YzA2LTZlOTktNGMwOC04NGI3LWM3ZjMzMTBhY2UxND9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "373cb068-1d2a-4796-ad62-a455baaab9cc" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "2077e0f6-a3e3-43d6-ba95-733acf97cb98" + ], + "x-ms-client-request-id": [ + "373cb068-1d2a-4796-ad62-a455baaab9cc", + "373cb068-1d2a-4796-ad62-a455baaab9cc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "93" + ], + "x-ms-correlation-request-id": [ + "2077e0f6-a3e3-43d6-ba95-733acf97cb98" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220517T042001Z:2077e0f6-a3e3-43d6-ba95-733acf97cb98" + ], + "Date": [ + "Tue, 17 May 2022 04:20:01 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"136b4c06-6e99-4c08-84b7-c7f3310ace14\",\r\n \"name\": \"136b4c06-6e99-4c08-84b7-c7f3310ace14\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T04:18:37.8475598Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.RecoveryServices/vaults/PSTestRSV9e387301/backupOperations/136b4c06-6e99-4c08-84b7-c7f3310ace14?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOWUzODczMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5ZTM4NzMwMS9iYWNrdXBPcGVyYXRpb25zLzEzNmI0YzA2LTZlOTktNGMwOC04NGI3LWM3ZjMzMTBhY2UxND9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "373cb068-1d2a-4796-ad62-a455baaab9cc" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "3f51dd06-6a03-4eed-9cec-6bea970babd8" + ], + "x-ms-client-request-id": [ + "373cb068-1d2a-4796-ad62-a455baaab9cc", + "373cb068-1d2a-4796-ad62-a455baaab9cc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "92" + ], + "x-ms-correlation-request-id": [ + "3f51dd06-6a03-4eed-9cec-6bea970babd8" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220517T042007Z:3f51dd06-6a03-4eed-9cec-6bea970babd8" + ], + "Date": [ + "Tue, 17 May 2022 04:20:07 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"136b4c06-6e99-4c08-84b7-c7f3310ace14\",\r\n \"name\": \"136b4c06-6e99-4c08-84b7-c7f3310ace14\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T04:18:37.8475598Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.RecoveryServices/vaults/PSTestRSV9e387301/backupOperations/136b4c06-6e99-4c08-84b7-c7f3310ace14?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOWUzODczMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5ZTM4NzMwMS9iYWNrdXBPcGVyYXRpb25zLzEzNmI0YzA2LTZlOTktNGMwOC04NGI3LWM3ZjMzMTBhY2UxND9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "373cb068-1d2a-4796-ad62-a455baaab9cc" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "b087bd69-6a79-4a65-81b5-b48bb620f525" + ], + "x-ms-client-request-id": [ + "373cb068-1d2a-4796-ad62-a455baaab9cc", + "373cb068-1d2a-4796-ad62-a455baaab9cc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "91" + ], + "x-ms-correlation-request-id": [ + "b087bd69-6a79-4a65-81b5-b48bb620f525" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220517T042012Z:b087bd69-6a79-4a65-81b5-b48bb620f525" + ], + "Date": [ + "Tue, 17 May 2022 04:20:12 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"136b4c06-6e99-4c08-84b7-c7f3310ace14\",\r\n \"name\": \"136b4c06-6e99-4c08-84b7-c7f3310ace14\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T04:18:37.8475598Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.RecoveryServices/vaults/PSTestRSV9e387301/backupOperations/136b4c06-6e99-4c08-84b7-c7f3310ace14?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOWUzODczMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5ZTM4NzMwMS9iYWNrdXBPcGVyYXRpb25zLzEzNmI0YzA2LTZlOTktNGMwOC04NGI3LWM3ZjMzMTBhY2UxND9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "373cb068-1d2a-4796-ad62-a455baaab9cc" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "ba165893-6af2-427f-8a39-5771bfd4ac51" + ], + "x-ms-client-request-id": [ + "373cb068-1d2a-4796-ad62-a455baaab9cc", + "373cb068-1d2a-4796-ad62-a455baaab9cc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "90" + ], + "x-ms-correlation-request-id": [ + "ba165893-6af2-427f-8a39-5771bfd4ac51" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220517T042018Z:ba165893-6af2-427f-8a39-5771bfd4ac51" + ], + "Date": [ + "Tue, 17 May 2022 04:20:17 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"136b4c06-6e99-4c08-84b7-c7f3310ace14\",\r\n \"name\": \"136b4c06-6e99-4c08-84b7-c7f3310ace14\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T04:18:37.8475598Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.RecoveryServices/vaults/PSTestRSV9e387301/backupOperations/136b4c06-6e99-4c08-84b7-c7f3310ace14?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOWUzODczMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5ZTM4NzMwMS9iYWNrdXBPcGVyYXRpb25zLzEzNmI0YzA2LTZlOTktNGMwOC04NGI3LWM3ZjMzMTBhY2UxND9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "373cb068-1d2a-4796-ad62-a455baaab9cc" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "5c609f02-b980-41c4-8f99-e29bd85c0db8" + ], + "x-ms-client-request-id": [ + "373cb068-1d2a-4796-ad62-a455baaab9cc", + "373cb068-1d2a-4796-ad62-a455baaab9cc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "89" + ], + "x-ms-correlation-request-id": [ + "5c609f02-b980-41c4-8f99-e29bd85c0db8" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220517T042023Z:5c609f02-b980-41c4-8f99-e29bd85c0db8" + ], + "Date": [ + "Tue, 17 May 2022 04:20:23 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"136b4c06-6e99-4c08-84b7-c7f3310ace14\",\r\n \"name\": \"136b4c06-6e99-4c08-84b7-c7f3310ace14\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T04:18:37.8475598Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.RecoveryServices/vaults/PSTestRSV9e387301/backupOperations/136b4c06-6e99-4c08-84b7-c7f3310ace14?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOWUzODczMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5ZTM4NzMwMS9iYWNrdXBPcGVyYXRpb25zLzEzNmI0YzA2LTZlOTktNGMwOC04NGI3LWM3ZjMzMTBhY2UxND9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "373cb068-1d2a-4796-ad62-a455baaab9cc" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "141ea07b-df9a-4e7e-9528-ca552947dc8c" + ], + "x-ms-client-request-id": [ + "373cb068-1d2a-4796-ad62-a455baaab9cc", + "373cb068-1d2a-4796-ad62-a455baaab9cc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "88" + ], + "x-ms-correlation-request-id": [ + "141ea07b-df9a-4e7e-9528-ca552947dc8c" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220517T042029Z:141ea07b-df9a-4e7e-9528-ca552947dc8c" + ], + "Date": [ + "Tue, 17 May 2022 04:20:28 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"136b4c06-6e99-4c08-84b7-c7f3310ace14\",\r\n \"name\": \"136b4c06-6e99-4c08-84b7-c7f3310ace14\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T04:18:37.8475598Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.RecoveryServices/vaults/PSTestRSV9e387301/backupOperations/136b4c06-6e99-4c08-84b7-c7f3310ace14?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOWUzODczMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5ZTM4NzMwMS9iYWNrdXBPcGVyYXRpb25zLzEzNmI0YzA2LTZlOTktNGMwOC04NGI3LWM3ZjMzMTBhY2UxND9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "373cb068-1d2a-4796-ad62-a455baaab9cc" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "297f3d14-c1c2-43d6-b622-ce56fafc0fec" + ], + "x-ms-client-request-id": [ + "373cb068-1d2a-4796-ad62-a455baaab9cc", + "373cb068-1d2a-4796-ad62-a455baaab9cc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "87" + ], + "x-ms-correlation-request-id": [ + "297f3d14-c1c2-43d6-b622-ce56fafc0fec" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220517T042034Z:297f3d14-c1c2-43d6-b622-ce56fafc0fec" + ], + "Date": [ + "Tue, 17 May 2022 04:20:34 GMT" + ], + "Content-Length": [ + "304" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"136b4c06-6e99-4c08-84b7-c7f3310ace14\",\r\n \"name\": \"136b4c06-6e99-4c08-84b7-c7f3310ace14\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-05-17T04:18:37.8475598Z\",\r\n \"endTime\": \"2022-05-17T04:18:37.8475598Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"c8fcee34-6257-46cb-9508-a57fc939a715\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.RecoveryServices/vaults/PSTestRSV9e387301/backupOperations/136b4c06-6e99-4c08-84b7-c7f3310ace14?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOWUzODczMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5ZTM4NzMwMS9iYWNrdXBPcGVyYXRpb25zLzEzNmI0YzA2LTZlOTktNGMwOC04NGI3LWM3ZjMzMTBhY2UxND9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "373cb068-1d2a-4796-ad62-a455baaab9cc" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "e9f62203-cbe5-4766-836f-af46a4f91861" + ], + "x-ms-client-request-id": [ + "373cb068-1d2a-4796-ad62-a455baaab9cc", + "373cb068-1d2a-4796-ad62-a455baaab9cc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "86" + ], + "x-ms-correlation-request-id": [ + "e9f62203-cbe5-4766-836f-af46a4f91861" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220517T042035Z:e9f62203-cbe5-4766-836f-af46a4f91861" + ], + "Date": [ + "Tue, 17 May 2022 04:20:34 GMT" + ], + "Content-Length": [ + "304" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"136b4c06-6e99-4c08-84b7-c7f3310ace14\",\r\n \"name\": \"136b4c06-6e99-4c08-84b7-c7f3310ace14\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-05-17T04:18:37.8475598Z\",\r\n \"endTime\": \"2022-05-17T04:18:37.8475598Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"c8fcee34-6257-46cb-9508-a57fc939a715\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.RecoveryServices/vaults/PSTestRSV9e387301/backupJobs/c8fcee34-6257-46cb-9508-a57fc939a715?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOWUzODczMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5ZTM4NzMwMS9iYWNrdXBKb2JzL2M4ZmNlZTM0LTYyNTctNDZjYi05NTA4LWE1N2ZjOTM5YTcxNT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "373cb068-1d2a-4796-ad62-a455baaab9cc" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.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": [ + "e5384f7a-c471-4e7d-8465-2d0e3e18ce0e" + ], + "x-ms-client-request-id": [ + "373cb068-1d2a-4796-ad62-a455baaab9cc", + "373cb068-1d2a-4796-ad62-a455baaab9cc" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "146" + ], + "x-ms-correlation-request-id": [ + "e5384f7a-c471-4e7d-8465-2d0e3e18ce0e" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220517T042035Z:e5384f7a-c471-4e7d-8465-2d0e3e18ce0e" + ], + "Date": [ + "Tue, 17 May 2022 04:20:35 GMT" + ], + "Content-Length": [ + "848" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.RecoveryServices/vaults/PSTestRSV9e387301/backupJobs/c8fcee34-6257-46cb-9508-a57fc939a715\",\r\n \"name\": \"c8fcee34-6257-46cb-9508-a57fc939a715\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg9e387301;pstestvm9e38712\",\r\n \"duration\": \"PT1M51.5002614S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"VM Name\": \"PSTestVM9e38712\",\r\n \"Number of Recovery Points\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"PSTestVM9e38712\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"DeleteBackupData\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-05-17T04:18:37.8475598Z\",\r\n \"endTime\": \"2022-05-17T04:20:29.3478212Z\",\r\n \"activityId\": \"373cb068-1d2a-4796-ad62-a455baaab9cc\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG9e387301/providers/Microsoft.RecoveryServices/vaults/PSTestRSV9e387301?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOWUzODczMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5ZTM4NzMwMT9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7c740802-5954-4d10-9267-4d3f2ed50176" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesClient/4.3.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "54a8eab0-1b07-4519-a223-4e6e6c30c597" + ], + "x-ms-client-request-id": [ + "7c740802-5954-4d10-9267-4d3f2ed50176" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "9" + ], + "x-ms-correlation-request-id": [ + "54a8eab0-1b07-4519-a223-4e6e6c30c597" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220517T042043Z:54a8eab0-1b07-4519-a223-4e6e6c30c597" + ], + "Date": [ + "Tue, 17 May 2022 04:20:43 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourcegroups/PSTestRG9e387301?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlZ3JvdXBzL1BTVGVzdFJHOWUzODczMDE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0c59d7d2-1c2d-4b84-91a4-a8c0e99e09f1" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzlFMzg3MzAxLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-request-id": [ + "550262a5-e517-49ec-bc49-f4c639cc4ee9" + ], + "x-ms-correlation-request-id": [ + "550262a5-e517-49ec-bc49-f4c639cc4ee9" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220517T042046Z:550262a5-e517-49ec-bc49-f4c639cc4ee9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 17 May 2022 04:20:45 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzlFMzg3MzAxLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemxGTXpnM016QXhMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzlFMzg3MzAxLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "2b897bd6-0b5b-482e-8dcd-3fef8bb02747" + ], + "x-ms-correlation-request-id": [ + "2b897bd6-0b5b-482e-8dcd-3fef8bb02747" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220517T042101Z:2b897bd6-0b5b-482e-8dcd-3fef8bb02747" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 17 May 2022 04:21:00 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzlFMzg3MzAxLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemxGTXpnM016QXhMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzlFMzg3MzAxLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "50f1808b-dd3c-4bc3-8c25-fcc0143516cd" + ], + "x-ms-correlation-request-id": [ + "50f1808b-dd3c-4bc3-8c25-fcc0143516cd" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220517T042116Z:50f1808b-dd3c-4bc3-8c25-fcc0143516cd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 17 May 2022 04:21:16 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzlFMzg3MzAxLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemxGTXpnM016QXhMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzlFMzg3MzAxLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-request-id": [ + "ce3f7d47-00a0-452e-b814-166152bf665d" + ], + "x-ms-correlation-request-id": [ + "ce3f7d47-00a0-452e-b814-166152bf665d" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220517T042131Z:ce3f7d47-00a0-452e-b814-166152bf665d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 17 May 2022 04:21:31 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzlFMzg3MzAxLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemxGTXpnM016QXhMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzlFMzg3MzAxLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-request-id": [ + "25daa466-2b46-4dd9-8a0a-7421629cf91e" + ], + "x-ms-correlation-request-id": [ + "25daa466-2b46-4dd9-8a0a-7421629cf91e" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220517T042147Z:25daa466-2b46-4dd9-8a0a-7421629cf91e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 17 May 2022 04:21:46 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzlFMzg3MzAxLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemxGTXpnM016QXhMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzlFMzg3MzAxLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-request-id": [ + "334ee4c7-4ade-4cd2-82e8-422007021b8b" + ], + "x-ms-correlation-request-id": [ + "334ee4c7-4ade-4cd2-82e8-422007021b8b" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220517T042202Z:334ee4c7-4ade-4cd2-82e8-422007021b8b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 24 Feb 2022 21:19:10 GMT" + "Tue, 17 May 2022 04:22:02 GMT" ], "Expires": [ "-1" @@ -10812,16 +13419,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0RCQkJFMkNBLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSMFJDUWtKRk1rTkJMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzlFMzg3MzAxLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemxGTXpnM016QXhMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" ] }, "ResponseHeaders": { @@ -10832,22 +13439,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0RCQkJFMkNBLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzlFMzg3MzAxLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11994" ], "x-ms-request-id": [ - "5f36d426-b45d-48f8-a3f2-dbda2b781ee3" + "88851903-5a6e-4e6f-858e-6b1eca4d84a7" ], "x-ms-correlation-request-id": [ - "5f36d426-b45d-48f8-a3f2-dbda2b781ee3" + "88851903-5a6e-4e6f-858e-6b1eca4d84a7" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T211926Z:5f36d426-b45d-48f8-a3f2-dbda2b781ee3" + "WESTINDIA:20220517T042217Z:88851903-5a6e-4e6f-858e-6b1eca4d84a7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -10856,7 +13463,7 @@ "nosniff" ], "Date": [ - "Thu, 24 Feb 2022 21:19:25 GMT" + "Tue, 17 May 2022 04:22:17 GMT" ], "Expires": [ "-1" @@ -10869,16 +13476,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0RCQkJFMkNBLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSMFJDUWtKRk1rTkJMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzlFMzg3MzAxLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemxGTXpnM016QXhMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" ] }, "ResponseHeaders": { @@ -10889,22 +13496,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0RCQkJFMkNBLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzlFMzg3MzAxLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11993" ], "x-ms-request-id": [ - "5ef05c09-bd1f-4ea1-83c3-a65799e20bd7" + "38fce579-2536-4d9d-b6b5-965155682d84" ], "x-ms-correlation-request-id": [ - "5ef05c09-bd1f-4ea1-83c3-a65799e20bd7" + "38fce579-2536-4d9d-b6b5-965155682d84" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T211942Z:5ef05c09-bd1f-4ea1-83c3-a65799e20bd7" + "WESTINDIA:20220517T042232Z:38fce579-2536-4d9d-b6b5-965155682d84" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -10913,7 +13520,7 @@ "nosniff" ], "Date": [ - "Thu, 24 Feb 2022 21:19:42 GMT" + "Tue, 17 May 2022 04:22:32 GMT" ], "Expires": [ "-1" @@ -10926,16 +13533,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0RCQkJFMkNBLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSMFJDUWtKRk1rTkJMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzlFMzg3MzAxLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemxGTXpnM016QXhMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" ] }, "ResponseHeaders": { @@ -10946,22 +13553,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0RCQkJFMkNBLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzlFMzg3MzAxLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11992" ], "x-ms-request-id": [ - "35a67c0e-3a0d-4575-8412-b1015c6f6156" + "4860991d-605e-496b-9b2b-6f39dca0590a" ], "x-ms-correlation-request-id": [ - "35a67c0e-3a0d-4575-8412-b1015c6f6156" + "4860991d-605e-496b-9b2b-6f39dca0590a" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T211957Z:35a67c0e-3a0d-4575-8412-b1015c6f6156" + "WESTINDIA:20220517T042247Z:4860991d-605e-496b-9b2b-6f39dca0590a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -10970,7 +13577,7 @@ "nosniff" ], "Date": [ - "Thu, 24 Feb 2022 21:19:57 GMT" + "Tue, 17 May 2022 04:22:47 GMT" ], "Expires": [ "-1" @@ -10983,16 +13590,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0RCQkJFMkNBLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSMFJDUWtKRk1rTkJMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzlFMzg3MzAxLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemxGTXpnM016QXhMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" ] }, "ResponseHeaders": { @@ -11003,22 +13610,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0RCQkJFMkNBLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzlFMzg3MzAxLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11991" ], "x-ms-request-id": [ - "08a386f7-1a0f-48ce-ac00-19957ca0fe78" + "eb078367-dad7-4915-ae47-d1312fffb73f" ], "x-ms-correlation-request-id": [ - "08a386f7-1a0f-48ce-ac00-19957ca0fe78" + "eb078367-dad7-4915-ae47-d1312fffb73f" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T212013Z:08a386f7-1a0f-48ce-ac00-19957ca0fe78" + "WESTINDIA:20220517T042303Z:eb078367-dad7-4915-ae47-d1312fffb73f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -11027,7 +13634,7 @@ "nosniff" ], "Date": [ - "Thu, 24 Feb 2022 21:20:12 GMT" + "Tue, 17 May 2022 04:23:02 GMT" ], "Expires": [ "-1" @@ -11040,16 +13647,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0RCQkJFMkNBLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSMFJDUWtKRk1rTkJMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzlFMzg3MzAxLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemxGTXpnM016QXhMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" ] }, "ResponseHeaders": { @@ -11060,22 +13667,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0RCQkJFMkNBLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzlFMzg3MzAxLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11990" ], "x-ms-request-id": [ - "cdcbd179-6017-4969-87b6-597c6539e02a" + "82aed366-36cb-4960-9869-47598d4d87d6" ], "x-ms-correlation-request-id": [ - "cdcbd179-6017-4969-87b6-597c6539e02a" + "82aed366-36cb-4960-9869-47598d4d87d6" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T212028Z:cdcbd179-6017-4969-87b6-597c6539e02a" + "WESTINDIA:20220517T042318Z:82aed366-36cb-4960-9869-47598d4d87d6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -11084,7 +13691,7 @@ "nosniff" ], "Date": [ - "Thu, 24 Feb 2022 21:20:28 GMT" + "Tue, 17 May 2022 04:23:17 GMT" ], "Expires": [ "-1" @@ -11097,16 +13704,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0RCQkJFMkNBLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSMFJDUWtKRk1rTkJMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzlFMzg3MzAxLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemxGTXpnM016QXhMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" ] }, "ResponseHeaders": { @@ -11117,22 +13724,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0RCQkJFMkNBLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzlFMzg3MzAxLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11989" ], "x-ms-request-id": [ - "dbb5ba88-0678-4278-b7bb-10ac5fd772f4" + "ce078999-585c-4531-acf3-0eb47f66844c" ], "x-ms-correlation-request-id": [ - "dbb5ba88-0678-4278-b7bb-10ac5fd772f4" + "ce078999-585c-4531-acf3-0eb47f66844c" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T212044Z:dbb5ba88-0678-4278-b7bb-10ac5fd772f4" + "WESTINDIA:20220517T042333Z:ce078999-585c-4531-acf3-0eb47f66844c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -11141,7 +13748,7 @@ "nosniff" ], "Date": [ - "Thu, 24 Feb 2022 21:20:43 GMT" + "Tue, 17 May 2022 04:23:32 GMT" ], "Expires": [ "-1" @@ -11154,16 +13761,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0RCQkJFMkNBLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSMFJDUWtKRk1rTkJMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzlFMzg3MzAxLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemxGTXpnM016QXhMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" ] }, "ResponseHeaders": { @@ -11174,22 +13781,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0RCQkJFMkNBLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzlFMzg3MzAxLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11988" ], "x-ms-request-id": [ - "140d6823-121f-4ecd-96a2-a2d3df8e7100" + "b12d3666-7dde-4b59-9270-afcb28c8d298" ], "x-ms-correlation-request-id": [ - "140d6823-121f-4ecd-96a2-a2d3df8e7100" + "b12d3666-7dde-4b59-9270-afcb28c8d298" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T212059Z:140d6823-121f-4ecd-96a2-a2d3df8e7100" + "WESTINDIA:20220517T042348Z:b12d3666-7dde-4b59-9270-afcb28c8d298" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -11198,7 +13805,7 @@ "nosniff" ], "Date": [ - "Thu, 24 Feb 2022 21:20:58 GMT" + "Tue, 17 May 2022 04:23:48 GMT" ], "Expires": [ "-1" @@ -11211,16 +13818,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0RCQkJFMkNBLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSMFJDUWtKRk1rTkJMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzlFMzg3MzAxLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemxGTXpnM016QXhMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" ] }, "ResponseHeaders": { @@ -11231,22 +13838,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0RCQkJFMkNBLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzlFMzg3MzAxLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11987" ], "x-ms-request-id": [ - "275e3c30-a381-4aa0-a326-d85a13ee31ad" + "f55ccb90-8c62-4689-a0b2-d3aeb96cf061" ], "x-ms-correlation-request-id": [ - "275e3c30-a381-4aa0-a326-d85a13ee31ad" + "f55ccb90-8c62-4689-a0b2-d3aeb96cf061" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T212115Z:275e3c30-a381-4aa0-a326-d85a13ee31ad" + "WESTINDIA:20220517T042404Z:f55ccb90-8c62-4689-a0b2-d3aeb96cf061" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -11255,7 +13862,7 @@ "nosniff" ], "Date": [ - "Thu, 24 Feb 2022 21:21:15 GMT" + "Tue, 17 May 2022 04:24:03 GMT" ], "Expires": [ "-1" @@ -11268,16 +13875,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0RCQkJFMkNBLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSMFJDUWtKRk1rTkJMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzlFMzg3MzAxLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemxGTXpnM016QXhMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" ] }, "ResponseHeaders": { @@ -11288,22 +13895,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0RCQkJFMkNBLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzlFMzg3MzAxLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11986" ], "x-ms-request-id": [ - "df624852-c9db-4c9d-9349-9252984a0a40" + "7c424169-0f51-4fc4-804e-b082950c997e" ], "x-ms-correlation-request-id": [ - "df624852-c9db-4c9d-9349-9252984a0a40" + "7c424169-0f51-4fc4-804e-b082950c997e" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T212130Z:df624852-c9db-4c9d-9349-9252984a0a40" + "WESTINDIA:20220517T042419Z:7c424169-0f51-4fc4-804e-b082950c997e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -11312,7 +13919,7 @@ "nosniff" ], "Date": [ - "Thu, 24 Feb 2022 21:21:30 GMT" + "Tue, 17 May 2022 04:24:18 GMT" ], "Expires": [ "-1" @@ -11325,16 +13932,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0RCQkJFMkNBLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSMFJDUWtKRk1rTkJMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzlFMzg3MzAxLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemxGTXpnM016QXhMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" ] }, "ResponseHeaders": { @@ -11345,22 +13952,79 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0RCQkJFMkNBLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzlFMzg3MzAxLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11985" + ], + "x-ms-request-id": [ + "7288a4af-d6ab-489c-828c-d63fd620c333" + ], + "x-ms-correlation-request-id": [ + "7288a4af-d6ab-489c-828c-d63fd620c333" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220517T042434Z:7288a4af-d6ab-489c-828c-d63fd620c333" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 17 May 2022 04:24:34 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzlFMzg3MzAxLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemxGTXpnM016QXhMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzlFMzg3MzAxLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11984" ], "x-ms-request-id": [ - "03d2a88c-23d7-4b03-a688-c39f49205f39" + "abcfd802-daac-48ed-a7f4-4318a3816a01" ], "x-ms-correlation-request-id": [ - "03d2a88c-23d7-4b03-a688-c39f49205f39" + "abcfd802-daac-48ed-a7f4-4318a3816a01" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T212146Z:03d2a88c-23d7-4b03-a688-c39f49205f39" + "WESTINDIA:20220517T042449Z:abcfd802-daac-48ed-a7f4-4318a3816a01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -11369,7 +14033,7 @@ "nosniff" ], "Date": [ - "Thu, 24 Feb 2022 21:21:46 GMT" + "Tue, 17 May 2022 04:24:49 GMT" ], "Expires": [ "-1" @@ -11382,16 +14046,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0RCQkJFMkNBLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSMFJDUWtKRk1rTkJMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzlFMzg3MzAxLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemxGTXpnM016QXhMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" ] }, "ResponseHeaders": { @@ -11401,17 +14065,188 @@ "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzlFMzg3MzAxLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "11983" + ], + "x-ms-request-id": [ + "31355d43-e3bd-4a7a-9bc0-80988a1a760a" + ], + "x-ms-correlation-request-id": [ + "31355d43-e3bd-4a7a-9bc0-80988a1a760a" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220517T042504Z:31355d43-e3bd-4a7a-9bc0-80988a1a760a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 17 May 2022 04:25:04 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzlFMzg3MzAxLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemxGTXpnM016QXhMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzlFMzg3MzAxLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11982" + ], + "x-ms-request-id": [ + "03d1be0b-9e5f-433c-a5b2-ee252ffa27d2" + ], + "x-ms-correlation-request-id": [ + "03d1be0b-9e5f-433c-a5b2-ee252ffa27d2" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220517T042520Z:03d1be0b-9e5f-433c-a5b2-ee252ffa27d2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 17 May 2022 04:25:19 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzlFMzg3MzAxLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemxGTXpnM016QXhMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzlFMzg3MzAxLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11981" + ], + "x-ms-request-id": [ + "82405c6c-4768-458a-819a-b44f24b1ef2f" + ], + "x-ms-correlation-request-id": [ + "82405c6c-4768-458a-819a-b44f24b1ef2f" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220517T042535Z:82405c6c-4768-458a-819a-b44f24b1ef2f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 17 May 2022 04:25:35 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzlFMzg3MzAxLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemxGTXpnM016QXhMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11980" ], "x-ms-request-id": [ - "0f1c4bb7-f432-4c0b-b36d-60d8c9008092" + "82509adc-ad47-481b-b5e6-d8da6d2ac423" ], "x-ms-correlation-request-id": [ - "0f1c4bb7-f432-4c0b-b36d-60d8c9008092" + "82509adc-ad47-481b-b5e6-d8da6d2ac423" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T212201Z:0f1c4bb7-f432-4c0b-b36d-60d8c9008092" + "WESTINDIA:20220517T042550Z:82509adc-ad47-481b-b5e6-d8da6d2ac423" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -11420,7 +14255,7 @@ "nosniff" ], "Date": [ - "Thu, 24 Feb 2022 21:22:01 GMT" + "Tue, 17 May 2022 04:25:50 GMT" ], "Expires": [ "-1" @@ -11433,16 +14268,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0RCQkJFMkNBLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSMFJDUWtKRk1rTkJMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzlFMzg3MzAxLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemxGTXpnM016QXhMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" ] }, "ResponseHeaders": { @@ -11453,16 +14288,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "11979" ], "x-ms-request-id": [ - "0801d752-c4fa-4eff-9be4-76a41b084406" + "f7785d2f-bbbe-44f2-b7b5-d733b9fc2196" ], "x-ms-correlation-request-id": [ - "0801d752-c4fa-4eff-9be4-76a41b084406" + "f7785d2f-bbbe-44f2-b7b5-d733b9fc2196" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T212202Z:0801d752-c4fa-4eff-9be4-76a41b084406" + "WESTINDIA:20220517T042550Z:f7785d2f-bbbe-44f2-b7b5-d733b9fc2196" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -11471,7 +14306,7 @@ "nosniff" ], "Date": [ - "Thu, 24 Feb 2022 21:22:02 GMT" + "Tue, 17 May 2022 04:25:50 GMT" ], "Expires": [ "-1" @@ -11486,7 +14321,7 @@ ], "Names": {}, "Variables": { - "SubscriptionId": "e37510d7-33b6-4676-886f-ee75bcc01871", - "NamingSuffix": "dbbbe2ca-133d-4f56-a37c-670c775f1489" + "SubscriptionId": "da364f0f-307b-41c9-9d47-b7413ec45535", + "NamingSuffix": "9e387301-0cc0-4a9b-b291-7aff7955a9cf" } } \ No newline at end of file diff --git a/src/RecoveryServices/RecoveryServices.Backup.Test/SessionRecords/Microsoft.Azure.Commands.RecoveryServices.Backup.Test.ScenarioTests.ItemTests/TestAzureVMGetRPs.json b/src/RecoveryServices/RecoveryServices.Backup.Test/SessionRecords/Microsoft.Azure.Commands.RecoveryServices.Backup.Test.ScenarioTests.ItemTests/TestAzureVMGetRPs.json index e703cac74e46..085a05f0313a 100644 --- a/src/RecoveryServices/RecoveryServices.Backup.Test/SessionRecords/Microsoft.Azure.Commands.RecoveryServices.Backup.Test.ScenarioTests.ItemTests/TestAzureVMGetRPs.json +++ b/src/RecoveryServices/RecoveryServices.Backup.Test/SessionRecords/Microsoft.Azure.Commands.RecoveryServices.Backup.Test.ScenarioTests.ItemTests/TestAzureVMGetRPs.json @@ -1,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourcegroups/PSTestRG8c1d8dac?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlZ3JvdXBzL1BTVGVzdFJHOGMxZDhkYWM/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourcegroups/PSTestRG93055a66?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlZ3JvdXBzL1BTVGVzdFJHOTMwNTVhNjY/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2e58d303-0488-4aad-a174-d9487306e573" + "b14394f8-40c6-4e18-a744-95e4f53e79f1" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" ] }, "ResponseHeaders": { @@ -30,16 +30,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11998" ], "x-ms-request-id": [ - "463ce670-bda1-413e-be1b-241332f0d5ac" + "426662fa-2ccb-46a1-800e-acd2cb7f8cda" ], "x-ms-correlation-request-id": [ - "463ce670-bda1-413e-be1b-241332f0d5ac" + "426662fa-2ccb-46a1-800e-acd2cb7f8cda" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220225T000003Z:463ce670-bda1-413e-be1b-241332f0d5ac" + "WESTINDIA:20220517T073234Z:426662fa-2ccb-46a1-800e-acd2cb7f8cda" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -48,7 +48,7 @@ "nosniff" ], "Date": [ - "Fri, 25 Feb 2022 00:00:03 GMT" + "Tue, 17 May 2022 07:32:34 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -60,26 +60,26 @@ "108" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'PSTestRG8c1d8dac' could not be found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'PSTestRG93055a66' could not be found.\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourcegroups/PSTestRG8c1d8dac?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlZ3JvdXBzL1BTVGVzdFJHOGMxZDhkYWM/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourcegroups/PSTestRG93055a66?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlZ3JvdXBzL1BTVGVzdFJHOTMwNTVhNjY/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4d74ee4c-2c88-494c-941d-38bf7b4ca8b7" + "462afa91-c39a-4e89-a312-b762ef3032cd" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" ] }, "ResponseHeaders": { @@ -90,16 +90,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11998" ], "x-ms-request-id": [ - "504da5ff-9069-4d77-ada7-d7ac47e804cc" + "677c9f38-a0e5-4f5e-a7e1-abac846ae0c4" ], "x-ms-correlation-request-id": [ - "504da5ff-9069-4d77-ada7-d7ac47e804cc" + "677c9f38-a0e5-4f5e-a7e1-abac846ae0c4" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220225T005850Z:504da5ff-9069-4d77-ada7-d7ac47e804cc" + "JIOINDIAWEST:20220517T081034Z:677c9f38-a0e5-4f5e-a7e1-abac846ae0c4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -108,7 +108,7 @@ "nosniff" ], "Date": [ - "Fri, 25 Feb 2022 00:58:49 GMT" + "Tue, 17 May 2022 08:10:33 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -120,26 +120,26 @@ "192" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac\",\r\n \"name\": \"PSTestRG8c1d8dac\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66\",\r\n \"name\": \"PSTestRG93055a66\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourcegroups/PSTestRG8c1d8dac?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlZ3JvdXBzL1BTVGVzdFJHOGMxZDhkYWM/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourcegroups/PSTestRG93055a66?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlZ3JvdXBzL1BTVGVzdFJHOTMwNTVhNjY/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"southeastasia\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "8d1712ba-e5d9-41ce-8ee9-27c838a41dd0" + "56bddf7e-d986-4b3b-9423-d6d4a1059ce4" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" ], "Content-Type": [ "application/json; charset=utf-8" @@ -156,16 +156,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1198" ], "x-ms-request-id": [ - "2c778312-7a56-4288-92d8-9fa0e27fd83c" + "2c20b9e8-8108-45d6-9821-83f3df85b16c" ], "x-ms-correlation-request-id": [ - "2c778312-7a56-4288-92d8-9fa0e27fd83c" + "2c20b9e8-8108-45d6-9821-83f3df85b16c" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220225T000007Z:2c778312-7a56-4288-92d8-9fa0e27fd83c" + "WESTINDIA:20220517T073235Z:2c20b9e8-8108-45d6-9821-83f3df85b16c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -174,7 +174,7 @@ "nosniff" ], "Date": [ - "Fri, 25 Feb 2022 00:00:06 GMT" + "Tue, 17 May 2022 07:32:34 GMT" ], "Content-Length": [ "192" @@ -186,26 +186,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac\",\r\n \"name\": \"PSTestRG8c1d8dac\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66\",\r\n \"name\": \"PSTestRG93055a66\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.Compute/virtualMachines/PSTestVM8c1d80?api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOGMxZDhkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy9QU1Rlc3RWTThjMWQ4MD9hcGktdmVyc2lvbj0yMDIxLTExLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.Compute/virtualMachines/PSTestVM930550?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTMwNTVhNjYvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy9QU1Rlc3RWTTkzMDU1MD9hcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d4a289a2-ef89-4177-a5f4-5c0316999563" + "fac99835-bd92-489b-ac89-3bc254c389de" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ] }, "ResponseHeaders": { @@ -219,13 +219,13 @@ "gateway" ], "x-ms-request-id": [ - "bffa16a6-3125-405d-b281-b6d96ed32b0f" + "fbfaaad1-6a4c-44d0-9933-e1fdb131a8f7" ], "x-ms-correlation-request-id": [ - "bffa16a6-3125-405d-b281-b6d96ed32b0f" + "fbfaaad1-6a4c-44d0-9933-e1fdb131a8f7" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220225T000008Z:bffa16a6-3125-405d-b281-b6d96ed32b0f" + "WESTINDIA:20220517T073235Z:fbfaaad1-6a4c-44d0-9933-e1fdb131a8f7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -234,7 +234,7 @@ "nosniff" ], "Date": [ - "Fri, 25 Feb 2022 00:00:07 GMT" + "Tue, 17 May 2022 07:32:34 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -246,23 +246,23 @@ "236" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Compute/virtualMachines/PSTestVM8c1d80' under resource group 'PSTestRG8c1d8dac' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Compute/virtualMachines/PSTestVM930550' under resource group 'PSTestRG93055a66' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.Compute/virtualMachines/PSTestVM8c1d80?api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOGMxZDhkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy9QU1Rlc3RWTThjMWQ4MD9hcGktdmVyc2lvbj0yMDIxLTExLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.Compute/virtualMachines/PSTestVM930550?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTMwNTVhNjYvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy9QU1Rlc3RWTTkzMDU1MD9hcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "99ef1b14-0146-4db8-85cf-2b54ea3f585f" + "c490081a-28bd-4555-b607-54a143dd9bd4" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ] }, "ResponseHeaders": { @@ -273,35 +273,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/LowCostGet3Min;3996,Microsoft.Compute/LowCostGet30Min;31981" + "Microsoft.Compute/LowCostGet3Min;3981,Microsoft.Compute/LowCostGet30Min;31800" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c29cfa91-8902-4ec2-8535-7acdb3d98f38" + "ed170f89-72b8-43a2-847c-89eea24e4dff" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11990" ], "x-ms-correlation-request-id": [ - "45070d6d-767a-4d72-9760-c927edade367" + "468a1642-1ab6-4273-9b3e-e3688dcf8d1d" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220225T000249Z:45070d6d-767a-4d72-9760-c927edade367" + "WESTINDIA:20220517T073449Z:468a1642-1ab6-4273-9b3e-e3688dcf8d1d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 25 Feb 2022 00:02:49 GMT" + "Tue, 17 May 2022 07:34:48 GMT" ], "Content-Length": [ - "2265" + "2195" ], "Content-Type": [ "application/json; charset=utf-8" @@ -310,26 +310,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"PSTestVM8c1d80\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.Compute/virtualMachines/PSTestVM8c1d80\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MabUsed\": \"Yes\",\r\n \"AutoShutDown\": \"No\",\r\n \"Purpose\": \"PSTest\",\r\n \"Owner\": \"sarath\",\r\n \"DeleteBy\": \"06-2022\",\r\n \"azsecpack\": \"nonprod\",\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": \"true\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"0b52d0e4-dc8c-4ec7-a127-d72b94b203bf\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D1_v2\"\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.4946.220202\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"PSTestVM8c1d80_OsDisk_1_bbd76866a6024ea09dafff67e9e3ef83\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.Compute/disks/PSTestVM8c1d80_OsDisk_1_bbd76866a6024ea09dafff67e9e3ef83\"\r\n },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"PSTestVM8c1d80\",\r\n \"adminUsername\": \"demouser\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"AutomaticByOS\",\r\n \"assessmentMode\": \"ImageDefault\"\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.Network/networkInterfaces/PSTestNIC8c1d80\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"timeCreated\": \"2022-02-24T19:00:54.7842174-05:00\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"PSTestVM930550\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.Compute/virtualMachines/PSTestVM930550\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"Purpose\": \"PSTest\",\r\n \"DeleteBy\": \"06-2022\",\r\n \"Owner\": \"sarath\",\r\n \"AutoShutDown\": \"No\",\r\n \"MabUsed\": \"Yes\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"626c8ea7-f438-4bf2-af1d-50adf1fc7665\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D1_v2\"\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.5125.220505\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"PSTestVM930550_OsDisk_1_6d667c240b494f53b42d796d9476f6f6\",\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/PSTestRG93055a66/providers/Microsoft.Compute/disks/PSTestVM930550_OsDisk_1_6d667c240b494f53b42d796d9476f6f6\"\r\n },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"PSTestVM930550\",\r\n \"adminUsername\": \"demouser\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"AutomaticByOS\",\r\n \"assessmentMode\": \"ImageDefault\"\r\n },\r\n \"enableVMAgentPlatformUpdates\": false\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/PSTestRG93055a66/providers/Microsoft.Network/networkInterfaces/PSTestNIC930550\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"timeCreated\": \"2022-05-17T13:02:58.1676544+05:30\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.Compute/virtualMachines/PSTestVM8c1d80?api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOGMxZDhkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy9QU1Rlc3RWTThjMWQ4MD9hcGktdmVyc2lvbj0yMDIxLTExLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.Compute/virtualMachines/PSTestVM930550?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTMwNTVhNjYvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy9QU1Rlc3RWTTkzMDU1MD9hcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bf13cc1e-a7ed-4e5a-afab-d39d1eccf4bc" + "1eeebe14-35f0-4d8f-9af4-8a50e432080e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ] }, "ResponseHeaders": { @@ -340,35 +340,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/LowCostGet3Min;3993,Microsoft.Compute/LowCostGet30Min;31978" + "Microsoft.Compute/LowCostGet3Min;3978,Microsoft.Compute/LowCostGet30Min;31807" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "abdd3d74-f7e9-4fcf-8b32-5ae8e6958826" + "602d04be-76d5-4161-86d8-8608c93dbf93" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" + "11979" ], "x-ms-correlation-request-id": [ - "2fbf98b0-5084-4907-ba74-ebf21d2cf44c" + "47d00ace-dc0b-4a8b-a052-e82e360388cc" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220225T000500Z:2fbf98b0-5084-4907-ba74-ebf21d2cf44c" + "WESTINDIA:20220517T073755Z:47d00ace-dc0b-4a8b-a052-e82e360388cc" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 25 Feb 2022 00:04:59 GMT" + "Tue, 17 May 2022 07:37:54 GMT" ], "Content-Length": [ - "2828" + "2758" ], "Content-Type": [ "application/json; charset=utf-8" @@ -377,26 +377,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"PSTestVM8c1d80\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.Compute/virtualMachines/PSTestVM8c1d80\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MabUsed\": \"Yes\",\r\n \"AutoShutDown\": \"No\",\r\n \"Purpose\": \"PSTest\",\r\n \"Owner\": \"sarath\",\r\n \"DeleteBy\": \"06-2022\",\r\n \"azsecpack\": \"nonprod\",\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": \"true\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"0b52d0e4-dc8c-4ec7-a127-d72b94b203bf\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D1_v2\"\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.4946.220202\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"PSTestVM8c1d80_OsDisk_1_bbd76866a6024ea09dafff67e9e3ef83\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.Compute/disks/PSTestVM8c1d80_OsDisk_1_bbd76866a6024ea09dafff67e9e3ef83\"\r\n },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"PSTestVM8c1d80\",\r\n \"adminUsername\": \"demouser\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"AutomaticByOS\",\r\n \"assessmentMode\": \"ImageDefault\"\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.Network/networkInterfaces/PSTestNIC8c1d80\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"timeCreated\": \"2022-02-24T19:00:54.7842174-05:00\"\r\n },\r\n \"resources\": [\r\n {\r\n \"name\": \"BGInfo\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.Compute/virtualMachines/PSTestVM8c1d80/extensions/BGInfo\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"southeastasia\",\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}", + "ResponseBody": "{\r\n \"name\": \"PSTestVM930550\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.Compute/virtualMachines/PSTestVM930550\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"Purpose\": \"PSTest\",\r\n \"DeleteBy\": \"06-2022\",\r\n \"Owner\": \"sarath\",\r\n \"AutoShutDown\": \"No\",\r\n \"MabUsed\": \"Yes\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"626c8ea7-f438-4bf2-af1d-50adf1fc7665\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D1_v2\"\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.5125.220505\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"PSTestVM930550_OsDisk_1_6d667c240b494f53b42d796d9476f6f6\",\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/PSTestRG93055a66/providers/Microsoft.Compute/disks/PSTestVM930550_OsDisk_1_6d667c240b494f53b42d796d9476f6f6\"\r\n },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"PSTestVM930550\",\r\n \"adminUsername\": \"demouser\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"AutomaticByOS\",\r\n \"assessmentMode\": \"ImageDefault\"\r\n },\r\n \"enableVMAgentPlatformUpdates\": false\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/PSTestRG93055a66/providers/Microsoft.Network/networkInterfaces/PSTestNIC930550\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"timeCreated\": \"2022-05-17T13:02:58.1676544+05:30\"\r\n },\r\n \"resources\": [\r\n {\r\n \"name\": \"BGInfo\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.Compute/virtualMachines/PSTestVM930550/extensions/BGInfo\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"BGInfo\",\r\n \"typeHandlerVersion\": \"2.2\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.Network/virtualNetworks/PSTestVNET8c1d80?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOGMxZDhkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy9QU1Rlc3RWTkVUOGMxZDgwP2FwaS12ZXJzaW9uPTIwMjEtMDUtMDE=", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.Network/virtualNetworks/PSTestVNET930550?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTMwNTVhNjYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy9QU1Rlc3RWTkVUOTMwNTUwP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b5e8e355-8426-4bfb-b40b-fd58d5cd7c50" + "2b41af83-bf9c-40b9-be72-5d3648179448" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ] }, "ResponseHeaders": { @@ -410,13 +410,13 @@ "gateway" ], "x-ms-request-id": [ - "0c15a895-2568-42d4-af3a-9375983b42f6" + "d7902999-baa4-4ddf-a56d-37f1e630f587" ], "x-ms-correlation-request-id": [ - "0c15a895-2568-42d4-af3a-9375983b42f6" + "d7902999-baa4-4ddf-a56d-37f1e630f587" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220225T000009Z:0c15a895-2568-42d4-af3a-9375983b42f6" + "WESTINDIA:20220517T073236Z:d7902999-baa4-4ddf-a56d-37f1e630f587" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -425,7 +425,7 @@ "nosniff" ], "Date": [ - "Fri, 25 Feb 2022 00:00:09 GMT" + "Tue, 17 May 2022 07:32:35 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -437,23 +437,23 @@ "238" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/virtualNetworks/PSTestVNET8c1d80' under resource group 'PSTestRG8c1d8dac' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/virtualNetworks/PSTestVNET930550' under resource group 'PSTestRG93055a66' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.Network/virtualNetworks/PSTestVNET8c1d80?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOGMxZDhkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy9QU1Rlc3RWTkVUOGMxZDgwP2FwaS12ZXJzaW9uPTIwMjEtMDUtMDE=", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.Network/virtualNetworks/PSTestVNET930550?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTMwNTVhNjYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy9QU1Rlc3RWTkVUOTMwNTUwP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b5e8e355-8426-4bfb-b40b-fd58d5cd7c50" + "2b41af83-bf9c-40b9-be72-5d3648179448" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ] }, "ResponseHeaders": { @@ -464,16 +464,16 @@ "no-cache" ], "ETag": [ - "W/\"a88f7bf6-e96b-434b-affa-f84d13359710\"" + "W/\"39c5943d-a53b-4e4b-961b-97486002d1c2\"" ], "x-ms-request-id": [ - "84318493-ecd0-4302-85d4-2a4efccc0525" + "726d534e-e6f1-4c04-a519-d0a5e869fb80" ], "x-ms-correlation-request-id": [ - "e4525a0c-897f-4f65-a673-614de8e22bbf" + "7f18d66c-7e15-4b59-8442-96e6fc2dc5b4" ], "x-ms-arm-service-request-id": [ - "3d1a0913-82e4-4695-8349-c247e76f58a2" + "185ff417-d312-4e7e-ad1e-67d554688367" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -486,13 +486,13 @@ "11997" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220225T000022Z:e4525a0c-897f-4f65-a673-614de8e22bbf" + "WESTINDIA:20220517T073242Z:7f18d66c-7e15-4b59-8442-96e6fc2dc5b4" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 25 Feb 2022 00:00:22 GMT" + "Tue, 17 May 2022 07:32:41 GMT" ], "Content-Length": [ "1315" @@ -504,26 +504,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"PSTestVNET8c1d80\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.Network/virtualNetworks/PSTestVNET8c1d80\",\r\n \"etag\": \"W/\\\"a88f7bf6-e96b-434b-affa-f84d13359710\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"bcce6c7f-3e4c-4885-9841-e166e544a944\",\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\": \"PSTestSNC8c1d80\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.Network/virtualNetworks/PSTestVNET8c1d80/subnets/PSTestSNC8c1d80\",\r\n \"etag\": \"W/\\\"a88f7bf6-e96b-434b-affa-f84d13359710\\\"\",\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 },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"PSTestVNET930550\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.Network/virtualNetworks/PSTestVNET930550\",\r\n \"etag\": \"W/\\\"39c5943d-a53b-4e4b-961b-97486002d1c2\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"cd9d7ee9-13a4-4c8e-9c81-f3f9ada8c607\",\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\": \"PSTestSNC930550\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.Network/virtualNetworks/PSTestVNET930550/subnets/PSTestSNC930550\",\r\n \"etag\": \"W/\\\"39c5943d-a53b-4e4b-961b-97486002d1c2\\\"\",\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 },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.Network/virtualNetworks/PSTestVNET8c1d80?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOGMxZDhkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy9QU1Rlc3RWTkVUOGMxZDgwP2FwaS12ZXJzaW9uPTIwMjEtMDUtMDE=", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.Network/virtualNetworks/PSTestVNET930550?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTMwNTVhNjYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy9QU1Rlc3RWTkVUOTMwNTUwP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b5e8e355-8426-4bfb-b40b-fd58d5cd7c50" + "2b41af83-bf9c-40b9-be72-5d3648179448" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ] }, "ResponseHeaders": { @@ -534,16 +534,16 @@ "no-cache" ], "ETag": [ - "W/\"a88f7bf6-e96b-434b-affa-f84d13359710\"" + "W/\"39c5943d-a53b-4e4b-961b-97486002d1c2\"" ], "x-ms-request-id": [ - "bd15cec3-08bd-4759-9043-9dc53e897091" + "4255df65-e35d-4055-b636-a2d784d0d596" ], "x-ms-correlation-request-id": [ - "30acd62c-c9b4-4589-ab14-d2d194e72ae1" + "0db65223-a3f6-4105-8b00-b4dc876a469e" ], "x-ms-arm-service-request-id": [ - "25de5d36-cb61-4193-a227-7c6bb3929e26" + "735eae30-438f-443f-83e6-2d4deea665e6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -556,13 +556,13 @@ "11996" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220225T000023Z:30acd62c-c9b4-4589-ab14-d2d194e72ae1" + "WESTINDIA:20220517T073242Z:0db65223-a3f6-4105-8b00-b4dc876a469e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 25 Feb 2022 00:00:22 GMT" + "Tue, 17 May 2022 07:32:42 GMT" ], "Content-Length": [ "1315" @@ -574,26 +574,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"PSTestVNET8c1d80\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.Network/virtualNetworks/PSTestVNET8c1d80\",\r\n \"etag\": \"W/\\\"a88f7bf6-e96b-434b-affa-f84d13359710\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"bcce6c7f-3e4c-4885-9841-e166e544a944\",\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\": \"PSTestSNC8c1d80\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.Network/virtualNetworks/PSTestVNET8c1d80/subnets/PSTestSNC8c1d80\",\r\n \"etag\": \"W/\\\"a88f7bf6-e96b-434b-affa-f84d13359710\\\"\",\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 },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"PSTestVNET930550\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.Network/virtualNetworks/PSTestVNET930550\",\r\n \"etag\": \"W/\\\"39c5943d-a53b-4e4b-961b-97486002d1c2\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"cd9d7ee9-13a4-4c8e-9c81-f3f9ada8c607\",\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\": \"PSTestSNC930550\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.Network/virtualNetworks/PSTestVNET930550/subnets/PSTestSNC930550\",\r\n \"etag\": \"W/\\\"39c5943d-a53b-4e4b-961b-97486002d1c2\\\"\",\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 },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.Network/virtualNetworks/PSTestVNET8c1d80?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOGMxZDhkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy9QU1Rlc3RWTkVUOGMxZDgwP2FwaS12ZXJzaW9uPTIwMjEtMDUtMDE=", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.Network/virtualNetworks/PSTestVNET930550?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTMwNTVhNjYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy9QU1Rlc3RWTkVUOTMwNTUwP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=", "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 \"applicationGatewayIpConfigurations\": []\r\n },\r\n \"name\": \"PSTestSNC8c1d80\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"ipAllocations\": []\r\n },\r\n \"location\": \"southeastasia\"\r\n}", + "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 \"applicationGatewayIpConfigurations\": []\r\n },\r\n \"name\": \"PSTestSNC930550\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"ipAllocations\": []\r\n },\r\n \"location\": \"southeastasia\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "b5e8e355-8426-4bfb-b40b-fd58d5cd7c50" + "2b41af83-bf9c-40b9-be72-5d3648179448" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -613,19 +613,19 @@ "3" ], "x-ms-request-id": [ - "d34a298d-89ae-4bff-ba9b-932513baa86e" + "e4899062-d555-4a87-9dde-02a236ca02fa" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Network/locations/southeastasia/operations/d34a298d-89ae-4bff-ba9b-932513baa86e?api-version=2021-05-01" + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Network/locations/southeastasia/operations/e4899062-d555-4a87-9dde-02a236ca02fa?api-version=2021-08-01" ], "x-ms-correlation-request-id": [ - "544a6581-0fa1-4b49-abb0-114b5eb7f564" + "8dd4ea13-eee7-4e67-90b3-0227461c137f" ], "Azure-AsyncNotification": [ "Enabled" ], "x-ms-arm-service-request-id": [ - "f047d855-54c5-400c-b658-f87753860fd3" + "2650305c-54a1-47cd-b83a-dfb5110ea3db" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -638,13 +638,13 @@ "1199" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220225T000019Z:544a6581-0fa1-4b49-abb0-114b5eb7f564" + "WESTINDIA:20220517T073239Z:8dd4ea13-eee7-4e67-90b3-0227461c137f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 25 Feb 2022 00:00:18 GMT" + "Tue, 17 May 2022 07:32:38 GMT" ], "Content-Length": [ "1313" @@ -656,23 +656,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"PSTestVNET8c1d80\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.Network/virtualNetworks/PSTestVNET8c1d80\",\r\n \"etag\": \"W/\\\"7052df21-5447-49ab-ba5b-e0c7aefa3ea4\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"bcce6c7f-3e4c-4885-9841-e166e544a944\",\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\": \"PSTestSNC8c1d80\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.Network/virtualNetworks/PSTestVNET8c1d80/subnets/PSTestSNC8c1d80\",\r\n \"etag\": \"W/\\\"7052df21-5447-49ab-ba5b-e0c7aefa3ea4\\\"\",\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 },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"PSTestVNET930550\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.Network/virtualNetworks/PSTestVNET930550\",\r\n \"etag\": \"W/\\\"1cfcc8e4-a7e7-4b10-a343-a6dcb18f83c4\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"cd9d7ee9-13a4-4c8e-9c81-f3f9ada8c607\",\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\": \"PSTestSNC930550\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.Network/virtualNetworks/PSTestVNET930550/subnets/PSTestSNC930550\",\r\n \"etag\": \"W/\\\"1cfcc8e4-a7e7-4b10-a343-a6dcb18f83c4\\\"\",\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 },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Network/locations/southeastasia/operations/d34a298d-89ae-4bff-ba9b-932513baa86e?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2QzNGEyOThkLTg5YWUtNGJmZi1iYTliLTkzMjUxM2JhYTg2ZT9hcGktdmVyc2lvbj0yMDIxLTA1LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Network/locations/southeastasia/operations/e4899062-d555-4a87-9dde-02a236ca02fa?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2U0ODk5MDYyLWQ1NTUtNGE4Ny05ZGRlLTAyYTIzNmNhMDJmYT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b5e8e355-8426-4bfb-b40b-fd58d5cd7c50" + "2b41af83-bf9c-40b9-be72-5d3648179448" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ] }, "ResponseHeaders": { @@ -683,13 +683,13 @@ "no-cache" ], "x-ms-request-id": [ - "d12cb6b2-f4bd-4e78-b085-20d77a54263c" + "313227ca-0d5b-4bd9-b636-17c5e18e5ad0" ], "x-ms-correlation-request-id": [ - "39761ecf-c959-4dab-998f-e5bebeaf60dd" + "ccd21409-da76-4fe3-bd97-bc3755727650" ], "x-ms-arm-service-request-id": [ - "8b680c9c-8b4f-44c6-9ce5-30ea640debe6" + "17fea19d-b901-4f11-a36c-1d1e3fc016f8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -702,13 +702,13 @@ "11998" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220225T000022Z:39761ecf-c959-4dab-998f-e5bebeaf60dd" + "WESTINDIA:20220517T073242Z:ccd21409-da76-4fe3-bd97-bc3755727650" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 25 Feb 2022 00:00:22 GMT" + "Tue, 17 May 2022 07:32:41 GMT" ], "Content-Length": [ "29" @@ -724,22 +724,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.Network/publicIPAddresses/pstestpublicdns8c1d80?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOGMxZDhkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BzdGVzdHB1YmxpY2RuczhjMWQ4MD9hcGktdmVyc2lvbj0yMDIxLTA1LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.Network/publicIPAddresses/pstestpublicdns930550?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTMwNTVhNjYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BzdGVzdHB1YmxpY2RuczkzMDU1MD9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "49425a4a-4d1e-42cb-8620-969309fb1fac" + "fa3e7b53-7184-4bcc-b3a3-38a197c80b7e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ] }, "ResponseHeaders": { @@ -753,13 +753,13 @@ "gateway" ], "x-ms-request-id": [ - "08442c41-4bab-4710-a05f-e699411abfb0" + "6cc9cd5f-d42f-432c-a01e-38ef029378e6" ], "x-ms-correlation-request-id": [ - "08442c41-4bab-4710-a05f-e699411abfb0" + "6cc9cd5f-d42f-432c-a01e-38ef029378e6" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220225T000023Z:08442c41-4bab-4710-a05f-e699411abfb0" + "WESTINDIA:20220517T073243Z:6cc9cd5f-d42f-432c-a01e-38ef029378e6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -768,7 +768,7 @@ "nosniff" ], "Date": [ - "Fri, 25 Feb 2022 00:00:22 GMT" + "Tue, 17 May 2022 07:32:42 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -780,23 +780,23 @@ "245" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/publicIPAddresses/pstestpublicdns8c1d80' under resource group 'PSTestRG8c1d8dac' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/publicIPAddresses/pstestpublicdns930550' under resource group 'PSTestRG93055a66' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.Network/publicIPAddresses/pstestpublicdns8c1d80?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOGMxZDhkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BzdGVzdHB1YmxpY2RuczhjMWQ4MD9hcGktdmVyc2lvbj0yMDIxLTA1LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.Network/publicIPAddresses/pstestpublicdns930550?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTMwNTVhNjYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BzdGVzdHB1YmxpY2RuczkzMDU1MD9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "49425a4a-4d1e-42cb-8620-969309fb1fac" + "fa3e7b53-7184-4bcc-b3a3-38a197c80b7e" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ] }, "ResponseHeaders": { @@ -807,16 +807,16 @@ "no-cache" ], "ETag": [ - "W/\"b6158b56-1cff-43b0-ac24-1489804238f4\"" + "W/\"352e9df7-57f5-4d26-8047-58ad45c3ee4b\"" ], "x-ms-request-id": [ - "811bd0e1-4731-4e10-8ac0-ec7b361c0963" + "a801f296-2cb1-4d70-9eb1-f7af6c041b90" ], "x-ms-correlation-request-id": [ - "cef1d3e9-935a-4154-948c-bb44abd1ebe7" + "cd6bcb92-0069-4646-bd98-9581dc94d587" ], "x-ms-arm-service-request-id": [ - "9f83f840-bf85-47ac-940a-75e24df2681a" + "e9a59f16-2580-42cf-a32d-cd9d02ef0caa" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -829,16 +829,16 @@ "11993" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220225T000030Z:cef1d3e9-935a-4154-948c-bb44abd1ebe7" + "WESTINDIA:20220517T073246Z:cd6bcb92-0069-4646-bd98-9581dc94d587" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 25 Feb 2022 00:00:29 GMT" + "Tue, 17 May 2022 07:32:45 GMT" ], "Content-Length": [ - "697" + "700" ], "Content-Type": [ "application/json; charset=utf-8" @@ -847,26 +847,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"pstestpublicdns8c1d80\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.Network/publicIPAddresses/pstestpublicdns8c1d80\",\r\n \"etag\": \"W/\\\"b6158b56-1cff-43b0-ac24-1489804238f4\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"92242cbc-6072-41f8-8c52-be17ec2ac1ef\",\r\n \"ipAddress\": \"20.24.36.231\",\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 \"tier\": \"Regional\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"pstestpublicdns930550\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.Network/publicIPAddresses/pstestpublicdns930550\",\r\n \"etag\": \"W/\\\"352e9df7-57f5-4d26-8047-58ad45c3ee4b\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"aaddbc1f-21fa-437a-8d42-ddad1bd72e9b\",\r\n \"ipAddress\": \"104.215.250.107\",\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 \"tier\": \"Regional\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.Network/publicIPAddresses/pstestpublicdns8c1d80?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOGMxZDhkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BzdGVzdHB1YmxpY2RuczhjMWQ4MD9hcGktdmVyc2lvbj0yMDIxLTA1LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.Network/publicIPAddresses/pstestpublicdns930550?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTMwNTVhNjYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BzdGVzdHB1YmxpY2RuczkzMDU1MD9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "49425a4a-4d1e-42cb-8620-969309fb1fac" + "fa3e7b53-7184-4bcc-b3a3-38a197c80b7e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ] }, "ResponseHeaders": { @@ -877,16 +877,16 @@ "no-cache" ], "ETag": [ - "W/\"b6158b56-1cff-43b0-ac24-1489804238f4\"" + "W/\"352e9df7-57f5-4d26-8047-58ad45c3ee4b\"" ], "x-ms-request-id": [ - "14bfd6b9-41c7-4e36-8d23-0012cb818c7b" + "05f05102-65af-42a4-b78d-31092e4957f0" ], "x-ms-correlation-request-id": [ - "645c61bd-934f-4f37-a804-2968c29d1f70" + "2357cfa9-e06d-4ca7-8414-8c58624d846b" ], "x-ms-arm-service-request-id": [ - "2f0ebeb5-b688-4106-9bce-c2cff31a0bf6" + "46af8b14-d366-4b02-b243-b677d700c8c4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -899,16 +899,16 @@ "11992" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220225T000030Z:645c61bd-934f-4f37-a804-2968c29d1f70" + "WESTINDIA:20220517T073246Z:2357cfa9-e06d-4ca7-8414-8c58624d846b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 25 Feb 2022 00:00:29 GMT" + "Tue, 17 May 2022 07:32:45 GMT" ], "Content-Length": [ - "697" + "700" ], "Content-Type": [ "application/json; charset=utf-8" @@ -917,26 +917,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"pstestpublicdns8c1d80\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.Network/publicIPAddresses/pstestpublicdns8c1d80\",\r\n \"etag\": \"W/\\\"b6158b56-1cff-43b0-ac24-1489804238f4\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"92242cbc-6072-41f8-8c52-be17ec2ac1ef\",\r\n \"ipAddress\": \"20.24.36.231\",\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 \"tier\": \"Regional\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"pstestpublicdns930550\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.Network/publicIPAddresses/pstestpublicdns930550\",\r\n \"etag\": \"W/\\\"352e9df7-57f5-4d26-8047-58ad45c3ee4b\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"aaddbc1f-21fa-437a-8d42-ddad1bd72e9b\",\r\n \"ipAddress\": \"104.215.250.107\",\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 \"tier\": \"Regional\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.Network/publicIPAddresses/pstestpublicdns8c1d80?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOGMxZDhkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BzdGVzdHB1YmxpY2RuczhjMWQ4MD9hcGktdmVyc2lvbj0yMDIxLTA1LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.Network/publicIPAddresses/pstestpublicdns930550?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTMwNTVhNjYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BzdGVzdHB1YmxpY2RuczkzMDU1MD9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "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\": \"southeastasia\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "49425a4a-4d1e-42cb-8620-969309fb1fac" + "fa3e7b53-7184-4bcc-b3a3-38a197c80b7e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -956,19 +956,19 @@ "1" ], "x-ms-request-id": [ - "0093c513-aabb-4c1f-aa70-ea3555669b24" + "ed047783-2046-4f05-b87b-0c83d2910374" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Network/locations/southeastasia/operations/0093c513-aabb-4c1f-aa70-ea3555669b24?api-version=2021-05-01" + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Network/locations/southeastasia/operations/ed047783-2046-4f05-b87b-0c83d2910374?api-version=2021-08-01" ], "x-ms-correlation-request-id": [ - "e727b97a-e954-4282-8c78-1e65edc66c31" + "c46b6d4d-5102-4517-91fc-927b5a7eda0b" ], "Azure-AsyncNotification": [ "Enabled" ], "x-ms-arm-service-request-id": [ - "2f912624-9762-4edf-ac6c-0a16c3653718" + "a91228fc-a330-41b6-a0f9-dc601574195e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -981,13 +981,13 @@ "1198" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220225T000028Z:e727b97a-e954-4282-8c78-1e65edc66c31" + "WESTINDIA:20220517T073244Z:c46b6d4d-5102-4517-91fc-927b5a7eda0b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 25 Feb 2022 00:00:27 GMT" + "Tue, 17 May 2022 07:32:43 GMT" ], "Content-Length": [ "662" @@ -999,23 +999,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"pstestpublicdns8c1d80\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.Network/publicIPAddresses/pstestpublicdns8c1d80\",\r\n \"etag\": \"W/\\\"5d50c286-6e7f-4abb-b982-eec3f5aa2755\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"92242cbc-6072-41f8-8c52-be17ec2ac1ef\",\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 \"tier\": \"Regional\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"pstestpublicdns930550\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.Network/publicIPAddresses/pstestpublicdns930550\",\r\n \"etag\": \"W/\\\"0d2383eb-ee23-41af-8391-204035c7dcb8\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"aaddbc1f-21fa-437a-8d42-ddad1bd72e9b\",\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 \"tier\": \"Regional\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Network/locations/southeastasia/operations/0093c513-aabb-4c1f-aa70-ea3555669b24?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzAwOTNjNTEzLWFhYmItNGMxZi1hYTcwLWVhMzU1NTY2OWIyND9hcGktdmVyc2lvbj0yMDIxLTA1LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Network/locations/southeastasia/operations/ed047783-2046-4f05-b87b-0c83d2910374?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2VkMDQ3NzgzLTIwNDYtNGYwNS1iODdiLTBjODNkMjkxMDM3ND9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "49425a4a-4d1e-42cb-8620-969309fb1fac" + "fa3e7b53-7184-4bcc-b3a3-38a197c80b7e" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ] }, "ResponseHeaders": { @@ -1026,13 +1026,13 @@ "no-cache" ], "x-ms-request-id": [ - "e6a40706-052a-475e-b597-b43f035b70bf" + "c18d1149-9c7c-427e-ac97-3ca3af7f3ead" ], "x-ms-correlation-request-id": [ - "09d8cab0-f01f-467c-8c5f-106edc16a789" + "7257975f-550c-46d5-80f8-f57de3be48a6" ], "x-ms-arm-service-request-id": [ - "985ee0af-a631-4c18-9788-bd63cc9431ac" + "c9b87923-3f08-41b0-bff7-b666cc1b1571" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1045,13 +1045,13 @@ "11994" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220225T000029Z:09d8cab0-f01f-467c-8c5f-106edc16a789" + "WESTINDIA:20220517T073246Z:7257975f-550c-46d5-80f8-f57de3be48a6" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 25 Feb 2022 00:00:28 GMT" + "Tue, 17 May 2022 07:32:45 GMT" ], "Content-Length": [ "29" @@ -1067,22 +1067,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG8c1d80?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOGMxZDhkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtTZWN1cml0eUdyb3Vwcy9QU1Rlc3ROU0c4YzFkODA/YXBpLXZlcnNpb249MjAyMS0wNS0wMQ==", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG930550?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTMwNTVhNjYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtTZWN1cml0eUdyb3Vwcy9QU1Rlc3ROU0c5MzA1NTA/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a1ed94a4-a992-45d0-b785-23fd92bdda27" + "3f331c00-c6e9-4d67-b18d-86d4f64824e7" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ] }, "ResponseHeaders": { @@ -1096,13 +1096,13 @@ "gateway" ], "x-ms-request-id": [ - "4fbee95f-e069-44b9-b106-d7cea8be7905" + "0ffe6ab2-81ad-401f-a82d-ef85cdc82cb5" ], "x-ms-correlation-request-id": [ - "4fbee95f-e069-44b9-b106-d7cea8be7905" + "0ffe6ab2-81ad-401f-a82d-ef85cdc82cb5" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220225T000030Z:4fbee95f-e069-44b9-b106-d7cea8be7905" + "WESTINDIA:20220517T073246Z:0ffe6ab2-81ad-401f-a82d-ef85cdc82cb5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1111,7 +1111,7 @@ "nosniff" ], "Date": [ - "Fri, 25 Feb 2022 00:00:30 GMT" + "Tue, 17 May 2022 07:32:45 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1123,23 +1123,23 @@ "243" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/networkSecurityGroups/PSTestNSG8c1d80' under resource group 'PSTestRG8c1d8dac' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/networkSecurityGroups/PSTestNSG930550' under resource group 'PSTestRG93055a66' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG8c1d80?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOGMxZDhkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtTZWN1cml0eUdyb3Vwcy9QU1Rlc3ROU0c4YzFkODA/YXBpLXZlcnNpb249MjAyMS0wNS0wMQ==", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG930550?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTMwNTVhNjYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtTZWN1cml0eUdyb3Vwcy9QU1Rlc3ROU0c5MzA1NTA/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a1ed94a4-a992-45d0-b785-23fd92bdda27" + "3f331c00-c6e9-4d67-b18d-86d4f64824e7" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ] }, "ResponseHeaders": { @@ -1150,16 +1150,16 @@ "no-cache" ], "ETag": [ - "W/\"fef3d613-2dee-4b8e-ae0f-3790b96e2725\"" + "W/\"97df6b2c-1591-4ab6-9c56-90572103ce4d\"" ], "x-ms-request-id": [ - "034d3915-5878-4a32-8628-589392ee21b0" + "1dbce775-cc4b-4ed6-838a-bf3758d970dd" ], "x-ms-correlation-request-id": [ - "6b741211-b3bc-4c46-89a4-a5f3cc388d04" + "05210eed-cb12-4fba-9966-2ee03ed4f87d" ], "x-ms-arm-service-request-id": [ - "414e88fe-fd93-4285-935e-65673b1be3d6" + "dbf56033-7421-43ed-8b17-676789a092ff" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1172,13 +1172,13 @@ "11989" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220225T000038Z:6b741211-b3bc-4c46-89a4-a5f3cc388d04" + "WESTINDIA:20220517T073251Z:05210eed-cb12-4fba-9966-2ee03ed4f87d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 25 Feb 2022 00:00:38 GMT" + "Tue, 17 May 2022 07:32:51 GMT" ], "Content-Length": [ "8475" @@ -1190,26 +1190,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"PSTestNSG8c1d80\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG8c1d80\",\r\n \"etag\": \"W/\\\"fef3d613-2dee-4b8e-ae0f-3790b96e2725\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"8e86eced-8dca-4a17-b070-37165a27addc\",\r\n \"securityRules\": [\r\n {\r\n \"name\": \"PSTestNSGRuleRDP8c1d80\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG8c1d80/securityRules/PSTestNSGRuleRDP8c1d80\",\r\n \"etag\": \"W/\\\"fef3d613-2dee-4b8e-ae0f-3790b96e2725\\\"\",\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\": \"PSTestNSGRuleWeb8c1d80\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG8c1d80/securityRules/PSTestNSGRuleWeb8c1d80\",\r\n \"etag\": \"W/\\\"fef3d613-2dee-4b8e-ae0f-3790b96e2725\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG8c1d80/defaultSecurityRules/AllowVnetInBound\",\r\n \"etag\": \"W/\\\"fef3d613-2dee-4b8e-ae0f-3790b96e2725\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG8c1d80/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\r\n \"etag\": \"W/\\\"fef3d613-2dee-4b8e-ae0f-3790b96e2725\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG8c1d80/defaultSecurityRules/DenyAllInBound\",\r\n \"etag\": \"W/\\\"fef3d613-2dee-4b8e-ae0f-3790b96e2725\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG8c1d80/defaultSecurityRules/AllowVnetOutBound\",\r\n \"etag\": \"W/\\\"fef3d613-2dee-4b8e-ae0f-3790b96e2725\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG8c1d80/defaultSecurityRules/AllowInternetOutBound\",\r\n \"etag\": \"W/\\\"fef3d613-2dee-4b8e-ae0f-3790b96e2725\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG8c1d80/defaultSecurityRules/DenyAllOutBound\",\r\n \"etag\": \"W/\\\"fef3d613-2dee-4b8e-ae0f-3790b96e2725\\\"\",\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}", + "ResponseBody": "{\r\n \"name\": \"PSTestNSG930550\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG930550\",\r\n \"etag\": \"W/\\\"97df6b2c-1591-4ab6-9c56-90572103ce4d\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"20333939-c1fa-4b52-93a9-bd1eb13ba48b\",\r\n \"securityRules\": [\r\n {\r\n \"name\": \"PSTestNSGRuleRDP930550\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG930550/securityRules/PSTestNSGRuleRDP930550\",\r\n \"etag\": \"W/\\\"97df6b2c-1591-4ab6-9c56-90572103ce4d\\\"\",\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\": \"PSTestNSGRuleWeb930550\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG930550/securityRules/PSTestNSGRuleWeb930550\",\r\n \"etag\": \"W/\\\"97df6b2c-1591-4ab6-9c56-90572103ce4d\\\"\",\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/PSTestRG93055a66/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG930550/defaultSecurityRules/AllowVnetInBound\",\r\n \"etag\": \"W/\\\"97df6b2c-1591-4ab6-9c56-90572103ce4d\\\"\",\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/PSTestRG93055a66/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG930550/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\r\n \"etag\": \"W/\\\"97df6b2c-1591-4ab6-9c56-90572103ce4d\\\"\",\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/PSTestRG93055a66/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG930550/defaultSecurityRules/DenyAllInBound\",\r\n \"etag\": \"W/\\\"97df6b2c-1591-4ab6-9c56-90572103ce4d\\\"\",\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/PSTestRG93055a66/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG930550/defaultSecurityRules/AllowVnetOutBound\",\r\n \"etag\": \"W/\\\"97df6b2c-1591-4ab6-9c56-90572103ce4d\\\"\",\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/PSTestRG93055a66/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG930550/defaultSecurityRules/AllowInternetOutBound\",\r\n \"etag\": \"W/\\\"97df6b2c-1591-4ab6-9c56-90572103ce4d\\\"\",\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/PSTestRG93055a66/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG930550/defaultSecurityRules/DenyAllOutBound\",\r\n \"etag\": \"W/\\\"97df6b2c-1591-4ab6-9c56-90572103ce4d\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG8c1d80?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOGMxZDhkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtTZWN1cml0eUdyb3Vwcy9QU1Rlc3ROU0c4YzFkODA/YXBpLXZlcnNpb249MjAyMS0wNS0wMQ==", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG930550?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTMwNTVhNjYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtTZWN1cml0eUdyb3Vwcy9QU1Rlc3ROU0c5MzA1NTA/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a1ed94a4-a992-45d0-b785-23fd92bdda27" + "3f331c00-c6e9-4d67-b18d-86d4f64824e7" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ] }, "ResponseHeaders": { @@ -1220,16 +1220,16 @@ "no-cache" ], "ETag": [ - "W/\"fef3d613-2dee-4b8e-ae0f-3790b96e2725\"" + "W/\"97df6b2c-1591-4ab6-9c56-90572103ce4d\"" ], "x-ms-request-id": [ - "b1b4206e-6bc7-475b-8ca5-7683c6d30cd0" + "064b01a9-b1ec-4a6c-96de-9b545ae37b60" ], "x-ms-correlation-request-id": [ - "dedfc0dc-33d5-4884-a4f5-7b9e9cddfe43" + "0f476690-0899-4599-8a85-0d80433dd801" ], "x-ms-arm-service-request-id": [ - "82c8fc40-e49b-468b-8601-09e245c18192" + "a15cfc3c-6ea1-499c-9e52-f8705d27648f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1242,13 +1242,13 @@ "11988" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220225T000039Z:dedfc0dc-33d5-4884-a4f5-7b9e9cddfe43" + "WESTINDIA:20220517T073251Z:0f476690-0899-4599-8a85-0d80433dd801" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 25 Feb 2022 00:00:38 GMT" + "Tue, 17 May 2022 07:32:51 GMT" ], "Content-Length": [ "8475" @@ -1260,26 +1260,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"PSTestNSG8c1d80\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG8c1d80\",\r\n \"etag\": \"W/\\\"fef3d613-2dee-4b8e-ae0f-3790b96e2725\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"8e86eced-8dca-4a17-b070-37165a27addc\",\r\n \"securityRules\": [\r\n {\r\n \"name\": \"PSTestNSGRuleRDP8c1d80\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG8c1d80/securityRules/PSTestNSGRuleRDP8c1d80\",\r\n \"etag\": \"W/\\\"fef3d613-2dee-4b8e-ae0f-3790b96e2725\\\"\",\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\": \"PSTestNSGRuleWeb8c1d80\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG8c1d80/securityRules/PSTestNSGRuleWeb8c1d80\",\r\n \"etag\": \"W/\\\"fef3d613-2dee-4b8e-ae0f-3790b96e2725\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG8c1d80/defaultSecurityRules/AllowVnetInBound\",\r\n \"etag\": \"W/\\\"fef3d613-2dee-4b8e-ae0f-3790b96e2725\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG8c1d80/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\r\n \"etag\": \"W/\\\"fef3d613-2dee-4b8e-ae0f-3790b96e2725\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG8c1d80/defaultSecurityRules/DenyAllInBound\",\r\n \"etag\": \"W/\\\"fef3d613-2dee-4b8e-ae0f-3790b96e2725\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG8c1d80/defaultSecurityRules/AllowVnetOutBound\",\r\n \"etag\": \"W/\\\"fef3d613-2dee-4b8e-ae0f-3790b96e2725\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG8c1d80/defaultSecurityRules/AllowInternetOutBound\",\r\n \"etag\": \"W/\\\"fef3d613-2dee-4b8e-ae0f-3790b96e2725\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG8c1d80/defaultSecurityRules/DenyAllOutBound\",\r\n \"etag\": \"W/\\\"fef3d613-2dee-4b8e-ae0f-3790b96e2725\\\"\",\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}", + "ResponseBody": "{\r\n \"name\": \"PSTestNSG930550\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG930550\",\r\n \"etag\": \"W/\\\"97df6b2c-1591-4ab6-9c56-90572103ce4d\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"20333939-c1fa-4b52-93a9-bd1eb13ba48b\",\r\n \"securityRules\": [\r\n {\r\n \"name\": \"PSTestNSGRuleRDP930550\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG930550/securityRules/PSTestNSGRuleRDP930550\",\r\n \"etag\": \"W/\\\"97df6b2c-1591-4ab6-9c56-90572103ce4d\\\"\",\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\": \"PSTestNSGRuleWeb930550\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG930550/securityRules/PSTestNSGRuleWeb930550\",\r\n \"etag\": \"W/\\\"97df6b2c-1591-4ab6-9c56-90572103ce4d\\\"\",\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/PSTestRG93055a66/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG930550/defaultSecurityRules/AllowVnetInBound\",\r\n \"etag\": \"W/\\\"97df6b2c-1591-4ab6-9c56-90572103ce4d\\\"\",\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/PSTestRG93055a66/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG930550/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\r\n \"etag\": \"W/\\\"97df6b2c-1591-4ab6-9c56-90572103ce4d\\\"\",\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/PSTestRG93055a66/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG930550/defaultSecurityRules/DenyAllInBound\",\r\n \"etag\": \"W/\\\"97df6b2c-1591-4ab6-9c56-90572103ce4d\\\"\",\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/PSTestRG93055a66/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG930550/defaultSecurityRules/AllowVnetOutBound\",\r\n \"etag\": \"W/\\\"97df6b2c-1591-4ab6-9c56-90572103ce4d\\\"\",\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/PSTestRG93055a66/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG930550/defaultSecurityRules/AllowInternetOutBound\",\r\n \"etag\": \"W/\\\"97df6b2c-1591-4ab6-9c56-90572103ce4d\\\"\",\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/PSTestRG93055a66/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG930550/defaultSecurityRules/DenyAllOutBound\",\r\n \"etag\": \"W/\\\"97df6b2c-1591-4ab6-9c56-90572103ce4d\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG8c1d80?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOGMxZDhkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtTZWN1cml0eUdyb3Vwcy9QU1Rlc3ROU0c4YzFkODA/YXBpLXZlcnNpb249MjAyMS0wNS0wMQ==", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG930550?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTMwNTVhNjYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtTZWN1cml0eUdyb3Vwcy9QU1Rlc3ROU0c5MzA1NTA/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==", "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\": \"PSTestNSGRuleRDP8c1d80\"\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\": \"PSTestNSGRuleWeb8c1d80\"\r\n }\r\n ]\r\n },\r\n \"location\": \"southeastasia\"\r\n}", + "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\": \"PSTestNSGRuleRDP930550\"\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\": \"PSTestNSGRuleWeb930550\"\r\n }\r\n ]\r\n },\r\n \"location\": \"southeastasia\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "a1ed94a4-a992-45d0-b785-23fd92bdda27" + "3f331c00-c6e9-4d67-b18d-86d4f64824e7" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1299,19 +1299,19 @@ "3" ], "x-ms-request-id": [ - "56521631-dbf5-4715-acfa-4b682385a843" + "edff9fd5-c469-4b23-bc40-04fae47449c5" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Network/locations/southeastasia/operations/56521631-dbf5-4715-acfa-4b682385a843?api-version=2021-05-01" + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Network/locations/southeastasia/operations/edff9fd5-c469-4b23-bc40-04fae47449c5?api-version=2021-08-01" ], "x-ms-correlation-request-id": [ - "04140c75-390d-4cca-b1cf-fcd366497bfe" + "574ea5b4-6531-4b2f-a204-5440cc0d30ea" ], "Azure-AsyncNotification": [ "Enabled" ], "x-ms-arm-service-request-id": [ - "68159868-c00b-425c-aaf5-c64b58f39f16" + "fa2cc37b-5028-410a-b9c9-225224cd4027" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1324,13 +1324,13 @@ "1197" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220225T000034Z:04140c75-390d-4cca-b1cf-fcd366497bfe" + "WESTINDIA:20220517T073248Z:574ea5b4-6531-4b2f-a204-5440cc0d30ea" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 25 Feb 2022 00:00:34 GMT" + "Tue, 17 May 2022 07:32:47 GMT" ], "Content-Length": [ "8466" @@ -1342,23 +1342,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"PSTestNSG8c1d80\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG8c1d80\",\r\n \"etag\": \"W/\\\"1375cbaf-9eff-4fa9-a7db-41f92cda8879\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"8e86eced-8dca-4a17-b070-37165a27addc\",\r\n \"securityRules\": [\r\n {\r\n \"name\": \"PSTestNSGRuleRDP8c1d80\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG8c1d80/securityRules/PSTestNSGRuleRDP8c1d80\",\r\n \"etag\": \"W/\\\"1375cbaf-9eff-4fa9-a7db-41f92cda8879\\\"\",\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\": \"PSTestNSGRuleWeb8c1d80\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG8c1d80/securityRules/PSTestNSGRuleWeb8c1d80\",\r\n \"etag\": \"W/\\\"1375cbaf-9eff-4fa9-a7db-41f92cda8879\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG8c1d80/defaultSecurityRules/AllowVnetInBound\",\r\n \"etag\": \"W/\\\"1375cbaf-9eff-4fa9-a7db-41f92cda8879\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG8c1d80/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\r\n \"etag\": \"W/\\\"1375cbaf-9eff-4fa9-a7db-41f92cda8879\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG8c1d80/defaultSecurityRules/DenyAllInBound\",\r\n \"etag\": \"W/\\\"1375cbaf-9eff-4fa9-a7db-41f92cda8879\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG8c1d80/defaultSecurityRules/AllowVnetOutBound\",\r\n \"etag\": \"W/\\\"1375cbaf-9eff-4fa9-a7db-41f92cda8879\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG8c1d80/defaultSecurityRules/AllowInternetOutBound\",\r\n \"etag\": \"W/\\\"1375cbaf-9eff-4fa9-a7db-41f92cda8879\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG8c1d80/defaultSecurityRules/DenyAllOutBound\",\r\n \"etag\": \"W/\\\"1375cbaf-9eff-4fa9-a7db-41f92cda8879\\\"\",\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}", + "ResponseBody": "{\r\n \"name\": \"PSTestNSG930550\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG930550\",\r\n \"etag\": \"W/\\\"ef0bb07b-d813-4343-8a6a-91ed7dcc1a77\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"20333939-c1fa-4b52-93a9-bd1eb13ba48b\",\r\n \"securityRules\": [\r\n {\r\n \"name\": \"PSTestNSGRuleRDP930550\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG930550/securityRules/PSTestNSGRuleRDP930550\",\r\n \"etag\": \"W/\\\"ef0bb07b-d813-4343-8a6a-91ed7dcc1a77\\\"\",\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\": \"PSTestNSGRuleWeb930550\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG930550/securityRules/PSTestNSGRuleWeb930550\",\r\n \"etag\": \"W/\\\"ef0bb07b-d813-4343-8a6a-91ed7dcc1a77\\\"\",\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/PSTestRG93055a66/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG930550/defaultSecurityRules/AllowVnetInBound\",\r\n \"etag\": \"W/\\\"ef0bb07b-d813-4343-8a6a-91ed7dcc1a77\\\"\",\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/PSTestRG93055a66/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG930550/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\r\n \"etag\": \"W/\\\"ef0bb07b-d813-4343-8a6a-91ed7dcc1a77\\\"\",\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/PSTestRG93055a66/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG930550/defaultSecurityRules/DenyAllInBound\",\r\n \"etag\": \"W/\\\"ef0bb07b-d813-4343-8a6a-91ed7dcc1a77\\\"\",\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/PSTestRG93055a66/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG930550/defaultSecurityRules/AllowVnetOutBound\",\r\n \"etag\": \"W/\\\"ef0bb07b-d813-4343-8a6a-91ed7dcc1a77\\\"\",\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/PSTestRG93055a66/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG930550/defaultSecurityRules/AllowInternetOutBound\",\r\n \"etag\": \"W/\\\"ef0bb07b-d813-4343-8a6a-91ed7dcc1a77\\\"\",\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/PSTestRG93055a66/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG930550/defaultSecurityRules/DenyAllOutBound\",\r\n \"etag\": \"W/\\\"ef0bb07b-d813-4343-8a6a-91ed7dcc1a77\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Network/locations/southeastasia/operations/56521631-dbf5-4715-acfa-4b682385a843?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzU2NTIxNjMxLWRiZjUtNDcxNS1hY2ZhLTRiNjgyMzg1YTg0Mz9hcGktdmVyc2lvbj0yMDIxLTA1LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Network/locations/southeastasia/operations/edff9fd5-c469-4b23-bc40-04fae47449c5?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2VkZmY5ZmQ1LWM0NjktNGIyMy1iYzQwLTA0ZmFlNDc0NDljNT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a1ed94a4-a992-45d0-b785-23fd92bdda27" + "3f331c00-c6e9-4d67-b18d-86d4f64824e7" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ] }, "ResponseHeaders": { @@ -1369,13 +1369,13 @@ "no-cache" ], "x-ms-request-id": [ - "61fff9cc-2a42-4cab-a620-7a1674e1e153" + "09be77ac-37ee-4863-b884-a5ac9a25b0e7" ], "x-ms-correlation-request-id": [ - "c8cde6cb-aeb4-49a0-aa29-3f904aee7338" + "0b38f8ef-a19a-4140-928a-bd970d7f27cd" ], "x-ms-arm-service-request-id": [ - "1dd232d5-86f5-42cb-bce3-9959a8053811" + "95b1e36c-6eff-4a14-b4d7-2e1e2871759e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1388,13 +1388,13 @@ "11990" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220225T000038Z:c8cde6cb-aeb4-49a0-aa29-3f904aee7338" + "WESTINDIA:20220517T073251Z:0b38f8ef-a19a-4140-928a-bd970d7f27cd" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 25 Feb 2022 00:00:38 GMT" + "Tue, 17 May 2022 07:32:51 GMT" ], "Content-Length": [ "29" @@ -1410,22 +1410,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.Network/networkInterfaces/PSTestNIC8c1d80?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOGMxZDhkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL1BTVGVzdE5JQzhjMWQ4MD9hcGktdmVyc2lvbj0yMDIxLTA1LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.Network/networkInterfaces/PSTestNIC930550?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTMwNTVhNjYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL1BTVGVzdE5JQzkzMDU1MD9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "34c166da-e1b9-4f6c-9cb9-329572c456ae" + "d59008e8-5141-401f-b527-ce0e7317acc7" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ] }, "ResponseHeaders": { @@ -1439,13 +1439,13 @@ "gateway" ], "x-ms-request-id": [ - "a7c662bd-b8c9-48c9-bb05-b5653d399082" + "92cc2ce7-f272-45ee-ba47-d221aacffa24" ], "x-ms-correlation-request-id": [ - "a7c662bd-b8c9-48c9-bb05-b5653d399082" + "92cc2ce7-f272-45ee-ba47-d221aacffa24" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220225T000039Z:a7c662bd-b8c9-48c9-bb05-b5653d399082" + "WESTINDIA:20220517T073251Z:92cc2ce7-f272-45ee-ba47-d221aacffa24" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1454,7 +1454,7 @@ "nosniff" ], "Date": [ - "Fri, 25 Feb 2022 00:00:39 GMT" + "Tue, 17 May 2022 07:32:51 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1466,23 +1466,23 @@ "239" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/networkInterfaces/PSTestNIC8c1d80' under resource group 'PSTestRG8c1d8dac' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/networkInterfaces/PSTestNIC930550' under resource group 'PSTestRG93055a66' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.Network/networkInterfaces/PSTestNIC8c1d80?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOGMxZDhkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL1BTVGVzdE5JQzhjMWQ4MD9hcGktdmVyc2lvbj0yMDIxLTA1LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.Network/networkInterfaces/PSTestNIC930550?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTMwNTVhNjYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL1BTVGVzdE5JQzkzMDU1MD9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "34c166da-e1b9-4f6c-9cb9-329572c456ae" + "d59008e8-5141-401f-b527-ce0e7317acc7" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ] }, "ResponseHeaders": { @@ -1493,16 +1493,16 @@ "no-cache" ], "ETag": [ - "W/\"ebaac17a-bd09-4724-9890-e1d241cdcdf8\"" + "W/\"bd417fce-0f74-45b8-889f-c5fa9e9ce9e3\"" ], "x-ms-request-id": [ - "6e0ff726-448e-411c-8775-d9d9f0aa2b39" + "fcbebc0e-fb62-4026-97f0-741daa12b573" ], "x-ms-correlation-request-id": [ - "84b9a346-d31c-4a57-babd-6492f0c22fe1" + "5a610bb8-6c89-4d86-af0b-3dba51c0da2d" ], "x-ms-arm-service-request-id": [ - "96c007a5-6cb5-4b6e-8c3f-7f414b9c4307" + "b755a991-126f-4235-86f5-85ecdd0b5a97" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1515,16 +1515,16 @@ "11986" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220225T000043Z:84b9a346-d31c-4a57-babd-6492f0c22fe1" + "WESTINDIA:20220517T073253Z:5a610bb8-6c89-4d86-af0b-3dba51c0da2d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 25 Feb 2022 00:00:42 GMT" + "Tue, 17 May 2022 07:32:53 GMT" ], "Content-Length": [ - "2143" + "2165" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1533,26 +1533,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"PSTestNIC8c1d80\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.Network/networkInterfaces/PSTestNIC8c1d80\",\r\n \"etag\": \"W/\\\"ebaac17a-bd09-4724-9890-e1d241cdcdf8\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"184973e1-4a14-4965-b8b7-4dffbe626947\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.Network/networkInterfaces/PSTestNIC8c1d80/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"ebaac17a-bd09-4724-9890-e1d241cdcdf8\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.Network/publicIPAddresses/pstestpublicdns8c1d80\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.Network/virtualNetworks/PSTestVNET8c1d80/subnets/PSTestSNC8c1d80\"\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\": \"p3wm3pcmh0curgcb2ftokrfjie.ix.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"vnetEncryptionSupported\": false,\r\n \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG8c1d80\"\r\n },\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": [],\r\n \"nicType\": \"Standard\"\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"PSTestNIC930550\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.Network/networkInterfaces/PSTestNIC930550\",\r\n \"etag\": \"W/\\\"bd417fce-0f74-45b8-889f-c5fa9e9ce9e3\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"8e7933a3-6733-4862-869d-28493928f1cb\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.Network/networkInterfaces/PSTestNIC930550/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"bd417fce-0f74-45b8-889f-c5fa9e9ce9e3\\\"\",\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/PSTestRG93055a66/providers/Microsoft.Network/publicIPAddresses/pstestpublicdns930550\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.Network/virtualNetworks/PSTestVNET930550/subnets/PSTestSNC930550\"\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\": \"3f5j1tnecohezheb4p201kggah.ix.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"vnetEncryptionSupported\": false,\r\n \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG930550\"\r\n },\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": [],\r\n \"nicType\": \"Standard\"\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"kind\": \"Regular\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.Network/networkInterfaces/PSTestNIC8c1d80?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOGMxZDhkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL1BTVGVzdE5JQzhjMWQ4MD9hcGktdmVyc2lvbj0yMDIxLTA1LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.Network/networkInterfaces/PSTestNIC930550?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTMwNTVhNjYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL1BTVGVzdE5JQzkzMDU1MD9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "34c166da-e1b9-4f6c-9cb9-329572c456ae" + "d59008e8-5141-401f-b527-ce0e7317acc7" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ] }, "ResponseHeaders": { @@ -1563,16 +1563,16 @@ "no-cache" ], "ETag": [ - "W/\"ebaac17a-bd09-4724-9890-e1d241cdcdf8\"" + "W/\"bd417fce-0f74-45b8-889f-c5fa9e9ce9e3\"" ], "x-ms-request-id": [ - "0d975baa-edb1-41ee-b506-ebcd49be7226" + "9824d3f0-faf8-44f8-aa7b-f5f0036adbc3" ], "x-ms-correlation-request-id": [ - "a129357f-5b36-45f0-850f-fdce5c95d65d" + "764b2075-8139-4afc-a867-2a1c9e93f1b4" ], "x-ms-arm-service-request-id": [ - "d9e2990b-9b62-4dff-a011-0ea0e838a960" + "49673d4d-f009-4bb8-9e75-99467240dd24" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1585,16 +1585,16 @@ "11985" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220225T000043Z:a129357f-5b36-45f0-850f-fdce5c95d65d" + "WESTINDIA:20220517T073254Z:764b2075-8139-4afc-a867-2a1c9e93f1b4" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 25 Feb 2022 00:00:42 GMT" + "Tue, 17 May 2022 07:32:53 GMT" ], "Content-Length": [ - "2143" + "2165" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1603,26 +1603,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"PSTestNIC8c1d80\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.Network/networkInterfaces/PSTestNIC8c1d80\",\r\n \"etag\": \"W/\\\"ebaac17a-bd09-4724-9890-e1d241cdcdf8\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"184973e1-4a14-4965-b8b7-4dffbe626947\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.Network/networkInterfaces/PSTestNIC8c1d80/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"ebaac17a-bd09-4724-9890-e1d241cdcdf8\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.Network/publicIPAddresses/pstestpublicdns8c1d80\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.Network/virtualNetworks/PSTestVNET8c1d80/subnets/PSTestSNC8c1d80\"\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\": \"p3wm3pcmh0curgcb2ftokrfjie.ix.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"vnetEncryptionSupported\": false,\r\n \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG8c1d80\"\r\n },\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": [],\r\n \"nicType\": \"Standard\"\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"PSTestNIC930550\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.Network/networkInterfaces/PSTestNIC930550\",\r\n \"etag\": \"W/\\\"bd417fce-0f74-45b8-889f-c5fa9e9ce9e3\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"8e7933a3-6733-4862-869d-28493928f1cb\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.Network/networkInterfaces/PSTestNIC930550/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"bd417fce-0f74-45b8-889f-c5fa9e9ce9e3\\\"\",\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/PSTestRG93055a66/providers/Microsoft.Network/publicIPAddresses/pstestpublicdns930550\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.Network/virtualNetworks/PSTestVNET930550/subnets/PSTestSNC930550\"\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\": \"3f5j1tnecohezheb4p201kggah.ix.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"vnetEncryptionSupported\": false,\r\n \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG930550\"\r\n },\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": [],\r\n \"nicType\": \"Standard\"\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"kind\": \"Regular\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.Network/networkInterfaces/PSTestNIC8c1d80?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOGMxZDhkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL1BTVGVzdE5JQzhjMWQ4MD9hcGktdmVyc2lvbj0yMDIxLTA1LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.Network/networkInterfaces/PSTestNIC930550?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTMwNTVhNjYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL1BTVGVzdE5JQzkzMDU1MD9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"networkSecurityGroup\": {\r\n \"properties\": {\r\n \"securityRules\": []\r\n },\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG8c1d80\",\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 \"applicationGatewayIpConfigurations\": []\r\n },\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.Network/virtualNetworks/PSTestVNET8c1d80/subnets/PSTestSNC8c1d80\"\r\n },\r\n \"primary\": true,\r\n \"publicIPAddress\": {\r\n \"properties\": {\r\n \"ipTags\": []\r\n },\r\n \"zones\": [],\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.Network/publicIPAddresses/pstestpublicdns8c1d80\",\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\": \"southeastasia\"\r\n}", + "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/PSTestRG93055a66/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG930550\",\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 \"applicationGatewayIpConfigurations\": []\r\n },\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.Network/virtualNetworks/PSTestVNET930550/subnets/PSTestSNC930550\"\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/PSTestRG93055a66/providers/Microsoft.Network/publicIPAddresses/pstestpublicdns930550\",\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\": \"southeastasia\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "34c166da-e1b9-4f6c-9cb9-329572c456ae" + "d59008e8-5141-401f-b527-ce0e7317acc7" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1639,19 +1639,19 @@ "no-cache" ], "x-ms-request-id": [ - "2f915083-fa3a-4ceb-b84d-14fdf05144e1" + "cebabd92-37e4-4890-9f19-caf0e2a4b857" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Network/locations/southeastasia/operations/2f915083-fa3a-4ceb-b84d-14fdf05144e1?api-version=2021-05-01" + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Network/locations/southeastasia/operations/cebabd92-37e4-4890-9f19-caf0e2a4b857?api-version=2021-08-01" ], "x-ms-correlation-request-id": [ - "660d03ce-c4b5-4c1f-941f-d50fb78908bc" + "fed8ff5f-e2e8-49e2-9d2e-02c370e16850" ], "Azure-AsyncNotification": [ "Enabled" ], "x-ms-arm-service-request-id": [ - "e3cbe8ae-27c4-4162-9271-a54f70a77b38" + "9e9d358e-c3a2-4b95-9b52-6eaff67ba62d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1664,16 +1664,16 @@ "1196" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220225T000042Z:660d03ce-c4b5-4c1f-941f-d50fb78908bc" + "WESTINDIA:20220517T073253Z:fed8ff5f-e2e8-49e2-9d2e-02c370e16850" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 25 Feb 2022 00:00:42 GMT" + "Tue, 17 May 2022 07:32:53 GMT" ], "Content-Length": [ - "2143" + "2165" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1682,26 +1682,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"PSTestNIC8c1d80\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.Network/networkInterfaces/PSTestNIC8c1d80\",\r\n \"etag\": \"W/\\\"ebaac17a-bd09-4724-9890-e1d241cdcdf8\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"184973e1-4a14-4965-b8b7-4dffbe626947\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.Network/networkInterfaces/PSTestNIC8c1d80/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"ebaac17a-bd09-4724-9890-e1d241cdcdf8\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.Network/publicIPAddresses/pstestpublicdns8c1d80\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.Network/virtualNetworks/PSTestVNET8c1d80/subnets/PSTestSNC8c1d80\"\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\": \"p3wm3pcmh0curgcb2ftokrfjie.ix.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"vnetEncryptionSupported\": false,\r\n \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG8c1d80\"\r\n },\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": [],\r\n \"nicType\": \"Standard\"\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"PSTestNIC930550\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.Network/networkInterfaces/PSTestNIC930550\",\r\n \"etag\": \"W/\\\"bd417fce-0f74-45b8-889f-c5fa9e9ce9e3\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"8e7933a3-6733-4862-869d-28493928f1cb\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.Network/networkInterfaces/PSTestNIC930550/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"bd417fce-0f74-45b8-889f-c5fa9e9ce9e3\\\"\",\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/PSTestRG93055a66/providers/Microsoft.Network/publicIPAddresses/pstestpublicdns930550\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.Network/virtualNetworks/PSTestVNET930550/subnets/PSTestSNC930550\"\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\": \"3f5j1tnecohezheb4p201kggah.ix.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"vnetEncryptionSupported\": false,\r\n \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG930550\"\r\n },\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": [],\r\n \"nicType\": \"Standard\"\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"kind\": \"Regular\"\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Storage/checkNameAvailability?api-version=2021-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9jaGVja05hbWVBdmFpbGFiaWxpdHk/YXBpLXZlcnNpb249MjAyMS0wMi0wMQ==", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Storage/checkNameAvailability?api-version=2021-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9jaGVja05hbWVBdmFpbGFiaWxpdHk/YXBpLXZlcnNpb249MjAyMS0wMi0wMQ==", "RequestMethod": "POST", - "RequestBody": "{\r\n \"name\": \"tespstestpste022419000\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n}", + "RequestBody": "{\r\n \"name\": \"tespstestpste051713020\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "99ef1b14-0146-4db8-85cf-2b54ea3f585f" + "c490081a-28bd-4555-b607-54a143dd9bd4" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.PowerShell.Cmdlets.Compute.Helpers.Storage.StorageManagementClient/4.23.0" + "Microsoft.Azure.PowerShell.Cmdlets.Compute.Helpers.Storage.StorageManagementClient/4.26.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1718,7 +1718,7 @@ "no-cache" ], "x-ms-request-id": [ - "61de3987-32f8-4a89-98f8-59ed8fcc9ece" + "6c5ecd68-b1f6-4169-88ea-86adfc460176" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1730,16 +1730,16 @@ "11999" ], "x-ms-correlation-request-id": [ - "68ec85d0-35f7-4642-b628-a2b542f2d6a5" + "e38ef873-a5c0-4836-9b2b-8e53cac55029" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220225T000044Z:68ec85d0-35f7-4642-b628-a2b542f2d6a5" + "JIOINDIAWEST:20220517T073255Z:e38ef873-a5c0-4836-9b2b-8e53cac55029" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 25 Feb 2022 00:00:44 GMT" + "Tue, 17 May 2022 07:32:54 GMT" ], "Content-Length": [ "22" @@ -1755,22 +1755,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.Compute/virtualMachines/PSTestVM8c1d80?api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOGMxZDhkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy9QU1Rlc3RWTThjMWQ4MD9hcGktdmVyc2lvbj0yMDIxLTExLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.Compute/virtualMachines/PSTestVM930550?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTMwNTVhNjYvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy9QU1Rlc3RWTTkzMDU1MD9hcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D1_v2\"\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\": \"PSTestVM8c1d80\",\r\n \"adminUsername\": \"demouser\",\r\n \"adminPassword\": \"8c1d8dac-e99Aa.\",\r\n \"windowsConfiguration\": {}\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.Network/networkInterfaces/PSTestNIC8c1d80\"\r\n }\r\n ]\r\n }\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MabUsed\": \"Yes\",\r\n \"AutoShutDown\": \"No\",\r\n \"Purpose\": \"PSTest\",\r\n \"Owner\": \"sarath\",\r\n \"DeleteBy\": \"06-2022\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D1_v2\"\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\": \"PSTestVM930550\",\r\n \"adminUsername\": \"demouser\",\r\n \"adminPassword\": \"93055a66-4adAa.\",\r\n \"windowsConfiguration\": {}\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.Network/networkInterfaces/PSTestNIC930550\"\r\n }\r\n ]\r\n }\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"Purpose\": \"PSTest\",\r\n \"DeleteBy\": \"06-2022\",\r\n \"Owner\": \"sarath\",\r\n \"AutoShutDown\": \"No\",\r\n \"MabUsed\": \"Yes\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "99ef1b14-0146-4db8-85cf-2b54ea3f585f" + "c490081a-28bd-4555-b607-54a143dd9bd4" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1790,41 +1790,41 @@ "10" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/southeastasia/operations/e1d598e1-227d-43ec-92ae-a851810f4bbd?p=34dc709c-01b2-42c4-84a2-256a9734610d&api-version=2021-11-01" + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Compute/locations/southeastasia/operations/3648dc53-8d9e-466b-b360-49f19b68220b?p=e484ceca-6435-4a7f-b125-3d82e6b12014&api-version=2021-11-01" ], "Azure-AsyncNotification": [ "Enabled" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/PutVM3Min;239,Microsoft.Compute/PutVM30Min;1198" + "Microsoft.Compute/PutVM3Min;239,Microsoft.Compute/PutVM30Min;1197" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e1d598e1-227d-43ec-92ae-a851810f4bbd" + "3648dc53-8d9e-466b-b360-49f19b68220b" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1198" ], "x-ms-correlation-request-id": [ - "4c839e83-e623-4b5c-99ba-1cd12624969b" + "5a737299-bd5a-4edf-8081-21f400731a65" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220225T000057Z:4c839e83-e623-4b5c-99ba-1cd12624969b" + "WESTINDIA:20220517T073258Z:5a737299-bd5a-4edf-8081-21f400731a65" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 25 Feb 2022 00:00:57 GMT" + "Tue, 17 May 2022 07:32:58 GMT" ], "Content-Length": [ - "1992" + "1922" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1833,23 +1833,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"PSTestVM8c1d80\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.Compute/virtualMachines/PSTestVM8c1d80\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MabUsed\": \"Yes\",\r\n \"AutoShutDown\": \"No\",\r\n \"Purpose\": \"PSTest\",\r\n \"Owner\": \"sarath\",\r\n \"DeleteBy\": \"06-2022\",\r\n \"azsecpack\": \"nonprod\",\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": \"true\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"0b52d0e4-dc8c-4ec7-a127-d72b94b203bf\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D1_v2\"\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.4946.220202\"\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 \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"PSTestVM8c1d80\",\r\n \"adminUsername\": \"demouser\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"AutomaticByOS\",\r\n \"assessmentMode\": \"ImageDefault\"\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.Network/networkInterfaces/PSTestNIC8c1d80\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\",\r\n \"timeCreated\": \"2022-02-24T19:00:54.7842174-05:00\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"PSTestVM930550\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.Compute/virtualMachines/PSTestVM930550\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"Purpose\": \"PSTest\",\r\n \"DeleteBy\": \"06-2022\",\r\n \"Owner\": \"sarath\",\r\n \"AutoShutDown\": \"No\",\r\n \"MabUsed\": \"Yes\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"626c8ea7-f438-4bf2-af1d-50adf1fc7665\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D1_v2\"\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.5125.220505\"\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 \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"PSTestVM930550\",\r\n \"adminUsername\": \"demouser\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"AutomaticByOS\",\r\n \"assessmentMode\": \"ImageDefault\"\r\n },\r\n \"enableVMAgentPlatformUpdates\": false\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/PSTestRG93055a66/providers/Microsoft.Network/networkInterfaces/PSTestNIC930550\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\",\r\n \"timeCreated\": \"2022-05-17T13:02:58.1676544+05:30\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/southeastasia/operations/e1d598e1-227d-43ec-92ae-a851810f4bbd?p=34dc709c-01b2-42c4-84a2-256a9734610d&api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2UxZDU5OGUxLTIyN2QtNDNlYy05MmFlLWE4NTE4MTBmNGJiZD9wPTM0ZGM3MDljLTAxYjItNDJjNC04NGEyLTI1NmE5NzM0NjEwZCZhcGktdmVyc2lvbj0yMDIxLTExLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Compute/locations/southeastasia/operations/3648dc53-8d9e-466b-b360-49f19b68220b?p=e484ceca-6435-4a7f-b125-3d82e6b12014&api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzM2NDhkYzUzLThkOWUtNDY2Yi1iMzYwLTQ5ZjE5YjY4MjIwYj9wPWU0ODRjZWNhLTY0MzUtNGE3Zi1iMTI1LTNkODJlNmIxMjAxNCZhcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "99ef1b14-0146-4db8-85cf-2b54ea3f585f" + "c490081a-28bd-4555-b607-54a143dd9bd4" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ] }, "ResponseHeaders": { @@ -1863,35 +1863,35 @@ "50" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperation3Min;14999,Microsoft.Compute/GetOperation30Min;29983" + "Microsoft.Compute/GetOperation3Min;14996,Microsoft.Compute/GetOperation30Min;29977" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f43c5f80-3401-4813-9c6f-56d44d3ac806" + "5e49d297-0e20-434d-beb5-8bd080038ad7" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11993" ], "x-ms-correlation-request-id": [ - "23901679-e634-459f-a1cb-c4e98a33ffcc" + "3bbb3b81-847b-478e-a3b8-0dbc8bb86309" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220225T000108Z:23901679-e634-459f-a1cb-c4e98a33ffcc" + "WESTINDIA:20220517T073309Z:3bbb3b81-847b-478e-a3b8-0dbc8bb86309" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 25 Feb 2022 00:01:07 GMT" + "Tue, 17 May 2022 07:33:08 GMT" ], "Content-Length": [ - "133" + "134" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1900,23 +1900,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-02-24T19:00:54.221733-05:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"e1d598e1-227d-43ec-92ae-a851810f4bbd\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2022-05-17T13:02:57.6207276+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"3648dc53-8d9e-466b-b360-49f19b68220b\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/southeastasia/operations/e1d598e1-227d-43ec-92ae-a851810f4bbd?p=34dc709c-01b2-42c4-84a2-256a9734610d&api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2UxZDU5OGUxLTIyN2QtNDNlYy05MmFlLWE4NTE4MTBmNGJiZD9wPTM0ZGM3MDljLTAxYjItNDJjNC04NGEyLTI1NmE5NzM0NjEwZCZhcGktdmVyc2lvbj0yMDIxLTExLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Compute/locations/southeastasia/operations/3648dc53-8d9e-466b-b360-49f19b68220b?p=e484ceca-6435-4a7f-b125-3d82e6b12014&api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzM2NDhkYzUzLThkOWUtNDY2Yi1iMzYwLTQ5ZjE5YjY4MjIwYj9wPWU0ODRjZWNhLTY0MzUtNGE3Zi1iMTI1LTNkODJlNmIxMjAxNCZhcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "99ef1b14-0146-4db8-85cf-2b54ea3f585f" + "c490081a-28bd-4555-b607-54a143dd9bd4" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ] }, "ResponseHeaders": { @@ -1927,35 +1927,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperation3Min;14998,Microsoft.Compute/GetOperation30Min;29982" + "Microsoft.Compute/GetOperation3Min;14996,Microsoft.Compute/GetOperation30Min;29976" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "80099c7c-eb28-4d3a-a50d-eb6d0acf0e13" + "51b2929e-1979-4a4c-9f21-9edb5f2a078a" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11992" ], "x-ms-correlation-request-id": [ - "b5df35ac-02b7-41ba-bacf-1194ecc2565c" + "2dde91d5-c692-4c0f-993c-84848901cb56" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220225T000158Z:b5df35ac-02b7-41ba-bacf-1194ecc2565c" + "WESTINDIA:20220517T073359Z:2dde91d5-c692-4c0f-993c-84848901cb56" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 25 Feb 2022 00:01:58 GMT" + "Tue, 17 May 2022 07:33:59 GMT" ], "Content-Length": [ - "133" + "134" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1964,23 +1964,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-02-24T19:00:54.221733-05:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"e1d598e1-227d-43ec-92ae-a851810f4bbd\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2022-05-17T13:02:57.6207276+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"3648dc53-8d9e-466b-b360-49f19b68220b\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/southeastasia/operations/e1d598e1-227d-43ec-92ae-a851810f4bbd?p=34dc709c-01b2-42c4-84a2-256a9734610d&api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2UxZDU5OGUxLTIyN2QtNDNlYy05MmFlLWE4NTE4MTBmNGJiZD9wPTM0ZGM3MDljLTAxYjItNDJjNC04NGEyLTI1NmE5NzM0NjEwZCZhcGktdmVyc2lvbj0yMDIxLTExLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Compute/locations/southeastasia/operations/3648dc53-8d9e-466b-b360-49f19b68220b?p=e484ceca-6435-4a7f-b125-3d82e6b12014&api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzM2NDhkYzUzLThkOWUtNDY2Yi1iMzYwLTQ5ZjE5YjY4MjIwYj9wPWU0ODRjZWNhLTY0MzUtNGE3Zi1iMTI1LTNkODJlNmIxMjAxNCZhcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "99ef1b14-0146-4db8-85cf-2b54ea3f585f" + "c490081a-28bd-4555-b607-54a143dd9bd4" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ] }, "ResponseHeaders": { @@ -1991,35 +1991,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperation3Min;14997,Microsoft.Compute/GetOperation30Min;29981" + "Microsoft.Compute/GetOperation3Min;14997,Microsoft.Compute/GetOperation30Min;29975" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "6ada0684-3dd3-4838-a895-718e74f101ae" + "f5bdd8d3-a8a4-4c44-980c-ca2c290d166a" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11991" ], "x-ms-correlation-request-id": [ - "f47bd055-cb65-4802-a010-da5d01ff4df6" + "279d82c7-60ee-401a-95e8-5cb83fca5d74" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220225T000249Z:f47bd055-cb65-4802-a010-da5d01ff4df6" + "WESTINDIA:20220517T073449Z:279d82c7-60ee-401a-95e8-5cb83fca5d74" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 25 Feb 2022 00:02:48 GMT" + "Tue, 17 May 2022 07:34:48 GMT" ], "Content-Length": [ - "183" + "184" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2028,26 +2028,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-02-24T19:00:54.221733-05:00\",\r\n \"endTime\": \"2022-02-24T19:02:26.0041011-05:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"e1d598e1-227d-43ec-92ae-a851810f4bbd\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2022-05-17T13:02:57.6207276+05:30\",\r\n \"endTime\": \"2022-05-17T13:04:45.0572706+05:30\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"3648dc53-8d9e-466b-b360-49f19b68220b\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/southeastasia/publishers?api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9wdWJsaXNoZXJzP2FwaS12ZXJzaW9uPTIwMjEtMTEtMDE=", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Compute/locations/southeastasia/publishers?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9wdWJsaXNoZXJzP2FwaS12ZXJzaW9uPTIwMjEtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "99ef1b14-0146-4db8-85cf-2b54ea3f585f" + "c490081a-28bd-4555-b607-54a143dd9bd4" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ] }, "ResponseHeaders": { @@ -2061,32 +2061,32 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "8d76ef5d-2d17-4297-8566-4612360b9f5a_132860269053396621" + "8d76ef5d-2d17-4297-8566-4612360b9f5a_132927459943306577" ], "x-ms-request-id": [ - "fdb57534-bd93-429a-8884-6965f62e0fa1" + "7733d3c3-95bb-46d4-b9fc-152db2b748c1" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11989" ], "x-ms-correlation-request-id": [ - "324c434a-0b1f-40ff-8041-2cf4f34db930" + "b26e68cb-e68b-4ffe-8ab6-28a7ebe8b6ac" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220225T000252Z:324c434a-0b1f-40ff-8041-2cf4f34db930" + "WESTINDIA:20220517T073450Z:b26e68cb-e68b-4ffe-8ab6-28a7ebe8b6ac" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 25 Feb 2022 00:02:52 GMT" + "Tue, 17 May 2022 07:34:49 GMT" ], "Content-Length": [ - "420268" + "429382" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2095,26 +2095,26 @@ "-1" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"128technology\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/128technology\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1580863854728\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1580863854728\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1583411303229\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1583411303229\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1583465680865\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1583465680865\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1585118004523\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1585118004523\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1597644262255\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1597644262255\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1598955805825\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1598955805825\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1601633765871\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1601633765871\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1602067018799\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1602067018799\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1604579683207\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1604579683207\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1615257339685\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1615257339685\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1615278064010\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1615278064010\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1615455873642\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1615455873642\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1624590941808\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1624590941808\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1e\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1e\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"2021ai\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/2021ai\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"247commercelimited1611063941652\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/247commercelimited1611063941652\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"3cx-pbx\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/3cx-pbx\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"42crunch1580391915541\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/42crunch1580391915541\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"4psa\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/4psa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"5nine-software-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/5nine-software-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"7isolutions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/7isolutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"a10networks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/a10networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"a10networks1596136698788\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/a10networks1596136698788\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"abiquo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/abiquo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"abzoobainc1598420455082\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/abzoobainc1598420455082\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"accedian\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/accedian\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"accelario1579101623356\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/accelario1579101623356\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"accellion\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/accellion\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"accessdata-group\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/accessdata-group\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"accops\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/accops\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aciworldwide\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aciworldwide\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Acronis\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Acronis\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Acronis.Backup\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Acronis.Backup\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"actian-corp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/actian-corp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"actian_matrix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/actian_matrix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"actifio\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/actifio\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"actiphy\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/actiphy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"actiphyinc1627974506603\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/actiphyinc1627974506603\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"activecountermeasuresinc1631039410073\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/activecountermeasuresinc1631039410073\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"activeeon\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/activeeon\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"activeops\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/activeops\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"adastracorporation-4028356\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/adastracorporation-4028356\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"adgs\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/adgs\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"advantech\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/advantech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"advantech-webaccess\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/advantech-webaccess\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"advantys\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/advantys\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aelf\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aelf\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aerospike\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aerospike\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"affinio\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/affinio\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"affirmednetworks1607630812999\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/affirmednetworks1607630812999\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ageniumscale1591804889317\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ageniumscale1591804889317\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aggregion-ltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aggregion-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"agiledialogssl1603791911858\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/agiledialogssl1603791911858\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"agolo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/agolo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ahnlabinc1584495174865\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ahnlabinc1584495174865\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ahnlabinc1584495467593\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ahnlabinc1584495467593\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"airalabrus\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/airalabrus\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aiscaler-cache-control-ddos-and-url-rewriting-\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aiscaler-cache-control-ddos-and-url-rewriting-\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aisundowninc1618516322959\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aisundowninc1618516322959\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"akamai-technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/akamai-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"akumina\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/akumina\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"akumo-software\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/akumo-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"al-tamamunitedtradingcontractingcompany\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/al-tamamunitedtradingcontractingcompany\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"alachisoft\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/alachisoft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"alertlogic\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/alertlogic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"AlertLogic.Extension\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/AlertLogic.Extension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"algolyticstechnologies1606475101268\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/algolyticstechnologies1606475101268\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"alicetrix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/alicetrix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"alienvault\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/alienvault\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"alldigital-brevity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/alldigital-brevity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"almalinux\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/almalinux\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"almalinuxosfoundation1628089859865\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/almalinuxosfoundation1628089859865\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"altair-engineering-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/altair-engineering-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"altamira-corporation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/altamira-corporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"alteryx\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/alteryx\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"altova\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/altova\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"amergint1593131356777\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/amergint1593131356777\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ansys\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ansys\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"antmedia\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/antmedia\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aod\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aod\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"apigee\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/apigee\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"appcara\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appcara\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"appcelerator\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appcelerator\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"appex-networks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appex-networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"appistry\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appistry\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"appiyo_technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appiyo_technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"appmint_inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appmint_inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"apps-4-rent\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/apps-4-rent\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"appscale-marketplace\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appscale-marketplace\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"appsurifyinc1606933045773\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appsurifyinc1606933045773\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aquaforest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aquaforest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aquantyinc1598537176913\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aquantyinc1598537176913\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aquaveollc1633710529908\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aquaveollc1633710529908\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"arabesque-group\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/arabesque-group\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"arangodb\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/arangodb\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aras\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aras\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"arcblock\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/arcblock\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"arcesb\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/arcesb\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"arcontechsolutionsprivatelimited1623841797810\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/arcontechsolutionsprivatelimited1623841797810\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"arcserveusallc-marketing\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/arcserveusallc-marketing\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"arista-networks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/arista-networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ariwontollc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ariwontollc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"array_networks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/array_networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"artificial-intelligence-techniques-sl\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/artificial-intelligence-techniques-sl\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"arubanetworks-4922182\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/arubanetworks-4922182\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"asdivertissementinc1617837708654\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/asdivertissementinc1617837708654\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"asigra\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/asigra\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aspentechnologyhq-1353108\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aspentechnologyhq-1353108\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"astadia-1148316\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/astadia-1148316\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"asterasoftware1581022936015\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/asterasoftware1581022936015\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"asyscosoftwarebv\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/asyscosoftwarebv\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ataccama\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ataccama\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"athinfosystems1641442221349\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/athinfosystems1641442221349\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"atlgaming\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/atlgaming\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"atmosera\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/atmosera\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"atomicorp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/atomicorp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"atomizedinc1587939464368\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/atomizedinc1587939464368\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"attunity_cloudbeam\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/attunity_cloudbeam\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"audiocodes\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/audiocodes\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"auraportal\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/auraportal\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"auriq-systems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/auriq-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"automateio1592914387888\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/automateio1592914387888\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"automationanywhere\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/automationanywhere\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"avanseus\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/avanseus\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"avepoint\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/avepoint\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aveva1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aveva1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"avi-networks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/avi-networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aviatrix-systems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aviatrix-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"awingu\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/awingu\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"axedrasag1590581171549\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/axedrasag1590581171549\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"axsguardablenv\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/axsguardablenv\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"axshco\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/axshco\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"axway\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/axway\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"axxana\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/axxana\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"azhpc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/azhpc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"azul\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/azul\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"azure-dockit\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/azure-dockit\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"azurecyclecloud\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/azurecyclecloud\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"AzureDatabricks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/AzureDatabricks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"azureopenshift\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/azureopenshift\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"AzureRT.PIR.Synthetics.ProdTest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/AzureRT.PIR.Synthetics.ProdTest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"AzureRT.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/AzureRT.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"azuretesting\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/azuretesting\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"azuretesting2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/azuretesting2\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"azuretesting3\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/azuretesting3\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"AzureTools1type\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/AzureTools1type\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"baas-techbureau\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/baas-techbureau\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"baffle-io\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/baffle-io\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"balabit\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/balabit\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"barracudanetworks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/barracudanetworks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"basho\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/basho\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"batch\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/batch\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bayware\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bayware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bdy\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bdy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"belindaczsro1588885355210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/belindaczsro1588885355210\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bellsoft1582871421940\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bellsoft1582871421940\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"betsol\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/betsol\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"beyondtrust\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/beyondtrust\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bi-builders-as\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bi-builders-as\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"big-id\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/big-id\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"biolibinc1622552350258\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/biolibinc1622552350258\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bissantechnology1583581147809\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bissantechnology1583581147809\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bitdefendercybersecurity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bitdefendercybersecurity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Bitnami\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Bitnami\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bizagi\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bizagi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bizaptyltd1626489237351\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bizaptyltd1626489237351\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bizdataloome\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bizdataloome\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"biztalk360\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/biztalk360\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"black-duck-software\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/black-duck-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"blackbird\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/blackbird\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"blackmagicdesignincorporated1596492193249\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/blackmagicdesignincorporated1596492193249\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"blk-technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/blk-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"blockapps\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/blockapps\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"blockchain-foundry\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/blockchain-foundry\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"blockstack\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/blockstack\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bloombase\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bloombase\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bluecat\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bluecat\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bluejeansnetwork1638333611902\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bluejeansnetwork1638333611902\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"blueprismlimited-4827145\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/blueprismlimited-4827145\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bluesyntaxconsulting1617654548594\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bluesyntaxconsulting1617654548594\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bluetalon\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bluetalon\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bmc.ctm\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bmc.ctm\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bmcctm.test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bmcctm.test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"boardpacpvtltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/boardpacpvtltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bocada\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bocada\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"boemskats\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/boemskats\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"botanalytics\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/botanalytics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bowspritconsultingopcprivatelimited1596291408582\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bowspritconsultingopcprivatelimited1596291408582\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bravura-software-llc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bravura-software-llc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Brianjac.Symantec.CloudWorkloadProtection\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Brianjac.Symantec.CloudWorkloadProtection\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bricatainc1584472632111\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bricatainc1584472632111\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bright-computing\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bright-computing\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"brightcomputing\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/brightcomputing\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"brocade_communications\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/brocade_communications\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"brutale\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/brutale\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bryte\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bryte\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bssw\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bssw\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bt-americas-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bt-americas-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"buddhalabs\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/buddhalabs\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cadosecurityltd1626856705534\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cadosecurityltd1626856705534\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"calculated_systems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/calculated_systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"caloudi_corp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/caloudi_corp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"canadiancentreforcybersecurity1610638436359\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/canadiancentreforcybersecurity1610638436359\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Canonical\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Canonical\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"canonical-test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/canonical-test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"carto\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/carto\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cask\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cask\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"castaigroupinc1595243474856\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/castaigroupinc1595243474856\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"catechnologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/catechnologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"catonetworksltd1641478570665\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/catonetworksltd1641478570665\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cautelalabs\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cautelalabs\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cavirin\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cavirin\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cayosoftinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cayosoftinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cdatasoftware\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cdatasoftware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cds\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cds\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"celum-gmbh\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/celum-gmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"center-for-internet-security-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/center-for-internet-security-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"centeritysystems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/centeritysystems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"centrixeltd1594135951373\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/centrixeltd1594135951373\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"centrocomputerspa1584528117084\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/centrocomputerspa1584528117084\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"certifiedsecuritysolutionsinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/certifiedsecuritysolutionsinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"certivox\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/certivox\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cfd-direct\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cfd-direct\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"chain\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/chain\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"checkpoint\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/checkpoint\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"chef-software\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/chef-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Chef.Bootstrap.WindowsAzure\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Chef.Bootstrap.WindowsAzure\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"chunghwatelecom1587573688842\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/chunghwatelecom1587573688842\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cinchy\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cinchy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cinegy-gmbh\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cinegy-gmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"circleci\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/circleci\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cires21\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cires21\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cirruswaveinc1579234787943\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cirruswaveinc1579234787943\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cisco\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cisco\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"citrix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/citrix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Citrix.ADC\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Citrix.ADC\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"clapsodeughaftungsbeschrnkt1626333173563\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/clapsodeughaftungsbeschrnkt1626333173563\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"clear-linux-project\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/clear-linux-project\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"clone-systems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/clone-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"clouber\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/clouber\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloud-checkr\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloud-checkr\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloud-cruiser\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloud-cruiser\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloud-infrastructure-services\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloud-infrastructure-services\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudaccelinc1628754426775\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudaccelinc1628754426775\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudbees\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudbees\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudbees-enterprise-jenkins\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudbees-enterprise-jenkins\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudbolt-software\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudbolt-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudboltsoftware1639523402532\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudboltsoftware1639523402532\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudboost\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudboost\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudcover\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudcover\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudenablers-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudenablers-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudentity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudentity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudera\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudera\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudflare\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudflare\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudhouse\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudhouse\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudinfo-4919088\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudinfo-4919088\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudknox\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudknox\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudlanes\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudlanes\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudlink\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudlink\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"CloudLinkEMC.SecureVM\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/CloudLinkEMC.SecureVM\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudmavensolutions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudmavensolutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudneeti\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudneeti\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudplan-gmbh\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudplan-gmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudsecurity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudsecurity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudsoft\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudsoft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudwhizsolutions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudwhizsolutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudwrxsconsultingltd1631029702055\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudwrxsconsultingltd1631029702055\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"clustrix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/clustrix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cncf-upstream\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cncf-upstream\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"codaintelligence1606495376525\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/codaintelligence1606495376525\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"codelathe\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/codelathe\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"codenvy\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/codenvy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"codetwo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/codetwo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cognexcorporation1613759804979\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cognexcorporation1613759804979\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cognitive-scale\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cognitive-scale\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cognizant\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cognizant\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cognosys\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cognosys\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cohesity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cohesity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cohesitydev1592001764720\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cohesitydev1592001764720\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cohesive\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cohesive\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"coin-sciences-ltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/coin-sciences-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"collabcloudlimited\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/collabcloudlimited\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"collibranv1619508098620\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/collibranv1619508098620\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"commscopeinc1632135151062\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/commscopeinc1632135151062\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"commvault\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/commvault\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"compellon\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/compellon\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"composable\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/composable\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"comunity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/comunity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"concentrationheatandmomentumlimited1616154387047\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/concentrationheatandmomentumlimited1616154387047\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Confer\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Confer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"confluentinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/confluentinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"conflux\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/conflux\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"connecting-software\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/connecting-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"consensys\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/consensys\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"containeraider\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/containeraider\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"contiamogmbh\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/contiamogmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"controlcase\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/controlcase\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"controlplane\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/controlplane\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"controlplanecorporation1609967567639\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/controlplanecorporation1609967567639\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"convertigo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/convertigo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"corda\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/corda\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"core-stack\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/core-stack\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"corent-technology-pvt\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/corent-technology-pvt\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"CoreOS\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/CoreOS\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"couchbase\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/couchbase\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cpanel\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cpanel\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"credativ\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/credativ\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cristiesoftwareltd1599488127561\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cristiesoftwareltd1599488127561\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"crunchyard\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/crunchyard\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"crunchyardltd1623835391104\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/crunchyardltd1623835391104\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cryptocom1585727786636\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cryptocom1585727786636\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cryptosense1605170011574\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cryptosense1605170011574\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cryptzone\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cryptzone\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ctm.bmc.com\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ctm.bmc.com\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cubebackup\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cubebackup\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cyberark\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cyberark\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cybernetica-as\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cybernetica-as\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cyxtera\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cyxtera\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"d4t4_solutions-1164305\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/d4t4_solutions-1164305\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"daceitdbasensetrafficpulse1579892024934\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/daceitdbasensetrafficpulse1579892024934\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"danielsol.AzureTools1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/danielsol.AzureTools1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Dans.Windows.App\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Dans.Windows.App\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Dans3.Windows.App\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Dans3.Windows.App\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dataart\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dataart\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"databricks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/databricks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datacore\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datacore\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Datadog.Agent\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Datadog.Agent\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datadynamicsinc1581991927942\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datadynamicsinc1581991927942\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dataguiseinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dataguiseinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dataiku\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dataiku\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datalayer\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datalayer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datanomers1584919038987\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datanomers1584919038987\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datanova\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datanova\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datapredsa\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datapredsa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dataroadtechnologiesllc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dataroadtechnologiesllc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datasciencedojo1586563145740\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datasciencedojo1586563145740\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datastax\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datastax\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datasunrise\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datasunrise\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datavirtualitygmbh\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datavirtualitygmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datometry\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datometry\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dbs-h\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dbs-h\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ddn-whamcloud-5345716\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ddn-whamcloud-5345716\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Debian\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Debian\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dece-4446019\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dece-4446019\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"decisosalesbv\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/decisosalesbv\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"deepcognitioninc1593512758156\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/deepcognitioninc1593512758156\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"deepsiginc1581610210151\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/deepsiginc1581610210151\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"deepsurfacesecurityinc1632943333445\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/deepsurfacesecurityinc1632943333445\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dellemc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dellemc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dell_software\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dell_software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"delphix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/delphix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"deltapathlimited1592886319362\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/deltapathlimited1592886319362\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"denodo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/denodo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"denyall\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/denyall\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"derdack\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/derdack\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"desktopstudioag1580294245574\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/desktopstudioag1580294245574\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"devfactory\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/devfactory\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"device42inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/device42inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"deviceauthorityinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/deviceauthorityinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"devolutionsinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/devolutionsinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"devopsgroup-uk\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/devopsgroup-uk\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"df-portal-user\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/df-portal-user\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dgsecure\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dgsecure\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Dh2ico\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Dh2ico\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dh2icompany\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dh2icompany\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dhi\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dhi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"diagramics\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/diagramics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dicomsystems1584107398321\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dicomsystems1584107398321\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"diehl-metering\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/diehl-metering\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"digisitesystems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/digisitesystems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"digitaldefenseinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/digitaldefenseinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"digitaloffice\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/digitaloffice\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"digitamizeinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/digitamizeinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"digitate\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/digitate\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"diladele\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/diladele\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dimensionalmechanics-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dimensionalmechanics-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"diqa\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/diqa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"diyatech\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/diyatech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"diyotta\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/diyotta\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"djiindustrialincus\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/djiindustrialincus\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"docker\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/docker\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dome9\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dome9\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dorabot\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dorabot\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dremiocorporation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dremiocorporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"drizti\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/drizti\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"drone\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/drone\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dsi\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dsi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dundas\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dundas\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dyadic_security\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dyadic_security\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dynatrace\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dynatrace\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dynatrace.ruxit\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dynatrace.ruxit\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"e-magicinc1587696283171\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/e-magicinc1587696283171\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"eastwind-networks-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/eastwind-networks-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"easysoftwaresro1593005637384\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/easysoftwaresro1593005637384\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ebesllc1637780200500\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ebesllc1637780200500\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ecessa\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ecessa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"edevtech\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/edevtech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"edgelesssystems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/edgelesssystems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"edgenetworks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/edgenetworks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"edispheresoftwareprivatelimited1606199736428\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/edispheresoftwareprivatelimited1606199736428\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"education4sight\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/education4sight\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"eecservicesfzllc1604836615706\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/eecservicesfzllc1604836615706\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"egnyte\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/egnyte\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"egress1589289169584\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/egress1589289169584\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"eikonasystemsgmbh1601729310063\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/eikonasystemsgmbh1601729310063\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Elastic\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Elastic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"elasticbox\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/elasticbox\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"elecard\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/elecard\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"electric-cloud\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/electric-cloud\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"elevateiot\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/elevateiot\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"eleven01\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/eleven01\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"elfiqnetworks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/elfiqnetworks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"emercoin\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/emercoin\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"energisme1601990637842\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/energisme1601990637842\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"enforongo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/enforongo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"engineering-ingegneriainformatica-spa1626786889850\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/engineering-ingegneriainformatica-spa1626786889850\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"engysltd1624364546407\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/engysltd1624364546407\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"enterprise-ethereum-alliance\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/enterprise-ethereum-alliance\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"enterprisedb-corp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/enterprisedb-corp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"enterpriseworx-it\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/enterpriseworx-it\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"epicgames\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/epicgames\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"epicgamesinc1633466121071\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/epicgamesinc1633466121071\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"eproe\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/eproe\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"equalum\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/equalum\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"equilibrium\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/equilibrium\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"equinix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/equinix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ergoninformatikag1581586464404\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ergoninformatikag1581586464404\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"esdenera\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/esdenera\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ESET\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ESET\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"esetresearch1579795941720\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/esetresearch1579795941720\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"esri\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/esri\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"esyon\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/esyon\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ethereum\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ethereum\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"eurolinuxspzoo1620639373013\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/eurolinuxspzoo1620639373013\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"eventtracker\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/eventtracker\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"evertzmicrosystemsltd1586877923009\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/evertzmicrosystemsltd1586877923009\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"evostream-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/evostream-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"exact\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/exact\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"exasol\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/exasol\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"excelero1608461290726\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/excelero1608461290726\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"exivity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/exivity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"exonar\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/exonar\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"f5-networks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/f5-networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"falainapteltd1604661424876\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/falainapteltd1604661424876\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"falconstorsoftware\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/falconstorsoftware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fatalsecurity1604924013537\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fatalsecurity1604924013537\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fatpipe-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fatpipe-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fenestrae-1035066\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fenestrae-1035066\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fidesys\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fidesys\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"filecatalyst\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/filecatalyst\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"filemagellc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/filemagellc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fiorano\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fiorano\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fireeye\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fireeye\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"firehost\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/firehost\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"firemon\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/firemon\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"firstderivativesplc1596469572732\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/firstderivativesplc1596469572732\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"flashgrid-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/flashgrid-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"flexbby\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/flexbby\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"flexbby-5255860\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/flexbby-5255860\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"flexify-io\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/flexify-io\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"flexxibleit\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/flexxibleit\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"flowmon\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/flowmon\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"flynet\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/flynet\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"foghorn-systems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/foghorn-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"forcepoint-llc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/forcepoint-llc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"forescout\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/forescout\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"foreseetiab1613650409016\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/foreseetiab1613650409016\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"formpipesoftwareab\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/formpipesoftwareab\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"forscene\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/forscene\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fortanix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fortanix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fortinet\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fortinet\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fortycloud\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fortycloud\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"forumsystems1599756394904\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/forumsystems1599756394904\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fotopiatechnologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fotopiatechnologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"foxiteuropegmbh1585901066320\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/foxiteuropegmbh1585901066320\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"franzinc1593030725310\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/franzinc1593030725310\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fujitsu_fast\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fujitsu_fast\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fw\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fw\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"g2kgroupgmbh-4821943\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/g2kgroupgmbh-4821943\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gapteq\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gapteq\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gatlingcorp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gatlingcorp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gbs\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gbs\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gemalto-safenet\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gemalto-safenet\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Gemalto.SafeNet.ProtectV\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Gemalto.SafeNet.ProtectV\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"genuagmbhdevid1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/genuagmbhdevid1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"genua_gmbh\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/genua_gmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"genymobile\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/genymobile\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gigamon-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gigamon-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"GitHub\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/GitHub\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gitlab\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gitlab\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gitlabinc1586447921813\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gitlabinc1586447921813\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gladinet-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gladinet-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"glantoninc1591876792991\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/glantoninc1591876792991\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"globalidsinc1596800540598\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/globalidsinc1596800540598\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"globalscape\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/globalscape\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"globalsolutions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/globalsolutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gluwareinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gluwareinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"graphistry\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/graphistry\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"graphitegtc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/graphitegtc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"great-software-laboratory-private-limited\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/great-software-laboratory-private-limited\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"greensql\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/greensql\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"greycorbelsolutions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/greycorbelsolutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gridgain\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gridgain\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"guardicore\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/guardicore\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gxchainfoundationltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gxchainfoundationltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"h2o-ai\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/h2o-ai\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hackerbay\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hackerbay\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hackershub\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hackershub\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"haivision\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/haivision\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"haivisionsystemsinc1580780591922\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/haivisionsystemsinc1580780591922\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"haltdoscompvtltd1587136166019\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/haltdoscompvtltd1587136166019\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hanu\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hanu\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"haproxy-technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/haproxy-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"harmanconnectedservicesinc1594928575643\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/harmanconnectedservicesinc1594928575643\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"harpaitalia\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/harpaitalia\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hashhub\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hashhub\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hcl-technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hcl-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"heimdall-data\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/heimdall-data\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"help-systems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/help-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"helpyio\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/helpyio\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"heretechnologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/heretechnologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hewlett-packard\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hewlett-packard\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hillstone-networks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hillstone-networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hitachi-solutions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hitachi-solutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hitachivantara\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hitachivantara\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"holo-industrie40softwaregmbh1600957636008\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/holo-industrie40softwaregmbh1600957636008\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hortonworks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hortonworks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hpe\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hpe\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"HPE.Security.ApplicationDefender\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/HPE.Security.ApplicationDefender\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"huawei\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/huawei\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hubstor-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hubstor-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hush-hush\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hush-hush\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hvr\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hvr\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hyperglance\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hyperglance\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hypergrid\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hypergrid\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hystaxinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hystaxinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hytrust\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hytrust\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"i-exceed-technology\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/i-exceed-technology\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iaansys\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iaansys\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ibm\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ibm\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ibm-alliance-global-1560886\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ibm-alliance-global-1560886\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ibm-alliance-usa-ny-armonk-hq-ibmstorage-6201192\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ibm-alliance-usa-ny-armonk-hq-ibmstorage-6201192\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ibm-usa-ny-armonk-hq-6275750-ibmcloud-aiops\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ibm-usa-ny-armonk-hq-6275750-ibmcloud-aiops\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iboss\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iboss\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iconics\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iconics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iconsulting-spa\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iconsulting-spa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"icubeconsultancyservicesinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/icubeconsultancyservicesinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iguazio-5069960\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iguazio-5069960\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ikan\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ikan\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iliimbiliimveyazlmsistemlerisanvetica1617000555584\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iliimbiliimveyazlmsistemlerisanvetica1617000555584\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"illuminainc1586452220102\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/illuminainc1586452220102\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"image-technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/image-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"imaginecommunications\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/imaginecommunications\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"imperva\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/imperva\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"impetustechnologiesinc1591959591877\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/impetustechnologiesinc1591959591877\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"imprivatainc1580479939967\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/imprivatainc1580479939967\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"incorta\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/incorta\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"incredibuild\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/incredibuild\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"indexima1594300233028\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/indexima1594300233028\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"industry-weapon\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/industry-weapon\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"industryweapon1587162781833\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/industryweapon1587162781833\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"inenprocesosyplataformasdetisderldecv1615482385424\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/inenprocesosyplataformasdetisderldecv1615482385424\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"inergybv1637141413454\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/inergybv1637141413454\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"infinitesoftwarecorporation1579223971125\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/infinitesoftwarecorporation1579223971125\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"infiotinc1614034091460\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/infiotinc1614034091460\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"influxdata\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/influxdata\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"infoblox\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/infoblox\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"infogix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/infogix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"infolibrarian\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/infolibrarian\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"informatica\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/informatica\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"informationbuilders\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/informationbuilders\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"informationtechnologies_ltd_1179601\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/informationtechnologies_ltd_1179601\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"infotecsinternetsecuritysoftwaregmbh1636129257584\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/infotecsinternetsecuritysoftwaregmbh1636129257584\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"infront-consulting-group-ltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/infront-consulting-group-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"infscapeughaftungsbeschrnkt\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/infscapeughaftungsbeschrnkt\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ingenieurstudiohollaus1579587745438\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ingenieurstudiohollaus1579587745438\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ingrammicro\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ingrammicro\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"innomindssoftware\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/innomindssoftware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"innosepgmbh1618331344164\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/innosepgmbh1618331344164\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"innovatorartificialtechsrl1619180685551\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/innovatorartificialtechsrl1619180685551\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"innovtech\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/innovtech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"instight-technology\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/instight-technology\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"integration-objects\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/integration-objects\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"intel-bigdl\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/intel-bigdl\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"intel-fpga\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/intel-fpga\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"intellicus-technologies-pvt-ltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/intellicus-technologies-pvt-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"intelligent-plant-ltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/intelligent-plant-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"internationaltrustmachinescorporation1582190033865\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/internationaltrustmachinescorporation1582190033865\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"internet20inc1635882446190\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/internet20inc1635882446190\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"intersystems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/intersystems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"intigua\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/intigua\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"intigua1638692632641\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/intigua1638692632641\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"introspecioltd1629872641188\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/introspecioltd1629872641188\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iofabric\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iofabric\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ipinfusion1590066770520\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ipinfusion1590066770520\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ipswitch\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ipswitch\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iqsol\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iqsol\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iquate\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iquate\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iquest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iquest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"irion\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/irion\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ishlangu-load-balancer-adc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ishlangu-load-balancer-adc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"issp-corporation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/issp-corporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"isvtestukbigcat\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/isvtestukbigcat\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"isvtestuklegacy\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/isvtestuklegacy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"it4bizdoo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/it4bizdoo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"itelios\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/itelios\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"itrsgroupltd1620310702149\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/itrsgroupltd1620310702149\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ivanti-inc-pcs\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ivanti-inc-pcs\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ivix1595238749040\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ivix1595238749040\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iwnamespace\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iwnamespace\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"izenda\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/izenda\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"jamcracker\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/jamcracker\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"javlinltd1579185328273\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/javlinltd1579185328273\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"jedox\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/jedox\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"jelastic\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/jelastic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"jetnexus\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/jetnexus\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"jetware-srl\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/jetware-srl\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"jfrog\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/jfrog\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"jm-technology-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/jm-technology-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"jogetinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/jogetinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"juniper-networks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/juniper-networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"justanalytics\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/justanalytics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kaazing\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kaazing\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kadenallc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kadenallc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kali-linux\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kali-linux\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kalkitech\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kalkitech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kaminarioinc1588672951794\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kaminarioinc1588672951794\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Kaspersky.Lab\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Kaspersky.Lab\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"KasperskyLab.SecurityAgent\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/KasperskyLab.SecurityAgent\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kaspersky_lab\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kaspersky_lab\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kazendi\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kazendi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kelverion\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kelverion\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kemptech\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kemptech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kepion\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kepion\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"KevlarExtensions.M365Security.SecureOS\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/KevlarExtensions.M365Security.SecureOS\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"KevlarExtensions.M365SecurityHostIDS\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/KevlarExtensions.M365SecurityHostIDS\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"KevlarExtensions.M365SecurityInventory\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/KevlarExtensions.M365SecurityInventory\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"KevlarExtensions.M365SecurityInventory.NameChangeTest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/KevlarExtensions.M365SecurityInventory.NameChangeTest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"KevlarExtensions.M365SecurityODL\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/KevlarExtensions.M365SecurityODL\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"KevlarExtensions.M365SecurityTLSExtension\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/KevlarExtensions.M365SecurityTLSExtension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kinetica\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kinetica\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kinvolk\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kinvolk\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"knime\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/knime\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kobalt\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kobalt\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kognillc1600118221163\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kognillc1600118221163\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kognitivsparkinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kognitivsparkinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"konginc1581527938760\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/konginc1581527938760\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"konsys-ltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/konsys-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"koverseinc1588716263110\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/koverseinc1588716263110\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kryonsystems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kryonsystems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"krypc-technologies-pvt-ltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/krypc-technologies-pvt-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kyligence\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kyligence\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kyvos-insights-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kyvos-insights-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lab3solutions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lab3solutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lancom-systems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lancom-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lansa\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lansa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lastline\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lastline\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"leap-orbit\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/leap-orbit\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lenovosoftware1604394104439\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lenovosoftware1604394104439\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"leostream-corporation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/leostream-corporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lepide-software\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lepide-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"levacloudllc1602151818089\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/levacloudllc1602151818089\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"libelleag\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/libelleag\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"liberatii\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/liberatii\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"libraesva\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/libraesva\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"liebsoft\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/liebsoft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lightning-analyticsinc1582000647396\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lightning-analyticsinc1582000647396\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"linuxbasedsystemsdesignltd1580878904727\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/linuxbasedsystemsdesignltd1580878904727\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"liquid-files\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/liquid-files\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"liquidware\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/liquidware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"literatu\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/literatu\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"litespeedtechnologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/litespeedtechnologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"litespeed_technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/litespeed_technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"litionenergiegmbh1580128829115\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/litionenergiegmbh1580128829115\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"litmusautomation1582760223280\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/litmusautomation1582760223280\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"llcitpro\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/llcitpro\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lnw-softgmbh\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lnw-softgmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"loadbalancer\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/loadbalancer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"logicflowag1638535407949\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/logicflowag1638535407949\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"logsign\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/logsign\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"logstarecorp1635838645101\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/logstarecorp1635838645101\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"logtrust\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/logtrust\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"logzio\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/logzio\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"looker\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/looker\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lotus_beta_analytics\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lotus_beta_analytics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lti-lt-infotech\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lti-lt-infotech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"luminate-security\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/luminate-security\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"M365Security.KevlarExtensions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/M365Security.KevlarExtensions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"M365SecurityInventory\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/M365SecurityInventory\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"machinesense\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/machinesense\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"madhavajay1632269232059\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/madhavajay1632269232059\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"maidenhead-bridge\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/maidenhead-bridge\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"manageengine\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/manageengine\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mapd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mapd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mapr-technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mapr-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"marand\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/marand\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"marketplace-rdfe-caps\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/marketplace-rdfe-caps\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"marklogic\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/marklogic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"massiveanalytic-\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/massiveanalytic-\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mathworks-deployment\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mathworks-deployment\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mathworks-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mathworks-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"matillion\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/matillion\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mavinglobal\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mavinglobal\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"McAfee.EndpointSecurity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/McAfee.EndpointSecurity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"McAfee.EndpointSecurity.test3\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/McAfee.EndpointSecurity.test3\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"meanio\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/meanio\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"media3-adobe\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/media3-adobe\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"media3-technologies-llc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/media3-technologies-llc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mediatekinc1586141563888\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mediatekinc1586141563888\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mendix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mendix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"merlynnintelligencetechnologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/merlynnintelligencetechnologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"meshifyappinc1622759451429\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/meshifyappinc1622759451429\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"messagesolution\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/messagesolution\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"metaswitch\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/metaswitch\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mettainnovations-4900054\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mettainnovations-4900054\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mfe_azure\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mfe_azure\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mfiles\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mfiles\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mico\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mico\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"micro-focus\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/micro-focus\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microlinkpcukltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microlinkpcukltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microolap\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microolap\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-ads\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-ads\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-agci-gaming\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-agci-gaming\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-aks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-aks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-avere\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-avere\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-azure-batch\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-azure-batch\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-azure-compute\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-azure-compute\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-azure-hdinsight\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-azure-hdinsight\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-crypto\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-crypto\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-dsvm\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-dsvm\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-hyperv\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-hyperv\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-minecraft\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-minecraft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AdminCenter\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AdminCenter\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AKS\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AKS\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.ActiveDirectory\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.ActiveDirectory\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.ActiveDirectory.LinuxSSH\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.ActiveDirectory.LinuxSSH\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Applications\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Applications\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Automation.HybridWorker\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Automation.HybridWorker\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Automation.HybridWorker.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Automation.HybridWorker.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.AzureDefenderForServers\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.AzureDefenderForServers\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.AzureDefenderForSQL\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.AzureDefenderForSQL\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Backup.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Backup.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Backup.Test.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Backup.Test.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.ChangeTracking\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.ChangeTracking\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.ChangeTracking.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.ChangeTracking.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.ChangeTrackingAndInventory\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.ChangeTrackingAndInventory\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Chaos\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Chaos\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Compute.Security\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Compute.Security\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.ContainerUpstream\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.ContainerUpstream\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.DefenderForServers.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.DefenderForServers.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.DefenderForServers.Test2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.DefenderForServers.Test2\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Diagnostics\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Diagnostics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Diagnostics.Build.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Diagnostics.Build.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Diagnostics.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Diagnostics.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test012be407-61ea-4e45-a2c3-71a45999ca21-20191228083800\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test012be407-61ea-4e45-a2c3-71a45999ca21-20191228083800\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test01971384-3044-413b-8b1c-33b5d461bf23-20200107051823\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test01971384-3044-413b-8b1c-33b5d461bf23-20200107051823\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test0225ec7d-b36c-4ac8-82f0-aa4fafaf10a9-20200111051346\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test0225ec7d-b36c-4ac8-82f0-aa4fafaf10a9-20200111051346\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test025e16a1-328d-45a2-b7e3-71f7e4cde046-20191229064028\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test025e16a1-328d-45a2-b7e3-71f7e4cde046-20191229064028\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test02d1f941-5607-4757-8df7-fd8c5631ab45-20200103083810\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test02d1f941-5607-4757-8df7-fd8c5631ab45-20200103083810\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test039abd7f-360c-42a1-ad5d-77527c519286-20191002233412\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test039abd7f-360c-42a1-ad5d-77527c519286-20191002233412\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test04a0f157-c6fb-4595-b6ca-6c82a2338063-20200108101451\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test04a0f157-c6fb-4595-b6ca-6c82a2338063-20200108101451\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test0737f33e-63e0-4ba9-b04b-b93a1de4e997-20200106083639\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test0737f33e-63e0-4ba9-b04b-b93a1de4e997-20200106083639\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test0a44d7be-63fa-418d-a7b6-89a44dd21894-20200107052935\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test0a44d7be-63fa-418d-a7b6-89a44dd21894-20200107052935\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test0d01b487-7f79-4d87-b330-5c025068db45-20191004190331\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test0d01b487-7f79-4d87-b330-5c025068db45-20191004190331\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test0d643748-e6fe-41ad-b4d3-89a289a0cee0-20191003055620\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test0d643748-e6fe-41ad-b4d3-89a289a0cee0-20191003055620\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test0df83c51-5bb9-43f8-8ae9-bc896ea64f78-20200110220221\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test0df83c51-5bb9-43f8-8ae9-bc896ea64f78-20200110220221\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test0f02c246-7e65-4010-9367-ca4530c3897e-20191004190223\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test0f02c246-7e65-4010-9367-ca4530c3897e-20191004190223\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test157494ec-e788-43b0-8d26-a17e39ee07cc-20191002011945\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test157494ec-e788-43b0-8d26-a17e39ee07cc-20191002011945\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test1661d154-b623-4507-8a56-3a89812c456c-20200111083940\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test1661d154-b623-4507-8a56-3a89812c456c-20200111083940\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test17bbd860-f21d-40ab-9026-16e05f2907f0-20200106083451\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test17bbd860-f21d-40ab-9026-16e05f2907f0-20200106083451\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test194e2333-13cd-43e3-b0a4-c8cdcf1a3600-20200110211106\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test194e2333-13cd-43e3-b0a4-c8cdcf1a3600-20200110211106\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test1bc26b19-b8d8-41f9-a26d-818f277bdf93-20200101113139\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test1bc26b19-b8d8-41f9-a26d-818f277bdf93-20200101113139\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test1c840053-9213-4f2a-8f2e-9bf2297908bd-20200108101424\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test1c840053-9213-4f2a-8f2e-9bf2297908bd-20200108101424\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test1d7bba72-69f1-43cd-a38c-41ce0b5f4bae-20200109050041\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test1d7bba72-69f1-43cd-a38c-41ce0b5f4bae-20200109050041\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test1f7a8078-50e7-4a3a-91eb-d178fd4c403b-20191002233353\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test1f7a8078-50e7-4a3a-91eb-d178fd4c403b-20191002233353\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test1fef1fdc-57ba-46a8-a879-475ba7d45a7a-20200106083509\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test1fef1fdc-57ba-46a8-a879-475ba7d45a7a-20200106083509\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test21332f15-f78d-4d31-afac-79b9dc989432-20191231175840\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test21332f15-f78d-4d31-afac-79b9dc989432-20191231175840\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test22f10717-6939-4003-a9ce-38effd8b77d6-20191007191355\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test22f10717-6939-4003-a9ce-38effd8b77d6-20191007191355\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test2334e6e3-bb72-4241-a36f-c2429d69bc0b-20200106050834\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test2334e6e3-bb72-4241-a36f-c2429d69bc0b-20200106050834\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test24fa9eb5-1c59-4425-b61c-30fd638c2a45-20191003203802\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test24fa9eb5-1c59-4425-b61c-30fd638c2a45-20191003203802\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test2521a545-ed61-4a15-bed1-aba7ce1d81ee-20200106050804\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test2521a545-ed61-4a15-bed1-aba7ce1d81ee-20200106050804\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test25c6fe61-1282-43c2-867b-b5039219989c-20200105081851\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test25c6fe61-1282-43c2-867b-b5039219989c-20200105081851\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test27515c8c-6773-4f92-afb0-35691cc6e3b6-20200103083821\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test27515c8c-6773-4f92-afb0-35691cc6e3b6-20200103083821\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test28012680-48e7-4903-877f-2f29464e63d5-20191229033424\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test28012680-48e7-4903-877f-2f29464e63d5-20191229033424\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test29a7a529-d293-4728-9d7f-257ed996e64f-20200108081759\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test29a7a529-d293-4728-9d7f-257ed996e64f-20200108081759\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test2a5f2d2c-b8e3-46c2-850d-a1641c024fe7-20200107084228\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test2a5f2d2c-b8e3-46c2-850d-a1641c024fe7-20200107084228\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test2ce856af-ab17-48f2-ba3e-bcd9af091061-20200110013246\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test2ce856af-ab17-48f2-ba3e-bcd9af091061-20200110013246\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test2e012e83-6361-4365-963f-6ced8a08e91c-20200110211254\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test2e012e83-6361-4365-963f-6ced8a08e91c-20200110211254\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test2ecf67b2-fb63-4461-b6a6-7026c4fb1168-20191002214026\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test2ecf67b2-fb63-4461-b6a6-7026c4fb1168-20191002214026\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test2ede6564-c7cc-44cb-a1a8-902505c9829d-20191003020742\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test2ede6564-c7cc-44cb-a1a8-902505c9829d-20191003020742\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test2f4ebc17-e27e-48d9-9cc3-ff933c21884e-20200106092410\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test2f4ebc17-e27e-48d9-9cc3-ff933c21884e-20200106092410\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test349ee02c-af9b-4663-a963-823b40eefed8-20200108083612\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test349ee02c-af9b-4663-a963-823b40eefed8-20200108083612\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test34cf6b13-b78e-478b-b596-8b661629371d-20191007195455\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test34cf6b13-b78e-478b-b596-8b661629371d-20191007195455\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test36cc5b60-2b23-4a04-bf95-f7865e1141cf-20200110085718\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test36cc5b60-2b23-4a04-bf95-f7865e1141cf-20200110085718\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3712fca9-5cdd-4609-be69-b02aedc5c55c-20200107084115\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3712fca9-5cdd-4609-be69-b02aedc5c55c-20200107084115\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3772d042-92e2-4bcb-99b7-8a6a119cc088-20191231182808\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3772d042-92e2-4bcb-99b7-8a6a119cc088-20191231182808\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test37a6dd64-d44d-465e-85bc-3bc38be90350-20200104083535\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test37a6dd64-d44d-465e-85bc-3bc38be90350-20200104083535\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test381074d5-7156-472b-801a-b35f8fef4cc6-20200105050612\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test381074d5-7156-472b-801a-b35f8fef4cc6-20200105050612\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3877a44d-4c48-40db-80eb-227272d5acd6-20200110103540\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3877a44d-4c48-40db-80eb-227272d5acd6-20200110103540\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test38ecd28e-7018-4672-840c-3044a5e7a6b5-20200111084208\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test38ecd28e-7018-4672-840c-3044a5e7a6b5-20200111084208\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test395a0b49-442a-450c-8a1f-65b0aa3bcf47-20200105083839\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test395a0b49-442a-450c-8a1f-65b0aa3bcf47-20200105083839\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3971b300-edff-44a8-b61b-7f9b7460a8d6-20191003002234\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3971b300-edff-44a8-b61b-7f9b7460a8d6-20191003002234\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3adeec20-7458-4b3d-af26-0b6bc2aae3eb-20200103083751\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3adeec20-7458-4b3d-af26-0b6bc2aae3eb-20200103083751\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3b20dd96-f3e4-4798-998d-8c433c2449a7-20200108083635\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3b20dd96-f3e4-4798-998d-8c433c2449a7-20200108083635\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3ce2fd4a-8b5a-4c7e-b08d-3e48fc0f45e7-20200104083825\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3ce2fd4a-8b5a-4c7e-b08d-3e48fc0f45e7-20200104083825\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3d499ca7-cc8d-41cc-a6dc-ffb1a4ac4942-20200107053004\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3d499ca7-cc8d-41cc-a6dc-ffb1a4ac4942-20200107053004\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3db7240e-5e42-4d6d-b024-cc9fce3c828b-20200105083520\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3db7240e-5e42-4d6d-b024-cc9fce3c828b-20200105083520\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3f6b7341-635f-48d5-a36d-be5dfe3002c4-20200105050937\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3f6b7341-635f-48d5-a36d-be5dfe3002c4-20200105050937\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3fc26934-ede2-4482-ad5e-f66f6135d4a6-20191228055558\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3fc26934-ede2-4482-ad5e-f66f6135d4a6-20191228055558\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test406d077c-6017-4062-bc96-f809147a2331-20200106050748\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test406d077c-6017-4062-bc96-f809147a2331-20200106050748\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test4302336c-e039-4e70-bcb6-9275f6089e4a-20200108144821\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test4302336c-e039-4e70-bcb6-9275f6089e4a-20200108144821\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test453a087e-8435-46db-970a-4ee633cc4c4a-20200102083458\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test453a087e-8435-46db-970a-4ee633cc4c4a-20200102083458\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test46b73afa-2259-4aff-81e1-a58bf24b59aa-20191229033459\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test46b73afa-2259-4aff-81e1-a58bf24b59aa-20191229033459\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test4a3399ee-82ea-46aa-9e3a-5434b588e3b6-20191228013518\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test4a3399ee-82ea-46aa-9e3a-5434b588e3b6-20191228013518\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test4eb7a185-527b-4b9f-93a8-7f1cec9d062e-20191231151207\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test4eb7a185-527b-4b9f-93a8-7f1cec9d062e-20191231151207\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test520a0915-f9f0-4da4-9fa1-1b74fc1470aa-20200102083505\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test520a0915-f9f0-4da4-9fa1-1b74fc1470aa-20200102083505\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test5397960f-023b-4979-9a8b-800d049045a4-20191007195417\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test5397960f-023b-4979-9a8b-800d049045a4-20191007195417\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test55a36387-8a3f-4159-9884-29b97539a253-20200109080443\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test55a36387-8a3f-4159-9884-29b97539a253-20200109080443\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test5645f186-4ee5-4209-af37-423660e3318c-20191231175947\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test5645f186-4ee5-4209-af37-423660e3318c-20191231175947\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test58b4461d-4d2d-4395-b6d2-ab83d4d8c62f-20200111001002\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test58b4461d-4d2d-4395-b6d2-ab83d4d8c62f-20200111001002\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test5b0bf447-d98d-429d-8334-c032d197c743-20191003203846\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test5b0bf447-d98d-429d-8334-c032d197c743-20191003203846\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test5bc90367-1ea2-400b-a40c-321081bae3f3-20200108145035\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test5bc90367-1ea2-400b-a40c-321081bae3f3-20200108145035\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test5bd0562f-e939-456f-a6ee-c848d1aba616-20200101151641\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test5bd0562f-e939-456f-a6ee-c848d1aba616-20200101151641\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test5e4efe90-916c-4c96-802c-1508a5b6da78-20191231151150\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test5e4efe90-916c-4c96-802c-1508a5b6da78-20191231151150\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test5f8f0c10-cc3c-45ec-a068-fb1c7edfa0d9-20200101145958\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test5f8f0c10-cc3c-45ec-a068-fb1c7edfa0d9-20200101145958\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test60a000b7-286c-4b2b-9137-bbc088736419-20200108144920\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test60a000b7-286c-4b2b-9137-bbc088736419-20200108144920\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test6192a01b-ba47-4d08-904a-71647a49a112-20191008041625\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test6192a01b-ba47-4d08-904a-71647a49a112-20191008041625\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test62835538-89c6-4f66-9034-f7a4b176c615-20191007234245\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test62835538-89c6-4f66-9034-f7a4b176c615-20191007234245\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test651e4ad2-ee4a-462e-a506-b56b1969f5d0-20200110230749\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test651e4ad2-ee4a-462e-a506-b56b1969f5d0-20200110230749\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test691d94e5-c40c-4568-94b0-09b08aea42b1-20200106050808\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test691d94e5-c40c-4568-94b0-09b08aea42b1-20200106050808\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test6aa3643c-011a-4180-877f-cad955a8e664-20191007234642\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test6aa3643c-011a-4180-877f-cad955a8e664-20191007234642\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test6cfb469b-8478-468f-9bb5-691affd32abb-20200107083803\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test6cfb469b-8478-468f-9bb5-691affd32abb-20200107083803\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test6d36b6b2-7956-4e62-91c1-c33792fd4bb1-20200110123203\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test6d36b6b2-7956-4e62-91c1-c33792fd4bb1-20200110123203\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test6e28168e-a9c8-4c0a-8b40-60c2a1502d43-20200108052802\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test6e28168e-a9c8-4c0a-8b40-60c2a1502d43-20200108052802\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test6eb763ac-7fbe-4e44-bee7-aad035ee2a7d-20200110084429\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test6eb763ac-7fbe-4e44-bee7-aad035ee2a7d-20200110084429\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test6efec253-f625-46f0-9d74-324f69e963d8-20200107070514\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test6efec253-f625-46f0-9d74-324f69e963d8-20200107070514\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test70fa7e4c-3122-4ff7-aec6-fe75ab660a01-20200108105900\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test70fa7e4c-3122-4ff7-aec6-fe75ab660a01-20200108105900\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test710a5fbf-06c7-46ac-b96d-a29d2586422f-20200108083639\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test710a5fbf-06c7-46ac-b96d-a29d2586422f-20200108083639\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test71d72489-67c6-45e2-b1e6-a19546efc823-20200105112903\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test71d72489-67c6-45e2-b1e6-a19546efc823-20200105112903\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test721fccf1-2b3e-44b6-908f-51b910e88b09-20200111104931\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test721fccf1-2b3e-44b6-908f-51b910e88b09-20200111104931\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test742d0189-9e41-4f1b-8ad3-31c05d34903b-20200111103247\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test742d0189-9e41-4f1b-8ad3-31c05d34903b-20200111103247\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test7836a97c-f56e-48d0-8b5d-61e79aeb3226-20200111071656\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7836a97c-f56e-48d0-8b5d-61e79aeb3226-20200111071656\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test78666b2e-25c8-4a48-931a-3131a0317d73-20191002194352\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test78666b2e-25c8-4a48-931a-3131a0317d73-20191002194352\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test79f13508-fcbd-47b9-988f-1c21ef5e7f2e-20191002015429\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test79f13508-fcbd-47b9-988f-1c21ef5e7f2e-20191002015429\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test79fb90ce-4691-4212-99a7-6e4069bd5984-20191007234256\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test79fb90ce-4691-4212-99a7-6e4069bd5984-20191007234256\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test7a8cf687-6a21-4181-ba98-902fee717bd3-20200104103216\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7a8cf687-6a21-4181-ba98-902fee717bd3-20200104103216\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test7aabf813-6644-483a-b9e0-ba6f8973ba1f-20191002232822\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7aabf813-6644-483a-b9e0-ba6f8973ba1f-20191002232822\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test7c96c10a-0c8f-4ab0-83fd-1ad66a362e33-20191229033458\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7c96c10a-0c8f-4ab0-83fd-1ad66a362e33-20191229033458\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test7e79b6ff-2559-44fe-b3ba-afaa68d63636-20200108112116\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7e79b6ff-2559-44fe-b3ba-afaa68d63636-20200108112116\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test7ea372f7-ea7e-4b9e-bbad-4f35c1567aa2-20200108052736\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7ea372f7-ea7e-4b9e-bbad-4f35c1567aa2-20200108052736\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test7fac3d04-98a5-4fc4-904e-9ea3b86eadc2-20200106050751\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7fac3d04-98a5-4fc4-904e-9ea3b86eadc2-20200106050751\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test7fe20dd6-9ed9-4126-bb1d-031c01ac4550-20200101114504\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7fe20dd6-9ed9-4126-bb1d-031c01ac4550-20200101114504\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test7ff974d9-c841-4249-b05b-bbf663cb4605-20200106084104\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7ff974d9-c841-4249-b05b-bbf663cb4605-20200106084104\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test815bd4d5-fc24-4a47-be20-063c4809902c-20200109050508\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test815bd4d5-fc24-4a47-be20-063c4809902c-20200109050508\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test817654d0-2109-4d95-9284-8c8a9d960d08-20200108053758\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test817654d0-2109-4d95-9284-8c8a9d960d08-20200108053758\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test821ca3b6-dd05-4e80-b3d8-74ba03b2609b-20191231151151\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test821ca3b6-dd05-4e80-b3d8-74ba03b2609b-20191231151151\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test8285dc3e-637d-4d46-9695-adc39cbe7d2f-20200108144457\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test8285dc3e-637d-4d46-9695-adc39cbe7d2f-20200108144457\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test828aae03-9239-4938-a303-c23c42311878-20200102083419\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test828aae03-9239-4938-a303-c23c42311878-20200102083419\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test84afd814-5098-49ab-af99-e50350b5898b-20200110211134\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test84afd814-5098-49ab-af99-e50350b5898b-20200110211134\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test85b08563-b15f-4202-a0bc-f2bc2df2c71a-20200107053335\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test85b08563-b15f-4202-a0bc-f2bc2df2c71a-20200107053335\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test88aac268-c087-4481-b78e-99b920784a33-20200101084853\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test88aac268-c087-4481-b78e-99b920784a33-20200101084853\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test88dbd442-a8cc-4874-81a0-d3192c61df62-20191001224544\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test88dbd442-a8cc-4874-81a0-d3192c61df62-20191001224544\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test894dfb75-a00f-4f0c-894c-cae1c9846ad3-20200105051803\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test894dfb75-a00f-4f0c-894c-cae1c9846ad3-20200105051803\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test8d09bf4d-ee63-4ab1-a986-a4b802418403-20200111051447\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test8d09bf4d-ee63-4ab1-a986-a4b802418403-20200111051447\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test8d4d652b-4f05-4e99-93dd-78b9a36b5c78-20191003203755\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test8d4d652b-4f05-4e99-93dd-78b9a36b5c78-20191003203755\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test8de64739-43d8-4f84-af65-fdb3d0885288-20200108053543\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test8de64739-43d8-4f84-af65-fdb3d0885288-20200108053543\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test8e324c65-a51d-4eeb-9ec8-d5f8662dc041-20191228165107\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test8e324c65-a51d-4eeb-9ec8-d5f8662dc041-20191228165107\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test8e564580-8e53-4300-85f1-bf7f31dd37ff-20200107013348\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test8e564580-8e53-4300-85f1-bf7f31dd37ff-20200107013348\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test8f458ca7-8898-4d58-b93d-bfb0c3da028c-20200109050310\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test8f458ca7-8898-4d58-b93d-bfb0c3da028c-20200109050310\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test901cd6ca-5565-4552-a3de-d204d01935c0-20200108083706\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test901cd6ca-5565-4552-a3de-d204d01935c0-20200108083706\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test907b39e5-4008-4b55-93a0-18e9697b9cf3-20200108053817\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test907b39e5-4008-4b55-93a0-18e9697b9cf3-20200108053817\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test90c2be7c-d7ec-4abf-9fad-fef90fc3ef4d-20191004022234\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test90c2be7c-d7ec-4abf-9fad-fef90fc3ef4d-20191004022234\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test922db678-6ee8-43d5-86ff-6a86e132d332-20200107085231\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test922db678-6ee8-43d5-86ff-6a86e132d332-20200107085231\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test93b88aec-5277-4b1b-910c-7008e972ce91-20200107013304\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test93b88aec-5277-4b1b-910c-7008e972ce91-20200107013304\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test95a9104b-6cba-42d8-82ff-cc37e5ac44db-20200108081723\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test95a9104b-6cba-42d8-82ff-cc37e5ac44db-20200108081723\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test96da1605-19e0-46eb-9ce0-53e840f5e2cb-20200101111729\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test96da1605-19e0-46eb-9ce0-53e840f5e2cb-20200101111729\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test996066b2-7d29-400f-929b-e343a21046f7-20191231151212\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test996066b2-7d29-400f-929b-e343a21046f7-20191231151212\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test99663fff-ed21-4a91-9687-1a6da2abb033-20200106084508\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test99663fff-ed21-4a91-9687-1a6da2abb033-20200106084508\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test9eb5efa5-c3c1-4c13-80a6-11f5eba67372-20200108144852\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test9eb5efa5-c3c1-4c13-80a6-11f5eba67372-20200108144852\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testa3791896-b1fc-491e-ba0d-aefcd8d9e52a-20200105083503\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testa3791896-b1fc-491e-ba0d-aefcd8d9e52a-20200105083503\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testa37ff709-a078-45a0-8187-41733df8e101-20200109050003\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testa37ff709-a078-45a0-8187-41733df8e101-20200109050003\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testa4c5fe4e-936e-4be1-a612-a331aff54a8c-20200111105055\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testa4c5fe4e-936e-4be1-a612-a331aff54a8c-20200111105055\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testa59bce1d-e32c-423d-a86e-945d4aeb98b4-20200107051821\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testa59bce1d-e32c-423d-a86e-945d4aeb98b4-20200107051821\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testa604c059-8279-4f4d-a354-eec27222a06c-20200111051514\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testa604c059-8279-4f4d-a354-eec27222a06c-20200111051514\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testa71fefb1-0d9c-4fb3-8d3d-5dcd12d72b77-20200103103221\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testa71fefb1-0d9c-4fb3-8d3d-5dcd12d72b77-20200103103221\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testa748013d-c5a6-44f9-88eb-43167207c742-20200111051402\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testa748013d-c5a6-44f9-88eb-43167207c742-20200111051402\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testaab67022-4f2b-420d-a06a-2c4045110cdf-20191229033144\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testaab67022-4f2b-420d-a06a-2c4045110cdf-20191229033144\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testacab9541-280f-4491-9f49-ac57653f0a07-20200105083839\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testacab9541-280f-4491-9f49-ac57653f0a07-20200105083839\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testad298437-0349-4cc7-88a9-d8aabcba9df1-20191002233431\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testad298437-0349-4cc7-88a9-d8aabcba9df1-20191002233431\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testadd68286-f9e0-4ab1-a526-d8f3cf0f054e-20200105084128\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testadd68286-f9e0-4ab1-a526-d8f3cf0f054e-20200105084128\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testade4c52b-18f5-4b67-8e93-945358ce4f7d-20191007234259\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testade4c52b-18f5-4b67-8e93-945358ce4f7d-20191007234259\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testae421c1d-0211-4ef2-b372-564ce8ad484a-20200110104035\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testae421c1d-0211-4ef2-b372-564ce8ad484a-20200110104035\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testafbbd8bf-aec5-48bf-8fea-73fa15ccc315-20191001224727\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testafbbd8bf-aec5-48bf-8fea-73fa15ccc315-20191001224727\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testb15148bf-78d2-42d4-ad08-b3ad8fb4b122-20200101084759\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testb15148bf-78d2-42d4-ad08-b3ad8fb4b122-20200101084759\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testb4237708-3688-40ea-85a2-275c05f4d100-20191228083519\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testb4237708-3688-40ea-85a2-275c05f4d100-20191228083519\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testb799a18f-be45-4c5c-8438-163ac2e1f1e7-20191004190529\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testb799a18f-be45-4c5c-8438-163ac2e1f1e7-20191004190529\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testb7cee88a-e5ac-4af4-99c8-7247020b00c3-20200105051201\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testb7cee88a-e5ac-4af4-99c8-7247020b00c3-20200105051201\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testb7df0d9a-27c0-4ca5-b692-08dd90387b98-20200111083443\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testb7df0d9a-27c0-4ca5-b692-08dd90387b98-20200111083443\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testbbf6bf32-4bd0-4381-b8f7-2658f585df4d-20191003203846\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testbbf6bf32-4bd0-4381-b8f7-2658f585df4d-20191003203846\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testbeea1376-166a-4b1a-8923-c907cc9737d9-20200107013336\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testbeea1376-166a-4b1a-8923-c907cc9737d9-20200107013336\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testbf9154e9-6166-48c2-86fe-1f331be606d7-20200107051823\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testbf9154e9-6166-48c2-86fe-1f331be606d7-20200107051823\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc0d7c3c5-23b8-489c-a5e0-ae87c681b696-20200101083539\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc0d7c3c5-23b8-489c-a5e0-ae87c681b696-20200101083539\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc193f31a-5186-4e93-84f6-0e4ab87b73c1-20200107052937\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc193f31a-5186-4e93-84f6-0e4ab87b73c1-20200107052937\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc1c7e8dc-fa8c-47d9-8305-de6d1451b939-20200101085248\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc1c7e8dc-fa8c-47d9-8305-de6d1451b939-20200101085248\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc1d0c917-e2ae-430c-a2ca-383fb0fda046-20191007235839\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc1d0c917-e2ae-430c-a2ca-383fb0fda046-20191007235839\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc23a3fbb-6e95-4c0d-94fc-c8ab14dddf1c-20191231151117\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc23a3fbb-6e95-4c0d-94fc-c8ab14dddf1c-20191231151117\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc2697630-6247-411a-94b3-c2974ad8cbee-20191007195417\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc2697630-6247-411a-94b3-c2974ad8cbee-20191007195417\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc466b80f-670f-4383-89b8-44e0d509fa20-20191002000516\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc466b80f-670f-4383-89b8-44e0d509fa20-20191002000516\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc5c8d9bd-75fa-4db3-9f34-5d7b7098584c-20191003203851\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc5c8d9bd-75fa-4db3-9f34-5d7b7098584c-20191003203851\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc8b6d14b-a5db-48e0-bfad-a2818d432bea-20200104083443\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc8b6d14b-a5db-48e0-bfad-a2818d432bea-20200104083443\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc933efa8-c553-4b93-884f-b7221d9ca789-20191228083750\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc933efa8-c553-4b93-884f-b7221d9ca789-20191228083750\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testcbe8ab80-46ef-49b1-a7bb-4e3d6e50e49f-20200104050811\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testcbe8ab80-46ef-49b1-a7bb-4e3d6e50e49f-20200104050811\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testccc0b5e6-9b0d-451a-8ac4-6f4af293b913-20200106092645\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testccc0b5e6-9b0d-451a-8ac4-6f4af293b913-20200106092645\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testcec64786-04b1-487c-80ec-050da646fb1c-20191005123412\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testcec64786-04b1-487c-80ec-050da646fb1c-20191005123412\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testd104a52f-eba2-401d-8e7f-a841c90f7712-20191228083553\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testd104a52f-eba2-401d-8e7f-a841c90f7712-20191228083553\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testd724cea4-0d3c-4539-b2ff-be08fb23a67e-20200107083714\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testd724cea4-0d3c-4539-b2ff-be08fb23a67e-20200107083714\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testd8e60bac-27ff-4fba-90b8-732c9c5ff91c-20191228083751\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testd8e60bac-27ff-4fba-90b8-732c9c5ff91c-20191228083751\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testd99db4a5-7683-4584-89ad-fefd711de284-20191004190210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testd99db4a5-7683-4584-89ad-fefd711de284-20191004190210\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testd9b4309a-67bc-4cd8-ac47-094cb20ca6aa-20200101090202\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testd9b4309a-67bc-4cd8-ac47-094cb20ca6aa-20200101090202\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testda3320e0-28f2-4146-a002-e06296362711-20191004190115\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testda3320e0-28f2-4146-a002-e06296362711-20191004190115\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testda714121-3240-4253-90c3-48c43f115c90-20200102083419\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testda714121-3240-4253-90c3-48c43f115c90-20200102083419\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testdb357558-60b4-4ee3-9ec3-ba22c5d827fb-20191004020617\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testdb357558-60b4-4ee3-9ec3-ba22c5d827fb-20191004020617\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testdc7230e9-df6d-4edd-a57c-ef7e0432c463-20191002011345\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testdc7230e9-df6d-4edd-a57c-ef7e0432c463-20191002011345\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testdccb59de-436f-4935-bed6-2e677dcaf36a-20200109111802\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testdccb59de-436f-4935-bed6-2e677dcaf36a-20200109111802\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testde985b23-9333-4f6e-a5e8-82025a38b2af-20200102083510\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testde985b23-9333-4f6e-a5e8-82025a38b2af-20200102083510\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Teste271da3e-cbcb-4ee7-8770-f297f414451f-20191003015540\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Teste271da3e-cbcb-4ee7-8770-f297f414451f-20191003015540\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Teste4070edd-aec0-455d-8a79-aecdb7170b6d-20191007234642\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Teste4070edd-aec0-455d-8a79-aecdb7170b6d-20191007234642\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Teste42f351a-4da0-4f0d-93e9-ef1d98e06659-20200108083633\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Teste42f351a-4da0-4f0d-93e9-ef1d98e06659-20200108083633\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Teste66ca23c-f4bf-4eb3-8418-139364d19e7d-20200107062643\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Teste66ca23c-f4bf-4eb3-8418-139364d19e7d-20200107062643\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Teste78b1ab2-1380-48ab-9923-0276cdb7198b-20191001224742\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Teste78b1ab2-1380-48ab-9923-0276cdb7198b-20191001224742\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Teste8607e14-b4f8-472a-bd5b-893b8d9612e6-20200112045941\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Teste8607e14-b4f8-472a-bd5b-893b8d9612e6-20200112045941\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Teste980b80e-3add-42c0-bc98-a84020b2d128-20200108101640\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Teste980b80e-3add-42c0-bc98-a84020b2d128-20200108101640\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Tested79dba9-2d38-4ea9-a01c-56e94b30ca7a-20191007195447\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Tested79dba9-2d38-4ea9-a01c-56e94b30ca7a-20191007195447\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testee9dcf5f-f7c4-4192-a8f4-28e9bc7d0f7c-20191001225005\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testee9dcf5f-f7c4-4192-a8f4-28e9bc7d0f7c-20191001225005\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testefbb340a-b68b-4200-872b-d05e7d29f92d-20191007195432\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testefbb340a-b68b-4200-872b-d05e7d29f92d-20191007195432\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testf1fc0559-6740-48dd-9501-2b933c731d52-20200103083458\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testf1fc0559-6740-48dd-9501-2b933c731d52-20200103083458\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testf41dfc97-bb51-4fba-86ca-a6f2695c415a-20200107050834\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testf41dfc97-bb51-4fba-86ca-a6f2695c415a-20200107050834\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testf5784447-83ed-4c00-8764-ea0f932aafa2-20200106085748\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testf5784447-83ed-4c00-8764-ea0f932aafa2-20200106085748\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testf6128ef6-c13c-420e-8088-0710888ce88b-20200109050003\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testf6128ef6-c13c-420e-8088-0710888ce88b-20200109050003\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testf863ab2c-ada9-4646-84c7-1f83a82375d7-20191229033226\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testf863ab2c-ada9-4646-84c7-1f83a82375d7-20191229033226\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testfac552a7-418f-4baa-8f51-d199ceff5c68-20200103050817\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testfac552a7-418f-4baa-8f51-d199ceff5c68-20200103050817\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testfb7be054-5c15-494f-822c-b64f9a36e2f3-20200105051753\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testfb7be054-5c15-494f-822c-b64f9a36e2f3-20200105051753\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testfc5c7585-6c9a-4aa4-a7c4-1223a94e00c7-20200104083552\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testfc5c7585-6c9a-4aa4-a7c4-1223a94e00c7-20200104083552\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.FileServer.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.FileServer.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Geneva\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Geneva\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.KeyVault\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.KeyVault\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.KeyVault.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.KeyVault.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.LabServices\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.LabServices\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.LabServices.test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.LabServices.test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.Agent\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.Agent\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.Dev\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.Dev\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.Dev.INT\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.Dev.INT\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.Dev.SCALE\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.Dev.SCALE\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.Dev.TEST\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.Dev.TEST\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.GuestHealth\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.GuestHealth\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.DEV\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.DEV\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.INT\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.INT\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.SCALE\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.SCALE\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.TEST\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.TEST\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.INT.Dev\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.INT.Dev\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.SCALE.Dev\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.SCALE.Dev\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.TEST.Dev\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.TEST.Dev\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.WorkloadInsights.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.WorkloadInsights.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.WorkloadInsightsTest.newnamespace\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.WorkloadInsightsTest.newnamespace\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.Workloads\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.Workloads\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.Workloads.Dev\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.Workloads.Dev\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitoring.DependencyAgent\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitoring.DependencyAgent\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitoring.DependencyAgent.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitoring.DependencyAgent.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Networking.DNS\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Networking.DNS\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Networking.SDN\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Networking.SDN\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.NetworkWatcher\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.NetworkWatcher\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.NetworkWatcher.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.NetworkWatcher.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.OpenSSH\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.OpenSSH\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Performance.Diagnostics\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Performance.Diagnostics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Performance.Diagnostics.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Performance.Diagnostics.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.RecoveryServices\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.RecoveryServices.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices.SiteRecovery\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.RecoveryServices.SiteRecovery\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices.SiteRecovery2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.RecoveryServices.SiteRecovery2\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices.WorkloadBackup\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.RecoveryServices.WorkloadBackup\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices.WorkloadBackup.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.RecoveryServices.WorkloadBackup.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.AntimalwareSignature\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.AntimalwareSignature\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.AntimalwareSignature.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.AntimalwareSignature.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.Dsms\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.Dsms\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.Dsms.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.Dsms.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.LinuxAttestation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.LinuxAttestation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.LinuxTestAttestation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.LinuxTestAttestation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.Monitoring\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.Monitoring\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.Monitoring.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.Monitoring.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.Monitoring.Testing\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.Monitoring.Testing\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.TestWindowsAttestation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.TestWindowsAttestation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.WindowsAttestation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.WindowsAttestation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.WinTestAttestation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.WinTestAttestation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Sentinel.DnsExtension.Dev\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Sentinel.DnsExtension.Dev\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.ServiceFabric.MC\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.ServiceFabric.MC\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.ServiceFabric.MC.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.ServiceFabric.MC.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.SiteRecovery.Stage\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.SiteRecovery.Stage\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.SiteRecovery.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.SiteRecovery.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.SiteRecovery2.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.SiteRecovery2.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Test.Identity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Test.Identity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WindowsFabric.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WindowsFabric.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.ReleasePipeTest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.ReleasePipeTest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.ReleasePipeTest.INT\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.ReleasePipeTest.INT\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.ReleasePipeTest.TEST\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.ReleasePipeTest.TEST\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test2\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test3\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test3\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test4\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test4\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test5\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test5\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test5.INT\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test5.INT\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test5.TEST\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test5.TEST\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.VincentTest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.VincentTest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.VincentTest2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.VincentTest2\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.VincentTest3\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.VincentTest3\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.VincentTest4\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.VincentTest4\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.TestTest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.TestTest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.TestTest.INT\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.TestTest.INT\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.TestTest.TEST\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.TestTest.TEST\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Windows.ReleasePipeTest.INT\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Windows.ReleasePipeTest.INT\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Windows.ReleasePipeTest.TEST\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Windows.ReleasePipeTest.TEST\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoring\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoring.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoringTest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoringTest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureData\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureData\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureData.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureData.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.Canary\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights.Canary\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.Corp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights.Corp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.Linux.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights.Linux.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.LinuxTest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights.LinuxTest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.Meya0206\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights.Meya0206\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.MeyaCorp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights.MeyaCorp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.Testing\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights.Testing\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureSecurity.JITAccess\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureSecurity.JITAccess\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.CloudBackup.Workload.Extension\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.CloudBackup.Workload.Extension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.CloudBackup.Workload.Extension.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.CloudBackup.Workload.Extension.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Compute\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Compute.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Compute.TestSar\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute.TestSar\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.CPlat.Core\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.CPlat.Core\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.CPlat.Core.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.CPlat.Core.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Dcsswe.Extensions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Dcsswe.Extensions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.EnterpriseCloud.Monitoring\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.EnterpriseCloud.Monitoring.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.EnterpriseCloud.Monitoring.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Golive.Extensions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Golive.Extensions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.GuestConfig.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.GuestConfig.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.GuestConfiguration\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.GuestConfiguration\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.GuestConfiguration.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.GuestConfiguration.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.GuestConfiguration.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.GuestConfiguration.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.HpcCompute\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.HpcCompute\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.HpcCompute.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.HpcCompute.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.HpcPack\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.HpcPack\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Interceptor\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Interceptor\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.M365\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.M365\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.M365SecurityConfiguration.Kevlar.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.M365SecurityConfiguration.Kevlar.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.ManagedIdentity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.ManagedIdentity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.ManagedServices\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.ManagedServices\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.ManagedServices.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.ManagedServices.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.MonitoringAgent.Extension\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.MonitoringAgent.Extension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Network\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Network\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.OSTCExtensions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.OSTCExtensions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.OSTCExtensions.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.OSTCExtensions.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.OSTCExtensions.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.OSTCExtensions.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.OSTCExtensions.Testing\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.OSTCExtensions.Testing\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Powershell\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Powershell\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Powershell.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Powershell.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Powershell.Test01\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Powershell.Test01\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.SecurityManagement.Kevlar\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.SecurityManagement.Kevlar\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Sentinel.AzureMonitorAgentExtensions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Sentinel.AzureMonitorAgentExtensions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.SoftwareUpdateManagement\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.SoftwareUpdateManagement\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.SoftwareUpdateManagement.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.SoftwareUpdateManagement.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.SqlServer.Managability.IaaS.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.SqlServer.Managability.IaaS.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.SqlServer.Management\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.SqlServer.Management\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.SqlServer.Management.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.SqlServer.Management.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.SystemCenter\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.SystemCenter\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.SystemCenter.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.SystemCenter.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Test.Azure.Workloads\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Test.Azure.Workloads\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.TestSqlServer.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.TestSqlServer.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.ETWTraceListenerService\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.Azure.ETWTraceListenerService\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.RemoteDebug\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.Azure.RemoteDebug\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.RemoteDebug.Json\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.Azure.RemoteDebug.Json\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.ServiceProfiler\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.ServiceProfiler\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.Services\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.Services\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.WindowsAzure.DevTest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.WindowsAzure.DevTest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.WindowsAzure.DevTest.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.WindowsAzure.DevTest.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.WindowsAzure.RemoteDebug\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.WindowsAzure.RemoteDebug\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.WindowsAzure.Test.RemoteDebug\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.WindowsAzure.Test.RemoteDebug\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Windows.Azure.Extensions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Windows.Azure.Extensions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Windows.AzureRemoteApp.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Windows.AzureRemoteApp.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Windows.RemoteDesktop\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Windows.RemoteDesktop\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.WindowsAdminCenter\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.WindowsAdminCenter\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.WindowsAdminCenter.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.WindowsAdminCenter.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.WindowsAzure.Compute\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.WindowsAzure.Compute\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.WindowsAzure.Compute.test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.WindowsAzure.Compute.test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.WVD\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.WVD\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoftagciuk\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoftagciuk\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoftazurecituswarp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoftazurecituswarp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftAzureSiteRecovery\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftAzureSiteRecovery\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftBizTalkServer\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftBizTalkServer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftCBLMariner\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftCBLMariner\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoftcmotest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoftcmotest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoftcorporation1602274591143\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoftcorporation1602274591143\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoftcorporation1620407702632\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoftcorporation1620407702632\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftDynamicsAX\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftDynamicsAX\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftDynamicsGP\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftDynamicsGP\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftDynamicsNAV\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftDynamicsNAV\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoftfarmbeats\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoftfarmbeats\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftHybridCloudStorage\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftHybridCloudStorage\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftOSTC\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftOSTC\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftPowerBI\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftPowerBI\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftRServer\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftRServer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftSharePoint\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftSharePoint\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftSQLServer\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftSQLServer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftTestLinuxPPS\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftTestLinuxPPS\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftVisualStudio\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftVisualStudio\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftWindowsDesktop\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsDesktop\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftWindowsServer\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsServer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftWindowsServerHPCPack\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsServerHPCPack\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft_iot_edge\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft_iot_edge\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft_javaeeonazure_test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft_javaeeonazure_test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microstrategy\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microstrategy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"midasolutions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/midasolutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"middleware\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/middleware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"midfin\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/midfin\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"midvision\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/midvision\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mihupcommunicationspvtltd1599046998010\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mihupcommunicationspvtltd1599046998010\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mindcti\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mindcti\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"minio\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/minio\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"miraclelinux\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/miraclelinux\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"miracl_linux\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/miracl_linux\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"miri-infotech-pvt-ltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/miri-infotech-pvt-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mistio1601460379393\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mistio1601460379393\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mobilab\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mobilab\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"modern-systems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/modern-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"modexblockchaindatabase\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/modexblockchaindatabase\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"monetdbsolutions1611751313758\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/monetdbsolutions1611751313758\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"monitorapp1579029852605\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/monitorapp1579029852605\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"monitorcomputersystemsltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/monitorcomputersystemsltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"moogsoft\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/moogsoft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"morpheus-data\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/morpheus-data\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"moviemasher\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/moviemasher\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mriisoftllc1579457820427\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mriisoftllc1579457820427\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"msopentech\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/msopentech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mtnfog\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mtnfog\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"multisoft-ab\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/multisoft-ab\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mvp-systems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mvp-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mwg_azure\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mwg_azure\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mxhero\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mxhero\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"my-com\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/my-com\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"myarchinc1614657280935\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/myarchinc1614657280935\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"narrativescience\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/narrativescience\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nasuni\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nasuni\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nasunicorporation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nasunicorporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"navicloudrsoftwarepteltd1601967280369\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/navicloudrsoftwarepteltd1601967280369\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ncache\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ncache\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ncbi\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ncbi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ncomputingglobalinc1604353053068\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ncomputingglobalinc1604353053068\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ndl\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ndl\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nebbiolo-technologies-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nebbiolo-technologies-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nec-technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nec-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nefelinetworks1591201080882\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nefelinetworks1591201080882\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"neo4j\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/neo4j\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"neos\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/neos\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"neowaybusinesssolutions-4956350\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/neowaybusinesssolutions-4956350\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netapp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netapp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netatwork\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netatwork\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netfoundryinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netfoundryinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netgate\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netgate\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netikus-net-ltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netikus-net-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netiq\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netiq\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netka\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netka\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netmail\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netmail\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netscout\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netscout\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netspi\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netspi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netsweeper\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netsweeper\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"networksexchangetechnologyltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/networksexchangetechnologyltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netwrix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netwrix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netx\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netx\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"neusoft-neteye\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/neusoft-neteye\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"newnetcommunicationtechnologies1589991852134\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/newnetcommunicationtechnologies1589991852134\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"NewRelic.Infrastructure.Extensions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/NewRelic.Infrastructure.Extensions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"newtglobalconsultingllc1581492268566\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/newtglobalconsultingllc1581492268566\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nextronic-5290868\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nextronic-5290868\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nginxinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nginxinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nice-it-management-solutions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nice-it-management-solutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nicepeopleatwork\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nicepeopleatwork\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nilespartnersinc1617691698386\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nilespartnersinc1617691698386\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"niolabs-5229713\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/niolabs-5229713\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nirvatosoftwarepvtltd1601368706606\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nirvatosoftwarepvtltd1601368706606\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nodejsapi\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nodejsapi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"noianetworklimited1584098036197\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/noianetworklimited1584098036197\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nokiaofamericacorporation1591716055441\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nokiaofamericacorporation1591716055441\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"noobaa\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/noobaa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"norcominformationtechnologygmbhcokgaa\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/norcominformationtechnologygmbhcokgaa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"noricumcloudsolutions1600524477681\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/noricumcloudsolutions1600524477681\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"norsync\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/norsync\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"northbridge-secure\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/northbridge-secure\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nozominetworks1582208017986\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nozominetworks1582208017986\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nri\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nri\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ntegralinc1586961136942\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ntegralinc1586961136942\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ntt-data-intellilink-corporation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ntt-data-intellilink-corporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nttdata\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nttdata\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nttltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nttltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nuco-networks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nuco-networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"numbersbelieve\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/numbersbelieve\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"numtrallcpublisher\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/numtrallcpublisher\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nuxeo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nuxeo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nvidia\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nvidia\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"o2mc-real-time-data-platform\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/o2mc-real-time-data-platform\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"objectivity-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/objectivity-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"objectivity1595351622261\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/objectivity1595351622261\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"oceanblue-cloud\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/oceanblue-cloud\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"OctopusDeploy.Tentacle\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/OctopusDeploy.Tentacle\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"odix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/odix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"odysseuscomputationalsolutions1630242118741\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/odysseuscomputationalsolutions1630242118741\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"odysseyconsultantsltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/odysseyconsultantsltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"officeatwork-ag\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/officeatwork-ag\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"omega-software\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/omega-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"onapsis\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/onapsis\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"oncore_cloud_services-4944214\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/oncore_cloud_services-4944214\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"onexgroup\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/onexgroup\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"onspecta\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/onspecta\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ontology\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ontology\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"onyx-point-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/onyx-point-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"op5\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/op5\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"open-connect-systems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/open-connect-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"opencell\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/opencell\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"openlinkswcom-pago\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/openlinkswcom-pago\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"OpenLogic\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/OpenLogic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"openrefactoryinc1620140917523\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/openrefactoryinc1620140917523\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"openshotstudiosllc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/openshotstudiosllc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"opentext\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/opentext\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"openvpn\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/openvpn\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"opslogix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/opslogix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"opswatinc1619007967290\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/opswatinc1619007967290\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"optimitiveslu1618320281443\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/optimitiveslu1618320281443\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"option3\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/option3\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Oracle\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Oracle\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"oraylis\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/oraylis\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"oraylisbi\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/oraylisbi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"orbs-network\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/orbs-network\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"oriana\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/oriana\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"orientdb\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/orientdb\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"oroinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/oroinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"osirium-ltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/osirium-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"osisoft\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/osisoft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"osnexus\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/osnexus\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"outpost24\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/outpost24\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"outsystems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/outsystems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ovaledge1618392232783\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ovaledge1618392232783\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pachyderminc1585170006545\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pachyderminc1585170006545\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pacteratechnologiesinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pacteratechnologiesinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"paladionnetworkspvtltd1606120508449\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/paladionnetworkspvtltd1606120508449\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"paloaltonetworks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/paloaltonetworks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"panopta\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/panopta\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"panorama-necto\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/panorama-necto\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"panzura-file-system\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/panzura-file-system\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"parabole\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/parabole\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"paralaxiomtechnologiesprivatelimited1596433357886\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/paralaxiomtechnologiesprivatelimited1596433357886\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"parallels\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/parallels\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"parasoft\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/parasoft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"parkersoftwarelimited1609786657569\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/parkersoftwarelimited1609786657569\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"parsec-for-teams\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/parsec-for-teams\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pasifikciptamandiri\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pasifikciptamandiri\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"passlogy\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/passlogy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"paxata\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/paxata\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pcman\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pcman\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"peer-software-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/peer-software-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"penta-security-systems-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/penta-security-systems-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"percona\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/percona\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"perforce\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/perforce\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"periscope-tech-4791746\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/periscope-tech-4791746\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"piolinkinc1582849368309\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/piolinkinc1582849368309\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pivotal\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pivotal\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pixitmedia1591611150480\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pixitmedia1591611150480\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"plesk\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/plesk\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pmsoftwareinternational1603102514882\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pmsoftwareinternational1603102514882\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pnop\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pnop\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"polarityioinc1628691850891\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/polarityioinc1628691850891\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"portalarchitects\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/portalarchitects\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"portsysinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/portsysinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"postgres-pro\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/postgres-pro\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"powerbireach\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/powerbireach\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"prakshepprivatelimited1619949827900\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/prakshepprivatelimited1619949827900\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"prestashop\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/prestashop\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"prestige_informatique-1090178\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/prestige_informatique-1090178\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"prime-strategy\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/prime-strategy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"primekey\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/primekey\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"primestrategynewyorkinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/primestrategynewyorkinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pro-vision\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pro-vision\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"process-one\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/process-one\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"processgold\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/processgold\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"procomputers\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/procomputers\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"procomputerssrl1594239153814\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/procomputerssrl1594239153814\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"profecia\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/profecia\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Profiler.AgentOrchestrationRefactor.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Profiler.AgentOrchestrationRefactor.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Profiler.Master.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Profiler.Master.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"profisee\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/profisee\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"progelspa\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/progelspa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"progresssoftwarecorporation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/progresssoftwarecorporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"proliongmbh1628175060372\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/proliongmbh1628175060372\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"protegrityusainc1627404648458\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/protegrityusainc1627404648458\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"protiviti\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/protiviti\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"proventeq\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/proventeq\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ptc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ptc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ptsecurity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ptsecurity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pulse-secure\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pulse-secure\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pulsesecuretechnologies1638179500151\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pulsesecuretechnologies1638179500151\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"puppet\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/puppet\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"puppeteersoy1601024480557\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/puppeteersoy1601024480557\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"PuppetLabs\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/PuppetLabs\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"PuppetLabs.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/PuppetLabs.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"purestorageinc1578960262525\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/purestorageinc1578960262525\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pydio\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pydio\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pyramidanalytics\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pyramidanalytics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"qlik\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/qlik\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"qnapsystemsinc1601352084032\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/qnapsystemsinc1601352084032\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"qore-technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/qore-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"qs-solutions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/qs-solutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Qualys\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Qualys\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Qualys.LinuxAgent.GrayLabel\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Qualys.LinuxAgent.GrayLabel\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Qualys.WindowsAgent.GrayLabel\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Qualys.WindowsAgent.GrayLabel\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"qualysguard\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/qualysguard\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"quasardb\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/quasardb\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"qubole-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/qubole-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"quest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/quest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"racknap\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/racknap\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rackwareinc1619403669255\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rackwareinc1619403669255\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"radiant-logic\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/radiant-logic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"radware\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/radware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"raincode\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/raincode\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rancher\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rancher\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rapid7\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rapid7\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Rapid7.InsightPlatform\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Rapid7.InsightPlatform\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rapidminer\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rapidminer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"raynetgmbh\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/raynetgmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"readymind\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/readymind\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"realm\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/realm\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"reblaze\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/reblaze\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"RedHat\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/RedHat\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"redhat-rhel\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/redhat-rhel\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"redpoint-global\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/redpoint-global\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"refactr\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/refactr\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"refinitiv\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/refinitiv\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"refinitiv-4807503\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/refinitiv-4807503\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"relevance-lab\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/relevance-lab\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"remotelearner\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/remotelearner\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"res\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/res\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"resco\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/resco\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"resemblesystems1582780358300\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/resemblesystems1582780358300\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"responder-corp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/responder-corp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"revolution-analytics\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/revolution-analytics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rhcsolutions1586957910818\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rhcsolutions1586957910818\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ribboncommunications\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ribboncommunications\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"RightScaleLinux\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/RightScaleLinux\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"RightScaleWindowsServer\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/RightScaleWindowsServer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rimo3\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rimo3\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ringsoftwareresearchanddevelopmentinc1578946072257\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ringsoftwareresearchanddevelopmentinc1578946072257\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"riverbed\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/riverbed\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"RiverbedTechnology\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/RiverbedTechnology\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rmgtechnologiesinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rmgtechnologiesinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rocketml\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rocketml\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rocketsoftware\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rocketsoftware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rohdeschwarzcybersecuritygmbh\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rohdeschwarzcybersecuritygmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rohdeschwarzcybersecuritysas\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rohdeschwarzcybersecuritysas\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"roktech\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/roktech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rsa-security-llc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rsa-security-llc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rsk-labs\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rsk-labs\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rstudio-5237862\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rstudio-5237862\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rtts\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rtts\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rubrik-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rubrik-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"runecastsolutionslimited1614186396822\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/runecastsolutionslimited1614186396822\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"s2ix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/s2ix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"saama\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/saama\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"saasame-limited\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/saasame-limited\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"safesoftwareinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/safesoftwareinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"safeticatechnologiessro\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/safeticatechnologiessro\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"safetica_technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/safetica_technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"safetoopen1585013318137\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/safetoopen1585013318137\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"saltsecurity1583264186232\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/saltsecurity1583264186232\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"saltsecurity1583264669848\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/saltsecurity1583264669848\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"saltstack\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/saltstack\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"samsung-sds\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/samsung-sds\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"samsungelectronics1632860607983\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/samsungelectronics1632860607983\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"samsungsds-cello\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/samsungsds-cello\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"samsungsds_sdbe\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/samsungsds_sdbe\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sandhatatechnologieslimited1615753438737\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sandhatatechnologieslimited1615753438737\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sap\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sap\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sapphiretechnologieslimited1611758579346\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sapphiretechnologieslimited1611758579346\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sas-institute-560503\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sas-institute-560503\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"scaidata\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/scaidata\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"scalearc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/scalearc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"scalegrid\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/scalegrid\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"scality\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/scality\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"schrockeninc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/schrockeninc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sci\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sci\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sciencelogicinc1622565452194\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sciencelogicinc1622565452194\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"scientiamobile\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/scientiamobile\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"scontainug1595751515785\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/scontainug1595751515785\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"scubaanalytics\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/scubaanalytics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"scylladb1631195365807\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/scylladb1631195365807\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"seaqserviciossas1579029207572\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/seaqserviciossas1579029207572\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"searchbloxsoftwareinc1594309037050\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/searchbloxsoftwareinc1594309037050\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"secureworks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/secureworks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"securityonionsolutions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/securityonionsolutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"securityonionsolutionsllc1624649205155\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/securityonionsolutionsllc1624649205155\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"securosis\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/securosis\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"seequentltd1585781751395\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/seequentltd1585781751395\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"semarchy\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/semarchy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"semperis\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/semperis\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"senhasegura\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/senhasegura\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"SentinelOne.LinuxExtension\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/SentinelOne.LinuxExtension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"SentinelOne.WindowsExtension\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/SentinelOne.WindowsExtension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"SentinelOne.WindowsExtension.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/SentinelOne.WindowsExtension.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sentriumsl\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sentriumsl\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sentryone\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sentryone\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sepiosystems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sepiosystems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"seppmailag\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/seppmailag\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"seraumo1620002807288\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/seraumo1620002807288\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"service-control-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/service-control-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sesamesoftwareinc1622125191447\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sesamesoftwareinc1622125191447\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"shadow-soft\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/shadow-soft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"shareshiftneeraj.test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/shareshiftneeraj.test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sightapps\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sightapps\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"signal-sciences\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/signal-sciences\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"silk\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/silk\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"silver-peak-systems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/silver-peak-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"simmachinesinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/simmachinesinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"simontelephonics\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/simontelephonics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"simpledatalabsinc1635791235920\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/simpledatalabsinc1635791235920\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"simplifierag\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/simplifierag\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"simpligov\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/simpligov\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sinefa\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sinefa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sinequa\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sinequa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sinequa1588262295885\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sinequa1588262295885\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"singapore-telecommunications-limited\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/singapore-telecommunications-limited\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sios_datakeeper\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sios_datakeeper\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"siportalinc1581539156321\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/siportalinc1581539156321\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sisenseltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sisenseltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Site24x7\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Site24x7\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sktelecom\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sktelecom\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"skyarc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/skyarc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"skyboxsecurity1585187406404\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/skyboxsecurity1585187406404\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"skylarkcloud\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/skylarkcloud\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"smartbearsoftware\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/smartbearsoftware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"smartmessage-autoflow\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/smartmessage-autoflow\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"snaplogic\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/snaplogic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"snapt-adc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/snapt-adc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"snips\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/snips\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"soasta\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/soasta\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"softnas\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/softnas\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"softwarecentralas1642687699196\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/softwarecentralas1642687699196\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"softwarehut\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/softwarehut\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"softwebsolutions-4518310\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/softwebsolutions-4518310\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"soha\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/soha\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"solanolabs\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/solanolabs\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"solar-security\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/solar-security\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"solarwinds\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/solarwinds\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"solvedevops1643693563360\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/solvedevops1643693563360\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sonicwall-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sonicwall-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sophos\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sophos\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sourcegearllc1616101262784\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sourcegearllc1616101262784\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"south-river-technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/south-river-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"southrivertech1586314123192\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/southrivertech1586314123192\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"spacecurve\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/spacecurve\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"spaceliftinc1625499025476\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/spaceliftinc1625499025476\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"spagobi\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/spagobi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sparklinglogic\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sparklinglogic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"spectralcorelimited1619779004178\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/spectralcorelimited1619779004178\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"spektra\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/spektra\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sphere3d\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sphere3d\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"spideroakinc1588278690933\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/spideroakinc1588278690933\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"spirentcommunications1594084187199\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/spirentcommunications1594084187199\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"splunk\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/splunk\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sproutenetworks1593456311717\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sproutenetworks1593456311717\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sqlstream\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sqlstream\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"squadratechnologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/squadratechnologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"squaredup\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/squaredup\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"src-solution\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/src-solution\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stackato-platform-as-a-service\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stackato-platform-as-a-service\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Stackify.LinuxAgent.Extension\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Stackify.LinuxAgent.Extension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stackstorm\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stackstorm\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"startekfingerprintmatch\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/startekfingerprintmatch\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"startisolucoesemtecnologialtda1635263523201\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/startisolucoesemtecnologialtda1635263523201\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"starwind\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/starwind\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"StatusMonitor2.Diagnostics.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/StatusMonitor2.Diagnostics.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"StatusReport.Diagnostics.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/StatusReport.Diagnostics.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stealthbits\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stealthbits\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"steelhive\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/steelhive\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stonebondtechnologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stonebondtechnologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stonefly\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stonefly\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"storage_made_easy\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/storage_made_easy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stormshield\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stormshield\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"storone1594045543980\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/storone1594045543980\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"storreduce\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/storreduce\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"storwarespzoo1611743234900\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/storwarespzoo1611743234900\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"strangebee1595948424730\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/strangebee1595948424730\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"strataidentity1608323708170\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/strataidentity1608323708170\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stratis-group-ltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stratis-group-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stratodesk1611152769936\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stratodesk1611152769936\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stratumn\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stratumn\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"streamsets\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/streamsets\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"striim\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/striim\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stromasys\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stromasys\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"strongboxitllc1594816423884\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/strongboxitllc1594816423884\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"su\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/su\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"subscription.test.krsh\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/subscription.test.krsh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sumologic\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sumologic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sunatogmbh\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sunatogmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sunday\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sunday\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"SUSE\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/SUSE\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"swoopanalytics\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/swoopanalytics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sycom-technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sycom-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sycompatechnologycompanyinc1588192103892\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sycompatechnologycompanyinc1588192103892\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.CloudWorkloadProtection\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.CloudWorkloadProtection\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.CloudWorkloadProtection.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.CloudWorkloadProtection.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.CloudWorkloadProtection.TestOnStage\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.CloudWorkloadProtection.TestOnStage\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.QA\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.QA\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.staging\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.staging\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.test.ru2.latest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.test.ru2.latest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.test.ru2final\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.test.ru2final\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.test.ru2latest1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.test.ru2latest1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.test.ru4mp1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.test.ru4mp1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.test.ru4mp1.latest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.test.ru4mp1.latest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.test.ru4mp1final\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.test.ru4mp1final\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"symanteccorporation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/symanteccorporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"symantectest1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/symantectest1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"synack-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/synack-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"syncfusion\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/syncfusion\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"syncfusionbigdataplatfor\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/syncfusionbigdataplatfor\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"synechron-technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/synechron-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"synergixinc1585256339250\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/synergixinc1585256339250\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"synnexcorp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/synnexcorp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"syscomcomputerengineeringco1583913200141\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/syscomcomputerengineeringco1583913200141\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"syte\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/syte\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tableau\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tableau\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tactic\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tactic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"talari-networks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/talari-networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"talena-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/talena-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"talend\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/talend\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"talon\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/talon\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tamrinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tamrinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"targit\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/targit\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tata_communications\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tata_communications\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tavanttechnologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tavanttechnologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tavendo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tavendo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"te-systems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/te-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"techdivision\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/techdivision\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"techlatest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/techlatest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"technicheltd1606969724100\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/technicheltd1606969724100\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tecknolab\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tecknolab\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"telepat\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/telepat\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"teloscorporation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/teloscorporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tempered-networks-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tempered-networks-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tenable\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tenable\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tensormakecorpdbaoneclickai1608247756082\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tensormakecorpdbaoneclickai1608247756082\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"teradata\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/teradata\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Teradici\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Teradici\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"teramindinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/teramindinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.Gemalto.SafeNet.ProtectV\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.Gemalto.SafeNet.ProtectV\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.Gemalto.SafeNet.ProtectV.Azure\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.Gemalto.SafeNet.ProtectV.Azure\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.HP.AppDefender\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.HP.AppDefender\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.Microsoft.VisualStudio.Services\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.Microsoft.VisualStudio.Services\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.NJHP.AppDefender\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.NJHP.AppDefender\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.SqlServer.Managability\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.SqlServer.Managability\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.SqlServer.Management\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.SqlServer.Management\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.SqlServer.Management.corext\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.SqlServer.Management.corext\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test1.NJHP.AppDefender\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test1.NJHP.AppDefender\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test3.Microsoft.VisualStudio.Services\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test3.Microsoft.VisualStudio.Services\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"testable1603721901088\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/testable1603721901088\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"testpro\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/testpro\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"test_test_mix3pptest0011614206850774\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/test_test_mix3pptest0011614206850774\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"test_test_mneela1628617140187\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/test_test_mneela1628617140187\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"test_test_pmc2pc1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/test_test_pmc2pc1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thales-vormetric\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thales-vormetric\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thalesdiscplusainc1596561677238\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thalesdiscplusainc1596561677238\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thedatavaluefactoryltd1589348815922\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thedatavaluefactoryltd1589348815922\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thefreebsdfoundation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thefreebsdfoundation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thehdfgroup1616725197741\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thehdfgroup1616725197741\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"theumag1596442827072\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/theumag1596442827072\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"things-board\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/things-board\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thingscareinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thingscareinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thinprintgmbh\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thinprintgmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thorntechnologiesllc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thorntechnologiesllc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thoughtspot-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thoughtspot-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"threatintelligenceptyltd1586824172898\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/threatintelligenceptyltd1586824172898\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tibco-software\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tibco-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tidal-migrations\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tidal-migrations\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tidalmediainc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tidalmediainc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tig\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tig\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tiger-technology\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tiger-technology\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tigergraph\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tigergraph\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"timextender\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/timextender\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tmaxsoft\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tmaxsoft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tmaxsoft1608612658335\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tmaxsoft1608612658335\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tomsawyersoftwarecorp1613579206342\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tomsawyersoftwarecorp1613579206342\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"topicus\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/topicus\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"torusware\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/torusware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"totemo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/totemo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"townsend-security\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/townsend-security\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"transcendinformationinc1609918445926\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/transcendinformationinc1609918445926\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"transientxinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/transientxinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"transvault\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/transvault\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"trendmicro\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/trendmicro\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"TrendMicro.DeepSecurity.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/TrendMicro.DeepSecurity.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"TrendMicro.PortalProtect\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/TrendMicro.PortalProtect\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tresorit\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tresorit\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"trifacta\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/trifacta\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tripleblindinc1615730179432\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tripleblindinc1615730179432\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tripwire-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tripwire-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"truata1612259728221\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/truata1612259728221\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"truestack\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/truestack\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tryonsolutionsinc1596650621083\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tryonsolutionsinc1596650621083\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tsa-public-service\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tsa-public-service\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tunnelbiz\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tunnelbiz\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"turbonet\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/turbonet\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"turbonet1581982683964\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/turbonet1581982683964\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"twistlock\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/twistlock\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"typesafe\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/typesafe\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ubeeko\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ubeeko\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ubercloud\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ubercloud\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"uipath-5054924\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/uipath-5054924\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ulex\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ulex\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"unifi-software\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/unifi-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"unifiedstreaming1598872291606\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/unifiedstreaming1598872291606\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"uniprint-net\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/uniprint-net\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"unitrends\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/unitrends\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"unnisoft\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/unnisoft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"unravel-data\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/unravel-data\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"unscramblsingaporepteltd-4999260\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/unscramblsingaporepteltd-4999260\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"untangle\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/untangle\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"upsolver1594188634150\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/upsolver1594188634150\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"usp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/usp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"valohai\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/valohai\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"valtix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/valtix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"varmournetworks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/varmournetworks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"varnish\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/varnish\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vatacommunicationsinc1581644208717\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vatacommunicationsinc1581644208717\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vaultive-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vaultive-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vbot\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vbot\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vcinityinc1587684340545\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vcinityinc1587684340545\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vectraaiinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vectraaiinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"veeam\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/veeam\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"velocitydb-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/velocitydb-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"velocloud\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/velocloud\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vembutechnologiespvtltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vembutechnologiespvtltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vemn\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vemn\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"veritas\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/veritas\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"versanetworks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/versanetworks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"versasec\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/versasec\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vidispine\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vidispine\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vidizmo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vidizmo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vigyanlabs-innovations-pvt-ltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vigyanlabs-innovations-pvt-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vigyanlabsinc1581413676614\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vigyanlabsinc1581413676614\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"viptela\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/viptela\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vircom\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vircom\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"virtamovecorp1615909247913\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/virtamovecorp1615909247913\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"virtualpulsesro1607008728942\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/virtualpulsesro1607008728942\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"virtuozzointernationalgmbh1626704951469\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/virtuozzointernationalgmbh1626704951469\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"visualknowledgeshare1591795776234\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/visualknowledgeshare1591795776234\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"visualsoft-center\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/visualsoft-center\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vizixiotplatformretail001\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vizixiotplatformretail001\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vmlabinc1613642184700\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vmlabinc1613642184700\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vmturbo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vmturbo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vmware-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vmware-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vnomicinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vnomicinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"voiceelements\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/voiceelements\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"voleatechgmbh1636966911943\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/voleatechgmbh1636966911943\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"volterraedgeservices\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/volterraedgeservices\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Vormetric\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Vormetric\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vscconsultingptyltd1608535888097\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vscconsultingptyltd1608535888097\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vte\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vte\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vu-llc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vu-llc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vyulabsinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vyulabsinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"WAD2AI.Diagnostics.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/WAD2AI.Diagnostics.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"WAD2EventHub.Diagnostics.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/WAD2EventHub.Diagnostics.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wallarm\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wallarm\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wallix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wallix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wandisco\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wandisco\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wanos\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wanos\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wanpath-dba-myworkdrive\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wanpath-dba-myworkdrive\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wardy-it-solutions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wardy-it-solutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"warewolf-esb\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/warewolf-esb\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"watchguard-technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/watchguard-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"webaloinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/webaloinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"websense-apmailpe\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/websense-apmailpe\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"websoft9inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/websoft9inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wedoitllc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wedoitllc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"westernoceansoftwaresprivatelimited\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/westernoceansoftwaresprivatelimited\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wherescapesoftware\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wherescapesoftware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"winmagic_securedoc_cloudvm\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/winmagic_securedoc_cloudvm\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wintellisys-inc-4561600\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wintellisys-inc-4561600\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"witfooinc1590167223060\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/witfooinc1590167223060\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wmspanel\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wmspanel\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wood1595864497589\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wood1595864497589\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"workshare-technology\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/workshare-technology\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"world-programming\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/world-programming\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"worxogo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/worxogo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wowza\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wowza\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"xcontentptyltd-1329748\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/xcontentptyltd-1329748\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"xendata-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/xendata-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"xfinityinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/xfinityinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"xilinx\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/xilinx\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"xoriantcorporationazxteam1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/xoriantcorporationazxteam1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"xoriantsolutionspvtltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/xoriantsolutionspvtltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"xtremedata\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/xtremedata\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"xyzrd-group-ou\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/xyzrd-group-ou\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"yellowfin\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/yellowfin\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"yellowfininternationalptyltd1616363974066\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/yellowfininternationalptyltd1616363974066\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"yokogawarentalleasecorporation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/yokogawarentalleasecorporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"your-shop-online\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/your-shop-online\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"z1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/z1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"z4it-aps\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/z4it-aps\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zabbix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zabbix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zend\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zend\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zenterasystemsinc1605292453288\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zenterasystemsinc1605292453288\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zerodown_software\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zerodown_software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zerto\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zerto\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zettalane_systems-5254599\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zettalane_systems-5254599\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zevenet\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zevenet\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zilliz\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zilliz\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zoomdata\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zoomdata\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zscaler\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zscaler\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zscaler1579058425289\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zscaler1579058425289\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zultysinc1596831546163\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zultysinc1596831546163\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"128technology\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/128technology\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1580863854728\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1580863854728\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1583411303229\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1583411303229\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1583465680865\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1583465680865\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1585118004523\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1585118004523\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1592878437854\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1592878437854\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1597644262255\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1597644262255\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1598955805825\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1598955805825\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1601633765871\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1601633765871\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1602067018799\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1602067018799\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1604579683207\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1604579683207\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1615257339685\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1615257339685\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1615278064010\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1615278064010\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1615455873642\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1615455873642\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1624590941808\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1624590941808\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1640334196980\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1640334196980\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1e\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1e\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"2021ai\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/2021ai\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"247commercelimited1611063941652\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/247commercelimited1611063941652\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"3cx-pbx\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/3cx-pbx\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"42crunch1580391915541\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/42crunch1580391915541\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"4psa\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/4psa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"5nine-software-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/5nine-software-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"6124903\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/6124903\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"7isolutions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/7isolutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"a10networks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/a10networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"a10networks1596136698788\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/a10networks1596136698788\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"abiquo\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/abiquo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"abzoobainc1598420455082\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/abzoobainc1598420455082\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"accedian\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/accedian\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"accelario1579101623356\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/accelario1579101623356\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"accellion\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/accellion\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"accessdata-group\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/accessdata-group\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"accops\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/accops\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aciworldwide\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aciworldwide\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Acronis\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Acronis\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Acronis.Backup\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Acronis.Backup\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"actian-corp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/actian-corp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"actian_matrix\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/actian_matrix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"actifio\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/actifio\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"actiphy\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/actiphy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"actiphyinc1627974506603\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/actiphyinc1627974506603\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"activecountermeasuresinc1631039410073\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/activecountermeasuresinc1631039410073\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"activeeon\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/activeeon\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"activeops\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/activeops\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"adastracorporation-4028356\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/adastracorporation-4028356\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"adgs\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/adgs\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"advantech\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/advantech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"advantech-webaccess\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/advantech-webaccess\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"advantys\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/advantys\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aelf\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aelf\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aerospike\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aerospike\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"affinio\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/affinio\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"affirmednetworks1607630812999\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/affirmednetworks1607630812999\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ageniumscale1591804889317\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ageniumscale1591804889317\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aggregion-ltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aggregion-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"agiledialogssl1603791911858\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/agiledialogssl1603791911858\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"agolo\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/agolo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ahnlabinc1584495174865\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ahnlabinc1584495174865\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ahnlabinc1584495467593\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ahnlabinc1584495467593\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"airalabrus\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/airalabrus\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aiscaler-cache-control-ddos-and-url-rewriting-\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aiscaler-cache-control-ddos-and-url-rewriting-\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aisundowninc1618516322959\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aisundowninc1618516322959\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"akamai-technologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/akamai-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"akumina\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/akumina\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"akumo-software\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/akumo-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"al-tamamunitedtradingcontractingcompany\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/al-tamamunitedtradingcontractingcompany\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"alachisoft\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/alachisoft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"alertlogic\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/alertlogic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"AlertLogic.Extension\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/AlertLogic.Extension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"algolyticstechnologies1606475101268\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/algolyticstechnologies1606475101268\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"alicetrix\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/alicetrix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"alienvault\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/alienvault\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"alldigital-brevity\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/alldigital-brevity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"almalinux\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/almalinux\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"almalinuxosfoundation1628089859865\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/almalinuxosfoundation1628089859865\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"altair-engineering-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/altair-engineering-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"altamira-corporation\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/altamira-corporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"alteryx\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/alteryx\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"altova\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/altova\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"amergint1593131356777\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/amergint1593131356777\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"anjanadatasl1583402861145\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/anjanadatasl1583402861145\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ansys\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ansys\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"antmedia\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/antmedia\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aod\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aod\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"apigee\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/apigee\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"appcara\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appcara\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"appcelerator\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appcelerator\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"appex-networks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appex-networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"appistry\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appistry\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"appiyo_technologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appiyo_technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"appmint_inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appmint_inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"apps-4-rent\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/apps-4-rent\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"appscale-marketplace\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appscale-marketplace\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"appsurifyinc1606933045773\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appsurifyinc1606933045773\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aquaforest\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aquaforest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aquantyinc1598537176913\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aquantyinc1598537176913\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aquaveollc1633710529908\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aquaveollc1633710529908\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"arabesque-group\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/arabesque-group\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"arangodb\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/arangodb\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aras\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aras\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"arcblock\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/arcblock\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"arcesb\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/arcesb\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"arcontechsolutionsprivatelimited1623841797810\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/arcontechsolutionsprivatelimited1623841797810\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"arcserveusallc-marketing\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/arcserveusallc-marketing\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"arista-networks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/arista-networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ariwontollc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ariwontollc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"array_networks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/array_networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"artificial-intelligence-techniques-sl\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/artificial-intelligence-techniques-sl\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"arubanetworks-4922182\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/arubanetworks-4922182\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"asdivertissementinc1617837708654\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/asdivertissementinc1617837708654\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"asigra\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/asigra\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aspentechnologyhq-1353108\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aspentechnologyhq-1353108\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"astadia-1148316\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/astadia-1148316\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"asterasoftware1581022936015\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/asterasoftware1581022936015\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"asyscosoftwarebv\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/asyscosoftwarebv\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ataccama\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ataccama\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"athinfosystems1641442221349\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/athinfosystems1641442221349\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"athinfosystems1648710938250\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/athinfosystems1648710938250\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"atlgaming\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/atlgaming\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"atmosera\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/atmosera\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"atomicorp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/atomicorp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"atomizedinc1587939464368\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/atomizedinc1587939464368\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"attunity_cloudbeam\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/attunity_cloudbeam\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"audiocodes\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/audiocodes\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"auraportal\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/auraportal\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"auriq-systems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/auriq-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"automateio1592914387888\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/automateio1592914387888\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"automationanywhere\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/automationanywhere\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"avanseus\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/avanseus\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"avepoint\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/avepoint\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aveva1\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aveva1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"avi-networks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/avi-networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aviatrix-systems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aviatrix-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"awingu\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/awingu\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"axedrasag1590581171549\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/axedrasag1590581171549\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"axsguardablenv\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/axsguardablenv\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"axshco\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/axshco\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"axway\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/axway\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"axxana\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/axxana\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"azhpc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/azhpc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"azul\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/azul\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"azure-dockit\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/azure-dockit\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"azurecyclecloud\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/azurecyclecloud\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"AzureDatabricks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/AzureDatabricks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"azureopenshift\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/azureopenshift\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"AzureRT.PIR.Synthetics.ProdTest\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/AzureRT.PIR.Synthetics.ProdTest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"AzureRT.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/AzureRT.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"azuretesting\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/azuretesting\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"azuretesting2\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/azuretesting2\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"azuretesting3\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/azuretesting3\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"AzureTools1type\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/AzureTools1type\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"baas-techbureau\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/baas-techbureau\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"baffle-io\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/baffle-io\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"balabit\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/balabit\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"barracudanetworks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/barracudanetworks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"basho\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/basho\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"batch\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/batch\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bayware\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bayware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bdy\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bdy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"belindaczsro1588885355210\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/belindaczsro1588885355210\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bellsoft1582871421940\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bellsoft1582871421940\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"betsol\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/betsol\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"beyondtrust\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/beyondtrust\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bi-builders-as\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bi-builders-as\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"big-id\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/big-id\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"biolibinc1622552350258\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/biolibinc1622552350258\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bissantechnology1583581147809\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bissantechnology1583581147809\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bitdefendercybersecurity\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bitdefendercybersecurity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Bitnami\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Bitnami\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bizagi\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bizagi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bizaptyltd1626489237351\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bizaptyltd1626489237351\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bizdataloome\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bizdataloome\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"biztalk360\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/biztalk360\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"black-duck-software\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/black-duck-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"blackbird\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/blackbird\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"blackmagicdesignincorporated1596492193249\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/blackmagicdesignincorporated1596492193249\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"blk-technologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/blk-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"blockapps\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/blockapps\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"blockchain-foundry\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/blockchain-foundry\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"blockstack\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/blockstack\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bloombase\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bloombase\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bluecat\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bluecat\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bluejeansnetwork1638333611902\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bluejeansnetwork1638333611902\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"blueprismlimited-4827145\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/blueprismlimited-4827145\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bluesyntaxconsulting1617654548594\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bluesyntaxconsulting1617654548594\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bluetalon\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bluetalon\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bmc.ctm\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bmc.ctm\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bmcctm.test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bmcctm.test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"boardpacpvtltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/boardpacpvtltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bocada\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bocada\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"boemskats\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/boemskats\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"botanalytics\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/botanalytics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bowspritconsultingopcprivatelimited1596291408582\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bowspritconsultingopcprivatelimited1596291408582\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bravura-software-llc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bravura-software-llc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Brianjac.Symantec.CloudWorkloadProtection\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Brianjac.Symantec.CloudWorkloadProtection\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bricatainc1584472632111\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bricatainc1584472632111\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bright-computing\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bright-computing\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"brightcomputing\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/brightcomputing\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"brocade_communications\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/brocade_communications\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"brutale\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/brutale\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bryte\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bryte\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bssw\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bssw\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bt-americas-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bt-americas-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"buddhalabs\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/buddhalabs\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cadosecurityltd1626856705534\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cadosecurityltd1626856705534\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"calculated_systems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/calculated_systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"caloudi_corp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/caloudi_corp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"canadiancentreforcybersecurity1610638436359\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/canadiancentreforcybersecurity1610638436359\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Canonical\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Canonical\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"canonical-test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/canonical-test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"carto\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/carto\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cask\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cask\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"castaigroupinc1595243474856\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/castaigroupinc1595243474856\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"catechnologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/catechnologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"catonetworksltd1641478570665\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/catonetworksltd1641478570665\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cautelalabs\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cautelalabs\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cavirin\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cavirin\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cayosoftinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cayosoftinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cdatasoftware\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cdatasoftware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cds\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cds\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"celum-gmbh\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/celum-gmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"center-for-internet-security-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/center-for-internet-security-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"centeritysystems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/centeritysystems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"centrixeltd1594135951373\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/centrixeltd1594135951373\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"centrocomputerspa1584528117084\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/centrocomputerspa1584528117084\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"certifiedsecuritysolutionsinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/certifiedsecuritysolutionsinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"certivox\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/certivox\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cfd-direct\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cfd-direct\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"chain\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/chain\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"checkpoint\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/checkpoint\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"chef-software\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/chef-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Chef.Bootstrap.WindowsAzure\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Chef.Bootstrap.WindowsAzure\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"chunghwatelecom1587573688842\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/chunghwatelecom1587573688842\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cinchy\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cinchy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cinegy-gmbh\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cinegy-gmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ciphertechsinc1646670709341\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ciphertechsinc1646670709341\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"circleci\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/circleci\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cires21\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cires21\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cirruswaveinc1579234787943\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cirruswaveinc1579234787943\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cisco\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cisco\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"citrix\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/citrix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Citrix.ADC\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Citrix.ADC\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"clapsodeughaftungsbeschrnkt1626333173563\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/clapsodeughaftungsbeschrnkt1626333173563\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"clear-linux-project\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/clear-linux-project\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"clone-systems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/clone-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"clouber\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/clouber\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloud-checkr\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloud-checkr\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloud-cruiser\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloud-cruiser\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloud-infrastructure-services\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloud-infrastructure-services\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudaccelinc1628754426775\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudaccelinc1628754426775\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudbees\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudbees\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudbees-enterprise-jenkins\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudbees-enterprise-jenkins\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudbolt-software\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudbolt-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudboltsoftware1639523402532\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudboltsoftware1639523402532\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudboost\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudboost\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudcover\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudcover\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudenablers-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudenablers-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudentity\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudentity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudera\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudera\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudflare\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudflare\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudhouse\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudhouse\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudinfo-4919088\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudinfo-4919088\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudknox\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudknox\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudlanes\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudlanes\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudlink\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudlink\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"CloudLinkEMC.SecureVM\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/CloudLinkEMC.SecureVM\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudmavensolutions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudmavensolutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudneeti\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudneeti\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudplan-gmbh\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudplan-gmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudsecurity\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudsecurity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudsoft\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudsoft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudwhizsolutions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudwhizsolutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudwrxsconsultingltd1631029702055\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudwrxsconsultingltd1631029702055\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"clustrix\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/clustrix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cncf-upstream\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cncf-upstream\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"codaintelligence1606495376525\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/codaintelligence1606495376525\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"codelathe\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/codelathe\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"codenvy\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/codenvy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"codetwo\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/codetwo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cognexcorporation1613759804979\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cognexcorporation1613759804979\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cognexcorporation1647410785838\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cognexcorporation1647410785838\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cognitive-scale\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cognitive-scale\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cognizant\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cognizant\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cognosys\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cognosys\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cohesity\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cohesity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cohesitydev1592001764720\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cohesitydev1592001764720\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cohesive\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cohesive\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"coin-sciences-ltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/coin-sciences-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"collabcloudlimited\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/collabcloudlimited\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"collibranv1619508098620\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/collibranv1619508098620\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"commscopeinc1632135151062\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/commscopeinc1632135151062\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"commvault\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/commvault\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"compellon\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/compellon\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"composable\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/composable\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"comunity\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/comunity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"concentrationheatandmomentumlimited1616154387047\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/concentrationheatandmomentumlimited1616154387047\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Confer\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Confer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"confluentinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/confluentinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"conflux\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/conflux\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"connecting-software\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/connecting-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"consensys\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/consensys\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"containeraider\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/containeraider\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"contiamogmbh\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/contiamogmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"controlcase\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/controlcase\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"controlplane\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/controlplane\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"controlplanecorporation1609967567639\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/controlplanecorporation1609967567639\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"convertigo\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/convertigo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"corda\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/corda\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"core-stack\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/core-stack\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"corent-technology-pvt\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/corent-technology-pvt\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"CoreOS\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/CoreOS\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"couchbase\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/couchbase\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cpanel\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cpanel\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"credativ\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/credativ\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cristiesoftwareltd1599488127561\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cristiesoftwareltd1599488127561\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"crunchyard\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/crunchyard\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"crunchyardltd1623835391104\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/crunchyardltd1623835391104\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cryptocom1585727786636\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cryptocom1585727786636\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cryptosense1605170011574\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cryptosense1605170011574\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cryptzone\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cryptzone\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ctm.bmc.com\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ctm.bmc.com\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ctrliqinc1648673227698\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ctrliqinc1648673227698\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cubebackup\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cubebackup\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cyberark\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cyberark\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cybernetica-as\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cybernetica-as\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cygnalabscorp1646065782458\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cygnalabscorp1646065782458\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cyxtera\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cyxtera\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"d4t4_solutions-1164305\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/d4t4_solutions-1164305\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"daceitdbasensetrafficpulse1579892024934\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/daceitdbasensetrafficpulse1579892024934\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"danielsol.AzureTools1\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/danielsol.AzureTools1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Dans.Windows.App\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Dans.Windows.App\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Dans3.Windows.App\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Dans3.Windows.App\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dataart\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dataart\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"databricks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/databricks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datacore\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datacore\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Datadog.Agent\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Datadog.Agent\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datadynamicsinc1581991927942\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datadynamicsinc1581991927942\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datagapsinc1585348463636\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datagapsinc1585348463636\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dataguiseinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dataguiseinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dataiku\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dataiku\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datalayer\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datalayer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datanomers1584919038987\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datanomers1584919038987\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datanova\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datanova\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datapredsa\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datapredsa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dataroadtechnologiesllc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dataroadtechnologiesllc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datasciencedojo1586563145740\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datasciencedojo1586563145740\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datastax\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datastax\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datasunrise\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datasunrise\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datavirtualitygmbh\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datavirtualitygmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datometry\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datometry\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dbs-h\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dbs-h\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ddn-whamcloud-5345716\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ddn-whamcloud-5345716\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Debian\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Debian\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dece-4446019\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dece-4446019\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"decisosalesbv\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/decisosalesbv\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"deepcognitioninc1593512758156\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/deepcognitioninc1593512758156\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"deepsiginc1581610210151\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/deepsiginc1581610210151\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"deepsurfacesecurityinc1632943333445\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/deepsurfacesecurityinc1632943333445\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dellemc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dellemc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dell_software\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dell_software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"delphix\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/delphix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"deltapathlimited1592886319362\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/deltapathlimited1592886319362\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"denodo\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/denodo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"denyall\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/denyall\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"derdack\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/derdack\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"deskpro1650546806675\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/deskpro1650546806675\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"desktopstudioag1580294245574\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/desktopstudioag1580294245574\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"devfactory\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/devfactory\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"device42inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/device42inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"deviceauthorityinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/deviceauthorityinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"devolutionsinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/devolutionsinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"devopsgroup-uk\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/devopsgroup-uk\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"df-portal-user\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/df-portal-user\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dgsecure\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dgsecure\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Dh2ico\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Dh2ico\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dh2icompany\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dh2icompany\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dhi\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dhi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"diagramics\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/diagramics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dicomsystems1584107398321\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dicomsystems1584107398321\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"diehl-metering\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/diehl-metering\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"digisitesystems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/digisitesystems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"digitaldefenseinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/digitaldefenseinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"digitaloffice\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/digitaloffice\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"digitamizeinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/digitamizeinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"digitate\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/digitate\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"diladele\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/diladele\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dimensionalmechanics-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dimensionalmechanics-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"diqa\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/diqa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"diyatech\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/diyatech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"diyotta\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/diyotta\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"djiindustrialincus\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/djiindustrialincus\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"docker\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/docker\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dome9\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dome9\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dorabot\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dorabot\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dremiocorporation\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dremiocorporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"drizti\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/drizti\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"drone\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/drone\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dsi\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dsi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dundas\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dundas\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dyadic_security\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dyadic_security\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dynatrace\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dynatrace\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dynatrace.ruxit\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dynatrace.ruxit\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"e-magicinc1587696283171\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/e-magicinc1587696283171\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"eastwind-networks-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/eastwind-networks-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"easysoftwaresro1593005637384\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/easysoftwaresro1593005637384\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ebesllc1637780200500\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ebesllc1637780200500\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ecessa\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ecessa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"edevtech\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/edevtech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"edgelesssystems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/edgelesssystems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"edgenetworks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/edgenetworks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"edispheresoftwareprivatelimited1606199736428\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/edispheresoftwareprivatelimited1606199736428\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"education4sight\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/education4sight\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"eecservicesfzllc1604836615706\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/eecservicesfzllc1604836615706\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"egnyte\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/egnyte\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"egress1589289169584\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/egress1589289169584\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"eikonasystemsgmbh1601729310063\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/eikonasystemsgmbh1601729310063\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Elastic\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Elastic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"elasticbox\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/elasticbox\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"elecard\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/elecard\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"electric-cloud\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/electric-cloud\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"elevateiot\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/elevateiot\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"eleven01\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/eleven01\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"elfiqnetworks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/elfiqnetworks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"emercoin\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/emercoin\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"energisme1601990637842\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/energisme1601990637842\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"enforongo\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/enforongo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"engineering-ingegneriainformatica-spa1626786889850\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/engineering-ingegneriainformatica-spa1626786889850\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"engysltd1624364546407\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/engysltd1624364546407\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"enterprise-ethereum-alliance\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/enterprise-ethereum-alliance\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"enterprisedb-corp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/enterprisedb-corp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"enterpriseworx-it\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/enterpriseworx-it\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"epicgames\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/epicgames\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"epicgamesinc1633466121071\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/epicgamesinc1633466121071\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"eproe\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/eproe\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"equalum\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/equalum\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"equilibrium\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/equilibrium\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"equinix\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/equinix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ergoninformatikag1581586464404\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ergoninformatikag1581586464404\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"esdenera\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/esdenera\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ESET\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ESET\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"esetresearch1579795941720\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/esetresearch1579795941720\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"esri\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/esri\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"esyon\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/esyon\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ethereum\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ethereum\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"eurolinuxspzoo1620639373013\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/eurolinuxspzoo1620639373013\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"eventtracker\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/eventtracker\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"evertzmicrosystemsltd1586877923009\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/evertzmicrosystemsltd1586877923009\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"evostream-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/evostream-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"exact\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/exact\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"exasol\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/exasol\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"excelero1608461290726\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/excelero1608461290726\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"exivity\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/exivity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"exonar\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/exonar\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"f5-networks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/f5-networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"falainapteltd1604661424876\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/falainapteltd1604661424876\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"falconstorsoftware\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/falconstorsoftware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fatalsecurity1604924013537\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fatalsecurity1604924013537\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fatpipe-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fatpipe-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fenestrae-1035066\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fenestrae-1035066\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fidesys\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fidesys\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"filecatalyst\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/filecatalyst\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"filemagellc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/filemagellc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fiorano\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fiorano\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fireeye\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fireeye\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"firehost\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/firehost\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"firemon\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/firemon\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"firstderivativesplc1596469572732\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/firstderivativesplc1596469572732\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"flashgrid-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/flashgrid-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"flexbby\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/flexbby\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"flexbby-5255860\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/flexbby-5255860\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"flexify-io\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/flexify-io\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"flexxibleit\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/flexxibleit\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"flowmon\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/flowmon\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"flynet\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/flynet\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"foghorn-systems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/foghorn-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"forcepoint-llc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/forcepoint-llc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"forescout\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/forescout\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"foreseetiab1613650409016\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/foreseetiab1613650409016\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"formpipesoftwareab\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/formpipesoftwareab\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"forscene\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/forscene\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fortanix\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fortanix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fortinet\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fortinet\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fortycloud\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fortycloud\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"forumsystems1599756394904\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/forumsystems1599756394904\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fotopiatechnologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fotopiatechnologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"foxiteuropegmbh1585901066320\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/foxiteuropegmbh1585901066320\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"franzinc1593030725310\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/franzinc1593030725310\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fujitsu_fast\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fujitsu_fast\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fw\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fw\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"g2kgroupgmbh-4821943\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/g2kgroupgmbh-4821943\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gapteq\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gapteq\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gatlingcorp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gatlingcorp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gbs\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gbs\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gemalto-safenet\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gemalto-safenet\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Gemalto.SafeNet.ProtectV\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Gemalto.SafeNet.ProtectV\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"genesistechnologyinc1604912285911\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/genesistechnologyinc1604912285911\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"genuagmbhdevid1\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/genuagmbhdevid1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"genua_gmbh\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/genua_gmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"genymobile\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/genymobile\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gigamon-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gigamon-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"GitHub\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/GitHub\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gitlab\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gitlab\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gitlabinc1586447921813\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gitlabinc1586447921813\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gladinet-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gladinet-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"glantoninc1591876792991\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/glantoninc1591876792991\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"globalidsinc1596800540598\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/globalidsinc1596800540598\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"globalscape\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/globalscape\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"globalsolutions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/globalsolutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gluwareinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gluwareinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"graphistry\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/graphistry\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"graphitegtc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/graphitegtc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"great-software-laboratory-private-limited\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/great-software-laboratory-private-limited\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"greensql\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/greensql\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"greycorbelsolutions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/greycorbelsolutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gridgain\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gridgain\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"guardicore\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/guardicore\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gxchainfoundationltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gxchainfoundationltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"h2o-ai\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/h2o-ai\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hackerbay\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hackerbay\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hackershub\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hackershub\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"haivision\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/haivision\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"haivisionsystemsinc1580780591922\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/haivisionsystemsinc1580780591922\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"haltdoscompvtltd1587136166019\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/haltdoscompvtltd1587136166019\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hammerspace\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hammerspace\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hanu\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hanu\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"haproxy-technologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/haproxy-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"harmanconnectedservicesinc1594928575643\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/harmanconnectedservicesinc1594928575643\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"harpaitalia\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/harpaitalia\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hashhub\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hashhub\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hcl-technologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hcl-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"heimdall-data\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/heimdall-data\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"help-systems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/help-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"helpyio\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/helpyio\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"heretechnologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/heretechnologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hewlett-packard\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hewlett-packard\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hillstone-networks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hillstone-networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hitachi-solutions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hitachi-solutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hitachivantara\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hitachivantara\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"holo-industrie40softwaregmbh1600957636008\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/holo-industrie40softwaregmbh1600957636008\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hortonworks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hortonworks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hpe\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hpe\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"HPE.Security.ApplicationDefender\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/HPE.Security.ApplicationDefender\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"huawei\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/huawei\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hubstor-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hubstor-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hush-hush\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hush-hush\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hvr\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hvr\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hyperglance\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hyperglance\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hypergrid\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hypergrid\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hystaxinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hystaxinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hytrust\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hytrust\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"i-exceed-technology\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/i-exceed-technology\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iaansys\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iaansys\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ibm\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ibm\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ibm-alliance-global-1560886\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ibm-alliance-global-1560886\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ibm-alliance-usa-ny-armonk-hq-ibmstorage-6201192\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ibm-alliance-usa-ny-armonk-hq-ibmstorage-6201192\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ibm-usa-ny-armonk-hq-6275750-ibmcloud-aiops\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ibm-usa-ny-armonk-hq-6275750-ibmcloud-aiops\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iboss\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iboss\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iconics\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iconics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iconsulting-spa\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iconsulting-spa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"icubeconsultancyservicesinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/icubeconsultancyservicesinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iguazio-5069960\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iguazio-5069960\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ikan\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ikan\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iliimbiliimveyazlmsistemlerisanvetica1617000555584\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iliimbiliimveyazlmsistemlerisanvetica1617000555584\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"illuminainc1586452220102\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/illuminainc1586452220102\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"image-technologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/image-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"imaginecommunications\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/imaginecommunications\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"imperva\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/imperva\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"impetustechnologiesinc1591959591877\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/impetustechnologiesinc1591959591877\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"imprivatainc1580479939967\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/imprivatainc1580479939967\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"incorta\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/incorta\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"incredibuild\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/incredibuild\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"indexima1594300233028\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/indexima1594300233028\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"industry-weapon\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/industry-weapon\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"industryweapon1587162781833\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/industryweapon1587162781833\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"inenprocesosyplataformasdetisderldecv1615482385424\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/inenprocesosyplataformasdetisderldecv1615482385424\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"inergybv1637141413454\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/inergybv1637141413454\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"infinitesoftwarecorporation1579223971125\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/infinitesoftwarecorporation1579223971125\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"infiotinc1614034091460\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/infiotinc1614034091460\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"influxdata\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/influxdata\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"infoblox\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/infoblox\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"infogix\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/infogix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"infolibrarian\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/infolibrarian\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"informatica\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/informatica\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"informationbuilders\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/informationbuilders\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"informationtechnologies_ltd_1179601\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/informationtechnologies_ltd_1179601\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"infotecsinternetsecuritysoftwaregmbh1636129257584\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/infotecsinternetsecuritysoftwaregmbh1636129257584\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"infront-consulting-group-ltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/infront-consulting-group-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"infscapeughaftungsbeschrnkt\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/infscapeughaftungsbeschrnkt\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ingenieurstudiohollaus1579587745438\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ingenieurstudiohollaus1579587745438\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ingrammicro\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ingrammicro\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"innomindssoftware\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/innomindssoftware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"innosepgmbh1618331344164\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/innosepgmbh1618331344164\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"innovatorartificialtechsrl1619180685551\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/innovatorartificialtechsrl1619180685551\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"innovtech\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/innovtech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"instight-technology\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/instight-technology\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"integration-objects\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/integration-objects\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"intel-bigdl\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/intel-bigdl\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"intel-fpga\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/intel-fpga\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"intellicus-technologies-pvt-ltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/intellicus-technologies-pvt-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"intelligent-plant-ltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/intelligent-plant-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"intel_corporation\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/intel_corporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"internationaltrustmachinescorporation1582190033865\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/internationaltrustmachinescorporation1582190033865\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"internet20inc1635882446190\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/internet20inc1635882446190\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"intersystems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/intersystems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"intigua\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/intigua\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"intigua1638692632641\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/intigua1638692632641\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"introspecioltd1629872641188\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/introspecioltd1629872641188\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iofabric\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iofabric\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ipinfusion1590066770520\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ipinfusion1590066770520\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ipswitch\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ipswitch\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iqsol\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iqsol\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iquate\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iquate\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iquest\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iquest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"irion\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/irion\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ishlangu-load-balancer-adc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ishlangu-load-balancer-adc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"issp-corporation\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/issp-corporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"isvtestukbigcat\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/isvtestukbigcat\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"isvtestuklegacy\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/isvtestuklegacy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"it4bizdoo\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/it4bizdoo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"itelios\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/itelios\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"itrsgroupltd1620310702149\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/itrsgroupltd1620310702149\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ivanti-inc-pcs\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ivanti-inc-pcs\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ivanti-nzta\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ivanti-nzta\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ivix1595238749040\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ivix1595238749040\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iwnamespace\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iwnamespace\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"izenda\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/izenda\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"jamcracker\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/jamcracker\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"javlinltd1579185328273\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/javlinltd1579185328273\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"jedox\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/jedox\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"jelastic\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/jelastic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"jetnexus\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/jetnexus\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"jetware-srl\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/jetware-srl\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"jfrog\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/jfrog\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"jm-technology-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/jm-technology-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"jogetinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/jogetinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"johnsnowlabsinc1646051154808\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/johnsnowlabsinc1646051154808\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"juniper-networks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/juniper-networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"justanalytics\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/justanalytics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kaazing\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kaazing\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kadenallc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kadenallc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kali-linux\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kali-linux\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kalkitech\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kalkitech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kaminarioinc1588672951794\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kaminarioinc1588672951794\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Kaspersky.Lab\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Kaspersky.Lab\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"KasperskyLab.SecurityAgent\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/KasperskyLab.SecurityAgent\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kaspersky_lab\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kaspersky_lab\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kazendi\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kazendi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kelverion\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kelverion\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kemptech\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kemptech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kepion\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kepion\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"KevlarExtensions.M365Security.SecureOS\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/KevlarExtensions.M365Security.SecureOS\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"KevlarExtensions.M365SecurityHostIDS\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/KevlarExtensions.M365SecurityHostIDS\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"KevlarExtensions.M365SecurityInventory\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/KevlarExtensions.M365SecurityInventory\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"KevlarExtensions.M365SecurityInventory.NameChangeTest\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/KevlarExtensions.M365SecurityInventory.NameChangeTest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"KevlarExtensions.M365SecurityODL\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/KevlarExtensions.M365SecurityODL\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"KevlarExtensions.M365SecurityTLSExtension\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/KevlarExtensions.M365SecurityTLSExtension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kinetica\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kinetica\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kinvolk\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kinvolk\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"knime\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/knime\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kobalt\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kobalt\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kognillc1600118221163\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kognillc1600118221163\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kognitivsparkinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kognitivsparkinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"konginc1581527938760\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/konginc1581527938760\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"konsys-ltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/konsys-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"koverseinc1588716263110\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/koverseinc1588716263110\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kryonsystems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kryonsystems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"krypc-technologies-pvt-ltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/krypc-technologies-pvt-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kyligence\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kyligence\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kyvos-insights-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kyvos-insights-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lab3solutions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lab3solutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lancom-systems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lancom-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lansa\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lansa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lastline\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lastline\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"launchnodesltd1644561451121\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/launchnodesltd1644561451121\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"leap-orbit\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/leap-orbit\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lenovosoftware1604394104439\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lenovosoftware1604394104439\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"leostream-corporation\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/leostream-corporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lepide-software\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lepide-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"levacloudllc1602151818089\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/levacloudllc1602151818089\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"libelleag\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/libelleag\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"liberatii\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/liberatii\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"libraesva\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/libraesva\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"liebsoft\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/liebsoft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lightning-analyticsinc1582000647396\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lightning-analyticsinc1582000647396\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"linuxbasedsystemsdesignltd1580878904727\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/linuxbasedsystemsdesignltd1580878904727\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"liquid-files\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/liquid-files\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"liquidware\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/liquidware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"literatu\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/literatu\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"litespeedtechnologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/litespeedtechnologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"litespeed_technologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/litespeed_technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"litionenergiegmbh1580128829115\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/litionenergiegmbh1580128829115\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"litmusautomation1582760223280\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/litmusautomation1582760223280\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"llcitpro\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/llcitpro\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lnw-softgmbh\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lnw-softgmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"loadbalancer\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/loadbalancer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"logicflowag1638535407949\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/logicflowag1638535407949\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"logsign\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/logsign\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"logstarecorp1635838645101\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/logstarecorp1635838645101\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"logtrust\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/logtrust\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"logzio\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/logzio\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"looker\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/looker\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lotus_beta_analytics\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lotus_beta_analytics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lti-lt-infotech\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lti-lt-infotech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"luminate-security\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/luminate-security\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"M365Security.KevlarExtensions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/M365Security.KevlarExtensions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"M365SecurityInventory\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/M365SecurityInventory\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"machinesense\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/machinesense\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"madhavajay1632269232059\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/madhavajay1632269232059\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"maidenhead-bridge\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/maidenhead-bridge\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"manageengine\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/manageengine\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mapd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mapd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"maplelabsinc1623932715330\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/maplelabsinc1623932715330\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mapr-technologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mapr-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"marand\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/marand\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"marketplace-rdfe-caps\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/marketplace-rdfe-caps\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"marklogic\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/marklogic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"massiveanalytic-\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/massiveanalytic-\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mathworks-deployment\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mathworks-deployment\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mathworks-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mathworks-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"matillion\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/matillion\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mavinglobal\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mavinglobal\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"McAfee.EndpointSecurity\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/McAfee.EndpointSecurity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"McAfee.EndpointSecurity.test3\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/McAfee.EndpointSecurity.test3\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"meanio\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/meanio\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"media3-adobe\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/media3-adobe\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"media3-technologies-llc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/media3-technologies-llc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mediatekinc1586141563888\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mediatekinc1586141563888\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mendix\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mendix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"merlynnintelligencetechnologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/merlynnintelligencetechnologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"meshifyappinc1622759451429\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/meshifyappinc1622759451429\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"messagesolution\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/messagesolution\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"metaswitch\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/metaswitch\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mettainnovations-4900054\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mettainnovations-4900054\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mfe_azure\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mfe_azure\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mfiles\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mfiles\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mico\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mico\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"micro-focus\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/micro-focus\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microlinkpcukltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microlinkpcukltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microolap\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microolap\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsecpteltd1634010681688\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsecpteltd1634010681688\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-ads\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-ads\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-agci-gaming\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-agci-gaming\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-aks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-aks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-avere\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-avere\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-azure-batch\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-azure-batch\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-azure-compute\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-azure-compute\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-azure-hdinsight\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-azure-hdinsight\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-crypto\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-crypto\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-dsvm\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-dsvm\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-hyperv\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-hyperv\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-minecraft\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-minecraft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AdminCenter\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AdminCenter\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AKS\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AKS\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.ActiveDirectory\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.ActiveDirectory\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.ActiveDirectory.LinuxSSH\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.ActiveDirectory.LinuxSSH\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Applications\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Applications\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Automation.HybridWorker\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Automation.HybridWorker\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Automation.HybridWorker.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Automation.HybridWorker.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.AzureDefenderForServers\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.AzureDefenderForServers\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.AzureDefenderForSQL\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.AzureDefenderForSQL\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.AzureHybridBenefit\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.AzureHybridBenefit\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Backup.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Backup.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Backup.Test.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Backup.Test.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Batch\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Batch\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.ChangeTracking\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.ChangeTracking\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.ChangeTracking.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.ChangeTracking.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.ChangeTrackingAndInventory\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.ChangeTrackingAndInventory\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Chaos\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Chaos\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Compute.Security\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Compute.Security\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.ContainerUpstream\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.ContainerUpstream\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.DefenderForServers.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.DefenderForServers.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.DefenderForServers.Test2\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.DefenderForServers.Test2\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Diagnostics\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Diagnostics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Diagnostics.Build.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Diagnostics.Build.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Diagnostics.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Diagnostics.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test012be407-61ea-4e45-a2c3-71a45999ca21-20191228083800\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test01971384-3044-413b-8b1c-33b5d461bf23-20200107051823\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test0225ec7d-b36c-4ac8-82f0-aa4fafaf10a9-20200111051346\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test025e16a1-328d-45a2-b7e3-71f7e4cde046-20191229064028\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test02d1f941-5607-4757-8df7-fd8c5631ab45-20200103083810\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test039abd7f-360c-42a1-ad5d-77527c519286-20191002233412\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test04a0f157-c6fb-4595-b6ca-6c82a2338063-20200108101451\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test0737f33e-63e0-4ba9-b04b-b93a1de4e997-20200106083639\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test0a44d7be-63fa-418d-a7b6-89a44dd21894-20200107052935\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test0d01b487-7f79-4d87-b330-5c025068db45-20191004190331\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test0d643748-e6fe-41ad-b4d3-89a289a0cee0-20191003055620\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test0df83c51-5bb9-43f8-8ae9-bc896ea64f78-20200110220221\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test0f02c246-7e65-4010-9367-ca4530c3897e-20191004190223\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test157494ec-e788-43b0-8d26-a17e39ee07cc-20191002011945\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test1661d154-b623-4507-8a56-3a89812c456c-20200111083940\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test17bbd860-f21d-40ab-9026-16e05f2907f0-20200106083451\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test194e2333-13cd-43e3-b0a4-c8cdcf1a3600-20200110211106\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test1bc26b19-b8d8-41f9-a26d-818f277bdf93-20200101113139\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test1c840053-9213-4f2a-8f2e-9bf2297908bd-20200108101424\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test1d7bba72-69f1-43cd-a38c-41ce0b5f4bae-20200109050041\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test1f7a8078-50e7-4a3a-91eb-d178fd4c403b-20191002233353\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test1fef1fdc-57ba-46a8-a879-475ba7d45a7a-20200106083509\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test21332f15-f78d-4d31-afac-79b9dc989432-20191231175840\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test22f10717-6939-4003-a9ce-38effd8b77d6-20191007191355\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test2334e6e3-bb72-4241-a36f-c2429d69bc0b-20200106050834\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test24fa9eb5-1c59-4425-b61c-30fd638c2a45-20191003203802\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test2521a545-ed61-4a15-bed1-aba7ce1d81ee-20200106050804\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test25c6fe61-1282-43c2-867b-b5039219989c-20200105081851\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test27515c8c-6773-4f92-afb0-35691cc6e3b6-20200103083821\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test28012680-48e7-4903-877f-2f29464e63d5-20191229033424\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test29a7a529-d293-4728-9d7f-257ed996e64f-20200108081759\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test2a5f2d2c-b8e3-46c2-850d-a1641c024fe7-20200107084228\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test2ce856af-ab17-48f2-ba3e-bcd9af091061-20200110013246\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test2e012e83-6361-4365-963f-6ced8a08e91c-20200110211254\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test2ecf67b2-fb63-4461-b6a6-7026c4fb1168-20191002214026\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test2ede6564-c7cc-44cb-a1a8-902505c9829d-20191003020742\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test2f4ebc17-e27e-48d9-9cc3-ff933c21884e-20200106092410\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test349ee02c-af9b-4663-a963-823b40eefed8-20200108083612\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test34cf6b13-b78e-478b-b596-8b661629371d-20191007195455\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test36cc5b60-2b23-4a04-bf95-f7865e1141cf-20200110085718\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3712fca9-5cdd-4609-be69-b02aedc5c55c-20200107084115\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3772d042-92e2-4bcb-99b7-8a6a119cc088-20191231182808\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test37a6dd64-d44d-465e-85bc-3bc38be90350-20200104083535\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test381074d5-7156-472b-801a-b35f8fef4cc6-20200105050612\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3877a44d-4c48-40db-80eb-227272d5acd6-20200110103540\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test38ecd28e-7018-4672-840c-3044a5e7a6b5-20200111084208\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test395a0b49-442a-450c-8a1f-65b0aa3bcf47-20200105083839\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3971b300-edff-44a8-b61b-7f9b7460a8d6-20191003002234\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3adeec20-7458-4b3d-af26-0b6bc2aae3eb-20200103083751\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3b20dd96-f3e4-4798-998d-8c433c2449a7-20200108083635\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3ce2fd4a-8b5a-4c7e-b08d-3e48fc0f45e7-20200104083825\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3d499ca7-cc8d-41cc-a6dc-ffb1a4ac4942-20200107053004\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3db7240e-5e42-4d6d-b024-cc9fce3c828b-20200105083520\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3f6b7341-635f-48d5-a36d-be5dfe3002c4-20200105050937\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3fc26934-ede2-4482-ad5e-f66f6135d4a6-20191228055558\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test406d077c-6017-4062-bc96-f809147a2331-20200106050748\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test4302336c-e039-4e70-bcb6-9275f6089e4a-20200108144821\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test453a087e-8435-46db-970a-4ee633cc4c4a-20200102083458\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test46b73afa-2259-4aff-81e1-a58bf24b59aa-20191229033459\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test4a3399ee-82ea-46aa-9e3a-5434b588e3b6-20191228013518\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test4eb7a185-527b-4b9f-93a8-7f1cec9d062e-20191231151207\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test520a0915-f9f0-4da4-9fa1-1b74fc1470aa-20200102083505\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test5397960f-023b-4979-9a8b-800d049045a4-20191007195417\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test55a36387-8a3f-4159-9884-29b97539a253-20200109080443\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test5645f186-4ee5-4209-af37-423660e3318c-20191231175947\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test58b4461d-4d2d-4395-b6d2-ab83d4d8c62f-20200111001002\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test5b0bf447-d98d-429d-8334-c032d197c743-20191003203846\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test5bc90367-1ea2-400b-a40c-321081bae3f3-20200108145035\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test5bd0562f-e939-456f-a6ee-c848d1aba616-20200101151641\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test5e4efe90-916c-4c96-802c-1508a5b6da78-20191231151150\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test5f8f0c10-cc3c-45ec-a068-fb1c7edfa0d9-20200101145958\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test60a000b7-286c-4b2b-9137-bbc088736419-20200108144920\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test6192a01b-ba47-4d08-904a-71647a49a112-20191008041625\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test62835538-89c6-4f66-9034-f7a4b176c615-20191007234245\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test651e4ad2-ee4a-462e-a506-b56b1969f5d0-20200110230749\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test691d94e5-c40c-4568-94b0-09b08aea42b1-20200106050808\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test6aa3643c-011a-4180-877f-cad955a8e664-20191007234642\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test6cfb469b-8478-468f-9bb5-691affd32abb-20200107083803\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test6d36b6b2-7956-4e62-91c1-c33792fd4bb1-20200110123203\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test6e28168e-a9c8-4c0a-8b40-60c2a1502d43-20200108052802\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test6eb763ac-7fbe-4e44-bee7-aad035ee2a7d-20200110084429\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test6efec253-f625-46f0-9d74-324f69e963d8-20200107070514\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test70fa7e4c-3122-4ff7-aec6-fe75ab660a01-20200108105900\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test710a5fbf-06c7-46ac-b96d-a29d2586422f-20200108083639\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test71d72489-67c6-45e2-b1e6-a19546efc823-20200105112903\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test721fccf1-2b3e-44b6-908f-51b910e88b09-20200111104931\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test742d0189-9e41-4f1b-8ad3-31c05d34903b-20200111103247\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7836a97c-f56e-48d0-8b5d-61e79aeb3226-20200111071656\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test78666b2e-25c8-4a48-931a-3131a0317d73-20191002194352\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test79f13508-fcbd-47b9-988f-1c21ef5e7f2e-20191002015429\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test79fb90ce-4691-4212-99a7-6e4069bd5984-20191007234256\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7a8cf687-6a21-4181-ba98-902fee717bd3-20200104103216\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7aabf813-6644-483a-b9e0-ba6f8973ba1f-20191002232822\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7c96c10a-0c8f-4ab0-83fd-1ad66a362e33-20191229033458\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7e79b6ff-2559-44fe-b3ba-afaa68d63636-20200108112116\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7ea372f7-ea7e-4b9e-bbad-4f35c1567aa2-20200108052736\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7fac3d04-98a5-4fc4-904e-9ea3b86eadc2-20200106050751\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7fe20dd6-9ed9-4126-bb1d-031c01ac4550-20200101114504\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7ff974d9-c841-4249-b05b-bbf663cb4605-20200106084104\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test815bd4d5-fc24-4a47-be20-063c4809902c-20200109050508\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test817654d0-2109-4d95-9284-8c8a9d960d08-20200108053758\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test821ca3b6-dd05-4e80-b3d8-74ba03b2609b-20191231151151\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test8285dc3e-637d-4d46-9695-adc39cbe7d2f-20200108144457\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test828aae03-9239-4938-a303-c23c42311878-20200102083419\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test84afd814-5098-49ab-af99-e50350b5898b-20200110211134\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test85b08563-b15f-4202-a0bc-f2bc2df2c71a-20200107053335\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test88aac268-c087-4481-b78e-99b920784a33-20200101084853\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test88dbd442-a8cc-4874-81a0-d3192c61df62-20191001224544\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test894dfb75-a00f-4f0c-894c-cae1c9846ad3-20200105051803\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test8d09bf4d-ee63-4ab1-a986-a4b802418403-20200111051447\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test8d4d652b-4f05-4e99-93dd-78b9a36b5c78-20191003203755\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test8de64739-43d8-4f84-af65-fdb3d0885288-20200108053543\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test8e324c65-a51d-4eeb-9ec8-d5f8662dc041-20191228165107\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test8e564580-8e53-4300-85f1-bf7f31dd37ff-20200107013348\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test8f458ca7-8898-4d58-b93d-bfb0c3da028c-20200109050310\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test901cd6ca-5565-4552-a3de-d204d01935c0-20200108083706\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test907b39e5-4008-4b55-93a0-18e9697b9cf3-20200108053817\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test90c2be7c-d7ec-4abf-9fad-fef90fc3ef4d-20191004022234\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test922db678-6ee8-43d5-86ff-6a86e132d332-20200107085231\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test93b88aec-5277-4b1b-910c-7008e972ce91-20200107013304\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test95a9104b-6cba-42d8-82ff-cc37e5ac44db-20200108081723\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test96da1605-19e0-46eb-9ce0-53e840f5e2cb-20200101111729\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test996066b2-7d29-400f-929b-e343a21046f7-20191231151212\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test99663fff-ed21-4a91-9687-1a6da2abb033-20200106084508\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test9eb5efa5-c3c1-4c13-80a6-11f5eba67372-20200108144852\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testa3791896-b1fc-491e-ba0d-aefcd8d9e52a-20200105083503\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testa37ff709-a078-45a0-8187-41733df8e101-20200109050003\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testa4c5fe4e-936e-4be1-a612-a331aff54a8c-20200111105055\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testa59bce1d-e32c-423d-a86e-945d4aeb98b4-20200107051821\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testa604c059-8279-4f4d-a354-eec27222a06c-20200111051514\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testa71fefb1-0d9c-4fb3-8d3d-5dcd12d72b77-20200103103221\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testa748013d-c5a6-44f9-88eb-43167207c742-20200111051402\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testaab67022-4f2b-420d-a06a-2c4045110cdf-20191229033144\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testacab9541-280f-4491-9f49-ac57653f0a07-20200105083839\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testad298437-0349-4cc7-88a9-d8aabcba9df1-20191002233431\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testadd68286-f9e0-4ab1-a526-d8f3cf0f054e-20200105084128\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testade4c52b-18f5-4b67-8e93-945358ce4f7d-20191007234259\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testae421c1d-0211-4ef2-b372-564ce8ad484a-20200110104035\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testafbbd8bf-aec5-48bf-8fea-73fa15ccc315-20191001224727\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testb15148bf-78d2-42d4-ad08-b3ad8fb4b122-20200101084759\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testb4237708-3688-40ea-85a2-275c05f4d100-20191228083519\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testb799a18f-be45-4c5c-8438-163ac2e1f1e7-20191004190529\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testb7cee88a-e5ac-4af4-99c8-7247020b00c3-20200105051201\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testb7df0d9a-27c0-4ca5-b692-08dd90387b98-20200111083443\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testbbf6bf32-4bd0-4381-b8f7-2658f585df4d-20191003203846\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testbeea1376-166a-4b1a-8923-c907cc9737d9-20200107013336\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testbf9154e9-6166-48c2-86fe-1f331be606d7-20200107051823\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc0d7c3c5-23b8-489c-a5e0-ae87c681b696-20200101083539\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc193f31a-5186-4e93-84f6-0e4ab87b73c1-20200107052937\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc1c7e8dc-fa8c-47d9-8305-de6d1451b939-20200101085248\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc1d0c917-e2ae-430c-a2ca-383fb0fda046-20191007235839\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc23a3fbb-6e95-4c0d-94fc-c8ab14dddf1c-20191231151117\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc2697630-6247-411a-94b3-c2974ad8cbee-20191007195417\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc466b80f-670f-4383-89b8-44e0d509fa20-20191002000516\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc5c8d9bd-75fa-4db3-9f34-5d7b7098584c-20191003203851\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc8b6d14b-a5db-48e0-bfad-a2818d432bea-20200104083443\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc933efa8-c553-4b93-884f-b7221d9ca789-20191228083750\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testcbe8ab80-46ef-49b1-a7bb-4e3d6e50e49f-20200104050811\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testccc0b5e6-9b0d-451a-8ac4-6f4af293b913-20200106092645\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testcec64786-04b1-487c-80ec-050da646fb1c-20191005123412\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testd104a52f-eba2-401d-8e7f-a841c90f7712-20191228083553\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testd724cea4-0d3c-4539-b2ff-be08fb23a67e-20200107083714\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testd8e60bac-27ff-4fba-90b8-732c9c5ff91c-20191228083751\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testd99db4a5-7683-4584-89ad-fefd711de284-20191004190210\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testd9b4309a-67bc-4cd8-ac47-094cb20ca6aa-20200101090202\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testda3320e0-28f2-4146-a002-e06296362711-20191004190115\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testda714121-3240-4253-90c3-48c43f115c90-20200102083419\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testdb357558-60b4-4ee3-9ec3-ba22c5d827fb-20191004020617\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testdc7230e9-df6d-4edd-a57c-ef7e0432c463-20191002011345\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testdccb59de-436f-4935-bed6-2e677dcaf36a-20200109111802\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testde985b23-9333-4f6e-a5e8-82025a38b2af-20200102083510\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Teste271da3e-cbcb-4ee7-8770-f297f414451f-20191003015540\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Teste4070edd-aec0-455d-8a79-aecdb7170b6d-20191007234642\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Teste42f351a-4da0-4f0d-93e9-ef1d98e06659-20200108083633\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Teste66ca23c-f4bf-4eb3-8418-139364d19e7d-20200107062643\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Teste78b1ab2-1380-48ab-9923-0276cdb7198b-20191001224742\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Teste8607e14-b4f8-472a-bd5b-893b8d9612e6-20200112045941\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Teste980b80e-3add-42c0-bc98-a84020b2d128-20200108101640\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Tested79dba9-2d38-4ea9-a01c-56e94b30ca7a-20191007195447\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testee9dcf5f-f7c4-4192-a8f4-28e9bc7d0f7c-20191001225005\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testefbb340a-b68b-4200-872b-d05e7d29f92d-20191007195432\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testf1fc0559-6740-48dd-9501-2b933c731d52-20200103083458\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testf41dfc97-bb51-4fba-86ca-a6f2695c415a-20200107050834\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testf5784447-83ed-4c00-8764-ea0f932aafa2-20200106085748\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testf6128ef6-c13c-420e-8088-0710888ce88b-20200109050003\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testf863ab2c-ada9-4646-84c7-1f83a82375d7-20191229033226\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testfac552a7-418f-4baa-8f51-d199ceff5c68-20200103050817\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testfb7be054-5c15-494f-822c-b64f9a36e2f3-20200105051753\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testfc5c7585-6c9a-4aa4-a7c4-1223a94e00c7-20200104083552\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.FileServer.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.FileServer.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.FleetDiagnostics\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.FleetDiagnostics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.FleetDiagnostics.Dev\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.FleetDiagnostics.Dev\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Geneva\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Geneva\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.KeyVault\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.KeyVault\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.KeyVault.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.KeyVault.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.LabServices\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.LabServices\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.LabServices.test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.LabServices.test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.Agent\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.Agent\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.Dev\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.Dev\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.Dev.INT\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.Dev.INT\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.Dev.SCALE\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.Dev.SCALE\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.Dev.TEST\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.Dev.TEST\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.GuestHealth\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.GuestHealth\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.DEV\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.DEV\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.INT\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.INT\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.SCALE\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.SCALE\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.TEST\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.TEST\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.INT.Dev\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.INT.Dev\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.SCALE.Dev\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.SCALE.Dev\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.TEST.Dev\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.TEST.Dev\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.WorkloadInsights.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.WorkloadInsights.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.WorkloadInsightsTest.newnamespace\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.WorkloadInsightsTest.newnamespace\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.Workloads\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.Workloads\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.Workloads.Dev\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.Workloads.Dev\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitoring.DependencyAgent\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitoring.DependencyAgent\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitoring.DependencyAgent.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitoring.DependencyAgent.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Networking.DNS\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Networking.DNS\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Networking.SDN\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Networking.SDN\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.NetworkWatcher\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.NetworkWatcher\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.NetworkWatcher.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.NetworkWatcher.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.OpenSSH\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.OpenSSH\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Performance.Diagnostics\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Performance.Diagnostics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Performance.Diagnostics.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Performance.Diagnostics.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.RecoveryServices\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.RecoveryServices.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices.SiteRecovery\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.RecoveryServices.SiteRecovery\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices.SiteRecovery2\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.RecoveryServices.SiteRecovery2\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices.WorkloadBackup\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.RecoveryServices.WorkloadBackup\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices.WorkloadBackup.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.RecoveryServices.WorkloadBackup.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.AntimalwareSignature\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.AntimalwareSignature\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.AntimalwareSignature.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.AntimalwareSignature.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.Dsms\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.Dsms\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.Dsms.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.Dsms.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.LinuxAttestation\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.LinuxAttestation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.LinuxTestAttestation\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.LinuxTestAttestation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.Monitoring\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.Monitoring\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.Monitoring.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.Monitoring.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.Monitoring.Testing\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.Monitoring.Testing\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.TestWindowsAttestation\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.TestWindowsAttestation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.WindowsAttestation\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.WindowsAttestation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.WinTestAttestation\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.WinTestAttestation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Sentinel.DnsExtension.Dev\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Sentinel.DnsExtension.Dev\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.ServiceFabric.MC\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.ServiceFabric.MC\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.ServiceFabric.MC.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.ServiceFabric.MC.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.SiteRecovery.Stage\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.SiteRecovery.Stage\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.SiteRecovery.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.SiteRecovery.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.SiteRecovery2.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.SiteRecovery2.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Test.Identity\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Test.Identity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WindowsFabric.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WindowsFabric.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.ReleasePipeTest\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.ReleasePipeTest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.ReleasePipeTest.INT\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.ReleasePipeTest.INT\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.ReleasePipeTest.TEST\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.ReleasePipeTest.TEST\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test1\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test2\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test2\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test3\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test3\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test4\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test4\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test5\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test5\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test5.INT\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test5.INT\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test5.TEST\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test5.TEST\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.VincentTest\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.VincentTest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.VincentTest2\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.VincentTest2\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.VincentTest3\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.VincentTest3\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.VincentTest4\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.VincentTest4\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.TestTest\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.TestTest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.TestTest.INT\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.TestTest.INT\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.TestTest.TEST\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.TestTest.TEST\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Windows.ReleasePipeTest.INT\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Windows.ReleasePipeTest.INT\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Windows.ReleasePipeTest.TEST\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Windows.ReleasePipeTest.TEST\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoring\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoring.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoringTest\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoringTest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureData\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureData\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureData.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureData.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.Canary\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights.Canary\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.Corp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights.Corp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.Linux.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights.Linux.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.LinuxTest\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights.LinuxTest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.Meya0206\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights.Meya0206\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.MeyaCorp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights.MeyaCorp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.Testing\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights.Testing\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureSecurity.JITAccess\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureSecurity.JITAccess\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.CloudBackup.Workload.Extension\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.CloudBackup.Workload.Extension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.CloudBackup.Workload.Extension.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.CloudBackup.Workload.Extension.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Compute\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Compute.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Compute.TestSar\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute.TestSar\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.CPlat.Core\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.CPlat.Core\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.CPlat.Core.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.CPlat.Core.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Dcsswe.Extensions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Dcsswe.Extensions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.EnterpriseCloud.Monitoring\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.EnterpriseCloud.Monitoring.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.EnterpriseCloud.Monitoring.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Golive.Extensions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Golive.Extensions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.GuestConfig.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.GuestConfig.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.GuestConfiguration\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.GuestConfiguration\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.GuestConfiguration.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.GuestConfiguration.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.GuestConfiguration.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.GuestConfiguration.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.HpcCompute\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.HpcCompute\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.HpcCompute.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.HpcCompute.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.HpcPack\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.HpcPack\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Interceptor\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Interceptor\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.M365\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.M365\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.M365SecurityConfiguration.Kevlar.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.M365SecurityConfiguration.Kevlar.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.ManagedIdentity\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.ManagedIdentity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.ManagedServices\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.ManagedServices\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.ManagedServices.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.ManagedServices.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.MonitoringAgent.Extension\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.MonitoringAgent.Extension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Network\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Network\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.OSTCExtensions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.OSTCExtensions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.OSTCExtensions.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.OSTCExtensions.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.OSTCExtensions.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.OSTCExtensions.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.OSTCExtensions.Testing\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.OSTCExtensions.Testing\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Powershell\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Powershell\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Powershell.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Powershell.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Powershell.Test01\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Powershell.Test01\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.SecurityManagement.Kevlar\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.SecurityManagement.Kevlar\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Sentinel.AzureMonitorAgentExtensions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Sentinel.AzureMonitorAgentExtensions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.SoftwareUpdateManagement\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.SoftwareUpdateManagement\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.SoftwareUpdateManagement.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.SoftwareUpdateManagement.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.SqlServer.Managability.IaaS.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.SqlServer.Managability.IaaS.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.SqlServer.Management\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.SqlServer.Management\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.SqlServer.Management.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.SqlServer.Management.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.SystemCenter\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.SystemCenter\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.SystemCenter.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.SystemCenter.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Test.Azure.Workloads\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Test.Azure.Workloads\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.TestSqlServer.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.TestSqlServer.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.ETWTraceListenerService\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.Azure.ETWTraceListenerService\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.RemoteDebug\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.Azure.RemoteDebug\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.RemoteDebug.Json\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.Azure.RemoteDebug.Json\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.ServiceProfiler\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.ServiceProfiler\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.Services\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.Services\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.WindowsAzure.DevTest\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.WindowsAzure.DevTest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.WindowsAzure.DevTest.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.WindowsAzure.DevTest.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.WindowsAzure.RemoteDebug\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.WindowsAzure.RemoteDebug\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.WindowsAzure.Test.RemoteDebug\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.WindowsAzure.Test.RemoteDebug\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Windows.Azure.Extensions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Windows.Azure.Extensions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Windows.AzureRemoteApp.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Windows.AzureRemoteApp.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Windows.RemoteDesktop\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Windows.RemoteDesktop\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.WindowsAdminCenter\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.WindowsAdminCenter\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.WindowsAdminCenter.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.WindowsAdminCenter.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.WindowsAzure.Compute\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.WindowsAzure.Compute\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.WindowsAzure.Compute.test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.WindowsAzure.Compute.test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.WVD\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.WVD\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoftagciuk\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoftagciuk\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoftazurecituswarp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoftazurecituswarp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftAzureSiteRecovery\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftAzureSiteRecovery\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftBizTalkServer\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftBizTalkServer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftCBLMariner\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftCBLMariner\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoftcmotest\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoftcmotest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoftcorporation1602274591143\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoftcorporation1602274591143\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoftcorporation1620407702632\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoftcorporation1620407702632\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftDynamicsAX\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftDynamicsAX\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftDynamicsGP\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftDynamicsGP\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftDynamicsNAV\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftDynamicsNAV\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoftfarmbeats\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoftfarmbeats\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftHybridCloudStorage\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftHybridCloudStorage\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftOSTC\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftOSTC\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftPowerBI\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftPowerBI\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftRServer\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftRServer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftSharePoint\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftSharePoint\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftSQLServer\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftSQLServer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftTestLinuxPPS\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftTestLinuxPPS\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftVisualStudio\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftVisualStudio\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftWindowsDesktop\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsDesktop\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftWindowsServer\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsServer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftWindowsServerHPCPack\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsServerHPCPack\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft_iot_edge\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft_iot_edge\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft_javaeeonazure_test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft_javaeeonazure_test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microstrategy\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microstrategy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"midasolutions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/midasolutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"middleware\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/middleware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"midfin\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/midfin\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"midvision\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/midvision\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mihupcommunicationspvtltd1599046998010\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mihupcommunicationspvtltd1599046998010\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mindcti\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mindcti\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"minio\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/minio\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"miraclelinux\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/miraclelinux\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"miracl_linux\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/miracl_linux\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"miri-infotech-pvt-ltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/miri-infotech-pvt-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mistio1601460379393\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mistio1601460379393\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mobilab\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mobilab\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"modern-systems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/modern-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"modexblockchaindatabase\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/modexblockchaindatabase\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"monetdbsolutions1611751313758\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/monetdbsolutions1611751313758\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"monitorapp1579029852605\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/monitorapp1579029852605\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"monitorcomputersystemsltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/monitorcomputersystemsltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"moogsoft\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/moogsoft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"morpheus-data\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/morpheus-data\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"moviemasher\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/moviemasher\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mriisoftllc1579457820427\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mriisoftllc1579457820427\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"msopentech\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/msopentech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mtnfog\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mtnfog\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"multima1643619641681\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/multima1643619641681\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"multisoft-ab\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/multisoft-ab\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mvp-systems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mvp-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mwg_azure\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mwg_azure\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mxhero\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mxhero\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"my-com\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/my-com\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"myarchinc1614657280935\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/myarchinc1614657280935\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"narrativescience\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/narrativescience\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nasuni\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nasuni\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nasunicorporation\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nasunicorporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"navicloudrsoftwarepteltd1601967280369\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/navicloudrsoftwarepteltd1601967280369\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ncache\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ncache\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ncbi\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ncbi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ncomputingglobalinc1604353053068\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ncomputingglobalinc1604353053068\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ndl\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ndl\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ndstriyelotomasyonsistemlerisanvetica1623147454601\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ndstriyelotomasyonsistemlerisanvetica1623147454601\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nebbiolo-technologies-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nebbiolo-technologies-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nec-technologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nec-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nefelinetworks1591201080882\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nefelinetworks1591201080882\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"neo4j\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/neo4j\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"neos\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/neos\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"neowaybusinesssolutions-4956350\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/neowaybusinesssolutions-4956350\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netapp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netapp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netatwork\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netatwork\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netfoundryinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netfoundryinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netgate\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netgate\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netikus-net-ltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netikus-net-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netiq\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netiq\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netka\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netka\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netmail\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netmail\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netscout\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netscout\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netspi\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netspi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netsweeper\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netsweeper\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"networksexchangetechnologyltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/networksexchangetechnologyltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netwrix\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netwrix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netx\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netx\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"neusoft-neteye\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/neusoft-neteye\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"newegginc1646343565758\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/newegginc1646343565758\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"newnetcommunicationtechnologies1589991852134\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/newnetcommunicationtechnologies1589991852134\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"NewRelic.Infrastructure.Extensions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/NewRelic.Infrastructure.Extensions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"newtglobalconsultingllc1581492268566\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/newtglobalconsultingllc1581492268566\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nextronic-5290868\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nextronic-5290868\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nginxinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nginxinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nice-it-management-solutions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nice-it-management-solutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nicepeopleatwork\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nicepeopleatwork\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nilespartnersinc1617691698386\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nilespartnersinc1617691698386\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"niolabs-5229713\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/niolabs-5229713\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nirvatosoftwarepvtltd1601368706606\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nirvatosoftwarepvtltd1601368706606\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nodejsapi\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nodejsapi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"noianetworklimited1584098036197\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/noianetworklimited1584098036197\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nokiaofamericacorporation1591716055441\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nokiaofamericacorporation1591716055441\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"noobaa\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/noobaa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"norcominformationtechnologygmbhcokgaa\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/norcominformationtechnologygmbhcokgaa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"noricumcloudsolutions1600524477681\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/noricumcloudsolutions1600524477681\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"norsync\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/norsync\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"northbridge-secure\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/northbridge-secure\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nozominetworks1582208017986\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nozominetworks1582208017986\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nri\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nri\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ntegralinc1586961136942\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ntegralinc1586961136942\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ntt-data-intellilink-corporation\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ntt-data-intellilink-corporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nttdata\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nttdata\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nttltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nttltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nuco-networks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nuco-networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"numbersbelieve\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/numbersbelieve\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"numtrallcpublisher\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/numtrallcpublisher\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nuxeo\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nuxeo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nvidia\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nvidia\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"o2mc-real-time-data-platform\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/o2mc-real-time-data-platform\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"objectivity-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/objectivity-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"objectivity1595351622261\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/objectivity1595351622261\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"oceanblue-cloud\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/oceanblue-cloud\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"OctopusDeploy.Tentacle\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/OctopusDeploy.Tentacle\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"odix\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/odix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"odysseuscomputationalsolutions1630242118741\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/odysseuscomputationalsolutions1630242118741\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"odysseyconsultantsltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/odysseyconsultantsltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"officeatwork-ag\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/officeatwork-ag\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"omega-software\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/omega-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"onapsis\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/onapsis\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"oncore_cloud_services-4944214\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/oncore_cloud_services-4944214\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"onexgroup\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/onexgroup\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"onspecta\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/onspecta\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ontology\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ontology\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"onyx-point-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/onyx-point-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"op5\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/op5\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"open-connect-systems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/open-connect-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"opencell\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/opencell\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"openlinkswcom-pago\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/openlinkswcom-pago\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"OpenLogic\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/OpenLogic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"openrefactoryinc1620140917523\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/openrefactoryinc1620140917523\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"openshotstudiosllc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/openshotstudiosllc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"opentext\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/opentext\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"openvpn\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/openvpn\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"opslogix\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/opslogix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"opswatinc1619007967290\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/opswatinc1619007967290\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"optimitiveslu1618320281443\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/optimitiveslu1618320281443\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"option3\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/option3\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Oracle\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Oracle\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"oraylis\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/oraylis\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"oraylisbi\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/oraylisbi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"orbs-network\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/orbs-network\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"oriana\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/oriana\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"orientdb\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/orientdb\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"oroinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/oroinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"osirium-ltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/osirium-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"osisoft\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/osisoft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"osnexus\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/osnexus\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"outpost24\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/outpost24\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"outsystems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/outsystems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ovaledge1618392232783\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ovaledge1618392232783\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pachyderminc1585170006545\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pachyderminc1585170006545\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pacteratechnologiesinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pacteratechnologiesinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"paladionnetworkspvtltd1606120508449\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/paladionnetworkspvtltd1606120508449\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"paloaltonetworks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/paloaltonetworks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"panopta\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/panopta\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"panorama-necto\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/panorama-necto\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"panzura-file-system\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/panzura-file-system\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"parabole\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/parabole\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"paralaxiomtechnologiesprivatelimited1596433357886\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/paralaxiomtechnologiesprivatelimited1596433357886\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"parallels\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/parallels\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"parasoft\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/parasoft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"parkersoftwarelimited1609786657569\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/parkersoftwarelimited1609786657569\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"parsec-for-teams\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/parsec-for-teams\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pasifikciptamandiri\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pasifikciptamandiri\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"passlogy\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/passlogy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"paxata\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/paxata\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pcman\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pcman\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"peer-software-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/peer-software-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"penta-security-systems-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/penta-security-systems-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"percona\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/percona\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"perforce\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/perforce\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"periscope-tech-4791746\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/periscope-tech-4791746\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"piolinkinc1582849368309\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/piolinkinc1582849368309\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pivotal\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pivotal\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pixitmedia1591611150480\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pixitmedia1591611150480\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"plesk\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/plesk\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pmsoftwareinternational1603102514882\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pmsoftwareinternational1603102514882\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pnop\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pnop\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"polarityioinc1628691850891\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/polarityioinc1628691850891\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"portalarchitects\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/portalarchitects\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"portsysinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/portsysinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"postgres-pro\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/postgres-pro\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"powerbireach\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/powerbireach\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"prakshepprivatelimited1619949827900\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/prakshepprivatelimited1619949827900\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"prasselsrl1645470739547\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/prasselsrl1645470739547\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"prestashop\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/prestashop\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"prestige_informatique-1090178\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/prestige_informatique-1090178\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"prime-strategy\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/prime-strategy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"primekey\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/primekey\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"primestrategynewyorkinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/primestrategynewyorkinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pro-vision\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pro-vision\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"probityinc1581611299345\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/probityinc1581611299345\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"process-one\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/process-one\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"processgold\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/processgold\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"procomputers\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/procomputers\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"procomputerssrl1594239153814\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/procomputerssrl1594239153814\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"profecia\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/profecia\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Profiler.AgentOrchestrationRefactor.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Profiler.AgentOrchestrationRefactor.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Profiler.Master.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Profiler.Master.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"profisee\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/profisee\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"progelspa\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/progelspa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"progresssoftwarecorporation\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/progresssoftwarecorporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"proliongmbh1628175060372\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/proliongmbh1628175060372\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"protegrityusainc1627404648458\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/protegrityusainc1627404648458\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"protiviti\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/protiviti\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"proventeq\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/proventeq\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ptc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ptc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ptsecurity\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ptsecurity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pulse-secure\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pulse-secure\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pulsesecuretechnologies1638179500151\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pulsesecuretechnologies1638179500151\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"puppet\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/puppet\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"puppeteersoy1601024480557\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/puppeteersoy1601024480557\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"PuppetLabs\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/PuppetLabs\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"PuppetLabs.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/PuppetLabs.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"purestorageinc1578960262525\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/purestorageinc1578960262525\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pydio\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pydio\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pyramidanalytics\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pyramidanalytics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"qlik\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/qlik\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"qnapsystemsinc1601352084032\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/qnapsystemsinc1601352084032\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"qore-technologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/qore-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"qs-solutions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/qs-solutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Qualys\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Qualys\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Qualys.LinuxAgent.GrayLabel\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Qualys.LinuxAgent.GrayLabel\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Qualys.WindowsAgent.GrayLabel\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Qualys.WindowsAgent.GrayLabel\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"qualysguard\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/qualysguard\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"quasardb\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/quasardb\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"qubole-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/qubole-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"quest\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/quest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"racknap\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/racknap\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rackwareinc1619403669255\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rackwareinc1619403669255\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"radiant-logic\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/radiant-logic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"radware\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/radware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"raincode\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/raincode\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rancher\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rancher\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rapid7\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rapid7\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Rapid7.InsightPlatform\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Rapid7.InsightPlatform\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rapidminer\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rapidminer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"raynetgmbh\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/raynetgmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"readymind\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/readymind\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"realm\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/realm\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"reblaze\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/reblaze\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"RedHat\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/RedHat\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"redhat-rhel\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/redhat-rhel\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"redpoint-global\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/redpoint-global\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"refactr\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/refactr\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"refinitiv\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/refinitiv\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"refinitiv-4807503\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/refinitiv-4807503\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"relevance-lab\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/relevance-lab\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"remotelearner\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/remotelearner\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"res\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/res\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"resco\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/resco\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"researchgraphptyltd1598252602128\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/researchgraphptyltd1598252602128\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"resemblesystems1582780358300\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/resemblesystems1582780358300\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"responder-corp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/responder-corp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"revolution-analytics\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/revolution-analytics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rhcsolutions1586957910818\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rhcsolutions1586957910818\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ribboncommunications\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ribboncommunications\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"RightScaleLinux\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/RightScaleLinux\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"RightScaleWindowsServer\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/RightScaleWindowsServer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rimo3\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rimo3\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ringsoftwareresearchanddevelopmentinc1578946072257\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ringsoftwareresearchanddevelopmentinc1578946072257\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"riverbed\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/riverbed\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"RiverbedTechnology\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/RiverbedTechnology\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rmgtechnologiesinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rmgtechnologiesinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rocketml\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rocketml\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rocketsoftware\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rocketsoftware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rohdeschwarzcybersecuritygmbh\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rohdeschwarzcybersecuritygmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rohdeschwarzcybersecuritysas\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rohdeschwarzcybersecuritysas\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"roktech\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/roktech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rsa-security-llc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rsa-security-llc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rsk-labs\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rsk-labs\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rstudio-5237862\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rstudio-5237862\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rtts\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rtts\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rubrik-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rubrik-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"runecastsolutionslimited1614186396822\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/runecastsolutionslimited1614186396822\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"s2ix\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/s2ix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"saama\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/saama\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"saasame-limited\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/saasame-limited\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"safesoftwareinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/safesoftwareinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"safeticatechnologiessro\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/safeticatechnologiessro\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"safetica_technologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/safetica_technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"safetoopen1585013318137\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/safetoopen1585013318137\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"saltsecurity1583264186232\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/saltsecurity1583264186232\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"saltsecurity1583264669848\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/saltsecurity1583264669848\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"saltstack\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/saltstack\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"samsung-sds\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/samsung-sds\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"samsungelectronics1632860607983\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/samsungelectronics1632860607983\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"samsungsds-cello\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/samsungsds-cello\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"samsungsds_sdbe\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/samsungsds_sdbe\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sandhatatechnologieslimited1615753438737\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sandhatatechnologieslimited1615753438737\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sap\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sap\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sapphiretechnologieslimited1611758579346\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sapphiretechnologieslimited1611758579346\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sas-institute-560503\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sas-institute-560503\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"scaidata\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/scaidata\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"scalearc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/scalearc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"scalegrid\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/scalegrid\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"scality\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/scality\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"schrockeninc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/schrockeninc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sci\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sci\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sciencelogicinc1622565452194\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sciencelogicinc1622565452194\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"scientiamobile\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/scientiamobile\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"scontainug1595751515785\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/scontainug1595751515785\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"scubaanalytics\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/scubaanalytics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"scylladb1631195365807\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/scylladb1631195365807\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"seaqserviciossas1579029207572\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/seaqserviciossas1579029207572\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"searchbloxsoftwareinc1594309037050\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/searchbloxsoftwareinc1594309037050\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"secureworks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/secureworks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"securityonionsolutions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/securityonionsolutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"securityonionsolutionsllc1624649205155\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/securityonionsolutionsllc1624649205155\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"securosis\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/securosis\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"seequentltd1585781751395\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/seequentltd1585781751395\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"semarchy\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/semarchy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"semperis\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/semperis\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"senhasegura\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/senhasegura\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"SentinelOne.LinuxExtension\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/SentinelOne.LinuxExtension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"SentinelOne.LinuxExtension.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/SentinelOne.LinuxExtension.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"SentinelOne.WindowsExtension\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/SentinelOne.WindowsExtension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"SentinelOne.WindowsExtension.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/SentinelOne.WindowsExtension.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sentriumsl\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sentriumsl\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sentry51llc1616686725591\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sentry51llc1616686725591\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sentryone\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sentryone\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sepiosystems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sepiosystems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"seppmailag\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/seppmailag\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"seraumo1620002807288\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/seraumo1620002807288\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"service-control-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/service-control-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sesamesoftwareinc1622125191447\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sesamesoftwareinc1622125191447\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"shadow-soft\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/shadow-soft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"shareshiftneeraj.test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/shareshiftneeraj.test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sightapps\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sightapps\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"signal-sciences\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/signal-sciences\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"silk\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/silk\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"silver-peak-systems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/silver-peak-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"simmachinesinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/simmachinesinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"simontelephonics\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/simontelephonics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"simpledatalabsinc1635791235920\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/simpledatalabsinc1635791235920\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"simplifierag\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/simplifierag\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"simpligov\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/simpligov\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sinefa\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sinefa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sinequa\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sinequa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sinequa1588262295885\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sinequa1588262295885\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"singapore-telecommunications-limited\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/singapore-telecommunications-limited\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sios_datakeeper\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sios_datakeeper\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"siportalinc1581539156321\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/siportalinc1581539156321\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sisenseltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sisenseltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Site24x7\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Site24x7\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sktelecom\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sktelecom\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"skyarc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/skyarc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"skyboxsecurity1585187406404\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/skyboxsecurity1585187406404\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"skylarkcloud\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/skylarkcloud\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"smartbearsoftware\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/smartbearsoftware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"smartmessage-autoflow\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/smartmessage-autoflow\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"snaplogic\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/snaplogic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"snapt-adc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/snapt-adc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"snips\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/snips\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"soasta\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/soasta\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"softnas\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/softnas\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"softwarecentralas1642687699196\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/softwarecentralas1642687699196\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"softwarehut\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/softwarehut\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"softwebsolutions-4518310\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/softwebsolutions-4518310\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"soha\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/soha\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"solanolabs\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/solanolabs\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"solar-security\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/solar-security\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"solarwinds\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/solarwinds\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"solvedevops1643693563360\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/solvedevops1643693563360\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sonicwall-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sonicwall-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sophos\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sophos\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sourcegearllc1616101262784\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sourcegearllc1616101262784\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"south-river-technologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/south-river-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"southrivertech1586314123192\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/southrivertech1586314123192\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"spacecurve\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/spacecurve\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"spaceliftinc1625499025476\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/spaceliftinc1625499025476\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"spagobi\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/spagobi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sparklinglogic\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sparklinglogic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"spectralcorelimited1619779004178\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/spectralcorelimited1619779004178\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"spektra\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/spektra\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sphere3d\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sphere3d\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"spideroakinc1588278690933\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/spideroakinc1588278690933\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"spirentcommunications1594084187199\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/spirentcommunications1594084187199\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"splunk\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/splunk\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sproutenetworks1593456311717\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sproutenetworks1593456311717\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sqlstream\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sqlstream\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"squadratechnologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/squadratechnologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"squaredup\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/squaredup\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"src-solution\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/src-solution\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ssh2appsltd1621588462715\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ssh2appsltd1621588462715\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stackato-platform-as-a-service\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stackato-platform-as-a-service\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Stackify.LinuxAgent.Extension\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Stackify.LinuxAgent.Extension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stackstorm\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stackstorm\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"startekfingerprintmatch\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/startekfingerprintmatch\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"startisolucoesemtecnologialtda1635263523201\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/startisolucoesemtecnologialtda1635263523201\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"starwind\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/starwind\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"StatusMonitor2.Diagnostics.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/StatusMonitor2.Diagnostics.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"StatusReport.Diagnostics.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/StatusReport.Diagnostics.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stealthbits\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stealthbits\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"steelhive\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/steelhive\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stonebondtechnologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stonebondtechnologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stonefly\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stonefly\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"storage_made_easy\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/storage_made_easy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stormshield\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stormshield\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"storone1594045543980\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/storone1594045543980\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"storreduce\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/storreduce\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"storwarespzoo1611743234900\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/storwarespzoo1611743234900\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"strangebee1595948424730\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/strangebee1595948424730\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"strataidentity1608323708170\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/strataidentity1608323708170\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stratis-group-ltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stratis-group-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stratodesk1611152769936\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stratodesk1611152769936\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stratumn\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stratumn\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"streamsets\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/streamsets\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"striim\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/striim\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stromasys\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stromasys\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"strongboxitllc1594816423884\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/strongboxitllc1594816423884\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"su\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/su\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"subscription.test.krsh\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/subscription.test.krsh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sumologic\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sumologic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sunatogmbh\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sunatogmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sunday\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sunday\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"SUSE\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/SUSE\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"SUSE.AzureHybridBenefit\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/SUSE.AzureHybridBenefit\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"swoopanalytics\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/swoopanalytics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sycom-technologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sycom-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sycompatechnologycompanyinc1588192103892\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sycompatechnologycompanyinc1588192103892\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.CloudWorkloadProtection\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.CloudWorkloadProtection\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.CloudWorkloadProtection.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.CloudWorkloadProtection.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.CloudWorkloadProtection.TestOnStage\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.CloudWorkloadProtection.TestOnStage\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.QA\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.QA\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.staging\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.staging\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.test.ru2.latest\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.test.ru2.latest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.test.ru2final\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.test.ru2final\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.test.ru2latest1\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.test.ru2latest1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.test.ru4mp1\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.test.ru4mp1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.test.ru4mp1.latest\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.test.ru4mp1.latest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.test.ru4mp1final\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.test.ru4mp1final\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"symanteccorporation\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/symanteccorporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"symantectest1\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/symantectest1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"synack-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/synack-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"syncfusion\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/syncfusion\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"syncfusionbigdataplatfor\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/syncfusionbigdataplatfor\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"synechron-technologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/synechron-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"synergixinc1585256339250\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/synergixinc1585256339250\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"synnexcorp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/synnexcorp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"syscomcomputerengineeringco1583913200141\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/syscomcomputerengineeringco1583913200141\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"syte\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/syte\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tableau\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tableau\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tactic\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tactic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"talari-networks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/talari-networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"talena-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/talena-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"talend\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/talend\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"talon\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/talon\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tamrinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tamrinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"taniuminc1646329360287\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/taniuminc1646329360287\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"targit\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/targit\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tata_communications\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tata_communications\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tavanttechnologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tavanttechnologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tavendo\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tavendo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"te-systems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/te-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"techdivision\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/techdivision\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"techlatest\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/techlatest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"technicheltd1606969724100\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/technicheltd1606969724100\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tecknolab\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tecknolab\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"telepat\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/telepat\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"teloscorporation\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/teloscorporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tempered-networks-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tempered-networks-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tenable\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tenable\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tensormakecorpdbaoneclickai1608247756082\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tensormakecorpdbaoneclickai1608247756082\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tenthlineinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tenthlineinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"teradata\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/teradata\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Teradici\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Teradici\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"teramindinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/teramindinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.Gemalto.SafeNet.ProtectV\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.Gemalto.SafeNet.ProtectV\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.Gemalto.SafeNet.ProtectV.Azure\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.Gemalto.SafeNet.ProtectV.Azure\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.HP.AppDefender\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.HP.AppDefender\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.Microsoft.VisualStudio.Services\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.Microsoft.VisualStudio.Services\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.NJHP.AppDefender\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.NJHP.AppDefender\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.SqlServer.Managability\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.SqlServer.Managability\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.SqlServer.Management\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.SqlServer.Management\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.SqlServer.Management.corext\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.SqlServer.Management.corext\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test1.NJHP.AppDefender\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test1.NJHP.AppDefender\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test3.Microsoft.VisualStudio.Services\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test3.Microsoft.VisualStudio.Services\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"testable1603721901088\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/testable1603721901088\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"testpro\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/testpro\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"test_test_mix3pptest0011614206850774\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/test_test_mix3pptest0011614206850774\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"test_test_mneela1628617140187\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/test_test_mneela1628617140187\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"test_test_pmc2pc1\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/test_test_pmc2pc1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thales-vormetric\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thales-vormetric\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thalesdiscplusainc1596561677238\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thalesdiscplusainc1596561677238\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thedatavaluefactoryltd1589348815922\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thedatavaluefactoryltd1589348815922\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thefreebsdfoundation\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thefreebsdfoundation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thehdfgroup1616725197741\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thehdfgroup1616725197741\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"theumag1596442827072\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/theumag1596442827072\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"things-board\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/things-board\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thingscareinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thingscareinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thinprintgmbh\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thinprintgmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thorntechnologiesllc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thorntechnologiesllc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thoughtspot-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thoughtspot-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"threatintelligenceptyltd1586824172898\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/threatintelligenceptyltd1586824172898\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tibco-software\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tibco-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tidal-migrations\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tidal-migrations\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tidalmediainc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tidalmediainc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tig\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tig\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tiger-technology\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tiger-technology\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tigergraph\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tigergraph\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"timextender\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/timextender\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tmaxsoft\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tmaxsoft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tmaxsoft1608612658335\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tmaxsoft1608612658335\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tomsawyersoftwarecorp1613579206342\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tomsawyersoftwarecorp1613579206342\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"topicus\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/topicus\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"torusware\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/torusware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"totemo\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/totemo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"townsend-security\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/townsend-security\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"transcendinformationinc1609918445926\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/transcendinformationinc1609918445926\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"transientxinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/transientxinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"transvault\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/transvault\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"trendmicro\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/trendmicro\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"TrendMicro.DeepSecurity.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/TrendMicro.DeepSecurity.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"TrendMicro.PortalProtect\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/TrendMicro.PortalProtect\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tresorit\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tresorit\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"trifacta\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/trifacta\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tripleblindinc1615730179432\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tripleblindinc1615730179432\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tripwire-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tripwire-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"truata1612259728221\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/truata1612259728221\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"truestack\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/truestack\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tryonsolutionsinc1596650621083\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tryonsolutionsinc1596650621083\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tsa-public-service\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tsa-public-service\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tunnelbiz\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tunnelbiz\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"turbonet\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/turbonet\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"turbonet1581982683964\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/turbonet1581982683964\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"twistlock\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/twistlock\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"typesafe\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/typesafe\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ubeeko\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ubeeko\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ubercloud\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ubercloud\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"uipath-5054924\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/uipath-5054924\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ulex\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ulex\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"unifi-software\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/unifi-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"unifiedstreaming1598872291606\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/unifiedstreaming1598872291606\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"uniprint-net\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/uniprint-net\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"unitrends\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/unitrends\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"unnisoft\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/unnisoft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"unravel-data\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/unravel-data\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"unscramblsingaporepteltd-4999260\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/unscramblsingaporepteltd-4999260\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"untangle\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/untangle\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"upsolver1594188634150\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/upsolver1594188634150\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"usp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/usp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"valohai\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/valohai\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"valtix\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/valtix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"varmournetworks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/varmournetworks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"varnish\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/varnish\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vastdata1650451243415\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vastdata1650451243415\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vatacommunicationsinc1581644208717\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vatacommunicationsinc1581644208717\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vaultive-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vaultive-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vbot\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vbot\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vcinityinc1587684340545\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vcinityinc1587684340545\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vectraaiinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vectraaiinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"veeam\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/veeam\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"velocitydb-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/velocitydb-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"velocloud\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/velocloud\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vembutechnologiespvtltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vembutechnologiespvtltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vemn\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vemn\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"veritas\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/veritas\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"versanetworks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/versanetworks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"versasec\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/versasec\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vidispine\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vidispine\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vidizmo\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vidizmo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vigyanlabs-innovations-pvt-ltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vigyanlabs-innovations-pvt-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vigyanlabsinc1581413676614\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vigyanlabsinc1581413676614\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"viptela\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/viptela\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vircom\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vircom\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"virtamovecorp1615909247913\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/virtamovecorp1615909247913\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"virtualpulsesro1607008728942\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/virtualpulsesro1607008728942\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"virtuozzointernationalgmbh1626704951469\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/virtuozzointernationalgmbh1626704951469\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"visualknowledgeshare1591795776234\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/visualknowledgeshare1591795776234\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"visualsoft-center\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/visualsoft-center\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vizixiotplatformretail001\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vizixiotplatformretail001\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vmlabinc1613642184700\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vmlabinc1613642184700\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vmturbo\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vmturbo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vmware-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vmware-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vnomicinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vnomicinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"voiceelements\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/voiceelements\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"voleatechgmbh1636966911943\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/voleatechgmbh1636966911943\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"volterraedgeservices\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/volterraedgeservices\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Vormetric\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Vormetric\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vscconsultingptyltd1608535888097\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vscconsultingptyltd1608535888097\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vte\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vte\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vu-llc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vu-llc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vunetsystemsprivatelimited1646716402131\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vunetsystemsprivatelimited1646716402131\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vyulabsinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vyulabsinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"WAD2AI.Diagnostics.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/WAD2AI.Diagnostics.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"WAD2EventHub.Diagnostics.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/WAD2EventHub.Diagnostics.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wallarm\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wallarm\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wallix\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wallix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wandisco\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wandisco\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wanos\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wanos\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wanpath-dba-myworkdrive\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wanpath-dba-myworkdrive\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wardy-it-solutions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wardy-it-solutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"warewolf-esb\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/warewolf-esb\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"watchguard-technologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/watchguard-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"webaloinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/webaloinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"websense-apmailpe\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/websense-apmailpe\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"websoft9inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/websoft9inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wedoitllc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wedoitllc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"westernoceansoftwaresprivatelimited\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/westernoceansoftwaresprivatelimited\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wherescapesoftware\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wherescapesoftware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"winmagic_securedoc_cloudvm\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/winmagic_securedoc_cloudvm\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wintellisys-inc-4561600\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wintellisys-inc-4561600\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"witfooinc1590167223060\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/witfooinc1590167223060\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wmspanel\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wmspanel\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wood1595864497589\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wood1595864497589\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"workshare-technology\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/workshare-technology\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"world-programming\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/world-programming\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"worxogo\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/worxogo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wowza\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wowza\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"xcontentptyltd-1329748\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/xcontentptyltd-1329748\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"xendata-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/xendata-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"xfinityinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/xfinityinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"xilinx\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/xilinx\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"xoriantcorporationazxteam1\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/xoriantcorporationazxteam1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"xoriantsolutionspvtltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/xoriantsolutionspvtltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"xtremedata\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/xtremedata\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"xyzrd-group-ou\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/xyzrd-group-ou\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"yaseensmarket1645449809728\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/yaseensmarket1645449809728\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"yellowfin\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/yellowfin\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"yellowfininternationalptyltd1616363974066\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/yellowfininternationalptyltd1616363974066\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"yokogawarentalleasecorporation\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/yokogawarentalleasecorporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"your-shop-online\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/your-shop-online\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"z1\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/z1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"z4it-aps\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/z4it-aps\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zabbix\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zabbix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zend\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zend\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zenterasystemsinc1605292453288\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zenterasystemsinc1605292453288\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zerodown_software\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zerodown_software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zerto\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zerto\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zettalane_systems-5254599\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zettalane_systems-5254599\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zevenet\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zevenet\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zilliz\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zilliz\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zoomdata\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zoomdata\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zscaler\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zscaler\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zscaler1579058425289\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zscaler1579058425289\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zultysinc1596831546163\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zultysinc1596831546163\"\r\n }\r\n]", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/southeastasia/publishers/Microsoft.Compute/artifacttypes/vmextension/types?api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9wdWJsaXNoZXJzL01pY3Jvc29mdC5Db21wdXRlL2FydGlmYWN0dHlwZXMvdm1leHRlbnNpb24vdHlwZXM/YXBpLXZlcnNpb249MjAyMS0xMS0wMQ==", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Compute/locations/southeastasia/publishers/Microsoft.Compute/artifacttypes/vmextension/types?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9wdWJsaXNoZXJzL01pY3Jvc29mdC5Db21wdXRlL2FydGlmYWN0dHlwZXMvdm1leHRlbnNpb24vdHlwZXM/YXBpLXZlcnNpb249MjAyMS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "99ef1b14-0146-4db8-85cf-2b54ea3f585f" + "c490081a-28bd-4555-b607-54a143dd9bd4" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ] }, "ResponseHeaders": { @@ -2131,29 +2131,29 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "1f3ad383-bb66-4279-b2a8-fbbcd093a7e3_132718957370641376" + "1f3ad383-bb66-4279-b2a8-fbbcd093a7e3_132836337789816871" ], "x-ms-request-id": [ - "49991847-3376-430a-915d-f76c72d62ea4" + "a78a8642-8925-45c7-994c-aaaa60f7a194" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11988" ], "x-ms-correlation-request-id": [ - "556f4c9f-0eb4-4e3a-a10e-aca6aaa2d329" + "280bd78b-b998-4b38-ba46-b28fdd136862" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220225T000253Z:556f4c9f-0eb4-4e3a-a10e-aca6aaa2d329" + "WESTINDIA:20220517T073451Z:280bd78b-b998-4b38-ba46-b28fdd136862" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 25 Feb 2022 00:02:53 GMT" + "Tue, 17 May 2022 07:34:51 GMT" ], "Content-Length": [ "1089" @@ -2165,26 +2165,26 @@ "-1" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"BGInfo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"CustomScriptExtension\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"JsonADDomainExtension\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/JsonADDomainExtension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"VMAccessAgent\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/VMAccessAgent\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"BGInfo\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"CustomScriptExtension\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"JsonADDomainExtension\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/JsonADDomainExtension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"VMAccessAgent\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/VMAccessAgent\"\r\n }\r\n]", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/southeastasia/publishers/Microsoft.Compute/artifacttypes/vmextension/types/BGInfo/versions?api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9wdWJsaXNoZXJzL01pY3Jvc29mdC5Db21wdXRlL2FydGlmYWN0dHlwZXMvdm1leHRlbnNpb24vdHlwZXMvQkdJbmZvL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMjEtMTEtMDE=", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Compute/locations/southeastasia/publishers/Microsoft.Compute/artifacttypes/vmextension/types/BGInfo/versions?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9wdWJsaXNoZXJzL01pY3Jvc29mdC5Db21wdXRlL2FydGlmYWN0dHlwZXMvdm1leHRlbnNpb24vdHlwZXMvQkdJbmZvL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMjEtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "99ef1b14-0146-4db8-85cf-2b54ea3f585f" + "c490081a-28bd-4555-b607-54a143dd9bd4" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ] }, "ResponseHeaders": { @@ -2195,38 +2195,38 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/ListVMExtensions3Min;9999,Microsoft.Compute/ListVMExtensions30Min;21996" + "Microsoft.Compute/ListVMExtensions3Min;9999,Microsoft.Compute/ListVMExtensions30Min;21994" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "1f3ad383-bb66-4279-b2a8-fbbcd093a7e3_132718957370641376" + "1f3ad383-bb66-4279-b2a8-fbbcd093a7e3_132836337789816871" ], "x-ms-request-id": [ - "14f15bef-3cbb-4064-b5c6-648b2f48397b" + "528a30eb-801a-47a4-9a63-5187999800fd" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11987" ], "x-ms-correlation-request-id": [ - "ab7b8144-b572-491a-88c7-126291cb2cda" + "8fbbe867-57d3-4c86-b5c2-e8735bc23eff" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220225T000253Z:ab7b8144-b572-491a-88c7-126291cb2cda" + "WESTINDIA:20220517T073451Z:8fbbe867-57d3-4c86-b5c2-e8735bc23eff" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 25 Feb 2022 00:02:53 GMT" + "Tue, 17 May 2022 07:34:51 GMT" ], "Content-Length": [ - "1589" + "1856" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2235,26 +2235,26 @@ "-1" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1.0\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo/Versions/1.0\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1.0.1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo/Versions/1.0.1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1.1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo/Versions/1.1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1.2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo/Versions/1.2\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1.2.2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo/Versions/1.2.2\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"2.1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo/Versions/2.1\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1.0\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo/Versions/1.0\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1.0.1\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo/Versions/1.0.1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1.1\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo/Versions/1.1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1.2\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo/Versions/1.2\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1.2.2\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo/Versions/1.2.2\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"2.1\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo/Versions/2.1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"2.2.2\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo/Versions/2.2.2\"\r\n }\r\n]", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.Compute/virtualMachines/PSTestVM8c1d80/extensions/BGInfo?api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOGMxZDhkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy9QU1Rlc3RWTThjMWQ4MC9leHRlbnNpb25zL0JHSW5mbz9hcGktdmVyc2lvbj0yMDIxLTExLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.Compute/virtualMachines/PSTestVM930550/extensions/BGInfo?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTMwNTVhNjYvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy9QU1Rlc3RWTTkzMDU1MC9leHRlbnNpb25zL0JHSW5mbz9hcGktdmVyc2lvbj0yMDIxLTExLTAx", "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\": \"southeastasia\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"BGInfo\",\r\n \"typeHandlerVersion\": \"2.2\",\r\n \"autoUpgradeMinorVersion\": true\r\n },\r\n \"location\": \"southeastasia\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "99ef1b14-0146-4db8-85cf-2b54ea3f585f" + "c490081a-28bd-4555-b607-54a143dd9bd4" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2271,38 +2271,38 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/southeastasia/operations/d4725cca-3dd6-4cab-8b23-03598a10e57f?p=34dc709c-01b2-42c4-84a2-256a9734610d&api-version=2021-11-01" + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Compute/locations/southeastasia/operations/ba5a8b40-7948-4127-83cc-893b9befee89?p=e484ceca-6435-4a7f-b125-3d82e6b12014&api-version=2021-11-01" ], "Azure-AsyncNotification": [ "Enabled" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/UpdateVM3Min;239,Microsoft.Compute/UpdateVM30Min;1198" + "Microsoft.Compute/UpdateVM3Min;239,Microsoft.Compute/UpdateVM30Min;1196" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d4725cca-3dd6-4cab-8b23-03598a10e57f" + "ba5a8b40-7948-4127-83cc-893b9befee89" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1197" ], "x-ms-correlation-request-id": [ - "6117c2db-1f56-458a-8f0e-d8b05ece12f0" + "1cb45290-6729-444f-9f64-c228c2da6b2b" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220225T000258Z:6117c2db-1f56-458a-8f0e-d8b05ece12f0" + "WESTINDIA:20220517T073453Z:1cb45290-6729-444f-9f64-c228c2da6b2b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 25 Feb 2022 00:02:57 GMT" + "Tue, 17 May 2022 07:34:53 GMT" ], "Content-Length": [ "484" @@ -2314,23 +2314,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"BGInfo\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.Compute/virtualMachines/PSTestVM8c1d80/extensions/BGInfo\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"southeastasia\",\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}", + "ResponseBody": "{\r\n \"name\": \"BGInfo\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.Compute/virtualMachines/PSTestVM930550/extensions/BGInfo\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Creating\",\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"BGInfo\",\r\n \"typeHandlerVersion\": \"2.2\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/southeastasia/operations/d4725cca-3dd6-4cab-8b23-03598a10e57f?p=34dc709c-01b2-42c4-84a2-256a9734610d&api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Q0NzI1Y2NhLTNkZDYtNGNhYi04YjIzLTAzNTk4YTEwZTU3Zj9wPTM0ZGM3MDljLTAxYjItNDJjNC04NGEyLTI1NmE5NzM0NjEwZCZhcGktdmVyc2lvbj0yMDIxLTExLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Compute/locations/southeastasia/operations/ba5a8b40-7948-4127-83cc-893b9befee89?p=e484ceca-6435-4a7f-b125-3d82e6b12014&api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2JhNWE4YjQwLTc5NDgtNDEyNy04M2NjLTg5M2I5YmVmZWU4OT9wPWU0ODRjZWNhLTY0MzUtNGE3Zi1iMTI1LTNkODJlNmIxMjAxNCZhcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "99ef1b14-0146-4db8-85cf-2b54ea3f585f" + "c490081a-28bd-4555-b607-54a143dd9bd4" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ] }, "ResponseHeaders": { @@ -2341,32 +2341,32 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperation3Min;14995,Microsoft.Compute/GetOperation30Min;29979" + "Microsoft.Compute/GetOperation3Min;14995,Microsoft.Compute/GetOperation30Min;29974" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "2985d482-6ba1-4fef-9814-9dccd49d3003" + "76935c51-67dd-4202-8432-4e3883e41bcb" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11986" ], "x-ms-correlation-request-id": [ - "845a7a98-42cf-47b8-a6ac-a09a1bd2f01f" + "7303d3ee-df29-41b9-b790-5bb9ab27f1b4" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220225T000329Z:845a7a98-42cf-47b8-a6ac-a09a1bd2f01f" + "WESTINDIA:20220517T073523Z:7303d3ee-df29-41b9-b790-5bb9ab27f1b4" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 25 Feb 2022 00:03:28 GMT" + "Tue, 17 May 2022 07:35:23 GMT" ], "Content-Length": [ "134" @@ -2378,23 +2378,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-02-24T19:02:56.7701418-05:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d4725cca-3dd6-4cab-8b23-03598a10e57f\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2022-05-17T13:04:52.9478208+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"ba5a8b40-7948-4127-83cc-893b9befee89\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/southeastasia/operations/d4725cca-3dd6-4cab-8b23-03598a10e57f?p=34dc709c-01b2-42c4-84a2-256a9734610d&api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Q0NzI1Y2NhLTNkZDYtNGNhYi04YjIzLTAzNTk4YTEwZTU3Zj9wPTM0ZGM3MDljLTAxYjItNDJjNC04NGEyLTI1NmE5NzM0NjEwZCZhcGktdmVyc2lvbj0yMDIxLTExLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Compute/locations/southeastasia/operations/ba5a8b40-7948-4127-83cc-893b9befee89?p=e484ceca-6435-4a7f-b125-3d82e6b12014&api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2JhNWE4YjQwLTc5NDgtNDEyNy04M2NjLTg5M2I5YmVmZWU4OT9wPWU0ODRjZWNhLTY0MzUtNGE3Zi1iMTI1LTNkODJlNmIxMjAxNCZhcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "99ef1b14-0146-4db8-85cf-2b54ea3f585f" + "c490081a-28bd-4555-b607-54a143dd9bd4" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ] }, "ResponseHeaders": { @@ -2405,32 +2405,32 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperation3Min;14994,Microsoft.Compute/GetOperation30Min;29978" + "Microsoft.Compute/GetOperation3Min;14994,Microsoft.Compute/GetOperation30Min;29973" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "8715f5bc-eef1-4921-8065-1c3c362a0e0a" + "747f6b5a-cff1-4108-beab-209d173e65d6" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11985" ], "x-ms-correlation-request-id": [ - "cb82b3b5-7642-40df-9abf-8fad6f10590f" + "d34d59cf-773d-42e0-ae12-0c809104ff83" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220225T000359Z:cb82b3b5-7642-40df-9abf-8fad6f10590f" + "WESTINDIA:20220517T073553Z:d34d59cf-773d-42e0-ae12-0c809104ff83" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 25 Feb 2022 00:03:59 GMT" + "Tue, 17 May 2022 07:35:53 GMT" ], "Content-Length": [ "134" @@ -2442,23 +2442,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-02-24T19:02:56.7701418-05:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d4725cca-3dd6-4cab-8b23-03598a10e57f\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2022-05-17T13:04:52.9478208+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"ba5a8b40-7948-4127-83cc-893b9befee89\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/southeastasia/operations/d4725cca-3dd6-4cab-8b23-03598a10e57f?p=34dc709c-01b2-42c4-84a2-256a9734610d&api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Q0NzI1Y2NhLTNkZDYtNGNhYi04YjIzLTAzNTk4YTEwZTU3Zj9wPTM0ZGM3MDljLTAxYjItNDJjNC04NGEyLTI1NmE5NzM0NjEwZCZhcGktdmVyc2lvbj0yMDIxLTExLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Compute/locations/southeastasia/operations/ba5a8b40-7948-4127-83cc-893b9befee89?p=e484ceca-6435-4a7f-b125-3d82e6b12014&api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2JhNWE4YjQwLTc5NDgtNDEyNy04M2NjLTg5M2I5YmVmZWU4OT9wPWU0ODRjZWNhLTY0MzUtNGE3Zi1iMTI1LTNkODJlNmIxMjAxNCZhcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "99ef1b14-0146-4db8-85cf-2b54ea3f585f" + "c490081a-28bd-4555-b607-54a143dd9bd4" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ] }, "ResponseHeaders": { @@ -2469,32 +2469,32 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperation3Min;14994,Microsoft.Compute/GetOperation30Min;29977" + "Microsoft.Compute/GetOperation3Min;14994,Microsoft.Compute/GetOperation30Min;29972" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "64970cfe-a13f-46c7-bd5b-c9cb3426ee9f" + "f69be905-07bd-4a2e-aadd-cc8613263816" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11984" ], "x-ms-correlation-request-id": [ - "e15fa70e-55a3-477a-a3af-46ce8b530940" + "bc8f5151-a4c1-46d2-a108-3794732fd963" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220225T000429Z:e15fa70e-55a3-477a-a3af-46ce8b530940" + "WESTINDIA:20220517T073624Z:bc8f5151-a4c1-46d2-a108-3794732fd963" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 25 Feb 2022 00:04:29 GMT" + "Tue, 17 May 2022 07:36:23 GMT" ], "Content-Length": [ "134" @@ -2506,23 +2506,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-02-24T19:02:56.7701418-05:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d4725cca-3dd6-4cab-8b23-03598a10e57f\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2022-05-17T13:04:52.9478208+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"ba5a8b40-7948-4127-83cc-893b9befee89\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/southeastasia/operations/d4725cca-3dd6-4cab-8b23-03598a10e57f?p=34dc709c-01b2-42c4-84a2-256a9734610d&api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Q0NzI1Y2NhLTNkZDYtNGNhYi04YjIzLTAzNTk4YTEwZTU3Zj9wPTM0ZGM3MDljLTAxYjItNDJjNC04NGEyLTI1NmE5NzM0NjEwZCZhcGktdmVyc2lvbj0yMDIxLTExLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Compute/locations/southeastasia/operations/ba5a8b40-7948-4127-83cc-893b9befee89?p=e484ceca-6435-4a7f-b125-3d82e6b12014&api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2JhNWE4YjQwLTc5NDgtNDEyNy04M2NjLTg5M2I5YmVmZWU4OT9wPWU0ODRjZWNhLTY0MzUtNGE3Zi1iMTI1LTNkODJlNmIxMjAxNCZhcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "99ef1b14-0146-4db8-85cf-2b54ea3f585f" + "c490081a-28bd-4555-b607-54a143dd9bd4" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ] }, "ResponseHeaders": { @@ -2533,35 +2533,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperation3Min;14993,Microsoft.Compute/GetOperation30Min;29975" + "Microsoft.Compute/GetOperation3Min;14994,Microsoft.Compute/GetOperation30Min;29971" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "61eddf81-a5c0-4b2a-87ab-a363b1134957" + "22f84759-eff5-48dc-841f-8efedde7d057" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "11983" ], "x-ms-correlation-request-id": [ - "711350a4-853e-460f-97a2-3e63baa2e1ef" + "961d81bc-e121-4b98-8690-0273cad59d31" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220225T000459Z:711350a4-853e-460f-97a2-3e63baa2e1ef" + "WESTINDIA:20220517T073654Z:961d81bc-e121-4b98-8690-0273cad59d31" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 25 Feb 2022 00:04:59 GMT" + "Tue, 17 May 2022 07:36:53 GMT" ], "Content-Length": [ - "184" + "134" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2570,23 +2570,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-02-24T19:02:56.7701418-05:00\",\r\n \"endTime\": \"2022-02-24T19:04:52.6934506-05:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"d4725cca-3dd6-4cab-8b23-03598a10e57f\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2022-05-17T13:04:52.9478208+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"ba5a8b40-7948-4127-83cc-893b9befee89\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.Compute/virtualMachines/PSTestVM8c1d80/extensions/BGInfo?api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOGMxZDhkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy9QU1Rlc3RWTThjMWQ4MC9leHRlbnNpb25zL0JHSW5mbz9hcGktdmVyc2lvbj0yMDIxLTExLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Compute/locations/southeastasia/operations/ba5a8b40-7948-4127-83cc-893b9befee89?p=e484ceca-6435-4a7f-b125-3d82e6b12014&api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2JhNWE4YjQwLTc5NDgtNDEyNy04M2NjLTg5M2I5YmVmZWU4OT9wPWU0ODRjZWNhLTY0MzUtNGE3Zi1iMTI1LTNkODJlNmIxMjAxNCZhcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "99ef1b14-0146-4db8-85cf-2b54ea3f585f" + "c490081a-28bd-4555-b607-54a143dd9bd4" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ] }, "ResponseHeaders": { @@ -2597,35 +2597,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/LowCostGet3Min;3994,Microsoft.Compute/LowCostGet30Min;31979" + "Microsoft.Compute/GetOperation3Min;14992,Microsoft.Compute/GetOperation30Min;29969" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ed442114-77ff-46b5-9fff-194efdab455e" + "733a0e48-e48d-4257-a863-a3fd3ae6da35" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "11982" ], "x-ms-correlation-request-id": [ - "5a3575ee-5004-4418-9b8a-ea42e7d31440" + "96950c61-4aff-4cb7-a775-bd862675e301" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220225T000500Z:5a3575ee-5004-4418-9b8a-ea42e7d31440" + "WESTINDIA:20220517T073724Z:96950c61-4aff-4cb7-a775-bd862675e301" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 25 Feb 2022 00:04:59 GMT" + "Tue, 17 May 2022 07:37:24 GMT" ], "Content-Length": [ - "485" + "134" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2634,26 +2634,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"BGInfo\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.Compute/virtualMachines/PSTestVM8c1d80/extensions/BGInfo\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"southeastasia\",\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}", + "ResponseBody": "{\r\n \"startTime\": \"2022-05-17T13:04:52.9478208+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"ba5a8b40-7948-4127-83cc-893b9befee89\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSV8c1d8dac?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOGMxZDhkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y4YzFkOGRhYz9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Compute/locations/southeastasia/operations/ba5a8b40-7948-4127-83cc-893b9befee89?p=e484ceca-6435-4a7f-b125-3d82e6b12014&api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2JhNWE4YjQwLTc5NDgtNDEyNy04M2NjLTg5M2I5YmVmZWU4OT9wPWU0ODRjZWNhLTY0MzUtNGE3Zi1iMTI1LTNkODJlNmIxMjAxNCZhcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9a3eea8a-4e25-46a0-88da-c6f825805734" - ], - "Accept-Language": [ - "en-US" + "c490081a-28bd-4555-b607-54a143dd9bd4" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesClient/4.3.2.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ] }, "ResponseHeaders": { @@ -2663,63 +2660,61 @@ "Pragma": [ "no-cache" ], - "x-ms-failure-cause": [ - "gateway" + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperation3Min;14993,Microsoft.Compute/GetOperation30Min;29968" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "12c59e4e-2254-4bcc-a85f-a168fa3bf84e" + "0eb0bd09-0fa6-47e3-8184-a12aa24afcab" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11981" ], "x-ms-correlation-request-id": [ - "12c59e4e-2254-4bcc-a85f-a168fa3bf84e" + "41dc22a0-4a45-4098-be1a-828b14f6a857" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220225T000504Z:12c59e4e-2254-4bcc-a85f-a168fa3bf84e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "WESTINDIA:20220517T073754Z:41dc22a0-4a45-4098-be1a-828b14f6a857" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 25 Feb 2022 00:05:03 GMT" + "Tue, 17 May 2022 07:37:54 GMT" + ], + "Content-Length": [ + "184" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" - ], - "Content-Length": [ - "239" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.RecoveryServices/vaults/PSTestRSV8c1d8dac' under resource group 'PSTestRG8c1d8dac' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", - "StatusCode": 404 + "ResponseBody": "{\r\n \"startTime\": \"2022-05-17T13:04:52.9478208+05:30\",\r\n \"endTime\": \"2022-05-17T13:07:40.4617909+05:30\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"ba5a8b40-7948-4127-83cc-893b9befee89\"\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSV8c1d8dac?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOGMxZDhkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y4YzFkOGRhYz9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"southeastasia\"\r\n}", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.Compute/virtualMachines/PSTestVM930550/extensions/BGInfo?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTMwNTVhNjYvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy9QU1Rlc3RWTTkzMDU1MC9leHRlbnNpb25zL0JHSW5mbz9hcGktdmVyc2lvbj0yMDIxLTExLTAx", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6d6b21c5-c107-4bb0-8ca6-57f91b62a694" - ], - "Accept-Language": [ - "en-US" + "c490081a-28bd-4555-b607-54a143dd9bd4" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesClient/4.3.2.0" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "98" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ] }, "ResponseHeaders": { @@ -2729,63 +2724,64 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], - "x-ms-request-id": [ - "b9a38f69-7bde-45fe-8b72-983e4028a729" - ], - "x-ms-client-request-id": [ - "6d6b21c5-c107-4bb0-8ca6-57f91b62a694" + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/LowCostGet3Min;3979,Microsoft.Compute/LowCostGet30Min;31808" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ + "616bca98-7f2b-49c2-b71a-0a5614fa7416" + ], "Server": [ - "Microsoft-IIS/10.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "209" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11980" ], "x-ms-correlation-request-id": [ - "b9a38f69-7bde-45fe-8b72-983e4028a729" + "60bfe5c1-f2c8-4ef2-a27a-a09dda682862" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220225T000514Z:b9a38f69-7bde-45fe-8b72-983e4028a729" + "WESTINDIA:20220517T073755Z:60bfe5c1-f2c8-4ef2-a27a-a09dda682862" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Fri, 25 Feb 2022 00:05:13 GMT" + "Tue, 17 May 2022 07:37:54 GMT" ], "Content-Length": [ - "466" + "485" ], "Content-Type": [ - "application/json" + "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "ResponseBody": "{\r\n \"location\": \"southeastasia\",\r\n \"name\": \"PSTestRSV8c1d8dac\",\r\n \"etag\": \"W/\\\"datetime'2022-02-25T00%3A05%3A12.7720876Z'\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateEndpointStateForBackup\": \"None\",\r\n \"privateEndpointStateForSiteRecovery\": \"None\"\r\n },\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSV8c1d8dac\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n }\r\n}", - "StatusCode": 201 + "ResponseBody": "{\r\n \"name\": \"BGInfo\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.Compute/virtualMachines/PSTestVM930550/extensions/BGInfo\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"BGInfo\",\r\n \"typeHandlerVersion\": \"2.2\"\r\n }\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSV8c1d8dac/backupconfig/vaultconfig?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOGMxZDhkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y4YzFkOGRhYy9iYWNrdXBjb25maWcvdmF1bHRjb25maWc/YXBpLXZlcnNpb249MjAyMS0xMC0wMQ==", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.RecoveryServices/vaults/PSTestRSV93055a66?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTMwNTVhNjYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5MzA1NWE2Nj9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6d5fc628-4d5a-4c6b-b006-75ed4ae26455" + "ec610dda-e192-4d1d-85e9-3f2db540ee48" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesClient/4.3.2.0" ] }, "ResponseHeaders": { @@ -2795,73 +2791,63 @@ "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" + "x-ms-failure-cause": [ + "gateway" ], "x-ms-request-id": [ - "ca5a3879-bd7a-4679-8cd7-3bd60a37dcf4" + "c2114c19-c847-4d22-b92d-8ce456e31b47" ], - "x-ms-client-request-id": [ - "6d5fc628-4d5a-4c6b-b006-75ed4ae26455", - "6d5fc628-4d5a-4c6b-b006-75ed4ae26455" + "x-ms-correlation-request-id": [ + "c2114c19-c847-4d22-b92d-8ce456e31b47" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220517T073755Z:c2114c19-c847-4d22-b92d-8ce456e31b47" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "149" - ], - "x-ms-correlation-request-id": [ - "ca5a3879-bd7a-4679-8cd7-3bd60a37dcf4" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20220225T000515Z:ca5a3879-bd7a-4679-8cd7-3bd60a37dcf4" + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Fri, 25 Feb 2022 00:05:15 GMT" - ], - "Content-Length": [ - "380" + "Tue, 17 May 2022 07:37:55 GMT" ], "Content-Type": [ - "application/json" + "application/json; charset=utf-8" ], "Expires": [ "-1" + ], + "Content-Length": [ + "239" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSV8c1d8dac/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 + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.RecoveryServices/vaults/PSTestRSV93055a66' under resource group 'PSTestRG93055a66' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "StatusCode": 404 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSV8c1d8dac/backupconfig/vaultconfig?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOGMxZDhkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y4YzFkOGRhYy9iYWNrdXBjb25maWcvdmF1bHRjb25maWc/YXBpLXZlcnNpb249MjAyMS0xMC0wMQ==", - "RequestMethod": "PATCH", - "RequestBody": "{\r\n \"properties\": {\r\n \"enhancedSecurityState\": \"Enabled\",\r\n \"softDeleteFeatureState\": \"Disabled\"\r\n }\r\n}", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.RecoveryServices/vaults/PSTestRSV93055a66?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTMwNTVhNjYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5MzA1NWE2Nj9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"southeastasia\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "6d5fc628-4d5a-4c6b-b006-75ed4ae26455" + "9f27403d-8679-451c-86d3-459f4991717d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesClient/4.3.2.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "111" + "98" ] }, "ResponseHeaders": { @@ -2875,11 +2861,10 @@ "nosniff" ], "x-ms-request-id": [ - "5d853da7-d865-4b43-8b5d-3ccce00a59fa" + "b141f334-608e-4e4e-9b2a-2bca59a620b3" ], "x-ms-client-request-id": [ - "6d5fc628-4d5a-4c6b-b006-75ed4ae26455", - "6d5fc628-4d5a-4c6b-b006-75ed4ae26455" + "9f27403d-8679-451c-86d3-459f4991717d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2887,23 +2872,20 @@ "Server": [ "Microsoft-IIS/10.0" ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "209" ], "x-ms-correlation-request-id": [ - "5d853da7-d865-4b43-8b5d-3ccce00a59fa" + "b141f334-608e-4e4e-9b2a-2bca59a620b3" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220225T000517Z:5d853da7-d865-4b43-8b5d-3ccce00a59fa" + "WESTINDIA:20220517T073800Z:b141f334-608e-4e4e-9b2a-2bca59a620b3" ], "Date": [ - "Fri, 25 Feb 2022 00:05:16 GMT" + "Tue, 17 May 2022 07:37:59 GMT" ], "Content-Length": [ - "381" + "518" ], "Content-Type": [ "application/json" @@ -2912,26 +2894,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSV8c1d8dac/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 + "ResponseBody": "{\r\n \"location\": \"southeastasia\",\r\n \"name\": \"PSTestRSV93055a66\",\r\n \"etag\": \"W/\\\"datetime'2022-05-17T07%3A37%3A59.6412328Z'\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateEndpointStateForBackup\": \"None\",\r\n \"privateEndpointStateForSiteRecovery\": \"None\",\r\n \"networkSettings\": {\r\n \"publicNetworkAccess\": \"Enabled\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.RecoveryServices/vaults/PSTestRSV93055a66\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n }\r\n}", + "StatusCode": 201 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSV8c1d8dac/backupProtectionContainers?$filter=friendlyName%20eq%20'PSTestVM8c1d80'%20and%20backupManagementType%20eq%20'AzureIaasVM'%20and%20status%20eq%20'Registered'&api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOGMxZDhkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y4YzFkOGRhYy9iYWNrdXBQcm90ZWN0aW9uQ29udGFpbmVycz8kZmlsdGVyPWZyaWVuZGx5TmFtZSUyMGVxJTIwJ1BTVGVzdFZNOGMxZDgwJyUyMGFuZCUyMGJhY2t1cE1hbmFnZW1lbnRUeXBlJTIwZXElMjAnQXp1cmVJYWFzVk0nJTIwYW5kJTIwc3RhdHVzJTIwZXElMjAnUmVnaXN0ZXJlZCcmYXBpLXZlcnNpb249MjAyMS0xMC0wMQ==", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.RecoveryServices/vaults/PSTestRSV93055a66/backupconfig/vaultconfig?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTMwNTVhNjYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5MzA1NWE2Ni9iYWNrdXBjb25maWcvdmF1bHRjb25maWc/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "66fde394-fd60-4628-b07f-f059e412dffc" + "34eaa188-2675-4a86-90e5-80965084e88b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -2945,15 +2927,14 @@ "nosniff" ], "x-ms-request-id": [ - "1a0e2084-f336-4508-b83e-02f0a55b93a0" - ], - "x-ms-client-request-id": [ - "66fde394-fd60-4628-b07f-f059e412dffc", - "66fde394-fd60-4628-b07f-f059e412dffc" + "" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-client-request-id": [ + "34eaa188-2675-4a86-90e5-80965084e88b" + ], "Server": [ "Microsoft-IIS/10.0" ], @@ -2964,16 +2945,16 @@ "149" ], "x-ms-correlation-request-id": [ - "1a0e2084-f336-4508-b83e-02f0a55b93a0" + "d1531a71-975e-4cd6-b303-c34f6b14ba0f" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220225T000522Z:1a0e2084-f336-4508-b83e-02f0a55b93a0" + "WESTINDIA:20220517T073801Z:d1531a71-975e-4cd6-b303-c34f6b14ba0f" ], "Date": [ - "Fri, 25 Feb 2022 00:05:22 GMT" + "Tue, 17 May 2022 07:38:01 GMT" ], "Content-Length": [ - "12" + "380" ], "Content-Type": [ "application/json" @@ -2982,26 +2963,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.RecoveryServices/vaults/PSTestRSV93055a66/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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSV8c1d8dac/backupProtectionContainers?$filter=friendlyName%20eq%20'PSTestVM8c1d80'%20and%20backupManagementType%20eq%20'AzureIaasVM'%20and%20status%20eq%20'Registered'&api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOGMxZDhkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y4YzFkOGRhYy9iYWNrdXBQcm90ZWN0aW9uQ29udGFpbmVycz8kZmlsdGVyPWZyaWVuZGx5TmFtZSUyMGVxJTIwJ1BTVGVzdFZNOGMxZDgwJyUyMGFuZCUyMGJhY2t1cE1hbmFnZW1lbnRUeXBlJTIwZXElMjAnQXp1cmVJYWFzVk0nJTIwYW5kJTIwc3RhdHVzJTIwZXElMjAnUmVnaXN0ZXJlZCcmYXBpLXZlcnNpb249MjAyMS0xMC0wMQ==", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.RecoveryServices/vaults/PSTestRSV93055a66/backupResourceGuardProxies?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTMwNTVhNjYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5MzA1NWE2Ni9iYWNrdXBSZXNvdXJjZUd1YXJkUHJveGllcz9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "660d9661-c417-47d2-b1f1-44e4c1a9db77" + "34eaa188-2675-4a86-90e5-80965084e88b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -3015,11 +2996,11 @@ "nosniff" ], "x-ms-request-id": [ - "2e6b4b3d-ee57-4de0-a0ec-a859ad1ba713" + "2be36d43-40e1-446b-b2bb-a157c19f8170" ], "x-ms-client-request-id": [ - "660d9661-c417-47d2-b1f1-44e4c1a9db77", - "660d9661-c417-47d2-b1f1-44e4c1a9db77" + "34eaa188-2675-4a86-90e5-80965084e88b", + "34eaa188-2675-4a86-90e5-80965084e88b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3030,20 +3011,20 @@ "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "148" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" ], "x-ms-correlation-request-id": [ - "2e6b4b3d-ee57-4de0-a0ec-a859ad1ba713" + "2be36d43-40e1-446b-b2bb-a157c19f8170" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220225T000601Z:2e6b4b3d-ee57-4de0-a0ec-a859ad1ba713" + "WESTINDIA:20220517T073802Z:2be36d43-40e1-446b-b2bb-a157c19f8170" ], "Date": [ - "Fri, 25 Feb 2022 00:06:00 GMT" + "Tue, 17 May 2022 07:38:01 GMT" ], "Content-Length": [ - "914" + "12" ], "Content-Type": [ "application/json" @@ -3052,26 +3033,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSV8c1d8dac/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrg8c1d8dac;pstestvm8c1d80\",\r\n \"name\": \"IaasVMContainer;iaasvmcontainerv2;pstestrg8c1d8dac;pstestvm8c1d80\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers\",\r\n \"properties\": {\r\n \"virtualMachineId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.Compute/virtualMachines/PSTestVM8c1d80\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"resourceGroup\": \"PSTestRG8c1d8dac\",\r\n \"friendlyName\": \"PSTestVM8c1d80\",\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}", + "ResponseBody": "{\r\n \"value\": []\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSV8c1d8dac/backupPolicies/DefaultPolicy?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOGMxZDhkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y4YzFkOGRhYy9iYWNrdXBQb2xpY2llcy9EZWZhdWx0UG9saWN5P2FwaS12ZXJzaW9uPTIwMjEtMTAtMDE=", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.RecoveryServices/vaults/PSTestRSV93055a66/backupResourceGuardProxies?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTMwNTVhNjYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5MzA1NWE2Ni9iYWNrdXBSZXNvdXJjZUd1YXJkUHJveGllcz9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d6097bd3-5f58-48a9-beb0-3304c7776451" + "01828bb4-6e6b-44d6-87c4-1ee93477d9d9" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -3085,11 +3066,11 @@ "nosniff" ], "x-ms-request-id": [ - "6539a21e-fa2e-4a24-8a64-301052fdc288" + "20e57294-4c66-4cc8-8c98-27433e280fef" ], "x-ms-client-request-id": [ - "d6097bd3-5f58-48a9-beb0-3304c7776451", - "d6097bd3-5f58-48a9-beb0-3304c7776451" + "01828bb4-6e6b-44d6-87c4-1ee93477d9d9", + "01828bb4-6e6b-44d6-87c4-1ee93477d9d9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3100,20 +3081,20 @@ "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "149" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" ], "x-ms-correlation-request-id": [ - "6539a21e-fa2e-4a24-8a64-301052fdc288" + "20e57294-4c66-4cc8-8c98-27433e280fef" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220225T000523Z:6539a21e-fa2e-4a24-8a64-301052fdc288" + "WESTINDIA:20220517T081037Z:20e57294-4c66-4cc8-8c98-27433e280fef" ], "Date": [ - "Fri, 25 Feb 2022 00:05:22 GMT" + "Tue, 17 May 2022 08:10:37 GMT" ], "Content-Length": [ - "762" + "12" ], "Content-Type": [ "application/json" @@ -3122,26 +3103,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSV8c1d8dac/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 \"2022-02-25T10:00:00Z\"\r\n ],\r\n \"scheduleWeeklyFrequency\": 0\r\n },\r\n \"retentionPolicy\": {\r\n \"retentionPolicyType\": \"LongTermRetentionPolicy\",\r\n \"dailySchedule\": {\r\n \"retentionTimes\": [\r\n \"2022-02-25T10:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 30,\r\n \"durationType\": \"Days\"\r\n }\r\n }\r\n },\r\n \"instantRpRetentionRangeInDays\": 2,\r\n \"timeZone\": \"UTC\",\r\n \"protectedItemsCount\": 0\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": []\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSV8c1d8dac/backupProtectableItems?$filter=backupManagementType%20eq%20'AzureIaasVM'&api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOGMxZDhkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y4YzFkOGRhYy9iYWNrdXBQcm90ZWN0YWJsZUl0ZW1zPyRmaWx0ZXI9YmFja3VwTWFuYWdlbWVudFR5cGUlMjBlcSUyMCdBenVyZUlhYXNWTScmYXBpLXZlcnNpb249MjAyMS0xMC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.RecoveryServices/vaults/PSTestRSV93055a66/backupconfig/vaultconfig?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTMwNTVhNjYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5MzA1NWE2Ni9iYWNrdXBjb25maWcvdmF1bHRjb25maWc/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "PATCH", + "RequestBody": "{\r\n \"properties\": {\r\n \"enhancedSecurityState\": \"Enabled\",\r\n \"softDeleteFeatureState\": \"Disabled\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "5f22ce82-aeda-4239-99bf-c83b35b976ab" + "34eaa188-2675-4a86-90e5-80965084e88b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "111" ] }, "ResponseHeaders": { @@ -3155,11 +3142,11 @@ "nosniff" ], "x-ms-request-id": [ - "1a79bd26-54c0-4ea3-827a-c35210ca0b3d" + "8a76683c-b1b1-4e43-ae4c-8403564a9015" ], "x-ms-client-request-id": [ - "5f22ce82-aeda-4239-99bf-c83b35b976ab", - "5f22ce82-aeda-4239-99bf-c83b35b976ab" + "34eaa188-2675-4a86-90e5-80965084e88b", + "34eaa188-2675-4a86-90e5-80965084e88b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3170,20 +3157,20 @@ "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "149" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" ], "x-ms-correlation-request-id": [ - "1a79bd26-54c0-4ea3-827a-c35210ca0b3d" + "8a76683c-b1b1-4e43-ae4c-8403564a9015" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220225T000523Z:1a79bd26-54c0-4ea3-827a-c35210ca0b3d" + "WESTINDIA:20220517T073803Z:8a76683c-b1b1-4e43-ae4c-8403564a9015" ], "Date": [ - "Fri, 25 Feb 2022 00:05:23 GMT" + "Tue, 17 May 2022 07:38:02 GMT" ], "Content-Length": [ - "905" + "381" ], "Content-Type": [ "application/json" @@ -3192,32 +3179,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSV8c1d8dac/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrg8c1d8dac;pstestvm8c1d80/protectableItems/vm;iaasvmcontainerv2;pstestrg8c1d8dac;pstestvm8c1d80\",\r\n \"name\": \"iaasvmcontainerv2;pstestrg8c1d8dac;pstestvm8c1d80\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems\",\r\n \"properties\": {\r\n \"virtualMachineId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.Compute/virtualMachines/PSTestVM8c1d80\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"resourceGroup\": \"PSTestRG8c1d8dac\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"protectableItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"friendlyName\": \"PSTestVM8c1d80\",\r\n \"protectionState\": \"NotProtected\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.RecoveryServices/vaults/PSTestRSV93055a66/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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSV8c1d8dac/backupFabrics/Azure/protectionContainers/IaasVMContainer%3Biaasvmcontainerv2%3Bpstestrg8c1d8dac%3Bpstestvm8c1d80/protectedItems/vm%3Biaasvmcontainerv2%3Bpstestrg8c1d8dac%3Bpstestvm8c1d80?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOGMxZDhkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y4YzFkOGRhYy9iYWNrdXBGYWJyaWNzL0F6dXJlL3Byb3RlY3Rpb25Db250YWluZXJzL0lhYXNWTUNvbnRhaW5lciUzQmlhYXN2bWNvbnRhaW5lcnYyJTNCcHN0ZXN0cmc4YzFkOGRhYyUzQnBzdGVzdHZtOGMxZDgwL3Byb3RlY3RlZEl0ZW1zL3ZtJTNCaWFhc3ZtY29udGFpbmVydjIlM0Jwc3Rlc3RyZzhjMWQ4ZGFjJTNCcHN0ZXN0dm04YzFkODA/YXBpLXZlcnNpb249MjAyMS0xMC0wMQ==", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"protectedItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"sourceResourceId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.Compute/virtualMachines/PSTestVM8c1d80\",\r\n \"policyId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSV8c1d8dac/backupPolicies/DefaultPolicy\"\r\n }\r\n}", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.RecoveryServices/vaults/PSTestRSV93055a66/backupProtectionContainers?$filter=friendlyName%20eq%20'PSTestVM930550'%20and%20backupManagementType%20eq%20'AzureIaasVM'%20and%20status%20eq%20'Registered'&api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTMwNTVhNjYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5MzA1NWE2Ni9iYWNrdXBQcm90ZWN0aW9uQ29udGFpbmVycz8kZmlsdGVyPWZyaWVuZGx5TmFtZSUyMGVxJTIwJ1BTVGVzdFZNOTMwNTUwJyUyMGFuZCUyMGJhY2t1cE1hbmFnZW1lbnRUeXBlJTIwZXElMjAnQXp1cmVJYWFzVk0nJTIwYW5kJTIwc3RhdHVzJTIwZXElMjAnUmVnaXN0ZXJlZCcmYXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5f22ce82-aeda-4239-99bf-c83b35b976ab" + "840d69a2-ca10-4d4b-a1bf-4eda51bef815" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "456" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -3227,70 +3208,67 @@ "Pragma": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSV8c1d8dac/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrg8c1d8dac;pstestvm8c1d80/protectedItems/vm;iaasvmcontainerv2;pstestrg8c1d8dac;pstestvm8c1d80/operationResults/cece0511-8f94-41c5-b0ff-1d37de3aa955?api-version=2021-10-01" - ], - "Retry-After": [ - "60" - ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSV8c1d8dac/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrg8c1d8dac;pstestvm8c1d80/protectedItems/vm;iaasvmcontainerv2;pstestrg8c1d8dac;pstestvm8c1d80/operationsStatus/cece0511-8f94-41c5-b0ff-1d37de3aa955?api-version=2021-10-01" - ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "41439951-b4aa-47cc-8cc5-31c6015d5675" + "8a92921d-283d-484e-aac1-57809ee6a861" ], "x-ms-client-request-id": [ - "5f22ce82-aeda-4239-99bf-c83b35b976ab", - "5f22ce82-aeda-4239-99bf-c83b35b976ab" + "840d69a2-ca10-4d4b-a1bf-4eda51bef815", + "840d69a2-ca10-4d4b-a1bf-4eda51bef815" ], "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-ratelimit-remaining-subscription-resource-requests": [ + "149" ], "x-ms-correlation-request-id": [ - "41439951-b4aa-47cc-8cc5-31c6015d5675" + "8a92921d-283d-484e-aac1-57809ee6a861" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220225T000525Z:41439951-b4aa-47cc-8cc5-31c6015d5675" + "WESTINDIA:20220517T073808Z:8a92921d-283d-484e-aac1-57809ee6a861" ], "Date": [ - "Fri, 25 Feb 2022 00:05:24 GMT" + "Tue, 17 May 2022 07:38:07 GMT" + ], + "Content-Length": [ + "12" + ], + "Content-Type": [ + "application/json" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, - "ResponseBody": "", - "StatusCode": 202 + "ResponseBody": "{\r\n \"value\": []\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSV8c1d8dac/backupOperations/cece0511-8f94-41c5-b0ff-1d37de3aa955?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOGMxZDhkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y4YzFkOGRhYy9iYWNrdXBPcGVyYXRpb25zL2NlY2UwNTExLThmOTQtNDFjNS1iMGZmLTFkMzdkZTNhYTk1NT9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.RecoveryServices/vaults/PSTestRSV93055a66/backupProtectionContainers?$filter=friendlyName%20eq%20'PSTestVM930550'%20and%20backupManagementType%20eq%20'AzureIaasVM'%20and%20status%20eq%20'Registered'&api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTMwNTVhNjYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5MzA1NWE2Ni9iYWNrdXBQcm90ZWN0aW9uQ29udGFpbmVycz8kZmlsdGVyPWZyaWVuZGx5TmFtZSUyMGVxJTIwJ1BTVGVzdFZNOTMwNTUwJyUyMGFuZCUyMGJhY2t1cE1hbmFnZW1lbnRUeXBlJTIwZXElMjAnQXp1cmVJYWFzVk0nJTIwYW5kJTIwc3RhdHVzJTIwZXElMjAnUmVnaXN0ZXJlZCcmYXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5f22ce82-aeda-4239-99bf-c83b35b976ab" + "6fe04ff0-b2c6-407e-b769-d657cc02db82" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -3304,11 +3282,11 @@ "nosniff" ], "x-ms-request-id": [ - "b484fac1-6c98-4817-a6d9-c1f526357bfe" + "59dba6f5-1113-4f71-a198-4a4db6572f82" ], "x-ms-client-request-id": [ - "5f22ce82-aeda-4239-99bf-c83b35b976ab", - "5f22ce82-aeda-4239-99bf-c83b35b976ab" + "6fe04ff0-b2c6-407e-b769-d657cc02db82", + "6fe04ff0-b2c6-407e-b769-d657cc02db82" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3320,19 +3298,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "149" + "148" ], "x-ms-correlation-request-id": [ - "b484fac1-6c98-4817-a6d9-c1f526357bfe" + "59dba6f5-1113-4f71-a198-4a4db6572f82" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220225T000525Z:b484fac1-6c98-4817-a6d9-c1f526357bfe" + "WESTINDIA:20220517T073855Z:59dba6f5-1113-4f71-a198-4a4db6572f82" ], "Date": [ - "Fri, 25 Feb 2022 00:05:25 GMT" + "Tue, 17 May 2022 07:38:55 GMT" ], "Content-Length": [ - "188" + "914" ], "Content-Type": [ "application/json" @@ -3341,26 +3319,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"cece0511-8f94-41c5-b0ff-1d37de3aa955\",\r\n \"name\": \"cece0511-8f94-41c5-b0ff-1d37de3aa955\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-25T00:05:24.7860059Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.RecoveryServices/vaults/PSTestRSV93055a66/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrg93055a66;pstestvm930550\",\r\n \"name\": \"IaasVMContainer;iaasvmcontainerv2;pstestrg93055a66;pstestvm930550\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers\",\r\n \"properties\": {\r\n \"virtualMachineId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.Compute/virtualMachines/PSTestVM930550\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"resourceGroup\": \"PSTestRG93055a66\",\r\n \"friendlyName\": \"PSTestVM930550\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSV8c1d8dac/backupOperations/cece0511-8f94-41c5-b0ff-1d37de3aa955?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOGMxZDhkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y4YzFkOGRhYy9iYWNrdXBPcGVyYXRpb25zL2NlY2UwNTExLThmOTQtNDFjNS1iMGZmLTFkMzdkZTNhYTk1NT9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.RecoveryServices/vaults/PSTestRSV93055a66/backupPolicies/DefaultPolicy?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTMwNTVhNjYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5MzA1NWE2Ni9iYWNrdXBQb2xpY2llcy9EZWZhdWx0UG9saWN5P2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5f22ce82-aeda-4239-99bf-c83b35b976ab" + "a87c6c20-f300-4d4b-99ad-fc16c47be1c4" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -3374,11 +3352,11 @@ "nosniff" ], "x-ms-request-id": [ - "6a1fb75a-bf03-433e-b502-7051d505de0d" + "793552f2-82d0-472f-ba92-597dfd5cc1f1" ], "x-ms-client-request-id": [ - "5f22ce82-aeda-4239-99bf-c83b35b976ab", - "5f22ce82-aeda-4239-99bf-c83b35b976ab" + "a87c6c20-f300-4d4b-99ad-fc16c47be1c4", + "a87c6c20-f300-4d4b-99ad-fc16c47be1c4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3390,19 +3368,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "148" + "149" ], "x-ms-correlation-request-id": [ - "6a1fb75a-bf03-433e-b502-7051d505de0d" + "793552f2-82d0-472f-ba92-597dfd5cc1f1" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220225T000536Z:6a1fb75a-bf03-433e-b502-7051d505de0d" + "WESTINDIA:20220517T073809Z:793552f2-82d0-472f-ba92-597dfd5cc1f1" ], "Date": [ - "Fri, 25 Feb 2022 00:05:35 GMT" + "Tue, 17 May 2022 07:38:08 GMT" ], "Content-Length": [ - "188" + "762" ], "Content-Type": [ "application/json" @@ -3411,26 +3389,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"cece0511-8f94-41c5-b0ff-1d37de3aa955\",\r\n \"name\": \"cece0511-8f94-41c5-b0ff-1d37de3aa955\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-25T00:05:24.7860059Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.RecoveryServices/vaults/PSTestRSV93055a66/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 \"2022-05-17T17: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 \"2022-05-17T17:30:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 30,\r\n \"durationType\": \"Days\"\r\n }\r\n }\r\n },\r\n \"instantRpRetentionRangeInDays\": 2,\r\n \"timeZone\": \"UTC\",\r\n \"protectedItemsCount\": 0\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSV8c1d8dac/backupOperations/cece0511-8f94-41c5-b0ff-1d37de3aa955?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOGMxZDhkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y4YzFkOGRhYy9iYWNrdXBPcGVyYXRpb25zL2NlY2UwNTExLThmOTQtNDFjNS1iMGZmLTFkMzdkZTNhYTk1NT9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.RecoveryServices/vaults/PSTestRSV93055a66/backupProtectableItems?$filter=backupManagementType%20eq%20'AzureIaasVM'&api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTMwNTVhNjYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5MzA1NWE2Ni9iYWNrdXBQcm90ZWN0YWJsZUl0ZW1zPyRmaWx0ZXI9YmFja3VwTWFuYWdlbWVudFR5cGUlMjBlcSUyMCdBenVyZUlhYXNWTScmYXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5f22ce82-aeda-4239-99bf-c83b35b976ab" + "f236bd8d-0755-4cac-ac6e-0b53270458cb" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -3444,11 +3422,11 @@ "nosniff" ], "x-ms-request-id": [ - "a3f3689a-9d8d-456a-b63e-ef67a22fc9c7" + "ed11881b-f5b6-4263-ad6c-8b8b288f3176" ], "x-ms-client-request-id": [ - "5f22ce82-aeda-4239-99bf-c83b35b976ab", - "5f22ce82-aeda-4239-99bf-c83b35b976ab" + "f236bd8d-0755-4cac-ac6e-0b53270458cb", + "f236bd8d-0755-4cac-ac6e-0b53270458cb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3460,19 +3438,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "147" + "149" ], "x-ms-correlation-request-id": [ - "a3f3689a-9d8d-456a-b63e-ef67a22fc9c7" + "ed11881b-f5b6-4263-ad6c-8b8b288f3176" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220225T000549Z:a3f3689a-9d8d-456a-b63e-ef67a22fc9c7" + "WESTINDIA:20220517T073809Z:ed11881b-f5b6-4263-ad6c-8b8b288f3176" ], "Date": [ - "Fri, 25 Feb 2022 00:05:48 GMT" + "Tue, 17 May 2022 07:38:08 GMT" ], "Content-Length": [ - "188" + "7033" ], "Content-Type": [ "application/json" @@ -3481,26 +3459,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"cece0511-8f94-41c5-b0ff-1d37de3aa955\",\r\n \"name\": \"cece0511-8f94-41c5-b0ff-1d37de3aa955\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-25T00:05:24.7860059Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.RecoveryServices/vaults/PSTestRSV93055a66/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;akneema;akneema-hana-vm/protectableItems/vm;iaasvmcontainerv2;akneema;akneema-hana-vm\",\r\n \"name\": \"iaasvmcontainerv2;akneema;akneema-hana-vm\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems\",\r\n \"properties\": {\r\n \"virtualMachineId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/akneema/providers/Microsoft.Compute/virtualMachines/akneema-hana-vm\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"resourceGroup\": \"akneema\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"protectableItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"friendlyName\": \"akneema-hana-vm\",\r\n \"protectionState\": \"NotProtected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.RecoveryServices/vaults/PSTestRSV93055a66/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;containerautoprotection;shrja-2019/protectableItems/vm;iaasvmcontainerv2;containerautoprotection;shrja-2019\",\r\n \"name\": \"iaasvmcontainerv2;containerautoprotection;shrja-2019\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems\",\r\n \"properties\": {\r\n \"virtualMachineId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/ContainerAutoProtection/providers/Microsoft.Compute/virtualMachines/shrja-2019\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"resourceGroup\": \"ContainerAutoProtection\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"protectableItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"friendlyName\": \"shrja-2019\",\r\n \"protectionState\": \"NotProtected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.RecoveryServices/vaults/PSTestRSV93055a66/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrg93055a66;pstestvm930550/protectableItems/vm;iaasvmcontainerv2;pstestrg93055a66;pstestvm930550\",\r\n \"name\": \"iaasvmcontainerv2;pstestrg93055a66;pstestvm930550\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems\",\r\n \"properties\": {\r\n \"virtualMachineId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.Compute/virtualMachines/PSTestVM930550\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"resourceGroup\": \"PSTestRG93055a66\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"protectableItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"friendlyName\": \"PSTestVM930550\",\r\n \"protectionState\": \"NotProtected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.RecoveryServices/vaults/PSTestRSV93055a66/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestwlrg1bca8;pstestwlvm1bca8/protectableItems/vm;iaasvmcontainerv2;pstestwlrg1bca8;pstestwlvm1bca8\",\r\n \"name\": \"iaasvmcontainerv2;pstestwlrg1bca8;pstestwlvm1bca8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems\",\r\n \"properties\": {\r\n \"virtualMachineId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/pstestwlRG1bca8/providers/Microsoft.Compute/virtualMachines/pstestwlvm1bca8\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"resourceGroup\": \"pstestwlRG1bca8\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"protectableItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"friendlyName\": \"pstestwlvm1bca8\",\r\n \"protectionState\": \"NotProtected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.RecoveryServices/vaults/PSTestRSV93055a66/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;shrja2008_group;shrja2008/protectableItems/vm;iaasvmcontainerv2;shrja2008_group;shrja2008\",\r\n \"name\": \"iaasvmcontainerv2;shrja2008_group;shrja2008\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems\",\r\n \"properties\": {\r\n \"virtualMachineId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/shrja2008_group/providers/Microsoft.Compute/virtualMachines/shrja2008\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"resourceGroup\": \"shrja2008_group\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"protectableItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"friendlyName\": \"shrja2008\",\r\n \"protectionState\": \"NotProtected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.RecoveryServices/vaults/PSTestRSV93055a66/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;shswain-rg-donotuse;dsdsdsad/protectableItems/vm;iaasvmcontainerv2;shswain-rg-donotuse;dsdsdsad\",\r\n \"name\": \"iaasvmcontainerv2;shswain-rg-donotuse;dsdsdsad\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems\",\r\n \"properties\": {\r\n \"virtualMachineId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/shswain-rg-donotuse/providers/Microsoft.Compute/virtualMachines/dsdsdsad\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"resourceGroup\": \"shswain-rg-donotuse\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"protectableItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"friendlyName\": \"dsdsdsad\",\r\n \"protectionState\": \"NotProtected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.RecoveryServices/vaults/PSTestRSV93055a66/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;shswain-rg-donotuse;iumjjkuui/protectableItems/vm;iaasvmcontainerv2;shswain-rg-donotuse;iumjjkuui\",\r\n \"name\": \"iaasvmcontainerv2;shswain-rg-donotuse;iumjjkuui\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems\",\r\n \"properties\": {\r\n \"virtualMachineId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/shswain-rg-donotuse/providers/Microsoft.Compute/virtualMachines/iumjjkuui\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"resourceGroup\": \"shswain-rg-donotuse\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"protectableItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"friendlyName\": \"iumjjkuui\",\r\n \"protectionState\": \"NotProtected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.RecoveryServices/vaults/PSTestRSV93055a66/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;sisi-rsv;sisi-mercury/protectableItems/vm;iaasvmcontainerv2;sisi-rsv;sisi-mercury\",\r\n \"name\": \"iaasvmcontainerv2;sisi-rsv;sisi-mercury\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems\",\r\n \"properties\": {\r\n \"virtualMachineId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/sisi-RSV/providers/Microsoft.Compute/virtualMachines/sisi-mercury\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"resourceGroup\": \"sisi-RSV\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"protectableItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"friendlyName\": \"sisi-mercury\",\r\n \"protectionState\": \"NotProtected\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSV8c1d8dac/backupOperations/cece0511-8f94-41c5-b0ff-1d37de3aa955?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOGMxZDhkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y4YzFkOGRhYy9iYWNrdXBPcGVyYXRpb25zL2NlY2UwNTExLThmOTQtNDFjNS1iMGZmLTFkMzdkZTNhYTk1NT9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.RecoveryServices/vaults/PSTestRSV93055a66/backupFabrics/Azure/protectionContainers/IaasVMContainer%3Biaasvmcontainerv2%3Bpstestrg93055a66%3Bpstestvm930550/protectedItems/vm%3Biaasvmcontainerv2%3Bpstestrg93055a66%3Bpstestvm930550?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTMwNTVhNjYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5MzA1NWE2Ni9iYWNrdXBGYWJyaWNzL0F6dXJlL3Byb3RlY3Rpb25Db250YWluZXJzL0lhYXNWTUNvbnRhaW5lciUzQmlhYXN2bWNvbnRhaW5lcnYyJTNCcHN0ZXN0cmc5MzA1NWE2NiUzQnBzdGVzdHZtOTMwNTUwL3Byb3RlY3RlZEl0ZW1zL3ZtJTNCaWFhc3ZtY29udGFpbmVydjIlM0Jwc3Rlc3RyZzkzMDU1YTY2JTNCcHN0ZXN0dm05MzA1NTA/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"protectedItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"sourceResourceId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.Compute/virtualMachines/PSTestVM930550\",\r\n \"policyId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.RecoveryServices/vaults/PSTestRSV93055a66/backupPolicies/DefaultPolicy\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "5f22ce82-aeda-4239-99bf-c83b35b976ab" + "f236bd8d-0755-4cac-ac6e-0b53270458cb" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "456" ] }, "ResponseHeaders": { @@ -3510,15 +3494,88 @@ "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.RecoveryServices/vaults/PSTestRSV93055a66/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrg93055a66;pstestvm930550/protectedItems/vm;iaasvmcontainerv2;pstestrg93055a66;pstestvm930550/operationResults/32057cf7-e8f2-42f6-91ed-a64eb32bba8d?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.RecoveryServices/vaults/PSTestRSV93055a66/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrg93055a66;pstestvm930550/protectedItems/vm;iaasvmcontainerv2;pstestrg93055a66;pstestvm930550/operationsStatus/32057cf7-e8f2-42f6-91ed-a64eb32bba8d?api-version=2022-02-01" + ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "43f437ca-1bf6-4c6a-9775-4f5def42d0ff" + "47e74027-be08-403e-b68d-14951c6021d1" ], "x-ms-client-request-id": [ - "5f22ce82-aeda-4239-99bf-c83b35b976ab", - "5f22ce82-aeda-4239-99bf-c83b35b976ab" + "f236bd8d-0755-4cac-ac6e-0b53270458cb", + "f236bd8d-0755-4cac-ac6e-0b53270458cb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-correlation-request-id": [ + "47e74027-be08-403e-b68d-14951c6021d1" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220517T073810Z:47e74027-be08-403e-b68d-14951c6021d1" + ], + "Date": [ + "Tue, 17 May 2022 07:38:09 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.RecoveryServices/vaults/PSTestRSV93055a66/backupOperations/32057cf7-e8f2-42f6-91ed-a64eb32bba8d?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTMwNTVhNjYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5MzA1NWE2Ni9iYWNrdXBPcGVyYXRpb25zLzMyMDU3Y2Y3LWU4ZjItNDJmNi05MWVkLWE2NGViMzJiYmE4ZD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f236bd8d-0755-4cac-ac6e-0b53270458cb" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "c5775bd8-5f68-4c97-86b8-888812dce0a1" + ], + "x-ms-client-request-id": [ + "f236bd8d-0755-4cac-ac6e-0b53270458cb", + "f236bd8d-0755-4cac-ac6e-0b53270458cb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3530,19 +3587,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "146" + "149" ], "x-ms-correlation-request-id": [ - "43f437ca-1bf6-4c6a-9775-4f5def42d0ff" + "c5775bd8-5f68-4c97-86b8-888812dce0a1" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220225T000559Z:43f437ca-1bf6-4c6a-9775-4f5def42d0ff" + "WESTINDIA:20220517T073810Z:c5775bd8-5f68-4c97-86b8-888812dce0a1" ], "Date": [ - "Fri, 25 Feb 2022 00:05:58 GMT" + "Tue, 17 May 2022 07:38:10 GMT" ], "Content-Length": [ - "304" + "188" ], "Content-Type": [ "application/json" @@ -3551,26 +3608,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"cece0511-8f94-41c5-b0ff-1d37de3aa955\",\r\n \"name\": \"cece0511-8f94-41c5-b0ff-1d37de3aa955\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-02-25T00:05:24.7860059Z\",\r\n \"endTime\": \"2022-02-25T00:05:24.7860059Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"3998d533-2d74-46d7-9671-e25006ebb3ab\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"32057cf7-e8f2-42f6-91ed-a64eb32bba8d\",\r\n \"name\": \"32057cf7-e8f2-42f6-91ed-a64eb32bba8d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T07:38:10.1597993Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSV8c1d8dac/backupOperations/cece0511-8f94-41c5-b0ff-1d37de3aa955?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOGMxZDhkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y4YzFkOGRhYy9iYWNrdXBPcGVyYXRpb25zL2NlY2UwNTExLThmOTQtNDFjNS1iMGZmLTFkMzdkZTNhYTk1NT9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.RecoveryServices/vaults/PSTestRSV93055a66/backupOperations/32057cf7-e8f2-42f6-91ed-a64eb32bba8d?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTMwNTVhNjYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5MzA1NWE2Ni9iYWNrdXBPcGVyYXRpb25zLzMyMDU3Y2Y3LWU4ZjItNDJmNi05MWVkLWE2NGViMzJiYmE4ZD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5f22ce82-aeda-4239-99bf-c83b35b976ab" + "f236bd8d-0755-4cac-ac6e-0b53270458cb" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -3584,11 +3641,11 @@ "nosniff" ], "x-ms-request-id": [ - "22c2f60e-ee30-46bf-bf8f-93ca690e76e1" + "925f8cdf-c191-4c01-b341-f703c70b4668" ], "x-ms-client-request-id": [ - "5f22ce82-aeda-4239-99bf-c83b35b976ab", - "5f22ce82-aeda-4239-99bf-c83b35b976ab" + "f236bd8d-0755-4cac-ac6e-0b53270458cb", + "f236bd8d-0755-4cac-ac6e-0b53270458cb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3600,19 +3657,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "145" + "148" ], "x-ms-correlation-request-id": [ - "22c2f60e-ee30-46bf-bf8f-93ca690e76e1" + "925f8cdf-c191-4c01-b341-f703c70b4668" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220225T000600Z:22c2f60e-ee30-46bf-bf8f-93ca690e76e1" + "WESTINDIA:20220517T073816Z:925f8cdf-c191-4c01-b341-f703c70b4668" ], "Date": [ - "Fri, 25 Feb 2022 00:05:59 GMT" + "Tue, 17 May 2022 07:38:15 GMT" ], "Content-Length": [ - "304" + "188" ], "Content-Type": [ "application/json" @@ -3621,26 +3678,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"cece0511-8f94-41c5-b0ff-1d37de3aa955\",\r\n \"name\": \"cece0511-8f94-41c5-b0ff-1d37de3aa955\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-02-25T00:05:24.7860059Z\",\r\n \"endTime\": \"2022-02-25T00:05:24.7860059Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"3998d533-2d74-46d7-9671-e25006ebb3ab\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"32057cf7-e8f2-42f6-91ed-a64eb32bba8d\",\r\n \"name\": \"32057cf7-e8f2-42f6-91ed-a64eb32bba8d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T07:38:10.1597993Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSV8c1d8dac/backupJobs/3998d533-2d74-46d7-9671-e25006ebb3ab?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOGMxZDhkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y4YzFkOGRhYy9iYWNrdXBKb2JzLzM5OThkNTMzLTJkNzQtNDZkNy05NjcxLWUyNTAwNmViYjNhYj9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.RecoveryServices/vaults/PSTestRSV93055a66/backupOperations/32057cf7-e8f2-42f6-91ed-a64eb32bba8d?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTMwNTVhNjYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5MzA1NWE2Ni9iYWNrdXBPcGVyYXRpb25zLzMyMDU3Y2Y3LWU4ZjItNDJmNi05MWVkLWE2NGViMzJiYmE4ZD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5f22ce82-aeda-4239-99bf-c83b35b976ab" + "f236bd8d-0755-4cac-ac6e-0b53270458cb" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -3650,40 +3707,249 @@ "Pragma": [ "no-cache" ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "f60296b7-49a3-4ea6-ac09-381111299910" + ], + "x-ms-client-request-id": [ + "f236bd8d-0755-4cac-ac6e-0b53270458cb", + "f236bd8d-0755-4cac-ac6e-0b53270458cb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "147" + ], + "x-ms-correlation-request-id": [ + "f60296b7-49a3-4ea6-ac09-381111299910" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220517T073821Z:f60296b7-49a3-4ea6-ac09-381111299910" + ], + "Date": [ + "Tue, 17 May 2022 07:38:20 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"32057cf7-e8f2-42f6-91ed-a64eb32bba8d\",\r\n \"name\": \"32057cf7-e8f2-42f6-91ed-a64eb32bba8d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T07:38:10.1597993Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.RecoveryServices/vaults/PSTestRSV93055a66/backupOperations/32057cf7-e8f2-42f6-91ed-a64eb32bba8d?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTMwNTVhNjYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5MzA1NWE2Ni9iYWNrdXBPcGVyYXRpb25zLzMyMDU3Y2Y3LWU4ZjItNDJmNi05MWVkLWE2NGViMzJiYmE4ZD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f236bd8d-0755-4cac-ac6e-0b53270458cb" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "d317b78b-a2f9-4813-95fa-860576c2efdd" + ], + "x-ms-client-request-id": [ + "f236bd8d-0755-4cac-ac6e-0b53270458cb", + "f236bd8d-0755-4cac-ac6e-0b53270458cb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "Server": [ - "Microsoft-IIS/10.0", "Microsoft-IIS/10.0" ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "146" + ], + "x-ms-correlation-request-id": [ + "d317b78b-a2f9-4813-95fa-860576c2efdd" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220517T073827Z:d317b78b-a2f9-4813-95fa-860576c2efdd" + ], + "Date": [ + "Tue, 17 May 2022 07:38:26 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"32057cf7-e8f2-42f6-91ed-a64eb32bba8d\",\r\n \"name\": \"32057cf7-e8f2-42f6-91ed-a64eb32bba8d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T07:38:10.1597993Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.RecoveryServices/vaults/PSTestRSV93055a66/backupOperations/32057cf7-e8f2-42f6-91ed-a64eb32bba8d?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTMwNTVhNjYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5MzA1NWE2Ni9iYWNrdXBPcGVyYXRpb25zLzMyMDU3Y2Y3LWU4ZjItNDJmNi05MWVkLWE2NGViMzJiYmE4ZD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f236bd8d-0755-4cac-ac6e-0b53270458cb" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "af9c068f-a4cd-42fc-a267-e9ff9288c5ce" + "d2fe5dfd-2ec2-448b-a635-1d4ec432db1f" ], "x-ms-client-request-id": [ - "5f22ce82-aeda-4239-99bf-c83b35b976ab", - "5f22ce82-aeda-4239-99bf-c83b35b976ab" + "f236bd8d-0755-4cac-ac6e-0b53270458cb", + "f236bd8d-0755-4cac-ac6e-0b53270458cb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" ], "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "145" + ], + "x-ms-correlation-request-id": [ + "d2fe5dfd-2ec2-448b-a635-1d4ec432db1f" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220517T073832Z:d2fe5dfd-2ec2-448b-a635-1d4ec432db1f" + ], + "Date": [ + "Tue, 17 May 2022 07:38:31 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"32057cf7-e8f2-42f6-91ed-a64eb32bba8d\",\r\n \"name\": \"32057cf7-e8f2-42f6-91ed-a64eb32bba8d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T07:38:10.1597993Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.RecoveryServices/vaults/PSTestRSV93055a66/backupOperations/32057cf7-e8f2-42f6-91ed-a64eb32bba8d?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTMwNTVhNjYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5MzA1NWE2Ni9iYWNrdXBPcGVyYXRpb25zLzMyMDU3Y2Y3LWU4ZjItNDJmNi05MWVkLWE2NGViMzJiYmE4ZD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f236bd8d-0755-4cac-ac6e-0b53270458cb" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "5fdce93c-7df7-473d-9c18-7896d26f7690" + ], + "x-ms-client-request-id": [ + "f236bd8d-0755-4cac-ac6e-0b53270458cb", + "f236bd8d-0755-4cac-ac6e-0b53270458cb" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "149" + "144" ], "x-ms-correlation-request-id": [ - "af9c068f-a4cd-42fc-a267-e9ff9288c5ce" + "5fdce93c-7df7-473d-9c18-7896d26f7690" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220225T000600Z:af9c068f-a4cd-42fc-a267-e9ff9288c5ce" + "WESTINDIA:20220517T073837Z:5fdce93c-7df7-473d-9c18-7896d26f7690" ], "Date": [ - "Fri, 25 Feb 2022 00:05:59 GMT" + "Tue, 17 May 2022 07:38:36 GMT" ], "Content-Length": [ - "840" + "188" ], "Content-Type": [ "application/json" @@ -3692,26 +3958,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSV8c1d8dac/backupJobs/3998d533-2d74-46d7-9671-e25006ebb3ab\",\r\n \"name\": \"3998d533-2d74-46d7-9671-e25006ebb3ab\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg8c1d8dac;pstestvm8c1d80\",\r\n \"duration\": \"PT31.0217678S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm8c1d80\",\r\n \"Policy Name\": \"DefaultPolicy\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm8c1d80\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"ConfigureBackup\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-02-25T00:05:24.7860059Z\",\r\n \"endTime\": \"2022-02-25T00:05:55.8077737Z\",\r\n \"activityId\": \"5f22ce82-aeda-4239-99bf-c83b35b976ab\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"32057cf7-e8f2-42f6-91ed-a64eb32bba8d\",\r\n \"name\": \"32057cf7-e8f2-42f6-91ed-a64eb32bba8d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T07:38:10.1597993Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSV8c1d8dac/backupProtectedItems?$filter=backupManagementType%20eq%20'AzureIaasVM'%20and%20itemType%20eq%20'VM'&api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOGMxZDhkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y4YzFkOGRhYy9iYWNrdXBQcm90ZWN0ZWRJdGVtcz8kZmlsdGVyPWJhY2t1cE1hbmFnZW1lbnRUeXBlJTIwZXElMjAnQXp1cmVJYWFzVk0nJTIwYW5kJTIwaXRlbVR5cGUlMjBlcSUyMCdWTScmYXBpLXZlcnNpb249MjAyMS0xMC0wMQ==", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.RecoveryServices/vaults/PSTestRSV93055a66/backupOperations/32057cf7-e8f2-42f6-91ed-a64eb32bba8d?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTMwNTVhNjYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5MzA1NWE2Ni9iYWNrdXBPcGVyYXRpb25zLzMyMDU3Y2Y3LWU4ZjItNDJmNi05MWVkLWE2NGViMzJiYmE4ZD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "af2181c5-8769-4ce7-b6bd-25e4d6dfa6e4" + "f236bd8d-0755-4cac-ac6e-0b53270458cb" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -3725,11 +3991,11 @@ "nosniff" ], "x-ms-request-id": [ - "f2c5dcd9-5903-4af6-8e21-7ca76a3e5a40" + "60d5524e-f10f-4918-bfab-d8ccf351a13b" ], "x-ms-client-request-id": [ - "af2181c5-8769-4ce7-b6bd-25e4d6dfa6e4", - "af2181c5-8769-4ce7-b6bd-25e4d6dfa6e4" + "f236bd8d-0755-4cac-ac6e-0b53270458cb", + "f236bd8d-0755-4cac-ac6e-0b53270458cb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3741,19 +4007,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "149" + "143" ], "x-ms-correlation-request-id": [ - "f2c5dcd9-5903-4af6-8e21-7ca76a3e5a40" + "60d5524e-f10f-4918-bfab-d8ccf351a13b" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220225T000601Z:f2c5dcd9-5903-4af6-8e21-7ca76a3e5a40" + "WESTINDIA:20220517T073843Z:60d5524e-f10f-4918-bfab-d8ccf351a13b" ], "Date": [ - "Fri, 25 Feb 2022 00:06:01 GMT" + "Tue, 17 May 2022 07:38:42 GMT" ], "Content-Length": [ - "1495" + "188" ], "Content-Type": [ "application/json" @@ -3762,26 +4028,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSV8c1d8dac/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrg8c1d8dac;pstestvm8c1d80/protectedItems/VM;iaasvmcontainerv2;pstestrg8c1d8dac;pstestvm8c1d80\",\r\n \"name\": \"VM;iaasvmcontainerv2;pstestrg8c1d8dac;pstestvm8c1d80\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems\",\r\n \"properties\": {\r\n \"kpisHealths\": {},\r\n \"friendlyName\": \"PSTestVM8c1d80\",\r\n \"virtualMachineId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.Compute/virtualMachines/PSTestVM8c1d80\",\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\": \"35184894227107\",\r\n \"protectedItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"workloadType\": \"VM\",\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg8c1d8dac;pstestvm8c1d80\",\r\n \"sourceResourceId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.Compute/virtualMachines/PSTestVM8c1d80\",\r\n \"policyId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSV8c1d8dac/backupPolicies/DefaultPolicy\",\r\n \"policyName\": \"DefaultPolicy\",\r\n \"isArchiveEnabled\": false\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"32057cf7-e8f2-42f6-91ed-a64eb32bba8d\",\r\n \"name\": \"32057cf7-e8f2-42f6-91ed-a64eb32bba8d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T07:38:10.1597993Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSV8c1d8dac/backupProtectedItems?$filter=backupManagementType%20eq%20'AzureIaasVM'%20and%20itemType%20eq%20'VM'&api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOGMxZDhkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y4YzFkOGRhYy9iYWNrdXBQcm90ZWN0ZWRJdGVtcz8kZmlsdGVyPWJhY2t1cE1hbmFnZW1lbnRUeXBlJTIwZXElMjAnQXp1cmVJYWFzVk0nJTIwYW5kJTIwaXRlbVR5cGUlMjBlcSUyMCdWTScmYXBpLXZlcnNpb249MjAyMS0xMC0wMQ==", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.RecoveryServices/vaults/PSTestRSV93055a66/backupOperations/32057cf7-e8f2-42f6-91ed-a64eb32bba8d?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTMwNTVhNjYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5MzA1NWE2Ni9iYWNrdXBPcGVyYXRpb25zLzMyMDU3Y2Y3LWU4ZjItNDJmNi05MWVkLWE2NGViMzJiYmE4ZD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6b05fb95-09d7-4b48-98b8-608d8534ff7d" + "f236bd8d-0755-4cac-ac6e-0b53270458cb" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -3795,11 +4061,11 @@ "nosniff" ], "x-ms-request-id": [ - "284051de-8c57-444f-b8ed-92f9a206a6b3" + "a970b0dc-0772-49da-88d3-ed6b1d8e9cb8" ], "x-ms-client-request-id": [ - "6b05fb95-09d7-4b48-98b8-608d8534ff7d", - "6b05fb95-09d7-4b48-98b8-608d8534ff7d" + "f236bd8d-0755-4cac-ac6e-0b53270458cb", + "f236bd8d-0755-4cac-ac6e-0b53270458cb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3811,19 +4077,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "148" + "142" ], "x-ms-correlation-request-id": [ - "284051de-8c57-444f-b8ed-92f9a206a6b3" + "a970b0dc-0772-49da-88d3-ed6b1d8e9cb8" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220225T005918Z:284051de-8c57-444f-b8ed-92f9a206a6b3" + "WESTINDIA:20220517T073848Z:a970b0dc-0772-49da-88d3-ed6b1d8e9cb8" ], "Date": [ - "Fri, 25 Feb 2022 00:59:18 GMT" + "Tue, 17 May 2022 07:38:48 GMT" ], "Content-Length": [ - "1870" + "188" ], "Content-Type": [ "application/json" @@ -3832,26 +4098,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSV8c1d8dac/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrg8c1d8dac;pstestvm8c1d80/protectedItems/VM;iaasvmcontainerv2;pstestrg8c1d8dac;pstestvm8c1d80\",\r\n \"name\": \"VM;iaasvmcontainerv2;pstestrg8c1d8dac;pstestvm8c1d80\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems\",\r\n \"properties\": {\r\n \"kpisHealths\": {\r\n \"BackupOperationStatusKPI\": {\r\n \"resourceHealthStatus\": \"Healthy\",\r\n \"resourceHealthDetails\": [\r\n {\r\n \"code\": 0,\r\n \"title\": \"Success\",\r\n \"message\": \"\",\r\n \"recommendations\": []\r\n }\r\n ]\r\n }\r\n },\r\n \"friendlyName\": \"PSTestVM8c1d80\",\r\n \"virtualMachineId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.Compute/virtualMachines/PSTestVM8c1d80\",\r\n \"protectionStatus\": \"Healthy\",\r\n \"protectionState\": \"Protected\",\r\n \"healthStatus\": \"Passed\",\r\n \"healthDetails\": [\r\n {\r\n \"code\": 400239,\r\n \"title\": \"IaasVmHealthGreenDefault\",\r\n \"message\": \"Backup pre-check status of this virtual machine is OK.\",\r\n \"recommendations\": []\r\n }\r\n ],\r\n \"lastBackupStatus\": \"Completed\",\r\n \"lastBackupTime\": \"2022-02-25T00:06:03.2288224Z\",\r\n \"protectedItemDataId\": \"35184894227107\",\r\n \"protectedItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"workloadType\": \"VM\",\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg8c1d8dac;pstestvm8c1d80\",\r\n \"sourceResourceId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.Compute/virtualMachines/PSTestVM8c1d80\",\r\n \"policyId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSV8c1d8dac/backupPolicies/DefaultPolicy\",\r\n \"policyName\": \"DefaultPolicy\",\r\n \"lastRecoveryPoint\": \"2022-02-25T00:07:24.8985094Z\",\r\n \"isArchiveEnabled\": false\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"32057cf7-e8f2-42f6-91ed-a64eb32bba8d\",\r\n \"name\": \"32057cf7-e8f2-42f6-91ed-a64eb32bba8d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T07:38:10.1597993Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSV8c1d8dac/backupFabrics/Azure/protectionContainers/IaasVMContainer%3Biaasvmcontainerv2%3Bpstestrg8c1d8dac%3Bpstestvm8c1d80/protectedItems/VM%3Biaasvmcontainerv2%3Bpstestrg8c1d8dac%3Bpstestvm8c1d80?$filter=expand%20eq%20'extendedinfo'&api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOGMxZDhkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y4YzFkOGRhYy9iYWNrdXBGYWJyaWNzL0F6dXJlL3Byb3RlY3Rpb25Db250YWluZXJzL0lhYXNWTUNvbnRhaW5lciUzQmlhYXN2bWNvbnRhaW5lcnYyJTNCcHN0ZXN0cmc4YzFkOGRhYyUzQnBzdGVzdHZtOGMxZDgwL3Byb3RlY3RlZEl0ZW1zL1ZNJTNCaWFhc3ZtY29udGFpbmVydjIlM0Jwc3Rlc3RyZzhjMWQ4ZGFjJTNCcHN0ZXN0dm04YzFkODA/JGZpbHRlcj1leHBhbmQlMjBlcSUyMCdleHRlbmRlZGluZm8nJmFwaS12ZXJzaW9uPTIwMjEtMTAtMDE=", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.RecoveryServices/vaults/PSTestRSV93055a66/backupOperations/32057cf7-e8f2-42f6-91ed-a64eb32bba8d?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTMwNTVhNjYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5MzA1NWE2Ni9iYWNrdXBPcGVyYXRpb25zLzMyMDU3Y2Y3LWU4ZjItNDJmNi05MWVkLWE2NGViMzJiYmE4ZD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "af2181c5-8769-4ce7-b6bd-25e4d6dfa6e4" + "f236bd8d-0755-4cac-ac6e-0b53270458cb" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -3865,11 +4131,11 @@ "nosniff" ], "x-ms-request-id": [ - "4213571b-5214-4a24-9c7a-f9493b56ee00" + "92c2cd23-7dd5-4498-9bf8-8085e255750c" ], "x-ms-client-request-id": [ - "af2181c5-8769-4ce7-b6bd-25e4d6dfa6e4", - "af2181c5-8769-4ce7-b6bd-25e4d6dfa6e4" + "f236bd8d-0755-4cac-ac6e-0b53270458cb", + "f236bd8d-0755-4cac-ac6e-0b53270458cb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3881,19 +4147,2079 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "149" + "141" + ], + "x-ms-correlation-request-id": [ + "92c2cd23-7dd5-4498-9bf8-8085e255750c" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220517T073854Z:92c2cd23-7dd5-4498-9bf8-8085e255750c" + ], + "Date": [ + "Tue, 17 May 2022 07:38:54 GMT" + ], + "Content-Length": [ + "304" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"32057cf7-e8f2-42f6-91ed-a64eb32bba8d\",\r\n \"name\": \"32057cf7-e8f2-42f6-91ed-a64eb32bba8d\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-05-17T07:38:10.1597993Z\",\r\n \"endTime\": \"2022-05-17T07:38:10.1597993Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"50204d91-9f70-4973-a3ee-a6a67c6fc494\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.RecoveryServices/vaults/PSTestRSV93055a66/backupOperations/32057cf7-e8f2-42f6-91ed-a64eb32bba8d?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTMwNTVhNjYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5MzA1NWE2Ni9iYWNrdXBPcGVyYXRpb25zLzMyMDU3Y2Y3LWU4ZjItNDJmNi05MWVkLWE2NGViMzJiYmE4ZD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f236bd8d-0755-4cac-ac6e-0b53270458cb" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "a3628c5a-3e4b-4f50-8286-22674684ff9a" + ], + "x-ms-client-request-id": [ + "f236bd8d-0755-4cac-ac6e-0b53270458cb", + "f236bd8d-0755-4cac-ac6e-0b53270458cb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "140" + ], + "x-ms-correlation-request-id": [ + "a3628c5a-3e4b-4f50-8286-22674684ff9a" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220517T073854Z:a3628c5a-3e4b-4f50-8286-22674684ff9a" + ], + "Date": [ + "Tue, 17 May 2022 07:38:54 GMT" + ], + "Content-Length": [ + "304" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"32057cf7-e8f2-42f6-91ed-a64eb32bba8d\",\r\n \"name\": \"32057cf7-e8f2-42f6-91ed-a64eb32bba8d\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-05-17T07:38:10.1597993Z\",\r\n \"endTime\": \"2022-05-17T07:38:10.1597993Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"50204d91-9f70-4973-a3ee-a6a67c6fc494\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.RecoveryServices/vaults/PSTestRSV93055a66/backupJobs/50204d91-9f70-4973-a3ee-a6a67c6fc494?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTMwNTVhNjYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5MzA1NWE2Ni9iYWNrdXBKb2JzLzUwMjA0ZDkxLTlmNzAtNDk3My1hM2VlLWE2YTY3YzZmYzQ5ND9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f236bd8d-0755-4cac-ac6e-0b53270458cb" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.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": [ + "6996ff59-0fac-4524-89e9-b4590b823984" + ], + "x-ms-client-request-id": [ + "f236bd8d-0755-4cac-ac6e-0b53270458cb", + "f236bd8d-0755-4cac-ac6e-0b53270458cb" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "149" + ], + "x-ms-correlation-request-id": [ + "6996ff59-0fac-4524-89e9-b4590b823984" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220517T073855Z:6996ff59-0fac-4524-89e9-b4590b823984" + ], + "Date": [ + "Tue, 17 May 2022 07:38:55 GMT" + ], + "Content-Length": [ + "840" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.RecoveryServices/vaults/PSTestRSV93055a66/backupJobs/50204d91-9f70-4973-a3ee-a6a67c6fc494\",\r\n \"name\": \"50204d91-9f70-4973-a3ee-a6a67c6fc494\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg93055a66;pstestvm930550\",\r\n \"duration\": \"PT41.3455424S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm930550\",\r\n \"Policy Name\": \"DefaultPolicy\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm930550\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"ConfigureBackup\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-05-17T07:38:10.1597993Z\",\r\n \"endTime\": \"2022-05-17T07:38:51.5053417Z\",\r\n \"activityId\": \"f236bd8d-0755-4cac-ac6e-0b53270458cb\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.RecoveryServices/vaults/PSTestRSV93055a66/backupProtectedItems?$filter=backupManagementType%20eq%20'AzureIaasVM'%20and%20itemType%20eq%20'VM'&api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTMwNTVhNjYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5MzA1NWE2Ni9iYWNrdXBQcm90ZWN0ZWRJdGVtcz8kZmlsdGVyPWJhY2t1cE1hbmFnZW1lbnRUeXBlJTIwZXElMjAnQXp1cmVJYWFzVk0nJTIwYW5kJTIwaXRlbVR5cGUlMjBlcSUyMCdWTScmYXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "73d49b12-e6c6-41a7-b90c-395ea2d3fa40" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "1b630dcb-da16-4e8b-bed2-be24b95d4e85" + ], + "x-ms-client-request-id": [ + "73d49b12-e6c6-41a7-b90c-395ea2d3fa40", + "73d49b12-e6c6-41a7-b90c-395ea2d3fa40" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "149" + ], + "x-ms-correlation-request-id": [ + "1b630dcb-da16-4e8b-bed2-be24b95d4e85" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220517T073856Z:1b630dcb-da16-4e8b-bed2-be24b95d4e85" + ], + "Date": [ + "Tue, 17 May 2022 07:38:56 GMT" + ], + "Content-Length": [ + "1490" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.RecoveryServices/vaults/PSTestRSV93055a66/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrg93055a66;pstestvm930550/protectedItems/VM;iaasvmcontainerv2;pstestrg93055a66;pstestvm930550\",\r\n \"name\": \"VM;iaasvmcontainerv2;pstestrg93055a66;pstestvm930550\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems\",\r\n \"properties\": {\r\n \"kpisHealths\": {},\r\n \"friendlyName\": \"PSTestVM930550\",\r\n \"virtualMachineId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.Compute/virtualMachines/PSTestVM930550\",\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\": \"831436747\",\r\n \"protectedItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"workloadType\": \"VM\",\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg93055a66;pstestvm930550\",\r\n \"sourceResourceId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.Compute/virtualMachines/PSTestVM930550\",\r\n \"policyId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.RecoveryServices/vaults/PSTestRSV93055a66/backupPolicies/DefaultPolicy\",\r\n \"policyName\": \"DefaultPolicy\",\r\n \"isArchiveEnabled\": false\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.RecoveryServices/vaults/PSTestRSV93055a66/backupProtectedItems?$filter=backupManagementType%20eq%20'AzureIaasVM'%20and%20itemType%20eq%20'VM'&api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTMwNTVhNjYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5MzA1NWE2Ni9iYWNrdXBQcm90ZWN0ZWRJdGVtcz8kZmlsdGVyPWJhY2t1cE1hbmFnZW1lbnRUeXBlJTIwZXElMjAnQXp1cmVJYWFzVk0nJTIwYW5kJTIwaXRlbVR5cGUlMjBlcSUyMCdWTScmYXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1bb7cd2b-2ddb-40f5-ab58-3ad158937f0f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "7331d1ff-c75c-4330-aed6-fc357a796637" + ], + "x-ms-client-request-id": [ + "1bb7cd2b-2ddb-40f5-ab58-3ad158937f0f", + "1bb7cd2b-2ddb-40f5-ab58-3ad158937f0f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "148" + ], + "x-ms-correlation-request-id": [ + "7331d1ff-c75c-4330-aed6-fc357a796637" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220517T081036Z:7331d1ff-c75c-4330-aed6-fc357a796637" + ], + "Date": [ + "Tue, 17 May 2022 08:10:36 GMT" + ], + "Content-Length": [ + "1864" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.RecoveryServices/vaults/PSTestRSV93055a66/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrg93055a66;pstestvm930550/protectedItems/VM;iaasvmcontainerv2;pstestrg93055a66;pstestvm930550\",\r\n \"name\": \"VM;iaasvmcontainerv2;pstestrg93055a66;pstestvm930550\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems\",\r\n \"properties\": {\r\n \"kpisHealths\": {\r\n \"BackupOperationStatusKPI\": {\r\n \"resourceHealthStatus\": \"Healthy\",\r\n \"resourceHealthDetails\": [\r\n {\r\n \"code\": 0,\r\n \"title\": \"Success\",\r\n \"message\": \"\",\r\n \"recommendations\": []\r\n }\r\n ]\r\n }\r\n },\r\n \"friendlyName\": \"PSTestVM930550\",\r\n \"virtualMachineId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.Compute/virtualMachines/PSTestVM930550\",\r\n \"protectionStatus\": \"Healthy\",\r\n \"protectionState\": \"Protected\",\r\n \"healthStatus\": \"Passed\",\r\n \"healthDetails\": [\r\n {\r\n \"code\": 400239,\r\n \"title\": \"IaasVmHealthGreenDefault\",\r\n \"message\": \"Backup pre-check status of this virtual machine is OK.\",\r\n \"recommendations\": []\r\n }\r\n ],\r\n \"lastBackupStatus\": \"Completed\",\r\n \"lastBackupTime\": \"2022-05-17T07:38:57.2855123Z\",\r\n \"protectedItemDataId\": \"831436747\",\r\n \"protectedItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"workloadType\": \"VM\",\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg93055a66;pstestvm930550\",\r\n \"sourceResourceId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.Compute/virtualMachines/PSTestVM930550\",\r\n \"policyId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.RecoveryServices/vaults/PSTestRSV93055a66/backupPolicies/DefaultPolicy\",\r\n \"policyName\": \"DefaultPolicy\",\r\n \"lastRecoveryPoint\": \"2022-05-17T07:39:01.585987Z\",\r\n \"isArchiveEnabled\": false\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.RecoveryServices/vaults/PSTestRSV93055a66/backupFabrics/Azure/protectionContainers/IaasVMContainer%3Biaasvmcontainerv2%3Bpstestrg93055a66%3Bpstestvm930550/protectedItems/VM%3Biaasvmcontainerv2%3Bpstestrg93055a66%3Bpstestvm930550?$filter=expand%20eq%20'extendedinfo'&api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTMwNTVhNjYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5MzA1NWE2Ni9iYWNrdXBGYWJyaWNzL0F6dXJlL3Byb3RlY3Rpb25Db250YWluZXJzL0lhYXNWTUNvbnRhaW5lciUzQmlhYXN2bWNvbnRhaW5lcnYyJTNCcHN0ZXN0cmc5MzA1NWE2NiUzQnBzdGVzdHZtOTMwNTUwL3Byb3RlY3RlZEl0ZW1zL1ZNJTNCaWFhc3ZtY29udGFpbmVydjIlM0Jwc3Rlc3RyZzkzMDU1YTY2JTNCcHN0ZXN0dm05MzA1NTA/JGZpbHRlcj1leHBhbmQlMjBlcSUyMCdleHRlbmRlZGluZm8nJmFwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "73d49b12-e6c6-41a7-b90c-395ea2d3fa40" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "c664f109-a1ab-4d7c-aaec-e7ac719174c5" + ], + "x-ms-client-request-id": [ + "73d49b12-e6c6-41a7-b90c-395ea2d3fa40", + "73d49b12-e6c6-41a7-b90c-395ea2d3fa40" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "149" + ], + "x-ms-correlation-request-id": [ + "c664f109-a1ab-4d7c-aaec-e7ac719174c5" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220517T073856Z:c664f109-a1ab-4d7c-aaec-e7ac719174c5" + ], + "Date": [ + "Tue, 17 May 2022 07:38:56 GMT" + ], + "Content-Length": [ + "1545" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.RecoveryServices/vaults/PSTestRSV93055a66/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrg93055a66;pstestvm930550/protectedItems/VM;iaasvmcontainerv2;pstestrg93055a66;pstestvm930550\",\r\n \"name\": \"VM;iaasvmcontainerv2;pstestrg93055a66;pstestvm930550\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems\",\r\n \"properties\": {\r\n \"kpisHealths\": {},\r\n \"friendlyName\": \"PSTestVM930550\",\r\n \"virtualMachineId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.Compute/virtualMachines/PSTestVM930550\",\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\": \"831436747\",\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;pstestrg93055a66;pstestvm930550\",\r\n \"sourceResourceId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.Compute/virtualMachines/PSTestVM930550\",\r\n \"policyId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.RecoveryServices/vaults/PSTestRSV93055a66/backupPolicies/DefaultPolicy\",\r\n \"policyName\": \"DefaultPolicy\",\r\n \"isArchiveEnabled\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.RecoveryServices/vaults/PSTestRSV93055a66/backupFabrics/Azure/protectionContainers/IaasVMContainer%3Biaasvmcontainerv2%3Bpstestrg93055a66%3Bpstestvm930550/protectedItems/VM%3Biaasvmcontainerv2%3Bpstestrg93055a66%3Bpstestvm930550/backup?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTMwNTVhNjYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5MzA1NWE2Ni9iYWNrdXBGYWJyaWNzL0F6dXJlL3Byb3RlY3Rpb25Db250YWluZXJzL0lhYXNWTUNvbnRhaW5lciUzQmlhYXN2bWNvbnRhaW5lcnYyJTNCcHN0ZXN0cmc5MzA1NWE2NiUzQnBzdGVzdHZtOTMwNTUwL3Byb3RlY3RlZEl0ZW1zL1ZNJTNCaWFhc3ZtY29udGFpbmVydjIlM0Jwc3Rlc3RyZzkzMDU1YTY2JTNCcHN0ZXN0dm05MzA1NTAvYmFja3VwP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"properties\": {\r\n \"objectType\": \"IaasVMBackupRequest\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2ba81a29-0c1c-4d3c-836e-57a9712d77c3" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "69" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.RecoveryServices/vaults/PSTestRSV93055a66/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrg93055a66;pstestvm930550/protectedItems/VM;iaasvmcontainerv2;pstestrg93055a66;pstestvm930550/operationResults/3d89551a-6bce-4f50-b429-9ebc8d62b9dc?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.RecoveryServices/vaults/PSTestRSV93055a66/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrg93055a66;pstestvm930550/protectedItems/VM;iaasvmcontainerv2;pstestrg93055a66;pstestvm930550/operationsStatus/3d89551a-6bce-4f50-b429-9ebc8d62b9dc?api-version=2022-02-01" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "a7ac6001-edab-47db-811d-71ed5ee3a0ce" + ], + "x-ms-client-request-id": [ + "2ba81a29-0c1c-4d3c-836e-57a9712d77c3", + "2ba81a29-0c1c-4d3c-836e-57a9712d77c3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "a7ac6001-edab-47db-811d-71ed5ee3a0ce" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220517T073857Z:a7ac6001-edab-47db-811d-71ed5ee3a0ce" + ], + "Date": [ + "Tue, 17 May 2022 07:38:57 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.RecoveryServices/vaults/PSTestRSV93055a66/backupOperations/3d89551a-6bce-4f50-b429-9ebc8d62b9dc?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTMwNTVhNjYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5MzA1NWE2Ni9iYWNrdXBPcGVyYXRpb25zLzNkODk1NTFhLTZiY2UtNGY1MC1iNDI5LTllYmM4ZDYyYjlkYz9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2ba81a29-0c1c-4d3c-836e-57a9712d77c3" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "985992d0-f5b0-4a4e-9594-e36141ee6703" + ], + "x-ms-client-request-id": [ + "2ba81a29-0c1c-4d3c-836e-57a9712d77c3", + "2ba81a29-0c1c-4d3c-836e-57a9712d77c3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "139" + ], + "x-ms-correlation-request-id": [ + "985992d0-f5b0-4a4e-9594-e36141ee6703" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220517T073857Z:985992d0-f5b0-4a4e-9594-e36141ee6703" + ], + "Date": [ + "Tue, 17 May 2022 07:38:57 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"3d89551a-6bce-4f50-b429-9ebc8d62b9dc\",\r\n \"name\": \"3d89551a-6bce-4f50-b429-9ebc8d62b9dc\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T07:38:57.2855123Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.RecoveryServices/vaults/PSTestRSV93055a66/backupOperations/3d89551a-6bce-4f50-b429-9ebc8d62b9dc?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTMwNTVhNjYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5MzA1NWE2Ni9iYWNrdXBPcGVyYXRpb25zLzNkODk1NTFhLTZiY2UtNGY1MC1iNDI5LTllYmM4ZDYyYjlkYz9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2ba81a29-0c1c-4d3c-836e-57a9712d77c3" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "2dd15997-cd2d-4d7d-a9e2-c77ae3cf8082" + ], + "x-ms-client-request-id": [ + "2ba81a29-0c1c-4d3c-836e-57a9712d77c3", + "2ba81a29-0c1c-4d3c-836e-57a9712d77c3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "138" + ], + "x-ms-correlation-request-id": [ + "2dd15997-cd2d-4d7d-a9e2-c77ae3cf8082" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220517T073903Z:2dd15997-cd2d-4d7d-a9e2-c77ae3cf8082" + ], + "Date": [ + "Tue, 17 May 2022 07:39:03 GMT" + ], + "Content-Length": [ + "304" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"3d89551a-6bce-4f50-b429-9ebc8d62b9dc\",\r\n \"name\": \"3d89551a-6bce-4f50-b429-9ebc8d62b9dc\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-05-17T07:38:57.2855123Z\",\r\n \"endTime\": \"2022-05-17T07:38:57.2855123Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"e08b8611-4be2-47d1-b445-b7a7442fec10\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.RecoveryServices/vaults/PSTestRSV93055a66/backupOperations/3d89551a-6bce-4f50-b429-9ebc8d62b9dc?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTMwNTVhNjYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5MzA1NWE2Ni9iYWNrdXBPcGVyYXRpb25zLzNkODk1NTFhLTZiY2UtNGY1MC1iNDI5LTllYmM4ZDYyYjlkYz9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2ba81a29-0c1c-4d3c-836e-57a9712d77c3" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "3227c092-cc0f-4f3d-9beb-9322b73cd3a0" + ], + "x-ms-client-request-id": [ + "2ba81a29-0c1c-4d3c-836e-57a9712d77c3", + "2ba81a29-0c1c-4d3c-836e-57a9712d77c3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "137" + ], + "x-ms-correlation-request-id": [ + "3227c092-cc0f-4f3d-9beb-9322b73cd3a0" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220517T073903Z:3227c092-cc0f-4f3d-9beb-9322b73cd3a0" + ], + "Date": [ + "Tue, 17 May 2022 07:39:03 GMT" + ], + "Content-Length": [ + "304" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"3d89551a-6bce-4f50-b429-9ebc8d62b9dc\",\r\n \"name\": \"3d89551a-6bce-4f50-b429-9ebc8d62b9dc\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-05-17T07:38:57.2855123Z\",\r\n \"endTime\": \"2022-05-17T07:38:57.2855123Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"e08b8611-4be2-47d1-b445-b7a7442fec10\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.RecoveryServices/vaults/PSTestRSV93055a66/backupJobs/e08b8611-4be2-47d1-b445-b7a7442fec10?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTMwNTVhNjYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5MzA1NWE2Ni9iYWNrdXBKb2JzL2UwOGI4NjExLTRiZTItNDdkMS1iNDQ1LWI3YTc0NDJmZWMxMD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2ba81a29-0c1c-4d3c-836e-57a9712d77c3" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.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": [ + "4a46f61c-3e8c-47e4-8761-3d53a6d612b3" + ], + "x-ms-client-request-id": [ + "2ba81a29-0c1c-4d3c-836e-57a9712d77c3", + "2ba81a29-0c1c-4d3c-836e-57a9712d77c3" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "148" + ], + "x-ms-correlation-request-id": [ + "4a46f61c-3e8c-47e4-8761-3d53a6d612b3" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220517T073905Z:4a46f61c-3e8c-47e4-8761-3d53a6d612b3" + ], + "Date": [ + "Tue, 17 May 2022 07:39:04 GMT" + ], + "Content-Length": [ + "968" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.RecoveryServices/vaults/PSTestRSV93055a66/backupJobs/e08b8611-4be2-47d1-b445-b7a7442fec10\",\r\n \"name\": \"e08b8611-4be2-47d1-b445-b7a7442fec10\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg93055a66;pstestvm930550\",\r\n \"duration\": \"PT6.4080009S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm930550\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm930550\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T07:38:57.2855123Z\",\r\n \"activityId\": \"2ba81a29-0c1c-4d3c-836e-57a9712d77c3\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.RecoveryServices/vaults/PSTestRSV93055a66/backupJobs/e08b8611-4be2-47d1-b445-b7a7442fec10?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTMwNTVhNjYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5MzA1NWE2Ni9iYWNrdXBKb2JzL2UwOGI4NjExLTRiZTItNDdkMS1iNDQ1LWI3YTc0NDJmZWMxMD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2ba81a29-0c1c-4d3c-836e-57a9712d77c3" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.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": [ + "78686fa1-d1c9-4f38-98b1-1ef564bb29ea" + ], + "x-ms-client-request-id": [ + "2ba81a29-0c1c-4d3c-836e-57a9712d77c3", + "2ba81a29-0c1c-4d3c-836e-57a9712d77c3" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "147" + ], + "x-ms-correlation-request-id": [ + "78686fa1-d1c9-4f38-98b1-1ef564bb29ea" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220517T073905Z:78686fa1-d1c9-4f38-98b1-1ef564bb29ea" + ], + "Date": [ + "Tue, 17 May 2022 07:39:05 GMT" + ], + "Content-Length": [ + "968" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.RecoveryServices/vaults/PSTestRSV93055a66/backupJobs/e08b8611-4be2-47d1-b445-b7a7442fec10\",\r\n \"name\": \"e08b8611-4be2-47d1-b445-b7a7442fec10\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg93055a66;pstestvm930550\",\r\n \"duration\": \"PT7.2081382S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm930550\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm930550\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T07:38:57.2855123Z\",\r\n \"activityId\": \"2ba81a29-0c1c-4d3c-836e-57a9712d77c3\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.RecoveryServices/vaults/PSTestRSV93055a66/backupJobs/e08b8611-4be2-47d1-b445-b7a7442fec10?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTMwNTVhNjYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5MzA1NWE2Ni9iYWNrdXBKb2JzL2UwOGI4NjExLTRiZTItNDdkMS1iNDQ1LWI3YTc0NDJmZWMxMD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2ba81a29-0c1c-4d3c-836e-57a9712d77c3" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.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": [ + "a4c52005-8b9b-492b-a707-b58e146b0e2c" + ], + "x-ms-client-request-id": [ + "2ba81a29-0c1c-4d3c-836e-57a9712d77c3", + "2ba81a29-0c1c-4d3c-836e-57a9712d77c3" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "146" + ], + "x-ms-correlation-request-id": [ + "a4c52005-8b9b-492b-a707-b58e146b0e2c" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220517T073936Z:a4c52005-8b9b-492b-a707-b58e146b0e2c" + ], + "Date": [ + "Tue, 17 May 2022 07:39:35 GMT" + ], + "Content-Length": [ + "969" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.RecoveryServices/vaults/PSTestRSV93055a66/backupJobs/e08b8611-4be2-47d1-b445-b7a7442fec10\",\r\n \"name\": \"e08b8611-4be2-47d1-b445-b7a7442fec10\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg93055a66;pstestvm930550\",\r\n \"duration\": \"PT37.8170392S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm930550\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm930550\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T07:38:57.2855123Z\",\r\n \"activityId\": \"2ba81a29-0c1c-4d3c-836e-57a9712d77c3\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.RecoveryServices/vaults/PSTestRSV93055a66/backupJobs/e08b8611-4be2-47d1-b445-b7a7442fec10?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTMwNTVhNjYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5MzA1NWE2Ni9iYWNrdXBKb2JzL2UwOGI4NjExLTRiZTItNDdkMS1iNDQ1LWI3YTc0NDJmZWMxMD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2ba81a29-0c1c-4d3c-836e-57a9712d77c3" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.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": [ + "031da658-1d85-4f83-8965-bbb8f566a054" + ], + "x-ms-client-request-id": [ + "2ba81a29-0c1c-4d3c-836e-57a9712d77c3", + "2ba81a29-0c1c-4d3c-836e-57a9712d77c3" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "145" + ], + "x-ms-correlation-request-id": [ + "031da658-1d85-4f83-8965-bbb8f566a054" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220517T074007Z:031da658-1d85-4f83-8965-bbb8f566a054" + ], + "Date": [ + "Tue, 17 May 2022 07:40:07 GMT" + ], + "Content-Length": [ + "970" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.RecoveryServices/vaults/PSTestRSV93055a66/backupJobs/e08b8611-4be2-47d1-b445-b7a7442fec10\",\r\n \"name\": \"e08b8611-4be2-47d1-b445-b7a7442fec10\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg93055a66;pstestvm930550\",\r\n \"duration\": \"PT1M8.4661823S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm930550\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm930550\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T07:38:57.2855123Z\",\r\n \"activityId\": \"2ba81a29-0c1c-4d3c-836e-57a9712d77c3\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.RecoveryServices/vaults/PSTestRSV93055a66/backupJobs/e08b8611-4be2-47d1-b445-b7a7442fec10?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTMwNTVhNjYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5MzA1NWE2Ni9iYWNrdXBKb2JzL2UwOGI4NjExLTRiZTItNDdkMS1iNDQ1LWI3YTc0NDJmZWMxMD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2ba81a29-0c1c-4d3c-836e-57a9712d77c3" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.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": [ + "1424e4e3-cb4f-4953-a7a0-a4bfbe4e178b" + ], + "x-ms-client-request-id": [ + "2ba81a29-0c1c-4d3c-836e-57a9712d77c3", + "2ba81a29-0c1c-4d3c-836e-57a9712d77c3" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "144" + ], + "x-ms-correlation-request-id": [ + "1424e4e3-cb4f-4953-a7a0-a4bfbe4e178b" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220517T074037Z:1424e4e3-cb4f-4953-a7a0-a4bfbe4e178b" + ], + "Date": [ + "Tue, 17 May 2022 07:40:37 GMT" + ], + "Content-Length": [ + "971" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.RecoveryServices/vaults/PSTestRSV93055a66/backupJobs/e08b8611-4be2-47d1-b445-b7a7442fec10\",\r\n \"name\": \"e08b8611-4be2-47d1-b445-b7a7442fec10\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg93055a66;pstestvm930550\",\r\n \"duration\": \"PT1M39.2183842S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm930550\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm930550\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T07:38:57.2855123Z\",\r\n \"activityId\": \"2ba81a29-0c1c-4d3c-836e-57a9712d77c3\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.RecoveryServices/vaults/PSTestRSV93055a66/backupJobs/e08b8611-4be2-47d1-b445-b7a7442fec10?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTMwNTVhNjYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5MzA1NWE2Ni9iYWNrdXBKb2JzL2UwOGI4NjExLTRiZTItNDdkMS1iNDQ1LWI3YTc0NDJmZWMxMD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2ba81a29-0c1c-4d3c-836e-57a9712d77c3" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.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": [ + "f7853c4a-2ddb-4b12-a280-556ff217b6b0" + ], + "x-ms-client-request-id": [ + "2ba81a29-0c1c-4d3c-836e-57a9712d77c3", + "2ba81a29-0c1c-4d3c-836e-57a9712d77c3" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "143" + ], + "x-ms-correlation-request-id": [ + "f7853c4a-2ddb-4b12-a280-556ff217b6b0" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220517T074108Z:f7853c4a-2ddb-4b12-a280-556ff217b6b0" + ], + "Date": [ + "Tue, 17 May 2022 07:41:07 GMT" + ], + "Content-Length": [ + "970" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.RecoveryServices/vaults/PSTestRSV93055a66/backupJobs/e08b8611-4be2-47d1-b445-b7a7442fec10\",\r\n \"name\": \"e08b8611-4be2-47d1-b445-b7a7442fec10\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg93055a66;pstestvm930550\",\r\n \"duration\": \"PT2M9.9098708S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm930550\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm930550\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T07:38:57.2855123Z\",\r\n \"activityId\": \"2ba81a29-0c1c-4d3c-836e-57a9712d77c3\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.RecoveryServices/vaults/PSTestRSV93055a66/backupJobs/e08b8611-4be2-47d1-b445-b7a7442fec10?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTMwNTVhNjYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5MzA1NWE2Ni9iYWNrdXBKb2JzL2UwOGI4NjExLTRiZTItNDdkMS1iNDQ1LWI3YTc0NDJmZWMxMD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2ba81a29-0c1c-4d3c-836e-57a9712d77c3" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.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": [ + "c7fcf884-48df-4adc-845c-77ab19f0c0d1" + ], + "x-ms-client-request-id": [ + "2ba81a29-0c1c-4d3c-836e-57a9712d77c3", + "2ba81a29-0c1c-4d3c-836e-57a9712d77c3" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "142" + ], + "x-ms-correlation-request-id": [ + "c7fcf884-48df-4adc-845c-77ab19f0c0d1" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220517T074139Z:c7fcf884-48df-4adc-845c-77ab19f0c0d1" + ], + "Date": [ + "Tue, 17 May 2022 07:41:38 GMT" + ], + "Content-Length": [ + "971" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.RecoveryServices/vaults/PSTestRSV93055a66/backupJobs/e08b8611-4be2-47d1-b445-b7a7442fec10\",\r\n \"name\": \"e08b8611-4be2-47d1-b445-b7a7442fec10\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg93055a66;pstestvm930550\",\r\n \"duration\": \"PT2M40.5822709S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm930550\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm930550\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T07:38:57.2855123Z\",\r\n \"activityId\": \"2ba81a29-0c1c-4d3c-836e-57a9712d77c3\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.RecoveryServices/vaults/PSTestRSV93055a66/backupJobs/e08b8611-4be2-47d1-b445-b7a7442fec10?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTMwNTVhNjYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5MzA1NWE2Ni9iYWNrdXBKb2JzL2UwOGI4NjExLTRiZTItNDdkMS1iNDQ1LWI3YTc0NDJmZWMxMD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2ba81a29-0c1c-4d3c-836e-57a9712d77c3" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.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": [ + "0f0723c0-b341-42f4-aa40-9b7b7b80a53b" + ], + "x-ms-client-request-id": [ + "2ba81a29-0c1c-4d3c-836e-57a9712d77c3", + "2ba81a29-0c1c-4d3c-836e-57a9712d77c3" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "141" + ], + "x-ms-correlation-request-id": [ + "0f0723c0-b341-42f4-aa40-9b7b7b80a53b" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220517T074209Z:0f0723c0-b341-42f4-aa40-9b7b7b80a53b" + ], + "Date": [ + "Tue, 17 May 2022 07:42:09 GMT" + ], + "Content-Length": [ + "971" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.RecoveryServices/vaults/PSTestRSV93055a66/backupJobs/e08b8611-4be2-47d1-b445-b7a7442fec10\",\r\n \"name\": \"e08b8611-4be2-47d1-b445-b7a7442fec10\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg93055a66;pstestvm930550\",\r\n \"duration\": \"PT3M11.2153384S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm930550\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm930550\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T07:38:57.2855123Z\",\r\n \"activityId\": \"2ba81a29-0c1c-4d3c-836e-57a9712d77c3\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.RecoveryServices/vaults/PSTestRSV93055a66/backupJobs/e08b8611-4be2-47d1-b445-b7a7442fec10?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTMwNTVhNjYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5MzA1NWE2Ni9iYWNrdXBKb2JzL2UwOGI4NjExLTRiZTItNDdkMS1iNDQ1LWI3YTc0NDJmZWMxMD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2ba81a29-0c1c-4d3c-836e-57a9712d77c3" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.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": [ + "4c4b693f-8daa-4a66-a4d9-847d33d4b39c" + ], + "x-ms-client-request-id": [ + "2ba81a29-0c1c-4d3c-836e-57a9712d77c3", + "2ba81a29-0c1c-4d3c-836e-57a9712d77c3" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "140" + ], + "x-ms-correlation-request-id": [ + "4c4b693f-8daa-4a66-a4d9-847d33d4b39c" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220517T074240Z:4c4b693f-8daa-4a66-a4d9-847d33d4b39c" + ], + "Date": [ + "Tue, 17 May 2022 07:42:40 GMT" + ], + "Content-Length": [ + "971" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.RecoveryServices/vaults/PSTestRSV93055a66/backupJobs/e08b8611-4be2-47d1-b445-b7a7442fec10\",\r\n \"name\": \"e08b8611-4be2-47d1-b445-b7a7442fec10\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg93055a66;pstestvm930550\",\r\n \"duration\": \"PT3M42.1084094S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm930550\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm930550\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T07:38:57.2855123Z\",\r\n \"activityId\": \"2ba81a29-0c1c-4d3c-836e-57a9712d77c3\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.RecoveryServices/vaults/PSTestRSV93055a66/backupJobs/e08b8611-4be2-47d1-b445-b7a7442fec10?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTMwNTVhNjYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5MzA1NWE2Ni9iYWNrdXBKb2JzL2UwOGI4NjExLTRiZTItNDdkMS1iNDQ1LWI3YTc0NDJmZWMxMD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2ba81a29-0c1c-4d3c-836e-57a9712d77c3" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.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": [ + "65a8468c-eda2-42b5-91a2-e43e99a0104b" + ], + "x-ms-client-request-id": [ + "2ba81a29-0c1c-4d3c-836e-57a9712d77c3", + "2ba81a29-0c1c-4d3c-836e-57a9712d77c3" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "139" + ], + "x-ms-correlation-request-id": [ + "65a8468c-eda2-42b5-91a2-e43e99a0104b" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220517T074311Z:65a8468c-eda2-42b5-91a2-e43e99a0104b" + ], + "Date": [ + "Tue, 17 May 2022 07:43:10 GMT" + ], + "Content-Length": [ + "970" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.RecoveryServices/vaults/PSTestRSV93055a66/backupJobs/e08b8611-4be2-47d1-b445-b7a7442fec10\",\r\n \"name\": \"e08b8611-4be2-47d1-b445-b7a7442fec10\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg93055a66;pstestvm930550\",\r\n \"duration\": \"PT4M12.861018S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm930550\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm930550\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T07:38:57.2855123Z\",\r\n \"activityId\": \"2ba81a29-0c1c-4d3c-836e-57a9712d77c3\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.RecoveryServices/vaults/PSTestRSV93055a66/backupJobs/e08b8611-4be2-47d1-b445-b7a7442fec10?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTMwNTVhNjYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5MzA1NWE2Ni9iYWNrdXBKb2JzL2UwOGI4NjExLTRiZTItNDdkMS1iNDQ1LWI3YTc0NDJmZWMxMD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2ba81a29-0c1c-4d3c-836e-57a9712d77c3" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.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": [ + "e380faa4-f2c1-46d7-99aa-78d570515ace" + ], + "x-ms-client-request-id": [ + "2ba81a29-0c1c-4d3c-836e-57a9712d77c3", + "2ba81a29-0c1c-4d3c-836e-57a9712d77c3" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "138" + ], + "x-ms-correlation-request-id": [ + "e380faa4-f2c1-46d7-99aa-78d570515ace" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220517T074342Z:e380faa4-f2c1-46d7-99aa-78d570515ace" + ], + "Date": [ + "Tue, 17 May 2022 07:43:42 GMT" + ], + "Content-Length": [ + "971" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.RecoveryServices/vaults/PSTestRSV93055a66/backupJobs/e08b8611-4be2-47d1-b445-b7a7442fec10\",\r\n \"name\": \"e08b8611-4be2-47d1-b445-b7a7442fec10\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg93055a66;pstestvm930550\",\r\n \"duration\": \"PT4M43.8255529S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm930550\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm930550\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T07:38:57.2855123Z\",\r\n \"activityId\": \"2ba81a29-0c1c-4d3c-836e-57a9712d77c3\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.RecoveryServices/vaults/PSTestRSV93055a66/backupJobs/e08b8611-4be2-47d1-b445-b7a7442fec10?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTMwNTVhNjYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5MzA1NWE2Ni9iYWNrdXBKb2JzL2UwOGI4NjExLTRiZTItNDdkMS1iNDQ1LWI3YTc0NDJmZWMxMD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2ba81a29-0c1c-4d3c-836e-57a9712d77c3" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.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": [ + "17b74fa1-7c1e-4358-926d-b2dc7f19742f" + ], + "x-ms-client-request-id": [ + "2ba81a29-0c1c-4d3c-836e-57a9712d77c3", + "2ba81a29-0c1c-4d3c-836e-57a9712d77c3" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "137" + ], + "x-ms-correlation-request-id": [ + "17b74fa1-7c1e-4358-926d-b2dc7f19742f" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220517T074413Z:17b74fa1-7c1e-4358-926d-b2dc7f19742f" + ], + "Date": [ + "Tue, 17 May 2022 07:44:12 GMT" + ], + "Content-Length": [ + "971" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.RecoveryServices/vaults/PSTestRSV93055a66/backupJobs/e08b8611-4be2-47d1-b445-b7a7442fec10\",\r\n \"name\": \"e08b8611-4be2-47d1-b445-b7a7442fec10\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg93055a66;pstestvm930550\",\r\n \"duration\": \"PT5M14.5508266S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm930550\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm930550\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T07:38:57.2855123Z\",\r\n \"activityId\": \"2ba81a29-0c1c-4d3c-836e-57a9712d77c3\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.RecoveryServices/vaults/PSTestRSV93055a66/backupJobs/e08b8611-4be2-47d1-b445-b7a7442fec10?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTMwNTVhNjYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5MzA1NWE2Ni9iYWNrdXBKb2JzL2UwOGI4NjExLTRiZTItNDdkMS1iNDQ1LWI3YTc0NDJmZWMxMD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2ba81a29-0c1c-4d3c-836e-57a9712d77c3" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.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": [ + "897b1f68-1147-435a-96fe-1c85a424681d" + ], + "x-ms-client-request-id": [ + "2ba81a29-0c1c-4d3c-836e-57a9712d77c3", + "2ba81a29-0c1c-4d3c-836e-57a9712d77c3" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "136" + ], + "x-ms-correlation-request-id": [ + "897b1f68-1147-435a-96fe-1c85a424681d" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220517T074444Z:897b1f68-1147-435a-96fe-1c85a424681d" + ], + "Date": [ + "Tue, 17 May 2022 07:44:43 GMT" + ], + "Content-Length": [ + "971" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.RecoveryServices/vaults/PSTestRSV93055a66/backupJobs/e08b8611-4be2-47d1-b445-b7a7442fec10\",\r\n \"name\": \"e08b8611-4be2-47d1-b445-b7a7442fec10\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg93055a66;pstestvm930550\",\r\n \"duration\": \"PT5M45.2791577S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm930550\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm930550\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T07:38:57.2855123Z\",\r\n \"activityId\": \"2ba81a29-0c1c-4d3c-836e-57a9712d77c3\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.RecoveryServices/vaults/PSTestRSV93055a66/backupJobs/e08b8611-4be2-47d1-b445-b7a7442fec10?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTMwNTVhNjYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5MzA1NWE2Ni9iYWNrdXBKb2JzL2UwOGI4NjExLTRiZTItNDdkMS1iNDQ1LWI3YTc0NDJmZWMxMD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2ba81a29-0c1c-4d3c-836e-57a9712d77c3" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.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": [ + "4c111e56-155d-48f4-8f2f-8dff9333eb68" + ], + "x-ms-client-request-id": [ + "2ba81a29-0c1c-4d3c-836e-57a9712d77c3", + "2ba81a29-0c1c-4d3c-836e-57a9712d77c3" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "135" + ], + "x-ms-correlation-request-id": [ + "4c111e56-155d-48f4-8f2f-8dff9333eb68" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220517T074515Z:4c111e56-155d-48f4-8f2f-8dff9333eb68" + ], + "Date": [ + "Tue, 17 May 2022 07:45:14 GMT" + ], + "Content-Length": [ + "971" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.RecoveryServices/vaults/PSTestRSV93055a66/backupJobs/e08b8611-4be2-47d1-b445-b7a7442fec10\",\r\n \"name\": \"e08b8611-4be2-47d1-b445-b7a7442fec10\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg93055a66;pstestvm930550\",\r\n \"duration\": \"PT6M16.5438524S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm930550\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm930550\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T07:38:57.2855123Z\",\r\n \"activityId\": \"2ba81a29-0c1c-4d3c-836e-57a9712d77c3\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.RecoveryServices/vaults/PSTestRSV93055a66/backupJobs/e08b8611-4be2-47d1-b445-b7a7442fec10?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTMwNTVhNjYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5MzA1NWE2Ni9iYWNrdXBKb2JzL2UwOGI4NjExLTRiZTItNDdkMS1iNDQ1LWI3YTc0NDJmZWMxMD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2ba81a29-0c1c-4d3c-836e-57a9712d77c3" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.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": [ + "29237183-16f8-4856-b27a-46df28a7bdb3" + ], + "x-ms-client-request-id": [ + "2ba81a29-0c1c-4d3c-836e-57a9712d77c3", + "2ba81a29-0c1c-4d3c-836e-57a9712d77c3" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "134" + ], + "x-ms-correlation-request-id": [ + "29237183-16f8-4856-b27a-46df28a7bdb3" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220517T074545Z:29237183-16f8-4856-b27a-46df28a7bdb3" + ], + "Date": [ + "Tue, 17 May 2022 07:45:44 GMT" + ], + "Content-Length": [ + "971" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.RecoveryServices/vaults/PSTestRSV93055a66/backupJobs/e08b8611-4be2-47d1-b445-b7a7442fec10\",\r\n \"name\": \"e08b8611-4be2-47d1-b445-b7a7442fec10\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg93055a66;pstestvm930550\",\r\n \"duration\": \"PT6M47.0903046S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm930550\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm930550\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T07:38:57.2855123Z\",\r\n \"activityId\": \"2ba81a29-0c1c-4d3c-836e-57a9712d77c3\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.RecoveryServices/vaults/PSTestRSV93055a66/backupJobs/e08b8611-4be2-47d1-b445-b7a7442fec10?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTMwNTVhNjYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5MzA1NWE2Ni9iYWNrdXBKb2JzL2UwOGI4NjExLTRiZTItNDdkMS1iNDQ1LWI3YTc0NDJmZWMxMD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2ba81a29-0c1c-4d3c-836e-57a9712d77c3" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.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": [ + "72fbed0f-2001-461d-b672-665d2f670e33" + ], + "x-ms-client-request-id": [ + "2ba81a29-0c1c-4d3c-836e-57a9712d77c3", + "2ba81a29-0c1c-4d3c-836e-57a9712d77c3" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "133" + ], + "x-ms-correlation-request-id": [ + "72fbed0f-2001-461d-b672-665d2f670e33" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220517T074616Z:72fbed0f-2001-461d-b672-665d2f670e33" + ], + "Date": [ + "Tue, 17 May 2022 07:46:16 GMT" + ], + "Content-Length": [ + "971" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.RecoveryServices/vaults/PSTestRSV93055a66/backupJobs/e08b8611-4be2-47d1-b445-b7a7442fec10\",\r\n \"name\": \"e08b8611-4be2-47d1-b445-b7a7442fec10\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg93055a66;pstestvm930550\",\r\n \"duration\": \"PT7M17.8356119S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm930550\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm930550\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T07:38:57.2855123Z\",\r\n \"activityId\": \"2ba81a29-0c1c-4d3c-836e-57a9712d77c3\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.RecoveryServices/vaults/PSTestRSV93055a66/backupJobs/e08b8611-4be2-47d1-b445-b7a7442fec10?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTMwNTVhNjYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5MzA1NWE2Ni9iYWNrdXBKb2JzL2UwOGI4NjExLTRiZTItNDdkMS1iNDQ1LWI3YTc0NDJmZWMxMD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2ba81a29-0c1c-4d3c-836e-57a9712d77c3" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.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": [ + "44b4f1df-3816-4ab6-b40e-c02761d0fe6d" + ], + "x-ms-client-request-id": [ + "2ba81a29-0c1c-4d3c-836e-57a9712d77c3", + "2ba81a29-0c1c-4d3c-836e-57a9712d77c3" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "132" + ], + "x-ms-correlation-request-id": [ + "44b4f1df-3816-4ab6-b40e-c02761d0fe6d" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220517T074647Z:44b4f1df-3816-4ab6-b40e-c02761d0fe6d" + ], + "Date": [ + "Tue, 17 May 2022 07:46:46 GMT" + ], + "Content-Length": [ + "970" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.RecoveryServices/vaults/PSTestRSV93055a66/backupJobs/e08b8611-4be2-47d1-b445-b7a7442fec10\",\r\n \"name\": \"e08b8611-4be2-47d1-b445-b7a7442fec10\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg93055a66;pstestvm930550\",\r\n \"duration\": \"PT7M48.5712502S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm930550\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm930550\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T07:38:57.2855123Z\",\r\n \"activityId\": \"2ba81a29-0c1c-4d3c-836e-57a9712d77c3\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.RecoveryServices/vaults/PSTestRSV93055a66/backupJobs/e08b8611-4be2-47d1-b445-b7a7442fec10?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTMwNTVhNjYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5MzA1NWE2Ni9iYWNrdXBKb2JzL2UwOGI4NjExLTRiZTItNDdkMS1iNDQ1LWI3YTc0NDJmZWMxMD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2ba81a29-0c1c-4d3c-836e-57a9712d77c3" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.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": [ + "43d04c9d-e31e-48e8-a949-efea12e334ca" + ], + "x-ms-client-request-id": [ + "2ba81a29-0c1c-4d3c-836e-57a9712d77c3", + "2ba81a29-0c1c-4d3c-836e-57a9712d77c3" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "131" + ], + "x-ms-correlation-request-id": [ + "43d04c9d-e31e-48e8-a949-efea12e334ca" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220517T074717Z:43d04c9d-e31e-48e8-a949-efea12e334ca" + ], + "Date": [ + "Tue, 17 May 2022 07:47:17 GMT" + ], + "Content-Length": [ + "970" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.RecoveryServices/vaults/PSTestRSV93055a66/backupJobs/e08b8611-4be2-47d1-b445-b7a7442fec10\",\r\n \"name\": \"e08b8611-4be2-47d1-b445-b7a7442fec10\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg93055a66;pstestvm930550\",\r\n \"duration\": \"PT8M19.3906746S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm930550\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm930550\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T07:38:57.2855123Z\",\r\n \"activityId\": \"2ba81a29-0c1c-4d3c-836e-57a9712d77c3\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.RecoveryServices/vaults/PSTestRSV93055a66/backupJobs/e08b8611-4be2-47d1-b445-b7a7442fec10?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTMwNTVhNjYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5MzA1NWE2Ni9iYWNrdXBKb2JzL2UwOGI4NjExLTRiZTItNDdkMS1iNDQ1LWI3YTc0NDJmZWMxMD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2ba81a29-0c1c-4d3c-836e-57a9712d77c3" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.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": [ + "10eddd6a-7489-4d6a-ad3a-c3532ccc9829" + ], + "x-ms-client-request-id": [ + "2ba81a29-0c1c-4d3c-836e-57a9712d77c3", + "2ba81a29-0c1c-4d3c-836e-57a9712d77c3" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "130" + ], + "x-ms-correlation-request-id": [ + "10eddd6a-7489-4d6a-ad3a-c3532ccc9829" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220517T074748Z:10eddd6a-7489-4d6a-ad3a-c3532ccc9829" + ], + "Date": [ + "Tue, 17 May 2022 07:47:48 GMT" + ], + "Content-Length": [ + "970" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.RecoveryServices/vaults/PSTestRSV93055a66/backupJobs/e08b8611-4be2-47d1-b445-b7a7442fec10\",\r\n \"name\": \"e08b8611-4be2-47d1-b445-b7a7442fec10\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg93055a66;pstestvm930550\",\r\n \"duration\": \"PT8M50.1363608S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm930550\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm930550\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T07:38:57.2855123Z\",\r\n \"activityId\": \"2ba81a29-0c1c-4d3c-836e-57a9712d77c3\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.RecoveryServices/vaults/PSTestRSV93055a66/backupJobs/e08b8611-4be2-47d1-b445-b7a7442fec10?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTMwNTVhNjYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5MzA1NWE2Ni9iYWNrdXBKb2JzL2UwOGI4NjExLTRiZTItNDdkMS1iNDQ1LWI3YTc0NDJmZWMxMD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2ba81a29-0c1c-4d3c-836e-57a9712d77c3" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.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": [ + "632b8c0d-47be-4037-84c9-8841a3e4ce06" + ], + "x-ms-client-request-id": [ + "2ba81a29-0c1c-4d3c-836e-57a9712d77c3", + "2ba81a29-0c1c-4d3c-836e-57a9712d77c3" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "129" ], "x-ms-correlation-request-id": [ - "4213571b-5214-4a24-9c7a-f9493b56ee00" + "632b8c0d-47be-4037-84c9-8841a3e4ce06" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220225T000602Z:4213571b-5214-4a24-9c7a-f9493b56ee00" + "WESTINDIA:20220517T074819Z:632b8c0d-47be-4037-84c9-8841a3e4ce06" ], "Date": [ - "Fri, 25 Feb 2022 00:06:01 GMT" + "Tue, 17 May 2022 07:48:19 GMT" ], "Content-Length": [ - "1550" + "970" ], "Content-Type": [ "application/json" @@ -3902,32 +6228,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSV8c1d8dac/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrg8c1d8dac;pstestvm8c1d80/protectedItems/VM;iaasvmcontainerv2;pstestrg8c1d8dac;pstestvm8c1d80\",\r\n \"name\": \"VM;iaasvmcontainerv2;pstestrg8c1d8dac;pstestvm8c1d80\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems\",\r\n \"properties\": {\r\n \"kpisHealths\": {},\r\n \"friendlyName\": \"PSTestVM8c1d80\",\r\n \"virtualMachineId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.Compute/virtualMachines/PSTestVM8c1d80\",\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\": \"35184894227107\",\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;pstestrg8c1d8dac;pstestvm8c1d80\",\r\n \"sourceResourceId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.Compute/virtualMachines/PSTestVM8c1d80\",\r\n \"policyId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSV8c1d8dac/backupPolicies/DefaultPolicy\",\r\n \"policyName\": \"DefaultPolicy\",\r\n \"isArchiveEnabled\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.RecoveryServices/vaults/PSTestRSV93055a66/backupJobs/e08b8611-4be2-47d1-b445-b7a7442fec10\",\r\n \"name\": \"e08b8611-4be2-47d1-b445-b7a7442fec10\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg93055a66;pstestvm930550\",\r\n \"duration\": \"PT9M20.9269801S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm930550\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm930550\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T07:38:57.2855123Z\",\r\n \"activityId\": \"2ba81a29-0c1c-4d3c-836e-57a9712d77c3\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSV8c1d8dac/backupFabrics/Azure/protectionContainers/IaasVMContainer%3Biaasvmcontainerv2%3Bpstestrg8c1d8dac%3Bpstestvm8c1d80/protectedItems/VM%3Biaasvmcontainerv2%3Bpstestrg8c1d8dac%3Bpstestvm8c1d80/backup?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOGMxZDhkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y4YzFkOGRhYy9iYWNrdXBGYWJyaWNzL0F6dXJlL3Byb3RlY3Rpb25Db250YWluZXJzL0lhYXNWTUNvbnRhaW5lciUzQmlhYXN2bWNvbnRhaW5lcnYyJTNCcHN0ZXN0cmc4YzFkOGRhYyUzQnBzdGVzdHZtOGMxZDgwL3Byb3RlY3RlZEl0ZW1zL1ZNJTNCaWFhc3ZtY29udGFpbmVydjIlM0Jwc3Rlc3RyZzhjMWQ4ZGFjJTNCcHN0ZXN0dm04YzFkODAvYmFja3VwP2FwaS12ZXJzaW9uPTIwMjEtMTAtMDE=", - "RequestMethod": "POST", - "RequestBody": "{\r\n \"properties\": {\r\n \"objectType\": \"IaasVMBackupRequest\"\r\n }\r\n}", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.RecoveryServices/vaults/PSTestRSV93055a66/backupJobs/e08b8611-4be2-47d1-b445-b7a7442fec10?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTMwNTVhNjYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5MzA1NWE2Ni9iYWNrdXBKb2JzL2UwOGI4NjExLTRiZTItNDdkMS1iNDQ1LWI3YTc0NDJmZWMxMD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4fb9923b-b066-4d5a-82d1-3c64897cdd75" + "2ba81a29-0c1c-4d3c-836e-57a9712d77c3" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "69" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -3937,70 +6257,68 @@ "Pragma": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSV8c1d8dac/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrg8c1d8dac;pstestvm8c1d80/protectedItems/VM;iaasvmcontainerv2;pstestrg8c1d8dac;pstestvm8c1d80/operationResults/6a31f88b-7b53-4d6b-943b-c76d3ef83df2?api-version=2021-10-01" - ], - "Retry-After": [ - "60" - ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSV8c1d8dac/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrg8c1d8dac;pstestvm8c1d80/protectedItems/VM;iaasvmcontainerv2;pstestrg8c1d8dac;pstestvm8c1d80/operationsStatus/6a31f88b-7b53-4d6b-943b-c76d3ef83df2?api-version=2021-10-01" + "Server": [ + "Microsoft-IIS/10.0", + "Microsoft-IIS/10.0" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "fde8b265-ffc4-4309-8f64-1c26fbfbf51f" + "2b3ffbee-7071-47e0-bd68-abea38c792a8" ], "x-ms-client-request-id": [ - "4fb9923b-b066-4d5a-82d1-3c64897cdd75", - "4fb9923b-b066-4d5a-82d1-3c64897cdd75" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "2ba81a29-0c1c-4d3c-836e-57a9712d77c3", + "2ba81a29-0c1c-4d3c-836e-57a9712d77c3" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "128" ], "x-ms-correlation-request-id": [ - "fde8b265-ffc4-4309-8f64-1c26fbfbf51f" + "2b3ffbee-7071-47e0-bd68-abea38c792a8" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220225T000603Z:fde8b265-ffc4-4309-8f64-1c26fbfbf51f" + "WESTINDIA:20220517T074850Z:2b3ffbee-7071-47e0-bd68-abea38c792a8" ], "Date": [ - "Fri, 25 Feb 2022 00:06:02 GMT" + "Tue, 17 May 2022 07:48:49 GMT" + ], + "Content-Length": [ + "969" + ], + "Content-Type": [ + "application/json" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, - "ResponseBody": "", - "StatusCode": 202 + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.RecoveryServices/vaults/PSTestRSV93055a66/backupJobs/e08b8611-4be2-47d1-b445-b7a7442fec10\",\r\n \"name\": \"e08b8611-4be2-47d1-b445-b7a7442fec10\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg93055a66;pstestvm930550\",\r\n \"duration\": \"PT9M51.563542S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm930550\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm930550\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T07:38:57.2855123Z\",\r\n \"activityId\": \"2ba81a29-0c1c-4d3c-836e-57a9712d77c3\"\r\n }\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSV8c1d8dac/backupOperations/6a31f88b-7b53-4d6b-943b-c76d3ef83df2?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOGMxZDhkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y4YzFkOGRhYy9iYWNrdXBPcGVyYXRpb25zLzZhMzFmODhiLTdiNTMtNGQ2Yi05NDNiLWM3NmQzZWY4M2RmMj9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.RecoveryServices/vaults/PSTestRSV93055a66/backupJobs/e08b8611-4be2-47d1-b445-b7a7442fec10?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTMwNTVhNjYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5MzA1NWE2Ni9iYWNrdXBKb2JzL2UwOGI4NjExLTRiZTItNDdkMS1iNDQ1LWI3YTc0NDJmZWMxMD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4fb9923b-b066-4d5a-82d1-3c64897cdd75" + "2ba81a29-0c1c-4d3c-836e-57a9712d77c3" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -4010,39 +6328,40 @@ "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-IIS/10.0", + "Microsoft-IIS/10.0" + ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "dd524300-13ad-4639-ac1e-7178e96937d8" + "33969648-2a51-402d-99f2-af7a4d4ba5f7" ], "x-ms-client-request-id": [ - "4fb9923b-b066-4d5a-82d1-3c64897cdd75", - "4fb9923b-b066-4d5a-82d1-3c64897cdd75" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-IIS/10.0" + "2ba81a29-0c1c-4d3c-836e-57a9712d77c3", + "2ba81a29-0c1c-4d3c-836e-57a9712d77c3" ], "X-Powered-By": [ "ASP.NET" ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "144" + "127" ], "x-ms-correlation-request-id": [ - "dd524300-13ad-4639-ac1e-7178e96937d8" + "33969648-2a51-402d-99f2-af7a4d4ba5f7" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220225T000603Z:dd524300-13ad-4639-ac1e-7178e96937d8" + "WESTINDIA:20220517T074921Z:33969648-2a51-402d-99f2-af7a4d4ba5f7" ], "Date": [ - "Fri, 25 Feb 2022 00:06:03 GMT" + "Tue, 17 May 2022 07:49:20 GMT" ], "Content-Length": [ - "304" + "971" ], "Content-Type": [ "application/json" @@ -4051,26 +6370,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"6a31f88b-7b53-4d6b-943b-c76d3ef83df2\",\r\n \"name\": \"6a31f88b-7b53-4d6b-943b-c76d3ef83df2\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-02-25T00:06:03.2288224Z\",\r\n \"endTime\": \"2022-02-25T00:06:03.2288224Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"bc2fae5a-c727-496a-b070-6f551700b68b\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.RecoveryServices/vaults/PSTestRSV93055a66/backupJobs/e08b8611-4be2-47d1-b445-b7a7442fec10\",\r\n \"name\": \"e08b8611-4be2-47d1-b445-b7a7442fec10\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg93055a66;pstestvm930550\",\r\n \"duration\": \"PT10M22.6098846S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm930550\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm930550\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T07:38:57.2855123Z\",\r\n \"activityId\": \"2ba81a29-0c1c-4d3c-836e-57a9712d77c3\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSV8c1d8dac/backupOperations/6a31f88b-7b53-4d6b-943b-c76d3ef83df2?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOGMxZDhkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y4YzFkOGRhYy9iYWNrdXBPcGVyYXRpb25zLzZhMzFmODhiLTdiNTMtNGQ2Yi05NDNiLWM3NmQzZWY4M2RmMj9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.RecoveryServices/vaults/PSTestRSV93055a66/backupJobs/e08b8611-4be2-47d1-b445-b7a7442fec10?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTMwNTVhNjYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5MzA1NWE2Ni9iYWNrdXBKb2JzL2UwOGI4NjExLTRiZTItNDdkMS1iNDQ1LWI3YTc0NDJmZWMxMD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4fb9923b-b066-4d5a-82d1-3c64897cdd75" + "2ba81a29-0c1c-4d3c-836e-57a9712d77c3" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -4080,39 +6399,40 @@ "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-IIS/10.0", + "Microsoft-IIS/10.0" + ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "81b5ac52-773f-479d-b9be-948189a1e783" + "eaebc02b-b432-4b7c-b6e0-b2d3627195ad" ], "x-ms-client-request-id": [ - "4fb9923b-b066-4d5a-82d1-3c64897cdd75", - "4fb9923b-b066-4d5a-82d1-3c64897cdd75" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-IIS/10.0" + "2ba81a29-0c1c-4d3c-836e-57a9712d77c3", + "2ba81a29-0c1c-4d3c-836e-57a9712d77c3" ], "X-Powered-By": [ "ASP.NET" ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "143" + "126" ], "x-ms-correlation-request-id": [ - "81b5ac52-773f-479d-b9be-948189a1e783" + "eaebc02b-b432-4b7c-b6e0-b2d3627195ad" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220225T000604Z:81b5ac52-773f-479d-b9be-948189a1e783" + "WESTINDIA:20220517T074951Z:eaebc02b-b432-4b7c-b6e0-b2d3627195ad" ], "Date": [ - "Fri, 25 Feb 2022 00:06:03 GMT" + "Tue, 17 May 2022 07:49:51 GMT" ], "Content-Length": [ - "304" + "971" ], "Content-Type": [ "application/json" @@ -4121,26 +6441,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"6a31f88b-7b53-4d6b-943b-c76d3ef83df2\",\r\n \"name\": \"6a31f88b-7b53-4d6b-943b-c76d3ef83df2\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-02-25T00:06:03.2288224Z\",\r\n \"endTime\": \"2022-02-25T00:06:03.2288224Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"bc2fae5a-c727-496a-b070-6f551700b68b\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.RecoveryServices/vaults/PSTestRSV93055a66/backupJobs/e08b8611-4be2-47d1-b445-b7a7442fec10\",\r\n \"name\": \"e08b8611-4be2-47d1-b445-b7a7442fec10\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg93055a66;pstestvm930550\",\r\n \"duration\": \"PT10M53.1926296S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm930550\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm930550\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T07:38:57.2855123Z\",\r\n \"activityId\": \"2ba81a29-0c1c-4d3c-836e-57a9712d77c3\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSV8c1d8dac/backupJobs/bc2fae5a-c727-496a-b070-6f551700b68b?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOGMxZDhkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y4YzFkOGRhYy9iYWNrdXBKb2JzL2JjMmZhZTVhLWM3MjctNDk2YS1iMDcwLTZmNTUxNzAwYjY4Yj9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.RecoveryServices/vaults/PSTestRSV93055a66/backupJobs/e08b8611-4be2-47d1-b445-b7a7442fec10?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTMwNTVhNjYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5MzA1NWE2Ni9iYWNrdXBKb2JzL2UwOGI4NjExLTRiZTItNDdkMS1iNDQ1LWI3YTc0NDJmZWMxMD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4fb9923b-b066-4d5a-82d1-3c64897cdd75" + "2ba81a29-0c1c-4d3c-836e-57a9712d77c3" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -4158,11 +6478,11 @@ "nosniff" ], "x-ms-request-id": [ - "5f44dd78-a948-4a96-8ac4-f0d47c48f689" + "9bd61db4-3de1-4fa2-be37-c2e6511855f3" ], "x-ms-client-request-id": [ - "4fb9923b-b066-4d5a-82d1-3c64897cdd75", - "4fb9923b-b066-4d5a-82d1-3c64897cdd75" + "2ba81a29-0c1c-4d3c-836e-57a9712d77c3", + "2ba81a29-0c1c-4d3c-836e-57a9712d77c3" ], "X-Powered-By": [ "ASP.NET" @@ -4171,19 +6491,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "148" + "125" ], "x-ms-correlation-request-id": [ - "5f44dd78-a948-4a96-8ac4-f0d47c48f689" + "9bd61db4-3de1-4fa2-be37-c2e6511855f3" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220225T000605Z:5f44dd78-a948-4a96-8ac4-f0d47c48f689" + "WESTINDIA:20220517T075022Z:9bd61db4-3de1-4fa2-be37-c2e6511855f3" ], "Date": [ - "Fri, 25 Feb 2022 00:06:04 GMT" + "Tue, 17 May 2022 07:50:21 GMT" ], "Content-Length": [ - "968" + "971" ], "Content-Type": [ "application/json" @@ -4192,26 +6512,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSV8c1d8dac/backupJobs/bc2fae5a-c727-496a-b070-6f551700b68b\",\r\n \"name\": \"bc2fae5a-c727-496a-b070-6f551700b68b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg8c1d8dac;pstestvm8c1d80\",\r\n \"duration\": \"PT1.7358819S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm8c1d80\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm8c1d80\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-25T00:06:03.2288224Z\",\r\n \"activityId\": \"4fb9923b-b066-4d5a-82d1-3c64897cdd75\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.RecoveryServices/vaults/PSTestRSV93055a66/backupJobs/e08b8611-4be2-47d1-b445-b7a7442fec10\",\r\n \"name\": \"e08b8611-4be2-47d1-b445-b7a7442fec10\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg93055a66;pstestvm930550\",\r\n \"duration\": \"PT11M23.9568491S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm930550\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm930550\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T07:38:57.2855123Z\",\r\n \"activityId\": \"2ba81a29-0c1c-4d3c-836e-57a9712d77c3\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSV8c1d8dac/backupJobs/bc2fae5a-c727-496a-b070-6f551700b68b?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOGMxZDhkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y4YzFkOGRhYy9iYWNrdXBKb2JzL2JjMmZhZTVhLWM3MjctNDk2YS1iMDcwLTZmNTUxNzAwYjY4Yj9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.RecoveryServices/vaults/PSTestRSV93055a66/backupJobs/e08b8611-4be2-47d1-b445-b7a7442fec10?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTMwNTVhNjYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5MzA1NWE2Ni9iYWNrdXBKb2JzL2UwOGI4NjExLTRiZTItNDdkMS1iNDQ1LWI3YTc0NDJmZWMxMD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4fb9923b-b066-4d5a-82d1-3c64897cdd75" + "2ba81a29-0c1c-4d3c-836e-57a9712d77c3" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -4229,11 +6549,11 @@ "nosniff" ], "x-ms-request-id": [ - "24ab32a0-29cc-4e31-ac99-1364130bc086" + "2b983ab9-c6fb-458f-9ce1-df9b1a15d311" ], "x-ms-client-request-id": [ - "4fb9923b-b066-4d5a-82d1-3c64897cdd75", - "4fb9923b-b066-4d5a-82d1-3c64897cdd75" + "2ba81a29-0c1c-4d3c-836e-57a9712d77c3", + "2ba81a29-0c1c-4d3c-836e-57a9712d77c3" ], "X-Powered-By": [ "ASP.NET" @@ -4242,19 +6562,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "147" + "124" ], "x-ms-correlation-request-id": [ - "24ab32a0-29cc-4e31-ac99-1364130bc086" + "2b983ab9-c6fb-458f-9ce1-df9b1a15d311" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220225T000606Z:24ab32a0-29cc-4e31-ac99-1364130bc086" + "WESTINDIA:20220517T075053Z:2b983ab9-c6fb-458f-9ce1-df9b1a15d311" ], "Date": [ - "Fri, 25 Feb 2022 00:06:05 GMT" + "Tue, 17 May 2022 07:50:52 GMT" ], "Content-Length": [ - "968" + "971" ], "Content-Type": [ "application/json" @@ -4263,26 +6583,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSV8c1d8dac/backupJobs/bc2fae5a-c727-496a-b070-6f551700b68b\",\r\n \"name\": \"bc2fae5a-c727-496a-b070-6f551700b68b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg8c1d8dac;pstestvm8c1d80\",\r\n \"duration\": \"PT2.6067444S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm8c1d80\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm8c1d80\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-25T00:06:03.2288224Z\",\r\n \"activityId\": \"4fb9923b-b066-4d5a-82d1-3c64897cdd75\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.RecoveryServices/vaults/PSTestRSV93055a66/backupJobs/e08b8611-4be2-47d1-b445-b7a7442fec10\",\r\n \"name\": \"e08b8611-4be2-47d1-b445-b7a7442fec10\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg93055a66;pstestvm930550\",\r\n \"duration\": \"PT11M54.7107059S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm930550\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm930550\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T07:38:57.2855123Z\",\r\n \"activityId\": \"2ba81a29-0c1c-4d3c-836e-57a9712d77c3\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSV8c1d8dac/backupJobs/bc2fae5a-c727-496a-b070-6f551700b68b?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOGMxZDhkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y4YzFkOGRhYy9iYWNrdXBKb2JzL2JjMmZhZTVhLWM3MjctNDk2YS1iMDcwLTZmNTUxNzAwYjY4Yj9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.RecoveryServices/vaults/PSTestRSV93055a66/backupJobs/e08b8611-4be2-47d1-b445-b7a7442fec10?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTMwNTVhNjYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5MzA1NWE2Ni9iYWNrdXBKb2JzL2UwOGI4NjExLTRiZTItNDdkMS1iNDQ1LWI3YTc0NDJmZWMxMD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4fb9923b-b066-4d5a-82d1-3c64897cdd75" + "2ba81a29-0c1c-4d3c-836e-57a9712d77c3" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -4300,11 +6620,11 @@ "nosniff" ], "x-ms-request-id": [ - "6de17f4e-e494-466b-8d47-86fb33d48238" + "64939544-acd8-4d29-94f2-1717a135854a" ], "x-ms-client-request-id": [ - "4fb9923b-b066-4d5a-82d1-3c64897cdd75", - "4fb9923b-b066-4d5a-82d1-3c64897cdd75" + "2ba81a29-0c1c-4d3c-836e-57a9712d77c3", + "2ba81a29-0c1c-4d3c-836e-57a9712d77c3" ], "X-Powered-By": [ "ASP.NET" @@ -4313,19 +6633,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "146" + "123" ], "x-ms-correlation-request-id": [ - "6de17f4e-e494-466b-8d47-86fb33d48238" + "64939544-acd8-4d29-94f2-1717a135854a" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220225T000708Z:6de17f4e-e494-466b-8d47-86fb33d48238" + "WESTINDIA:20220517T075123Z:64939544-acd8-4d29-94f2-1717a135854a" ], "Date": [ - "Fri, 25 Feb 2022 00:07:07 GMT" + "Tue, 17 May 2022 07:51:23 GMT" ], "Content-Length": [ - "970" + "971" ], "Content-Type": [ "application/json" @@ -4334,26 +6654,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSV8c1d8dac/backupJobs/bc2fae5a-c727-496a-b070-6f551700b68b\",\r\n \"name\": \"bc2fae5a-c727-496a-b070-6f551700b68b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg8c1d8dac;pstestvm8c1d80\",\r\n \"duration\": \"PT1M4.4887444S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm8c1d80\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm8c1d80\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-25T00:06:03.2288224Z\",\r\n \"activityId\": \"4fb9923b-b066-4d5a-82d1-3c64897cdd75\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.RecoveryServices/vaults/PSTestRSV93055a66/backupJobs/e08b8611-4be2-47d1-b445-b7a7442fec10\",\r\n \"name\": \"e08b8611-4be2-47d1-b445-b7a7442fec10\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg93055a66;pstestvm930550\",\r\n \"duration\": \"PT12M25.3939511S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm930550\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm930550\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T07:38:57.2855123Z\",\r\n \"activityId\": \"2ba81a29-0c1c-4d3c-836e-57a9712d77c3\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSV8c1d8dac/backupJobs/bc2fae5a-c727-496a-b070-6f551700b68b?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOGMxZDhkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y4YzFkOGRhYy9iYWNrdXBKb2JzL2JjMmZhZTVhLWM3MjctNDk2YS1iMDcwLTZmNTUxNzAwYjY4Yj9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.RecoveryServices/vaults/PSTestRSV93055a66/backupJobs/e08b8611-4be2-47d1-b445-b7a7442fec10?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTMwNTVhNjYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5MzA1NWE2Ni9iYWNrdXBKb2JzL2UwOGI4NjExLTRiZTItNDdkMS1iNDQ1LWI3YTc0NDJmZWMxMD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4fb9923b-b066-4d5a-82d1-3c64897cdd75" + "2ba81a29-0c1c-4d3c-836e-57a9712d77c3" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -4371,11 +6691,11 @@ "nosniff" ], "x-ms-request-id": [ - "902d47f5-eb72-4a67-91e9-a58e122ed7b8" + "b5f7c5cf-196c-4fa2-b5a5-dc7b7336b249" ], "x-ms-client-request-id": [ - "4fb9923b-b066-4d5a-82d1-3c64897cdd75", - "4fb9923b-b066-4d5a-82d1-3c64897cdd75" + "2ba81a29-0c1c-4d3c-836e-57a9712d77c3", + "2ba81a29-0c1c-4d3c-836e-57a9712d77c3" ], "X-Powered-By": [ "ASP.NET" @@ -4384,16 +6704,16 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "145" + "122" ], "x-ms-correlation-request-id": [ - "902d47f5-eb72-4a67-91e9-a58e122ed7b8" + "b5f7c5cf-196c-4fa2-b5a5-dc7b7336b249" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220225T000810Z:902d47f5-eb72-4a67-91e9-a58e122ed7b8" + "WESTINDIA:20220517T075207Z:b5f7c5cf-196c-4fa2-b5a5-dc7b7336b249" ], "Date": [ - "Fri, 25 Feb 2022 00:08:10 GMT" + "Tue, 17 May 2022 07:52:07 GMT" ], "Content-Length": [ "970" @@ -4405,26 +6725,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSV8c1d8dac/backupJobs/bc2fae5a-c727-496a-b070-6f551700b68b\",\r\n \"name\": \"bc2fae5a-c727-496a-b070-6f551700b68b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg8c1d8dac;pstestvm8c1d80\",\r\n \"duration\": \"PT2M7.2608746S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm8c1d80\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm8c1d80\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-25T00:06:03.2288224Z\",\r\n \"activityId\": \"4fb9923b-b066-4d5a-82d1-3c64897cdd75\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.RecoveryServices/vaults/PSTestRSV93055a66/backupJobs/e08b8611-4be2-47d1-b445-b7a7442fec10\",\r\n \"name\": \"e08b8611-4be2-47d1-b445-b7a7442fec10\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg93055a66;pstestvm930550\",\r\n \"duration\": \"PT13M9.2740069S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm930550\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm930550\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T07:38:57.2855123Z\",\r\n \"activityId\": \"2ba81a29-0c1c-4d3c-836e-57a9712d77c3\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSV8c1d8dac/backupJobs/bc2fae5a-c727-496a-b070-6f551700b68b?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOGMxZDhkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y4YzFkOGRhYy9iYWNrdXBKb2JzL2JjMmZhZTVhLWM3MjctNDk2YS1iMDcwLTZmNTUxNzAwYjY4Yj9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.RecoveryServices/vaults/PSTestRSV93055a66/backupJobs/e08b8611-4be2-47d1-b445-b7a7442fec10?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTMwNTVhNjYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5MzA1NWE2Ni9iYWNrdXBKb2JzL2UwOGI4NjExLTRiZTItNDdkMS1iNDQ1LWI3YTc0NDJmZWMxMD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4fb9923b-b066-4d5a-82d1-3c64897cdd75" + "2ba81a29-0c1c-4d3c-836e-57a9712d77c3" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -4442,11 +6762,11 @@ "nosniff" ], "x-ms-request-id": [ - "65d4de94-9bc4-4f23-bb0a-5f997f7db62e" + "90782edd-b497-4c54-b338-09652e855c98" ], "x-ms-client-request-id": [ - "4fb9923b-b066-4d5a-82d1-3c64897cdd75", - "4fb9923b-b066-4d5a-82d1-3c64897cdd75" + "2ba81a29-0c1c-4d3c-836e-57a9712d77c3", + "2ba81a29-0c1c-4d3c-836e-57a9712d77c3" ], "X-Powered-By": [ "ASP.NET" @@ -4455,19 +6775,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "144" + "121" ], "x-ms-correlation-request-id": [ - "65d4de94-9bc4-4f23-bb0a-5f997f7db62e" + "90782edd-b497-4c54-b338-09652e855c98" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220225T000912Z:65d4de94-9bc4-4f23-bb0a-5f997f7db62e" + "WESTINDIA:20220517T075238Z:90782edd-b497-4c54-b338-09652e855c98" ], "Date": [ - "Fri, 25 Feb 2022 00:09:12 GMT" + "Tue, 17 May 2022 07:52:37 GMT" ], "Content-Length": [ - "970" + "971" ], "Content-Type": [ "application/json" @@ -4476,26 +6796,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSV8c1d8dac/backupJobs/bc2fae5a-c727-496a-b070-6f551700b68b\",\r\n \"name\": \"bc2fae5a-c727-496a-b070-6f551700b68b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg8c1d8dac;pstestvm8c1d80\",\r\n \"duration\": \"PT3M9.2732868S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm8c1d80\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm8c1d80\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-25T00:06:03.2288224Z\",\r\n \"activityId\": \"4fb9923b-b066-4d5a-82d1-3c64897cdd75\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.RecoveryServices/vaults/PSTestRSV93055a66/backupJobs/e08b8611-4be2-47d1-b445-b7a7442fec10\",\r\n \"name\": \"e08b8611-4be2-47d1-b445-b7a7442fec10\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg93055a66;pstestvm930550\",\r\n \"duration\": \"PT13M40.0027477S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm930550\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm930550\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T07:38:57.2855123Z\",\r\n \"activityId\": \"2ba81a29-0c1c-4d3c-836e-57a9712d77c3\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSV8c1d8dac/backupJobs/bc2fae5a-c727-496a-b070-6f551700b68b?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOGMxZDhkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y4YzFkOGRhYy9iYWNrdXBKb2JzL2JjMmZhZTVhLWM3MjctNDk2YS1iMDcwLTZmNTUxNzAwYjY4Yj9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.RecoveryServices/vaults/PSTestRSV93055a66/backupJobs/e08b8611-4be2-47d1-b445-b7a7442fec10?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTMwNTVhNjYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5MzA1NWE2Ni9iYWNrdXBKb2JzL2UwOGI4NjExLTRiZTItNDdkMS1iNDQ1LWI3YTc0NDJmZWMxMD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4fb9923b-b066-4d5a-82d1-3c64897cdd75" + "2ba81a29-0c1c-4d3c-836e-57a9712d77c3" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -4513,11 +6833,11 @@ "nosniff" ], "x-ms-request-id": [ - "d7bf635b-8285-4579-b085-9d06dddfa1f4" + "71ea2952-f3f0-4fd7-8217-0a89cf07fbda" ], "x-ms-client-request-id": [ - "4fb9923b-b066-4d5a-82d1-3c64897cdd75", - "4fb9923b-b066-4d5a-82d1-3c64897cdd75" + "2ba81a29-0c1c-4d3c-836e-57a9712d77c3", + "2ba81a29-0c1c-4d3c-836e-57a9712d77c3" ], "X-Powered-By": [ "ASP.NET" @@ -4526,16 +6846,16 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "143" + "120" ], "x-ms-correlation-request-id": [ - "d7bf635b-8285-4579-b085-9d06dddfa1f4" + "71ea2952-f3f0-4fd7-8217-0a89cf07fbda" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220225T001016Z:d7bf635b-8285-4579-b085-9d06dddfa1f4" + "WESTINDIA:20220517T075309Z:71ea2952-f3f0-4fd7-8217-0a89cf07fbda" ], "Date": [ - "Fri, 25 Feb 2022 00:10:16 GMT" + "Tue, 17 May 2022 07:53:08 GMT" ], "Content-Length": [ "971" @@ -4547,26 +6867,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSV8c1d8dac/backupJobs/bc2fae5a-c727-496a-b070-6f551700b68b\",\r\n \"name\": \"bc2fae5a-c727-496a-b070-6f551700b68b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg8c1d8dac;pstestvm8c1d80\",\r\n \"duration\": \"PT4M12.5003578S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm8c1d80\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm8c1d80\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-25T00:06:03.2288224Z\",\r\n \"activityId\": \"4fb9923b-b066-4d5a-82d1-3c64897cdd75\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.RecoveryServices/vaults/PSTestRSV93055a66/backupJobs/e08b8611-4be2-47d1-b445-b7a7442fec10\",\r\n \"name\": \"e08b8611-4be2-47d1-b445-b7a7442fec10\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg93055a66;pstestvm930550\",\r\n \"duration\": \"PT14M10.5412552S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm930550\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm930550\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T07:38:57.2855123Z\",\r\n \"activityId\": \"2ba81a29-0c1c-4d3c-836e-57a9712d77c3\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSV8c1d8dac/backupJobs/bc2fae5a-c727-496a-b070-6f551700b68b?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOGMxZDhkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y4YzFkOGRhYy9iYWNrdXBKb2JzL2JjMmZhZTVhLWM3MjctNDk2YS1iMDcwLTZmNTUxNzAwYjY4Yj9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.RecoveryServices/vaults/PSTestRSV93055a66/backupJobs/e08b8611-4be2-47d1-b445-b7a7442fec10?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTMwNTVhNjYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5MzA1NWE2Ni9iYWNrdXBKb2JzL2UwOGI4NjExLTRiZTItNDdkMS1iNDQ1LWI3YTc0NDJmZWMxMD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4fb9923b-b066-4d5a-82d1-3c64897cdd75" + "2ba81a29-0c1c-4d3c-836e-57a9712d77c3" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -4584,11 +6904,11 @@ "nosniff" ], "x-ms-request-id": [ - "9ac591ef-a5f7-4d53-9ad8-4e18dab43acf" + "ff3d8d8c-fb99-4d92-9aa9-36e58e9f7a0f" ], "x-ms-client-request-id": [ - "4fb9923b-b066-4d5a-82d1-3c64897cdd75", - "4fb9923b-b066-4d5a-82d1-3c64897cdd75" + "2ba81a29-0c1c-4d3c-836e-57a9712d77c3", + "2ba81a29-0c1c-4d3c-836e-57a9712d77c3" ], "X-Powered-By": [ "ASP.NET" @@ -4597,16 +6917,16 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "142" + "119" ], "x-ms-correlation-request-id": [ - "9ac591ef-a5f7-4d53-9ad8-4e18dab43acf" + "ff3d8d8c-fb99-4d92-9aa9-36e58e9f7a0f" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220225T001128Z:9ac591ef-a5f7-4d53-9ad8-4e18dab43acf" + "WESTINDIA:20220517T075339Z:ff3d8d8c-fb99-4d92-9aa9-36e58e9f7a0f" ], "Date": [ - "Fri, 25 Feb 2022 00:11:27 GMT" + "Tue, 17 May 2022 07:53:38 GMT" ], "Content-Length": [ "971" @@ -4618,26 +6938,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSV8c1d8dac/backupJobs/bc2fae5a-c727-496a-b070-6f551700b68b\",\r\n \"name\": \"bc2fae5a-c727-496a-b070-6f551700b68b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg8c1d8dac;pstestvm8c1d80\",\r\n \"duration\": \"PT5M24.0452352S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm8c1d80\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm8c1d80\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-25T00:06:03.2288224Z\",\r\n \"activityId\": \"4fb9923b-b066-4d5a-82d1-3c64897cdd75\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.RecoveryServices/vaults/PSTestRSV93055a66/backupJobs/e08b8611-4be2-47d1-b445-b7a7442fec10\",\r\n \"name\": \"e08b8611-4be2-47d1-b445-b7a7442fec10\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg93055a66;pstestvm930550\",\r\n \"duration\": \"PT14M41.2912778S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm930550\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm930550\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T07:38:57.2855123Z\",\r\n \"activityId\": \"2ba81a29-0c1c-4d3c-836e-57a9712d77c3\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSV8c1d8dac/backupJobs/bc2fae5a-c727-496a-b070-6f551700b68b?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOGMxZDhkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y4YzFkOGRhYy9iYWNrdXBKb2JzL2JjMmZhZTVhLWM3MjctNDk2YS1iMDcwLTZmNTUxNzAwYjY4Yj9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.RecoveryServices/vaults/PSTestRSV93055a66/backupJobs/e08b8611-4be2-47d1-b445-b7a7442fec10?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTMwNTVhNjYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5MzA1NWE2Ni9iYWNrdXBKb2JzL2UwOGI4NjExLTRiZTItNDdkMS1iNDQ1LWI3YTc0NDJmZWMxMD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4fb9923b-b066-4d5a-82d1-3c64897cdd75" + "2ba81a29-0c1c-4d3c-836e-57a9712d77c3" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -4655,11 +6975,11 @@ "nosniff" ], "x-ms-request-id": [ - "d7478bb1-62ae-4224-9f70-9e7afa960b5b" + "2570c351-f5ec-414d-a659-1aadec151664" ], "x-ms-client-request-id": [ - "4fb9923b-b066-4d5a-82d1-3c64897cdd75", - "4fb9923b-b066-4d5a-82d1-3c64897cdd75" + "2ba81a29-0c1c-4d3c-836e-57a9712d77c3", + "2ba81a29-0c1c-4d3c-836e-57a9712d77c3" ], "X-Powered-By": [ "ASP.NET" @@ -4668,16 +6988,16 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "141" + "118" ], "x-ms-correlation-request-id": [ - "d7478bb1-62ae-4224-9f70-9e7afa960b5b" + "2570c351-f5ec-414d-a659-1aadec151664" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220225T001230Z:d7478bb1-62ae-4224-9f70-9e7afa960b5b" + "WESTINDIA:20220517T075410Z:2570c351-f5ec-414d-a659-1aadec151664" ], "Date": [ - "Fri, 25 Feb 2022 00:12:30 GMT" + "Tue, 17 May 2022 07:54:10 GMT" ], "Content-Length": [ "971" @@ -4689,26 +7009,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSV8c1d8dac/backupJobs/bc2fae5a-c727-496a-b070-6f551700b68b\",\r\n \"name\": \"bc2fae5a-c727-496a-b070-6f551700b68b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg8c1d8dac;pstestvm8c1d80\",\r\n \"duration\": \"PT6M26.6703303S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm8c1d80\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm8c1d80\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-25T00:06:03.2288224Z\",\r\n \"activityId\": \"4fb9923b-b066-4d5a-82d1-3c64897cdd75\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.RecoveryServices/vaults/PSTestRSV93055a66/backupJobs/e08b8611-4be2-47d1-b445-b7a7442fec10\",\r\n \"name\": \"e08b8611-4be2-47d1-b445-b7a7442fec10\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg93055a66;pstestvm930550\",\r\n \"duration\": \"PT15M11.9734149S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm930550\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm930550\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T07:38:57.2855123Z\",\r\n \"activityId\": \"2ba81a29-0c1c-4d3c-836e-57a9712d77c3\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSV8c1d8dac/backupJobs/bc2fae5a-c727-496a-b070-6f551700b68b?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOGMxZDhkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y4YzFkOGRhYy9iYWNrdXBKb2JzL2JjMmZhZTVhLWM3MjctNDk2YS1iMDcwLTZmNTUxNzAwYjY4Yj9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.RecoveryServices/vaults/PSTestRSV93055a66/backupJobs/e08b8611-4be2-47d1-b445-b7a7442fec10?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTMwNTVhNjYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5MzA1NWE2Ni9iYWNrdXBKb2JzL2UwOGI4NjExLTRiZTItNDdkMS1iNDQ1LWI3YTc0NDJmZWMxMD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4fb9923b-b066-4d5a-82d1-3c64897cdd75" + "2ba81a29-0c1c-4d3c-836e-57a9712d77c3" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -4726,11 +7046,11 @@ "nosniff" ], "x-ms-request-id": [ - "c91ba4d3-fc7d-451b-99d8-a6d4fe6ab45d" + "6ad71c73-5fb7-40e1-9cc4-a6a94bcadd46" ], "x-ms-client-request-id": [ - "4fb9923b-b066-4d5a-82d1-3c64897cdd75", - "4fb9923b-b066-4d5a-82d1-3c64897cdd75" + "2ba81a29-0c1c-4d3c-836e-57a9712d77c3", + "2ba81a29-0c1c-4d3c-836e-57a9712d77c3" ], "X-Powered-By": [ "ASP.NET" @@ -4739,16 +7059,16 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "140" + "117" ], "x-ms-correlation-request-id": [ - "c91ba4d3-fc7d-451b-99d8-a6d4fe6ab45d" + "6ad71c73-5fb7-40e1-9cc4-a6a94bcadd46" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220225T001332Z:c91ba4d3-fc7d-451b-99d8-a6d4fe6ab45d" + "WESTINDIA:20220517T075441Z:6ad71c73-5fb7-40e1-9cc4-a6a94bcadd46" ], "Date": [ - "Fri, 25 Feb 2022 00:13:32 GMT" + "Tue, 17 May 2022 07:54:40 GMT" ], "Content-Length": [ "971" @@ -4760,26 +7080,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSV8c1d8dac/backupJobs/bc2fae5a-c727-496a-b070-6f551700b68b\",\r\n \"name\": \"bc2fae5a-c727-496a-b070-6f551700b68b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg8c1d8dac;pstestvm8c1d80\",\r\n \"duration\": \"PT7M28.4831467S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm8c1d80\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm8c1d80\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-25T00:06:03.2288224Z\",\r\n \"activityId\": \"4fb9923b-b066-4d5a-82d1-3c64897cdd75\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.RecoveryServices/vaults/PSTestRSV93055a66/backupJobs/e08b8611-4be2-47d1-b445-b7a7442fec10\",\r\n \"name\": \"e08b8611-4be2-47d1-b445-b7a7442fec10\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg93055a66;pstestvm930550\",\r\n \"duration\": \"PT15M43.0558228S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm930550\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm930550\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T07:38:57.2855123Z\",\r\n \"activityId\": \"2ba81a29-0c1c-4d3c-836e-57a9712d77c3\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSV8c1d8dac/backupJobs/bc2fae5a-c727-496a-b070-6f551700b68b?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOGMxZDhkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y4YzFkOGRhYy9iYWNrdXBKb2JzL2JjMmZhZTVhLWM3MjctNDk2YS1iMDcwLTZmNTUxNzAwYjY4Yj9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.RecoveryServices/vaults/PSTestRSV93055a66/backupJobs/e08b8611-4be2-47d1-b445-b7a7442fec10?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTMwNTVhNjYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5MzA1NWE2Ni9iYWNrdXBKb2JzL2UwOGI4NjExLTRiZTItNDdkMS1iNDQ1LWI3YTc0NDJmZWMxMD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4fb9923b-b066-4d5a-82d1-3c64897cdd75" + "2ba81a29-0c1c-4d3c-836e-57a9712d77c3" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -4797,11 +7117,11 @@ "nosniff" ], "x-ms-request-id": [ - "7f86baa3-1e95-4710-bb84-8307d1149a80" + "1876d201-a525-422f-9aa7-dcc66b9b435a" ], "x-ms-client-request-id": [ - "4fb9923b-b066-4d5a-82d1-3c64897cdd75", - "4fb9923b-b066-4d5a-82d1-3c64897cdd75" + "2ba81a29-0c1c-4d3c-836e-57a9712d77c3", + "2ba81a29-0c1c-4d3c-836e-57a9712d77c3" ], "X-Powered-By": [ "ASP.NET" @@ -4810,16 +7130,16 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "139" + "116" ], "x-ms-correlation-request-id": [ - "7f86baa3-1e95-4710-bb84-8307d1149a80" + "1876d201-a525-422f-9aa7-dcc66b9b435a" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220225T001434Z:7f86baa3-1e95-4710-bb84-8307d1149a80" + "WESTINDIA:20220517T075512Z:1876d201-a525-422f-9aa7-dcc66b9b435a" ], "Date": [ - "Fri, 25 Feb 2022 00:14:33 GMT" + "Tue, 17 May 2022 07:55:11 GMT" ], "Content-Length": [ "971" @@ -4831,26 +7151,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSV8c1d8dac/backupJobs/bc2fae5a-c727-496a-b070-6f551700b68b\",\r\n \"name\": \"bc2fae5a-c727-496a-b070-6f551700b68b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg8c1d8dac;pstestvm8c1d80\",\r\n \"duration\": \"PT8M30.3337809S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm8c1d80\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm8c1d80\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-25T00:06:03.2288224Z\",\r\n \"activityId\": \"4fb9923b-b066-4d5a-82d1-3c64897cdd75\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.RecoveryServices/vaults/PSTestRSV93055a66/backupJobs/e08b8611-4be2-47d1-b445-b7a7442fec10\",\r\n \"name\": \"e08b8611-4be2-47d1-b445-b7a7442fec10\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg93055a66;pstestvm930550\",\r\n \"duration\": \"PT16M13.6753554S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm930550\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm930550\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T07:38:57.2855123Z\",\r\n \"activityId\": \"2ba81a29-0c1c-4d3c-836e-57a9712d77c3\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSV8c1d8dac/backupJobs/bc2fae5a-c727-496a-b070-6f551700b68b?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOGMxZDhkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y4YzFkOGRhYy9iYWNrdXBKb2JzL2JjMmZhZTVhLWM3MjctNDk2YS1iMDcwLTZmNTUxNzAwYjY4Yj9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.RecoveryServices/vaults/PSTestRSV93055a66/backupJobs/e08b8611-4be2-47d1-b445-b7a7442fec10?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTMwNTVhNjYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5MzA1NWE2Ni9iYWNrdXBKb2JzL2UwOGI4NjExLTRiZTItNDdkMS1iNDQ1LWI3YTc0NDJmZWMxMD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4fb9923b-b066-4d5a-82d1-3c64897cdd75" + "2ba81a29-0c1c-4d3c-836e-57a9712d77c3" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -4868,11 +7188,11 @@ "nosniff" ], "x-ms-request-id": [ - "8e567d8d-4347-4b41-84ca-0f0f979aeb76" + "94a659b8-7d2c-4453-b703-0ea379dca8f6" ], "x-ms-client-request-id": [ - "4fb9923b-b066-4d5a-82d1-3c64897cdd75", - "4fb9923b-b066-4d5a-82d1-3c64897cdd75" + "2ba81a29-0c1c-4d3c-836e-57a9712d77c3", + "2ba81a29-0c1c-4d3c-836e-57a9712d77c3" ], "X-Powered-By": [ "ASP.NET" @@ -4881,19 +7201,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "138" + "115" ], "x-ms-correlation-request-id": [ - "8e567d8d-4347-4b41-84ca-0f0f979aeb76" + "94a659b8-7d2c-4453-b703-0ea379dca8f6" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220225T001535Z:8e567d8d-4347-4b41-84ca-0f0f979aeb76" + "WESTINDIA:20220517T075542Z:94a659b8-7d2c-4453-b703-0ea379dca8f6" ], "Date": [ - "Fri, 25 Feb 2022 00:15:35 GMT" + "Tue, 17 May 2022 07:55:42 GMT" ], "Content-Length": [ - "970" + "971" ], "Content-Type": [ "application/json" @@ -4902,26 +7222,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSV8c1d8dac/backupJobs/bc2fae5a-c727-496a-b070-6f551700b68b\",\r\n \"name\": \"bc2fae5a-c727-496a-b070-6f551700b68b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg8c1d8dac;pstestvm8c1d80\",\r\n \"duration\": \"PT9M32.3038308S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm8c1d80\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm8c1d80\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-25T00:06:03.2288224Z\",\r\n \"activityId\": \"4fb9923b-b066-4d5a-82d1-3c64897cdd75\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.RecoveryServices/vaults/PSTestRSV93055a66/backupJobs/e08b8611-4be2-47d1-b445-b7a7442fec10\",\r\n \"name\": \"e08b8611-4be2-47d1-b445-b7a7442fec10\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg93055a66;pstestvm930550\",\r\n \"duration\": \"PT16M44.2479839S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm930550\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm930550\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T07:38:57.2855123Z\",\r\n \"activityId\": \"2ba81a29-0c1c-4d3c-836e-57a9712d77c3\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSV8c1d8dac/backupJobs/bc2fae5a-c727-496a-b070-6f551700b68b?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOGMxZDhkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y4YzFkOGRhYy9iYWNrdXBKb2JzL2JjMmZhZTVhLWM3MjctNDk2YS1iMDcwLTZmNTUxNzAwYjY4Yj9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.RecoveryServices/vaults/PSTestRSV93055a66/backupJobs/e08b8611-4be2-47d1-b445-b7a7442fec10?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTMwNTVhNjYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5MzA1NWE2Ni9iYWNrdXBKb2JzL2UwOGI4NjExLTRiZTItNDdkMS1iNDQ1LWI3YTc0NDJmZWMxMD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4fb9923b-b066-4d5a-82d1-3c64897cdd75" + "2ba81a29-0c1c-4d3c-836e-57a9712d77c3" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -4939,11 +7259,11 @@ "nosniff" ], "x-ms-request-id": [ - "38e9d51a-8b6d-4874-862b-c518be79c232" + "a7fed4a4-fba2-40bd-9db7-1c00336ae32a" ], "x-ms-client-request-id": [ - "4fb9923b-b066-4d5a-82d1-3c64897cdd75", - "4fb9923b-b066-4d5a-82d1-3c64897cdd75" + "2ba81a29-0c1c-4d3c-836e-57a9712d77c3", + "2ba81a29-0c1c-4d3c-836e-57a9712d77c3" ], "X-Powered-By": [ "ASP.NET" @@ -4952,16 +7272,16 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "137" + "114" ], "x-ms-correlation-request-id": [ - "38e9d51a-8b6d-4874-862b-c518be79c232" + "a7fed4a4-fba2-40bd-9db7-1c00336ae32a" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220225T001637Z:38e9d51a-8b6d-4874-862b-c518be79c232" + "WESTINDIA:20220517T075613Z:a7fed4a4-fba2-40bd-9db7-1c00336ae32a" ], "Date": [ - "Fri, 25 Feb 2022 00:16:37 GMT" + "Tue, 17 May 2022 07:56:13 GMT" ], "Content-Length": [ "971" @@ -4973,26 +7293,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSV8c1d8dac/backupJobs/bc2fae5a-c727-496a-b070-6f551700b68b\",\r\n \"name\": \"bc2fae5a-c727-496a-b070-6f551700b68b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg8c1d8dac;pstestvm8c1d80\",\r\n \"duration\": \"PT10M34.2192065S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm8c1d80\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm8c1d80\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-25T00:06:03.2288224Z\",\r\n \"activityId\": \"4fb9923b-b066-4d5a-82d1-3c64897cdd75\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.RecoveryServices/vaults/PSTestRSV93055a66/backupJobs/e08b8611-4be2-47d1-b445-b7a7442fec10\",\r\n \"name\": \"e08b8611-4be2-47d1-b445-b7a7442fec10\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg93055a66;pstestvm930550\",\r\n \"duration\": \"PT17M14.8261118S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm930550\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm930550\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T07:38:57.2855123Z\",\r\n \"activityId\": \"2ba81a29-0c1c-4d3c-836e-57a9712d77c3\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSV8c1d8dac/backupJobs/bc2fae5a-c727-496a-b070-6f551700b68b?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOGMxZDhkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y4YzFkOGRhYy9iYWNrdXBKb2JzL2JjMmZhZTVhLWM3MjctNDk2YS1iMDcwLTZmNTUxNzAwYjY4Yj9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.RecoveryServices/vaults/PSTestRSV93055a66/backupJobs/e08b8611-4be2-47d1-b445-b7a7442fec10?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTMwNTVhNjYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5MzA1NWE2Ni9iYWNrdXBKb2JzL2UwOGI4NjExLTRiZTItNDdkMS1iNDQ1LWI3YTc0NDJmZWMxMD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4fb9923b-b066-4d5a-82d1-3c64897cdd75" + "2ba81a29-0c1c-4d3c-836e-57a9712d77c3" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -5010,11 +7330,11 @@ "nosniff" ], "x-ms-request-id": [ - "35c43270-330b-484f-91b5-037a415f18c3" + "93139ad9-8618-441d-bbe9-6c5d8ae523a1" ], "x-ms-client-request-id": [ - "4fb9923b-b066-4d5a-82d1-3c64897cdd75", - "4fb9923b-b066-4d5a-82d1-3c64897cdd75" + "2ba81a29-0c1c-4d3c-836e-57a9712d77c3", + "2ba81a29-0c1c-4d3c-836e-57a9712d77c3" ], "X-Powered-By": [ "ASP.NET" @@ -5023,16 +7343,16 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "136" + "113" ], "x-ms-correlation-request-id": [ - "35c43270-330b-484f-91b5-037a415f18c3" + "93139ad9-8618-441d-bbe9-6c5d8ae523a1" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220225T001739Z:35c43270-330b-484f-91b5-037a415f18c3" + "WESTINDIA:20220517T075644Z:93139ad9-8618-441d-bbe9-6c5d8ae523a1" ], "Date": [ - "Fri, 25 Feb 2022 00:17:39 GMT" + "Tue, 17 May 2022 07:56:43 GMT" ], "Content-Length": [ "971" @@ -5044,26 +7364,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSV8c1d8dac/backupJobs/bc2fae5a-c727-496a-b070-6f551700b68b\",\r\n \"name\": \"bc2fae5a-c727-496a-b070-6f551700b68b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg8c1d8dac;pstestvm8c1d80\",\r\n \"duration\": \"PT11M36.2965334S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm8c1d80\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm8c1d80\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-25T00:06:03.2288224Z\",\r\n \"activityId\": \"4fb9923b-b066-4d5a-82d1-3c64897cdd75\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.RecoveryServices/vaults/PSTestRSV93055a66/backupJobs/e08b8611-4be2-47d1-b445-b7a7442fec10\",\r\n \"name\": \"e08b8611-4be2-47d1-b445-b7a7442fec10\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg93055a66;pstestvm930550\",\r\n \"duration\": \"PT17M45.3861754S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm930550\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm930550\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T07:38:57.2855123Z\",\r\n \"activityId\": \"2ba81a29-0c1c-4d3c-836e-57a9712d77c3\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSV8c1d8dac/backupJobs/bc2fae5a-c727-496a-b070-6f551700b68b?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOGMxZDhkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y4YzFkOGRhYy9iYWNrdXBKb2JzL2JjMmZhZTVhLWM3MjctNDk2YS1iMDcwLTZmNTUxNzAwYjY4Yj9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.RecoveryServices/vaults/PSTestRSV93055a66/backupJobs/e08b8611-4be2-47d1-b445-b7a7442fec10?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTMwNTVhNjYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5MzA1NWE2Ni9iYWNrdXBKb2JzL2UwOGI4NjExLTRiZTItNDdkMS1iNDQ1LWI3YTc0NDJmZWMxMD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4fb9923b-b066-4d5a-82d1-3c64897cdd75" + "2ba81a29-0c1c-4d3c-836e-57a9712d77c3" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -5081,11 +7401,11 @@ "nosniff" ], "x-ms-request-id": [ - "eb2c1e1c-495f-4773-a6c4-f527664e627c" + "c057e9fa-0fdc-4290-9791-4e6db0b84913" ], "x-ms-client-request-id": [ - "4fb9923b-b066-4d5a-82d1-3c64897cdd75", - "4fb9923b-b066-4d5a-82d1-3c64897cdd75" + "2ba81a29-0c1c-4d3c-836e-57a9712d77c3", + "2ba81a29-0c1c-4d3c-836e-57a9712d77c3" ], "X-Powered-By": [ "ASP.NET" @@ -5094,16 +7414,16 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "135" + "112" ], "x-ms-correlation-request-id": [ - "eb2c1e1c-495f-4773-a6c4-f527664e627c" + "c057e9fa-0fdc-4290-9791-4e6db0b84913" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220225T001840Z:eb2c1e1c-495f-4773-a6c4-f527664e627c" + "WESTINDIA:20220517T075715Z:c057e9fa-0fdc-4290-9791-4e6db0b84913" ], "Date": [ - "Fri, 25 Feb 2022 00:18:39 GMT" + "Tue, 17 May 2022 07:57:14 GMT" ], "Content-Length": [ "971" @@ -5115,26 +7435,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSV8c1d8dac/backupJobs/bc2fae5a-c727-496a-b070-6f551700b68b\",\r\n \"name\": \"bc2fae5a-c727-496a-b070-6f551700b68b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg8c1d8dac;pstestvm8c1d80\",\r\n \"duration\": \"PT12M37.0423414S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm8c1d80\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm8c1d80\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-25T00:06:03.2288224Z\",\r\n \"activityId\": \"4fb9923b-b066-4d5a-82d1-3c64897cdd75\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.RecoveryServices/vaults/PSTestRSV93055a66/backupJobs/e08b8611-4be2-47d1-b445-b7a7442fec10\",\r\n \"name\": \"e08b8611-4be2-47d1-b445-b7a7442fec10\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg93055a66;pstestvm930550\",\r\n \"duration\": \"PT18M16.7841377S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm930550\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm930550\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T07:38:57.2855123Z\",\r\n \"activityId\": \"2ba81a29-0c1c-4d3c-836e-57a9712d77c3\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSV8c1d8dac/backupJobs/bc2fae5a-c727-496a-b070-6f551700b68b?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOGMxZDhkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y4YzFkOGRhYy9iYWNrdXBKb2JzL2JjMmZhZTVhLWM3MjctNDk2YS1iMDcwLTZmNTUxNzAwYjY4Yj9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.RecoveryServices/vaults/PSTestRSV93055a66/backupJobs/e08b8611-4be2-47d1-b445-b7a7442fec10?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTMwNTVhNjYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5MzA1NWE2Ni9iYWNrdXBKb2JzL2UwOGI4NjExLTRiZTItNDdkMS1iNDQ1LWI3YTc0NDJmZWMxMD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4fb9923b-b066-4d5a-82d1-3c64897cdd75" + "2ba81a29-0c1c-4d3c-836e-57a9712d77c3" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -5152,11 +7472,11 @@ "nosniff" ], "x-ms-request-id": [ - "0b9c4e19-ad33-42d4-845c-7e983fb0d505" + "ed99f618-4ace-4602-b231-a3b10da8d23c" ], "x-ms-client-request-id": [ - "4fb9923b-b066-4d5a-82d1-3c64897cdd75", - "4fb9923b-b066-4d5a-82d1-3c64897cdd75" + "2ba81a29-0c1c-4d3c-836e-57a9712d77c3", + "2ba81a29-0c1c-4d3c-836e-57a9712d77c3" ], "X-Powered-By": [ "ASP.NET" @@ -5165,16 +7485,16 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "134" + "111" ], "x-ms-correlation-request-id": [ - "0b9c4e19-ad33-42d4-845c-7e983fb0d505" + "ed99f618-4ace-4602-b231-a3b10da8d23c" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220225T001942Z:0b9c4e19-ad33-42d4-845c-7e983fb0d505" + "WESTINDIA:20220517T075746Z:ed99f618-4ace-4602-b231-a3b10da8d23c" ], "Date": [ - "Fri, 25 Feb 2022 00:19:42 GMT" + "Tue, 17 May 2022 07:57:45 GMT" ], "Content-Length": [ "971" @@ -5186,26 +7506,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSV8c1d8dac/backupJobs/bc2fae5a-c727-496a-b070-6f551700b68b\",\r\n \"name\": \"bc2fae5a-c727-496a-b070-6f551700b68b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg8c1d8dac;pstestvm8c1d80\",\r\n \"duration\": \"PT13M39.0433702S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm8c1d80\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm8c1d80\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-25T00:06:03.2288224Z\",\r\n \"activityId\": \"4fb9923b-b066-4d5a-82d1-3c64897cdd75\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.RecoveryServices/vaults/PSTestRSV93055a66/backupJobs/e08b8611-4be2-47d1-b445-b7a7442fec10\",\r\n \"name\": \"e08b8611-4be2-47d1-b445-b7a7442fec10\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg93055a66;pstestvm930550\",\r\n \"duration\": \"PT18M47.3914466S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm930550\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm930550\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T07:38:57.2855123Z\",\r\n \"activityId\": \"2ba81a29-0c1c-4d3c-836e-57a9712d77c3\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSV8c1d8dac/backupJobs/bc2fae5a-c727-496a-b070-6f551700b68b?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOGMxZDhkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y4YzFkOGRhYy9iYWNrdXBKb2JzL2JjMmZhZTVhLWM3MjctNDk2YS1iMDcwLTZmNTUxNzAwYjY4Yj9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.RecoveryServices/vaults/PSTestRSV93055a66/backupJobs/e08b8611-4be2-47d1-b445-b7a7442fec10?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTMwNTVhNjYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5MzA1NWE2Ni9iYWNrdXBKb2JzL2UwOGI4NjExLTRiZTItNDdkMS1iNDQ1LWI3YTc0NDJmZWMxMD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4fb9923b-b066-4d5a-82d1-3c64897cdd75" + "2ba81a29-0c1c-4d3c-836e-57a9712d77c3" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -5223,11 +7543,11 @@ "nosniff" ], "x-ms-request-id": [ - "7d14de5a-0a96-45ec-a7ce-9271e93f73af" + "cd02a5ac-e08d-44c8-97d2-3722325249b2" ], "x-ms-client-request-id": [ - "4fb9923b-b066-4d5a-82d1-3c64897cdd75", - "4fb9923b-b066-4d5a-82d1-3c64897cdd75" + "2ba81a29-0c1c-4d3c-836e-57a9712d77c3", + "2ba81a29-0c1c-4d3c-836e-57a9712d77c3" ], "X-Powered-By": [ "ASP.NET" @@ -5236,16 +7556,16 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "133" + "110" ], "x-ms-correlation-request-id": [ - "7d14de5a-0a96-45ec-a7ce-9271e93f73af" + "cd02a5ac-e08d-44c8-97d2-3722325249b2" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220225T002053Z:7d14de5a-0a96-45ec-a7ce-9271e93f73af" + "WESTINDIA:20220517T075816Z:cd02a5ac-e08d-44c8-97d2-3722325249b2" ], "Date": [ - "Fri, 25 Feb 2022 00:20:52 GMT" + "Tue, 17 May 2022 07:58:15 GMT" ], "Content-Length": [ "971" @@ -5257,26 +7577,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSV8c1d8dac/backupJobs/bc2fae5a-c727-496a-b070-6f551700b68b\",\r\n \"name\": \"bc2fae5a-c727-496a-b070-6f551700b68b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg8c1d8dac;pstestvm8c1d80\",\r\n \"duration\": \"PT14M48.8404754S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm8c1d80\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm8c1d80\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-25T00:06:03.2288224Z\",\r\n \"activityId\": \"4fb9923b-b066-4d5a-82d1-3c64897cdd75\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.RecoveryServices/vaults/PSTestRSV93055a66/backupJobs/e08b8611-4be2-47d1-b445-b7a7442fec10\",\r\n \"name\": \"e08b8611-4be2-47d1-b445-b7a7442fec10\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg93055a66;pstestvm930550\",\r\n \"duration\": \"PT19M18.0401659S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm930550\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm930550\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T07:38:57.2855123Z\",\r\n \"activityId\": \"2ba81a29-0c1c-4d3c-836e-57a9712d77c3\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSV8c1d8dac/backupJobs/bc2fae5a-c727-496a-b070-6f551700b68b?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOGMxZDhkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y4YzFkOGRhYy9iYWNrdXBKb2JzL2JjMmZhZTVhLWM3MjctNDk2YS1iMDcwLTZmNTUxNzAwYjY4Yj9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.RecoveryServices/vaults/PSTestRSV93055a66/backupJobs/e08b8611-4be2-47d1-b445-b7a7442fec10?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTMwNTVhNjYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5MzA1NWE2Ni9iYWNrdXBKb2JzL2UwOGI4NjExLTRiZTItNDdkMS1iNDQ1LWI3YTc0NDJmZWMxMD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4fb9923b-b066-4d5a-82d1-3c64897cdd75" + "2ba81a29-0c1c-4d3c-836e-57a9712d77c3" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -5294,11 +7614,11 @@ "nosniff" ], "x-ms-request-id": [ - "d609d6a0-09b0-409a-b08c-d3506481ebc5" + "9fbcc9b3-42da-4601-8816-bc2526d271fe" ], "x-ms-client-request-id": [ - "4fb9923b-b066-4d5a-82d1-3c64897cdd75", - "4fb9923b-b066-4d5a-82d1-3c64897cdd75" + "2ba81a29-0c1c-4d3c-836e-57a9712d77c3", + "2ba81a29-0c1c-4d3c-836e-57a9712d77c3" ], "X-Powered-By": [ "ASP.NET" @@ -5307,16 +7627,16 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "132" + "109" ], "x-ms-correlation-request-id": [ - "d609d6a0-09b0-409a-b08c-d3506481ebc5" + "9fbcc9b3-42da-4601-8816-bc2526d271fe" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220225T002155Z:d609d6a0-09b0-409a-b08c-d3506481ebc5" + "WESTINDIA:20220517T075847Z:9fbcc9b3-42da-4601-8816-bc2526d271fe" ], "Date": [ - "Fri, 25 Feb 2022 00:21:54 GMT" + "Tue, 17 May 2022 07:58:46 GMT" ], "Content-Length": [ "971" @@ -5328,26 +7648,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSV8c1d8dac/backupJobs/bc2fae5a-c727-496a-b070-6f551700b68b\",\r\n \"name\": \"bc2fae5a-c727-496a-b070-6f551700b68b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg8c1d8dac;pstestvm8c1d80\",\r\n \"duration\": \"PT15M51.6374648S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm8c1d80\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm8c1d80\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-25T00:06:03.2288224Z\",\r\n \"activityId\": \"4fb9923b-b066-4d5a-82d1-3c64897cdd75\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.RecoveryServices/vaults/PSTestRSV93055a66/backupJobs/e08b8611-4be2-47d1-b445-b7a7442fec10\",\r\n \"name\": \"e08b8611-4be2-47d1-b445-b7a7442fec10\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg93055a66;pstestvm930550\",\r\n \"duration\": \"PT19M48.6591182S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm930550\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm930550\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T07:38:57.2855123Z\",\r\n \"activityId\": \"2ba81a29-0c1c-4d3c-836e-57a9712d77c3\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSV8c1d8dac/backupJobs/bc2fae5a-c727-496a-b070-6f551700b68b?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOGMxZDhkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y4YzFkOGRhYy9iYWNrdXBKb2JzL2JjMmZhZTVhLWM3MjctNDk2YS1iMDcwLTZmNTUxNzAwYjY4Yj9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.RecoveryServices/vaults/PSTestRSV93055a66/backupJobs/e08b8611-4be2-47d1-b445-b7a7442fec10?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTMwNTVhNjYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5MzA1NWE2Ni9iYWNrdXBKb2JzL2UwOGI4NjExLTRiZTItNDdkMS1iNDQ1LWI3YTc0NDJmZWMxMD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4fb9923b-b066-4d5a-82d1-3c64897cdd75" + "2ba81a29-0c1c-4d3c-836e-57a9712d77c3" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -5365,11 +7685,11 @@ "nosniff" ], "x-ms-request-id": [ - "cc668a5f-6fa5-433b-a602-439bf5e29d1f" + "c0a02c18-9171-425b-a8a0-9fa074fa4052" ], "x-ms-client-request-id": [ - "4fb9923b-b066-4d5a-82d1-3c64897cdd75", - "4fb9923b-b066-4d5a-82d1-3c64897cdd75" + "2ba81a29-0c1c-4d3c-836e-57a9712d77c3", + "2ba81a29-0c1c-4d3c-836e-57a9712d77c3" ], "X-Powered-By": [ "ASP.NET" @@ -5378,19 +7698,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "131" + "108" ], "x-ms-correlation-request-id": [ - "cc668a5f-6fa5-433b-a602-439bf5e29d1f" + "c0a02c18-9171-425b-a8a0-9fa074fa4052" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220225T002312Z:cc668a5f-6fa5-433b-a602-439bf5e29d1f" + "WESTINDIA:20220517T075918Z:c0a02c18-9171-425b-a8a0-9fa074fa4052" ], "Date": [ - "Fri, 25 Feb 2022 00:23:12 GMT" + "Tue, 17 May 2022 07:59:17 GMT" ], "Content-Length": [ - "969" + "967" ], "Content-Type": [ "application/json" @@ -5399,26 +7719,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSV8c1d8dac/backupJobs/bc2fae5a-c727-496a-b070-6f551700b68b\",\r\n \"name\": \"bc2fae5a-c727-496a-b070-6f551700b68b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg8c1d8dac;pstestvm8c1d80\",\r\n \"duration\": \"PT17M8.246204S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm8c1d80\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm8c1d80\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-25T00:06:03.2288224Z\",\r\n \"activityId\": \"4fb9923b-b066-4d5a-82d1-3c64897cdd75\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.RecoveryServices/vaults/PSTestRSV93055a66/backupJobs/e08b8611-4be2-47d1-b445-b7a7442fec10\",\r\n \"name\": \"e08b8611-4be2-47d1-b445-b7a7442fec10\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg93055a66;pstestvm930550\",\r\n \"duration\": \"PT20M19.389S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm930550\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm930550\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T07:38:57.2855123Z\",\r\n \"activityId\": \"2ba81a29-0c1c-4d3c-836e-57a9712d77c3\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSV8c1d8dac/backupJobs/bc2fae5a-c727-496a-b070-6f551700b68b?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOGMxZDhkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y4YzFkOGRhYy9iYWNrdXBKb2JzL2JjMmZhZTVhLWM3MjctNDk2YS1iMDcwLTZmNTUxNzAwYjY4Yj9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.RecoveryServices/vaults/PSTestRSV93055a66/backupJobs/e08b8611-4be2-47d1-b445-b7a7442fec10?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTMwNTVhNjYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5MzA1NWE2Ni9iYWNrdXBKb2JzL2UwOGI4NjExLTRiZTItNDdkMS1iNDQ1LWI3YTc0NDJmZWMxMD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4fb9923b-b066-4d5a-82d1-3c64897cdd75" + "2ba81a29-0c1c-4d3c-836e-57a9712d77c3" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -5436,11 +7756,11 @@ "nosniff" ], "x-ms-request-id": [ - "73f5f001-a7ae-48fd-8c28-49329149191b" + "62bc39d1-e24e-4dc4-a612-9ec0cb5df7ca" ], "x-ms-client-request-id": [ - "4fb9923b-b066-4d5a-82d1-3c64897cdd75", - "4fb9923b-b066-4d5a-82d1-3c64897cdd75" + "2ba81a29-0c1c-4d3c-836e-57a9712d77c3", + "2ba81a29-0c1c-4d3c-836e-57a9712d77c3" ], "X-Powered-By": [ "ASP.NET" @@ -5449,16 +7769,16 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "130" + "107" ], "x-ms-correlation-request-id": [ - "73f5f001-a7ae-48fd-8c28-49329149191b" + "62bc39d1-e24e-4dc4-a612-9ec0cb5df7ca" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220225T002425Z:73f5f001-a7ae-48fd-8c28-49329149191b" + "WESTINDIA:20220517T075948Z:62bc39d1-e24e-4dc4-a612-9ec0cb5df7ca" ], "Date": [ - "Fri, 25 Feb 2022 00:24:24 GMT" + "Tue, 17 May 2022 07:59:48 GMT" ], "Content-Length": [ "971" @@ -5470,26 +7790,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSV8c1d8dac/backupJobs/bc2fae5a-c727-496a-b070-6f551700b68b\",\r\n \"name\": \"bc2fae5a-c727-496a-b070-6f551700b68b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg8c1d8dac;pstestvm8c1d80\",\r\n \"duration\": \"PT18M21.4736355S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm8c1d80\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm8c1d80\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-25T00:06:03.2288224Z\",\r\n \"activityId\": \"4fb9923b-b066-4d5a-82d1-3c64897cdd75\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.RecoveryServices/vaults/PSTestRSV93055a66/backupJobs/e08b8611-4be2-47d1-b445-b7a7442fec10\",\r\n \"name\": \"e08b8611-4be2-47d1-b445-b7a7442fec10\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg93055a66;pstestvm930550\",\r\n \"duration\": \"PT20M50.0928557S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm930550\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm930550\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T07:38:57.2855123Z\",\r\n \"activityId\": \"2ba81a29-0c1c-4d3c-836e-57a9712d77c3\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSV8c1d8dac/backupJobs/bc2fae5a-c727-496a-b070-6f551700b68b?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOGMxZDhkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y4YzFkOGRhYy9iYWNrdXBKb2JzL2JjMmZhZTVhLWM3MjctNDk2YS1iMDcwLTZmNTUxNzAwYjY4Yj9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.RecoveryServices/vaults/PSTestRSV93055a66/backupJobs/e08b8611-4be2-47d1-b445-b7a7442fec10?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTMwNTVhNjYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5MzA1NWE2Ni9iYWNrdXBKb2JzL2UwOGI4NjExLTRiZTItNDdkMS1iNDQ1LWI3YTc0NDJmZWMxMD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4fb9923b-b066-4d5a-82d1-3c64897cdd75" + "2ba81a29-0c1c-4d3c-836e-57a9712d77c3" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -5507,11 +7827,11 @@ "nosniff" ], "x-ms-request-id": [ - "b43a8a0d-cc16-4dda-8b92-1339e0aadd8d" + "6c318183-d157-4e7a-9478-e5c38b99b8c2" ], "x-ms-client-request-id": [ - "4fb9923b-b066-4d5a-82d1-3c64897cdd75", - "4fb9923b-b066-4d5a-82d1-3c64897cdd75" + "2ba81a29-0c1c-4d3c-836e-57a9712d77c3", + "2ba81a29-0c1c-4d3c-836e-57a9712d77c3" ], "X-Powered-By": [ "ASP.NET" @@ -5520,16 +7840,16 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "129" + "106" ], "x-ms-correlation-request-id": [ - "b43a8a0d-cc16-4dda-8b92-1339e0aadd8d" + "6c318183-d157-4e7a-9478-e5c38b99b8c2" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220225T002527Z:b43a8a0d-cc16-4dda-8b92-1339e0aadd8d" + "WESTINDIA:20220517T080019Z:6c318183-d157-4e7a-9478-e5c38b99b8c2" ], "Date": [ - "Fri, 25 Feb 2022 00:25:26 GMT" + "Tue, 17 May 2022 08:00:19 GMT" ], "Content-Length": [ "971" @@ -5541,26 +7861,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSV8c1d8dac/backupJobs/bc2fae5a-c727-496a-b070-6f551700b68b\",\r\n \"name\": \"bc2fae5a-c727-496a-b070-6f551700b68b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg8c1d8dac;pstestvm8c1d80\",\r\n \"duration\": \"PT19M23.0780971S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm8c1d80\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm8c1d80\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-25T00:06:03.2288224Z\",\r\n \"activityId\": \"4fb9923b-b066-4d5a-82d1-3c64897cdd75\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.RecoveryServices/vaults/PSTestRSV93055a66/backupJobs/e08b8611-4be2-47d1-b445-b7a7442fec10\",\r\n \"name\": \"e08b8611-4be2-47d1-b445-b7a7442fec10\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg93055a66;pstestvm930550\",\r\n \"duration\": \"PT21M21.0814134S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm930550\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm930550\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T07:38:57.2855123Z\",\r\n \"activityId\": \"2ba81a29-0c1c-4d3c-836e-57a9712d77c3\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSV8c1d8dac/backupJobs/bc2fae5a-c727-496a-b070-6f551700b68b?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOGMxZDhkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y4YzFkOGRhYy9iYWNrdXBKb2JzL2JjMmZhZTVhLWM3MjctNDk2YS1iMDcwLTZmNTUxNzAwYjY4Yj9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.RecoveryServices/vaults/PSTestRSV93055a66/backupJobs/e08b8611-4be2-47d1-b445-b7a7442fec10?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTMwNTVhNjYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5MzA1NWE2Ni9iYWNrdXBKb2JzL2UwOGI4NjExLTRiZTItNDdkMS1iNDQ1LWI3YTc0NDJmZWMxMD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4fb9923b-b066-4d5a-82d1-3c64897cdd75" + "2ba81a29-0c1c-4d3c-836e-57a9712d77c3" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -5578,11 +7898,11 @@ "nosniff" ], "x-ms-request-id": [ - "625bc41f-0012-463c-8501-3ad20b4ef627" + "c60a8cf3-b89e-4d63-bb19-71c9cc343592" ], "x-ms-client-request-id": [ - "4fb9923b-b066-4d5a-82d1-3c64897cdd75", - "4fb9923b-b066-4d5a-82d1-3c64897cdd75" + "2ba81a29-0c1c-4d3c-836e-57a9712d77c3", + "2ba81a29-0c1c-4d3c-836e-57a9712d77c3" ], "X-Powered-By": [ "ASP.NET" @@ -5591,19 +7911,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "128" + "105" ], "x-ms-correlation-request-id": [ - "625bc41f-0012-463c-8501-3ad20b4ef627" + "c60a8cf3-b89e-4d63-bb19-71c9cc343592" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220225T002638Z:625bc41f-0012-463c-8501-3ad20b4ef627" + "WESTINDIA:20220517T080050Z:c60a8cf3-b89e-4d63-bb19-71c9cc343592" ], "Date": [ - "Fri, 25 Feb 2022 00:26:37 GMT" + "Tue, 17 May 2022 08:00:49 GMT" ], "Content-Length": [ - "971" + "970" ], "Content-Type": [ "application/json" @@ -5612,26 +7932,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSV8c1d8dac/backupJobs/bc2fae5a-c727-496a-b070-6f551700b68b\",\r\n \"name\": \"bc2fae5a-c727-496a-b070-6f551700b68b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg8c1d8dac;pstestvm8c1d80\",\r\n \"duration\": \"PT20M33.6948061S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm8c1d80\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm8c1d80\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-25T00:06:03.2288224Z\",\r\n \"activityId\": \"4fb9923b-b066-4d5a-82d1-3c64897cdd75\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.RecoveryServices/vaults/PSTestRSV93055a66/backupJobs/e08b8611-4be2-47d1-b445-b7a7442fec10\",\r\n \"name\": \"e08b8611-4be2-47d1-b445-b7a7442fec10\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg93055a66;pstestvm930550\",\r\n \"duration\": \"PT21M51.811122S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm930550\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm930550\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T07:38:57.2855123Z\",\r\n \"activityId\": \"2ba81a29-0c1c-4d3c-836e-57a9712d77c3\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSV8c1d8dac/backupJobs/bc2fae5a-c727-496a-b070-6f551700b68b?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOGMxZDhkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y4YzFkOGRhYy9iYWNrdXBKb2JzL2JjMmZhZTVhLWM3MjctNDk2YS1iMDcwLTZmNTUxNzAwYjY4Yj9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.RecoveryServices/vaults/PSTestRSV93055a66/backupJobs/e08b8611-4be2-47d1-b445-b7a7442fec10?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTMwNTVhNjYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5MzA1NWE2Ni9iYWNrdXBKb2JzL2UwOGI4NjExLTRiZTItNDdkMS1iNDQ1LWI3YTc0NDJmZWMxMD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4fb9923b-b066-4d5a-82d1-3c64897cdd75" + "2ba81a29-0c1c-4d3c-836e-57a9712d77c3" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -5649,11 +7969,11 @@ "nosniff" ], "x-ms-request-id": [ - "fbb047c7-d3d6-45b2-a691-f62080e7d5f4" + "58bdcfcf-ac46-4c04-b612-11b1a672da0e" ], "x-ms-client-request-id": [ - "4fb9923b-b066-4d5a-82d1-3c64897cdd75", - "4fb9923b-b066-4d5a-82d1-3c64897cdd75" + "2ba81a29-0c1c-4d3c-836e-57a9712d77c3", + "2ba81a29-0c1c-4d3c-836e-57a9712d77c3" ], "X-Powered-By": [ "ASP.NET" @@ -5662,16 +7982,16 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "127" + "104" ], "x-ms-correlation-request-id": [ - "fbb047c7-d3d6-45b2-a691-f62080e7d5f4" + "58bdcfcf-ac46-4c04-b612-11b1a672da0e" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220225T002742Z:fbb047c7-d3d6-45b2-a691-f62080e7d5f4" + "WESTINDIA:20220517T080121Z:58bdcfcf-ac46-4c04-b612-11b1a672da0e" ], "Date": [ - "Fri, 25 Feb 2022 00:27:42 GMT" + "Tue, 17 May 2022 08:01:20 GMT" ], "Content-Length": [ "971" @@ -5683,26 +8003,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSV8c1d8dac/backupJobs/bc2fae5a-c727-496a-b070-6f551700b68b\",\r\n \"name\": \"bc2fae5a-c727-496a-b070-6f551700b68b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg8c1d8dac;pstestvm8c1d80\",\r\n \"duration\": \"PT21M38.7644559S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm8c1d80\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm8c1d80\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-25T00:06:03.2288224Z\",\r\n \"activityId\": \"4fb9923b-b066-4d5a-82d1-3c64897cdd75\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.RecoveryServices/vaults/PSTestRSV93055a66/backupJobs/e08b8611-4be2-47d1-b445-b7a7442fec10\",\r\n \"name\": \"e08b8611-4be2-47d1-b445-b7a7442fec10\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg93055a66;pstestvm930550\",\r\n \"duration\": \"PT22M22.4927931S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm930550\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm930550\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T07:38:57.2855123Z\",\r\n \"activityId\": \"2ba81a29-0c1c-4d3c-836e-57a9712d77c3\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSV8c1d8dac/backupJobs/bc2fae5a-c727-496a-b070-6f551700b68b?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOGMxZDhkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y4YzFkOGRhYy9iYWNrdXBKb2JzL2JjMmZhZTVhLWM3MjctNDk2YS1iMDcwLTZmNTUxNzAwYjY4Yj9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.RecoveryServices/vaults/PSTestRSV93055a66/backupJobs/e08b8611-4be2-47d1-b445-b7a7442fec10?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTMwNTVhNjYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5MzA1NWE2Ni9iYWNrdXBKb2JzL2UwOGI4NjExLTRiZTItNDdkMS1iNDQ1LWI3YTc0NDJmZWMxMD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4fb9923b-b066-4d5a-82d1-3c64897cdd75" + "2ba81a29-0c1c-4d3c-836e-57a9712d77c3" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -5720,11 +8040,11 @@ "nosniff" ], "x-ms-request-id": [ - "8fe42247-dbb5-4d78-8c0a-84aa01cd4484" + "f6fb7a1a-3197-49d1-a0fb-661c8d99faa2" ], "x-ms-client-request-id": [ - "4fb9923b-b066-4d5a-82d1-3c64897cdd75", - "4fb9923b-b066-4d5a-82d1-3c64897cdd75" + "2ba81a29-0c1c-4d3c-836e-57a9712d77c3", + "2ba81a29-0c1c-4d3c-836e-57a9712d77c3" ], "X-Powered-By": [ "ASP.NET" @@ -5733,16 +8053,16 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "126" + "103" ], "x-ms-correlation-request-id": [ - "8fe42247-dbb5-4d78-8c0a-84aa01cd4484" + "f6fb7a1a-3197-49d1-a0fb-661c8d99faa2" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220225T002844Z:8fe42247-dbb5-4d78-8c0a-84aa01cd4484" + "WESTINDIA:20220517T080151Z:f6fb7a1a-3197-49d1-a0fb-661c8d99faa2" ], "Date": [ - "Fri, 25 Feb 2022 00:28:44 GMT" + "Tue, 17 May 2022 08:01:51 GMT" ], "Content-Length": [ "971" @@ -5754,26 +8074,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSV8c1d8dac/backupJobs/bc2fae5a-c727-496a-b070-6f551700b68b\",\r\n \"name\": \"bc2fae5a-c727-496a-b070-6f551700b68b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg8c1d8dac;pstestvm8c1d80\",\r\n \"duration\": \"PT22M41.0899784S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm8c1d80\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm8c1d80\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-25T00:06:03.2288224Z\",\r\n \"activityId\": \"4fb9923b-b066-4d5a-82d1-3c64897cdd75\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.RecoveryServices/vaults/PSTestRSV93055a66/backupJobs/e08b8611-4be2-47d1-b445-b7a7442fec10\",\r\n \"name\": \"e08b8611-4be2-47d1-b445-b7a7442fec10\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg93055a66;pstestvm930550\",\r\n \"duration\": \"PT22M53.1872328S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm930550\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm930550\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T07:38:57.2855123Z\",\r\n \"activityId\": \"2ba81a29-0c1c-4d3c-836e-57a9712d77c3\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSV8c1d8dac/backupJobs/bc2fae5a-c727-496a-b070-6f551700b68b?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOGMxZDhkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y4YzFkOGRhYy9iYWNrdXBKb2JzL2JjMmZhZTVhLWM3MjctNDk2YS1iMDcwLTZmNTUxNzAwYjY4Yj9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.RecoveryServices/vaults/PSTestRSV93055a66/backupJobs/e08b8611-4be2-47d1-b445-b7a7442fec10?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTMwNTVhNjYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5MzA1NWE2Ni9iYWNrdXBKb2JzL2UwOGI4NjExLTRiZTItNDdkMS1iNDQ1LWI3YTc0NDJmZWMxMD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4fb9923b-b066-4d5a-82d1-3c64897cdd75" + "2ba81a29-0c1c-4d3c-836e-57a9712d77c3" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -5791,11 +8111,11 @@ "nosniff" ], "x-ms-request-id": [ - "fcc9e72e-af15-44f6-815d-5e0556f54535" + "3993b498-5574-48e7-8b63-caa24befc254" ], "x-ms-client-request-id": [ - "4fb9923b-b066-4d5a-82d1-3c64897cdd75", - "4fb9923b-b066-4d5a-82d1-3c64897cdd75" + "2ba81a29-0c1c-4d3c-836e-57a9712d77c3", + "2ba81a29-0c1c-4d3c-836e-57a9712d77c3" ], "X-Powered-By": [ "ASP.NET" @@ -5804,16 +8124,16 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "125" + "102" ], "x-ms-correlation-request-id": [ - "fcc9e72e-af15-44f6-815d-5e0556f54535" + "3993b498-5574-48e7-8b63-caa24befc254" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220225T002946Z:fcc9e72e-af15-44f6-815d-5e0556f54535" + "WESTINDIA:20220517T080222Z:3993b498-5574-48e7-8b63-caa24befc254" ], "Date": [ - "Fri, 25 Feb 2022 00:29:46 GMT" + "Tue, 17 May 2022 08:02:21 GMT" ], "Content-Length": [ "971" @@ -5825,26 +8145,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSV8c1d8dac/backupJobs/bc2fae5a-c727-496a-b070-6f551700b68b\",\r\n \"name\": \"bc2fae5a-c727-496a-b070-6f551700b68b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg8c1d8dac;pstestvm8c1d80\",\r\n \"duration\": \"PT23M43.1607714S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm8c1d80\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm8c1d80\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-25T00:06:03.2288224Z\",\r\n \"activityId\": \"4fb9923b-b066-4d5a-82d1-3c64897cdd75\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.RecoveryServices/vaults/PSTestRSV93055a66/backupJobs/e08b8611-4be2-47d1-b445-b7a7442fec10\",\r\n \"name\": \"e08b8611-4be2-47d1-b445-b7a7442fec10\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg93055a66;pstestvm930550\",\r\n \"duration\": \"PT23M23.7896916S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm930550\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm930550\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T07:38:57.2855123Z\",\r\n \"activityId\": \"2ba81a29-0c1c-4d3c-836e-57a9712d77c3\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSV8c1d8dac/backupJobs/bc2fae5a-c727-496a-b070-6f551700b68b?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOGMxZDhkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y4YzFkOGRhYy9iYWNrdXBKb2JzL2JjMmZhZTVhLWM3MjctNDk2YS1iMDcwLTZmNTUxNzAwYjY4Yj9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.RecoveryServices/vaults/PSTestRSV93055a66/backupJobs/e08b8611-4be2-47d1-b445-b7a7442fec10?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTMwNTVhNjYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5MzA1NWE2Ni9iYWNrdXBKb2JzL2UwOGI4NjExLTRiZTItNDdkMS1iNDQ1LWI3YTc0NDJmZWMxMD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4fb9923b-b066-4d5a-82d1-3c64897cdd75" + "2ba81a29-0c1c-4d3c-836e-57a9712d77c3" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -5862,11 +8182,11 @@ "nosniff" ], "x-ms-request-id": [ - "b0a7ae05-700b-4caf-af4d-1a4597bbf88b" + "56871b11-3e56-44d5-bdef-9336eb0b76f3" ], "x-ms-client-request-id": [ - "4fb9923b-b066-4d5a-82d1-3c64897cdd75", - "4fb9923b-b066-4d5a-82d1-3c64897cdd75" + "2ba81a29-0c1c-4d3c-836e-57a9712d77c3", + "2ba81a29-0c1c-4d3c-836e-57a9712d77c3" ], "X-Powered-By": [ "ASP.NET" @@ -5875,16 +8195,16 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "124" + "101" ], "x-ms-correlation-request-id": [ - "b0a7ae05-700b-4caf-af4d-1a4597bbf88b" + "56871b11-3e56-44d5-bdef-9336eb0b76f3" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220225T003131Z:b0a7ae05-700b-4caf-af4d-1a4597bbf88b" + "WESTINDIA:20220517T080253Z:56871b11-3e56-44d5-bdef-9336eb0b76f3" ], "Date": [ - "Fri, 25 Feb 2022 00:31:30 GMT" + "Tue, 17 May 2022 08:02:52 GMT" ], "Content-Length": [ "971" @@ -5896,26 +8216,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSV8c1d8dac/backupJobs/bc2fae5a-c727-496a-b070-6f551700b68b\",\r\n \"name\": \"bc2fae5a-c727-496a-b070-6f551700b68b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg8c1d8dac;pstestvm8c1d80\",\r\n \"duration\": \"PT25M27.2560634S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm8c1d80\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm8c1d80\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-25T00:06:03.2288224Z\",\r\n \"activityId\": \"4fb9923b-b066-4d5a-82d1-3c64897cdd75\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.RecoveryServices/vaults/PSTestRSV93055a66/backupJobs/e08b8611-4be2-47d1-b445-b7a7442fec10\",\r\n \"name\": \"e08b8611-4be2-47d1-b445-b7a7442fec10\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg93055a66;pstestvm930550\",\r\n \"duration\": \"PT23M54.5229218S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm930550\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm930550\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T07:38:57.2855123Z\",\r\n \"activityId\": \"2ba81a29-0c1c-4d3c-836e-57a9712d77c3\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSV8c1d8dac/backupJobs/bc2fae5a-c727-496a-b070-6f551700b68b?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOGMxZDhkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y4YzFkOGRhYy9iYWNrdXBKb2JzL2JjMmZhZTVhLWM3MjctNDk2YS1iMDcwLTZmNTUxNzAwYjY4Yj9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.RecoveryServices/vaults/PSTestRSV93055a66/backupJobs/e08b8611-4be2-47d1-b445-b7a7442fec10?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTMwNTVhNjYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5MzA1NWE2Ni9iYWNrdXBKb2JzL2UwOGI4NjExLTRiZTItNDdkMS1iNDQ1LWI3YTc0NDJmZWMxMD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4fb9923b-b066-4d5a-82d1-3c64897cdd75" + "2ba81a29-0c1c-4d3c-836e-57a9712d77c3" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -5933,11 +8253,11 @@ "nosniff" ], "x-ms-request-id": [ - "33070f8a-1be9-403d-922c-2e866b6bdd6d" + "3fc84464-9592-4e0d-a7e4-e0c454a62183" ], "x-ms-client-request-id": [ - "4fb9923b-b066-4d5a-82d1-3c64897cdd75", - "4fb9923b-b066-4d5a-82d1-3c64897cdd75" + "2ba81a29-0c1c-4d3c-836e-57a9712d77c3", + "2ba81a29-0c1c-4d3c-836e-57a9712d77c3" ], "X-Powered-By": [ "ASP.NET" @@ -5946,16 +8266,16 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "123" + "100" ], "x-ms-correlation-request-id": [ - "33070f8a-1be9-403d-922c-2e866b6bdd6d" + "3fc84464-9592-4e0d-a7e4-e0c454a62183" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220225T003233Z:33070f8a-1be9-403d-922c-2e866b6bdd6d" + "WESTINDIA:20220517T080323Z:3fc84464-9592-4e0d-a7e4-e0c454a62183" ], "Date": [ - "Fri, 25 Feb 2022 00:32:32 GMT" + "Tue, 17 May 2022 08:03:22 GMT" ], "Content-Length": [ "971" @@ -5967,26 +8287,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSV8c1d8dac/backupJobs/bc2fae5a-c727-496a-b070-6f551700b68b\",\r\n \"name\": \"bc2fae5a-c727-496a-b070-6f551700b68b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg8c1d8dac;pstestvm8c1d80\",\r\n \"duration\": \"PT26M29.3850888S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm8c1d80\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm8c1d80\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-25T00:06:03.2288224Z\",\r\n \"activityId\": \"4fb9923b-b066-4d5a-82d1-3c64897cdd75\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.RecoveryServices/vaults/PSTestRSV93055a66/backupJobs/e08b8611-4be2-47d1-b445-b7a7442fec10\",\r\n \"name\": \"e08b8611-4be2-47d1-b445-b7a7442fec10\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg93055a66;pstestvm930550\",\r\n \"duration\": \"PT24M25.1374987S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm930550\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm930550\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T07:38:57.2855123Z\",\r\n \"activityId\": \"2ba81a29-0c1c-4d3c-836e-57a9712d77c3\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSV8c1d8dac/backupJobs/bc2fae5a-c727-496a-b070-6f551700b68b?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOGMxZDhkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y4YzFkOGRhYy9iYWNrdXBKb2JzL2JjMmZhZTVhLWM3MjctNDk2YS1iMDcwLTZmNTUxNzAwYjY4Yj9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.RecoveryServices/vaults/PSTestRSV93055a66/backupJobs/e08b8611-4be2-47d1-b445-b7a7442fec10?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTMwNTVhNjYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5MzA1NWE2Ni9iYWNrdXBKb2JzL2UwOGI4NjExLTRiZTItNDdkMS1iNDQ1LWI3YTc0NDJmZWMxMD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4fb9923b-b066-4d5a-82d1-3c64897cdd75" + "2ba81a29-0c1c-4d3c-836e-57a9712d77c3" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -6004,11 +8324,11 @@ "nosniff" ], "x-ms-request-id": [ - "8f5921d8-aeb6-41c2-99cb-18b70c832399" + "6d70b66d-5e35-42c7-aedf-391a158ac6cc" ], "x-ms-client-request-id": [ - "4fb9923b-b066-4d5a-82d1-3c64897cdd75", - "4fb9923b-b066-4d5a-82d1-3c64897cdd75" + "2ba81a29-0c1c-4d3c-836e-57a9712d77c3", + "2ba81a29-0c1c-4d3c-836e-57a9712d77c3" ], "X-Powered-By": [ "ASP.NET" @@ -6017,16 +8337,16 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "122" + "99" ], "x-ms-correlation-request-id": [ - "8f5921d8-aeb6-41c2-99cb-18b70c832399" + "6d70b66d-5e35-42c7-aedf-391a158ac6cc" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220225T003335Z:8f5921d8-aeb6-41c2-99cb-18b70c832399" + "WESTINDIA:20220517T080354Z:6d70b66d-5e35-42c7-aedf-391a158ac6cc" ], "Date": [ - "Fri, 25 Feb 2022 00:33:34 GMT" + "Tue, 17 May 2022 08:03:54 GMT" ], "Content-Length": [ "971" @@ -6038,26 +8358,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSV8c1d8dac/backupJobs/bc2fae5a-c727-496a-b070-6f551700b68b\",\r\n \"name\": \"bc2fae5a-c727-496a-b070-6f551700b68b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg8c1d8dac;pstestvm8c1d80\",\r\n \"duration\": \"PT27M31.6430365S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm8c1d80\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm8c1d80\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-25T00:06:03.2288224Z\",\r\n \"activityId\": \"4fb9923b-b066-4d5a-82d1-3c64897cdd75\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.RecoveryServices/vaults/PSTestRSV93055a66/backupJobs/e08b8611-4be2-47d1-b445-b7a7442fec10\",\r\n \"name\": \"e08b8611-4be2-47d1-b445-b7a7442fec10\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg93055a66;pstestvm930550\",\r\n \"duration\": \"PT24M55.8902196S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm930550\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm930550\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T07:38:57.2855123Z\",\r\n \"activityId\": \"2ba81a29-0c1c-4d3c-836e-57a9712d77c3\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSV8c1d8dac/backupJobs/bc2fae5a-c727-496a-b070-6f551700b68b?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOGMxZDhkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y4YzFkOGRhYy9iYWNrdXBKb2JzL2JjMmZhZTVhLWM3MjctNDk2YS1iMDcwLTZmNTUxNzAwYjY4Yj9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.RecoveryServices/vaults/PSTestRSV93055a66/backupJobs/e08b8611-4be2-47d1-b445-b7a7442fec10?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTMwNTVhNjYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5MzA1NWE2Ni9iYWNrdXBKb2JzL2UwOGI4NjExLTRiZTItNDdkMS1iNDQ1LWI3YTc0NDJmZWMxMD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4fb9923b-b066-4d5a-82d1-3c64897cdd75" + "2ba81a29-0c1c-4d3c-836e-57a9712d77c3" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -6075,11 +8395,11 @@ "nosniff" ], "x-ms-request-id": [ - "a27f1209-c452-461b-aaba-d21ea5855ca7" + "fa6a0804-2343-4765-a952-a50cefa4110b" ], "x-ms-client-request-id": [ - "4fb9923b-b066-4d5a-82d1-3c64897cdd75", - "4fb9923b-b066-4d5a-82d1-3c64897cdd75" + "2ba81a29-0c1c-4d3c-836e-57a9712d77c3", + "2ba81a29-0c1c-4d3c-836e-57a9712d77c3" ], "X-Powered-By": [ "ASP.NET" @@ -6088,16 +8408,16 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "121" + "98" ], "x-ms-correlation-request-id": [ - "a27f1209-c452-461b-aaba-d21ea5855ca7" + "fa6a0804-2343-4765-a952-a50cefa4110b" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220225T003439Z:a27f1209-c452-461b-aaba-d21ea5855ca7" + "WESTINDIA:20220517T080424Z:fa6a0804-2343-4765-a952-a50cefa4110b" ], "Date": [ - "Fri, 25 Feb 2022 00:34:38 GMT" + "Tue, 17 May 2022 08:04:24 GMT" ], "Content-Length": [ "971" @@ -6109,26 +8429,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSV8c1d8dac/backupJobs/bc2fae5a-c727-496a-b070-6f551700b68b\",\r\n \"name\": \"bc2fae5a-c727-496a-b070-6f551700b68b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg8c1d8dac;pstestvm8c1d80\",\r\n \"duration\": \"PT28M35.9948886S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm8c1d80\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm8c1d80\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-25T00:06:03.2288224Z\",\r\n \"activityId\": \"4fb9923b-b066-4d5a-82d1-3c64897cdd75\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.RecoveryServices/vaults/PSTestRSV93055a66/backupJobs/e08b8611-4be2-47d1-b445-b7a7442fec10\",\r\n \"name\": \"e08b8611-4be2-47d1-b445-b7a7442fec10\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg93055a66;pstestvm930550\",\r\n \"duration\": \"PT25M26.3939946S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm930550\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm930550\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T07:38:57.2855123Z\",\r\n \"activityId\": \"2ba81a29-0c1c-4d3c-836e-57a9712d77c3\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSV8c1d8dac/backupJobs/bc2fae5a-c727-496a-b070-6f551700b68b?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOGMxZDhkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y4YzFkOGRhYy9iYWNrdXBKb2JzL2JjMmZhZTVhLWM3MjctNDk2YS1iMDcwLTZmNTUxNzAwYjY4Yj9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.RecoveryServices/vaults/PSTestRSV93055a66/backupJobs/e08b8611-4be2-47d1-b445-b7a7442fec10?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTMwNTVhNjYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5MzA1NWE2Ni9iYWNrdXBKb2JzL2UwOGI4NjExLTRiZTItNDdkMS1iNDQ1LWI3YTc0NDJmZWMxMD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4fb9923b-b066-4d5a-82d1-3c64897cdd75" + "2ba81a29-0c1c-4d3c-836e-57a9712d77c3" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -6146,11 +8466,11 @@ "nosniff" ], "x-ms-request-id": [ - "8abea2ce-1102-41f5-86d4-a264132cb1ed" + "37e5cb9f-6249-4144-9b86-597b55abb10d" ], "x-ms-client-request-id": [ - "4fb9923b-b066-4d5a-82d1-3c64897cdd75", - "4fb9923b-b066-4d5a-82d1-3c64897cdd75" + "2ba81a29-0c1c-4d3c-836e-57a9712d77c3", + "2ba81a29-0c1c-4d3c-836e-57a9712d77c3" ], "X-Powered-By": [ "ASP.NET" @@ -6159,19 +8479,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "120" + "97" ], "x-ms-correlation-request-id": [ - "8abea2ce-1102-41f5-86d4-a264132cb1ed" + "37e5cb9f-6249-4144-9b86-597b55abb10d" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220225T003554Z:8abea2ce-1102-41f5-86d4-a264132cb1ed" + "WESTINDIA:20220517T080455Z:37e5cb9f-6249-4144-9b86-597b55abb10d" ], "Date": [ - "Fri, 25 Feb 2022 00:35:54 GMT" + "Tue, 17 May 2022 08:04:55 GMT" ], "Content-Length": [ - "970" + "971" ], "Content-Type": [ "application/json" @@ -6180,26 +8500,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSV8c1d8dac/backupJobs/bc2fae5a-c727-496a-b070-6f551700b68b\",\r\n \"name\": \"bc2fae5a-c727-496a-b070-6f551700b68b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg8c1d8dac;pstestvm8c1d80\",\r\n \"duration\": \"PT29M50.857672S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm8c1d80\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm8c1d80\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-25T00:06:03.2288224Z\",\r\n \"activityId\": \"4fb9923b-b066-4d5a-82d1-3c64897cdd75\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.RecoveryServices/vaults/PSTestRSV93055a66/backupJobs/e08b8611-4be2-47d1-b445-b7a7442fec10\",\r\n \"name\": \"e08b8611-4be2-47d1-b445-b7a7442fec10\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg93055a66;pstestvm930550\",\r\n \"duration\": \"PT25M57.0574431S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm930550\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm930550\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T07:38:57.2855123Z\",\r\n \"activityId\": \"2ba81a29-0c1c-4d3c-836e-57a9712d77c3\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSV8c1d8dac/backupJobs/bc2fae5a-c727-496a-b070-6f551700b68b?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOGMxZDhkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y4YzFkOGRhYy9iYWNrdXBKb2JzL2JjMmZhZTVhLWM3MjctNDk2YS1iMDcwLTZmNTUxNzAwYjY4Yj9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.RecoveryServices/vaults/PSTestRSV93055a66/backupJobs/e08b8611-4be2-47d1-b445-b7a7442fec10?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTMwNTVhNjYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5MzA1NWE2Ni9iYWNrdXBKb2JzL2UwOGI4NjExLTRiZTItNDdkMS1iNDQ1LWI3YTc0NDJmZWMxMD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4fb9923b-b066-4d5a-82d1-3c64897cdd75" + "2ba81a29-0c1c-4d3c-836e-57a9712d77c3" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -6217,11 +8537,11 @@ "nosniff" ], "x-ms-request-id": [ - "ba87ffc6-bcf9-4919-ad1d-22f5e005dbb5" + "5907a8d7-d8b3-4215-8cae-b4307b2587a2" ], "x-ms-client-request-id": [ - "4fb9923b-b066-4d5a-82d1-3c64897cdd75", - "4fb9923b-b066-4d5a-82d1-3c64897cdd75" + "2ba81a29-0c1c-4d3c-836e-57a9712d77c3", + "2ba81a29-0c1c-4d3c-836e-57a9712d77c3" ], "X-Powered-By": [ "ASP.NET" @@ -6230,16 +8550,16 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "119" + "96" ], "x-ms-correlation-request-id": [ - "ba87ffc6-bcf9-4919-ad1d-22f5e005dbb5" + "5907a8d7-d8b3-4215-8cae-b4307b2587a2" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220225T003656Z:ba87ffc6-bcf9-4919-ad1d-22f5e005dbb5" + "WESTINDIA:20220517T080526Z:5907a8d7-d8b3-4215-8cae-b4307b2587a2" ], "Date": [ - "Fri, 25 Feb 2022 00:36:55 GMT" + "Tue, 17 May 2022 08:05:25 GMT" ], "Content-Length": [ "971" @@ -6251,26 +8571,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSV8c1d8dac/backupJobs/bc2fae5a-c727-496a-b070-6f551700b68b\",\r\n \"name\": \"bc2fae5a-c727-496a-b070-6f551700b68b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg8c1d8dac;pstestvm8c1d80\",\r\n \"duration\": \"PT30M52.8631942S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm8c1d80\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm8c1d80\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-25T00:06:03.2288224Z\",\r\n \"activityId\": \"4fb9923b-b066-4d5a-82d1-3c64897cdd75\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.RecoveryServices/vaults/PSTestRSV93055a66/backupJobs/e08b8611-4be2-47d1-b445-b7a7442fec10\",\r\n \"name\": \"e08b8611-4be2-47d1-b445-b7a7442fec10\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg93055a66;pstestvm930550\",\r\n \"duration\": \"PT26M27.6124295S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm930550\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm930550\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T07:38:57.2855123Z\",\r\n \"activityId\": \"2ba81a29-0c1c-4d3c-836e-57a9712d77c3\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSV8c1d8dac/backupJobs/bc2fae5a-c727-496a-b070-6f551700b68b?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOGMxZDhkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y4YzFkOGRhYy9iYWNrdXBKb2JzL2JjMmZhZTVhLWM3MjctNDk2YS1iMDcwLTZmNTUxNzAwYjY4Yj9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.RecoveryServices/vaults/PSTestRSV93055a66/backupJobs/e08b8611-4be2-47d1-b445-b7a7442fec10?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTMwNTVhNjYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5MzA1NWE2Ni9iYWNrdXBKb2JzL2UwOGI4NjExLTRiZTItNDdkMS1iNDQ1LWI3YTc0NDJmZWMxMD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4fb9923b-b066-4d5a-82d1-3c64897cdd75" + "2ba81a29-0c1c-4d3c-836e-57a9712d77c3" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -6288,11 +8608,11 @@ "nosniff" ], "x-ms-request-id": [ - "13d8c81c-46bf-485d-945f-1dc63ca36555" + "a0fd230a-a39c-4113-87e4-5b090bedab0c" ], "x-ms-client-request-id": [ - "4fb9923b-b066-4d5a-82d1-3c64897cdd75", - "4fb9923b-b066-4d5a-82d1-3c64897cdd75" + "2ba81a29-0c1c-4d3c-836e-57a9712d77c3", + "2ba81a29-0c1c-4d3c-836e-57a9712d77c3" ], "X-Powered-By": [ "ASP.NET" @@ -6301,19 +8621,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "118" + "95" ], "x-ms-correlation-request-id": [ - "13d8c81c-46bf-485d-945f-1dc63ca36555" + "a0fd230a-a39c-4113-87e4-5b090bedab0c" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220225T003806Z:13d8c81c-46bf-485d-945f-1dc63ca36555" + "WESTINDIA:20220517T080557Z:a0fd230a-a39c-4113-87e4-5b090bedab0c" ], "Date": [ - "Fri, 25 Feb 2022 00:38:06 GMT" + "Tue, 17 May 2022 08:05:57 GMT" ], "Content-Length": [ - "970" + "971" ], "Content-Type": [ "application/json" @@ -6322,26 +8642,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSV8c1d8dac/backupJobs/bc2fae5a-c727-496a-b070-6f551700b68b\",\r\n \"name\": \"bc2fae5a-c727-496a-b070-6f551700b68b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg8c1d8dac;pstestvm8c1d80\",\r\n \"duration\": \"PT32M3.2063225S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm8c1d80\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm8c1d80\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-25T00:06:03.2288224Z\",\r\n \"activityId\": \"4fb9923b-b066-4d5a-82d1-3c64897cdd75\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.RecoveryServices/vaults/PSTestRSV93055a66/backupJobs/e08b8611-4be2-47d1-b445-b7a7442fec10\",\r\n \"name\": \"e08b8611-4be2-47d1-b445-b7a7442fec10\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg93055a66;pstestvm930550\",\r\n \"duration\": \"PT26M58.6595847S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm930550\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm930550\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T07:38:57.2855123Z\",\r\n \"activityId\": \"2ba81a29-0c1c-4d3c-836e-57a9712d77c3\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSV8c1d8dac/backupJobs/bc2fae5a-c727-496a-b070-6f551700b68b?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOGMxZDhkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y4YzFkOGRhYy9iYWNrdXBKb2JzL2JjMmZhZTVhLWM3MjctNDk2YS1iMDcwLTZmNTUxNzAwYjY4Yj9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.RecoveryServices/vaults/PSTestRSV93055a66/backupJobs/e08b8611-4be2-47d1-b445-b7a7442fec10?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTMwNTVhNjYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5MzA1NWE2Ni9iYWNrdXBKb2JzL2UwOGI4NjExLTRiZTItNDdkMS1iNDQ1LWI3YTc0NDJmZWMxMD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4fb9923b-b066-4d5a-82d1-3c64897cdd75" + "2ba81a29-0c1c-4d3c-836e-57a9712d77c3" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -6359,11 +8679,11 @@ "nosniff" ], "x-ms-request-id": [ - "1edd7d14-d2f3-4431-910a-ccc22eacf327" + "453b9d2d-e608-43b9-b095-57cb24bb6527" ], "x-ms-client-request-id": [ - "4fb9923b-b066-4d5a-82d1-3c64897cdd75", - "4fb9923b-b066-4d5a-82d1-3c64897cdd75" + "2ba81a29-0c1c-4d3c-836e-57a9712d77c3", + "2ba81a29-0c1c-4d3c-836e-57a9712d77c3" ], "X-Powered-By": [ "ASP.NET" @@ -6372,19 +8692,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "117" + "94" ], "x-ms-correlation-request-id": [ - "1edd7d14-d2f3-4431-910a-ccc22eacf327" + "453b9d2d-e608-43b9-b095-57cb24bb6527" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220225T003909Z:1edd7d14-d2f3-4431-910a-ccc22eacf327" + "WESTINDIA:20220517T080627Z:453b9d2d-e608-43b9-b095-57cb24bb6527" ], "Date": [ - "Fri, 25 Feb 2022 00:39:08 GMT" + "Tue, 17 May 2022 08:06:27 GMT" ], "Content-Length": [ - "970" + "971" ], "Content-Type": [ "application/json" @@ -6393,26 +8713,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSV8c1d8dac/backupJobs/bc2fae5a-c727-496a-b070-6f551700b68b\",\r\n \"name\": \"bc2fae5a-c727-496a-b070-6f551700b68b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg8c1d8dac;pstestvm8c1d80\",\r\n \"duration\": \"PT33M5.3710017S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm8c1d80\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm8c1d80\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-25T00:06:03.2288224Z\",\r\n \"activityId\": \"4fb9923b-b066-4d5a-82d1-3c64897cdd75\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.RecoveryServices/vaults/PSTestRSV93055a66/backupJobs/e08b8611-4be2-47d1-b445-b7a7442fec10\",\r\n \"name\": \"e08b8611-4be2-47d1-b445-b7a7442fec10\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg93055a66;pstestvm930550\",\r\n \"duration\": \"PT27M29.2838034S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm930550\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm930550\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T07:38:57.2855123Z\",\r\n \"activityId\": \"2ba81a29-0c1c-4d3c-836e-57a9712d77c3\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSV8c1d8dac/backupJobs/bc2fae5a-c727-496a-b070-6f551700b68b?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOGMxZDhkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y4YzFkOGRhYy9iYWNrdXBKb2JzL2JjMmZhZTVhLWM3MjctNDk2YS1iMDcwLTZmNTUxNzAwYjY4Yj9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.RecoveryServices/vaults/PSTestRSV93055a66/backupJobs/e08b8611-4be2-47d1-b445-b7a7442fec10?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTMwNTVhNjYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5MzA1NWE2Ni9iYWNrdXBKb2JzL2UwOGI4NjExLTRiZTItNDdkMS1iNDQ1LWI3YTc0NDJmZWMxMD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4fb9923b-b066-4d5a-82d1-3c64897cdd75" + "2ba81a29-0c1c-4d3c-836e-57a9712d77c3" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -6430,11 +8750,11 @@ "nosniff" ], "x-ms-request-id": [ - "dfa751d3-6761-4d16-9039-9c0add1de352" + "efab7d6a-e140-439e-99ba-b88dd12ad228" ], "x-ms-client-request-id": [ - "4fb9923b-b066-4d5a-82d1-3c64897cdd75", - "4fb9923b-b066-4d5a-82d1-3c64897cdd75" + "2ba81a29-0c1c-4d3c-836e-57a9712d77c3", + "2ba81a29-0c1c-4d3c-836e-57a9712d77c3" ], "X-Powered-By": [ "ASP.NET" @@ -6443,16 +8763,16 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "116" + "93" ], "x-ms-correlation-request-id": [ - "dfa751d3-6761-4d16-9039-9c0add1de352" + "efab7d6a-e140-439e-99ba-b88dd12ad228" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220225T004011Z:dfa751d3-6761-4d16-9039-9c0add1de352" + "WESTINDIA:20220517T080658Z:efab7d6a-e140-439e-99ba-b88dd12ad228" ], "Date": [ - "Fri, 25 Feb 2022 00:40:11 GMT" + "Tue, 17 May 2022 08:06:58 GMT" ], "Content-Length": [ "970" @@ -6464,26 +8784,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSV8c1d8dac/backupJobs/bc2fae5a-c727-496a-b070-6f551700b68b\",\r\n \"name\": \"bc2fae5a-c727-496a-b070-6f551700b68b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg8c1d8dac;pstestvm8c1d80\",\r\n \"duration\": \"PT34M7.9989976S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm8c1d80\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm8c1d80\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-25T00:06:03.2288224Z\",\r\n \"activityId\": \"4fb9923b-b066-4d5a-82d1-3c64897cdd75\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.RecoveryServices/vaults/PSTestRSV93055a66/backupJobs/e08b8611-4be2-47d1-b445-b7a7442fec10\",\r\n \"name\": \"e08b8611-4be2-47d1-b445-b7a7442fec10\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg93055a66;pstestvm930550\",\r\n \"duration\": \"PT28M0.0060663S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm930550\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm930550\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T07:38:57.2855123Z\",\r\n \"activityId\": \"2ba81a29-0c1c-4d3c-836e-57a9712d77c3\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSV8c1d8dac/backupJobs/bc2fae5a-c727-496a-b070-6f551700b68b?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOGMxZDhkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y4YzFkOGRhYy9iYWNrdXBKb2JzL2JjMmZhZTVhLWM3MjctNDk2YS1iMDcwLTZmNTUxNzAwYjY4Yj9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.RecoveryServices/vaults/PSTestRSV93055a66/backupJobs/e08b8611-4be2-47d1-b445-b7a7442fec10?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTMwNTVhNjYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5MzA1NWE2Ni9iYWNrdXBKb2JzL2UwOGI4NjExLTRiZTItNDdkMS1iNDQ1LWI3YTc0NDJmZWMxMD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4fb9923b-b066-4d5a-82d1-3c64897cdd75" + "2ba81a29-0c1c-4d3c-836e-57a9712d77c3" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -6501,11 +8821,11 @@ "nosniff" ], "x-ms-request-id": [ - "7ebb55e2-c844-4e42-bbd8-e39ab221f00e" + "d82223a5-7bf0-4a25-92a8-93a010e92a4a" ], "x-ms-client-request-id": [ - "4fb9923b-b066-4d5a-82d1-3c64897cdd75", - "4fb9923b-b066-4d5a-82d1-3c64897cdd75" + "2ba81a29-0c1c-4d3c-836e-57a9712d77c3", + "2ba81a29-0c1c-4d3c-836e-57a9712d77c3" ], "X-Powered-By": [ "ASP.NET" @@ -6514,16 +8834,16 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "115" + "92" ], "x-ms-correlation-request-id": [ - "7ebb55e2-c844-4e42-bbd8-e39ab221f00e" + "d82223a5-7bf0-4a25-92a8-93a010e92a4a" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220225T004119Z:7ebb55e2-c844-4e42-bbd8-e39ab221f00e" + "WESTINDIA:20220517T080729Z:d82223a5-7bf0-4a25-92a8-93a010e92a4a" ], "Date": [ - "Fri, 25 Feb 2022 00:41:18 GMT" + "Tue, 17 May 2022 08:07:28 GMT" ], "Content-Length": [ "971" @@ -6535,26 +8855,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSV8c1d8dac/backupJobs/bc2fae5a-c727-496a-b070-6f551700b68b\",\r\n \"name\": \"bc2fae5a-c727-496a-b070-6f551700b68b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg8c1d8dac;pstestvm8c1d80\",\r\n \"duration\": \"PT35M15.3568794S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm8c1d80\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm8c1d80\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-25T00:06:03.2288224Z\",\r\n \"activityId\": \"4fb9923b-b066-4d5a-82d1-3c64897cdd75\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.RecoveryServices/vaults/PSTestRSV93055a66/backupJobs/e08b8611-4be2-47d1-b445-b7a7442fec10\",\r\n \"name\": \"e08b8611-4be2-47d1-b445-b7a7442fec10\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg93055a66;pstestvm930550\",\r\n \"duration\": \"PT28M30.5504967S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm930550\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm930550\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T07:38:57.2855123Z\",\r\n \"activityId\": \"2ba81a29-0c1c-4d3c-836e-57a9712d77c3\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSV8c1d8dac/backupJobs/bc2fae5a-c727-496a-b070-6f551700b68b?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOGMxZDhkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y4YzFkOGRhYy9iYWNrdXBKb2JzL2JjMmZhZTVhLWM3MjctNDk2YS1iMDcwLTZmNTUxNzAwYjY4Yj9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.RecoveryServices/vaults/PSTestRSV93055a66/backupJobs/e08b8611-4be2-47d1-b445-b7a7442fec10?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTMwNTVhNjYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5MzA1NWE2Ni9iYWNrdXBKb2JzL2UwOGI4NjExLTRiZTItNDdkMS1iNDQ1LWI3YTc0NDJmZWMxMD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4fb9923b-b066-4d5a-82d1-3c64897cdd75" + "2ba81a29-0c1c-4d3c-836e-57a9712d77c3" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -6572,11 +8892,11 @@ "nosniff" ], "x-ms-request-id": [ - "fc5b951b-db5c-4370-8e5b-48b01f2fb71d" + "3be9b634-8e0a-4155-98c5-e29f1aa612d9" ], "x-ms-client-request-id": [ - "4fb9923b-b066-4d5a-82d1-3c64897cdd75", - "4fb9923b-b066-4d5a-82d1-3c64897cdd75" + "2ba81a29-0c1c-4d3c-836e-57a9712d77c3", + "2ba81a29-0c1c-4d3c-836e-57a9712d77c3" ], "X-Powered-By": [ "ASP.NET" @@ -6585,19 +8905,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "114" + "91" ], "x-ms-correlation-request-id": [ - "fc5b951b-db5c-4370-8e5b-48b01f2fb71d" + "3be9b634-8e0a-4155-98c5-e29f1aa612d9" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220225T004221Z:fc5b951b-db5c-4370-8e5b-48b01f2fb71d" + "WESTINDIA:20220517T080759Z:3be9b634-8e0a-4155-98c5-e29f1aa612d9" ], "Date": [ - "Fri, 25 Feb 2022 00:42:21 GMT" + "Tue, 17 May 2022 08:07:59 GMT" ], "Content-Length": [ - "971" + "970" ], "Content-Type": [ "application/json" @@ -6606,26 +8926,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSV8c1d8dac/backupJobs/bc2fae5a-c727-496a-b070-6f551700b68b\",\r\n \"name\": \"bc2fae5a-c727-496a-b070-6f551700b68b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg8c1d8dac;pstestvm8c1d80\",\r\n \"duration\": \"PT36M17.5099984S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm8c1d80\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm8c1d80\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-25T00:06:03.2288224Z\",\r\n \"activityId\": \"4fb9923b-b066-4d5a-82d1-3c64897cdd75\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.RecoveryServices/vaults/PSTestRSV93055a66/backupJobs/e08b8611-4be2-47d1-b445-b7a7442fec10\",\r\n \"name\": \"e08b8611-4be2-47d1-b445-b7a7442fec10\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg93055a66;pstestvm930550\",\r\n \"duration\": \"PT29M1.1214789S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm930550\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm930550\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T07:38:57.2855123Z\",\r\n \"activityId\": \"2ba81a29-0c1c-4d3c-836e-57a9712d77c3\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSV8c1d8dac/backupJobs/bc2fae5a-c727-496a-b070-6f551700b68b?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOGMxZDhkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y4YzFkOGRhYy9iYWNrdXBKb2JzL2JjMmZhZTVhLWM3MjctNDk2YS1iMDcwLTZmNTUxNzAwYjY4Yj9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.RecoveryServices/vaults/PSTestRSV93055a66/backupJobs/e08b8611-4be2-47d1-b445-b7a7442fec10?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTMwNTVhNjYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5MzA1NWE2Ni9iYWNrdXBKb2JzL2UwOGI4NjExLTRiZTItNDdkMS1iNDQ1LWI3YTc0NDJmZWMxMD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4fb9923b-b066-4d5a-82d1-3c64897cdd75" + "2ba81a29-0c1c-4d3c-836e-57a9712d77c3" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -6643,11 +8963,11 @@ "nosniff" ], "x-ms-request-id": [ - "c570d477-fc0b-4309-b325-a5305252963a" + "0a8c9b23-e070-45b2-8706-ebaa1b8b5423" ], "x-ms-client-request-id": [ - "4fb9923b-b066-4d5a-82d1-3c64897cdd75", - "4fb9923b-b066-4d5a-82d1-3c64897cdd75" + "2ba81a29-0c1c-4d3c-836e-57a9712d77c3", + "2ba81a29-0c1c-4d3c-836e-57a9712d77c3" ], "X-Powered-By": [ "ASP.NET" @@ -6656,16 +8976,16 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "113" + "90" ], "x-ms-correlation-request-id": [ - "c570d477-fc0b-4309-b325-a5305252963a" + "0a8c9b23-e070-45b2-8706-ebaa1b8b5423" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220225T004323Z:c570d477-fc0b-4309-b325-a5305252963a" + "WESTINDIA:20220517T080830Z:0a8c9b23-e070-45b2-8706-ebaa1b8b5423" ], "Date": [ - "Fri, 25 Feb 2022 00:43:22 GMT" + "Tue, 17 May 2022 08:08:29 GMT" ], "Content-Length": [ "971" @@ -6677,26 +8997,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSV8c1d8dac/backupJobs/bc2fae5a-c727-496a-b070-6f551700b68b\",\r\n \"name\": \"bc2fae5a-c727-496a-b070-6f551700b68b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg8c1d8dac;pstestvm8c1d80\",\r\n \"duration\": \"PT37M19.7197736S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm8c1d80\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm8c1d80\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-25T00:06:03.2288224Z\",\r\n \"activityId\": \"4fb9923b-b066-4d5a-82d1-3c64897cdd75\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.RecoveryServices/vaults/PSTestRSV93055a66/backupJobs/e08b8611-4be2-47d1-b445-b7a7442fec10\",\r\n \"name\": \"e08b8611-4be2-47d1-b445-b7a7442fec10\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg93055a66;pstestvm930550\",\r\n \"duration\": \"PT29M31.7351554S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm930550\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm930550\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T07:38:57.2855123Z\",\r\n \"activityId\": \"2ba81a29-0c1c-4d3c-836e-57a9712d77c3\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSV8c1d8dac/backupJobs/bc2fae5a-c727-496a-b070-6f551700b68b?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOGMxZDhkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y4YzFkOGRhYy9iYWNrdXBKb2JzL2JjMmZhZTVhLWM3MjctNDk2YS1iMDcwLTZmNTUxNzAwYjY4Yj9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.RecoveryServices/vaults/PSTestRSV93055a66/backupJobs/e08b8611-4be2-47d1-b445-b7a7442fec10?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTMwNTVhNjYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5MzA1NWE2Ni9iYWNrdXBKb2JzL2UwOGI4NjExLTRiZTItNDdkMS1iNDQ1LWI3YTc0NDJmZWMxMD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4fb9923b-b066-4d5a-82d1-3c64897cdd75" + "2ba81a29-0c1c-4d3c-836e-57a9712d77c3" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -6714,11 +9034,11 @@ "nosniff" ], "x-ms-request-id": [ - "ee6f2b6d-e781-4ba1-a2e3-d2a603330117" + "cdb902c0-c60b-4027-88ae-1cc3bab3ec2f" ], "x-ms-client-request-id": [ - "4fb9923b-b066-4d5a-82d1-3c64897cdd75", - "4fb9923b-b066-4d5a-82d1-3c64897cdd75" + "2ba81a29-0c1c-4d3c-836e-57a9712d77c3", + "2ba81a29-0c1c-4d3c-836e-57a9712d77c3" ], "X-Powered-By": [ "ASP.NET" @@ -6727,19 +9047,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "112" + "89" ], "x-ms-correlation-request-id": [ - "ee6f2b6d-e781-4ba1-a2e3-d2a603330117" + "cdb902c0-c60b-4027-88ae-1cc3bab3ec2f" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220225T004425Z:ee6f2b6d-e781-4ba1-a2e3-d2a603330117" + "WESTINDIA:20220517T080900Z:cdb902c0-c60b-4027-88ae-1cc3bab3ec2f" ], "Date": [ - "Fri, 25 Feb 2022 00:44:24 GMT" + "Tue, 17 May 2022 08:09:00 GMT" ], "Content-Length": [ - "971" + "970" ], "Content-Type": [ "application/json" @@ -6748,26 +9068,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSV8c1d8dac/backupJobs/bc2fae5a-c727-496a-b070-6f551700b68b\",\r\n \"name\": \"bc2fae5a-c727-496a-b070-6f551700b68b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg8c1d8dac;pstestvm8c1d80\",\r\n \"duration\": \"PT38M21.5837418S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm8c1d80\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm8c1d80\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-25T00:06:03.2288224Z\",\r\n \"activityId\": \"4fb9923b-b066-4d5a-82d1-3c64897cdd75\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.RecoveryServices/vaults/PSTestRSV93055a66/backupJobs/e08b8611-4be2-47d1-b445-b7a7442fec10\",\r\n \"name\": \"e08b8611-4be2-47d1-b445-b7a7442fec10\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg93055a66;pstestvm930550\",\r\n \"duration\": \"PT30M2.3149702S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm930550\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm930550\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T07:38:57.2855123Z\",\r\n \"activityId\": \"2ba81a29-0c1c-4d3c-836e-57a9712d77c3\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSV8c1d8dac/backupJobs/bc2fae5a-c727-496a-b070-6f551700b68b?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOGMxZDhkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y4YzFkOGRhYy9iYWNrdXBKb2JzL2JjMmZhZTVhLWM3MjctNDk2YS1iMDcwLTZmNTUxNzAwYjY4Yj9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.RecoveryServices/vaults/PSTestRSV93055a66/backupJobs/e08b8611-4be2-47d1-b445-b7a7442fec10?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTMwNTVhNjYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5MzA1NWE2Ni9iYWNrdXBKb2JzL2UwOGI4NjExLTRiZTItNDdkMS1iNDQ1LWI3YTc0NDJmZWMxMD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4fb9923b-b066-4d5a-82d1-3c64897cdd75" + "2ba81a29-0c1c-4d3c-836e-57a9712d77c3" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -6785,11 +9105,11 @@ "nosniff" ], "x-ms-request-id": [ - "5b067df6-31ae-45e0-9a71-df353281f122" + "6f0f87bd-fc7a-427d-b320-48c7af397ea1" ], "x-ms-client-request-id": [ - "4fb9923b-b066-4d5a-82d1-3c64897cdd75", - "4fb9923b-b066-4d5a-82d1-3c64897cdd75" + "2ba81a29-0c1c-4d3c-836e-57a9712d77c3", + "2ba81a29-0c1c-4d3c-836e-57a9712d77c3" ], "X-Powered-By": [ "ASP.NET" @@ -6798,16 +9118,16 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "111" + "88" ], "x-ms-correlation-request-id": [ - "5b067df6-31ae-45e0-9a71-df353281f122" + "6f0f87bd-fc7a-427d-b320-48c7af397ea1" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220225T004527Z:5b067df6-31ae-45e0-9a71-df353281f122" + "WESTINDIA:20220517T080931Z:6f0f87bd-fc7a-427d-b320-48c7af397ea1" ], "Date": [ - "Fri, 25 Feb 2022 00:45:26 GMT" + "Tue, 17 May 2022 08:09:31 GMT" ], "Content-Length": [ "971" @@ -6819,26 +9139,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSV8c1d8dac/backupJobs/bc2fae5a-c727-496a-b070-6f551700b68b\",\r\n \"name\": \"bc2fae5a-c727-496a-b070-6f551700b68b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg8c1d8dac;pstestvm8c1d80\",\r\n \"duration\": \"PT39M23.5242339S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm8c1d80\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm8c1d80\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-25T00:06:03.2288224Z\",\r\n \"activityId\": \"4fb9923b-b066-4d5a-82d1-3c64897cdd75\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.RecoveryServices/vaults/PSTestRSV93055a66/backupJobs/e08b8611-4be2-47d1-b445-b7a7442fec10\",\r\n \"name\": \"e08b8611-4be2-47d1-b445-b7a7442fec10\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg93055a66;pstestvm930550\",\r\n \"duration\": \"PT30M33.0078228S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm930550\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm930550\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T07:38:57.2855123Z\",\r\n \"activityId\": \"2ba81a29-0c1c-4d3c-836e-57a9712d77c3\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSV8c1d8dac/backupJobs/bc2fae5a-c727-496a-b070-6f551700b68b?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOGMxZDhkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y4YzFkOGRhYy9iYWNrdXBKb2JzL2JjMmZhZTVhLWM3MjctNDk2YS1iMDcwLTZmNTUxNzAwYjY4Yj9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.RecoveryServices/vaults/PSTestRSV93055a66/backupJobs/e08b8611-4be2-47d1-b445-b7a7442fec10?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTMwNTVhNjYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5MzA1NWE2Ni9iYWNrdXBKb2JzL2UwOGI4NjExLTRiZTItNDdkMS1iNDQ1LWI3YTc0NDJmZWMxMD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4fb9923b-b066-4d5a-82d1-3c64897cdd75" + "2ba81a29-0c1c-4d3c-836e-57a9712d77c3" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -6856,11 +9176,11 @@ "nosniff" ], "x-ms-request-id": [ - "73be6e91-d28f-4f4c-a5f6-ca1920bbddde" + "8c2c9da2-b845-405f-8db4-1bb61e19cba4" ], "x-ms-client-request-id": [ - "4fb9923b-b066-4d5a-82d1-3c64897cdd75", - "4fb9923b-b066-4d5a-82d1-3c64897cdd75" + "2ba81a29-0c1c-4d3c-836e-57a9712d77c3", + "2ba81a29-0c1c-4d3c-836e-57a9712d77c3" ], "X-Powered-By": [ "ASP.NET" @@ -6869,19 +9189,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "110" + "87" ], "x-ms-correlation-request-id": [ - "73be6e91-d28f-4f4c-a5f6-ca1920bbddde" + "8c2c9da2-b845-405f-8db4-1bb61e19cba4" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220225T004628Z:73be6e91-d28f-4f4c-a5f6-ca1920bbddde" + "WESTINDIA:20220517T081002Z:8c2c9da2-b845-405f-8db4-1bb61e19cba4" ], "Date": [ - "Fri, 25 Feb 2022 00:46:28 GMT" + "Tue, 17 May 2022 08:10:01 GMT" ], "Content-Length": [ - "971" + "970" ], "Content-Type": [ "application/json" @@ -6890,26 +9210,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSV8c1d8dac/backupJobs/bc2fae5a-c727-496a-b070-6f551700b68b\",\r\n \"name\": \"bc2fae5a-c727-496a-b070-6f551700b68b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg8c1d8dac;pstestvm8c1d80\",\r\n \"duration\": \"PT40M25.2928397S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm8c1d80\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm8c1d80\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-25T00:06:03.2288224Z\",\r\n \"activityId\": \"4fb9923b-b066-4d5a-82d1-3c64897cdd75\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.RecoveryServices/vaults/PSTestRSV93055a66/backupJobs/e08b8611-4be2-47d1-b445-b7a7442fec10\",\r\n \"name\": \"e08b8611-4be2-47d1-b445-b7a7442fec10\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg93055a66;pstestvm930550\",\r\n \"duration\": \"PT31M3.7975709S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm930550\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm930550\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T07:38:57.2855123Z\",\r\n \"activityId\": \"2ba81a29-0c1c-4d3c-836e-57a9712d77c3\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSV8c1d8dac/backupJobs/bc2fae5a-c727-496a-b070-6f551700b68b?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOGMxZDhkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y4YzFkOGRhYy9iYWNrdXBKb2JzL2JjMmZhZTVhLWM3MjctNDk2YS1iMDcwLTZmNTUxNzAwYjY4Yj9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.RecoveryServices/vaults/PSTestRSV93055a66/backupJobs/e08b8611-4be2-47d1-b445-b7a7442fec10?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTMwNTVhNjYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5MzA1NWE2Ni9iYWNrdXBKb2JzL2UwOGI4NjExLTRiZTItNDdkMS1iNDQ1LWI3YTc0NDJmZWMxMD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4fb9923b-b066-4d5a-82d1-3c64897cdd75" + "2ba81a29-0c1c-4d3c-836e-57a9712d77c3" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -6927,11 +9247,11 @@ "nosniff" ], "x-ms-request-id": [ - "b74567c7-184d-43ea-8c6c-e14fa182631d" + "57850ab5-1031-4285-b890-7495ddbf7ac8" ], "x-ms-client-request-id": [ - "4fb9923b-b066-4d5a-82d1-3c64897cdd75", - "4fb9923b-b066-4d5a-82d1-3c64897cdd75" + "2ba81a29-0c1c-4d3c-836e-57a9712d77c3", + "2ba81a29-0c1c-4d3c-836e-57a9712d77c3" ], "X-Powered-By": [ "ASP.NET" @@ -6940,19 +9260,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "109" + "86" ], "x-ms-correlation-request-id": [ - "b74567c7-184d-43ea-8c6c-e14fa182631d" + "57850ab5-1031-4285-b890-7495ddbf7ac8" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220225T004731Z:b74567c7-184d-43ea-8c6c-e14fa182631d" + "WESTINDIA:20220517T081032Z:57850ab5-1031-4285-b890-7495ddbf7ac8" ], "Date": [ - "Fri, 25 Feb 2022 00:47:30 GMT" + "Tue, 17 May 2022 08:10:31 GMT" ], "Content-Length": [ - "971" + "1035" ], "Content-Type": [ "application/json" @@ -6961,26 +9281,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSV8c1d8dac/backupJobs/bc2fae5a-c727-496a-b070-6f551700b68b\",\r\n \"name\": \"bc2fae5a-c727-496a-b070-6f551700b68b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg8c1d8dac;pstestvm8c1d80\",\r\n \"duration\": \"PT41M27.4808108S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm8c1d80\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm8c1d80\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-25T00:06:03.2288224Z\",\r\n \"activityId\": \"4fb9923b-b066-4d5a-82d1-3c64897cdd75\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.RecoveryServices/vaults/PSTestRSV93055a66/backupJobs/e08b8611-4be2-47d1-b445-b7a7442fec10\",\r\n \"name\": \"e08b8611-4be2-47d1-b445-b7a7442fec10\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg93055a66;pstestvm930550\",\r\n \"duration\": \"PT31M12.3392432S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm930550\",\r\n \"Backup Size\": \"10162 MB\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm930550\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-05-17T07:38:57.2855123Z\",\r\n \"endTime\": \"2022-05-17T08:10:09.6247555Z\",\r\n \"activityId\": \"2ba81a29-0c1c-4d3c-836e-57a9712d77c3\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSV8c1d8dac/backupJobs/bc2fae5a-c727-496a-b070-6f551700b68b?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOGMxZDhkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y4YzFkOGRhYy9iYWNrdXBKb2JzL2JjMmZhZTVhLWM3MjctNDk2YS1iMDcwLTZmNTUxNzAwYjY4Yj9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.RecoveryServices/vaults/PSTestRSV93055a66/backupFabrics/Azure/protectionContainers/IaasVMContainer%3Biaasvmcontainerv2%3Bpstestrg93055a66%3Bpstestvm930550/protectedItems/VM%3Biaasvmcontainerv2%3Bpstestrg93055a66%3Bpstestvm930550/recoveryPoints?$filter=startDate%20eq%20'2022-05-17%2007:37:57%20AM'%20and%20endDate%20eq%20'2022-05-17%2008:11:09%20AM'&api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTMwNTVhNjYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5MzA1NWE2Ni9iYWNrdXBGYWJyaWNzL0F6dXJlL3Byb3RlY3Rpb25Db250YWluZXJzL0lhYXNWTUNvbnRhaW5lciUzQmlhYXN2bWNvbnRhaW5lcnYyJTNCcHN0ZXN0cmc5MzA1NWE2NiUzQnBzdGVzdHZtOTMwNTUwL3Byb3RlY3RlZEl0ZW1zL1ZNJTNCaWFhc3ZtY29udGFpbmVydjIlM0Jwc3Rlc3RyZzkzMDU1YTY2JTNCcHN0ZXN0dm05MzA1NTAvcmVjb3ZlcnlQb2ludHM/JGZpbHRlcj1zdGFydERhdGUlMjBlcSUyMCcyMDIyLTA1LTE3JTIwMDc6Mzc6NTclMjBBTSclMjBhbmQlMjBlbmREYXRlJTIwZXElMjAnMjAyMi0wNS0xNyUyMDA4OjExOjA5JTIwQU0nJmFwaS12ZXJzaW9uPTIwMjItMDItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4fb9923b-b066-4d5a-82d1-3c64897cdd75" + "8d4112fa-8645-4f02-9b05-a9090ec44034" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -6990,40 +9310,39 @@ "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-IIS/10.0" - ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "e657d830-b79d-4464-b357-024efb3ace37" + "66330749-1478-4250-a41b-194bbb10606d" ], "x-ms-client-request-id": [ - "4fb9923b-b066-4d5a-82d1-3c64897cdd75", - "4fb9923b-b066-4d5a-82d1-3c64897cdd75" - ], - "X-Powered-By": [ - "ASP.NET" + "8d4112fa-8645-4f02-9b05-a9090ec44034", + "8d4112fa-8645-4f02-9b05-a9090ec44034" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "108" + "149" ], "x-ms-correlation-request-id": [ - "e657d830-b79d-4464-b357-024efb3ace37" + "66330749-1478-4250-a41b-194bbb10606d" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220225T004833Z:e657d830-b79d-4464-b357-024efb3ace37" + "WESTINDIA:20220517T081033Z:66330749-1478-4250-a41b-194bbb10606d" ], "Date": [ - "Fri, 25 Feb 2022 00:48:32 GMT" + "Tue, 17 May 2022 08:10:32 GMT" ], "Content-Length": [ - "971" + "1193" ], "Content-Type": [ "application/json" @@ -7032,26 +9351,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSV8c1d8dac/backupJobs/bc2fae5a-c727-496a-b070-6f551700b68b\",\r\n \"name\": \"bc2fae5a-c727-496a-b070-6f551700b68b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg8c1d8dac;pstestvm8c1d80\",\r\n \"duration\": \"PT42M29.8980811S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm8c1d80\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm8c1d80\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-25T00:06:03.2288224Z\",\r\n \"activityId\": \"4fb9923b-b066-4d5a-82d1-3c64897cdd75\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.RecoveryServices/vaults/PSTestRSV93055a66/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrg93055a66;pstestvm930550/protectedItems/VM;iaasvmcontainerv2;pstestrg93055a66;pstestvm930550/recoveryPoints/36664683075691\",\r\n \"name\": \"36664683075691\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints\",\r\n \"properties\": {\r\n \"objectType\": \"IaasVMRecoveryPoint\",\r\n \"recoveryPointType\": \"AppConsistent\",\r\n \"recoveryPointTime\": \"2022-05-17T07:39:01.585987Z\",\r\n \"recoveryPointAdditionalInfo\": \"\",\r\n \"sourceVMStorageType\": \"NormalStorage\",\r\n \"isSourceVMEncrypted\": false,\r\n \"isInstantIlrSessionActive\": false,\r\n \"recoveryPointTierDetails\": [\r\n {\r\n \"type\": \"InstantRP\",\r\n \"status\": \"Valid\"\r\n },\r\n {\r\n \"type\": \"HardenedRP\",\r\n \"status\": \"Valid\"\r\n }\r\n ],\r\n \"isManagedVirtualMachine\": true,\r\n \"virtualMachineSize\": \"Standard_D1_v2\",\r\n \"originalStorageAccountOption\": false,\r\n \"osType\": \"Windows\",\r\n \"recoveryPointMoveReadinessInfo\": {\r\n \"ArchivedRP\": {\r\n \"isReadyForMove\": false,\r\n \"additionalInfo\": \"We're still determining if this Recovery Point can be moved.. Please check again after some time.\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSV8c1d8dac/backupJobs/bc2fae5a-c727-496a-b070-6f551700b68b?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOGMxZDhkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y4YzFkOGRhYy9iYWNrdXBKb2JzL2JjMmZhZTVhLWM3MjctNDk2YS1iMDcwLTZmNTUxNzAwYjY4Yj9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.RecoveryServices/vaults/PSTestRSV93055a66/backupFabrics/Azure/protectionContainers/IaasVMContainer%3Biaasvmcontainerv2%3Bpstestrg93055a66%3Bpstestvm930550/protectedItems/VM%3Biaasvmcontainerv2%3Bpstestrg93055a66%3Bpstestvm930550/recoveryPoints/36664683075691?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTMwNTVhNjYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5MzA1NWE2Ni9iYWNrdXBGYWJyaWNzL0F6dXJlL3Byb3RlY3Rpb25Db250YWluZXJzL0lhYXNWTUNvbnRhaW5lciUzQmlhYXN2bWNvbnRhaW5lcnYyJTNCcHN0ZXN0cmc5MzA1NWE2NiUzQnBzdGVzdHZtOTMwNTUwL3Byb3RlY3RlZEl0ZW1zL1ZNJTNCaWFhc3ZtY29udGFpbmVydjIlM0Jwc3Rlc3RyZzkzMDU1YTY2JTNCcHN0ZXN0dm05MzA1NTAvcmVjb3ZlcnlQb2ludHMvMzY2NjQ2ODMwNzU2OTE/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4fb9923b-b066-4d5a-82d1-3c64897cdd75" + "79a686fa-27b1-45c9-8bbb-9f985c6016c5" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -7061,40 +9380,39 @@ "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-IIS/10.0" - ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "cd492ca4-bb91-4c21-a952-695e0ed0cff4" + "b58ecad0-0088-4436-bfbc-2838be966075" ], "x-ms-client-request-id": [ - "4fb9923b-b066-4d5a-82d1-3c64897cdd75", - "4fb9923b-b066-4d5a-82d1-3c64897cdd75" - ], - "X-Powered-By": [ - "ASP.NET" + "79a686fa-27b1-45c9-8bbb-9f985c6016c5", + "79a686fa-27b1-45c9-8bbb-9f985c6016c5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "107" + "148" ], "x-ms-correlation-request-id": [ - "cd492ca4-bb91-4c21-a952-695e0ed0cff4" + "b58ecad0-0088-4436-bfbc-2838be966075" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220225T004935Z:cd492ca4-bb91-4c21-a952-695e0ed0cff4" + "WESTINDIA:20220517T081033Z:b58ecad0-0088-4436-bfbc-2838be966075" ], "Date": [ - "Fri, 25 Feb 2022 00:49:35 GMT" + "Tue, 17 May 2022 08:10:32 GMT" ], "Content-Length": [ - "971" + "1181" ], "Content-Type": [ "application/json" @@ -7103,26 +9421,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSV8c1d8dac/backupJobs/bc2fae5a-c727-496a-b070-6f551700b68b\",\r\n \"name\": \"bc2fae5a-c727-496a-b070-6f551700b68b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg8c1d8dac;pstestvm8c1d80\",\r\n \"duration\": \"PT43M31.8347531S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm8c1d80\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm8c1d80\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-25T00:06:03.2288224Z\",\r\n \"activityId\": \"4fb9923b-b066-4d5a-82d1-3c64897cdd75\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.RecoveryServices/vaults/PSTestRSV93055a66/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrg93055a66;pstestvm930550/protectedItems/VM;iaasvmcontainerv2;pstestrg93055a66;pstestvm930550/recoveryPoints/36664683075691\",\r\n \"name\": \"36664683075691\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints\",\r\n \"properties\": {\r\n \"objectType\": \"IaasVMRecoveryPoint\",\r\n \"recoveryPointType\": \"AppConsistent\",\r\n \"recoveryPointTime\": \"2022-05-17T07:39:01.585987Z\",\r\n \"recoveryPointAdditionalInfo\": \"\",\r\n \"sourceVMStorageType\": \"NormalStorage\",\r\n \"isSourceVMEncrypted\": false,\r\n \"isInstantIlrSessionActive\": false,\r\n \"recoveryPointTierDetails\": [\r\n {\r\n \"type\": \"InstantRP\",\r\n \"status\": \"Valid\"\r\n },\r\n {\r\n \"type\": \"HardenedRP\",\r\n \"status\": \"Valid\"\r\n }\r\n ],\r\n \"isManagedVirtualMachine\": true,\r\n \"virtualMachineSize\": \"Standard_D1_v2\",\r\n \"originalStorageAccountOption\": false,\r\n \"osType\": \"Windows\",\r\n \"recoveryPointMoveReadinessInfo\": {\r\n \"ArchivedRP\": {\r\n \"isReadyForMove\": false,\r\n \"additionalInfo\": \"We're still determining if this Recovery Point can be moved.. Please check again after some time.\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSV8c1d8dac/backupJobs/bc2fae5a-c727-496a-b070-6f551700b68b?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOGMxZDhkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y4YzFkOGRhYy9iYWNrdXBKb2JzL2JjMmZhZTVhLWM3MjctNDk2YS1iMDcwLTZmNTUxNzAwYjY4Yj9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.RecoveryServices/vaults?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTMwNTVhNjYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cz9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4fb9923b-b066-4d5a-82d1-3c64897cdd75" + "fb1c915f-a0e6-4bef-80c9-e6b2650ccb40" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesClient/4.3.2.0" ] }, "ResponseHeaders": { @@ -7132,40 +9450,35 @@ "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-IIS/10.0" - ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "3945778e-4920-491a-89e4-e2c8eb4d4797" + "e7cb0da3-6a1e-40a8-b33c-97325f0471dc" ], "x-ms-client-request-id": [ - "4fb9923b-b066-4d5a-82d1-3c64897cdd75", - "4fb9923b-b066-4d5a-82d1-3c64897cdd75" - ], - "X-Powered-By": [ - "ASP.NET" + "fb1c915f-a0e6-4bef-80c9-e6b2650ccb40" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "106" + "Server": [ + "Microsoft-IIS/10.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" ], "x-ms-correlation-request-id": [ - "3945778e-4920-491a-89e4-e2c8eb4d4797" + "e7cb0da3-6a1e-40a8-b33c-97325f0471dc" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220225T005050Z:3945778e-4920-491a-89e4-e2c8eb4d4797" + "JIOINDIAWEST:20220517T081035Z:e7cb0da3-6a1e-40a8-b33c-97325f0471dc" ], "Date": [ - "Fri, 25 Feb 2022 00:50:50 GMT" + "Tue, 17 May 2022 08:10:35 GMT" ], "Content-Length": [ - "971" + "530" ], "Content-Type": [ "application/json" @@ -7174,26 +9487,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSV8c1d8dac/backupJobs/bc2fae5a-c727-496a-b070-6f551700b68b\",\r\n \"name\": \"bc2fae5a-c727-496a-b070-6f551700b68b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg8c1d8dac;pstestvm8c1d80\",\r\n \"duration\": \"PT44M44.0740758S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm8c1d80\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm8c1d80\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-25T00:06:03.2288224Z\",\r\n \"activityId\": \"4fb9923b-b066-4d5a-82d1-3c64897cdd75\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"PSTestRSV93055a66\",\r\n \"etag\": \"W/\\\"datetime'2022-05-17T08%3A04%3A16.9148253Z'\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateEndpointStateForBackup\": \"None\",\r\n \"privateEndpointStateForSiteRecovery\": \"None\",\r\n \"networkSettings\": {\r\n \"publicNetworkAccess\": \"Enabled\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.RecoveryServices/vaults/PSTestRSV93055a66\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSV8c1d8dac/backupJobs/bc2fae5a-c727-496a-b070-6f551700b68b?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOGMxZDhkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y4YzFkOGRhYy9iYWNrdXBKb2JzL2JjMmZhZTVhLWM3MjctNDk2YS1iMDcwLTZmNTUxNzAwYjY4Yj9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.RecoveryServices/vaults/PSTestRSV93055a66/backupProtectionContainers?$filter=backupManagementType%20eq%20'AzureIaasVM'%20and%20status%20eq%20'Registered'&api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTMwNTVhNjYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5MzA1NWE2Ni9iYWNrdXBQcm90ZWN0aW9uQ29udGFpbmVycz8kZmlsdGVyPWJhY2t1cE1hbmFnZW1lbnRUeXBlJTIwZXElMjAnQXp1cmVJYWFzVk0nJTIwYW5kJTIwc3RhdHVzJTIwZXElMjAnUmVnaXN0ZXJlZCcmYXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4fb9923b-b066-4d5a-82d1-3c64897cdd75" + "981e4541-84dc-4fe4-9691-1735ef77f316" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -7203,40 +9516,39 @@ "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-IIS/10.0" - ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "8e01f6dd-eb8a-46cf-9335-a2abc6e5b3c6" + "4c9a2381-038a-41a8-af59-da9afe761712" ], "x-ms-client-request-id": [ - "4fb9923b-b066-4d5a-82d1-3c64897cdd75", - "4fb9923b-b066-4d5a-82d1-3c64897cdd75" - ], - "X-Powered-By": [ - "ASP.NET" + "981e4541-84dc-4fe4-9691-1735ef77f316", + "981e4541-84dc-4fe4-9691-1735ef77f316" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "105" + "147" ], "x-ms-correlation-request-id": [ - "8e01f6dd-eb8a-46cf-9335-a2abc6e5b3c6" + "4c9a2381-038a-41a8-af59-da9afe761712" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220225T005159Z:8e01f6dd-eb8a-46cf-9335-a2abc6e5b3c6" + "WESTINDIA:20220517T081035Z:4c9a2381-038a-41a8-af59-da9afe761712" ], "Date": [ - "Fri, 25 Feb 2022 00:51:58 GMT" + "Tue, 17 May 2022 08:10:35 GMT" ], "Content-Length": [ - "971" + "914" ], "Content-Type": [ "application/json" @@ -7245,26 +9557,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSV8c1d8dac/backupJobs/bc2fae5a-c727-496a-b070-6f551700b68b\",\r\n \"name\": \"bc2fae5a-c727-496a-b070-6f551700b68b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg8c1d8dac;pstestvm8c1d80\",\r\n \"duration\": \"PT45M55.0273928S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm8c1d80\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm8c1d80\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-25T00:06:03.2288224Z\",\r\n \"activityId\": \"4fb9923b-b066-4d5a-82d1-3c64897cdd75\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.RecoveryServices/vaults/PSTestRSV93055a66/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrg93055a66;pstestvm930550\",\r\n \"name\": \"IaasVMContainer;iaasvmcontainerv2;pstestrg93055a66;pstestvm930550\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers\",\r\n \"properties\": {\r\n \"virtualMachineId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.Compute/virtualMachines/PSTestVM930550\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"resourceGroup\": \"PSTestRG93055a66\",\r\n \"friendlyName\": \"PSTestVM930550\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSV8c1d8dac/backupJobs/bc2fae5a-c727-496a-b070-6f551700b68b?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOGMxZDhkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y4YzFkOGRhYy9iYWNrdXBKb2JzL2JjMmZhZTVhLWM3MjctNDk2YS1iMDcwLTZmNTUxNzAwYjY4Yj9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.RecoveryServices/vaults/PSTestRSV93055a66/backupFabrics/Azure/protectionContainers/IaasVMContainer%3Biaasvmcontainerv2%3Bpstestrg93055a66%3Bpstestvm930550/protectedItems/VM%3Biaasvmcontainerv2%3Bpstestrg93055a66%3Bpstestvm930550/recoveryPoints?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTMwNTVhNjYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5MzA1NWE2Ni9iYWNrdXBGYWJyaWNzL0F6dXJlL3Byb3RlY3Rpb25Db250YWluZXJzL0lhYXNWTUNvbnRhaW5lciUzQmlhYXN2bWNvbnRhaW5lcnYyJTNCcHN0ZXN0cmc5MzA1NWE2NiUzQnBzdGVzdHZtOTMwNTUwL3Byb3RlY3RlZEl0ZW1zL1ZNJTNCaWFhc3ZtY29udGFpbmVydjIlM0Jwc3Rlc3RyZzkzMDU1YTY2JTNCcHN0ZXN0dm05MzA1NTAvcmVjb3ZlcnlQb2ludHM/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4fb9923b-b066-4d5a-82d1-3c64897cdd75" + "01828bb4-6e6b-44d6-87c4-1ee93477d9d9" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -7274,40 +9586,39 @@ "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-IIS/10.0" - ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "618b536f-6a5a-480b-aba5-c947931fd60e" + "eee86605-c9be-4102-af42-209e58700b19" ], "x-ms-client-request-id": [ - "4fb9923b-b066-4d5a-82d1-3c64897cdd75", - "4fb9923b-b066-4d5a-82d1-3c64897cdd75" - ], - "X-Powered-By": [ - "ASP.NET" + "01828bb4-6e6b-44d6-87c4-1ee93477d9d9", + "01828bb4-6e6b-44d6-87c4-1ee93477d9d9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "104" + "147" ], "x-ms-correlation-request-id": [ - "618b536f-6a5a-480b-aba5-c947931fd60e" + "eee86605-c9be-4102-af42-209e58700b19" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220225T005317Z:618b536f-6a5a-480b-aba5-c947931fd60e" + "WESTINDIA:20220517T081036Z:eee86605-c9be-4102-af42-209e58700b19" ], "Date": [ - "Fri, 25 Feb 2022 00:53:16 GMT" + "Tue, 17 May 2022 08:10:36 GMT" ], "Content-Length": [ - "971" + "1193" ], "Content-Type": [ "application/json" @@ -7316,26 +9627,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSV8c1d8dac/backupJobs/bc2fae5a-c727-496a-b070-6f551700b68b\",\r\n \"name\": \"bc2fae5a-c727-496a-b070-6f551700b68b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg8c1d8dac;pstestvm8c1d80\",\r\n \"duration\": \"PT47M13.3575327S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm8c1d80\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm8c1d80\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-25T00:06:03.2288224Z\",\r\n \"activityId\": \"4fb9923b-b066-4d5a-82d1-3c64897cdd75\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.RecoveryServices/vaults/PSTestRSV93055a66/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrg93055a66;pstestvm930550/protectedItems/VM;iaasvmcontainerv2;pstestrg93055a66;pstestvm930550/recoveryPoints/36664683075691\",\r\n \"name\": \"36664683075691\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints\",\r\n \"properties\": {\r\n \"objectType\": \"IaasVMRecoveryPoint\",\r\n \"recoveryPointType\": \"AppConsistent\",\r\n \"recoveryPointTime\": \"2022-05-17T07:39:01.585987Z\",\r\n \"recoveryPointAdditionalInfo\": \"\",\r\n \"sourceVMStorageType\": \"NormalStorage\",\r\n \"isSourceVMEncrypted\": false,\r\n \"isInstantIlrSessionActive\": false,\r\n \"recoveryPointTierDetails\": [\r\n {\r\n \"type\": \"InstantRP\",\r\n \"status\": \"Valid\"\r\n },\r\n {\r\n \"type\": \"HardenedRP\",\r\n \"status\": \"Valid\"\r\n }\r\n ],\r\n \"isManagedVirtualMachine\": true,\r\n \"virtualMachineSize\": \"Standard_D1_v2\",\r\n \"originalStorageAccountOption\": false,\r\n \"osType\": \"Windows\",\r\n \"recoveryPointMoveReadinessInfo\": {\r\n \"ArchivedRP\": {\r\n \"isReadyForMove\": false,\r\n \"additionalInfo\": \"We're still determining if this Recovery Point can be moved.. Please check again after some time.\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSV8c1d8dac/backupJobs/bc2fae5a-c727-496a-b070-6f551700b68b?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOGMxZDhkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y4YzFkOGRhYy9iYWNrdXBKb2JzL2JjMmZhZTVhLWM3MjctNDk2YS1iMDcwLTZmNTUxNzAwYjY4Yj9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", - "RequestMethod": "GET", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.RecoveryServices/vaults/PSTestRSV93055a66/backupFabrics/Azure/protectionContainers/IaasVMContainer%3Biaasvmcontainerv2%3Bpstestrg93055a66%3Bpstestvm930550/protectedItems/VM%3Biaasvmcontainerv2%3Bpstestrg93055a66%3Bpstestvm930550?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTMwNTVhNjYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5MzA1NWE2Ni9iYWNrdXBGYWJyaWNzL0F6dXJlL3Byb3RlY3Rpb25Db250YWluZXJzL0lhYXNWTUNvbnRhaW5lciUzQmlhYXN2bWNvbnRhaW5lcnYyJTNCcHN0ZXN0cmc5MzA1NWE2NiUzQnBzdGVzdHZtOTMwNTUwL3Byb3RlY3RlZEl0ZW1zL1ZNJTNCaWFhc3ZtY29udGFpbmVydjIlM0Jwc3Rlc3RyZzkzMDU1YTY2JTNCcHN0ZXN0dm05MzA1NTA/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4fb9923b-b066-4d5a-82d1-3c64897cdd75" + "01828bb4-6e6b-44d6-87c4-1ee93477d9d9" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -7345,68 +9656,70 @@ "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-IIS/10.0" + "Location": [ + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.RecoveryServices/vaults/PSTestRSV93055a66/backupOperationResults/80103e74-915f-44a8-b179-6a0822de01ee?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.RecoveryServices/vaults/PSTestRSV93055a66/backupOperations/80103e74-915f-44a8-b179-6a0822de01ee?api-version=2022-02-01" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "e4b5bdea-5581-41a3-804b-4a7be170998c" + "da176b58-f164-4d38-89a8-e9ab72a5058b" ], "x-ms-client-request-id": [ - "4fb9923b-b066-4d5a-82d1-3c64897cdd75", - "4fb9923b-b066-4d5a-82d1-3c64897cdd75" - ], - "X-Powered-By": [ - "ASP.NET" + "01828bb4-6e6b-44d6-87c4-1ee93477d9d9", + "01828bb4-6e6b-44d6-87c4-1ee93477d9d9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "103" + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" ], "x-ms-correlation-request-id": [ - "e4b5bdea-5581-41a3-804b-4a7be170998c" + "da176b58-f164-4d38-89a8-e9ab72a5058b" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220225T005423Z:e4b5bdea-5581-41a3-804b-4a7be170998c" + "WESTINDIA:20220517T081038Z:da176b58-f164-4d38-89a8-e9ab72a5058b" ], "Date": [ - "Fri, 25 Feb 2022 00:54:22 GMT" - ], - "Content-Length": [ - "971" - ], - "Content-Type": [ - "application/json" + "Tue, 17 May 2022 08:10:38 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSV8c1d8dac/backupJobs/bc2fae5a-c727-496a-b070-6f551700b68b\",\r\n \"name\": \"bc2fae5a-c727-496a-b070-6f551700b68b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg8c1d8dac;pstestvm8c1d80\",\r\n \"duration\": \"PT48M19.5964904S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm8c1d80\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm8c1d80\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-25T00:06:03.2288224Z\",\r\n \"activityId\": \"4fb9923b-b066-4d5a-82d1-3c64897cdd75\"\r\n }\r\n}", - "StatusCode": 200 + "ResponseBody": "", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSV8c1d8dac/backupJobs/bc2fae5a-c727-496a-b070-6f551700b68b?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOGMxZDhkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y4YzFkOGRhYy9iYWNrdXBKb2JzL2JjMmZhZTVhLWM3MjctNDk2YS1iMDcwLTZmNTUxNzAwYjY4Yj9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.RecoveryServices/vaults/PSTestRSV93055a66/backupOperations/80103e74-915f-44a8-b179-6a0822de01ee?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTMwNTVhNjYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5MzA1NWE2Ni9iYWNrdXBPcGVyYXRpb25zLzgwMTAzZTc0LTkxNWYtNDRhOC1iMTc5LTZhMDgyMmRlMDFlZT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4fb9923b-b066-4d5a-82d1-3c64897cdd75" + "01828bb4-6e6b-44d6-87c4-1ee93477d9d9" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -7416,40 +9729,39 @@ "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-IIS/10.0" - ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "72128967-dfdf-40b3-b244-37eefff7efd1" + "eff6d105-fcfe-481d-baf5-ceb1ea1b35bf" ], "x-ms-client-request-id": [ - "4fb9923b-b066-4d5a-82d1-3c64897cdd75", - "4fb9923b-b066-4d5a-82d1-3c64897cdd75" - ], - "X-Powered-By": [ - "ASP.NET" + "01828bb4-6e6b-44d6-87c4-1ee93477d9d9", + "01828bb4-6e6b-44d6-87c4-1ee93477d9d9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "102" + "136" ], "x-ms-correlation-request-id": [ - "72128967-dfdf-40b3-b244-37eefff7efd1" + "eff6d105-fcfe-481d-baf5-ceb1ea1b35bf" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220225T005525Z:72128967-dfdf-40b3-b244-37eefff7efd1" + "WESTINDIA:20220517T081038Z:eff6d105-fcfe-481d-baf5-ceb1ea1b35bf" ], "Date": [ - "Fri, 25 Feb 2022 00:55:24 GMT" + "Tue, 17 May 2022 08:10:38 GMT" ], "Content-Length": [ - "971" + "188" ], "Content-Type": [ "application/json" @@ -7458,26 +9770,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSV8c1d8dac/backupJobs/bc2fae5a-c727-496a-b070-6f551700b68b\",\r\n \"name\": \"bc2fae5a-c727-496a-b070-6f551700b68b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg8c1d8dac;pstestvm8c1d80\",\r\n \"duration\": \"PT49M21.6994976S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm8c1d80\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm8c1d80\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-25T00:06:03.2288224Z\",\r\n \"activityId\": \"4fb9923b-b066-4d5a-82d1-3c64897cdd75\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"80103e74-915f-44a8-b179-6a0822de01ee\",\r\n \"name\": \"80103e74-915f-44a8-b179-6a0822de01ee\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T08:10:37.9320423Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSV8c1d8dac/backupJobs/bc2fae5a-c727-496a-b070-6f551700b68b?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOGMxZDhkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y4YzFkOGRhYy9iYWNrdXBKb2JzL2JjMmZhZTVhLWM3MjctNDk2YS1iMDcwLTZmNTUxNzAwYjY4Yj9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.RecoveryServices/vaults/PSTestRSV93055a66/backupOperations/80103e74-915f-44a8-b179-6a0822de01ee?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTMwNTVhNjYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5MzA1NWE2Ni9iYWNrdXBPcGVyYXRpb25zLzgwMTAzZTc0LTkxNWYtNDRhOC1iMTc5LTZhMDgyMmRlMDFlZT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4fb9923b-b066-4d5a-82d1-3c64897cdd75" + "01828bb4-6e6b-44d6-87c4-1ee93477d9d9" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -7487,40 +9799,39 @@ "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-IIS/10.0" - ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "0464316e-4f83-4ddf-b0be-8a09d84ea19f" + "134a4df9-68a4-4c0f-9a5a-fb78b8313b4b" ], "x-ms-client-request-id": [ - "4fb9923b-b066-4d5a-82d1-3c64897cdd75", - "4fb9923b-b066-4d5a-82d1-3c64897cdd75" - ], - "X-Powered-By": [ - "ASP.NET" + "01828bb4-6e6b-44d6-87c4-1ee93477d9d9", + "01828bb4-6e6b-44d6-87c4-1ee93477d9d9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "101" + "135" ], "x-ms-correlation-request-id": [ - "0464316e-4f83-4ddf-b0be-8a09d84ea19f" + "134a4df9-68a4-4c0f-9a5a-fb78b8313b4b" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220225T005646Z:0464316e-4f83-4ddf-b0be-8a09d84ea19f" + "WESTINDIA:20220517T081044Z:134a4df9-68a4-4c0f-9a5a-fb78b8313b4b" ], "Date": [ - "Fri, 25 Feb 2022 00:56:45 GMT" + "Tue, 17 May 2022 08:10:43 GMT" ], "Content-Length": [ - "971" + "188" ], "Content-Type": [ "application/json" @@ -7529,26 +9840,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSV8c1d8dac/backupJobs/bc2fae5a-c727-496a-b070-6f551700b68b\",\r\n \"name\": \"bc2fae5a-c727-496a-b070-6f551700b68b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg8c1d8dac;pstestvm8c1d80\",\r\n \"duration\": \"PT50M40.4724747S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm8c1d80\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm8c1d80\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-25T00:06:03.2288224Z\",\r\n \"activityId\": \"4fb9923b-b066-4d5a-82d1-3c64897cdd75\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"80103e74-915f-44a8-b179-6a0822de01ee\",\r\n \"name\": \"80103e74-915f-44a8-b179-6a0822de01ee\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T08:10:37.9320423Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSV8c1d8dac/backupJobs/bc2fae5a-c727-496a-b070-6f551700b68b?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOGMxZDhkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y4YzFkOGRhYy9iYWNrdXBKb2JzL2JjMmZhZTVhLWM3MjctNDk2YS1iMDcwLTZmNTUxNzAwYjY4Yj9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.RecoveryServices/vaults/PSTestRSV93055a66/backupOperations/80103e74-915f-44a8-b179-6a0822de01ee?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTMwNTVhNjYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5MzA1NWE2Ni9iYWNrdXBPcGVyYXRpb25zLzgwMTAzZTc0LTkxNWYtNDRhOC1iMTc5LTZhMDgyMmRlMDFlZT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4fb9923b-b066-4d5a-82d1-3c64897cdd75" + "01828bb4-6e6b-44d6-87c4-1ee93477d9d9" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -7558,40 +9869,39 @@ "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-IIS/10.0" - ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "4e1030f9-6618-46c8-8995-4ab075bf6e22" + "bb5a442f-1e3a-4d7c-a2ee-3ccdccc44d26" ], "x-ms-client-request-id": [ - "4fb9923b-b066-4d5a-82d1-3c64897cdd75", - "4fb9923b-b066-4d5a-82d1-3c64897cdd75" - ], - "X-Powered-By": [ - "ASP.NET" + "01828bb4-6e6b-44d6-87c4-1ee93477d9d9", + "01828bb4-6e6b-44d6-87c4-1ee93477d9d9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "100" + "134" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" ], "x-ms-correlation-request-id": [ - "4e1030f9-6618-46c8-8995-4ab075bf6e22" + "bb5a442f-1e3a-4d7c-a2ee-3ccdccc44d26" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220225T005748Z:4e1030f9-6618-46c8-8995-4ab075bf6e22" + "WESTINDIA:20220517T081049Z:bb5a442f-1e3a-4d7c-a2ee-3ccdccc44d26" ], "Date": [ - "Fri, 25 Feb 2022 00:57:47 GMT" + "Tue, 17 May 2022 08:10:49 GMT" ], "Content-Length": [ - "971" + "188" ], "Content-Type": [ "application/json" @@ -7600,26 +9910,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSV8c1d8dac/backupJobs/bc2fae5a-c727-496a-b070-6f551700b68b\",\r\n \"name\": \"bc2fae5a-c727-496a-b070-6f551700b68b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg8c1d8dac;pstestvm8c1d80\",\r\n \"duration\": \"PT51M44.5202268S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm8c1d80\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm8c1d80\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-25T00:06:03.2288224Z\",\r\n \"activityId\": \"4fb9923b-b066-4d5a-82d1-3c64897cdd75\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"80103e74-915f-44a8-b179-6a0822de01ee\",\r\n \"name\": \"80103e74-915f-44a8-b179-6a0822de01ee\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T08:10:37.9320423Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSV8c1d8dac/backupJobs/bc2fae5a-c727-496a-b070-6f551700b68b?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOGMxZDhkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y4YzFkOGRhYy9iYWNrdXBKb2JzL2JjMmZhZTVhLWM3MjctNDk2YS1iMDcwLTZmNTUxNzAwYjY4Yj9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.RecoveryServices/vaults/PSTestRSV93055a66/backupOperations/80103e74-915f-44a8-b179-6a0822de01ee?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTMwNTVhNjYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5MzA1NWE2Ni9iYWNrdXBPcGVyYXRpb25zLzgwMTAzZTc0LTkxNWYtNDRhOC1iMTc5LTZhMDgyMmRlMDFlZT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4fb9923b-b066-4d5a-82d1-3c64897cdd75" + "01828bb4-6e6b-44d6-87c4-1ee93477d9d9" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -7629,40 +9939,39 @@ "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-IIS/10.0" - ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "6b856a78-0259-4332-b32c-50decd8e5837" + "68d943ce-a320-44ca-a263-54bd500cc7e7" ], "x-ms-client-request-id": [ - "4fb9923b-b066-4d5a-82d1-3c64897cdd75", - "4fb9923b-b066-4d5a-82d1-3c64897cdd75" - ], - "X-Powered-By": [ - "ASP.NET" + "01828bb4-6e6b-44d6-87c4-1ee93477d9d9", + "01828bb4-6e6b-44d6-87c4-1ee93477d9d9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "99" + "133" ], "x-ms-correlation-request-id": [ - "6b856a78-0259-4332-b32c-50decd8e5837" + "68d943ce-a320-44ca-a263-54bd500cc7e7" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220225T005848Z:6b856a78-0259-4332-b32c-50decd8e5837" + "WESTINDIA:20220517T081055Z:68d943ce-a320-44ca-a263-54bd500cc7e7" ], "Date": [ - "Fri, 25 Feb 2022 00:58:48 GMT" + "Tue, 17 May 2022 08:10:55 GMT" ], "Content-Length": [ - "1035" + "188" ], "Content-Type": [ "application/json" @@ -7671,26 +9980,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSV8c1d8dac/backupJobs/bc2fae5a-c727-496a-b070-6f551700b68b\",\r\n \"name\": \"bc2fae5a-c727-496a-b070-6f551700b68b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg8c1d8dac;pstestvm8c1d80\",\r\n \"duration\": \"PT52M32.1030044S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm8c1d80\",\r\n \"Backup Size\": \"10162 MB\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm8c1d80\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-02-25T00:06:03.2288224Z\",\r\n \"endTime\": \"2022-02-25T00:58:35.3318268Z\",\r\n \"activityId\": \"4fb9923b-b066-4d5a-82d1-3c64897cdd75\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"80103e74-915f-44a8-b179-6a0822de01ee\",\r\n \"name\": \"80103e74-915f-44a8-b179-6a0822de01ee\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T08:10:37.9320423Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSV8c1d8dac/backupFabrics/Azure/protectionContainers/IaasVMContainer%3Biaasvmcontainerv2%3Bpstestrg8c1d8dac%3Bpstestvm8c1d80/protectedItems/VM%3Biaasvmcontainerv2%3Bpstestrg8c1d8dac%3Bpstestvm8c1d80/recoveryPoints?$filter=startDate%20eq%20'2022-02-25%2012:05:03%20AM'%20and%20endDate%20eq%20'2022-02-25%2012:59:35%20AM'&api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOGMxZDhkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y4YzFkOGRhYy9iYWNrdXBGYWJyaWNzL0F6dXJlL3Byb3RlY3Rpb25Db250YWluZXJzL0lhYXNWTUNvbnRhaW5lciUzQmlhYXN2bWNvbnRhaW5lcnYyJTNCcHN0ZXN0cmc4YzFkOGRhYyUzQnBzdGVzdHZtOGMxZDgwL3Byb3RlY3RlZEl0ZW1zL1ZNJTNCaWFhc3ZtY29udGFpbmVydjIlM0Jwc3Rlc3RyZzhjMWQ4ZGFjJTNCcHN0ZXN0dm04YzFkODAvcmVjb3ZlcnlQb2ludHM/JGZpbHRlcj1zdGFydERhdGUlMjBlcSUyMCcyMDIyLTAyLTI1JTIwMTI6MDU6MDMlMjBBTSclMjBhbmQlMjBlbmREYXRlJTIwZXElMjAnMjAyMi0wMi0yNSUyMDEyOjU5OjM1JTIwQU0nJmFwaS12ZXJzaW9uPTIwMjEtMTAtMDE=", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.RecoveryServices/vaults/PSTestRSV93055a66/backupOperations/80103e74-915f-44a8-b179-6a0822de01ee?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTMwNTVhNjYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5MzA1NWE2Ni9iYWNrdXBPcGVyYXRpb25zLzgwMTAzZTc0LTkxNWYtNDRhOC1iMTc5LTZhMDgyMmRlMDFlZT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "50247789-bc75-490e-916f-67632c3507e4" + "01828bb4-6e6b-44d6-87c4-1ee93477d9d9" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -7704,11 +10013,11 @@ "nosniff" ], "x-ms-request-id": [ - "52150d8f-ea49-4d05-9d00-ddf95730c268" + "da0816ec-79b7-4a70-ad9f-84220980cfc1" ], "x-ms-client-request-id": [ - "50247789-bc75-490e-916f-67632c3507e4", - "50247789-bc75-490e-916f-67632c3507e4" + "01828bb4-6e6b-44d6-87c4-1ee93477d9d9", + "01828bb4-6e6b-44d6-87c4-1ee93477d9d9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -7720,19 +10029,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "149" + "132" ], "x-ms-correlation-request-id": [ - "52150d8f-ea49-4d05-9d00-ddf95730c268" + "da0816ec-79b7-4a70-ad9f-84220980cfc1" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220225T005849Z:52150d8f-ea49-4d05-9d00-ddf95730c268" + "WESTINDIA:20220517T081100Z:da0816ec-79b7-4a70-ad9f-84220980cfc1" ], "Date": [ - "Fri, 25 Feb 2022 00:58:48 GMT" + "Tue, 17 May 2022 08:11:00 GMT" ], "Content-Length": [ - "1259" + "188" ], "Content-Type": [ "application/json" @@ -7741,26 +10050,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSV8c1d8dac/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrg8c1d8dac;pstestvm8c1d80/protectedItems/VM;iaasvmcontainerv2;pstestrg8c1d8dac;pstestvm8c1d80/recoveryPoints/335921874176646\",\r\n \"name\": \"335921874176646\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints\",\r\n \"properties\": {\r\n \"objectType\": \"IaasVMRecoveryPoint\",\r\n \"recoveryPointType\": \"AppConsistent\",\r\n \"recoveryPointTime\": \"2022-02-25T00:07:24.8985094Z\",\r\n \"recoveryPointAdditionalInfo\": \"\",\r\n \"sourceVMStorageType\": \"NormalStorage\",\r\n \"isSourceVMEncrypted\": false,\r\n \"isInstantIlrSessionActive\": false,\r\n \"recoveryPointTierDetails\": [\r\n {\r\n \"type\": 1,\r\n \"status\": 1\r\n },\r\n {\r\n \"type\": 2,\r\n \"status\": 1\r\n }\r\n ],\r\n \"isManagedVirtualMachine\": true,\r\n \"virtualMachineSize\": \"Standard_D1_v2\",\r\n \"originalStorageAccountOption\": false,\r\n \"osType\": \"Windows\",\r\n \"recoveryPointMoveReadinessInfo\": {\r\n \"ArchivedRP\": {\r\n \"isReadyForMove\": false,\r\n \"additionalInfo\": \"Recovery point cannot be moved to Archive tier due to insufficient retention duration specified in policy.. Update policy on the protected item with appropriate retention setting and try again.\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"80103e74-915f-44a8-b179-6a0822de01ee\",\r\n \"name\": \"80103e74-915f-44a8-b179-6a0822de01ee\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T08:10:37.9320423Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSV8c1d8dac/backupFabrics/Azure/protectionContainers/IaasVMContainer%3Biaasvmcontainerv2%3Bpstestrg8c1d8dac%3Bpstestvm8c1d80/protectedItems/VM%3Biaasvmcontainerv2%3Bpstestrg8c1d8dac%3Bpstestvm8c1d80/recoveryPoints/335921874176646?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOGMxZDhkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y4YzFkOGRhYy9iYWNrdXBGYWJyaWNzL0F6dXJlL3Byb3RlY3Rpb25Db250YWluZXJzL0lhYXNWTUNvbnRhaW5lciUzQmlhYXN2bWNvbnRhaW5lcnYyJTNCcHN0ZXN0cmc4YzFkOGRhYyUzQnBzdGVzdHZtOGMxZDgwL3Byb3RlY3RlZEl0ZW1zL1ZNJTNCaWFhc3ZtY29udGFpbmVydjIlM0Jwc3Rlc3RyZzhjMWQ4ZGFjJTNCcHN0ZXN0dm04YzFkODAvcmVjb3ZlcnlQb2ludHMvMzM1OTIxODc0MTc2NjQ2P2FwaS12ZXJzaW9uPTIwMjEtMTAtMDE=", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.RecoveryServices/vaults/PSTestRSV93055a66/backupOperations/80103e74-915f-44a8-b179-6a0822de01ee?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTMwNTVhNjYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5MzA1NWE2Ni9iYWNrdXBPcGVyYXRpb25zLzgwMTAzZTc0LTkxNWYtNDRhOC1iMTc5LTZhMDgyMmRlMDFlZT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b21276ab-c2eb-4510-9957-60b56138a52c" + "01828bb4-6e6b-44d6-87c4-1ee93477d9d9" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -7774,11 +10083,11 @@ "nosniff" ], "x-ms-request-id": [ - "86196816-aedd-4c24-b8ce-884c228aee59" + "483d3351-53bb-47fb-b85b-3cf7b3e7689e" ], "x-ms-client-request-id": [ - "b21276ab-c2eb-4510-9957-60b56138a52c", - "b21276ab-c2eb-4510-9957-60b56138a52c" + "01828bb4-6e6b-44d6-87c4-1ee93477d9d9", + "01828bb4-6e6b-44d6-87c4-1ee93477d9d9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -7790,19 +10099,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "148" + "131" ], "x-ms-correlation-request-id": [ - "86196816-aedd-4c24-b8ce-884c228aee59" + "483d3351-53bb-47fb-b85b-3cf7b3e7689e" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220225T005849Z:86196816-aedd-4c24-b8ce-884c228aee59" + "WESTINDIA:20220517T081106Z:483d3351-53bb-47fb-b85b-3cf7b3e7689e" ], "Date": [ - "Fri, 25 Feb 2022 00:58:49 GMT" + "Tue, 17 May 2022 08:11:05 GMT" ], "Content-Length": [ - "1247" + "188" ], "Content-Type": [ "application/json" @@ -7811,26 +10120,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSV8c1d8dac/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrg8c1d8dac;pstestvm8c1d80/protectedItems/VM;iaasvmcontainerv2;pstestrg8c1d8dac;pstestvm8c1d80/recoveryPoints/335921874176646\",\r\n \"name\": \"335921874176646\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints\",\r\n \"properties\": {\r\n \"objectType\": \"IaasVMRecoveryPoint\",\r\n \"recoveryPointType\": \"AppConsistent\",\r\n \"recoveryPointTime\": \"2022-02-25T00:07:24.8985094Z\",\r\n \"recoveryPointAdditionalInfo\": \"\",\r\n \"sourceVMStorageType\": \"NormalStorage\",\r\n \"isSourceVMEncrypted\": false,\r\n \"isInstantIlrSessionActive\": false,\r\n \"recoveryPointTierDetails\": [\r\n {\r\n \"type\": 1,\r\n \"status\": 1\r\n },\r\n {\r\n \"type\": 2,\r\n \"status\": 1\r\n }\r\n ],\r\n \"isManagedVirtualMachine\": true,\r\n \"virtualMachineSize\": \"Standard_D1_v2\",\r\n \"originalStorageAccountOption\": false,\r\n \"osType\": \"Windows\",\r\n \"recoveryPointMoveReadinessInfo\": {\r\n \"ArchivedRP\": {\r\n \"isReadyForMove\": false,\r\n \"additionalInfo\": \"Recovery point cannot be moved to Archive tier due to insufficient retention duration specified in policy.. Update policy on the protected item with appropriate retention setting and try again.\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"80103e74-915f-44a8-b179-6a0822de01ee\",\r\n \"name\": \"80103e74-915f-44a8-b179-6a0822de01ee\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T08:10:37.9320423Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.RecoveryServices/vaults?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOGMxZDhkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cz9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.RecoveryServices/vaults/PSTestRSV93055a66/backupOperations/80103e74-915f-44a8-b179-6a0822de01ee?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTMwNTVhNjYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5MzA1NWE2Ni9iYWNrdXBPcGVyYXRpb25zLzgwMTAzZTc0LTkxNWYtNDRhOC1iMTc5LTZhMDgyMmRlMDFlZT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cd3e4da8-9aaa-4d35-80b8-3e98b275b4f8" + "01828bb4-6e6b-44d6-87c4-1ee93477d9d9" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesClient/4.3.2.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -7844,10 +10153,11 @@ "nosniff" ], "x-ms-request-id": [ - "ad9d38e6-4962-401f-861c-d525135fe5c1" + "64fb91d0-e880-4185-b09e-93dba704c0e9" ], "x-ms-client-request-id": [ - "cd3e4da8-9aaa-4d35-80b8-3e98b275b4f8" + "01828bb4-6e6b-44d6-87c4-1ee93477d9d9", + "01828bb4-6e6b-44d6-87c4-1ee93477d9d9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -7855,20 +10165,23 @@ "Server": [ "Microsoft-IIS/10.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "130" ], "x-ms-correlation-request-id": [ - "ad9d38e6-4962-401f-861c-d525135fe5c1" + "64fb91d0-e880-4185-b09e-93dba704c0e9" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220225T005852Z:ad9d38e6-4962-401f-861c-d525135fe5c1" + "WESTINDIA:20220517T081112Z:64fb91d0-e880-4185-b09e-93dba704c0e9" ], "Date": [ - "Fri, 25 Feb 2022 00:58:51 GMT" + "Tue, 17 May 2022 08:11:11 GMT" ], "Content-Length": [ - "478" + "188" ], "Content-Type": [ "application/json" @@ -7877,26 +10190,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"PSTestRSV8c1d8dac\",\r\n \"etag\": \"W/\\\"datetime'2022-02-25T00%3A05%3A12.7720876Z'\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateEndpointStateForBackup\": \"None\",\r\n \"privateEndpointStateForSiteRecovery\": \"None\"\r\n },\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSV8c1d8dac\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"80103e74-915f-44a8-b179-6a0822de01ee\",\r\n \"name\": \"80103e74-915f-44a8-b179-6a0822de01ee\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T08:10:37.9320423Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSV8c1d8dac/backupProtectionContainers?$filter=backupManagementType%20eq%20'AzureIaasVM'%20and%20status%20eq%20'Registered'&api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOGMxZDhkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y4YzFkOGRhYy9iYWNrdXBQcm90ZWN0aW9uQ29udGFpbmVycz8kZmlsdGVyPWJhY2t1cE1hbmFnZW1lbnRUeXBlJTIwZXElMjAnQXp1cmVJYWFzVk0nJTIwYW5kJTIwc3RhdHVzJTIwZXElMjAnUmVnaXN0ZXJlZCcmYXBpLXZlcnNpb249MjAyMS0xMC0wMQ==", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.RecoveryServices/vaults/PSTestRSV93055a66/backupOperations/80103e74-915f-44a8-b179-6a0822de01ee?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTMwNTVhNjYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5MzA1NWE2Ni9iYWNrdXBPcGVyYXRpb25zLzgwMTAzZTc0LTkxNWYtNDRhOC1iMTc5LTZhMDgyMmRlMDFlZT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2458e2f7-b2aa-4cb1-ad7b-a93441680a8a" + "01828bb4-6e6b-44d6-87c4-1ee93477d9d9" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -7910,11 +10223,11 @@ "nosniff" ], "x-ms-request-id": [ - "55a2da90-e57d-49ea-8efd-18a37e298743" + "02bec6b3-4e3f-42ac-999a-80d800dd339f" ], "x-ms-client-request-id": [ - "2458e2f7-b2aa-4cb1-ad7b-a93441680a8a", - "2458e2f7-b2aa-4cb1-ad7b-a93441680a8a" + "01828bb4-6e6b-44d6-87c4-1ee93477d9d9", + "01828bb4-6e6b-44d6-87c4-1ee93477d9d9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -7926,19 +10239,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "147" + "129" ], "x-ms-correlation-request-id": [ - "55a2da90-e57d-49ea-8efd-18a37e298743" + "02bec6b3-4e3f-42ac-999a-80d800dd339f" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220225T005854Z:55a2da90-e57d-49ea-8efd-18a37e298743" + "WESTINDIA:20220517T081117Z:02bec6b3-4e3f-42ac-999a-80d800dd339f" ], "Date": [ - "Fri, 25 Feb 2022 00:58:53 GMT" + "Tue, 17 May 2022 08:11:16 GMT" ], "Content-Length": [ - "914" + "188" ], "Content-Type": [ "application/json" @@ -7947,26 +10260,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSV8c1d8dac/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrg8c1d8dac;pstestvm8c1d80\",\r\n \"name\": \"IaasVMContainer;iaasvmcontainerv2;pstestrg8c1d8dac;pstestvm8c1d80\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers\",\r\n \"properties\": {\r\n \"virtualMachineId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.Compute/virtualMachines/PSTestVM8c1d80\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"resourceGroup\": \"PSTestRG8c1d8dac\",\r\n \"friendlyName\": \"PSTestVM8c1d80\",\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}", + "ResponseBody": "{\r\n \"id\": \"80103e74-915f-44a8-b179-6a0822de01ee\",\r\n \"name\": \"80103e74-915f-44a8-b179-6a0822de01ee\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T08:10:37.9320423Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSV8c1d8dac/backupFabrics/Azure/protectionContainers/IaasVMContainer%3Biaasvmcontainerv2%3Bpstestrg8c1d8dac%3Bpstestvm8c1d80/protectedItems/VM%3Biaasvmcontainerv2%3Bpstestrg8c1d8dac%3Bpstestvm8c1d80/recoveryPoints?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOGMxZDhkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y4YzFkOGRhYy9iYWNrdXBGYWJyaWNzL0F6dXJlL3Byb3RlY3Rpb25Db250YWluZXJzL0lhYXNWTUNvbnRhaW5lciUzQmlhYXN2bWNvbnRhaW5lcnYyJTNCcHN0ZXN0cmc4YzFkOGRhYyUzQnBzdGVzdHZtOGMxZDgwL3Byb3RlY3RlZEl0ZW1zL1ZNJTNCaWFhc3ZtY29udGFpbmVydjIlM0Jwc3Rlc3RyZzhjMWQ4ZGFjJTNCcHN0ZXN0dm04YzFkODAvcmVjb3ZlcnlQb2ludHM/YXBpLXZlcnNpb249MjAyMS0xMC0wMQ==", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.RecoveryServices/vaults/PSTestRSV93055a66/backupOperations/80103e74-915f-44a8-b179-6a0822de01ee?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTMwNTVhNjYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5MzA1NWE2Ni9iYWNrdXBPcGVyYXRpb25zLzgwMTAzZTc0LTkxNWYtNDRhOC1iMTc5LTZhMDgyMmRlMDFlZT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0be4e453-9a7a-44d1-841c-ae1e2399aa0c" + "01828bb4-6e6b-44d6-87c4-1ee93477d9d9" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -7980,11 +10293,11 @@ "nosniff" ], "x-ms-request-id": [ - "5d1770a6-7bf6-4b85-95dd-f063cb9c3112" + "0d93ff87-8540-488e-ad43-ebb96773aa24" ], "x-ms-client-request-id": [ - "0be4e453-9a7a-44d1-841c-ae1e2399aa0c", - "0be4e453-9a7a-44d1-841c-ae1e2399aa0c" + "01828bb4-6e6b-44d6-87c4-1ee93477d9d9", + "01828bb4-6e6b-44d6-87c4-1ee93477d9d9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -7996,19 +10309,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "147" + "128" ], "x-ms-correlation-request-id": [ - "5d1770a6-7bf6-4b85-95dd-f063cb9c3112" + "0d93ff87-8540-488e-ad43-ebb96773aa24" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220225T005922Z:5d1770a6-7bf6-4b85-95dd-f063cb9c3112" + "WESTINDIA:20220517T081122Z:0d93ff87-8540-488e-ad43-ebb96773aa24" ], "Date": [ - "Fri, 25 Feb 2022 00:59:21 GMT" + "Tue, 17 May 2022 08:11:22 GMT" ], "Content-Length": [ - "1259" + "188" ], "Content-Type": [ "application/json" @@ -8017,26 +10330,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSV8c1d8dac/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrg8c1d8dac;pstestvm8c1d80/protectedItems/VM;iaasvmcontainerv2;pstestrg8c1d8dac;pstestvm8c1d80/recoveryPoints/335921874176646\",\r\n \"name\": \"335921874176646\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints\",\r\n \"properties\": {\r\n \"objectType\": \"IaasVMRecoveryPoint\",\r\n \"recoveryPointType\": \"AppConsistent\",\r\n \"recoveryPointTime\": \"2022-02-25T00:07:24.8985094Z\",\r\n \"recoveryPointAdditionalInfo\": \"\",\r\n \"sourceVMStorageType\": \"NormalStorage\",\r\n \"isSourceVMEncrypted\": false,\r\n \"isInstantIlrSessionActive\": false,\r\n \"recoveryPointTierDetails\": [\r\n {\r\n \"type\": 1,\r\n \"status\": 1\r\n },\r\n {\r\n \"type\": 2,\r\n \"status\": 1\r\n }\r\n ],\r\n \"isManagedVirtualMachine\": true,\r\n \"virtualMachineSize\": \"Standard_D1_v2\",\r\n \"originalStorageAccountOption\": false,\r\n \"osType\": \"Windows\",\r\n \"recoveryPointMoveReadinessInfo\": {\r\n \"ArchivedRP\": {\r\n \"isReadyForMove\": false,\r\n \"additionalInfo\": \"Recovery point cannot be moved to Archive tier due to insufficient retention duration specified in policy.. Update policy on the protected item with appropriate retention setting and try again.\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"80103e74-915f-44a8-b179-6a0822de01ee\",\r\n \"name\": \"80103e74-915f-44a8-b179-6a0822de01ee\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T08:10:37.9320423Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSV8c1d8dac/backupFabrics/Azure/protectionContainers/IaasVMContainer%3Biaasvmcontainerv2%3Bpstestrg8c1d8dac%3Bpstestvm8c1d80/protectedItems/VM%3Biaasvmcontainerv2%3Bpstestrg8c1d8dac%3Bpstestvm8c1d80?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOGMxZDhkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y4YzFkOGRhYy9iYWNrdXBGYWJyaWNzL0F6dXJlL3Byb3RlY3Rpb25Db250YWluZXJzL0lhYXNWTUNvbnRhaW5lciUzQmlhYXN2bWNvbnRhaW5lcnYyJTNCcHN0ZXN0cmc4YzFkOGRhYyUzQnBzdGVzdHZtOGMxZDgwL3Byb3RlY3RlZEl0ZW1zL1ZNJTNCaWFhc3ZtY29udGFpbmVydjIlM0Jwc3Rlc3RyZzhjMWQ4ZGFjJTNCcHN0ZXN0dm04YzFkODA/YXBpLXZlcnNpb249MjAyMS0xMC0wMQ==", - "RequestMethod": "DELETE", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.RecoveryServices/vaults/PSTestRSV93055a66/backupOperations/80103e74-915f-44a8-b179-6a0822de01ee?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTMwNTVhNjYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5MzA1NWE2Ni9iYWNrdXBPcGVyYXRpb25zLzgwMTAzZTc0LTkxNWYtNDRhOC1iMTc5LTZhMDgyMmRlMDFlZT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0be4e453-9a7a-44d1-841c-ae1e2399aa0c" + "01828bb4-6e6b-44d6-87c4-1ee93477d9d9" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -8046,70 +10359,67 @@ "Pragma": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSV8c1d8dac/backupOperationResults/b1d23c79-9d46-47dd-b881-5aac662b3bc0?api-version=2021-10-01" - ], - "Retry-After": [ - "60" - ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSV8c1d8dac/backupOperations/b1d23c79-9d46-47dd-b881-5aac662b3bc0?api-version=2021-10-01" - ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "f73eca87-664a-4b3c-b47a-d8bdb4004b22" + "192cb3b6-ff33-414e-ae74-1e1ee46bf87b" ], "x-ms-client-request-id": [ - "0be4e453-9a7a-44d1-841c-ae1e2399aa0c", - "0be4e453-9a7a-44d1-841c-ae1e2399aa0c" + "01828bb4-6e6b-44d6-87c4-1ee93477d9d9", + "01828bb4-6e6b-44d6-87c4-1ee93477d9d9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-IIS/10.0" + ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ - "14999" + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "127" ], "x-ms-correlation-request-id": [ - "f73eca87-664a-4b3c-b47a-d8bdb4004b22" + "192cb3b6-ff33-414e-ae74-1e1ee46bf87b" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220225T005925Z:f73eca87-664a-4b3c-b47a-d8bdb4004b22" + "WESTINDIA:20220517T081128Z:192cb3b6-ff33-414e-ae74-1e1ee46bf87b" ], "Date": [ - "Fri, 25 Feb 2022 00:59:25 GMT" + "Tue, 17 May 2022 08:11:27 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, - "ResponseBody": "", - "StatusCode": 202 + "ResponseBody": "{\r\n \"id\": \"80103e74-915f-44a8-b179-6a0822de01ee\",\r\n \"name\": \"80103e74-915f-44a8-b179-6a0822de01ee\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T08:10:37.9320423Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSV8c1d8dac/backupOperations/b1d23c79-9d46-47dd-b881-5aac662b3bc0?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOGMxZDhkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y4YzFkOGRhYy9iYWNrdXBPcGVyYXRpb25zL2IxZDIzYzc5LTlkNDYtNDdkZC1iODgxLTVhYWM2NjJiM2JjMD9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.RecoveryServices/vaults/PSTestRSV93055a66/backupOperations/80103e74-915f-44a8-b179-6a0822de01ee?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTMwNTVhNjYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5MzA1NWE2Ni9iYWNrdXBPcGVyYXRpb25zLzgwMTAzZTc0LTkxNWYtNDRhOC1iMTc5LTZhMDgyMmRlMDFlZT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0be4e453-9a7a-44d1-841c-ae1e2399aa0c" + "01828bb4-6e6b-44d6-87c4-1ee93477d9d9" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -8123,11 +10433,11 @@ "nosniff" ], "x-ms-request-id": [ - "caf274dd-508d-4220-add0-543517aebcdf" + "323fbc4a-024f-4c44-a124-b08c746a5824" ], "x-ms-client-request-id": [ - "0be4e453-9a7a-44d1-841c-ae1e2399aa0c", - "0be4e453-9a7a-44d1-841c-ae1e2399aa0c" + "01828bb4-6e6b-44d6-87c4-1ee93477d9d9", + "01828bb4-6e6b-44d6-87c4-1ee93477d9d9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -8139,16 +10449,16 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "142" + "126" ], "x-ms-correlation-request-id": [ - "caf274dd-508d-4220-add0-543517aebcdf" + "323fbc4a-024f-4c44-a124-b08c746a5824" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220225T005926Z:caf274dd-508d-4220-add0-543517aebcdf" + "WESTINDIA:20220517T081133Z:323fbc4a-024f-4c44-a124-b08c746a5824" ], "Date": [ - "Fri, 25 Feb 2022 00:59:25 GMT" + "Tue, 17 May 2022 08:11:32 GMT" ], "Content-Length": [ "188" @@ -8160,26 +10470,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"b1d23c79-9d46-47dd-b881-5aac662b3bc0\",\r\n \"name\": \"b1d23c79-9d46-47dd-b881-5aac662b3bc0\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-25T00:59:25.2300006Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"80103e74-915f-44a8-b179-6a0822de01ee\",\r\n \"name\": \"80103e74-915f-44a8-b179-6a0822de01ee\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T08:10:37.9320423Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSV8c1d8dac/backupOperations/b1d23c79-9d46-47dd-b881-5aac662b3bc0?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOGMxZDhkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y4YzFkOGRhYy9iYWNrdXBPcGVyYXRpb25zL2IxZDIzYzc5LTlkNDYtNDdkZC1iODgxLTVhYWM2NjJiM2JjMD9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.RecoveryServices/vaults/PSTestRSV93055a66/backupOperations/80103e74-915f-44a8-b179-6a0822de01ee?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTMwNTVhNjYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5MzA1NWE2Ni9iYWNrdXBPcGVyYXRpb25zLzgwMTAzZTc0LTkxNWYtNDRhOC1iMTc5LTZhMDgyMmRlMDFlZT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0be4e453-9a7a-44d1-841c-ae1e2399aa0c" + "01828bb4-6e6b-44d6-87c4-1ee93477d9d9" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -8193,11 +10503,11 @@ "nosniff" ], "x-ms-request-id": [ - "7719b3e8-655d-4200-a6e7-1127d7082886" + "b51c20dd-4b34-4095-969a-482c3b980c5e" ], "x-ms-client-request-id": [ - "0be4e453-9a7a-44d1-841c-ae1e2399aa0c", - "0be4e453-9a7a-44d1-841c-ae1e2399aa0c" + "01828bb4-6e6b-44d6-87c4-1ee93477d9d9", + "01828bb4-6e6b-44d6-87c4-1ee93477d9d9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -8209,16 +10519,16 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "141" + "125" ], "x-ms-correlation-request-id": [ - "7719b3e8-655d-4200-a6e7-1127d7082886" + "b51c20dd-4b34-4095-969a-482c3b980c5e" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220225T005936Z:7719b3e8-655d-4200-a6e7-1127d7082886" + "WESTINDIA:20220517T081139Z:b51c20dd-4b34-4095-969a-482c3b980c5e" ], "Date": [ - "Fri, 25 Feb 2022 00:59:36 GMT" + "Tue, 17 May 2022 08:11:38 GMT" ], "Content-Length": [ "188" @@ -8230,26 +10540,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"b1d23c79-9d46-47dd-b881-5aac662b3bc0\",\r\n \"name\": \"b1d23c79-9d46-47dd-b881-5aac662b3bc0\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-25T00:59:25.2300006Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"80103e74-915f-44a8-b179-6a0822de01ee\",\r\n \"name\": \"80103e74-915f-44a8-b179-6a0822de01ee\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T08:10:37.9320423Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSV8c1d8dac/backupOperations/b1d23c79-9d46-47dd-b881-5aac662b3bc0?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOGMxZDhkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y4YzFkOGRhYy9iYWNrdXBPcGVyYXRpb25zL2IxZDIzYzc5LTlkNDYtNDdkZC1iODgxLTVhYWM2NjJiM2JjMD9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.RecoveryServices/vaults/PSTestRSV93055a66/backupOperations/80103e74-915f-44a8-b179-6a0822de01ee?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTMwNTVhNjYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5MzA1NWE2Ni9iYWNrdXBPcGVyYXRpb25zLzgwMTAzZTc0LTkxNWYtNDRhOC1iMTc5LTZhMDgyMmRlMDFlZT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0be4e453-9a7a-44d1-841c-ae1e2399aa0c" + "01828bb4-6e6b-44d6-87c4-1ee93477d9d9" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -8263,11 +10573,11 @@ "nosniff" ], "x-ms-request-id": [ - "e3165534-1a76-417b-8d9a-e8ad9533c4de" + "24a86670-569c-4995-8a64-f43ddeec0281" ], "x-ms-client-request-id": [ - "0be4e453-9a7a-44d1-841c-ae1e2399aa0c", - "0be4e453-9a7a-44d1-841c-ae1e2399aa0c" + "01828bb4-6e6b-44d6-87c4-1ee93477d9d9", + "01828bb4-6e6b-44d6-87c4-1ee93477d9d9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -8279,16 +10589,16 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "140" + "124" ], "x-ms-correlation-request-id": [ - "e3165534-1a76-417b-8d9a-e8ad9533c4de" + "24a86670-569c-4995-8a64-f43ddeec0281" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220225T005947Z:e3165534-1a76-417b-8d9a-e8ad9533c4de" + "WESTINDIA:20220517T081144Z:24a86670-569c-4995-8a64-f43ddeec0281" ], "Date": [ - "Fri, 25 Feb 2022 00:59:46 GMT" + "Tue, 17 May 2022 08:11:43 GMT" ], "Content-Length": [ "188" @@ -8300,26 +10610,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"b1d23c79-9d46-47dd-b881-5aac662b3bc0\",\r\n \"name\": \"b1d23c79-9d46-47dd-b881-5aac662b3bc0\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-25T00:59:25.2300006Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"80103e74-915f-44a8-b179-6a0822de01ee\",\r\n \"name\": \"80103e74-915f-44a8-b179-6a0822de01ee\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T08:10:37.9320423Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSV8c1d8dac/backupOperations/b1d23c79-9d46-47dd-b881-5aac662b3bc0?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOGMxZDhkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y4YzFkOGRhYy9iYWNrdXBPcGVyYXRpb25zL2IxZDIzYzc5LTlkNDYtNDdkZC1iODgxLTVhYWM2NjJiM2JjMD9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.RecoveryServices/vaults/PSTestRSV93055a66/backupOperations/80103e74-915f-44a8-b179-6a0822de01ee?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTMwNTVhNjYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5MzA1NWE2Ni9iYWNrdXBPcGVyYXRpb25zLzgwMTAzZTc0LTkxNWYtNDRhOC1iMTc5LTZhMDgyMmRlMDFlZT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0be4e453-9a7a-44d1-841c-ae1e2399aa0c" + "01828bb4-6e6b-44d6-87c4-1ee93477d9d9" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -8333,11 +10643,11 @@ "nosniff" ], "x-ms-request-id": [ - "e4e059ba-9ff2-4f31-b682-5493016a9f9f" + "05a2553e-e7a6-4836-a236-f7b5b6421947" ], "x-ms-client-request-id": [ - "0be4e453-9a7a-44d1-841c-ae1e2399aa0c", - "0be4e453-9a7a-44d1-841c-ae1e2399aa0c" + "01828bb4-6e6b-44d6-87c4-1ee93477d9d9", + "01828bb4-6e6b-44d6-87c4-1ee93477d9d9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -8349,16 +10659,16 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "139" + "123" ], "x-ms-correlation-request-id": [ - "e4e059ba-9ff2-4f31-b682-5493016a9f9f" + "05a2553e-e7a6-4836-a236-f7b5b6421947" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220225T005957Z:e4e059ba-9ff2-4f31-b682-5493016a9f9f" + "WESTINDIA:20220517T081150Z:05a2553e-e7a6-4836-a236-f7b5b6421947" ], "Date": [ - "Fri, 25 Feb 2022 00:59:57 GMT" + "Tue, 17 May 2022 08:11:50 GMT" ], "Content-Length": [ "188" @@ -8370,26 +10680,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"b1d23c79-9d46-47dd-b881-5aac662b3bc0\",\r\n \"name\": \"b1d23c79-9d46-47dd-b881-5aac662b3bc0\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-25T00:59:25.2300006Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"80103e74-915f-44a8-b179-6a0822de01ee\",\r\n \"name\": \"80103e74-915f-44a8-b179-6a0822de01ee\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T08:10:37.9320423Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSV8c1d8dac/backupOperations/b1d23c79-9d46-47dd-b881-5aac662b3bc0?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOGMxZDhkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y4YzFkOGRhYy9iYWNrdXBPcGVyYXRpb25zL2IxZDIzYzc5LTlkNDYtNDdkZC1iODgxLTVhYWM2NjJiM2JjMD9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.RecoveryServices/vaults/PSTestRSV93055a66/backupOperations/80103e74-915f-44a8-b179-6a0822de01ee?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTMwNTVhNjYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5MzA1NWE2Ni9iYWNrdXBPcGVyYXRpb25zLzgwMTAzZTc0LTkxNWYtNDRhOC1iMTc5LTZhMDgyMmRlMDFlZT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0be4e453-9a7a-44d1-841c-ae1e2399aa0c" + "01828bb4-6e6b-44d6-87c4-1ee93477d9d9" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -8403,11 +10713,11 @@ "nosniff" ], "x-ms-request-id": [ - "640fb601-1135-4d3e-a02b-c72a9c51e30b" + "5a88f093-55fd-47fe-8836-08e6421b94e2" ], "x-ms-client-request-id": [ - "0be4e453-9a7a-44d1-841c-ae1e2399aa0c", - "0be4e453-9a7a-44d1-841c-ae1e2399aa0c" + "01828bb4-6e6b-44d6-87c4-1ee93477d9d9", + "01828bb4-6e6b-44d6-87c4-1ee93477d9d9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -8419,16 +10729,16 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "138" + "122" ], "x-ms-correlation-request-id": [ - "640fb601-1135-4d3e-a02b-c72a9c51e30b" + "5a88f093-55fd-47fe-8836-08e6421b94e2" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220225T010008Z:640fb601-1135-4d3e-a02b-c72a9c51e30b" + "WESTINDIA:20220517T081155Z:5a88f093-55fd-47fe-8836-08e6421b94e2" ], "Date": [ - "Fri, 25 Feb 2022 01:00:08 GMT" + "Tue, 17 May 2022 08:11:55 GMT" ], "Content-Length": [ "188" @@ -8440,26 +10750,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"b1d23c79-9d46-47dd-b881-5aac662b3bc0\",\r\n \"name\": \"b1d23c79-9d46-47dd-b881-5aac662b3bc0\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-25T00:59:25.2300006Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"80103e74-915f-44a8-b179-6a0822de01ee\",\r\n \"name\": \"80103e74-915f-44a8-b179-6a0822de01ee\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T08:10:37.9320423Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSV8c1d8dac/backupOperations/b1d23c79-9d46-47dd-b881-5aac662b3bc0?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOGMxZDhkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y4YzFkOGRhYy9iYWNrdXBPcGVyYXRpb25zL2IxZDIzYzc5LTlkNDYtNDdkZC1iODgxLTVhYWM2NjJiM2JjMD9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.RecoveryServices/vaults/PSTestRSV93055a66/backupOperations/80103e74-915f-44a8-b179-6a0822de01ee?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTMwNTVhNjYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5MzA1NWE2Ni9iYWNrdXBPcGVyYXRpb25zLzgwMTAzZTc0LTkxNWYtNDRhOC1iMTc5LTZhMDgyMmRlMDFlZT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0be4e453-9a7a-44d1-841c-ae1e2399aa0c" + "01828bb4-6e6b-44d6-87c4-1ee93477d9d9" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -8473,11 +10783,11 @@ "nosniff" ], "x-ms-request-id": [ - "da1ab38d-9533-4b03-85c2-9352ddce7357" + "490622b3-852e-4e28-ba74-06cb28117875" ], "x-ms-client-request-id": [ - "0be4e453-9a7a-44d1-841c-ae1e2399aa0c", - "0be4e453-9a7a-44d1-841c-ae1e2399aa0c" + "01828bb4-6e6b-44d6-87c4-1ee93477d9d9", + "01828bb4-6e6b-44d6-87c4-1ee93477d9d9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -8489,16 +10799,16 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "137" + "121" ], "x-ms-correlation-request-id": [ - "da1ab38d-9533-4b03-85c2-9352ddce7357" + "490622b3-852e-4e28-ba74-06cb28117875" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220225T010019Z:da1ab38d-9533-4b03-85c2-9352ddce7357" + "WESTINDIA:20220517T081200Z:490622b3-852e-4e28-ba74-06cb28117875" ], "Date": [ - "Fri, 25 Feb 2022 01:00:18 GMT" + "Tue, 17 May 2022 08:12:00 GMT" ], "Content-Length": [ "188" @@ -8510,26 +10820,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"b1d23c79-9d46-47dd-b881-5aac662b3bc0\",\r\n \"name\": \"b1d23c79-9d46-47dd-b881-5aac662b3bc0\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-25T00:59:25.2300006Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"80103e74-915f-44a8-b179-6a0822de01ee\",\r\n \"name\": \"80103e74-915f-44a8-b179-6a0822de01ee\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T08:10:37.9320423Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSV8c1d8dac/backupOperations/b1d23c79-9d46-47dd-b881-5aac662b3bc0?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOGMxZDhkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y4YzFkOGRhYy9iYWNrdXBPcGVyYXRpb25zL2IxZDIzYzc5LTlkNDYtNDdkZC1iODgxLTVhYWM2NjJiM2JjMD9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.RecoveryServices/vaults/PSTestRSV93055a66/backupOperations/80103e74-915f-44a8-b179-6a0822de01ee?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTMwNTVhNjYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5MzA1NWE2Ni9iYWNrdXBPcGVyYXRpb25zLzgwMTAzZTc0LTkxNWYtNDRhOC1iMTc5LTZhMDgyMmRlMDFlZT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0be4e453-9a7a-44d1-841c-ae1e2399aa0c" + "01828bb4-6e6b-44d6-87c4-1ee93477d9d9" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -8543,11 +10853,11 @@ "nosniff" ], "x-ms-request-id": [ - "a79e258d-e59c-4796-82c2-4b166a300ed3" + "2bf8c0d1-c435-46c5-9bc8-53a2b00978e3" ], "x-ms-client-request-id": [ - "0be4e453-9a7a-44d1-841c-ae1e2399aa0c", - "0be4e453-9a7a-44d1-841c-ae1e2399aa0c" + "01828bb4-6e6b-44d6-87c4-1ee93477d9d9", + "01828bb4-6e6b-44d6-87c4-1ee93477d9d9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -8559,16 +10869,16 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "136" + "120" ], "x-ms-correlation-request-id": [ - "a79e258d-e59c-4796-82c2-4b166a300ed3" + "2bf8c0d1-c435-46c5-9bc8-53a2b00978e3" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220225T010029Z:a79e258d-e59c-4796-82c2-4b166a300ed3" + "WESTINDIA:20220517T081206Z:2bf8c0d1-c435-46c5-9bc8-53a2b00978e3" ], "Date": [ - "Fri, 25 Feb 2022 01:00:29 GMT" + "Tue, 17 May 2022 08:12:06 GMT" ], "Content-Length": [ "188" @@ -8580,26 +10890,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"b1d23c79-9d46-47dd-b881-5aac662b3bc0\",\r\n \"name\": \"b1d23c79-9d46-47dd-b881-5aac662b3bc0\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-25T00:59:25.2300006Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"80103e74-915f-44a8-b179-6a0822de01ee\",\r\n \"name\": \"80103e74-915f-44a8-b179-6a0822de01ee\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T08:10:37.9320423Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSV8c1d8dac/backupOperations/b1d23c79-9d46-47dd-b881-5aac662b3bc0?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOGMxZDhkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y4YzFkOGRhYy9iYWNrdXBPcGVyYXRpb25zL2IxZDIzYzc5LTlkNDYtNDdkZC1iODgxLTVhYWM2NjJiM2JjMD9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.RecoveryServices/vaults/PSTestRSV93055a66/backupOperations/80103e74-915f-44a8-b179-6a0822de01ee?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTMwNTVhNjYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5MzA1NWE2Ni9iYWNrdXBPcGVyYXRpb25zLzgwMTAzZTc0LTkxNWYtNDRhOC1iMTc5LTZhMDgyMmRlMDFlZT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0be4e453-9a7a-44d1-841c-ae1e2399aa0c" + "01828bb4-6e6b-44d6-87c4-1ee93477d9d9" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -8613,11 +10923,11 @@ "nosniff" ], "x-ms-request-id": [ - "be1b0a8a-ba5f-40ba-934b-fed5d6ba1f9c" + "e2920f52-3f74-4b17-8a19-97938550accb" ], "x-ms-client-request-id": [ - "0be4e453-9a7a-44d1-841c-ae1e2399aa0c", - "0be4e453-9a7a-44d1-841c-ae1e2399aa0c" + "01828bb4-6e6b-44d6-87c4-1ee93477d9d9", + "01828bb4-6e6b-44d6-87c4-1ee93477d9d9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -8629,16 +10939,16 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "135" + "119" ], "x-ms-correlation-request-id": [ - "be1b0a8a-ba5f-40ba-934b-fed5d6ba1f9c" + "e2920f52-3f74-4b17-8a19-97938550accb" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220225T010040Z:be1b0a8a-ba5f-40ba-934b-fed5d6ba1f9c" + "WESTINDIA:20220517T081212Z:e2920f52-3f74-4b17-8a19-97938550accb" ], "Date": [ - "Fri, 25 Feb 2022 01:00:39 GMT" + "Tue, 17 May 2022 08:12:11 GMT" ], "Content-Length": [ "188" @@ -8650,26 +10960,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"b1d23c79-9d46-47dd-b881-5aac662b3bc0\",\r\n \"name\": \"b1d23c79-9d46-47dd-b881-5aac662b3bc0\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-25T00:59:25.2300006Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"80103e74-915f-44a8-b179-6a0822de01ee\",\r\n \"name\": \"80103e74-915f-44a8-b179-6a0822de01ee\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T08:10:37.9320423Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSV8c1d8dac/backupOperations/b1d23c79-9d46-47dd-b881-5aac662b3bc0?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOGMxZDhkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y4YzFkOGRhYy9iYWNrdXBPcGVyYXRpb25zL2IxZDIzYzc5LTlkNDYtNDdkZC1iODgxLTVhYWM2NjJiM2JjMD9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.RecoveryServices/vaults/PSTestRSV93055a66/backupOperations/80103e74-915f-44a8-b179-6a0822de01ee?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTMwNTVhNjYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5MzA1NWE2Ni9iYWNrdXBPcGVyYXRpb25zLzgwMTAzZTc0LTkxNWYtNDRhOC1iMTc5LTZhMDgyMmRlMDFlZT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0be4e453-9a7a-44d1-841c-ae1e2399aa0c" + "01828bb4-6e6b-44d6-87c4-1ee93477d9d9" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -8683,11 +10993,11 @@ "nosniff" ], "x-ms-request-id": [ - "85efc5ab-d9bb-40a3-9704-c4c28ec7c4b7" + "28b34f4f-428a-4708-a792-2008240457e6" ], "x-ms-client-request-id": [ - "0be4e453-9a7a-44d1-841c-ae1e2399aa0c", - "0be4e453-9a7a-44d1-841c-ae1e2399aa0c" + "01828bb4-6e6b-44d6-87c4-1ee93477d9d9", + "01828bb4-6e6b-44d6-87c4-1ee93477d9d9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -8699,16 +11009,16 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "134" + "118" ], "x-ms-correlation-request-id": [ - "85efc5ab-d9bb-40a3-9704-c4c28ec7c4b7" + "28b34f4f-428a-4708-a792-2008240457e6" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220225T010051Z:85efc5ab-d9bb-40a3-9704-c4c28ec7c4b7" + "WESTINDIA:20220517T081217Z:28b34f4f-428a-4708-a792-2008240457e6" ], "Date": [ - "Fri, 25 Feb 2022 01:00:50 GMT" + "Tue, 17 May 2022 08:12:17 GMT" ], "Content-Length": [ "188" @@ -8720,26 +11030,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"b1d23c79-9d46-47dd-b881-5aac662b3bc0\",\r\n \"name\": \"b1d23c79-9d46-47dd-b881-5aac662b3bc0\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-25T00:59:25.2300006Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"80103e74-915f-44a8-b179-6a0822de01ee\",\r\n \"name\": \"80103e74-915f-44a8-b179-6a0822de01ee\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T08:10:37.9320423Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSV8c1d8dac/backupOperations/b1d23c79-9d46-47dd-b881-5aac662b3bc0?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOGMxZDhkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y4YzFkOGRhYy9iYWNrdXBPcGVyYXRpb25zL2IxZDIzYzc5LTlkNDYtNDdkZC1iODgxLTVhYWM2NjJiM2JjMD9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.RecoveryServices/vaults/PSTestRSV93055a66/backupOperations/80103e74-915f-44a8-b179-6a0822de01ee?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTMwNTVhNjYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5MzA1NWE2Ni9iYWNrdXBPcGVyYXRpb25zLzgwMTAzZTc0LTkxNWYtNDRhOC1iMTc5LTZhMDgyMmRlMDFlZT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0be4e453-9a7a-44d1-841c-ae1e2399aa0c" + "01828bb4-6e6b-44d6-87c4-1ee93477d9d9" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -8753,11 +11063,11 @@ "nosniff" ], "x-ms-request-id": [ - "f21d37f0-d9ab-4535-a68d-03d2f7f82f83" + "251262d7-bd0e-45a7-960b-e90d41fb6953" ], "x-ms-client-request-id": [ - "0be4e453-9a7a-44d1-841c-ae1e2399aa0c", - "0be4e453-9a7a-44d1-841c-ae1e2399aa0c" + "01828bb4-6e6b-44d6-87c4-1ee93477d9d9", + "01828bb4-6e6b-44d6-87c4-1ee93477d9d9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -8769,16 +11079,16 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "133" + "117" ], "x-ms-correlation-request-id": [ - "f21d37f0-d9ab-4535-a68d-03d2f7f82f83" + "251262d7-bd0e-45a7-960b-e90d41fb6953" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220225T010101Z:f21d37f0-d9ab-4535-a68d-03d2f7f82f83" + "WESTINDIA:20220517T081223Z:251262d7-bd0e-45a7-960b-e90d41fb6953" ], "Date": [ - "Fri, 25 Feb 2022 01:01:00 GMT" + "Tue, 17 May 2022 08:12:22 GMT" ], "Content-Length": [ "188" @@ -8790,26 +11100,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"b1d23c79-9d46-47dd-b881-5aac662b3bc0\",\r\n \"name\": \"b1d23c79-9d46-47dd-b881-5aac662b3bc0\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-25T00:59:25.2300006Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"80103e74-915f-44a8-b179-6a0822de01ee\",\r\n \"name\": \"80103e74-915f-44a8-b179-6a0822de01ee\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T08:10:37.9320423Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSV8c1d8dac/backupOperations/b1d23c79-9d46-47dd-b881-5aac662b3bc0?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOGMxZDhkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y4YzFkOGRhYy9iYWNrdXBPcGVyYXRpb25zL2IxZDIzYzc5LTlkNDYtNDdkZC1iODgxLTVhYWM2NjJiM2JjMD9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.RecoveryServices/vaults/PSTestRSV93055a66/backupOperations/80103e74-915f-44a8-b179-6a0822de01ee?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTMwNTVhNjYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5MzA1NWE2Ni9iYWNrdXBPcGVyYXRpb25zLzgwMTAzZTc0LTkxNWYtNDRhOC1iMTc5LTZhMDgyMmRlMDFlZT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0be4e453-9a7a-44d1-841c-ae1e2399aa0c" + "01828bb4-6e6b-44d6-87c4-1ee93477d9d9" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -8823,11 +11133,11 @@ "nosniff" ], "x-ms-request-id": [ - "755c3f1c-868a-4754-b38d-5fe51f956bcd" + "9ca31b8a-e1a5-4754-8d57-25ed4bb5314a" ], "x-ms-client-request-id": [ - "0be4e453-9a7a-44d1-841c-ae1e2399aa0c", - "0be4e453-9a7a-44d1-841c-ae1e2399aa0c" + "01828bb4-6e6b-44d6-87c4-1ee93477d9d9", + "01828bb4-6e6b-44d6-87c4-1ee93477d9d9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -8839,16 +11149,16 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "132" + "116" ], "x-ms-correlation-request-id": [ - "755c3f1c-868a-4754-b38d-5fe51f956bcd" + "9ca31b8a-e1a5-4754-8d57-25ed4bb5314a" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220225T010112Z:755c3f1c-868a-4754-b38d-5fe51f956bcd" + "WESTINDIA:20220517T081228Z:9ca31b8a-e1a5-4754-8d57-25ed4bb5314a" ], "Date": [ - "Fri, 25 Feb 2022 01:01:11 GMT" + "Tue, 17 May 2022 08:12:28 GMT" ], "Content-Length": [ "188" @@ -8860,26 +11170,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"b1d23c79-9d46-47dd-b881-5aac662b3bc0\",\r\n \"name\": \"b1d23c79-9d46-47dd-b881-5aac662b3bc0\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-25T00:59:25.2300006Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"80103e74-915f-44a8-b179-6a0822de01ee\",\r\n \"name\": \"80103e74-915f-44a8-b179-6a0822de01ee\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T08:10:37.9320423Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSV8c1d8dac/backupOperations/b1d23c79-9d46-47dd-b881-5aac662b3bc0?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOGMxZDhkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y4YzFkOGRhYy9iYWNrdXBPcGVyYXRpb25zL2IxZDIzYzc5LTlkNDYtNDdkZC1iODgxLTVhYWM2NjJiM2JjMD9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.RecoveryServices/vaults/PSTestRSV93055a66/backupOperations/80103e74-915f-44a8-b179-6a0822de01ee?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTMwNTVhNjYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5MzA1NWE2Ni9iYWNrdXBPcGVyYXRpb25zLzgwMTAzZTc0LTkxNWYtNDRhOC1iMTc5LTZhMDgyMmRlMDFlZT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0be4e453-9a7a-44d1-841c-ae1e2399aa0c" + "01828bb4-6e6b-44d6-87c4-1ee93477d9d9" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -8893,11 +11203,11 @@ "nosniff" ], "x-ms-request-id": [ - "9d6c3bea-c755-4494-9017-2e93c0d2e45f" + "df3b3417-734b-4668-9baf-e9e8c54349f0" ], "x-ms-client-request-id": [ - "0be4e453-9a7a-44d1-841c-ae1e2399aa0c", - "0be4e453-9a7a-44d1-841c-ae1e2399aa0c" + "01828bb4-6e6b-44d6-87c4-1ee93477d9d9", + "01828bb4-6e6b-44d6-87c4-1ee93477d9d9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -8909,16 +11219,16 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "131" + "115" ], "x-ms-correlation-request-id": [ - "9d6c3bea-c755-4494-9017-2e93c0d2e45f" + "df3b3417-734b-4668-9baf-e9e8c54349f0" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220225T010122Z:9d6c3bea-c755-4494-9017-2e93c0d2e45f" + "WESTINDIA:20220517T081234Z:df3b3417-734b-4668-9baf-e9e8c54349f0" ], "Date": [ - "Fri, 25 Feb 2022 01:01:21 GMT" + "Tue, 17 May 2022 08:12:33 GMT" ], "Content-Length": [ "304" @@ -8930,26 +11240,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"b1d23c79-9d46-47dd-b881-5aac662b3bc0\",\r\n \"name\": \"b1d23c79-9d46-47dd-b881-5aac662b3bc0\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-02-25T00:59:25.2300006Z\",\r\n \"endTime\": \"2022-02-25T00:59:25.2300006Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"491e7aaf-bf79-4948-9381-0f0a49d241cf\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"80103e74-915f-44a8-b179-6a0822de01ee\",\r\n \"name\": \"80103e74-915f-44a8-b179-6a0822de01ee\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-05-17T08:10:37.9320423Z\",\r\n \"endTime\": \"2022-05-17T08:10:37.9320423Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"6168b15f-d3da-4b1e-84c5-fca5ac7df7e2\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSV8c1d8dac/backupOperations/b1d23c79-9d46-47dd-b881-5aac662b3bc0?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOGMxZDhkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y4YzFkOGRhYy9iYWNrdXBPcGVyYXRpb25zL2IxZDIzYzc5LTlkNDYtNDdkZC1iODgxLTVhYWM2NjJiM2JjMD9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.RecoveryServices/vaults/PSTestRSV93055a66/backupOperations/80103e74-915f-44a8-b179-6a0822de01ee?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTMwNTVhNjYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5MzA1NWE2Ni9iYWNrdXBPcGVyYXRpb25zLzgwMTAzZTc0LTkxNWYtNDRhOC1iMTc5LTZhMDgyMmRlMDFlZT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0be4e453-9a7a-44d1-841c-ae1e2399aa0c" + "01828bb4-6e6b-44d6-87c4-1ee93477d9d9" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -8963,11 +11273,11 @@ "nosniff" ], "x-ms-request-id": [ - "f4cfda7a-951d-4d66-b53f-0088aa4b0f63" + "16168d17-3a08-4b0a-8924-05236b8f1351" ], "x-ms-client-request-id": [ - "0be4e453-9a7a-44d1-841c-ae1e2399aa0c", - "0be4e453-9a7a-44d1-841c-ae1e2399aa0c" + "01828bb4-6e6b-44d6-87c4-1ee93477d9d9", + "01828bb4-6e6b-44d6-87c4-1ee93477d9d9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -8979,16 +11289,16 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "130" + "114" ], "x-ms-correlation-request-id": [ - "f4cfda7a-951d-4d66-b53f-0088aa4b0f63" + "16168d17-3a08-4b0a-8924-05236b8f1351" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220225T010123Z:f4cfda7a-951d-4d66-b53f-0088aa4b0f63" + "WESTINDIA:20220517T081234Z:16168d17-3a08-4b0a-8924-05236b8f1351" ], "Date": [ - "Fri, 25 Feb 2022 01:01:22 GMT" + "Tue, 17 May 2022 08:12:34 GMT" ], "Content-Length": [ "304" @@ -9000,26 +11310,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"b1d23c79-9d46-47dd-b881-5aac662b3bc0\",\r\n \"name\": \"b1d23c79-9d46-47dd-b881-5aac662b3bc0\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-02-25T00:59:25.2300006Z\",\r\n \"endTime\": \"2022-02-25T00:59:25.2300006Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"491e7aaf-bf79-4948-9381-0f0a49d241cf\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"80103e74-915f-44a8-b179-6a0822de01ee\",\r\n \"name\": \"80103e74-915f-44a8-b179-6a0822de01ee\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-05-17T08:10:37.9320423Z\",\r\n \"endTime\": \"2022-05-17T08:10:37.9320423Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"6168b15f-d3da-4b1e-84c5-fca5ac7df7e2\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSV8c1d8dac/backupJobs/491e7aaf-bf79-4948-9381-0f0a49d241cf?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOGMxZDhkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y4YzFkOGRhYy9iYWNrdXBKb2JzLzQ5MWU3YWFmLWJmNzktNDk0OC05MzgxLTBmMGE0OWQyNDFjZj9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.RecoveryServices/vaults/PSTestRSV93055a66/backupJobs/6168b15f-d3da-4b1e-84c5-fca5ac7df7e2?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTMwNTVhNjYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5MzA1NWE2Ni9iYWNrdXBKb2JzLzYxNjhiMTVmLWQzZGEtNGIxZS04NGM1LWZjYTVhYzdkZjdlMj9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0be4e453-9a7a-44d1-841c-ae1e2399aa0c" + "01828bb4-6e6b-44d6-87c4-1ee93477d9d9" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -9037,11 +11347,11 @@ "nosniff" ], "x-ms-request-id": [ - "65f1bda4-f484-496f-9d6c-3911543a9360" + "7e59d52c-b621-4b5c-b2c8-a5e83c1c8657" ], "x-ms-client-request-id": [ - "0be4e453-9a7a-44d1-841c-ae1e2399aa0c", - "0be4e453-9a7a-44d1-841c-ae1e2399aa0c" + "01828bb4-6e6b-44d6-87c4-1ee93477d9d9", + "01828bb4-6e6b-44d6-87c4-1ee93477d9d9" ], "X-Powered-By": [ "ASP.NET" @@ -9050,16 +11360,16 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "98" + "85" ], "x-ms-correlation-request-id": [ - "65f1bda4-f484-496f-9d6c-3911543a9360" + "7e59d52c-b621-4b5c-b2c8-a5e83c1c8657" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220225T010123Z:65f1bda4-f484-496f-9d6c-3911543a9360" + "WESTINDIA:20220517T081235Z:7e59d52c-b621-4b5c-b2c8-a5e83c1c8657" ], "Date": [ - "Fri, 25 Feb 2022 01:01:22 GMT" + "Tue, 17 May 2022 08:12:34 GMT" ], "Content-Length": [ "845" @@ -9071,23 +11381,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSV8c1d8dac/backupJobs/491e7aaf-bf79-4948-9381-0f0a49d241cf\",\r\n \"name\": \"491e7aaf-bf79-4948-9381-0f0a49d241cf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg8c1d8dac;pstestvm8c1d80\",\r\n \"duration\": \"PT1M51.5300342S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"VM Name\": \"PSTestVM8c1d80\",\r\n \"Number of Recovery Points\": \"1\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"PSTestVM8c1d80\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"DeleteBackupData\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-02-25T00:59:25.2300006Z\",\r\n \"endTime\": \"2022-02-25T01:01:16.7600348Z\",\r\n \"activityId\": \"0be4e453-9a7a-44d1-841c-ae1e2399aa0c\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.RecoveryServices/vaults/PSTestRSV93055a66/backupJobs/6168b15f-d3da-4b1e-84c5-fca5ac7df7e2\",\r\n \"name\": \"6168b15f-d3da-4b1e-84c5-fca5ac7df7e2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg93055a66;pstestvm930550\",\r\n \"duration\": \"PT1M52.0533406S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"VM Name\": \"PSTestVM930550\",\r\n \"Number of Recovery Points\": \"1\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"PSTestVM930550\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"DeleteBackupData\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-05-17T08:10:37.9320423Z\",\r\n \"endTime\": \"2022-05-17T08:12:29.9853829Z\",\r\n \"activityId\": \"01828bb4-6e6b-44d6-87c4-1ee93477d9d9\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG8c1d8dac/providers/Microsoft.RecoveryServices/vaults/PSTestRSV8c1d8dac?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOGMxZDhkYWMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y4YzFkOGRhYz9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG93055a66/providers/Microsoft.RecoveryServices/vaults/PSTestRSV93055a66?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTMwNTVhNjYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5MzA1NWE2Nj9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "39451317-5449-443e-9ae3-2ca075f9f418" + "5754a908-f920-4fb0-9063-7030953a81e5" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesClient/4.3.2.0" @@ -9104,10 +11414,10 @@ "nosniff" ], "x-ms-request-id": [ - "15d7e034-8812-4828-8697-11a90f112e45" + "c21987ab-a600-442f-a873-f20a64035eed" ], "x-ms-client-request-id": [ - "39451317-5449-443e-9ae3-2ca075f9f418" + "5754a908-f920-4fb0-9063-7030953a81e5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -9116,13 +11426,13 @@ "9" ], "x-ms-correlation-request-id": [ - "15d7e034-8812-4828-8697-11a90f112e45" + "c21987ab-a600-442f-a873-f20a64035eed" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220225T010136Z:15d7e034-8812-4828-8697-11a90f112e45" + "JIOINDIAWEST:20220517T081242Z:c21987ab-a600-442f-a873-f20a64035eed" ], "Date": [ - "Fri, 25 Feb 2022 01:01:35 GMT" + "Tue, 17 May 2022 08:12:41 GMT" ], "Expires": [ "-1" @@ -9135,22 +11445,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourcegroups/PSTestRG8c1d8dac?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlZ3JvdXBzL1BTVGVzdFJHOGMxZDhkYWM/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourcegroups/PSTestRG93055a66?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlZ3JvdXBzL1BTVGVzdFJHOTMwNTVhNjY/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "48b72f61-3f33-4639-832a-2818291e53ff" + "a2ede923-9d54-4389-9900-c0cd06bb4ec2" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" ] }, "ResponseHeaders": { @@ -9161,7 +11471,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzhDMUQ4REFDLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzkzMDU1QTY2LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -9170,13 +11480,13 @@ "14999" ], "x-ms-request-id": [ - "498ddebf-137a-4a09-bf3b-0087d75dd103" + "943955bd-0d85-4ee7-a450-343e70794d41" ], "x-ms-correlation-request-id": [ - "498ddebf-137a-4a09-bf3b-0087d75dd103" + "943955bd-0d85-4ee7-a450-343e70794d41" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220225T010143Z:498ddebf-137a-4a09-bf3b-0087d75dd103" + "JIOINDIAWEST:20220517T081245Z:943955bd-0d85-4ee7-a450-343e70794d41" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -9185,7 +11495,7 @@ "nosniff" ], "Date": [ - "Fri, 25 Feb 2022 01:01:43 GMT" + "Tue, 17 May 2022 08:12:44 GMT" ], "Expires": [ "-1" @@ -9198,16 +11508,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzhDMUQ4REFDLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemhETVVRNFJFRkRMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzkzMDU1QTY2LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemt6TURVMVFUWTJMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" ] }, "ResponseHeaders": { @@ -9218,22 +11528,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzhDMUQ4REFDLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzkzMDU1QTY2LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11997" ], "x-ms-request-id": [ - "e89102d8-9248-4b69-af9c-d55e976cd376" + "27ccbdb2-0ea1-4420-a4b2-52aa862a6304" ], "x-ms-correlation-request-id": [ - "e89102d8-9248-4b69-af9c-d55e976cd376" + "27ccbdb2-0ea1-4420-a4b2-52aa862a6304" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220225T010159Z:e89102d8-9248-4b69-af9c-d55e976cd376" + "JIOINDIAWEST:20220517T081300Z:27ccbdb2-0ea1-4420-a4b2-52aa862a6304" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -9242,7 +11552,7 @@ "nosniff" ], "Date": [ - "Fri, 25 Feb 2022 01:01:58 GMT" + "Tue, 17 May 2022 08:12:59 GMT" ], "Expires": [ "-1" @@ -9255,16 +11565,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzhDMUQ4REFDLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemhETVVRNFJFRkRMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzkzMDU1QTY2LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemt6TURVMVFUWTJMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" ] }, "ResponseHeaders": { @@ -9275,22 +11585,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzhDMUQ4REFDLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzkzMDU1QTY2LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11996" ], "x-ms-request-id": [ - "fdddc682-25ab-4a43-b436-558c65c19b7e" + "026abf54-5734-4db9-93c8-4afd11543260" ], "x-ms-correlation-request-id": [ - "fdddc682-25ab-4a43-b436-558c65c19b7e" + "026abf54-5734-4db9-93c8-4afd11543260" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220225T010214Z:fdddc682-25ab-4a43-b436-558c65c19b7e" + "JIOINDIAWEST:20220517T081315Z:026abf54-5734-4db9-93c8-4afd11543260" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -9299,7 +11609,7 @@ "nosniff" ], "Date": [ - "Fri, 25 Feb 2022 01:02:14 GMT" + "Tue, 17 May 2022 08:13:15 GMT" ], "Expires": [ "-1" @@ -9312,16 +11622,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzhDMUQ4REFDLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemhETVVRNFJFRkRMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzkzMDU1QTY2LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemt6TURVMVFUWTJMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" ] }, "ResponseHeaders": { @@ -9332,22 +11642,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzhDMUQ4REFDLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzkzMDU1QTY2LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11995" ], "x-ms-request-id": [ - "d1cef46e-1301-499f-a3a7-43c922dbfa9e" + "571db175-7c23-4faf-bf46-bbc3d852e477" ], "x-ms-correlation-request-id": [ - "d1cef46e-1301-499f-a3a7-43c922dbfa9e" + "571db175-7c23-4faf-bf46-bbc3d852e477" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220225T010230Z:d1cef46e-1301-499f-a3a7-43c922dbfa9e" + "JIOINDIAWEST:20220517T081330Z:571db175-7c23-4faf-bf46-bbc3d852e477" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -9356,7 +11666,7 @@ "nosniff" ], "Date": [ - "Fri, 25 Feb 2022 01:02:29 GMT" + "Tue, 17 May 2022 08:13:30 GMT" ], "Expires": [ "-1" @@ -9369,16 +11679,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzhDMUQ4REFDLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemhETVVRNFJFRkRMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzkzMDU1QTY2LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemt6TURVMVFUWTJMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" ] }, "ResponseHeaders": { @@ -9389,22 +11699,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzhDMUQ4REFDLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzkzMDU1QTY2LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11994" ], "x-ms-request-id": [ - "4c01e425-a0f0-4d9a-aeb5-cecb83a2e3e7" + "6248f641-82a9-4a54-8e71-180bb27fb4af" ], "x-ms-correlation-request-id": [ - "4c01e425-a0f0-4d9a-aeb5-cecb83a2e3e7" + "6248f641-82a9-4a54-8e71-180bb27fb4af" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220225T010245Z:4c01e425-a0f0-4d9a-aeb5-cecb83a2e3e7" + "JIOINDIAWEST:20220517T081345Z:6248f641-82a9-4a54-8e71-180bb27fb4af" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -9413,7 +11723,7 @@ "nosniff" ], "Date": [ - "Fri, 25 Feb 2022 01:02:44 GMT" + "Tue, 17 May 2022 08:13:45 GMT" ], "Expires": [ "-1" @@ -9426,16 +11736,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzhDMUQ4REFDLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemhETVVRNFJFRkRMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzkzMDU1QTY2LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemt6TURVMVFUWTJMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" ] }, "ResponseHeaders": { @@ -9446,22 +11756,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzhDMUQ4REFDLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzkzMDU1QTY2LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11993" ], "x-ms-request-id": [ - "4ec9d5c5-f50a-4cbb-b4b8-3a0554d8e74a" + "ff13b72b-6c9b-40cb-ab58-e1068fd76e1b" ], "x-ms-correlation-request-id": [ - "4ec9d5c5-f50a-4cbb-b4b8-3a0554d8e74a" + "ff13b72b-6c9b-40cb-ab58-e1068fd76e1b" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220225T010301Z:4ec9d5c5-f50a-4cbb-b4b8-3a0554d8e74a" + "JIOINDIAWEST:20220517T081401Z:ff13b72b-6c9b-40cb-ab58-e1068fd76e1b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -9470,7 +11780,7 @@ "nosniff" ], "Date": [ - "Fri, 25 Feb 2022 01:03:00 GMT" + "Tue, 17 May 2022 08:14:00 GMT" ], "Expires": [ "-1" @@ -9483,16 +11793,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzhDMUQ4REFDLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemhETVVRNFJFRkRMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzkzMDU1QTY2LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemt6TURVMVFUWTJMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" ] }, "ResponseHeaders": { @@ -9503,22 +11813,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzhDMUQ4REFDLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzkzMDU1QTY2LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11992" ], "x-ms-request-id": [ - "ebb96607-f0e9-4dff-8177-dcc3e6e9f931" + "f501d13f-1ab6-47cb-a9a8-be446725b267" ], "x-ms-correlation-request-id": [ - "ebb96607-f0e9-4dff-8177-dcc3e6e9f931" + "f501d13f-1ab6-47cb-a9a8-be446725b267" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220225T010316Z:ebb96607-f0e9-4dff-8177-dcc3e6e9f931" + "JIOINDIAWEST:20220517T081416Z:f501d13f-1ab6-47cb-a9a8-be446725b267" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -9527,7 +11837,7 @@ "nosniff" ], "Date": [ - "Fri, 25 Feb 2022 01:03:16 GMT" + "Tue, 17 May 2022 08:14:15 GMT" ], "Expires": [ "-1" @@ -9540,16 +11850,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzhDMUQ4REFDLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemhETVVRNFJFRkRMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzkzMDU1QTY2LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemt6TURVMVFUWTJMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" ] }, "ResponseHeaders": { @@ -9560,22 +11870,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzhDMUQ4REFDLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzkzMDU1QTY2LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11991" ], "x-ms-request-id": [ - "e66e73ba-3b2c-42c4-a4a4-14270723edd3" + "310d39d5-a51a-47fa-82ed-3d719ff475fc" ], "x-ms-correlation-request-id": [ - "e66e73ba-3b2c-42c4-a4a4-14270723edd3" + "310d39d5-a51a-47fa-82ed-3d719ff475fc" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220225T010332Z:e66e73ba-3b2c-42c4-a4a4-14270723edd3" + "JIOINDIAWEST:20220517T081431Z:310d39d5-a51a-47fa-82ed-3d719ff475fc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -9584,7 +11894,7 @@ "nosniff" ], "Date": [ - "Fri, 25 Feb 2022 01:03:31 GMT" + "Tue, 17 May 2022 08:14:30 GMT" ], "Expires": [ "-1" @@ -9597,16 +11907,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzhDMUQ4REFDLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemhETVVRNFJFRkRMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzkzMDU1QTY2LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemt6TURVMVFUWTJMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" ] }, "ResponseHeaders": { @@ -9617,22 +11927,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzhDMUQ4REFDLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzkzMDU1QTY2LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11990" ], "x-ms-request-id": [ - "712edb30-75c9-4020-9abb-d8896d0edd54" + "85c838f3-8c5b-47fa-9040-bedfaa60dc2b" ], "x-ms-correlation-request-id": [ - "712edb30-75c9-4020-9abb-d8896d0edd54" + "85c838f3-8c5b-47fa-9040-bedfaa60dc2b" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220225T010347Z:712edb30-75c9-4020-9abb-d8896d0edd54" + "JIOINDIAWEST:20220517T081446Z:85c838f3-8c5b-47fa-9040-bedfaa60dc2b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -9641,7 +11951,7 @@ "nosniff" ], "Date": [ - "Fri, 25 Feb 2022 01:03:47 GMT" + "Tue, 17 May 2022 08:14:46 GMT" ], "Expires": [ "-1" @@ -9654,16 +11964,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzhDMUQ4REFDLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemhETVVRNFJFRkRMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzkzMDU1QTY2LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemt6TURVMVFUWTJMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" ] }, "ResponseHeaders": { @@ -9674,22 +11984,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzhDMUQ4REFDLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzkzMDU1QTY2LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11989" ], "x-ms-request-id": [ - "78089c25-c464-4cb7-830a-eb44fffea1f2" + "fb69b1c3-9d61-45aa-b64a-83229f654d02" ], "x-ms-correlation-request-id": [ - "78089c25-c464-4cb7-830a-eb44fffea1f2" + "fb69b1c3-9d61-45aa-b64a-83229f654d02" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220225T010402Z:78089c25-c464-4cb7-830a-eb44fffea1f2" + "JIOINDIAWEST:20220517T081502Z:fb69b1c3-9d61-45aa-b64a-83229f654d02" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -9698,7 +12008,7 @@ "nosniff" ], "Date": [ - "Fri, 25 Feb 2022 01:04:02 GMT" + "Tue, 17 May 2022 08:15:01 GMT" ], "Expires": [ "-1" @@ -9711,16 +12021,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzhDMUQ4REFDLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemhETVVRNFJFRkRMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzkzMDU1QTY2LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemt6TURVMVFUWTJMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" ] }, "ResponseHeaders": { @@ -9731,22 +12041,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzhDMUQ4REFDLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzkzMDU1QTY2LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11988" ], "x-ms-request-id": [ - "0e381b1a-cf5a-472d-8c5d-294f168e4b0b" + "ae1f78cd-110f-4ddb-a552-9d9a10ff21d0" ], "x-ms-correlation-request-id": [ - "0e381b1a-cf5a-472d-8c5d-294f168e4b0b" + "ae1f78cd-110f-4ddb-a552-9d9a10ff21d0" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220225T010418Z:0e381b1a-cf5a-472d-8c5d-294f168e4b0b" + "JIOINDIAWEST:20220517T081517Z:ae1f78cd-110f-4ddb-a552-9d9a10ff21d0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -9755,7 +12065,7 @@ "nosniff" ], "Date": [ - "Fri, 25 Feb 2022 01:04:17 GMT" + "Tue, 17 May 2022 08:15:16 GMT" ], "Expires": [ "-1" @@ -9768,16 +12078,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzhDMUQ4REFDLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemhETVVRNFJFRkRMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzkzMDU1QTY2LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemt6TURVMVFUWTJMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" ] }, "ResponseHeaders": { @@ -9788,22 +12098,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzhDMUQ4REFDLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzkzMDU1QTY2LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11987" ], "x-ms-request-id": [ - "1c735ae4-36f4-47be-a30e-508114024623" + "97664110-b883-4758-b4ba-1a69aacf6523" ], "x-ms-correlation-request-id": [ - "1c735ae4-36f4-47be-a30e-508114024623" + "97664110-b883-4758-b4ba-1a69aacf6523" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220225T010433Z:1c735ae4-36f4-47be-a30e-508114024623" + "JIOINDIAWEST:20220517T081532Z:97664110-b883-4758-b4ba-1a69aacf6523" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -9812,7 +12122,7 @@ "nosniff" ], "Date": [ - "Fri, 25 Feb 2022 01:04:33 GMT" + "Tue, 17 May 2022 08:15:31 GMT" ], "Expires": [ "-1" @@ -9825,16 +12135,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzhDMUQ4REFDLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemhETVVRNFJFRkRMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzkzMDU1QTY2LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemt6TURVMVFUWTJMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" ] }, "ResponseHeaders": { @@ -9845,22 +12155,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzhDMUQ4REFDLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzkzMDU1QTY2LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "11986" ], "x-ms-request-id": [ - "2ce68443-1223-4d87-9154-a53cc774288b" + "5743c5c5-b7b7-40a8-b719-960551e222e5" ], "x-ms-correlation-request-id": [ - "2ce68443-1223-4d87-9154-a53cc774288b" + "5743c5c5-b7b7-40a8-b719-960551e222e5" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220225T010449Z:2ce68443-1223-4d87-9154-a53cc774288b" + "JIOINDIAWEST:20220517T081547Z:5743c5c5-b7b7-40a8-b719-960551e222e5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -9869,7 +12179,7 @@ "nosniff" ], "Date": [ - "Fri, 25 Feb 2022 01:04:48 GMT" + "Tue, 17 May 2022 08:15:47 GMT" ], "Expires": [ "-1" @@ -9882,16 +12192,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzhDMUQ4REFDLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemhETVVRNFJFRkRMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzkzMDU1QTY2LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemt6TURVMVFUWTJMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" ] }, "ResponseHeaders": { @@ -9902,22 +12212,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzhDMUQ4REFDLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzkzMDU1QTY2LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "11985" ], "x-ms-request-id": [ - "98c598cd-987d-40d0-8033-cf18dcd67ddf" + "85f71159-9969-41d9-9349-24a4c667237d" ], "x-ms-correlation-request-id": [ - "98c598cd-987d-40d0-8033-cf18dcd67ddf" + "85f71159-9969-41d9-9349-24a4c667237d" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220225T010504Z:98c598cd-987d-40d0-8033-cf18dcd67ddf" + "JIOINDIAWEST:20220517T081603Z:85f71159-9969-41d9-9349-24a4c667237d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -9926,7 +12236,7 @@ "nosniff" ], "Date": [ - "Fri, 25 Feb 2022 01:05:04 GMT" + "Tue, 17 May 2022 08:16:02 GMT" ], "Expires": [ "-1" @@ -9939,16 +12249,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzhDMUQ4REFDLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemhETVVRNFJFRkRMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzkzMDU1QTY2LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemt6TURVMVFUWTJMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" ] }, "ResponseHeaders": { @@ -9959,22 +12269,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzhDMUQ4REFDLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzkzMDU1QTY2LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" + "11984" ], "x-ms-request-id": [ - "e6d7ef58-a2cb-422d-9187-7c4063044577" + "9fc27007-471e-4e6e-b836-148fd4da6ba6" ], "x-ms-correlation-request-id": [ - "e6d7ef58-a2cb-422d-9187-7c4063044577" + "9fc27007-471e-4e6e-b836-148fd4da6ba6" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220225T010520Z:e6d7ef58-a2cb-422d-9187-7c4063044577" + "JIOINDIAWEST:20220517T081618Z:9fc27007-471e-4e6e-b836-148fd4da6ba6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -9983,7 +12293,7 @@ "nosniff" ], "Date": [ - "Fri, 25 Feb 2022 01:05:19 GMT" + "Tue, 17 May 2022 08:16:17 GMT" ], "Expires": [ "-1" @@ -9996,16 +12306,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzhDMUQ4REFDLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemhETVVRNFJFRkRMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzkzMDU1QTY2LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemt6TURVMVFUWTJMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" ] }, "ResponseHeaders": { @@ -10016,22 +12326,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzhDMUQ4REFDLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzkzMDU1QTY2LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" + "11983" ], "x-ms-request-id": [ - "e787eba8-a0a8-402f-9cac-a243d257fcfd" + "64067c9a-22c7-4440-8e2b-5d247bb8d37e" ], "x-ms-correlation-request-id": [ - "e787eba8-a0a8-402f-9cac-a243d257fcfd" + "64067c9a-22c7-4440-8e2b-5d247bb8d37e" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220225T010535Z:e787eba8-a0a8-402f-9cac-a243d257fcfd" + "JIOINDIAWEST:20220517T081633Z:64067c9a-22c7-4440-8e2b-5d247bb8d37e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -10040,7 +12350,7 @@ "nosniff" ], "Date": [ - "Fri, 25 Feb 2022 01:05:35 GMT" + "Tue, 17 May 2022 08:16:32 GMT" ], "Expires": [ "-1" @@ -10053,16 +12363,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzhDMUQ4REFDLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemhETVVRNFJFRkRMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzkzMDU1QTY2LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemt6TURVMVFUWTJMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" ] }, "ResponseHeaders": { @@ -10072,17 +12382,74 @@ "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzkzMDU1QTY2LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11984" + "11982" + ], + "x-ms-request-id": [ + "d31e7f0e-1fb6-4fc2-80f6-273da00ab90d" + ], + "x-ms-correlation-request-id": [ + "d31e7f0e-1fb6-4fc2-80f6-273da00ab90d" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220517T081648Z:d31e7f0e-1fb6-4fc2-80f6-273da00ab90d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 17 May 2022 08:16:48 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzkzMDU1QTY2LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemt6TURVMVFUWTJMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11981" ], "x-ms-request-id": [ - "fa266d27-2762-48f8-b3d8-29740cc6926f" + "10510dee-4e5e-4c0b-b796-cf9cdd6a4317" ], "x-ms-correlation-request-id": [ - "fa266d27-2762-48f8-b3d8-29740cc6926f" + "10510dee-4e5e-4c0b-b796-cf9cdd6a4317" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220225T010551Z:fa266d27-2762-48f8-b3d8-29740cc6926f" + "JIOINDIAWEST:20220517T081703Z:10510dee-4e5e-4c0b-b796-cf9cdd6a4317" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -10091,7 +12458,7 @@ "nosniff" ], "Date": [ - "Fri, 25 Feb 2022 01:05:50 GMT" + "Tue, 17 May 2022 08:17:03 GMT" ], "Expires": [ "-1" @@ -10104,16 +12471,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzhDMUQ4REFDLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemhETVVRNFJFRkRMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzkzMDU1QTY2LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemt6TURVMVFUWTJMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" ] }, "ResponseHeaders": { @@ -10124,16 +12491,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11983" + "11980" ], "x-ms-request-id": [ - "b9b0d279-a2d2-4bc9-a3c2-9d3c174b6e47" + "96d00e81-9f9d-4326-9a1b-fe733921013b" ], "x-ms-correlation-request-id": [ - "b9b0d279-a2d2-4bc9-a3c2-9d3c174b6e47" + "96d00e81-9f9d-4326-9a1b-fe733921013b" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220225T010551Z:b9b0d279-a2d2-4bc9-a3c2-9d3c174b6e47" + "JIOINDIAWEST:20220517T081704Z:96d00e81-9f9d-4326-9a1b-fe733921013b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -10142,7 +12509,7 @@ "nosniff" ], "Date": [ - "Fri, 25 Feb 2022 01:05:51 GMT" + "Tue, 17 May 2022 08:17:03 GMT" ], "Expires": [ "-1" @@ -10157,9 +12524,9 @@ ], "Names": {}, "Variables": { - "SubscriptionId": "e37510d7-33b6-4676-886f-ee75bcc01871", - "NamingSuffix": "8c1d8dac-e990-4d87-91b3-9274bc738ba7", - "BackupStartTime1": "2122-02-25 00:58:50Z", - "BackupStartTime2": "02/04/2022 19:58:50" + "SubscriptionId": "da364f0f-307b-41c9-9d47-b7413ec45535", + "NamingSuffix": "93055a66-4adc-4e59-b235-7a6427a7daae", + "BackupStartTime1": "2122-05-17 08:10:34Z", + "BackupStartTime2": "04/27/2022 13:40:34" } } \ No newline at end of file diff --git a/src/RecoveryServices/RecoveryServices.Backup.Test/SessionRecords/Microsoft.Azure.Commands.RecoveryServices.Backup.Test.ScenarioTests.ItemTests/TestAzureVMMUA.json b/src/RecoveryServices/RecoveryServices.Backup.Test/SessionRecords/Microsoft.Azure.Commands.RecoveryServices.Backup.Test.ScenarioTests.ItemTests/TestAzureVMMUA.json new file mode 100644 index 000000000000..b108fd6e37fe --- /dev/null +++ b/src/RecoveryServices/RecoveryServices.Backup.Test/SessionRecords/Microsoft.Azure.Commands.RecoveryServices.Backup.Test.ScenarioTests.ItemTests/TestAzureVMMUA.json @@ -0,0 +1,19064 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0P2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "28fd25b3-c9bf-4e76-b526-17bbeabe71c2" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesClient/4.3.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "30446bff-70e4-4b1e-94fb-65d4f3881dae" + ], + "x-ms-client-request-id": [ + "28fd25b3-c9bf-4e76-b526-17bbeabe71c2" + ], + "Server": [ + "Kestrel" + ], + "x-ms-correlation-request-id": [ + "30446bff-70e4-4b1e-94fb-65d4f3881dae" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082329Z:30446bff-70e4-4b1e-94fb-65d4f3881dae" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Mon, 16 May 2022 08:23:29 GMT" + ], + "Content-Length": [ + "602" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"location\": \"centraluseuap\",\r\n \"name\": \"mua-pstest-vault\",\r\n \"etag\": \"W/\\\"datetime'2022-05-16T01%3A32%3A29.2919252Z'\\\"\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\",\r\n \"Owner\": \"hiaga\",\r\n \"Purpose\": \"testing\",\r\n \"DeleteBy\": \"05-2025\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateEndpointStateForBackup\": \"None\",\r\n \"privateEndpointStateForSiteRecovery\": \"None\",\r\n \"networkSettings\": {\r\n \"publicNetworkAccess\": \"Enabled\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"RS0\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupPolicies/DefaultPolicy?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cFBvbGljaWVzL0RlZmF1bHRQb2xpY3k/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7dab89a1-93ff-4879-bbc4-d4b132ce3f56" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "350b3d3d-3fba-41ad-b09c-408c8d93b3f9" + ], + "x-ms-client-request-id": [ + "7dab89a1-93ff-4879-bbc4-d4b132ce3f56" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "299" + ], + "x-ms-correlation-request-id": [ + "350b3d3d-3fba-41ad-b09c-408c8d93b3f9" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082333Z:350b3d3d-3fba-41ad-b09c-408c8d93b3f9" + ], + "Date": [ + "Mon, 16 May 2022 08:23:33 GMT" + ], + "Content-Length": [ + "718" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/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 \"2022-05-16T20: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 \"2022-05-16T20: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/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupPolicies/DefaultPolicy?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cFBvbGljaWVzL0RlZmF1bHRQb2xpY3k/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8b1dc53e-ce12-4aa9-8aea-d596187701b4" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "ad11321f-bdfc-4899-b423-fc369104638c" + ], + "x-ms-client-request-id": [ + "8b1dc53e-ce12-4aa9-8aea-d596187701b4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "293" + ], + "x-ms-correlation-request-id": [ + "ad11321f-bdfc-4899-b423-fc369104638c" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082418Z:ad11321f-bdfc-4899-b423-fc369104638c" + ], + "Date": [ + "Mon, 16 May 2022 08:24:17 GMT" + ], + "Content-Length": [ + "718" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/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 \"2022-05-16T20: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 \"2022-05-16T20: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\": 1\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupPolicies/DefaultPolicy?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cFBvbGljaWVzL0RlZmF1bHRQb2xpY3k/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a4ff7252-ca5c-46d6-bc6b-d113817ad7d5" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "87524785-daf2-464f-80bc-485d23e2b219" + ], + "x-ms-client-request-id": [ + "a4ff7252-ca5c-46d6-bc6b-d113817ad7d5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "291" + ], + "x-ms-correlation-request-id": [ + "87524785-daf2-464f-80bc-485d23e2b219" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082435Z:87524785-daf2-464f-80bc-485d23e2b219" + ], + "Date": [ + "Mon, 16 May 2022 08:24:35 GMT" + ], + "Content-Length": [ + "718" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/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 \"2022-05-16T20: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 \"2022-05-16T20: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/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupPolicies/DefaultPolicy?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cFBvbGljaWVzL0RlZmF1bHRQb2xpY3k/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "84d1d34e-407a-4f50-b55b-12c944e3f31f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "3997a1d9-16ad-4873-bec8-da88578d6236" + ], + "x-ms-client-request-id": [ + "84d1d34e-407a-4f50-b55b-12c944e3f31f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "289" + ], + "x-ms-correlation-request-id": [ + "3997a1d9-16ad-4873-bec8-da88578d6236" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082437Z:3997a1d9-16ad-4873-bec8-da88578d6236" + ], + "Date": [ + "Mon, 16 May 2022 08:24:37 GMT" + ], + "Content-Length": [ + "718" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/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 \"2022-05-16T20: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 \"2022-05-16T20: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/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupProtectableItems?$filter=backupManagementType%20eq%20'AzureIaasVM'&api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cFByb3RlY3RhYmxlSXRlbXM/JGZpbHRlcj1iYWNrdXBNYW5hZ2VtZW50VHlwZSUyMGVxJTIwJ0F6dXJlSWFhc1ZNJyZhcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "88d3ab38-3818-4700-8bf9-ccab9ca784bf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "9ce24dad-720d-46df-a6bd-b07ba5118755" + ], + "x-ms-client-request-id": [ + "88d3ab38-3818-4700-8bf9-ccab9ca784bf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "299" + ], + "x-ms-correlation-request-id": [ + "9ce24dad-720d-46df-a6bd-b07ba5118755" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082334Z:9ce24dad-720d-46df-a6bd-b07ba5118755" + ], + "Date": [ + "Mon, 16 May 2022 08:23:34 GMT" + ], + "Content-Length": [ + "9965" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest-rg-donotuse;clitest-sql-donotuse/protectableItems/vm;iaasvmcontainerv2;clitest-rg-donotuse;clitest-sql-donotuse\",\r\n \"name\": \"iaasvmcontainerv2;clitest-rg-donotuse;clitest-sql-donotuse\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems\",\r\n \"properties\": {\r\n \"virtualMachineId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest-rg-donotuse/providers/Microsoft.Compute/virtualMachines/clitest-sql-donotuse\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"resourceGroup\": \"clitest-rg-donotuse\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"protectableItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"friendlyName\": \"clitest-sql-donotuse\",\r\n \"protectionState\": \"NotProtected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;hiagarg;hiaganewvm1/protectableItems/vm;iaasvmcontainerv2;hiagarg;hiaganewvm1\",\r\n \"name\": \"iaasvmcontainerv2;hiagarg;hiaganewvm1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems\",\r\n \"properties\": {\r\n \"virtualMachineId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.Compute/virtualMachines/hiagaNewVm1\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"resourceGroup\": \"hiagarg\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"protectableItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"friendlyName\": \"hiagaNewVm1\",\r\n \"protectionState\": \"NotProtected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;hiagarg;hiaganewvm2/protectableItems/vm;iaasvmcontainerv2;hiagarg;hiaganewvm2\",\r\n \"name\": \"iaasvmcontainerv2;hiagarg;hiaganewvm2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems\",\r\n \"properties\": {\r\n \"virtualMachineId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.Compute/virtualMachines/hiaganewVM2\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"resourceGroup\": \"hiagarg\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"protectableItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"friendlyName\": \"hiaganewVM2\",\r\n \"protectionState\": \"NotProtected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;iaasvm-clitest-rg;iaasvm-clitest-vm2/protectableItems/vm;iaasvmcontainerv2;iaasvm-clitest-rg;iaasvm-clitest-vm2\",\r\n \"name\": \"iaasvmcontainerv2;iaasvm-clitest-rg;iaasvm-clitest-vm2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems\",\r\n \"properties\": {\r\n \"virtualMachineId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm-clitest-rg/providers/Microsoft.Compute/virtualMachines/iaasvm-clitest-vm2\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"resourceGroup\": \"iaasvm-clitest-rg\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"protectableItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"friendlyName\": \"iaasvm-clitest-vm2\",\r\n \"protectionState\": \"NotProtected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;iaasvmsqlworkload.existing.crr;iaassqlext-crr-win/protectableItems/vm;iaasvmcontainerv2;iaasvmsqlworkload.existing.crr;iaassqlext-crr-win\",\r\n \"name\": \"iaasvmcontainerv2;iaasvmsqlworkload.existing.crr;iaassqlext-crr-win\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems\",\r\n \"properties\": {\r\n \"virtualMachineId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvmsqlworkload.existing.crr/providers/Microsoft.Compute/virtualMachines/iaassqlext-crr-win\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"resourceGroup\": \"iaasvmsqlworkload.existing.crr\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"protectableItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"friendlyName\": \"iaassqlext-crr-win\",\r\n \"protectionState\": \"NotProtected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;saphana-clitest-rg;saphana-clitestvm-donotuse/protectableItems/vm;iaasvmcontainerv2;saphana-clitest-rg;saphana-clitestvm-donotuse\",\r\n \"name\": \"iaasvmcontainerv2;saphana-clitest-rg;saphana-clitestvm-donotuse\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems\",\r\n \"properties\": {\r\n \"virtualMachineId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/saphana-clitest-rg/providers/Microsoft.Compute/virtualMachines/saphana-clitestvm-donotuse\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"resourceGroup\": \"saphana-clitest-rg\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"protectableItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"friendlyName\": \"saphana-clitestvm-donotuse\",\r\n \"protectionState\": \"NotProtected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;sarath-rg;sarath-encrypted-ccyvm-6/protectableItems/vm;iaasvmcontainerv2;sarath-rg;sarath-encrypted-ccyvm-6\",\r\n \"name\": \"iaasvmcontainerv2;sarath-rg;sarath-encrypted-ccyvm-6\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems\",\r\n \"properties\": {\r\n \"virtualMachineId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/sarath-rg/providers/Microsoft.Compute/virtualMachines/sarath-encrypted-ccyvm-6\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"resourceGroup\": \"sarath-rg\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"protectableItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"friendlyName\": \"sarath-encrypted-ccyvm-6\",\r\n \"protectionState\": \"NotProtected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;sql-clicloudtest-rg;sql-clicloudtest-vm/protectableItems/vm;iaasvmcontainerv2;sql-clicloudtest-rg;sql-clicloudtest-vm\",\r\n \"name\": \"iaasvmcontainerv2;sql-clicloudtest-rg;sql-clicloudtest-vm\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems\",\r\n \"properties\": {\r\n \"virtualMachineId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/sql-clicloudtest-rg/providers/Microsoft.Compute/virtualMachines/sql-clicloudtest-vm\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"resourceGroup\": \"sql-clicloudtest-rg\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"protectableItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"friendlyName\": \"sql-clicloudtest-vm\",\r\n \"protectionState\": \"NotProtected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;sql-clicloudtest-rg;sql-clicloudtest-vm2/protectableItems/vm;iaasvmcontainerv2;sql-clicloudtest-rg;sql-clicloudtest-vm2\",\r\n \"name\": \"iaasvmcontainerv2;sql-clicloudtest-rg;sql-clicloudtest-vm2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems\",\r\n \"properties\": {\r\n \"virtualMachineId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/sql-clicloudtest-rg/providers/Microsoft.Compute/virtualMachines/sql-clicloudtest-vm2\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"resourceGroup\": \"sql-clicloudtest-rg\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"protectableItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"friendlyName\": \"sql-clicloudtest-vm2\",\r\n \"protectionState\": \"NotProtected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;sql-clitest-rg;sql-clitest-vm/protectableItems/vm;iaasvmcontainerv2;sql-clitest-rg;sql-clitest-vm\",\r\n \"name\": \"iaasvmcontainerv2;sql-clitest-rg;sql-clitest-vm\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems\",\r\n \"properties\": {\r\n \"virtualMachineId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/sql-clitest-rg/providers/Microsoft.Compute/virtualMachines/sql-clitest-vm\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"resourceGroup\": \"sql-clitest-rg\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"protectableItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"friendlyName\": \"sql-clitest-vm\",\r\n \"protectionState\": \"NotProtected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;sql-clitest-rg;sql-clitestvm-donotuse/protectableItems/vm;iaasvmcontainerv2;sql-clitest-rg;sql-clitestvm-donotuse\",\r\n \"name\": \"iaasvmcontainerv2;sql-clitest-rg;sql-clitestvm-donotuse\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems\",\r\n \"properties\": {\r\n \"virtualMachineId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/sql-clitest-rg/providers/Microsoft.Compute/virtualMachines/sql-clitestvm-donotuse\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"resourceGroup\": \"sql-clitest-rg\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"protectableItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"friendlyName\": \"sql-clitestvm-donotuse\",\r\n \"protectionState\": \"NotProtected\"\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupFabrics/Azure/protectionContainers/IaasVMContainer%3Biaasvmcontainerv2%3Bhiagarg%3Bhiaganewvm2/protectedItems/vm%3Biaasvmcontainerv2%3Bhiagarg%3Bhiaganewvm2?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cEZhYnJpY3MvQXp1cmUvcHJvdGVjdGlvbkNvbnRhaW5lcnMvSWFhc1ZNQ29udGFpbmVyJTNCaWFhc3ZtY29udGFpbmVydjIlM0JoaWFnYXJnJTNCaGlhZ2FuZXd2bTIvcHJvdGVjdGVkSXRlbXMvdm0lM0JpYWFzdm1jb250YWluZXJ2MiUzQmhpYWdhcmclM0JoaWFnYW5ld3ZtMj9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"protectedItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"sourceResourceId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.Compute/virtualMachines/hiaganewVM2\",\r\n \"policyId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupPolicies/DefaultPolicy\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "88d3ab38-3818-4700-8bf9-ccab9ca784bf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "434" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;hiagarg;hiaganewvm2/protectedItems/vm;iaasvmcontainerv2;hiagarg;hiaganewvm2/operationResults/996a1e10-616e-478e-93e0-15f433341d0b?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;hiagarg;hiaganewvm2/protectedItems/vm;iaasvmcontainerv2;hiagarg;hiaganewvm2/operationsStatus/996a1e10-616e-478e-93e0-15f433341d0b?api-version=2022-02-01" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "eb4210ea-ea9c-4fe1-af93-bf8dab754cfe" + ], + "x-ms-client-request-id": [ + "88d3ab38-3818-4700-8bf9-ccab9ca784bf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "eb4210ea-ea9c-4fe1-af93-bf8dab754cfe" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082335Z:eb4210ea-ea9c-4fe1-af93-bf8dab754cfe" + ], + "Date": [ + "Mon, 16 May 2022 08:23:35 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupOperations/996a1e10-616e-478e-93e0-15f433341d0b?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvOTk2YTFlMTAtNjE2ZS00NzhlLTkzZTAtMTVmNDMzMzQxZDBiP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "88d3ab38-3818-4700-8bf9-ccab9ca784bf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "578ea7f5-b37a-4055-8dc3-2eb6a043a5b0" + ], + "x-ms-client-request-id": [ + "88d3ab38-3818-4700-8bf9-ccab9ca784bf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "299" + ], + "x-ms-correlation-request-id": [ + "578ea7f5-b37a-4055-8dc3-2eb6a043a5b0" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082336Z:578ea7f5-b37a-4055-8dc3-2eb6a043a5b0" + ], + "Date": [ + "Mon, 16 May 2022 08:23:36 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"996a1e10-616e-478e-93e0-15f433341d0b\",\r\n \"name\": \"996a1e10-616e-478e-93e0-15f433341d0b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T08:23:35.2615261Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupOperations/996a1e10-616e-478e-93e0-15f433341d0b?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvOTk2YTFlMTAtNjE2ZS00NzhlLTkzZTAtMTVmNDMzMzQxZDBiP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "88d3ab38-3818-4700-8bf9-ccab9ca784bf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "a8443470-c2db-4848-9494-4a053499775e" + ], + "x-ms-client-request-id": [ + "88d3ab38-3818-4700-8bf9-ccab9ca784bf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "298" + ], + "x-ms-correlation-request-id": [ + "a8443470-c2db-4848-9494-4a053499775e" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082338Z:a8443470-c2db-4848-9494-4a053499775e" + ], + "Date": [ + "Mon, 16 May 2022 08:23:37 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"996a1e10-616e-478e-93e0-15f433341d0b\",\r\n \"name\": \"996a1e10-616e-478e-93e0-15f433341d0b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T08:23:35.2615261Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupOperations/996a1e10-616e-478e-93e0-15f433341d0b?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvOTk2YTFlMTAtNjE2ZS00NzhlLTkzZTAtMTVmNDMzMzQxZDBiP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "88d3ab38-3818-4700-8bf9-ccab9ca784bf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "6f492a7c-e4c9-40fa-9699-64dcd01e41a9" + ], + "x-ms-client-request-id": [ + "88d3ab38-3818-4700-8bf9-ccab9ca784bf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "297" + ], + "x-ms-correlation-request-id": [ + "6f492a7c-e4c9-40fa-9699-64dcd01e41a9" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082338Z:6f492a7c-e4c9-40fa-9699-64dcd01e41a9" + ], + "Date": [ + "Mon, 16 May 2022 08:23:38 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"996a1e10-616e-478e-93e0-15f433341d0b\",\r\n \"name\": \"996a1e10-616e-478e-93e0-15f433341d0b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T08:23:35.2615261Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupOperations/996a1e10-616e-478e-93e0-15f433341d0b?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvOTk2YTFlMTAtNjE2ZS00NzhlLTkzZTAtMTVmNDMzMzQxZDBiP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "88d3ab38-3818-4700-8bf9-ccab9ca784bf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "1144504f-99ac-4166-af80-3254fa1704f0" + ], + "x-ms-client-request-id": [ + "88d3ab38-3818-4700-8bf9-ccab9ca784bf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "296" + ], + "x-ms-correlation-request-id": [ + "1144504f-99ac-4166-af80-3254fa1704f0" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082340Z:1144504f-99ac-4166-af80-3254fa1704f0" + ], + "Date": [ + "Mon, 16 May 2022 08:23:40 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"996a1e10-616e-478e-93e0-15f433341d0b\",\r\n \"name\": \"996a1e10-616e-478e-93e0-15f433341d0b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T08:23:35.2615261Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupOperations/996a1e10-616e-478e-93e0-15f433341d0b?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvOTk2YTFlMTAtNjE2ZS00NzhlLTkzZTAtMTVmNDMzMzQxZDBiP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "88d3ab38-3818-4700-8bf9-ccab9ca784bf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "431eae65-4fb1-4b43-8ed4-6bc54baa4431" + ], + "x-ms-client-request-id": [ + "88d3ab38-3818-4700-8bf9-ccab9ca784bf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "295" + ], + "x-ms-correlation-request-id": [ + "431eae65-4fb1-4b43-8ed4-6bc54baa4431" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082341Z:431eae65-4fb1-4b43-8ed4-6bc54baa4431" + ], + "Date": [ + "Mon, 16 May 2022 08:23:41 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"996a1e10-616e-478e-93e0-15f433341d0b\",\r\n \"name\": \"996a1e10-616e-478e-93e0-15f433341d0b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T08:23:35.2615261Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupOperations/996a1e10-616e-478e-93e0-15f433341d0b?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvOTk2YTFlMTAtNjE2ZS00NzhlLTkzZTAtMTVmNDMzMzQxZDBiP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "88d3ab38-3818-4700-8bf9-ccab9ca784bf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "6f2b2024-0ee8-4df8-8e01-d4273618742f" + ], + "x-ms-client-request-id": [ + "88d3ab38-3818-4700-8bf9-ccab9ca784bf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "294" + ], + "x-ms-correlation-request-id": [ + "6f2b2024-0ee8-4df8-8e01-d4273618742f" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082342Z:6f2b2024-0ee8-4df8-8e01-d4273618742f" + ], + "Date": [ + "Mon, 16 May 2022 08:23:41 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"996a1e10-616e-478e-93e0-15f433341d0b\",\r\n \"name\": \"996a1e10-616e-478e-93e0-15f433341d0b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T08:23:35.2615261Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupOperations/996a1e10-616e-478e-93e0-15f433341d0b?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvOTk2YTFlMTAtNjE2ZS00NzhlLTkzZTAtMTVmNDMzMzQxZDBiP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "88d3ab38-3818-4700-8bf9-ccab9ca784bf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "ab201823-a0af-4c80-83a8-c0a4809ff817" + ], + "x-ms-client-request-id": [ + "88d3ab38-3818-4700-8bf9-ccab9ca784bf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "293" + ], + "x-ms-correlation-request-id": [ + "ab201823-a0af-4c80-83a8-c0a4809ff817" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082342Z:ab201823-a0af-4c80-83a8-c0a4809ff817" + ], + "Date": [ + "Mon, 16 May 2022 08:23:42 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"996a1e10-616e-478e-93e0-15f433341d0b\",\r\n \"name\": \"996a1e10-616e-478e-93e0-15f433341d0b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T08:23:35.2615261Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupOperations/996a1e10-616e-478e-93e0-15f433341d0b?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvOTk2YTFlMTAtNjE2ZS00NzhlLTkzZTAtMTVmNDMzMzQxZDBiP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "88d3ab38-3818-4700-8bf9-ccab9ca784bf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "1fb15895-9137-4c13-b2a2-007a4a427967" + ], + "x-ms-client-request-id": [ + "88d3ab38-3818-4700-8bf9-ccab9ca784bf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "292" + ], + "x-ms-correlation-request-id": [ + "1fb15895-9137-4c13-b2a2-007a4a427967" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082343Z:1fb15895-9137-4c13-b2a2-007a4a427967" + ], + "Date": [ + "Mon, 16 May 2022 08:23:43 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"996a1e10-616e-478e-93e0-15f433341d0b\",\r\n \"name\": \"996a1e10-616e-478e-93e0-15f433341d0b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T08:23:35.2615261Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupOperations/996a1e10-616e-478e-93e0-15f433341d0b?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvOTk2YTFlMTAtNjE2ZS00NzhlLTkzZTAtMTVmNDMzMzQxZDBiP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "88d3ab38-3818-4700-8bf9-ccab9ca784bf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "40219201-a928-4871-baf7-f51e721dfaf4" + ], + "x-ms-client-request-id": [ + "88d3ab38-3818-4700-8bf9-ccab9ca784bf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "291" + ], + "x-ms-correlation-request-id": [ + "40219201-a928-4871-baf7-f51e721dfaf4" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082344Z:40219201-a928-4871-baf7-f51e721dfaf4" + ], + "Date": [ + "Mon, 16 May 2022 08:23:43 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"996a1e10-616e-478e-93e0-15f433341d0b\",\r\n \"name\": \"996a1e10-616e-478e-93e0-15f433341d0b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T08:23:35.2615261Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupOperations/996a1e10-616e-478e-93e0-15f433341d0b?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvOTk2YTFlMTAtNjE2ZS00NzhlLTkzZTAtMTVmNDMzMzQxZDBiP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "88d3ab38-3818-4700-8bf9-ccab9ca784bf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "58f0e300-59a9-4a43-9210-bada950565ae" + ], + "x-ms-client-request-id": [ + "88d3ab38-3818-4700-8bf9-ccab9ca784bf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "290" + ], + "x-ms-correlation-request-id": [ + "58f0e300-59a9-4a43-9210-bada950565ae" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082344Z:58f0e300-59a9-4a43-9210-bada950565ae" + ], + "Date": [ + "Mon, 16 May 2022 08:23:44 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"996a1e10-616e-478e-93e0-15f433341d0b\",\r\n \"name\": \"996a1e10-616e-478e-93e0-15f433341d0b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T08:23:35.2615261Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupOperations/996a1e10-616e-478e-93e0-15f433341d0b?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvOTk2YTFlMTAtNjE2ZS00NzhlLTkzZTAtMTVmNDMzMzQxZDBiP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "88d3ab38-3818-4700-8bf9-ccab9ca784bf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "31f10237-1948-4386-addb-5c6a1b2feedb" + ], + "x-ms-client-request-id": [ + "88d3ab38-3818-4700-8bf9-ccab9ca784bf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "289" + ], + "x-ms-correlation-request-id": [ + "31f10237-1948-4386-addb-5c6a1b2feedb" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082345Z:31f10237-1948-4386-addb-5c6a1b2feedb" + ], + "Date": [ + "Mon, 16 May 2022 08:23:45 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"996a1e10-616e-478e-93e0-15f433341d0b\",\r\n \"name\": \"996a1e10-616e-478e-93e0-15f433341d0b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T08:23:35.2615261Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupOperations/996a1e10-616e-478e-93e0-15f433341d0b?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvOTk2YTFlMTAtNjE2ZS00NzhlLTkzZTAtMTVmNDMzMzQxZDBiP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "88d3ab38-3818-4700-8bf9-ccab9ca784bf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "5c4355cf-b604-4003-8431-aade93cc7fc1" + ], + "x-ms-client-request-id": [ + "88d3ab38-3818-4700-8bf9-ccab9ca784bf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "288" + ], + "x-ms-correlation-request-id": [ + "5c4355cf-b604-4003-8431-aade93cc7fc1" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082346Z:5c4355cf-b604-4003-8431-aade93cc7fc1" + ], + "Date": [ + "Mon, 16 May 2022 08:23:46 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"996a1e10-616e-478e-93e0-15f433341d0b\",\r\n \"name\": \"996a1e10-616e-478e-93e0-15f433341d0b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T08:23:35.2615261Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupOperations/996a1e10-616e-478e-93e0-15f433341d0b?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvOTk2YTFlMTAtNjE2ZS00NzhlLTkzZTAtMTVmNDMzMzQxZDBiP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "88d3ab38-3818-4700-8bf9-ccab9ca784bf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "7149560b-df4a-4d4d-a58f-c12293c8d783" + ], + "x-ms-client-request-id": [ + "88d3ab38-3818-4700-8bf9-ccab9ca784bf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "287" + ], + "x-ms-correlation-request-id": [ + "7149560b-df4a-4d4d-a58f-c12293c8d783" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082347Z:7149560b-df4a-4d4d-a58f-c12293c8d783" + ], + "Date": [ + "Mon, 16 May 2022 08:23:46 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"996a1e10-616e-478e-93e0-15f433341d0b\",\r\n \"name\": \"996a1e10-616e-478e-93e0-15f433341d0b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T08:23:35.2615261Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupOperations/996a1e10-616e-478e-93e0-15f433341d0b?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvOTk2YTFlMTAtNjE2ZS00NzhlLTkzZTAtMTVmNDMzMzQxZDBiP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "88d3ab38-3818-4700-8bf9-ccab9ca784bf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "69396832-7623-4d28-899c-819a3bafd594" + ], + "x-ms-client-request-id": [ + "88d3ab38-3818-4700-8bf9-ccab9ca784bf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "286" + ], + "x-ms-correlation-request-id": [ + "69396832-7623-4d28-899c-819a3bafd594" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082347Z:69396832-7623-4d28-899c-819a3bafd594" + ], + "Date": [ + "Mon, 16 May 2022 08:23:47 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"996a1e10-616e-478e-93e0-15f433341d0b\",\r\n \"name\": \"996a1e10-616e-478e-93e0-15f433341d0b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T08:23:35.2615261Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupOperations/996a1e10-616e-478e-93e0-15f433341d0b?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvOTk2YTFlMTAtNjE2ZS00NzhlLTkzZTAtMTVmNDMzMzQxZDBiP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "88d3ab38-3818-4700-8bf9-ccab9ca784bf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "f65c53c9-5de7-42d2-a231-5f4a91c92c89" + ], + "x-ms-client-request-id": [ + "88d3ab38-3818-4700-8bf9-ccab9ca784bf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "285" + ], + "x-ms-correlation-request-id": [ + "f65c53c9-5de7-42d2-a231-5f4a91c92c89" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082348Z:f65c53c9-5de7-42d2-a231-5f4a91c92c89" + ], + "Date": [ + "Mon, 16 May 2022 08:23:48 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"996a1e10-616e-478e-93e0-15f433341d0b\",\r\n \"name\": \"996a1e10-616e-478e-93e0-15f433341d0b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T08:23:35.2615261Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupOperations/996a1e10-616e-478e-93e0-15f433341d0b?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvOTk2YTFlMTAtNjE2ZS00NzhlLTkzZTAtMTVmNDMzMzQxZDBiP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "88d3ab38-3818-4700-8bf9-ccab9ca784bf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "610ac28e-25fd-492b-9710-8d0fb46cdbd7" + ], + "x-ms-client-request-id": [ + "88d3ab38-3818-4700-8bf9-ccab9ca784bf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "284" + ], + "x-ms-correlation-request-id": [ + "610ac28e-25fd-492b-9710-8d0fb46cdbd7" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082349Z:610ac28e-25fd-492b-9710-8d0fb46cdbd7" + ], + "Date": [ + "Mon, 16 May 2022 08:23:48 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"996a1e10-616e-478e-93e0-15f433341d0b\",\r\n \"name\": \"996a1e10-616e-478e-93e0-15f433341d0b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T08:23:35.2615261Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupOperations/996a1e10-616e-478e-93e0-15f433341d0b?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvOTk2YTFlMTAtNjE2ZS00NzhlLTkzZTAtMTVmNDMzMzQxZDBiP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "88d3ab38-3818-4700-8bf9-ccab9ca784bf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "8bf0419f-320a-4e24-9d0d-34a3cb24a482" + ], + "x-ms-client-request-id": [ + "88d3ab38-3818-4700-8bf9-ccab9ca784bf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "283" + ], + "x-ms-correlation-request-id": [ + "8bf0419f-320a-4e24-9d0d-34a3cb24a482" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082349Z:8bf0419f-320a-4e24-9d0d-34a3cb24a482" + ], + "Date": [ + "Mon, 16 May 2022 08:23:49 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"996a1e10-616e-478e-93e0-15f433341d0b\",\r\n \"name\": \"996a1e10-616e-478e-93e0-15f433341d0b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T08:23:35.2615261Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupOperations/996a1e10-616e-478e-93e0-15f433341d0b?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvOTk2YTFlMTAtNjE2ZS00NzhlLTkzZTAtMTVmNDMzMzQxZDBiP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "88d3ab38-3818-4700-8bf9-ccab9ca784bf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "0c6253b0-6061-405f-8e16-4ca3b4b8464c" + ], + "x-ms-client-request-id": [ + "88d3ab38-3818-4700-8bf9-ccab9ca784bf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "282" + ], + "x-ms-correlation-request-id": [ + "0c6253b0-6061-405f-8e16-4ca3b4b8464c" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082350Z:0c6253b0-6061-405f-8e16-4ca3b4b8464c" + ], + "Date": [ + "Mon, 16 May 2022 08:23:50 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"996a1e10-616e-478e-93e0-15f433341d0b\",\r\n \"name\": \"996a1e10-616e-478e-93e0-15f433341d0b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T08:23:35.2615261Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupOperations/996a1e10-616e-478e-93e0-15f433341d0b?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvOTk2YTFlMTAtNjE2ZS00NzhlLTkzZTAtMTVmNDMzMzQxZDBiP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "88d3ab38-3818-4700-8bf9-ccab9ca784bf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "05939754-2158-46df-aa43-266032ed852a" + ], + "x-ms-client-request-id": [ + "88d3ab38-3818-4700-8bf9-ccab9ca784bf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "281" + ], + "x-ms-correlation-request-id": [ + "05939754-2158-46df-aa43-266032ed852a" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082351Z:05939754-2158-46df-aa43-266032ed852a" + ], + "Date": [ + "Mon, 16 May 2022 08:23:50 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"996a1e10-616e-478e-93e0-15f433341d0b\",\r\n \"name\": \"996a1e10-616e-478e-93e0-15f433341d0b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T08:23:35.2615261Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupOperations/996a1e10-616e-478e-93e0-15f433341d0b?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvOTk2YTFlMTAtNjE2ZS00NzhlLTkzZTAtMTVmNDMzMzQxZDBiP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "88d3ab38-3818-4700-8bf9-ccab9ca784bf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "e8e159fe-4918-449f-83a5-fe1e7952142e" + ], + "x-ms-client-request-id": [ + "88d3ab38-3818-4700-8bf9-ccab9ca784bf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "280" + ], + "x-ms-correlation-request-id": [ + "e8e159fe-4918-449f-83a5-fe1e7952142e" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082351Z:e8e159fe-4918-449f-83a5-fe1e7952142e" + ], + "Date": [ + "Mon, 16 May 2022 08:23:51 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"996a1e10-616e-478e-93e0-15f433341d0b\",\r\n \"name\": \"996a1e10-616e-478e-93e0-15f433341d0b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T08:23:35.2615261Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupOperations/996a1e10-616e-478e-93e0-15f433341d0b?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvOTk2YTFlMTAtNjE2ZS00NzhlLTkzZTAtMTVmNDMzMzQxZDBiP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "88d3ab38-3818-4700-8bf9-ccab9ca784bf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "fc2fe567-9be8-4039-915c-4754da15e972" + ], + "x-ms-client-request-id": [ + "88d3ab38-3818-4700-8bf9-ccab9ca784bf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "279" + ], + "x-ms-correlation-request-id": [ + "fc2fe567-9be8-4039-915c-4754da15e972" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082352Z:fc2fe567-9be8-4039-915c-4754da15e972" + ], + "Date": [ + "Mon, 16 May 2022 08:23:52 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"996a1e10-616e-478e-93e0-15f433341d0b\",\r\n \"name\": \"996a1e10-616e-478e-93e0-15f433341d0b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T08:23:35.2615261Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupOperations/996a1e10-616e-478e-93e0-15f433341d0b?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvOTk2YTFlMTAtNjE2ZS00NzhlLTkzZTAtMTVmNDMzMzQxZDBiP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "88d3ab38-3818-4700-8bf9-ccab9ca784bf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "92b0938f-11c7-4edf-b405-d9bb26ec3a9a" + ], + "x-ms-client-request-id": [ + "88d3ab38-3818-4700-8bf9-ccab9ca784bf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "278" + ], + "x-ms-correlation-request-id": [ + "92b0938f-11c7-4edf-b405-d9bb26ec3a9a" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082353Z:92b0938f-11c7-4edf-b405-d9bb26ec3a9a" + ], + "Date": [ + "Mon, 16 May 2022 08:23:52 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"996a1e10-616e-478e-93e0-15f433341d0b\",\r\n \"name\": \"996a1e10-616e-478e-93e0-15f433341d0b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T08:23:35.2615261Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupOperations/996a1e10-616e-478e-93e0-15f433341d0b?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvOTk2YTFlMTAtNjE2ZS00NzhlLTkzZTAtMTVmNDMzMzQxZDBiP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "88d3ab38-3818-4700-8bf9-ccab9ca784bf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "54884a3f-0877-419f-af59-a3175f47a0a7" + ], + "x-ms-client-request-id": [ + "88d3ab38-3818-4700-8bf9-ccab9ca784bf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "277" + ], + "x-ms-correlation-request-id": [ + "54884a3f-0877-419f-af59-a3175f47a0a7" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082353Z:54884a3f-0877-419f-af59-a3175f47a0a7" + ], + "Date": [ + "Mon, 16 May 2022 08:23:53 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"996a1e10-616e-478e-93e0-15f433341d0b\",\r\n \"name\": \"996a1e10-616e-478e-93e0-15f433341d0b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T08:23:35.2615261Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupOperations/996a1e10-616e-478e-93e0-15f433341d0b?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvOTk2YTFlMTAtNjE2ZS00NzhlLTkzZTAtMTVmNDMzMzQxZDBiP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "88d3ab38-3818-4700-8bf9-ccab9ca784bf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "d79bc71d-e212-4b4f-9aac-6459264d3842" + ], + "x-ms-client-request-id": [ + "88d3ab38-3818-4700-8bf9-ccab9ca784bf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "276" + ], + "x-ms-correlation-request-id": [ + "d79bc71d-e212-4b4f-9aac-6459264d3842" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082354Z:d79bc71d-e212-4b4f-9aac-6459264d3842" + ], + "Date": [ + "Mon, 16 May 2022 08:23:54 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"996a1e10-616e-478e-93e0-15f433341d0b\",\r\n \"name\": \"996a1e10-616e-478e-93e0-15f433341d0b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T08:23:35.2615261Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupOperations/996a1e10-616e-478e-93e0-15f433341d0b?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvOTk2YTFlMTAtNjE2ZS00NzhlLTkzZTAtMTVmNDMzMzQxZDBiP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "88d3ab38-3818-4700-8bf9-ccab9ca784bf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "213b93dc-e62d-4b0e-aff1-75fdfbc8a571" + ], + "x-ms-client-request-id": [ + "88d3ab38-3818-4700-8bf9-ccab9ca784bf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "275" + ], + "x-ms-correlation-request-id": [ + "213b93dc-e62d-4b0e-aff1-75fdfbc8a571" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082355Z:213b93dc-e62d-4b0e-aff1-75fdfbc8a571" + ], + "Date": [ + "Mon, 16 May 2022 08:23:54 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"996a1e10-616e-478e-93e0-15f433341d0b\",\r\n \"name\": \"996a1e10-616e-478e-93e0-15f433341d0b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T08:23:35.2615261Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupOperations/996a1e10-616e-478e-93e0-15f433341d0b?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvOTk2YTFlMTAtNjE2ZS00NzhlLTkzZTAtMTVmNDMzMzQxZDBiP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "88d3ab38-3818-4700-8bf9-ccab9ca784bf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "33e9f4dd-05f5-4ce1-9a79-0d423bef2841" + ], + "x-ms-client-request-id": [ + "88d3ab38-3818-4700-8bf9-ccab9ca784bf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "274" + ], + "x-ms-correlation-request-id": [ + "33e9f4dd-05f5-4ce1-9a79-0d423bef2841" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082355Z:33e9f4dd-05f5-4ce1-9a79-0d423bef2841" + ], + "Date": [ + "Mon, 16 May 2022 08:23:55 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"996a1e10-616e-478e-93e0-15f433341d0b\",\r\n \"name\": \"996a1e10-616e-478e-93e0-15f433341d0b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T08:23:35.2615261Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupOperations/996a1e10-616e-478e-93e0-15f433341d0b?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvOTk2YTFlMTAtNjE2ZS00NzhlLTkzZTAtMTVmNDMzMzQxZDBiP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "88d3ab38-3818-4700-8bf9-ccab9ca784bf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "165f8bd3-9bbb-4654-9a36-f3bc0b0806f7" + ], + "x-ms-client-request-id": [ + "88d3ab38-3818-4700-8bf9-ccab9ca784bf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "273" + ], + "x-ms-correlation-request-id": [ + "165f8bd3-9bbb-4654-9a36-f3bc0b0806f7" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082356Z:165f8bd3-9bbb-4654-9a36-f3bc0b0806f7" + ], + "Date": [ + "Mon, 16 May 2022 08:23:56 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"996a1e10-616e-478e-93e0-15f433341d0b\",\r\n \"name\": \"996a1e10-616e-478e-93e0-15f433341d0b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T08:23:35.2615261Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupOperations/996a1e10-616e-478e-93e0-15f433341d0b?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvOTk2YTFlMTAtNjE2ZS00NzhlLTkzZTAtMTVmNDMzMzQxZDBiP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "88d3ab38-3818-4700-8bf9-ccab9ca784bf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "bcdbcf3b-6089-45eb-a1af-77ba6df54518" + ], + "x-ms-client-request-id": [ + "88d3ab38-3818-4700-8bf9-ccab9ca784bf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "272" + ], + "x-ms-correlation-request-id": [ + "bcdbcf3b-6089-45eb-a1af-77ba6df54518" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082357Z:bcdbcf3b-6089-45eb-a1af-77ba6df54518" + ], + "Date": [ + "Mon, 16 May 2022 08:23:57 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"996a1e10-616e-478e-93e0-15f433341d0b\",\r\n \"name\": \"996a1e10-616e-478e-93e0-15f433341d0b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T08:23:35.2615261Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupOperations/996a1e10-616e-478e-93e0-15f433341d0b?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvOTk2YTFlMTAtNjE2ZS00NzhlLTkzZTAtMTVmNDMzMzQxZDBiP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "88d3ab38-3818-4700-8bf9-ccab9ca784bf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "245cacd5-8992-47af-8567-5c20f94df627" + ], + "x-ms-client-request-id": [ + "88d3ab38-3818-4700-8bf9-ccab9ca784bf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "271" + ], + "x-ms-correlation-request-id": [ + "245cacd5-8992-47af-8567-5c20f94df627" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082358Z:245cacd5-8992-47af-8567-5c20f94df627" + ], + "Date": [ + "Mon, 16 May 2022 08:23:57 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"996a1e10-616e-478e-93e0-15f433341d0b\",\r\n \"name\": \"996a1e10-616e-478e-93e0-15f433341d0b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T08:23:35.2615261Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupOperations/996a1e10-616e-478e-93e0-15f433341d0b?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvOTk2YTFlMTAtNjE2ZS00NzhlLTkzZTAtMTVmNDMzMzQxZDBiP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "88d3ab38-3818-4700-8bf9-ccab9ca784bf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "ef3dd7f1-6f78-4852-a72e-867eda44bea2" + ], + "x-ms-client-request-id": [ + "88d3ab38-3818-4700-8bf9-ccab9ca784bf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "270" + ], + "x-ms-correlation-request-id": [ + "ef3dd7f1-6f78-4852-a72e-867eda44bea2" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082358Z:ef3dd7f1-6f78-4852-a72e-867eda44bea2" + ], + "Date": [ + "Mon, 16 May 2022 08:23:58 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"996a1e10-616e-478e-93e0-15f433341d0b\",\r\n \"name\": \"996a1e10-616e-478e-93e0-15f433341d0b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T08:23:35.2615261Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupOperations/996a1e10-616e-478e-93e0-15f433341d0b?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvOTk2YTFlMTAtNjE2ZS00NzhlLTkzZTAtMTVmNDMzMzQxZDBiP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "88d3ab38-3818-4700-8bf9-ccab9ca784bf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "0e44e4b2-4965-44eb-a5c6-204d7fb65189" + ], + "x-ms-client-request-id": [ + "88d3ab38-3818-4700-8bf9-ccab9ca784bf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "269" + ], + "x-ms-correlation-request-id": [ + "0e44e4b2-4965-44eb-a5c6-204d7fb65189" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082359Z:0e44e4b2-4965-44eb-a5c6-204d7fb65189" + ], + "Date": [ + "Mon, 16 May 2022 08:23:59 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"996a1e10-616e-478e-93e0-15f433341d0b\",\r\n \"name\": \"996a1e10-616e-478e-93e0-15f433341d0b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T08:23:35.2615261Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupOperations/996a1e10-616e-478e-93e0-15f433341d0b?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvOTk2YTFlMTAtNjE2ZS00NzhlLTkzZTAtMTVmNDMzMzQxZDBiP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "88d3ab38-3818-4700-8bf9-ccab9ca784bf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "c0b20b67-fe1a-4df3-8b81-202b7f2ee1f3" + ], + "x-ms-client-request-id": [ + "88d3ab38-3818-4700-8bf9-ccab9ca784bf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "268" + ], + "x-ms-correlation-request-id": [ + "c0b20b67-fe1a-4df3-8b81-202b7f2ee1f3" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082400Z:c0b20b67-fe1a-4df3-8b81-202b7f2ee1f3" + ], + "Date": [ + "Mon, 16 May 2022 08:23:59 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"996a1e10-616e-478e-93e0-15f433341d0b\",\r\n \"name\": \"996a1e10-616e-478e-93e0-15f433341d0b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T08:23:35.2615261Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupOperations/996a1e10-616e-478e-93e0-15f433341d0b?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvOTk2YTFlMTAtNjE2ZS00NzhlLTkzZTAtMTVmNDMzMzQxZDBiP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "88d3ab38-3818-4700-8bf9-ccab9ca784bf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "3f1b6e23-c3ab-4815-afcd-a839266418eb" + ], + "x-ms-client-request-id": [ + "88d3ab38-3818-4700-8bf9-ccab9ca784bf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "267" + ], + "x-ms-correlation-request-id": [ + "3f1b6e23-c3ab-4815-afcd-a839266418eb" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082400Z:3f1b6e23-c3ab-4815-afcd-a839266418eb" + ], + "Date": [ + "Mon, 16 May 2022 08:24:00 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"996a1e10-616e-478e-93e0-15f433341d0b\",\r\n \"name\": \"996a1e10-616e-478e-93e0-15f433341d0b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T08:23:35.2615261Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupOperations/996a1e10-616e-478e-93e0-15f433341d0b?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvOTk2YTFlMTAtNjE2ZS00NzhlLTkzZTAtMTVmNDMzMzQxZDBiP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "88d3ab38-3818-4700-8bf9-ccab9ca784bf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "1a9cac02-8a0b-402f-a373-e791cea46636" + ], + "x-ms-client-request-id": [ + "88d3ab38-3818-4700-8bf9-ccab9ca784bf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "266" + ], + "x-ms-correlation-request-id": [ + "1a9cac02-8a0b-402f-a373-e791cea46636" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082401Z:1a9cac02-8a0b-402f-a373-e791cea46636" + ], + "Date": [ + "Mon, 16 May 2022 08:24:01 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"996a1e10-616e-478e-93e0-15f433341d0b\",\r\n \"name\": \"996a1e10-616e-478e-93e0-15f433341d0b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T08:23:35.2615261Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupOperations/996a1e10-616e-478e-93e0-15f433341d0b?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvOTk2YTFlMTAtNjE2ZS00NzhlLTkzZTAtMTVmNDMzMzQxZDBiP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "88d3ab38-3818-4700-8bf9-ccab9ca784bf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "f7abe347-bdaa-4010-becf-53a78c1cb6bd" + ], + "x-ms-client-request-id": [ + "88d3ab38-3818-4700-8bf9-ccab9ca784bf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "265" + ], + "x-ms-correlation-request-id": [ + "f7abe347-bdaa-4010-becf-53a78c1cb6bd" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082402Z:f7abe347-bdaa-4010-becf-53a78c1cb6bd" + ], + "Date": [ + "Mon, 16 May 2022 08:24:01 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"996a1e10-616e-478e-93e0-15f433341d0b\",\r\n \"name\": \"996a1e10-616e-478e-93e0-15f433341d0b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T08:23:35.2615261Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupOperations/996a1e10-616e-478e-93e0-15f433341d0b?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvOTk2YTFlMTAtNjE2ZS00NzhlLTkzZTAtMTVmNDMzMzQxZDBiP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "88d3ab38-3818-4700-8bf9-ccab9ca784bf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "7f5e86c0-32cc-442d-ac66-8330201634eb" + ], + "x-ms-client-request-id": [ + "88d3ab38-3818-4700-8bf9-ccab9ca784bf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "264" + ], + "x-ms-correlation-request-id": [ + "7f5e86c0-32cc-442d-ac66-8330201634eb" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082402Z:7f5e86c0-32cc-442d-ac66-8330201634eb" + ], + "Date": [ + "Mon, 16 May 2022 08:24:02 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"996a1e10-616e-478e-93e0-15f433341d0b\",\r\n \"name\": \"996a1e10-616e-478e-93e0-15f433341d0b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T08:23:35.2615261Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupOperations/996a1e10-616e-478e-93e0-15f433341d0b?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvOTk2YTFlMTAtNjE2ZS00NzhlLTkzZTAtMTVmNDMzMzQxZDBiP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "88d3ab38-3818-4700-8bf9-ccab9ca784bf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "10a6fe8d-4961-4aaa-b257-c5a2bde0698b" + ], + "x-ms-client-request-id": [ + "88d3ab38-3818-4700-8bf9-ccab9ca784bf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "263" + ], + "x-ms-correlation-request-id": [ + "10a6fe8d-4961-4aaa-b257-c5a2bde0698b" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082403Z:10a6fe8d-4961-4aaa-b257-c5a2bde0698b" + ], + "Date": [ + "Mon, 16 May 2022 08:24:02 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"996a1e10-616e-478e-93e0-15f433341d0b\",\r\n \"name\": \"996a1e10-616e-478e-93e0-15f433341d0b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T08:23:35.2615261Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupOperations/996a1e10-616e-478e-93e0-15f433341d0b?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvOTk2YTFlMTAtNjE2ZS00NzhlLTkzZTAtMTVmNDMzMzQxZDBiP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "88d3ab38-3818-4700-8bf9-ccab9ca784bf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "181740ae-36cc-4af8-b776-e7c680c91513" + ], + "x-ms-client-request-id": [ + "88d3ab38-3818-4700-8bf9-ccab9ca784bf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "262" + ], + "x-ms-correlation-request-id": [ + "181740ae-36cc-4af8-b776-e7c680c91513" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082404Z:181740ae-36cc-4af8-b776-e7c680c91513" + ], + "Date": [ + "Mon, 16 May 2022 08:24:03 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"996a1e10-616e-478e-93e0-15f433341d0b\",\r\n \"name\": \"996a1e10-616e-478e-93e0-15f433341d0b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T08:23:35.2615261Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupOperations/996a1e10-616e-478e-93e0-15f433341d0b?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvOTk2YTFlMTAtNjE2ZS00NzhlLTkzZTAtMTVmNDMzMzQxZDBiP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "88d3ab38-3818-4700-8bf9-ccab9ca784bf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "63e40ef0-acda-4c5a-acd8-40a4b512ce17" + ], + "x-ms-client-request-id": [ + "88d3ab38-3818-4700-8bf9-ccab9ca784bf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "261" + ], + "x-ms-correlation-request-id": [ + "63e40ef0-acda-4c5a-acd8-40a4b512ce17" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082404Z:63e40ef0-acda-4c5a-acd8-40a4b512ce17" + ], + "Date": [ + "Mon, 16 May 2022 08:24:04 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"996a1e10-616e-478e-93e0-15f433341d0b\",\r\n \"name\": \"996a1e10-616e-478e-93e0-15f433341d0b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T08:23:35.2615261Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupOperations/996a1e10-616e-478e-93e0-15f433341d0b?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvOTk2YTFlMTAtNjE2ZS00NzhlLTkzZTAtMTVmNDMzMzQxZDBiP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "88d3ab38-3818-4700-8bf9-ccab9ca784bf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "2c181464-3db9-4be7-af64-8dd410467e26" + ], + "x-ms-client-request-id": [ + "88d3ab38-3818-4700-8bf9-ccab9ca784bf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "260" + ], + "x-ms-correlation-request-id": [ + "2c181464-3db9-4be7-af64-8dd410467e26" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082405Z:2c181464-3db9-4be7-af64-8dd410467e26" + ], + "Date": [ + "Mon, 16 May 2022 08:24:04 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"996a1e10-616e-478e-93e0-15f433341d0b\",\r\n \"name\": \"996a1e10-616e-478e-93e0-15f433341d0b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T08:23:35.2615261Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupOperations/996a1e10-616e-478e-93e0-15f433341d0b?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvOTk2YTFlMTAtNjE2ZS00NzhlLTkzZTAtMTVmNDMzMzQxZDBiP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "88d3ab38-3818-4700-8bf9-ccab9ca784bf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "3445999c-0673-4015-b1e9-c0f304f8c18a" + ], + "x-ms-client-request-id": [ + "88d3ab38-3818-4700-8bf9-ccab9ca784bf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "259" + ], + "x-ms-correlation-request-id": [ + "3445999c-0673-4015-b1e9-c0f304f8c18a" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082406Z:3445999c-0673-4015-b1e9-c0f304f8c18a" + ], + "Date": [ + "Mon, 16 May 2022 08:24:06 GMT" + ], + "Content-Length": [ + "304" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"996a1e10-616e-478e-93e0-15f433341d0b\",\r\n \"name\": \"996a1e10-616e-478e-93e0-15f433341d0b\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-05-16T08:23:35.2615261Z\",\r\n \"endTime\": \"2022-05-16T08:23:35.2615261Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"d717c280-112f-4c75-bf38-30a11e325fa4\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupOperations/996a1e10-616e-478e-93e0-15f433341d0b?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvOTk2YTFlMTAtNjE2ZS00NzhlLTkzZTAtMTVmNDMzMzQxZDBiP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "88d3ab38-3818-4700-8bf9-ccab9ca784bf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "31c0672f-f81e-4a98-824f-2c5aba4fc6fd" + ], + "x-ms-client-request-id": [ + "88d3ab38-3818-4700-8bf9-ccab9ca784bf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "258" + ], + "x-ms-correlation-request-id": [ + "31c0672f-f81e-4a98-824f-2c5aba4fc6fd" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082407Z:31c0672f-f81e-4a98-824f-2c5aba4fc6fd" + ], + "Date": [ + "Mon, 16 May 2022 08:24:06 GMT" + ], + "Content-Length": [ + "304" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"996a1e10-616e-478e-93e0-15f433341d0b\",\r\n \"name\": \"996a1e10-616e-478e-93e0-15f433341d0b\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-05-16T08:23:35.2615261Z\",\r\n \"endTime\": \"2022-05-16T08:23:35.2615261Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"d717c280-112f-4c75-bf38-30a11e325fa4\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupJobs/d717c280-112f-4c75-bf38-30a11e325fa4?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cEpvYnMvZDcxN2MyODAtMTEyZi00Yzc1LWJmMzgtMzBhMTFlMzI1ZmE0P2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "88d3ab38-3818-4700-8bf9-ccab9ca784bf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "70a369d7-6769-495d-85bd-be029be1b4a4" + ], + "x-ms-client-request-id": [ + "88d3ab38-3818-4700-8bf9-ccab9ca784bf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "299" + ], + "x-ms-correlation-request-id": [ + "70a369d7-6769-495d-85bd-be029be1b4a4" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082408Z:70a369d7-6769-495d-85bd-be029be1b4a4" + ], + "Date": [ + "Mon, 16 May 2022 08:24:07 GMT" + ], + "Content-Length": [ + "812" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupJobs/d717c280-112f-4c75-bf38-30a11e325fa4\",\r\n \"name\": \"d717c280-112f-4c75-bf38-30a11e325fa4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiaganewvm2\",\r\n \"duration\": \"PT30.7997231S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"VM Name\": \"hiaganewvm2\",\r\n \"Policy Name\": \"DefaultPolicy\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"hiaganewvm2\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"ConfigureBackup\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-05-16T08:23:35.2615261Z\",\r\n \"endTime\": \"2022-05-16T08:24:06.0612492Z\",\r\n \"activityId\": \"88d3ab38-3818-4700-8bf9-ccab9ca784bf\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupResourceGuardProxies/VaultProxy?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cFJlc291cmNlR3VhcmRQcm94aWVzL1ZhdWx0UHJveHk/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"resourceGuardResourceId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm-pstest-rg/providers/Microsoft.DataProtection/resourceGuards/mua-pstest-rguard\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a15b05e7-0f69-48ad-be40-209195590050" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "214" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "bddd4d2d-e522-4349-98c1-a24e6dfa2392" + ], + "x-ms-client-request-id": [ + "a15b05e7-0f69-48ad-be40-209195590050" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-correlation-request-id": [ + "bddd4d2d-e522-4349-98c1-a24e6dfa2392" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082409Z:bddd4d2d-e522-4349-98c1-a24e6dfa2392" + ], + "Date": [ + "Mon, 16 May 2022 08:24:08 GMT" + ], + "Content-Length": [ + "2481" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupResourceGuardProxies/VaultProxy\",\r\n \"name\": \"VaultProxy\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupResourceGuardProxies\",\r\n \"properties\": {\r\n \"resourceGuardResourceId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm-pstest-rg/providers/Microsoft.DataProtection/resourceGuards/mua-pstest-rguard\",\r\n \"resourceGuardOperationDetails\": [\r\n {\r\n \"vaultCriticalOperation\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/delete\",\r\n \"defaultResourceRequest\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm-pstest-rg/providers/Microsoft.DataProtection/resourceGuards/mua-pstest-rguard/deleteProtectedItemRequests/default\"\r\n },\r\n {\r\n \"vaultCriticalOperation\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/write\",\r\n \"defaultResourceRequest\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm-pstest-rg/providers/Microsoft.DataProtection/resourceGuards/mua-pstest-rguard/updateProtectedItemRequests/default\"\r\n },\r\n {\r\n \"vaultCriticalOperation\": \"Microsoft.RecoveryServices/vaults/backupPolicies/write\",\r\n \"defaultResourceRequest\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm-pstest-rg/providers/Microsoft.DataProtection/resourceGuards/mua-pstest-rguard/updateProtectionPolicyRequests/default\"\r\n },\r\n {\r\n \"vaultCriticalOperation\": \"Microsoft.RecoveryServices/vaults/backupResourceGuardProxies/delete\",\r\n \"defaultResourceRequest\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm-pstest-rg/providers/Microsoft.DataProtection/resourceGuards/mua-pstest-rguard/deleteResourceGuardProxyRequests/default\"\r\n },\r\n {\r\n \"vaultCriticalOperation\": \"Microsoft.RecoveryServices/vaults/backupSecurityPIN/action\",\r\n \"defaultResourceRequest\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm-pstest-rg/providers/Microsoft.DataProtection/resourceGuards/mua-pstest-rguard/getBackupSecurityPINRequests/default\"\r\n },\r\n {\r\n \"vaultCriticalOperation\": \"Microsoft.RecoveryServices/vaults/backupconfig/write\",\r\n \"defaultResourceRequest\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm-pstest-rg/providers/Microsoft.DataProtection/resourceGuards/mua-pstest-rguard/disableSoftDeleteRequests/default\"\r\n }\r\n ],\r\n \"lastUpdatedTime\": \"2022-05-16T08:24:09.2738278Z\",\r\n \"description\": \"resource guard for PS tests\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupResourceGuardProxies?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cFJlc291cmNlR3VhcmRQcm94aWVzP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1929a743-fe71-4eb3-9598-5e6aa178d5f4" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "adfdff6f-a539-4f9d-87ec-2b157cadf079" + ], + "x-ms-client-request-id": [ + "1929a743-fe71-4eb3-9598-5e6aa178d5f4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "adfdff6f-a539-4f9d-87ec-2b157cadf079" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082410Z:adfdff6f-a539-4f9d-87ec-2b157cadf079" + ], + "Date": [ + "Mon, 16 May 2022 08:24:09 GMT" + ], + "Content-Length": [ + "2493" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupResourceGuardProxies/VaultProxy\",\r\n \"name\": \"VaultProxy\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupResourceGuardProxies\",\r\n \"properties\": {\r\n \"resourceGuardResourceId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm-pstest-rg/providers/Microsoft.DataProtection/resourceGuards/mua-pstest-rguard\",\r\n \"resourceGuardOperationDetails\": [\r\n {\r\n \"vaultCriticalOperation\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/delete\",\r\n \"defaultResourceRequest\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm-pstest-rg/providers/Microsoft.DataProtection/resourceGuards/mua-pstest-rguard/deleteProtectedItemRequests/default\"\r\n },\r\n {\r\n \"vaultCriticalOperation\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/write\",\r\n \"defaultResourceRequest\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm-pstest-rg/providers/Microsoft.DataProtection/resourceGuards/mua-pstest-rguard/updateProtectedItemRequests/default\"\r\n },\r\n {\r\n \"vaultCriticalOperation\": \"Microsoft.RecoveryServices/vaults/backupPolicies/write\",\r\n \"defaultResourceRequest\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm-pstest-rg/providers/Microsoft.DataProtection/resourceGuards/mua-pstest-rguard/updateProtectionPolicyRequests/default\"\r\n },\r\n {\r\n \"vaultCriticalOperation\": \"Microsoft.RecoveryServices/vaults/backupResourceGuardProxies/delete\",\r\n \"defaultResourceRequest\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm-pstest-rg/providers/Microsoft.DataProtection/resourceGuards/mua-pstest-rguard/deleteResourceGuardProxyRequests/default\"\r\n },\r\n {\r\n \"vaultCriticalOperation\": \"Microsoft.RecoveryServices/vaults/backupSecurityPIN/action\",\r\n \"defaultResourceRequest\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm-pstest-rg/providers/Microsoft.DataProtection/resourceGuards/mua-pstest-rguard/getBackupSecurityPINRequests/default\"\r\n },\r\n {\r\n \"vaultCriticalOperation\": \"Microsoft.RecoveryServices/vaults/backupconfig/write\",\r\n \"defaultResourceRequest\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm-pstest-rg/providers/Microsoft.DataProtection/resourceGuards/mua-pstest-rguard/disableSoftDeleteRequests/default\"\r\n }\r\n ],\r\n \"lastUpdatedTime\": \"2022-05-16T08:24:09.2738278Z\",\r\n \"description\": \"resource guard for PS tests\"\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupResourceGuardProxies?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cFJlc291cmNlR3VhcmRQcm94aWVzP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "cbc4b2f1-9088-4904-87ac-9f3a9cf6e5a8" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "afbd8daa-66ab-4285-aea5-d73ce0b66489" + ], + "x-ms-client-request-id": [ + "cbc4b2f1-9088-4904-87ac-9f3a9cf6e5a8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "afbd8daa-66ab-4285-aea5-d73ce0b66489" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082412Z:afbd8daa-66ab-4285-aea5-d73ce0b66489" + ], + "Date": [ + "Mon, 16 May 2022 08:24:11 GMT" + ], + "Content-Length": [ + "2493" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupResourceGuardProxies/VaultProxy\",\r\n \"name\": \"VaultProxy\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupResourceGuardProxies\",\r\n \"properties\": {\r\n \"resourceGuardResourceId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm-pstest-rg/providers/Microsoft.DataProtection/resourceGuards/mua-pstest-rguard\",\r\n \"resourceGuardOperationDetails\": [\r\n {\r\n \"vaultCriticalOperation\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/delete\",\r\n \"defaultResourceRequest\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm-pstest-rg/providers/Microsoft.DataProtection/resourceGuards/mua-pstest-rguard/deleteProtectedItemRequests/default\"\r\n },\r\n {\r\n \"vaultCriticalOperation\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/write\",\r\n \"defaultResourceRequest\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm-pstest-rg/providers/Microsoft.DataProtection/resourceGuards/mua-pstest-rguard/updateProtectedItemRequests/default\"\r\n },\r\n {\r\n \"vaultCriticalOperation\": \"Microsoft.RecoveryServices/vaults/backupPolicies/write\",\r\n \"defaultResourceRequest\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm-pstest-rg/providers/Microsoft.DataProtection/resourceGuards/mua-pstest-rguard/updateProtectionPolicyRequests/default\"\r\n },\r\n {\r\n \"vaultCriticalOperation\": \"Microsoft.RecoveryServices/vaults/backupResourceGuardProxies/delete\",\r\n \"defaultResourceRequest\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm-pstest-rg/providers/Microsoft.DataProtection/resourceGuards/mua-pstest-rguard/deleteResourceGuardProxyRequests/default\"\r\n },\r\n {\r\n \"vaultCriticalOperation\": \"Microsoft.RecoveryServices/vaults/backupSecurityPIN/action\",\r\n \"defaultResourceRequest\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm-pstest-rg/providers/Microsoft.DataProtection/resourceGuards/mua-pstest-rguard/getBackupSecurityPINRequests/default\"\r\n },\r\n {\r\n \"vaultCriticalOperation\": \"Microsoft.RecoveryServices/vaults/backupconfig/write\",\r\n \"defaultResourceRequest\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm-pstest-rg/providers/Microsoft.DataProtection/resourceGuards/mua-pstest-rguard/disableSoftDeleteRequests/default\"\r\n }\r\n ],\r\n \"lastUpdatedTime\": \"2022-05-16T08:24:09.2738278Z\",\r\n \"description\": \"resource guard for PS tests\"\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupResourceGuardProxies?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cFJlc291cmNlR3VhcmRQcm94aWVzP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8b1dc53e-ce12-4aa9-8aea-d596187701b4" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "9a3198ed-bcbc-4b57-a8e7-94f1f33c1b5e" + ], + "x-ms-client-request-id": [ + "8b1dc53e-ce12-4aa9-8aea-d596187701b4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-correlation-request-id": [ + "9a3198ed-bcbc-4b57-a8e7-94f1f33c1b5e" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082420Z:9a3198ed-bcbc-4b57-a8e7-94f1f33c1b5e" + ], + "Date": [ + "Mon, 16 May 2022 08:24:19 GMT" + ], + "Content-Length": [ + "2493" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupResourceGuardProxies/VaultProxy\",\r\n \"name\": \"VaultProxy\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupResourceGuardProxies\",\r\n \"properties\": {\r\n \"resourceGuardResourceId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm-pstest-rg/providers/Microsoft.DataProtection/resourceGuards/mua-pstest-rguard\",\r\n \"resourceGuardOperationDetails\": [\r\n {\r\n \"vaultCriticalOperation\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/delete\",\r\n \"defaultResourceRequest\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm-pstest-rg/providers/Microsoft.DataProtection/resourceGuards/mua-pstest-rguard/deleteProtectedItemRequests/default\"\r\n },\r\n {\r\n \"vaultCriticalOperation\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/write\",\r\n \"defaultResourceRequest\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm-pstest-rg/providers/Microsoft.DataProtection/resourceGuards/mua-pstest-rguard/updateProtectedItemRequests/default\"\r\n },\r\n {\r\n \"vaultCriticalOperation\": \"Microsoft.RecoveryServices/vaults/backupPolicies/write\",\r\n \"defaultResourceRequest\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm-pstest-rg/providers/Microsoft.DataProtection/resourceGuards/mua-pstest-rguard/updateProtectionPolicyRequests/default\"\r\n },\r\n {\r\n \"vaultCriticalOperation\": \"Microsoft.RecoveryServices/vaults/backupResourceGuardProxies/delete\",\r\n \"defaultResourceRequest\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm-pstest-rg/providers/Microsoft.DataProtection/resourceGuards/mua-pstest-rguard/deleteResourceGuardProxyRequests/default\"\r\n },\r\n {\r\n \"vaultCriticalOperation\": \"Microsoft.RecoveryServices/vaults/backupSecurityPIN/action\",\r\n \"defaultResourceRequest\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm-pstest-rg/providers/Microsoft.DataProtection/resourceGuards/mua-pstest-rguard/getBackupSecurityPINRequests/default\"\r\n },\r\n {\r\n \"vaultCriticalOperation\": \"Microsoft.RecoveryServices/vaults/backupconfig/write\",\r\n \"defaultResourceRequest\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm-pstest-rg/providers/Microsoft.DataProtection/resourceGuards/mua-pstest-rguard/disableSoftDeleteRequests/default\"\r\n }\r\n ],\r\n \"lastUpdatedTime\": \"2022-05-16T08:24:09.2738278Z\",\r\n \"description\": \"resource guard for PS tests\"\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupResourceGuardProxies?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cFJlc291cmNlR3VhcmRQcm94aWVzP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "a2f0d96d-0564-4c51-b8d1-8096e4913c3e" + ], + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-correlation-request-id": [ + "a2f0d96d-0564-4c51-b8d1-8096e4913c3e" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082455Z:a2f0d96d-0564-4c51-b8d1-8096e4913c3e" + ], + "Date": [ + "Mon, 16 May 2022 08:24:54 GMT" + ], + "Content-Length": [ + "2493" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupResourceGuardProxies/VaultProxy\",\r\n \"name\": \"VaultProxy\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupResourceGuardProxies\",\r\n \"properties\": {\r\n \"resourceGuardResourceId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm-pstest-rg/providers/Microsoft.DataProtection/resourceGuards/mua-pstest-rguard\",\r\n \"resourceGuardOperationDetails\": [\r\n {\r\n \"vaultCriticalOperation\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/delete\",\r\n \"defaultResourceRequest\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm-pstest-rg/providers/Microsoft.DataProtection/resourceGuards/mua-pstest-rguard/deleteProtectedItemRequests/default\"\r\n },\r\n {\r\n \"vaultCriticalOperation\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/write\",\r\n \"defaultResourceRequest\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm-pstest-rg/providers/Microsoft.DataProtection/resourceGuards/mua-pstest-rguard/updateProtectedItemRequests/default\"\r\n },\r\n {\r\n \"vaultCriticalOperation\": \"Microsoft.RecoveryServices/vaults/backupPolicies/write\",\r\n \"defaultResourceRequest\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm-pstest-rg/providers/Microsoft.DataProtection/resourceGuards/mua-pstest-rguard/updateProtectionPolicyRequests/default\"\r\n },\r\n {\r\n \"vaultCriticalOperation\": \"Microsoft.RecoveryServices/vaults/backupResourceGuardProxies/delete\",\r\n \"defaultResourceRequest\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm-pstest-rg/providers/Microsoft.DataProtection/resourceGuards/mua-pstest-rguard/deleteResourceGuardProxyRequests/default\"\r\n },\r\n {\r\n \"vaultCriticalOperation\": \"Microsoft.RecoveryServices/vaults/backupSecurityPIN/action\",\r\n \"defaultResourceRequest\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm-pstest-rg/providers/Microsoft.DataProtection/resourceGuards/mua-pstest-rguard/getBackupSecurityPINRequests/default\"\r\n },\r\n {\r\n \"vaultCriticalOperation\": \"Microsoft.RecoveryServices/vaults/backupconfig/write\",\r\n \"defaultResourceRequest\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm-pstest-rg/providers/Microsoft.DataProtection/resourceGuards/mua-pstest-rguard/disableSoftDeleteRequests/default\"\r\n }\r\n ],\r\n \"lastUpdatedTime\": \"2022-05-16T08:24:09.2738278Z\",\r\n \"description\": \"resource guard for PS tests\"\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupResourceGuardProxies?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cFJlc291cmNlR3VhcmRQcm94aWVzP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "97dc07a3-c1f3-4c43-aec2-391edbd62a5c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "d2485d80-b53c-413c-aeed-1bdc3a8afec5" + ], + "x-ms-client-request-id": [ + "97dc07a3-c1f3-4c43-aec2-391edbd62a5c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "d2485d80-b53c-413c-aeed-1bdc3a8afec5" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T082651Z:d2485d80-b53c-413c-aeed-1bdc3a8afec5" + ], + "Date": [ + "Mon, 16 May 2022 08:26:50 GMT" + ], + "Content-Length": [ + "2493" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupResourceGuardProxies/VaultProxy\",\r\n \"name\": \"VaultProxy\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupResourceGuardProxies\",\r\n \"properties\": {\r\n \"resourceGuardResourceId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm-pstest-rg/providers/Microsoft.DataProtection/resourceGuards/mua-pstest-rguard\",\r\n \"resourceGuardOperationDetails\": [\r\n {\r\n \"vaultCriticalOperation\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/delete\",\r\n \"defaultResourceRequest\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm-pstest-rg/providers/Microsoft.DataProtection/resourceGuards/mua-pstest-rguard/deleteProtectedItemRequests/default\"\r\n },\r\n {\r\n \"vaultCriticalOperation\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/write\",\r\n \"defaultResourceRequest\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm-pstest-rg/providers/Microsoft.DataProtection/resourceGuards/mua-pstest-rguard/updateProtectedItemRequests/default\"\r\n },\r\n {\r\n \"vaultCriticalOperation\": \"Microsoft.RecoveryServices/vaults/backupPolicies/write\",\r\n \"defaultResourceRequest\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm-pstest-rg/providers/Microsoft.DataProtection/resourceGuards/mua-pstest-rguard/updateProtectionPolicyRequests/default\"\r\n },\r\n {\r\n \"vaultCriticalOperation\": \"Microsoft.RecoveryServices/vaults/backupResourceGuardProxies/delete\",\r\n \"defaultResourceRequest\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm-pstest-rg/providers/Microsoft.DataProtection/resourceGuards/mua-pstest-rguard/deleteResourceGuardProxyRequests/default\"\r\n },\r\n {\r\n \"vaultCriticalOperation\": \"Microsoft.RecoveryServices/vaults/backupSecurityPIN/action\",\r\n \"defaultResourceRequest\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm-pstest-rg/providers/Microsoft.DataProtection/resourceGuards/mua-pstest-rguard/getBackupSecurityPINRequests/default\"\r\n },\r\n {\r\n \"vaultCriticalOperation\": \"Microsoft.RecoveryServices/vaults/backupconfig/write\",\r\n \"defaultResourceRequest\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm-pstest-rg/providers/Microsoft.DataProtection/resourceGuards/mua-pstest-rguard/disableSoftDeleteRequests/default\"\r\n }\r\n ],\r\n \"lastUpdatedTime\": \"2022-05-16T08:24:09.2738278Z\",\r\n \"description\": \"resource guard for PS tests\"\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupPolicies?$filter=backupManagementType%20eq%20'AzureIaasVM'&api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cFBvbGljaWVzPyRmaWx0ZXI9YmFja3VwTWFuYWdlbWVudFR5cGUlMjBlcSUyMCdBenVyZUlhYXNWTScmYXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e3930502-1e92-4cf0-85ef-b2d34ee52ab2" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "9ddb31dc-210d-4b90-8296-0278bfea077b" + ], + "x-ms-client-request-id": [ + "e3930502-1e92-4cf0-85ef-b2d34ee52ab2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "298" + ], + "x-ms-correlation-request-id": [ + "9ddb31dc-210d-4b90-8296-0278bfea077b" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082410Z:9ddb31dc-210d-4b90-8296-0278bfea077b" + ], + "Date": [ + "Mon, 16 May 2022 08:24:10 GMT" + ], + "Content-Length": [ + "3748" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/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 \"2022-05-16T20: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 \"2022-05-16T20: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 },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupPolicies/mua-vm-lowerDailyRet\",\r\n \"name\": \"mua-vm-lowerDailyRet\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupPolicies\",\r\n \"properties\": {\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"policyType\": \"V1\",\r\n \"instantRPDetails\": {},\r\n \"schedulePolicy\": {\r\n \"schedulePolicyType\": \"SimpleSchedulePolicy\",\r\n \"scheduleRunFrequency\": \"Daily\",\r\n \"scheduleRunTimes\": [\r\n \"2022-05-16T04: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 \"2022-05-16T04:30:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 25,\r\n \"durationType\": \"Days\"\r\n }\r\n }\r\n },\r\n \"timeZone\": \"UTC\",\r\n \"protectedItemsCount\": 0\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupPolicies/mua-vm-higher\",\r\n \"name\": \"mua-vm-higher\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupPolicies\",\r\n \"properties\": {\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"policyType\": \"V1\",\r\n \"instantRPDetails\": {},\r\n \"schedulePolicy\": {\r\n \"schedulePolicyType\": \"SimpleSchedulePolicy\",\r\n \"scheduleRunFrequency\": \"Daily\",\r\n \"scheduleRunTimes\": [\r\n \"2022-05-16T06: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 \"2022-05-16T06:30:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 32,\r\n \"durationType\": \"Days\"\r\n }\r\n }\r\n },\r\n \"timeZone\": \"UTC\",\r\n \"protectedItemsCount\": 0\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupPolicies/mua-vm-lowerSnapshot\",\r\n \"name\": \"mua-vm-lowerSnapshot\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupPolicies\",\r\n \"properties\": {\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"policyType\": \"V1\",\r\n \"instantRPDetails\": {},\r\n \"schedulePolicy\": {\r\n \"schedulePolicyType\": \"SimpleSchedulePolicy\",\r\n \"scheduleRunFrequency\": \"Daily\",\r\n \"scheduleRunTimes\": [\r\n \"2022-05-16T18: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 \"2022-05-16T18:30:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 31,\r\n \"durationType\": \"Days\"\r\n }\r\n }\r\n },\r\n \"timeZone\": \"UTC\",\r\n \"protectedItemsCount\": 0\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupPolicies/EnhancedPolicy\",\r\n \"name\": \"EnhancedPolicy\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupPolicies\",\r\n \"properties\": {\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"policyType\": \"V2\",\r\n \"instantRPDetails\": {},\r\n \"schedulePolicy\": {\r\n \"schedulePolicyType\": \"SimpleSchedulePolicyV2\",\r\n \"scheduleRunFrequency\": \"Hourly\",\r\n \"hourlySchedule\": {\r\n \"interval\": 4,\r\n \"scheduleWindowStartTime\": \"2022-05-15T08:00:00Z\",\r\n \"scheduleWindowDuration\": 12\r\n }\r\n },\r\n \"retentionPolicy\": {\r\n \"retentionPolicyType\": \"LongTermRetentionPolicy\",\r\n \"dailySchedule\": {\r\n \"retentionTimes\": [\r\n \"2022-05-15T08:00: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 }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupPolicies?$filter=backupManagementType%20eq%20'AzureIaasVM'&api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cFBvbGljaWVzPyRmaWx0ZXI9YmFja3VwTWFuYWdlbWVudFR5cGUlMjBlcSUyMCdBenVyZUlhYXNWTScmYXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2ca73886-a2a2-40e8-b823-b55a675ea813" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "a4375a8d-5462-48cf-b98a-e1b90726b15d" + ], + "x-ms-client-request-id": [ + "2ca73886-a2a2-40e8-b823-b55a675ea813" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "296" + ], + "x-ms-correlation-request-id": [ + "a4375a8d-5462-48cf-b98a-e1b90726b15d" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082414Z:a4375a8d-5462-48cf-b98a-e1b90726b15d" + ], + "Date": [ + "Mon, 16 May 2022 08:24:13 GMT" + ], + "Content-Length": [ + "3748" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/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 \"2022-05-16T20: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 \"2022-05-16T20: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 },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupPolicies/mua-vm-lowerDailyRet\",\r\n \"name\": \"mua-vm-lowerDailyRet\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupPolicies\",\r\n \"properties\": {\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"policyType\": \"V1\",\r\n \"instantRPDetails\": {},\r\n \"schedulePolicy\": {\r\n \"schedulePolicyType\": \"SimpleSchedulePolicy\",\r\n \"scheduleRunFrequency\": \"Daily\",\r\n \"scheduleRunTimes\": [\r\n \"2022-05-16T04: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 \"2022-05-16T04:30:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 24,\r\n \"durationType\": \"Days\"\r\n }\r\n }\r\n },\r\n \"timeZone\": \"UTC\",\r\n \"protectedItemsCount\": 0\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupPolicies/mua-vm-higher\",\r\n \"name\": \"mua-vm-higher\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupPolicies\",\r\n \"properties\": {\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"policyType\": \"V1\",\r\n \"instantRPDetails\": {},\r\n \"schedulePolicy\": {\r\n \"schedulePolicyType\": \"SimpleSchedulePolicy\",\r\n \"scheduleRunFrequency\": \"Daily\",\r\n \"scheduleRunTimes\": [\r\n \"2022-05-16T06: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 \"2022-05-16T06:30:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 32,\r\n \"durationType\": \"Days\"\r\n }\r\n }\r\n },\r\n \"timeZone\": \"UTC\",\r\n \"protectedItemsCount\": 0\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupPolicies/mua-vm-lowerSnapshot\",\r\n \"name\": \"mua-vm-lowerSnapshot\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupPolicies\",\r\n \"properties\": {\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"policyType\": \"V1\",\r\n \"instantRPDetails\": {},\r\n \"schedulePolicy\": {\r\n \"schedulePolicyType\": \"SimpleSchedulePolicy\",\r\n \"scheduleRunFrequency\": \"Daily\",\r\n \"scheduleRunTimes\": [\r\n \"2022-05-16T18: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 \"2022-05-16T18:30:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 31,\r\n \"durationType\": \"Days\"\r\n }\r\n }\r\n },\r\n \"timeZone\": \"UTC\",\r\n \"protectedItemsCount\": 0\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupPolicies/EnhancedPolicy\",\r\n \"name\": \"EnhancedPolicy\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupPolicies\",\r\n \"properties\": {\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"policyType\": \"V2\",\r\n \"instantRPDetails\": {},\r\n \"schedulePolicy\": {\r\n \"schedulePolicyType\": \"SimpleSchedulePolicyV2\",\r\n \"scheduleRunFrequency\": \"Hourly\",\r\n \"hourlySchedule\": {\r\n \"interval\": 4,\r\n \"scheduleWindowStartTime\": \"2022-05-15T08:00:00Z\",\r\n \"scheduleWindowDuration\": 12\r\n }\r\n },\r\n \"retentionPolicy\": {\r\n \"retentionPolicyType\": \"LongTermRetentionPolicy\",\r\n \"dailySchedule\": {\r\n \"retentionTimes\": [\r\n \"2022-05-15T08:00: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 }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupPolicies/mua-vm-lowerDailyRet?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cFBvbGljaWVzL211YS12bS1sb3dlckRhaWx5UmV0P2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "cbc4b2f1-9088-4904-87ac-9f3a9cf6e5a8" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "ac57afe4-17bd-46bf-b339-503c47be7017" + ], + "x-ms-client-request-id": [ + "cbc4b2f1-9088-4904-87ac-9f3a9cf6e5a8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "297" + ], + "x-ms-correlation-request-id": [ + "ac57afe4-17bd-46bf-b339-503c47be7017" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082411Z:ac57afe4-17bd-46bf-b339-503c47be7017" + ], + "Date": [ + "Mon, 16 May 2022 08:24:10 GMT" + ], + "Content-Length": [ + "750" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupPolicies/mua-vm-lowerDailyRet\",\r\n \"name\": \"mua-vm-lowerDailyRet\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupPolicies\",\r\n \"properties\": {\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"policyType\": \"V1\",\r\n \"instantRPDetails\": {},\r\n \"schedulePolicy\": {\r\n \"schedulePolicyType\": \"SimpleSchedulePolicy\",\r\n \"scheduleRunFrequency\": \"Daily\",\r\n \"scheduleRunTimes\": [\r\n \"2022-05-16T04: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 \"2022-05-16T04:30:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 25,\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/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupPolicies/mua-vm-lowerDailyRet?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cFBvbGljaWVzL211YS12bS1sb3dlckRhaWx5UmV0P2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "992df4b9-47ed-4431-b965-7fc3610a216d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "23928621-3af0-4138-b2a7-207002befdd7" + ], + "x-ms-client-request-id": [ + "992df4b9-47ed-4431-b965-7fc3610a216d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "295" + ], + "x-ms-correlation-request-id": [ + "23928621-3af0-4138-b2a7-207002befdd7" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082415Z:23928621-3af0-4138-b2a7-207002befdd7" + ], + "Date": [ + "Mon, 16 May 2022 08:24:14 GMT" + ], + "Content-Length": [ + "750" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupPolicies/mua-vm-lowerDailyRet\",\r\n \"name\": \"mua-vm-lowerDailyRet\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupPolicies\",\r\n \"properties\": {\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"policyType\": \"V1\",\r\n \"instantRPDetails\": {},\r\n \"schedulePolicy\": {\r\n \"schedulePolicyType\": \"SimpleSchedulePolicy\",\r\n \"scheduleRunFrequency\": \"Daily\",\r\n \"scheduleRunTimes\": [\r\n \"2022-05-16T04: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 \"2022-05-16T04:30:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 24,\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/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupPolicies/mua-vm-lowerDailyRet?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cFBvbGljaWVzL211YS12bS1sb3dlckRhaWx5UmV0P2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "98c0372f-5222-4a43-9228-fff45d0aaa67" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "299bc2e1-c9e7-4516-9b6f-7e7705985ed6" + ], + "x-ms-client-request-id": [ + "98c0372f-5222-4a43-9228-fff45d0aaa67" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "294" + ], + "x-ms-correlation-request-id": [ + "299bc2e1-c9e7-4516-9b6f-7e7705985ed6" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082417Z:299bc2e1-c9e7-4516-9b6f-7e7705985ed6" + ], + "Date": [ + "Mon, 16 May 2022 08:24:16 GMT" + ], + "Content-Length": [ + "750" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupPolicies/mua-vm-lowerDailyRet\",\r\n \"name\": \"mua-vm-lowerDailyRet\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupPolicies\",\r\n \"properties\": {\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"policyType\": \"V1\",\r\n \"instantRPDetails\": {},\r\n \"schedulePolicy\": {\r\n \"schedulePolicyType\": \"SimpleSchedulePolicy\",\r\n \"scheduleRunFrequency\": \"Daily\",\r\n \"scheduleRunTimes\": [\r\n \"2022-05-16T04: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 \"2022-05-16T04:30:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 26,\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/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupPolicies/mua-vm-lowerDailyRet?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cFBvbGljaWVzL211YS12bS1sb3dlckRhaWx5UmV0P2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8b1dc53e-ce12-4aa9-8aea-d596187701b4" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "9736b2b9-6a88-47a7-871e-bad4d3192a8c" + ], + "x-ms-client-request-id": [ + "8b1dc53e-ce12-4aa9-8aea-d596187701b4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "292" + ], + "x-ms-correlation-request-id": [ + "9736b2b9-6a88-47a7-871e-bad4d3192a8c" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082419Z:9736b2b9-6a88-47a7-871e-bad4d3192a8c" + ], + "Date": [ + "Mon, 16 May 2022 08:24:18 GMT" + ], + "Content-Length": [ + "750" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupPolicies/mua-vm-lowerDailyRet\",\r\n \"name\": \"mua-vm-lowerDailyRet\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupPolicies\",\r\n \"properties\": {\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"policyType\": \"V1\",\r\n \"instantRPDetails\": {},\r\n \"schedulePolicy\": {\r\n \"schedulePolicyType\": \"SimpleSchedulePolicy\",\r\n \"scheduleRunFrequency\": \"Daily\",\r\n \"scheduleRunTimes\": [\r\n \"2022-05-16T04: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 \"2022-05-16T04:30:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 26,\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/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupPolicies/mua-vm-lowerDailyRet?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cFBvbGljaWVzL211YS12bS1sb3dlckRhaWx5UmV0P2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "84d1d34e-407a-4f50-b55b-12c944e3f31f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "fbfd7dfd-7688-45e1-84bd-fc6c02d5cd62" + ], + "x-ms-client-request-id": [ + "84d1d34e-407a-4f50-b55b-12c944e3f31f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "290" + ], + "x-ms-correlation-request-id": [ + "fbfd7dfd-7688-45e1-84bd-fc6c02d5cd62" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082437Z:fbfd7dfd-7688-45e1-84bd-fc6c02d5cd62" + ], + "Date": [ + "Mon, 16 May 2022 08:24:36 GMT" + ], + "Content-Length": [ + "750" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupPolicies/mua-vm-lowerDailyRet\",\r\n \"name\": \"mua-vm-lowerDailyRet\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupPolicies\",\r\n \"properties\": {\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"policyType\": \"V1\",\r\n \"instantRPDetails\": {},\r\n \"schedulePolicy\": {\r\n \"schedulePolicyType\": \"SimpleSchedulePolicy\",\r\n \"scheduleRunFrequency\": \"Daily\",\r\n \"scheduleRunTimes\": [\r\n \"2022-05-16T04: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 \"2022-05-16T04:30:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 26,\r\n \"durationType\": \"Days\"\r\n }\r\n }\r\n },\r\n \"timeZone\": \"UTC\",\r\n \"protectedItemsCount\": 1\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupPolicies/mua-vm-lowerDailyRet?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cFBvbGljaWVzL211YS12bS1sb3dlckRhaWx5UmV0P2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\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 \"2022-05-16T04:30:00Z\"\r\n ]\r\n },\r\n \"retentionPolicy\": {\r\n \"retentionPolicyType\": \"LongTermRetentionPolicy\",\r\n \"dailySchedule\": {\r\n \"retentionTimes\": [\r\n \"2022-05-16T04:30:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 24,\r\n \"durationType\": \"Days\"\r\n }\r\n }\r\n },\r\n \"timeZone\": \"UTC\",\r\n \"resourceGuardOperationRequests\": [\r\n \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm-pstest-rg/providers/Microsoft.DataProtection/resourceGuards/mua-pstest-rguard/updateProtectionPolicyRequests/default\"\r\n ]\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "cbc4b2f1-9088-4904-87ac-9f3a9cf6e5a8" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "871" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "00ad76a2-a0b7-4f1d-a34c-5654fc6e5306" + ], + "x-ms-client-request-id": [ + "cbc4b2f1-9088-4904-87ac-9f3a9cf6e5a8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-correlation-request-id": [ + "00ad76a2-a0b7-4f1d-a34c-5654fc6e5306" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082413Z:00ad76a2-a0b7-4f1d-a34c-5654fc6e5306" + ], + "Date": [ + "Mon, 16 May 2022 08:24:12 GMT" + ], + "Content-Length": [ + "750" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupPolicies/mua-vm-lowerDailyRet\",\r\n \"name\": \"mua-vm-lowerDailyRet\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupPolicies\",\r\n \"properties\": {\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"policyType\": \"V1\",\r\n \"instantRPDetails\": {},\r\n \"schedulePolicy\": {\r\n \"schedulePolicyType\": \"SimpleSchedulePolicy\",\r\n \"scheduleRunFrequency\": \"Daily\",\r\n \"scheduleRunTimes\": [\r\n \"2022-05-16T04: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 \"2022-05-16T04:30:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 24,\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/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupPolicies/mua-vm-lowerDailyRet?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cFBvbGljaWVzL211YS12bS1sb3dlckRhaWx5UmV0P2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\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 \"2022-05-16T04:30:00Z\"\r\n ]\r\n },\r\n \"retentionPolicy\": {\r\n \"retentionPolicyType\": \"LongTermRetentionPolicy\",\r\n \"dailySchedule\": {\r\n \"retentionTimes\": [\r\n \"2022-05-16T04:30:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 26,\r\n \"durationType\": \"Days\"\r\n }\r\n }\r\n },\r\n \"timeZone\": \"UTC\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "992df4b9-47ed-4431-b965-7fc3610a216d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "622" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "b60550b1-8573-4a0c-bf37-5232156851f9" + ], + "x-ms-client-request-id": [ + "992df4b9-47ed-4431-b965-7fc3610a216d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" + ], + "x-ms-correlation-request-id": [ + "b60550b1-8573-4a0c-bf37-5232156851f9" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082416Z:b60550b1-8573-4a0c-bf37-5232156851f9" + ], + "Date": [ + "Mon, 16 May 2022 08:24:15 GMT" + ], + "Content-Length": [ + "750" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupPolicies/mua-vm-lowerDailyRet\",\r\n \"name\": \"mua-vm-lowerDailyRet\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupPolicies\",\r\n \"properties\": {\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"policyType\": \"V1\",\r\n \"instantRPDetails\": {},\r\n \"schedulePolicy\": {\r\n \"schedulePolicyType\": \"SimpleSchedulePolicy\",\r\n \"scheduleRunFrequency\": \"Daily\",\r\n \"scheduleRunTimes\": [\r\n \"2022-05-16T04: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 \"2022-05-16T04:30:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 26,\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/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupProtectedItems?$filter=backupManagementType%20eq%20'AzureIaasVM'%20and%20itemType%20eq%20'VM'&api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cFByb3RlY3RlZEl0ZW1zPyRmaWx0ZXI9YmFja3VwTWFuYWdlbWVudFR5cGUlMjBlcSUyMCdBenVyZUlhYXNWTSclMjBhbmQlMjBpdGVtVHlwZSUyMGVxJTIwJ1ZNJyZhcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "276880cc-3f26-4423-b864-4c0736164846" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "5eef378b-6937-4e49-9e5c-28696ea39d2b" + ], + "x-ms-client-request-id": [ + "276880cc-3f26-4423-b864-4c0736164846" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "299" + ], + "x-ms-correlation-request-id": [ + "5eef378b-6937-4e49-9e5c-28696ea39d2b" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082418Z:5eef378b-6937-4e49-9e5c-28696ea39d2b" + ], + "Date": [ + "Mon, 16 May 2022 08:24:17 GMT" + ], + "Content-Length": [ + "1400" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;hiagarg;hiaganewvm2/protectedItems/VM;iaasvmcontainerv2;hiagarg;hiaganewvm2\",\r\n \"name\": \"VM;iaasvmcontainerv2;hiagarg;hiaganewvm2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems\",\r\n \"properties\": {\r\n \"kpisHealths\": {},\r\n \"friendlyName\": \"hiaganewVM2\",\r\n \"virtualMachineId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.Compute/virtualMachines/hiaganewVM2\",\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\": \"70368940935633\",\r\n \"protectedItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"workloadType\": \"VM\",\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiaganewvm2\",\r\n \"sourceResourceId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.Compute/virtualMachines/hiaganewVM2\",\r\n \"policyId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupPolicies/DefaultPolicy\",\r\n \"policyName\": \"DefaultPolicy\",\r\n \"isArchiveEnabled\": false\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupProtectedItems?$filter=backupManagementType%20eq%20'AzureIaasVM'%20and%20itemType%20eq%20'VM'&api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cFByb3RlY3RlZEl0ZW1zPyRmaWx0ZXI9YmFja3VwTWFuYWdlbWVudFR5cGUlMjBlcSUyMCdBenVyZUlhYXNWTSclMjBhbmQlMjBpdGVtVHlwZSUyMGVxJTIwJ1ZNJyZhcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7526e9ae-0d72-4f2a-93d0-216c04133d17" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "8a0e8a6a-b8d8-4c20-905c-9094c86be059" + ], + "x-ms-client-request-id": [ + "7526e9ae-0d72-4f2a-93d0-216c04133d17" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "298" + ], + "x-ms-correlation-request-id": [ + "8a0e8a6a-b8d8-4c20-905c-9094c86be059" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082436Z:8a0e8a6a-b8d8-4c20-905c-9094c86be059" + ], + "Date": [ + "Mon, 16 May 2022 08:24:36 GMT" + ], + "Content-Length": [ + "1414" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;hiagarg;hiaganewvm2/protectedItems/VM;iaasvmcontainerv2;hiagarg;hiaganewvm2\",\r\n \"name\": \"VM;iaasvmcontainerv2;hiagarg;hiaganewvm2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems\",\r\n \"properties\": {\r\n \"kpisHealths\": {},\r\n \"friendlyName\": \"hiaganewVM2\",\r\n \"virtualMachineId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.Compute/virtualMachines/hiaganewVM2\",\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\": \"70368940935633\",\r\n \"protectedItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"workloadType\": \"VM\",\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiaganewvm2\",\r\n \"sourceResourceId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.Compute/virtualMachines/hiaganewVM2\",\r\n \"policyId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupPolicies/mua-vm-lowerDailyRet\",\r\n \"policyName\": \"mua-vm-lowerDailyRet\",\r\n \"isArchiveEnabled\": false\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupFabrics/Azure/protectionContainers/IaasVMContainer%3Biaasvmcontainerv2%3Bhiagarg%3Bhiaganewvm2/protectedItems/VM%3Biaasvmcontainerv2%3Bhiagarg%3Bhiaganewvm2?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cEZhYnJpY3MvQXp1cmUvcHJvdGVjdGlvbkNvbnRhaW5lcnMvSWFhc1ZNQ29udGFpbmVyJTNCaWFhc3ZtY29udGFpbmVydjIlM0JoaWFnYXJnJTNCaGlhZ2FuZXd2bTIvcHJvdGVjdGVkSXRlbXMvVk0lM0JpYWFzdm1jb250YWluZXJ2MiUzQmhpYWdhcmclM0JoaWFnYW5ld3ZtMj9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"protectedItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"sourceResourceId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.Compute/virtualMachines/hiaganewVM2\",\r\n \"policyId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupPolicies/mua-vm-lowerDailyRet\",\r\n \"resourceGuardOperationRequests\": [\r\n \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm-pstest-rg/providers/Microsoft.DataProtection/resourceGuards/mua-pstest-rguard/updateProtectedItemRequests/default\"\r\n ]\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8b1dc53e-ce12-4aa9-8aea-d596187701b4" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "687" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;hiagarg;hiaganewvm2/protectedItems/VM;iaasvmcontainerv2;hiagarg;hiaganewvm2/operationResults/9bbd6115-36cf-480a-8ae1-01508c912452?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;hiagarg;hiaganewvm2/protectedItems/VM;iaasvmcontainerv2;hiagarg;hiaganewvm2/operationsStatus/9bbd6115-36cf-480a-8ae1-01508c912452?api-version=2022-02-01" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "5304f977-8a2c-4114-898c-a93fe93d2ab2" + ], + "x-ms-client-request-id": [ + "8b1dc53e-ce12-4aa9-8aea-d596187701b4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1195" + ], + "x-ms-correlation-request-id": [ + "5304f977-8a2c-4114-898c-a93fe93d2ab2" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082421Z:5304f977-8a2c-4114-898c-a93fe93d2ab2" + ], + "Date": [ + "Mon, 16 May 2022 08:24:20 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupFabrics/Azure/protectionContainers/IaasVMContainer%3Biaasvmcontainerv2%3Bhiagarg%3Bhiaganewvm2/protectedItems/VM%3Biaasvmcontainerv2%3Bhiagarg%3Bhiaganewvm2?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cEZhYnJpY3MvQXp1cmUvcHJvdGVjdGlvbkNvbnRhaW5lcnMvSWFhc1ZNQ29udGFpbmVyJTNCaWFhc3ZtY29udGFpbmVydjIlM0JoaWFnYXJnJTNCaGlhZ2FuZXd2bTIvcHJvdGVjdGVkSXRlbXMvVk0lM0JpYWFzdm1jb250YWluZXJ2MiUzQmhpYWdhcmclM0JoaWFnYW5ld3ZtMj9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"protectedItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"sourceResourceId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.Compute/virtualMachines/hiaganewVM2\",\r\n \"policyId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupPolicies/DefaultPolicy\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "84d1d34e-407a-4f50-b55b-12c944e3f31f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "434" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;hiagarg;hiaganewvm2/protectedItems/VM;iaasvmcontainerv2;hiagarg;hiaganewvm2/operationResults/cc529e59-b717-4f3d-9532-86a81e390ee4?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;hiagarg;hiaganewvm2/protectedItems/VM;iaasvmcontainerv2;hiagarg;hiaganewvm2/operationsStatus/cc529e59-b717-4f3d-9532-86a81e390ee4?api-version=2022-02-01" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "0fc12682-2146-4efa-a873-c4bd978b7559" + ], + "x-ms-client-request-id": [ + "84d1d34e-407a-4f50-b55b-12c944e3f31f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1194" + ], + "x-ms-correlation-request-id": [ + "0fc12682-2146-4efa-a873-c4bd978b7559" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082439Z:0fc12682-2146-4efa-a873-c4bd978b7559" + ], + "Date": [ + "Mon, 16 May 2022 08:24:38 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupOperations/9bbd6115-36cf-480a-8ae1-01508c912452?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvOWJiZDYxMTUtMzZjZi00ODBhLThhZTEtMDE1MDhjOTEyNDUyP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8b1dc53e-ce12-4aa9-8aea-d596187701b4" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "247ad7ef-8fe0-4b5a-b184-e7df504d909e" + ], + "x-ms-client-request-id": [ + "8b1dc53e-ce12-4aa9-8aea-d596187701b4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "257" + ], + "x-ms-correlation-request-id": [ + "247ad7ef-8fe0-4b5a-b184-e7df504d909e" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082422Z:247ad7ef-8fe0-4b5a-b184-e7df504d909e" + ], + "Date": [ + "Mon, 16 May 2022 08:24:21 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"9bbd6115-36cf-480a-8ae1-01508c912452\",\r\n \"name\": \"9bbd6115-36cf-480a-8ae1-01508c912452\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T08:24:21.3547412Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupOperations/9bbd6115-36cf-480a-8ae1-01508c912452?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvOWJiZDYxMTUtMzZjZi00ODBhLThhZTEtMDE1MDhjOTEyNDUyP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8b1dc53e-ce12-4aa9-8aea-d596187701b4" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "9663b2ad-e56d-4143-bdb2-9df6959e9b21" + ], + "x-ms-client-request-id": [ + "8b1dc53e-ce12-4aa9-8aea-d596187701b4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "256" + ], + "x-ms-correlation-request-id": [ + "9663b2ad-e56d-4143-bdb2-9df6959e9b21" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082423Z:9663b2ad-e56d-4143-bdb2-9df6959e9b21" + ], + "Date": [ + "Mon, 16 May 2022 08:24:22 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"9bbd6115-36cf-480a-8ae1-01508c912452\",\r\n \"name\": \"9bbd6115-36cf-480a-8ae1-01508c912452\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T08:24:21.3547412Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupOperations/9bbd6115-36cf-480a-8ae1-01508c912452?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvOWJiZDYxMTUtMzZjZi00ODBhLThhZTEtMDE1MDhjOTEyNDUyP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8b1dc53e-ce12-4aa9-8aea-d596187701b4" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "a8eaff23-6038-4dc7-8e12-2b705ce93571" + ], + "x-ms-client-request-id": [ + "8b1dc53e-ce12-4aa9-8aea-d596187701b4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "255" + ], + "x-ms-correlation-request-id": [ + "a8eaff23-6038-4dc7-8e12-2b705ce93571" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082423Z:a8eaff23-6038-4dc7-8e12-2b705ce93571" + ], + "Date": [ + "Mon, 16 May 2022 08:24:22 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"9bbd6115-36cf-480a-8ae1-01508c912452\",\r\n \"name\": \"9bbd6115-36cf-480a-8ae1-01508c912452\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T08:24:21.3547412Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupOperations/9bbd6115-36cf-480a-8ae1-01508c912452?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvOWJiZDYxMTUtMzZjZi00ODBhLThhZTEtMDE1MDhjOTEyNDUyP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8b1dc53e-ce12-4aa9-8aea-d596187701b4" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "34a075f3-6a0e-49b4-b9ef-e3f1c83f7d1f" + ], + "x-ms-client-request-id": [ + "8b1dc53e-ce12-4aa9-8aea-d596187701b4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "254" + ], + "x-ms-correlation-request-id": [ + "34a075f3-6a0e-49b4-b9ef-e3f1c83f7d1f" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082424Z:34a075f3-6a0e-49b4-b9ef-e3f1c83f7d1f" + ], + "Date": [ + "Mon, 16 May 2022 08:24:23 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"9bbd6115-36cf-480a-8ae1-01508c912452\",\r\n \"name\": \"9bbd6115-36cf-480a-8ae1-01508c912452\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T08:24:21.3547412Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupOperations/9bbd6115-36cf-480a-8ae1-01508c912452?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvOWJiZDYxMTUtMzZjZi00ODBhLThhZTEtMDE1MDhjOTEyNDUyP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8b1dc53e-ce12-4aa9-8aea-d596187701b4" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "a1b2a799-ae87-489c-9a7e-497fda9b84d0" + ], + "x-ms-client-request-id": [ + "8b1dc53e-ce12-4aa9-8aea-d596187701b4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "253" + ], + "x-ms-correlation-request-id": [ + "a1b2a799-ae87-489c-9a7e-497fda9b84d0" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082425Z:a1b2a799-ae87-489c-9a7e-497fda9b84d0" + ], + "Date": [ + "Mon, 16 May 2022 08:24:24 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"9bbd6115-36cf-480a-8ae1-01508c912452\",\r\n \"name\": \"9bbd6115-36cf-480a-8ae1-01508c912452\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T08:24:21.3547412Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupOperations/9bbd6115-36cf-480a-8ae1-01508c912452?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvOWJiZDYxMTUtMzZjZi00ODBhLThhZTEtMDE1MDhjOTEyNDUyP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8b1dc53e-ce12-4aa9-8aea-d596187701b4" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "db16d54f-885c-42ee-b4b2-3504ac6c600a" + ], + "x-ms-client-request-id": [ + "8b1dc53e-ce12-4aa9-8aea-d596187701b4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "252" + ], + "x-ms-correlation-request-id": [ + "db16d54f-885c-42ee-b4b2-3504ac6c600a" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082425Z:db16d54f-885c-42ee-b4b2-3504ac6c600a" + ], + "Date": [ + "Mon, 16 May 2022 08:24:25 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"9bbd6115-36cf-480a-8ae1-01508c912452\",\r\n \"name\": \"9bbd6115-36cf-480a-8ae1-01508c912452\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T08:24:21.3547412Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupOperations/9bbd6115-36cf-480a-8ae1-01508c912452?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvOWJiZDYxMTUtMzZjZi00ODBhLThhZTEtMDE1MDhjOTEyNDUyP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8b1dc53e-ce12-4aa9-8aea-d596187701b4" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "9505789c-1d49-4a1c-a2c4-49160c2b5a86" + ], + "x-ms-client-request-id": [ + "8b1dc53e-ce12-4aa9-8aea-d596187701b4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "251" + ], + "x-ms-correlation-request-id": [ + "9505789c-1d49-4a1c-a2c4-49160c2b5a86" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082426Z:9505789c-1d49-4a1c-a2c4-49160c2b5a86" + ], + "Date": [ + "Mon, 16 May 2022 08:24:25 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"9bbd6115-36cf-480a-8ae1-01508c912452\",\r\n \"name\": \"9bbd6115-36cf-480a-8ae1-01508c912452\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T08:24:21.3547412Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupOperations/9bbd6115-36cf-480a-8ae1-01508c912452?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvOWJiZDYxMTUtMzZjZi00ODBhLThhZTEtMDE1MDhjOTEyNDUyP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8b1dc53e-ce12-4aa9-8aea-d596187701b4" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "b5aaca61-065e-4055-bbaf-555189639ab1" + ], + "x-ms-client-request-id": [ + "8b1dc53e-ce12-4aa9-8aea-d596187701b4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "250" + ], + "x-ms-correlation-request-id": [ + "b5aaca61-065e-4055-bbaf-555189639ab1" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082427Z:b5aaca61-065e-4055-bbaf-555189639ab1" + ], + "Date": [ + "Mon, 16 May 2022 08:24:26 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"9bbd6115-36cf-480a-8ae1-01508c912452\",\r\n \"name\": \"9bbd6115-36cf-480a-8ae1-01508c912452\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T08:24:21.3547412Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupOperations/9bbd6115-36cf-480a-8ae1-01508c912452?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvOWJiZDYxMTUtMzZjZi00ODBhLThhZTEtMDE1MDhjOTEyNDUyP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8b1dc53e-ce12-4aa9-8aea-d596187701b4" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "1d8a5f83-6e1e-4e20-87c5-4c1c5edb65b4" + ], + "x-ms-client-request-id": [ + "8b1dc53e-ce12-4aa9-8aea-d596187701b4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "249" + ], + "x-ms-correlation-request-id": [ + "1d8a5f83-6e1e-4e20-87c5-4c1c5edb65b4" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082428Z:1d8a5f83-6e1e-4e20-87c5-4c1c5edb65b4" + ], + "Date": [ + "Mon, 16 May 2022 08:24:27 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"9bbd6115-36cf-480a-8ae1-01508c912452\",\r\n \"name\": \"9bbd6115-36cf-480a-8ae1-01508c912452\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T08:24:21.3547412Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupOperations/9bbd6115-36cf-480a-8ae1-01508c912452?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvOWJiZDYxMTUtMzZjZi00ODBhLThhZTEtMDE1MDhjOTEyNDUyP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8b1dc53e-ce12-4aa9-8aea-d596187701b4" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "467a6139-b211-4331-b19e-f852a83df23b" + ], + "x-ms-client-request-id": [ + "8b1dc53e-ce12-4aa9-8aea-d596187701b4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "248" + ], + "x-ms-correlation-request-id": [ + "467a6139-b211-4331-b19e-f852a83df23b" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082428Z:467a6139-b211-4331-b19e-f852a83df23b" + ], + "Date": [ + "Mon, 16 May 2022 08:24:27 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"9bbd6115-36cf-480a-8ae1-01508c912452\",\r\n \"name\": \"9bbd6115-36cf-480a-8ae1-01508c912452\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T08:24:21.3547412Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupOperations/9bbd6115-36cf-480a-8ae1-01508c912452?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvOWJiZDYxMTUtMzZjZi00ODBhLThhZTEtMDE1MDhjOTEyNDUyP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8b1dc53e-ce12-4aa9-8aea-d596187701b4" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "c93e87d5-3ff6-4aa1-ad7f-3a233a2624ad" + ], + "x-ms-client-request-id": [ + "8b1dc53e-ce12-4aa9-8aea-d596187701b4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "247" + ], + "x-ms-correlation-request-id": [ + "c93e87d5-3ff6-4aa1-ad7f-3a233a2624ad" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082429Z:c93e87d5-3ff6-4aa1-ad7f-3a233a2624ad" + ], + "Date": [ + "Mon, 16 May 2022 08:24:28 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"9bbd6115-36cf-480a-8ae1-01508c912452\",\r\n \"name\": \"9bbd6115-36cf-480a-8ae1-01508c912452\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T08:24:21.3547412Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupOperations/9bbd6115-36cf-480a-8ae1-01508c912452?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvOWJiZDYxMTUtMzZjZi00ODBhLThhZTEtMDE1MDhjOTEyNDUyP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8b1dc53e-ce12-4aa9-8aea-d596187701b4" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "d8f38107-13b7-492e-9510-2065659dd54d" + ], + "x-ms-client-request-id": [ + "8b1dc53e-ce12-4aa9-8aea-d596187701b4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "246" + ], + "x-ms-correlation-request-id": [ + "d8f38107-13b7-492e-9510-2065659dd54d" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082430Z:d8f38107-13b7-492e-9510-2065659dd54d" + ], + "Date": [ + "Mon, 16 May 2022 08:24:30 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"9bbd6115-36cf-480a-8ae1-01508c912452\",\r\n \"name\": \"9bbd6115-36cf-480a-8ae1-01508c912452\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T08:24:21.3547412Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupOperations/9bbd6115-36cf-480a-8ae1-01508c912452?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvOWJiZDYxMTUtMzZjZi00ODBhLThhZTEtMDE1MDhjOTEyNDUyP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8b1dc53e-ce12-4aa9-8aea-d596187701b4" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "519ca624-f039-43d7-a813-ce78974994b9" + ], + "x-ms-client-request-id": [ + "8b1dc53e-ce12-4aa9-8aea-d596187701b4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "245" + ], + "x-ms-correlation-request-id": [ + "519ca624-f039-43d7-a813-ce78974994b9" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082430Z:519ca624-f039-43d7-a813-ce78974994b9" + ], + "Date": [ + "Mon, 16 May 2022 08:24:30 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"9bbd6115-36cf-480a-8ae1-01508c912452\",\r\n \"name\": \"9bbd6115-36cf-480a-8ae1-01508c912452\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T08:24:21.3547412Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupOperations/9bbd6115-36cf-480a-8ae1-01508c912452?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvOWJiZDYxMTUtMzZjZi00ODBhLThhZTEtMDE1MDhjOTEyNDUyP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8b1dc53e-ce12-4aa9-8aea-d596187701b4" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "e1aeccbf-4b1f-4316-9c9e-9168ae91e6e4" + ], + "x-ms-client-request-id": [ + "8b1dc53e-ce12-4aa9-8aea-d596187701b4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "244" + ], + "x-ms-correlation-request-id": [ + "e1aeccbf-4b1f-4316-9c9e-9168ae91e6e4" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082431Z:e1aeccbf-4b1f-4316-9c9e-9168ae91e6e4" + ], + "Date": [ + "Mon, 16 May 2022 08:24:31 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"9bbd6115-36cf-480a-8ae1-01508c912452\",\r\n \"name\": \"9bbd6115-36cf-480a-8ae1-01508c912452\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T08:24:21.3547412Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupOperations/9bbd6115-36cf-480a-8ae1-01508c912452?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvOWJiZDYxMTUtMzZjZi00ODBhLThhZTEtMDE1MDhjOTEyNDUyP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8b1dc53e-ce12-4aa9-8aea-d596187701b4" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "37831ade-66c0-4524-bb3e-beda378c59bb" + ], + "x-ms-client-request-id": [ + "8b1dc53e-ce12-4aa9-8aea-d596187701b4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "243" + ], + "x-ms-correlation-request-id": [ + "37831ade-66c0-4524-bb3e-beda378c59bb" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082432Z:37831ade-66c0-4524-bb3e-beda378c59bb" + ], + "Date": [ + "Mon, 16 May 2022 08:24:32 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"9bbd6115-36cf-480a-8ae1-01508c912452\",\r\n \"name\": \"9bbd6115-36cf-480a-8ae1-01508c912452\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T08:24:21.3547412Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupOperations/9bbd6115-36cf-480a-8ae1-01508c912452?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvOWJiZDYxMTUtMzZjZi00ODBhLThhZTEtMDE1MDhjOTEyNDUyP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8b1dc53e-ce12-4aa9-8aea-d596187701b4" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "f2d45056-eb01-4062-a405-691c42ac9f7c" + ], + "x-ms-client-request-id": [ + "8b1dc53e-ce12-4aa9-8aea-d596187701b4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "242" + ], + "x-ms-correlation-request-id": [ + "f2d45056-eb01-4062-a405-691c42ac9f7c" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082432Z:f2d45056-eb01-4062-a405-691c42ac9f7c" + ], + "Date": [ + "Mon, 16 May 2022 08:24:32 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"9bbd6115-36cf-480a-8ae1-01508c912452\",\r\n \"name\": \"9bbd6115-36cf-480a-8ae1-01508c912452\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T08:24:21.3547412Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupOperations/9bbd6115-36cf-480a-8ae1-01508c912452?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvOWJiZDYxMTUtMzZjZi00ODBhLThhZTEtMDE1MDhjOTEyNDUyP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8b1dc53e-ce12-4aa9-8aea-d596187701b4" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "6988c08c-b521-4017-8b20-dfe130812062" + ], + "x-ms-client-request-id": [ + "8b1dc53e-ce12-4aa9-8aea-d596187701b4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "241" + ], + "x-ms-correlation-request-id": [ + "6988c08c-b521-4017-8b20-dfe130812062" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082433Z:6988c08c-b521-4017-8b20-dfe130812062" + ], + "Date": [ + "Mon, 16 May 2022 08:24:33 GMT" + ], + "Content-Length": [ + "304" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"9bbd6115-36cf-480a-8ae1-01508c912452\",\r\n \"name\": \"9bbd6115-36cf-480a-8ae1-01508c912452\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-05-16T08:24:21.3547412Z\",\r\n \"endTime\": \"2022-05-16T08:24:21.3547412Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"8602ed41-71ed-4c2c-a6b4-9ae4b19abc7f\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupOperations/9bbd6115-36cf-480a-8ae1-01508c912452?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvOWJiZDYxMTUtMzZjZi00ODBhLThhZTEtMDE1MDhjOTEyNDUyP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8b1dc53e-ce12-4aa9-8aea-d596187701b4" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "2b25ccc3-dfca-49ec-9d68-a6db8a69b9ae" + ], + "x-ms-client-request-id": [ + "8b1dc53e-ce12-4aa9-8aea-d596187701b4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "240" + ], + "x-ms-correlation-request-id": [ + "2b25ccc3-dfca-49ec-9d68-a6db8a69b9ae" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082434Z:2b25ccc3-dfca-49ec-9d68-a6db8a69b9ae" + ], + "Date": [ + "Mon, 16 May 2022 08:24:34 GMT" + ], + "Content-Length": [ + "304" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"9bbd6115-36cf-480a-8ae1-01508c912452\",\r\n \"name\": \"9bbd6115-36cf-480a-8ae1-01508c912452\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-05-16T08:24:21.3547412Z\",\r\n \"endTime\": \"2022-05-16T08:24:21.3547412Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"8602ed41-71ed-4c2c-a6b4-9ae4b19abc7f\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupJobs/8602ed41-71ed-4c2c-a6b4-9ae4b19abc7f?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cEpvYnMvODYwMmVkNDEtNzFlZC00YzJjLWE2YjQtOWFlNGIxOWFiYzdmP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8b1dc53e-ce12-4aa9-8aea-d596187701b4" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "4ff99b4f-6f82-4a45-9049-4d527b511bf4" + ], + "x-ms-client-request-id": [ + "8b1dc53e-ce12-4aa9-8aea-d596187701b4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "298" + ], + "x-ms-correlation-request-id": [ + "4ff99b4f-6f82-4a45-9049-4d527b511bf4" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082434Z:4ff99b4f-6f82-4a45-9049-4d527b511bf4" + ], + "Date": [ + "Mon, 16 May 2022 08:24:34 GMT" + ], + "Content-Length": [ + "818" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupJobs/8602ed41-71ed-4c2c-a6b4-9ae4b19abc7f\",\r\n \"name\": \"8602ed41-71ed-4c2c-a6b4-9ae4b19abc7f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiaganewvm2\",\r\n \"duration\": \"PT11.1188828S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"VM Name\": \"hiaganewVM2\",\r\n \"Policy Name\": \"mua-vm-lowerDailyRet\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"hiaganewVM2\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"ConfigureBackup\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-05-16T08:24:21.3547412Z\",\r\n \"endTime\": \"2022-05-16T08:24:32.473624Z\",\r\n \"activityId\": \"8b1dc53e-ce12-4aa9-8aea-d596187701b4\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupOperations/cc529e59-b717-4f3d-9532-86a81e390ee4?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvY2M1MjllNTktYjcxNy00ZjNkLTk1MzItODZhODFlMzkwZWU0P2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "84d1d34e-407a-4f50-b55b-12c944e3f31f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "482c1207-ca49-4479-9912-00c3903d15fc" + ], + "x-ms-client-request-id": [ + "84d1d34e-407a-4f50-b55b-12c944e3f31f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "239" + ], + "x-ms-correlation-request-id": [ + "482c1207-ca49-4479-9912-00c3903d15fc" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082439Z:482c1207-ca49-4479-9912-00c3903d15fc" + ], + "Date": [ + "Mon, 16 May 2022 08:24:39 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"cc529e59-b717-4f3d-9532-86a81e390ee4\",\r\n \"name\": \"cc529e59-b717-4f3d-9532-86a81e390ee4\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T08:24:38.9032419Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupOperations/cc529e59-b717-4f3d-9532-86a81e390ee4?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvY2M1MjllNTktYjcxNy00ZjNkLTk1MzItODZhODFlMzkwZWU0P2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "84d1d34e-407a-4f50-b55b-12c944e3f31f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "4c767964-5398-4d3b-8a28-1602dc7334cf" + ], + "x-ms-client-request-id": [ + "84d1d34e-407a-4f50-b55b-12c944e3f31f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "238" + ], + "x-ms-correlation-request-id": [ + "4c767964-5398-4d3b-8a28-1602dc7334cf" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082440Z:4c767964-5398-4d3b-8a28-1602dc7334cf" + ], + "Date": [ + "Mon, 16 May 2022 08:24:40 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"cc529e59-b717-4f3d-9532-86a81e390ee4\",\r\n \"name\": \"cc529e59-b717-4f3d-9532-86a81e390ee4\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T08:24:38.9032419Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupOperations/cc529e59-b717-4f3d-9532-86a81e390ee4?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvY2M1MjllNTktYjcxNy00ZjNkLTk1MzItODZhODFlMzkwZWU0P2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "84d1d34e-407a-4f50-b55b-12c944e3f31f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "6f00e0c4-8154-4f47-b3c2-5fe855b4258a" + ], + "x-ms-client-request-id": [ + "84d1d34e-407a-4f50-b55b-12c944e3f31f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "237" + ], + "x-ms-correlation-request-id": [ + "6f00e0c4-8154-4f47-b3c2-5fe855b4258a" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082441Z:6f00e0c4-8154-4f47-b3c2-5fe855b4258a" + ], + "Date": [ + "Mon, 16 May 2022 08:24:41 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"cc529e59-b717-4f3d-9532-86a81e390ee4\",\r\n \"name\": \"cc529e59-b717-4f3d-9532-86a81e390ee4\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T08:24:38.9032419Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupOperations/cc529e59-b717-4f3d-9532-86a81e390ee4?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvY2M1MjllNTktYjcxNy00ZjNkLTk1MzItODZhODFlMzkwZWU0P2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "84d1d34e-407a-4f50-b55b-12c944e3f31f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "9fd0184a-c449-4cee-a301-d14b75823e49" + ], + "x-ms-client-request-id": [ + "84d1d34e-407a-4f50-b55b-12c944e3f31f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "236" + ], + "x-ms-correlation-request-id": [ + "9fd0184a-c449-4cee-a301-d14b75823e49" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082441Z:9fd0184a-c449-4cee-a301-d14b75823e49" + ], + "Date": [ + "Mon, 16 May 2022 08:24:41 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"cc529e59-b717-4f3d-9532-86a81e390ee4\",\r\n \"name\": \"cc529e59-b717-4f3d-9532-86a81e390ee4\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T08:24:38.9032419Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupOperations/cc529e59-b717-4f3d-9532-86a81e390ee4?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvY2M1MjllNTktYjcxNy00ZjNkLTk1MzItODZhODFlMzkwZWU0P2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "84d1d34e-407a-4f50-b55b-12c944e3f31f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "639165e2-7281-4bb1-9456-c926b2036c94" + ], + "x-ms-client-request-id": [ + "84d1d34e-407a-4f50-b55b-12c944e3f31f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "235" + ], + "x-ms-correlation-request-id": [ + "639165e2-7281-4bb1-9456-c926b2036c94" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082442Z:639165e2-7281-4bb1-9456-c926b2036c94" + ], + "Date": [ + "Mon, 16 May 2022 08:24:42 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"cc529e59-b717-4f3d-9532-86a81e390ee4\",\r\n \"name\": \"cc529e59-b717-4f3d-9532-86a81e390ee4\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T08:24:38.9032419Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupOperations/cc529e59-b717-4f3d-9532-86a81e390ee4?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvY2M1MjllNTktYjcxNy00ZjNkLTk1MzItODZhODFlMzkwZWU0P2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "84d1d34e-407a-4f50-b55b-12c944e3f31f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "abf7cb24-dc09-48df-9940-7cc6528dd040" + ], + "x-ms-client-request-id": [ + "84d1d34e-407a-4f50-b55b-12c944e3f31f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "234" + ], + "x-ms-correlation-request-id": [ + "abf7cb24-dc09-48df-9940-7cc6528dd040" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082443Z:abf7cb24-dc09-48df-9940-7cc6528dd040" + ], + "Date": [ + "Mon, 16 May 2022 08:24:43 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"cc529e59-b717-4f3d-9532-86a81e390ee4\",\r\n \"name\": \"cc529e59-b717-4f3d-9532-86a81e390ee4\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T08:24:38.9032419Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupOperations/cc529e59-b717-4f3d-9532-86a81e390ee4?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvY2M1MjllNTktYjcxNy00ZjNkLTk1MzItODZhODFlMzkwZWU0P2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "84d1d34e-407a-4f50-b55b-12c944e3f31f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "a308d336-b3f6-4502-8270-2062d1abd573" + ], + "x-ms-client-request-id": [ + "84d1d34e-407a-4f50-b55b-12c944e3f31f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "233" + ], + "x-ms-correlation-request-id": [ + "a308d336-b3f6-4502-8270-2062d1abd573" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082443Z:a308d336-b3f6-4502-8270-2062d1abd573" + ], + "Date": [ + "Mon, 16 May 2022 08:24:43 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"cc529e59-b717-4f3d-9532-86a81e390ee4\",\r\n \"name\": \"cc529e59-b717-4f3d-9532-86a81e390ee4\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T08:24:38.9032419Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupOperations/cc529e59-b717-4f3d-9532-86a81e390ee4?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvY2M1MjllNTktYjcxNy00ZjNkLTk1MzItODZhODFlMzkwZWU0P2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "84d1d34e-407a-4f50-b55b-12c944e3f31f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "a5479908-4ef2-42d4-81c9-50e6f1361b11" + ], + "x-ms-client-request-id": [ + "84d1d34e-407a-4f50-b55b-12c944e3f31f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "232" + ], + "x-ms-correlation-request-id": [ + "a5479908-4ef2-42d4-81c9-50e6f1361b11" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082444Z:a5479908-4ef2-42d4-81c9-50e6f1361b11" + ], + "Date": [ + "Mon, 16 May 2022 08:24:44 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"cc529e59-b717-4f3d-9532-86a81e390ee4\",\r\n \"name\": \"cc529e59-b717-4f3d-9532-86a81e390ee4\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T08:24:38.9032419Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupOperations/cc529e59-b717-4f3d-9532-86a81e390ee4?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvY2M1MjllNTktYjcxNy00ZjNkLTk1MzItODZhODFlMzkwZWU0P2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "84d1d34e-407a-4f50-b55b-12c944e3f31f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "e3318f98-1631-4bce-9195-3753075c2fae" + ], + "x-ms-client-request-id": [ + "84d1d34e-407a-4f50-b55b-12c944e3f31f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "231" + ], + "x-ms-correlation-request-id": [ + "e3318f98-1631-4bce-9195-3753075c2fae" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082445Z:e3318f98-1631-4bce-9195-3753075c2fae" + ], + "Date": [ + "Mon, 16 May 2022 08:24:45 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"cc529e59-b717-4f3d-9532-86a81e390ee4\",\r\n \"name\": \"cc529e59-b717-4f3d-9532-86a81e390ee4\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T08:24:38.9032419Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupOperations/cc529e59-b717-4f3d-9532-86a81e390ee4?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvY2M1MjllNTktYjcxNy00ZjNkLTk1MzItODZhODFlMzkwZWU0P2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "84d1d34e-407a-4f50-b55b-12c944e3f31f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "b82db60f-af23-4c94-bd1e-51c60a9e1974" + ], + "x-ms-client-request-id": [ + "84d1d34e-407a-4f50-b55b-12c944e3f31f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "230" + ], + "x-ms-correlation-request-id": [ + "b82db60f-af23-4c94-bd1e-51c60a9e1974" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082446Z:b82db60f-af23-4c94-bd1e-51c60a9e1974" + ], + "Date": [ + "Mon, 16 May 2022 08:24:45 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"cc529e59-b717-4f3d-9532-86a81e390ee4\",\r\n \"name\": \"cc529e59-b717-4f3d-9532-86a81e390ee4\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T08:24:38.9032419Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupOperations/cc529e59-b717-4f3d-9532-86a81e390ee4?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvY2M1MjllNTktYjcxNy00ZjNkLTk1MzItODZhODFlMzkwZWU0P2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "84d1d34e-407a-4f50-b55b-12c944e3f31f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "b400f1a8-8dae-4d98-a73f-f632ac9e357b" + ], + "x-ms-client-request-id": [ + "84d1d34e-407a-4f50-b55b-12c944e3f31f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "229" + ], + "x-ms-correlation-request-id": [ + "b400f1a8-8dae-4d98-a73f-f632ac9e357b" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082447Z:b400f1a8-8dae-4d98-a73f-f632ac9e357b" + ], + "Date": [ + "Mon, 16 May 2022 08:24:46 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"cc529e59-b717-4f3d-9532-86a81e390ee4\",\r\n \"name\": \"cc529e59-b717-4f3d-9532-86a81e390ee4\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T08:24:38.9032419Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupOperations/cc529e59-b717-4f3d-9532-86a81e390ee4?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvY2M1MjllNTktYjcxNy00ZjNkLTk1MzItODZhODFlMzkwZWU0P2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "84d1d34e-407a-4f50-b55b-12c944e3f31f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "06ae77f4-8816-4fe8-93cd-3b7b7290d5b2" + ], + "x-ms-client-request-id": [ + "84d1d34e-407a-4f50-b55b-12c944e3f31f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "228" + ], + "x-ms-correlation-request-id": [ + "06ae77f4-8816-4fe8-93cd-3b7b7290d5b2" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082447Z:06ae77f4-8816-4fe8-93cd-3b7b7290d5b2" + ], + "Date": [ + "Mon, 16 May 2022 08:24:47 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"cc529e59-b717-4f3d-9532-86a81e390ee4\",\r\n \"name\": \"cc529e59-b717-4f3d-9532-86a81e390ee4\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T08:24:38.9032419Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupOperations/cc529e59-b717-4f3d-9532-86a81e390ee4?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvY2M1MjllNTktYjcxNy00ZjNkLTk1MzItODZhODFlMzkwZWU0P2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "84d1d34e-407a-4f50-b55b-12c944e3f31f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "1934ed87-8eb7-4552-8ade-077ed5d2db69" + ], + "x-ms-client-request-id": [ + "84d1d34e-407a-4f50-b55b-12c944e3f31f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "227" + ], + "x-ms-correlation-request-id": [ + "1934ed87-8eb7-4552-8ade-077ed5d2db69" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082448Z:1934ed87-8eb7-4552-8ade-077ed5d2db69" + ], + "Date": [ + "Mon, 16 May 2022 08:24:48 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"cc529e59-b717-4f3d-9532-86a81e390ee4\",\r\n \"name\": \"cc529e59-b717-4f3d-9532-86a81e390ee4\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T08:24:38.9032419Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupOperations/cc529e59-b717-4f3d-9532-86a81e390ee4?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvY2M1MjllNTktYjcxNy00ZjNkLTk1MzItODZhODFlMzkwZWU0P2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "84d1d34e-407a-4f50-b55b-12c944e3f31f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "fd72e67d-7826-46e9-8608-21c81f546c1a" + ], + "x-ms-client-request-id": [ + "84d1d34e-407a-4f50-b55b-12c944e3f31f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "226" + ], + "x-ms-correlation-request-id": [ + "fd72e67d-7826-46e9-8608-21c81f546c1a" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082449Z:fd72e67d-7826-46e9-8608-21c81f546c1a" + ], + "Date": [ + "Mon, 16 May 2022 08:24:48 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"cc529e59-b717-4f3d-9532-86a81e390ee4\",\r\n \"name\": \"cc529e59-b717-4f3d-9532-86a81e390ee4\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T08:24:38.9032419Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupOperations/cc529e59-b717-4f3d-9532-86a81e390ee4?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvY2M1MjllNTktYjcxNy00ZjNkLTk1MzItODZhODFlMzkwZWU0P2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "84d1d34e-407a-4f50-b55b-12c944e3f31f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "8eb5d6ae-3914-45e6-ba71-6c3d150036da" + ], + "x-ms-client-request-id": [ + "84d1d34e-407a-4f50-b55b-12c944e3f31f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "225" + ], + "x-ms-correlation-request-id": [ + "8eb5d6ae-3914-45e6-ba71-6c3d150036da" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082449Z:8eb5d6ae-3914-45e6-ba71-6c3d150036da" + ], + "Date": [ + "Mon, 16 May 2022 08:24:49 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"cc529e59-b717-4f3d-9532-86a81e390ee4\",\r\n \"name\": \"cc529e59-b717-4f3d-9532-86a81e390ee4\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T08:24:38.9032419Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupOperations/cc529e59-b717-4f3d-9532-86a81e390ee4?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvY2M1MjllNTktYjcxNy00ZjNkLTk1MzItODZhODFlMzkwZWU0P2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "84d1d34e-407a-4f50-b55b-12c944e3f31f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "31af8dd3-301b-488e-848d-b1aa13e824b1" + ], + "x-ms-client-request-id": [ + "84d1d34e-407a-4f50-b55b-12c944e3f31f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "224" + ], + "x-ms-correlation-request-id": [ + "31af8dd3-301b-488e-848d-b1aa13e824b1" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082450Z:31af8dd3-301b-488e-848d-b1aa13e824b1" + ], + "Date": [ + "Mon, 16 May 2022 08:24:50 GMT" + ], + "Content-Length": [ + "304" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"cc529e59-b717-4f3d-9532-86a81e390ee4\",\r\n \"name\": \"cc529e59-b717-4f3d-9532-86a81e390ee4\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-05-16T08:24:38.9032419Z\",\r\n \"endTime\": \"2022-05-16T08:24:38.9032419Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"0b3a4c6d-25d3-4a1a-8d71-bf31adb6cf50\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupOperations/cc529e59-b717-4f3d-9532-86a81e390ee4?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvY2M1MjllNTktYjcxNy00ZjNkLTk1MzItODZhODFlMzkwZWU0P2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "84d1d34e-407a-4f50-b55b-12c944e3f31f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "68c12de3-b34c-4106-8716-4e57c31a4d4e" + ], + "x-ms-client-request-id": [ + "84d1d34e-407a-4f50-b55b-12c944e3f31f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "223" + ], + "x-ms-correlation-request-id": [ + "68c12de3-b34c-4106-8716-4e57c31a4d4e" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082451Z:68c12de3-b34c-4106-8716-4e57c31a4d4e" + ], + "Date": [ + "Mon, 16 May 2022 08:24:50 GMT" + ], + "Content-Length": [ + "304" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"cc529e59-b717-4f3d-9532-86a81e390ee4\",\r\n \"name\": \"cc529e59-b717-4f3d-9532-86a81e390ee4\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-05-16T08:24:38.9032419Z\",\r\n \"endTime\": \"2022-05-16T08:24:38.9032419Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"0b3a4c6d-25d3-4a1a-8d71-bf31adb6cf50\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupJobs/0b3a4c6d-25d3-4a1a-8d71-bf31adb6cf50?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cEpvYnMvMGIzYTRjNmQtMjVkMy00YTFhLThkNzEtYmYzMWFkYjZjZjUwP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "84d1d34e-407a-4f50-b55b-12c944e3f31f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "2d501c14-efd3-4583-8eec-50e04f963536" + ], + "x-ms-client-request-id": [ + "84d1d34e-407a-4f50-b55b-12c944e3f31f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "297" + ], + "x-ms-correlation-request-id": [ + "2d501c14-efd3-4583-8eec-50e04f963536" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082452Z:2d501c14-efd3-4583-8eec-50e04f963536" + ], + "Date": [ + "Mon, 16 May 2022 08:24:51 GMT" + ], + "Content-Length": [ + "812" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupJobs/0b3a4c6d-25d3-4a1a-8d71-bf31adb6cf50\",\r\n \"name\": \"0b3a4c6d-25d3-4a1a-8d71-bf31adb6cf50\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiaganewvm2\",\r\n \"duration\": \"PT10.8152694S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"VM Name\": \"hiaganewVM2\",\r\n \"Policy Name\": \"DefaultPolicy\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"hiaganewVM2\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"ConfigureBackup\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-05-16T08:24:38.9032419Z\",\r\n \"endTime\": \"2022-05-16T08:24:49.7185113Z\",\r\n \"activityId\": \"84d1d34e-407a-4f50-b55b-12c944e3f31f\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupconfig/vaultconfig?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cGNvbmZpZy92YXVsdGNvbmZpZz9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5a0675f8-2e0d-493f-8d9d-0e838279aafd" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "078a0c8e-adcd-43b5-9ff7-98024fd70cfe" + ], + "x-ms-client-request-id": [ + "5a0675f8-2e0d-493f-8d9d-0e838279aafd" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "299" + ], + "x-ms-correlation-request-id": [ + "078a0c8e-adcd-43b5-9ff7-98024fd70cfe" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082452Z:078a0c8e-adcd-43b5-9ff7-98024fd70cfe" + ], + "Date": [ + "Mon, 16 May 2022 08:24:52 GMT" + ], + "Content-Length": [ + "371" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/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/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupconfig/vaultconfig?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cGNvbmZpZy92YXVsdGNvbmZpZz9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1c2e49fa-8bda-4b1e-ac69-1ce97de072fd" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "b94313e3-14d2-49a6-b43d-0f1a964e7859" + ], + "x-ms-client-request-id": [ + "1c2e49fa-8bda-4b1e-ac69-1ce97de072fd" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "299" + ], + "x-ms-correlation-request-id": [ + "b94313e3-14d2-49a6-b43d-0f1a964e7859" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T082654Z:b94313e3-14d2-49a6-b43d-0f1a964e7859" + ], + "Date": [ + "Mon, 16 May 2022 08:26:53 GMT" + ], + "Content-Length": [ + "371" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/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/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupconfig/vaultconfig?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cGNvbmZpZy92YXVsdGNvbmZpZz9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "PATCH", + "RequestBody": "{\r\n \"properties\": {\r\n \"enhancedSecurityState\": \"Enabled\",\r\n \"softDeleteFeatureState\": \"Disabled\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5a0675f8-2e0d-493f-8d9d-0e838279aafd" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.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": [ + "4bd16b54-47ff-427a-aa45-2e3d5d10a5b2" + ], + "x-ms-client-request-id": [ + "5a0675f8-2e0d-493f-8d9d-0e838279aafd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1193" + ], + "x-ms-correlation-request-id": [ + "4bd16b54-47ff-427a-aa45-2e3d5d10a5b2" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082453Z:4bd16b54-47ff-427a-aa45-2e3d5d10a5b2" + ], + "Date": [ + "Mon, 16 May 2022 08:24:53 GMT" + ], + "Content-Length": [ + "371" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/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/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupconfig/vaultconfig?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cGNvbmZpZy92YXVsdGNvbmZpZz9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "PATCH", + "RequestBody": "{\r\n \"properties\": {\r\n \"enhancedSecurityState\": \"Enabled\",\r\n \"softDeleteFeatureState\": \"Enabled\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1c2e49fa-8bda-4b1e-ac69-1ce97de072fd" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "110" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "d54f8785-59f7-478d-92a8-7c546061f51a" + ], + "x-ms-client-request-id": [ + "1c2e49fa-8bda-4b1e-ac69-1ce97de072fd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "d54f8785-59f7-478d-92a8-7c546061f51a" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T082655Z:d54f8785-59f7-478d-92a8-7c546061f51a" + ], + "Date": [ + "Mon, 16 May 2022 08:26:54 GMT" + ], + "Content-Length": [ + "370" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/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/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupFabrics/Azure/protectionContainers/IaasVMContainer%3Biaasvmcontainerv2%3Bhiagarg%3Bhiaganewvm2/protectedItems/VM%3Biaasvmcontainerv2%3Bhiagarg%3Bhiaganewvm2/recoveryPoints?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cEZhYnJpY3MvQXp1cmUvcHJvdGVjdGlvbkNvbnRhaW5lcnMvSWFhc1ZNQ29udGFpbmVyJTNCaWFhc3ZtY29udGFpbmVydjIlM0JoaWFnYXJnJTNCaGlhZ2FuZXd2bTIvcHJvdGVjdGVkSXRlbXMvVk0lM0JpYWFzdm1jb250YWluZXJ2MiUzQmhpYWdhcmclM0JoaWFnYW5ld3ZtMi9yZWNvdmVyeVBvaW50cz9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "7c101667-09ab-421a-ab9f-6846601b0b21" + ], + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "299" + ], + "x-ms-correlation-request-id": [ + "7c101667-09ab-421a-ab9f-6846601b0b21" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082454Z:7c101667-09ab-421a-ab9f-6846601b0b21" + ], + "Date": [ + "Mon, 16 May 2022 08:24:53 GMT" + ], + "Content-Length": [ + "12" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupResourceGuardProxies/VaultProxy/unlockDelete?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cFJlc291cmNlR3VhcmRQcm94aWVzL1ZhdWx0UHJveHkvdW5sb2NrRGVsZXRlP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"resourceGuardOperationRequests\": [\r\n \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm-pstest-rg/providers/Microsoft.DataProtection/resourceGuards/mua-pstest-rguard/deleteProtectedItemRequests/default\"\r\n ],\r\n \"resourceToBeDeleted\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;hiagarg;hiaganewvm2/protectedItems/VM;iaasvmcontainerv2;hiagarg;hiaganewvm2\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "559" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "3c3f182e-fbed-4b58-aee2-f7ce6f9d7095" + ], + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "3c3f182e-fbed-4b58-aee2-f7ce6f9d7095" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082455Z:3c3f182e-fbed-4b58-aee2-f7ce6f9d7095" + ], + "Date": [ + "Mon, 16 May 2022 08:24:55 GMT" + ], + "Content-Length": [ + "57" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"unlockDeleteExpiryTime\": \"2022-05-16T08:54:55.8273533Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupResourceGuardProxies/VaultProxy/unlockDelete?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cFJlc291cmNlR3VhcmRQcm94aWVzL1ZhdWx0UHJveHkvdW5sb2NrRGVsZXRlP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"resourceGuardOperationRequests\": [\r\n \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm-pstest-rg/providers/Microsoft.DataProtection/resourceGuards/mua-pstest-rguard/deleteResourceGuardProxyRequests/default\"\r\n ]\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "97dc07a3-c1f3-4c43-aec2-391edbd62a5c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "248" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "16291898-b581-40bb-9387-ae0d65e22e99" + ], + "x-ms-client-request-id": [ + "97dc07a3-c1f3-4c43-aec2-391edbd62a5c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "16291898-b581-40bb-9387-ae0d65e22e99" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T082652Z:16291898-b581-40bb-9387-ae0d65e22e99" + ], + "Date": [ + "Mon, 16 May 2022 08:26:51 GMT" + ], + "Content-Length": [ + "57" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"unlockDeleteExpiryTime\": \"2022-05-16T08:56:51.8878166Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupFabrics/Azure/protectionContainers/IaasVMContainer%3Biaasvmcontainerv2%3Bhiagarg%3Bhiaganewvm2/protectedItems/VM%3Biaasvmcontainerv2%3Bhiagarg%3Bhiaganewvm2?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cEZhYnJpY3MvQXp1cmUvcHJvdGVjdGlvbkNvbnRhaW5lcnMvSWFhc1ZNQ29udGFpbmVyJTNCaWFhc3ZtY29udGFpbmVydjIlM0JoaWFnYXJnJTNCaGlhZ2FuZXd2bTIvcHJvdGVjdGVkSXRlbXMvVk0lM0JpYWFzdm1jb250YWluZXJ2MiUzQmhpYWdhcmclM0JoaWFnYW5ld3ZtMj9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupOperationResults/4ca7f95b-98a3-45bd-a43e-af6db09764cc?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupOperations/4ca7f95b-98a3-45bd-a43e-af6db09764cc?api-version=2022-02-01" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "5dee943a-5b22-456f-86b8-70b27cdda1f4" + ], + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-correlation-request-id": [ + "5dee943a-5b22-456f-86b8-70b27cdda1f4" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082456Z:5dee943a-5b22-456f-86b8-70b27cdda1f4" + ], + "Date": [ + "Mon, 16 May 2022 08:24:56 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupOperations/4ca7f95b-98a3-45bd-a43e-af6db09764cc?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvNGNhN2Y5NWItOThhMy00NWJkLWE0M2UtYWY2ZGIwOTc2NGNjP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "fbf58692-37f6-4b68-86bb-6e8545d441de" + ], + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "222" + ], + "x-ms-correlation-request-id": [ + "fbf58692-37f6-4b68-86bb-6e8545d441de" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082457Z:fbf58692-37f6-4b68-86bb-6e8545d441de" + ], + "Date": [ + "Mon, 16 May 2022 08:24:56 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"name\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T08:24:56.6582175Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupOperations/4ca7f95b-98a3-45bd-a43e-af6db09764cc?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvNGNhN2Y5NWItOThhMy00NWJkLWE0M2UtYWY2ZGIwOTc2NGNjP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "52696a8c-d43b-4672-860b-15afa27ea0a3" + ], + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "221" + ], + "x-ms-correlation-request-id": [ + "52696a8c-d43b-4672-860b-15afa27ea0a3" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082458Z:52696a8c-d43b-4672-860b-15afa27ea0a3" + ], + "Date": [ + "Mon, 16 May 2022 08:24:57 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"name\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T08:24:56.6582175Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupOperations/4ca7f95b-98a3-45bd-a43e-af6db09764cc?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvNGNhN2Y5NWItOThhMy00NWJkLWE0M2UtYWY2ZGIwOTc2NGNjP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "3b04544c-d01c-4b0b-a3ce-3a0cab49a6d5" + ], + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "220" + ], + "x-ms-correlation-request-id": [ + "3b04544c-d01c-4b0b-a3ce-3a0cab49a6d5" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082458Z:3b04544c-d01c-4b0b-a3ce-3a0cab49a6d5" + ], + "Date": [ + "Mon, 16 May 2022 08:24:58 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"name\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T08:24:56.6582175Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupOperations/4ca7f95b-98a3-45bd-a43e-af6db09764cc?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvNGNhN2Y5NWItOThhMy00NWJkLWE0M2UtYWY2ZGIwOTc2NGNjP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "1d80ae0f-6b4c-4541-9d8e-71cf4b0fdb69" + ], + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "219" + ], + "x-ms-correlation-request-id": [ + "1d80ae0f-6b4c-4541-9d8e-71cf4b0fdb69" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082459Z:1d80ae0f-6b4c-4541-9d8e-71cf4b0fdb69" + ], + "Date": [ + "Mon, 16 May 2022 08:24:58 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"name\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T08:24:56.6582175Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupOperations/4ca7f95b-98a3-45bd-a43e-af6db09764cc?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvNGNhN2Y5NWItOThhMy00NWJkLWE0M2UtYWY2ZGIwOTc2NGNjP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "3dc8e9bc-832b-46f2-b71f-9697a2930d33" + ], + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "218" + ], + "x-ms-correlation-request-id": [ + "3dc8e9bc-832b-46f2-b71f-9697a2930d33" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082500Z:3dc8e9bc-832b-46f2-b71f-9697a2930d33" + ], + "Date": [ + "Mon, 16 May 2022 08:24:59 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"name\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T08:24:56.6582175Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupOperations/4ca7f95b-98a3-45bd-a43e-af6db09764cc?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvNGNhN2Y5NWItOThhMy00NWJkLWE0M2UtYWY2ZGIwOTc2NGNjP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "743ae451-3d8e-40e6-88b4-6478dbb39062" + ], + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "217" + ], + "x-ms-correlation-request-id": [ + "743ae451-3d8e-40e6-88b4-6478dbb39062" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082500Z:743ae451-3d8e-40e6-88b4-6478dbb39062" + ], + "Date": [ + "Mon, 16 May 2022 08:25:00 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"name\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T08:24:56.6582175Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupOperations/4ca7f95b-98a3-45bd-a43e-af6db09764cc?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvNGNhN2Y5NWItOThhMy00NWJkLWE0M2UtYWY2ZGIwOTc2NGNjP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "81dca3c3-e497-4a7c-b7a3-a4e73be78c58" + ], + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "216" + ], + "x-ms-correlation-request-id": [ + "81dca3c3-e497-4a7c-b7a3-a4e73be78c58" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082501Z:81dca3c3-e497-4a7c-b7a3-a4e73be78c58" + ], + "Date": [ + "Mon, 16 May 2022 08:25:00 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"name\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T08:24:56.6582175Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupOperations/4ca7f95b-98a3-45bd-a43e-af6db09764cc?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvNGNhN2Y5NWItOThhMy00NWJkLWE0M2UtYWY2ZGIwOTc2NGNjP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "a53817ad-a234-4243-9e25-51888fcc39df" + ], + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "215" + ], + "x-ms-correlation-request-id": [ + "a53817ad-a234-4243-9e25-51888fcc39df" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082501Z:a53817ad-a234-4243-9e25-51888fcc39df" + ], + "Date": [ + "Mon, 16 May 2022 08:25:01 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"name\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T08:24:56.6582175Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupOperations/4ca7f95b-98a3-45bd-a43e-af6db09764cc?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvNGNhN2Y5NWItOThhMy00NWJkLWE0M2UtYWY2ZGIwOTc2NGNjP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "8516d80c-0b25-45d9-aaa2-36b7cecefc80" + ], + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "214" + ], + "x-ms-correlation-request-id": [ + "8516d80c-0b25-45d9-aaa2-36b7cecefc80" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082502Z:8516d80c-0b25-45d9-aaa2-36b7cecefc80" + ], + "Date": [ + "Mon, 16 May 2022 08:25:01 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"name\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T08:24:56.6582175Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupOperations/4ca7f95b-98a3-45bd-a43e-af6db09764cc?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvNGNhN2Y5NWItOThhMy00NWJkLWE0M2UtYWY2ZGIwOTc2NGNjP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "3d7a8e38-e46e-4941-894d-ef51c382f7cf" + ], + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "213" + ], + "x-ms-correlation-request-id": [ + "3d7a8e38-e46e-4941-894d-ef51c382f7cf" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082503Z:3d7a8e38-e46e-4941-894d-ef51c382f7cf" + ], + "Date": [ + "Mon, 16 May 2022 08:25:02 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"name\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T08:24:56.6582175Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupOperations/4ca7f95b-98a3-45bd-a43e-af6db09764cc?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvNGNhN2Y5NWItOThhMy00NWJkLWE0M2UtYWY2ZGIwOTc2NGNjP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "90d8ddcb-a47e-4611-9a31-7d2cd4763b10" + ], + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "212" + ], + "x-ms-correlation-request-id": [ + "90d8ddcb-a47e-4611-9a31-7d2cd4763b10" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082504Z:90d8ddcb-a47e-4611-9a31-7d2cd4763b10" + ], + "Date": [ + "Mon, 16 May 2022 08:25:03 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"name\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T08:24:56.6582175Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupOperations/4ca7f95b-98a3-45bd-a43e-af6db09764cc?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvNGNhN2Y5NWItOThhMy00NWJkLWE0M2UtYWY2ZGIwOTc2NGNjP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "d0b2ced6-5caf-4bdb-b2ca-198bfd016d5c" + ], + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "211" + ], + "x-ms-correlation-request-id": [ + "d0b2ced6-5caf-4bdb-b2ca-198bfd016d5c" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082504Z:d0b2ced6-5caf-4bdb-b2ca-198bfd016d5c" + ], + "Date": [ + "Mon, 16 May 2022 08:25:04 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"name\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T08:24:56.6582175Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupOperations/4ca7f95b-98a3-45bd-a43e-af6db09764cc?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvNGNhN2Y5NWItOThhMy00NWJkLWE0M2UtYWY2ZGIwOTc2NGNjP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "3dd37df6-cffd-4839-9f8e-558edfcd027b" + ], + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "210" + ], + "x-ms-correlation-request-id": [ + "3dd37df6-cffd-4839-9f8e-558edfcd027b" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082505Z:3dd37df6-cffd-4839-9f8e-558edfcd027b" + ], + "Date": [ + "Mon, 16 May 2022 08:25:04 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"name\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T08:24:56.6582175Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupOperations/4ca7f95b-98a3-45bd-a43e-af6db09764cc?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvNGNhN2Y5NWItOThhMy00NWJkLWE0M2UtYWY2ZGIwOTc2NGNjP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "912d3293-2d48-4097-a772-b2e77d7ed956" + ], + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "209" + ], + "x-ms-correlation-request-id": [ + "912d3293-2d48-4097-a772-b2e77d7ed956" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082506Z:912d3293-2d48-4097-a772-b2e77d7ed956" + ], + "Date": [ + "Mon, 16 May 2022 08:25:05 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"name\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T08:24:56.6582175Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupOperations/4ca7f95b-98a3-45bd-a43e-af6db09764cc?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvNGNhN2Y5NWItOThhMy00NWJkLWE0M2UtYWY2ZGIwOTc2NGNjP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "e1a63634-d44f-41bf-af41-5efc6ac4461f" + ], + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "208" + ], + "x-ms-correlation-request-id": [ + "e1a63634-d44f-41bf-af41-5efc6ac4461f" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082506Z:e1a63634-d44f-41bf-af41-5efc6ac4461f" + ], + "Date": [ + "Mon, 16 May 2022 08:25:06 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"name\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T08:24:56.6582175Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupOperations/4ca7f95b-98a3-45bd-a43e-af6db09764cc?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvNGNhN2Y5NWItOThhMy00NWJkLWE0M2UtYWY2ZGIwOTc2NGNjP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "5502f3ce-9cd4-4ee3-a2b7-c6550f1e8ed2" + ], + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "207" + ], + "x-ms-correlation-request-id": [ + "5502f3ce-9cd4-4ee3-a2b7-c6550f1e8ed2" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082507Z:5502f3ce-9cd4-4ee3-a2b7-c6550f1e8ed2" + ], + "Date": [ + "Mon, 16 May 2022 08:25:06 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"name\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T08:24:56.6582175Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupOperations/4ca7f95b-98a3-45bd-a43e-af6db09764cc?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvNGNhN2Y5NWItOThhMy00NWJkLWE0M2UtYWY2ZGIwOTc2NGNjP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "438f8799-a38d-440b-ab82-dd99eb028baa" + ], + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "206" + ], + "x-ms-correlation-request-id": [ + "438f8799-a38d-440b-ab82-dd99eb028baa" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082508Z:438f8799-a38d-440b-ab82-dd99eb028baa" + ], + "Date": [ + "Mon, 16 May 2022 08:25:07 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"name\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T08:24:56.6582175Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupOperations/4ca7f95b-98a3-45bd-a43e-af6db09764cc?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvNGNhN2Y5NWItOThhMy00NWJkLWE0M2UtYWY2ZGIwOTc2NGNjP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "dddffb45-5cc7-439b-ab9d-8a49e6baec42" + ], + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "205" + ], + "x-ms-correlation-request-id": [ + "dddffb45-5cc7-439b-ab9d-8a49e6baec42" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082508Z:dddffb45-5cc7-439b-ab9d-8a49e6baec42" + ], + "Date": [ + "Mon, 16 May 2022 08:25:08 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"name\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T08:24:56.6582175Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupOperations/4ca7f95b-98a3-45bd-a43e-af6db09764cc?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvNGNhN2Y5NWItOThhMy00NWJkLWE0M2UtYWY2ZGIwOTc2NGNjP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "fbaca0d4-4c69-4bed-8def-9ebd7b72ac65" + ], + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "204" + ], + "x-ms-correlation-request-id": [ + "fbaca0d4-4c69-4bed-8def-9ebd7b72ac65" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082509Z:fbaca0d4-4c69-4bed-8def-9ebd7b72ac65" + ], + "Date": [ + "Mon, 16 May 2022 08:25:08 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"name\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T08:24:56.6582175Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupOperations/4ca7f95b-98a3-45bd-a43e-af6db09764cc?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvNGNhN2Y5NWItOThhMy00NWJkLWE0M2UtYWY2ZGIwOTc2NGNjP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "b31e97e0-77c7-4d9b-91ec-7a1dc050940e" + ], + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "203" + ], + "x-ms-correlation-request-id": [ + "b31e97e0-77c7-4d9b-91ec-7a1dc050940e" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082510Z:b31e97e0-77c7-4d9b-91ec-7a1dc050940e" + ], + "Date": [ + "Mon, 16 May 2022 08:25:09 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"name\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T08:24:56.6582175Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupOperations/4ca7f95b-98a3-45bd-a43e-af6db09764cc?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvNGNhN2Y5NWItOThhMy00NWJkLWE0M2UtYWY2ZGIwOTc2NGNjP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "a3a94f09-527c-4f5c-b7d2-8f19ac5224be" + ], + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "202" + ], + "x-ms-correlation-request-id": [ + "a3a94f09-527c-4f5c-b7d2-8f19ac5224be" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082510Z:a3a94f09-527c-4f5c-b7d2-8f19ac5224be" + ], + "Date": [ + "Mon, 16 May 2022 08:25:10 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"name\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T08:24:56.6582175Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupOperations/4ca7f95b-98a3-45bd-a43e-af6db09764cc?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvNGNhN2Y5NWItOThhMy00NWJkLWE0M2UtYWY2ZGIwOTc2NGNjP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "79a269ef-e01f-4154-b0e1-3b5649db8ee9" + ], + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "201" + ], + "x-ms-correlation-request-id": [ + "79a269ef-e01f-4154-b0e1-3b5649db8ee9" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082511Z:79a269ef-e01f-4154-b0e1-3b5649db8ee9" + ], + "Date": [ + "Mon, 16 May 2022 08:25:10 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"name\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T08:24:56.6582175Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupOperations/4ca7f95b-98a3-45bd-a43e-af6db09764cc?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvNGNhN2Y5NWItOThhMy00NWJkLWE0M2UtYWY2ZGIwOTc2NGNjP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "e77d7fc1-ad3f-4294-84f4-f1d3643a12b5" + ], + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "200" + ], + "x-ms-correlation-request-id": [ + "e77d7fc1-ad3f-4294-84f4-f1d3643a12b5" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082512Z:e77d7fc1-ad3f-4294-84f4-f1d3643a12b5" + ], + "Date": [ + "Mon, 16 May 2022 08:25:11 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"name\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T08:24:56.6582175Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupOperations/4ca7f95b-98a3-45bd-a43e-af6db09764cc?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvNGNhN2Y5NWItOThhMy00NWJkLWE0M2UtYWY2ZGIwOTc2NGNjP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "09414606-9d84-4ee6-8f3c-6e10b1298e8d" + ], + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "199" + ], + "x-ms-correlation-request-id": [ + "09414606-9d84-4ee6-8f3c-6e10b1298e8d" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082513Z:09414606-9d84-4ee6-8f3c-6e10b1298e8d" + ], + "Date": [ + "Mon, 16 May 2022 08:25:12 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"name\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T08:24:56.6582175Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupOperations/4ca7f95b-98a3-45bd-a43e-af6db09764cc?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvNGNhN2Y5NWItOThhMy00NWJkLWE0M2UtYWY2ZGIwOTc2NGNjP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "15e9a7d7-6ebf-41a1-8d44-f3ade970ab10" + ], + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "198" + ], + "x-ms-correlation-request-id": [ + "15e9a7d7-6ebf-41a1-8d44-f3ade970ab10" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082513Z:15e9a7d7-6ebf-41a1-8d44-f3ade970ab10" + ], + "Date": [ + "Mon, 16 May 2022 08:25:12 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"name\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T08:24:56.6582175Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupOperations/4ca7f95b-98a3-45bd-a43e-af6db09764cc?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvNGNhN2Y5NWItOThhMy00NWJkLWE0M2UtYWY2ZGIwOTc2NGNjP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "21116be5-c08d-4cb6-a887-8d2c3d6f62c6" + ], + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "197" + ], + "x-ms-correlation-request-id": [ + "21116be5-c08d-4cb6-a887-8d2c3d6f62c6" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082514Z:21116be5-c08d-4cb6-a887-8d2c3d6f62c6" + ], + "Date": [ + "Mon, 16 May 2022 08:25:13 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"name\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T08:24:56.6582175Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupOperations/4ca7f95b-98a3-45bd-a43e-af6db09764cc?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvNGNhN2Y5NWItOThhMy00NWJkLWE0M2UtYWY2ZGIwOTc2NGNjP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "74ffbbcf-7fd9-444c-8f14-534fb3afe55c" + ], + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "196" + ], + "x-ms-correlation-request-id": [ + "74ffbbcf-7fd9-444c-8f14-534fb3afe55c" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082515Z:74ffbbcf-7fd9-444c-8f14-534fb3afe55c" + ], + "Date": [ + "Mon, 16 May 2022 08:25:14 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"name\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T08:24:56.6582175Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupOperations/4ca7f95b-98a3-45bd-a43e-af6db09764cc?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvNGNhN2Y5NWItOThhMy00NWJkLWE0M2UtYWY2ZGIwOTc2NGNjP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "8db487be-2d99-4a2a-9d55-49e7df995665" + ], + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "195" + ], + "x-ms-correlation-request-id": [ + "8db487be-2d99-4a2a-9d55-49e7df995665" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082515Z:8db487be-2d99-4a2a-9d55-49e7df995665" + ], + "Date": [ + "Mon, 16 May 2022 08:25:14 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"name\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T08:24:56.6582175Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupOperations/4ca7f95b-98a3-45bd-a43e-af6db09764cc?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvNGNhN2Y5NWItOThhMy00NWJkLWE0M2UtYWY2ZGIwOTc2NGNjP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "d08fe31c-caeb-490b-9919-e44cc7405974" + ], + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "194" + ], + "x-ms-correlation-request-id": [ + "d08fe31c-caeb-490b-9919-e44cc7405974" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082516Z:d08fe31c-caeb-490b-9919-e44cc7405974" + ], + "Date": [ + "Mon, 16 May 2022 08:25:15 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"name\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T08:24:56.6582175Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupOperations/4ca7f95b-98a3-45bd-a43e-af6db09764cc?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvNGNhN2Y5NWItOThhMy00NWJkLWE0M2UtYWY2ZGIwOTc2NGNjP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "a258a8e5-7774-48ba-9143-cdb9cd267cbb" + ], + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "193" + ], + "x-ms-correlation-request-id": [ + "a258a8e5-7774-48ba-9143-cdb9cd267cbb" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082516Z:a258a8e5-7774-48ba-9143-cdb9cd267cbb" + ], + "Date": [ + "Mon, 16 May 2022 08:25:16 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"name\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T08:24:56.6582175Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupOperations/4ca7f95b-98a3-45bd-a43e-af6db09764cc?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvNGNhN2Y5NWItOThhMy00NWJkLWE0M2UtYWY2ZGIwOTc2NGNjP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "bc6aa57e-7bcb-476e-8c18-1a43e9d48439" + ], + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "192" + ], + "x-ms-correlation-request-id": [ + "bc6aa57e-7bcb-476e-8c18-1a43e9d48439" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082517Z:bc6aa57e-7bcb-476e-8c18-1a43e9d48439" + ], + "Date": [ + "Mon, 16 May 2022 08:25:16 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"name\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T08:24:56.6582175Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupOperations/4ca7f95b-98a3-45bd-a43e-af6db09764cc?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvNGNhN2Y5NWItOThhMy00NWJkLWE0M2UtYWY2ZGIwOTc2NGNjP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "291764a6-06c4-4747-97c9-c78b64a19849" + ], + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "191" + ], + "x-ms-correlation-request-id": [ + "291764a6-06c4-4747-97c9-c78b64a19849" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082518Z:291764a6-06c4-4747-97c9-c78b64a19849" + ], + "Date": [ + "Mon, 16 May 2022 08:25:17 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"name\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T08:24:56.6582175Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupOperations/4ca7f95b-98a3-45bd-a43e-af6db09764cc?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvNGNhN2Y5NWItOThhMy00NWJkLWE0M2UtYWY2ZGIwOTc2NGNjP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "3917cfd0-082e-45e6-9fcd-ee605a48cd04" + ], + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "190" + ], + "x-ms-correlation-request-id": [ + "3917cfd0-082e-45e6-9fcd-ee605a48cd04" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082518Z:3917cfd0-082e-45e6-9fcd-ee605a48cd04" + ], + "Date": [ + "Mon, 16 May 2022 08:25:17 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"name\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T08:24:56.6582175Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupOperations/4ca7f95b-98a3-45bd-a43e-af6db09764cc?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvNGNhN2Y5NWItOThhMy00NWJkLWE0M2UtYWY2ZGIwOTc2NGNjP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "a788cde8-123e-4720-8ab0-b9fa42b4a5c3" + ], + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "189" + ], + "x-ms-correlation-request-id": [ + "a788cde8-123e-4720-8ab0-b9fa42b4a5c3" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082519Z:a788cde8-123e-4720-8ab0-b9fa42b4a5c3" + ], + "Date": [ + "Mon, 16 May 2022 08:25:18 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"name\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T08:24:56.6582175Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupOperations/4ca7f95b-98a3-45bd-a43e-af6db09764cc?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvNGNhN2Y5NWItOThhMy00NWJkLWE0M2UtYWY2ZGIwOTc2NGNjP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "2738413a-38c9-461a-a28e-b2031556c2de" + ], + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "188" + ], + "x-ms-correlation-request-id": [ + "2738413a-38c9-461a-a28e-b2031556c2de" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082520Z:2738413a-38c9-461a-a28e-b2031556c2de" + ], + "Date": [ + "Mon, 16 May 2022 08:25:19 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"name\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T08:24:56.6582175Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupOperations/4ca7f95b-98a3-45bd-a43e-af6db09764cc?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvNGNhN2Y5NWItOThhMy00NWJkLWE0M2UtYWY2ZGIwOTc2NGNjP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "16a975a3-2878-4bf1-b366-be9286879abe" + ], + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "187" + ], + "x-ms-correlation-request-id": [ + "16a975a3-2878-4bf1-b366-be9286879abe" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082521Z:16a975a3-2878-4bf1-b366-be9286879abe" + ], + "Date": [ + "Mon, 16 May 2022 08:25:20 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"name\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T08:24:56.6582175Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupOperations/4ca7f95b-98a3-45bd-a43e-af6db09764cc?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvNGNhN2Y5NWItOThhMy00NWJkLWE0M2UtYWY2ZGIwOTc2NGNjP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "cfcd39ac-0c6b-47f7-ac6a-e4d5bc350f0d" + ], + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "186" + ], + "x-ms-correlation-request-id": [ + "cfcd39ac-0c6b-47f7-ac6a-e4d5bc350f0d" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082522Z:cfcd39ac-0c6b-47f7-ac6a-e4d5bc350f0d" + ], + "Date": [ + "Mon, 16 May 2022 08:25:22 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"name\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T08:24:56.6582175Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupOperations/4ca7f95b-98a3-45bd-a43e-af6db09764cc?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvNGNhN2Y5NWItOThhMy00NWJkLWE0M2UtYWY2ZGIwOTc2NGNjP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "81aeca49-0d60-45bf-9b39-f1a3fdd03eb5" + ], + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "185" + ], + "x-ms-correlation-request-id": [ + "81aeca49-0d60-45bf-9b39-f1a3fdd03eb5" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082522Z:81aeca49-0d60-45bf-9b39-f1a3fdd03eb5" + ], + "Date": [ + "Mon, 16 May 2022 08:25:22 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"name\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T08:24:56.6582175Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupOperations/4ca7f95b-98a3-45bd-a43e-af6db09764cc?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvNGNhN2Y5NWItOThhMy00NWJkLWE0M2UtYWY2ZGIwOTc2NGNjP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "924d4e3e-44df-4586-954e-c02a50ce0c2b" + ], + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "184" + ], + "x-ms-correlation-request-id": [ + "924d4e3e-44df-4586-954e-c02a50ce0c2b" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082523Z:924d4e3e-44df-4586-954e-c02a50ce0c2b" + ], + "Date": [ + "Mon, 16 May 2022 08:25:23 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"name\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T08:24:56.6582175Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupOperations/4ca7f95b-98a3-45bd-a43e-af6db09764cc?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvNGNhN2Y5NWItOThhMy00NWJkLWE0M2UtYWY2ZGIwOTc2NGNjP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "8b95a28f-a9fe-4b1b-b469-7fa5aaff6c3c" + ], + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "183" + ], + "x-ms-correlation-request-id": [ + "8b95a28f-a9fe-4b1b-b469-7fa5aaff6c3c" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082524Z:8b95a28f-a9fe-4b1b-b469-7fa5aaff6c3c" + ], + "Date": [ + "Mon, 16 May 2022 08:25:24 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"name\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T08:24:56.6582175Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupOperations/4ca7f95b-98a3-45bd-a43e-af6db09764cc?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvNGNhN2Y5NWItOThhMy00NWJkLWE0M2UtYWY2ZGIwOTc2NGNjP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "25faa43c-2a03-4a89-a409-49b4e0fcc677" + ], + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "182" + ], + "x-ms-correlation-request-id": [ + "25faa43c-2a03-4a89-a409-49b4e0fcc677" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082524Z:25faa43c-2a03-4a89-a409-49b4e0fcc677" + ], + "Date": [ + "Mon, 16 May 2022 08:25:24 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"name\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T08:24:56.6582175Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupOperations/4ca7f95b-98a3-45bd-a43e-af6db09764cc?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvNGNhN2Y5NWItOThhMy00NWJkLWE0M2UtYWY2ZGIwOTc2NGNjP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "d4b8ffe0-869f-4aaf-b559-dc24814f4ec2" + ], + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "181" + ], + "x-ms-correlation-request-id": [ + "d4b8ffe0-869f-4aaf-b559-dc24814f4ec2" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082525Z:d4b8ffe0-869f-4aaf-b559-dc24814f4ec2" + ], + "Date": [ + "Mon, 16 May 2022 08:25:25 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"name\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T08:24:56.6582175Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupOperations/4ca7f95b-98a3-45bd-a43e-af6db09764cc?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvNGNhN2Y5NWItOThhMy00NWJkLWE0M2UtYWY2ZGIwOTc2NGNjP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "3f816fb7-6591-45e4-b416-845b7b514458" + ], + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "180" + ], + "x-ms-correlation-request-id": [ + "3f816fb7-6591-45e4-b416-845b7b514458" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082526Z:3f816fb7-6591-45e4-b416-845b7b514458" + ], + "Date": [ + "Mon, 16 May 2022 08:25:26 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"name\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T08:24:56.6582175Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupOperations/4ca7f95b-98a3-45bd-a43e-af6db09764cc?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvNGNhN2Y5NWItOThhMy00NWJkLWE0M2UtYWY2ZGIwOTc2NGNjP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "471d739a-3044-4807-bae4-29e5d6f11e40" + ], + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "179" + ], + "x-ms-correlation-request-id": [ + "471d739a-3044-4807-bae4-29e5d6f11e40" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082526Z:471d739a-3044-4807-bae4-29e5d6f11e40" + ], + "Date": [ + "Mon, 16 May 2022 08:25:26 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"name\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T08:24:56.6582175Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupOperations/4ca7f95b-98a3-45bd-a43e-af6db09764cc?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvNGNhN2Y5NWItOThhMy00NWJkLWE0M2UtYWY2ZGIwOTc2NGNjP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "dd76dd45-638d-4121-b158-6a755e8bff7f" + ], + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "178" + ], + "x-ms-correlation-request-id": [ + "dd76dd45-638d-4121-b158-6a755e8bff7f" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082527Z:dd76dd45-638d-4121-b158-6a755e8bff7f" + ], + "Date": [ + "Mon, 16 May 2022 08:25:27 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"name\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T08:24:56.6582175Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupOperations/4ca7f95b-98a3-45bd-a43e-af6db09764cc?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvNGNhN2Y5NWItOThhMy00NWJkLWE0M2UtYWY2ZGIwOTc2NGNjP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "e351b092-1f0a-4962-83ad-190171206d00" + ], + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "177" + ], + "x-ms-correlation-request-id": [ + "e351b092-1f0a-4962-83ad-190171206d00" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082528Z:e351b092-1f0a-4962-83ad-190171206d00" + ], + "Date": [ + "Mon, 16 May 2022 08:25:27 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"name\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T08:24:56.6582175Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupOperations/4ca7f95b-98a3-45bd-a43e-af6db09764cc?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvNGNhN2Y5NWItOThhMy00NWJkLWE0M2UtYWY2ZGIwOTc2NGNjP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "87207d48-52bb-4173-a8f9-900114f66b5c" + ], + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "176" + ], + "x-ms-correlation-request-id": [ + "87207d48-52bb-4173-a8f9-900114f66b5c" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082528Z:87207d48-52bb-4173-a8f9-900114f66b5c" + ], + "Date": [ + "Mon, 16 May 2022 08:25:28 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"name\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T08:24:56.6582175Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupOperations/4ca7f95b-98a3-45bd-a43e-af6db09764cc?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvNGNhN2Y5NWItOThhMy00NWJkLWE0M2UtYWY2ZGIwOTc2NGNjP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "48a172d6-f097-4180-aa08-05361008ffe6" + ], + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "175" + ], + "x-ms-correlation-request-id": [ + "48a172d6-f097-4180-aa08-05361008ffe6" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082529Z:48a172d6-f097-4180-aa08-05361008ffe6" + ], + "Date": [ + "Mon, 16 May 2022 08:25:29 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"name\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T08:24:56.6582175Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupOperations/4ca7f95b-98a3-45bd-a43e-af6db09764cc?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvNGNhN2Y5NWItOThhMy00NWJkLWE0M2UtYWY2ZGIwOTc2NGNjP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "4c6bd218-8d17-4801-a69f-b14c09b848e4" + ], + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "174" + ], + "x-ms-correlation-request-id": [ + "4c6bd218-8d17-4801-a69f-b14c09b848e4" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082529Z:4c6bd218-8d17-4801-a69f-b14c09b848e4" + ], + "Date": [ + "Mon, 16 May 2022 08:25:29 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"name\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T08:24:56.6582175Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupOperations/4ca7f95b-98a3-45bd-a43e-af6db09764cc?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvNGNhN2Y5NWItOThhMy00NWJkLWE0M2UtYWY2ZGIwOTc2NGNjP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "f1fae8d6-6139-4d3d-9a43-1c51550344e0" + ], + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "173" + ], + "x-ms-correlation-request-id": [ + "f1fae8d6-6139-4d3d-9a43-1c51550344e0" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082530Z:f1fae8d6-6139-4d3d-9a43-1c51550344e0" + ], + "Date": [ + "Mon, 16 May 2022 08:25:30 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"name\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T08:24:56.6582175Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupOperations/4ca7f95b-98a3-45bd-a43e-af6db09764cc?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvNGNhN2Y5NWItOThhMy00NWJkLWE0M2UtYWY2ZGIwOTc2NGNjP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "22029a26-f955-4a4d-8a21-d51d7da3d0eb" + ], + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "172" + ], + "x-ms-correlation-request-id": [ + "22029a26-f955-4a4d-8a21-d51d7da3d0eb" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082531Z:22029a26-f955-4a4d-8a21-d51d7da3d0eb" + ], + "Date": [ + "Mon, 16 May 2022 08:25:31 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"name\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T08:24:56.6582175Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupOperations/4ca7f95b-98a3-45bd-a43e-af6db09764cc?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvNGNhN2Y5NWItOThhMy00NWJkLWE0M2UtYWY2ZGIwOTc2NGNjP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "32bf0e5a-f7a3-4c6d-b264-a1b0e900553c" + ], + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "171" + ], + "x-ms-correlation-request-id": [ + "32bf0e5a-f7a3-4c6d-b264-a1b0e900553c" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082532Z:32bf0e5a-f7a3-4c6d-b264-a1b0e900553c" + ], + "Date": [ + "Mon, 16 May 2022 08:25:31 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"name\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T08:24:56.6582175Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupOperations/4ca7f95b-98a3-45bd-a43e-af6db09764cc?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvNGNhN2Y5NWItOThhMy00NWJkLWE0M2UtYWY2ZGIwOTc2NGNjP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "7f1ec0b4-02c8-4d47-b3fe-c92126cba992" + ], + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "170" + ], + "x-ms-correlation-request-id": [ + "7f1ec0b4-02c8-4d47-b3fe-c92126cba992" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082532Z:7f1ec0b4-02c8-4d47-b3fe-c92126cba992" + ], + "Date": [ + "Mon, 16 May 2022 08:25:32 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"name\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T08:24:56.6582175Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupOperations/4ca7f95b-98a3-45bd-a43e-af6db09764cc?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvNGNhN2Y5NWItOThhMy00NWJkLWE0M2UtYWY2ZGIwOTc2NGNjP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "984ef132-771b-4ad4-8881-a478f63213bf" + ], + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "169" + ], + "x-ms-correlation-request-id": [ + "984ef132-771b-4ad4-8881-a478f63213bf" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082533Z:984ef132-771b-4ad4-8881-a478f63213bf" + ], + "Date": [ + "Mon, 16 May 2022 08:25:33 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"name\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T08:24:56.6582175Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupOperations/4ca7f95b-98a3-45bd-a43e-af6db09764cc?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvNGNhN2Y5NWItOThhMy00NWJkLWE0M2UtYWY2ZGIwOTc2NGNjP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "36117964-48a0-484d-bff5-fa5b15a0d13d" + ], + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "168" + ], + "x-ms-correlation-request-id": [ + "36117964-48a0-484d-bff5-fa5b15a0d13d" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082534Z:36117964-48a0-484d-bff5-fa5b15a0d13d" + ], + "Date": [ + "Mon, 16 May 2022 08:25:33 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"name\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T08:24:56.6582175Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupOperations/4ca7f95b-98a3-45bd-a43e-af6db09764cc?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvNGNhN2Y5NWItOThhMy00NWJkLWE0M2UtYWY2ZGIwOTc2NGNjP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "3548046a-e7e5-45f0-96cb-9ede03c7d83e" + ], + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "167" + ], + "x-ms-correlation-request-id": [ + "3548046a-e7e5-45f0-96cb-9ede03c7d83e" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082534Z:3548046a-e7e5-45f0-96cb-9ede03c7d83e" + ], + "Date": [ + "Mon, 16 May 2022 08:25:34 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"name\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T08:24:56.6582175Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupOperations/4ca7f95b-98a3-45bd-a43e-af6db09764cc?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvNGNhN2Y5NWItOThhMy00NWJkLWE0M2UtYWY2ZGIwOTc2NGNjP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "00ea4b7c-98fe-409d-ad2c-2e9817fd920b" + ], + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "166" + ], + "x-ms-correlation-request-id": [ + "00ea4b7c-98fe-409d-ad2c-2e9817fd920b" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082535Z:00ea4b7c-98fe-409d-ad2c-2e9817fd920b" + ], + "Date": [ + "Mon, 16 May 2022 08:25:35 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"name\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T08:24:56.6582175Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupOperations/4ca7f95b-98a3-45bd-a43e-af6db09764cc?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvNGNhN2Y5NWItOThhMy00NWJkLWE0M2UtYWY2ZGIwOTc2NGNjP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "5e71d247-f7e5-4217-85f6-17357d63883b" + ], + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "165" + ], + "x-ms-correlation-request-id": [ + "5e71d247-f7e5-4217-85f6-17357d63883b" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082536Z:5e71d247-f7e5-4217-85f6-17357d63883b" + ], + "Date": [ + "Mon, 16 May 2022 08:25:35 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"name\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T08:24:56.6582175Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupOperations/4ca7f95b-98a3-45bd-a43e-af6db09764cc?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvNGNhN2Y5NWItOThhMy00NWJkLWE0M2UtYWY2ZGIwOTc2NGNjP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "81c2209b-f3cc-4bec-85b9-f7ddc39beb2a" + ], + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "164" + ], + "x-ms-correlation-request-id": [ + "81c2209b-f3cc-4bec-85b9-f7ddc39beb2a" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082536Z:81c2209b-f3cc-4bec-85b9-f7ddc39beb2a" + ], + "Date": [ + "Mon, 16 May 2022 08:25:36 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"name\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T08:24:56.6582175Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupOperations/4ca7f95b-98a3-45bd-a43e-af6db09764cc?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvNGNhN2Y5NWItOThhMy00NWJkLWE0M2UtYWY2ZGIwOTc2NGNjP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "2e4abbad-3101-4002-9e0d-25195c8804c6" + ], + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "163" + ], + "x-ms-correlation-request-id": [ + "2e4abbad-3101-4002-9e0d-25195c8804c6" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082537Z:2e4abbad-3101-4002-9e0d-25195c8804c6" + ], + "Date": [ + "Mon, 16 May 2022 08:25:37 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"name\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T08:24:56.6582175Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupOperations/4ca7f95b-98a3-45bd-a43e-af6db09764cc?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvNGNhN2Y5NWItOThhMy00NWJkLWE0M2UtYWY2ZGIwOTc2NGNjP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "2fb7b922-b1b2-4335-a837-153b42ab2241" + ], + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "162" + ], + "x-ms-correlation-request-id": [ + "2fb7b922-b1b2-4335-a837-153b42ab2241" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082538Z:2fb7b922-b1b2-4335-a837-153b42ab2241" + ], + "Date": [ + "Mon, 16 May 2022 08:25:37 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"name\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T08:24:56.6582175Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupOperations/4ca7f95b-98a3-45bd-a43e-af6db09764cc?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvNGNhN2Y5NWItOThhMy00NWJkLWE0M2UtYWY2ZGIwOTc2NGNjP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "8ececa5b-6c48-4279-8ecb-c0c2fe0125ec" + ], + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "161" + ], + "x-ms-correlation-request-id": [ + "8ececa5b-6c48-4279-8ecb-c0c2fe0125ec" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082538Z:8ececa5b-6c48-4279-8ecb-c0c2fe0125ec" + ], + "Date": [ + "Mon, 16 May 2022 08:25:38 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"name\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T08:24:56.6582175Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupOperations/4ca7f95b-98a3-45bd-a43e-af6db09764cc?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvNGNhN2Y5NWItOThhMy00NWJkLWE0M2UtYWY2ZGIwOTc2NGNjP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "e27b3f80-b8cd-4fd3-9a21-8459a068f2a4" + ], + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "160" + ], + "x-ms-correlation-request-id": [ + "e27b3f80-b8cd-4fd3-9a21-8459a068f2a4" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082539Z:e27b3f80-b8cd-4fd3-9a21-8459a068f2a4" + ], + "Date": [ + "Mon, 16 May 2022 08:25:39 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"name\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T08:24:56.6582175Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupOperations/4ca7f95b-98a3-45bd-a43e-af6db09764cc?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvNGNhN2Y5NWItOThhMy00NWJkLWE0M2UtYWY2ZGIwOTc2NGNjP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "3b3254cd-83a7-426b-af6e-742450dc6cbb" + ], + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "159" + ], + "x-ms-correlation-request-id": [ + "3b3254cd-83a7-426b-af6e-742450dc6cbb" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082540Z:3b3254cd-83a7-426b-af6e-742450dc6cbb" + ], + "Date": [ + "Mon, 16 May 2022 08:25:39 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"name\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T08:24:56.6582175Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupOperations/4ca7f95b-98a3-45bd-a43e-af6db09764cc?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvNGNhN2Y5NWItOThhMy00NWJkLWE0M2UtYWY2ZGIwOTc2NGNjP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "a29fc62e-03ae-46a9-9165-b5679e8250b4" + ], + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "158" + ], + "x-ms-correlation-request-id": [ + "a29fc62e-03ae-46a9-9165-b5679e8250b4" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082540Z:a29fc62e-03ae-46a9-9165-b5679e8250b4" + ], + "Date": [ + "Mon, 16 May 2022 08:25:40 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"name\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T08:24:56.6582175Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupOperations/4ca7f95b-98a3-45bd-a43e-af6db09764cc?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvNGNhN2Y5NWItOThhMy00NWJkLWE0M2UtYWY2ZGIwOTc2NGNjP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "125d6454-b93d-4883-881c-563371a14c22" + ], + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "157" + ], + "x-ms-correlation-request-id": [ + "125d6454-b93d-4883-881c-563371a14c22" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082541Z:125d6454-b93d-4883-881c-563371a14c22" + ], + "Date": [ + "Mon, 16 May 2022 08:25:41 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"name\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T08:24:56.6582175Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupOperations/4ca7f95b-98a3-45bd-a43e-af6db09764cc?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvNGNhN2Y5NWItOThhMy00NWJkLWE0M2UtYWY2ZGIwOTc2NGNjP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "4d1db139-9d0e-4456-95ba-53b3f0cadcff" + ], + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "156" + ], + "x-ms-correlation-request-id": [ + "4d1db139-9d0e-4456-95ba-53b3f0cadcff" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082542Z:4d1db139-9d0e-4456-95ba-53b3f0cadcff" + ], + "Date": [ + "Mon, 16 May 2022 08:25:41 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"name\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T08:24:56.6582175Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupOperations/4ca7f95b-98a3-45bd-a43e-af6db09764cc?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvNGNhN2Y5NWItOThhMy00NWJkLWE0M2UtYWY2ZGIwOTc2NGNjP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "153ed081-51c4-4acb-b01a-6e0c9270d6a3" + ], + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "155" + ], + "x-ms-correlation-request-id": [ + "153ed081-51c4-4acb-b01a-6e0c9270d6a3" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082542Z:153ed081-51c4-4acb-b01a-6e0c9270d6a3" + ], + "Date": [ + "Mon, 16 May 2022 08:25:42 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"name\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T08:24:56.6582175Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupOperations/4ca7f95b-98a3-45bd-a43e-af6db09764cc?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvNGNhN2Y5NWItOThhMy00NWJkLWE0M2UtYWY2ZGIwOTc2NGNjP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "8f97bd9f-b230-4612-8c0f-6f02a2330ad4" + ], + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "154" + ], + "x-ms-correlation-request-id": [ + "8f97bd9f-b230-4612-8c0f-6f02a2330ad4" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082543Z:8f97bd9f-b230-4612-8c0f-6f02a2330ad4" + ], + "Date": [ + "Mon, 16 May 2022 08:25:42 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"name\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T08:24:56.6582175Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupOperations/4ca7f95b-98a3-45bd-a43e-af6db09764cc?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvNGNhN2Y5NWItOThhMy00NWJkLWE0M2UtYWY2ZGIwOTc2NGNjP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "bac890b6-5a8a-466a-aa6a-8f69fec410e2" + ], + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "153" + ], + "x-ms-correlation-request-id": [ + "bac890b6-5a8a-466a-aa6a-8f69fec410e2" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082544Z:bac890b6-5a8a-466a-aa6a-8f69fec410e2" + ], + "Date": [ + "Mon, 16 May 2022 08:25:43 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"name\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T08:24:56.6582175Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupOperations/4ca7f95b-98a3-45bd-a43e-af6db09764cc?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvNGNhN2Y5NWItOThhMy00NWJkLWE0M2UtYWY2ZGIwOTc2NGNjP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "2635fef1-9301-47c9-80f6-6bad44ecce4a" + ], + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "152" + ], + "x-ms-correlation-request-id": [ + "2635fef1-9301-47c9-80f6-6bad44ecce4a" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082544Z:2635fef1-9301-47c9-80f6-6bad44ecce4a" + ], + "Date": [ + "Mon, 16 May 2022 08:25:44 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"name\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T08:24:56.6582175Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupOperations/4ca7f95b-98a3-45bd-a43e-af6db09764cc?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvNGNhN2Y5NWItOThhMy00NWJkLWE0M2UtYWY2ZGIwOTc2NGNjP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "efd7b51a-0d1d-4747-83e5-cb7cc10fe197" + ], + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "151" + ], + "x-ms-correlation-request-id": [ + "efd7b51a-0d1d-4747-83e5-cb7cc10fe197" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082545Z:efd7b51a-0d1d-4747-83e5-cb7cc10fe197" + ], + "Date": [ + "Mon, 16 May 2022 08:25:45 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"name\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T08:24:56.6582175Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupOperations/4ca7f95b-98a3-45bd-a43e-af6db09764cc?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvNGNhN2Y5NWItOThhMy00NWJkLWE0M2UtYWY2ZGIwOTc2NGNjP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "03ae5514-c743-4536-8c79-d8410a561137" + ], + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "150" + ], + "x-ms-correlation-request-id": [ + "03ae5514-c743-4536-8c79-d8410a561137" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082546Z:03ae5514-c743-4536-8c79-d8410a561137" + ], + "Date": [ + "Mon, 16 May 2022 08:25:45 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"name\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T08:24:56.6582175Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupOperations/4ca7f95b-98a3-45bd-a43e-af6db09764cc?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvNGNhN2Y5NWItOThhMy00NWJkLWE0M2UtYWY2ZGIwOTc2NGNjP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "be88a963-9084-4d44-93f0-3c6d144fbbf3" + ], + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "149" + ], + "x-ms-correlation-request-id": [ + "be88a963-9084-4d44-93f0-3c6d144fbbf3" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082546Z:be88a963-9084-4d44-93f0-3c6d144fbbf3" + ], + "Date": [ + "Mon, 16 May 2022 08:25:46 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"name\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T08:24:56.6582175Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupOperations/4ca7f95b-98a3-45bd-a43e-af6db09764cc?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvNGNhN2Y5NWItOThhMy00NWJkLWE0M2UtYWY2ZGIwOTc2NGNjP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "f3d87823-f7f5-4534-814d-0492ba23b88f" + ], + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "148" + ], + "x-ms-correlation-request-id": [ + "f3d87823-f7f5-4534-814d-0492ba23b88f" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082547Z:f3d87823-f7f5-4534-814d-0492ba23b88f" + ], + "Date": [ + "Mon, 16 May 2022 08:25:46 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"name\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T08:24:56.6582175Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupOperations/4ca7f95b-98a3-45bd-a43e-af6db09764cc?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvNGNhN2Y5NWItOThhMy00NWJkLWE0M2UtYWY2ZGIwOTc2NGNjP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "16351e0b-ddb6-40b1-b03c-db9e533c2f3e" + ], + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "147" + ], + "x-ms-correlation-request-id": [ + "16351e0b-ddb6-40b1-b03c-db9e533c2f3e" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082547Z:16351e0b-ddb6-40b1-b03c-db9e533c2f3e" + ], + "Date": [ + "Mon, 16 May 2022 08:25:47 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"name\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T08:24:56.6582175Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupOperations/4ca7f95b-98a3-45bd-a43e-af6db09764cc?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvNGNhN2Y5NWItOThhMy00NWJkLWE0M2UtYWY2ZGIwOTc2NGNjP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "f9aca077-4304-4e9b-a58e-29fb451e3dd8" + ], + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "146" + ], + "x-ms-correlation-request-id": [ + "f9aca077-4304-4e9b-a58e-29fb451e3dd8" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082548Z:f9aca077-4304-4e9b-a58e-29fb451e3dd8" + ], + "Date": [ + "Mon, 16 May 2022 08:25:48 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"name\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T08:24:56.6582175Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupOperations/4ca7f95b-98a3-45bd-a43e-af6db09764cc?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvNGNhN2Y5NWItOThhMy00NWJkLWE0M2UtYWY2ZGIwOTc2NGNjP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "53b7f9a2-5fb4-40dc-a5c5-d74890679295" + ], + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "145" + ], + "x-ms-correlation-request-id": [ + "53b7f9a2-5fb4-40dc-a5c5-d74890679295" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082549Z:53b7f9a2-5fb4-40dc-a5c5-d74890679295" + ], + "Date": [ + "Mon, 16 May 2022 08:25:48 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"name\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T08:24:56.6582175Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupOperations/4ca7f95b-98a3-45bd-a43e-af6db09764cc?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvNGNhN2Y5NWItOThhMy00NWJkLWE0M2UtYWY2ZGIwOTc2NGNjP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "10fc1632-9b95-4c9d-8b65-a0e0370489f9" + ], + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "144" + ], + "x-ms-correlation-request-id": [ + "10fc1632-9b95-4c9d-8b65-a0e0370489f9" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082549Z:10fc1632-9b95-4c9d-8b65-a0e0370489f9" + ], + "Date": [ + "Mon, 16 May 2022 08:25:49 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"name\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T08:24:56.6582175Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupOperations/4ca7f95b-98a3-45bd-a43e-af6db09764cc?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvNGNhN2Y5NWItOThhMy00NWJkLWE0M2UtYWY2ZGIwOTc2NGNjP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "4b06e297-33cf-4a8f-9900-efdddd55162e" + ], + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "143" + ], + "x-ms-correlation-request-id": [ + "4b06e297-33cf-4a8f-9900-efdddd55162e" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082550Z:4b06e297-33cf-4a8f-9900-efdddd55162e" + ], + "Date": [ + "Mon, 16 May 2022 08:25:50 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"name\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T08:24:56.6582175Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupOperations/4ca7f95b-98a3-45bd-a43e-af6db09764cc?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvNGNhN2Y5NWItOThhMy00NWJkLWE0M2UtYWY2ZGIwOTc2NGNjP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "144f4798-6a89-4ddd-86b9-487cced704a7" + ], + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "142" + ], + "x-ms-correlation-request-id": [ + "144f4798-6a89-4ddd-86b9-487cced704a7" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082551Z:144f4798-6a89-4ddd-86b9-487cced704a7" + ], + "Date": [ + "Mon, 16 May 2022 08:25:50 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"name\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T08:24:56.6582175Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupOperations/4ca7f95b-98a3-45bd-a43e-af6db09764cc?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvNGNhN2Y5NWItOThhMy00NWJkLWE0M2UtYWY2ZGIwOTc2NGNjP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "57abdcdf-3df5-4459-aab9-61bceaee6f08" + ], + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "141" + ], + "x-ms-correlation-request-id": [ + "57abdcdf-3df5-4459-aab9-61bceaee6f08" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082551Z:57abdcdf-3df5-4459-aab9-61bceaee6f08" + ], + "Date": [ + "Mon, 16 May 2022 08:25:51 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"name\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T08:24:56.6582175Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupOperations/4ca7f95b-98a3-45bd-a43e-af6db09764cc?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvNGNhN2Y5NWItOThhMy00NWJkLWE0M2UtYWY2ZGIwOTc2NGNjP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "c348b030-860f-46e0-9b36-4a776a4f702f" + ], + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "140" + ], + "x-ms-correlation-request-id": [ + "c348b030-860f-46e0-9b36-4a776a4f702f" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082552Z:c348b030-860f-46e0-9b36-4a776a4f702f" + ], + "Date": [ + "Mon, 16 May 2022 08:25:52 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"name\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T08:24:56.6582175Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupOperations/4ca7f95b-98a3-45bd-a43e-af6db09764cc?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvNGNhN2Y5NWItOThhMy00NWJkLWE0M2UtYWY2ZGIwOTc2NGNjP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "07ff999c-cd9f-445d-ae29-d98f6aef6db0" + ], + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "139" + ], + "x-ms-correlation-request-id": [ + "07ff999c-cd9f-445d-ae29-d98f6aef6db0" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082553Z:07ff999c-cd9f-445d-ae29-d98f6aef6db0" + ], + "Date": [ + "Mon, 16 May 2022 08:25:52 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"name\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T08:24:56.6582175Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupOperations/4ca7f95b-98a3-45bd-a43e-af6db09764cc?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvNGNhN2Y5NWItOThhMy00NWJkLWE0M2UtYWY2ZGIwOTc2NGNjP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "8ea2588d-c676-4e9e-8075-bffa89f8456f" + ], + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "138" + ], + "x-ms-correlation-request-id": [ + "8ea2588d-c676-4e9e-8075-bffa89f8456f" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082553Z:8ea2588d-c676-4e9e-8075-bffa89f8456f" + ], + "Date": [ + "Mon, 16 May 2022 08:25:53 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"name\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T08:24:56.6582175Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupOperations/4ca7f95b-98a3-45bd-a43e-af6db09764cc?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvNGNhN2Y5NWItOThhMy00NWJkLWE0M2UtYWY2ZGIwOTc2NGNjP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "7d55a0b8-e621-4eaa-952c-d376f172ff3e" + ], + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "137" + ], + "x-ms-correlation-request-id": [ + "7d55a0b8-e621-4eaa-952c-d376f172ff3e" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082554Z:7d55a0b8-e621-4eaa-952c-d376f172ff3e" + ], + "Date": [ + "Mon, 16 May 2022 08:25:53 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"name\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T08:24:56.6582175Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupOperations/4ca7f95b-98a3-45bd-a43e-af6db09764cc?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvNGNhN2Y5NWItOThhMy00NWJkLWE0M2UtYWY2ZGIwOTc2NGNjP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "5b5b1e40-1b62-4af5-825b-b50c9176c5af" + ], + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "136" + ], + "x-ms-correlation-request-id": [ + "5b5b1e40-1b62-4af5-825b-b50c9176c5af" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082555Z:5b5b1e40-1b62-4af5-825b-b50c9176c5af" + ], + "Date": [ + "Mon, 16 May 2022 08:25:54 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"name\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T08:24:56.6582175Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupOperations/4ca7f95b-98a3-45bd-a43e-af6db09764cc?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvNGNhN2Y5NWItOThhMy00NWJkLWE0M2UtYWY2ZGIwOTc2NGNjP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "5e0c76d9-f4e7-4876-8677-cccb299ca37c" + ], + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "135" + ], + "x-ms-correlation-request-id": [ + "5e0c76d9-f4e7-4876-8677-cccb299ca37c" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082555Z:5e0c76d9-f4e7-4876-8677-cccb299ca37c" + ], + "Date": [ + "Mon, 16 May 2022 08:25:55 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"name\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T08:24:56.6582175Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupOperations/4ca7f95b-98a3-45bd-a43e-af6db09764cc?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvNGNhN2Y5NWItOThhMy00NWJkLWE0M2UtYWY2ZGIwOTc2NGNjP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "08663772-064f-4c03-82b4-c8c7230b7511" + ], + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "134" + ], + "x-ms-correlation-request-id": [ + "08663772-064f-4c03-82b4-c8c7230b7511" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082556Z:08663772-064f-4c03-82b4-c8c7230b7511" + ], + "Date": [ + "Mon, 16 May 2022 08:25:56 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"name\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T08:24:56.6582175Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupOperations/4ca7f95b-98a3-45bd-a43e-af6db09764cc?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvNGNhN2Y5NWItOThhMy00NWJkLWE0M2UtYWY2ZGIwOTc2NGNjP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "94d38e3c-e9e8-4ea7-a396-bd295fbaafd3" + ], + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "133" + ], + "x-ms-correlation-request-id": [ + "94d38e3c-e9e8-4ea7-a396-bd295fbaafd3" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082557Z:94d38e3c-e9e8-4ea7-a396-bd295fbaafd3" + ], + "Date": [ + "Mon, 16 May 2022 08:25:56 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"name\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T08:24:56.6582175Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupOperations/4ca7f95b-98a3-45bd-a43e-af6db09764cc?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvNGNhN2Y5NWItOThhMy00NWJkLWE0M2UtYWY2ZGIwOTc2NGNjP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "32b26bd2-13cc-48ce-9fd6-9b5a301b3ac0" + ], + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "132" + ], + "x-ms-correlation-request-id": [ + "32b26bd2-13cc-48ce-9fd6-9b5a301b3ac0" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082558Z:32b26bd2-13cc-48ce-9fd6-9b5a301b3ac0" + ], + "Date": [ + "Mon, 16 May 2022 08:25:57 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"name\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T08:24:56.6582175Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupOperations/4ca7f95b-98a3-45bd-a43e-af6db09764cc?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvNGNhN2Y5NWItOThhMy00NWJkLWE0M2UtYWY2ZGIwOTc2NGNjP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "4b64b781-3eaa-4886-ba78-9bcedd747033" + ], + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "131" + ], + "x-ms-correlation-request-id": [ + "4b64b781-3eaa-4886-ba78-9bcedd747033" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082558Z:4b64b781-3eaa-4886-ba78-9bcedd747033" + ], + "Date": [ + "Mon, 16 May 2022 08:25:58 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"name\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T08:24:56.6582175Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupOperations/4ca7f95b-98a3-45bd-a43e-af6db09764cc?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvNGNhN2Y5NWItOThhMy00NWJkLWE0M2UtYWY2ZGIwOTc2NGNjP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "84808ac7-ac1c-474c-a2d1-e6e567e58727" + ], + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "130" + ], + "x-ms-correlation-request-id": [ + "84808ac7-ac1c-474c-a2d1-e6e567e58727" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082559Z:84808ac7-ac1c-474c-a2d1-e6e567e58727" + ], + "Date": [ + "Mon, 16 May 2022 08:25:58 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"name\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T08:24:56.6582175Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupOperations/4ca7f95b-98a3-45bd-a43e-af6db09764cc?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvNGNhN2Y5NWItOThhMy00NWJkLWE0M2UtYWY2ZGIwOTc2NGNjP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "1c4b18c4-7431-4196-b59a-0215196ecb2c" + ], + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "129" + ], + "x-ms-correlation-request-id": [ + "1c4b18c4-7431-4196-b59a-0215196ecb2c" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082600Z:1c4b18c4-7431-4196-b59a-0215196ecb2c" + ], + "Date": [ + "Mon, 16 May 2022 08:25:59 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"name\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T08:24:56.6582175Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupOperations/4ca7f95b-98a3-45bd-a43e-af6db09764cc?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvNGNhN2Y5NWItOThhMy00NWJkLWE0M2UtYWY2ZGIwOTc2NGNjP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "812c4c47-caff-45e0-90b2-737656176172" + ], + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "128" + ], + "x-ms-correlation-request-id": [ + "812c4c47-caff-45e0-90b2-737656176172" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082601Z:812c4c47-caff-45e0-90b2-737656176172" + ], + "Date": [ + "Mon, 16 May 2022 08:26:00 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"name\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T08:24:56.6582175Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupOperations/4ca7f95b-98a3-45bd-a43e-af6db09764cc?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvNGNhN2Y5NWItOThhMy00NWJkLWE0M2UtYWY2ZGIwOTc2NGNjP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "f97ce08a-8f02-4601-aee1-2b31a1e48da2" + ], + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "127" + ], + "x-ms-correlation-request-id": [ + "f97ce08a-8f02-4601-aee1-2b31a1e48da2" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082601Z:f97ce08a-8f02-4601-aee1-2b31a1e48da2" + ], + "Date": [ + "Mon, 16 May 2022 08:26:01 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"name\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T08:24:56.6582175Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupOperations/4ca7f95b-98a3-45bd-a43e-af6db09764cc?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvNGNhN2Y5NWItOThhMy00NWJkLWE0M2UtYWY2ZGIwOTc2NGNjP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "0d042094-8c92-460c-a7e6-bd68b7413b7e" + ], + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "126" + ], + "x-ms-correlation-request-id": [ + "0d042094-8c92-460c-a7e6-bd68b7413b7e" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082602Z:0d042094-8c92-460c-a7e6-bd68b7413b7e" + ], + "Date": [ + "Mon, 16 May 2022 08:26:01 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"name\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T08:24:56.6582175Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupOperations/4ca7f95b-98a3-45bd-a43e-af6db09764cc?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvNGNhN2Y5NWItOThhMy00NWJkLWE0M2UtYWY2ZGIwOTc2NGNjP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "aedd982f-d339-4979-8534-07a4a4057319" + ], + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "125" + ], + "x-ms-correlation-request-id": [ + "aedd982f-d339-4979-8534-07a4a4057319" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082603Z:aedd982f-d339-4979-8534-07a4a4057319" + ], + "Date": [ + "Mon, 16 May 2022 08:26:02 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"name\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T08:24:56.6582175Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupOperations/4ca7f95b-98a3-45bd-a43e-af6db09764cc?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvNGNhN2Y5NWItOThhMy00NWJkLWE0M2UtYWY2ZGIwOTc2NGNjP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "0fa246ee-0bf2-4842-99eb-5d1c756971e4" + ], + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "124" + ], + "x-ms-correlation-request-id": [ + "0fa246ee-0bf2-4842-99eb-5d1c756971e4" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082603Z:0fa246ee-0bf2-4842-99eb-5d1c756971e4" + ], + "Date": [ + "Mon, 16 May 2022 08:26:03 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"name\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T08:24:56.6582175Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupOperations/4ca7f95b-98a3-45bd-a43e-af6db09764cc?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvNGNhN2Y5NWItOThhMy00NWJkLWE0M2UtYWY2ZGIwOTc2NGNjP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "def76b34-6980-45af-970d-4ea3e1f4bdac" + ], + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "123" + ], + "x-ms-correlation-request-id": [ + "def76b34-6980-45af-970d-4ea3e1f4bdac" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082604Z:def76b34-6980-45af-970d-4ea3e1f4bdac" + ], + "Date": [ + "Mon, 16 May 2022 08:26:03 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"name\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T08:24:56.6582175Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupOperations/4ca7f95b-98a3-45bd-a43e-af6db09764cc?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvNGNhN2Y5NWItOThhMy00NWJkLWE0M2UtYWY2ZGIwOTc2NGNjP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "1931f735-47e0-40ba-8d80-e34b49f1924a" + ], + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "122" + ], + "x-ms-correlation-request-id": [ + "1931f735-47e0-40ba-8d80-e34b49f1924a" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082605Z:1931f735-47e0-40ba-8d80-e34b49f1924a" + ], + "Date": [ + "Mon, 16 May 2022 08:26:04 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"name\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T08:24:56.6582175Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupOperations/4ca7f95b-98a3-45bd-a43e-af6db09764cc?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvNGNhN2Y5NWItOThhMy00NWJkLWE0M2UtYWY2ZGIwOTc2NGNjP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "6297e7b2-efbb-4b53-88c1-0eac72034c21" + ], + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "121" + ], + "x-ms-correlation-request-id": [ + "6297e7b2-efbb-4b53-88c1-0eac72034c21" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082605Z:6297e7b2-efbb-4b53-88c1-0eac72034c21" + ], + "Date": [ + "Mon, 16 May 2022 08:26:05 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"name\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T08:24:56.6582175Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupOperations/4ca7f95b-98a3-45bd-a43e-af6db09764cc?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvNGNhN2Y5NWItOThhMy00NWJkLWE0M2UtYWY2ZGIwOTc2NGNjP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "35043b32-ace3-4829-aa9c-8dfadcc99558" + ], + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "120" + ], + "x-ms-correlation-request-id": [ + "35043b32-ace3-4829-aa9c-8dfadcc99558" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082606Z:35043b32-ace3-4829-aa9c-8dfadcc99558" + ], + "Date": [ + "Mon, 16 May 2022 08:26:06 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"name\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T08:24:56.6582175Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupOperations/4ca7f95b-98a3-45bd-a43e-af6db09764cc?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvNGNhN2Y5NWItOThhMy00NWJkLWE0M2UtYWY2ZGIwOTc2NGNjP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "be0f2daf-6cff-43ad-8778-5b24edbdd12a" + ], + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "119" + ], + "x-ms-correlation-request-id": [ + "be0f2daf-6cff-43ad-8778-5b24edbdd12a" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082607Z:be0f2daf-6cff-43ad-8778-5b24edbdd12a" + ], + "Date": [ + "Mon, 16 May 2022 08:26:06 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"name\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T08:24:56.6582175Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupOperations/4ca7f95b-98a3-45bd-a43e-af6db09764cc?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvNGNhN2Y5NWItOThhMy00NWJkLWE0M2UtYWY2ZGIwOTc2NGNjP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "7e5e0c4c-c3f2-4261-a419-3b5042757e35" + ], + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "118" + ], + "x-ms-correlation-request-id": [ + "7e5e0c4c-c3f2-4261-a419-3b5042757e35" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082607Z:7e5e0c4c-c3f2-4261-a419-3b5042757e35" + ], + "Date": [ + "Mon, 16 May 2022 08:26:07 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"name\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T08:24:56.6582175Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupOperations/4ca7f95b-98a3-45bd-a43e-af6db09764cc?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvNGNhN2Y5NWItOThhMy00NWJkLWE0M2UtYWY2ZGIwOTc2NGNjP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "93a10b85-ee84-4e02-b51e-1e1495fec4ab" + ], + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "117" + ], + "x-ms-correlation-request-id": [ + "93a10b85-ee84-4e02-b51e-1e1495fec4ab" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082608Z:93a10b85-ee84-4e02-b51e-1e1495fec4ab" + ], + "Date": [ + "Mon, 16 May 2022 08:26:07 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"name\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T08:24:56.6582175Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupOperations/4ca7f95b-98a3-45bd-a43e-af6db09764cc?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvNGNhN2Y5NWItOThhMy00NWJkLWE0M2UtYWY2ZGIwOTc2NGNjP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "135ddabe-fd36-4e0a-9404-e28435996aeb" + ], + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "116" + ], + "x-ms-correlation-request-id": [ + "135ddabe-fd36-4e0a-9404-e28435996aeb" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082609Z:135ddabe-fd36-4e0a-9404-e28435996aeb" + ], + "Date": [ + "Mon, 16 May 2022 08:26:08 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"name\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T08:24:56.6582175Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupOperations/4ca7f95b-98a3-45bd-a43e-af6db09764cc?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvNGNhN2Y5NWItOThhMy00NWJkLWE0M2UtYWY2ZGIwOTc2NGNjP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "c5b456a1-4db5-4e8a-bad3-6563e4c88233" + ], + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "115" + ], + "x-ms-correlation-request-id": [ + "c5b456a1-4db5-4e8a-bad3-6563e4c88233" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082609Z:c5b456a1-4db5-4e8a-bad3-6563e4c88233" + ], + "Date": [ + "Mon, 16 May 2022 08:26:09 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"name\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T08:24:56.6582175Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupOperations/4ca7f95b-98a3-45bd-a43e-af6db09764cc?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvNGNhN2Y5NWItOThhMy00NWJkLWE0M2UtYWY2ZGIwOTc2NGNjP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "e6faf060-5d1b-4e34-9096-3e687992ae11" + ], + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "114" + ], + "x-ms-correlation-request-id": [ + "e6faf060-5d1b-4e34-9096-3e687992ae11" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082610Z:e6faf060-5d1b-4e34-9096-3e687992ae11" + ], + "Date": [ + "Mon, 16 May 2022 08:26:09 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"name\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T08:24:56.6582175Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupOperations/4ca7f95b-98a3-45bd-a43e-af6db09764cc?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvNGNhN2Y5NWItOThhMy00NWJkLWE0M2UtYWY2ZGIwOTc2NGNjP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "f0385499-add9-4cc6-94da-a520e9928b85" + ], + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "113" + ], + "x-ms-correlation-request-id": [ + "f0385499-add9-4cc6-94da-a520e9928b85" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082611Z:f0385499-add9-4cc6-94da-a520e9928b85" + ], + "Date": [ + "Mon, 16 May 2022 08:26:10 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"name\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T08:24:56.6582175Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupOperations/4ca7f95b-98a3-45bd-a43e-af6db09764cc?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvNGNhN2Y5NWItOThhMy00NWJkLWE0M2UtYWY2ZGIwOTc2NGNjP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "d7ea4a45-64c8-4a7a-a7aa-0f89abc99e04" + ], + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "112" + ], + "x-ms-correlation-request-id": [ + "d7ea4a45-64c8-4a7a-a7aa-0f89abc99e04" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082612Z:d7ea4a45-64c8-4a7a-a7aa-0f89abc99e04" + ], + "Date": [ + "Mon, 16 May 2022 08:26:11 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"name\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T08:24:56.6582175Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupOperations/4ca7f95b-98a3-45bd-a43e-af6db09764cc?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvNGNhN2Y5NWItOThhMy00NWJkLWE0M2UtYWY2ZGIwOTc2NGNjP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "23983080-1450-45e2-969f-61316123e51c" + ], + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "111" + ], + "x-ms-correlation-request-id": [ + "23983080-1450-45e2-969f-61316123e51c" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082612Z:23983080-1450-45e2-969f-61316123e51c" + ], + "Date": [ + "Mon, 16 May 2022 08:26:12 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"name\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T08:24:56.6582175Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupOperations/4ca7f95b-98a3-45bd-a43e-af6db09764cc?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvNGNhN2Y5NWItOThhMy00NWJkLWE0M2UtYWY2ZGIwOTc2NGNjP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "25a99411-5caa-4dcc-ba30-118bc7719c4c" + ], + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "110" + ], + "x-ms-correlation-request-id": [ + "25a99411-5caa-4dcc-ba30-118bc7719c4c" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082613Z:25a99411-5caa-4dcc-ba30-118bc7719c4c" + ], + "Date": [ + "Mon, 16 May 2022 08:26:12 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"name\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T08:24:56.6582175Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupOperations/4ca7f95b-98a3-45bd-a43e-af6db09764cc?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvNGNhN2Y5NWItOThhMy00NWJkLWE0M2UtYWY2ZGIwOTc2NGNjP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "e32feb56-b6a2-4783-847a-3dedfb57f96f" + ], + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "109" + ], + "x-ms-correlation-request-id": [ + "e32feb56-b6a2-4783-847a-3dedfb57f96f" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082614Z:e32feb56-b6a2-4783-847a-3dedfb57f96f" + ], + "Date": [ + "Mon, 16 May 2022 08:26:13 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"name\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T08:24:56.6582175Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupOperations/4ca7f95b-98a3-45bd-a43e-af6db09764cc?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvNGNhN2Y5NWItOThhMy00NWJkLWE0M2UtYWY2ZGIwOTc2NGNjP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "24c8234e-24d3-4c9c-bec0-38f47e05df9a" + ], + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "108" + ], + "x-ms-correlation-request-id": [ + "24c8234e-24d3-4c9c-bec0-38f47e05df9a" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082614Z:24c8234e-24d3-4c9c-bec0-38f47e05df9a" + ], + "Date": [ + "Mon, 16 May 2022 08:26:13 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"name\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T08:24:56.6582175Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupOperations/4ca7f95b-98a3-45bd-a43e-af6db09764cc?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvNGNhN2Y5NWItOThhMy00NWJkLWE0M2UtYWY2ZGIwOTc2NGNjP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "a785b9ad-6ea2-41a7-bfc5-22b00bc9ef50" + ], + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "107" + ], + "x-ms-correlation-request-id": [ + "a785b9ad-6ea2-41a7-bfc5-22b00bc9ef50" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082615Z:a785b9ad-6ea2-41a7-bfc5-22b00bc9ef50" + ], + "Date": [ + "Mon, 16 May 2022 08:26:14 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"name\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T08:24:56.6582175Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupOperations/4ca7f95b-98a3-45bd-a43e-af6db09764cc?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvNGNhN2Y5NWItOThhMy00NWJkLWE0M2UtYWY2ZGIwOTc2NGNjP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "2fc093dd-1587-41aa-9399-38b942a5d561" + ], + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "106" + ], + "x-ms-correlation-request-id": [ + "2fc093dd-1587-41aa-9399-38b942a5d561" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082616Z:2fc093dd-1587-41aa-9399-38b942a5d561" + ], + "Date": [ + "Mon, 16 May 2022 08:26:15 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"name\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T08:24:56.6582175Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupOperations/4ca7f95b-98a3-45bd-a43e-af6db09764cc?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvNGNhN2Y5NWItOThhMy00NWJkLWE0M2UtYWY2ZGIwOTc2NGNjP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "49871ebf-cd6e-4a1b-beb7-fa24fc4af129" + ], + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "105" + ], + "x-ms-correlation-request-id": [ + "49871ebf-cd6e-4a1b-beb7-fa24fc4af129" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082616Z:49871ebf-cd6e-4a1b-beb7-fa24fc4af129" + ], + "Date": [ + "Mon, 16 May 2022 08:26:16 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"name\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T08:24:56.6582175Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupOperations/4ca7f95b-98a3-45bd-a43e-af6db09764cc?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvNGNhN2Y5NWItOThhMy00NWJkLWE0M2UtYWY2ZGIwOTc2NGNjP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "850549a9-1644-4219-b1bb-79b3199b6ba6" + ], + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "104" + ], + "x-ms-correlation-request-id": [ + "850549a9-1644-4219-b1bb-79b3199b6ba6" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082617Z:850549a9-1644-4219-b1bb-79b3199b6ba6" + ], + "Date": [ + "Mon, 16 May 2022 08:26:16 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"name\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T08:24:56.6582175Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupOperations/4ca7f95b-98a3-45bd-a43e-af6db09764cc?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvNGNhN2Y5NWItOThhMy00NWJkLWE0M2UtYWY2ZGIwOTc2NGNjP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "3bfcdaaf-6302-4081-bae1-0cafa9c55eb3" + ], + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "103" + ], + "x-ms-correlation-request-id": [ + "3bfcdaaf-6302-4081-bae1-0cafa9c55eb3" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082618Z:3bfcdaaf-6302-4081-bae1-0cafa9c55eb3" + ], + "Date": [ + "Mon, 16 May 2022 08:26:17 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"name\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T08:24:56.6582175Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupOperations/4ca7f95b-98a3-45bd-a43e-af6db09764cc?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvNGNhN2Y5NWItOThhMy00NWJkLWE0M2UtYWY2ZGIwOTc2NGNjP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "d7fb6561-4818-4fe6-874d-3faf3949a5b6" + ], + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "102" + ], + "x-ms-correlation-request-id": [ + "d7fb6561-4818-4fe6-874d-3faf3949a5b6" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082618Z:d7fb6561-4818-4fe6-874d-3faf3949a5b6" + ], + "Date": [ + "Mon, 16 May 2022 08:26:17 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"name\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T08:24:56.6582175Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupOperations/4ca7f95b-98a3-45bd-a43e-af6db09764cc?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvNGNhN2Y5NWItOThhMy00NWJkLWE0M2UtYWY2ZGIwOTc2NGNjP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "c852baff-7b56-4242-8d44-9dc2955995fc" + ], + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "101" + ], + "x-ms-correlation-request-id": [ + "c852baff-7b56-4242-8d44-9dc2955995fc" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082619Z:c852baff-7b56-4242-8d44-9dc2955995fc" + ], + "Date": [ + "Mon, 16 May 2022 08:26:18 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"name\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T08:24:56.6582175Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupOperations/4ca7f95b-98a3-45bd-a43e-af6db09764cc?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvNGNhN2Y5NWItOThhMy00NWJkLWE0M2UtYWY2ZGIwOTc2NGNjP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "3cb57a96-ae86-4d1a-b542-895201dfe6b9" + ], + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "100" + ], + "x-ms-correlation-request-id": [ + "3cb57a96-ae86-4d1a-b542-895201dfe6b9" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082619Z:3cb57a96-ae86-4d1a-b542-895201dfe6b9" + ], + "Date": [ + "Mon, 16 May 2022 08:26:19 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"name\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T08:24:56.6582175Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupOperations/4ca7f95b-98a3-45bd-a43e-af6db09764cc?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvNGNhN2Y5NWItOThhMy00NWJkLWE0M2UtYWY2ZGIwOTc2NGNjP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "35ffc0fb-4074-40ab-acbf-77030f69b9f9" + ], + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "99" + ], + "x-ms-correlation-request-id": [ + "35ffc0fb-4074-40ab-acbf-77030f69b9f9" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082620Z:35ffc0fb-4074-40ab-acbf-77030f69b9f9" + ], + "Date": [ + "Mon, 16 May 2022 08:26:19 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"name\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T08:24:56.6582175Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupOperations/4ca7f95b-98a3-45bd-a43e-af6db09764cc?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvNGNhN2Y5NWItOThhMy00NWJkLWE0M2UtYWY2ZGIwOTc2NGNjP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "df5824e2-1836-4b7e-9a50-a1896cbc4337" + ], + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "98" + ], + "x-ms-correlation-request-id": [ + "df5824e2-1836-4b7e-9a50-a1896cbc4337" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082621Z:df5824e2-1836-4b7e-9a50-a1896cbc4337" + ], + "Date": [ + "Mon, 16 May 2022 08:26:20 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"name\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T08:24:56.6582175Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupOperations/4ca7f95b-98a3-45bd-a43e-af6db09764cc?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvNGNhN2Y5NWItOThhMy00NWJkLWE0M2UtYWY2ZGIwOTc2NGNjP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "422a545e-6ada-4e32-8f08-36be161adb25" + ], + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "97" + ], + "x-ms-correlation-request-id": [ + "422a545e-6ada-4e32-8f08-36be161adb25" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082621Z:422a545e-6ada-4e32-8f08-36be161adb25" + ], + "Date": [ + "Mon, 16 May 2022 08:26:21 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"name\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T08:24:56.6582175Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupOperations/4ca7f95b-98a3-45bd-a43e-af6db09764cc?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvNGNhN2Y5NWItOThhMy00NWJkLWE0M2UtYWY2ZGIwOTc2NGNjP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "629630f7-0039-4fa7-80b5-661ef1fc2bdf" + ], + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "96" + ], + "x-ms-correlation-request-id": [ + "629630f7-0039-4fa7-80b5-661ef1fc2bdf" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082622Z:629630f7-0039-4fa7-80b5-661ef1fc2bdf" + ], + "Date": [ + "Mon, 16 May 2022 08:26:21 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"name\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T08:24:56.6582175Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupOperations/4ca7f95b-98a3-45bd-a43e-af6db09764cc?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvNGNhN2Y5NWItOThhMy00NWJkLWE0M2UtYWY2ZGIwOTc2NGNjP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "c52e274c-dbcb-4176-8712-1acec263cf5e" + ], + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "95" + ], + "x-ms-correlation-request-id": [ + "c52e274c-dbcb-4176-8712-1acec263cf5e" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082623Z:c52e274c-dbcb-4176-8712-1acec263cf5e" + ], + "Date": [ + "Mon, 16 May 2022 08:26:22 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"name\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T08:24:56.6582175Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupOperations/4ca7f95b-98a3-45bd-a43e-af6db09764cc?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvNGNhN2Y5NWItOThhMy00NWJkLWE0M2UtYWY2ZGIwOTc2NGNjP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "450fd615-84bd-4462-babe-6318be95efb3" + ], + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "94" + ], + "x-ms-correlation-request-id": [ + "450fd615-84bd-4462-babe-6318be95efb3" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082624Z:450fd615-84bd-4462-babe-6318be95efb3" + ], + "Date": [ + "Mon, 16 May 2022 08:26:23 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"name\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T08:24:56.6582175Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupOperations/4ca7f95b-98a3-45bd-a43e-af6db09764cc?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvNGNhN2Y5NWItOThhMy00NWJkLWE0M2UtYWY2ZGIwOTc2NGNjP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "e832b1a6-fde0-44de-bf26-2d6731209f74" + ], + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "93" + ], + "x-ms-correlation-request-id": [ + "e832b1a6-fde0-44de-bf26-2d6731209f74" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082624Z:e832b1a6-fde0-44de-bf26-2d6731209f74" + ], + "Date": [ + "Mon, 16 May 2022 08:26:23 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"name\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T08:24:56.6582175Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupOperations/4ca7f95b-98a3-45bd-a43e-af6db09764cc?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvNGNhN2Y5NWItOThhMy00NWJkLWE0M2UtYWY2ZGIwOTc2NGNjP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "f0bc2c91-f072-487a-9ba5-ebefb776dbc9" + ], + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "92" + ], + "x-ms-correlation-request-id": [ + "f0bc2c91-f072-487a-9ba5-ebefb776dbc9" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082625Z:f0bc2c91-f072-487a-9ba5-ebefb776dbc9" + ], + "Date": [ + "Mon, 16 May 2022 08:26:24 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"name\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T08:24:56.6582175Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupOperations/4ca7f95b-98a3-45bd-a43e-af6db09764cc?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvNGNhN2Y5NWItOThhMy00NWJkLWE0M2UtYWY2ZGIwOTc2NGNjP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "482c5f71-c8d1-46c7-bf78-b973b26e79dc" + ], + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "91" + ], + "x-ms-correlation-request-id": [ + "482c5f71-c8d1-46c7-bf78-b973b26e79dc" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082625Z:482c5f71-c8d1-46c7-bf78-b973b26e79dc" + ], + "Date": [ + "Mon, 16 May 2022 08:26:25 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"name\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T08:24:56.6582175Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupOperations/4ca7f95b-98a3-45bd-a43e-af6db09764cc?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvNGNhN2Y5NWItOThhMy00NWJkLWE0M2UtYWY2ZGIwOTc2NGNjP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "39b048a6-6f74-4406-9261-c35c4ff12ee9" + ], + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "90" + ], + "x-ms-correlation-request-id": [ + "39b048a6-6f74-4406-9261-c35c4ff12ee9" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082626Z:39b048a6-6f74-4406-9261-c35c4ff12ee9" + ], + "Date": [ + "Mon, 16 May 2022 08:26:25 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"name\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T08:24:56.6582175Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupOperations/4ca7f95b-98a3-45bd-a43e-af6db09764cc?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvNGNhN2Y5NWItOThhMy00NWJkLWE0M2UtYWY2ZGIwOTc2NGNjP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "0fe80543-efe0-420a-93b5-eda7815bf900" + ], + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "89" + ], + "x-ms-correlation-request-id": [ + "0fe80543-efe0-420a-93b5-eda7815bf900" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082627Z:0fe80543-efe0-420a-93b5-eda7815bf900" + ], + "Date": [ + "Mon, 16 May 2022 08:26:26 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"name\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T08:24:56.6582175Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupOperations/4ca7f95b-98a3-45bd-a43e-af6db09764cc?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvNGNhN2Y5NWItOThhMy00NWJkLWE0M2UtYWY2ZGIwOTc2NGNjP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "f4236a4f-c897-41b8-bc0f-717e2782159e" + ], + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "88" + ], + "x-ms-correlation-request-id": [ + "f4236a4f-c897-41b8-bc0f-717e2782159e" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082628Z:f4236a4f-c897-41b8-bc0f-717e2782159e" + ], + "Date": [ + "Mon, 16 May 2022 08:26:28 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"name\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T08:24:56.6582175Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupOperations/4ca7f95b-98a3-45bd-a43e-af6db09764cc?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvNGNhN2Y5NWItOThhMy00NWJkLWE0M2UtYWY2ZGIwOTc2NGNjP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "67f240ec-1000-4ae7-8fa6-92d969aad78b" + ], + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "87" + ], + "x-ms-correlation-request-id": [ + "67f240ec-1000-4ae7-8fa6-92d969aad78b" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082629Z:67f240ec-1000-4ae7-8fa6-92d969aad78b" + ], + "Date": [ + "Mon, 16 May 2022 08:26:28 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"name\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T08:24:56.6582175Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupOperations/4ca7f95b-98a3-45bd-a43e-af6db09764cc?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvNGNhN2Y5NWItOThhMy00NWJkLWE0M2UtYWY2ZGIwOTc2NGNjP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "ddc2770b-326b-4d3c-87d0-4666b434c4a8" + ], + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "86" + ], + "x-ms-correlation-request-id": [ + "ddc2770b-326b-4d3c-87d0-4666b434c4a8" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082629Z:ddc2770b-326b-4d3c-87d0-4666b434c4a8" + ], + "Date": [ + "Mon, 16 May 2022 08:26:29 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"name\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T08:24:56.6582175Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupOperations/4ca7f95b-98a3-45bd-a43e-af6db09764cc?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvNGNhN2Y5NWItOThhMy00NWJkLWE0M2UtYWY2ZGIwOTc2NGNjP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "a91eed3b-cec4-4708-8a3b-a52f3e9b3f80" + ], + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "85" + ], + "x-ms-correlation-request-id": [ + "a91eed3b-cec4-4708-8a3b-a52f3e9b3f80" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082630Z:a91eed3b-cec4-4708-8a3b-a52f3e9b3f80" + ], + "Date": [ + "Mon, 16 May 2022 08:26:30 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"name\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T08:24:56.6582175Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupOperations/4ca7f95b-98a3-45bd-a43e-af6db09764cc?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvNGNhN2Y5NWItOThhMy00NWJkLWE0M2UtYWY2ZGIwOTc2NGNjP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "31b1feac-7f17-4c8c-b4b8-af162f8cf666" + ], + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "84" + ], + "x-ms-correlation-request-id": [ + "31b1feac-7f17-4c8c-b4b8-af162f8cf666" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082630Z:31b1feac-7f17-4c8c-b4b8-af162f8cf666" + ], + "Date": [ + "Mon, 16 May 2022 08:26:30 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"name\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T08:24:56.6582175Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupOperations/4ca7f95b-98a3-45bd-a43e-af6db09764cc?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvNGNhN2Y5NWItOThhMy00NWJkLWE0M2UtYWY2ZGIwOTc2NGNjP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "a09a6ef5-9b99-4e8f-94d1-8a1902f20c74" + ], + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "83" + ], + "x-ms-correlation-request-id": [ + "a09a6ef5-9b99-4e8f-94d1-8a1902f20c74" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082631Z:a09a6ef5-9b99-4e8f-94d1-8a1902f20c74" + ], + "Date": [ + "Mon, 16 May 2022 08:26:31 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"name\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T08:24:56.6582175Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupOperations/4ca7f95b-98a3-45bd-a43e-af6db09764cc?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvNGNhN2Y5NWItOThhMy00NWJkLWE0M2UtYWY2ZGIwOTc2NGNjP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "3730d77f-2bf9-452f-8634-8cd1d13e6822" + ], + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "82" + ], + "x-ms-correlation-request-id": [ + "3730d77f-2bf9-452f-8634-8cd1d13e6822" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082632Z:3730d77f-2bf9-452f-8634-8cd1d13e6822" + ], + "Date": [ + "Mon, 16 May 2022 08:26:32 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"name\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T08:24:56.6582175Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupOperations/4ca7f95b-98a3-45bd-a43e-af6db09764cc?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvNGNhN2Y5NWItOThhMy00NWJkLWE0M2UtYWY2ZGIwOTc2NGNjP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "066a70d8-7351-4a74-85f3-65bf5040bad4" + ], + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "81" + ], + "x-ms-correlation-request-id": [ + "066a70d8-7351-4a74-85f3-65bf5040bad4" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082632Z:066a70d8-7351-4a74-85f3-65bf5040bad4" + ], + "Date": [ + "Mon, 16 May 2022 08:26:32 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"name\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T08:24:56.6582175Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupOperations/4ca7f95b-98a3-45bd-a43e-af6db09764cc?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvNGNhN2Y5NWItOThhMy00NWJkLWE0M2UtYWY2ZGIwOTc2NGNjP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "0112064f-2854-44a8-9317-277dab187f1b" + ], + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "80" + ], + "x-ms-correlation-request-id": [ + "0112064f-2854-44a8-9317-277dab187f1b" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082633Z:0112064f-2854-44a8-9317-277dab187f1b" + ], + "Date": [ + "Mon, 16 May 2022 08:26:33 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"name\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T08:24:56.6582175Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupOperations/4ca7f95b-98a3-45bd-a43e-af6db09764cc?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvNGNhN2Y5NWItOThhMy00NWJkLWE0M2UtYWY2ZGIwOTc2NGNjP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "6733a3ff-85bc-446f-932a-d4e88496a32f" + ], + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "79" + ], + "x-ms-correlation-request-id": [ + "6733a3ff-85bc-446f-932a-d4e88496a32f" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T082634Z:6733a3ff-85bc-446f-932a-d4e88496a32f" + ], + "Date": [ + "Mon, 16 May 2022 08:26:34 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"name\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T08:24:56.6582175Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupOperations/4ca7f95b-98a3-45bd-a43e-af6db09764cc?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvNGNhN2Y5NWItOThhMy00NWJkLWE0M2UtYWY2ZGIwOTc2NGNjP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "f6bceed8-ec0d-46c9-99c7-83d9994f9ceb" + ], + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "299" + ], + "x-ms-correlation-request-id": [ + "f6bceed8-ec0d-46c9-99c7-83d9994f9ceb" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T082639Z:f6bceed8-ec0d-46c9-99c7-83d9994f9ceb" + ], + "Date": [ + "Mon, 16 May 2022 08:26:38 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"name\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T08:24:56.6582175Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupOperations/4ca7f95b-98a3-45bd-a43e-af6db09764cc?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvNGNhN2Y5NWItOThhMy00NWJkLWE0M2UtYWY2ZGIwOTc2NGNjP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "0878973c-b57f-490d-b24d-2b452fe5d226" + ], + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "298" + ], + "x-ms-correlation-request-id": [ + "0878973c-b57f-490d-b24d-2b452fe5d226" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T082639Z:0878973c-b57f-490d-b24d-2b452fe5d226" + ], + "Date": [ + "Mon, 16 May 2022 08:26:39 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"name\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T08:24:56.6582175Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupOperations/4ca7f95b-98a3-45bd-a43e-af6db09764cc?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvNGNhN2Y5NWItOThhMy00NWJkLWE0M2UtYWY2ZGIwOTc2NGNjP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "b9c9dc6a-3fe8-4365-a6f4-a1de9cbebc9c" + ], + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "297" + ], + "x-ms-correlation-request-id": [ + "b9c9dc6a-3fe8-4365-a6f4-a1de9cbebc9c" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T082640Z:b9c9dc6a-3fe8-4365-a6f4-a1de9cbebc9c" + ], + "Date": [ + "Mon, 16 May 2022 08:26:40 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"name\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T08:24:56.6582175Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupOperations/4ca7f95b-98a3-45bd-a43e-af6db09764cc?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvNGNhN2Y5NWItOThhMy00NWJkLWE0M2UtYWY2ZGIwOTc2NGNjP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "22d3c2b2-6ca4-48a2-b87a-fb78c9457eb2" + ], + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "296" + ], + "x-ms-correlation-request-id": [ + "22d3c2b2-6ca4-48a2-b87a-fb78c9457eb2" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T082641Z:22d3c2b2-6ca4-48a2-b87a-fb78c9457eb2" + ], + "Date": [ + "Mon, 16 May 2022 08:26:41 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"name\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T08:24:56.6582175Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupOperations/4ca7f95b-98a3-45bd-a43e-af6db09764cc?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvNGNhN2Y5NWItOThhMy00NWJkLWE0M2UtYWY2ZGIwOTc2NGNjP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "ae3d7abd-b60c-41f8-8c58-2a4d98dd8231" + ], + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "295" + ], + "x-ms-correlation-request-id": [ + "ae3d7abd-b60c-41f8-8c58-2a4d98dd8231" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T082642Z:ae3d7abd-b60c-41f8-8c58-2a4d98dd8231" + ], + "Date": [ + "Mon, 16 May 2022 08:26:41 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"name\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T08:24:56.6582175Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupOperations/4ca7f95b-98a3-45bd-a43e-af6db09764cc?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvNGNhN2Y5NWItOThhMy00NWJkLWE0M2UtYWY2ZGIwOTc2NGNjP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "9dde20ac-9da8-4a4d-893d-3ccf0456514c" + ], + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "294" + ], + "x-ms-correlation-request-id": [ + "9dde20ac-9da8-4a4d-893d-3ccf0456514c" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T082643Z:9dde20ac-9da8-4a4d-893d-3ccf0456514c" + ], + "Date": [ + "Mon, 16 May 2022 08:26:42 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"name\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T08:24:56.6582175Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupOperations/4ca7f95b-98a3-45bd-a43e-af6db09764cc?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvNGNhN2Y5NWItOThhMy00NWJkLWE0M2UtYWY2ZGIwOTc2NGNjP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "3b28d5a6-434b-40bf-82c5-e54876c6e9e1" + ], + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "293" + ], + "x-ms-correlation-request-id": [ + "3b28d5a6-434b-40bf-82c5-e54876c6e9e1" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T082643Z:3b28d5a6-434b-40bf-82c5-e54876c6e9e1" + ], + "Date": [ + "Mon, 16 May 2022 08:26:43 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"name\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T08:24:56.6582175Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupOperations/4ca7f95b-98a3-45bd-a43e-af6db09764cc?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvNGNhN2Y5NWItOThhMy00NWJkLWE0M2UtYWY2ZGIwOTc2NGNjP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "4a6f129a-82ec-4161-b221-84d4ccde4ef1" + ], + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "292" + ], + "x-ms-correlation-request-id": [ + "4a6f129a-82ec-4161-b221-84d4ccde4ef1" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T082644Z:4a6f129a-82ec-4161-b221-84d4ccde4ef1" + ], + "Date": [ + "Mon, 16 May 2022 08:26:44 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"name\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T08:24:56.6582175Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupOperations/4ca7f95b-98a3-45bd-a43e-af6db09764cc?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvNGNhN2Y5NWItOThhMy00NWJkLWE0M2UtYWY2ZGIwOTc2NGNjP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "ec89412b-5e53-44a4-af13-0b409126aaf5" + ], + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "291" + ], + "x-ms-correlation-request-id": [ + "ec89412b-5e53-44a4-af13-0b409126aaf5" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T082645Z:ec89412b-5e53-44a4-af13-0b409126aaf5" + ], + "Date": [ + "Mon, 16 May 2022 08:26:44 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"name\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T08:24:56.6582175Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupOperations/4ca7f95b-98a3-45bd-a43e-af6db09764cc?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvNGNhN2Y5NWItOThhMy00NWJkLWE0M2UtYWY2ZGIwOTc2NGNjP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "0c7034aa-34da-4781-9a82-3bfd9d3eff0c" + ], + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "290" + ], + "x-ms-correlation-request-id": [ + "0c7034aa-34da-4781-9a82-3bfd9d3eff0c" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T082646Z:0c7034aa-34da-4781-9a82-3bfd9d3eff0c" + ], + "Date": [ + "Mon, 16 May 2022 08:26:45 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"name\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T08:24:56.6582175Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupOperations/4ca7f95b-98a3-45bd-a43e-af6db09764cc?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvNGNhN2Y5NWItOThhMy00NWJkLWE0M2UtYWY2ZGIwOTc2NGNjP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "c716ab78-f63d-4989-b22c-d75d0191bbc5" + ], + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "289" + ], + "x-ms-correlation-request-id": [ + "c716ab78-f63d-4989-b22c-d75d0191bbc5" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T082646Z:c716ab78-f63d-4989-b22c-d75d0191bbc5" + ], + "Date": [ + "Mon, 16 May 2022 08:26:46 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"name\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T08:24:56.6582175Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupOperations/4ca7f95b-98a3-45bd-a43e-af6db09764cc?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvNGNhN2Y5NWItOThhMy00NWJkLWE0M2UtYWY2ZGIwOTc2NGNjP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "8a17eefc-74c3-4c39-8e66-ae75dded0e4d" + ], + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "288" + ], + "x-ms-correlation-request-id": [ + "8a17eefc-74c3-4c39-8e66-ae75dded0e4d" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T082647Z:8a17eefc-74c3-4c39-8e66-ae75dded0e4d" + ], + "Date": [ + "Mon, 16 May 2022 08:26:46 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"name\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T08:24:56.6582175Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupOperations/4ca7f95b-98a3-45bd-a43e-af6db09764cc?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvNGNhN2Y5NWItOThhMy00NWJkLWE0M2UtYWY2ZGIwOTc2NGNjP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "d67bafae-614d-4858-9bae-33f1d2bf2ed4" + ], + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "287" + ], + "x-ms-correlation-request-id": [ + "d67bafae-614d-4858-9bae-33f1d2bf2ed4" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T082648Z:d67bafae-614d-4858-9bae-33f1d2bf2ed4" + ], + "Date": [ + "Mon, 16 May 2022 08:26:47 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"name\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T08:24:56.6582175Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupOperations/4ca7f95b-98a3-45bd-a43e-af6db09764cc?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvNGNhN2Y5NWItOThhMy00NWJkLWE0M2UtYWY2ZGIwOTc2NGNjP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "6bb4e66e-15da-44e5-9811-d4ad94620cb9" + ], + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "286" + ], + "x-ms-correlation-request-id": [ + "6bb4e66e-15da-44e5-9811-d4ad94620cb9" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T082648Z:6bb4e66e-15da-44e5-9811-d4ad94620cb9" + ], + "Date": [ + "Mon, 16 May 2022 08:26:48 GMT" + ], + "Content-Length": [ + "304" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"name\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-05-16T08:24:56.6582175Z\",\r\n \"endTime\": \"2022-05-16T08:24:56.6582175Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"40c007ec-7c56-48dc-b321-cc6618c8494b\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupOperations/4ca7f95b-98a3-45bd-a43e-af6db09764cc?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvNGNhN2Y5NWItOThhMy00NWJkLWE0M2UtYWY2ZGIwOTc2NGNjP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "701a7725-3043-4870-8e2e-3bbfda38f338" + ], + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "285" + ], + "x-ms-correlation-request-id": [ + "701a7725-3043-4870-8e2e-3bbfda38f338" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T082649Z:701a7725-3043-4870-8e2e-3bbfda38f338" + ], + "Date": [ + "Mon, 16 May 2022 08:26:49 GMT" + ], + "Content-Length": [ + "304" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"name\": \"4ca7f95b-98a3-45bd-a43e-af6db09764cc\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-05-16T08:24:56.6582175Z\",\r\n \"endTime\": \"2022-05-16T08:24:56.6582175Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"40c007ec-7c56-48dc-b321-cc6618c8494b\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupJobs/40c007ec-7c56-48dc-b321-cc6618c8494b?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cEpvYnMvNDBjMDA3ZWMtN2M1Ni00OGRjLWIzMjEtY2M2NjE4Yzg0OTRiP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "3e3425b2-2637-48c6-bd6b-b257813d1b2c" + ], + "x-ms-client-request-id": [ + "3c63178c-cb4a-417c-9806-38e861d91dbf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "299" + ], + "x-ms-correlation-request-id": [ + "3e3425b2-2637-48c6-bd6b-b257813d1b2c" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T082650Z:3e3425b2-2637-48c6-bd6b-b257813d1b2c" + ], + "Date": [ + "Mon, 16 May 2022 08:26:49 GMT" + ], + "Content-Length": [ + "816" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupJobs/40c007ec-7c56-48dc-b321-cc6618c8494b\",\r\n \"name\": \"40c007ec-7c56-48dc-b321-cc6618c8494b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiaganewvm2\",\r\n \"duration\": \"PT1M51.495567S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"VM Name\": \"hiaganewVM2\",\r\n \"Number of Recovery Points\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"hiaganewVM2\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"DeleteBackupData\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-05-16T08:24:56.6582175Z\",\r\n \"endTime\": \"2022-05-16T08:26:48.1537845Z\",\r\n \"activityId\": \"3c63178c-cb4a-417c-9806-38e861d91dbf\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/mua-pstest-vault/backupResourceGuardProxies/VaultProxy?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9tdWEtcHN0ZXN0LXZhdWx0L2JhY2t1cFJlc291cmNlR3VhcmRQcm94aWVzL1ZhdWx0UHJveHk/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "97dc07a3-c1f3-4c43-aec2-391edbd62a5c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "58abdc9c-50e8-4db1-ac35-98e09ce9352f" + ], + "x-ms-client-request-id": [ + "97dc07a3-c1f3-4c43-aec2-391edbd62a5c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-correlation-request-id": [ + "58abdc9c-50e8-4db1-ac35-98e09ce9352f" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T082653Z:58abdc9c-50e8-4db1-ac35-98e09ce9352f" + ], + "Date": [ + "Mon, 16 May 2022 08:26:52 GMT" + ], + "Content-Length": [ + "2" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{}", + "StatusCode": 200 + } + ], + "Names": {}, + "Variables": { + "SubscriptionId": "38304e13-357e-405e-9e9a-220351dcce8c" + } +} \ No newline at end of file diff --git a/src/RecoveryServices/RecoveryServices.Backup.Test/SessionRecords/Microsoft.Azure.Commands.RecoveryServices.Backup.Test.ScenarioTests.ItemTests/TestAzureVMProtection.json b/src/RecoveryServices/RecoveryServices.Backup.Test/SessionRecords/Microsoft.Azure.Commands.RecoveryServices.Backup.Test.ScenarioTests.ItemTests/TestAzureVMProtection.json index a69c6657bd22..34560a756c95 100644 --- a/src/RecoveryServices/RecoveryServices.Backup.Test/SessionRecords/Microsoft.Azure.Commands.RecoveryServices.Backup.Test.ScenarioTests.ItemTests/TestAzureVMProtection.json +++ b/src/RecoveryServices/RecoveryServices.Backup.Test/SessionRecords/Microsoft.Azure.Commands.RecoveryServices.Backup.Test.ScenarioTests.ItemTests/TestAzureVMProtection.json @@ -1,19 +1,19 @@ { "Entries": [ { - "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourcegroups/PSTestRGffa8be76?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlZ3JvdXBzL1BTVGVzdFJHZmZhOGJlNzY/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourcegroups/PSTestRG66dc4625?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlZ3JvdXBzL1BTVGVzdFJHNjZkYzQ2MjU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b21189d5-d92f-403f-8083-4776bac607fe" + "a9cafe5d-5c9e-4eb0-a090-bb27fef85b33" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" @@ -33,13 +33,13 @@ "11999" ], "x-ms-request-id": [ - "d5dd1475-a8c0-4da4-b3d3-61251151251a" + "8ef9cf79-2a2b-4463-8f13-c6b2422100e9" ], "x-ms-correlation-request-id": [ - "d5dd1475-a8c0-4da4-b3d3-61251151251a" + "8ef9cf79-2a2b-4463-8f13-c6b2422100e9" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220414T060439Z:d5dd1475-a8c0-4da4-b3d3-61251151251a" + "JIOINDIAWEST:20220517T054602Z:8ef9cf79-2a2b-4463-8f13-c6b2422100e9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -48,7 +48,7 @@ "nosniff" ], "Date": [ - "Thu, 14 Apr 2022 06:04:38 GMT" + "Tue, 17 May 2022 05:46:02 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -60,23 +60,23 @@ "108" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'PSTestRGffa8be76' could not be found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'PSTestRG66dc4625' could not be found.\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourcegroups/PSTestRGffa8be76?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlZ3JvdXBzL1BTVGVzdFJHZmZhOGJlNzY/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourcegroups/PSTestRG66dc4625?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlZ3JvdXBzL1BTVGVzdFJHNjZkYzQ2MjU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d6a5469e-6278-4b19-8dd1-99bfd9c95c94" + "39008515-b653-4501-a010-e2c3aed7901e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" @@ -90,16 +90,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11984" + "11999" ], "x-ms-request-id": [ - "fcb3d905-c384-4dc5-8122-e05a88a5cb33" + "cdc3aa2f-fb45-434b-9d4a-fb0a4dca45b4" ], "x-ms-correlation-request-id": [ - "fcb3d905-c384-4dc5-8122-e05a88a5cb33" + "cdc3aa2f-fb45-434b-9d4a-fb0a4dca45b4" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220414T061510Z:fcb3d905-c384-4dc5-8122-e05a88a5cb33" + "JIOINDIAWEST:20220517T055414Z:cdc3aa2f-fb45-434b-9d4a-fb0a4dca45b4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -108,7 +108,7 @@ "nosniff" ], "Date": [ - "Thu, 14 Apr 2022 06:15:09 GMT" + "Tue, 17 May 2022 05:54:13 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -120,23 +120,23 @@ "192" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGffa8be76\",\r\n \"name\": \"PSTestRGffa8be76\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG66dc4625\",\r\n \"name\": \"PSTestRG66dc4625\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourcegroups/PSTestRGffa8be76?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlZ3JvdXBzL1BTVGVzdFJHZmZhOGJlNzY/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourcegroups/PSTestRG66dc4625?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlZ3JvdXBzL1BTVGVzdFJHNjZkYzQ2MjU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"southeastasia\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "3069aefe-a0c0-4bfe-aaeb-057b5aaaaf72" + "a12bfacc-0562-44c5-9674-bcb75de80877" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" @@ -159,13 +159,13 @@ "1199" ], "x-ms-request-id": [ - "f68393a4-a182-4f7d-bc28-c8e856d55ea7" + "ac2fcfaf-5e48-4111-8820-fd14cf046d07" ], "x-ms-correlation-request-id": [ - "f68393a4-a182-4f7d-bc28-c8e856d55ea7" + "ac2fcfaf-5e48-4111-8820-fd14cf046d07" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220414T060441Z:f68393a4-a182-4f7d-bc28-c8e856d55ea7" + "JIOINDIAWEST:20220517T054604Z:ac2fcfaf-5e48-4111-8820-fd14cf046d07" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -174,7 +174,7 @@ "nosniff" ], "Date": [ - "Thu, 14 Apr 2022 06:04:40 GMT" + "Tue, 17 May 2022 05:46:04 GMT" ], "Content-Length": [ "192" @@ -186,23 +186,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGffa8be76\",\r\n \"name\": \"PSTestRGffa8be76\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG66dc4625\",\r\n \"name\": \"PSTestRG66dc4625\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGffa8be76/providers/Microsoft.Compute/virtualMachines/PSTestVMffa8b0?api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZmZhOGJlNzYvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy9QU1Rlc3RWTWZmYThiMD9hcGktdmVyc2lvbj0yMDIxLTExLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG66dc4625/providers/Microsoft.Compute/virtualMachines/PSTestVM66dc40?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNjZkYzQ2MjUvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy9QU1Rlc3RWTTY2ZGM0MD9hcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f2f37e4b-a7b4-4d4e-b3f0-ffbc09e5cac4" + "2d98cde9-50c2-45a3-ac40-255e4d69d923" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" @@ -219,13 +219,13 @@ "gateway" ], "x-ms-request-id": [ - "7571f81c-67be-478a-9a27-7d3d8a85d17a" + "1c17729e-d088-4507-82a3-92dfbdb6e674" ], "x-ms-correlation-request-id": [ - "7571f81c-67be-478a-9a27-7d3d8a85d17a" + "1c17729e-d088-4507-82a3-92dfbdb6e674" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220414T060442Z:7571f81c-67be-478a-9a27-7d3d8a85d17a" + "WESTINDIA:20220517T054605Z:1c17729e-d088-4507-82a3-92dfbdb6e674" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -234,7 +234,7 @@ "nosniff" ], "Date": [ - "Thu, 14 Apr 2022 06:04:41 GMT" + "Tue, 17 May 2022 05:46:05 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -246,20 +246,20 @@ "236" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Compute/virtualMachines/PSTestVMffa8b0' under resource group 'PSTestRGffa8be76' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Compute/virtualMachines/PSTestVM66dc40' under resource group 'PSTestRG66dc4625' 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/PSTestRGffa8be76/providers/Microsoft.Compute/virtualMachines/PSTestVMffa8b0?api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZmZhOGJlNzYvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy9QU1Rlc3RWTWZmYThiMD9hcGktdmVyc2lvbj0yMDIxLTExLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG66dc4625/providers/Microsoft.Compute/virtualMachines/PSTestVM66dc40?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNjZkYzQ2MjUvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy9QU1Rlc3RWTTY2ZGM0MD9hcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "21a92e22-7dff-4d3e-ab32-1bd85a11d4bf" + "61c5f3cc-b073-4c59-bfd7-56e6c7e0bfea" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" @@ -273,35 +273,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/LowCostGet3Min;3998,Microsoft.Compute/LowCostGet30Min;31959" + "Microsoft.Compute/LowCostGet3Min;3979,Microsoft.Compute/LowCostGet30Min;31774" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "89798d23-dd5f-42e7-9464-fc4e733c885d" + "129034a4-0d6d-45ee-97aa-980a0d6933e0" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11992" ], "x-ms-correlation-request-id": [ - "4ff92ae5-56ce-42d7-910b-4af6f609e31f" + "3fe138d3-1c09-4f9e-abda-7fdae9b91498" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220414T060658Z:4ff92ae5-56ce-42d7-910b-4af6f609e31f" + "WESTINDIA:20220517T054819Z:3fe138d3-1c09-4f9e-abda-7fdae9b91498" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 14 Apr 2022 06:06:58 GMT" + "Tue, 17 May 2022 05:48:19 GMT" ], "Content-Length": [ - "2147" + "2195" ], "Content-Type": [ "application/json; charset=utf-8" @@ -310,23 +310,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"PSTestVMffa8b0\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGffa8be76/providers/Microsoft.Compute/virtualMachines/PSTestVMffa8b0\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"Owner\": \"sarath\",\r\n \"MabUsed\": \"Yes\",\r\n \"Purpose\": \"PSTest\",\r\n \"AutoShutDown\": \"No\",\r\n \"DeleteBy\": \"06-2022\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"782e30c2-61b4-447a-aa1a-bd0823f0a2fb\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D1_v2\"\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.5066.220403\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"PSTestVMffa8b0_OsDisk_1_815bbe40e64f42ab8325029a4a502fd7\",\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/PSTestRGffa8be76/providers/Microsoft.Compute/disks/PSTestVMffa8b0_OsDisk_1_815bbe40e64f42ab8325029a4a502fd7\"\r\n },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"PSTestVMffa8b0\",\r\n \"adminUsername\": \"demouser\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"AutomaticByOS\",\r\n \"assessmentMode\": \"ImageDefault\"\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/PSTestRGffa8be76/providers/Microsoft.Network/networkInterfaces/PSTestNICffa8b0\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"timeCreated\": \"2022-04-14T11:35:06.5140852+05:30\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"PSTestVM66dc40\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG66dc4625/providers/Microsoft.Compute/virtualMachines/PSTestVM66dc40\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"Owner\": \"sarath\",\r\n \"DeleteBy\": \"06-2022\",\r\n \"Purpose\": \"PSTest\",\r\n \"MabUsed\": \"Yes\",\r\n \"AutoShutDown\": \"No\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"3499b57a-58c2-40ae-93b7-487af7130d58\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D1_v2\"\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.5125.220505\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"PSTestVM66dc40_OsDisk_1_c4bf8ce089aa40b5b4865e91bcca1aea\",\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/PSTestRG66dc4625/providers/Microsoft.Compute/disks/PSTestVM66dc40_OsDisk_1_c4bf8ce089aa40b5b4865e91bcca1aea\"\r\n },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"PSTestVM66dc40\",\r\n \"adminUsername\": \"demouser\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"AutomaticByOS\",\r\n \"assessmentMode\": \"ImageDefault\"\r\n },\r\n \"enableVMAgentPlatformUpdates\": false\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/PSTestRG66dc4625/providers/Microsoft.Network/networkInterfaces/PSTestNIC66dc40\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"timeCreated\": \"2022-05-17T11:16:28.0739312+05:30\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGffa8be76/providers/Microsoft.Compute/virtualMachines/PSTestVMffa8b0?api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZmZhOGJlNzYvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy9QU1Rlc3RWTWZmYThiMD9hcGktdmVyc2lvbj0yMDIxLTExLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG66dc4625/providers/Microsoft.Compute/virtualMachines/PSTestVM66dc40?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNjZkYzQ2MjUvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy9QU1Rlc3RWTTY2ZGM0MD9hcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2db7aa76-7449-4ba0-9461-182f59ea5f0b" + "74499a38-6b1b-43d7-9c2b-01c58de6a855" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" @@ -340,35 +340,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/LowCostGet3Min;3995,Microsoft.Compute/LowCostGet30Min;31955" + "Microsoft.Compute/LowCostGet3Min;3976,Microsoft.Compute/LowCostGet30Min;31819" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "789c9f14-ab6a-4a4d-ac06-83969eff68d5" + "72e19e44-21a5-4999-bb67-c142a2a3560d" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" + "11982" ], "x-ms-correlation-request-id": [ - "ce55d27f-0db8-4c9f-a338-93491adbfdf7" + "a04f5705-21e2-42a8-9f51-e16037a96490" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220414T060932Z:ce55d27f-0db8-4c9f-a338-93491adbfdf7" + "WESTINDIA:20220517T055054Z:a04f5705-21e2-42a8-9f51-e16037a96490" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 14 Apr 2022 06:09:31 GMT" + "Tue, 17 May 2022 05:50:53 GMT" ], "Content-Length": [ - "2710" + "2758" ], "Content-Type": [ "application/json; charset=utf-8" @@ -377,26 +377,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"PSTestVMffa8b0\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGffa8be76/providers/Microsoft.Compute/virtualMachines/PSTestVMffa8b0\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"Owner\": \"sarath\",\r\n \"MabUsed\": \"Yes\",\r\n \"Purpose\": \"PSTest\",\r\n \"AutoShutDown\": \"No\",\r\n \"DeleteBy\": \"06-2022\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"782e30c2-61b4-447a-aa1a-bd0823f0a2fb\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D1_v2\"\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.5066.220403\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"PSTestVMffa8b0_OsDisk_1_815bbe40e64f42ab8325029a4a502fd7\",\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/PSTestRGffa8be76/providers/Microsoft.Compute/disks/PSTestVMffa8b0_OsDisk_1_815bbe40e64f42ab8325029a4a502fd7\"\r\n },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"PSTestVMffa8b0\",\r\n \"adminUsername\": \"demouser\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"AutomaticByOS\",\r\n \"assessmentMode\": \"ImageDefault\"\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/PSTestRGffa8be76/providers/Microsoft.Network/networkInterfaces/PSTestNICffa8b0\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"timeCreated\": \"2022-04-14T11:35:06.5140852+05:30\"\r\n },\r\n \"resources\": [\r\n {\r\n \"name\": \"BGInfo\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGffa8be76/providers/Microsoft.Compute/virtualMachines/PSTestVMffa8b0/extensions/BGInfo\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"BGInfo\",\r\n \"typeHandlerVersion\": \"2.2\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"name\": \"PSTestVM66dc40\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG66dc4625/providers/Microsoft.Compute/virtualMachines/PSTestVM66dc40\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"Owner\": \"sarath\",\r\n \"DeleteBy\": \"06-2022\",\r\n \"Purpose\": \"PSTest\",\r\n \"MabUsed\": \"Yes\",\r\n \"AutoShutDown\": \"No\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"3499b57a-58c2-40ae-93b7-487af7130d58\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D1_v2\"\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.5125.220505\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"PSTestVM66dc40_OsDisk_1_c4bf8ce089aa40b5b4865e91bcca1aea\",\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/PSTestRG66dc4625/providers/Microsoft.Compute/disks/PSTestVM66dc40_OsDisk_1_c4bf8ce089aa40b5b4865e91bcca1aea\"\r\n },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"PSTestVM66dc40\",\r\n \"adminUsername\": \"demouser\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"AutomaticByOS\",\r\n \"assessmentMode\": \"ImageDefault\"\r\n },\r\n \"enableVMAgentPlatformUpdates\": false\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/PSTestRG66dc4625/providers/Microsoft.Network/networkInterfaces/PSTestNIC66dc40\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"timeCreated\": \"2022-05-17T11:16:28.0739312+05:30\"\r\n },\r\n \"resources\": [\r\n {\r\n \"name\": \"BGInfo\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG66dc4625/providers/Microsoft.Compute/virtualMachines/PSTestVM66dc40/extensions/BGInfo\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"BGInfo\",\r\n \"typeHandlerVersion\": \"2.2\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGffa8be76/providers/Microsoft.Network/virtualNetworks/PSTestVNETffa8b0?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZmZhOGJlNzYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy9QU1Rlc3RWTkVUZmZhOGIwP2FwaS12ZXJzaW9uPTIwMjEtMDUtMDE=", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG66dc4625/providers/Microsoft.Network/virtualNetworks/PSTestVNET66dc40?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNjZkYzQ2MjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy9QU1Rlc3RWTkVUNjZkYzQwP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6da43396-c3be-4fe8-ac83-b0fe8bca8e42" + "5534de02-186e-43ad-b9e5-d9556c19ec43" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ] }, "ResponseHeaders": { @@ -410,13 +410,13 @@ "gateway" ], "x-ms-request-id": [ - "fdb05217-33ad-4ce9-aa2d-65fae67fef2a" + "803523c4-9fb3-46b9-a360-35a4853c01df" ], "x-ms-correlation-request-id": [ - "fdb05217-33ad-4ce9-aa2d-65fae67fef2a" + "803523c4-9fb3-46b9-a360-35a4853c01df" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220414T060443Z:fdb05217-33ad-4ce9-aa2d-65fae67fef2a" + "WESTINDIA:20220517T054605Z:803523c4-9fb3-46b9-a360-35a4853c01df" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -425,7 +425,7 @@ "nosniff" ], "Date": [ - "Thu, 14 Apr 2022 06:04:42 GMT" + "Tue, 17 May 2022 05:46:04 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -437,23 +437,23 @@ "238" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/virtualNetworks/PSTestVNETffa8b0' under resource group 'PSTestRGffa8be76' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/virtualNetworks/PSTestVNET66dc40' under resource group 'PSTestRG66dc4625' 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/PSTestRGffa8be76/providers/Microsoft.Network/virtualNetworks/PSTestVNETffa8b0?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZmZhOGJlNzYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy9QU1Rlc3RWTkVUZmZhOGIwP2FwaS12ZXJzaW9uPTIwMjEtMDUtMDE=", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG66dc4625/providers/Microsoft.Network/virtualNetworks/PSTestVNET66dc40?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNjZkYzQ2MjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy9QU1Rlc3RWTkVUNjZkYzQwP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6da43396-c3be-4fe8-ac83-b0fe8bca8e42" + "5534de02-186e-43ad-b9e5-d9556c19ec43" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ] }, "ResponseHeaders": { @@ -464,16 +464,16 @@ "no-cache" ], "ETag": [ - "W/\"76b956a4-b3d6-458b-8399-10a4c59ff67a\"" + "W/\"f4acc69c-bcc8-4412-bdbd-e102db1905c7\"" ], "x-ms-request-id": [ - "8bd70ac1-d3d0-4952-91ac-17599f72955e" + "a3cff5b0-1d6f-44e2-bee6-dba6f5176624" ], "x-ms-correlation-request-id": [ - "a00dcbd7-2dab-4d38-96d1-23be460bd638" + "607eb542-42d1-4bd3-9995-fe32eb4d69de" ], "x-ms-arm-service-request-id": [ - "23ac0b32-b165-4355-b974-2a265907f633" + "50aadace-dbe2-406a-abed-75129fdd8ca0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -486,13 +486,13 @@ "11997" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220414T060450Z:a00dcbd7-2dab-4d38-96d1-23be460bd638" + "WESTINDIA:20220517T054613Z:607eb542-42d1-4bd3-9995-fe32eb4d69de" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 14 Apr 2022 06:04:50 GMT" + "Tue, 17 May 2022 05:46:12 GMT" ], "Content-Length": [ "1315" @@ -504,26 +504,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"PSTestVNETffa8b0\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGffa8be76/providers/Microsoft.Network/virtualNetworks/PSTestVNETffa8b0\",\r\n \"etag\": \"W/\\\"76b956a4-b3d6-458b-8399-10a4c59ff67a\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"73a8bd8d-2b50-4729-b804-3314bf68b24e\",\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\": \"PSTestSNCffa8b0\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGffa8be76/providers/Microsoft.Network/virtualNetworks/PSTestVNETffa8b0/subnets/PSTestSNCffa8b0\",\r\n \"etag\": \"W/\\\"76b956a4-b3d6-458b-8399-10a4c59ff67a\\\"\",\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 },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"PSTestVNET66dc40\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG66dc4625/providers/Microsoft.Network/virtualNetworks/PSTestVNET66dc40\",\r\n \"etag\": \"W/\\\"f4acc69c-bcc8-4412-bdbd-e102db1905c7\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"cc90e098-436b-44ce-88b2-a63038fe2f1f\",\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\": \"PSTestSNC66dc40\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG66dc4625/providers/Microsoft.Network/virtualNetworks/PSTestVNET66dc40/subnets/PSTestSNC66dc40\",\r\n \"etag\": \"W/\\\"f4acc69c-bcc8-4412-bdbd-e102db1905c7\\\"\",\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 },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGffa8be76/providers/Microsoft.Network/virtualNetworks/PSTestVNETffa8b0?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZmZhOGJlNzYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy9QU1Rlc3RWTkVUZmZhOGIwP2FwaS12ZXJzaW9uPTIwMjEtMDUtMDE=", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG66dc4625/providers/Microsoft.Network/virtualNetworks/PSTestVNET66dc40?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNjZkYzQ2MjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy9QU1Rlc3RWTkVUNjZkYzQwP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6da43396-c3be-4fe8-ac83-b0fe8bca8e42" + "5534de02-186e-43ad-b9e5-d9556c19ec43" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ] }, "ResponseHeaders": { @@ -534,16 +534,16 @@ "no-cache" ], "ETag": [ - "W/\"76b956a4-b3d6-458b-8399-10a4c59ff67a\"" + "W/\"f4acc69c-bcc8-4412-bdbd-e102db1905c7\"" ], "x-ms-request-id": [ - "1eede26c-196e-43a2-aed7-320a238f9069" + "acafdc3a-7ee5-4dd1-94c3-82243ec3b8f1" ], "x-ms-correlation-request-id": [ - "769bc369-d041-4989-bed2-052aee3b1a2b" + "4345bf0d-f385-4c51-9717-da39dc8306f8" ], "x-ms-arm-service-request-id": [ - "9ee93a8e-536c-4314-85fd-9bf56a20753b" + "65ddd65c-2df6-401c-bfa9-8da7089051d7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -556,13 +556,13 @@ "11996" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220414T060450Z:769bc369-d041-4989-bed2-052aee3b1a2b" + "WESTINDIA:20220517T054613Z:4345bf0d-f385-4c51-9717-da39dc8306f8" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 14 Apr 2022 06:04:50 GMT" + "Tue, 17 May 2022 05:46:12 GMT" ], "Content-Length": [ "1315" @@ -574,26 +574,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"PSTestVNETffa8b0\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGffa8be76/providers/Microsoft.Network/virtualNetworks/PSTestVNETffa8b0\",\r\n \"etag\": \"W/\\\"76b956a4-b3d6-458b-8399-10a4c59ff67a\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"73a8bd8d-2b50-4729-b804-3314bf68b24e\",\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\": \"PSTestSNCffa8b0\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGffa8be76/providers/Microsoft.Network/virtualNetworks/PSTestVNETffa8b0/subnets/PSTestSNCffa8b0\",\r\n \"etag\": \"W/\\\"76b956a4-b3d6-458b-8399-10a4c59ff67a\\\"\",\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 },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"PSTestVNET66dc40\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG66dc4625/providers/Microsoft.Network/virtualNetworks/PSTestVNET66dc40\",\r\n \"etag\": \"W/\\\"f4acc69c-bcc8-4412-bdbd-e102db1905c7\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"cc90e098-436b-44ce-88b2-a63038fe2f1f\",\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\": \"PSTestSNC66dc40\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG66dc4625/providers/Microsoft.Network/virtualNetworks/PSTestVNET66dc40/subnets/PSTestSNC66dc40\",\r\n \"etag\": \"W/\\\"f4acc69c-bcc8-4412-bdbd-e102db1905c7\\\"\",\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 },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGffa8be76/providers/Microsoft.Network/virtualNetworks/PSTestVNETffa8b0?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZmZhOGJlNzYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy9QU1Rlc3RWTkVUZmZhOGIwP2FwaS12ZXJzaW9uPTIwMjEtMDUtMDE=", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG66dc4625/providers/Microsoft.Network/virtualNetworks/PSTestVNET66dc40?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNjZkYzQ2MjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy9QU1Rlc3RWTkVUNjZkYzQwP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=", "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 \"applicationGatewayIpConfigurations\": []\r\n },\r\n \"name\": \"PSTestSNCffa8b0\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"ipAllocations\": []\r\n },\r\n \"location\": \"southeastasia\"\r\n}", + "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 \"applicationGatewayIpConfigurations\": []\r\n },\r\n \"name\": \"PSTestSNC66dc40\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"ipAllocations\": []\r\n },\r\n \"location\": \"southeastasia\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "6da43396-c3be-4fe8-ac83-b0fe8bca8e42" + "5534de02-186e-43ad-b9e5-d9556c19ec43" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -613,19 +613,19 @@ "3" ], "x-ms-request-id": [ - "14ca61b5-658b-40dc-8e75-29ddfd9e9069" + "fa69ee8c-9932-4357-bd0a-434a7a68bd8c" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Network/locations/southeastasia/operations/14ca61b5-658b-40dc-8e75-29ddfd9e9069?api-version=2021-05-01" + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Network/locations/southeastasia/operations/fa69ee8c-9932-4357-bd0a-434a7a68bd8c?api-version=2021-08-01" ], "x-ms-correlation-request-id": [ - "ec18f023-bf6b-4269-8336-6d27f79bb8ad" + "62fdcfc6-da0c-4d4e-aae6-2cd498099753" ], "Azure-AsyncNotification": [ "Enabled" ], "x-ms-arm-service-request-id": [ - "ae21479c-a777-4ab3-8a15-b35c3f81dd36" + "54cdc6ce-bcb1-4fb2-8861-b30afc86e95e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -638,13 +638,13 @@ "1199" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220414T060447Z:ec18f023-bf6b-4269-8336-6d27f79bb8ad" + "WESTINDIA:20220517T054609Z:62fdcfc6-da0c-4d4e-aae6-2cd498099753" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 14 Apr 2022 06:04:46 GMT" + "Tue, 17 May 2022 05:46:08 GMT" ], "Content-Length": [ "1313" @@ -656,23 +656,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"PSTestVNETffa8b0\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGffa8be76/providers/Microsoft.Network/virtualNetworks/PSTestVNETffa8b0\",\r\n \"etag\": \"W/\\\"abb8e2d2-c253-48d8-a186-4ac5b194a5b4\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"73a8bd8d-2b50-4729-b804-3314bf68b24e\",\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\": \"PSTestSNCffa8b0\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGffa8be76/providers/Microsoft.Network/virtualNetworks/PSTestVNETffa8b0/subnets/PSTestSNCffa8b0\",\r\n \"etag\": \"W/\\\"abb8e2d2-c253-48d8-a186-4ac5b194a5b4\\\"\",\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 },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"PSTestVNET66dc40\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG66dc4625/providers/Microsoft.Network/virtualNetworks/PSTestVNET66dc40\",\r\n \"etag\": \"W/\\\"3971e111-624f-4962-bbf9-739999689466\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"cc90e098-436b-44ce-88b2-a63038fe2f1f\",\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\": \"PSTestSNC66dc40\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG66dc4625/providers/Microsoft.Network/virtualNetworks/PSTestVNET66dc40/subnets/PSTestSNC66dc40\",\r\n \"etag\": \"W/\\\"3971e111-624f-4962-bbf9-739999689466\\\"\",\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 },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Network/locations/southeastasia/operations/14ca61b5-658b-40dc-8e75-29ddfd9e9069?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzE0Y2E2MWI1LTY1OGItNDBkYy04ZTc1LTI5ZGRmZDllOTA2OT9hcGktdmVyc2lvbj0yMDIxLTA1LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Network/locations/southeastasia/operations/fa69ee8c-9932-4357-bd0a-434a7a68bd8c?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2ZhNjllZThjLTk5MzItNDM1Ny1iZDBhLTQzNGE3YTY4YmQ4Yz9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6da43396-c3be-4fe8-ac83-b0fe8bca8e42" + "5534de02-186e-43ad-b9e5-d9556c19ec43" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ] }, "ResponseHeaders": { @@ -683,13 +683,13 @@ "no-cache" ], "x-ms-request-id": [ - "270ad799-254e-429e-952a-8a37dff23faa" + "8d029bf1-2bbd-4f30-aecd-e700ea8dbbe7" ], "x-ms-correlation-request-id": [ - "3787b4b3-7e75-498a-8816-d6ee7f163e0f" + "b25bf15c-7146-4cc2-ab27-6e2ae15d23cc" ], "x-ms-arm-service-request-id": [ - "6bf74cb3-9e4d-4c68-8504-bcc772b07370" + "47ba5fc8-f2eb-42d2-8e5d-2a75f8f27f1c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -702,13 +702,13 @@ "11998" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220414T060450Z:3787b4b3-7e75-498a-8816-d6ee7f163e0f" + "WESTINDIA:20220517T054612Z:b25bf15c-7146-4cc2-ab27-6e2ae15d23cc" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 14 Apr 2022 06:04:49 GMT" + "Tue, 17 May 2022 05:46:12 GMT" ], "Content-Length": [ "29" @@ -724,22 +724,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGffa8be76/providers/Microsoft.Network/publicIPAddresses/pstestpublicdnsffa8b0?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZmZhOGJlNzYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BzdGVzdHB1YmxpY2Ruc2ZmYThiMD9hcGktdmVyc2lvbj0yMDIxLTA1LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG66dc4625/providers/Microsoft.Network/publicIPAddresses/pstestpublicdns66dc40?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNjZkYzQ2MjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BzdGVzdHB1YmxpY2RuczY2ZGM0MD9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6d9a6c5d-33c4-49e8-8230-95c88b3595c9" + "4daa1c85-b061-4caa-905b-e320013d3fbd" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ] }, "ResponseHeaders": { @@ -753,13 +753,13 @@ "gateway" ], "x-ms-request-id": [ - "39f9c7fc-54fe-4da6-9421-68dba1aae691" + "dbef970c-cbba-473b-abd1-08079478cc07" ], "x-ms-correlation-request-id": [ - "39f9c7fc-54fe-4da6-9421-68dba1aae691" + "dbef970c-cbba-473b-abd1-08079478cc07" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220414T060451Z:39f9c7fc-54fe-4da6-9421-68dba1aae691" + "WESTINDIA:20220517T054613Z:dbef970c-cbba-473b-abd1-08079478cc07" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -768,7 +768,7 @@ "nosniff" ], "Date": [ - "Thu, 14 Apr 2022 06:04:50 GMT" + "Tue, 17 May 2022 05:46:12 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -780,23 +780,23 @@ "245" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/publicIPAddresses/pstestpublicdnsffa8b0' under resource group 'PSTestRGffa8be76' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/publicIPAddresses/pstestpublicdns66dc40' under resource group 'PSTestRG66dc4625' 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/PSTestRGffa8be76/providers/Microsoft.Network/publicIPAddresses/pstestpublicdnsffa8b0?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZmZhOGJlNzYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BzdGVzdHB1YmxpY2Ruc2ZmYThiMD9hcGktdmVyc2lvbj0yMDIxLTA1LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG66dc4625/providers/Microsoft.Network/publicIPAddresses/pstestpublicdns66dc40?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNjZkYzQ2MjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BzdGVzdHB1YmxpY2RuczY2ZGM0MD9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6d9a6c5d-33c4-49e8-8230-95c88b3595c9" + "4daa1c85-b061-4caa-905b-e320013d3fbd" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ] }, "ResponseHeaders": { @@ -807,16 +807,16 @@ "no-cache" ], "ETag": [ - "W/\"4c70f26a-d244-4536-b798-010e9e7acf54\"" + "W/\"4d3c2b62-b27e-431d-8645-913bf5048dd7\"" ], "x-ms-request-id": [ - "e4513e4b-ab0f-45cf-b3d9-eec7c99468af" + "3e4b0e84-63c0-43c3-ae83-88d7d56e3ef1" ], "x-ms-correlation-request-id": [ - "f9792a1e-f761-4238-bdf0-54a42aaae434" + "4f19ba11-1445-44fa-b5a0-7ad171d0d9e4" ], "x-ms-arm-service-request-id": [ - "a770c553-5d79-4596-935d-13ac2aea69ae" + "fdf6e85f-25bd-437d-a9d0-dea7fa5ea0d2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -829,13 +829,13 @@ "11993" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220414T060454Z:f9792a1e-f761-4238-bdf0-54a42aaae434" + "WESTINDIA:20220517T054616Z:4f19ba11-1445-44fa-b5a0-7ad171d0d9e4" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 14 Apr 2022 06:04:53 GMT" + "Tue, 17 May 2022 05:46:15 GMT" ], "Content-Length": [ "698" @@ -847,26 +847,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"pstestpublicdnsffa8b0\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGffa8be76/providers/Microsoft.Network/publicIPAddresses/pstestpublicdnsffa8b0\",\r\n \"etag\": \"W/\\\"4c70f26a-d244-4536-b798-010e9e7acf54\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"0a2ca7d3-7c74-4522-a6ec-d6c640e583ad\",\r\n \"ipAddress\": \"20.188.111.15\",\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 \"tier\": \"Regional\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"pstestpublicdns66dc40\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG66dc4625/providers/Microsoft.Network/publicIPAddresses/pstestpublicdns66dc40\",\r\n \"etag\": \"W/\\\"4d3c2b62-b27e-431d-8645-913bf5048dd7\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"3ff0c84b-3754-4993-b793-7b4b6b2bf4b7\",\r\n \"ipAddress\": \"40.65.185.172\",\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 \"tier\": \"Regional\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGffa8be76/providers/Microsoft.Network/publicIPAddresses/pstestpublicdnsffa8b0?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZmZhOGJlNzYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BzdGVzdHB1YmxpY2Ruc2ZmYThiMD9hcGktdmVyc2lvbj0yMDIxLTA1LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG66dc4625/providers/Microsoft.Network/publicIPAddresses/pstestpublicdns66dc40?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNjZkYzQ2MjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BzdGVzdHB1YmxpY2RuczY2ZGM0MD9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6d9a6c5d-33c4-49e8-8230-95c88b3595c9" + "4daa1c85-b061-4caa-905b-e320013d3fbd" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ] }, "ResponseHeaders": { @@ -877,16 +877,16 @@ "no-cache" ], "ETag": [ - "W/\"4c70f26a-d244-4536-b798-010e9e7acf54\"" + "W/\"4d3c2b62-b27e-431d-8645-913bf5048dd7\"" ], "x-ms-request-id": [ - "5b04d920-ac2c-4ee7-aef7-5c3e397cb9a8" + "5affbd29-2e6a-4048-834a-8e5d1993874a" ], "x-ms-correlation-request-id": [ - "d5fd400e-882d-4c0e-bf92-447bf90fab9a" + "76408cf3-b483-48c3-8523-4bcb449e2d8a" ], "x-ms-arm-service-request-id": [ - "130e7f68-ca52-48eb-ac94-e3a777f869d5" + "b3241cd0-a1d2-4767-9ecc-bfa30efc2320" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -899,13 +899,13 @@ "11992" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220414T060454Z:d5fd400e-882d-4c0e-bf92-447bf90fab9a" + "WESTINDIA:20220517T054616Z:76408cf3-b483-48c3-8523-4bcb449e2d8a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 14 Apr 2022 06:04:53 GMT" + "Tue, 17 May 2022 05:46:15 GMT" ], "Content-Length": [ "698" @@ -917,26 +917,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"pstestpublicdnsffa8b0\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGffa8be76/providers/Microsoft.Network/publicIPAddresses/pstestpublicdnsffa8b0\",\r\n \"etag\": \"W/\\\"4c70f26a-d244-4536-b798-010e9e7acf54\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"0a2ca7d3-7c74-4522-a6ec-d6c640e583ad\",\r\n \"ipAddress\": \"20.188.111.15\",\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 \"tier\": \"Regional\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"pstestpublicdns66dc40\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG66dc4625/providers/Microsoft.Network/publicIPAddresses/pstestpublicdns66dc40\",\r\n \"etag\": \"W/\\\"4d3c2b62-b27e-431d-8645-913bf5048dd7\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"3ff0c84b-3754-4993-b793-7b4b6b2bf4b7\",\r\n \"ipAddress\": \"40.65.185.172\",\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 \"tier\": \"Regional\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGffa8be76/providers/Microsoft.Network/publicIPAddresses/pstestpublicdnsffa8b0?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZmZhOGJlNzYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BzdGVzdHB1YmxpY2Ruc2ZmYThiMD9hcGktdmVyc2lvbj0yMDIxLTA1LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG66dc4625/providers/Microsoft.Network/publicIPAddresses/pstestpublicdns66dc40?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNjZkYzQ2MjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BzdGVzdHB1YmxpY2RuczY2ZGM0MD9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "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\": \"southeastasia\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "6d9a6c5d-33c4-49e8-8230-95c88b3595c9" + "4daa1c85-b061-4caa-905b-e320013d3fbd" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -956,19 +956,19 @@ "1" ], "x-ms-request-id": [ - "6b5000d2-cc8e-4e8b-bfc6-d017eb6c71a1" + "8c23108f-6d11-4e12-aab7-de62dabfe875" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Network/locations/southeastasia/operations/6b5000d2-cc8e-4e8b-bfc6-d017eb6c71a1?api-version=2021-05-01" + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Network/locations/southeastasia/operations/8c23108f-6d11-4e12-aab7-de62dabfe875?api-version=2021-08-01" ], "x-ms-correlation-request-id": [ - "0a1d8dda-462b-49fe-83a4-06dc9eb95b3f" + "c65105b6-934c-4f7a-b6a7-408d6d844034" ], "Azure-AsyncNotification": [ "Enabled" ], "x-ms-arm-service-request-id": [ - "e1de41b3-7735-4a52-910f-961dbea64daf" + "97745b97-9fd4-42f2-b477-c9280145e82c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -981,13 +981,13 @@ "1198" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220414T060452Z:0a1d8dda-462b-49fe-83a4-06dc9eb95b3f" + "WESTINDIA:20220517T054615Z:c65105b6-934c-4f7a-b6a7-408d6d844034" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 14 Apr 2022 06:04:52 GMT" + "Tue, 17 May 2022 05:46:14 GMT" ], "Content-Length": [ "662" @@ -999,23 +999,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"pstestpublicdnsffa8b0\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGffa8be76/providers/Microsoft.Network/publicIPAddresses/pstestpublicdnsffa8b0\",\r\n \"etag\": \"W/\\\"ccef559e-eb9a-4bd3-a5ac-6bc2e4f4824d\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"0a2ca7d3-7c74-4522-a6ec-d6c640e583ad\",\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 \"tier\": \"Regional\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"pstestpublicdns66dc40\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG66dc4625/providers/Microsoft.Network/publicIPAddresses/pstestpublicdns66dc40\",\r\n \"etag\": \"W/\\\"de331e5c-0962-40d6-8c69-1739eef5cbee\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"3ff0c84b-3754-4993-b793-7b4b6b2bf4b7\",\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 \"tier\": \"Regional\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Network/locations/southeastasia/operations/6b5000d2-cc8e-4e8b-bfc6-d017eb6c71a1?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzZiNTAwMGQyLWNjOGUtNGU4Yi1iZmM2LWQwMTdlYjZjNzFhMT9hcGktdmVyc2lvbj0yMDIxLTA1LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Network/locations/southeastasia/operations/8c23108f-6d11-4e12-aab7-de62dabfe875?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzhjMjMxMDhmLTZkMTEtNGUxMi1hYWI3LWRlNjJkYWJmZTg3NT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6d9a6c5d-33c4-49e8-8230-95c88b3595c9" + "4daa1c85-b061-4caa-905b-e320013d3fbd" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ] }, "ResponseHeaders": { @@ -1026,13 +1026,13 @@ "no-cache" ], "x-ms-request-id": [ - "795326ee-61b5-4955-b259-04187e9b403f" + "4634f449-aec6-4149-b152-45d14dfd7237" ], "x-ms-correlation-request-id": [ - "82146688-84b3-4737-b610-b5d52bcfb024" + "3c537361-65a4-4b4f-8a59-7785391082db" ], "x-ms-arm-service-request-id": [ - "d3188e51-67e5-4660-a0c8-11c49d2d00da" + "0b92493f-fc3a-443e-9e51-28761c69395f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1045,13 +1045,13 @@ "11994" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220414T060453Z:82146688-84b3-4737-b610-b5d52bcfb024" + "WESTINDIA:20220517T054616Z:3c537361-65a4-4b4f-8a59-7785391082db" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 14 Apr 2022 06:04:53 GMT" + "Tue, 17 May 2022 05:46:15 GMT" ], "Content-Length": [ "29" @@ -1067,22 +1067,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGffa8be76/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGffa8b0?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZmZhOGJlNzYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtTZWN1cml0eUdyb3Vwcy9QU1Rlc3ROU0dmZmE4YjA/YXBpLXZlcnNpb249MjAyMS0wNS0wMQ==", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG66dc4625/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG66dc40?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNjZkYzQ2MjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtTZWN1cml0eUdyb3Vwcy9QU1Rlc3ROU0c2NmRjNDA/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0e7f1d28-3541-4003-98f1-5beb2fa3f19e" + "a9034d1c-c850-4c68-840c-34a95a9af000" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ] }, "ResponseHeaders": { @@ -1096,13 +1096,13 @@ "gateway" ], "x-ms-request-id": [ - "e57b2bb6-2871-4480-8f9b-724241f810c3" + "f7aabf52-6bde-454a-a98a-5dd60502d2c7" ], "x-ms-correlation-request-id": [ - "e57b2bb6-2871-4480-8f9b-724241f810c3" + "f7aabf52-6bde-454a-a98a-5dd60502d2c7" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220414T060454Z:e57b2bb6-2871-4480-8f9b-724241f810c3" + "WESTINDIA:20220517T054616Z:f7aabf52-6bde-454a-a98a-5dd60502d2c7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1111,7 +1111,7 @@ "nosniff" ], "Date": [ - "Thu, 14 Apr 2022 06:04:53 GMT" + "Tue, 17 May 2022 05:46:15 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1123,23 +1123,23 @@ "243" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/networkSecurityGroups/PSTestNSGffa8b0' under resource group 'PSTestRGffa8be76' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/networkSecurityGroups/PSTestNSG66dc40' under resource group 'PSTestRG66dc4625' 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/PSTestRGffa8be76/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGffa8b0?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZmZhOGJlNzYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtTZWN1cml0eUdyb3Vwcy9QU1Rlc3ROU0dmZmE4YjA/YXBpLXZlcnNpb249MjAyMS0wNS0wMQ==", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG66dc4625/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG66dc40?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNjZkYzQ2MjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtTZWN1cml0eUdyb3Vwcy9QU1Rlc3ROU0c2NmRjNDA/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0e7f1d28-3541-4003-98f1-5beb2fa3f19e" + "a9034d1c-c850-4c68-840c-34a95a9af000" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ] }, "ResponseHeaders": { @@ -1150,16 +1150,16 @@ "no-cache" ], "ETag": [ - "W/\"2eed2745-8507-4726-8e4b-30f322bea2bd\"" + "W/\"d76cf76c-9758-4a0f-a60b-62932b799642\"" ], "x-ms-request-id": [ - "5ec51b03-c42b-45bd-b609-65484e14a905" + "94a4f1a8-f72f-43b6-b991-6ca1563a4db8" ], "x-ms-correlation-request-id": [ - "ae8609f4-9369-4a12-be7b-3090e4ac39b8" + "c67ce9a5-8428-4baf-ae26-dcbca809d284" ], "x-ms-arm-service-request-id": [ - "09bdfabe-8643-42a6-98b2-b37ef180ea45" + "5cacf2b3-d4f2-471b-991c-009e865f2953" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1172,13 +1172,13 @@ "11989" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220414T060459Z:ae8609f4-9369-4a12-be7b-3090e4ac39b8" + "WESTINDIA:20220517T054621Z:c67ce9a5-8428-4baf-ae26-dcbca809d284" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 14 Apr 2022 06:04:58 GMT" + "Tue, 17 May 2022 05:46:20 GMT" ], "Content-Length": [ "8475" @@ -1190,26 +1190,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"PSTestNSGffa8b0\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGffa8be76/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGffa8b0\",\r\n \"etag\": \"W/\\\"2eed2745-8507-4726-8e4b-30f322bea2bd\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"4168dbf9-bcb3-4ea4-a3cf-84d3456bfc6c\",\r\n \"securityRules\": [\r\n {\r\n \"name\": \"PSTestNSGRuleRDPffa8b0\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGffa8be76/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGffa8b0/securityRules/PSTestNSGRuleRDPffa8b0\",\r\n \"etag\": \"W/\\\"2eed2745-8507-4726-8e4b-30f322bea2bd\\\"\",\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\": \"PSTestNSGRuleWebffa8b0\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGffa8be76/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGffa8b0/securityRules/PSTestNSGRuleWebffa8b0\",\r\n \"etag\": \"W/\\\"2eed2745-8507-4726-8e4b-30f322bea2bd\\\"\",\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/PSTestRGffa8be76/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGffa8b0/defaultSecurityRules/AllowVnetInBound\",\r\n \"etag\": \"W/\\\"2eed2745-8507-4726-8e4b-30f322bea2bd\\\"\",\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/PSTestRGffa8be76/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGffa8b0/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\r\n \"etag\": \"W/\\\"2eed2745-8507-4726-8e4b-30f322bea2bd\\\"\",\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/PSTestRGffa8be76/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGffa8b0/defaultSecurityRules/DenyAllInBound\",\r\n \"etag\": \"W/\\\"2eed2745-8507-4726-8e4b-30f322bea2bd\\\"\",\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/PSTestRGffa8be76/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGffa8b0/defaultSecurityRules/AllowVnetOutBound\",\r\n \"etag\": \"W/\\\"2eed2745-8507-4726-8e4b-30f322bea2bd\\\"\",\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/PSTestRGffa8be76/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGffa8b0/defaultSecurityRules/AllowInternetOutBound\",\r\n \"etag\": \"W/\\\"2eed2745-8507-4726-8e4b-30f322bea2bd\\\"\",\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/PSTestRGffa8be76/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGffa8b0/defaultSecurityRules/DenyAllOutBound\",\r\n \"etag\": \"W/\\\"2eed2745-8507-4726-8e4b-30f322bea2bd\\\"\",\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}", + "ResponseBody": "{\r\n \"name\": \"PSTestNSG66dc40\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG66dc4625/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG66dc40\",\r\n \"etag\": \"W/\\\"d76cf76c-9758-4a0f-a60b-62932b799642\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"3c75e773-ff32-46cb-9e9d-755e499b4453\",\r\n \"securityRules\": [\r\n {\r\n \"name\": \"PSTestNSGRuleRDP66dc40\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG66dc4625/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG66dc40/securityRules/PSTestNSGRuleRDP66dc40\",\r\n \"etag\": \"W/\\\"d76cf76c-9758-4a0f-a60b-62932b799642\\\"\",\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\": \"PSTestNSGRuleWeb66dc40\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG66dc4625/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG66dc40/securityRules/PSTestNSGRuleWeb66dc40\",\r\n \"etag\": \"W/\\\"d76cf76c-9758-4a0f-a60b-62932b799642\\\"\",\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/PSTestRG66dc4625/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG66dc40/defaultSecurityRules/AllowVnetInBound\",\r\n \"etag\": \"W/\\\"d76cf76c-9758-4a0f-a60b-62932b799642\\\"\",\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/PSTestRG66dc4625/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG66dc40/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\r\n \"etag\": \"W/\\\"d76cf76c-9758-4a0f-a60b-62932b799642\\\"\",\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/PSTestRG66dc4625/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG66dc40/defaultSecurityRules/DenyAllInBound\",\r\n \"etag\": \"W/\\\"d76cf76c-9758-4a0f-a60b-62932b799642\\\"\",\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/PSTestRG66dc4625/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG66dc40/defaultSecurityRules/AllowVnetOutBound\",\r\n \"etag\": \"W/\\\"d76cf76c-9758-4a0f-a60b-62932b799642\\\"\",\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/PSTestRG66dc4625/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG66dc40/defaultSecurityRules/AllowInternetOutBound\",\r\n \"etag\": \"W/\\\"d76cf76c-9758-4a0f-a60b-62932b799642\\\"\",\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/PSTestRG66dc4625/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG66dc40/defaultSecurityRules/DenyAllOutBound\",\r\n \"etag\": \"W/\\\"d76cf76c-9758-4a0f-a60b-62932b799642\\\"\",\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/PSTestRGffa8be76/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGffa8b0?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZmZhOGJlNzYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtTZWN1cml0eUdyb3Vwcy9QU1Rlc3ROU0dmZmE4YjA/YXBpLXZlcnNpb249MjAyMS0wNS0wMQ==", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG66dc4625/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG66dc40?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNjZkYzQ2MjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtTZWN1cml0eUdyb3Vwcy9QU1Rlc3ROU0c2NmRjNDA/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0e7f1d28-3541-4003-98f1-5beb2fa3f19e" + "a9034d1c-c850-4c68-840c-34a95a9af000" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ] }, "ResponseHeaders": { @@ -1220,16 +1220,16 @@ "no-cache" ], "ETag": [ - "W/\"2eed2745-8507-4726-8e4b-30f322bea2bd\"" + "W/\"d76cf76c-9758-4a0f-a60b-62932b799642\"" ], "x-ms-request-id": [ - "10d04287-8235-431e-aaca-011a793a7c28" + "cfb0f1b4-903a-4722-bad7-b05aeb09cabb" ], "x-ms-correlation-request-id": [ - "d8b2eee9-dbe9-4c15-a3b0-40eaa78c3429" + "1ffe6401-5106-4a02-a86f-e693684b35bf" ], "x-ms-arm-service-request-id": [ - "481c39da-4cbc-4e4d-811d-77c6cfcb4d18" + "0ada5e65-e849-40a1-93f3-142deb630395" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1242,13 +1242,13 @@ "11988" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220414T060459Z:d8b2eee9-dbe9-4c15-a3b0-40eaa78c3429" + "WESTINDIA:20220517T054622Z:1ffe6401-5106-4a02-a86f-e693684b35bf" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 14 Apr 2022 06:04:58 GMT" + "Tue, 17 May 2022 05:46:21 GMT" ], "Content-Length": [ "8475" @@ -1260,26 +1260,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"PSTestNSGffa8b0\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGffa8be76/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGffa8b0\",\r\n \"etag\": \"W/\\\"2eed2745-8507-4726-8e4b-30f322bea2bd\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"4168dbf9-bcb3-4ea4-a3cf-84d3456bfc6c\",\r\n \"securityRules\": [\r\n {\r\n \"name\": \"PSTestNSGRuleRDPffa8b0\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGffa8be76/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGffa8b0/securityRules/PSTestNSGRuleRDPffa8b0\",\r\n \"etag\": \"W/\\\"2eed2745-8507-4726-8e4b-30f322bea2bd\\\"\",\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\": \"PSTestNSGRuleWebffa8b0\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGffa8be76/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGffa8b0/securityRules/PSTestNSGRuleWebffa8b0\",\r\n \"etag\": \"W/\\\"2eed2745-8507-4726-8e4b-30f322bea2bd\\\"\",\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/PSTestRGffa8be76/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGffa8b0/defaultSecurityRules/AllowVnetInBound\",\r\n \"etag\": \"W/\\\"2eed2745-8507-4726-8e4b-30f322bea2bd\\\"\",\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/PSTestRGffa8be76/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGffa8b0/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\r\n \"etag\": \"W/\\\"2eed2745-8507-4726-8e4b-30f322bea2bd\\\"\",\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/PSTestRGffa8be76/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGffa8b0/defaultSecurityRules/DenyAllInBound\",\r\n \"etag\": \"W/\\\"2eed2745-8507-4726-8e4b-30f322bea2bd\\\"\",\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/PSTestRGffa8be76/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGffa8b0/defaultSecurityRules/AllowVnetOutBound\",\r\n \"etag\": \"W/\\\"2eed2745-8507-4726-8e4b-30f322bea2bd\\\"\",\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/PSTestRGffa8be76/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGffa8b0/defaultSecurityRules/AllowInternetOutBound\",\r\n \"etag\": \"W/\\\"2eed2745-8507-4726-8e4b-30f322bea2bd\\\"\",\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/PSTestRGffa8be76/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGffa8b0/defaultSecurityRules/DenyAllOutBound\",\r\n \"etag\": \"W/\\\"2eed2745-8507-4726-8e4b-30f322bea2bd\\\"\",\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}", + "ResponseBody": "{\r\n \"name\": \"PSTestNSG66dc40\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG66dc4625/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG66dc40\",\r\n \"etag\": \"W/\\\"d76cf76c-9758-4a0f-a60b-62932b799642\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"3c75e773-ff32-46cb-9e9d-755e499b4453\",\r\n \"securityRules\": [\r\n {\r\n \"name\": \"PSTestNSGRuleRDP66dc40\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG66dc4625/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG66dc40/securityRules/PSTestNSGRuleRDP66dc40\",\r\n \"etag\": \"W/\\\"d76cf76c-9758-4a0f-a60b-62932b799642\\\"\",\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\": \"PSTestNSGRuleWeb66dc40\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG66dc4625/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG66dc40/securityRules/PSTestNSGRuleWeb66dc40\",\r\n \"etag\": \"W/\\\"d76cf76c-9758-4a0f-a60b-62932b799642\\\"\",\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/PSTestRG66dc4625/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG66dc40/defaultSecurityRules/AllowVnetInBound\",\r\n \"etag\": \"W/\\\"d76cf76c-9758-4a0f-a60b-62932b799642\\\"\",\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/PSTestRG66dc4625/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG66dc40/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\r\n \"etag\": \"W/\\\"d76cf76c-9758-4a0f-a60b-62932b799642\\\"\",\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/PSTestRG66dc4625/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG66dc40/defaultSecurityRules/DenyAllInBound\",\r\n \"etag\": \"W/\\\"d76cf76c-9758-4a0f-a60b-62932b799642\\\"\",\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/PSTestRG66dc4625/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG66dc40/defaultSecurityRules/AllowVnetOutBound\",\r\n \"etag\": \"W/\\\"d76cf76c-9758-4a0f-a60b-62932b799642\\\"\",\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/PSTestRG66dc4625/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG66dc40/defaultSecurityRules/AllowInternetOutBound\",\r\n \"etag\": \"W/\\\"d76cf76c-9758-4a0f-a60b-62932b799642\\\"\",\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/PSTestRG66dc4625/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG66dc40/defaultSecurityRules/DenyAllOutBound\",\r\n \"etag\": \"W/\\\"d76cf76c-9758-4a0f-a60b-62932b799642\\\"\",\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/PSTestRGffa8be76/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGffa8b0?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZmZhOGJlNzYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtTZWN1cml0eUdyb3Vwcy9QU1Rlc3ROU0dmZmE4YjA/YXBpLXZlcnNpb249MjAyMS0wNS0wMQ==", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG66dc4625/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG66dc40?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNjZkYzQ2MjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtTZWN1cml0eUdyb3Vwcy9QU1Rlc3ROU0c2NmRjNDA/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==", "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\": \"PSTestNSGRuleRDPffa8b0\"\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\": \"PSTestNSGRuleWebffa8b0\"\r\n }\r\n ]\r\n },\r\n \"location\": \"southeastasia\"\r\n}", + "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\": \"PSTestNSGRuleRDP66dc40\"\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\": \"PSTestNSGRuleWeb66dc40\"\r\n }\r\n ]\r\n },\r\n \"location\": \"southeastasia\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "0e7f1d28-3541-4003-98f1-5beb2fa3f19e" + "a9034d1c-c850-4c68-840c-34a95a9af000" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1299,19 +1299,19 @@ "3" ], "x-ms-request-id": [ - "9a36ac4c-23b0-4c68-ac71-9e8871087810" + "a15833ca-028c-4b3f-8942-1f84dfd9bba6" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Network/locations/southeastasia/operations/9a36ac4c-23b0-4c68-ac71-9e8871087810?api-version=2021-05-01" + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Network/locations/southeastasia/operations/a15833ca-028c-4b3f-8942-1f84dfd9bba6?api-version=2021-08-01" ], "x-ms-correlation-request-id": [ - "acad0efd-3b47-4589-bc5c-d7325451a677" + "f466a966-2c91-4f2b-befb-933e56affe07" ], "Azure-AsyncNotification": [ "Enabled" ], "x-ms-arm-service-request-id": [ - "7ae813d1-f1e0-4e2f-976b-e8a141110a09" + "24a93da1-e343-442a-acba-5860b164eab2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1324,13 +1324,13 @@ "1197" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220414T060456Z:acad0efd-3b47-4589-bc5c-d7325451a677" + "WESTINDIA:20220517T054618Z:f466a966-2c91-4f2b-befb-933e56affe07" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 14 Apr 2022 06:04:55 GMT" + "Tue, 17 May 2022 05:46:17 GMT" ], "Content-Length": [ "8466" @@ -1342,23 +1342,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"PSTestNSGffa8b0\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGffa8be76/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGffa8b0\",\r\n \"etag\": \"W/\\\"47c3b100-7526-45ca-91f0-d623b42031ed\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"4168dbf9-bcb3-4ea4-a3cf-84d3456bfc6c\",\r\n \"securityRules\": [\r\n {\r\n \"name\": \"PSTestNSGRuleRDPffa8b0\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGffa8be76/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGffa8b0/securityRules/PSTestNSGRuleRDPffa8b0\",\r\n \"etag\": \"W/\\\"47c3b100-7526-45ca-91f0-d623b42031ed\\\"\",\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\": \"PSTestNSGRuleWebffa8b0\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGffa8be76/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGffa8b0/securityRules/PSTestNSGRuleWebffa8b0\",\r\n \"etag\": \"W/\\\"47c3b100-7526-45ca-91f0-d623b42031ed\\\"\",\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/PSTestRGffa8be76/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGffa8b0/defaultSecurityRules/AllowVnetInBound\",\r\n \"etag\": \"W/\\\"47c3b100-7526-45ca-91f0-d623b42031ed\\\"\",\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/PSTestRGffa8be76/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGffa8b0/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\r\n \"etag\": \"W/\\\"47c3b100-7526-45ca-91f0-d623b42031ed\\\"\",\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/PSTestRGffa8be76/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGffa8b0/defaultSecurityRules/DenyAllInBound\",\r\n \"etag\": \"W/\\\"47c3b100-7526-45ca-91f0-d623b42031ed\\\"\",\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/PSTestRGffa8be76/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGffa8b0/defaultSecurityRules/AllowVnetOutBound\",\r\n \"etag\": \"W/\\\"47c3b100-7526-45ca-91f0-d623b42031ed\\\"\",\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/PSTestRGffa8be76/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGffa8b0/defaultSecurityRules/AllowInternetOutBound\",\r\n \"etag\": \"W/\\\"47c3b100-7526-45ca-91f0-d623b42031ed\\\"\",\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/PSTestRGffa8be76/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGffa8b0/defaultSecurityRules/DenyAllOutBound\",\r\n \"etag\": \"W/\\\"47c3b100-7526-45ca-91f0-d623b42031ed\\\"\",\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}", + "ResponseBody": "{\r\n \"name\": \"PSTestNSG66dc40\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG66dc4625/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG66dc40\",\r\n \"etag\": \"W/\\\"2d6be499-71c9-46a7-9dcb-15e316778d6c\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"3c75e773-ff32-46cb-9e9d-755e499b4453\",\r\n \"securityRules\": [\r\n {\r\n \"name\": \"PSTestNSGRuleRDP66dc40\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG66dc4625/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG66dc40/securityRules/PSTestNSGRuleRDP66dc40\",\r\n \"etag\": \"W/\\\"2d6be499-71c9-46a7-9dcb-15e316778d6c\\\"\",\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\": \"PSTestNSGRuleWeb66dc40\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG66dc4625/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG66dc40/securityRules/PSTestNSGRuleWeb66dc40\",\r\n \"etag\": \"W/\\\"2d6be499-71c9-46a7-9dcb-15e316778d6c\\\"\",\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/PSTestRG66dc4625/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG66dc40/defaultSecurityRules/AllowVnetInBound\",\r\n \"etag\": \"W/\\\"2d6be499-71c9-46a7-9dcb-15e316778d6c\\\"\",\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/PSTestRG66dc4625/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG66dc40/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\r\n \"etag\": \"W/\\\"2d6be499-71c9-46a7-9dcb-15e316778d6c\\\"\",\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/PSTestRG66dc4625/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG66dc40/defaultSecurityRules/DenyAllInBound\",\r\n \"etag\": \"W/\\\"2d6be499-71c9-46a7-9dcb-15e316778d6c\\\"\",\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/PSTestRG66dc4625/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG66dc40/defaultSecurityRules/AllowVnetOutBound\",\r\n \"etag\": \"W/\\\"2d6be499-71c9-46a7-9dcb-15e316778d6c\\\"\",\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/PSTestRG66dc4625/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG66dc40/defaultSecurityRules/AllowInternetOutBound\",\r\n \"etag\": \"W/\\\"2d6be499-71c9-46a7-9dcb-15e316778d6c\\\"\",\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/PSTestRG66dc4625/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG66dc40/defaultSecurityRules/DenyAllOutBound\",\r\n \"etag\": \"W/\\\"2d6be499-71c9-46a7-9dcb-15e316778d6c\\\"\",\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/southeastasia/operations/9a36ac4c-23b0-4c68-ac71-9e8871087810?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzlhMzZhYzRjLTIzYjAtNGM2OC1hYzcxLTllODg3MTA4NzgxMD9hcGktdmVyc2lvbj0yMDIxLTA1LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Network/locations/southeastasia/operations/a15833ca-028c-4b3f-8942-1f84dfd9bba6?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2ExNTgzM2NhLTAyOGMtNGIzZi04OTQyLTFmODRkZmQ5YmJhNj9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0e7f1d28-3541-4003-98f1-5beb2fa3f19e" + "a9034d1c-c850-4c68-840c-34a95a9af000" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ] }, "ResponseHeaders": { @@ -1369,13 +1369,13 @@ "no-cache" ], "x-ms-request-id": [ - "47266c62-1b7c-4b9a-a77d-785b78bc70c2" + "80d60f4b-6a68-4604-a6e5-24027197f698" ], "x-ms-correlation-request-id": [ - "94336166-dde9-47f4-b74e-5ef6ff124afc" + "d004e9ac-d005-4565-9cb7-96cde28275b3" ], "x-ms-arm-service-request-id": [ - "730355d5-1a71-41fb-bcdd-5424b715f834" + "2ec63840-71ac-4378-9a90-8657f1acded4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1388,13 +1388,13 @@ "11990" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220414T060459Z:94336166-dde9-47f4-b74e-5ef6ff124afc" + "WESTINDIA:20220517T054621Z:d004e9ac-d005-4565-9cb7-96cde28275b3" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 14 Apr 2022 06:04:58 GMT" + "Tue, 17 May 2022 05:46:20 GMT" ], "Content-Length": [ "29" @@ -1410,22 +1410,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGffa8be76/providers/Microsoft.Network/networkInterfaces/PSTestNICffa8b0?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZmZhOGJlNzYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL1BTVGVzdE5JQ2ZmYThiMD9hcGktdmVyc2lvbj0yMDIxLTA1LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG66dc4625/providers/Microsoft.Network/networkInterfaces/PSTestNIC66dc40?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNjZkYzQ2MjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL1BTVGVzdE5JQzY2ZGM0MD9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d1c250aa-1354-42ea-a67b-cf93fbc34422" + "140668fc-93b4-42d7-bd8b-b0e4b23fc5ef" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ] }, "ResponseHeaders": { @@ -1439,13 +1439,13 @@ "gateway" ], "x-ms-request-id": [ - "e0b9c1ff-6c32-422a-81c3-5792c505d415" + "107e3783-e911-4e59-a764-432d543d8c1b" ], "x-ms-correlation-request-id": [ - "e0b9c1ff-6c32-422a-81c3-5792c505d415" + "107e3783-e911-4e59-a764-432d543d8c1b" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220414T060459Z:e0b9c1ff-6c32-422a-81c3-5792c505d415" + "WESTINDIA:20220517T054622Z:107e3783-e911-4e59-a764-432d543d8c1b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1454,7 +1454,7 @@ "nosniff" ], "Date": [ - "Thu, 14 Apr 2022 06:04:59 GMT" + "Tue, 17 May 2022 05:46:21 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1466,23 +1466,23 @@ "239" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/networkInterfaces/PSTestNICffa8b0' under resource group 'PSTestRGffa8be76' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/networkInterfaces/PSTestNIC66dc40' under resource group 'PSTestRG66dc4625' 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/PSTestRGffa8be76/providers/Microsoft.Network/networkInterfaces/PSTestNICffa8b0?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZmZhOGJlNzYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL1BTVGVzdE5JQ2ZmYThiMD9hcGktdmVyc2lvbj0yMDIxLTA1LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG66dc4625/providers/Microsoft.Network/networkInterfaces/PSTestNIC66dc40?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNjZkYzQ2MjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL1BTVGVzdE5JQzY2ZGM0MD9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d1c250aa-1354-42ea-a67b-cf93fbc34422" + "140668fc-93b4-42d7-bd8b-b0e4b23fc5ef" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ] }, "ResponseHeaders": { @@ -1493,16 +1493,16 @@ "no-cache" ], "ETag": [ - "W/\"7cb848c7-9e1f-4624-8435-7b3c109c8bdf\"" + "W/\"088f3ebc-517f-4bc7-8161-81240edc7c0a\"" ], "x-ms-request-id": [ - "9719c7eb-4c21-4311-bf88-ef755cbed66a" + "c6fedc41-8153-42bb-a024-d570f9987791" ], "x-ms-correlation-request-id": [ - "9dce6f3d-53be-4ea8-8590-3c7d75f5a67e" + "893e5dc6-0d68-45ae-a4c7-48fcd7183a1b" ], "x-ms-arm-service-request-id": [ - "d9746386-e489-46db-b40c-248df9d1666c" + "7232a781-032d-47ec-bea3-047c0b12c2a3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1515,16 +1515,16 @@ "11986" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220414T060501Z:9dce6f3d-53be-4ea8-8590-3c7d75f5a67e" + "WESTINDIA:20220517T054623Z:893e5dc6-0d68-45ae-a4c7-48fcd7183a1b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 14 Apr 2022 06:05:00 GMT" + "Tue, 17 May 2022 05:46:23 GMT" ], "Content-Length": [ - "2143" + "2165" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1533,26 +1533,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"PSTestNICffa8b0\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGffa8be76/providers/Microsoft.Network/networkInterfaces/PSTestNICffa8b0\",\r\n \"etag\": \"W/\\\"7cb848c7-9e1f-4624-8435-7b3c109c8bdf\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"524ac2ca-d435-4d5b-9339-8e38bcc8e32c\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGffa8be76/providers/Microsoft.Network/networkInterfaces/PSTestNICffa8b0/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"7cb848c7-9e1f-4624-8435-7b3c109c8bdf\\\"\",\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/PSTestRGffa8be76/providers/Microsoft.Network/publicIPAddresses/pstestpublicdnsffa8b0\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGffa8be76/providers/Microsoft.Network/virtualNetworks/PSTestVNETffa8b0/subnets/PSTestSNCffa8b0\"\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\": \"rw40q20qfmuupoaegmkl40fsjg.ix.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"vnetEncryptionSupported\": false,\r\n \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGffa8be76/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGffa8b0\"\r\n },\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": [],\r\n \"nicType\": \"Standard\"\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"PSTestNIC66dc40\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG66dc4625/providers/Microsoft.Network/networkInterfaces/PSTestNIC66dc40\",\r\n \"etag\": \"W/\\\"088f3ebc-517f-4bc7-8161-81240edc7c0a\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"04f3d49f-7934-4050-9533-5939f51134fd\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG66dc4625/providers/Microsoft.Network/networkInterfaces/PSTestNIC66dc40/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"088f3ebc-517f-4bc7-8161-81240edc7c0a\\\"\",\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/PSTestRG66dc4625/providers/Microsoft.Network/publicIPAddresses/pstestpublicdns66dc40\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG66dc4625/providers/Microsoft.Network/virtualNetworks/PSTestVNET66dc40/subnets/PSTestSNC66dc40\"\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\": \"tdqjbtdliphejcfsuyydr5rpdh.ix.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"vnetEncryptionSupported\": false,\r\n \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG66dc4625/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG66dc40\"\r\n },\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": [],\r\n \"nicType\": \"Standard\"\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"kind\": \"Regular\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGffa8be76/providers/Microsoft.Network/networkInterfaces/PSTestNICffa8b0?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZmZhOGJlNzYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL1BTVGVzdE5JQ2ZmYThiMD9hcGktdmVyc2lvbj0yMDIxLTA1LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG66dc4625/providers/Microsoft.Network/networkInterfaces/PSTestNIC66dc40?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNjZkYzQ2MjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL1BTVGVzdE5JQzY2ZGM0MD9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d1c250aa-1354-42ea-a67b-cf93fbc34422" + "140668fc-93b4-42d7-bd8b-b0e4b23fc5ef" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ] }, "ResponseHeaders": { @@ -1563,16 +1563,16 @@ "no-cache" ], "ETag": [ - "W/\"7cb848c7-9e1f-4624-8435-7b3c109c8bdf\"" + "W/\"088f3ebc-517f-4bc7-8161-81240edc7c0a\"" ], "x-ms-request-id": [ - "f59ccb14-dbbe-4b2c-a355-1b5d0a65579a" + "902aad20-1a90-4277-9fde-049711fdf893" ], "x-ms-correlation-request-id": [ - "70fd4237-bcba-46e9-bb55-3659635c3077" + "74601cb0-49a2-487c-b0ec-4d94977b3550" ], "x-ms-arm-service-request-id": [ - "df3e29a0-32bd-4262-add6-7068b7f4ea1c" + "bb5fb6ef-dc87-47cf-b0ab-5e7a96804bf9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1585,16 +1585,16 @@ "11985" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220414T060501Z:70fd4237-bcba-46e9-bb55-3659635c3077" + "WESTINDIA:20220517T054623Z:74601cb0-49a2-487c-b0ec-4d94977b3550" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 14 Apr 2022 06:05:01 GMT" + "Tue, 17 May 2022 05:46:23 GMT" ], "Content-Length": [ - "2143" + "2165" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1603,26 +1603,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"PSTestNICffa8b0\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGffa8be76/providers/Microsoft.Network/networkInterfaces/PSTestNICffa8b0\",\r\n \"etag\": \"W/\\\"7cb848c7-9e1f-4624-8435-7b3c109c8bdf\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"524ac2ca-d435-4d5b-9339-8e38bcc8e32c\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGffa8be76/providers/Microsoft.Network/networkInterfaces/PSTestNICffa8b0/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"7cb848c7-9e1f-4624-8435-7b3c109c8bdf\\\"\",\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/PSTestRGffa8be76/providers/Microsoft.Network/publicIPAddresses/pstestpublicdnsffa8b0\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGffa8be76/providers/Microsoft.Network/virtualNetworks/PSTestVNETffa8b0/subnets/PSTestSNCffa8b0\"\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\": \"rw40q20qfmuupoaegmkl40fsjg.ix.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"vnetEncryptionSupported\": false,\r\n \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGffa8be76/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGffa8b0\"\r\n },\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": [],\r\n \"nicType\": \"Standard\"\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"PSTestNIC66dc40\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG66dc4625/providers/Microsoft.Network/networkInterfaces/PSTestNIC66dc40\",\r\n \"etag\": \"W/\\\"088f3ebc-517f-4bc7-8161-81240edc7c0a\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"04f3d49f-7934-4050-9533-5939f51134fd\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG66dc4625/providers/Microsoft.Network/networkInterfaces/PSTestNIC66dc40/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"088f3ebc-517f-4bc7-8161-81240edc7c0a\\\"\",\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/PSTestRG66dc4625/providers/Microsoft.Network/publicIPAddresses/pstestpublicdns66dc40\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG66dc4625/providers/Microsoft.Network/virtualNetworks/PSTestVNET66dc40/subnets/PSTestSNC66dc40\"\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\": \"tdqjbtdliphejcfsuyydr5rpdh.ix.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"vnetEncryptionSupported\": false,\r\n \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG66dc4625/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG66dc40\"\r\n },\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": [],\r\n \"nicType\": \"Standard\"\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"kind\": \"Regular\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGffa8be76/providers/Microsoft.Network/networkInterfaces/PSTestNICffa8b0?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZmZhOGJlNzYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL1BTVGVzdE5JQ2ZmYThiMD9hcGktdmVyc2lvbj0yMDIxLTA1LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG66dc4625/providers/Microsoft.Network/networkInterfaces/PSTestNIC66dc40?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNjZkYzQ2MjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL1BTVGVzdE5JQzY2ZGM0MD9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "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/PSTestRGffa8be76/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGffa8b0\",\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 \"applicationGatewayIpConfigurations\": []\r\n },\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGffa8be76/providers/Microsoft.Network/virtualNetworks/PSTestVNETffa8b0/subnets/PSTestSNCffa8b0\"\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/PSTestRGffa8be76/providers/Microsoft.Network/publicIPAddresses/pstestpublicdnsffa8b0\",\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\": \"southeastasia\"\r\n}", + "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/PSTestRG66dc4625/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG66dc40\",\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 \"applicationGatewayIpConfigurations\": []\r\n },\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG66dc4625/providers/Microsoft.Network/virtualNetworks/PSTestVNET66dc40/subnets/PSTestSNC66dc40\"\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/PSTestRG66dc4625/providers/Microsoft.Network/publicIPAddresses/pstestpublicdns66dc40\",\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\": \"southeastasia\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "d1c250aa-1354-42ea-a67b-cf93fbc34422" + "140668fc-93b4-42d7-bd8b-b0e4b23fc5ef" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1639,19 +1639,19 @@ "no-cache" ], "x-ms-request-id": [ - "b1cde5be-b6cf-4a54-927b-b14ca0957882" + "e152f15a-106d-40e1-a5d2-16130d25f239" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Network/locations/southeastasia/operations/b1cde5be-b6cf-4a54-927b-b14ca0957882?api-version=2021-05-01" + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Network/locations/southeastasia/operations/e152f15a-106d-40e1-a5d2-16130d25f239?api-version=2021-08-01" ], "x-ms-correlation-request-id": [ - "3d5261f3-3344-4d96-a8c6-a08de5ee65c5" + "048281b0-0bc2-44e8-b7d4-8093ac8f46f3" ], "Azure-AsyncNotification": [ "Enabled" ], "x-ms-arm-service-request-id": [ - "3ed57220-aacb-409a-af40-cb7abeece3ad" + "b9f187f3-a3ae-4ebc-b450-a8f45d58cc81" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1664,16 +1664,16 @@ "1196" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220414T060501Z:3d5261f3-3344-4d96-a8c6-a08de5ee65c5" + "WESTINDIA:20220517T054623Z:048281b0-0bc2-44e8-b7d4-8093ac8f46f3" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 14 Apr 2022 06:05:00 GMT" + "Tue, 17 May 2022 05:46:23 GMT" ], "Content-Length": [ - "2143" + "2165" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1682,26 +1682,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"PSTestNICffa8b0\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGffa8be76/providers/Microsoft.Network/networkInterfaces/PSTestNICffa8b0\",\r\n \"etag\": \"W/\\\"7cb848c7-9e1f-4624-8435-7b3c109c8bdf\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"524ac2ca-d435-4d5b-9339-8e38bcc8e32c\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGffa8be76/providers/Microsoft.Network/networkInterfaces/PSTestNICffa8b0/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"7cb848c7-9e1f-4624-8435-7b3c109c8bdf\\\"\",\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/PSTestRGffa8be76/providers/Microsoft.Network/publicIPAddresses/pstestpublicdnsffa8b0\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGffa8be76/providers/Microsoft.Network/virtualNetworks/PSTestVNETffa8b0/subnets/PSTestSNCffa8b0\"\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\": \"rw40q20qfmuupoaegmkl40fsjg.ix.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"vnetEncryptionSupported\": false,\r\n \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGffa8be76/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGffa8b0\"\r\n },\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": [],\r\n \"nicType\": \"Standard\"\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"PSTestNIC66dc40\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG66dc4625/providers/Microsoft.Network/networkInterfaces/PSTestNIC66dc40\",\r\n \"etag\": \"W/\\\"088f3ebc-517f-4bc7-8161-81240edc7c0a\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"04f3d49f-7934-4050-9533-5939f51134fd\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG66dc4625/providers/Microsoft.Network/networkInterfaces/PSTestNIC66dc40/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"088f3ebc-517f-4bc7-8161-81240edc7c0a\\\"\",\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/PSTestRG66dc4625/providers/Microsoft.Network/publicIPAddresses/pstestpublicdns66dc40\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG66dc4625/providers/Microsoft.Network/virtualNetworks/PSTestVNET66dc40/subnets/PSTestSNC66dc40\"\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\": \"tdqjbtdliphejcfsuyydr5rpdh.ix.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"vnetEncryptionSupported\": false,\r\n \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG66dc4625/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG66dc40\"\r\n },\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": [],\r\n \"nicType\": \"Standard\"\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"kind\": \"Regular\"\r\n}", "StatusCode": 201 }, { "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Storage/checkNameAvailability?api-version=2021-02-01", "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9jaGVja05hbWVBdmFpbGFiaWxpdHk/YXBpLXZlcnNpb249MjAyMS0wMi0wMQ==", "RequestMethod": "POST", - "RequestBody": "{\r\n \"name\": \"tespstestpste041411350\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n}", + "RequestBody": "{\r\n \"name\": \"tespstestpste051711160\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "21a92e22-7dff-4d3e-ab32-1bd85a11d4bf" + "61c5f3cc-b073-4c59-bfd7-56e6c7e0bfea" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.PowerShell.Cmdlets.Compute.Helpers.Storage.StorageManagementClient/4.25.0" + "Microsoft.Azure.PowerShell.Cmdlets.Compute.Helpers.Storage.StorageManagementClient/4.26.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1718,7 +1718,7 @@ "no-cache" ], "x-ms-request-id": [ - "d444978e-8f3a-407c-89f7-b665945c0092" + "72010904-8a70-4927-80df-b41c2ffb39f1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1727,19 +1727,19 @@ "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11997" ], "x-ms-correlation-request-id": [ - "42a4fa74-44c4-47ff-a30c-a71a84981eb1" + "eea218e1-4e46-4d7a-94ab-ad718c5d310b" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220414T060503Z:42a4fa74-44c4-47ff-a30c-a71a84981eb1" + "JIOINDIAWEST:20220517T054625Z:eea218e1-4e46-4d7a-94ab-ad718c5d310b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 14 Apr 2022 06:05:03 GMT" + "Tue, 17 May 2022 05:46:24 GMT" ], "Content-Length": [ "22" @@ -1755,19 +1755,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGffa8be76/providers/Microsoft.Compute/virtualMachines/PSTestVMffa8b0?api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZmZhOGJlNzYvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy9QU1Rlc3RWTWZmYThiMD9hcGktdmVyc2lvbj0yMDIxLTExLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG66dc4625/providers/Microsoft.Compute/virtualMachines/PSTestVM66dc40?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNjZkYzQ2MjUvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy9QU1Rlc3RWTTY2ZGM0MD9hcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D1_v2\"\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\": \"PSTestVMffa8b0\",\r\n \"adminUsername\": \"demouser\",\r\n \"adminPassword\": \"ffa8be76-6d6Aa.\",\r\n \"windowsConfiguration\": {}\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGffa8be76/providers/Microsoft.Network/networkInterfaces/PSTestNICffa8b0\"\r\n }\r\n ]\r\n }\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"Owner\": \"sarath\",\r\n \"MabUsed\": \"Yes\",\r\n \"Purpose\": \"PSTest\",\r\n \"AutoShutDown\": \"No\",\r\n \"DeleteBy\": \"06-2022\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D1_v2\"\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\": \"PSTestVM66dc40\",\r\n \"adminUsername\": \"demouser\",\r\n \"adminPassword\": \"66dc4625-50aAa.\",\r\n \"windowsConfiguration\": {}\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG66dc4625/providers/Microsoft.Network/networkInterfaces/PSTestNIC66dc40\"\r\n }\r\n ]\r\n }\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"Owner\": \"sarath\",\r\n \"DeleteBy\": \"06-2022\",\r\n \"Purpose\": \"PSTest\",\r\n \"MabUsed\": \"Yes\",\r\n \"AutoShutDown\": \"No\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "21a92e22-7dff-4d3e-ab32-1bd85a11d4bf" + "61c5f3cc-b073-4c59-bfd7-56e6c7e0bfea" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" @@ -1790,19 +1790,19 @@ "10" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Compute/locations/southeastasia/operations/78f21d39-2b5c-4984-ba07-a9df983bed5b?p=e484ceca-6435-4a7f-b125-3d82e6b12014&api-version=2021-11-01" + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Compute/locations/southeastasia/operations/0921944e-2cd7-4231-aad7-63feffe5c571?p=e484ceca-6435-4a7f-b125-3d82e6b12014&api-version=2021-11-01" ], "Azure-AsyncNotification": [ "Enabled" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/PutVM3Min;239,Microsoft.Compute/PutVM30Min;1199" + "Microsoft.Compute/PutVM3Min;239,Microsoft.Compute/PutVM30Min;1198" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "78f21d39-2b5c-4984-ba07-a9df983bed5b" + "0921944e-2cd7-4231-aad7-63feffe5c571" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -1812,19 +1812,19 @@ "1199" ], "x-ms-correlation-request-id": [ - "b672b16d-0016-4dfd-bf12-410cafebeed0" + "b745600a-3df1-4148-817d-54351ab9657c" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220414T060507Z:b672b16d-0016-4dfd-bf12-410cafebeed0" + "WESTINDIA:20220517T054628Z:b745600a-3df1-4148-817d-54351ab9657c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 14 Apr 2022 06:05:07 GMT" + "Tue, 17 May 2022 05:46:28 GMT" ], "Content-Length": [ - "1874" + "1922" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1833,20 +1833,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"PSTestVMffa8b0\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGffa8be76/providers/Microsoft.Compute/virtualMachines/PSTestVMffa8b0\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"Owner\": \"sarath\",\r\n \"MabUsed\": \"Yes\",\r\n \"Purpose\": \"PSTest\",\r\n \"AutoShutDown\": \"No\",\r\n \"DeleteBy\": \"06-2022\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"782e30c2-61b4-447a-aa1a-bd0823f0a2fb\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D1_v2\"\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.5066.220403\"\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 \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"PSTestVMffa8b0\",\r\n \"adminUsername\": \"demouser\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"AutomaticByOS\",\r\n \"assessmentMode\": \"ImageDefault\"\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/PSTestRGffa8be76/providers/Microsoft.Network/networkInterfaces/PSTestNICffa8b0\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\",\r\n \"timeCreated\": \"2022-04-14T11:35:06.5140852+05:30\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"PSTestVM66dc40\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG66dc4625/providers/Microsoft.Compute/virtualMachines/PSTestVM66dc40\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"Owner\": \"sarath\",\r\n \"DeleteBy\": \"06-2022\",\r\n \"Purpose\": \"PSTest\",\r\n \"MabUsed\": \"Yes\",\r\n \"AutoShutDown\": \"No\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"3499b57a-58c2-40ae-93b7-487af7130d58\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D1_v2\"\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.5125.220505\"\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 \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"PSTestVM66dc40\",\r\n \"adminUsername\": \"demouser\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"AutomaticByOS\",\r\n \"assessmentMode\": \"ImageDefault\"\r\n },\r\n \"enableVMAgentPlatformUpdates\": false\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/PSTestRG66dc4625/providers/Microsoft.Network/networkInterfaces/PSTestNIC66dc40\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\",\r\n \"timeCreated\": \"2022-05-17T11:16:28.0739312+05:30\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Compute/locations/southeastasia/operations/78f21d39-2b5c-4984-ba07-a9df983bed5b?p=e484ceca-6435-4a7f-b125-3d82e6b12014&api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzc4ZjIxZDM5LTJiNWMtNDk4NC1iYTA3LWE5ZGY5ODNiZWQ1Yj9wPWU0ODRjZWNhLTY0MzUtNGE3Zi1iMTI1LTNkODJlNmIxMjAxNCZhcGktdmVyc2lvbj0yMDIxLTExLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Compute/locations/southeastasia/operations/0921944e-2cd7-4231-aad7-63feffe5c571?p=e484ceca-6435-4a7f-b125-3d82e6b12014&api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzA5MjE5NDRlLTJjZDctNDIzMS1hYWQ3LTYzZmVmZmU1YzU3MT9wPWU0ODRjZWNhLTY0MzUtNGE3Zi1iMTI1LTNkODJlNmIxMjAxNCZhcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "21a92e22-7dff-4d3e-ab32-1bd85a11d4bf" + "61c5f3cc-b073-4c59-bfd7-56e6c7e0bfea" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" @@ -1863,32 +1863,32 @@ "50" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperation3Min;14999,Microsoft.Compute/GetOperation30Min;29999" + "Microsoft.Compute/GetOperation3Min;14999,Microsoft.Compute/GetOperation30Min;29988" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "6ef7384c-57b2-41a1-9ac5-b1461853909c" + "a7d089b1-9952-498f-b929-bfb28bb17106" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11995" ], "x-ms-correlation-request-id": [ - "3c5ddcab-abb2-4225-89f8-b6f95e6d9d96" + "b3c33941-bfc2-4fd0-ad2a-9ea417869504" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220414T060517Z:3c5ddcab-abb2-4225-89f8-b6f95e6d9d96" + "WESTINDIA:20220517T054639Z:b3c33941-bfc2-4fd0-ad2a-9ea417869504" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 14 Apr 2022 06:05:17 GMT" + "Tue, 17 May 2022 05:46:38 GMT" ], "Content-Length": [ "134" @@ -1900,20 +1900,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-04-14T11:35:06.1390774+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"78f21d39-2b5c-4984-ba07-a9df983bed5b\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2022-05-17T11:16:27.2771051+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"0921944e-2cd7-4231-aad7-63feffe5c571\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Compute/locations/southeastasia/operations/78f21d39-2b5c-4984-ba07-a9df983bed5b?p=e484ceca-6435-4a7f-b125-3d82e6b12014&api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzc4ZjIxZDM5LTJiNWMtNDk4NC1iYTA3LWE5ZGY5ODNiZWQ1Yj9wPWU0ODRjZWNhLTY0MzUtNGE3Zi1iMTI1LTNkODJlNmIxMjAxNCZhcGktdmVyc2lvbj0yMDIxLTExLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Compute/locations/southeastasia/operations/0921944e-2cd7-4231-aad7-63feffe5c571?p=e484ceca-6435-4a7f-b125-3d82e6b12014&api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzA5MjE5NDRlLTJjZDctNDIzMS1hYWQ3LTYzZmVmZmU1YzU3MT9wPWU0ODRjZWNhLTY0MzUtNGE3Zi1iMTI1LTNkODJlNmIxMjAxNCZhcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "21a92e22-7dff-4d3e-ab32-1bd85a11d4bf" + "61c5f3cc-b073-4c59-bfd7-56e6c7e0bfea" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" @@ -1927,32 +1927,32 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperation3Min;14998,Microsoft.Compute/GetOperation30Min;29998" + "Microsoft.Compute/GetOperation3Min;14998,Microsoft.Compute/GetOperation30Min;29987" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "3495c789-6688-4feb-9da9-f0217aa9f2f9" + "8e291a38-027a-4372-821d-4c47c183fa5c" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11994" ], "x-ms-correlation-request-id": [ - "ab689319-90ea-4320-85ea-b5c8727c7aab" + "096e9e86-d5be-41ff-bfa1-24029bfde54d" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220414T060607Z:ab689319-90ea-4320-85ea-b5c8727c7aab" + "WESTINDIA:20220517T054729Z:096e9e86-d5be-41ff-bfa1-24029bfde54d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 14 Apr 2022 06:06:07 GMT" + "Tue, 17 May 2022 05:47:28 GMT" ], "Content-Length": [ "134" @@ -1964,20 +1964,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-04-14T11:35:06.1390774+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"78f21d39-2b5c-4984-ba07-a9df983bed5b\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2022-05-17T11:16:27.2771051+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"0921944e-2cd7-4231-aad7-63feffe5c571\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Compute/locations/southeastasia/operations/78f21d39-2b5c-4984-ba07-a9df983bed5b?p=e484ceca-6435-4a7f-b125-3d82e6b12014&api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzc4ZjIxZDM5LTJiNWMtNDk4NC1iYTA3LWE5ZGY5ODNiZWQ1Yj9wPWU0ODRjZWNhLTY0MzUtNGE3Zi1iMTI1LTNkODJlNmIxMjAxNCZhcGktdmVyc2lvbj0yMDIxLTExLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Compute/locations/southeastasia/operations/0921944e-2cd7-4231-aad7-63feffe5c571?p=e484ceca-6435-4a7f-b125-3d82e6b12014&api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzA5MjE5NDRlLTJjZDctNDIzMS1hYWQ3LTYzZmVmZmU1YzU3MT9wPWU0ODRjZWNhLTY0MzUtNGE3Zi1iMTI1LTNkODJlNmIxMjAxNCZhcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "21a92e22-7dff-4d3e-ab32-1bd85a11d4bf" + "61c5f3cc-b073-4c59-bfd7-56e6c7e0bfea" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" @@ -1991,32 +1991,32 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperation3Min;14997,Microsoft.Compute/GetOperation30Min;29997" + "Microsoft.Compute/GetOperation3Min;14997,Microsoft.Compute/GetOperation30Min;29986" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "1e9b9278-aa37-4db8-befb-04987eebfbeb" + "429a0fa6-b4b4-4e67-84ac-5d13d3ebd29d" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11993" ], "x-ms-correlation-request-id": [ - "124ada0f-8e00-4062-bc11-796e1d7ba782" + "45b997d1-6731-4847-aee7-86f47cbbac24" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220414T060658Z:124ada0f-8e00-4062-bc11-796e1d7ba782" + "WESTINDIA:20220517T054819Z:45b997d1-6731-4847-aee7-86f47cbbac24" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 14 Apr 2022 06:06:58 GMT" + "Tue, 17 May 2022 05:48:19 GMT" ], "Content-Length": [ "184" @@ -2028,7 +2028,7 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-04-14T11:35:06.1390774+05:30\",\r\n \"endTime\": \"2022-04-14T11:36:41.5145671+05:30\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"78f21d39-2b5c-4984-ba07-a9df983bed5b\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2022-05-17T11:16:27.2771051+05:30\",\r\n \"endTime\": \"2022-05-17T11:18:13.3853838+05:30\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"0921944e-2cd7-4231-aad7-63feffe5c571\"\r\n}", "StatusCode": 200 }, { @@ -2038,13 +2038,13 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "21a92e22-7dff-4d3e-ab32-1bd85a11d4bf" + "61c5f3cc-b073-4c59-bfd7-56e6c7e0bfea" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" @@ -2061,32 +2061,32 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "8d76ef5d-2d17-4297-8566-4612360b9f5a_132931242131660671" + "8d76ef5d-2d17-4297-8566-4612360b9f5a_132927459943306577" ], "x-ms-request-id": [ - "f1feb48b-bd17-40a9-acc9-fe082eae887e" + "9aa71bf8-f76f-4ea1-a418-672fbd7426be" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11991" ], "x-ms-correlation-request-id": [ - "3eafa91e-52c5-4042-ae0d-952b3170dfab" + "0998d1df-6727-4675-9b97-f15da0677d61" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220414T060659Z:3eafa91e-52c5-4042-ae0d-952b3170dfab" + "WESTINDIA:20220517T054820Z:0998d1df-6727-4675-9b97-f15da0677d61" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 14 Apr 2022 06:06:59 GMT" + "Tue, 17 May 2022 05:48:20 GMT" ], "Content-Length": [ - "426791" + "429382" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2095,7 +2095,7 @@ "-1" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"128technology\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/128technology\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1580863854728\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1580863854728\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1583411303229\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1583411303229\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1583465680865\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1583465680865\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1585118004523\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1585118004523\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1592878437854\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1592878437854\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1597644262255\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1597644262255\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1598955805825\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1598955805825\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1601633765871\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1601633765871\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1602067018799\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1602067018799\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1604579683207\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1604579683207\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1615257339685\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1615257339685\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1615278064010\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1615278064010\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1615455873642\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1615455873642\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1624590941808\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1624590941808\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1e\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1e\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"2021ai\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/2021ai\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"247commercelimited1611063941652\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/247commercelimited1611063941652\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"3cx-pbx\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/3cx-pbx\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"42crunch1580391915541\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/42crunch1580391915541\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"4psa\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/4psa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"5nine-software-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/5nine-software-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"6124903\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/6124903\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"7isolutions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/7isolutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"a10networks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/a10networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"a10networks1596136698788\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/a10networks1596136698788\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"abiquo\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/abiquo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"abzoobainc1598420455082\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/abzoobainc1598420455082\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"accedian\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/accedian\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"accelario1579101623356\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/accelario1579101623356\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"accellion\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/accellion\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"accessdata-group\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/accessdata-group\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"accops\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/accops\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aciworldwide\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aciworldwide\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Acronis\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Acronis\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Acronis.Backup\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Acronis.Backup\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"actian-corp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/actian-corp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"actian_matrix\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/actian_matrix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"actifio\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/actifio\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"actiphy\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/actiphy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"actiphyinc1627974506603\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/actiphyinc1627974506603\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"activecountermeasuresinc1631039410073\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/activecountermeasuresinc1631039410073\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"activeeon\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/activeeon\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"activeops\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/activeops\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"adastracorporation-4028356\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/adastracorporation-4028356\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"adgs\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/adgs\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"advantech\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/advantech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"advantech-webaccess\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/advantech-webaccess\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"advantys\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/advantys\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aelf\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aelf\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aerospike\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aerospike\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"affinio\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/affinio\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"affirmednetworks1607630812999\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/affirmednetworks1607630812999\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ageniumscale1591804889317\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ageniumscale1591804889317\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aggregion-ltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aggregion-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"agiledialogssl1603791911858\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/agiledialogssl1603791911858\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"agolo\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/agolo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ahnlabinc1584495174865\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ahnlabinc1584495174865\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ahnlabinc1584495467593\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ahnlabinc1584495467593\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"airalabrus\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/airalabrus\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aiscaler-cache-control-ddos-and-url-rewriting-\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aiscaler-cache-control-ddos-and-url-rewriting-\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aisundowninc1618516322959\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aisundowninc1618516322959\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"akamai-technologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/akamai-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"akumina\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/akumina\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"akumo-software\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/akumo-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"al-tamamunitedtradingcontractingcompany\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/al-tamamunitedtradingcontractingcompany\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"alachisoft\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/alachisoft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"alertlogic\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/alertlogic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"AlertLogic.Extension\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/AlertLogic.Extension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"algolyticstechnologies1606475101268\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/algolyticstechnologies1606475101268\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"alicetrix\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/alicetrix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"alienvault\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/alienvault\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"alldigital-brevity\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/alldigital-brevity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"almalinux\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/almalinux\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"almalinuxosfoundation1628089859865\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/almalinuxosfoundation1628089859865\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"altair-engineering-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/altair-engineering-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"altamira-corporation\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/altamira-corporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"alteryx\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/alteryx\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"altova\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/altova\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"amergint1593131356777\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/amergint1593131356777\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"anjanadatasl1583402861145\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/anjanadatasl1583402861145\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ansys\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ansys\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"antmedia\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/antmedia\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aod\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aod\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"apigee\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/apigee\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"appcara\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appcara\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"appcelerator\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appcelerator\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"appex-networks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appex-networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"appistry\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appistry\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"appiyo_technologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appiyo_technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"appmint_inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appmint_inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"apps-4-rent\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/apps-4-rent\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"appscale-marketplace\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appscale-marketplace\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"appsurifyinc1606933045773\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appsurifyinc1606933045773\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aquaforest\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aquaforest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aquantyinc1598537176913\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aquantyinc1598537176913\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aquaveollc1633710529908\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aquaveollc1633710529908\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"arabesque-group\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/arabesque-group\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"arangodb\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/arangodb\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aras\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aras\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"arcblock\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/arcblock\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"arcesb\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/arcesb\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"arcontechsolutionsprivatelimited1623841797810\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/arcontechsolutionsprivatelimited1623841797810\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"arcserveusallc-marketing\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/arcserveusallc-marketing\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"arista-networks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/arista-networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ariwontollc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ariwontollc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"array_networks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/array_networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"artificial-intelligence-techniques-sl\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/artificial-intelligence-techniques-sl\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"arubanetworks-4922182\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/arubanetworks-4922182\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"asdivertissementinc1617837708654\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/asdivertissementinc1617837708654\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"asigra\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/asigra\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aspentechnologyhq-1353108\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aspentechnologyhq-1353108\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"astadia-1148316\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/astadia-1148316\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"asterasoftware1581022936015\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/asterasoftware1581022936015\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"asyscosoftwarebv\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/asyscosoftwarebv\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ataccama\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ataccama\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"athinfosystems1641442221349\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/athinfosystems1641442221349\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"athinfosystems1648710938250\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/athinfosystems1648710938250\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"atlgaming\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/atlgaming\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"atmosera\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/atmosera\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"atomicorp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/atomicorp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"atomizedinc1587939464368\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/atomizedinc1587939464368\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"attunity_cloudbeam\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/attunity_cloudbeam\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"audiocodes\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/audiocodes\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"auraportal\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/auraportal\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"auriq-systems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/auriq-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"automateio1592914387888\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/automateio1592914387888\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"automationanywhere\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/automationanywhere\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"avanseus\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/avanseus\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"avepoint\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/avepoint\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aveva1\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aveva1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"avi-networks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/avi-networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aviatrix-systems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aviatrix-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"awingu\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/awingu\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"axedrasag1590581171549\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/axedrasag1590581171549\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"axsguardablenv\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/axsguardablenv\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"axshco\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/axshco\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"axway\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/axway\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"axxana\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/axxana\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"azhpc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/azhpc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"azul\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/azul\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"azure-dockit\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/azure-dockit\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"azurecyclecloud\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/azurecyclecloud\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"AzureDatabricks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/AzureDatabricks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"azureopenshift\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/azureopenshift\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"AzureRT.PIR.Synthetics.ProdTest\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/AzureRT.PIR.Synthetics.ProdTest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"AzureRT.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/AzureRT.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"azuretesting\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/azuretesting\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"azuretesting2\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/azuretesting2\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"azuretesting3\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/azuretesting3\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"AzureTools1type\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/AzureTools1type\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"baas-techbureau\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/baas-techbureau\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"baffle-io\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/baffle-io\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"balabit\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/balabit\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"barracudanetworks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/barracudanetworks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"basho\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/basho\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"batch\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/batch\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bayware\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bayware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bdy\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bdy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"belindaczsro1588885355210\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/belindaczsro1588885355210\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bellsoft1582871421940\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bellsoft1582871421940\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"betsol\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/betsol\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"beyondtrust\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/beyondtrust\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bi-builders-as\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bi-builders-as\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"big-id\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/big-id\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"biolibinc1622552350258\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/biolibinc1622552350258\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bissantechnology1583581147809\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bissantechnology1583581147809\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bitdefendercybersecurity\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bitdefendercybersecurity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Bitnami\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Bitnami\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bizagi\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bizagi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bizaptyltd1626489237351\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bizaptyltd1626489237351\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bizdataloome\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bizdataloome\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"biztalk360\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/biztalk360\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"black-duck-software\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/black-duck-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"blackbird\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/blackbird\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"blackmagicdesignincorporated1596492193249\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/blackmagicdesignincorporated1596492193249\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"blk-technologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/blk-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"blockapps\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/blockapps\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"blockchain-foundry\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/blockchain-foundry\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"blockstack\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/blockstack\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bloombase\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bloombase\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bluecat\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bluecat\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bluejeansnetwork1638333611902\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bluejeansnetwork1638333611902\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"blueprismlimited-4827145\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/blueprismlimited-4827145\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bluesyntaxconsulting1617654548594\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bluesyntaxconsulting1617654548594\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bluetalon\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bluetalon\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bmc.ctm\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bmc.ctm\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bmcctm.test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bmcctm.test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"boardpacpvtltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/boardpacpvtltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bocada\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bocada\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"boemskats\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/boemskats\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"botanalytics\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/botanalytics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bowspritconsultingopcprivatelimited1596291408582\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bowspritconsultingopcprivatelimited1596291408582\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bravura-software-llc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bravura-software-llc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Brianjac.Symantec.CloudWorkloadProtection\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Brianjac.Symantec.CloudWorkloadProtection\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bricatainc1584472632111\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bricatainc1584472632111\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bright-computing\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bright-computing\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"brightcomputing\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/brightcomputing\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"brocade_communications\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/brocade_communications\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"brutale\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/brutale\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bryte\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bryte\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bssw\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bssw\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bt-americas-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bt-americas-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"buddhalabs\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/buddhalabs\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cadosecurityltd1626856705534\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cadosecurityltd1626856705534\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"calculated_systems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/calculated_systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"caloudi_corp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/caloudi_corp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"canadiancentreforcybersecurity1610638436359\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/canadiancentreforcybersecurity1610638436359\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Canonical\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Canonical\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"canonical-test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/canonical-test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"carto\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/carto\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cask\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cask\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"castaigroupinc1595243474856\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/castaigroupinc1595243474856\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"catechnologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/catechnologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"catonetworksltd1641478570665\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/catonetworksltd1641478570665\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cautelalabs\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cautelalabs\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cavirin\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cavirin\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cayosoftinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cayosoftinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cdatasoftware\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cdatasoftware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cds\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cds\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"celum-gmbh\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/celum-gmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"center-for-internet-security-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/center-for-internet-security-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"centeritysystems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/centeritysystems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"centrixeltd1594135951373\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/centrixeltd1594135951373\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"centrocomputerspa1584528117084\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/centrocomputerspa1584528117084\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"certifiedsecuritysolutionsinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/certifiedsecuritysolutionsinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"certivox\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/certivox\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cfd-direct\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cfd-direct\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"chain\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/chain\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"checkpoint\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/checkpoint\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"chef-software\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/chef-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Chef.Bootstrap.WindowsAzure\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Chef.Bootstrap.WindowsAzure\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"chunghwatelecom1587573688842\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/chunghwatelecom1587573688842\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cinchy\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cinchy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cinegy-gmbh\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cinegy-gmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ciphertechsinc1646670709341\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ciphertechsinc1646670709341\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"circleci\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/circleci\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cires21\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cires21\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cirruswaveinc1579234787943\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cirruswaveinc1579234787943\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cisco\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cisco\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"citrix\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/citrix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Citrix.ADC\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Citrix.ADC\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"clapsodeughaftungsbeschrnkt1626333173563\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/clapsodeughaftungsbeschrnkt1626333173563\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"clear-linux-project\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/clear-linux-project\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"clone-systems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/clone-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"clouber\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/clouber\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloud-checkr\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloud-checkr\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloud-cruiser\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloud-cruiser\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloud-infrastructure-services\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloud-infrastructure-services\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudaccelinc1628754426775\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudaccelinc1628754426775\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudbees\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudbees\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudbees-enterprise-jenkins\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudbees-enterprise-jenkins\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudbolt-software\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudbolt-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudboltsoftware1639523402532\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudboltsoftware1639523402532\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudboost\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudboost\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudcover\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudcover\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudenablers-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudenablers-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudentity\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudentity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudera\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudera\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudflare\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudflare\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudhouse\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudhouse\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudinfo-4919088\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudinfo-4919088\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudknox\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudknox\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudlanes\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudlanes\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudlink\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudlink\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"CloudLinkEMC.SecureVM\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/CloudLinkEMC.SecureVM\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudmavensolutions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudmavensolutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudneeti\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudneeti\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudplan-gmbh\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudplan-gmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudsecurity\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudsecurity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudsoft\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudsoft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudwhizsolutions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudwhizsolutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudwrxsconsultingltd1631029702055\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudwrxsconsultingltd1631029702055\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"clustrix\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/clustrix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cncf-upstream\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cncf-upstream\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"codaintelligence1606495376525\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/codaintelligence1606495376525\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"codelathe\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/codelathe\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"codenvy\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/codenvy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"codetwo\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/codetwo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cognexcorporation1613759804979\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cognexcorporation1613759804979\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cognexcorporation1647410785838\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cognexcorporation1647410785838\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cognitive-scale\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cognitive-scale\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cognizant\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cognizant\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cognosys\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cognosys\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cohesity\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cohesity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cohesitydev1592001764720\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cohesitydev1592001764720\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cohesive\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cohesive\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"coin-sciences-ltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/coin-sciences-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"collabcloudlimited\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/collabcloudlimited\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"collibranv1619508098620\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/collibranv1619508098620\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"commscopeinc1632135151062\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/commscopeinc1632135151062\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"commvault\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/commvault\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"compellon\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/compellon\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"composable\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/composable\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"comunity\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/comunity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"concentrationheatandmomentumlimited1616154387047\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/concentrationheatandmomentumlimited1616154387047\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Confer\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Confer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"confluentinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/confluentinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"conflux\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/conflux\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"connecting-software\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/connecting-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"consensys\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/consensys\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"containeraider\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/containeraider\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"contiamogmbh\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/contiamogmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"controlcase\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/controlcase\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"controlplane\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/controlplane\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"controlplanecorporation1609967567639\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/controlplanecorporation1609967567639\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"convertigo\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/convertigo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"corda\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/corda\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"core-stack\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/core-stack\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"corent-technology-pvt\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/corent-technology-pvt\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"CoreOS\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/CoreOS\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"couchbase\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/couchbase\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cpanel\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cpanel\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"credativ\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/credativ\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cristiesoftwareltd1599488127561\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cristiesoftwareltd1599488127561\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"crunchyard\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/crunchyard\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"crunchyardltd1623835391104\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/crunchyardltd1623835391104\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cryptocom1585727786636\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cryptocom1585727786636\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cryptosense1605170011574\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cryptosense1605170011574\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cryptzone\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cryptzone\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ctm.bmc.com\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ctm.bmc.com\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ctrliqinc1648673227698\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ctrliqinc1648673227698\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cubebackup\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cubebackup\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cyberark\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cyberark\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cybernetica-as\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cybernetica-as\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cyxtera\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cyxtera\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"d4t4_solutions-1164305\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/d4t4_solutions-1164305\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"daceitdbasensetrafficpulse1579892024934\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/daceitdbasensetrafficpulse1579892024934\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"danielsol.AzureTools1\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/danielsol.AzureTools1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Dans.Windows.App\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Dans.Windows.App\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Dans3.Windows.App\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Dans3.Windows.App\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dataart\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dataart\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"databricks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/databricks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datacore\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datacore\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Datadog.Agent\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Datadog.Agent\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datadynamicsinc1581991927942\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datadynamicsinc1581991927942\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datagapsinc1585348463636\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datagapsinc1585348463636\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dataguiseinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dataguiseinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dataiku\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dataiku\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datalayer\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datalayer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datanomers1584919038987\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datanomers1584919038987\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datanova\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datanova\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datapredsa\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datapredsa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dataroadtechnologiesllc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dataroadtechnologiesllc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datasciencedojo1586563145740\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datasciencedojo1586563145740\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datastax\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datastax\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datasunrise\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datasunrise\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datavirtualitygmbh\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datavirtualitygmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datometry\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datometry\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dbs-h\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dbs-h\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ddn-whamcloud-5345716\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ddn-whamcloud-5345716\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Debian\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Debian\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dece-4446019\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dece-4446019\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"decisosalesbv\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/decisosalesbv\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"deepcognitioninc1593512758156\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/deepcognitioninc1593512758156\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"deepsiginc1581610210151\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/deepsiginc1581610210151\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"deepsurfacesecurityinc1632943333445\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/deepsurfacesecurityinc1632943333445\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dellemc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dellemc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dell_software\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dell_software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"delphix\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/delphix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"deltapathlimited1592886319362\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/deltapathlimited1592886319362\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"denodo\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/denodo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"denyall\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/denyall\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"derdack\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/derdack\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"desktopstudioag1580294245574\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/desktopstudioag1580294245574\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"devfactory\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/devfactory\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"device42inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/device42inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"deviceauthorityinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/deviceauthorityinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"devolutionsinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/devolutionsinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"devopsgroup-uk\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/devopsgroup-uk\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"df-portal-user\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/df-portal-user\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dgsecure\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dgsecure\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Dh2ico\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Dh2ico\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dh2icompany\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dh2icompany\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dhi\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dhi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"diagramics\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/diagramics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dicomsystems1584107398321\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dicomsystems1584107398321\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"diehl-metering\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/diehl-metering\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"digisitesystems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/digisitesystems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"digitaldefenseinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/digitaldefenseinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"digitaloffice\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/digitaloffice\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"digitamizeinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/digitamizeinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"digitate\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/digitate\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"diladele\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/diladele\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dimensionalmechanics-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dimensionalmechanics-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"diqa\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/diqa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"diyatech\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/diyatech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"diyotta\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/diyotta\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"djiindustrialincus\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/djiindustrialincus\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"docker\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/docker\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dome9\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dome9\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dorabot\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dorabot\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dremiocorporation\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dremiocorporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"drizti\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/drizti\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"drone\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/drone\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dsi\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dsi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dundas\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dundas\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dyadic_security\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dyadic_security\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dynatrace\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dynatrace\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dynatrace.ruxit\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dynatrace.ruxit\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"e-magicinc1587696283171\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/e-magicinc1587696283171\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"eastwind-networks-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/eastwind-networks-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"easysoftwaresro1593005637384\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/easysoftwaresro1593005637384\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ebesllc1637780200500\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ebesllc1637780200500\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ecessa\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ecessa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"edevtech\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/edevtech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"edgelesssystems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/edgelesssystems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"edgenetworks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/edgenetworks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"edispheresoftwareprivatelimited1606199736428\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/edispheresoftwareprivatelimited1606199736428\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"education4sight\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/education4sight\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"eecservicesfzllc1604836615706\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/eecservicesfzllc1604836615706\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"egnyte\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/egnyte\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"egress1589289169584\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/egress1589289169584\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"eikonasystemsgmbh1601729310063\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/eikonasystemsgmbh1601729310063\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Elastic\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Elastic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"elasticbox\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/elasticbox\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"elecard\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/elecard\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"electric-cloud\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/electric-cloud\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"elevateiot\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/elevateiot\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"eleven01\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/eleven01\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"elfiqnetworks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/elfiqnetworks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"emercoin\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/emercoin\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"energisme1601990637842\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/energisme1601990637842\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"enforongo\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/enforongo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"engineering-ingegneriainformatica-spa1626786889850\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/engineering-ingegneriainformatica-spa1626786889850\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"engysltd1624364546407\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/engysltd1624364546407\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"enterprise-ethereum-alliance\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/enterprise-ethereum-alliance\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"enterprisedb-corp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/enterprisedb-corp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"enterpriseworx-it\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/enterpriseworx-it\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"epicgames\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/epicgames\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"epicgamesinc1633466121071\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/epicgamesinc1633466121071\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"eproe\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/eproe\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"equalum\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/equalum\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"equilibrium\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/equilibrium\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"equinix\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/equinix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ergoninformatikag1581586464404\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ergoninformatikag1581586464404\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"esdenera\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/esdenera\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ESET\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ESET\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"esetresearch1579795941720\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/esetresearch1579795941720\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"esri\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/esri\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"esyon\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/esyon\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ethereum\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ethereum\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"eurolinuxspzoo1620639373013\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/eurolinuxspzoo1620639373013\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"eventtracker\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/eventtracker\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"evertzmicrosystemsltd1586877923009\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/evertzmicrosystemsltd1586877923009\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"evostream-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/evostream-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"exact\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/exact\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"exasol\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/exasol\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"excelero1608461290726\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/excelero1608461290726\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"exivity\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/exivity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"exonar\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/exonar\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"f5-networks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/f5-networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"falainapteltd1604661424876\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/falainapteltd1604661424876\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"falconstorsoftware\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/falconstorsoftware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fatalsecurity1604924013537\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fatalsecurity1604924013537\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fatpipe-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fatpipe-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fenestrae-1035066\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fenestrae-1035066\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fidesys\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fidesys\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"filecatalyst\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/filecatalyst\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"filemagellc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/filemagellc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fiorano\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fiorano\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fireeye\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fireeye\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"firehost\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/firehost\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"firemon\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/firemon\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"firstderivativesplc1596469572732\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/firstderivativesplc1596469572732\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"flashgrid-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/flashgrid-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"flexbby\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/flexbby\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"flexbby-5255860\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/flexbby-5255860\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"flexify-io\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/flexify-io\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"flexxibleit\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/flexxibleit\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"flowmon\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/flowmon\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"flynet\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/flynet\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"foghorn-systems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/foghorn-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"forcepoint-llc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/forcepoint-llc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"forescout\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/forescout\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"foreseetiab1613650409016\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/foreseetiab1613650409016\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"formpipesoftwareab\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/formpipesoftwareab\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"forscene\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/forscene\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fortanix\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fortanix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fortinet\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fortinet\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fortycloud\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fortycloud\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"forumsystems1599756394904\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/forumsystems1599756394904\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fotopiatechnologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fotopiatechnologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"foxiteuropegmbh1585901066320\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/foxiteuropegmbh1585901066320\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"franzinc1593030725310\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/franzinc1593030725310\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fujitsu_fast\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fujitsu_fast\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fw\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fw\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"g2kgroupgmbh-4821943\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/g2kgroupgmbh-4821943\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gapteq\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gapteq\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gatlingcorp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gatlingcorp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gbs\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gbs\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gemalto-safenet\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gemalto-safenet\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Gemalto.SafeNet.ProtectV\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Gemalto.SafeNet.ProtectV\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"genesistechnologyinc1604912285911\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/genesistechnologyinc1604912285911\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"genuagmbhdevid1\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/genuagmbhdevid1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"genua_gmbh\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/genua_gmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"genymobile\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/genymobile\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gigamon-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gigamon-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"GitHub\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/GitHub\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gitlab\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gitlab\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gitlabinc1586447921813\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gitlabinc1586447921813\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gladinet-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gladinet-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"glantoninc1591876792991\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/glantoninc1591876792991\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"globalidsinc1596800540598\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/globalidsinc1596800540598\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"globalscape\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/globalscape\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"globalsolutions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/globalsolutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gluwareinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gluwareinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"graphistry\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/graphistry\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"graphitegtc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/graphitegtc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"great-software-laboratory-private-limited\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/great-software-laboratory-private-limited\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"greensql\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/greensql\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"greycorbelsolutions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/greycorbelsolutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gridgain\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gridgain\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"guardicore\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/guardicore\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gxchainfoundationltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gxchainfoundationltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"h2o-ai\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/h2o-ai\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hackerbay\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hackerbay\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hackershub\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hackershub\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"haivision\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/haivision\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"haivisionsystemsinc1580780591922\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/haivisionsystemsinc1580780591922\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"haltdoscompvtltd1587136166019\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/haltdoscompvtltd1587136166019\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hanu\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hanu\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"haproxy-technologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/haproxy-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"harmanconnectedservicesinc1594928575643\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/harmanconnectedservicesinc1594928575643\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"harpaitalia\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/harpaitalia\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hashhub\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hashhub\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hcl-technologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hcl-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"heimdall-data\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/heimdall-data\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"help-systems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/help-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"helpyio\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/helpyio\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"heretechnologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/heretechnologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hewlett-packard\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hewlett-packard\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hillstone-networks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hillstone-networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hitachi-solutions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hitachi-solutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hitachivantara\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hitachivantara\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"holo-industrie40softwaregmbh1600957636008\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/holo-industrie40softwaregmbh1600957636008\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hortonworks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hortonworks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hpe\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hpe\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"HPE.Security.ApplicationDefender\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/HPE.Security.ApplicationDefender\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"huawei\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/huawei\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hubstor-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hubstor-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hush-hush\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hush-hush\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hvr\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hvr\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hyperglance\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hyperglance\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hypergrid\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hypergrid\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hystaxinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hystaxinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hytrust\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hytrust\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"i-exceed-technology\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/i-exceed-technology\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iaansys\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iaansys\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ibm\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ibm\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ibm-alliance-global-1560886\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ibm-alliance-global-1560886\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ibm-alliance-usa-ny-armonk-hq-ibmstorage-6201192\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ibm-alliance-usa-ny-armonk-hq-ibmstorage-6201192\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ibm-usa-ny-armonk-hq-6275750-ibmcloud-aiops\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ibm-usa-ny-armonk-hq-6275750-ibmcloud-aiops\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iboss\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iboss\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iconics\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iconics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iconsulting-spa\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iconsulting-spa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"icubeconsultancyservicesinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/icubeconsultancyservicesinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iguazio-5069960\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iguazio-5069960\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ikan\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ikan\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iliimbiliimveyazlmsistemlerisanvetica1617000555584\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iliimbiliimveyazlmsistemlerisanvetica1617000555584\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"illuminainc1586452220102\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/illuminainc1586452220102\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"image-technologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/image-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"imaginecommunications\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/imaginecommunications\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"imperva\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/imperva\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"impetustechnologiesinc1591959591877\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/impetustechnologiesinc1591959591877\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"imprivatainc1580479939967\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/imprivatainc1580479939967\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"incorta\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/incorta\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"incredibuild\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/incredibuild\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"indexima1594300233028\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/indexima1594300233028\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"industry-weapon\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/industry-weapon\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"industryweapon1587162781833\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/industryweapon1587162781833\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"inenprocesosyplataformasdetisderldecv1615482385424\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/inenprocesosyplataformasdetisderldecv1615482385424\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"inergybv1637141413454\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/inergybv1637141413454\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"infinitesoftwarecorporation1579223971125\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/infinitesoftwarecorporation1579223971125\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"infiotinc1614034091460\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/infiotinc1614034091460\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"influxdata\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/influxdata\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"infoblox\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/infoblox\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"infogix\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/infogix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"infolibrarian\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/infolibrarian\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"informatica\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/informatica\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"informationbuilders\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/informationbuilders\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"informationtechnologies_ltd_1179601\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/informationtechnologies_ltd_1179601\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"infotecsinternetsecuritysoftwaregmbh1636129257584\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/infotecsinternetsecuritysoftwaregmbh1636129257584\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"infront-consulting-group-ltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/infront-consulting-group-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"infscapeughaftungsbeschrnkt\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/infscapeughaftungsbeschrnkt\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ingenieurstudiohollaus1579587745438\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ingenieurstudiohollaus1579587745438\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ingrammicro\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ingrammicro\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"innomindssoftware\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/innomindssoftware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"innosepgmbh1618331344164\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/innosepgmbh1618331344164\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"innovatorartificialtechsrl1619180685551\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/innovatorartificialtechsrl1619180685551\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"innovtech\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/innovtech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"instight-technology\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/instight-technology\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"integration-objects\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/integration-objects\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"intel-bigdl\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/intel-bigdl\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"intel-fpga\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/intel-fpga\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"intellicus-technologies-pvt-ltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/intellicus-technologies-pvt-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"intelligent-plant-ltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/intelligent-plant-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"internationaltrustmachinescorporation1582190033865\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/internationaltrustmachinescorporation1582190033865\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"internet20inc1635882446190\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/internet20inc1635882446190\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"intersystems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/intersystems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"intigua\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/intigua\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"intigua1638692632641\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/intigua1638692632641\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"introspecioltd1629872641188\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/introspecioltd1629872641188\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iofabric\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iofabric\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ipinfusion1590066770520\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ipinfusion1590066770520\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ipswitch\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ipswitch\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iqsol\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iqsol\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iquate\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iquate\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iquest\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iquest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"irion\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/irion\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ishlangu-load-balancer-adc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ishlangu-load-balancer-adc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"issp-corporation\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/issp-corporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"isvtestukbigcat\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/isvtestukbigcat\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"isvtestuklegacy\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/isvtestuklegacy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"it4bizdoo\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/it4bizdoo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"itelios\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/itelios\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"itrsgroupltd1620310702149\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/itrsgroupltd1620310702149\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ivanti-inc-pcs\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ivanti-inc-pcs\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ivanti-nzta\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ivanti-nzta\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ivix1595238749040\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ivix1595238749040\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iwnamespace\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iwnamespace\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"izenda\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/izenda\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"jamcracker\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/jamcracker\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"javlinltd1579185328273\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/javlinltd1579185328273\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"jedox\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/jedox\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"jelastic\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/jelastic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"jetnexus\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/jetnexus\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"jetware-srl\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/jetware-srl\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"jfrog\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/jfrog\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"jm-technology-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/jm-technology-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"jogetinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/jogetinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"johnsnowlabsinc1646051154808\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/johnsnowlabsinc1646051154808\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"juniper-networks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/juniper-networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"justanalytics\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/justanalytics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kaazing\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kaazing\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kadenallc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kadenallc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kali-linux\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kali-linux\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kalkitech\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kalkitech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kaminarioinc1588672951794\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kaminarioinc1588672951794\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Kaspersky.Lab\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Kaspersky.Lab\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"KasperskyLab.SecurityAgent\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/KasperskyLab.SecurityAgent\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kaspersky_lab\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kaspersky_lab\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kazendi\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kazendi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kelverion\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kelverion\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kemptech\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kemptech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kepion\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kepion\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"KevlarExtensions.M365Security.SecureOS\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/KevlarExtensions.M365Security.SecureOS\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"KevlarExtensions.M365SecurityHostIDS\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/KevlarExtensions.M365SecurityHostIDS\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"KevlarExtensions.M365SecurityInventory\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/KevlarExtensions.M365SecurityInventory\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"KevlarExtensions.M365SecurityInventory.NameChangeTest\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/KevlarExtensions.M365SecurityInventory.NameChangeTest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"KevlarExtensions.M365SecurityODL\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/KevlarExtensions.M365SecurityODL\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"KevlarExtensions.M365SecurityTLSExtension\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/KevlarExtensions.M365SecurityTLSExtension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kinetica\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kinetica\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kinvolk\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kinvolk\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"knime\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/knime\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kobalt\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kobalt\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kognillc1600118221163\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kognillc1600118221163\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kognitivsparkinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kognitivsparkinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"konginc1581527938760\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/konginc1581527938760\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"konsys-ltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/konsys-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"koverseinc1588716263110\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/koverseinc1588716263110\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kryonsystems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kryonsystems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"krypc-technologies-pvt-ltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/krypc-technologies-pvt-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kyligence\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kyligence\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kyvos-insights-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kyvos-insights-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lab3solutions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lab3solutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lancom-systems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lancom-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lansa\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lansa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lastline\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lastline\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"launchnodesltd1644561451121\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/launchnodesltd1644561451121\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"leap-orbit\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/leap-orbit\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lenovosoftware1604394104439\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lenovosoftware1604394104439\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"leostream-corporation\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/leostream-corporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lepide-software\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lepide-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"levacloudllc1602151818089\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/levacloudllc1602151818089\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"libelleag\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/libelleag\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"liberatii\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/liberatii\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"libraesva\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/libraesva\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"liebsoft\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/liebsoft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lightning-analyticsinc1582000647396\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lightning-analyticsinc1582000647396\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"linuxbasedsystemsdesignltd1580878904727\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/linuxbasedsystemsdesignltd1580878904727\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"liquid-files\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/liquid-files\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"liquidware\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/liquidware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"literatu\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/literatu\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"litespeedtechnologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/litespeedtechnologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"litespeed_technologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/litespeed_technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"litionenergiegmbh1580128829115\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/litionenergiegmbh1580128829115\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"litmusautomation1582760223280\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/litmusautomation1582760223280\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"llcitpro\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/llcitpro\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lnw-softgmbh\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lnw-softgmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"loadbalancer\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/loadbalancer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"logicflowag1638535407949\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/logicflowag1638535407949\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"logsign\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/logsign\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"logstarecorp1635838645101\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/logstarecorp1635838645101\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"logtrust\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/logtrust\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"logzio\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/logzio\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"looker\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/looker\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lotus_beta_analytics\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lotus_beta_analytics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lti-lt-infotech\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lti-lt-infotech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"luminate-security\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/luminate-security\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"M365Security.KevlarExtensions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/M365Security.KevlarExtensions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"M365SecurityInventory\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/M365SecurityInventory\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"machinesense\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/machinesense\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"madhavajay1632269232059\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/madhavajay1632269232059\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"maidenhead-bridge\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/maidenhead-bridge\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"manageengine\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/manageengine\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mapd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mapd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mapr-technologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mapr-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"marand\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/marand\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"marketplace-rdfe-caps\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/marketplace-rdfe-caps\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"marklogic\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/marklogic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"massiveanalytic-\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/massiveanalytic-\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mathworks-deployment\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mathworks-deployment\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mathworks-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mathworks-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"matillion\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/matillion\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mavinglobal\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mavinglobal\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"McAfee.EndpointSecurity\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/McAfee.EndpointSecurity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"McAfee.EndpointSecurity.test3\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/McAfee.EndpointSecurity.test3\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"meanio\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/meanio\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"media3-adobe\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/media3-adobe\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"media3-technologies-llc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/media3-technologies-llc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mediatekinc1586141563888\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mediatekinc1586141563888\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mendix\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mendix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"merlynnintelligencetechnologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/merlynnintelligencetechnologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"meshifyappinc1622759451429\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/meshifyappinc1622759451429\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"messagesolution\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/messagesolution\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"metaswitch\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/metaswitch\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mettainnovations-4900054\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mettainnovations-4900054\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mfe_azure\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mfe_azure\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mfiles\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mfiles\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mico\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mico\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"micro-focus\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/micro-focus\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microlinkpcukltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microlinkpcukltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microolap\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microolap\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsecpteltd1634010681688\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsecpteltd1634010681688\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-ads\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-ads\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-agci-gaming\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-agci-gaming\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-aks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-aks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-avere\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-avere\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-azure-batch\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-azure-batch\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-azure-compute\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-azure-compute\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-azure-hdinsight\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-azure-hdinsight\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-crypto\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-crypto\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-dsvm\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-dsvm\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-hyperv\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-hyperv\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-minecraft\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-minecraft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AdminCenter\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AdminCenter\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AKS\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AKS\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.ActiveDirectory\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.ActiveDirectory\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.ActiveDirectory.LinuxSSH\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.ActiveDirectory.LinuxSSH\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Applications\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Applications\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Automation.HybridWorker\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Automation.HybridWorker\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Automation.HybridWorker.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Automation.HybridWorker.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.AzureDefenderForServers\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.AzureDefenderForServers\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.AzureDefenderForSQL\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.AzureDefenderForSQL\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.AzureHybridBenefit\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.AzureHybridBenefit\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Backup.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Backup.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Backup.Test.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Backup.Test.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.ChangeTracking\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.ChangeTracking\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.ChangeTracking.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.ChangeTracking.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.ChangeTrackingAndInventory\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.ChangeTrackingAndInventory\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Chaos\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Chaos\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Compute.Security\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Compute.Security\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.ContainerUpstream\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.ContainerUpstream\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.DefenderForServers.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.DefenderForServers.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.DefenderForServers.Test2\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.DefenderForServers.Test2\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Diagnostics\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Diagnostics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Diagnostics.Build.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Diagnostics.Build.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Diagnostics.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Diagnostics.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test012be407-61ea-4e45-a2c3-71a45999ca21-20191228083800\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test01971384-3044-413b-8b1c-33b5d461bf23-20200107051823\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test0225ec7d-b36c-4ac8-82f0-aa4fafaf10a9-20200111051346\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test025e16a1-328d-45a2-b7e3-71f7e4cde046-20191229064028\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test02d1f941-5607-4757-8df7-fd8c5631ab45-20200103083810\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test039abd7f-360c-42a1-ad5d-77527c519286-20191002233412\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test04a0f157-c6fb-4595-b6ca-6c82a2338063-20200108101451\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test0737f33e-63e0-4ba9-b04b-b93a1de4e997-20200106083639\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test0a44d7be-63fa-418d-a7b6-89a44dd21894-20200107052935\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test0d01b487-7f79-4d87-b330-5c025068db45-20191004190331\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test0d643748-e6fe-41ad-b4d3-89a289a0cee0-20191003055620\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test0df83c51-5bb9-43f8-8ae9-bc896ea64f78-20200110220221\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test0f02c246-7e65-4010-9367-ca4530c3897e-20191004190223\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test157494ec-e788-43b0-8d26-a17e39ee07cc-20191002011945\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test1661d154-b623-4507-8a56-3a89812c456c-20200111083940\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test17bbd860-f21d-40ab-9026-16e05f2907f0-20200106083451\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test194e2333-13cd-43e3-b0a4-c8cdcf1a3600-20200110211106\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test1bc26b19-b8d8-41f9-a26d-818f277bdf93-20200101113139\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test1c840053-9213-4f2a-8f2e-9bf2297908bd-20200108101424\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test1d7bba72-69f1-43cd-a38c-41ce0b5f4bae-20200109050041\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test1f7a8078-50e7-4a3a-91eb-d178fd4c403b-20191002233353\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test1fef1fdc-57ba-46a8-a879-475ba7d45a7a-20200106083509\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test21332f15-f78d-4d31-afac-79b9dc989432-20191231175840\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test22f10717-6939-4003-a9ce-38effd8b77d6-20191007191355\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test2334e6e3-bb72-4241-a36f-c2429d69bc0b-20200106050834\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test24fa9eb5-1c59-4425-b61c-30fd638c2a45-20191003203802\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test2521a545-ed61-4a15-bed1-aba7ce1d81ee-20200106050804\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test25c6fe61-1282-43c2-867b-b5039219989c-20200105081851\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test27515c8c-6773-4f92-afb0-35691cc6e3b6-20200103083821\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test28012680-48e7-4903-877f-2f29464e63d5-20191229033424\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test29a7a529-d293-4728-9d7f-257ed996e64f-20200108081759\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test2a5f2d2c-b8e3-46c2-850d-a1641c024fe7-20200107084228\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test2ce856af-ab17-48f2-ba3e-bcd9af091061-20200110013246\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test2e012e83-6361-4365-963f-6ced8a08e91c-20200110211254\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test2ecf67b2-fb63-4461-b6a6-7026c4fb1168-20191002214026\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test2ede6564-c7cc-44cb-a1a8-902505c9829d-20191003020742\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test2f4ebc17-e27e-48d9-9cc3-ff933c21884e-20200106092410\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test349ee02c-af9b-4663-a963-823b40eefed8-20200108083612\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test34cf6b13-b78e-478b-b596-8b661629371d-20191007195455\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test36cc5b60-2b23-4a04-bf95-f7865e1141cf-20200110085718\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3712fca9-5cdd-4609-be69-b02aedc5c55c-20200107084115\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3772d042-92e2-4bcb-99b7-8a6a119cc088-20191231182808\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test37a6dd64-d44d-465e-85bc-3bc38be90350-20200104083535\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test381074d5-7156-472b-801a-b35f8fef4cc6-20200105050612\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3877a44d-4c48-40db-80eb-227272d5acd6-20200110103540\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test38ecd28e-7018-4672-840c-3044a5e7a6b5-20200111084208\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test395a0b49-442a-450c-8a1f-65b0aa3bcf47-20200105083839\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3971b300-edff-44a8-b61b-7f9b7460a8d6-20191003002234\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3adeec20-7458-4b3d-af26-0b6bc2aae3eb-20200103083751\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3b20dd96-f3e4-4798-998d-8c433c2449a7-20200108083635\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3ce2fd4a-8b5a-4c7e-b08d-3e48fc0f45e7-20200104083825\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3d499ca7-cc8d-41cc-a6dc-ffb1a4ac4942-20200107053004\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3db7240e-5e42-4d6d-b024-cc9fce3c828b-20200105083520\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3f6b7341-635f-48d5-a36d-be5dfe3002c4-20200105050937\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3fc26934-ede2-4482-ad5e-f66f6135d4a6-20191228055558\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test406d077c-6017-4062-bc96-f809147a2331-20200106050748\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test4302336c-e039-4e70-bcb6-9275f6089e4a-20200108144821\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test453a087e-8435-46db-970a-4ee633cc4c4a-20200102083458\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test46b73afa-2259-4aff-81e1-a58bf24b59aa-20191229033459\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test4a3399ee-82ea-46aa-9e3a-5434b588e3b6-20191228013518\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test4eb7a185-527b-4b9f-93a8-7f1cec9d062e-20191231151207\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test520a0915-f9f0-4da4-9fa1-1b74fc1470aa-20200102083505\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test5397960f-023b-4979-9a8b-800d049045a4-20191007195417\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test55a36387-8a3f-4159-9884-29b97539a253-20200109080443\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test5645f186-4ee5-4209-af37-423660e3318c-20191231175947\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test58b4461d-4d2d-4395-b6d2-ab83d4d8c62f-20200111001002\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test5b0bf447-d98d-429d-8334-c032d197c743-20191003203846\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test5bc90367-1ea2-400b-a40c-321081bae3f3-20200108145035\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test5bd0562f-e939-456f-a6ee-c848d1aba616-20200101151641\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test5e4efe90-916c-4c96-802c-1508a5b6da78-20191231151150\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test5f8f0c10-cc3c-45ec-a068-fb1c7edfa0d9-20200101145958\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test60a000b7-286c-4b2b-9137-bbc088736419-20200108144920\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test6192a01b-ba47-4d08-904a-71647a49a112-20191008041625\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test62835538-89c6-4f66-9034-f7a4b176c615-20191007234245\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test651e4ad2-ee4a-462e-a506-b56b1969f5d0-20200110230749\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test691d94e5-c40c-4568-94b0-09b08aea42b1-20200106050808\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test6aa3643c-011a-4180-877f-cad955a8e664-20191007234642\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test6cfb469b-8478-468f-9bb5-691affd32abb-20200107083803\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test6d36b6b2-7956-4e62-91c1-c33792fd4bb1-20200110123203\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test6e28168e-a9c8-4c0a-8b40-60c2a1502d43-20200108052802\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test6eb763ac-7fbe-4e44-bee7-aad035ee2a7d-20200110084429\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test6efec253-f625-46f0-9d74-324f69e963d8-20200107070514\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test70fa7e4c-3122-4ff7-aec6-fe75ab660a01-20200108105900\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test710a5fbf-06c7-46ac-b96d-a29d2586422f-20200108083639\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test71d72489-67c6-45e2-b1e6-a19546efc823-20200105112903\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test721fccf1-2b3e-44b6-908f-51b910e88b09-20200111104931\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test742d0189-9e41-4f1b-8ad3-31c05d34903b-20200111103247\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7836a97c-f56e-48d0-8b5d-61e79aeb3226-20200111071656\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test78666b2e-25c8-4a48-931a-3131a0317d73-20191002194352\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test79f13508-fcbd-47b9-988f-1c21ef5e7f2e-20191002015429\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test79fb90ce-4691-4212-99a7-6e4069bd5984-20191007234256\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7a8cf687-6a21-4181-ba98-902fee717bd3-20200104103216\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7aabf813-6644-483a-b9e0-ba6f8973ba1f-20191002232822\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7c96c10a-0c8f-4ab0-83fd-1ad66a362e33-20191229033458\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7e79b6ff-2559-44fe-b3ba-afaa68d63636-20200108112116\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7ea372f7-ea7e-4b9e-bbad-4f35c1567aa2-20200108052736\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7fac3d04-98a5-4fc4-904e-9ea3b86eadc2-20200106050751\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7fe20dd6-9ed9-4126-bb1d-031c01ac4550-20200101114504\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7ff974d9-c841-4249-b05b-bbf663cb4605-20200106084104\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test815bd4d5-fc24-4a47-be20-063c4809902c-20200109050508\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test817654d0-2109-4d95-9284-8c8a9d960d08-20200108053758\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test821ca3b6-dd05-4e80-b3d8-74ba03b2609b-20191231151151\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test8285dc3e-637d-4d46-9695-adc39cbe7d2f-20200108144457\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test828aae03-9239-4938-a303-c23c42311878-20200102083419\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test84afd814-5098-49ab-af99-e50350b5898b-20200110211134\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test85b08563-b15f-4202-a0bc-f2bc2df2c71a-20200107053335\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test88aac268-c087-4481-b78e-99b920784a33-20200101084853\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test88dbd442-a8cc-4874-81a0-d3192c61df62-20191001224544\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test894dfb75-a00f-4f0c-894c-cae1c9846ad3-20200105051803\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test8d09bf4d-ee63-4ab1-a986-a4b802418403-20200111051447\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test8d4d652b-4f05-4e99-93dd-78b9a36b5c78-20191003203755\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test8de64739-43d8-4f84-af65-fdb3d0885288-20200108053543\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test8e324c65-a51d-4eeb-9ec8-d5f8662dc041-20191228165107\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test8e564580-8e53-4300-85f1-bf7f31dd37ff-20200107013348\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test8f458ca7-8898-4d58-b93d-bfb0c3da028c-20200109050310\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test901cd6ca-5565-4552-a3de-d204d01935c0-20200108083706\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test907b39e5-4008-4b55-93a0-18e9697b9cf3-20200108053817\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test90c2be7c-d7ec-4abf-9fad-fef90fc3ef4d-20191004022234\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test922db678-6ee8-43d5-86ff-6a86e132d332-20200107085231\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test93b88aec-5277-4b1b-910c-7008e972ce91-20200107013304\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test95a9104b-6cba-42d8-82ff-cc37e5ac44db-20200108081723\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test96da1605-19e0-46eb-9ce0-53e840f5e2cb-20200101111729\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test996066b2-7d29-400f-929b-e343a21046f7-20191231151212\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test99663fff-ed21-4a91-9687-1a6da2abb033-20200106084508\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test9eb5efa5-c3c1-4c13-80a6-11f5eba67372-20200108144852\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testa3791896-b1fc-491e-ba0d-aefcd8d9e52a-20200105083503\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testa37ff709-a078-45a0-8187-41733df8e101-20200109050003\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testa4c5fe4e-936e-4be1-a612-a331aff54a8c-20200111105055\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testa59bce1d-e32c-423d-a86e-945d4aeb98b4-20200107051821\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testa604c059-8279-4f4d-a354-eec27222a06c-20200111051514\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testa71fefb1-0d9c-4fb3-8d3d-5dcd12d72b77-20200103103221\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testa748013d-c5a6-44f9-88eb-43167207c742-20200111051402\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testaab67022-4f2b-420d-a06a-2c4045110cdf-20191229033144\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testacab9541-280f-4491-9f49-ac57653f0a07-20200105083839\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testad298437-0349-4cc7-88a9-d8aabcba9df1-20191002233431\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testadd68286-f9e0-4ab1-a526-d8f3cf0f054e-20200105084128\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testade4c52b-18f5-4b67-8e93-945358ce4f7d-20191007234259\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testae421c1d-0211-4ef2-b372-564ce8ad484a-20200110104035\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testafbbd8bf-aec5-48bf-8fea-73fa15ccc315-20191001224727\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testb15148bf-78d2-42d4-ad08-b3ad8fb4b122-20200101084759\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testb4237708-3688-40ea-85a2-275c05f4d100-20191228083519\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testb799a18f-be45-4c5c-8438-163ac2e1f1e7-20191004190529\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testb7cee88a-e5ac-4af4-99c8-7247020b00c3-20200105051201\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testb7df0d9a-27c0-4ca5-b692-08dd90387b98-20200111083443\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testbbf6bf32-4bd0-4381-b8f7-2658f585df4d-20191003203846\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testbeea1376-166a-4b1a-8923-c907cc9737d9-20200107013336\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testbf9154e9-6166-48c2-86fe-1f331be606d7-20200107051823\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc0d7c3c5-23b8-489c-a5e0-ae87c681b696-20200101083539\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc193f31a-5186-4e93-84f6-0e4ab87b73c1-20200107052937\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc1c7e8dc-fa8c-47d9-8305-de6d1451b939-20200101085248\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc1d0c917-e2ae-430c-a2ca-383fb0fda046-20191007235839\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc23a3fbb-6e95-4c0d-94fc-c8ab14dddf1c-20191231151117\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc2697630-6247-411a-94b3-c2974ad8cbee-20191007195417\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc466b80f-670f-4383-89b8-44e0d509fa20-20191002000516\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc5c8d9bd-75fa-4db3-9f34-5d7b7098584c-20191003203851\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc8b6d14b-a5db-48e0-bfad-a2818d432bea-20200104083443\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc933efa8-c553-4b93-884f-b7221d9ca789-20191228083750\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testcbe8ab80-46ef-49b1-a7bb-4e3d6e50e49f-20200104050811\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testccc0b5e6-9b0d-451a-8ac4-6f4af293b913-20200106092645\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testcec64786-04b1-487c-80ec-050da646fb1c-20191005123412\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testd104a52f-eba2-401d-8e7f-a841c90f7712-20191228083553\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testd724cea4-0d3c-4539-b2ff-be08fb23a67e-20200107083714\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testd8e60bac-27ff-4fba-90b8-732c9c5ff91c-20191228083751\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testd99db4a5-7683-4584-89ad-fefd711de284-20191004190210\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testd9b4309a-67bc-4cd8-ac47-094cb20ca6aa-20200101090202\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testda3320e0-28f2-4146-a002-e06296362711-20191004190115\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testda714121-3240-4253-90c3-48c43f115c90-20200102083419\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testdb357558-60b4-4ee3-9ec3-ba22c5d827fb-20191004020617\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testdc7230e9-df6d-4edd-a57c-ef7e0432c463-20191002011345\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testdccb59de-436f-4935-bed6-2e677dcaf36a-20200109111802\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testde985b23-9333-4f6e-a5e8-82025a38b2af-20200102083510\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Teste271da3e-cbcb-4ee7-8770-f297f414451f-20191003015540\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Teste4070edd-aec0-455d-8a79-aecdb7170b6d-20191007234642\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Teste42f351a-4da0-4f0d-93e9-ef1d98e06659-20200108083633\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Teste66ca23c-f4bf-4eb3-8418-139364d19e7d-20200107062643\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Teste78b1ab2-1380-48ab-9923-0276cdb7198b-20191001224742\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Teste8607e14-b4f8-472a-bd5b-893b8d9612e6-20200112045941\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Teste980b80e-3add-42c0-bc98-a84020b2d128-20200108101640\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Tested79dba9-2d38-4ea9-a01c-56e94b30ca7a-20191007195447\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testee9dcf5f-f7c4-4192-a8f4-28e9bc7d0f7c-20191001225005\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testefbb340a-b68b-4200-872b-d05e7d29f92d-20191007195432\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testf1fc0559-6740-48dd-9501-2b933c731d52-20200103083458\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testf41dfc97-bb51-4fba-86ca-a6f2695c415a-20200107050834\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testf5784447-83ed-4c00-8764-ea0f932aafa2-20200106085748\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testf6128ef6-c13c-420e-8088-0710888ce88b-20200109050003\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testf863ab2c-ada9-4646-84c7-1f83a82375d7-20191229033226\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testfac552a7-418f-4baa-8f51-d199ceff5c68-20200103050817\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testfb7be054-5c15-494f-822c-b64f9a36e2f3-20200105051753\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testfc5c7585-6c9a-4aa4-a7c4-1223a94e00c7-20200104083552\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.FileServer.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.FileServer.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Geneva\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Geneva\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.KeyVault\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.KeyVault\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.KeyVault.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.KeyVault.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.LabServices\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.LabServices\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.LabServices.test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.LabServices.test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.Agent\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.Agent\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.Dev\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.Dev\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.Dev.INT\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.Dev.INT\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.Dev.SCALE\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.Dev.SCALE\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.Dev.TEST\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.Dev.TEST\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.GuestHealth\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.GuestHealth\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.DEV\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.DEV\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.INT\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.INT\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.SCALE\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.SCALE\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.TEST\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.TEST\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.INT.Dev\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.INT.Dev\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.SCALE.Dev\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.SCALE.Dev\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.TEST.Dev\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.TEST.Dev\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.WorkloadInsights.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.WorkloadInsights.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.WorkloadInsightsTest.newnamespace\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.WorkloadInsightsTest.newnamespace\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.Workloads\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.Workloads\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.Workloads.Dev\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.Workloads.Dev\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitoring.DependencyAgent\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitoring.DependencyAgent\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitoring.DependencyAgent.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitoring.DependencyAgent.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Networking.DNS\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Networking.DNS\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Networking.SDN\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Networking.SDN\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.NetworkWatcher\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.NetworkWatcher\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.NetworkWatcher.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.NetworkWatcher.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.OpenSSH\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.OpenSSH\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Performance.Diagnostics\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Performance.Diagnostics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Performance.Diagnostics.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Performance.Diagnostics.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.RecoveryServices\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.RecoveryServices.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices.SiteRecovery\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.RecoveryServices.SiteRecovery\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices.SiteRecovery2\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.RecoveryServices.SiteRecovery2\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices.WorkloadBackup\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.RecoveryServices.WorkloadBackup\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices.WorkloadBackup.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.RecoveryServices.WorkloadBackup.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.AntimalwareSignature\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.AntimalwareSignature\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.AntimalwareSignature.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.AntimalwareSignature.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.Dsms\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.Dsms\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.Dsms.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.Dsms.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.LinuxAttestation\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.LinuxAttestation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.LinuxTestAttestation\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.LinuxTestAttestation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.Monitoring\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.Monitoring\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.Monitoring.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.Monitoring.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.Monitoring.Testing\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.Monitoring.Testing\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.TestWindowsAttestation\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.TestWindowsAttestation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.WindowsAttestation\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.WindowsAttestation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.WinTestAttestation\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.WinTestAttestation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Sentinel.DnsExtension.Dev\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Sentinel.DnsExtension.Dev\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.ServiceFabric.MC\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.ServiceFabric.MC\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.ServiceFabric.MC.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.ServiceFabric.MC.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.SiteRecovery.Stage\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.SiteRecovery.Stage\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.SiteRecovery.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.SiteRecovery.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.SiteRecovery2.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.SiteRecovery2.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Test.Identity\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Test.Identity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WindowsFabric.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WindowsFabric.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.ReleasePipeTest\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.ReleasePipeTest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.ReleasePipeTest.INT\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.ReleasePipeTest.INT\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.ReleasePipeTest.TEST\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.ReleasePipeTest.TEST\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test1\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test2\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test2\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test3\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test3\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test4\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test4\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test5\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test5\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test5.INT\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test5.INT\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test5.TEST\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test5.TEST\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.VincentTest\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.VincentTest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.VincentTest2\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.VincentTest2\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.VincentTest3\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.VincentTest3\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.VincentTest4\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.VincentTest4\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.TestTest\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.TestTest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.TestTest.INT\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.TestTest.INT\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.TestTest.TEST\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.TestTest.TEST\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Windows.ReleasePipeTest.INT\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Windows.ReleasePipeTest.INT\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Windows.ReleasePipeTest.TEST\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Windows.ReleasePipeTest.TEST\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoring\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoring.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoringTest\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoringTest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureData\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureData\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureData.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureData.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.Canary\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights.Canary\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.Corp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights.Corp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.Linux.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights.Linux.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.LinuxTest\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights.LinuxTest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.Meya0206\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights.Meya0206\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.MeyaCorp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights.MeyaCorp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.Testing\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights.Testing\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureSecurity.JITAccess\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureSecurity.JITAccess\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.CloudBackup.Workload.Extension\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.CloudBackup.Workload.Extension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.CloudBackup.Workload.Extension.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.CloudBackup.Workload.Extension.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Compute\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Compute.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Compute.TestSar\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute.TestSar\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.CPlat.Core\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.CPlat.Core\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.CPlat.Core.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.CPlat.Core.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Dcsswe.Extensions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Dcsswe.Extensions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.EnterpriseCloud.Monitoring\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.EnterpriseCloud.Monitoring.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.EnterpriseCloud.Monitoring.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Golive.Extensions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Golive.Extensions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.GuestConfig.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.GuestConfig.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.GuestConfiguration\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.GuestConfiguration\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.GuestConfiguration.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.GuestConfiguration.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.GuestConfiguration.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.GuestConfiguration.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.HpcCompute\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.HpcCompute\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.HpcCompute.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.HpcCompute.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.HpcPack\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.HpcPack\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Interceptor\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Interceptor\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.M365\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.M365\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.M365SecurityConfiguration.Kevlar.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.M365SecurityConfiguration.Kevlar.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.ManagedIdentity\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.ManagedIdentity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.ManagedServices\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.ManagedServices\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.ManagedServices.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.ManagedServices.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.MonitoringAgent.Extension\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.MonitoringAgent.Extension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Network\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Network\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.OSTCExtensions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.OSTCExtensions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.OSTCExtensions.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.OSTCExtensions.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.OSTCExtensions.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.OSTCExtensions.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.OSTCExtensions.Testing\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.OSTCExtensions.Testing\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Powershell\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Powershell\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Powershell.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Powershell.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Powershell.Test01\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Powershell.Test01\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.SecurityManagement.Kevlar\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.SecurityManagement.Kevlar\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Sentinel.AzureMonitorAgentExtensions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Sentinel.AzureMonitorAgentExtensions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.SoftwareUpdateManagement\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.SoftwareUpdateManagement\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.SoftwareUpdateManagement.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.SoftwareUpdateManagement.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.SqlServer.Managability.IaaS.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.SqlServer.Managability.IaaS.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.SqlServer.Management\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.SqlServer.Management\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.SqlServer.Management.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.SqlServer.Management.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.SystemCenter\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.SystemCenter\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.SystemCenter.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.SystemCenter.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Test.Azure.Workloads\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Test.Azure.Workloads\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.TestSqlServer.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.TestSqlServer.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.ETWTraceListenerService\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.Azure.ETWTraceListenerService\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.RemoteDebug\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.Azure.RemoteDebug\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.RemoteDebug.Json\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.Azure.RemoteDebug.Json\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.ServiceProfiler\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.ServiceProfiler\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.Services\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.Services\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.WindowsAzure.DevTest\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.WindowsAzure.DevTest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.WindowsAzure.DevTest.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.WindowsAzure.DevTest.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.WindowsAzure.RemoteDebug\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.WindowsAzure.RemoteDebug\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.WindowsAzure.Test.RemoteDebug\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.WindowsAzure.Test.RemoteDebug\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Windows.Azure.Extensions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Windows.Azure.Extensions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Windows.AzureRemoteApp.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Windows.AzureRemoteApp.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Windows.RemoteDesktop\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Windows.RemoteDesktop\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.WindowsAdminCenter\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.WindowsAdminCenter\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.WindowsAdminCenter.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.WindowsAdminCenter.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.WindowsAzure.Compute\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.WindowsAzure.Compute\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.WindowsAzure.Compute.test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.WindowsAzure.Compute.test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.WVD\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.WVD\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoftagciuk\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoftagciuk\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoftazurecituswarp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoftazurecituswarp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftAzureSiteRecovery\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftAzureSiteRecovery\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftBizTalkServer\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftBizTalkServer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftCBLMariner\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftCBLMariner\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoftcmotest\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoftcmotest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoftcorporation1602274591143\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoftcorporation1602274591143\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoftcorporation1620407702632\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoftcorporation1620407702632\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftDynamicsAX\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftDynamicsAX\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftDynamicsGP\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftDynamicsGP\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftDynamicsNAV\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftDynamicsNAV\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoftfarmbeats\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoftfarmbeats\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftHybridCloudStorage\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftHybridCloudStorage\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftOSTC\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftOSTC\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftPowerBI\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftPowerBI\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftRServer\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftRServer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftSharePoint\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftSharePoint\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftSQLServer\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftSQLServer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftTestLinuxPPS\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftTestLinuxPPS\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftVisualStudio\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftVisualStudio\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftWindowsDesktop\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsDesktop\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftWindowsServer\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsServer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftWindowsServerHPCPack\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsServerHPCPack\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft_iot_edge\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft_iot_edge\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft_javaeeonazure_test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft_javaeeonazure_test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microstrategy\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microstrategy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"midasolutions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/midasolutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"middleware\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/middleware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"midfin\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/midfin\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"midvision\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/midvision\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mihupcommunicationspvtltd1599046998010\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mihupcommunicationspvtltd1599046998010\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mindcti\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mindcti\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"minio\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/minio\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"miraclelinux\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/miraclelinux\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"miracl_linux\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/miracl_linux\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"miri-infotech-pvt-ltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/miri-infotech-pvt-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mistio1601460379393\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mistio1601460379393\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mobilab\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mobilab\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"modern-systems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/modern-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"modexblockchaindatabase\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/modexblockchaindatabase\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"monetdbsolutions1611751313758\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/monetdbsolutions1611751313758\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"monitorapp1579029852605\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/monitorapp1579029852605\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"monitorcomputersystemsltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/monitorcomputersystemsltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"moogsoft\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/moogsoft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"morpheus-data\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/morpheus-data\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"moviemasher\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/moviemasher\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mriisoftllc1579457820427\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mriisoftllc1579457820427\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"msopentech\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/msopentech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mtnfog\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mtnfog\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"multima1643619641681\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/multima1643619641681\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"multisoft-ab\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/multisoft-ab\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mvp-systems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mvp-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mwg_azure\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mwg_azure\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mxhero\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mxhero\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"my-com\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/my-com\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"myarchinc1614657280935\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/myarchinc1614657280935\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"narrativescience\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/narrativescience\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nasuni\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nasuni\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nasunicorporation\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nasunicorporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"navicloudrsoftwarepteltd1601967280369\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/navicloudrsoftwarepteltd1601967280369\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ncache\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ncache\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ncbi\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ncbi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ncomputingglobalinc1604353053068\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ncomputingglobalinc1604353053068\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ndl\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ndl\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ndstriyelotomasyonsistemlerisanvetica1623147454601\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ndstriyelotomasyonsistemlerisanvetica1623147454601\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nebbiolo-technologies-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nebbiolo-technologies-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nec-technologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nec-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nefelinetworks1591201080882\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nefelinetworks1591201080882\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"neo4j\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/neo4j\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"neos\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/neos\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"neowaybusinesssolutions-4956350\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/neowaybusinesssolutions-4956350\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netapp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netapp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netatwork\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netatwork\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netfoundryinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netfoundryinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netgate\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netgate\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netikus-net-ltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netikus-net-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netiq\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netiq\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netka\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netka\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netmail\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netmail\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netscout\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netscout\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netspi\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netspi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netsweeper\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netsweeper\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"networksexchangetechnologyltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/networksexchangetechnologyltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netwrix\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netwrix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netx\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netx\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"neusoft-neteye\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/neusoft-neteye\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"newegginc1646343565758\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/newegginc1646343565758\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"newnetcommunicationtechnologies1589991852134\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/newnetcommunicationtechnologies1589991852134\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"NewRelic.Infrastructure.Extensions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/NewRelic.Infrastructure.Extensions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"newtglobalconsultingllc1581492268566\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/newtglobalconsultingllc1581492268566\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nextronic-5290868\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nextronic-5290868\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nginxinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nginxinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nice-it-management-solutions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nice-it-management-solutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nicepeopleatwork\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nicepeopleatwork\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nilespartnersinc1617691698386\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nilespartnersinc1617691698386\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"niolabs-5229713\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/niolabs-5229713\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nirvatosoftwarepvtltd1601368706606\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nirvatosoftwarepvtltd1601368706606\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nodejsapi\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nodejsapi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"noianetworklimited1584098036197\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/noianetworklimited1584098036197\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nokiaofamericacorporation1591716055441\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nokiaofamericacorporation1591716055441\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"noobaa\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/noobaa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"norcominformationtechnologygmbhcokgaa\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/norcominformationtechnologygmbhcokgaa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"noricumcloudsolutions1600524477681\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/noricumcloudsolutions1600524477681\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"norsync\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/norsync\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"northbridge-secure\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/northbridge-secure\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nozominetworks1582208017986\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nozominetworks1582208017986\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nri\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nri\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ntegralinc1586961136942\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ntegralinc1586961136942\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ntt-data-intellilink-corporation\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ntt-data-intellilink-corporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nttdata\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nttdata\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nttltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nttltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nuco-networks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nuco-networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"numbersbelieve\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/numbersbelieve\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"numtrallcpublisher\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/numtrallcpublisher\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nuxeo\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nuxeo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nvidia\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nvidia\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"o2mc-real-time-data-platform\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/o2mc-real-time-data-platform\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"objectivity-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/objectivity-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"objectivity1595351622261\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/objectivity1595351622261\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"oceanblue-cloud\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/oceanblue-cloud\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"OctopusDeploy.Tentacle\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/OctopusDeploy.Tentacle\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"odix\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/odix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"odysseuscomputationalsolutions1630242118741\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/odysseuscomputationalsolutions1630242118741\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"odysseyconsultantsltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/odysseyconsultantsltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"officeatwork-ag\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/officeatwork-ag\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"omega-software\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/omega-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"onapsis\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/onapsis\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"oncore_cloud_services-4944214\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/oncore_cloud_services-4944214\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"onexgroup\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/onexgroup\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"onspecta\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/onspecta\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ontology\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ontology\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"onyx-point-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/onyx-point-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"op5\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/op5\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"open-connect-systems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/open-connect-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"opencell\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/opencell\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"openlinkswcom-pago\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/openlinkswcom-pago\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"OpenLogic\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/OpenLogic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"openrefactoryinc1620140917523\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/openrefactoryinc1620140917523\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"openshotstudiosllc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/openshotstudiosllc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"opentext\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/opentext\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"openvpn\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/openvpn\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"opslogix\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/opslogix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"opswatinc1619007967290\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/opswatinc1619007967290\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"optimitiveslu1618320281443\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/optimitiveslu1618320281443\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"option3\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/option3\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Oracle\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Oracle\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"oraylis\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/oraylis\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"oraylisbi\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/oraylisbi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"orbs-network\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/orbs-network\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"oriana\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/oriana\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"orientdb\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/orientdb\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"oroinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/oroinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"osirium-ltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/osirium-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"osisoft\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/osisoft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"osnexus\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/osnexus\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"outpost24\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/outpost24\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"outsystems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/outsystems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ovaledge1618392232783\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ovaledge1618392232783\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pachyderminc1585170006545\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pachyderminc1585170006545\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pacteratechnologiesinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pacteratechnologiesinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"paladionnetworkspvtltd1606120508449\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/paladionnetworkspvtltd1606120508449\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"paloaltonetworks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/paloaltonetworks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"panopta\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/panopta\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"panorama-necto\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/panorama-necto\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"panzura-file-system\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/panzura-file-system\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"parabole\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/parabole\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"paralaxiomtechnologiesprivatelimited1596433357886\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/paralaxiomtechnologiesprivatelimited1596433357886\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"parallels\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/parallels\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"parasoft\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/parasoft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"parkersoftwarelimited1609786657569\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/parkersoftwarelimited1609786657569\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"parsec-for-teams\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/parsec-for-teams\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pasifikciptamandiri\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pasifikciptamandiri\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"passlogy\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/passlogy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"paxata\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/paxata\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pcman\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pcman\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"peer-software-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/peer-software-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"penta-security-systems-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/penta-security-systems-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"percona\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/percona\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"perforce\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/perforce\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"periscope-tech-4791746\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/periscope-tech-4791746\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"piolinkinc1582849368309\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/piolinkinc1582849368309\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pivotal\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pivotal\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pixitmedia1591611150480\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pixitmedia1591611150480\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"plesk\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/plesk\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pmsoftwareinternational1603102514882\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pmsoftwareinternational1603102514882\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pnop\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pnop\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"polarityioinc1628691850891\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/polarityioinc1628691850891\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"portalarchitects\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/portalarchitects\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"portsysinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/portsysinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"postgres-pro\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/postgres-pro\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"powerbireach\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/powerbireach\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"prakshepprivatelimited1619949827900\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/prakshepprivatelimited1619949827900\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"prasselsrl1645470739547\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/prasselsrl1645470739547\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"prestashop\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/prestashop\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"prestige_informatique-1090178\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/prestige_informatique-1090178\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"prime-strategy\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/prime-strategy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"primekey\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/primekey\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"primestrategynewyorkinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/primestrategynewyorkinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pro-vision\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pro-vision\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"probityinc1581611299345\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/probityinc1581611299345\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"process-one\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/process-one\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"processgold\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/processgold\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"procomputers\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/procomputers\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"procomputerssrl1594239153814\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/procomputerssrl1594239153814\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"profecia\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/profecia\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Profiler.AgentOrchestrationRefactor.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Profiler.AgentOrchestrationRefactor.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Profiler.Master.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Profiler.Master.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"profisee\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/profisee\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"progelspa\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/progelspa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"progresssoftwarecorporation\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/progresssoftwarecorporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"proliongmbh1628175060372\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/proliongmbh1628175060372\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"protegrityusainc1627404648458\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/protegrityusainc1627404648458\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"protiviti\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/protiviti\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"proventeq\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/proventeq\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ptc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ptc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ptsecurity\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ptsecurity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pulse-secure\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pulse-secure\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pulsesecuretechnologies1638179500151\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pulsesecuretechnologies1638179500151\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"puppet\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/puppet\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"puppeteersoy1601024480557\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/puppeteersoy1601024480557\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"PuppetLabs\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/PuppetLabs\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"PuppetLabs.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/PuppetLabs.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"purestorageinc1578960262525\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/purestorageinc1578960262525\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pydio\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pydio\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pyramidanalytics\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pyramidanalytics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"qlik\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/qlik\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"qnapsystemsinc1601352084032\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/qnapsystemsinc1601352084032\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"qore-technologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/qore-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"qs-solutions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/qs-solutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Qualys\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Qualys\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Qualys.LinuxAgent.GrayLabel\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Qualys.LinuxAgent.GrayLabel\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Qualys.WindowsAgent.GrayLabel\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Qualys.WindowsAgent.GrayLabel\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"qualysguard\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/qualysguard\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"quasardb\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/quasardb\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"qubole-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/qubole-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"quest\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/quest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"racknap\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/racknap\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rackwareinc1619403669255\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rackwareinc1619403669255\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"radiant-logic\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/radiant-logic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"radware\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/radware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"raincode\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/raincode\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rancher\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rancher\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rapid7\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rapid7\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Rapid7.InsightPlatform\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Rapid7.InsightPlatform\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rapidminer\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rapidminer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"raynetgmbh\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/raynetgmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"readymind\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/readymind\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"realm\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/realm\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"reblaze\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/reblaze\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"RedHat\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/RedHat\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"redhat-rhel\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/redhat-rhel\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"redpoint-global\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/redpoint-global\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"refactr\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/refactr\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"refinitiv\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/refinitiv\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"refinitiv-4807503\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/refinitiv-4807503\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"relevance-lab\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/relevance-lab\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"remotelearner\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/remotelearner\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"res\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/res\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"resco\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/resco\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"researchgraphptyltd1598252602128\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/researchgraphptyltd1598252602128\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"resemblesystems1582780358300\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/resemblesystems1582780358300\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"responder-corp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/responder-corp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"revolution-analytics\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/revolution-analytics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rhcsolutions1586957910818\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rhcsolutions1586957910818\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ribboncommunications\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ribboncommunications\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"RightScaleLinux\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/RightScaleLinux\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"RightScaleWindowsServer\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/RightScaleWindowsServer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rimo3\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rimo3\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ringsoftwareresearchanddevelopmentinc1578946072257\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ringsoftwareresearchanddevelopmentinc1578946072257\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"riverbed\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/riverbed\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"RiverbedTechnology\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/RiverbedTechnology\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rmgtechnologiesinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rmgtechnologiesinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rocketml\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rocketml\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rocketsoftware\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rocketsoftware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rohdeschwarzcybersecuritygmbh\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rohdeschwarzcybersecuritygmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rohdeschwarzcybersecuritysas\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rohdeschwarzcybersecuritysas\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"roktech\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/roktech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rsa-security-llc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rsa-security-llc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rsk-labs\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rsk-labs\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rstudio-5237862\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rstudio-5237862\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rtts\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rtts\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rubrik-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rubrik-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"runecastsolutionslimited1614186396822\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/runecastsolutionslimited1614186396822\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"s2ix\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/s2ix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"saama\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/saama\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"saasame-limited\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/saasame-limited\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"safesoftwareinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/safesoftwareinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"safeticatechnologiessro\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/safeticatechnologiessro\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"safetica_technologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/safetica_technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"safetoopen1585013318137\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/safetoopen1585013318137\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"saltsecurity1583264186232\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/saltsecurity1583264186232\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"saltsecurity1583264669848\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/saltsecurity1583264669848\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"saltstack\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/saltstack\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"samsung-sds\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/samsung-sds\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"samsungelectronics1632860607983\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/samsungelectronics1632860607983\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"samsungsds-cello\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/samsungsds-cello\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"samsungsds_sdbe\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/samsungsds_sdbe\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sandhatatechnologieslimited1615753438737\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sandhatatechnologieslimited1615753438737\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sap\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sap\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sapphiretechnologieslimited1611758579346\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sapphiretechnologieslimited1611758579346\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sas-institute-560503\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sas-institute-560503\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"scaidata\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/scaidata\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"scalearc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/scalearc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"scalegrid\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/scalegrid\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"scality\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/scality\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"schrockeninc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/schrockeninc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sci\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sci\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sciencelogicinc1622565452194\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sciencelogicinc1622565452194\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"scientiamobile\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/scientiamobile\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"scontainug1595751515785\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/scontainug1595751515785\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"scubaanalytics\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/scubaanalytics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"scylladb1631195365807\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/scylladb1631195365807\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"seaqserviciossas1579029207572\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/seaqserviciossas1579029207572\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"searchbloxsoftwareinc1594309037050\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/searchbloxsoftwareinc1594309037050\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"secureworks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/secureworks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"securityonionsolutions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/securityonionsolutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"securityonionsolutionsllc1624649205155\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/securityonionsolutionsllc1624649205155\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"securosis\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/securosis\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"seequentltd1585781751395\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/seequentltd1585781751395\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"semarchy\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/semarchy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"semperis\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/semperis\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"senhasegura\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/senhasegura\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"SentinelOne.LinuxExtension\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/SentinelOne.LinuxExtension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"SentinelOne.LinuxExtension.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/SentinelOne.LinuxExtension.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"SentinelOne.WindowsExtension\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/SentinelOne.WindowsExtension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"SentinelOne.WindowsExtension.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/SentinelOne.WindowsExtension.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sentriumsl\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sentriumsl\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sentry51llc1616686725591\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sentry51llc1616686725591\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sentryone\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sentryone\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sepiosystems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sepiosystems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"seppmailag\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/seppmailag\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"seraumo1620002807288\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/seraumo1620002807288\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"service-control-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/service-control-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sesamesoftwareinc1622125191447\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sesamesoftwareinc1622125191447\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"shadow-soft\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/shadow-soft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"shareshiftneeraj.test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/shareshiftneeraj.test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sightapps\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sightapps\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"signal-sciences\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/signal-sciences\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"silk\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/silk\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"silver-peak-systems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/silver-peak-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"simmachinesinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/simmachinesinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"simontelephonics\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/simontelephonics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"simpledatalabsinc1635791235920\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/simpledatalabsinc1635791235920\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"simplifierag\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/simplifierag\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"simpligov\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/simpligov\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sinefa\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sinefa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sinequa\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sinequa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sinequa1588262295885\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sinequa1588262295885\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"singapore-telecommunications-limited\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/singapore-telecommunications-limited\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sios_datakeeper\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sios_datakeeper\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"siportalinc1581539156321\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/siportalinc1581539156321\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sisenseltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sisenseltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Site24x7\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Site24x7\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sktelecom\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sktelecom\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"skyarc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/skyarc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"skyboxsecurity1585187406404\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/skyboxsecurity1585187406404\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"skylarkcloud\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/skylarkcloud\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"smartbearsoftware\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/smartbearsoftware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"smartmessage-autoflow\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/smartmessage-autoflow\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"snaplogic\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/snaplogic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"snapt-adc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/snapt-adc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"snips\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/snips\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"soasta\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/soasta\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"softnas\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/softnas\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"softwarecentralas1642687699196\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/softwarecentralas1642687699196\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"softwarehut\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/softwarehut\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"softwebsolutions-4518310\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/softwebsolutions-4518310\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"soha\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/soha\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"solanolabs\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/solanolabs\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"solar-security\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/solar-security\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"solarwinds\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/solarwinds\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"solvedevops1643693563360\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/solvedevops1643693563360\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sonicwall-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sonicwall-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sophos\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sophos\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sourcegearllc1616101262784\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sourcegearllc1616101262784\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"south-river-technologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/south-river-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"southrivertech1586314123192\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/southrivertech1586314123192\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"spacecurve\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/spacecurve\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"spaceliftinc1625499025476\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/spaceliftinc1625499025476\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"spagobi\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/spagobi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sparklinglogic\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sparklinglogic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"spectralcorelimited1619779004178\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/spectralcorelimited1619779004178\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"spektra\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/spektra\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sphere3d\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sphere3d\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"spideroakinc1588278690933\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/spideroakinc1588278690933\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"spirentcommunications1594084187199\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/spirentcommunications1594084187199\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"splunk\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/splunk\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sproutenetworks1593456311717\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sproutenetworks1593456311717\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sqlstream\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sqlstream\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"squadratechnologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/squadratechnologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"squaredup\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/squaredup\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"src-solution\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/src-solution\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ssh2appsltd1621588462715\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ssh2appsltd1621588462715\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stackato-platform-as-a-service\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stackato-platform-as-a-service\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Stackify.LinuxAgent.Extension\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Stackify.LinuxAgent.Extension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stackstorm\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stackstorm\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"startekfingerprintmatch\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/startekfingerprintmatch\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"startisolucoesemtecnologialtda1635263523201\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/startisolucoesemtecnologialtda1635263523201\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"starwind\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/starwind\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"StatusMonitor2.Diagnostics.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/StatusMonitor2.Diagnostics.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"StatusReport.Diagnostics.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/StatusReport.Diagnostics.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stealthbits\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stealthbits\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"steelhive\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/steelhive\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stonebondtechnologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stonebondtechnologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stonefly\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stonefly\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"storage_made_easy\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/storage_made_easy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stormshield\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stormshield\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"storone1594045543980\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/storone1594045543980\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"storreduce\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/storreduce\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"storwarespzoo1611743234900\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/storwarespzoo1611743234900\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"strangebee1595948424730\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/strangebee1595948424730\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"strataidentity1608323708170\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/strataidentity1608323708170\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stratis-group-ltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stratis-group-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stratodesk1611152769936\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stratodesk1611152769936\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stratumn\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stratumn\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"streamsets\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/streamsets\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"striim\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/striim\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stromasys\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stromasys\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"strongboxitllc1594816423884\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/strongboxitllc1594816423884\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"su\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/su\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"subscription.test.krsh\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/subscription.test.krsh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sumologic\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sumologic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sunatogmbh\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sunatogmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sunday\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sunday\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"SUSE\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/SUSE\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"swoopanalytics\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/swoopanalytics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sycom-technologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sycom-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sycompatechnologycompanyinc1588192103892\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sycompatechnologycompanyinc1588192103892\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.CloudWorkloadProtection\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.CloudWorkloadProtection\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.CloudWorkloadProtection.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.CloudWorkloadProtection.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.CloudWorkloadProtection.TestOnStage\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.CloudWorkloadProtection.TestOnStage\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.QA\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.QA\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.staging\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.staging\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.test.ru2.latest\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.test.ru2.latest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.test.ru2final\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.test.ru2final\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.test.ru2latest1\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.test.ru2latest1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.test.ru4mp1\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.test.ru4mp1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.test.ru4mp1.latest\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.test.ru4mp1.latest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.test.ru4mp1final\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.test.ru4mp1final\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"symanteccorporation\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/symanteccorporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"symantectest1\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/symantectest1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"synack-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/synack-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"syncfusion\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/syncfusion\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"syncfusionbigdataplatfor\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/syncfusionbigdataplatfor\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"synechron-technologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/synechron-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"synergixinc1585256339250\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/synergixinc1585256339250\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"synnexcorp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/synnexcorp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"syscomcomputerengineeringco1583913200141\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/syscomcomputerengineeringco1583913200141\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"syte\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/syte\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tableau\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tableau\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tactic\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tactic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"talari-networks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/talari-networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"talena-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/talena-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"talend\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/talend\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"talon\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/talon\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tamrinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tamrinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"taniuminc1646329360287\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/taniuminc1646329360287\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"targit\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/targit\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tata_communications\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tata_communications\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tavanttechnologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tavanttechnologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tavendo\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tavendo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"te-systems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/te-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"techdivision\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/techdivision\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"techlatest\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/techlatest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"technicheltd1606969724100\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/technicheltd1606969724100\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tecknolab\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tecknolab\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"telepat\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/telepat\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"teloscorporation\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/teloscorporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tempered-networks-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tempered-networks-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tenable\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tenable\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tensormakecorpdbaoneclickai1608247756082\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tensormakecorpdbaoneclickai1608247756082\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tenthlineinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tenthlineinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"teradata\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/teradata\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Teradici\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Teradici\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"teramindinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/teramindinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.Gemalto.SafeNet.ProtectV\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.Gemalto.SafeNet.ProtectV\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.Gemalto.SafeNet.ProtectV.Azure\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.Gemalto.SafeNet.ProtectV.Azure\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.HP.AppDefender\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.HP.AppDefender\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.Microsoft.VisualStudio.Services\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.Microsoft.VisualStudio.Services\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.NJHP.AppDefender\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.NJHP.AppDefender\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.SqlServer.Managability\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.SqlServer.Managability\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.SqlServer.Management\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.SqlServer.Management\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.SqlServer.Management.corext\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.SqlServer.Management.corext\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test1.NJHP.AppDefender\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test1.NJHP.AppDefender\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test3.Microsoft.VisualStudio.Services\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test3.Microsoft.VisualStudio.Services\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"testable1603721901088\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/testable1603721901088\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"testpro\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/testpro\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"test_test_mix3pptest0011614206850774\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/test_test_mix3pptest0011614206850774\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"test_test_mneela1628617140187\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/test_test_mneela1628617140187\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"test_test_pmc2pc1\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/test_test_pmc2pc1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thales-vormetric\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thales-vormetric\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thalesdiscplusainc1596561677238\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thalesdiscplusainc1596561677238\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thedatavaluefactoryltd1589348815922\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thedatavaluefactoryltd1589348815922\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thefreebsdfoundation\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thefreebsdfoundation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thehdfgroup1616725197741\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thehdfgroup1616725197741\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"theumag1596442827072\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/theumag1596442827072\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"things-board\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/things-board\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thingscareinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thingscareinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thinprintgmbh\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thinprintgmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thorntechnologiesllc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thorntechnologiesllc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thoughtspot-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thoughtspot-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"threatintelligenceptyltd1586824172898\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/threatintelligenceptyltd1586824172898\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tibco-software\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tibco-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tidal-migrations\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tidal-migrations\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tidalmediainc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tidalmediainc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tig\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tig\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tiger-technology\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tiger-technology\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tigergraph\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tigergraph\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"timextender\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/timextender\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tmaxsoft\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tmaxsoft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tmaxsoft1608612658335\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tmaxsoft1608612658335\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tomsawyersoftwarecorp1613579206342\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tomsawyersoftwarecorp1613579206342\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"topicus\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/topicus\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"torusware\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/torusware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"totemo\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/totemo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"townsend-security\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/townsend-security\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"transcendinformationinc1609918445926\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/transcendinformationinc1609918445926\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"transientxinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/transientxinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"transvault\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/transvault\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"trendmicro\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/trendmicro\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"TrendMicro.DeepSecurity.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/TrendMicro.DeepSecurity.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"TrendMicro.PortalProtect\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/TrendMicro.PortalProtect\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tresorit\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tresorit\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"trifacta\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/trifacta\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tripleblindinc1615730179432\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tripleblindinc1615730179432\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tripwire-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tripwire-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"truata1612259728221\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/truata1612259728221\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"truestack\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/truestack\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tryonsolutionsinc1596650621083\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tryonsolutionsinc1596650621083\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tsa-public-service\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tsa-public-service\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tunnelbiz\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tunnelbiz\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"turbonet\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/turbonet\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"turbonet1581982683964\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/turbonet1581982683964\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"twistlock\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/twistlock\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"typesafe\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/typesafe\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ubeeko\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ubeeko\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ubercloud\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ubercloud\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"uipath-5054924\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/uipath-5054924\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ulex\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ulex\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"unifi-software\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/unifi-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"unifiedstreaming1598872291606\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/unifiedstreaming1598872291606\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"uniprint-net\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/uniprint-net\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"unitrends\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/unitrends\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"unnisoft\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/unnisoft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"unravel-data\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/unravel-data\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"unscramblsingaporepteltd-4999260\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/unscramblsingaporepteltd-4999260\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"untangle\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/untangle\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"upsolver1594188634150\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/upsolver1594188634150\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"usp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/usp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"valohai\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/valohai\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"valtix\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/valtix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"varmournetworks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/varmournetworks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"varnish\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/varnish\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vatacommunicationsinc1581644208717\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vatacommunicationsinc1581644208717\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vaultive-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vaultive-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vbot\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vbot\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vcinityinc1587684340545\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vcinityinc1587684340545\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vectraaiinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vectraaiinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"veeam\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/veeam\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"velocitydb-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/velocitydb-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"velocloud\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/velocloud\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vembutechnologiespvtltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vembutechnologiespvtltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vemn\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vemn\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"veritas\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/veritas\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"versanetworks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/versanetworks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"versasec\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/versasec\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vidispine\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vidispine\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vidizmo\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vidizmo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vigyanlabs-innovations-pvt-ltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vigyanlabs-innovations-pvt-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vigyanlabsinc1581413676614\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vigyanlabsinc1581413676614\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"viptela\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/viptela\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vircom\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vircom\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"virtamovecorp1615909247913\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/virtamovecorp1615909247913\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"virtualpulsesro1607008728942\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/virtualpulsesro1607008728942\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"virtuozzointernationalgmbh1626704951469\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/virtuozzointernationalgmbh1626704951469\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"visualknowledgeshare1591795776234\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/visualknowledgeshare1591795776234\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"visualsoft-center\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/visualsoft-center\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vizixiotplatformretail001\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vizixiotplatformretail001\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vmlabinc1613642184700\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vmlabinc1613642184700\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vmturbo\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vmturbo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vmware-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vmware-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vnomicinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vnomicinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"voiceelements\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/voiceelements\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"voleatechgmbh1636966911943\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/voleatechgmbh1636966911943\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"volterraedgeservices\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/volterraedgeservices\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Vormetric\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Vormetric\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vscconsultingptyltd1608535888097\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vscconsultingptyltd1608535888097\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vte\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vte\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vu-llc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vu-llc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vunetsystemsprivatelimited1646716402131\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vunetsystemsprivatelimited1646716402131\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vyulabsinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vyulabsinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"WAD2AI.Diagnostics.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/WAD2AI.Diagnostics.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"WAD2EventHub.Diagnostics.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/WAD2EventHub.Diagnostics.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wallarm\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wallarm\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wallix\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wallix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wandisco\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wandisco\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wanos\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wanos\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wanpath-dba-myworkdrive\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wanpath-dba-myworkdrive\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wardy-it-solutions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wardy-it-solutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"warewolf-esb\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/warewolf-esb\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"watchguard-technologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/watchguard-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"webaloinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/webaloinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"websense-apmailpe\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/websense-apmailpe\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"websoft9inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/websoft9inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wedoitllc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wedoitllc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"westernoceansoftwaresprivatelimited\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/westernoceansoftwaresprivatelimited\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wherescapesoftware\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wherescapesoftware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"winmagic_securedoc_cloudvm\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/winmagic_securedoc_cloudvm\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wintellisys-inc-4561600\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wintellisys-inc-4561600\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"witfooinc1590167223060\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/witfooinc1590167223060\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wmspanel\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wmspanel\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wood1595864497589\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wood1595864497589\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"workshare-technology\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/workshare-technology\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"world-programming\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/world-programming\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"worxogo\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/worxogo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wowza\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wowza\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"xcontentptyltd-1329748\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/xcontentptyltd-1329748\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"xendata-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/xendata-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"xfinityinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/xfinityinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"xilinx\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/xilinx\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"xoriantcorporationazxteam1\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/xoriantcorporationazxteam1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"xoriantsolutionspvtltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/xoriantsolutionspvtltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"xtremedata\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/xtremedata\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"xyzrd-group-ou\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/xyzrd-group-ou\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"yaseensmarket1645449809728\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/yaseensmarket1645449809728\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"yellowfin\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/yellowfin\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"yellowfininternationalptyltd1616363974066\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/yellowfininternationalptyltd1616363974066\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"yokogawarentalleasecorporation\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/yokogawarentalleasecorporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"your-shop-online\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/your-shop-online\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"z1\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/z1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"z4it-aps\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/z4it-aps\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zabbix\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zabbix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zend\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zend\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zenterasystemsinc1605292453288\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zenterasystemsinc1605292453288\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zerodown_software\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zerodown_software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zerto\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zerto\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zettalane_systems-5254599\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zettalane_systems-5254599\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zevenet\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zevenet\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zilliz\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zilliz\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zoomdata\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zoomdata\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zscaler\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zscaler\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zscaler1579058425289\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zscaler1579058425289\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zultysinc1596831546163\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zultysinc1596831546163\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"128technology\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/128technology\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1580863854728\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1580863854728\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1583411303229\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1583411303229\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1583465680865\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1583465680865\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1585118004523\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1585118004523\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1592878437854\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1592878437854\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1597644262255\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1597644262255\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1598955805825\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1598955805825\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1601633765871\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1601633765871\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1602067018799\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1602067018799\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1604579683207\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1604579683207\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1615257339685\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1615257339685\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1615278064010\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1615278064010\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1615455873642\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1615455873642\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1624590941808\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1624590941808\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1640334196980\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1640334196980\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1e\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1e\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"2021ai\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/2021ai\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"247commercelimited1611063941652\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/247commercelimited1611063941652\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"3cx-pbx\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/3cx-pbx\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"42crunch1580391915541\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/42crunch1580391915541\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"4psa\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/4psa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"5nine-software-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/5nine-software-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"6124903\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/6124903\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"7isolutions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/7isolutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"a10networks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/a10networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"a10networks1596136698788\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/a10networks1596136698788\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"abiquo\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/abiquo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"abzoobainc1598420455082\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/abzoobainc1598420455082\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"accedian\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/accedian\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"accelario1579101623356\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/accelario1579101623356\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"accellion\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/accellion\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"accessdata-group\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/accessdata-group\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"accops\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/accops\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aciworldwide\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aciworldwide\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Acronis\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Acronis\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Acronis.Backup\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Acronis.Backup\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"actian-corp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/actian-corp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"actian_matrix\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/actian_matrix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"actifio\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/actifio\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"actiphy\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/actiphy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"actiphyinc1627974506603\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/actiphyinc1627974506603\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"activecountermeasuresinc1631039410073\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/activecountermeasuresinc1631039410073\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"activeeon\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/activeeon\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"activeops\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/activeops\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"adastracorporation-4028356\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/adastracorporation-4028356\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"adgs\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/adgs\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"advantech\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/advantech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"advantech-webaccess\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/advantech-webaccess\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"advantys\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/advantys\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aelf\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aelf\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aerospike\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aerospike\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"affinio\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/affinio\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"affirmednetworks1607630812999\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/affirmednetworks1607630812999\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ageniumscale1591804889317\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ageniumscale1591804889317\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aggregion-ltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aggregion-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"agiledialogssl1603791911858\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/agiledialogssl1603791911858\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"agolo\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/agolo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ahnlabinc1584495174865\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ahnlabinc1584495174865\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ahnlabinc1584495467593\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ahnlabinc1584495467593\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"airalabrus\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/airalabrus\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aiscaler-cache-control-ddos-and-url-rewriting-\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aiscaler-cache-control-ddos-and-url-rewriting-\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aisundowninc1618516322959\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aisundowninc1618516322959\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"akamai-technologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/akamai-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"akumina\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/akumina\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"akumo-software\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/akumo-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"al-tamamunitedtradingcontractingcompany\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/al-tamamunitedtradingcontractingcompany\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"alachisoft\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/alachisoft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"alertlogic\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/alertlogic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"AlertLogic.Extension\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/AlertLogic.Extension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"algolyticstechnologies1606475101268\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/algolyticstechnologies1606475101268\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"alicetrix\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/alicetrix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"alienvault\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/alienvault\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"alldigital-brevity\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/alldigital-brevity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"almalinux\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/almalinux\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"almalinuxosfoundation1628089859865\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/almalinuxosfoundation1628089859865\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"altair-engineering-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/altair-engineering-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"altamira-corporation\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/altamira-corporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"alteryx\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/alteryx\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"altova\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/altova\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"amergint1593131356777\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/amergint1593131356777\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"anjanadatasl1583402861145\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/anjanadatasl1583402861145\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ansys\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ansys\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"antmedia\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/antmedia\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aod\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aod\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"apigee\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/apigee\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"appcara\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appcara\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"appcelerator\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appcelerator\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"appex-networks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appex-networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"appistry\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appistry\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"appiyo_technologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appiyo_technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"appmint_inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appmint_inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"apps-4-rent\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/apps-4-rent\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"appscale-marketplace\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appscale-marketplace\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"appsurifyinc1606933045773\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appsurifyinc1606933045773\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aquaforest\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aquaforest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aquantyinc1598537176913\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aquantyinc1598537176913\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aquaveollc1633710529908\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aquaveollc1633710529908\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"arabesque-group\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/arabesque-group\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"arangodb\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/arangodb\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aras\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aras\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"arcblock\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/arcblock\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"arcesb\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/arcesb\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"arcontechsolutionsprivatelimited1623841797810\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/arcontechsolutionsprivatelimited1623841797810\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"arcserveusallc-marketing\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/arcserveusallc-marketing\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"arista-networks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/arista-networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ariwontollc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ariwontollc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"array_networks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/array_networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"artificial-intelligence-techniques-sl\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/artificial-intelligence-techniques-sl\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"arubanetworks-4922182\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/arubanetworks-4922182\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"asdivertissementinc1617837708654\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/asdivertissementinc1617837708654\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"asigra\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/asigra\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aspentechnologyhq-1353108\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aspentechnologyhq-1353108\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"astadia-1148316\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/astadia-1148316\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"asterasoftware1581022936015\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/asterasoftware1581022936015\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"asyscosoftwarebv\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/asyscosoftwarebv\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ataccama\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ataccama\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"athinfosystems1641442221349\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/athinfosystems1641442221349\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"athinfosystems1648710938250\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/athinfosystems1648710938250\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"atlgaming\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/atlgaming\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"atmosera\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/atmosera\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"atomicorp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/atomicorp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"atomizedinc1587939464368\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/atomizedinc1587939464368\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"attunity_cloudbeam\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/attunity_cloudbeam\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"audiocodes\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/audiocodes\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"auraportal\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/auraportal\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"auriq-systems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/auriq-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"automateio1592914387888\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/automateio1592914387888\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"automationanywhere\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/automationanywhere\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"avanseus\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/avanseus\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"avepoint\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/avepoint\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aveva1\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aveva1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"avi-networks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/avi-networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aviatrix-systems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aviatrix-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"awingu\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/awingu\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"axedrasag1590581171549\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/axedrasag1590581171549\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"axsguardablenv\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/axsguardablenv\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"axshco\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/axshco\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"axway\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/axway\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"axxana\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/axxana\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"azhpc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/azhpc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"azul\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/azul\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"azure-dockit\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/azure-dockit\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"azurecyclecloud\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/azurecyclecloud\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"AzureDatabricks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/AzureDatabricks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"azureopenshift\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/azureopenshift\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"AzureRT.PIR.Synthetics.ProdTest\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/AzureRT.PIR.Synthetics.ProdTest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"AzureRT.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/AzureRT.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"azuretesting\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/azuretesting\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"azuretesting2\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/azuretesting2\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"azuretesting3\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/azuretesting3\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"AzureTools1type\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/AzureTools1type\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"baas-techbureau\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/baas-techbureau\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"baffle-io\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/baffle-io\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"balabit\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/balabit\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"barracudanetworks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/barracudanetworks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"basho\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/basho\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"batch\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/batch\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bayware\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bayware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bdy\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bdy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"belindaczsro1588885355210\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/belindaczsro1588885355210\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bellsoft1582871421940\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bellsoft1582871421940\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"betsol\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/betsol\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"beyondtrust\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/beyondtrust\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bi-builders-as\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bi-builders-as\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"big-id\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/big-id\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"biolibinc1622552350258\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/biolibinc1622552350258\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bissantechnology1583581147809\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bissantechnology1583581147809\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bitdefendercybersecurity\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bitdefendercybersecurity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Bitnami\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Bitnami\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bizagi\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bizagi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bizaptyltd1626489237351\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bizaptyltd1626489237351\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bizdataloome\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bizdataloome\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"biztalk360\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/biztalk360\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"black-duck-software\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/black-duck-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"blackbird\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/blackbird\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"blackmagicdesignincorporated1596492193249\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/blackmagicdesignincorporated1596492193249\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"blk-technologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/blk-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"blockapps\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/blockapps\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"blockchain-foundry\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/blockchain-foundry\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"blockstack\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/blockstack\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bloombase\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bloombase\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bluecat\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bluecat\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bluejeansnetwork1638333611902\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bluejeansnetwork1638333611902\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"blueprismlimited-4827145\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/blueprismlimited-4827145\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bluesyntaxconsulting1617654548594\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bluesyntaxconsulting1617654548594\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bluetalon\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bluetalon\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bmc.ctm\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bmc.ctm\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bmcctm.test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bmcctm.test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"boardpacpvtltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/boardpacpvtltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bocada\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bocada\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"boemskats\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/boemskats\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"botanalytics\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/botanalytics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bowspritconsultingopcprivatelimited1596291408582\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bowspritconsultingopcprivatelimited1596291408582\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bravura-software-llc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bravura-software-llc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Brianjac.Symantec.CloudWorkloadProtection\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Brianjac.Symantec.CloudWorkloadProtection\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bricatainc1584472632111\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bricatainc1584472632111\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bright-computing\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bright-computing\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"brightcomputing\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/brightcomputing\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"brocade_communications\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/brocade_communications\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"brutale\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/brutale\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bryte\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bryte\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bssw\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bssw\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bt-americas-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bt-americas-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"buddhalabs\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/buddhalabs\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cadosecurityltd1626856705534\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cadosecurityltd1626856705534\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"calculated_systems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/calculated_systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"caloudi_corp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/caloudi_corp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"canadiancentreforcybersecurity1610638436359\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/canadiancentreforcybersecurity1610638436359\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Canonical\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Canonical\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"canonical-test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/canonical-test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"carto\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/carto\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cask\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cask\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"castaigroupinc1595243474856\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/castaigroupinc1595243474856\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"catechnologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/catechnologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"catonetworksltd1641478570665\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/catonetworksltd1641478570665\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cautelalabs\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cautelalabs\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cavirin\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cavirin\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cayosoftinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cayosoftinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cdatasoftware\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cdatasoftware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cds\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cds\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"celum-gmbh\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/celum-gmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"center-for-internet-security-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/center-for-internet-security-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"centeritysystems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/centeritysystems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"centrixeltd1594135951373\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/centrixeltd1594135951373\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"centrocomputerspa1584528117084\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/centrocomputerspa1584528117084\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"certifiedsecuritysolutionsinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/certifiedsecuritysolutionsinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"certivox\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/certivox\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cfd-direct\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cfd-direct\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"chain\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/chain\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"checkpoint\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/checkpoint\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"chef-software\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/chef-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Chef.Bootstrap.WindowsAzure\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Chef.Bootstrap.WindowsAzure\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"chunghwatelecom1587573688842\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/chunghwatelecom1587573688842\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cinchy\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cinchy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cinegy-gmbh\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cinegy-gmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ciphertechsinc1646670709341\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ciphertechsinc1646670709341\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"circleci\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/circleci\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cires21\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cires21\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cirruswaveinc1579234787943\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cirruswaveinc1579234787943\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cisco\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cisco\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"citrix\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/citrix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Citrix.ADC\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Citrix.ADC\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"clapsodeughaftungsbeschrnkt1626333173563\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/clapsodeughaftungsbeschrnkt1626333173563\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"clear-linux-project\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/clear-linux-project\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"clone-systems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/clone-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"clouber\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/clouber\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloud-checkr\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloud-checkr\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloud-cruiser\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloud-cruiser\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloud-infrastructure-services\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloud-infrastructure-services\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudaccelinc1628754426775\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudaccelinc1628754426775\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudbees\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudbees\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudbees-enterprise-jenkins\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudbees-enterprise-jenkins\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudbolt-software\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudbolt-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudboltsoftware1639523402532\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudboltsoftware1639523402532\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudboost\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudboost\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudcover\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudcover\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudenablers-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudenablers-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudentity\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudentity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudera\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudera\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudflare\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudflare\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudhouse\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudhouse\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudinfo-4919088\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudinfo-4919088\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudknox\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudknox\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudlanes\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudlanes\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudlink\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudlink\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"CloudLinkEMC.SecureVM\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/CloudLinkEMC.SecureVM\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudmavensolutions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudmavensolutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudneeti\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudneeti\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudplan-gmbh\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudplan-gmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudsecurity\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudsecurity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudsoft\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudsoft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudwhizsolutions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudwhizsolutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudwrxsconsultingltd1631029702055\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudwrxsconsultingltd1631029702055\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"clustrix\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/clustrix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cncf-upstream\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cncf-upstream\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"codaintelligence1606495376525\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/codaintelligence1606495376525\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"codelathe\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/codelathe\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"codenvy\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/codenvy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"codetwo\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/codetwo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cognexcorporation1613759804979\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cognexcorporation1613759804979\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cognexcorporation1647410785838\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cognexcorporation1647410785838\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cognitive-scale\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cognitive-scale\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cognizant\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cognizant\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cognosys\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cognosys\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cohesity\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cohesity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cohesitydev1592001764720\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cohesitydev1592001764720\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cohesive\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cohesive\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"coin-sciences-ltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/coin-sciences-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"collabcloudlimited\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/collabcloudlimited\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"collibranv1619508098620\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/collibranv1619508098620\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"commscopeinc1632135151062\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/commscopeinc1632135151062\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"commvault\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/commvault\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"compellon\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/compellon\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"composable\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/composable\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"comunity\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/comunity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"concentrationheatandmomentumlimited1616154387047\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/concentrationheatandmomentumlimited1616154387047\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Confer\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Confer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"confluentinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/confluentinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"conflux\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/conflux\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"connecting-software\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/connecting-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"consensys\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/consensys\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"containeraider\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/containeraider\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"contiamogmbh\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/contiamogmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"controlcase\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/controlcase\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"controlplane\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/controlplane\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"controlplanecorporation1609967567639\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/controlplanecorporation1609967567639\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"convertigo\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/convertigo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"corda\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/corda\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"core-stack\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/core-stack\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"corent-technology-pvt\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/corent-technology-pvt\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"CoreOS\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/CoreOS\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"couchbase\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/couchbase\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cpanel\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cpanel\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"credativ\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/credativ\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cristiesoftwareltd1599488127561\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cristiesoftwareltd1599488127561\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"crunchyard\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/crunchyard\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"crunchyardltd1623835391104\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/crunchyardltd1623835391104\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cryptocom1585727786636\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cryptocom1585727786636\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cryptosense1605170011574\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cryptosense1605170011574\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cryptzone\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cryptzone\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ctm.bmc.com\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ctm.bmc.com\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ctrliqinc1648673227698\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ctrliqinc1648673227698\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cubebackup\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cubebackup\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cyberark\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cyberark\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cybernetica-as\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cybernetica-as\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cygnalabscorp1646065782458\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cygnalabscorp1646065782458\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cyxtera\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cyxtera\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"d4t4_solutions-1164305\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/d4t4_solutions-1164305\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"daceitdbasensetrafficpulse1579892024934\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/daceitdbasensetrafficpulse1579892024934\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"danielsol.AzureTools1\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/danielsol.AzureTools1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Dans.Windows.App\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Dans.Windows.App\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Dans3.Windows.App\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Dans3.Windows.App\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dataart\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dataart\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"databricks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/databricks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datacore\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datacore\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Datadog.Agent\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Datadog.Agent\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datadynamicsinc1581991927942\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datadynamicsinc1581991927942\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datagapsinc1585348463636\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datagapsinc1585348463636\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dataguiseinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dataguiseinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dataiku\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dataiku\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datalayer\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datalayer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datanomers1584919038987\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datanomers1584919038987\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datanova\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datanova\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datapredsa\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datapredsa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dataroadtechnologiesllc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dataroadtechnologiesllc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datasciencedojo1586563145740\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datasciencedojo1586563145740\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datastax\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datastax\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datasunrise\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datasunrise\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datavirtualitygmbh\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datavirtualitygmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datometry\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datometry\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dbs-h\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dbs-h\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ddn-whamcloud-5345716\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ddn-whamcloud-5345716\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Debian\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Debian\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dece-4446019\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dece-4446019\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"decisosalesbv\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/decisosalesbv\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"deepcognitioninc1593512758156\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/deepcognitioninc1593512758156\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"deepsiginc1581610210151\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/deepsiginc1581610210151\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"deepsurfacesecurityinc1632943333445\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/deepsurfacesecurityinc1632943333445\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dellemc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dellemc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dell_software\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dell_software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"delphix\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/delphix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"deltapathlimited1592886319362\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/deltapathlimited1592886319362\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"denodo\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/denodo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"denyall\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/denyall\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"derdack\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/derdack\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"deskpro1650546806675\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/deskpro1650546806675\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"desktopstudioag1580294245574\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/desktopstudioag1580294245574\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"devfactory\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/devfactory\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"device42inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/device42inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"deviceauthorityinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/deviceauthorityinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"devolutionsinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/devolutionsinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"devopsgroup-uk\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/devopsgroup-uk\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"df-portal-user\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/df-portal-user\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dgsecure\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dgsecure\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Dh2ico\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Dh2ico\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dh2icompany\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dh2icompany\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dhi\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dhi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"diagramics\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/diagramics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dicomsystems1584107398321\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dicomsystems1584107398321\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"diehl-metering\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/diehl-metering\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"digisitesystems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/digisitesystems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"digitaldefenseinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/digitaldefenseinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"digitaloffice\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/digitaloffice\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"digitamizeinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/digitamizeinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"digitate\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/digitate\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"diladele\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/diladele\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dimensionalmechanics-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dimensionalmechanics-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"diqa\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/diqa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"diyatech\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/diyatech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"diyotta\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/diyotta\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"djiindustrialincus\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/djiindustrialincus\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"docker\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/docker\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dome9\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dome9\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dorabot\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dorabot\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dremiocorporation\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dremiocorporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"drizti\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/drizti\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"drone\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/drone\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dsi\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dsi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dundas\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dundas\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dyadic_security\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dyadic_security\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dynatrace\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dynatrace\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dynatrace.ruxit\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dynatrace.ruxit\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"e-magicinc1587696283171\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/e-magicinc1587696283171\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"eastwind-networks-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/eastwind-networks-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"easysoftwaresro1593005637384\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/easysoftwaresro1593005637384\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ebesllc1637780200500\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ebesllc1637780200500\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ecessa\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ecessa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"edevtech\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/edevtech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"edgelesssystems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/edgelesssystems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"edgenetworks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/edgenetworks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"edispheresoftwareprivatelimited1606199736428\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/edispheresoftwareprivatelimited1606199736428\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"education4sight\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/education4sight\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"eecservicesfzllc1604836615706\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/eecservicesfzllc1604836615706\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"egnyte\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/egnyte\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"egress1589289169584\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/egress1589289169584\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"eikonasystemsgmbh1601729310063\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/eikonasystemsgmbh1601729310063\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Elastic\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Elastic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"elasticbox\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/elasticbox\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"elecard\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/elecard\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"electric-cloud\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/electric-cloud\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"elevateiot\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/elevateiot\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"eleven01\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/eleven01\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"elfiqnetworks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/elfiqnetworks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"emercoin\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/emercoin\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"energisme1601990637842\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/energisme1601990637842\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"enforongo\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/enforongo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"engineering-ingegneriainformatica-spa1626786889850\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/engineering-ingegneriainformatica-spa1626786889850\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"engysltd1624364546407\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/engysltd1624364546407\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"enterprise-ethereum-alliance\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/enterprise-ethereum-alliance\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"enterprisedb-corp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/enterprisedb-corp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"enterpriseworx-it\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/enterpriseworx-it\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"epicgames\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/epicgames\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"epicgamesinc1633466121071\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/epicgamesinc1633466121071\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"eproe\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/eproe\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"equalum\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/equalum\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"equilibrium\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/equilibrium\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"equinix\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/equinix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ergoninformatikag1581586464404\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ergoninformatikag1581586464404\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"esdenera\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/esdenera\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ESET\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ESET\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"esetresearch1579795941720\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/esetresearch1579795941720\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"esri\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/esri\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"esyon\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/esyon\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ethereum\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ethereum\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"eurolinuxspzoo1620639373013\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/eurolinuxspzoo1620639373013\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"eventtracker\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/eventtracker\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"evertzmicrosystemsltd1586877923009\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/evertzmicrosystemsltd1586877923009\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"evostream-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/evostream-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"exact\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/exact\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"exasol\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/exasol\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"excelero1608461290726\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/excelero1608461290726\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"exivity\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/exivity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"exonar\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/exonar\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"f5-networks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/f5-networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"falainapteltd1604661424876\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/falainapteltd1604661424876\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"falconstorsoftware\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/falconstorsoftware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fatalsecurity1604924013537\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fatalsecurity1604924013537\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fatpipe-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fatpipe-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fenestrae-1035066\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fenestrae-1035066\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fidesys\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fidesys\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"filecatalyst\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/filecatalyst\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"filemagellc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/filemagellc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fiorano\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fiorano\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fireeye\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fireeye\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"firehost\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/firehost\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"firemon\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/firemon\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"firstderivativesplc1596469572732\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/firstderivativesplc1596469572732\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"flashgrid-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/flashgrid-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"flexbby\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/flexbby\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"flexbby-5255860\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/flexbby-5255860\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"flexify-io\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/flexify-io\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"flexxibleit\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/flexxibleit\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"flowmon\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/flowmon\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"flynet\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/flynet\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"foghorn-systems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/foghorn-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"forcepoint-llc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/forcepoint-llc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"forescout\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/forescout\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"foreseetiab1613650409016\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/foreseetiab1613650409016\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"formpipesoftwareab\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/formpipesoftwareab\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"forscene\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/forscene\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fortanix\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fortanix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fortinet\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fortinet\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fortycloud\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fortycloud\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"forumsystems1599756394904\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/forumsystems1599756394904\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fotopiatechnologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fotopiatechnologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"foxiteuropegmbh1585901066320\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/foxiteuropegmbh1585901066320\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"franzinc1593030725310\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/franzinc1593030725310\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fujitsu_fast\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fujitsu_fast\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fw\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fw\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"g2kgroupgmbh-4821943\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/g2kgroupgmbh-4821943\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gapteq\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gapteq\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gatlingcorp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gatlingcorp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gbs\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gbs\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gemalto-safenet\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gemalto-safenet\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Gemalto.SafeNet.ProtectV\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Gemalto.SafeNet.ProtectV\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"genesistechnologyinc1604912285911\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/genesistechnologyinc1604912285911\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"genuagmbhdevid1\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/genuagmbhdevid1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"genua_gmbh\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/genua_gmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"genymobile\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/genymobile\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gigamon-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gigamon-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"GitHub\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/GitHub\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gitlab\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gitlab\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gitlabinc1586447921813\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gitlabinc1586447921813\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gladinet-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gladinet-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"glantoninc1591876792991\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/glantoninc1591876792991\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"globalidsinc1596800540598\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/globalidsinc1596800540598\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"globalscape\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/globalscape\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"globalsolutions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/globalsolutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gluwareinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gluwareinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"graphistry\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/graphistry\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"graphitegtc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/graphitegtc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"great-software-laboratory-private-limited\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/great-software-laboratory-private-limited\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"greensql\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/greensql\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"greycorbelsolutions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/greycorbelsolutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gridgain\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gridgain\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"guardicore\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/guardicore\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gxchainfoundationltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gxchainfoundationltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"h2o-ai\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/h2o-ai\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hackerbay\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hackerbay\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hackershub\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hackershub\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"haivision\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/haivision\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"haivisionsystemsinc1580780591922\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/haivisionsystemsinc1580780591922\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"haltdoscompvtltd1587136166019\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/haltdoscompvtltd1587136166019\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hammerspace\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hammerspace\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hanu\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hanu\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"haproxy-technologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/haproxy-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"harmanconnectedservicesinc1594928575643\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/harmanconnectedservicesinc1594928575643\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"harpaitalia\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/harpaitalia\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hashhub\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hashhub\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hcl-technologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hcl-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"heimdall-data\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/heimdall-data\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"help-systems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/help-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"helpyio\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/helpyio\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"heretechnologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/heretechnologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hewlett-packard\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hewlett-packard\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hillstone-networks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hillstone-networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hitachi-solutions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hitachi-solutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hitachivantara\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hitachivantara\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"holo-industrie40softwaregmbh1600957636008\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/holo-industrie40softwaregmbh1600957636008\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hortonworks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hortonworks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hpe\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hpe\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"HPE.Security.ApplicationDefender\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/HPE.Security.ApplicationDefender\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"huawei\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/huawei\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hubstor-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hubstor-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hush-hush\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hush-hush\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hvr\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hvr\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hyperglance\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hyperglance\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hypergrid\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hypergrid\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hystaxinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hystaxinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hytrust\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hytrust\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"i-exceed-technology\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/i-exceed-technology\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iaansys\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iaansys\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ibm\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ibm\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ibm-alliance-global-1560886\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ibm-alliance-global-1560886\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ibm-alliance-usa-ny-armonk-hq-ibmstorage-6201192\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ibm-alliance-usa-ny-armonk-hq-ibmstorage-6201192\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ibm-usa-ny-armonk-hq-6275750-ibmcloud-aiops\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ibm-usa-ny-armonk-hq-6275750-ibmcloud-aiops\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iboss\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iboss\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iconics\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iconics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iconsulting-spa\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iconsulting-spa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"icubeconsultancyservicesinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/icubeconsultancyservicesinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iguazio-5069960\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iguazio-5069960\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ikan\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ikan\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iliimbiliimveyazlmsistemlerisanvetica1617000555584\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iliimbiliimveyazlmsistemlerisanvetica1617000555584\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"illuminainc1586452220102\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/illuminainc1586452220102\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"image-technologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/image-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"imaginecommunications\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/imaginecommunications\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"imperva\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/imperva\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"impetustechnologiesinc1591959591877\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/impetustechnologiesinc1591959591877\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"imprivatainc1580479939967\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/imprivatainc1580479939967\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"incorta\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/incorta\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"incredibuild\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/incredibuild\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"indexima1594300233028\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/indexima1594300233028\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"industry-weapon\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/industry-weapon\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"industryweapon1587162781833\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/industryweapon1587162781833\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"inenprocesosyplataformasdetisderldecv1615482385424\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/inenprocesosyplataformasdetisderldecv1615482385424\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"inergybv1637141413454\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/inergybv1637141413454\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"infinitesoftwarecorporation1579223971125\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/infinitesoftwarecorporation1579223971125\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"infiotinc1614034091460\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/infiotinc1614034091460\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"influxdata\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/influxdata\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"infoblox\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/infoblox\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"infogix\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/infogix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"infolibrarian\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/infolibrarian\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"informatica\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/informatica\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"informationbuilders\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/informationbuilders\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"informationtechnologies_ltd_1179601\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/informationtechnologies_ltd_1179601\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"infotecsinternetsecuritysoftwaregmbh1636129257584\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/infotecsinternetsecuritysoftwaregmbh1636129257584\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"infront-consulting-group-ltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/infront-consulting-group-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"infscapeughaftungsbeschrnkt\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/infscapeughaftungsbeschrnkt\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ingenieurstudiohollaus1579587745438\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ingenieurstudiohollaus1579587745438\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ingrammicro\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ingrammicro\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"innomindssoftware\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/innomindssoftware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"innosepgmbh1618331344164\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/innosepgmbh1618331344164\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"innovatorartificialtechsrl1619180685551\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/innovatorartificialtechsrl1619180685551\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"innovtech\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/innovtech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"instight-technology\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/instight-technology\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"integration-objects\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/integration-objects\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"intel-bigdl\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/intel-bigdl\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"intel-fpga\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/intel-fpga\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"intellicus-technologies-pvt-ltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/intellicus-technologies-pvt-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"intelligent-plant-ltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/intelligent-plant-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"intel_corporation\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/intel_corporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"internationaltrustmachinescorporation1582190033865\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/internationaltrustmachinescorporation1582190033865\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"internet20inc1635882446190\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/internet20inc1635882446190\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"intersystems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/intersystems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"intigua\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/intigua\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"intigua1638692632641\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/intigua1638692632641\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"introspecioltd1629872641188\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/introspecioltd1629872641188\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iofabric\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iofabric\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ipinfusion1590066770520\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ipinfusion1590066770520\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ipswitch\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ipswitch\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iqsol\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iqsol\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iquate\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iquate\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iquest\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iquest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"irion\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/irion\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ishlangu-load-balancer-adc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ishlangu-load-balancer-adc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"issp-corporation\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/issp-corporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"isvtestukbigcat\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/isvtestukbigcat\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"isvtestuklegacy\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/isvtestuklegacy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"it4bizdoo\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/it4bizdoo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"itelios\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/itelios\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"itrsgroupltd1620310702149\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/itrsgroupltd1620310702149\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ivanti-inc-pcs\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ivanti-inc-pcs\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ivanti-nzta\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ivanti-nzta\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ivix1595238749040\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ivix1595238749040\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iwnamespace\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iwnamespace\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"izenda\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/izenda\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"jamcracker\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/jamcracker\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"javlinltd1579185328273\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/javlinltd1579185328273\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"jedox\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/jedox\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"jelastic\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/jelastic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"jetnexus\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/jetnexus\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"jetware-srl\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/jetware-srl\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"jfrog\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/jfrog\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"jm-technology-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/jm-technology-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"jogetinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/jogetinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"johnsnowlabsinc1646051154808\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/johnsnowlabsinc1646051154808\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"juniper-networks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/juniper-networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"justanalytics\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/justanalytics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kaazing\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kaazing\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kadenallc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kadenallc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kali-linux\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kali-linux\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kalkitech\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kalkitech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kaminarioinc1588672951794\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kaminarioinc1588672951794\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Kaspersky.Lab\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Kaspersky.Lab\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"KasperskyLab.SecurityAgent\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/KasperskyLab.SecurityAgent\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kaspersky_lab\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kaspersky_lab\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kazendi\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kazendi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kelverion\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kelverion\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kemptech\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kemptech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kepion\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kepion\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"KevlarExtensions.M365Security.SecureOS\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/KevlarExtensions.M365Security.SecureOS\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"KevlarExtensions.M365SecurityHostIDS\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/KevlarExtensions.M365SecurityHostIDS\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"KevlarExtensions.M365SecurityInventory\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/KevlarExtensions.M365SecurityInventory\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"KevlarExtensions.M365SecurityInventory.NameChangeTest\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/KevlarExtensions.M365SecurityInventory.NameChangeTest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"KevlarExtensions.M365SecurityODL\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/KevlarExtensions.M365SecurityODL\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"KevlarExtensions.M365SecurityTLSExtension\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/KevlarExtensions.M365SecurityTLSExtension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kinetica\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kinetica\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kinvolk\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kinvolk\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"knime\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/knime\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kobalt\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kobalt\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kognillc1600118221163\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kognillc1600118221163\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kognitivsparkinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kognitivsparkinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"konginc1581527938760\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/konginc1581527938760\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"konsys-ltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/konsys-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"koverseinc1588716263110\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/koverseinc1588716263110\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kryonsystems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kryonsystems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"krypc-technologies-pvt-ltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/krypc-technologies-pvt-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kyligence\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kyligence\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kyvos-insights-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kyvos-insights-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lab3solutions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lab3solutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lancom-systems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lancom-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lansa\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lansa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lastline\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lastline\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"launchnodesltd1644561451121\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/launchnodesltd1644561451121\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"leap-orbit\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/leap-orbit\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lenovosoftware1604394104439\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lenovosoftware1604394104439\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"leostream-corporation\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/leostream-corporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lepide-software\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lepide-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"levacloudllc1602151818089\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/levacloudllc1602151818089\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"libelleag\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/libelleag\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"liberatii\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/liberatii\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"libraesva\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/libraesva\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"liebsoft\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/liebsoft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lightning-analyticsinc1582000647396\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lightning-analyticsinc1582000647396\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"linuxbasedsystemsdesignltd1580878904727\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/linuxbasedsystemsdesignltd1580878904727\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"liquid-files\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/liquid-files\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"liquidware\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/liquidware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"literatu\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/literatu\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"litespeedtechnologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/litespeedtechnologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"litespeed_technologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/litespeed_technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"litionenergiegmbh1580128829115\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/litionenergiegmbh1580128829115\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"litmusautomation1582760223280\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/litmusautomation1582760223280\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"llcitpro\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/llcitpro\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lnw-softgmbh\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lnw-softgmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"loadbalancer\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/loadbalancer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"logicflowag1638535407949\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/logicflowag1638535407949\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"logsign\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/logsign\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"logstarecorp1635838645101\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/logstarecorp1635838645101\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"logtrust\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/logtrust\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"logzio\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/logzio\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"looker\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/looker\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lotus_beta_analytics\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lotus_beta_analytics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lti-lt-infotech\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lti-lt-infotech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"luminate-security\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/luminate-security\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"M365Security.KevlarExtensions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/M365Security.KevlarExtensions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"M365SecurityInventory\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/M365SecurityInventory\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"machinesense\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/machinesense\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"madhavajay1632269232059\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/madhavajay1632269232059\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"maidenhead-bridge\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/maidenhead-bridge\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"manageengine\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/manageengine\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mapd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mapd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"maplelabsinc1623932715330\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/maplelabsinc1623932715330\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mapr-technologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mapr-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"marand\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/marand\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"marketplace-rdfe-caps\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/marketplace-rdfe-caps\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"marklogic\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/marklogic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"massiveanalytic-\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/massiveanalytic-\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mathworks-deployment\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mathworks-deployment\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mathworks-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mathworks-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"matillion\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/matillion\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mavinglobal\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mavinglobal\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"McAfee.EndpointSecurity\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/McAfee.EndpointSecurity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"McAfee.EndpointSecurity.test3\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/McAfee.EndpointSecurity.test3\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"meanio\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/meanio\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"media3-adobe\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/media3-adobe\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"media3-technologies-llc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/media3-technologies-llc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mediatekinc1586141563888\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mediatekinc1586141563888\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mendix\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mendix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"merlynnintelligencetechnologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/merlynnintelligencetechnologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"meshifyappinc1622759451429\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/meshifyappinc1622759451429\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"messagesolution\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/messagesolution\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"metaswitch\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/metaswitch\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mettainnovations-4900054\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mettainnovations-4900054\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mfe_azure\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mfe_azure\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mfiles\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mfiles\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mico\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mico\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"micro-focus\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/micro-focus\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microlinkpcukltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microlinkpcukltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microolap\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microolap\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsecpteltd1634010681688\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsecpteltd1634010681688\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-ads\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-ads\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-agci-gaming\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-agci-gaming\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-aks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-aks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-avere\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-avere\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-azure-batch\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-azure-batch\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-azure-compute\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-azure-compute\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-azure-hdinsight\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-azure-hdinsight\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-crypto\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-crypto\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-dsvm\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-dsvm\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-hyperv\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-hyperv\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-minecraft\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-minecraft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AdminCenter\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AdminCenter\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AKS\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AKS\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.ActiveDirectory\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.ActiveDirectory\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.ActiveDirectory.LinuxSSH\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.ActiveDirectory.LinuxSSH\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Applications\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Applications\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Automation.HybridWorker\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Automation.HybridWorker\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Automation.HybridWorker.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Automation.HybridWorker.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.AzureDefenderForServers\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.AzureDefenderForServers\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.AzureDefenderForSQL\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.AzureDefenderForSQL\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.AzureHybridBenefit\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.AzureHybridBenefit\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Backup.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Backup.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Backup.Test.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Backup.Test.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Batch\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Batch\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.ChangeTracking\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.ChangeTracking\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.ChangeTracking.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.ChangeTracking.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.ChangeTrackingAndInventory\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.ChangeTrackingAndInventory\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Chaos\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Chaos\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Compute.Security\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Compute.Security\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.ContainerUpstream\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.ContainerUpstream\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.DefenderForServers.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.DefenderForServers.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.DefenderForServers.Test2\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.DefenderForServers.Test2\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Diagnostics\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Diagnostics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Diagnostics.Build.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Diagnostics.Build.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Diagnostics.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Diagnostics.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test012be407-61ea-4e45-a2c3-71a45999ca21-20191228083800\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test01971384-3044-413b-8b1c-33b5d461bf23-20200107051823\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test0225ec7d-b36c-4ac8-82f0-aa4fafaf10a9-20200111051346\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test025e16a1-328d-45a2-b7e3-71f7e4cde046-20191229064028\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test02d1f941-5607-4757-8df7-fd8c5631ab45-20200103083810\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test039abd7f-360c-42a1-ad5d-77527c519286-20191002233412\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test04a0f157-c6fb-4595-b6ca-6c82a2338063-20200108101451\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test0737f33e-63e0-4ba9-b04b-b93a1de4e997-20200106083639\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test0a44d7be-63fa-418d-a7b6-89a44dd21894-20200107052935\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test0d01b487-7f79-4d87-b330-5c025068db45-20191004190331\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test0d643748-e6fe-41ad-b4d3-89a289a0cee0-20191003055620\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test0df83c51-5bb9-43f8-8ae9-bc896ea64f78-20200110220221\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test0f02c246-7e65-4010-9367-ca4530c3897e-20191004190223\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test157494ec-e788-43b0-8d26-a17e39ee07cc-20191002011945\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test1661d154-b623-4507-8a56-3a89812c456c-20200111083940\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test17bbd860-f21d-40ab-9026-16e05f2907f0-20200106083451\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test194e2333-13cd-43e3-b0a4-c8cdcf1a3600-20200110211106\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test1bc26b19-b8d8-41f9-a26d-818f277bdf93-20200101113139\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test1c840053-9213-4f2a-8f2e-9bf2297908bd-20200108101424\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test1d7bba72-69f1-43cd-a38c-41ce0b5f4bae-20200109050041\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test1f7a8078-50e7-4a3a-91eb-d178fd4c403b-20191002233353\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test1fef1fdc-57ba-46a8-a879-475ba7d45a7a-20200106083509\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test21332f15-f78d-4d31-afac-79b9dc989432-20191231175840\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test22f10717-6939-4003-a9ce-38effd8b77d6-20191007191355\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test2334e6e3-bb72-4241-a36f-c2429d69bc0b-20200106050834\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test24fa9eb5-1c59-4425-b61c-30fd638c2a45-20191003203802\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test2521a545-ed61-4a15-bed1-aba7ce1d81ee-20200106050804\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test25c6fe61-1282-43c2-867b-b5039219989c-20200105081851\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test27515c8c-6773-4f92-afb0-35691cc6e3b6-20200103083821\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test28012680-48e7-4903-877f-2f29464e63d5-20191229033424\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test29a7a529-d293-4728-9d7f-257ed996e64f-20200108081759\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test2a5f2d2c-b8e3-46c2-850d-a1641c024fe7-20200107084228\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test2ce856af-ab17-48f2-ba3e-bcd9af091061-20200110013246\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test2e012e83-6361-4365-963f-6ced8a08e91c-20200110211254\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test2ecf67b2-fb63-4461-b6a6-7026c4fb1168-20191002214026\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test2ede6564-c7cc-44cb-a1a8-902505c9829d-20191003020742\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test2f4ebc17-e27e-48d9-9cc3-ff933c21884e-20200106092410\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test349ee02c-af9b-4663-a963-823b40eefed8-20200108083612\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test34cf6b13-b78e-478b-b596-8b661629371d-20191007195455\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test36cc5b60-2b23-4a04-bf95-f7865e1141cf-20200110085718\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3712fca9-5cdd-4609-be69-b02aedc5c55c-20200107084115\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3772d042-92e2-4bcb-99b7-8a6a119cc088-20191231182808\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test37a6dd64-d44d-465e-85bc-3bc38be90350-20200104083535\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test381074d5-7156-472b-801a-b35f8fef4cc6-20200105050612\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3877a44d-4c48-40db-80eb-227272d5acd6-20200110103540\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test38ecd28e-7018-4672-840c-3044a5e7a6b5-20200111084208\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test395a0b49-442a-450c-8a1f-65b0aa3bcf47-20200105083839\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3971b300-edff-44a8-b61b-7f9b7460a8d6-20191003002234\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3adeec20-7458-4b3d-af26-0b6bc2aae3eb-20200103083751\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3b20dd96-f3e4-4798-998d-8c433c2449a7-20200108083635\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3ce2fd4a-8b5a-4c7e-b08d-3e48fc0f45e7-20200104083825\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3d499ca7-cc8d-41cc-a6dc-ffb1a4ac4942-20200107053004\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3db7240e-5e42-4d6d-b024-cc9fce3c828b-20200105083520\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3f6b7341-635f-48d5-a36d-be5dfe3002c4-20200105050937\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3fc26934-ede2-4482-ad5e-f66f6135d4a6-20191228055558\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test406d077c-6017-4062-bc96-f809147a2331-20200106050748\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test4302336c-e039-4e70-bcb6-9275f6089e4a-20200108144821\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test453a087e-8435-46db-970a-4ee633cc4c4a-20200102083458\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test46b73afa-2259-4aff-81e1-a58bf24b59aa-20191229033459\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test4a3399ee-82ea-46aa-9e3a-5434b588e3b6-20191228013518\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test4eb7a185-527b-4b9f-93a8-7f1cec9d062e-20191231151207\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test520a0915-f9f0-4da4-9fa1-1b74fc1470aa-20200102083505\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test5397960f-023b-4979-9a8b-800d049045a4-20191007195417\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test55a36387-8a3f-4159-9884-29b97539a253-20200109080443\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test5645f186-4ee5-4209-af37-423660e3318c-20191231175947\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test58b4461d-4d2d-4395-b6d2-ab83d4d8c62f-20200111001002\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test5b0bf447-d98d-429d-8334-c032d197c743-20191003203846\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test5bc90367-1ea2-400b-a40c-321081bae3f3-20200108145035\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test5bd0562f-e939-456f-a6ee-c848d1aba616-20200101151641\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test5e4efe90-916c-4c96-802c-1508a5b6da78-20191231151150\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test5f8f0c10-cc3c-45ec-a068-fb1c7edfa0d9-20200101145958\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test60a000b7-286c-4b2b-9137-bbc088736419-20200108144920\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test6192a01b-ba47-4d08-904a-71647a49a112-20191008041625\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test62835538-89c6-4f66-9034-f7a4b176c615-20191007234245\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test651e4ad2-ee4a-462e-a506-b56b1969f5d0-20200110230749\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test691d94e5-c40c-4568-94b0-09b08aea42b1-20200106050808\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test6aa3643c-011a-4180-877f-cad955a8e664-20191007234642\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test6cfb469b-8478-468f-9bb5-691affd32abb-20200107083803\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test6d36b6b2-7956-4e62-91c1-c33792fd4bb1-20200110123203\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test6e28168e-a9c8-4c0a-8b40-60c2a1502d43-20200108052802\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test6eb763ac-7fbe-4e44-bee7-aad035ee2a7d-20200110084429\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test6efec253-f625-46f0-9d74-324f69e963d8-20200107070514\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test70fa7e4c-3122-4ff7-aec6-fe75ab660a01-20200108105900\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test710a5fbf-06c7-46ac-b96d-a29d2586422f-20200108083639\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test71d72489-67c6-45e2-b1e6-a19546efc823-20200105112903\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test721fccf1-2b3e-44b6-908f-51b910e88b09-20200111104931\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test742d0189-9e41-4f1b-8ad3-31c05d34903b-20200111103247\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7836a97c-f56e-48d0-8b5d-61e79aeb3226-20200111071656\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test78666b2e-25c8-4a48-931a-3131a0317d73-20191002194352\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test79f13508-fcbd-47b9-988f-1c21ef5e7f2e-20191002015429\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test79fb90ce-4691-4212-99a7-6e4069bd5984-20191007234256\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7a8cf687-6a21-4181-ba98-902fee717bd3-20200104103216\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7aabf813-6644-483a-b9e0-ba6f8973ba1f-20191002232822\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7c96c10a-0c8f-4ab0-83fd-1ad66a362e33-20191229033458\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7e79b6ff-2559-44fe-b3ba-afaa68d63636-20200108112116\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7ea372f7-ea7e-4b9e-bbad-4f35c1567aa2-20200108052736\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7fac3d04-98a5-4fc4-904e-9ea3b86eadc2-20200106050751\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7fe20dd6-9ed9-4126-bb1d-031c01ac4550-20200101114504\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7ff974d9-c841-4249-b05b-bbf663cb4605-20200106084104\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test815bd4d5-fc24-4a47-be20-063c4809902c-20200109050508\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test817654d0-2109-4d95-9284-8c8a9d960d08-20200108053758\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test821ca3b6-dd05-4e80-b3d8-74ba03b2609b-20191231151151\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test8285dc3e-637d-4d46-9695-adc39cbe7d2f-20200108144457\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test828aae03-9239-4938-a303-c23c42311878-20200102083419\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test84afd814-5098-49ab-af99-e50350b5898b-20200110211134\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test85b08563-b15f-4202-a0bc-f2bc2df2c71a-20200107053335\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test88aac268-c087-4481-b78e-99b920784a33-20200101084853\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test88dbd442-a8cc-4874-81a0-d3192c61df62-20191001224544\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test894dfb75-a00f-4f0c-894c-cae1c9846ad3-20200105051803\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test8d09bf4d-ee63-4ab1-a986-a4b802418403-20200111051447\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test8d4d652b-4f05-4e99-93dd-78b9a36b5c78-20191003203755\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test8de64739-43d8-4f84-af65-fdb3d0885288-20200108053543\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test8e324c65-a51d-4eeb-9ec8-d5f8662dc041-20191228165107\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test8e564580-8e53-4300-85f1-bf7f31dd37ff-20200107013348\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test8f458ca7-8898-4d58-b93d-bfb0c3da028c-20200109050310\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test901cd6ca-5565-4552-a3de-d204d01935c0-20200108083706\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test907b39e5-4008-4b55-93a0-18e9697b9cf3-20200108053817\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test90c2be7c-d7ec-4abf-9fad-fef90fc3ef4d-20191004022234\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test922db678-6ee8-43d5-86ff-6a86e132d332-20200107085231\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test93b88aec-5277-4b1b-910c-7008e972ce91-20200107013304\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test95a9104b-6cba-42d8-82ff-cc37e5ac44db-20200108081723\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test96da1605-19e0-46eb-9ce0-53e840f5e2cb-20200101111729\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test996066b2-7d29-400f-929b-e343a21046f7-20191231151212\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test99663fff-ed21-4a91-9687-1a6da2abb033-20200106084508\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test9eb5efa5-c3c1-4c13-80a6-11f5eba67372-20200108144852\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testa3791896-b1fc-491e-ba0d-aefcd8d9e52a-20200105083503\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testa37ff709-a078-45a0-8187-41733df8e101-20200109050003\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testa4c5fe4e-936e-4be1-a612-a331aff54a8c-20200111105055\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testa59bce1d-e32c-423d-a86e-945d4aeb98b4-20200107051821\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testa604c059-8279-4f4d-a354-eec27222a06c-20200111051514\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testa71fefb1-0d9c-4fb3-8d3d-5dcd12d72b77-20200103103221\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testa748013d-c5a6-44f9-88eb-43167207c742-20200111051402\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testaab67022-4f2b-420d-a06a-2c4045110cdf-20191229033144\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testacab9541-280f-4491-9f49-ac57653f0a07-20200105083839\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testad298437-0349-4cc7-88a9-d8aabcba9df1-20191002233431\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testadd68286-f9e0-4ab1-a526-d8f3cf0f054e-20200105084128\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testade4c52b-18f5-4b67-8e93-945358ce4f7d-20191007234259\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testae421c1d-0211-4ef2-b372-564ce8ad484a-20200110104035\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testafbbd8bf-aec5-48bf-8fea-73fa15ccc315-20191001224727\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testb15148bf-78d2-42d4-ad08-b3ad8fb4b122-20200101084759\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testb4237708-3688-40ea-85a2-275c05f4d100-20191228083519\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testb799a18f-be45-4c5c-8438-163ac2e1f1e7-20191004190529\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testb7cee88a-e5ac-4af4-99c8-7247020b00c3-20200105051201\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testb7df0d9a-27c0-4ca5-b692-08dd90387b98-20200111083443\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testbbf6bf32-4bd0-4381-b8f7-2658f585df4d-20191003203846\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testbeea1376-166a-4b1a-8923-c907cc9737d9-20200107013336\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testbf9154e9-6166-48c2-86fe-1f331be606d7-20200107051823\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc0d7c3c5-23b8-489c-a5e0-ae87c681b696-20200101083539\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc193f31a-5186-4e93-84f6-0e4ab87b73c1-20200107052937\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc1c7e8dc-fa8c-47d9-8305-de6d1451b939-20200101085248\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc1d0c917-e2ae-430c-a2ca-383fb0fda046-20191007235839\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc23a3fbb-6e95-4c0d-94fc-c8ab14dddf1c-20191231151117\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc2697630-6247-411a-94b3-c2974ad8cbee-20191007195417\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc466b80f-670f-4383-89b8-44e0d509fa20-20191002000516\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc5c8d9bd-75fa-4db3-9f34-5d7b7098584c-20191003203851\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc8b6d14b-a5db-48e0-bfad-a2818d432bea-20200104083443\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc933efa8-c553-4b93-884f-b7221d9ca789-20191228083750\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testcbe8ab80-46ef-49b1-a7bb-4e3d6e50e49f-20200104050811\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testccc0b5e6-9b0d-451a-8ac4-6f4af293b913-20200106092645\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testcec64786-04b1-487c-80ec-050da646fb1c-20191005123412\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testd104a52f-eba2-401d-8e7f-a841c90f7712-20191228083553\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testd724cea4-0d3c-4539-b2ff-be08fb23a67e-20200107083714\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testd8e60bac-27ff-4fba-90b8-732c9c5ff91c-20191228083751\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testd99db4a5-7683-4584-89ad-fefd711de284-20191004190210\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testd9b4309a-67bc-4cd8-ac47-094cb20ca6aa-20200101090202\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testda3320e0-28f2-4146-a002-e06296362711-20191004190115\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testda714121-3240-4253-90c3-48c43f115c90-20200102083419\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testdb357558-60b4-4ee3-9ec3-ba22c5d827fb-20191004020617\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testdc7230e9-df6d-4edd-a57c-ef7e0432c463-20191002011345\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testdccb59de-436f-4935-bed6-2e677dcaf36a-20200109111802\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testde985b23-9333-4f6e-a5e8-82025a38b2af-20200102083510\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Teste271da3e-cbcb-4ee7-8770-f297f414451f-20191003015540\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Teste4070edd-aec0-455d-8a79-aecdb7170b6d-20191007234642\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Teste42f351a-4da0-4f0d-93e9-ef1d98e06659-20200108083633\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Teste66ca23c-f4bf-4eb3-8418-139364d19e7d-20200107062643\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Teste78b1ab2-1380-48ab-9923-0276cdb7198b-20191001224742\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Teste8607e14-b4f8-472a-bd5b-893b8d9612e6-20200112045941\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Teste980b80e-3add-42c0-bc98-a84020b2d128-20200108101640\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Tested79dba9-2d38-4ea9-a01c-56e94b30ca7a-20191007195447\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testee9dcf5f-f7c4-4192-a8f4-28e9bc7d0f7c-20191001225005\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testefbb340a-b68b-4200-872b-d05e7d29f92d-20191007195432\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testf1fc0559-6740-48dd-9501-2b933c731d52-20200103083458\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testf41dfc97-bb51-4fba-86ca-a6f2695c415a-20200107050834\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testf5784447-83ed-4c00-8764-ea0f932aafa2-20200106085748\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testf6128ef6-c13c-420e-8088-0710888ce88b-20200109050003\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testf863ab2c-ada9-4646-84c7-1f83a82375d7-20191229033226\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testfac552a7-418f-4baa-8f51-d199ceff5c68-20200103050817\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testfb7be054-5c15-494f-822c-b64f9a36e2f3-20200105051753\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testfc5c7585-6c9a-4aa4-a7c4-1223a94e00c7-20200104083552\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.FileServer.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.FileServer.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.FleetDiagnostics\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.FleetDiagnostics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.FleetDiagnostics.Dev\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.FleetDiagnostics.Dev\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Geneva\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Geneva\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.KeyVault\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.KeyVault\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.KeyVault.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.KeyVault.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.LabServices\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.LabServices\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.LabServices.test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.LabServices.test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.Agent\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.Agent\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.Dev\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.Dev\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.Dev.INT\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.Dev.INT\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.Dev.SCALE\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.Dev.SCALE\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.Dev.TEST\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.Dev.TEST\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.GuestHealth\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.GuestHealth\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.DEV\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.DEV\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.INT\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.INT\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.SCALE\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.SCALE\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.TEST\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.TEST\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.INT.Dev\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.INT.Dev\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.SCALE.Dev\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.SCALE.Dev\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.TEST.Dev\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.TEST.Dev\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.WorkloadInsights.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.WorkloadInsights.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.WorkloadInsightsTest.newnamespace\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.WorkloadInsightsTest.newnamespace\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.Workloads\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.Workloads\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.Workloads.Dev\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.Workloads.Dev\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitoring.DependencyAgent\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitoring.DependencyAgent\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitoring.DependencyAgent.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitoring.DependencyAgent.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Networking.DNS\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Networking.DNS\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Networking.SDN\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Networking.SDN\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.NetworkWatcher\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.NetworkWatcher\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.NetworkWatcher.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.NetworkWatcher.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.OpenSSH\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.OpenSSH\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Performance.Diagnostics\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Performance.Diagnostics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Performance.Diagnostics.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Performance.Diagnostics.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.RecoveryServices\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.RecoveryServices.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices.SiteRecovery\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.RecoveryServices.SiteRecovery\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices.SiteRecovery2\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.RecoveryServices.SiteRecovery2\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices.WorkloadBackup\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.RecoveryServices.WorkloadBackup\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices.WorkloadBackup.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.RecoveryServices.WorkloadBackup.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.AntimalwareSignature\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.AntimalwareSignature\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.AntimalwareSignature.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.AntimalwareSignature.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.Dsms\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.Dsms\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.Dsms.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.Dsms.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.LinuxAttestation\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.LinuxAttestation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.LinuxTestAttestation\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.LinuxTestAttestation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.Monitoring\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.Monitoring\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.Monitoring.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.Monitoring.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.Monitoring.Testing\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.Monitoring.Testing\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.TestWindowsAttestation\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.TestWindowsAttestation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.WindowsAttestation\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.WindowsAttestation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.WinTestAttestation\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.WinTestAttestation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Sentinel.DnsExtension.Dev\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Sentinel.DnsExtension.Dev\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.ServiceFabric.MC\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.ServiceFabric.MC\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.ServiceFabric.MC.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.ServiceFabric.MC.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.SiteRecovery.Stage\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.SiteRecovery.Stage\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.SiteRecovery.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.SiteRecovery.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.SiteRecovery2.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.SiteRecovery2.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Test.Identity\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Test.Identity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WindowsFabric.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WindowsFabric.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.ReleasePipeTest\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.ReleasePipeTest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.ReleasePipeTest.INT\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.ReleasePipeTest.INT\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.ReleasePipeTest.TEST\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.ReleasePipeTest.TEST\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test1\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test2\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test2\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test3\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test3\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test4\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test4\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test5\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test5\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test5.INT\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test5.INT\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test5.TEST\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test5.TEST\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.VincentTest\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.VincentTest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.VincentTest2\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.VincentTest2\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.VincentTest3\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.VincentTest3\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.VincentTest4\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.VincentTest4\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.TestTest\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.TestTest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.TestTest.INT\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.TestTest.INT\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.TestTest.TEST\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.TestTest.TEST\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Windows.ReleasePipeTest.INT\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Windows.ReleasePipeTest.INT\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Windows.ReleasePipeTest.TEST\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Windows.ReleasePipeTest.TEST\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoring\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoring.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoringTest\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoringTest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureData\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureData\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureData.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureData.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.Canary\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights.Canary\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.Corp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights.Corp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.Linux.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights.Linux.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.LinuxTest\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights.LinuxTest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.Meya0206\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights.Meya0206\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.MeyaCorp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights.MeyaCorp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.Testing\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights.Testing\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureSecurity.JITAccess\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureSecurity.JITAccess\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.CloudBackup.Workload.Extension\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.CloudBackup.Workload.Extension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.CloudBackup.Workload.Extension.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.CloudBackup.Workload.Extension.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Compute\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Compute.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Compute.TestSar\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute.TestSar\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.CPlat.Core\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.CPlat.Core\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.CPlat.Core.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.CPlat.Core.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Dcsswe.Extensions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Dcsswe.Extensions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.EnterpriseCloud.Monitoring\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.EnterpriseCloud.Monitoring.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.EnterpriseCloud.Monitoring.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Golive.Extensions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Golive.Extensions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.GuestConfig.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.GuestConfig.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.GuestConfiguration\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.GuestConfiguration\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.GuestConfiguration.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.GuestConfiguration.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.GuestConfiguration.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.GuestConfiguration.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.HpcCompute\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.HpcCompute\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.HpcCompute.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.HpcCompute.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.HpcPack\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.HpcPack\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Interceptor\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Interceptor\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.M365\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.M365\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.M365SecurityConfiguration.Kevlar.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.M365SecurityConfiguration.Kevlar.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.ManagedIdentity\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.ManagedIdentity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.ManagedServices\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.ManagedServices\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.ManagedServices.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.ManagedServices.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.MonitoringAgent.Extension\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.MonitoringAgent.Extension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Network\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Network\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.OSTCExtensions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.OSTCExtensions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.OSTCExtensions.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.OSTCExtensions.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.OSTCExtensions.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.OSTCExtensions.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.OSTCExtensions.Testing\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.OSTCExtensions.Testing\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Powershell\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Powershell\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Powershell.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Powershell.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Powershell.Test01\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Powershell.Test01\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.SecurityManagement.Kevlar\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.SecurityManagement.Kevlar\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Sentinel.AzureMonitorAgentExtensions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Sentinel.AzureMonitorAgentExtensions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.SoftwareUpdateManagement\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.SoftwareUpdateManagement\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.SoftwareUpdateManagement.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.SoftwareUpdateManagement.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.SqlServer.Managability.IaaS.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.SqlServer.Managability.IaaS.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.SqlServer.Management\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.SqlServer.Management\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.SqlServer.Management.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.SqlServer.Management.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.SystemCenter\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.SystemCenter\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.SystemCenter.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.SystemCenter.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Test.Azure.Workloads\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Test.Azure.Workloads\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.TestSqlServer.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.TestSqlServer.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.ETWTraceListenerService\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.Azure.ETWTraceListenerService\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.RemoteDebug\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.Azure.RemoteDebug\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.RemoteDebug.Json\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.Azure.RemoteDebug.Json\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.ServiceProfiler\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.ServiceProfiler\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.Services\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.Services\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.WindowsAzure.DevTest\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.WindowsAzure.DevTest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.WindowsAzure.DevTest.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.WindowsAzure.DevTest.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.WindowsAzure.RemoteDebug\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.WindowsAzure.RemoteDebug\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.WindowsAzure.Test.RemoteDebug\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.WindowsAzure.Test.RemoteDebug\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Windows.Azure.Extensions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Windows.Azure.Extensions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Windows.AzureRemoteApp.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Windows.AzureRemoteApp.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Windows.RemoteDesktop\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Windows.RemoteDesktop\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.WindowsAdminCenter\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.WindowsAdminCenter\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.WindowsAdminCenter.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.WindowsAdminCenter.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.WindowsAzure.Compute\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.WindowsAzure.Compute\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.WindowsAzure.Compute.test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.WindowsAzure.Compute.test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.WVD\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.WVD\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoftagciuk\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoftagciuk\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoftazurecituswarp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoftazurecituswarp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftAzureSiteRecovery\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftAzureSiteRecovery\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftBizTalkServer\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftBizTalkServer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftCBLMariner\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftCBLMariner\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoftcmotest\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoftcmotest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoftcorporation1602274591143\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoftcorporation1602274591143\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoftcorporation1620407702632\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoftcorporation1620407702632\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftDynamicsAX\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftDynamicsAX\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftDynamicsGP\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftDynamicsGP\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftDynamicsNAV\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftDynamicsNAV\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoftfarmbeats\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoftfarmbeats\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftHybridCloudStorage\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftHybridCloudStorage\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftOSTC\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftOSTC\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftPowerBI\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftPowerBI\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftRServer\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftRServer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftSharePoint\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftSharePoint\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftSQLServer\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftSQLServer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftTestLinuxPPS\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftTestLinuxPPS\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftVisualStudio\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftVisualStudio\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftWindowsDesktop\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsDesktop\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftWindowsServer\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsServer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftWindowsServerHPCPack\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsServerHPCPack\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft_iot_edge\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft_iot_edge\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft_javaeeonazure_test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft_javaeeonazure_test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microstrategy\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microstrategy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"midasolutions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/midasolutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"middleware\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/middleware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"midfin\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/midfin\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"midvision\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/midvision\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mihupcommunicationspvtltd1599046998010\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mihupcommunicationspvtltd1599046998010\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mindcti\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mindcti\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"minio\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/minio\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"miraclelinux\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/miraclelinux\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"miracl_linux\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/miracl_linux\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"miri-infotech-pvt-ltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/miri-infotech-pvt-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mistio1601460379393\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mistio1601460379393\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mobilab\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mobilab\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"modern-systems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/modern-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"modexblockchaindatabase\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/modexblockchaindatabase\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"monetdbsolutions1611751313758\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/monetdbsolutions1611751313758\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"monitorapp1579029852605\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/monitorapp1579029852605\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"monitorcomputersystemsltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/monitorcomputersystemsltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"moogsoft\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/moogsoft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"morpheus-data\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/morpheus-data\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"moviemasher\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/moviemasher\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mriisoftllc1579457820427\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mriisoftllc1579457820427\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"msopentech\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/msopentech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mtnfog\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mtnfog\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"multima1643619641681\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/multima1643619641681\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"multisoft-ab\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/multisoft-ab\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mvp-systems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mvp-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mwg_azure\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mwg_azure\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mxhero\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mxhero\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"my-com\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/my-com\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"myarchinc1614657280935\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/myarchinc1614657280935\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"narrativescience\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/narrativescience\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nasuni\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nasuni\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nasunicorporation\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nasunicorporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"navicloudrsoftwarepteltd1601967280369\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/navicloudrsoftwarepteltd1601967280369\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ncache\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ncache\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ncbi\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ncbi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ncomputingglobalinc1604353053068\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ncomputingglobalinc1604353053068\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ndl\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ndl\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ndstriyelotomasyonsistemlerisanvetica1623147454601\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ndstriyelotomasyonsistemlerisanvetica1623147454601\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nebbiolo-technologies-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nebbiolo-technologies-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nec-technologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nec-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nefelinetworks1591201080882\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nefelinetworks1591201080882\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"neo4j\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/neo4j\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"neos\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/neos\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"neowaybusinesssolutions-4956350\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/neowaybusinesssolutions-4956350\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netapp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netapp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netatwork\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netatwork\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netfoundryinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netfoundryinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netgate\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netgate\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netikus-net-ltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netikus-net-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netiq\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netiq\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netka\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netka\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netmail\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netmail\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netscout\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netscout\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netspi\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netspi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netsweeper\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netsweeper\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"networksexchangetechnologyltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/networksexchangetechnologyltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netwrix\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netwrix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netx\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netx\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"neusoft-neteye\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/neusoft-neteye\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"newegginc1646343565758\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/newegginc1646343565758\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"newnetcommunicationtechnologies1589991852134\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/newnetcommunicationtechnologies1589991852134\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"NewRelic.Infrastructure.Extensions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/NewRelic.Infrastructure.Extensions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"newtglobalconsultingllc1581492268566\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/newtglobalconsultingllc1581492268566\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nextronic-5290868\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nextronic-5290868\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nginxinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nginxinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nice-it-management-solutions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nice-it-management-solutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nicepeopleatwork\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nicepeopleatwork\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nilespartnersinc1617691698386\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nilespartnersinc1617691698386\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"niolabs-5229713\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/niolabs-5229713\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nirvatosoftwarepvtltd1601368706606\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nirvatosoftwarepvtltd1601368706606\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nodejsapi\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nodejsapi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"noianetworklimited1584098036197\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/noianetworklimited1584098036197\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nokiaofamericacorporation1591716055441\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nokiaofamericacorporation1591716055441\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"noobaa\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/noobaa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"norcominformationtechnologygmbhcokgaa\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/norcominformationtechnologygmbhcokgaa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"noricumcloudsolutions1600524477681\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/noricumcloudsolutions1600524477681\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"norsync\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/norsync\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"northbridge-secure\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/northbridge-secure\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nozominetworks1582208017986\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nozominetworks1582208017986\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nri\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nri\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ntegralinc1586961136942\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ntegralinc1586961136942\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ntt-data-intellilink-corporation\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ntt-data-intellilink-corporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nttdata\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nttdata\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nttltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nttltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nuco-networks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nuco-networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"numbersbelieve\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/numbersbelieve\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"numtrallcpublisher\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/numtrallcpublisher\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nuxeo\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nuxeo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nvidia\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nvidia\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"o2mc-real-time-data-platform\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/o2mc-real-time-data-platform\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"objectivity-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/objectivity-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"objectivity1595351622261\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/objectivity1595351622261\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"oceanblue-cloud\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/oceanblue-cloud\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"OctopusDeploy.Tentacle\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/OctopusDeploy.Tentacle\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"odix\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/odix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"odysseuscomputationalsolutions1630242118741\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/odysseuscomputationalsolutions1630242118741\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"odysseyconsultantsltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/odysseyconsultantsltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"officeatwork-ag\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/officeatwork-ag\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"omega-software\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/omega-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"onapsis\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/onapsis\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"oncore_cloud_services-4944214\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/oncore_cloud_services-4944214\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"onexgroup\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/onexgroup\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"onspecta\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/onspecta\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ontology\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ontology\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"onyx-point-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/onyx-point-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"op5\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/op5\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"open-connect-systems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/open-connect-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"opencell\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/opencell\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"openlinkswcom-pago\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/openlinkswcom-pago\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"OpenLogic\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/OpenLogic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"openrefactoryinc1620140917523\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/openrefactoryinc1620140917523\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"openshotstudiosllc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/openshotstudiosllc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"opentext\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/opentext\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"openvpn\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/openvpn\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"opslogix\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/opslogix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"opswatinc1619007967290\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/opswatinc1619007967290\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"optimitiveslu1618320281443\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/optimitiveslu1618320281443\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"option3\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/option3\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Oracle\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Oracle\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"oraylis\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/oraylis\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"oraylisbi\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/oraylisbi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"orbs-network\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/orbs-network\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"oriana\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/oriana\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"orientdb\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/orientdb\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"oroinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/oroinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"osirium-ltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/osirium-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"osisoft\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/osisoft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"osnexus\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/osnexus\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"outpost24\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/outpost24\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"outsystems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/outsystems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ovaledge1618392232783\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ovaledge1618392232783\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pachyderminc1585170006545\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pachyderminc1585170006545\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pacteratechnologiesinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pacteratechnologiesinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"paladionnetworkspvtltd1606120508449\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/paladionnetworkspvtltd1606120508449\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"paloaltonetworks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/paloaltonetworks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"panopta\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/panopta\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"panorama-necto\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/panorama-necto\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"panzura-file-system\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/panzura-file-system\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"parabole\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/parabole\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"paralaxiomtechnologiesprivatelimited1596433357886\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/paralaxiomtechnologiesprivatelimited1596433357886\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"parallels\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/parallels\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"parasoft\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/parasoft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"parkersoftwarelimited1609786657569\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/parkersoftwarelimited1609786657569\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"parsec-for-teams\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/parsec-for-teams\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pasifikciptamandiri\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pasifikciptamandiri\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"passlogy\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/passlogy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"paxata\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/paxata\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pcman\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pcman\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"peer-software-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/peer-software-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"penta-security-systems-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/penta-security-systems-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"percona\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/percona\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"perforce\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/perforce\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"periscope-tech-4791746\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/periscope-tech-4791746\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"piolinkinc1582849368309\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/piolinkinc1582849368309\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pivotal\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pivotal\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pixitmedia1591611150480\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pixitmedia1591611150480\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"plesk\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/plesk\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pmsoftwareinternational1603102514882\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pmsoftwareinternational1603102514882\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pnop\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pnop\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"polarityioinc1628691850891\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/polarityioinc1628691850891\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"portalarchitects\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/portalarchitects\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"portsysinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/portsysinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"postgres-pro\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/postgres-pro\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"powerbireach\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/powerbireach\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"prakshepprivatelimited1619949827900\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/prakshepprivatelimited1619949827900\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"prasselsrl1645470739547\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/prasselsrl1645470739547\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"prestashop\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/prestashop\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"prestige_informatique-1090178\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/prestige_informatique-1090178\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"prime-strategy\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/prime-strategy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"primekey\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/primekey\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"primestrategynewyorkinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/primestrategynewyorkinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pro-vision\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pro-vision\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"probityinc1581611299345\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/probityinc1581611299345\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"process-one\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/process-one\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"processgold\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/processgold\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"procomputers\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/procomputers\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"procomputerssrl1594239153814\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/procomputerssrl1594239153814\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"profecia\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/profecia\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Profiler.AgentOrchestrationRefactor.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Profiler.AgentOrchestrationRefactor.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Profiler.Master.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Profiler.Master.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"profisee\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/profisee\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"progelspa\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/progelspa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"progresssoftwarecorporation\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/progresssoftwarecorporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"proliongmbh1628175060372\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/proliongmbh1628175060372\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"protegrityusainc1627404648458\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/protegrityusainc1627404648458\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"protiviti\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/protiviti\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"proventeq\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/proventeq\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ptc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ptc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ptsecurity\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ptsecurity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pulse-secure\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pulse-secure\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pulsesecuretechnologies1638179500151\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pulsesecuretechnologies1638179500151\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"puppet\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/puppet\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"puppeteersoy1601024480557\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/puppeteersoy1601024480557\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"PuppetLabs\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/PuppetLabs\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"PuppetLabs.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/PuppetLabs.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"purestorageinc1578960262525\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/purestorageinc1578960262525\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pydio\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pydio\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pyramidanalytics\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pyramidanalytics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"qlik\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/qlik\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"qnapsystemsinc1601352084032\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/qnapsystemsinc1601352084032\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"qore-technologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/qore-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"qs-solutions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/qs-solutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Qualys\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Qualys\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Qualys.LinuxAgent.GrayLabel\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Qualys.LinuxAgent.GrayLabel\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Qualys.WindowsAgent.GrayLabel\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Qualys.WindowsAgent.GrayLabel\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"qualysguard\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/qualysguard\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"quasardb\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/quasardb\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"qubole-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/qubole-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"quest\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/quest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"racknap\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/racknap\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rackwareinc1619403669255\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rackwareinc1619403669255\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"radiant-logic\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/radiant-logic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"radware\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/radware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"raincode\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/raincode\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rancher\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rancher\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rapid7\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rapid7\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Rapid7.InsightPlatform\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Rapid7.InsightPlatform\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rapidminer\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rapidminer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"raynetgmbh\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/raynetgmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"readymind\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/readymind\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"realm\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/realm\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"reblaze\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/reblaze\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"RedHat\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/RedHat\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"redhat-rhel\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/redhat-rhel\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"redpoint-global\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/redpoint-global\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"refactr\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/refactr\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"refinitiv\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/refinitiv\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"refinitiv-4807503\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/refinitiv-4807503\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"relevance-lab\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/relevance-lab\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"remotelearner\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/remotelearner\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"res\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/res\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"resco\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/resco\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"researchgraphptyltd1598252602128\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/researchgraphptyltd1598252602128\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"resemblesystems1582780358300\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/resemblesystems1582780358300\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"responder-corp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/responder-corp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"revolution-analytics\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/revolution-analytics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rhcsolutions1586957910818\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rhcsolutions1586957910818\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ribboncommunications\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ribboncommunications\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"RightScaleLinux\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/RightScaleLinux\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"RightScaleWindowsServer\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/RightScaleWindowsServer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rimo3\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rimo3\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ringsoftwareresearchanddevelopmentinc1578946072257\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ringsoftwareresearchanddevelopmentinc1578946072257\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"riverbed\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/riverbed\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"RiverbedTechnology\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/RiverbedTechnology\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rmgtechnologiesinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rmgtechnologiesinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rocketml\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rocketml\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rocketsoftware\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rocketsoftware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rohdeschwarzcybersecuritygmbh\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rohdeschwarzcybersecuritygmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rohdeschwarzcybersecuritysas\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rohdeschwarzcybersecuritysas\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"roktech\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/roktech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rsa-security-llc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rsa-security-llc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rsk-labs\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rsk-labs\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rstudio-5237862\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rstudio-5237862\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rtts\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rtts\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rubrik-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rubrik-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"runecastsolutionslimited1614186396822\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/runecastsolutionslimited1614186396822\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"s2ix\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/s2ix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"saama\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/saama\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"saasame-limited\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/saasame-limited\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"safesoftwareinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/safesoftwareinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"safeticatechnologiessro\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/safeticatechnologiessro\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"safetica_technologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/safetica_technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"safetoopen1585013318137\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/safetoopen1585013318137\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"saltsecurity1583264186232\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/saltsecurity1583264186232\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"saltsecurity1583264669848\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/saltsecurity1583264669848\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"saltstack\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/saltstack\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"samsung-sds\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/samsung-sds\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"samsungelectronics1632860607983\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/samsungelectronics1632860607983\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"samsungsds-cello\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/samsungsds-cello\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"samsungsds_sdbe\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/samsungsds_sdbe\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sandhatatechnologieslimited1615753438737\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sandhatatechnologieslimited1615753438737\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sap\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sap\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sapphiretechnologieslimited1611758579346\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sapphiretechnologieslimited1611758579346\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sas-institute-560503\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sas-institute-560503\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"scaidata\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/scaidata\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"scalearc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/scalearc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"scalegrid\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/scalegrid\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"scality\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/scality\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"schrockeninc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/schrockeninc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sci\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sci\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sciencelogicinc1622565452194\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sciencelogicinc1622565452194\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"scientiamobile\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/scientiamobile\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"scontainug1595751515785\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/scontainug1595751515785\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"scubaanalytics\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/scubaanalytics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"scylladb1631195365807\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/scylladb1631195365807\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"seaqserviciossas1579029207572\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/seaqserviciossas1579029207572\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"searchbloxsoftwareinc1594309037050\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/searchbloxsoftwareinc1594309037050\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"secureworks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/secureworks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"securityonionsolutions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/securityonionsolutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"securityonionsolutionsllc1624649205155\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/securityonionsolutionsllc1624649205155\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"securosis\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/securosis\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"seequentltd1585781751395\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/seequentltd1585781751395\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"semarchy\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/semarchy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"semperis\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/semperis\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"senhasegura\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/senhasegura\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"SentinelOne.LinuxExtension\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/SentinelOne.LinuxExtension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"SentinelOne.LinuxExtension.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/SentinelOne.LinuxExtension.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"SentinelOne.WindowsExtension\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/SentinelOne.WindowsExtension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"SentinelOne.WindowsExtension.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/SentinelOne.WindowsExtension.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sentriumsl\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sentriumsl\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sentry51llc1616686725591\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sentry51llc1616686725591\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sentryone\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sentryone\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sepiosystems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sepiosystems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"seppmailag\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/seppmailag\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"seraumo1620002807288\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/seraumo1620002807288\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"service-control-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/service-control-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sesamesoftwareinc1622125191447\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sesamesoftwareinc1622125191447\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"shadow-soft\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/shadow-soft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"shareshiftneeraj.test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/shareshiftneeraj.test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sightapps\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sightapps\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"signal-sciences\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/signal-sciences\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"silk\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/silk\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"silver-peak-systems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/silver-peak-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"simmachinesinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/simmachinesinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"simontelephonics\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/simontelephonics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"simpledatalabsinc1635791235920\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/simpledatalabsinc1635791235920\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"simplifierag\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/simplifierag\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"simpligov\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/simpligov\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sinefa\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sinefa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sinequa\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sinequa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sinequa1588262295885\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sinequa1588262295885\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"singapore-telecommunications-limited\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/singapore-telecommunications-limited\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sios_datakeeper\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sios_datakeeper\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"siportalinc1581539156321\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/siportalinc1581539156321\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sisenseltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sisenseltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Site24x7\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Site24x7\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sktelecom\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sktelecom\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"skyarc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/skyarc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"skyboxsecurity1585187406404\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/skyboxsecurity1585187406404\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"skylarkcloud\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/skylarkcloud\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"smartbearsoftware\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/smartbearsoftware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"smartmessage-autoflow\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/smartmessage-autoflow\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"snaplogic\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/snaplogic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"snapt-adc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/snapt-adc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"snips\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/snips\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"soasta\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/soasta\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"softnas\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/softnas\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"softwarecentralas1642687699196\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/softwarecentralas1642687699196\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"softwarehut\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/softwarehut\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"softwebsolutions-4518310\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/softwebsolutions-4518310\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"soha\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/soha\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"solanolabs\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/solanolabs\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"solar-security\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/solar-security\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"solarwinds\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/solarwinds\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"solvedevops1643693563360\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/solvedevops1643693563360\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sonicwall-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sonicwall-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sophos\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sophos\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sourcegearllc1616101262784\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sourcegearllc1616101262784\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"south-river-technologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/south-river-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"southrivertech1586314123192\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/southrivertech1586314123192\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"spacecurve\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/spacecurve\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"spaceliftinc1625499025476\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/spaceliftinc1625499025476\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"spagobi\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/spagobi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sparklinglogic\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sparklinglogic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"spectralcorelimited1619779004178\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/spectralcorelimited1619779004178\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"spektra\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/spektra\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sphere3d\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sphere3d\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"spideroakinc1588278690933\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/spideroakinc1588278690933\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"spirentcommunications1594084187199\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/spirentcommunications1594084187199\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"splunk\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/splunk\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sproutenetworks1593456311717\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sproutenetworks1593456311717\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sqlstream\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sqlstream\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"squadratechnologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/squadratechnologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"squaredup\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/squaredup\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"src-solution\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/src-solution\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ssh2appsltd1621588462715\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ssh2appsltd1621588462715\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stackato-platform-as-a-service\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stackato-platform-as-a-service\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Stackify.LinuxAgent.Extension\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Stackify.LinuxAgent.Extension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stackstorm\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stackstorm\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"startekfingerprintmatch\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/startekfingerprintmatch\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"startisolucoesemtecnologialtda1635263523201\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/startisolucoesemtecnologialtda1635263523201\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"starwind\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/starwind\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"StatusMonitor2.Diagnostics.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/StatusMonitor2.Diagnostics.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"StatusReport.Diagnostics.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/StatusReport.Diagnostics.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stealthbits\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stealthbits\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"steelhive\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/steelhive\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stonebondtechnologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stonebondtechnologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stonefly\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stonefly\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"storage_made_easy\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/storage_made_easy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stormshield\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stormshield\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"storone1594045543980\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/storone1594045543980\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"storreduce\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/storreduce\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"storwarespzoo1611743234900\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/storwarespzoo1611743234900\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"strangebee1595948424730\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/strangebee1595948424730\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"strataidentity1608323708170\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/strataidentity1608323708170\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stratis-group-ltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stratis-group-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stratodesk1611152769936\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stratodesk1611152769936\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stratumn\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stratumn\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"streamsets\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/streamsets\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"striim\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/striim\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stromasys\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stromasys\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"strongboxitllc1594816423884\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/strongboxitllc1594816423884\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"su\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/su\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"subscription.test.krsh\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/subscription.test.krsh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sumologic\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sumologic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sunatogmbh\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sunatogmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sunday\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sunday\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"SUSE\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/SUSE\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"SUSE.AzureHybridBenefit\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/SUSE.AzureHybridBenefit\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"swoopanalytics\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/swoopanalytics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sycom-technologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sycom-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sycompatechnologycompanyinc1588192103892\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sycompatechnologycompanyinc1588192103892\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.CloudWorkloadProtection\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.CloudWorkloadProtection\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.CloudWorkloadProtection.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.CloudWorkloadProtection.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.CloudWorkloadProtection.TestOnStage\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.CloudWorkloadProtection.TestOnStage\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.QA\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.QA\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.staging\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.staging\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.test.ru2.latest\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.test.ru2.latest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.test.ru2final\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.test.ru2final\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.test.ru2latest1\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.test.ru2latest1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.test.ru4mp1\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.test.ru4mp1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.test.ru4mp1.latest\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.test.ru4mp1.latest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.test.ru4mp1final\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.test.ru4mp1final\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"symanteccorporation\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/symanteccorporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"symantectest1\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/symantectest1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"synack-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/synack-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"syncfusion\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/syncfusion\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"syncfusionbigdataplatfor\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/syncfusionbigdataplatfor\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"synechron-technologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/synechron-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"synergixinc1585256339250\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/synergixinc1585256339250\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"synnexcorp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/synnexcorp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"syscomcomputerengineeringco1583913200141\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/syscomcomputerengineeringco1583913200141\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"syte\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/syte\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tableau\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tableau\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tactic\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tactic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"talari-networks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/talari-networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"talena-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/talena-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"talend\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/talend\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"talon\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/talon\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tamrinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tamrinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"taniuminc1646329360287\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/taniuminc1646329360287\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"targit\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/targit\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tata_communications\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tata_communications\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tavanttechnologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tavanttechnologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tavendo\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tavendo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"te-systems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/te-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"techdivision\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/techdivision\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"techlatest\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/techlatest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"technicheltd1606969724100\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/technicheltd1606969724100\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tecknolab\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tecknolab\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"telepat\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/telepat\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"teloscorporation\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/teloscorporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tempered-networks-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tempered-networks-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tenable\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tenable\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tensormakecorpdbaoneclickai1608247756082\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tensormakecorpdbaoneclickai1608247756082\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tenthlineinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tenthlineinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"teradata\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/teradata\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Teradici\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Teradici\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"teramindinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/teramindinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.Gemalto.SafeNet.ProtectV\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.Gemalto.SafeNet.ProtectV\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.Gemalto.SafeNet.ProtectV.Azure\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.Gemalto.SafeNet.ProtectV.Azure\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.HP.AppDefender\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.HP.AppDefender\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.Microsoft.VisualStudio.Services\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.Microsoft.VisualStudio.Services\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.NJHP.AppDefender\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.NJHP.AppDefender\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.SqlServer.Managability\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.SqlServer.Managability\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.SqlServer.Management\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.SqlServer.Management\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.SqlServer.Management.corext\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.SqlServer.Management.corext\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test1.NJHP.AppDefender\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test1.NJHP.AppDefender\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test3.Microsoft.VisualStudio.Services\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test3.Microsoft.VisualStudio.Services\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"testable1603721901088\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/testable1603721901088\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"testpro\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/testpro\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"test_test_mix3pptest0011614206850774\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/test_test_mix3pptest0011614206850774\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"test_test_mneela1628617140187\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/test_test_mneela1628617140187\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"test_test_pmc2pc1\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/test_test_pmc2pc1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thales-vormetric\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thales-vormetric\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thalesdiscplusainc1596561677238\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thalesdiscplusainc1596561677238\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thedatavaluefactoryltd1589348815922\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thedatavaluefactoryltd1589348815922\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thefreebsdfoundation\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thefreebsdfoundation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thehdfgroup1616725197741\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thehdfgroup1616725197741\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"theumag1596442827072\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/theumag1596442827072\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"things-board\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/things-board\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thingscareinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thingscareinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thinprintgmbh\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thinprintgmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thorntechnologiesllc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thorntechnologiesllc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thoughtspot-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thoughtspot-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"threatintelligenceptyltd1586824172898\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/threatintelligenceptyltd1586824172898\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tibco-software\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tibco-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tidal-migrations\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tidal-migrations\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tidalmediainc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tidalmediainc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tig\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tig\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tiger-technology\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tiger-technology\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tigergraph\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tigergraph\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"timextender\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/timextender\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tmaxsoft\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tmaxsoft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tmaxsoft1608612658335\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tmaxsoft1608612658335\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tomsawyersoftwarecorp1613579206342\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tomsawyersoftwarecorp1613579206342\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"topicus\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/topicus\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"torusware\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/torusware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"totemo\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/totemo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"townsend-security\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/townsend-security\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"transcendinformationinc1609918445926\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/transcendinformationinc1609918445926\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"transientxinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/transientxinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"transvault\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/transvault\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"trendmicro\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/trendmicro\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"TrendMicro.DeepSecurity.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/TrendMicro.DeepSecurity.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"TrendMicro.PortalProtect\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/TrendMicro.PortalProtect\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tresorit\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tresorit\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"trifacta\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/trifacta\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tripleblindinc1615730179432\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tripleblindinc1615730179432\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tripwire-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tripwire-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"truata1612259728221\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/truata1612259728221\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"truestack\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/truestack\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tryonsolutionsinc1596650621083\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tryonsolutionsinc1596650621083\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tsa-public-service\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tsa-public-service\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tunnelbiz\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tunnelbiz\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"turbonet\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/turbonet\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"turbonet1581982683964\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/turbonet1581982683964\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"twistlock\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/twistlock\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"typesafe\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/typesafe\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ubeeko\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ubeeko\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ubercloud\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ubercloud\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"uipath-5054924\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/uipath-5054924\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ulex\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ulex\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"unifi-software\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/unifi-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"unifiedstreaming1598872291606\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/unifiedstreaming1598872291606\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"uniprint-net\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/uniprint-net\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"unitrends\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/unitrends\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"unnisoft\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/unnisoft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"unravel-data\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/unravel-data\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"unscramblsingaporepteltd-4999260\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/unscramblsingaporepteltd-4999260\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"untangle\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/untangle\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"upsolver1594188634150\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/upsolver1594188634150\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"usp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/usp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"valohai\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/valohai\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"valtix\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/valtix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"varmournetworks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/varmournetworks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"varnish\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/varnish\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vastdata1650451243415\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vastdata1650451243415\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vatacommunicationsinc1581644208717\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vatacommunicationsinc1581644208717\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vaultive-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vaultive-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vbot\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vbot\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vcinityinc1587684340545\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vcinityinc1587684340545\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vectraaiinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vectraaiinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"veeam\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/veeam\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"velocitydb-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/velocitydb-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"velocloud\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/velocloud\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vembutechnologiespvtltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vembutechnologiespvtltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vemn\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vemn\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"veritas\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/veritas\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"versanetworks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/versanetworks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"versasec\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/versasec\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vidispine\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vidispine\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vidizmo\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vidizmo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vigyanlabs-innovations-pvt-ltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vigyanlabs-innovations-pvt-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vigyanlabsinc1581413676614\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vigyanlabsinc1581413676614\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"viptela\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/viptela\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vircom\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vircom\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"virtamovecorp1615909247913\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/virtamovecorp1615909247913\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"virtualpulsesro1607008728942\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/virtualpulsesro1607008728942\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"virtuozzointernationalgmbh1626704951469\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/virtuozzointernationalgmbh1626704951469\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"visualknowledgeshare1591795776234\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/visualknowledgeshare1591795776234\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"visualsoft-center\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/visualsoft-center\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vizixiotplatformretail001\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vizixiotplatformretail001\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vmlabinc1613642184700\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vmlabinc1613642184700\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vmturbo\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vmturbo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vmware-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vmware-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vnomicinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vnomicinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"voiceelements\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/voiceelements\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"voleatechgmbh1636966911943\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/voleatechgmbh1636966911943\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"volterraedgeservices\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/volterraedgeservices\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Vormetric\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Vormetric\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vscconsultingptyltd1608535888097\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vscconsultingptyltd1608535888097\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vte\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vte\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vu-llc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vu-llc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vunetsystemsprivatelimited1646716402131\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vunetsystemsprivatelimited1646716402131\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vyulabsinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vyulabsinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"WAD2AI.Diagnostics.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/WAD2AI.Diagnostics.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"WAD2EventHub.Diagnostics.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/WAD2EventHub.Diagnostics.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wallarm\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wallarm\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wallix\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wallix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wandisco\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wandisco\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wanos\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wanos\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wanpath-dba-myworkdrive\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wanpath-dba-myworkdrive\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wardy-it-solutions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wardy-it-solutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"warewolf-esb\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/warewolf-esb\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"watchguard-technologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/watchguard-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"webaloinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/webaloinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"websense-apmailpe\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/websense-apmailpe\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"websoft9inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/websoft9inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wedoitllc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wedoitllc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"westernoceansoftwaresprivatelimited\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/westernoceansoftwaresprivatelimited\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wherescapesoftware\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wherescapesoftware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"winmagic_securedoc_cloudvm\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/winmagic_securedoc_cloudvm\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wintellisys-inc-4561600\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wintellisys-inc-4561600\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"witfooinc1590167223060\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/witfooinc1590167223060\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wmspanel\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wmspanel\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wood1595864497589\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wood1595864497589\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"workshare-technology\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/workshare-technology\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"world-programming\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/world-programming\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"worxogo\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/worxogo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wowza\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wowza\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"xcontentptyltd-1329748\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/xcontentptyltd-1329748\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"xendata-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/xendata-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"xfinityinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/xfinityinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"xilinx\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/xilinx\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"xoriantcorporationazxteam1\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/xoriantcorporationazxteam1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"xoriantsolutionspvtltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/xoriantsolutionspvtltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"xtremedata\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/xtremedata\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"xyzrd-group-ou\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/xyzrd-group-ou\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"yaseensmarket1645449809728\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/yaseensmarket1645449809728\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"yellowfin\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/yellowfin\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"yellowfininternationalptyltd1616363974066\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/yellowfininternationalptyltd1616363974066\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"yokogawarentalleasecorporation\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/yokogawarentalleasecorporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"your-shop-online\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/your-shop-online\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"z1\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/z1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"z4it-aps\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/z4it-aps\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zabbix\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zabbix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zend\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zend\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zenterasystemsinc1605292453288\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zenterasystemsinc1605292453288\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zerodown_software\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zerodown_software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zerto\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zerto\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zettalane_systems-5254599\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zettalane_systems-5254599\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zevenet\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zevenet\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zilliz\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zilliz\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zoomdata\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zoomdata\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zscaler\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zscaler\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zscaler1579058425289\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zscaler1579058425289\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zultysinc1596831546163\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zultysinc1596831546163\"\r\n }\r\n]", "StatusCode": 200 }, { @@ -2105,13 +2105,13 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "21a92e22-7dff-4d3e-ab32-1bd85a11d4bf" + "61c5f3cc-b073-4c59-bfd7-56e6c7e0bfea" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" @@ -2125,35 +2125,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/ListVMExtensionTypes3Min;17999,Microsoft.Compute/ListVMExtensionTypes30Min;22499" + "Microsoft.Compute/ListVMExtensionTypes3Min;17999,Microsoft.Compute/ListVMExtensionTypes30Min;22498" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "1f3ad383-bb66-4279-b2a8-fbbcd093a7e3_132790716023156260" + "1f3ad383-bb66-4279-b2a8-fbbcd093a7e3_132836337789816871" ], "x-ms-request-id": [ - "34724990-b654-4c33-8a68-6cea3186305e" + "baa74f72-2c53-48fe-9daa-c25e47a78a8f" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11990" ], "x-ms-correlation-request-id": [ - "24d5d483-6453-4e11-8111-18091cc292f1" + "c31efae2-1200-471a-9dc7-6bc87f78486e" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220414T060659Z:24d5d483-6453-4e11-8111-18091cc292f1" + "WESTINDIA:20220517T054821Z:c31efae2-1200-471a-9dc7-6bc87f78486e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 14 Apr 2022 06:06:59 GMT" + "Tue, 17 May 2022 05:48:20 GMT" ], "Content-Length": [ "1089" @@ -2175,13 +2175,13 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "21a92e22-7dff-4d3e-ab32-1bd85a11d4bf" + "61c5f3cc-b073-4c59-bfd7-56e6c7e0bfea" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" @@ -2195,35 +2195,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/ListVMExtensions3Min;9999,Microsoft.Compute/ListVMExtensions30Min;21999" + "Microsoft.Compute/ListVMExtensions3Min;9999,Microsoft.Compute/ListVMExtensions30Min;21996" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "1f3ad383-bb66-4279-b2a8-fbbcd093a7e3_132790716023156260" + "1f3ad383-bb66-4279-b2a8-fbbcd093a7e3_132836337789816871" ], "x-ms-request-id": [ - "7f1b8f8d-6fac-48a7-9426-b3d8b2183a59" + "5dc9aa74-c137-4508-ab68-08eac3e227a9" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11989" ], "x-ms-correlation-request-id": [ - "8e8be712-5360-4e87-9887-9aa78a130ab8" + "2691c915-0f8d-4ce9-a54b-cd2eb2df3deb" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220414T060659Z:8e8be712-5360-4e87-9887-9aa78a130ab8" + "WESTINDIA:20220517T054821Z:2691c915-0f8d-4ce9-a54b-cd2eb2df3deb" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 14 Apr 2022 06:06:59 GMT" + "Tue, 17 May 2022 05:48:21 GMT" ], "Content-Length": [ "1856" @@ -2239,19 +2239,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGffa8be76/providers/Microsoft.Compute/virtualMachines/PSTestVMffa8b0/extensions/BGInfo?api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZmZhOGJlNzYvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy9QU1Rlc3RWTWZmYThiMC9leHRlbnNpb25zL0JHSW5mbz9hcGktdmVyc2lvbj0yMDIxLTExLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG66dc4625/providers/Microsoft.Compute/virtualMachines/PSTestVM66dc40/extensions/BGInfo?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNjZkYzQ2MjUvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy9QU1Rlc3RWTTY2ZGM0MC9leHRlbnNpb25zL0JHSW5mbz9hcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"BGInfo\",\r\n \"typeHandlerVersion\": \"2.2\",\r\n \"autoUpgradeMinorVersion\": true\r\n },\r\n \"location\": \"southeastasia\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "21a92e22-7dff-4d3e-ab32-1bd85a11d4bf" + "61c5f3cc-b073-4c59-bfd7-56e6c7e0bfea" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" @@ -2271,19 +2271,19 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Compute/locations/southeastasia/operations/c2bef46d-b4eb-48ba-9517-685e3535b1d5?p=e484ceca-6435-4a7f-b125-3d82e6b12014&api-version=2021-11-01" + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Compute/locations/southeastasia/operations/6f43f175-1e49-4537-b511-be28b2e2ecdd?p=e484ceca-6435-4a7f-b125-3d82e6b12014&api-version=2021-11-01" ], "Azure-AsyncNotification": [ "Enabled" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/UpdateVM3Min;239,Microsoft.Compute/UpdateVM30Min;1199" + "Microsoft.Compute/UpdateVM3Min;239,Microsoft.Compute/UpdateVM30Min;1198" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c2bef46d-b4eb-48ba-9517-685e3535b1d5" + "6f43f175-1e49-4537-b511-be28b2e2ecdd" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -2293,16 +2293,16 @@ "1198" ], "x-ms-correlation-request-id": [ - "e9b13076-0e37-40e3-bd44-99b8578d77b4" + "e3a1fe9b-513d-4e80-b619-7e55ca79bc9e" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220414T060701Z:e9b13076-0e37-40e3-bd44-99b8578d77b4" + "WESTINDIA:20220517T054822Z:e3a1fe9b-513d-4e80-b619-7e55ca79bc9e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 14 Apr 2022 06:07:01 GMT" + "Tue, 17 May 2022 05:48:22 GMT" ], "Content-Length": [ "484" @@ -2314,20 +2314,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"BGInfo\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGffa8be76/providers/Microsoft.Compute/virtualMachines/PSTestVMffa8b0/extensions/BGInfo\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Creating\",\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"BGInfo\",\r\n \"typeHandlerVersion\": \"2.2\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"BGInfo\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG66dc4625/providers/Microsoft.Compute/virtualMachines/PSTestVM66dc40/extensions/BGInfo\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Creating\",\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"BGInfo\",\r\n \"typeHandlerVersion\": \"2.2\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Compute/locations/southeastasia/operations/c2bef46d-b4eb-48ba-9517-685e3535b1d5?p=e484ceca-6435-4a7f-b125-3d82e6b12014&api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2MyYmVmNDZkLWI0ZWItNDhiYS05NTE3LTY4NWUzNTM1YjFkNT9wPWU0ODRjZWNhLTY0MzUtNGE3Zi1iMTI1LTNkODJlNmIxMjAxNCZhcGktdmVyc2lvbj0yMDIxLTExLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Compute/locations/southeastasia/operations/6f43f175-1e49-4537-b511-be28b2e2ecdd?p=e484ceca-6435-4a7f-b125-3d82e6b12014&api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzZmNDNmMTc1LTFlNDktNDUzNy1iNTExLWJlMjhiMmUyZWNkZD9wPWU0ODRjZWNhLTY0MzUtNGE3Zi1iMTI1LTNkODJlNmIxMjAxNCZhcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "21a92e22-7dff-4d3e-ab32-1bd85a11d4bf" + "61c5f3cc-b073-4c59-bfd7-56e6c7e0bfea" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" @@ -2341,32 +2341,32 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperation3Min;14995,Microsoft.Compute/GetOperation30Min;29995" + "Microsoft.Compute/GetOperation3Min;14995,Microsoft.Compute/GetOperation30Min;29984" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "1693abac-2a3e-4b91-8d05-e79b99c72316" + "c45a2fb8-f2f5-496b-96ed-78d23bcf7692" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11988" ], "x-ms-correlation-request-id": [ - "b7f7e5cc-e36c-43da-ac5b-703fc8fa4250" + "3fa67e03-9bc3-48e7-87b3-2fdf58643db6" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220414T060732Z:b7f7e5cc-e36c-43da-ac5b-703fc8fa4250" + "WESTINDIA:20220517T054853Z:3fa67e03-9bc3-48e7-87b3-2fdf58643db6" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 14 Apr 2022 06:07:31 GMT" + "Tue, 17 May 2022 05:48:52 GMT" ], "Content-Length": [ "134" @@ -2378,20 +2378,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-04-14T11:37:01.1552995+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"c2bef46d-b4eb-48ba-9517-685e3535b1d5\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2022-05-17T11:18:22.4165574+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"6f43f175-1e49-4537-b511-be28b2e2ecdd\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Compute/locations/southeastasia/operations/c2bef46d-b4eb-48ba-9517-685e3535b1d5?p=e484ceca-6435-4a7f-b125-3d82e6b12014&api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2MyYmVmNDZkLWI0ZWItNDhiYS05NTE3LTY4NWUzNTM1YjFkNT9wPWU0ODRjZWNhLTY0MzUtNGE3Zi1iMTI1LTNkODJlNmIxMjAxNCZhcGktdmVyc2lvbj0yMDIxLTExLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Compute/locations/southeastasia/operations/6f43f175-1e49-4537-b511-be28b2e2ecdd?p=e484ceca-6435-4a7f-b125-3d82e6b12014&api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzZmNDNmMTc1LTFlNDktNDUzNy1iNTExLWJlMjhiMmUyZWNkZD9wPWU0ODRjZWNhLTY0MzUtNGE3Zi1iMTI1LTNkODJlNmIxMjAxNCZhcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "21a92e22-7dff-4d3e-ab32-1bd85a11d4bf" + "61c5f3cc-b073-4c59-bfd7-56e6c7e0bfea" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" @@ -2405,32 +2405,32 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperation3Min;14995,Microsoft.Compute/GetOperation30Min;29994" + "Microsoft.Compute/GetOperation3Min;14994,Microsoft.Compute/GetOperation30Min;29983" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e7d02091-c309-49ae-88b4-ee775b264ef1" + "1b00578c-b3b6-4173-8212-125388a11dd8" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11987" ], "x-ms-correlation-request-id": [ - "1c7e06b3-4e8f-4ace-86f9-da634d7df0b2" + "109c1df4-7abf-476e-8f1c-cb9f10e0ce66" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220414T060802Z:1c7e06b3-4e8f-4ace-86f9-da634d7df0b2" + "WESTINDIA:20220517T054923Z:109c1df4-7abf-476e-8f1c-cb9f10e0ce66" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 14 Apr 2022 06:08:02 GMT" + "Tue, 17 May 2022 05:49:23 GMT" ], "Content-Length": [ "134" @@ -2442,20 +2442,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-04-14T11:37:01.1552995+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"c2bef46d-b4eb-48ba-9517-685e3535b1d5\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2022-05-17T11:18:22.4165574+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"6f43f175-1e49-4537-b511-be28b2e2ecdd\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Compute/locations/southeastasia/operations/c2bef46d-b4eb-48ba-9517-685e3535b1d5?p=e484ceca-6435-4a7f-b125-3d82e6b12014&api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2MyYmVmNDZkLWI0ZWItNDhiYS05NTE3LTY4NWUzNTM1YjFkNT9wPWU0ODRjZWNhLTY0MzUtNGE3Zi1iMTI1LTNkODJlNmIxMjAxNCZhcGktdmVyc2lvbj0yMDIxLTExLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Compute/locations/southeastasia/operations/6f43f175-1e49-4537-b511-be28b2e2ecdd?p=e484ceca-6435-4a7f-b125-3d82e6b12014&api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzZmNDNmMTc1LTFlNDktNDUzNy1iNTExLWJlMjhiMmUyZWNkZD9wPWU0ODRjZWNhLTY0MzUtNGE3Zi1iMTI1LTNkODJlNmIxMjAxNCZhcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "21a92e22-7dff-4d3e-ab32-1bd85a11d4bf" + "61c5f3cc-b073-4c59-bfd7-56e6c7e0bfea" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" @@ -2469,32 +2469,32 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperation3Min;14994,Microsoft.Compute/GetOperation30Min;29993" + "Microsoft.Compute/GetOperation3Min;14994,Microsoft.Compute/GetOperation30Min;29982" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "1d10f54c-ba68-4061-a3a0-66bb70e8ec2d" + "d5581f5c-10f6-4254-8c6b-67e5cef08932" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11986" ], "x-ms-correlation-request-id": [ - "b75b8535-bb1b-460b-a6e3-53452615e4cb" + "b43cb7d4-c68b-408f-9509-fa2f957f59d2" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220414T060832Z:b75b8535-bb1b-460b-a6e3-53452615e4cb" + "WESTINDIA:20220517T054953Z:b43cb7d4-c68b-408f-9509-fa2f957f59d2" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 14 Apr 2022 06:08:31 GMT" + "Tue, 17 May 2022 05:49:52 GMT" ], "Content-Length": [ "134" @@ -2506,20 +2506,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-04-14T11:37:01.1552995+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"c2bef46d-b4eb-48ba-9517-685e3535b1d5\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2022-05-17T11:18:22.4165574+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"6f43f175-1e49-4537-b511-be28b2e2ecdd\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Compute/locations/southeastasia/operations/c2bef46d-b4eb-48ba-9517-685e3535b1d5?p=e484ceca-6435-4a7f-b125-3d82e6b12014&api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2MyYmVmNDZkLWI0ZWItNDhiYS05NTE3LTY4NWUzNTM1YjFkNT9wPWU0ODRjZWNhLTY0MzUtNGE3Zi1iMTI1LTNkODJlNmIxMjAxNCZhcGktdmVyc2lvbj0yMDIxLTExLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Compute/locations/southeastasia/operations/6f43f175-1e49-4537-b511-be28b2e2ecdd?p=e484ceca-6435-4a7f-b125-3d82e6b12014&api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzZmNDNmMTc1LTFlNDktNDUzNy1iNTExLWJlMjhiMmUyZWNkZD9wPWU0ODRjZWNhLTY0MzUtNGE3Zi1iMTI1LTNkODJlNmIxMjAxNCZhcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "21a92e22-7dff-4d3e-ab32-1bd85a11d4bf" + "61c5f3cc-b073-4c59-bfd7-56e6c7e0bfea" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" @@ -2533,32 +2533,32 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperation3Min;14993,Microsoft.Compute/GetOperation30Min;29991" + "Microsoft.Compute/GetOperation3Min;14993,Microsoft.Compute/GetOperation30Min;29980" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "7c0f185c-d3ad-4db0-bbda-ab16fade56cd" + "d2339bf4-c307-4eed-937c-d2e5de516cea" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "11985" ], "x-ms-correlation-request-id": [ - "ece86afb-8dcc-415e-aa3a-3ed4bab2b05b" + "09a9b270-4692-4558-880c-a90aac7abb73" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220414T060902Z:ece86afb-8dcc-415e-aa3a-3ed4bab2b05b" + "WESTINDIA:20220517T055023Z:09a9b270-4692-4558-880c-a90aac7abb73" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 14 Apr 2022 06:09:02 GMT" + "Tue, 17 May 2022 05:50:23 GMT" ], "Content-Length": [ "134" @@ -2570,20 +2570,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-04-14T11:37:01.1552995+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"c2bef46d-b4eb-48ba-9517-685e3535b1d5\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2022-05-17T11:18:22.4165574+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"6f43f175-1e49-4537-b511-be28b2e2ecdd\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Compute/locations/southeastasia/operations/c2bef46d-b4eb-48ba-9517-685e3535b1d5?p=e484ceca-6435-4a7f-b125-3d82e6b12014&api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2MyYmVmNDZkLWI0ZWItNDhiYS05NTE3LTY4NWUzNTM1YjFkNT9wPWU0ODRjZWNhLTY0MzUtNGE3Zi1iMTI1LTNkODJlNmIxMjAxNCZhcGktdmVyc2lvbj0yMDIxLTExLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Compute/locations/southeastasia/operations/6f43f175-1e49-4537-b511-be28b2e2ecdd?p=e484ceca-6435-4a7f-b125-3d82e6b12014&api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzZmNDNmMTc1LTFlNDktNDUzNy1iNTExLWJlMjhiMmUyZWNkZD9wPWU0ODRjZWNhLTY0MzUtNGE3Zi1iMTI1LTNkODJlNmIxMjAxNCZhcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "21a92e22-7dff-4d3e-ab32-1bd85a11d4bf" + "61c5f3cc-b073-4c59-bfd7-56e6c7e0bfea" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" @@ -2597,32 +2597,32 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperation3Min;14993,Microsoft.Compute/GetOperation30Min;29990" + "Microsoft.Compute/GetOperation3Min;14992,Microsoft.Compute/GetOperation30Min;29979" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f3058e50-29f0-40eb-94db-eebc3973a105" + "b2fb5435-3e1f-42ea-8589-8a0533d8e715" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "11984" ], "x-ms-correlation-request-id": [ - "945a6277-1748-437a-99e6-d4a7af726d8b" + "5fe0512f-f92d-468e-98eb-5b9df1ba8212" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220414T060932Z:945a6277-1748-437a-99e6-d4a7af726d8b" + "WESTINDIA:20220517T055053Z:5fe0512f-f92d-468e-98eb-5b9df1ba8212" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 14 Apr 2022 06:09:31 GMT" + "Tue, 17 May 2022 05:50:53 GMT" ], "Content-Length": [ "184" @@ -2634,20 +2634,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-04-14T11:37:01.1552995+05:30\",\r\n \"endTime\": \"2022-04-14T11:39:19.2507467+05:30\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"c2bef46d-b4eb-48ba-9517-685e3535b1d5\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2022-05-17T11:18:22.4165574+05:30\",\r\n \"endTime\": \"2022-05-17T11:20:46.6807828+05:30\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"6f43f175-1e49-4537-b511-be28b2e2ecdd\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGffa8be76/providers/Microsoft.Compute/virtualMachines/PSTestVMffa8b0/extensions/BGInfo?api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZmZhOGJlNzYvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy9QU1Rlc3RWTWZmYThiMC9leHRlbnNpb25zL0JHSW5mbz9hcGktdmVyc2lvbj0yMDIxLTExLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG66dc4625/providers/Microsoft.Compute/virtualMachines/PSTestVM66dc40/extensions/BGInfo?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNjZkYzQ2MjUvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy9QU1Rlc3RWTTY2ZGM0MC9leHRlbnNpb25zL0JHSW5mbz9hcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "21a92e22-7dff-4d3e-ab32-1bd85a11d4bf" + "61c5f3cc-b073-4c59-bfd7-56e6c7e0bfea" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" @@ -2661,32 +2661,32 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/LowCostGet3Min;3996,Microsoft.Compute/LowCostGet30Min;31956" + "Microsoft.Compute/LowCostGet3Min;3977,Microsoft.Compute/LowCostGet30Min;31820" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "8baf4dbf-7f56-4c31-bbb9-bbba13fc4f54" + "e5d30dcf-7d5a-4bfb-922f-641de72f0c43" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" + "11983" ], "x-ms-correlation-request-id": [ - "51fe5d6a-d14a-4346-8316-f8e2806f009f" + "836d9f87-2ed0-41df-8461-8ac3c4a30c58" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220414T060932Z:51fe5d6a-d14a-4346-8316-f8e2806f009f" + "WESTINDIA:20220517T055053Z:836d9f87-2ed0-41df-8461-8ac3c4a30c58" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 14 Apr 2022 06:09:31 GMT" + "Tue, 17 May 2022 05:50:53 GMT" ], "Content-Length": [ "485" @@ -2698,23 +2698,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"BGInfo\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGffa8be76/providers/Microsoft.Compute/virtualMachines/PSTestVMffa8b0/extensions/BGInfo\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"BGInfo\",\r\n \"typeHandlerVersion\": \"2.2\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"BGInfo\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG66dc4625/providers/Microsoft.Compute/virtualMachines/PSTestVM66dc40/extensions/BGInfo\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"BGInfo\",\r\n \"typeHandlerVersion\": \"2.2\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGffa8be76/providers/Microsoft.RecoveryServices/vaults/PSTestRSVffa8be76?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZmZhOGJlNzYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZmZmE4YmU3Nj9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG66dc4625/providers/Microsoft.RecoveryServices/vaults/PSTestRSV66dc4625?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNjZkYzQ2MjUvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y2NmRjNDYyNT9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d6258e29-e1d8-4e7b-9174-4751992d5be3" + "538d9874-a830-4508-849b-468fcc067be5" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesClient/4.3.2.0" @@ -2731,13 +2731,13 @@ "gateway" ], "x-ms-request-id": [ - "5b55a584-198a-436f-a623-8b0a47368cc1" + "6904febd-9f5e-4af8-9d40-c39826a0ab1d" ], "x-ms-correlation-request-id": [ - "5b55a584-198a-436f-a623-8b0a47368cc1" + "6904febd-9f5e-4af8-9d40-c39826a0ab1d" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220414T060934Z:5b55a584-198a-436f-a623-8b0a47368cc1" + "JIOINDIAWEST:20220517T055054Z:6904febd-9f5e-4af8-9d40-c39826a0ab1d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2746,7 +2746,7 @@ "nosniff" ], "Date": [ - "Thu, 14 Apr 2022 06:09:34 GMT" + "Tue, 17 May 2022 05:50:54 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2758,23 +2758,23 @@ "239" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.RecoveryServices/vaults/PSTestRSVffa8be76' under resource group 'PSTestRGffa8be76' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.RecoveryServices/vaults/PSTestRSV66dc4625' under resource group 'PSTestRG66dc4625' 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/PSTestRGffa8be76/providers/Microsoft.RecoveryServices/vaults/PSTestRSVffa8be76?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZmZhOGJlNzYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZmZmE4YmU3Nj9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG66dc4625/providers/Microsoft.RecoveryServices/vaults/PSTestRSV66dc4625?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNjZkYzQ2MjUvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y2NmRjNDYyNT9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"southeastasia\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "90416110-9840-4ea1-a3e2-704a30faeb70" + "ec6786ed-f053-4a3a-a808-50d98c2c05db" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesClient/4.3.2.0" @@ -2797,10 +2797,10 @@ "nosniff" ], "x-ms-request-id": [ - "835e6952-e273-4035-96a4-d6afb38a3f39" + "2800e2a9-4ed7-41d0-b286-1bbd20ca1158" ], "x-ms-client-request-id": [ - "90416110-9840-4ea1-a3e2-704a30faeb70" + "ec6786ed-f053-4a3a-a808-50d98c2c05db" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2812,13 +2812,13 @@ "209" ], "x-ms-correlation-request-id": [ - "835e6952-e273-4035-96a4-d6afb38a3f39" + "2800e2a9-4ed7-41d0-b286-1bbd20ca1158" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220414T061026Z:835e6952-e273-4035-96a4-d6afb38a3f39" + "JIOINDIAWEST:20220517T055115Z:2800e2a9-4ed7-41d0-b286-1bbd20ca1158" ], "Date": [ - "Thu, 14 Apr 2022 06:10:26 GMT" + "Tue, 17 May 2022 05:51:14 GMT" ], "Content-Length": [ "518" @@ -2830,26 +2830,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"location\": \"southeastasia\",\r\n \"name\": \"PSTestRSVffa8be76\",\r\n \"etag\": \"W/\\\"datetime'2022-04-14T06%3A10%3A25.8934064Z'\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateEndpointStateForBackup\": \"None\",\r\n \"privateEndpointStateForSiteRecovery\": \"None\",\r\n \"networkSettings\": {\r\n \"publicNetworkAccess\": \"Enabled\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGffa8be76/providers/Microsoft.RecoveryServices/vaults/PSTestRSVffa8be76\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"location\": \"southeastasia\",\r\n \"name\": \"PSTestRSV66dc4625\",\r\n \"etag\": \"W/\\\"datetime'2022-05-17T05%3A51%3A14.6058655Z'\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateEndpointStateForBackup\": \"None\",\r\n \"privateEndpointStateForSiteRecovery\": \"None\",\r\n \"networkSettings\": {\r\n \"publicNetworkAccess\": \"Enabled\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG66dc4625/providers/Microsoft.RecoveryServices/vaults/PSTestRSV66dc4625\",\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/PSTestRGffa8be76/providers/Microsoft.RecoveryServices/vaults/PSTestRSVffa8be76/backupconfig/vaultconfig?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZmZhOGJlNzYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZmZmE4YmU3Ni9iYWNrdXBjb25maWcvdmF1bHRjb25maWc/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG66dc4625/providers/Microsoft.RecoveryServices/vaults/PSTestRSV66dc4625/backupconfig/vaultconfig?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNjZkYzQ2MjUvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y2NmRjNDYyNS9iYWNrdXBjb25maWcvdmF1bHRjb25maWc/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "87bff9dd-5f12-4f53-b5c7-c0174da57506" + "cee07d36-50c8-443a-9411-b1b2b5222d05" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -2869,7 +2869,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-client-request-id": [ - "87bff9dd-5f12-4f53-b5c7-c0174da57506" + "cee07d36-50c8-443a-9411-b1b2b5222d05" ], "Server": [ "Microsoft-IIS/10.0" @@ -2881,13 +2881,13 @@ "149" ], "x-ms-correlation-request-id": [ - "569dedee-5aeb-456f-a875-d7552aea8cdc" + "dc87f75f-7367-4a4f-ba63-8a5894e12fb5" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220414T061028Z:569dedee-5aeb-456f-a875-d7552aea8cdc" + "JIOINDIAWEST:20220517T055117Z:dc87f75f-7367-4a4f-ba63-8a5894e12fb5" ], "Date": [ - "Thu, 14 Apr 2022 06:10:27 GMT" + "Tue, 17 May 2022 05:51:17 GMT" ], "Content-Length": [ "380" @@ -2899,26 +2899,166 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGffa8be76/providers/Microsoft.RecoveryServices/vaults/PSTestRSVffa8be76/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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG66dc4625/providers/Microsoft.RecoveryServices/vaults/PSTestRSV66dc4625/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/PSTestRG66dc4625/providers/Microsoft.RecoveryServices/vaults/PSTestRSV66dc4625/backupResourceGuardProxies?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNjZkYzQ2MjUvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y2NmRjNDYyNS9iYWNrdXBSZXNvdXJjZUd1YXJkUHJveGllcz9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "cee07d36-50c8-443a-9411-b1b2b5222d05" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "111daee0-d6f2-4824-a282-c85516230570" + ], + "x-ms-client-request-id": [ + "cee07d36-50c8-443a-9411-b1b2b5222d05", + "cee07d36-50c8-443a-9411-b1b2b5222d05" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "111daee0-d6f2-4824-a282-c85516230570" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220517T055118Z:111daee0-d6f2-4824-a282-c85516230570" + ], + "Date": [ + "Tue, 17 May 2022 05:51:17 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/PSTestRG66dc4625/providers/Microsoft.RecoveryServices/vaults/PSTestRSV66dc4625/backupResourceGuardProxies?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNjZkYzQ2MjUvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y2NmRjNDYyNS9iYWNrdXBSZXNvdXJjZUd1YXJkUHJveGllcz9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c314f8fc-b1eb-4f2f-b598-b326110d6acc" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "44e7928e-b613-4b2a-9eae-6d323b93d089" + ], + "x-ms-client-request-id": [ + "c314f8fc-b1eb-4f2f-b598-b326110d6acc", + "c314f8fc-b1eb-4f2f-b598-b326110d6acc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "44e7928e-b613-4b2a-9eae-6d323b93d089" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220517T055215Z:44e7928e-b613-4b2a-9eae-6d323b93d089" + ], + "Date": [ + "Tue, 17 May 2022 05:52:15 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/PSTestRGffa8be76/providers/Microsoft.RecoveryServices/vaults/PSTestRSVffa8be76/backupconfig/vaultconfig?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZmZhOGJlNzYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZmZmE4YmU3Ni9iYWNrdXBjb25maWcvdmF1bHRjb25maWc/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG66dc4625/providers/Microsoft.RecoveryServices/vaults/PSTestRSV66dc4625/backupconfig/vaultconfig?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNjZkYzQ2MjUvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y2NmRjNDYyNS9iYWNrdXBjb25maWcvdmF1bHRjb25maWc/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "PATCH", "RequestBody": "{\r\n \"properties\": {\r\n \"enhancedSecurityState\": \"Enabled\",\r\n \"softDeleteFeatureState\": \"Disabled\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "87bff9dd-5f12-4f53-b5c7-c0174da57506" + "cee07d36-50c8-443a-9411-b1b2b5222d05" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2938,11 +3078,11 @@ "nosniff" ], "x-ms-request-id": [ - "8d9d33b1-936b-40da-9bcb-bac7e544cc7b" + "b8c80b96-3048-4ed6-a388-44eb829c2834" ], "x-ms-client-request-id": [ - "87bff9dd-5f12-4f53-b5c7-c0174da57506", - "87bff9dd-5f12-4f53-b5c7-c0174da57506" + "cee07d36-50c8-443a-9411-b1b2b5222d05", + "cee07d36-50c8-443a-9411-b1b2b5222d05" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2957,13 +3097,13 @@ "1199" ], "x-ms-correlation-request-id": [ - "8d9d33b1-936b-40da-9bcb-bac7e544cc7b" + "b8c80b96-3048-4ed6-a388-44eb829c2834" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220414T061029Z:8d9d33b1-936b-40da-9bcb-bac7e544cc7b" + "JIOINDIAWEST:20220517T055119Z:b8c80b96-3048-4ed6-a388-44eb829c2834" ], "Date": [ - "Thu, 14 Apr 2022 06:10:29 GMT" + "Tue, 17 May 2022 05:51:19 GMT" ], "Content-Length": [ "381" @@ -2975,26 +3115,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGffa8be76/providers/Microsoft.RecoveryServices/vaults/PSTestRSVffa8be76/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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG66dc4625/providers/Microsoft.RecoveryServices/vaults/PSTestRSV66dc4625/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/PSTestRGffa8be76/providers/Microsoft.RecoveryServices/vaults/PSTestRSVffa8be76/backupPolicies/DefaultPolicy?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZmZhOGJlNzYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZmZmE4YmU3Ni9iYWNrdXBQb2xpY2llcy9EZWZhdWx0UG9saWN5P2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG66dc4625/providers/Microsoft.RecoveryServices/vaults/PSTestRSV66dc4625/backupPolicies/DefaultPolicy?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNjZkYzQ2MjUvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y2NmRjNDYyNS9iYWNrdXBQb2xpY2llcy9EZWZhdWx0UG9saWN5P2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "52341020-3a1d-4e1d-a610-f6c88fc5ded2" + "03009100-717c-478a-a1a5-6a71c7805145" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -3008,11 +3148,11 @@ "nosniff" ], "x-ms-request-id": [ - "46562eed-8132-4bbe-ba48-9c3d9c198192" + "d062c725-b091-4e8b-905f-ea014a2eadfe" ], "x-ms-client-request-id": [ - "52341020-3a1d-4e1d-a610-f6c88fc5ded2", - "52341020-3a1d-4e1d-a610-f6c88fc5ded2" + "03009100-717c-478a-a1a5-6a71c7805145", + "03009100-717c-478a-a1a5-6a71c7805145" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3027,13 +3167,13 @@ "149" ], "x-ms-correlation-request-id": [ - "46562eed-8132-4bbe-ba48-9c3d9c198192" + "d062c725-b091-4e8b-905f-ea014a2eadfe" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220414T061034Z:46562eed-8132-4bbe-ba48-9c3d9c198192" + "JIOINDIAWEST:20220517T055124Z:d062c725-b091-4e8b-905f-ea014a2eadfe" ], "Date": [ - "Thu, 14 Apr 2022 06:10:34 GMT" + "Tue, 17 May 2022 05:51:24 GMT" ], "Content-Length": [ "762" @@ -3045,26 +3185,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGffa8be76/providers/Microsoft.RecoveryServices/vaults/PSTestRSVffa8be76/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 \"2022-04-14T16:00:00Z\"\r\n ],\r\n \"scheduleWeeklyFrequency\": 0\r\n },\r\n \"retentionPolicy\": {\r\n \"retentionPolicyType\": \"LongTermRetentionPolicy\",\r\n \"dailySchedule\": {\r\n \"retentionTimes\": [\r\n \"2022-04-14T16:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 30,\r\n \"durationType\": \"Days\"\r\n }\r\n }\r\n },\r\n \"instantRpRetentionRangeInDays\": 2,\r\n \"timeZone\": \"UTC\",\r\n \"protectedItemsCount\": 0\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG66dc4625/providers/Microsoft.RecoveryServices/vaults/PSTestRSV66dc4625/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 \"2022-05-17T15: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 \"2022-05-17T15:30:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 30,\r\n \"durationType\": \"Days\"\r\n }\r\n }\r\n },\r\n \"instantRpRetentionRangeInDays\": 2,\r\n \"timeZone\": \"UTC\",\r\n \"protectedItemsCount\": 0\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGffa8be76/providers/Microsoft.RecoveryServices/vaults/PSTestRSVffa8be76/backupPolicies/DefaultPolicy?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZmZhOGJlNzYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZmZmE4YmU3Ni9iYWNrdXBQb2xpY2llcy9EZWZhdWx0UG9saWN5P2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG66dc4625/providers/Microsoft.RecoveryServices/vaults/PSTestRSV66dc4625/backupPolicies/DefaultPolicy?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNjZkYzQ2MjUvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y2NmRjNDYyNS9iYWNrdXBQb2xpY2llcy9EZWZhdWx0UG9saWN5P2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "59365f93-4e69-4e5e-a4ae-d88105102b05" + "363e58fe-4848-43de-8780-677b9de52903" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -3078,11 +3218,11 @@ "nosniff" ], "x-ms-request-id": [ - "9e9edf7f-b06f-4aec-8f30-c9611813a858" + "62417d5a-20a7-4cdb-b1bf-d373b7da75a1" ], "x-ms-client-request-id": [ - "59365f93-4e69-4e5e-a4ae-d88105102b05", - "59365f93-4e69-4e5e-a4ae-d88105102b05" + "363e58fe-4848-43de-8780-677b9de52903", + "363e58fe-4848-43de-8780-677b9de52903" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3097,13 +3237,13 @@ "148" ], "x-ms-correlation-request-id": [ - "9e9edf7f-b06f-4aec-8f30-c9611813a858" + "62417d5a-20a7-4cdb-b1bf-d373b7da75a1" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220414T061303Z:9e9edf7f-b06f-4aec-8f30-c9611813a858" + "JIOINDIAWEST:20220517T055213Z:62417d5a-20a7-4cdb-b1bf-d373b7da75a1" ], "Date": [ - "Thu, 14 Apr 2022 06:13:02 GMT" + "Tue, 17 May 2022 05:52:12 GMT" ], "Content-Length": [ "762" @@ -3115,26 +3255,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGffa8be76/providers/Microsoft.RecoveryServices/vaults/PSTestRSVffa8be76/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 \"2022-04-14T16:00:00Z\"\r\n ],\r\n \"scheduleWeeklyFrequency\": 0\r\n },\r\n \"retentionPolicy\": {\r\n \"retentionPolicyType\": \"LongTermRetentionPolicy\",\r\n \"dailySchedule\": {\r\n \"retentionTimes\": [\r\n \"2022-04-14T16:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 30,\r\n \"durationType\": \"Days\"\r\n }\r\n }\r\n },\r\n \"instantRpRetentionRangeInDays\": 2,\r\n \"timeZone\": \"UTC\",\r\n \"protectedItemsCount\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG66dc4625/providers/Microsoft.RecoveryServices/vaults/PSTestRSV66dc4625/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 \"2022-05-17T15: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 \"2022-05-17T15:30:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 30,\r\n \"durationType\": \"Days\"\r\n }\r\n }\r\n },\r\n \"instantRpRetentionRangeInDays\": 2,\r\n \"timeZone\": \"UTC\",\r\n \"protectedItemsCount\": 1\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGffa8be76/providers/Microsoft.RecoveryServices/vaults/PSTestRSVffa8be76/backupPolicies/DefaultPolicy?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZmZhOGJlNzYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZmZmE4YmU3Ni9iYWNrdXBQb2xpY2llcy9EZWZhdWx0UG9saWN5P2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG66dc4625/providers/Microsoft.RecoveryServices/vaults/PSTestRSV66dc4625/backupPolicies/DefaultPolicy?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNjZkYzQ2MjUvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y2NmRjNDYyNS9iYWNrdXBQb2xpY2llcy9EZWZhdWx0UG9saWN5P2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "58fc110d-1315-4e1c-85e3-24defd024877" + "4dade367-b6fc-4a5d-bb9e-567b5eeda6a8" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -3148,11 +3288,11 @@ "nosniff" ], "x-ms-request-id": [ - "c26dfbcc-9629-4ea4-8b17-251a961cba30" + "70614790-1142-4813-8615-1c31715b17c5" ], "x-ms-client-request-id": [ - "58fc110d-1315-4e1c-85e3-24defd024877", - "58fc110d-1315-4e1c-85e3-24defd024877" + "4dade367-b6fc-4a5d-bb9e-567b5eeda6a8", + "4dade367-b6fc-4a5d-bb9e-567b5eeda6a8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3167,13 +3307,13 @@ "147" ], "x-ms-correlation-request-id": [ - "c26dfbcc-9629-4ea4-8b17-251a961cba30" + "70614790-1142-4813-8615-1c31715b17c5" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220414T061510Z:c26dfbcc-9629-4ea4-8b17-251a961cba30" + "JIOINDIAWEST:20220517T055414Z:70614790-1142-4813-8615-1c31715b17c5" ], "Date": [ - "Thu, 14 Apr 2022 06:15:09 GMT" + "Tue, 17 May 2022 05:54:13 GMT" ], "Content-Length": [ "762" @@ -3185,26 +3325,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGffa8be76/providers/Microsoft.RecoveryServices/vaults/PSTestRSVffa8be76/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 \"2022-04-14T16:00:00Z\"\r\n ],\r\n \"scheduleWeeklyFrequency\": 0\r\n },\r\n \"retentionPolicy\": {\r\n \"retentionPolicyType\": \"LongTermRetentionPolicy\",\r\n \"dailySchedule\": {\r\n \"retentionTimes\": [\r\n \"2022-04-14T16:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 30,\r\n \"durationType\": \"Days\"\r\n }\r\n }\r\n },\r\n \"instantRpRetentionRangeInDays\": 2,\r\n \"timeZone\": \"UTC\",\r\n \"protectedItemsCount\": 0\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG66dc4625/providers/Microsoft.RecoveryServices/vaults/PSTestRSV66dc4625/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 \"2022-05-17T15: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 \"2022-05-17T15:30:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 30,\r\n \"durationType\": \"Days\"\r\n }\r\n }\r\n },\r\n \"instantRpRetentionRangeInDays\": 2,\r\n \"timeZone\": \"UTC\",\r\n \"protectedItemsCount\": 0\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGffa8be76/providers/Microsoft.RecoveryServices/vaults/PSTestRSVffa8be76/backupProtectableItems?$filter=backupManagementType%20eq%20'AzureIaasVM'&api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZmZhOGJlNzYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZmZmE4YmU3Ni9iYWNrdXBQcm90ZWN0YWJsZUl0ZW1zPyRmaWx0ZXI9YmFja3VwTWFuYWdlbWVudFR5cGUlMjBlcSUyMCdBenVyZUlhYXNWTScmYXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG66dc4625/providers/Microsoft.RecoveryServices/vaults/PSTestRSV66dc4625/backupProtectableItems?$filter=backupManagementType%20eq%20'AzureIaasVM'&api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNjZkYzQ2MjUvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y2NmRjNDYyNS9iYWNrdXBQcm90ZWN0YWJsZUl0ZW1zPyRmaWx0ZXI9YmFja3VwTWFuYWdlbWVudFR5cGUlMjBlcSUyMCdBenVyZUlhYXNWTScmYXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f9814d9e-689d-4c3a-a7cf-8c3ff16bc3b2" + "b3c62c3b-3878-437e-baf6-934b0470c1a4" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -3218,11 +3358,11 @@ "nosniff" ], "x-ms-request-id": [ - "02ce3671-99fe-4b90-9fb5-e841e21103d4" + "359507b4-d61b-4c79-bd8e-f8f1cce97178" ], "x-ms-client-request-id": [ - "f9814d9e-689d-4c3a-a7cf-8c3ff16bc3b2", - "f9814d9e-689d-4c3a-a7cf-8c3ff16bc3b2" + "b3c62c3b-3878-437e-baf6-934b0470c1a4", + "b3c62c3b-3878-437e-baf6-934b0470c1a4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3237,16 +3377,16 @@ "149" ], "x-ms-correlation-request-id": [ - "02ce3671-99fe-4b90-9fb5-e841e21103d4" + "359507b4-d61b-4c79-bd8e-f8f1cce97178" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220414T061035Z:02ce3671-99fe-4b90-9fb5-e841e21103d4" + "JIOINDIAWEST:20220517T055125Z:359507b4-d61b-4c79-bd8e-f8f1cce97178" ], "Date": [ - "Thu, 14 Apr 2022 06:10:34 GMT" + "Tue, 17 May 2022 05:51:25 GMT" ], "Content-Length": [ - "7962" + "7033" ], "Content-Type": [ "application/json" @@ -3255,26 +3395,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGffa8be76/providers/Microsoft.RecoveryServices/vaults/PSTestRSVffa8be76/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;akneema;akneema-hana-vm/protectableItems/vm;iaasvmcontainerv2;akneema;akneema-hana-vm\",\r\n \"name\": \"iaasvmcontainerv2;akneema;akneema-hana-vm\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems\",\r\n \"properties\": {\r\n \"virtualMachineId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/akneema/providers/Microsoft.Compute/virtualMachines/akneema-hana-vm\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"resourceGroup\": \"akneema\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"protectableItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"friendlyName\": \"akneema-hana-vm\",\r\n \"protectionState\": \"NotProtected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGffa8be76/providers/Microsoft.RecoveryServices/vaults/PSTestRSVffa8be76/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;containerautoprotection;shrja-2019/protectableItems/vm;iaasvmcontainerv2;containerautoprotection;shrja-2019\",\r\n \"name\": \"iaasvmcontainerv2;containerautoprotection;shrja-2019\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems\",\r\n \"properties\": {\r\n \"virtualMachineId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/ContainerAutoProtection/providers/Microsoft.Compute/virtualMachines/shrja-2019\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"resourceGroup\": \"ContainerAutoProtection\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"protectableItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"friendlyName\": \"shrja-2019\",\r\n \"protectionState\": \"NotProtected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGffa8be76/providers/Microsoft.RecoveryServices/vaults/PSTestRSVffa8be76/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;gesahoohanamsi-rg;gesahoohanasystemmsi/protectableItems/vm;iaasvmcontainerv2;gesahoohanamsi-rg;gesahoohanasystemmsi\",\r\n \"name\": \"iaasvmcontainerv2;gesahoohanamsi-rg;gesahoohanasystemmsi\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems\",\r\n \"properties\": {\r\n \"virtualMachineId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/gesahoohanamsi-rg/providers/Microsoft.Compute/virtualMachines/gesahoohanasystemmsi\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"resourceGroup\": \"gesahoohanamsi-rg\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"protectableItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"friendlyName\": \"gesahoohanasystemmsi\",\r\n \"protectionState\": \"NotProtected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGffa8be76/providers/Microsoft.RecoveryServices/vaults/PSTestRSVffa8be76/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrgffa8be76;pstestvmffa8b0/protectableItems/vm;iaasvmcontainerv2;pstestrgffa8be76;pstestvmffa8b0\",\r\n \"name\": \"iaasvmcontainerv2;pstestrgffa8be76;pstestvmffa8b0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems\",\r\n \"properties\": {\r\n \"virtualMachineId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGffa8be76/providers/Microsoft.Compute/virtualMachines/PSTestVMffa8b0\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"resourceGroup\": \"PSTestRGffa8be76\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"protectableItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"friendlyName\": \"PSTestVMffa8b0\",\r\n \"protectionState\": \"NotProtected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGffa8be76/providers/Microsoft.RecoveryServices/vaults/PSTestRSVffa8be76/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestwlrg1bca8;pstestwlvm1bca8/protectableItems/vm;iaasvmcontainerv2;pstestwlrg1bca8;pstestwlvm1bca8\",\r\n \"name\": \"iaasvmcontainerv2;pstestwlrg1bca8;pstestwlvm1bca8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems\",\r\n \"properties\": {\r\n \"virtualMachineId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/pstestwlRG1bca8/providers/Microsoft.Compute/virtualMachines/pstestwlvm1bca8\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"resourceGroup\": \"pstestwlRG1bca8\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"protectableItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"friendlyName\": \"pstestwlvm1bca8\",\r\n \"protectionState\": \"NotProtected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGffa8be76/providers/Microsoft.RecoveryServices/vaults/PSTestRSVffa8be76/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;shrja2008_group;shrja2008/protectableItems/vm;iaasvmcontainerv2;shrja2008_group;shrja2008\",\r\n \"name\": \"iaasvmcontainerv2;shrja2008_group;shrja2008\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems\",\r\n \"properties\": {\r\n \"virtualMachineId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/shrja2008_group/providers/Microsoft.Compute/virtualMachines/shrja2008\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"resourceGroup\": \"shrja2008_group\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"protectableItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"friendlyName\": \"shrja2008\",\r\n \"protectionState\": \"NotProtected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGffa8be76/providers/Microsoft.RecoveryServices/vaults/PSTestRSVffa8be76/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;shswain-rg-donotuse;dsdsdsad/protectableItems/vm;iaasvmcontainerv2;shswain-rg-donotuse;dsdsdsad\",\r\n \"name\": \"iaasvmcontainerv2;shswain-rg-donotuse;dsdsdsad\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems\",\r\n \"properties\": {\r\n \"virtualMachineId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/shswain-rg-donotuse/providers/Microsoft.Compute/virtualMachines/dsdsdsad\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"resourceGroup\": \"shswain-rg-donotuse\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"protectableItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"friendlyName\": \"dsdsdsad\",\r\n \"protectionState\": \"NotProtected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGffa8be76/providers/Microsoft.RecoveryServices/vaults/PSTestRSVffa8be76/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;shswain-rg-donotuse;iumjjkuui/protectableItems/vm;iaasvmcontainerv2;shswain-rg-donotuse;iumjjkuui\",\r\n \"name\": \"iaasvmcontainerv2;shswain-rg-donotuse;iumjjkuui\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems\",\r\n \"properties\": {\r\n \"virtualMachineId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/shswain-rg-donotuse/providers/Microsoft.Compute/virtualMachines/iumjjkuui\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"resourceGroup\": \"shswain-rg-donotuse\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"protectableItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"friendlyName\": \"iumjjkuui\",\r\n \"protectionState\": \"NotProtected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGffa8be76/providers/Microsoft.RecoveryServices/vaults/PSTestRSVffa8be76/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;sisi-rsv;sisi-mercury/protectableItems/vm;iaasvmcontainerv2;sisi-rsv;sisi-mercury\",\r\n \"name\": \"iaasvmcontainerv2;sisi-rsv;sisi-mercury\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems\",\r\n \"properties\": {\r\n \"virtualMachineId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/sisi-RSV/providers/Microsoft.Compute/virtualMachines/sisi-mercury\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"resourceGroup\": \"sisi-RSV\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"protectableItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"friendlyName\": \"sisi-mercury\",\r\n \"protectionState\": \"NotProtected\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG66dc4625/providers/Microsoft.RecoveryServices/vaults/PSTestRSV66dc4625/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;akneema;akneema-hana-vm/protectableItems/vm;iaasvmcontainerv2;akneema;akneema-hana-vm\",\r\n \"name\": \"iaasvmcontainerv2;akneema;akneema-hana-vm\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems\",\r\n \"properties\": {\r\n \"virtualMachineId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/akneema/providers/Microsoft.Compute/virtualMachines/akneema-hana-vm\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"resourceGroup\": \"akneema\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"protectableItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"friendlyName\": \"akneema-hana-vm\",\r\n \"protectionState\": \"NotProtected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG66dc4625/providers/Microsoft.RecoveryServices/vaults/PSTestRSV66dc4625/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;containerautoprotection;shrja-2019/protectableItems/vm;iaasvmcontainerv2;containerautoprotection;shrja-2019\",\r\n \"name\": \"iaasvmcontainerv2;containerautoprotection;shrja-2019\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems\",\r\n \"properties\": {\r\n \"virtualMachineId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/ContainerAutoProtection/providers/Microsoft.Compute/virtualMachines/shrja-2019\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"resourceGroup\": \"ContainerAutoProtection\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"protectableItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"friendlyName\": \"shrja-2019\",\r\n \"protectionState\": \"NotProtected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG66dc4625/providers/Microsoft.RecoveryServices/vaults/PSTestRSV66dc4625/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrg66dc4625;pstestvm66dc40/protectableItems/vm;iaasvmcontainerv2;pstestrg66dc4625;pstestvm66dc40\",\r\n \"name\": \"iaasvmcontainerv2;pstestrg66dc4625;pstestvm66dc40\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems\",\r\n \"properties\": {\r\n \"virtualMachineId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG66dc4625/providers/Microsoft.Compute/virtualMachines/PSTestVM66dc40\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"resourceGroup\": \"PSTestRG66dc4625\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"protectableItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"friendlyName\": \"PSTestVM66dc40\",\r\n \"protectionState\": \"NotProtected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG66dc4625/providers/Microsoft.RecoveryServices/vaults/PSTestRSV66dc4625/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestwlrg1bca8;pstestwlvm1bca8/protectableItems/vm;iaasvmcontainerv2;pstestwlrg1bca8;pstestwlvm1bca8\",\r\n \"name\": \"iaasvmcontainerv2;pstestwlrg1bca8;pstestwlvm1bca8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems\",\r\n \"properties\": {\r\n \"virtualMachineId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/pstestwlRG1bca8/providers/Microsoft.Compute/virtualMachines/pstestwlvm1bca8\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"resourceGroup\": \"pstestwlRG1bca8\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"protectableItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"friendlyName\": \"pstestwlvm1bca8\",\r\n \"protectionState\": \"NotProtected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG66dc4625/providers/Microsoft.RecoveryServices/vaults/PSTestRSV66dc4625/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;shrja2008_group;shrja2008/protectableItems/vm;iaasvmcontainerv2;shrja2008_group;shrja2008\",\r\n \"name\": \"iaasvmcontainerv2;shrja2008_group;shrja2008\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems\",\r\n \"properties\": {\r\n \"virtualMachineId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/shrja2008_group/providers/Microsoft.Compute/virtualMachines/shrja2008\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"resourceGroup\": \"shrja2008_group\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"protectableItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"friendlyName\": \"shrja2008\",\r\n \"protectionState\": \"NotProtected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG66dc4625/providers/Microsoft.RecoveryServices/vaults/PSTestRSV66dc4625/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;shswain-rg-donotuse;dsdsdsad/protectableItems/vm;iaasvmcontainerv2;shswain-rg-donotuse;dsdsdsad\",\r\n \"name\": \"iaasvmcontainerv2;shswain-rg-donotuse;dsdsdsad\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems\",\r\n \"properties\": {\r\n \"virtualMachineId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/shswain-rg-donotuse/providers/Microsoft.Compute/virtualMachines/dsdsdsad\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"resourceGroup\": \"shswain-rg-donotuse\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"protectableItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"friendlyName\": \"dsdsdsad\",\r\n \"protectionState\": \"NotProtected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG66dc4625/providers/Microsoft.RecoveryServices/vaults/PSTestRSV66dc4625/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;shswain-rg-donotuse;iumjjkuui/protectableItems/vm;iaasvmcontainerv2;shswain-rg-donotuse;iumjjkuui\",\r\n \"name\": \"iaasvmcontainerv2;shswain-rg-donotuse;iumjjkuui\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems\",\r\n \"properties\": {\r\n \"virtualMachineId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/shswain-rg-donotuse/providers/Microsoft.Compute/virtualMachines/iumjjkuui\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"resourceGroup\": \"shswain-rg-donotuse\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"protectableItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"friendlyName\": \"iumjjkuui\",\r\n \"protectionState\": \"NotProtected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG66dc4625/providers/Microsoft.RecoveryServices/vaults/PSTestRSV66dc4625/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;sisi-rsv;sisi-mercury/protectableItems/vm;iaasvmcontainerv2;sisi-rsv;sisi-mercury\",\r\n \"name\": \"iaasvmcontainerv2;sisi-rsv;sisi-mercury\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems\",\r\n \"properties\": {\r\n \"virtualMachineId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/sisi-RSV/providers/Microsoft.Compute/virtualMachines/sisi-mercury\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"resourceGroup\": \"sisi-RSV\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"protectableItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"friendlyName\": \"sisi-mercury\",\r\n \"protectionState\": \"NotProtected\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGffa8be76/providers/Microsoft.RecoveryServices/vaults/PSTestRSVffa8be76/backupFabrics/Azure/protectionContainers/IaasVMContainer%3Biaasvmcontainerv2%3Bpstestrgffa8be76%3Bpstestvmffa8b0/protectedItems/vm%3Biaasvmcontainerv2%3Bpstestrgffa8be76%3Bpstestvmffa8b0?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZmZhOGJlNzYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZmZmE4YmU3Ni9iYWNrdXBGYWJyaWNzL0F6dXJlL3Byb3RlY3Rpb25Db250YWluZXJzL0lhYXNWTUNvbnRhaW5lciUzQmlhYXN2bWNvbnRhaW5lcnYyJTNCcHN0ZXN0cmdmZmE4YmU3NiUzQnBzdGVzdHZtZmZhOGIwL3Byb3RlY3RlZEl0ZW1zL3ZtJTNCaWFhc3ZtY29udGFpbmVydjIlM0Jwc3Rlc3RyZ2ZmYThiZTc2JTNCcHN0ZXN0dm1mZmE4YjA/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG66dc4625/providers/Microsoft.RecoveryServices/vaults/PSTestRSV66dc4625/backupFabrics/Azure/protectionContainers/IaasVMContainer%3Biaasvmcontainerv2%3Bpstestrg66dc4625%3Bpstestvm66dc40/protectedItems/vm%3Biaasvmcontainerv2%3Bpstestrg66dc4625%3Bpstestvm66dc40?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNjZkYzQ2MjUvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y2NmRjNDYyNS9iYWNrdXBGYWJyaWNzL0F6dXJlL3Byb3RlY3Rpb25Db250YWluZXJzL0lhYXNWTUNvbnRhaW5lciUzQmlhYXN2bWNvbnRhaW5lcnYyJTNCcHN0ZXN0cmc2NmRjNDYyNSUzQnBzdGVzdHZtNjZkYzQwL3Byb3RlY3RlZEl0ZW1zL3ZtJTNCaWFhc3ZtY29udGFpbmVydjIlM0Jwc3Rlc3RyZzY2ZGM0NjI1JTNCcHN0ZXN0dm02NmRjNDA/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"protectedItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"sourceResourceId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGffa8be76/providers/Microsoft.Compute/virtualMachines/PSTestVMffa8b0\",\r\n \"policyId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGffa8be76/providers/Microsoft.RecoveryServices/vaults/PSTestRSVffa8be76/backupPolicies/DefaultPolicy\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"protectedItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"sourceResourceId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG66dc4625/providers/Microsoft.Compute/virtualMachines/PSTestVM66dc40\",\r\n \"policyId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG66dc4625/providers/Microsoft.RecoveryServices/vaults/PSTestRSV66dc4625/backupPolicies/DefaultPolicy\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "f9814d9e-689d-4c3a-a7cf-8c3ff16bc3b2" + "b3c62c3b-3878-437e-baf6-934b0470c1a4" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3291,23 +3431,23 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGffa8be76/providers/Microsoft.RecoveryServices/vaults/PSTestRSVffa8be76/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrgffa8be76;pstestvmffa8b0/protectedItems/vm;iaasvmcontainerv2;pstestrgffa8be76;pstestvmffa8b0/operationResults/abab25d3-fe01-4f36-aa62-341b9255ba55?api-version=2021-12-01" + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG66dc4625/providers/Microsoft.RecoveryServices/vaults/PSTestRSV66dc4625/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrg66dc4625;pstestvm66dc40/protectedItems/vm;iaasvmcontainerv2;pstestrg66dc4625;pstestvm66dc40/operationResults/8c58c7bf-a123-472a-9cad-136971af350d?api-version=2022-02-01" ], "Retry-After": [ "60" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGffa8be76/providers/Microsoft.RecoveryServices/vaults/PSTestRSVffa8be76/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrgffa8be76;pstestvmffa8b0/protectedItems/vm;iaasvmcontainerv2;pstestrgffa8be76;pstestvmffa8b0/operationsStatus/abab25d3-fe01-4f36-aa62-341b9255ba55?api-version=2021-12-01" + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG66dc4625/providers/Microsoft.RecoveryServices/vaults/PSTestRSV66dc4625/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrg66dc4625;pstestvm66dc40/protectedItems/vm;iaasvmcontainerv2;pstestrg66dc4625;pstestvm66dc40/operationsStatus/8c58c7bf-a123-472a-9cad-136971af350d?api-version=2022-02-01" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "f675cfaa-d555-4630-9591-56cebabe0222" + "095d1012-10f3-4cf6-8d2b-34b856d860cf" ], "x-ms-client-request-id": [ - "f9814d9e-689d-4c3a-a7cf-8c3ff16bc3b2", - "f9814d9e-689d-4c3a-a7cf-8c3ff16bc3b2" + "b3c62c3b-3878-437e-baf6-934b0470c1a4", + "b3c62c3b-3878-437e-baf6-934b0470c1a4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3319,13 +3459,13 @@ "1198" ], "x-ms-correlation-request-id": [ - "f675cfaa-d555-4630-9591-56cebabe0222" + "095d1012-10f3-4cf6-8d2b-34b856d860cf" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220414T061036Z:f675cfaa-d555-4630-9591-56cebabe0222" + "JIOINDIAWEST:20220517T055126Z:095d1012-10f3-4cf6-8d2b-34b856d860cf" ], "Date": [ - "Thu, 14 Apr 2022 06:10:35 GMT" + "Tue, 17 May 2022 05:51:26 GMT" ], "Expires": [ "-1" @@ -3338,22 +3478,22 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGffa8be76/providers/Microsoft.RecoveryServices/vaults/PSTestRSVffa8be76/backupOperations/abab25d3-fe01-4f36-aa62-341b9255ba55?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZmZhOGJlNzYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZmZmE4YmU3Ni9iYWNrdXBPcGVyYXRpb25zL2FiYWIyNWQzLWZlMDEtNGYzNi1hYTYyLTM0MWI5MjU1YmE1NT9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG66dc4625/providers/Microsoft.RecoveryServices/vaults/PSTestRSV66dc4625/backupOperations/8c58c7bf-a123-472a-9cad-136971af350d?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNjZkYzQ2MjUvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y2NmRjNDYyNS9iYWNrdXBPcGVyYXRpb25zLzhjNThjN2JmLWExMjMtNDcyYS05Y2FkLTEzNjk3MWFmMzUwZD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f9814d9e-689d-4c3a-a7cf-8c3ff16bc3b2" + "b3c62c3b-3878-437e-baf6-934b0470c1a4" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -3367,11 +3507,11 @@ "nosniff" ], "x-ms-request-id": [ - "70e25462-ffb6-4f95-980f-b922effd0ed8" + "cb886dc3-622c-4ccb-84f3-2c6ea080fc72" ], "x-ms-client-request-id": [ - "f9814d9e-689d-4c3a-a7cf-8c3ff16bc3b2", - "f9814d9e-689d-4c3a-a7cf-8c3ff16bc3b2" + "b3c62c3b-3878-437e-baf6-934b0470c1a4", + "b3c62c3b-3878-437e-baf6-934b0470c1a4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3386,13 +3526,13 @@ "149" ], "x-ms-correlation-request-id": [ - "70e25462-ffb6-4f95-980f-b922effd0ed8" + "cb886dc3-622c-4ccb-84f3-2c6ea080fc72" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220414T061036Z:70e25462-ffb6-4f95-980f-b922effd0ed8" + "JIOINDIAWEST:20220517T055127Z:cb886dc3-622c-4ccb-84f3-2c6ea080fc72" ], "Date": [ - "Thu, 14 Apr 2022 06:10:36 GMT" + "Tue, 17 May 2022 05:51:27 GMT" ], "Content-Length": [ "188" @@ -3404,26 +3544,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"abab25d3-fe01-4f36-aa62-341b9255ba55\",\r\n \"name\": \"abab25d3-fe01-4f36-aa62-341b9255ba55\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-04-14T06:10:35.9437834Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"8c58c7bf-a123-472a-9cad-136971af350d\",\r\n \"name\": \"8c58c7bf-a123-472a-9cad-136971af350d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T05:51:26.3850404Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGffa8be76/providers/Microsoft.RecoveryServices/vaults/PSTestRSVffa8be76/backupOperations/abab25d3-fe01-4f36-aa62-341b9255ba55?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZmZhOGJlNzYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZmZmE4YmU3Ni9iYWNrdXBPcGVyYXRpb25zL2FiYWIyNWQzLWZlMDEtNGYzNi1hYTYyLTM0MWI5MjU1YmE1NT9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG66dc4625/providers/Microsoft.RecoveryServices/vaults/PSTestRSV66dc4625/backupOperations/8c58c7bf-a123-472a-9cad-136971af350d?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNjZkYzQ2MjUvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y2NmRjNDYyNS9iYWNrdXBPcGVyYXRpb25zLzhjNThjN2JmLWExMjMtNDcyYS05Y2FkLTEzNjk3MWFmMzUwZD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f9814d9e-689d-4c3a-a7cf-8c3ff16bc3b2" + "b3c62c3b-3878-437e-baf6-934b0470c1a4" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -3437,11 +3577,11 @@ "nosniff" ], "x-ms-request-id": [ - "33b375e8-2e0e-4766-9518-ed32b0c3b58f" + "36bc3cbc-d1df-4828-b8e8-09ce0aae4147" ], "x-ms-client-request-id": [ - "f9814d9e-689d-4c3a-a7cf-8c3ff16bc3b2", - "f9814d9e-689d-4c3a-a7cf-8c3ff16bc3b2" + "b3c62c3b-3878-437e-baf6-934b0470c1a4", + "b3c62c3b-3878-437e-baf6-934b0470c1a4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3456,13 +3596,13 @@ "148" ], "x-ms-correlation-request-id": [ - "33b375e8-2e0e-4766-9518-ed32b0c3b58f" + "36bc3cbc-d1df-4828-b8e8-09ce0aae4147" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220414T061041Z:33b375e8-2e0e-4766-9518-ed32b0c3b58f" + "JIOINDIAWEST:20220517T055132Z:36bc3cbc-d1df-4828-b8e8-09ce0aae4147" ], "Date": [ - "Thu, 14 Apr 2022 06:10:41 GMT" + "Tue, 17 May 2022 05:51:32 GMT" ], "Content-Length": [ "188" @@ -3474,26 +3614,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"abab25d3-fe01-4f36-aa62-341b9255ba55\",\r\n \"name\": \"abab25d3-fe01-4f36-aa62-341b9255ba55\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-04-14T06:10:35.9437834Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"8c58c7bf-a123-472a-9cad-136971af350d\",\r\n \"name\": \"8c58c7bf-a123-472a-9cad-136971af350d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T05:51:26.3850404Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGffa8be76/providers/Microsoft.RecoveryServices/vaults/PSTestRSVffa8be76/backupOperations/abab25d3-fe01-4f36-aa62-341b9255ba55?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZmZhOGJlNzYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZmZmE4YmU3Ni9iYWNrdXBPcGVyYXRpb25zL2FiYWIyNWQzLWZlMDEtNGYzNi1hYTYyLTM0MWI5MjU1YmE1NT9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG66dc4625/providers/Microsoft.RecoveryServices/vaults/PSTestRSV66dc4625/backupOperations/8c58c7bf-a123-472a-9cad-136971af350d?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNjZkYzQ2MjUvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y2NmRjNDYyNS9iYWNrdXBPcGVyYXRpb25zLzhjNThjN2JmLWExMjMtNDcyYS05Y2FkLTEzNjk3MWFmMzUwZD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f9814d9e-689d-4c3a-a7cf-8c3ff16bc3b2" + "b3c62c3b-3878-437e-baf6-934b0470c1a4" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -3507,11 +3647,11 @@ "nosniff" ], "x-ms-request-id": [ - "bca53013-2d53-4955-b7a5-3a004aba832b" + "35692b2a-27b5-4f9f-9c1f-f2c59b2e0c1c" ], "x-ms-client-request-id": [ - "f9814d9e-689d-4c3a-a7cf-8c3ff16bc3b2", - "f9814d9e-689d-4c3a-a7cf-8c3ff16bc3b2" + "b3c62c3b-3878-437e-baf6-934b0470c1a4", + "b3c62c3b-3878-437e-baf6-934b0470c1a4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3526,13 +3666,13 @@ "147" ], "x-ms-correlation-request-id": [ - "bca53013-2d53-4955-b7a5-3a004aba832b" + "35692b2a-27b5-4f9f-9c1f-f2c59b2e0c1c" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220414T061047Z:bca53013-2d53-4955-b7a5-3a004aba832b" + "JIOINDIAWEST:20220517T055138Z:35692b2a-27b5-4f9f-9c1f-f2c59b2e0c1c" ], "Date": [ - "Thu, 14 Apr 2022 06:10:46 GMT" + "Tue, 17 May 2022 05:51:38 GMT" ], "Content-Length": [ "188" @@ -3544,26 +3684,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"abab25d3-fe01-4f36-aa62-341b9255ba55\",\r\n \"name\": \"abab25d3-fe01-4f36-aa62-341b9255ba55\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-04-14T06:10:35.9437834Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"8c58c7bf-a123-472a-9cad-136971af350d\",\r\n \"name\": \"8c58c7bf-a123-472a-9cad-136971af350d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T05:51:26.3850404Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGffa8be76/providers/Microsoft.RecoveryServices/vaults/PSTestRSVffa8be76/backupOperations/abab25d3-fe01-4f36-aa62-341b9255ba55?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZmZhOGJlNzYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZmZmE4YmU3Ni9iYWNrdXBPcGVyYXRpb25zL2FiYWIyNWQzLWZlMDEtNGYzNi1hYTYyLTM0MWI5MjU1YmE1NT9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG66dc4625/providers/Microsoft.RecoveryServices/vaults/PSTestRSV66dc4625/backupOperations/8c58c7bf-a123-472a-9cad-136971af350d?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNjZkYzQ2MjUvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y2NmRjNDYyNS9iYWNrdXBPcGVyYXRpb25zLzhjNThjN2JmLWExMjMtNDcyYS05Y2FkLTEzNjk3MWFmMzUwZD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f9814d9e-689d-4c3a-a7cf-8c3ff16bc3b2" + "b3c62c3b-3878-437e-baf6-934b0470c1a4" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -3577,11 +3717,11 @@ "nosniff" ], "x-ms-request-id": [ - "8719edbb-0692-4b20-b321-8a4a8633528d" + "f10a934a-b90d-4a35-b7c0-0032057f07fc" ], "x-ms-client-request-id": [ - "f9814d9e-689d-4c3a-a7cf-8c3ff16bc3b2", - "f9814d9e-689d-4c3a-a7cf-8c3ff16bc3b2" + "b3c62c3b-3878-437e-baf6-934b0470c1a4", + "b3c62c3b-3878-437e-baf6-934b0470c1a4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3596,13 +3736,13 @@ "146" ], "x-ms-correlation-request-id": [ - "8719edbb-0692-4b20-b321-8a4a8633528d" + "f10a934a-b90d-4a35-b7c0-0032057f07fc" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220414T061052Z:8719edbb-0692-4b20-b321-8a4a8633528d" + "JIOINDIAWEST:20220517T055143Z:f10a934a-b90d-4a35-b7c0-0032057f07fc" ], "Date": [ - "Thu, 14 Apr 2022 06:10:51 GMT" + "Tue, 17 May 2022 05:51:43 GMT" ], "Content-Length": [ "188" @@ -3614,26 +3754,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"abab25d3-fe01-4f36-aa62-341b9255ba55\",\r\n \"name\": \"abab25d3-fe01-4f36-aa62-341b9255ba55\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-04-14T06:10:35.9437834Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"8c58c7bf-a123-472a-9cad-136971af350d\",\r\n \"name\": \"8c58c7bf-a123-472a-9cad-136971af350d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T05:51:26.3850404Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGffa8be76/providers/Microsoft.RecoveryServices/vaults/PSTestRSVffa8be76/backupOperations/abab25d3-fe01-4f36-aa62-341b9255ba55?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZmZhOGJlNzYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZmZmE4YmU3Ni9iYWNrdXBPcGVyYXRpb25zL2FiYWIyNWQzLWZlMDEtNGYzNi1hYTYyLTM0MWI5MjU1YmE1NT9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG66dc4625/providers/Microsoft.RecoveryServices/vaults/PSTestRSV66dc4625/backupOperations/8c58c7bf-a123-472a-9cad-136971af350d?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNjZkYzQ2MjUvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y2NmRjNDYyNS9iYWNrdXBPcGVyYXRpb25zLzhjNThjN2JmLWExMjMtNDcyYS05Y2FkLTEzNjk3MWFmMzUwZD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f9814d9e-689d-4c3a-a7cf-8c3ff16bc3b2" + "b3c62c3b-3878-437e-baf6-934b0470c1a4" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -3647,11 +3787,11 @@ "nosniff" ], "x-ms-request-id": [ - "a606f026-6cc0-4b1c-aa0a-d19f2efc3173" + "397d6fef-457a-4c0c-b68b-acc98eaaba22" ], "x-ms-client-request-id": [ - "f9814d9e-689d-4c3a-a7cf-8c3ff16bc3b2", - "f9814d9e-689d-4c3a-a7cf-8c3ff16bc3b2" + "b3c62c3b-3878-437e-baf6-934b0470c1a4", + "b3c62c3b-3878-437e-baf6-934b0470c1a4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3666,13 +3806,13 @@ "145" ], "x-ms-correlation-request-id": [ - "a606f026-6cc0-4b1c-aa0a-d19f2efc3173" + "397d6fef-457a-4c0c-b68b-acc98eaaba22" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220414T061057Z:a606f026-6cc0-4b1c-aa0a-d19f2efc3173" + "JIOINDIAWEST:20220517T055149Z:397d6fef-457a-4c0c-b68b-acc98eaaba22" ], "Date": [ - "Thu, 14 Apr 2022 06:10:57 GMT" + "Tue, 17 May 2022 05:51:49 GMT" ], "Content-Length": [ "188" @@ -3684,26 +3824,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"abab25d3-fe01-4f36-aa62-341b9255ba55\",\r\n \"name\": \"abab25d3-fe01-4f36-aa62-341b9255ba55\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-04-14T06:10:35.9437834Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"8c58c7bf-a123-472a-9cad-136971af350d\",\r\n \"name\": \"8c58c7bf-a123-472a-9cad-136971af350d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T05:51:26.3850404Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGffa8be76/providers/Microsoft.RecoveryServices/vaults/PSTestRSVffa8be76/backupOperations/abab25d3-fe01-4f36-aa62-341b9255ba55?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZmZhOGJlNzYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZmZmE4YmU3Ni9iYWNrdXBPcGVyYXRpb25zL2FiYWIyNWQzLWZlMDEtNGYzNi1hYTYyLTM0MWI5MjU1YmE1NT9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG66dc4625/providers/Microsoft.RecoveryServices/vaults/PSTestRSV66dc4625/backupOperations/8c58c7bf-a123-472a-9cad-136971af350d?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNjZkYzQ2MjUvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y2NmRjNDYyNS9iYWNrdXBPcGVyYXRpb25zLzhjNThjN2JmLWExMjMtNDcyYS05Y2FkLTEzNjk3MWFmMzUwZD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f9814d9e-689d-4c3a-a7cf-8c3ff16bc3b2" + "b3c62c3b-3878-437e-baf6-934b0470c1a4" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -3717,11 +3857,11 @@ "nosniff" ], "x-ms-request-id": [ - "ed0f01ec-732c-4462-a6cc-ac4a935fb7b6" + "c34e9d0c-c806-469c-a404-741e01980fa4" ], "x-ms-client-request-id": [ - "f9814d9e-689d-4c3a-a7cf-8c3ff16bc3b2", - "f9814d9e-689d-4c3a-a7cf-8c3ff16bc3b2" + "b3c62c3b-3878-437e-baf6-934b0470c1a4", + "b3c62c3b-3878-437e-baf6-934b0470c1a4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3736,13 +3876,13 @@ "144" ], "x-ms-correlation-request-id": [ - "ed0f01ec-732c-4462-a6cc-ac4a935fb7b6" + "c34e9d0c-c806-469c-a404-741e01980fa4" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220414T061103Z:ed0f01ec-732c-4462-a6cc-ac4a935fb7b6" + "JIOINDIAWEST:20220517T055154Z:c34e9d0c-c806-469c-a404-741e01980fa4" ], "Date": [ - "Thu, 14 Apr 2022 06:11:02 GMT" + "Tue, 17 May 2022 05:51:54 GMT" ], "Content-Length": [ "188" @@ -3754,26 +3894,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"abab25d3-fe01-4f36-aa62-341b9255ba55\",\r\n \"name\": \"abab25d3-fe01-4f36-aa62-341b9255ba55\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-04-14T06:10:35.9437834Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"8c58c7bf-a123-472a-9cad-136971af350d\",\r\n \"name\": \"8c58c7bf-a123-472a-9cad-136971af350d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T05:51:26.3850404Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGffa8be76/providers/Microsoft.RecoveryServices/vaults/PSTestRSVffa8be76/backupOperations/abab25d3-fe01-4f36-aa62-341b9255ba55?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZmZhOGJlNzYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZmZmE4YmU3Ni9iYWNrdXBPcGVyYXRpb25zL2FiYWIyNWQzLWZlMDEtNGYzNi1hYTYyLTM0MWI5MjU1YmE1NT9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG66dc4625/providers/Microsoft.RecoveryServices/vaults/PSTestRSV66dc4625/backupOperations/8c58c7bf-a123-472a-9cad-136971af350d?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNjZkYzQ2MjUvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y2NmRjNDYyNS9iYWNrdXBPcGVyYXRpb25zLzhjNThjN2JmLWExMjMtNDcyYS05Y2FkLTEzNjk3MWFmMzUwZD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f9814d9e-689d-4c3a-a7cf-8c3ff16bc3b2" + "b3c62c3b-3878-437e-baf6-934b0470c1a4" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -3787,11 +3927,11 @@ "nosniff" ], "x-ms-request-id": [ - "ebefc594-9477-47b4-82ab-513e7405112e" + "f61bb24d-139d-4a55-82d8-8dd3557fedf1" ], "x-ms-client-request-id": [ - "f9814d9e-689d-4c3a-a7cf-8c3ff16bc3b2", - "f9814d9e-689d-4c3a-a7cf-8c3ff16bc3b2" + "b3c62c3b-3878-437e-baf6-934b0470c1a4", + "b3c62c3b-3878-437e-baf6-934b0470c1a4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3806,13 +3946,13 @@ "143" ], "x-ms-correlation-request-id": [ - "ebefc594-9477-47b4-82ab-513e7405112e" + "f61bb24d-139d-4a55-82d8-8dd3557fedf1" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220414T061108Z:ebefc594-9477-47b4-82ab-513e7405112e" + "JIOINDIAWEST:20220517T055200Z:f61bb24d-139d-4a55-82d8-8dd3557fedf1" ], "Date": [ - "Thu, 14 Apr 2022 06:11:07 GMT" + "Tue, 17 May 2022 05:52:00 GMT" ], "Content-Length": [ "188" @@ -3824,26 +3964,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"abab25d3-fe01-4f36-aa62-341b9255ba55\",\r\n \"name\": \"abab25d3-fe01-4f36-aa62-341b9255ba55\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-04-14T06:10:35.9437834Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"8c58c7bf-a123-472a-9cad-136971af350d\",\r\n \"name\": \"8c58c7bf-a123-472a-9cad-136971af350d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T05:51:26.3850404Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGffa8be76/providers/Microsoft.RecoveryServices/vaults/PSTestRSVffa8be76/backupOperations/abab25d3-fe01-4f36-aa62-341b9255ba55?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZmZhOGJlNzYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZmZmE4YmU3Ni9iYWNrdXBPcGVyYXRpb25zL2FiYWIyNWQzLWZlMDEtNGYzNi1hYTYyLTM0MWI5MjU1YmE1NT9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG66dc4625/providers/Microsoft.RecoveryServices/vaults/PSTestRSV66dc4625/backupOperations/8c58c7bf-a123-472a-9cad-136971af350d?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNjZkYzQ2MjUvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y2NmRjNDYyNS9iYWNrdXBPcGVyYXRpb25zLzhjNThjN2JmLWExMjMtNDcyYS05Y2FkLTEzNjk3MWFmMzUwZD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f9814d9e-689d-4c3a-a7cf-8c3ff16bc3b2" + "b3c62c3b-3878-437e-baf6-934b0470c1a4" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -3857,11 +3997,11 @@ "nosniff" ], "x-ms-request-id": [ - "3c97f069-e4c5-49bd-a11b-890d7bd02ddf" + "7d5fc015-fdbb-4676-8d89-bc05c4019b3b" ], "x-ms-client-request-id": [ - "f9814d9e-689d-4c3a-a7cf-8c3ff16bc3b2", - "f9814d9e-689d-4c3a-a7cf-8c3ff16bc3b2" + "b3c62c3b-3878-437e-baf6-934b0470c1a4", + "b3c62c3b-3878-437e-baf6-934b0470c1a4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3876,13 +4016,13 @@ "142" ], "x-ms-correlation-request-id": [ - "3c97f069-e4c5-49bd-a11b-890d7bd02ddf" + "7d5fc015-fdbb-4676-8d89-bc05c4019b3b" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220414T061113Z:3c97f069-e4c5-49bd-a11b-890d7bd02ddf" + "JIOINDIAWEST:20220517T055206Z:7d5fc015-fdbb-4676-8d89-bc05c4019b3b" ], "Date": [ - "Thu, 14 Apr 2022 06:11:12 GMT" + "Tue, 17 May 2022 05:52:05 GMT" ], "Content-Length": [ "188" @@ -3894,26 +4034,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"abab25d3-fe01-4f36-aa62-341b9255ba55\",\r\n \"name\": \"abab25d3-fe01-4f36-aa62-341b9255ba55\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-04-14T06:10:35.9437834Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"8c58c7bf-a123-472a-9cad-136971af350d\",\r\n \"name\": \"8c58c7bf-a123-472a-9cad-136971af350d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T05:51:26.3850404Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGffa8be76/providers/Microsoft.RecoveryServices/vaults/PSTestRSVffa8be76/backupOperations/abab25d3-fe01-4f36-aa62-341b9255ba55?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZmZhOGJlNzYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZmZmE4YmU3Ni9iYWNrdXBPcGVyYXRpb25zL2FiYWIyNWQzLWZlMDEtNGYzNi1hYTYyLTM0MWI5MjU1YmE1NT9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG66dc4625/providers/Microsoft.RecoveryServices/vaults/PSTestRSV66dc4625/backupOperations/8c58c7bf-a123-472a-9cad-136971af350d?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNjZkYzQ2MjUvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y2NmRjNDYyNS9iYWNrdXBPcGVyYXRpb25zLzhjNThjN2JmLWExMjMtNDcyYS05Y2FkLTEzNjk3MWFmMzUwZD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f9814d9e-689d-4c3a-a7cf-8c3ff16bc3b2" + "b3c62c3b-3878-437e-baf6-934b0470c1a4" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -3927,11 +4067,11 @@ "nosniff" ], "x-ms-request-id": [ - "88cc4a0f-8e30-45dc-aa74-2dc20ad13094" + "5bacd396-23c5-42e1-b5a6-bd1f8cf14383" ], "x-ms-client-request-id": [ - "f9814d9e-689d-4c3a-a7cf-8c3ff16bc3b2", - "f9814d9e-689d-4c3a-a7cf-8c3ff16bc3b2" + "b3c62c3b-3878-437e-baf6-934b0470c1a4", + "b3c62c3b-3878-437e-baf6-934b0470c1a4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3946,16 +4086,16 @@ "141" ], "x-ms-correlation-request-id": [ - "88cc4a0f-8e30-45dc-aa74-2dc20ad13094" + "5bacd396-23c5-42e1-b5a6-bd1f8cf14383" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220414T061119Z:88cc4a0f-8e30-45dc-aa74-2dc20ad13094" + "JIOINDIAWEST:20220517T055211Z:5bacd396-23c5-42e1-b5a6-bd1f8cf14383" ], "Date": [ - "Thu, 14 Apr 2022 06:11:19 GMT" + "Tue, 17 May 2022 05:52:11 GMT" ], "Content-Length": [ - "188" + "304" ], "Content-Type": [ "application/json" @@ -3964,26 +4104,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"abab25d3-fe01-4f36-aa62-341b9255ba55\",\r\n \"name\": \"abab25d3-fe01-4f36-aa62-341b9255ba55\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-04-14T06:10:35.9437834Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"8c58c7bf-a123-472a-9cad-136971af350d\",\r\n \"name\": \"8c58c7bf-a123-472a-9cad-136971af350d\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-05-17T05:51:26.3850404Z\",\r\n \"endTime\": \"2022-05-17T05:51:26.3850404Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"836a373a-02b4-4b96-aa06-b376e1bdc260\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGffa8be76/providers/Microsoft.RecoveryServices/vaults/PSTestRSVffa8be76/backupOperations/abab25d3-fe01-4f36-aa62-341b9255ba55?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZmZhOGJlNzYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZmZmE4YmU3Ni9iYWNrdXBPcGVyYXRpb25zL2FiYWIyNWQzLWZlMDEtNGYzNi1hYTYyLTM0MWI5MjU1YmE1NT9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG66dc4625/providers/Microsoft.RecoveryServices/vaults/PSTestRSV66dc4625/backupOperations/8c58c7bf-a123-472a-9cad-136971af350d?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNjZkYzQ2MjUvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y2NmRjNDYyNS9iYWNrdXBPcGVyYXRpb25zLzhjNThjN2JmLWExMjMtNDcyYS05Y2FkLTEzNjk3MWFmMzUwZD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f9814d9e-689d-4c3a-a7cf-8c3ff16bc3b2" + "b3c62c3b-3878-437e-baf6-934b0470c1a4" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -3997,11 +4137,11 @@ "nosniff" ], "x-ms-request-id": [ - "20383e13-8b70-4568-9615-e6de7e4e6f37" + "13a82582-1fbf-417e-9ffa-7baca0dbc51b" ], "x-ms-client-request-id": [ - "f9814d9e-689d-4c3a-a7cf-8c3ff16bc3b2", - "f9814d9e-689d-4c3a-a7cf-8c3ff16bc3b2" + "b3c62c3b-3878-437e-baf6-934b0470c1a4", + "b3c62c3b-3878-437e-baf6-934b0470c1a4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4016,16 +4156,16 @@ "140" ], "x-ms-correlation-request-id": [ - "20383e13-8b70-4568-9615-e6de7e4e6f37" + "13a82582-1fbf-417e-9ffa-7baca0dbc51b" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220414T061124Z:20383e13-8b70-4568-9615-e6de7e4e6f37" + "JIOINDIAWEST:20220517T055212Z:13a82582-1fbf-417e-9ffa-7baca0dbc51b" ], "Date": [ - "Thu, 14 Apr 2022 06:11:24 GMT" + "Tue, 17 May 2022 05:52:11 GMT" ], "Content-Length": [ - "188" + "304" ], "Content-Type": [ "application/json" @@ -4034,26 +4174,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"abab25d3-fe01-4f36-aa62-341b9255ba55\",\r\n \"name\": \"abab25d3-fe01-4f36-aa62-341b9255ba55\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-04-14T06:10:35.9437834Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"8c58c7bf-a123-472a-9cad-136971af350d\",\r\n \"name\": \"8c58c7bf-a123-472a-9cad-136971af350d\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-05-17T05:51:26.3850404Z\",\r\n \"endTime\": \"2022-05-17T05:51:26.3850404Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"836a373a-02b4-4b96-aa06-b376e1bdc260\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGffa8be76/providers/Microsoft.RecoveryServices/vaults/PSTestRSVffa8be76/backupOperations/abab25d3-fe01-4f36-aa62-341b9255ba55?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZmZhOGJlNzYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZmZmE4YmU3Ni9iYWNrdXBPcGVyYXRpb25zL2FiYWIyNWQzLWZlMDEtNGYzNi1hYTYyLTM0MWI5MjU1YmE1NT9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG66dc4625/providers/Microsoft.RecoveryServices/vaults/PSTestRSV66dc4625/backupJobs/836a373a-02b4-4b96-aa06-b376e1bdc260?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNjZkYzQ2MjUvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y2NmRjNDYyNS9iYWNrdXBKb2JzLzgzNmEzNzNhLTAyYjQtNGI5Ni1hYTA2LWIzNzZlMWJkYzI2MD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f9814d9e-689d-4c3a-a7cf-8c3ff16bc3b2" + "b3c62c3b-3878-437e-baf6-934b0470c1a4" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -4063,39 +4203,40 @@ "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-IIS/10.0", + "Microsoft-IIS/10.0" + ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "b7cf4458-f1be-49e6-8184-7acd1ed16fc3" + "cba137c7-404d-4b17-acd6-6f5a42405244" ], "x-ms-client-request-id": [ - "f9814d9e-689d-4c3a-a7cf-8c3ff16bc3b2", - "f9814d9e-689d-4c3a-a7cf-8c3ff16bc3b2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-IIS/10.0" + "b3c62c3b-3878-437e-baf6-934b0470c1a4", + "b3c62c3b-3878-437e-baf6-934b0470c1a4" ], "X-Powered-By": [ "ASP.NET" ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "139" + "149" ], "x-ms-correlation-request-id": [ - "b7cf4458-f1be-49e6-8184-7acd1ed16fc3" + "cba137c7-404d-4b17-acd6-6f5a42405244" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220414T061130Z:b7cf4458-f1be-49e6-8184-7acd1ed16fc3" + "JIOINDIAWEST:20220517T055212Z:cba137c7-404d-4b17-acd6-6f5a42405244" ], "Date": [ - "Thu, 14 Apr 2022 06:11:29 GMT" + "Tue, 17 May 2022 05:52:12 GMT" ], "Content-Length": [ - "188" + "840" ], "Content-Type": [ "application/json" @@ -4104,26 +4245,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"abab25d3-fe01-4f36-aa62-341b9255ba55\",\r\n \"name\": \"abab25d3-fe01-4f36-aa62-341b9255ba55\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-04-14T06:10:35.9437834Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG66dc4625/providers/Microsoft.RecoveryServices/vaults/PSTestRSV66dc4625/backupJobs/836a373a-02b4-4b96-aa06-b376e1bdc260\",\r\n \"name\": \"836a373a-02b4-4b96-aa06-b376e1bdc260\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg66dc4625;pstestvm66dc40\",\r\n \"duration\": \"PT41.2340127S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm66dc40\",\r\n \"Policy Name\": \"DefaultPolicy\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm66dc40\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"ConfigureBackup\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-05-17T05:51:26.3850404Z\",\r\n \"endTime\": \"2022-05-17T05:52:07.6190531Z\",\r\n \"activityId\": \"b3c62c3b-3878-437e-baf6-934b0470c1a4\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGffa8be76/providers/Microsoft.RecoveryServices/vaults/PSTestRSVffa8be76/backupOperations/abab25d3-fe01-4f36-aa62-341b9255ba55?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZmZhOGJlNzYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZmZmE4YmU3Ni9iYWNrdXBPcGVyYXRpb25zL2FiYWIyNWQzLWZlMDEtNGYzNi1hYTYyLTM0MWI5MjU1YmE1NT9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG66dc4625/providers/Microsoft.RecoveryServices/vaults/PSTestRSV66dc4625/backupProtectionContainers?$filter=backupManagementType%20eq%20'AzureIaasVM'%20and%20status%20eq%20'Registered'&api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNjZkYzQ2MjUvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y2NmRjNDYyNS9iYWNrdXBQcm90ZWN0aW9uQ29udGFpbmVycz8kZmlsdGVyPWJhY2t1cE1hbmFnZW1lbnRUeXBlJTIwZXElMjAnQXp1cmVJYWFzVk0nJTIwYW5kJTIwc3RhdHVzJTIwZXElMjAnUmVnaXN0ZXJlZCcmYXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f9814d9e-689d-4c3a-a7cf-8c3ff16bc3b2" + "c74bdd4b-a133-4fc0-877d-a22a4fa128e4" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -4137,11 +4278,11 @@ "nosniff" ], "x-ms-request-id": [ - "0d747ac6-fcfa-4fb9-83ea-c6914096e8d2" + "43b19206-51f6-412b-9c80-f127f023e14d" ], "x-ms-client-request-id": [ - "f9814d9e-689d-4c3a-a7cf-8c3ff16bc3b2", - "f9814d9e-689d-4c3a-a7cf-8c3ff16bc3b2" + "c74bdd4b-a133-4fc0-877d-a22a4fa128e4", + "c74bdd4b-a133-4fc0-877d-a22a4fa128e4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4153,19 +4294,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "138" + "149" ], "x-ms-correlation-request-id": [ - "0d747ac6-fcfa-4fb9-83ea-c6914096e8d2" + "43b19206-51f6-412b-9c80-f127f023e14d" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220414T061135Z:0d747ac6-fcfa-4fb9-83ea-c6914096e8d2" + "JIOINDIAWEST:20220517T055213Z:43b19206-51f6-412b-9c80-f127f023e14d" ], "Date": [ - "Thu, 14 Apr 2022 06:11:35 GMT" + "Tue, 17 May 2022 05:52:13 GMT" ], "Content-Length": [ - "188" + "914" ], "Content-Type": [ "application/json" @@ -4174,26 +4315,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"abab25d3-fe01-4f36-aa62-341b9255ba55\",\r\n \"name\": \"abab25d3-fe01-4f36-aa62-341b9255ba55\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-04-14T06:10:35.9437834Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG66dc4625/providers/Microsoft.RecoveryServices/vaults/PSTestRSV66dc4625/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrg66dc4625;pstestvm66dc40\",\r\n \"name\": \"IaasVMContainer;iaasvmcontainerv2;pstestrg66dc4625;pstestvm66dc40\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers\",\r\n \"properties\": {\r\n \"virtualMachineId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG66dc4625/providers/Microsoft.Compute/virtualMachines/PSTestVM66dc40\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"resourceGroup\": \"PSTestRG66dc4625\",\r\n \"friendlyName\": \"PSTestVM66dc40\",\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/PSTestRGffa8be76/providers/Microsoft.RecoveryServices/vaults/PSTestRSVffa8be76/backupOperations/abab25d3-fe01-4f36-aa62-341b9255ba55?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZmZhOGJlNzYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZmZmE4YmU3Ni9iYWNrdXBPcGVyYXRpb25zL2FiYWIyNWQzLWZlMDEtNGYzNi1hYTYyLTM0MWI5MjU1YmE1NT9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG66dc4625/providers/Microsoft.RecoveryServices/vaults/PSTestRSV66dc4625/backupProtectionContainers?$filter=backupManagementType%20eq%20'AzureIaasVM'%20and%20status%20eq%20'Registered'&api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNjZkYzQ2MjUvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y2NmRjNDYyNS9iYWNrdXBQcm90ZWN0aW9uQ29udGFpbmVycz8kZmlsdGVyPWJhY2t1cE1hbmFnZW1lbnRUeXBlJTIwZXElMjAnQXp1cmVJYWFzVk0nJTIwYW5kJTIwc3RhdHVzJTIwZXElMjAnUmVnaXN0ZXJlZCcmYXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f9814d9e-689d-4c3a-a7cf-8c3ff16bc3b2" + "bd12feb4-3763-473f-8c54-a686a07cf791" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -4207,11 +4348,11 @@ "nosniff" ], "x-ms-request-id": [ - "9e73ab42-b217-41c4-a207-5fa765fdf51c" + "8346f269-89f0-43b5-80fe-6c16ee0ecf45" ], "x-ms-client-request-id": [ - "f9814d9e-689d-4c3a-a7cf-8c3ff16bc3b2", - "f9814d9e-689d-4c3a-a7cf-8c3ff16bc3b2" + "bd12feb4-3763-473f-8c54-a686a07cf791", + "bd12feb4-3763-473f-8c54-a686a07cf791" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4223,19 +4364,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "137" + "148" ], "x-ms-correlation-request-id": [ - "9e73ab42-b217-41c4-a207-5fa765fdf51c" + "8346f269-89f0-43b5-80fe-6c16ee0ecf45" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220414T061140Z:9e73ab42-b217-41c4-a207-5fa765fdf51c" + "JIOINDIAWEST:20220517T055416Z:8346f269-89f0-43b5-80fe-6c16ee0ecf45" ], "Date": [ - "Thu, 14 Apr 2022 06:11:40 GMT" + "Tue, 17 May 2022 05:54:15 GMT" ], "Content-Length": [ - "188" + "12" ], "Content-Type": [ "application/json" @@ -4244,26 +4385,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"abab25d3-fe01-4f36-aa62-341b9255ba55\",\r\n \"name\": \"abab25d3-fe01-4f36-aa62-341b9255ba55\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-04-14T06:10:35.9437834Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"value\": []\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGffa8be76/providers/Microsoft.RecoveryServices/vaults/PSTestRSVffa8be76/backupOperations/abab25d3-fe01-4f36-aa62-341b9255ba55?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZmZhOGJlNzYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZmZmE4YmU3Ni9iYWNrdXBPcGVyYXRpb25zL2FiYWIyNWQzLWZlMDEtNGYzNi1hYTYyLTM0MWI5MjU1YmE1NT9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG66dc4625/providers/Microsoft.RecoveryServices/vaults/PSTestRSV66dc4625/backupProtectedItems?$filter=backupManagementType%20eq%20'AzureIaasVM'%20and%20itemType%20eq%20'VM'&api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNjZkYzQ2MjUvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y2NmRjNDYyNS9iYWNrdXBQcm90ZWN0ZWRJdGVtcz8kZmlsdGVyPWJhY2t1cE1hbmFnZW1lbnRUeXBlJTIwZXElMjAnQXp1cmVJYWFzVk0nJTIwYW5kJTIwaXRlbVR5cGUlMjBlcSUyMCdWTScmYXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f9814d9e-689d-4c3a-a7cf-8c3ff16bc3b2" + "931dece9-2238-4893-ba3c-ed1cd01b5245" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -4277,11 +4418,11 @@ "nosniff" ], "x-ms-request-id": [ - "65617e54-492e-43fd-a847-23773bd1870c" + "54d4ad63-3cdb-451f-b489-5b616a581c29" ], "x-ms-client-request-id": [ - "f9814d9e-689d-4c3a-a7cf-8c3ff16bc3b2", - "f9814d9e-689d-4c3a-a7cf-8c3ff16bc3b2" + "931dece9-2238-4893-ba3c-ed1cd01b5245", + "931dece9-2238-4893-ba3c-ed1cd01b5245" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4293,19 +4434,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "136" + "149" ], "x-ms-correlation-request-id": [ - "65617e54-492e-43fd-a847-23773bd1870c" + "54d4ad63-3cdb-451f-b489-5b616a581c29" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220414T061147Z:65617e54-492e-43fd-a847-23773bd1870c" + "JIOINDIAWEST:20220517T055214Z:54d4ad63-3cdb-451f-b489-5b616a581c29" ], "Date": [ - "Thu, 14 Apr 2022 06:11:46 GMT" + "Tue, 17 May 2022 05:52:13 GMT" ], "Content-Length": [ - "188" + "1490" ], "Content-Type": [ "application/json" @@ -4314,26 +4455,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"abab25d3-fe01-4f36-aa62-341b9255ba55\",\r\n \"name\": \"abab25d3-fe01-4f36-aa62-341b9255ba55\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-04-14T06:10:35.9437834Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG66dc4625/providers/Microsoft.RecoveryServices/vaults/PSTestRSV66dc4625/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrg66dc4625;pstestvm66dc40/protectedItems/VM;iaasvmcontainerv2;pstestrg66dc4625;pstestvm66dc40\",\r\n \"name\": \"VM;iaasvmcontainerv2;pstestrg66dc4625;pstestvm66dc40\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems\",\r\n \"properties\": {\r\n \"kpisHealths\": {},\r\n \"friendlyName\": \"PSTestVM66dc40\",\r\n \"virtualMachineId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG66dc4625/providers/Microsoft.Compute/virtualMachines/PSTestVM66dc40\",\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\": \"535333751\",\r\n \"protectedItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"workloadType\": \"VM\",\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg66dc4625;pstestvm66dc40\",\r\n \"sourceResourceId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG66dc4625/providers/Microsoft.Compute/virtualMachines/PSTestVM66dc40\",\r\n \"policyId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG66dc4625/providers/Microsoft.RecoveryServices/vaults/PSTestRSV66dc4625/backupPolicies/DefaultPolicy\",\r\n \"policyName\": \"DefaultPolicy\",\r\n \"isArchiveEnabled\": false\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGffa8be76/providers/Microsoft.RecoveryServices/vaults/PSTestRSVffa8be76/backupOperations/abab25d3-fe01-4f36-aa62-341b9255ba55?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZmZhOGJlNzYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZmZmE4YmU3Ni9iYWNrdXBPcGVyYXRpb25zL2FiYWIyNWQzLWZlMDEtNGYzNi1hYTYyLTM0MWI5MjU1YmE1NT9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG66dc4625/providers/Microsoft.RecoveryServices/vaults/PSTestRSV66dc4625/backupFabrics/Azure/protectionContainers/IaasVMContainer%3Biaasvmcontainerv2%3Bpstestrg66dc4625%3Bpstestvm66dc40/protectedItems/VM%3Biaasvmcontainerv2%3Bpstestrg66dc4625%3Bpstestvm66dc40/recoveryPoints?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNjZkYzQ2MjUvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y2NmRjNDYyNS9iYWNrdXBGYWJyaWNzL0F6dXJlL3Byb3RlY3Rpb25Db250YWluZXJzL0lhYXNWTUNvbnRhaW5lciUzQmlhYXN2bWNvbnRhaW5lcnYyJTNCcHN0ZXN0cmc2NmRjNDYyNSUzQnBzdGVzdHZtNjZkYzQwL3Byb3RlY3RlZEl0ZW1zL1ZNJTNCaWFhc3ZtY29udGFpbmVydjIlM0Jwc3Rlc3RyZzY2ZGM0NjI1JTNCcHN0ZXN0dm02NmRjNDAvcmVjb3ZlcnlQb2ludHM/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f9814d9e-689d-4c3a-a7cf-8c3ff16bc3b2" + "c314f8fc-b1eb-4f2f-b598-b326110d6acc" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -4347,11 +4488,11 @@ "nosniff" ], "x-ms-request-id": [ - "b8d4f19c-3733-4fda-9f65-4e9c2c362707" + "d9b334e4-64b4-438c-922e-0d07e474631d" ], "x-ms-client-request-id": [ - "f9814d9e-689d-4c3a-a7cf-8c3ff16bc3b2", - "f9814d9e-689d-4c3a-a7cf-8c3ff16bc3b2" + "c314f8fc-b1eb-4f2f-b598-b326110d6acc", + "c314f8fc-b1eb-4f2f-b598-b326110d6acc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4363,19 +4504,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "135" + "149" ], "x-ms-correlation-request-id": [ - "b8d4f19c-3733-4fda-9f65-4e9c2c362707" + "d9b334e4-64b4-438c-922e-0d07e474631d" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220414T061152Z:b8d4f19c-3733-4fda-9f65-4e9c2c362707" + "JIOINDIAWEST:20220517T055214Z:d9b334e4-64b4-438c-922e-0d07e474631d" ], "Date": [ - "Thu, 14 Apr 2022 06:11:51 GMT" + "Tue, 17 May 2022 05:52:14 GMT" ], "Content-Length": [ - "188" + "12" ], "Content-Type": [ "application/json" @@ -4384,26 +4525,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"abab25d3-fe01-4f36-aa62-341b9255ba55\",\r\n \"name\": \"abab25d3-fe01-4f36-aa62-341b9255ba55\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-04-14T06:10:35.9437834Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"value\": []\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGffa8be76/providers/Microsoft.RecoveryServices/vaults/PSTestRSVffa8be76/backupOperations/abab25d3-fe01-4f36-aa62-341b9255ba55?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZmZhOGJlNzYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZmZmE4YmU3Ni9iYWNrdXBPcGVyYXRpb25zL2FiYWIyNWQzLWZlMDEtNGYzNi1hYTYyLTM0MWI5MjU1YmE1NT9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", - "RequestMethod": "GET", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG66dc4625/providers/Microsoft.RecoveryServices/vaults/PSTestRSV66dc4625/backupFabrics/Azure/protectionContainers/IaasVMContainer%3Biaasvmcontainerv2%3Bpstestrg66dc4625%3Bpstestvm66dc40/protectedItems/VM%3Biaasvmcontainerv2%3Bpstestrg66dc4625%3Bpstestvm66dc40?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNjZkYzQ2MjUvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y2NmRjNDYyNS9iYWNrdXBGYWJyaWNzL0F6dXJlL3Byb3RlY3Rpb25Db250YWluZXJzL0lhYXNWTUNvbnRhaW5lciUzQmlhYXN2bWNvbnRhaW5lcnYyJTNCcHN0ZXN0cmc2NmRjNDYyNSUzQnBzdGVzdHZtNjZkYzQwL3Byb3RlY3RlZEl0ZW1zL1ZNJTNCaWFhc3ZtY29udGFpbmVydjIlM0Jwc3Rlc3RyZzY2ZGM0NjI1JTNCcHN0ZXN0dm02NmRjNDA/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f9814d9e-689d-4c3a-a7cf-8c3ff16bc3b2" + "c314f8fc-b1eb-4f2f-b598-b326110d6acc" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -4413,67 +4554,70 @@ "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG66dc4625/providers/Microsoft.RecoveryServices/vaults/PSTestRSV66dc4625/backupOperationResults/9e9af097-d1f2-4565-97a8-a10bb5abeead?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG66dc4625/providers/Microsoft.RecoveryServices/vaults/PSTestRSV66dc4625/backupOperations/9e9af097-d1f2-4565-97a8-a10bb5abeead?api-version=2022-02-01" + ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "60d1cd59-9957-43a1-b28e-4e3ef26230ef" + "3d7e7e45-67ed-4c27-90db-f4a4d69ae44e" ], "x-ms-client-request-id": [ - "f9814d9e-689d-4c3a-a7cf-8c3ff16bc3b2", - "f9814d9e-689d-4c3a-a7cf-8c3ff16bc3b2" + "c314f8fc-b1eb-4f2f-b598-b326110d6acc", + "c314f8fc-b1eb-4f2f-b598-b326110d6acc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Server": [ - "Microsoft-IIS/10.0" - ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "134" + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14998" ], "x-ms-correlation-request-id": [ - "60d1cd59-9957-43a1-b28e-4e3ef26230ef" + "3d7e7e45-67ed-4c27-90db-f4a4d69ae44e" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220414T061157Z:60d1cd59-9957-43a1-b28e-4e3ef26230ef" + "JIOINDIAWEST:20220517T055216Z:3d7e7e45-67ed-4c27-90db-f4a4d69ae44e" ], "Date": [ - "Thu, 14 Apr 2022 06:11:57 GMT" - ], - "Content-Length": [ - "188" - ], - "Content-Type": [ - "application/json" + "Tue, 17 May 2022 05:52:16 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, - "ResponseBody": "{\r\n \"id\": \"abab25d3-fe01-4f36-aa62-341b9255ba55\",\r\n \"name\": \"abab25d3-fe01-4f36-aa62-341b9255ba55\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-04-14T06:10:35.9437834Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", - "StatusCode": 200 + "ResponseBody": "", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGffa8be76/providers/Microsoft.RecoveryServices/vaults/PSTestRSVffa8be76/backupOperations/abab25d3-fe01-4f36-aa62-341b9255ba55?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZmZhOGJlNzYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZmZmE4YmU3Ni9iYWNrdXBPcGVyYXRpb25zL2FiYWIyNWQzLWZlMDEtNGYzNi1hYTYyLTM0MWI5MjU1YmE1NT9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG66dc4625/providers/Microsoft.RecoveryServices/vaults/PSTestRSV66dc4625/backupOperations/9e9af097-d1f2-4565-97a8-a10bb5abeead?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNjZkYzQ2MjUvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y2NmRjNDYyNS9iYWNrdXBPcGVyYXRpb25zLzllOWFmMDk3LWQxZjItNDU2NS05N2E4LWExMGJiNWFiZWVhZD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f9814d9e-689d-4c3a-a7cf-8c3ff16bc3b2" + "c314f8fc-b1eb-4f2f-b598-b326110d6acc" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -4487,11 +4631,11 @@ "nosniff" ], "x-ms-request-id": [ - "415e4929-25c7-48c7-b21a-0251087f4274" + "0dc959a3-354a-444f-8fb4-b75d5eeffc4b" ], "x-ms-client-request-id": [ - "f9814d9e-689d-4c3a-a7cf-8c3ff16bc3b2", - "f9814d9e-689d-4c3a-a7cf-8c3ff16bc3b2" + "c314f8fc-b1eb-4f2f-b598-b326110d6acc", + "c314f8fc-b1eb-4f2f-b598-b326110d6acc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4503,16 +4647,16 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "133" + "139" ], "x-ms-correlation-request-id": [ - "415e4929-25c7-48c7-b21a-0251087f4274" + "0dc959a3-354a-444f-8fb4-b75d5eeffc4b" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220414T061203Z:415e4929-25c7-48c7-b21a-0251087f4274" + "JIOINDIAWEST:20220517T055217Z:0dc959a3-354a-444f-8fb4-b75d5eeffc4b" ], "Date": [ - "Thu, 14 Apr 2022 06:12:02 GMT" + "Tue, 17 May 2022 05:52:16 GMT" ], "Content-Length": [ "188" @@ -4524,26 +4668,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"abab25d3-fe01-4f36-aa62-341b9255ba55\",\r\n \"name\": \"abab25d3-fe01-4f36-aa62-341b9255ba55\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-04-14T06:10:35.9437834Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"9e9af097-d1f2-4565-97a8-a10bb5abeead\",\r\n \"name\": \"9e9af097-d1f2-4565-97a8-a10bb5abeead\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T05:52:16.4182203Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGffa8be76/providers/Microsoft.RecoveryServices/vaults/PSTestRSVffa8be76/backupOperations/abab25d3-fe01-4f36-aa62-341b9255ba55?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZmZhOGJlNzYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZmZmE4YmU3Ni9iYWNrdXBPcGVyYXRpb25zL2FiYWIyNWQzLWZlMDEtNGYzNi1hYTYyLTM0MWI5MjU1YmE1NT9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG66dc4625/providers/Microsoft.RecoveryServices/vaults/PSTestRSV66dc4625/backupOperations/9e9af097-d1f2-4565-97a8-a10bb5abeead?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNjZkYzQ2MjUvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y2NmRjNDYyNS9iYWNrdXBPcGVyYXRpb25zLzllOWFmMDk3LWQxZjItNDU2NS05N2E4LWExMGJiNWFiZWVhZD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f9814d9e-689d-4c3a-a7cf-8c3ff16bc3b2" + "c314f8fc-b1eb-4f2f-b598-b326110d6acc" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -4557,11 +4701,11 @@ "nosniff" ], "x-ms-request-id": [ - "1a290116-9895-452a-9a7e-eecc40f9a05c" + "0b54200a-3f06-478d-8a51-cb02baac9452" ], "x-ms-client-request-id": [ - "f9814d9e-689d-4c3a-a7cf-8c3ff16bc3b2", - "f9814d9e-689d-4c3a-a7cf-8c3ff16bc3b2" + "c314f8fc-b1eb-4f2f-b598-b326110d6acc", + "c314f8fc-b1eb-4f2f-b598-b326110d6acc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4573,16 +4717,16 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "132" + "138" ], "x-ms-correlation-request-id": [ - "1a290116-9895-452a-9a7e-eecc40f9a05c" + "0b54200a-3f06-478d-8a51-cb02baac9452" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220414T061208Z:1a290116-9895-452a-9a7e-eecc40f9a05c" + "JIOINDIAWEST:20220517T055222Z:0b54200a-3f06-478d-8a51-cb02baac9452" ], "Date": [ - "Thu, 14 Apr 2022 06:12:07 GMT" + "Tue, 17 May 2022 05:52:22 GMT" ], "Content-Length": [ "188" @@ -4594,26 +4738,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"abab25d3-fe01-4f36-aa62-341b9255ba55\",\r\n \"name\": \"abab25d3-fe01-4f36-aa62-341b9255ba55\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-04-14T06:10:35.9437834Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"9e9af097-d1f2-4565-97a8-a10bb5abeead\",\r\n \"name\": \"9e9af097-d1f2-4565-97a8-a10bb5abeead\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T05:52:16.4182203Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGffa8be76/providers/Microsoft.RecoveryServices/vaults/PSTestRSVffa8be76/backupOperations/abab25d3-fe01-4f36-aa62-341b9255ba55?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZmZhOGJlNzYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZmZmE4YmU3Ni9iYWNrdXBPcGVyYXRpb25zL2FiYWIyNWQzLWZlMDEtNGYzNi1hYTYyLTM0MWI5MjU1YmE1NT9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG66dc4625/providers/Microsoft.RecoveryServices/vaults/PSTestRSV66dc4625/backupOperations/9e9af097-d1f2-4565-97a8-a10bb5abeead?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNjZkYzQ2MjUvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y2NmRjNDYyNS9iYWNrdXBPcGVyYXRpb25zLzllOWFmMDk3LWQxZjItNDU2NS05N2E4LWExMGJiNWFiZWVhZD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f9814d9e-689d-4c3a-a7cf-8c3ff16bc3b2" + "c314f8fc-b1eb-4f2f-b598-b326110d6acc" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -4627,11 +4771,11 @@ "nosniff" ], "x-ms-request-id": [ - "338717c1-5f10-4116-8752-682baf0f2e1e" + "0ae383aa-85d3-4982-899e-77546713e1a4" ], "x-ms-client-request-id": [ - "f9814d9e-689d-4c3a-a7cf-8c3ff16bc3b2", - "f9814d9e-689d-4c3a-a7cf-8c3ff16bc3b2" + "c314f8fc-b1eb-4f2f-b598-b326110d6acc", + "c314f8fc-b1eb-4f2f-b598-b326110d6acc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4643,16 +4787,16 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "131" + "137" ], "x-ms-correlation-request-id": [ - "338717c1-5f10-4116-8752-682baf0f2e1e" + "0ae383aa-85d3-4982-899e-77546713e1a4" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220414T061213Z:338717c1-5f10-4116-8752-682baf0f2e1e" + "JIOINDIAWEST:20220517T055228Z:0ae383aa-85d3-4982-899e-77546713e1a4" ], "Date": [ - "Thu, 14 Apr 2022 06:12:12 GMT" + "Tue, 17 May 2022 05:52:27 GMT" ], "Content-Length": [ "188" @@ -4664,26 +4808,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"abab25d3-fe01-4f36-aa62-341b9255ba55\",\r\n \"name\": \"abab25d3-fe01-4f36-aa62-341b9255ba55\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-04-14T06:10:35.9437834Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"9e9af097-d1f2-4565-97a8-a10bb5abeead\",\r\n \"name\": \"9e9af097-d1f2-4565-97a8-a10bb5abeead\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T05:52:16.4182203Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGffa8be76/providers/Microsoft.RecoveryServices/vaults/PSTestRSVffa8be76/backupOperations/abab25d3-fe01-4f36-aa62-341b9255ba55?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZmZhOGJlNzYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZmZmE4YmU3Ni9iYWNrdXBPcGVyYXRpb25zL2FiYWIyNWQzLWZlMDEtNGYzNi1hYTYyLTM0MWI5MjU1YmE1NT9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG66dc4625/providers/Microsoft.RecoveryServices/vaults/PSTestRSV66dc4625/backupOperations/9e9af097-d1f2-4565-97a8-a10bb5abeead?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNjZkYzQ2MjUvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y2NmRjNDYyNS9iYWNrdXBPcGVyYXRpb25zLzllOWFmMDk3LWQxZjItNDU2NS05N2E4LWExMGJiNWFiZWVhZD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f9814d9e-689d-4c3a-a7cf-8c3ff16bc3b2" + "c314f8fc-b1eb-4f2f-b598-b326110d6acc" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -4697,11 +4841,11 @@ "nosniff" ], "x-ms-request-id": [ - "350baca1-c63b-4da4-95ad-49e150c2e07a" + "47bcc38f-d8e2-4d08-b5e1-3a0d7b971592" ], "x-ms-client-request-id": [ - "f9814d9e-689d-4c3a-a7cf-8c3ff16bc3b2", - "f9814d9e-689d-4c3a-a7cf-8c3ff16bc3b2" + "c314f8fc-b1eb-4f2f-b598-b326110d6acc", + "c314f8fc-b1eb-4f2f-b598-b326110d6acc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4713,16 +4857,16 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "130" + "136" ], "x-ms-correlation-request-id": [ - "350baca1-c63b-4da4-95ad-49e150c2e07a" + "47bcc38f-d8e2-4d08-b5e1-3a0d7b971592" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220414T061219Z:350baca1-c63b-4da4-95ad-49e150c2e07a" + "JIOINDIAWEST:20220517T055233Z:47bcc38f-d8e2-4d08-b5e1-3a0d7b971592" ], "Date": [ - "Thu, 14 Apr 2022 06:12:19 GMT" + "Tue, 17 May 2022 05:52:32 GMT" ], "Content-Length": [ "188" @@ -4734,26 +4878,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"abab25d3-fe01-4f36-aa62-341b9255ba55\",\r\n \"name\": \"abab25d3-fe01-4f36-aa62-341b9255ba55\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-04-14T06:10:35.9437834Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"9e9af097-d1f2-4565-97a8-a10bb5abeead\",\r\n \"name\": \"9e9af097-d1f2-4565-97a8-a10bb5abeead\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T05:52:16.4182203Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGffa8be76/providers/Microsoft.RecoveryServices/vaults/PSTestRSVffa8be76/backupOperations/abab25d3-fe01-4f36-aa62-341b9255ba55?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZmZhOGJlNzYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZmZmE4YmU3Ni9iYWNrdXBPcGVyYXRpb25zL2FiYWIyNWQzLWZlMDEtNGYzNi1hYTYyLTM0MWI5MjU1YmE1NT9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG66dc4625/providers/Microsoft.RecoveryServices/vaults/PSTestRSV66dc4625/backupOperations/9e9af097-d1f2-4565-97a8-a10bb5abeead?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNjZkYzQ2MjUvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y2NmRjNDYyNS9iYWNrdXBPcGVyYXRpb25zLzllOWFmMDk3LWQxZjItNDU2NS05N2E4LWExMGJiNWFiZWVhZD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f9814d9e-689d-4c3a-a7cf-8c3ff16bc3b2" + "c314f8fc-b1eb-4f2f-b598-b326110d6acc" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -4767,11 +4911,11 @@ "nosniff" ], "x-ms-request-id": [ - "490412d1-68aa-4aa1-8984-2d2697f4ae78" + "645fa1ac-c777-4c3c-a49e-236a0896f15c" ], "x-ms-client-request-id": [ - "f9814d9e-689d-4c3a-a7cf-8c3ff16bc3b2", - "f9814d9e-689d-4c3a-a7cf-8c3ff16bc3b2" + "c314f8fc-b1eb-4f2f-b598-b326110d6acc", + "c314f8fc-b1eb-4f2f-b598-b326110d6acc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4783,16 +4927,16 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "129" + "135" ], "x-ms-correlation-request-id": [ - "490412d1-68aa-4aa1-8984-2d2697f4ae78" + "645fa1ac-c777-4c3c-a49e-236a0896f15c" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220414T061224Z:490412d1-68aa-4aa1-8984-2d2697f4ae78" + "JIOINDIAWEST:20220517T055239Z:645fa1ac-c777-4c3c-a49e-236a0896f15c" ], "Date": [ - "Thu, 14 Apr 2022 06:12:24 GMT" + "Tue, 17 May 2022 05:52:38 GMT" ], "Content-Length": [ "188" @@ -4804,26 +4948,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"abab25d3-fe01-4f36-aa62-341b9255ba55\",\r\n \"name\": \"abab25d3-fe01-4f36-aa62-341b9255ba55\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-04-14T06:10:35.9437834Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"9e9af097-d1f2-4565-97a8-a10bb5abeead\",\r\n \"name\": \"9e9af097-d1f2-4565-97a8-a10bb5abeead\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T05:52:16.4182203Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGffa8be76/providers/Microsoft.RecoveryServices/vaults/PSTestRSVffa8be76/backupOperations/abab25d3-fe01-4f36-aa62-341b9255ba55?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZmZhOGJlNzYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZmZmE4YmU3Ni9iYWNrdXBPcGVyYXRpb25zL2FiYWIyNWQzLWZlMDEtNGYzNi1hYTYyLTM0MWI5MjU1YmE1NT9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG66dc4625/providers/Microsoft.RecoveryServices/vaults/PSTestRSV66dc4625/backupOperations/9e9af097-d1f2-4565-97a8-a10bb5abeead?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNjZkYzQ2MjUvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y2NmRjNDYyNS9iYWNrdXBPcGVyYXRpb25zLzllOWFmMDk3LWQxZjItNDU2NS05N2E4LWExMGJiNWFiZWVhZD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f9814d9e-689d-4c3a-a7cf-8c3ff16bc3b2" + "c314f8fc-b1eb-4f2f-b598-b326110d6acc" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -4837,11 +4981,11 @@ "nosniff" ], "x-ms-request-id": [ - "5d22035f-b149-4f25-955f-7e3ac3e1e101" + "4156732f-9963-4ae2-8cdf-290e17279b14" ], "x-ms-client-request-id": [ - "f9814d9e-689d-4c3a-a7cf-8c3ff16bc3b2", - "f9814d9e-689d-4c3a-a7cf-8c3ff16bc3b2" + "c314f8fc-b1eb-4f2f-b598-b326110d6acc", + "c314f8fc-b1eb-4f2f-b598-b326110d6acc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4853,16 +4997,16 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "128" + "134" ], "x-ms-correlation-request-id": [ - "5d22035f-b149-4f25-955f-7e3ac3e1e101" + "4156732f-9963-4ae2-8cdf-290e17279b14" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220414T061229Z:5d22035f-b149-4f25-955f-7e3ac3e1e101" + "JIOINDIAWEST:20220517T055244Z:4156732f-9963-4ae2-8cdf-290e17279b14" ], "Date": [ - "Thu, 14 Apr 2022 06:12:29 GMT" + "Tue, 17 May 2022 05:52:43 GMT" ], "Content-Length": [ "188" @@ -4874,26 +5018,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"abab25d3-fe01-4f36-aa62-341b9255ba55\",\r\n \"name\": \"abab25d3-fe01-4f36-aa62-341b9255ba55\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-04-14T06:10:35.9437834Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"9e9af097-d1f2-4565-97a8-a10bb5abeead\",\r\n \"name\": \"9e9af097-d1f2-4565-97a8-a10bb5abeead\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T05:52:16.4182203Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGffa8be76/providers/Microsoft.RecoveryServices/vaults/PSTestRSVffa8be76/backupOperations/abab25d3-fe01-4f36-aa62-341b9255ba55?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZmZhOGJlNzYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZmZmE4YmU3Ni9iYWNrdXBPcGVyYXRpb25zL2FiYWIyNWQzLWZlMDEtNGYzNi1hYTYyLTM0MWI5MjU1YmE1NT9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG66dc4625/providers/Microsoft.RecoveryServices/vaults/PSTestRSV66dc4625/backupOperations/9e9af097-d1f2-4565-97a8-a10bb5abeead?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNjZkYzQ2MjUvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y2NmRjNDYyNS9iYWNrdXBPcGVyYXRpb25zLzllOWFmMDk3LWQxZjItNDU2NS05N2E4LWExMGJiNWFiZWVhZD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f9814d9e-689d-4c3a-a7cf-8c3ff16bc3b2" + "c314f8fc-b1eb-4f2f-b598-b326110d6acc" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -4907,11 +5051,11 @@ "nosniff" ], "x-ms-request-id": [ - "2d83d7d2-20bd-4791-9a41-39c9ff6ccddf" + "9b97f7c2-e3bb-4609-82ae-a099e94ca4cc" ], "x-ms-client-request-id": [ - "f9814d9e-689d-4c3a-a7cf-8c3ff16bc3b2", - "f9814d9e-689d-4c3a-a7cf-8c3ff16bc3b2" + "c314f8fc-b1eb-4f2f-b598-b326110d6acc", + "c314f8fc-b1eb-4f2f-b598-b326110d6acc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4923,16 +5067,16 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "127" + "133" ], "x-ms-correlation-request-id": [ - "2d83d7d2-20bd-4791-9a41-39c9ff6ccddf" + "9b97f7c2-e3bb-4609-82ae-a099e94ca4cc" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220414T061235Z:2d83d7d2-20bd-4791-9a41-39c9ff6ccddf" + "JIOINDIAWEST:20220517T055250Z:9b97f7c2-e3bb-4609-82ae-a099e94ca4cc" ], "Date": [ - "Thu, 14 Apr 2022 06:12:34 GMT" + "Tue, 17 May 2022 05:52:49 GMT" ], "Content-Length": [ "188" @@ -4944,26 +5088,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"abab25d3-fe01-4f36-aa62-341b9255ba55\",\r\n \"name\": \"abab25d3-fe01-4f36-aa62-341b9255ba55\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-04-14T06:10:35.9437834Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"9e9af097-d1f2-4565-97a8-a10bb5abeead\",\r\n \"name\": \"9e9af097-d1f2-4565-97a8-a10bb5abeead\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T05:52:16.4182203Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGffa8be76/providers/Microsoft.RecoveryServices/vaults/PSTestRSVffa8be76/backupOperations/abab25d3-fe01-4f36-aa62-341b9255ba55?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZmZhOGJlNzYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZmZmE4YmU3Ni9iYWNrdXBPcGVyYXRpb25zL2FiYWIyNWQzLWZlMDEtNGYzNi1hYTYyLTM0MWI5MjU1YmE1NT9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG66dc4625/providers/Microsoft.RecoveryServices/vaults/PSTestRSV66dc4625/backupOperations/9e9af097-d1f2-4565-97a8-a10bb5abeead?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNjZkYzQ2MjUvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y2NmRjNDYyNS9iYWNrdXBPcGVyYXRpb25zLzllOWFmMDk3LWQxZjItNDU2NS05N2E4LWExMGJiNWFiZWVhZD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f9814d9e-689d-4c3a-a7cf-8c3ff16bc3b2" + "c314f8fc-b1eb-4f2f-b598-b326110d6acc" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -4977,11 +5121,11 @@ "nosniff" ], "x-ms-request-id": [ - "b691a483-1e89-4360-9196-69c84b024d13" + "1b658088-7a0a-4489-80db-f6ea810ba450" ], "x-ms-client-request-id": [ - "f9814d9e-689d-4c3a-a7cf-8c3ff16bc3b2", - "f9814d9e-689d-4c3a-a7cf-8c3ff16bc3b2" + "c314f8fc-b1eb-4f2f-b598-b326110d6acc", + "c314f8fc-b1eb-4f2f-b598-b326110d6acc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4993,16 +5137,16 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "126" + "132" ], "x-ms-correlation-request-id": [ - "b691a483-1e89-4360-9196-69c84b024d13" + "1b658088-7a0a-4489-80db-f6ea810ba450" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220414T061240Z:b691a483-1e89-4360-9196-69c84b024d13" + "JIOINDIAWEST:20220517T055255Z:1b658088-7a0a-4489-80db-f6ea810ba450" ], "Date": [ - "Thu, 14 Apr 2022 06:12:40 GMT" + "Tue, 17 May 2022 05:52:54 GMT" ], "Content-Length": [ "188" @@ -5014,26 +5158,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"abab25d3-fe01-4f36-aa62-341b9255ba55\",\r\n \"name\": \"abab25d3-fe01-4f36-aa62-341b9255ba55\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-04-14T06:10:35.9437834Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"9e9af097-d1f2-4565-97a8-a10bb5abeead\",\r\n \"name\": \"9e9af097-d1f2-4565-97a8-a10bb5abeead\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T05:52:16.4182203Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGffa8be76/providers/Microsoft.RecoveryServices/vaults/PSTestRSVffa8be76/backupOperations/abab25d3-fe01-4f36-aa62-341b9255ba55?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZmZhOGJlNzYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZmZmE4YmU3Ni9iYWNrdXBPcGVyYXRpb25zL2FiYWIyNWQzLWZlMDEtNGYzNi1hYTYyLTM0MWI5MjU1YmE1NT9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG66dc4625/providers/Microsoft.RecoveryServices/vaults/PSTestRSV66dc4625/backupOperations/9e9af097-d1f2-4565-97a8-a10bb5abeead?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNjZkYzQ2MjUvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y2NmRjNDYyNS9iYWNrdXBPcGVyYXRpb25zLzllOWFmMDk3LWQxZjItNDU2NS05N2E4LWExMGJiNWFiZWVhZD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f9814d9e-689d-4c3a-a7cf-8c3ff16bc3b2" + "c314f8fc-b1eb-4f2f-b598-b326110d6acc" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -5047,11 +5191,11 @@ "nosniff" ], "x-ms-request-id": [ - "7749757a-ba6d-453b-867e-f865fb62e833" + "7aaecd8f-b7b9-41d6-9ba9-dbb2ca03c9ee" ], "x-ms-client-request-id": [ - "f9814d9e-689d-4c3a-a7cf-8c3ff16bc3b2", - "f9814d9e-689d-4c3a-a7cf-8c3ff16bc3b2" + "c314f8fc-b1eb-4f2f-b598-b326110d6acc", + "c314f8fc-b1eb-4f2f-b598-b326110d6acc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5063,16 +5207,16 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "125" + "131" ], "x-ms-correlation-request-id": [ - "7749757a-ba6d-453b-867e-f865fb62e833" + "7aaecd8f-b7b9-41d6-9ba9-dbb2ca03c9ee" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220414T061245Z:7749757a-ba6d-453b-867e-f865fb62e833" + "JIOINDIAWEST:20220517T055301Z:7aaecd8f-b7b9-41d6-9ba9-dbb2ca03c9ee" ], "Date": [ - "Thu, 14 Apr 2022 06:12:45 GMT" + "Tue, 17 May 2022 05:53:00 GMT" ], "Content-Length": [ "188" @@ -5084,26 +5228,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"abab25d3-fe01-4f36-aa62-341b9255ba55\",\r\n \"name\": \"abab25d3-fe01-4f36-aa62-341b9255ba55\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-04-14T06:10:35.9437834Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"9e9af097-d1f2-4565-97a8-a10bb5abeead\",\r\n \"name\": \"9e9af097-d1f2-4565-97a8-a10bb5abeead\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T05:52:16.4182203Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGffa8be76/providers/Microsoft.RecoveryServices/vaults/PSTestRSVffa8be76/backupOperations/abab25d3-fe01-4f36-aa62-341b9255ba55?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZmZhOGJlNzYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZmZmE4YmU3Ni9iYWNrdXBPcGVyYXRpb25zL2FiYWIyNWQzLWZlMDEtNGYzNi1hYTYyLTM0MWI5MjU1YmE1NT9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG66dc4625/providers/Microsoft.RecoveryServices/vaults/PSTestRSV66dc4625/backupOperations/9e9af097-d1f2-4565-97a8-a10bb5abeead?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNjZkYzQ2MjUvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y2NmRjNDYyNS9iYWNrdXBPcGVyYXRpb25zLzllOWFmMDk3LWQxZjItNDU2NS05N2E4LWExMGJiNWFiZWVhZD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f9814d9e-689d-4c3a-a7cf-8c3ff16bc3b2" + "c314f8fc-b1eb-4f2f-b598-b326110d6acc" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -5117,11 +5261,11 @@ "nosniff" ], "x-ms-request-id": [ - "feefaaef-273c-400c-98c6-c0931268e2e9" + "23cf204c-ed23-4be2-a5ee-290320882642" ], "x-ms-client-request-id": [ - "f9814d9e-689d-4c3a-a7cf-8c3ff16bc3b2", - "f9814d9e-689d-4c3a-a7cf-8c3ff16bc3b2" + "c314f8fc-b1eb-4f2f-b598-b326110d6acc", + "c314f8fc-b1eb-4f2f-b598-b326110d6acc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5133,16 +5277,16 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "124" + "130" ], "x-ms-correlation-request-id": [ - "feefaaef-273c-400c-98c6-c0931268e2e9" + "23cf204c-ed23-4be2-a5ee-290320882642" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220414T061251Z:feefaaef-273c-400c-98c6-c0931268e2e9" + "JIOINDIAWEST:20220517T055306Z:23cf204c-ed23-4be2-a5ee-290320882642" ], "Date": [ - "Thu, 14 Apr 2022 06:12:50 GMT" + "Tue, 17 May 2022 05:53:06 GMT" ], "Content-Length": [ "188" @@ -5154,26 +5298,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"abab25d3-fe01-4f36-aa62-341b9255ba55\",\r\n \"name\": \"abab25d3-fe01-4f36-aa62-341b9255ba55\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-04-14T06:10:35.9437834Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"9e9af097-d1f2-4565-97a8-a10bb5abeead\",\r\n \"name\": \"9e9af097-d1f2-4565-97a8-a10bb5abeead\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T05:52:16.4182203Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGffa8be76/providers/Microsoft.RecoveryServices/vaults/PSTestRSVffa8be76/backupOperations/abab25d3-fe01-4f36-aa62-341b9255ba55?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZmZhOGJlNzYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZmZmE4YmU3Ni9iYWNrdXBPcGVyYXRpb25zL2FiYWIyNWQzLWZlMDEtNGYzNi1hYTYyLTM0MWI5MjU1YmE1NT9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG66dc4625/providers/Microsoft.RecoveryServices/vaults/PSTestRSV66dc4625/backupOperations/9e9af097-d1f2-4565-97a8-a10bb5abeead?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNjZkYzQ2MjUvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y2NmRjNDYyNS9iYWNrdXBPcGVyYXRpb25zLzllOWFmMDk3LWQxZjItNDU2NS05N2E4LWExMGJiNWFiZWVhZD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f9814d9e-689d-4c3a-a7cf-8c3ff16bc3b2" + "c314f8fc-b1eb-4f2f-b598-b326110d6acc" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -5187,11 +5331,11 @@ "nosniff" ], "x-ms-request-id": [ - "0996b080-3ac4-410d-95d2-ed480dea21a1" + "574ae5f5-70c1-4975-a449-b7889079d74f" ], "x-ms-client-request-id": [ - "f9814d9e-689d-4c3a-a7cf-8c3ff16bc3b2", - "f9814d9e-689d-4c3a-a7cf-8c3ff16bc3b2" + "c314f8fc-b1eb-4f2f-b598-b326110d6acc", + "c314f8fc-b1eb-4f2f-b598-b326110d6acc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5203,16 +5347,16 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "123" + "129" ], "x-ms-correlation-request-id": [ - "0996b080-3ac4-410d-95d2-ed480dea21a1" + "574ae5f5-70c1-4975-a449-b7889079d74f" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220414T061256Z:0996b080-3ac4-410d-95d2-ed480dea21a1" + "JIOINDIAWEST:20220517T055312Z:574ae5f5-70c1-4975-a449-b7889079d74f" ], "Date": [ - "Thu, 14 Apr 2022 06:12:56 GMT" + "Tue, 17 May 2022 05:53:12 GMT" ], "Content-Length": [ "188" @@ -5224,26 +5368,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"abab25d3-fe01-4f36-aa62-341b9255ba55\",\r\n \"name\": \"abab25d3-fe01-4f36-aa62-341b9255ba55\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-04-14T06:10:35.9437834Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"9e9af097-d1f2-4565-97a8-a10bb5abeead\",\r\n \"name\": \"9e9af097-d1f2-4565-97a8-a10bb5abeead\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T05:52:16.4182203Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGffa8be76/providers/Microsoft.RecoveryServices/vaults/PSTestRSVffa8be76/backupOperations/abab25d3-fe01-4f36-aa62-341b9255ba55?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZmZhOGJlNzYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZmZmE4YmU3Ni9iYWNrdXBPcGVyYXRpb25zL2FiYWIyNWQzLWZlMDEtNGYzNi1hYTYyLTM0MWI5MjU1YmE1NT9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG66dc4625/providers/Microsoft.RecoveryServices/vaults/PSTestRSV66dc4625/backupOperations/9e9af097-d1f2-4565-97a8-a10bb5abeead?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNjZkYzQ2MjUvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y2NmRjNDYyNS9iYWNrdXBPcGVyYXRpb25zLzllOWFmMDk3LWQxZjItNDU2NS05N2E4LWExMGJiNWFiZWVhZD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f9814d9e-689d-4c3a-a7cf-8c3ff16bc3b2" + "c314f8fc-b1eb-4f2f-b598-b326110d6acc" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -5257,11 +5401,11 @@ "nosniff" ], "x-ms-request-id": [ - "3a3f8cd5-5e6b-48d0-92d2-e903c72d2fa5" + "8aa1640a-06cc-4812-9167-f7a2c52352b0" ], "x-ms-client-request-id": [ - "f9814d9e-689d-4c3a-a7cf-8c3ff16bc3b2", - "f9814d9e-689d-4c3a-a7cf-8c3ff16bc3b2" + "c314f8fc-b1eb-4f2f-b598-b326110d6acc", + "c314f8fc-b1eb-4f2f-b598-b326110d6acc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5273,19 +5417,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "122" + "128" ], "x-ms-correlation-request-id": [ - "3a3f8cd5-5e6b-48d0-92d2-e903c72d2fa5" + "8aa1640a-06cc-4812-9167-f7a2c52352b0" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220414T061301Z:3a3f8cd5-5e6b-48d0-92d2-e903c72d2fa5" + "JIOINDIAWEST:20220517T055317Z:8aa1640a-06cc-4812-9167-f7a2c52352b0" ], "Date": [ - "Thu, 14 Apr 2022 06:13:01 GMT" + "Tue, 17 May 2022 05:53:17 GMT" ], "Content-Length": [ - "304" + "188" ], "Content-Type": [ "application/json" @@ -5294,26 +5438,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"abab25d3-fe01-4f36-aa62-341b9255ba55\",\r\n \"name\": \"abab25d3-fe01-4f36-aa62-341b9255ba55\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-04-14T06:10:35.9437834Z\",\r\n \"endTime\": \"2022-04-14T06:10:35.9437834Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"94fade41-2323-4723-9961-895ca244c4cd\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"9e9af097-d1f2-4565-97a8-a10bb5abeead\",\r\n \"name\": \"9e9af097-d1f2-4565-97a8-a10bb5abeead\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T05:52:16.4182203Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGffa8be76/providers/Microsoft.RecoveryServices/vaults/PSTestRSVffa8be76/backupOperations/abab25d3-fe01-4f36-aa62-341b9255ba55?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZmZhOGJlNzYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZmZmE4YmU3Ni9iYWNrdXBPcGVyYXRpb25zL2FiYWIyNWQzLWZlMDEtNGYzNi1hYTYyLTM0MWI5MjU1YmE1NT9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG66dc4625/providers/Microsoft.RecoveryServices/vaults/PSTestRSV66dc4625/backupOperations/9e9af097-d1f2-4565-97a8-a10bb5abeead?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNjZkYzQ2MjUvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y2NmRjNDYyNS9iYWNrdXBPcGVyYXRpb25zLzllOWFmMDk3LWQxZjItNDU2NS05N2E4LWExMGJiNWFiZWVhZD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f9814d9e-689d-4c3a-a7cf-8c3ff16bc3b2" + "c314f8fc-b1eb-4f2f-b598-b326110d6acc" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -5327,11 +5471,11 @@ "nosniff" ], "x-ms-request-id": [ - "98464ec0-4870-4450-9876-84199aa66902" + "487cb84d-8bc9-499d-a856-da355052ecec" ], "x-ms-client-request-id": [ - "f9814d9e-689d-4c3a-a7cf-8c3ff16bc3b2", - "f9814d9e-689d-4c3a-a7cf-8c3ff16bc3b2" + "c314f8fc-b1eb-4f2f-b598-b326110d6acc", + "c314f8fc-b1eb-4f2f-b598-b326110d6acc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5343,19 +5487,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "121" + "127" ], "x-ms-correlation-request-id": [ - "98464ec0-4870-4450-9876-84199aa66902" + "487cb84d-8bc9-499d-a856-da355052ecec" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220414T061302Z:98464ec0-4870-4450-9876-84199aa66902" + "JIOINDIAWEST:20220517T055323Z:487cb84d-8bc9-499d-a856-da355052ecec" ], "Date": [ - "Thu, 14 Apr 2022 06:13:01 GMT" + "Tue, 17 May 2022 05:53:23 GMT" ], "Content-Length": [ - "304" + "188" ], "Content-Type": [ "application/json" @@ -5364,26 +5508,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"abab25d3-fe01-4f36-aa62-341b9255ba55\",\r\n \"name\": \"abab25d3-fe01-4f36-aa62-341b9255ba55\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-04-14T06:10:35.9437834Z\",\r\n \"endTime\": \"2022-04-14T06:10:35.9437834Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"94fade41-2323-4723-9961-895ca244c4cd\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"9e9af097-d1f2-4565-97a8-a10bb5abeead\",\r\n \"name\": \"9e9af097-d1f2-4565-97a8-a10bb5abeead\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T05:52:16.4182203Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGffa8be76/providers/Microsoft.RecoveryServices/vaults/PSTestRSVffa8be76/backupJobs/94fade41-2323-4723-9961-895ca244c4cd?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZmZhOGJlNzYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZmZmE4YmU3Ni9iYWNrdXBKb2JzLzk0ZmFkZTQxLTIzMjMtNDcyMy05OTYxLTg5NWNhMjQ0YzRjZD9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG66dc4625/providers/Microsoft.RecoveryServices/vaults/PSTestRSV66dc4625/backupOperations/9e9af097-d1f2-4565-97a8-a10bb5abeead?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNjZkYzQ2MjUvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y2NmRjNDYyNS9iYWNrdXBPcGVyYXRpb25zLzllOWFmMDk3LWQxZjItNDU2NS05N2E4LWExMGJiNWFiZWVhZD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f9814d9e-689d-4c3a-a7cf-8c3ff16bc3b2" + "c314f8fc-b1eb-4f2f-b598-b326110d6acc" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -5393,1510 +5537,36 @@ "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-IIS/10.0" - ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "05978bc7-0cd1-437f-987d-685314e04bcc" + "30a48799-e464-42ed-bf8b-64d7783e951e" ], "x-ms-client-request-id": [ - "f9814d9e-689d-4c3a-a7cf-8c3ff16bc3b2", - "f9814d9e-689d-4c3a-a7cf-8c3ff16bc3b2" - ], - "X-Powered-By": [ - "ASP.NET" + "c314f8fc-b1eb-4f2f-b598-b326110d6acc", + "c314f8fc-b1eb-4f2f-b598-b326110d6acc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "149" - ], - "x-ms-correlation-request-id": [ - "05978bc7-0cd1-437f-987d-685314e04bcc" - ], - "x-ms-routing-request-id": [ - "WESTINDIA:20220414T061302Z:05978bc7-0cd1-437f-987d-685314e04bcc" - ], - "Date": [ - "Thu, 14 Apr 2022 06:13:02 GMT" - ], - "Content-Length": [ - "841" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGffa8be76/providers/Microsoft.RecoveryServices/vaults/PSTestRSVffa8be76/backupJobs/94fade41-2323-4723-9961-895ca244c4cd\",\r\n \"name\": \"94fade41-2323-4723-9961-895ca244c4cd\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgffa8be76;pstestvmffa8b0\",\r\n \"duration\": \"PT2M22.2956726S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvmffa8b0\",\r\n \"Policy Name\": \"DefaultPolicy\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvmffa8b0\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"ConfigureBackup\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-04-14T06:10:35.9437834Z\",\r\n \"endTime\": \"2022-04-14T06:12:58.239456Z\",\r\n \"activityId\": \"f9814d9e-689d-4c3a-a7cf-8c3ff16bc3b2\"\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGffa8be76/providers/Microsoft.RecoveryServices/vaults/PSTestRSVffa8be76/backupProtectionContainers?$filter=backupManagementType%20eq%20'AzureIaasVM'%20and%20status%20eq%20'Registered'&api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZmZhOGJlNzYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZmZmE4YmU3Ni9iYWNrdXBQcm90ZWN0aW9uQ29udGFpbmVycz8kZmlsdGVyPWJhY2t1cE1hbmFnZW1lbnRUeXBlJTIwZXElMjAnQXp1cmVJYWFzVk0nJTIwYW5kJTIwc3RhdHVzJTIwZXElMjAnUmVnaXN0ZXJlZCcmYXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "7edf5879-dc31-4571-801a-4ca1292f751f" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.700.22.16002", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "x-ms-request-id": [ - "3f794e1c-2325-4e77-ae76-440caff8c28a" - ], - "x-ms-client-request-id": [ - "7edf5879-dc31-4571-801a-4ca1292f751f", - "7edf5879-dc31-4571-801a-4ca1292f751f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "149" - ], - "x-ms-correlation-request-id": [ - "3f794e1c-2325-4e77-ae76-440caff8c28a" - ], - "x-ms-routing-request-id": [ - "WESTINDIA:20220414T061303Z:3f794e1c-2325-4e77-ae76-440caff8c28a" - ], - "Date": [ - "Thu, 14 Apr 2022 06:13:02 GMT" - ], - "Content-Length": [ - "914" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGffa8be76/providers/Microsoft.RecoveryServices/vaults/PSTestRSVffa8be76/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrgffa8be76;pstestvmffa8b0\",\r\n \"name\": \"IaasVMContainer;iaasvmcontainerv2;pstestrgffa8be76;pstestvmffa8b0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers\",\r\n \"properties\": {\r\n \"virtualMachineId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGffa8be76/providers/Microsoft.Compute/virtualMachines/PSTestVMffa8b0\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"resourceGroup\": \"PSTestRGffa8be76\",\r\n \"friendlyName\": \"PSTestVMffa8b0\",\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/PSTestRGffa8be76/providers/Microsoft.RecoveryServices/vaults/PSTestRSVffa8be76/backupProtectionContainers?$filter=backupManagementType%20eq%20'AzureIaasVM'%20and%20status%20eq%20'Registered'&api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZmZhOGJlNzYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZmZmE4YmU3Ni9iYWNrdXBQcm90ZWN0aW9uQ29udGFpbmVycz8kZmlsdGVyPWJhY2t1cE1hbmFnZW1lbnRUeXBlJTIwZXElMjAnQXp1cmVJYWFzVk0nJTIwYW5kJTIwc3RhdHVzJTIwZXElMjAnUmVnaXN0ZXJlZCcmYXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "def21c5e-b84b-4e64-a622-48c241f88d48" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.700.22.16002", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "x-ms-request-id": [ - "10795ee6-b933-411d-88ba-07bb6bc80599" - ], - "x-ms-client-request-id": [ - "def21c5e-b84b-4e64-a622-48c241f88d48", - "def21c5e-b84b-4e64-a622-48c241f88d48" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "148" - ], - "x-ms-correlation-request-id": [ - "10795ee6-b933-411d-88ba-07bb6bc80599" - ], - "x-ms-routing-request-id": [ - "WESTINDIA:20220414T061511Z:10795ee6-b933-411d-88ba-07bb6bc80599" - ], - "Date": [ - "Thu, 14 Apr 2022 06:15:10 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/PSTestRGffa8be76/providers/Microsoft.RecoveryServices/vaults/PSTestRSVffa8be76/backupProtectedItems?$filter=backupManagementType%20eq%20'AzureIaasVM'%20and%20itemType%20eq%20'VM'&api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZmZhOGJlNzYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZmZmE4YmU3Ni9iYWNrdXBQcm90ZWN0ZWRJdGVtcz8kZmlsdGVyPWJhY2t1cE1hbmFnZW1lbnRUeXBlJTIwZXElMjAnQXp1cmVJYWFzVk0nJTIwYW5kJTIwaXRlbVR5cGUlMjBlcSUyMCdWTScmYXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "49f08dea-c266-4f9c-8f8c-ff774c188936" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.700.22.16002", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "x-ms-request-id": [ - "59247956-f17c-4576-a664-d0c06076c25c" - ], - "x-ms-client-request-id": [ - "49f08dea-c266-4f9c-8f8c-ff774c188936", - "49f08dea-c266-4f9c-8f8c-ff774c188936" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "149" - ], - "x-ms-correlation-request-id": [ - "59247956-f17c-4576-a664-d0c06076c25c" - ], - "x-ms-routing-request-id": [ - "WESTINDIA:20220414T061304Z:59247956-f17c-4576-a664-d0c06076c25c" - ], - "Date": [ - "Thu, 14 Apr 2022 06:13:03 GMT" - ], - "Content-Length": [ - "1495" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGffa8be76/providers/Microsoft.RecoveryServices/vaults/PSTestRSVffa8be76/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrgffa8be76;pstestvmffa8b0/protectedItems/VM;iaasvmcontainerv2;pstestrgffa8be76;pstestvmffa8b0\",\r\n \"name\": \"VM;iaasvmcontainerv2;pstestrgffa8be76;pstestvmffa8b0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems\",\r\n \"properties\": {\r\n \"kpisHealths\": {},\r\n \"friendlyName\": \"PSTestVMffa8b0\",\r\n \"virtualMachineId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGffa8be76/providers/Microsoft.Compute/virtualMachines/PSTestVMffa8b0\",\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\": \"70369233798804\",\r\n \"protectedItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"workloadType\": \"VM\",\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgffa8be76;pstestvmffa8b0\",\r\n \"sourceResourceId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGffa8be76/providers/Microsoft.Compute/virtualMachines/PSTestVMffa8b0\",\r\n \"policyId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGffa8be76/providers/Microsoft.RecoveryServices/vaults/PSTestRSVffa8be76/backupPolicies/DefaultPolicy\",\r\n \"policyName\": \"DefaultPolicy\",\r\n \"isArchiveEnabled\": false\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGffa8be76/providers/Microsoft.RecoveryServices/vaults/PSTestRSVffa8be76/backupFabrics/Azure/protectionContainers/IaasVMContainer%3Biaasvmcontainerv2%3Bpstestrgffa8be76%3Bpstestvmffa8b0/protectedItems/VM%3Biaasvmcontainerv2%3Bpstestrgffa8be76%3Bpstestvmffa8b0/recoveryPoints?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZmZhOGJlNzYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZmZmE4YmU3Ni9iYWNrdXBGYWJyaWNzL0F6dXJlL3Byb3RlY3Rpb25Db250YWluZXJzL0lhYXNWTUNvbnRhaW5lciUzQmlhYXN2bWNvbnRhaW5lcnYyJTNCcHN0ZXN0cmdmZmE4YmU3NiUzQnBzdGVzdHZtZmZhOGIwL3Byb3RlY3RlZEl0ZW1zL1ZNJTNCaWFhc3ZtY29udGFpbmVydjIlM0Jwc3Rlc3RyZ2ZmYThiZTc2JTNCcHN0ZXN0dm1mZmE4YjAvcmVjb3ZlcnlQb2ludHM/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "a16886de-3fb5-4767-9e20-ccf0c94b6d56" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.700.22.16002", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "x-ms-request-id": [ - "94e02db1-abd8-4efe-a027-e859a044b087" - ], - "x-ms-client-request-id": [ - "a16886de-3fb5-4767-9e20-ccf0c94b6d56", - "a16886de-3fb5-4767-9e20-ccf0c94b6d56" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "149" - ], - "x-ms-correlation-request-id": [ - "94e02db1-abd8-4efe-a027-e859a044b087" - ], - "x-ms-routing-request-id": [ - "WESTINDIA:20220414T061304Z:94e02db1-abd8-4efe-a027-e859a044b087" - ], - "Date": [ - "Thu, 14 Apr 2022 06:13:04 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/PSTestRGffa8be76/providers/Microsoft.RecoveryServices/vaults/PSTestRSVffa8be76/backupFabrics/Azure/protectionContainers/IaasVMContainer%3Biaasvmcontainerv2%3Bpstestrgffa8be76%3Bpstestvmffa8b0/protectedItems/VM%3Biaasvmcontainerv2%3Bpstestrgffa8be76%3Bpstestvmffa8b0?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZmZhOGJlNzYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZmZmE4YmU3Ni9iYWNrdXBGYWJyaWNzL0F6dXJlL3Byb3RlY3Rpb25Db250YWluZXJzL0lhYXNWTUNvbnRhaW5lciUzQmlhYXN2bWNvbnRhaW5lcnYyJTNCcHN0ZXN0cmdmZmE4YmU3NiUzQnBzdGVzdHZtZmZhOGIwL3Byb3RlY3RlZEl0ZW1zL1ZNJTNCaWFhc3ZtY29udGFpbmVydjIlM0Jwc3Rlc3RyZ2ZmYThiZTc2JTNCcHN0ZXN0dm1mZmE4YjA/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", - "RequestMethod": "DELETE", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "a16886de-3fb5-4767-9e20-ccf0c94b6d56" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.700.22.16002", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGffa8be76/providers/Microsoft.RecoveryServices/vaults/PSTestRSVffa8be76/backupOperationResults/eccfd811-ec44-4025-8edf-f8554f32be0a?api-version=2021-12-01" - ], - "Retry-After": [ - "60" - ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGffa8be76/providers/Microsoft.RecoveryServices/vaults/PSTestRSVffa8be76/backupOperations/eccfd811-ec44-4025-8edf-f8554f32be0a?api-version=2021-12-01" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "x-ms-request-id": [ - "060b2c46-98e3-49d1-baf1-00184b126312" - ], - "x-ms-client-request-id": [ - "a16886de-3fb5-4767-9e20-ccf0c94b6d56", - "a16886de-3fb5-4767-9e20-ccf0c94b6d56" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-deletes": [ - "14999" - ], - "x-ms-correlation-request-id": [ - "060b2c46-98e3-49d1-baf1-00184b126312" - ], - "x-ms-routing-request-id": [ - "WESTINDIA:20220414T061305Z:060b2c46-98e3-49d1-baf1-00184b126312" - ], - "Date": [ - "Thu, 14 Apr 2022 06:13:04 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGffa8be76/providers/Microsoft.RecoveryServices/vaults/PSTestRSVffa8be76/backupOperations/eccfd811-ec44-4025-8edf-f8554f32be0a?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZmZhOGJlNzYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZmZmE4YmU3Ni9iYWNrdXBPcGVyYXRpb25zL2VjY2ZkODExLWVjNDQtNDAyNS04ZWRmLWY4NTU0ZjMyYmUwYT9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "a16886de-3fb5-4767-9e20-ccf0c94b6d56" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.700.22.16002", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "x-ms-request-id": [ - "aa4bc975-8869-4e2e-b9b3-95dc3eb5c670" - ], - "x-ms-client-request-id": [ - "a16886de-3fb5-4767-9e20-ccf0c94b6d56", - "a16886de-3fb5-4767-9e20-ccf0c94b6d56" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "120" - ], - "x-ms-correlation-request-id": [ - "aa4bc975-8869-4e2e-b9b3-95dc3eb5c670" - ], - "x-ms-routing-request-id": [ - "WESTINDIA:20220414T061305Z:aa4bc975-8869-4e2e-b9b3-95dc3eb5c670" - ], - "Date": [ - "Thu, 14 Apr 2022 06:13:05 GMT" - ], - "Content-Length": [ - "188" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"eccfd811-ec44-4025-8edf-f8554f32be0a\",\r\n \"name\": \"eccfd811-ec44-4025-8edf-f8554f32be0a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-04-14T06:13:05.2856328Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGffa8be76/providers/Microsoft.RecoveryServices/vaults/PSTestRSVffa8be76/backupOperations/eccfd811-ec44-4025-8edf-f8554f32be0a?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZmZhOGJlNzYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZmZmE4YmU3Ni9iYWNrdXBPcGVyYXRpb25zL2VjY2ZkODExLWVjNDQtNDAyNS04ZWRmLWY4NTU0ZjMyYmUwYT9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "a16886de-3fb5-4767-9e20-ccf0c94b6d56" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.700.22.16002", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "x-ms-request-id": [ - "33e5c292-ca6a-48e7-b29f-259d8f8e4711" - ], - "x-ms-client-request-id": [ - "a16886de-3fb5-4767-9e20-ccf0c94b6d56", - "a16886de-3fb5-4767-9e20-ccf0c94b6d56" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "119" - ], - "x-ms-correlation-request-id": [ - "33e5c292-ca6a-48e7-b29f-259d8f8e4711" - ], - "x-ms-routing-request-id": [ - "WESTINDIA:20220414T061311Z:33e5c292-ca6a-48e7-b29f-259d8f8e4711" - ], - "Date": [ - "Thu, 14 Apr 2022 06:13:10 GMT" - ], - "Content-Length": [ - "188" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"eccfd811-ec44-4025-8edf-f8554f32be0a\",\r\n \"name\": \"eccfd811-ec44-4025-8edf-f8554f32be0a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-04-14T06:13:05.2856328Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGffa8be76/providers/Microsoft.RecoveryServices/vaults/PSTestRSVffa8be76/backupOperations/eccfd811-ec44-4025-8edf-f8554f32be0a?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZmZhOGJlNzYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZmZmE4YmU3Ni9iYWNrdXBPcGVyYXRpb25zL2VjY2ZkODExLWVjNDQtNDAyNS04ZWRmLWY4NTU0ZjMyYmUwYT9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "a16886de-3fb5-4767-9e20-ccf0c94b6d56" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.700.22.16002", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "x-ms-request-id": [ - "9ae7aa5b-6c46-4956-aac4-841c8c5863ac" - ], - "x-ms-client-request-id": [ - "a16886de-3fb5-4767-9e20-ccf0c94b6d56", - "a16886de-3fb5-4767-9e20-ccf0c94b6d56" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "118" - ], - "x-ms-correlation-request-id": [ - "9ae7aa5b-6c46-4956-aac4-841c8c5863ac" - ], - "x-ms-routing-request-id": [ - "WESTINDIA:20220414T061316Z:9ae7aa5b-6c46-4956-aac4-841c8c5863ac" - ], - "Date": [ - "Thu, 14 Apr 2022 06:13:15 GMT" - ], - "Content-Length": [ - "188" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"eccfd811-ec44-4025-8edf-f8554f32be0a\",\r\n \"name\": \"eccfd811-ec44-4025-8edf-f8554f32be0a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-04-14T06:13:05.2856328Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGffa8be76/providers/Microsoft.RecoveryServices/vaults/PSTestRSVffa8be76/backupOperations/eccfd811-ec44-4025-8edf-f8554f32be0a?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZmZhOGJlNzYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZmZmE4YmU3Ni9iYWNrdXBPcGVyYXRpb25zL2VjY2ZkODExLWVjNDQtNDAyNS04ZWRmLWY4NTU0ZjMyYmUwYT9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "a16886de-3fb5-4767-9e20-ccf0c94b6d56" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.700.22.16002", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "x-ms-request-id": [ - "2fe41f2a-c9fb-4736-814e-b2dd558fcc67" - ], - "x-ms-client-request-id": [ - "a16886de-3fb5-4767-9e20-ccf0c94b6d56", - "a16886de-3fb5-4767-9e20-ccf0c94b6d56" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "117" - ], - "x-ms-correlation-request-id": [ - "2fe41f2a-c9fb-4736-814e-b2dd558fcc67" - ], - "x-ms-routing-request-id": [ - "WESTINDIA:20220414T061321Z:2fe41f2a-c9fb-4736-814e-b2dd558fcc67" - ], - "Date": [ - "Thu, 14 Apr 2022 06:13:21 GMT" - ], - "Content-Length": [ - "188" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"eccfd811-ec44-4025-8edf-f8554f32be0a\",\r\n \"name\": \"eccfd811-ec44-4025-8edf-f8554f32be0a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-04-14T06:13:05.2856328Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGffa8be76/providers/Microsoft.RecoveryServices/vaults/PSTestRSVffa8be76/backupOperations/eccfd811-ec44-4025-8edf-f8554f32be0a?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZmZhOGJlNzYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZmZmE4YmU3Ni9iYWNrdXBPcGVyYXRpb25zL2VjY2ZkODExLWVjNDQtNDAyNS04ZWRmLWY4NTU0ZjMyYmUwYT9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "a16886de-3fb5-4767-9e20-ccf0c94b6d56" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.700.22.16002", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "x-ms-request-id": [ - "3faaec92-8f99-46bd-b204-f992904b5050" - ], - "x-ms-client-request-id": [ - "a16886de-3fb5-4767-9e20-ccf0c94b6d56", - "a16886de-3fb5-4767-9e20-ccf0c94b6d56" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "116" - ], - "x-ms-correlation-request-id": [ - "3faaec92-8f99-46bd-b204-f992904b5050" - ], - "x-ms-routing-request-id": [ - "WESTINDIA:20220414T061327Z:3faaec92-8f99-46bd-b204-f992904b5050" - ], - "Date": [ - "Thu, 14 Apr 2022 06:13:26 GMT" - ], - "Content-Length": [ - "188" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"eccfd811-ec44-4025-8edf-f8554f32be0a\",\r\n \"name\": \"eccfd811-ec44-4025-8edf-f8554f32be0a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-04-14T06:13:05.2856328Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGffa8be76/providers/Microsoft.RecoveryServices/vaults/PSTestRSVffa8be76/backupOperations/eccfd811-ec44-4025-8edf-f8554f32be0a?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZmZhOGJlNzYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZmZmE4YmU3Ni9iYWNrdXBPcGVyYXRpb25zL2VjY2ZkODExLWVjNDQtNDAyNS04ZWRmLWY4NTU0ZjMyYmUwYT9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "a16886de-3fb5-4767-9e20-ccf0c94b6d56" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.700.22.16002", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "x-ms-request-id": [ - "d76d7265-58cb-4623-8722-71bb28102b85" - ], - "x-ms-client-request-id": [ - "a16886de-3fb5-4767-9e20-ccf0c94b6d56", - "a16886de-3fb5-4767-9e20-ccf0c94b6d56" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "115" - ], - "x-ms-correlation-request-id": [ - "d76d7265-58cb-4623-8722-71bb28102b85" - ], - "x-ms-routing-request-id": [ - "WESTINDIA:20220414T061332Z:d76d7265-58cb-4623-8722-71bb28102b85" - ], - "Date": [ - "Thu, 14 Apr 2022 06:13:32 GMT" - ], - "Content-Length": [ - "188" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"eccfd811-ec44-4025-8edf-f8554f32be0a\",\r\n \"name\": \"eccfd811-ec44-4025-8edf-f8554f32be0a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-04-14T06:13:05.2856328Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGffa8be76/providers/Microsoft.RecoveryServices/vaults/PSTestRSVffa8be76/backupOperations/eccfd811-ec44-4025-8edf-f8554f32be0a?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZmZhOGJlNzYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZmZmE4YmU3Ni9iYWNrdXBPcGVyYXRpb25zL2VjY2ZkODExLWVjNDQtNDAyNS04ZWRmLWY4NTU0ZjMyYmUwYT9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "a16886de-3fb5-4767-9e20-ccf0c94b6d56" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.700.22.16002", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "x-ms-request-id": [ - "b1e6ffa7-3a19-47da-956b-2d8441464e15" - ], - "x-ms-client-request-id": [ - "a16886de-3fb5-4767-9e20-ccf0c94b6d56", - "a16886de-3fb5-4767-9e20-ccf0c94b6d56" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "114" - ], - "x-ms-correlation-request-id": [ - "b1e6ffa7-3a19-47da-956b-2d8441464e15" - ], - "x-ms-routing-request-id": [ - "WESTINDIA:20220414T061338Z:b1e6ffa7-3a19-47da-956b-2d8441464e15" - ], - "Date": [ - "Thu, 14 Apr 2022 06:13:37 GMT" - ], - "Content-Length": [ - "188" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"eccfd811-ec44-4025-8edf-f8554f32be0a\",\r\n \"name\": \"eccfd811-ec44-4025-8edf-f8554f32be0a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-04-14T06:13:05.2856328Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGffa8be76/providers/Microsoft.RecoveryServices/vaults/PSTestRSVffa8be76/backupOperations/eccfd811-ec44-4025-8edf-f8554f32be0a?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZmZhOGJlNzYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZmZmE4YmU3Ni9iYWNrdXBPcGVyYXRpb25zL2VjY2ZkODExLWVjNDQtNDAyNS04ZWRmLWY4NTU0ZjMyYmUwYT9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "a16886de-3fb5-4767-9e20-ccf0c94b6d56" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.700.22.16002", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "x-ms-request-id": [ - "70e402d1-c5a9-4b6b-b27e-c49edab58943" - ], - "x-ms-client-request-id": [ - "a16886de-3fb5-4767-9e20-ccf0c94b6d56", - "a16886de-3fb5-4767-9e20-ccf0c94b6d56" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "113" - ], - "x-ms-correlation-request-id": [ - "70e402d1-c5a9-4b6b-b27e-c49edab58943" - ], - "x-ms-routing-request-id": [ - "WESTINDIA:20220414T061343Z:70e402d1-c5a9-4b6b-b27e-c49edab58943" - ], - "Date": [ - "Thu, 14 Apr 2022 06:13:43 GMT" - ], - "Content-Length": [ - "188" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"eccfd811-ec44-4025-8edf-f8554f32be0a\",\r\n \"name\": \"eccfd811-ec44-4025-8edf-f8554f32be0a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-04-14T06:13:05.2856328Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGffa8be76/providers/Microsoft.RecoveryServices/vaults/PSTestRSVffa8be76/backupOperations/eccfd811-ec44-4025-8edf-f8554f32be0a?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZmZhOGJlNzYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZmZmE4YmU3Ni9iYWNrdXBPcGVyYXRpb25zL2VjY2ZkODExLWVjNDQtNDAyNS04ZWRmLWY4NTU0ZjMyYmUwYT9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "a16886de-3fb5-4767-9e20-ccf0c94b6d56" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.700.22.16002", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "x-ms-request-id": [ - "a6b38654-022f-4e3e-9d75-096cb1ba9d50" - ], - "x-ms-client-request-id": [ - "a16886de-3fb5-4767-9e20-ccf0c94b6d56", - "a16886de-3fb5-4767-9e20-ccf0c94b6d56" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "112" - ], - "x-ms-correlation-request-id": [ - "a6b38654-022f-4e3e-9d75-096cb1ba9d50" - ], - "x-ms-routing-request-id": [ - "WESTINDIA:20220414T061348Z:a6b38654-022f-4e3e-9d75-096cb1ba9d50" - ], - "Date": [ - "Thu, 14 Apr 2022 06:13:48 GMT" - ], - "Content-Length": [ - "188" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"eccfd811-ec44-4025-8edf-f8554f32be0a\",\r\n \"name\": \"eccfd811-ec44-4025-8edf-f8554f32be0a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-04-14T06:13:05.2856328Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGffa8be76/providers/Microsoft.RecoveryServices/vaults/PSTestRSVffa8be76/backupOperations/eccfd811-ec44-4025-8edf-f8554f32be0a?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZmZhOGJlNzYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZmZmE4YmU3Ni9iYWNrdXBPcGVyYXRpb25zL2VjY2ZkODExLWVjNDQtNDAyNS04ZWRmLWY4NTU0ZjMyYmUwYT9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "a16886de-3fb5-4767-9e20-ccf0c94b6d56" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.700.22.16002", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "x-ms-request-id": [ - "6db50708-d26a-4b55-a82e-c02d48f5e7fd" - ], - "x-ms-client-request-id": [ - "a16886de-3fb5-4767-9e20-ccf0c94b6d56", - "a16886de-3fb5-4767-9e20-ccf0c94b6d56" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "111" - ], - "x-ms-correlation-request-id": [ - "6db50708-d26a-4b55-a82e-c02d48f5e7fd" - ], - "x-ms-routing-request-id": [ - "WESTINDIA:20220414T061354Z:6db50708-d26a-4b55-a82e-c02d48f5e7fd" - ], - "Date": [ - "Thu, 14 Apr 2022 06:13:53 GMT" - ], - "Content-Length": [ - "188" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"eccfd811-ec44-4025-8edf-f8554f32be0a\",\r\n \"name\": \"eccfd811-ec44-4025-8edf-f8554f32be0a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-04-14T06:13:05.2856328Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGffa8be76/providers/Microsoft.RecoveryServices/vaults/PSTestRSVffa8be76/backupOperations/eccfd811-ec44-4025-8edf-f8554f32be0a?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZmZhOGJlNzYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZmZmE4YmU3Ni9iYWNrdXBPcGVyYXRpb25zL2VjY2ZkODExLWVjNDQtNDAyNS04ZWRmLWY4NTU0ZjMyYmUwYT9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "a16886de-3fb5-4767-9e20-ccf0c94b6d56" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.700.22.16002", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "x-ms-request-id": [ - "d685bfa1-3a50-4311-9a0f-403c8cc05a3f" - ], - "x-ms-client-request-id": [ - "a16886de-3fb5-4767-9e20-ccf0c94b6d56", - "a16886de-3fb5-4767-9e20-ccf0c94b6d56" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "110" - ], - "x-ms-correlation-request-id": [ - "d685bfa1-3a50-4311-9a0f-403c8cc05a3f" - ], - "x-ms-routing-request-id": [ - "WESTINDIA:20220414T061359Z:d685bfa1-3a50-4311-9a0f-403c8cc05a3f" - ], - "Date": [ - "Thu, 14 Apr 2022 06:13:59 GMT" - ], - "Content-Length": [ - "188" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"eccfd811-ec44-4025-8edf-f8554f32be0a\",\r\n \"name\": \"eccfd811-ec44-4025-8edf-f8554f32be0a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-04-14T06:13:05.2856328Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGffa8be76/providers/Microsoft.RecoveryServices/vaults/PSTestRSVffa8be76/backupOperations/eccfd811-ec44-4025-8edf-f8554f32be0a?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZmZhOGJlNzYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZmZmE4YmU3Ni9iYWNrdXBPcGVyYXRpb25zL2VjY2ZkODExLWVjNDQtNDAyNS04ZWRmLWY4NTU0ZjMyYmUwYT9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "a16886de-3fb5-4767-9e20-ccf0c94b6d56" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.700.22.16002", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "x-ms-request-id": [ - "8b943d6a-319d-4ca0-88f9-3ff20a3a2a5a" - ], - "x-ms-client-request-id": [ - "a16886de-3fb5-4767-9e20-ccf0c94b6d56", - "a16886de-3fb5-4767-9e20-ccf0c94b6d56" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-IIS/10.0" + "Server": [ + "Microsoft-IIS/10.0" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "109" - ], - "x-ms-correlation-request-id": [ - "8b943d6a-319d-4ca0-88f9-3ff20a3a2a5a" - ], - "x-ms-routing-request-id": [ - "WESTINDIA:20220414T061404Z:8b943d6a-319d-4ca0-88f9-3ff20a3a2a5a" - ], - "Date": [ - "Thu, 14 Apr 2022 06:14:04 GMT" - ], - "Content-Length": [ - "188" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"eccfd811-ec44-4025-8edf-f8554f32be0a\",\r\n \"name\": \"eccfd811-ec44-4025-8edf-f8554f32be0a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-04-14T06:13:05.2856328Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGffa8be76/providers/Microsoft.RecoveryServices/vaults/PSTestRSVffa8be76/backupOperations/eccfd811-ec44-4025-8edf-f8554f32be0a?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZmZhOGJlNzYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZmZmE4YmU3Ni9iYWNrdXBPcGVyYXRpb25zL2VjY2ZkODExLWVjNDQtNDAyNS04ZWRmLWY4NTU0ZjMyYmUwYT9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "a16886de-3fb5-4767-9e20-ccf0c94b6d56" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.700.22.16002", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "x-ms-request-id": [ - "0a57c218-9ff9-426c-9fa1-073dc5328ffa" - ], - "x-ms-client-request-id": [ - "a16886de-3fb5-4767-9e20-ccf0c94b6d56", - "a16886de-3fb5-4767-9e20-ccf0c94b6d56" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "108" - ], - "x-ms-correlation-request-id": [ - "0a57c218-9ff9-426c-9fa1-073dc5328ffa" - ], - "x-ms-routing-request-id": [ - "WESTINDIA:20220414T061410Z:0a57c218-9ff9-426c-9fa1-073dc5328ffa" - ], - "Date": [ - "Thu, 14 Apr 2022 06:14:09 GMT" - ], - "Content-Length": [ - "188" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"eccfd811-ec44-4025-8edf-f8554f32be0a\",\r\n \"name\": \"eccfd811-ec44-4025-8edf-f8554f32be0a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-04-14T06:13:05.2856328Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGffa8be76/providers/Microsoft.RecoveryServices/vaults/PSTestRSVffa8be76/backupOperations/eccfd811-ec44-4025-8edf-f8554f32be0a?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZmZhOGJlNzYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZmZmE4YmU3Ni9iYWNrdXBPcGVyYXRpb25zL2VjY2ZkODExLWVjNDQtNDAyNS04ZWRmLWY4NTU0ZjMyYmUwYT9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "a16886de-3fb5-4767-9e20-ccf0c94b6d56" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.700.22.16002", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "x-ms-request-id": [ - "9fa6a5e3-de89-45bb-9e51-6b846921aaa0" - ], - "x-ms-client-request-id": [ - "a16886de-3fb5-4767-9e20-ccf0c94b6d56", - "a16886de-3fb5-4767-9e20-ccf0c94b6d56" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "107" - ], - "x-ms-correlation-request-id": [ - "9fa6a5e3-de89-45bb-9e51-6b846921aaa0" - ], - "x-ms-routing-request-id": [ - "WESTINDIA:20220414T061415Z:9fa6a5e3-de89-45bb-9e51-6b846921aaa0" - ], - "Date": [ - "Thu, 14 Apr 2022 06:14:14 GMT" - ], - "Content-Length": [ - "188" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"eccfd811-ec44-4025-8edf-f8554f32be0a\",\r\n \"name\": \"eccfd811-ec44-4025-8edf-f8554f32be0a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-04-14T06:13:05.2856328Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGffa8be76/providers/Microsoft.RecoveryServices/vaults/PSTestRSVffa8be76/backupOperations/eccfd811-ec44-4025-8edf-f8554f32be0a?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZmZhOGJlNzYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZmZmE4YmU3Ni9iYWNrdXBPcGVyYXRpb25zL2VjY2ZkODExLWVjNDQtNDAyNS04ZWRmLWY4NTU0ZjMyYmUwYT9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "a16886de-3fb5-4767-9e20-ccf0c94b6d56" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.700.22.16002", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "x-ms-request-id": [ - "85cd0ce7-ec67-446e-a8c8-7506c0172342" - ], - "x-ms-client-request-id": [ - "a16886de-3fb5-4767-9e20-ccf0c94b6d56", - "a16886de-3fb5-4767-9e20-ccf0c94b6d56" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "106" - ], - "x-ms-correlation-request-id": [ - "85cd0ce7-ec67-446e-a8c8-7506c0172342" - ], - "x-ms-routing-request-id": [ - "WESTINDIA:20220414T061420Z:85cd0ce7-ec67-446e-a8c8-7506c0172342" - ], - "Date": [ - "Thu, 14 Apr 2022 06:14:20 GMT" - ], - "Content-Length": [ - "188" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"eccfd811-ec44-4025-8edf-f8554f32be0a\",\r\n \"name\": \"eccfd811-ec44-4025-8edf-f8554f32be0a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-04-14T06:13:05.2856328Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGffa8be76/providers/Microsoft.RecoveryServices/vaults/PSTestRSVffa8be76/backupOperations/eccfd811-ec44-4025-8edf-f8554f32be0a?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZmZhOGJlNzYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZmZmE4YmU3Ni9iYWNrdXBPcGVyYXRpb25zL2VjY2ZkODExLWVjNDQtNDAyNS04ZWRmLWY4NTU0ZjMyYmUwYT9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "a16886de-3fb5-4767-9e20-ccf0c94b6d56" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.700.22.16002", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "x-ms-request-id": [ - "a8151c25-633a-48d0-b52b-0795f220cdab" - ], - "x-ms-client-request-id": [ - "a16886de-3fb5-4767-9e20-ccf0c94b6d56", - "a16886de-3fb5-4767-9e20-ccf0c94b6d56" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "105" + "126" ], "x-ms-correlation-request-id": [ - "a8151c25-633a-48d0-b52b-0795f220cdab" + "30a48799-e464-42ed-bf8b-64d7783e951e" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220414T061426Z:a8151c25-633a-48d0-b52b-0795f220cdab" + "JIOINDIAWEST:20220517T055328Z:30a48799-e464-42ed-bf8b-64d7783e951e" ], "Date": [ - "Thu, 14 Apr 2022 06:14:25 GMT" + "Tue, 17 May 2022 05:53:28 GMT" ], "Content-Length": [ "188" @@ -6908,26 +5578,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"eccfd811-ec44-4025-8edf-f8554f32be0a\",\r\n \"name\": \"eccfd811-ec44-4025-8edf-f8554f32be0a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-04-14T06:13:05.2856328Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"9e9af097-d1f2-4565-97a8-a10bb5abeead\",\r\n \"name\": \"9e9af097-d1f2-4565-97a8-a10bb5abeead\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T05:52:16.4182203Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGffa8be76/providers/Microsoft.RecoveryServices/vaults/PSTestRSVffa8be76/backupOperations/eccfd811-ec44-4025-8edf-f8554f32be0a?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZmZhOGJlNzYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZmZmE4YmU3Ni9iYWNrdXBPcGVyYXRpb25zL2VjY2ZkODExLWVjNDQtNDAyNS04ZWRmLWY4NTU0ZjMyYmUwYT9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG66dc4625/providers/Microsoft.RecoveryServices/vaults/PSTestRSV66dc4625/backupOperations/9e9af097-d1f2-4565-97a8-a10bb5abeead?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNjZkYzQ2MjUvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y2NmRjNDYyNS9iYWNrdXBPcGVyYXRpb25zLzllOWFmMDk3LWQxZjItNDU2NS05N2E4LWExMGJiNWFiZWVhZD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a16886de-3fb5-4767-9e20-ccf0c94b6d56" + "c314f8fc-b1eb-4f2f-b598-b326110d6acc" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -6941,11 +5611,11 @@ "nosniff" ], "x-ms-request-id": [ - "72369689-8c2a-4a2d-83e9-31e3551ffe4e" + "0b5f7e77-de28-4556-a894-1daea5eaf95f" ], "x-ms-client-request-id": [ - "a16886de-3fb5-4767-9e20-ccf0c94b6d56", - "a16886de-3fb5-4767-9e20-ccf0c94b6d56" + "c314f8fc-b1eb-4f2f-b598-b326110d6acc", + "c314f8fc-b1eb-4f2f-b598-b326110d6acc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6957,16 +5627,16 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "104" + "125" ], "x-ms-correlation-request-id": [ - "72369689-8c2a-4a2d-83e9-31e3551ffe4e" + "0b5f7e77-de28-4556-a894-1daea5eaf95f" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220414T061431Z:72369689-8c2a-4a2d-83e9-31e3551ffe4e" + "JIOINDIAWEST:20220517T055334Z:0b5f7e77-de28-4556-a894-1daea5eaf95f" ], "Date": [ - "Thu, 14 Apr 2022 06:14:30 GMT" + "Tue, 17 May 2022 05:53:33 GMT" ], "Content-Length": [ "188" @@ -6978,26 +5648,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"eccfd811-ec44-4025-8edf-f8554f32be0a\",\r\n \"name\": \"eccfd811-ec44-4025-8edf-f8554f32be0a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-04-14T06:13:05.2856328Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"9e9af097-d1f2-4565-97a8-a10bb5abeead\",\r\n \"name\": \"9e9af097-d1f2-4565-97a8-a10bb5abeead\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T05:52:16.4182203Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGffa8be76/providers/Microsoft.RecoveryServices/vaults/PSTestRSVffa8be76/backupOperations/eccfd811-ec44-4025-8edf-f8554f32be0a?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZmZhOGJlNzYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZmZmE4YmU3Ni9iYWNrdXBPcGVyYXRpb25zL2VjY2ZkODExLWVjNDQtNDAyNS04ZWRmLWY4NTU0ZjMyYmUwYT9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG66dc4625/providers/Microsoft.RecoveryServices/vaults/PSTestRSV66dc4625/backupOperations/9e9af097-d1f2-4565-97a8-a10bb5abeead?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNjZkYzQ2MjUvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y2NmRjNDYyNS9iYWNrdXBPcGVyYXRpb25zLzllOWFmMDk3LWQxZjItNDU2NS05N2E4LWExMGJiNWFiZWVhZD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a16886de-3fb5-4767-9e20-ccf0c94b6d56" + "c314f8fc-b1eb-4f2f-b598-b326110d6acc" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -7011,11 +5681,11 @@ "nosniff" ], "x-ms-request-id": [ - "967c79b4-20ad-4f29-a552-86e8fd9a2131" + "f06c1a3f-d4bf-4e22-a733-9f73447fb0f3" ], "x-ms-client-request-id": [ - "a16886de-3fb5-4767-9e20-ccf0c94b6d56", - "a16886de-3fb5-4767-9e20-ccf0c94b6d56" + "c314f8fc-b1eb-4f2f-b598-b326110d6acc", + "c314f8fc-b1eb-4f2f-b598-b326110d6acc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -7027,16 +5697,16 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "103" + "124" ], "x-ms-correlation-request-id": [ - "967c79b4-20ad-4f29-a552-86e8fd9a2131" + "f06c1a3f-d4bf-4e22-a733-9f73447fb0f3" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220414T061436Z:967c79b4-20ad-4f29-a552-86e8fd9a2131" + "JIOINDIAWEST:20220517T055339Z:f06c1a3f-d4bf-4e22-a733-9f73447fb0f3" ], "Date": [ - "Thu, 14 Apr 2022 06:14:36 GMT" + "Tue, 17 May 2022 05:53:39 GMT" ], "Content-Length": [ "188" @@ -7048,26 +5718,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"eccfd811-ec44-4025-8edf-f8554f32be0a\",\r\n \"name\": \"eccfd811-ec44-4025-8edf-f8554f32be0a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-04-14T06:13:05.2856328Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"9e9af097-d1f2-4565-97a8-a10bb5abeead\",\r\n \"name\": \"9e9af097-d1f2-4565-97a8-a10bb5abeead\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T05:52:16.4182203Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGffa8be76/providers/Microsoft.RecoveryServices/vaults/PSTestRSVffa8be76/backupOperations/eccfd811-ec44-4025-8edf-f8554f32be0a?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZmZhOGJlNzYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZmZmE4YmU3Ni9iYWNrdXBPcGVyYXRpb25zL2VjY2ZkODExLWVjNDQtNDAyNS04ZWRmLWY4NTU0ZjMyYmUwYT9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG66dc4625/providers/Microsoft.RecoveryServices/vaults/PSTestRSV66dc4625/backupOperations/9e9af097-d1f2-4565-97a8-a10bb5abeead?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNjZkYzQ2MjUvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y2NmRjNDYyNS9iYWNrdXBPcGVyYXRpb25zLzllOWFmMDk3LWQxZjItNDU2NS05N2E4LWExMGJiNWFiZWVhZD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a16886de-3fb5-4767-9e20-ccf0c94b6d56" + "c314f8fc-b1eb-4f2f-b598-b326110d6acc" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -7081,11 +5751,11 @@ "nosniff" ], "x-ms-request-id": [ - "f3242753-1e7e-4691-869d-37418647188b" + "2d170c53-c8c7-41ec-80fc-5c2328d54dbf" ], "x-ms-client-request-id": [ - "a16886de-3fb5-4767-9e20-ccf0c94b6d56", - "a16886de-3fb5-4767-9e20-ccf0c94b6d56" + "c314f8fc-b1eb-4f2f-b598-b326110d6acc", + "c314f8fc-b1eb-4f2f-b598-b326110d6acc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -7097,16 +5767,16 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "102" + "123" ], "x-ms-correlation-request-id": [ - "f3242753-1e7e-4691-869d-37418647188b" + "2d170c53-c8c7-41ec-80fc-5c2328d54dbf" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220414T061442Z:f3242753-1e7e-4691-869d-37418647188b" + "JIOINDIAWEST:20220517T055345Z:2d170c53-c8c7-41ec-80fc-5c2328d54dbf" ], "Date": [ - "Thu, 14 Apr 2022 06:14:41 GMT" + "Tue, 17 May 2022 05:53:44 GMT" ], "Content-Length": [ "188" @@ -7118,26 +5788,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"eccfd811-ec44-4025-8edf-f8554f32be0a\",\r\n \"name\": \"eccfd811-ec44-4025-8edf-f8554f32be0a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-04-14T06:13:05.2856328Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"9e9af097-d1f2-4565-97a8-a10bb5abeead\",\r\n \"name\": \"9e9af097-d1f2-4565-97a8-a10bb5abeead\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T05:52:16.4182203Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGffa8be76/providers/Microsoft.RecoveryServices/vaults/PSTestRSVffa8be76/backupOperations/eccfd811-ec44-4025-8edf-f8554f32be0a?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZmZhOGJlNzYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZmZmE4YmU3Ni9iYWNrdXBPcGVyYXRpb25zL2VjY2ZkODExLWVjNDQtNDAyNS04ZWRmLWY4NTU0ZjMyYmUwYT9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG66dc4625/providers/Microsoft.RecoveryServices/vaults/PSTestRSV66dc4625/backupOperations/9e9af097-d1f2-4565-97a8-a10bb5abeead?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNjZkYzQ2MjUvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y2NmRjNDYyNS9iYWNrdXBPcGVyYXRpb25zLzllOWFmMDk3LWQxZjItNDU2NS05N2E4LWExMGJiNWFiZWVhZD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a16886de-3fb5-4767-9e20-ccf0c94b6d56" + "c314f8fc-b1eb-4f2f-b598-b326110d6acc" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -7151,11 +5821,11 @@ "nosniff" ], "x-ms-request-id": [ - "e1b02d80-08d3-4a76-b5cc-d7688dd217a6" + "82e8ced0-2855-49cd-872a-6eb1a00b2a2c" ], "x-ms-client-request-id": [ - "a16886de-3fb5-4767-9e20-ccf0c94b6d56", - "a16886de-3fb5-4767-9e20-ccf0c94b6d56" + "c314f8fc-b1eb-4f2f-b598-b326110d6acc", + "c314f8fc-b1eb-4f2f-b598-b326110d6acc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -7167,16 +5837,16 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "101" + "122" ], "x-ms-correlation-request-id": [ - "e1b02d80-08d3-4a76-b5cc-d7688dd217a6" + "82e8ced0-2855-49cd-872a-6eb1a00b2a2c" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220414T061447Z:e1b02d80-08d3-4a76-b5cc-d7688dd217a6" + "JIOINDIAWEST:20220517T055350Z:82e8ced0-2855-49cd-872a-6eb1a00b2a2c" ], "Date": [ - "Thu, 14 Apr 2022 06:14:47 GMT" + "Tue, 17 May 2022 05:53:50 GMT" ], "Content-Length": [ "188" @@ -7188,26 +5858,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"eccfd811-ec44-4025-8edf-f8554f32be0a\",\r\n \"name\": \"eccfd811-ec44-4025-8edf-f8554f32be0a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-04-14T06:13:05.2856328Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"9e9af097-d1f2-4565-97a8-a10bb5abeead\",\r\n \"name\": \"9e9af097-d1f2-4565-97a8-a10bb5abeead\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T05:52:16.4182203Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGffa8be76/providers/Microsoft.RecoveryServices/vaults/PSTestRSVffa8be76/backupOperations/eccfd811-ec44-4025-8edf-f8554f32be0a?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZmZhOGJlNzYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZmZmE4YmU3Ni9iYWNrdXBPcGVyYXRpb25zL2VjY2ZkODExLWVjNDQtNDAyNS04ZWRmLWY4NTU0ZjMyYmUwYT9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG66dc4625/providers/Microsoft.RecoveryServices/vaults/PSTestRSV66dc4625/backupOperations/9e9af097-d1f2-4565-97a8-a10bb5abeead?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNjZkYzQ2MjUvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y2NmRjNDYyNS9iYWNrdXBPcGVyYXRpb25zLzllOWFmMDk3LWQxZjItNDU2NS05N2E4LWExMGJiNWFiZWVhZD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a16886de-3fb5-4767-9e20-ccf0c94b6d56" + "c314f8fc-b1eb-4f2f-b598-b326110d6acc" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -7221,11 +5891,11 @@ "nosniff" ], "x-ms-request-id": [ - "68b188c5-b5f2-49dd-b0d0-3907afcf0fcf" + "b301fe8a-19a5-4f96-ac80-75bbf0a811bb" ], "x-ms-client-request-id": [ - "a16886de-3fb5-4767-9e20-ccf0c94b6d56", - "a16886de-3fb5-4767-9e20-ccf0c94b6d56" + "c314f8fc-b1eb-4f2f-b598-b326110d6acc", + "c314f8fc-b1eb-4f2f-b598-b326110d6acc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -7237,16 +5907,16 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "100" + "121" ], "x-ms-correlation-request-id": [ - "68b188c5-b5f2-49dd-b0d0-3907afcf0fcf" + "b301fe8a-19a5-4f96-ac80-75bbf0a811bb" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220414T061453Z:68b188c5-b5f2-49dd-b0d0-3907afcf0fcf" + "JIOINDIAWEST:20220517T055356Z:b301fe8a-19a5-4f96-ac80-75bbf0a811bb" ], "Date": [ - "Thu, 14 Apr 2022 06:14:52 GMT" + "Tue, 17 May 2022 05:53:55 GMT" ], "Content-Length": [ "188" @@ -7258,26 +5928,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"eccfd811-ec44-4025-8edf-f8554f32be0a\",\r\n \"name\": \"eccfd811-ec44-4025-8edf-f8554f32be0a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-04-14T06:13:05.2856328Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"9e9af097-d1f2-4565-97a8-a10bb5abeead\",\r\n \"name\": \"9e9af097-d1f2-4565-97a8-a10bb5abeead\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T05:52:16.4182203Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGffa8be76/providers/Microsoft.RecoveryServices/vaults/PSTestRSVffa8be76/backupOperations/eccfd811-ec44-4025-8edf-f8554f32be0a?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZmZhOGJlNzYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZmZmE4YmU3Ni9iYWNrdXBPcGVyYXRpb25zL2VjY2ZkODExLWVjNDQtNDAyNS04ZWRmLWY4NTU0ZjMyYmUwYT9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG66dc4625/providers/Microsoft.RecoveryServices/vaults/PSTestRSV66dc4625/backupOperations/9e9af097-d1f2-4565-97a8-a10bb5abeead?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNjZkYzQ2MjUvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y2NmRjNDYyNS9iYWNrdXBPcGVyYXRpb25zLzllOWFmMDk3LWQxZjItNDU2NS05N2E4LWExMGJiNWFiZWVhZD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a16886de-3fb5-4767-9e20-ccf0c94b6d56" + "c314f8fc-b1eb-4f2f-b598-b326110d6acc" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -7291,11 +5961,11 @@ "nosniff" ], "x-ms-request-id": [ - "13f41e3f-4007-432a-8380-705881a2b38f" + "207d9ac3-dd9a-4b5f-963d-d27abedfb034" ], "x-ms-client-request-id": [ - "a16886de-3fb5-4767-9e20-ccf0c94b6d56", - "a16886de-3fb5-4767-9e20-ccf0c94b6d56" + "c314f8fc-b1eb-4f2f-b598-b326110d6acc", + "c314f8fc-b1eb-4f2f-b598-b326110d6acc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -7307,16 +5977,16 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "99" + "120" ], "x-ms-correlation-request-id": [ - "13f41e3f-4007-432a-8380-705881a2b38f" + "207d9ac3-dd9a-4b5f-963d-d27abedfb034" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220414T061458Z:13f41e3f-4007-432a-8380-705881a2b38f" + "JIOINDIAWEST:20220517T055401Z:207d9ac3-dd9a-4b5f-963d-d27abedfb034" ], "Date": [ - "Thu, 14 Apr 2022 06:14:58 GMT" + "Tue, 17 May 2022 05:54:01 GMT" ], "Content-Length": [ "188" @@ -7328,26 +5998,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"eccfd811-ec44-4025-8edf-f8554f32be0a\",\r\n \"name\": \"eccfd811-ec44-4025-8edf-f8554f32be0a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-04-14T06:13:05.2856328Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"9e9af097-d1f2-4565-97a8-a10bb5abeead\",\r\n \"name\": \"9e9af097-d1f2-4565-97a8-a10bb5abeead\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T05:52:16.4182203Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGffa8be76/providers/Microsoft.RecoveryServices/vaults/PSTestRSVffa8be76/backupOperations/eccfd811-ec44-4025-8edf-f8554f32be0a?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZmZhOGJlNzYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZmZmE4YmU3Ni9iYWNrdXBPcGVyYXRpb25zL2VjY2ZkODExLWVjNDQtNDAyNS04ZWRmLWY4NTU0ZjMyYmUwYT9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG66dc4625/providers/Microsoft.RecoveryServices/vaults/PSTestRSV66dc4625/backupOperations/9e9af097-d1f2-4565-97a8-a10bb5abeead?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNjZkYzQ2MjUvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y2NmRjNDYyNS9iYWNrdXBPcGVyYXRpb25zLzllOWFmMDk3LWQxZjItNDU2NS05N2E4LWExMGJiNWFiZWVhZD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a16886de-3fb5-4767-9e20-ccf0c94b6d56" + "c314f8fc-b1eb-4f2f-b598-b326110d6acc" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -7361,11 +6031,11 @@ "nosniff" ], "x-ms-request-id": [ - "832dc63d-8e8a-4e73-8c2a-b36de32d90b9" + "654e3f23-ce68-45c7-9ed2-7ba7636fc993" ], "x-ms-client-request-id": [ - "a16886de-3fb5-4767-9e20-ccf0c94b6d56", - "a16886de-3fb5-4767-9e20-ccf0c94b6d56" + "c314f8fc-b1eb-4f2f-b598-b326110d6acc", + "c314f8fc-b1eb-4f2f-b598-b326110d6acc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -7377,16 +6047,16 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "98" + "119" ], "x-ms-correlation-request-id": [ - "832dc63d-8e8a-4e73-8c2a-b36de32d90b9" + "654e3f23-ce68-45c7-9ed2-7ba7636fc993" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220414T061503Z:832dc63d-8e8a-4e73-8c2a-b36de32d90b9" + "JIOINDIAWEST:20220517T055407Z:654e3f23-ce68-45c7-9ed2-7ba7636fc993" ], "Date": [ - "Thu, 14 Apr 2022 06:15:03 GMT" + "Tue, 17 May 2022 05:54:06 GMT" ], "Content-Length": [ "188" @@ -7398,26 +6068,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"eccfd811-ec44-4025-8edf-f8554f32be0a\",\r\n \"name\": \"eccfd811-ec44-4025-8edf-f8554f32be0a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-04-14T06:13:05.2856328Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"9e9af097-d1f2-4565-97a8-a10bb5abeead\",\r\n \"name\": \"9e9af097-d1f2-4565-97a8-a10bb5abeead\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T05:52:16.4182203Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGffa8be76/providers/Microsoft.RecoveryServices/vaults/PSTestRSVffa8be76/backupOperations/eccfd811-ec44-4025-8edf-f8554f32be0a?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZmZhOGJlNzYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZmZmE4YmU3Ni9iYWNrdXBPcGVyYXRpb25zL2VjY2ZkODExLWVjNDQtNDAyNS04ZWRmLWY4NTU0ZjMyYmUwYT9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG66dc4625/providers/Microsoft.RecoveryServices/vaults/PSTestRSV66dc4625/backupOperations/9e9af097-d1f2-4565-97a8-a10bb5abeead?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNjZkYzQ2MjUvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y2NmRjNDYyNS9iYWNrdXBPcGVyYXRpb25zLzllOWFmMDk3LWQxZjItNDU2NS05N2E4LWExMGJiNWFiZWVhZD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a16886de-3fb5-4767-9e20-ccf0c94b6d56" + "c314f8fc-b1eb-4f2f-b598-b326110d6acc" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -7431,11 +6101,11 @@ "nosniff" ], "x-ms-request-id": [ - "7d64dfef-f5c3-4a61-8c5a-596a17c52b0a" + "38ef8960-587c-407f-ad15-4a67493a7bc3" ], "x-ms-client-request-id": [ - "a16886de-3fb5-4767-9e20-ccf0c94b6d56", - "a16886de-3fb5-4767-9e20-ccf0c94b6d56" + "c314f8fc-b1eb-4f2f-b598-b326110d6acc", + "c314f8fc-b1eb-4f2f-b598-b326110d6acc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -7447,16 +6117,16 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "97" + "118" ], "x-ms-correlation-request-id": [ - "7d64dfef-f5c3-4a61-8c5a-596a17c52b0a" + "38ef8960-587c-407f-ad15-4a67493a7bc3" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220414T061509Z:7d64dfef-f5c3-4a61-8c5a-596a17c52b0a" + "JIOINDIAWEST:20220517T055412Z:38ef8960-587c-407f-ad15-4a67493a7bc3" ], "Date": [ - "Thu, 14 Apr 2022 06:15:08 GMT" + "Tue, 17 May 2022 05:54:11 GMT" ], "Content-Length": [ "304" @@ -7468,26 +6138,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"eccfd811-ec44-4025-8edf-f8554f32be0a\",\r\n \"name\": \"eccfd811-ec44-4025-8edf-f8554f32be0a\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-04-14T06:13:05.2856328Z\",\r\n \"endTime\": \"2022-04-14T06:13:05.2856328Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"765e47b0-e480-4ff9-ba25-d667233fa36c\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"9e9af097-d1f2-4565-97a8-a10bb5abeead\",\r\n \"name\": \"9e9af097-d1f2-4565-97a8-a10bb5abeead\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-05-17T05:52:16.4182203Z\",\r\n \"endTime\": \"2022-05-17T05:52:16.4182203Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"873ebb46-ce7d-4e84-a811-8ea7562042fb\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGffa8be76/providers/Microsoft.RecoveryServices/vaults/PSTestRSVffa8be76/backupOperations/eccfd811-ec44-4025-8edf-f8554f32be0a?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZmZhOGJlNzYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZmZmE4YmU3Ni9iYWNrdXBPcGVyYXRpb25zL2VjY2ZkODExLWVjNDQtNDAyNS04ZWRmLWY4NTU0ZjMyYmUwYT9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG66dc4625/providers/Microsoft.RecoveryServices/vaults/PSTestRSV66dc4625/backupOperations/9e9af097-d1f2-4565-97a8-a10bb5abeead?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNjZkYzQ2MjUvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y2NmRjNDYyNS9iYWNrdXBPcGVyYXRpb25zLzllOWFmMDk3LWQxZjItNDU2NS05N2E4LWExMGJiNWFiZWVhZD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a16886de-3fb5-4767-9e20-ccf0c94b6d56" + "c314f8fc-b1eb-4f2f-b598-b326110d6acc" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -7501,11 +6171,11 @@ "nosniff" ], "x-ms-request-id": [ - "e2142264-1e20-44e0-b37c-68072a7c29cc" + "10ce013e-d9e0-41e3-9846-7f0c9b4c65f7" ], "x-ms-client-request-id": [ - "a16886de-3fb5-4767-9e20-ccf0c94b6d56", - "a16886de-3fb5-4767-9e20-ccf0c94b6d56" + "c314f8fc-b1eb-4f2f-b598-b326110d6acc", + "c314f8fc-b1eb-4f2f-b598-b326110d6acc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -7517,16 +6187,16 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "96" + "117" ], "x-ms-correlation-request-id": [ - "e2142264-1e20-44e0-b37c-68072a7c29cc" + "10ce013e-d9e0-41e3-9846-7f0c9b4c65f7" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220414T061509Z:e2142264-1e20-44e0-b37c-68072a7c29cc" + "JIOINDIAWEST:20220517T055413Z:10ce013e-d9e0-41e3-9846-7f0c9b4c65f7" ], "Date": [ - "Thu, 14 Apr 2022 06:15:08 GMT" + "Tue, 17 May 2022 05:54:12 GMT" ], "Content-Length": [ "304" @@ -7538,26 +6208,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"eccfd811-ec44-4025-8edf-f8554f32be0a\",\r\n \"name\": \"eccfd811-ec44-4025-8edf-f8554f32be0a\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-04-14T06:13:05.2856328Z\",\r\n \"endTime\": \"2022-04-14T06:13:05.2856328Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"765e47b0-e480-4ff9-ba25-d667233fa36c\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"9e9af097-d1f2-4565-97a8-a10bb5abeead\",\r\n \"name\": \"9e9af097-d1f2-4565-97a8-a10bb5abeead\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-05-17T05:52:16.4182203Z\",\r\n \"endTime\": \"2022-05-17T05:52:16.4182203Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"873ebb46-ce7d-4e84-a811-8ea7562042fb\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGffa8be76/providers/Microsoft.RecoveryServices/vaults/PSTestRSVffa8be76/backupJobs/765e47b0-e480-4ff9-ba25-d667233fa36c?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZmZhOGJlNzYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZmZmE4YmU3Ni9iYWNrdXBKb2JzLzc2NWU0N2IwLWU0ODAtNGZmOS1iYTI1LWQ2NjcyMzNmYTM2Yz9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG66dc4625/providers/Microsoft.RecoveryServices/vaults/PSTestRSV66dc4625/backupJobs/873ebb46-ce7d-4e84-a811-8ea7562042fb?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNjZkYzQ2MjUvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y2NmRjNDYyNS9iYWNrdXBKb2JzLzg3M2ViYjQ2LWNlN2QtNGU4NC1hODExLThlYTc1NjIwNDJmYj9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a16886de-3fb5-4767-9e20-ccf0c94b6d56" + "c314f8fc-b1eb-4f2f-b598-b326110d6acc" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -7575,11 +6245,11 @@ "nosniff" ], "x-ms-request-id": [ - "572935b6-f08c-46c3-bdf2-944e0e24f2b2" + "56f6c934-b383-4b2d-bdc9-464fc567d011" ], "x-ms-client-request-id": [ - "a16886de-3fb5-4767-9e20-ccf0c94b6d56", - "a16886de-3fb5-4767-9e20-ccf0c94b6d56" + "c314f8fc-b1eb-4f2f-b598-b326110d6acc", + "c314f8fc-b1eb-4f2f-b598-b326110d6acc" ], "X-Powered-By": [ "ASP.NET" @@ -7591,13 +6261,13 @@ "148" ], "x-ms-correlation-request-id": [ - "572935b6-f08c-46c3-bdf2-944e0e24f2b2" + "56f6c934-b383-4b2d-bdc9-464fc567d011" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220414T061509Z:572935b6-f08c-46c3-bdf2-944e0e24f2b2" + "JIOINDIAWEST:20220517T055413Z:56f6c934-b383-4b2d-bdc9-464fc567d011" ], "Date": [ - "Thu, 14 Apr 2022 06:15:08 GMT" + "Tue, 17 May 2022 05:54:12 GMT" ], "Content-Length": [ "844" @@ -7609,23 +6279,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGffa8be76/providers/Microsoft.RecoveryServices/vaults/PSTestRSVffa8be76/backupJobs/765e47b0-e480-4ff9-ba25-d667233fa36c\",\r\n \"name\": \"765e47b0-e480-4ff9-ba25-d667233fa36c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgffa8be76;pstestvmffa8b0\",\r\n \"duration\": \"PT2M1.4297485S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"VM Name\": \"PSTestVMffa8b0\",\r\n \"Number of Recovery Points\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"PSTestVMffa8b0\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"DeleteBackupData\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-04-14T06:13:05.2856328Z\",\r\n \"endTime\": \"2022-04-14T06:15:06.7153813Z\",\r\n \"activityId\": \"a16886de-3fb5-4767-9e20-ccf0c94b6d56\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG66dc4625/providers/Microsoft.RecoveryServices/vaults/PSTestRSV66dc4625/backupJobs/873ebb46-ce7d-4e84-a811-8ea7562042fb\",\r\n \"name\": \"873ebb46-ce7d-4e84-a811-8ea7562042fb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg66dc4625;pstestvm66dc40\",\r\n \"duration\": \"PT1M52.0211457S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"VM Name\": \"PSTestVM66dc40\",\r\n \"Number of Recovery Points\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"PSTestVM66dc40\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"DeleteBackupData\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-05-17T05:52:16.4182203Z\",\r\n \"endTime\": \"2022-05-17T05:54:08.439366Z\",\r\n \"activityId\": \"c314f8fc-b1eb-4f2f-b598-b326110d6acc\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGffa8be76/providers/Microsoft.RecoveryServices/vaults?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZmZhOGJlNzYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cz9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG66dc4625/providers/Microsoft.RecoveryServices/vaults?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNjZkYzQ2MjUvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cz9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2dfd2408-949b-496f-8f16-ebbb683f28b5" + "027b63fe-091c-49f1-9e0c-22665b4decad" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesClient/4.3.2.0" @@ -7642,10 +6312,10 @@ "nosniff" ], "x-ms-request-id": [ - "8c5297aa-9d4c-49aa-8467-2b64d3c9acba" + "d9724a18-efde-4125-9192-5eb837367656" ], "x-ms-client-request-id": [ - "2dfd2408-949b-496f-8f16-ebbb683f28b5" + "027b63fe-091c-49f1-9e0c-22665b4decad" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -7657,13 +6327,13 @@ "11999" ], "x-ms-correlation-request-id": [ - "8c5297aa-9d4c-49aa-8467-2b64d3c9acba" + "d9724a18-efde-4125-9192-5eb837367656" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220414T061511Z:8c5297aa-9d4c-49aa-8467-2b64d3c9acba" + "JIOINDIAWEST:20220517T055415Z:d9724a18-efde-4125-9192-5eb837367656" ], "Date": [ - "Thu, 14 Apr 2022 06:15:10 GMT" + "Tue, 17 May 2022 05:54:14 GMT" ], "Content-Length": [ "530" @@ -7675,23 +6345,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"PSTestRSVffa8be76\",\r\n \"etag\": \"W/\\\"datetime'2022-04-14T06%3A10%3A25.9303944Z'\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateEndpointStateForBackup\": \"None\",\r\n \"privateEndpointStateForSiteRecovery\": \"None\",\r\n \"networkSettings\": {\r\n \"publicNetworkAccess\": \"Enabled\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGffa8be76/providers/Microsoft.RecoveryServices/vaults/PSTestRSVffa8be76\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"PSTestRSV66dc4625\",\r\n \"etag\": \"W/\\\"datetime'2022-05-17T05%3A51%3A14.6368553Z'\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateEndpointStateForBackup\": \"None\",\r\n \"privateEndpointStateForSiteRecovery\": \"None\",\r\n \"networkSettings\": {\r\n \"publicNetworkAccess\": \"Enabled\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG66dc4625/providers/Microsoft.RecoveryServices/vaults/PSTestRSV66dc4625\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGffa8be76/providers/Microsoft.RecoveryServices/vaults/PSTestRSVffa8be76?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZmZhOGJlNzYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZmZmE4YmU3Nj9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG66dc4625/providers/Microsoft.RecoveryServices/vaults/PSTestRSV66dc4625?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNjZkYzQ2MjUvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y2NmRjNDYyNT9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "234d8daf-1642-4a05-8fc0-8f9d89924a40" + "aeb7c971-aeb1-4b15-b9c4-1fbd51089576" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesClient/4.3.2.0" @@ -7708,10 +6378,10 @@ "nosniff" ], "x-ms-request-id": [ - "5d20b936-1a72-423d-8e26-0c3a17558a0b" + "20b344f5-97fd-44a3-80a8-51ec0c6e1ed8" ], "x-ms-client-request-id": [ - "234d8daf-1642-4a05-8fc0-8f9d89924a40" + "aeb7c971-aeb1-4b15-b9c4-1fbd51089576" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -7720,13 +6390,13 @@ "9" ], "x-ms-correlation-request-id": [ - "5d20b936-1a72-423d-8e26-0c3a17558a0b" + "20b344f5-97fd-44a3-80a8-51ec0c6e1ed8" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220414T061519Z:5d20b936-1a72-423d-8e26-0c3a17558a0b" + "JIOINDIAWEST:20220517T055423Z:20b344f5-97fd-44a3-80a8-51ec0c6e1ed8" ], "Date": [ - "Thu, 14 Apr 2022 06:15:18 GMT" + "Tue, 17 May 2022 05:54:23 GMT" ], "Expires": [ "-1" @@ -7739,19 +6409,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourcegroups/PSTestRGffa8be76?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlZ3JvdXBzL1BTVGVzdFJHZmZhOGJlNzY/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourcegroups/PSTestRG66dc4625?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlZ3JvdXBzL1BTVGVzdFJHNjZkYzQ2MjU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "10820d3b-f156-4cfe-ad4e-92359bbb8bf2" + "43c56d42-59ef-455c-ae62-ac7a0eca60cf" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" @@ -7765,7 +6435,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0ZGQThCRTc2LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzY2REM0NjI1LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -7774,13 +6444,13 @@ "14999" ], "x-ms-request-id": [ - "57458a25-697e-4ba0-8a96-ba619f61cc1b" + "3cfec31f-c325-4d88-aeb3-0a7c5fd7da7c" ], "x-ms-correlation-request-id": [ - "57458a25-697e-4ba0-8a96-ba619f61cc1b" + "3cfec31f-c325-4d88-aeb3-0a7c5fd7da7c" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220414T061520Z:57458a25-697e-4ba0-8a96-ba619f61cc1b" + "JIOINDIAWEST:20220517T055426Z:3cfec31f-c325-4d88-aeb3-0a7c5fd7da7c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -7789,7 +6459,7 @@ "nosniff" ], "Date": [ - "Thu, 14 Apr 2022 06:15:19 GMT" + "Tue, 17 May 2022 05:54:26 GMT" ], "Expires": [ "-1" @@ -7802,13 +6472,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0ZGQThCRTc2LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSMFpHUVRoQ1JUYzJMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzY2REM0NjI1LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelkyUkVNME5qSTFMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" @@ -7822,22 +6492,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0ZGQThCRTc2LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzY2REM0NjI1LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11983" + "11998" ], "x-ms-request-id": [ - "769ea1bb-eb7d-41a1-ab5b-5eb27504345a" + "45e72761-a82a-46c4-90f8-9b7b62f0b4b9" ], "x-ms-correlation-request-id": [ - "769ea1bb-eb7d-41a1-ab5b-5eb27504345a" + "45e72761-a82a-46c4-90f8-9b7b62f0b4b9" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220414T061535Z:769ea1bb-eb7d-41a1-ab5b-5eb27504345a" + "JIOINDIAWEST:20220517T055441Z:45e72761-a82a-46c4-90f8-9b7b62f0b4b9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -7846,7 +6516,7 @@ "nosniff" ], "Date": [ - "Thu, 14 Apr 2022 06:15:35 GMT" + "Tue, 17 May 2022 05:54:41 GMT" ], "Expires": [ "-1" @@ -7859,13 +6529,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0ZGQThCRTc2LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSMFpHUVRoQ1JUYzJMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzY2REM0NjI1LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelkyUkVNME5qSTFMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" @@ -7879,22 +6549,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0ZGQThCRTc2LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzY2REM0NjI1LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11982" + "11997" ], "x-ms-request-id": [ - "24eaf37f-5da5-46b3-a03b-3dc32672b397" + "d2e30e54-92ac-4fef-92a1-56a11c11ff06" ], "x-ms-correlation-request-id": [ - "24eaf37f-5da5-46b3-a03b-3dc32672b397" + "d2e30e54-92ac-4fef-92a1-56a11c11ff06" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220414T061550Z:24eaf37f-5da5-46b3-a03b-3dc32672b397" + "JIOINDIAWEST:20220517T055456Z:d2e30e54-92ac-4fef-92a1-56a11c11ff06" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -7903,7 +6573,7 @@ "nosniff" ], "Date": [ - "Thu, 14 Apr 2022 06:15:50 GMT" + "Tue, 17 May 2022 05:54:56 GMT" ], "Expires": [ "-1" @@ -7916,13 +6586,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0ZGQThCRTc2LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSMFpHUVRoQ1JUYzJMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzY2REM0NjI1LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelkyUkVNME5qSTFMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" @@ -7936,22 +6606,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0ZGQThCRTc2LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzY2REM0NjI1LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11981" + "11996" ], "x-ms-request-id": [ - "fee494fe-370e-490f-b963-b9c6371ecdff" + "b018d19e-a79f-4032-a0bf-6ac16ff4fa7d" ], "x-ms-correlation-request-id": [ - "fee494fe-370e-490f-b963-b9c6371ecdff" + "b018d19e-a79f-4032-a0bf-6ac16ff4fa7d" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220414T061606Z:fee494fe-370e-490f-b963-b9c6371ecdff" + "JIOINDIAWEST:20220517T055512Z:b018d19e-a79f-4032-a0bf-6ac16ff4fa7d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -7960,7 +6630,7 @@ "nosniff" ], "Date": [ - "Thu, 14 Apr 2022 06:16:05 GMT" + "Tue, 17 May 2022 05:55:11 GMT" ], "Expires": [ "-1" @@ -7973,13 +6643,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0ZGQThCRTc2LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSMFpHUVRoQ1JUYzJMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzY2REM0NjI1LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelkyUkVNME5qSTFMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" @@ -7993,22 +6663,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0ZGQThCRTc2LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzY2REM0NjI1LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11980" + "11995" ], "x-ms-request-id": [ - "5266ec2d-0411-4c5e-8c5d-7f5f78d642a9" + "a73a2165-4d57-43af-a25f-2981134650bd" ], "x-ms-correlation-request-id": [ - "5266ec2d-0411-4c5e-8c5d-7f5f78d642a9" + "a73a2165-4d57-43af-a25f-2981134650bd" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220414T061621Z:5266ec2d-0411-4c5e-8c5d-7f5f78d642a9" + "JIOINDIAWEST:20220517T055527Z:a73a2165-4d57-43af-a25f-2981134650bd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -8017,7 +6687,7 @@ "nosniff" ], "Date": [ - "Thu, 14 Apr 2022 06:16:21 GMT" + "Tue, 17 May 2022 05:55:26 GMT" ], "Expires": [ "-1" @@ -8030,13 +6700,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0ZGQThCRTc2LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSMFpHUVRoQ1JUYzJMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzY2REM0NjI1LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelkyUkVNME5qSTFMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" @@ -8050,22 +6720,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0ZGQThCRTc2LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzY2REM0NjI1LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11979" + "11994" ], "x-ms-request-id": [ - "f9af36b6-c083-4bbe-80f2-b1d7c3ff163a" + "95f02eb4-6e7d-41f9-9afe-fe08f2ecced9" ], "x-ms-correlation-request-id": [ - "f9af36b6-c083-4bbe-80f2-b1d7c3ff163a" + "95f02eb4-6e7d-41f9-9afe-fe08f2ecced9" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220414T061636Z:f9af36b6-c083-4bbe-80f2-b1d7c3ff163a" + "JIOINDIAWEST:20220517T055542Z:95f02eb4-6e7d-41f9-9afe-fe08f2ecced9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -8074,7 +6744,7 @@ "nosniff" ], "Date": [ - "Thu, 14 Apr 2022 06:16:36 GMT" + "Tue, 17 May 2022 05:55:41 GMT" ], "Expires": [ "-1" @@ -8087,13 +6757,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0ZGQThCRTc2LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSMFpHUVRoQ1JUYzJMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzY2REM0NjI1LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelkyUkVNME5qSTFMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" @@ -8107,22 +6777,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0ZGQThCRTc2LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzY2REM0NjI1LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11978" + "11993" ], "x-ms-request-id": [ - "87b78b9c-eaca-4284-a717-88b8615f7b45" + "a0afe46e-ed69-456d-916d-c2bfa01360f4" ], "x-ms-correlation-request-id": [ - "87b78b9c-eaca-4284-a717-88b8615f7b45" + "a0afe46e-ed69-456d-916d-c2bfa01360f4" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220414T061651Z:87b78b9c-eaca-4284-a717-88b8615f7b45" + "JIOINDIAWEST:20220517T055557Z:a0afe46e-ed69-456d-916d-c2bfa01360f4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -8131,7 +6801,7 @@ "nosniff" ], "Date": [ - "Thu, 14 Apr 2022 06:16:50 GMT" + "Tue, 17 May 2022 05:55:56 GMT" ], "Expires": [ "-1" @@ -8144,13 +6814,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0ZGQThCRTc2LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSMFpHUVRoQ1JUYzJMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzY2REM0NjI1LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelkyUkVNME5qSTFMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" @@ -8164,22 +6834,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0ZGQThCRTc2LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzY2REM0NjI1LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11977" + "11992" ], "x-ms-request-id": [ - "eb4b6a00-7bfb-447d-919c-fb9038d3f58e" + "db747fa8-df04-4eb2-88e5-7e3ae898a49c" ], "x-ms-correlation-request-id": [ - "eb4b6a00-7bfb-447d-919c-fb9038d3f58e" + "db747fa8-df04-4eb2-88e5-7e3ae898a49c" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220414T061706Z:eb4b6a00-7bfb-447d-919c-fb9038d3f58e" + "JIOINDIAWEST:20220517T055612Z:db747fa8-df04-4eb2-88e5-7e3ae898a49c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -8188,7 +6858,7 @@ "nosniff" ], "Date": [ - "Thu, 14 Apr 2022 06:17:06 GMT" + "Tue, 17 May 2022 05:56:12 GMT" ], "Expires": [ "-1" @@ -8201,13 +6871,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0ZGQThCRTc2LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSMFpHUVRoQ1JUYzJMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzY2REM0NjI1LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelkyUkVNME5qSTFMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" @@ -8221,22 +6891,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0ZGQThCRTc2LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzY2REM0NjI1LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11976" + "11991" ], "x-ms-request-id": [ - "aac730df-3191-4a8c-90ea-c7190ab254be" + "9fdeb8ae-8bc8-4e2b-a529-64eb05eeb3ac" ], "x-ms-correlation-request-id": [ - "aac730df-3191-4a8c-90ea-c7190ab254be" + "9fdeb8ae-8bc8-4e2b-a529-64eb05eeb3ac" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220414T061721Z:aac730df-3191-4a8c-90ea-c7190ab254be" + "JIOINDIAWEST:20220517T055628Z:9fdeb8ae-8bc8-4e2b-a529-64eb05eeb3ac" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -8245,7 +6915,7 @@ "nosniff" ], "Date": [ - "Thu, 14 Apr 2022 06:17:21 GMT" + "Tue, 17 May 2022 05:56:27 GMT" ], "Expires": [ "-1" @@ -8258,13 +6928,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0ZGQThCRTc2LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSMFpHUVRoQ1JUYzJMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzY2REM0NjI1LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelkyUkVNME5qSTFMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" @@ -8278,22 +6948,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0ZGQThCRTc2LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzY2REM0NjI1LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11975" + "11990" ], "x-ms-request-id": [ - "4f5a532d-8fca-40e7-813e-9053ba5310fe" + "39f5a5b9-c156-4165-acc0-66aed44749ca" ], "x-ms-correlation-request-id": [ - "4f5a532d-8fca-40e7-813e-9053ba5310fe" + "39f5a5b9-c156-4165-acc0-66aed44749ca" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220414T061737Z:4f5a532d-8fca-40e7-813e-9053ba5310fe" + "JIOINDIAWEST:20220517T055643Z:39f5a5b9-c156-4165-acc0-66aed44749ca" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -8302,7 +6972,7 @@ "nosniff" ], "Date": [ - "Thu, 14 Apr 2022 06:17:36 GMT" + "Tue, 17 May 2022 05:56:42 GMT" ], "Expires": [ "-1" @@ -8315,13 +6985,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0ZGQThCRTc2LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSMFpHUVRoQ1JUYzJMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzY2REM0NjI1LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelkyUkVNME5qSTFMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" @@ -8335,22 +7005,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0ZGQThCRTc2LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzY2REM0NjI1LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11974" + "11989" ], "x-ms-request-id": [ - "4d669cd6-64ab-45e1-bec0-b3a8169ecfcb" + "056898e4-9e75-4e36-92af-c953e4e62ce2" ], "x-ms-correlation-request-id": [ - "4d669cd6-64ab-45e1-bec0-b3a8169ecfcb" + "056898e4-9e75-4e36-92af-c953e4e62ce2" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220414T061752Z:4d669cd6-64ab-45e1-bec0-b3a8169ecfcb" + "JIOINDIAWEST:20220517T055658Z:056898e4-9e75-4e36-92af-c953e4e62ce2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -8359,7 +7029,7 @@ "nosniff" ], "Date": [ - "Thu, 14 Apr 2022 06:17:51 GMT" + "Tue, 17 May 2022 05:56:58 GMT" ], "Expires": [ "-1" @@ -8372,13 +7042,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0ZGQThCRTc2LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSMFpHUVRoQ1JUYzJMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzY2REM0NjI1LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelkyUkVNME5qSTFMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" @@ -8392,22 +7062,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0ZGQThCRTc2LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzY2REM0NjI1LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11973" + "11988" ], "x-ms-request-id": [ - "e0c69cfb-bf2e-4e59-b120-c194b93ce042" + "06fde914-7a04-4b10-824f-3831cb47cbd0" ], "x-ms-correlation-request-id": [ - "e0c69cfb-bf2e-4e59-b120-c194b93ce042" + "06fde914-7a04-4b10-824f-3831cb47cbd0" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220414T061807Z:e0c69cfb-bf2e-4e59-b120-c194b93ce042" + "JIOINDIAWEST:20220517T055713Z:06fde914-7a04-4b10-824f-3831cb47cbd0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -8416,7 +7086,7 @@ "nosniff" ], "Date": [ - "Thu, 14 Apr 2022 06:18:06 GMT" + "Tue, 17 May 2022 05:57:13 GMT" ], "Expires": [ "-1" @@ -8429,13 +7099,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0ZGQThCRTc2LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSMFpHUVRoQ1JUYzJMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzY2REM0NjI1LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelkyUkVNME5qSTFMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" @@ -8449,22 +7119,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0ZGQThCRTc2LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzY2REM0NjI1LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11972" + "11987" ], "x-ms-request-id": [ - "e817d41a-b5a4-4fad-92ed-80d21e47c8f2" + "65c7a329-8e58-4c7a-a223-d21750e8d4d1" ], "x-ms-correlation-request-id": [ - "e817d41a-b5a4-4fad-92ed-80d21e47c8f2" + "65c7a329-8e58-4c7a-a223-d21750e8d4d1" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220414T061822Z:e817d41a-b5a4-4fad-92ed-80d21e47c8f2" + "JIOINDIAWEST:20220517T055729Z:65c7a329-8e58-4c7a-a223-d21750e8d4d1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -8473,7 +7143,7 @@ "nosniff" ], "Date": [ - "Thu, 14 Apr 2022 06:18:22 GMT" + "Tue, 17 May 2022 05:57:28 GMT" ], "Expires": [ "-1" @@ -8486,13 +7156,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0ZGQThCRTc2LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSMFpHUVRoQ1JUYzJMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzY2REM0NjI1LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelkyUkVNME5qSTFMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" @@ -8506,16 +7176,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11971" + "11986" ], "x-ms-request-id": [ - "2b75e086-1ff3-4705-a9c8-56843e158a65" + "80164ea8-12f7-4116-87d9-a237fd2ea54b" ], "x-ms-correlation-request-id": [ - "2b75e086-1ff3-4705-a9c8-56843e158a65" + "80164ea8-12f7-4116-87d9-a237fd2ea54b" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220414T061837Z:2b75e086-1ff3-4705-a9c8-56843e158a65" + "JIOINDIAWEST:20220517T055744Z:80164ea8-12f7-4116-87d9-a237fd2ea54b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -8524,7 +7194,7 @@ "nosniff" ], "Date": [ - "Thu, 14 Apr 2022 06:18:37 GMT" + "Tue, 17 May 2022 05:57:44 GMT" ], "Expires": [ "-1" @@ -8537,13 +7207,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0ZGQThCRTc2LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSMFpHUVRoQ1JUYzJMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzY2REM0NjI1LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelkyUkVNME5qSTFMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" @@ -8557,16 +7227,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11970" + "11985" ], "x-ms-request-id": [ - "ca794712-4787-40c0-a51b-39e7468f0ad5" + "251c84a5-1efe-4842-9e83-c57cede42eb1" ], "x-ms-correlation-request-id": [ - "ca794712-4787-40c0-a51b-39e7468f0ad5" + "251c84a5-1efe-4842-9e83-c57cede42eb1" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220414T061837Z:ca794712-4787-40c0-a51b-39e7468f0ad5" + "JIOINDIAWEST:20220517T055744Z:251c84a5-1efe-4842-9e83-c57cede42eb1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -8575,7 +7245,7 @@ "nosniff" ], "Date": [ - "Thu, 14 Apr 2022 06:18:37 GMT" + "Tue, 17 May 2022 05:57:44 GMT" ], "Expires": [ "-1" @@ -8591,6 +7261,6 @@ "Names": {}, "Variables": { "SubscriptionId": "da364f0f-307b-41c9-9d47-b7413ec45535", - "NamingSuffix": "ffa8be76-6d6d-4d75-890b-35b740bcbeca" + "NamingSuffix": "66dc4625-50a3-42d9-a9ca-031967a2281b" } } \ No newline at end of file diff --git a/src/RecoveryServices/RecoveryServices.Backup.Test/SessionRecords/Microsoft.Azure.Commands.RecoveryServices.Backup.Test.ScenarioTests.ItemTests/TestAzureVMRestoreWithMSI.json b/src/RecoveryServices/RecoveryServices.Backup.Test/SessionRecords/Microsoft.Azure.Commands.RecoveryServices.Backup.Test.ScenarioTests.ItemTests/TestAzureVMRestoreWithMSI.json index f77f8909ecfa..127119353a7f 100644 --- a/src/RecoveryServices/RecoveryServices.Backup.Test/SessionRecords/Microsoft.Azure.Commands.RecoveryServices.Backup.Test.ScenarioTests.ItemTests/TestAzureVMRestoreWithMSI.json +++ b/src/RecoveryServices/RecoveryServices.Backup.Test/SessionRecords/Microsoft.Azure.Commands.RecoveryServices.Backup.Test.ScenarioTests.ItemTests/TestAzureVMRestoreWithMSI.json @@ -7,13 +7,13 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "60884eeb-c4bb-4058-93e9-c37d93fdd973" + "bdf4dd43-c2a9-477a-8def-086c366c0778" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesClient/4.3.2.0" @@ -27,34 +27,34 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11997" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "30c60fed-b388-4ba7-9c8c-aa7b75334f1c" + "b694d12e-e247-456c-84cf-f5a3f600ff07" ], "x-ms-client-request-id": [ - "60884eeb-c4bb-4058-93e9-c37d93fdd973" + "bdf4dd43-c2a9-477a-8def-086c366c0778" ], "Server": [ "Kestrel" ], "x-ms-correlation-request-id": [ - "30c60fed-b388-4ba7-9c8c-aa7b75334f1c" + "b694d12e-e247-456c-84cf-f5a3f600ff07" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T115012Z:30c60fed-b388-4ba7-9c8c-aa7b75334f1c" + "JIOINDIAWEST:20220516T171539Z:b694d12e-e247-456c-84cf-f5a3f600ff07" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Sat, 26 Mar 2022 11:50:12 GMT" + "Mon, 16 May 2022 17:15:39 GMT" ], "Content-Length": [ - "982" + "1034" ], "Content-Type": [ "application/json; charset=utf-8" @@ -63,26 +63,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"location\": \"centraluseuap\",\r\n \"name\": \"hiagaVault\",\r\n \"etag\": \"W/\\\"datetime'2022-03-22T09%3A36%3A21.4588503Z'\\\"\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\",\r\n \"Owner\": \"hiaga\",\r\n \"Purpose\": \"Testing\",\r\n \"DeleteBy\": \"01-2099\"\r\n },\r\n \"identity\": {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"principalId\": \"09f8c66b-fe60-4dbb-ba66-57b4232a4867\",\r\n \"type\": \"SystemAssigned, UserAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourcegroups/hiagaczr-rg/providers/microsoft.managedidentity/userassignedidentities/hiagauseridentity\": {\r\n \"clientId\": \"05a1da4a-ee20-42b9-94de-72175caa42bb\",\r\n \"principalId\": \"af96ebe9-5ed3-4753-9849-c314ddc1150c\"\r\n }\r\n }\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateEndpointStateForBackup\": \"None\",\r\n \"privateEndpointStateForSiteRecovery\": \"None\"\r\n },\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"RS0\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"location\": \"centraluseuap\",\r\n \"name\": \"hiagaVault\",\r\n \"etag\": \"W/\\\"datetime'2022-03-22T09%3A36%3A21.4588503Z'\\\"\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\",\r\n \"Owner\": \"hiaga\",\r\n \"Purpose\": \"Testing\",\r\n \"DeleteBy\": \"01-2099\"\r\n },\r\n \"identity\": {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"principalId\": \"09f8c66b-fe60-4dbb-ba66-57b4232a4867\",\r\n \"type\": \"SystemAssigned, UserAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourcegroups/hiagaczr-rg/providers/microsoft.managedidentity/userassignedidentities/hiagauseridentity\": {\r\n \"clientId\": \"05a1da4a-ee20-42b9-94de-72175caa42bb\",\r\n \"principalId\": \"af96ebe9-5ed3-4753-9849-c314ddc1150c\"\r\n }\r\n }\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateEndpointStateForBackup\": \"None\",\r\n \"privateEndpointStateForSiteRecovery\": \"None\",\r\n \"networkSettings\": {\r\n \"publicNetworkAccess\": \"Enabled\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"RS0\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupProtectedItems?$filter=backupManagementType%20eq%20'AzureIaasVM'%20and%20itemType%20eq%20'VM'&api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cFByb3RlY3RlZEl0ZW1zPyRmaWx0ZXI9YmFja3VwTWFuYWdlbWVudFR5cGUlMjBlcSUyMCdBenVyZUlhYXNWTSclMjBhbmQlMjBpdGVtVHlwZSUyMGVxJTIwJ1ZNJyZhcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupProtectedItems?$filter=backupManagementType%20eq%20'AzureIaasVM'%20and%20itemType%20eq%20'VM'&api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cFByb3RlY3RlZEl0ZW1zPyRmaWx0ZXI9YmFja3VwTWFuYWdlbWVudFR5cGUlMjBlcSUyMCdBenVyZUlhYXNWTSclMjBhbmQlMjBpdGVtVHlwZSUyMGVxJTIwJ1ZNJyZhcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "55ed4ce7-8bc4-43b9-a3d2-0d13231098b1" + "21aafb9d-2a97-4d0a-91ea-93ab8e910460" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -96,10 +96,10 @@ "nosniff" ], "x-ms-request-id": [ - "fedcb448-fc30-4a1c-90fa-4b1eb6b126f4" + "dadb6f29-edc6-4fe4-b530-ffed7726aa9c" ], "x-ms-client-request-id": [ - "55ed4ce7-8bc4-43b9-a3d2-0d13231098b1" + "21aafb9d-2a97-4d0a-91ea-93ab8e910460" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -114,13 +114,13 @@ "299" ], "x-ms-correlation-request-id": [ - "fedcb448-fc30-4a1c-90fa-4b1eb6b126f4" + "dadb6f29-edc6-4fe4-b530-ffed7726aa9c" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T115014Z:fedcb448-fc30-4a1c-90fa-4b1eb6b126f4" + "JIOINDIAWEST:20220516T171545Z:dadb6f29-edc6-4fe4-b530-ffed7726aa9c" ], "Date": [ - "Sat, 26 Mar 2022 11:50:13 GMT" + "Mon, 16 May 2022 17:15:44 GMT" ], "Content-Length": [ "1905" @@ -132,26 +132,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;hiagarg;hiagavm/protectedItems/VM;iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"name\": \"VM;iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems\",\r\n \"properties\": {\r\n \"kpisHealths\": {\r\n \"RestoreOperationStatusKPI\": {\r\n \"resourceHealthStatus\": \"Healthy\",\r\n \"resourceHealthDetails\": [\r\n {\r\n \"code\": 0,\r\n \"title\": \"Success\",\r\n \"message\": \"\",\r\n \"recommendations\": []\r\n }\r\n ]\r\n },\r\n \"BackupOperationStatusKPI\": {\r\n \"resourceHealthStatus\": \"Healthy\",\r\n \"resourceHealthDetails\": [\r\n {\r\n \"code\": 0,\r\n \"title\": \"Success\",\r\n \"message\": \"\",\r\n \"recommendations\": []\r\n }\r\n ]\r\n }\r\n },\r\n \"friendlyName\": \"hiagavm\",\r\n \"virtualMachineId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.Compute/virtualMachines/hiagavm\",\r\n \"protectionStatus\": \"Healthy\",\r\n \"protectionState\": \"Protected\",\r\n \"healthStatus\": \"Passed\",\r\n \"healthDetails\": [\r\n {\r\n \"code\": 400239,\r\n \"title\": \"IaasVmHealthGreenDefault\",\r\n \"message\": \"Backup pre-check status of this virtual machine is OK.\",\r\n \"recommendations\": []\r\n }\r\n ],\r\n \"lastBackupStatus\": \"Completed\",\r\n \"lastBackupTime\": \"2022-03-25T23:03:27.9396117Z\",\r\n \"protectedItemDataId\": \"52853529\",\r\n \"extendedProperties\": {},\r\n \"protectedItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"workloadType\": \"VM\",\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"sourceResourceId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.Compute/virtualMachines/hiagavm\",\r\n \"policyId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupPolicies/DefaultPolicy\",\r\n \"policyName\": \"DefaultPolicy\",\r\n \"lastRecoveryPoint\": \"2022-03-25T23:03:31.5469353Z\",\r\n \"isArchiveEnabled\": false\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;hiagarg;hiagavm/protectedItems/VM;iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"name\": \"VM;iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems\",\r\n \"properties\": {\r\n \"kpisHealths\": {\r\n \"BackupOperationStatusKPI\": {\r\n \"resourceHealthStatus\": \"Healthy\",\r\n \"resourceHealthDetails\": [\r\n {\r\n \"code\": 0,\r\n \"title\": \"Success\",\r\n \"message\": \"\",\r\n \"recommendations\": []\r\n }\r\n ]\r\n },\r\n \"RestoreOperationStatusKPI\": {\r\n \"resourceHealthStatus\": \"Healthy\",\r\n \"resourceHealthDetails\": [\r\n {\r\n \"code\": 0,\r\n \"title\": \"Success\",\r\n \"message\": \"\",\r\n \"recommendations\": []\r\n }\r\n ]\r\n }\r\n },\r\n \"friendlyName\": \"hiagavm\",\r\n \"virtualMachineId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.Compute/virtualMachines/hiagavm\",\r\n \"protectionStatus\": \"Healthy\",\r\n \"protectionState\": \"Protected\",\r\n \"healthStatus\": \"Passed\",\r\n \"healthDetails\": [\r\n {\r\n \"code\": 400239,\r\n \"title\": \"IaasVmHealthGreenDefault\",\r\n \"message\": \"Backup pre-check status of this virtual machine is OK.\",\r\n \"recommendations\": []\r\n }\r\n ],\r\n \"lastBackupStatus\": \"Completed\",\r\n \"lastBackupTime\": \"2022-05-16T16:23:13.5123111Z\",\r\n \"protectedItemDataId\": \"52853529\",\r\n \"extendedProperties\": {},\r\n \"protectedItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"workloadType\": \"VM\",\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"sourceResourceId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.Compute/virtualMachines/hiagavm\",\r\n \"policyId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupPolicies/DefaultPolicy\",\r\n \"policyName\": \"DefaultPolicy\",\r\n \"lastRecoveryPoint\": \"2022-05-16T16:46:50.6477796Z\",\r\n \"isArchiveEnabled\": false\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupFabrics/Azure/protectionContainers/IaasVMContainer%3Biaasvmcontainerv2%3Bhiagarg%3Bhiagavm/protectedItems/VM%3Biaasvmcontainerv2%3Bhiagarg%3Bhiagavm?$filter=expand%20eq%20'extendedinfo'&api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEZhYnJpY3MvQXp1cmUvcHJvdGVjdGlvbkNvbnRhaW5lcnMvSWFhc1ZNQ29udGFpbmVyJTNCaWFhc3ZtY29udGFpbmVydjIlM0JoaWFnYXJnJTNCaGlhZ2F2bS9wcm90ZWN0ZWRJdGVtcy9WTSUzQmlhYXN2bWNvbnRhaW5lcnYyJTNCaGlhZ2FyZyUzQmhpYWdhdm0/JGZpbHRlcj1leHBhbmQlMjBlcSUyMCdleHRlbmRlZGluZm8nJmFwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupFabrics/Azure/protectionContainers/IaasVMContainer%3Biaasvmcontainerv2%3Bhiagarg%3Bhiagavm/protectedItems/VM%3Biaasvmcontainerv2%3Bhiagarg%3Bhiagavm?$filter=expand%20eq%20'extendedinfo'&api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEZhYnJpY3MvQXp1cmUvcHJvdGVjdGlvbkNvbnRhaW5lcnMvSWFhc1ZNQ29udGFpbmVyJTNCaWFhc3ZtY29udGFpbmVydjIlM0JoaWFnYXJnJTNCaGlhZ2F2bS9wcm90ZWN0ZWRJdGVtcy9WTSUzQmlhYXN2bWNvbnRhaW5lcnYyJTNCaGlhZ2FyZyUzQmhpYWdhdm0/JGZpbHRlcj1leHBhbmQlMjBlcSUyMCdleHRlbmRlZGluZm8nJmFwaS12ZXJzaW9uPTIwMjItMDItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "55ed4ce7-8bc4-43b9-a3d2-0d13231098b1" + "21aafb9d-2a97-4d0a-91ea-93ab8e910460" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -165,10 +165,10 @@ "nosniff" ], "x-ms-request-id": [ - "fe95c167-42ea-474d-8abe-7d52c0ee4f71" + "8e90a525-34db-45ec-84ea-8fbb303bd459" ], "x-ms-client-request-id": [ - "55ed4ce7-8bc4-43b9-a3d2-0d13231098b1" + "21aafb9d-2a97-4d0a-91ea-93ab8e910460" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -183,13 +183,13 @@ "299" ], "x-ms-correlation-request-id": [ - "fe95c167-42ea-474d-8abe-7d52c0ee4f71" + "8e90a525-34db-45ec-84ea-8fbb303bd459" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T115014Z:fe95c167-42ea-474d-8abe-7d52c0ee4f71" + "JIOINDIAWEST:20220516T171546Z:8e90a525-34db-45ec-84ea-8fbb303bd459" ], "Date": [ - "Sat, 26 Mar 2022 11:50:14 GMT" + "Mon, 16 May 2022 17:15:45 GMT" ], "Content-Length": [ "2014" @@ -201,26 +201,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;hiagarg;hiagavm/protectedItems/VM;iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"name\": \"VM;iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems\",\r\n \"properties\": {\r\n \"kpisHealths\": {\r\n \"RestoreOperationStatusKPI\": {\r\n \"resourceHealthStatus\": \"Healthy\",\r\n \"resourceHealthDetails\": [\r\n {\r\n \"code\": 0,\r\n \"title\": \"Success\",\r\n \"message\": \"\",\r\n \"recommendations\": []\r\n }\r\n ]\r\n },\r\n \"BackupOperationStatusKPI\": {\r\n \"resourceHealthStatus\": \"Healthy\",\r\n \"resourceHealthDetails\": [\r\n {\r\n \"code\": 0,\r\n \"title\": \"Success\",\r\n \"message\": \"\",\r\n \"recommendations\": []\r\n }\r\n ]\r\n }\r\n },\r\n \"friendlyName\": \"hiagavm\",\r\n \"virtualMachineId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.Compute/virtualMachines/hiagavm\",\r\n \"protectionStatus\": \"Healthy\",\r\n \"protectionState\": \"Protected\",\r\n \"healthStatus\": \"Passed\",\r\n \"healthDetails\": [\r\n {\r\n \"code\": 400239,\r\n \"title\": \"IaasVmHealthGreenDefault\",\r\n \"message\": \"Backup pre-check status of this virtual machine is OK.\",\r\n \"recommendations\": []\r\n }\r\n ],\r\n \"lastBackupStatus\": \"Completed\",\r\n \"lastBackupTime\": \"2022-03-25T23:03:27.9396117Z\",\r\n \"protectedItemDataId\": \"52853529\",\r\n \"extendedInfo\": {\r\n \"oldestRecoveryPoint\": \"2022-02-24T23:05:47.4722509Z\",\r\n \"recoveryPointCount\": 30,\r\n \"policyInconsistent\": false\r\n },\r\n \"extendedProperties\": {},\r\n \"protectedItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"workloadType\": \"VM\",\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"sourceResourceId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.Compute/virtualMachines/hiagavm\",\r\n \"policyId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupPolicies/DefaultPolicy\",\r\n \"policyName\": \"DefaultPolicy\",\r\n \"lastRecoveryPoint\": \"2022-03-25T23:03:31.5469353Z\",\r\n \"isArchiveEnabled\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;hiagarg;hiagavm/protectedItems/VM;iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"name\": \"VM;iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems\",\r\n \"properties\": {\r\n \"kpisHealths\": {\r\n \"BackupOperationStatusKPI\": {\r\n \"resourceHealthStatus\": \"Healthy\",\r\n \"resourceHealthDetails\": [\r\n {\r\n \"code\": 0,\r\n \"title\": \"Success\",\r\n \"message\": \"\",\r\n \"recommendations\": []\r\n }\r\n ]\r\n },\r\n \"RestoreOperationStatusKPI\": {\r\n \"resourceHealthStatus\": \"Healthy\",\r\n \"resourceHealthDetails\": [\r\n {\r\n \"code\": 0,\r\n \"title\": \"Success\",\r\n \"message\": \"\",\r\n \"recommendations\": []\r\n }\r\n ]\r\n }\r\n },\r\n \"friendlyName\": \"hiagavm\",\r\n \"virtualMachineId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.Compute/virtualMachines/hiagavm\",\r\n \"protectionStatus\": \"Healthy\",\r\n \"protectionState\": \"Protected\",\r\n \"healthStatus\": \"Passed\",\r\n \"healthDetails\": [\r\n {\r\n \"code\": 400239,\r\n \"title\": \"IaasVmHealthGreenDefault\",\r\n \"message\": \"Backup pre-check status of this virtual machine is OK.\",\r\n \"recommendations\": []\r\n }\r\n ],\r\n \"lastBackupStatus\": \"Completed\",\r\n \"lastBackupTime\": \"2022-05-16T16:23:13.5123111Z\",\r\n \"protectedItemDataId\": \"52853529\",\r\n \"extendedInfo\": {\r\n \"oldestRecoveryPoint\": \"2022-04-16T23:10:43.9599702Z\",\r\n \"recoveryPointCount\": 32,\r\n \"policyInconsistent\": false\r\n },\r\n \"extendedProperties\": {},\r\n \"protectedItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"workloadType\": \"VM\",\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"sourceResourceId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.Compute/virtualMachines/hiagavm\",\r\n \"policyId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupPolicies/DefaultPolicy\",\r\n \"policyName\": \"DefaultPolicy\",\r\n \"lastRecoveryPoint\": \"2022-05-16T16:46:50.6477796Z\",\r\n \"isArchiveEnabled\": false\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupFabrics/Azure/protectionContainers/IaasVMContainer%3Biaasvmcontainerv2%3Bhiagarg%3Bhiagavm/protectedItems/VM%3Biaasvmcontainerv2%3Bhiagarg%3Bhiagavm/backup?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEZhYnJpY3MvQXp1cmUvcHJvdGVjdGlvbkNvbnRhaW5lcnMvSWFhc1ZNQ29udGFpbmVyJTNCaWFhc3ZtY29udGFpbmVydjIlM0JoaWFnYXJnJTNCaGlhZ2F2bS9wcm90ZWN0ZWRJdGVtcy9WTSUzQmlhYXN2bWNvbnRhaW5lcnYyJTNCaGlhZ2FyZyUzQmhpYWdhdm0vYmFja3VwP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupFabrics/Azure/protectionContainers/IaasVMContainer%3Biaasvmcontainerv2%3Bhiagarg%3Bhiagavm/protectedItems/VM%3Biaasvmcontainerv2%3Bhiagarg%3Bhiagavm/backup?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEZhYnJpY3MvQXp1cmUvcHJvdGVjdGlvbkNvbnRhaW5lcnMvSWFhc1ZNQ29udGFpbmVyJTNCaWFhc3ZtY29udGFpbmVydjIlM0JoaWFnYXJnJTNCaGlhZ2F2bS9wcm90ZWN0ZWRJdGVtcy9WTSUzQmlhYXN2bWNvbnRhaW5lcnYyJTNCaGlhZ2FyZyUzQmhpYWdhdm0vYmFja3VwP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", "RequestMethod": "POST", "RequestBody": "{\r\n \"properties\": {\r\n \"objectType\": \"IaasVMBackupRequest\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "b9811465-95ba-45f5-8501-8c25e5927871" + "e2926508-844c-4d0b-bc81-a41d6c8fe6c0" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -237,22 +237,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;hiagarg;hiagavm/protectedItems/VM;iaasvmcontainerv2;hiagarg;hiagavm/operationResults/02ea0220-65a7-4955-b9c4-2dd7f4150240?api-version=2021-12-01" + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;hiagarg;hiagavm/protectedItems/VM;iaasvmcontainerv2;hiagarg;hiagavm/operationResults/67b9e92a-6fe3-4f2a-8c33-4967fc5ee032?api-version=2022-02-01" ], "Retry-After": [ "60" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;hiagarg;hiagavm/protectedItems/VM;iaasvmcontainerv2;hiagarg;hiagavm/operationsStatus/02ea0220-65a7-4955-b9c4-2dd7f4150240?api-version=2021-12-01" + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;hiagarg;hiagavm/protectedItems/VM;iaasvmcontainerv2;hiagarg;hiagavm/operationsStatus/67b9e92a-6fe3-4f2a-8c33-4967fc5ee032?api-version=2022-02-01" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "808c5ec0-a8fc-48d5-9e03-f9c6d8c1f601" + "978ec7c8-db50-49cb-8940-ae5ebba001ad" ], "x-ms-client-request-id": [ - "b9811465-95ba-45f5-8501-8c25e5927871" + "e2926508-844c-4d0b-bc81-a41d6c8fe6c0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -267,13 +267,13 @@ "1199" ], "x-ms-correlation-request-id": [ - "808c5ec0-a8fc-48d5-9e03-f9c6d8c1f601" + "978ec7c8-db50-49cb-8940-ae5ebba001ad" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T115015Z:808c5ec0-a8fc-48d5-9e03-f9c6d8c1f601" + "JIOINDIAWEST:20220516T171547Z:978ec7c8-db50-49cb-8940-ae5ebba001ad" ], "Date": [ - "Sat, 26 Mar 2022 11:50:15 GMT" + "Mon, 16 May 2022 17:15:47 GMT" ], "Expires": [ "-1" @@ -286,22 +286,22 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupOperations/02ea0220-65a7-4955-b9c4-2dd7f4150240?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvMDJlYTAyMjAtNjVhNy00OTU1LWI5YzQtMmRkN2Y0MTUwMjQwP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupOperations/67b9e92a-6fe3-4f2a-8c33-4967fc5ee032?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvNjdiOWU5MmEtNmZlMy00ZjJhLThjMzMtNDk2N2ZjNWVlMDMyP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b9811465-95ba-45f5-8501-8c25e5927871" + "e2926508-844c-4d0b-bc81-a41d6c8fe6c0" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -315,10 +315,10 @@ "nosniff" ], "x-ms-request-id": [ - "96b55104-5bab-4b50-98c1-b5da0711bf02" + "8db2d60a-8d37-4bc2-8e59-0a98b86357ba" ], "x-ms-client-request-id": [ - "b9811465-95ba-45f5-8501-8c25e5927871" + "e2926508-844c-4d0b-bc81-a41d6c8fe6c0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -333,13 +333,13 @@ "299" ], "x-ms-correlation-request-id": [ - "96b55104-5bab-4b50-98c1-b5da0711bf02" + "8db2d60a-8d37-4bc2-8e59-0a98b86357ba" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T115016Z:96b55104-5bab-4b50-98c1-b5da0711bf02" + "JIOINDIAWEST:20220516T171548Z:8db2d60a-8d37-4bc2-8e59-0a98b86357ba" ], "Date": [ - "Sat, 26 Mar 2022 11:50:15 GMT" + "Mon, 16 May 2022 17:15:47 GMT" ], "Content-Length": [ "188" @@ -351,26 +351,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"02ea0220-65a7-4955-b9c4-2dd7f4150240\",\r\n \"name\": \"02ea0220-65a7-4955-b9c4-2dd7f4150240\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-03-26T11:50:15.5857636Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"67b9e92a-6fe3-4f2a-8c33-4967fc5ee032\",\r\n \"name\": \"67b9e92a-6fe3-4f2a-8c33-4967fc5ee032\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T17:15:47.4945075Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupOperations/02ea0220-65a7-4955-b9c4-2dd7f4150240?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvMDJlYTAyMjAtNjVhNy00OTU1LWI5YzQtMmRkN2Y0MTUwMjQwP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupOperations/67b9e92a-6fe3-4f2a-8c33-4967fc5ee032?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvNjdiOWU5MmEtNmZlMy00ZjJhLThjMzMtNDk2N2ZjNWVlMDMyP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b9811465-95ba-45f5-8501-8c25e5927871" + "e2926508-844c-4d0b-bc81-a41d6c8fe6c0" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -384,10 +384,10 @@ "nosniff" ], "x-ms-request-id": [ - "49996e4a-2eea-49f0-b8d0-6c946221475d" + "f1642a57-2e89-4cac-93ef-c69d74bee599" ], "x-ms-client-request-id": [ - "b9811465-95ba-45f5-8501-8c25e5927871" + "e2926508-844c-4d0b-bc81-a41d6c8fe6c0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -402,13 +402,13 @@ "298" ], "x-ms-correlation-request-id": [ - "49996e4a-2eea-49f0-b8d0-6c946221475d" + "f1642a57-2e89-4cac-93ef-c69d74bee599" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T115026Z:49996e4a-2eea-49f0-b8d0-6c946221475d" + "JIOINDIAWEST:20220516T171554Z:f1642a57-2e89-4cac-93ef-c69d74bee599" ], "Date": [ - "Sat, 26 Mar 2022 11:50:26 GMT" + "Mon, 16 May 2022 17:15:53 GMT" ], "Content-Length": [ "304" @@ -420,26 +420,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"02ea0220-65a7-4955-b9c4-2dd7f4150240\",\r\n \"name\": \"02ea0220-65a7-4955-b9c4-2dd7f4150240\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-03-26T11:50:15.5857636Z\",\r\n \"endTime\": \"2022-03-26T11:50:15.5857636Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"9985d99d-11aa-4fa6-8848-f9c5a274aa3d\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"67b9e92a-6fe3-4f2a-8c33-4967fc5ee032\",\r\n \"name\": \"67b9e92a-6fe3-4f2a-8c33-4967fc5ee032\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-05-16T17:15:47.4945075Z\",\r\n \"endTime\": \"2022-05-16T17:15:47.4945075Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"65fe2225-aa9c-48d5-976f-4767917e7787\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupOperations/02ea0220-65a7-4955-b9c4-2dd7f4150240?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvMDJlYTAyMjAtNjVhNy00OTU1LWI5YzQtMmRkN2Y0MTUwMjQwP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupOperations/67b9e92a-6fe3-4f2a-8c33-4967fc5ee032?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvNjdiOWU5MmEtNmZlMy00ZjJhLThjMzMtNDk2N2ZjNWVlMDMyP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b9811465-95ba-45f5-8501-8c25e5927871" + "e2926508-844c-4d0b-bc81-a41d6c8fe6c0" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -453,10 +453,10 @@ "nosniff" ], "x-ms-request-id": [ - "9a5584c8-a546-414e-9ba6-6ef13c82f415" + "40f4a725-1255-42e2-a47e-e1a39727ce6c" ], "x-ms-client-request-id": [ - "b9811465-95ba-45f5-8501-8c25e5927871" + "e2926508-844c-4d0b-bc81-a41d6c8fe6c0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -471,13 +471,13 @@ "297" ], "x-ms-correlation-request-id": [ - "9a5584c8-a546-414e-9ba6-6ef13c82f415" + "40f4a725-1255-42e2-a47e-e1a39727ce6c" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T115027Z:9a5584c8-a546-414e-9ba6-6ef13c82f415" + "JIOINDIAWEST:20220516T171555Z:40f4a725-1255-42e2-a47e-e1a39727ce6c" ], "Date": [ - "Sat, 26 Mar 2022 11:50:26 GMT" + "Mon, 16 May 2022 17:15:54 GMT" ], "Content-Length": [ "304" @@ -489,26 +489,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"02ea0220-65a7-4955-b9c4-2dd7f4150240\",\r\n \"name\": \"02ea0220-65a7-4955-b9c4-2dd7f4150240\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-03-26T11:50:15.5857636Z\",\r\n \"endTime\": \"2022-03-26T11:50:15.5857636Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"9985d99d-11aa-4fa6-8848-f9c5a274aa3d\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"67b9e92a-6fe3-4f2a-8c33-4967fc5ee032\",\r\n \"name\": \"67b9e92a-6fe3-4f2a-8c33-4967fc5ee032\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-05-16T17:15:47.4945075Z\",\r\n \"endTime\": \"2022-05-16T17:15:47.4945075Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"65fe2225-aa9c-48d5-976f-4767917e7787\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/9985d99d-11aa-4fa6-8848-f9c5a274aa3d?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEpvYnMvOTk4NWQ5OWQtMTFhYS00ZmE2LTg4NDgtZjljNWEyNzRhYTNkP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/65fe2225-aa9c-48d5-976f-4767917e7787?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEpvYnMvNjVmZTIyMjUtYWE5Yy00OGQ1LTk3NmYtNDc2NzkxN2U3Nzg3P2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b9811465-95ba-45f5-8501-8c25e5927871" + "e2926508-844c-4d0b-bc81-a41d6c8fe6c0" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -522,10 +522,10 @@ "nosniff" ], "x-ms-request-id": [ - "5ca8b069-5bcb-4266-81a5-12d06289df33" + "8947e744-49b5-4fb1-a199-c0bf8ba03623" ], "x-ms-client-request-id": [ - "b9811465-95ba-45f5-8501-8c25e5927871" + "e2926508-844c-4d0b-bc81-a41d6c8fe6c0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -540,16 +540,16 @@ "299" ], "x-ms-correlation-request-id": [ - "5ca8b069-5bcb-4266-81a5-12d06289df33" + "8947e744-49b5-4fb1-a199-c0bf8ba03623" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T115027Z:5ca8b069-5bcb-4266-81a5-12d06289df33" + "JIOINDIAWEST:20220516T171556Z:8947e744-49b5-4fb1-a199-c0bf8ba03623" ], "Date": [ - "Sat, 26 Mar 2022 11:50:27 GMT" + "Mon, 16 May 2022 17:15:55 GMT" ], "Content-Length": [ - "923" + "922" ], "Content-Type": [ "application/json; charset=utf-8" @@ -558,26 +558,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/9985d99d-11aa-4fa6-8848-f9c5a274aa3d\",\r\n \"name\": \"9985d99d-11aa-4fa6-8848-f9c5a274aa3d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"duration\": \"PT11.7970509S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"hiagavm\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"hiagavm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-03-26T11:50:15.5857636Z\",\r\n \"activityId\": \"b9811465-95ba-45f5-8501-8c25e5927871\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/65fe2225-aa9c-48d5-976f-4767917e7787\",\r\n \"name\": \"65fe2225-aa9c-48d5-976f-4767917e7787\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"duration\": \"PT7.8383824S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"hiagavm\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"hiagavm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T17:15:47.4945075Z\",\r\n \"activityId\": \"e2926508-844c-4d0b-bc81-a41d6c8fe6c0\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/9985d99d-11aa-4fa6-8848-f9c5a274aa3d?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEpvYnMvOTk4NWQ5OWQtMTFhYS00ZmE2LTg4NDgtZjljNWEyNzRhYTNkP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/65fe2225-aa9c-48d5-976f-4767917e7787?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEpvYnMvNjVmZTIyMjUtYWE5Yy00OGQ1LTk3NmYtNDc2NzkxN2U3Nzg3P2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b9811465-95ba-45f5-8501-8c25e5927871" + "e2926508-844c-4d0b-bc81-a41d6c8fe6c0" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -591,10 +591,10 @@ "nosniff" ], "x-ms-request-id": [ - "ce12ccf2-a46c-4830-bc79-a945dc9c6950" + "5d269ac6-7ee0-4ccd-8d66-cc0e473a9a8b" ], "x-ms-client-request-id": [ - "b9811465-95ba-45f5-8501-8c25e5927871" + "e2926508-844c-4d0b-bc81-a41d6c8fe6c0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -609,16 +609,16 @@ "298" ], "x-ms-correlation-request-id": [ - "ce12ccf2-a46c-4830-bc79-a945dc9c6950" + "5d269ac6-7ee0-4ccd-8d66-cc0e473a9a8b" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T115028Z:ce12ccf2-a46c-4830-bc79-a945dc9c6950" + "JIOINDIAWEST:20220516T171556Z:5d269ac6-7ee0-4ccd-8d66-cc0e473a9a8b" ], "Date": [ - "Sat, 26 Mar 2022 11:50:27 GMT" + "Mon, 16 May 2022 17:15:56 GMT" ], "Content-Length": [ - "923" + "922" ], "Content-Type": [ "application/json; charset=utf-8" @@ -627,26 +627,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/9985d99d-11aa-4fa6-8848-f9c5a274aa3d\",\r\n \"name\": \"9985d99d-11aa-4fa6-8848-f9c5a274aa3d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"duration\": \"PT12.4812733S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"hiagavm\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"hiagavm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-03-26T11:50:15.5857636Z\",\r\n \"activityId\": \"b9811465-95ba-45f5-8501-8c25e5927871\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/65fe2225-aa9c-48d5-976f-4767917e7787\",\r\n \"name\": \"65fe2225-aa9c-48d5-976f-4767917e7787\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"duration\": \"PT8.7602965S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"hiagavm\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"hiagavm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T17:15:47.4945075Z\",\r\n \"activityId\": \"e2926508-844c-4d0b-bc81-a41d6c8fe6c0\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/9985d99d-11aa-4fa6-8848-f9c5a274aa3d?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEpvYnMvOTk4NWQ5OWQtMTFhYS00ZmE2LTg4NDgtZjljNWEyNzRhYTNkP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/65fe2225-aa9c-48d5-976f-4767917e7787?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEpvYnMvNjVmZTIyMjUtYWE5Yy00OGQ1LTk3NmYtNDc2NzkxN2U3Nzg3P2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b9811465-95ba-45f5-8501-8c25e5927871" + "e2926508-844c-4d0b-bc81-a41d6c8fe6c0" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -660,10 +660,10 @@ "nosniff" ], "x-ms-request-id": [ - "19c435ed-2c71-43dd-b003-84ce82b333df" + "ea8b443b-1ed8-4b52-b0a6-29ffdef13762" ], "x-ms-client-request-id": [ - "b9811465-95ba-45f5-8501-8c25e5927871" + "e2926508-844c-4d0b-bc81-a41d6c8fe6c0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -678,16 +678,16 @@ "297" ], "x-ms-correlation-request-id": [ - "19c435ed-2c71-43dd-b003-84ce82b333df" + "ea8b443b-1ed8-4b52-b0a6-29ffdef13762" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T115130Z:19c435ed-2c71-43dd-b003-84ce82b333df" + "JIOINDIAWEST:20220516T171627Z:ea8b443b-1ed8-4b52-b0a6-29ffdef13762" ], "Date": [ - "Sat, 26 Mar 2022 11:51:30 GMT" + "Mon, 16 May 2022 17:16:26 GMT" ], "Content-Length": [ - "925" + "923" ], "Content-Type": [ "application/json; charset=utf-8" @@ -696,26 +696,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/9985d99d-11aa-4fa6-8848-f9c5a274aa3d\",\r\n \"name\": \"9985d99d-11aa-4fa6-8848-f9c5a274aa3d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"duration\": \"PT1M14.1314625S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"hiagavm\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"hiagavm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-03-26T11:50:15.5857636Z\",\r\n \"activityId\": \"b9811465-95ba-45f5-8501-8c25e5927871\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/65fe2225-aa9c-48d5-976f-4767917e7787\",\r\n \"name\": \"65fe2225-aa9c-48d5-976f-4767917e7787\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"duration\": \"PT39.6434585S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"hiagavm\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"hiagavm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T17:15:47.4945075Z\",\r\n \"activityId\": \"e2926508-844c-4d0b-bc81-a41d6c8fe6c0\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/9985d99d-11aa-4fa6-8848-f9c5a274aa3d?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEpvYnMvOTk4NWQ5OWQtMTFhYS00ZmE2LTg4NDgtZjljNWEyNzRhYTNkP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/65fe2225-aa9c-48d5-976f-4767917e7787?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEpvYnMvNjVmZTIyMjUtYWE5Yy00OGQ1LTk3NmYtNDc2NzkxN2U3Nzg3P2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b9811465-95ba-45f5-8501-8c25e5927871" + "e2926508-844c-4d0b-bc81-a41d6c8fe6c0" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -729,10 +729,10 @@ "nosniff" ], "x-ms-request-id": [ - "d3e8fcad-97be-4e2a-83f0-fab57e5d1230" + "0f386112-329d-49e9-af52-b3d99f008a66" ], "x-ms-client-request-id": [ - "b9811465-95ba-45f5-8501-8c25e5927871" + "e2926508-844c-4d0b-bc81-a41d6c8fe6c0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -747,13 +747,13 @@ "296" ], "x-ms-correlation-request-id": [ - "d3e8fcad-97be-4e2a-83f0-fab57e5d1230" + "0f386112-329d-49e9-af52-b3d99f008a66" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T115231Z:d3e8fcad-97be-4e2a-83f0-fab57e5d1230" + "JIOINDIAWEST:20220516T171659Z:0f386112-329d-49e9-af52-b3d99f008a66" ], "Date": [ - "Sat, 26 Mar 2022 11:52:31 GMT" + "Mon, 16 May 2022 17:16:58 GMT" ], "Content-Length": [ "925" @@ -765,26 +765,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/9985d99d-11aa-4fa6-8848-f9c5a274aa3d\",\r\n \"name\": \"9985d99d-11aa-4fa6-8848-f9c5a274aa3d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"duration\": \"PT2M15.6058198S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"hiagavm\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"hiagavm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-03-26T11:50:15.5857636Z\",\r\n \"activityId\": \"b9811465-95ba-45f5-8501-8c25e5927871\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/65fe2225-aa9c-48d5-976f-4767917e7787\",\r\n \"name\": \"65fe2225-aa9c-48d5-976f-4767917e7787\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"duration\": \"PT1M10.6904819S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"hiagavm\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"hiagavm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T17:15:47.4945075Z\",\r\n \"activityId\": \"e2926508-844c-4d0b-bc81-a41d6c8fe6c0\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/9985d99d-11aa-4fa6-8848-f9c5a274aa3d?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEpvYnMvOTk4NWQ5OWQtMTFhYS00ZmE2LTg4NDgtZjljNWEyNzRhYTNkP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/65fe2225-aa9c-48d5-976f-4767917e7787?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEpvYnMvNjVmZTIyMjUtYWE5Yy00OGQ1LTk3NmYtNDc2NzkxN2U3Nzg3P2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b9811465-95ba-45f5-8501-8c25e5927871" + "e2926508-844c-4d0b-bc81-a41d6c8fe6c0" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -798,10 +798,10 @@ "nosniff" ], "x-ms-request-id": [ - "00188c84-2e94-47a7-9514-c3cde35e0094" + "2db66c6b-ac0b-497d-a05a-2d71673c073b" ], "x-ms-client-request-id": [ - "b9811465-95ba-45f5-8501-8c25e5927871" + "e2926508-844c-4d0b-bc81-a41d6c8fe6c0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -816,13 +816,13 @@ "295" ], "x-ms-correlation-request-id": [ - "00188c84-2e94-47a7-9514-c3cde35e0094" + "2db66c6b-ac0b-497d-a05a-2d71673c073b" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T115333Z:00188c84-2e94-47a7-9514-c3cde35e0094" + "JIOINDIAWEST:20220516T171730Z:2db66c6b-ac0b-497d-a05a-2d71673c073b" ], "Date": [ - "Sat, 26 Mar 2022 11:53:33 GMT" + "Mon, 16 May 2022 17:17:29 GMT" ], "Content-Length": [ "925" @@ -834,26 +834,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/9985d99d-11aa-4fa6-8848-f9c5a274aa3d\",\r\n \"name\": \"9985d99d-11aa-4fa6-8848-f9c5a274aa3d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"duration\": \"PT3M17.2787903S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"hiagavm\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"hiagavm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-03-26T11:50:15.5857636Z\",\r\n \"activityId\": \"b9811465-95ba-45f5-8501-8c25e5927871\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/65fe2225-aa9c-48d5-976f-4767917e7787\",\r\n \"name\": \"65fe2225-aa9c-48d5-976f-4767917e7787\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"duration\": \"PT1M41.9785254S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"hiagavm\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"hiagavm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T17:15:47.4945075Z\",\r\n \"activityId\": \"e2926508-844c-4d0b-bc81-a41d6c8fe6c0\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/9985d99d-11aa-4fa6-8848-f9c5a274aa3d?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEpvYnMvOTk4NWQ5OWQtMTFhYS00ZmE2LTg4NDgtZjljNWEyNzRhYTNkP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/65fe2225-aa9c-48d5-976f-4767917e7787?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEpvYnMvNjVmZTIyMjUtYWE5Yy00OGQ1LTk3NmYtNDc2NzkxN2U3Nzg3P2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b9811465-95ba-45f5-8501-8c25e5927871" + "e2926508-844c-4d0b-bc81-a41d6c8fe6c0" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -867,10 +867,10 @@ "nosniff" ], "x-ms-request-id": [ - "87135410-863f-4853-b0fb-d21751f613ee" + "a51a1cb3-9bc7-487e-86c2-d4e2160d3ec7" ], "x-ms-client-request-id": [ - "b9811465-95ba-45f5-8501-8c25e5927871" + "e2926508-844c-4d0b-bc81-a41d6c8fe6c0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -885,13 +885,13 @@ "294" ], "x-ms-correlation-request-id": [ - "87135410-863f-4853-b0fb-d21751f613ee" + "a51a1cb3-9bc7-487e-86c2-d4e2160d3ec7" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T115435Z:87135410-863f-4853-b0fb-d21751f613ee" + "JIOINDIAWEST:20220516T171801Z:a51a1cb3-9bc7-487e-86c2-d4e2160d3ec7" ], "Date": [ - "Sat, 26 Mar 2022 11:54:35 GMT" + "Mon, 16 May 2022 17:18:01 GMT" ], "Content-Length": [ "925" @@ -903,26 +903,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/9985d99d-11aa-4fa6-8848-f9c5a274aa3d\",\r\n \"name\": \"9985d99d-11aa-4fa6-8848-f9c5a274aa3d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"duration\": \"PT4M18.9165713S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"hiagavm\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"hiagavm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-03-26T11:50:15.5857636Z\",\r\n \"activityId\": \"b9811465-95ba-45f5-8501-8c25e5927871\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/65fe2225-aa9c-48d5-976f-4767917e7787\",\r\n \"name\": \"65fe2225-aa9c-48d5-976f-4767917e7787\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"duration\": \"PT2M13.0554429S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"hiagavm\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"hiagavm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T17:15:47.4945075Z\",\r\n \"activityId\": \"e2926508-844c-4d0b-bc81-a41d6c8fe6c0\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/9985d99d-11aa-4fa6-8848-f9c5a274aa3d?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEpvYnMvOTk4NWQ5OWQtMTFhYS00ZmE2LTg4NDgtZjljNWEyNzRhYTNkP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/65fe2225-aa9c-48d5-976f-4767917e7787?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEpvYnMvNjVmZTIyMjUtYWE5Yy00OGQ1LTk3NmYtNDc2NzkxN2U3Nzg3P2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b9811465-95ba-45f5-8501-8c25e5927871" + "e2926508-844c-4d0b-bc81-a41d6c8fe6c0" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -936,10 +936,10 @@ "nosniff" ], "x-ms-request-id": [ - "5dcde5c2-d425-4ac7-9e1b-e1895a3b5269" + "8e63455a-0ff6-44ab-ba07-3930fdf68ee9" ], "x-ms-client-request-id": [ - "b9811465-95ba-45f5-8501-8c25e5927871" + "e2926508-844c-4d0b-bc81-a41d6c8fe6c0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -954,13 +954,13 @@ "293" ], "x-ms-correlation-request-id": [ - "5dcde5c2-d425-4ac7-9e1b-e1895a3b5269" + "8e63455a-0ff6-44ab-ba07-3930fdf68ee9" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T115536Z:5dcde5c2-d425-4ac7-9e1b-e1895a3b5269" + "JIOINDIAWEST:20220516T171832Z:8e63455a-0ff6-44ab-ba07-3930fdf68ee9" ], "Date": [ - "Sat, 26 Mar 2022 11:55:36 GMT" + "Mon, 16 May 2022 17:18:31 GMT" ], "Content-Length": [ "925" @@ -972,26 +972,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/9985d99d-11aa-4fa6-8848-f9c5a274aa3d\",\r\n \"name\": \"9985d99d-11aa-4fa6-8848-f9c5a274aa3d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"duration\": \"PT5M20.4820447S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"hiagavm\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"hiagavm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-03-26T11:50:15.5857636Z\",\r\n \"activityId\": \"b9811465-95ba-45f5-8501-8c25e5927871\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/65fe2225-aa9c-48d5-976f-4767917e7787\",\r\n \"name\": \"65fe2225-aa9c-48d5-976f-4767917e7787\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"duration\": \"PT2M43.9985701S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"hiagavm\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"hiagavm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T17:15:47.4945075Z\",\r\n \"activityId\": \"e2926508-844c-4d0b-bc81-a41d6c8fe6c0\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/9985d99d-11aa-4fa6-8848-f9c5a274aa3d?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEpvYnMvOTk4NWQ5OWQtMTFhYS00ZmE2LTg4NDgtZjljNWEyNzRhYTNkP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/65fe2225-aa9c-48d5-976f-4767917e7787?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEpvYnMvNjVmZTIyMjUtYWE5Yy00OGQ1LTk3NmYtNDc2NzkxN2U3Nzg3P2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b9811465-95ba-45f5-8501-8c25e5927871" + "e2926508-844c-4d0b-bc81-a41d6c8fe6c0" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -1005,10 +1005,10 @@ "nosniff" ], "x-ms-request-id": [ - "fe8876b1-7def-41db-b95c-11c389784aef" + "e50b75c1-b994-4d23-970d-fcdcb2950388" ], "x-ms-client-request-id": [ - "b9811465-95ba-45f5-8501-8c25e5927871" + "e2926508-844c-4d0b-bc81-a41d6c8fe6c0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1023,13 +1023,13 @@ "292" ], "x-ms-correlation-request-id": [ - "fe8876b1-7def-41db-b95c-11c389784aef" + "e50b75c1-b994-4d23-970d-fcdcb2950388" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T115638Z:fe8876b1-7def-41db-b95c-11c389784aef" + "JIOINDIAWEST:20220516T171903Z:e50b75c1-b994-4d23-970d-fcdcb2950388" ], "Date": [ - "Sat, 26 Mar 2022 11:56:37 GMT" + "Mon, 16 May 2022 17:19:03 GMT" ], "Content-Length": [ "925" @@ -1041,26 +1041,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/9985d99d-11aa-4fa6-8848-f9c5a274aa3d\",\r\n \"name\": \"9985d99d-11aa-4fa6-8848-f9c5a274aa3d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"duration\": \"PT6M22.0328241S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"hiagavm\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"hiagavm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-03-26T11:50:15.5857636Z\",\r\n \"activityId\": \"b9811465-95ba-45f5-8501-8c25e5927871\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/65fe2225-aa9c-48d5-976f-4767917e7787\",\r\n \"name\": \"65fe2225-aa9c-48d5-976f-4767917e7787\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"duration\": \"PT3M15.0512672S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"hiagavm\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"hiagavm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T17:15:47.4945075Z\",\r\n \"activityId\": \"e2926508-844c-4d0b-bc81-a41d6c8fe6c0\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/9985d99d-11aa-4fa6-8848-f9c5a274aa3d?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEpvYnMvOTk4NWQ5OWQtMTFhYS00ZmE2LTg4NDgtZjljNWEyNzRhYTNkP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/65fe2225-aa9c-48d5-976f-4767917e7787?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEpvYnMvNjVmZTIyMjUtYWE5Yy00OGQ1LTk3NmYtNDc2NzkxN2U3Nzg3P2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b9811465-95ba-45f5-8501-8c25e5927871" + "e2926508-844c-4d0b-bc81-a41d6c8fe6c0" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -1074,10 +1074,10 @@ "nosniff" ], "x-ms-request-id": [ - "2bbf5bab-7966-415a-a358-ce0bb30dd776" + "dfdc0fc5-f5d6-4253-8349-78956b93b5c8" ], "x-ms-client-request-id": [ - "b9811465-95ba-45f5-8501-8c25e5927871" + "e2926508-844c-4d0b-bc81-a41d6c8fe6c0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1092,13 +1092,13 @@ "291" ], "x-ms-correlation-request-id": [ - "2bbf5bab-7966-415a-a358-ce0bb30dd776" + "dfdc0fc5-f5d6-4253-8349-78956b93b5c8" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T115739Z:2bbf5bab-7966-415a-a358-ce0bb30dd776" + "JIOINDIAWEST:20220516T171934Z:dfdc0fc5-f5d6-4253-8349-78956b93b5c8" ], "Date": [ - "Sat, 26 Mar 2022 11:57:39 GMT" + "Mon, 16 May 2022 17:19:33 GMT" ], "Content-Length": [ "925" @@ -1110,26 +1110,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/9985d99d-11aa-4fa6-8848-f9c5a274aa3d\",\r\n \"name\": \"9985d99d-11aa-4fa6-8848-f9c5a274aa3d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"duration\": \"PT7M23.6455279S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"hiagavm\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"hiagavm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-03-26T11:50:15.5857636Z\",\r\n \"activityId\": \"b9811465-95ba-45f5-8501-8c25e5927871\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/65fe2225-aa9c-48d5-976f-4767917e7787\",\r\n \"name\": \"65fe2225-aa9c-48d5-976f-4767917e7787\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"duration\": \"PT3M46.1531071S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"hiagavm\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"hiagavm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T17:15:47.4945075Z\",\r\n \"activityId\": \"e2926508-844c-4d0b-bc81-a41d6c8fe6c0\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/9985d99d-11aa-4fa6-8848-f9c5a274aa3d?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEpvYnMvOTk4NWQ5OWQtMTFhYS00ZmE2LTg4NDgtZjljNWEyNzRhYTNkP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/65fe2225-aa9c-48d5-976f-4767917e7787?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEpvYnMvNjVmZTIyMjUtYWE5Yy00OGQ1LTk3NmYtNDc2NzkxN2U3Nzg3P2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b9811465-95ba-45f5-8501-8c25e5927871" + "e2926508-844c-4d0b-bc81-a41d6c8fe6c0" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -1139,14 +1139,17 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "290" + ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "1e84d2f4-aa0b-4592-94b4-15e661fd720f" + "b399aa6e-b770-4e15-9002-1197e83fc099" ], "x-ms-client-request-id": [ - "b9811465-95ba-45f5-8501-8c25e5927871" + "e2926508-844c-4d0b-bc81-a41d6c8fe6c0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1157,20 +1160,17 @@ "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "290" - ], "x-ms-correlation-request-id": [ - "1e84d2f4-aa0b-4592-94b4-15e661fd720f" + "b399aa6e-b770-4e15-9002-1197e83fc099" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T115841Z:1e84d2f4-aa0b-4592-94b4-15e661fd720f" + "JIOINDIAWEST:20220516T172005Z:b399aa6e-b770-4e15-9002-1197e83fc099" ], "Date": [ - "Sat, 26 Mar 2022 11:58:41 GMT" + "Mon, 16 May 2022 17:20:04 GMT" ], "Content-Length": [ - "924" + "925" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1179,26 +1179,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/9985d99d-11aa-4fa6-8848-f9c5a274aa3d\",\r\n \"name\": \"9985d99d-11aa-4fa6-8848-f9c5a274aa3d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"duration\": \"PT8M25.1813197S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"hiagavm\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"hiagavm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-03-26T11:50:15.5857636Z\",\r\n \"activityId\": \"b9811465-95ba-45f5-8501-8c25e5927871\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/65fe2225-aa9c-48d5-976f-4767917e7787\",\r\n \"name\": \"65fe2225-aa9c-48d5-976f-4767917e7787\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"duration\": \"PT4M17.5317847S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"hiagavm\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"hiagavm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T17:15:47.4945075Z\",\r\n \"activityId\": \"e2926508-844c-4d0b-bc81-a41d6c8fe6c0\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/9985d99d-11aa-4fa6-8848-f9c5a274aa3d?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEpvYnMvOTk4NWQ5OWQtMTFhYS00ZmE2LTg4NDgtZjljNWEyNzRhYTNkP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/65fe2225-aa9c-48d5-976f-4767917e7787?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEpvYnMvNjVmZTIyMjUtYWE5Yy00OGQ1LTk3NmYtNDc2NzkxN2U3Nzg3P2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b9811465-95ba-45f5-8501-8c25e5927871" + "e2926508-844c-4d0b-bc81-a41d6c8fe6c0" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -1212,10 +1212,10 @@ "nosniff" ], "x-ms-request-id": [ - "8c79d1de-e380-4a43-a53f-3a62346412e3" + "27ff0e2d-2ed9-420d-a374-569d774d11d4" ], "x-ms-client-request-id": [ - "b9811465-95ba-45f5-8501-8c25e5927871" + "e2926508-844c-4d0b-bc81-a41d6c8fe6c0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1230,16 +1230,16 @@ "289" ], "x-ms-correlation-request-id": [ - "8c79d1de-e380-4a43-a53f-3a62346412e3" + "27ff0e2d-2ed9-420d-a374-569d774d11d4" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T115942Z:8c79d1de-e380-4a43-a53f-3a62346412e3" + "JIOINDIAWEST:20220516T172036Z:27ff0e2d-2ed9-420d-a374-569d774d11d4" ], "Date": [ - "Sat, 26 Mar 2022 11:59:42 GMT" + "Mon, 16 May 2022 17:20:36 GMT" ], "Content-Length": [ - "923" + "925" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1248,26 +1248,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/9985d99d-11aa-4fa6-8848-f9c5a274aa3d\",\r\n \"name\": \"9985d99d-11aa-4fa6-8848-f9c5a274aa3d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"duration\": \"PT9M26.776591S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"hiagavm\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"hiagavm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-03-26T11:50:15.5857636Z\",\r\n \"activityId\": \"b9811465-95ba-45f5-8501-8c25e5927871\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/65fe2225-aa9c-48d5-976f-4767917e7787\",\r\n \"name\": \"65fe2225-aa9c-48d5-976f-4767917e7787\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"duration\": \"PT4M48.5141872S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"hiagavm\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"hiagavm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T17:15:47.4945075Z\",\r\n \"activityId\": \"e2926508-844c-4d0b-bc81-a41d6c8fe6c0\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/9985d99d-11aa-4fa6-8848-f9c5a274aa3d?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEpvYnMvOTk4NWQ5OWQtMTFhYS00ZmE2LTg4NDgtZjljNWEyNzRhYTNkP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/65fe2225-aa9c-48d5-976f-4767917e7787?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEpvYnMvNjVmZTIyMjUtYWE5Yy00OGQ1LTk3NmYtNDc2NzkxN2U3Nzg3P2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b9811465-95ba-45f5-8501-8c25e5927871" + "e2926508-844c-4d0b-bc81-a41d6c8fe6c0" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -1281,10 +1281,10 @@ "nosniff" ], "x-ms-request-id": [ - "50cc6d3a-91f3-4d11-a5ef-8c89cb94ee67" + "35ad8841-9dd6-4ef4-8e17-2a60a51501b5" ], "x-ms-client-request-id": [ - "b9811465-95ba-45f5-8501-8c25e5927871" + "e2926508-844c-4d0b-bc81-a41d6c8fe6c0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1296,16 +1296,16 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "299" + "288" ], "x-ms-correlation-request-id": [ - "50cc6d3a-91f3-4d11-a5ef-8c89cb94ee67" + "35ad8841-9dd6-4ef4-8e17-2a60a51501b5" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T120045Z:50cc6d3a-91f3-4d11-a5ef-8c89cb94ee67" + "JIOINDIAWEST:20220516T172107Z:35ad8841-9dd6-4ef4-8e17-2a60a51501b5" ], "Date": [ - "Sat, 26 Mar 2022 12:00:44 GMT" + "Mon, 16 May 2022 17:21:06 GMT" ], "Content-Length": [ "925" @@ -1317,26 +1317,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/9985d99d-11aa-4fa6-8848-f9c5a274aa3d\",\r\n \"name\": \"9985d99d-11aa-4fa6-8848-f9c5a274aa3d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"duration\": \"PT10M28.7576834S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"hiagavm\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"hiagavm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-03-26T11:50:15.5857636Z\",\r\n \"activityId\": \"b9811465-95ba-45f5-8501-8c25e5927871\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/65fe2225-aa9c-48d5-976f-4767917e7787\",\r\n \"name\": \"65fe2225-aa9c-48d5-976f-4767917e7787\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"duration\": \"PT5M19.4542277S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"hiagavm\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"hiagavm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T17:15:47.4945075Z\",\r\n \"activityId\": \"e2926508-844c-4d0b-bc81-a41d6c8fe6c0\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/9985d99d-11aa-4fa6-8848-f9c5a274aa3d?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEpvYnMvOTk4NWQ5OWQtMTFhYS00ZmE2LTg4NDgtZjljNWEyNzRhYTNkP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/65fe2225-aa9c-48d5-976f-4767917e7787?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEpvYnMvNjVmZTIyMjUtYWE5Yy00OGQ1LTk3NmYtNDc2NzkxN2U3Nzg3P2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b9811465-95ba-45f5-8501-8c25e5927871" + "e2926508-844c-4d0b-bc81-a41d6c8fe6c0" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -1350,10 +1350,10 @@ "nosniff" ], "x-ms-request-id": [ - "c0992681-619c-4639-8606-1064ef625997" + "3d37da42-ea46-4731-b636-6281a67d7bd8" ], "x-ms-client-request-id": [ - "b9811465-95ba-45f5-8501-8c25e5927871" + "e2926508-844c-4d0b-bc81-a41d6c8fe6c0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1365,16 +1365,16 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "298" + "287" ], "x-ms-correlation-request-id": [ - "c0992681-619c-4639-8606-1064ef625997" + "3d37da42-ea46-4731-b636-6281a67d7bd8" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T120146Z:c0992681-619c-4639-8606-1064ef625997" + "JIOINDIAWEST:20220516T172138Z:3d37da42-ea46-4731-b636-6281a67d7bd8" ], "Date": [ - "Sat, 26 Mar 2022 12:01:45 GMT" + "Mon, 16 May 2022 17:21:38 GMT" ], "Content-Length": [ "925" @@ -1386,26 +1386,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/9985d99d-11aa-4fa6-8848-f9c5a274aa3d\",\r\n \"name\": \"9985d99d-11aa-4fa6-8848-f9c5a274aa3d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"duration\": \"PT11M30.2229469S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"hiagavm\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"hiagavm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-03-26T11:50:15.5857636Z\",\r\n \"activityId\": \"b9811465-95ba-45f5-8501-8c25e5927871\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/65fe2225-aa9c-48d5-976f-4767917e7787\",\r\n \"name\": \"65fe2225-aa9c-48d5-976f-4767917e7787\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"duration\": \"PT5M50.5426924S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"hiagavm\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"hiagavm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T17:15:47.4945075Z\",\r\n \"activityId\": \"e2926508-844c-4d0b-bc81-a41d6c8fe6c0\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/9985d99d-11aa-4fa6-8848-f9c5a274aa3d?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEpvYnMvOTk4NWQ5OWQtMTFhYS00ZmE2LTg4NDgtZjljNWEyNzRhYTNkP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/65fe2225-aa9c-48d5-976f-4767917e7787?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEpvYnMvNjVmZTIyMjUtYWE5Yy00OGQ1LTk3NmYtNDc2NzkxN2U3Nzg3P2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b9811465-95ba-45f5-8501-8c25e5927871" + "e2926508-844c-4d0b-bc81-a41d6c8fe6c0" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -1419,10 +1419,10 @@ "nosniff" ], "x-ms-request-id": [ - "0523a984-7b88-4bc6-9025-1248188e1cb5" + "b39e07f1-a1f4-486a-b0e9-d196b10ea385" ], "x-ms-client-request-id": [ - "b9811465-95ba-45f5-8501-8c25e5927871" + "e2926508-844c-4d0b-bc81-a41d6c8fe6c0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1434,16 +1434,16 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "297" + "286" ], "x-ms-correlation-request-id": [ - "0523a984-7b88-4bc6-9025-1248188e1cb5" + "b39e07f1-a1f4-486a-b0e9-d196b10ea385" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T120248Z:0523a984-7b88-4bc6-9025-1248188e1cb5" + "JIOINDIAWEST:20220516T172209Z:b39e07f1-a1f4-486a-b0e9-d196b10ea385" ], "Date": [ - "Sat, 26 Mar 2022 12:02:47 GMT" + "Mon, 16 May 2022 17:22:09 GMT" ], "Content-Length": [ "925" @@ -1455,26 +1455,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/9985d99d-11aa-4fa6-8848-f9c5a274aa3d\",\r\n \"name\": \"9985d99d-11aa-4fa6-8848-f9c5a274aa3d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"duration\": \"PT12M31.8429415S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"hiagavm\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"hiagavm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-03-26T11:50:15.5857636Z\",\r\n \"activityId\": \"b9811465-95ba-45f5-8501-8c25e5927871\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/65fe2225-aa9c-48d5-976f-4767917e7787\",\r\n \"name\": \"65fe2225-aa9c-48d5-976f-4767917e7787\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"duration\": \"PT6M21.6070981S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"hiagavm\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"hiagavm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T17:15:47.4945075Z\",\r\n \"activityId\": \"e2926508-844c-4d0b-bc81-a41d6c8fe6c0\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/9985d99d-11aa-4fa6-8848-f9c5a274aa3d?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEpvYnMvOTk4NWQ5OWQtMTFhYS00ZmE2LTg4NDgtZjljNWEyNzRhYTNkP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/65fe2225-aa9c-48d5-976f-4767917e7787?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEpvYnMvNjVmZTIyMjUtYWE5Yy00OGQ1LTk3NmYtNDc2NzkxN2U3Nzg3P2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b9811465-95ba-45f5-8501-8c25e5927871" + "e2926508-844c-4d0b-bc81-a41d6c8fe6c0" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -1488,10 +1488,10 @@ "nosniff" ], "x-ms-request-id": [ - "88f0a4fd-0642-4db5-8a16-416615a6e55f" + "ba74048c-f0cb-4802-8ee2-3ce7eaf84112" ], "x-ms-client-request-id": [ - "b9811465-95ba-45f5-8501-8c25e5927871" + "e2926508-844c-4d0b-bc81-a41d6c8fe6c0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1503,16 +1503,16 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "296" + "285" ], "x-ms-correlation-request-id": [ - "88f0a4fd-0642-4db5-8a16-416615a6e55f" + "ba74048c-f0cb-4802-8ee2-3ce7eaf84112" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T120349Z:88f0a4fd-0642-4db5-8a16-416615a6e55f" + "JIOINDIAWEST:20220516T172241Z:ba74048c-f0cb-4802-8ee2-3ce7eaf84112" ], "Date": [ - "Sat, 26 Mar 2022 12:03:49 GMT" + "Mon, 16 May 2022 17:22:40 GMT" ], "Content-Length": [ "925" @@ -1524,26 +1524,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/9985d99d-11aa-4fa6-8848-f9c5a274aa3d\",\r\n \"name\": \"9985d99d-11aa-4fa6-8848-f9c5a274aa3d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"duration\": \"PT13M33.4215519S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"hiagavm\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"hiagavm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-03-26T11:50:15.5857636Z\",\r\n \"activityId\": \"b9811465-95ba-45f5-8501-8c25e5927871\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/65fe2225-aa9c-48d5-976f-4767917e7787\",\r\n \"name\": \"65fe2225-aa9c-48d5-976f-4767917e7787\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"duration\": \"PT6M52.7558007S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"hiagavm\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"hiagavm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T17:15:47.4945075Z\",\r\n \"activityId\": \"e2926508-844c-4d0b-bc81-a41d6c8fe6c0\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/9985d99d-11aa-4fa6-8848-f9c5a274aa3d?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEpvYnMvOTk4NWQ5OWQtMTFhYS00ZmE2LTg4NDgtZjljNWEyNzRhYTNkP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/65fe2225-aa9c-48d5-976f-4767917e7787?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEpvYnMvNjVmZTIyMjUtYWE5Yy00OGQ1LTk3NmYtNDc2NzkxN2U3Nzg3P2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b9811465-95ba-45f5-8501-8c25e5927871" + "e2926508-844c-4d0b-bc81-a41d6c8fe6c0" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -1557,10 +1557,10 @@ "nosniff" ], "x-ms-request-id": [ - "85545029-b8a5-40fd-be80-839c63ef3675" + "35171f89-a8f6-4935-b2d8-34a499eed8b8" ], "x-ms-client-request-id": [ - "b9811465-95ba-45f5-8501-8c25e5927871" + "e2926508-844c-4d0b-bc81-a41d6c8fe6c0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1572,16 +1572,16 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "295" + "284" ], "x-ms-correlation-request-id": [ - "85545029-b8a5-40fd-be80-839c63ef3675" + "35171f89-a8f6-4935-b2d8-34a499eed8b8" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T120451Z:85545029-b8a5-40fd-be80-839c63ef3675" + "JIOINDIAWEST:20220516T172313Z:35171f89-a8f6-4935-b2d8-34a499eed8b8" ], "Date": [ - "Sat, 26 Mar 2022 12:04:50 GMT" + "Mon, 16 May 2022 17:23:12 GMT" ], "Content-Length": [ "925" @@ -1593,26 +1593,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/9985d99d-11aa-4fa6-8848-f9c5a274aa3d\",\r\n \"name\": \"9985d99d-11aa-4fa6-8848-f9c5a274aa3d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"duration\": \"PT14M34.8637158S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"hiagavm\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"hiagavm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-03-26T11:50:15.5857636Z\",\r\n \"activityId\": \"b9811465-95ba-45f5-8501-8c25e5927871\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/65fe2225-aa9c-48d5-976f-4767917e7787\",\r\n \"name\": \"65fe2225-aa9c-48d5-976f-4767917e7787\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"duration\": \"PT7M24.9181467S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"hiagavm\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"hiagavm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T17:15:47.4945075Z\",\r\n \"activityId\": \"e2926508-844c-4d0b-bc81-a41d6c8fe6c0\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/9985d99d-11aa-4fa6-8848-f9c5a274aa3d?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEpvYnMvOTk4NWQ5OWQtMTFhYS00ZmE2LTg4NDgtZjljNWEyNzRhYTNkP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/65fe2225-aa9c-48d5-976f-4767917e7787?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEpvYnMvNjVmZTIyMjUtYWE5Yy00OGQ1LTk3NmYtNDc2NzkxN2U3Nzg3P2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b9811465-95ba-45f5-8501-8c25e5927871" + "e2926508-844c-4d0b-bc81-a41d6c8fe6c0" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -1626,10 +1626,10 @@ "nosniff" ], "x-ms-request-id": [ - "7978e66a-23b5-4ad1-ae81-48c63f23d649" + "2c41857d-bbca-4f3c-8d43-b3f7fb3107ef" ], "x-ms-client-request-id": [ - "b9811465-95ba-45f5-8501-8c25e5927871" + "e2926508-844c-4d0b-bc81-a41d6c8fe6c0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1641,19 +1641,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "294" + "283" ], "x-ms-correlation-request-id": [ - "7978e66a-23b5-4ad1-ae81-48c63f23d649" + "2c41857d-bbca-4f3c-8d43-b3f7fb3107ef" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T120553Z:7978e66a-23b5-4ad1-ae81-48c63f23d649" + "JIOINDIAWEST:20220516T172344Z:2c41857d-bbca-4f3c-8d43-b3f7fb3107ef" ], "Date": [ - "Sat, 26 Mar 2022 12:05:53 GMT" + "Mon, 16 May 2022 17:23:43 GMT" ], "Content-Length": [ - "925" + "924" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1662,26 +1662,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/9985d99d-11aa-4fa6-8848-f9c5a274aa3d\",\r\n \"name\": \"9985d99d-11aa-4fa6-8848-f9c5a274aa3d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"duration\": \"PT15M37.2160875S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"hiagavm\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"hiagavm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-03-26T11:50:15.5857636Z\",\r\n \"activityId\": \"b9811465-95ba-45f5-8501-8c25e5927871\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/65fe2225-aa9c-48d5-976f-4767917e7787\",\r\n \"name\": \"65fe2225-aa9c-48d5-976f-4767917e7787\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"duration\": \"PT7M55.8709823S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"hiagavm\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"hiagavm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T17:15:47.4945075Z\",\r\n \"activityId\": \"e2926508-844c-4d0b-bc81-a41d6c8fe6c0\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/9985d99d-11aa-4fa6-8848-f9c5a274aa3d?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEpvYnMvOTk4NWQ5OWQtMTFhYS00ZmE2LTg4NDgtZjljNWEyNzRhYTNkP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/65fe2225-aa9c-48d5-976f-4767917e7787?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEpvYnMvNjVmZTIyMjUtYWE5Yy00OGQ1LTk3NmYtNDc2NzkxN2U3Nzg3P2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b9811465-95ba-45f5-8501-8c25e5927871" + "e2926508-844c-4d0b-bc81-a41d6c8fe6c0" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -1695,10 +1695,10 @@ "nosniff" ], "x-ms-request-id": [ - "5ffa7f8a-b63b-4de9-895b-c2097b2f1746" + "275e2e56-a1f4-4e68-a7e7-48d036a35412" ], "x-ms-client-request-id": [ - "b9811465-95ba-45f5-8501-8c25e5927871" + "e2926508-844c-4d0b-bc81-a41d6c8fe6c0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1710,19 +1710,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "293" + "282" ], "x-ms-correlation-request-id": [ - "5ffa7f8a-b63b-4de9-895b-c2097b2f1746" + "275e2e56-a1f4-4e68-a7e7-48d036a35412" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T120655Z:5ffa7f8a-b63b-4de9-895b-c2097b2f1746" + "JIOINDIAWEST:20220516T172415Z:275e2e56-a1f4-4e68-a7e7-48d036a35412" ], "Date": [ - "Sat, 26 Mar 2022 12:06:55 GMT" + "Mon, 16 May 2022 17:24:15 GMT" ], "Content-Length": [ - "924" + "923" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1731,26 +1731,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/9985d99d-11aa-4fa6-8848-f9c5a274aa3d\",\r\n \"name\": \"9985d99d-11aa-4fa6-8848-f9c5a274aa3d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"duration\": \"PT16M38.966137S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"hiagavm\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"hiagavm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-03-26T11:50:15.5857636Z\",\r\n \"activityId\": \"b9811465-95ba-45f5-8501-8c25e5927871\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/65fe2225-aa9c-48d5-976f-4767917e7787\",\r\n \"name\": \"65fe2225-aa9c-48d5-976f-4767917e7787\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"duration\": \"PT8M26.862922S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"hiagavm\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"hiagavm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T17:15:47.4945075Z\",\r\n \"activityId\": \"e2926508-844c-4d0b-bc81-a41d6c8fe6c0\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/9985d99d-11aa-4fa6-8848-f9c5a274aa3d?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEpvYnMvOTk4NWQ5OWQtMTFhYS00ZmE2LTg4NDgtZjljNWEyNzRhYTNkP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/65fe2225-aa9c-48d5-976f-4767917e7787?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEpvYnMvNjVmZTIyMjUtYWE5Yy00OGQ1LTk3NmYtNDc2NzkxN2U3Nzg3P2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b9811465-95ba-45f5-8501-8c25e5927871" + "e2926508-844c-4d0b-bc81-a41d6c8fe6c0" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -1760,14 +1760,17 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "281" + ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "b4665df5-b3d5-4c51-885a-19c0b5ab6a45" + "76d3f696-b2b0-499a-a60e-f6570a0ae480" ], "x-ms-client-request-id": [ - "b9811465-95ba-45f5-8501-8c25e5927871" + "e2926508-844c-4d0b-bc81-a41d6c8fe6c0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1778,20 +1781,17 @@ "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "292" - ], "x-ms-correlation-request-id": [ - "b4665df5-b3d5-4c51-885a-19c0b5ab6a45" + "76d3f696-b2b0-499a-a60e-f6570a0ae480" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T120756Z:b4665df5-b3d5-4c51-885a-19c0b5ab6a45" + "JIOINDIAWEST:20220516T172446Z:76d3f696-b2b0-499a-a60e-f6570a0ae480" ], "Date": [ - "Sat, 26 Mar 2022 12:07:56 GMT" + "Mon, 16 May 2022 17:24:45 GMT" ], "Content-Length": [ - "983" + "924" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1800,26 +1800,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/9985d99d-11aa-4fa6-8848-f9c5a274aa3d\",\r\n \"name\": \"9985d99d-11aa-4fa6-8848-f9c5a274aa3d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"duration\": \"PT17M37.7651588S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Skipped\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"hiagavm\",\r\n \"Backup Size\": \"0 MB\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"hiagavm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-03-26T11:50:15.5857636Z\",\r\n \"endTime\": \"2022-03-26T12:07:53.3509224Z\",\r\n \"activityId\": \"b9811465-95ba-45f5-8501-8c25e5927871\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/65fe2225-aa9c-48d5-976f-4767917e7787\",\r\n \"name\": \"65fe2225-aa9c-48d5-976f-4767917e7787\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"duration\": \"PT8M57.8262803S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"hiagavm\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"hiagavm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T17:15:47.4945075Z\",\r\n \"activityId\": \"e2926508-844c-4d0b-bc81-a41d6c8fe6c0\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupFabrics/Azure/protectionContainers/IaasVMContainer%3Biaasvmcontainerv2%3Bhiagarg%3Bhiagavm/protectedItems/VM%3Biaasvmcontainerv2%3Bhiagarg%3Bhiagavm/recoveryPoints?$filter=startDate%20eq%20'2022-03-26%2011:49:15%20AM'%20and%20endDate%20eq%20'2022-03-26%2012:08:53%20PM'&api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEZhYnJpY3MvQXp1cmUvcHJvdGVjdGlvbkNvbnRhaW5lcnMvSWFhc1ZNQ29udGFpbmVyJTNCaWFhc3ZtY29udGFpbmVydjIlM0JoaWFnYXJnJTNCaGlhZ2F2bS9wcm90ZWN0ZWRJdGVtcy9WTSUzQmlhYXN2bWNvbnRhaW5lcnYyJTNCaGlhZ2FyZyUzQmhpYWdhdm0vcmVjb3ZlcnlQb2ludHM/JGZpbHRlcj1zdGFydERhdGUlMjBlcSUyMCcyMDIyLTAzLTI2JTIwMTE6NDk6MTUlMjBBTSclMjBhbmQlMjBlbmREYXRlJTIwZXElMjAnMjAyMi0wMy0yNiUyMDEyOjA4OjUzJTIwUE0nJmFwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/65fe2225-aa9c-48d5-976f-4767917e7787?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEpvYnMvNjVmZTIyMjUtYWE5Yy00OGQ1LTk3NmYtNDc2NzkxN2U3Nzg3P2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8235ed1b-35fc-4d9c-bab4-eb96b5293f2c" + "e2926508-844c-4d0b-bc81-a41d6c8fe6c0" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -1833,34 +1833,34 @@ "nosniff" ], "x-ms-request-id": [ - "1b758c3d-939d-46d9-b4aa-4d09636b07e5" + "906c95eb-a0ad-4d7a-841f-a642265f60e5" ], "x-ms-client-request-id": [ - "8235ed1b-35fc-4d9c-bab4-eb96b5293f2c" + "e2926508-844c-4d0b-bc81-a41d6c8fe6c0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Server": [ - "Kestrel" + "Microsoft-IIS/10.0" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "299" + "280" ], "x-ms-correlation-request-id": [ - "1b758c3d-939d-46d9-b4aa-4d09636b07e5" + "906c95eb-a0ad-4d7a-841f-a642265f60e5" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T120756Z:1b758c3d-939d-46d9-b4aa-4d09636b07e5" + "JIOINDIAWEST:20220516T172517Z:906c95eb-a0ad-4d7a-841f-a642265f60e5" ], "Date": [ - "Sat, 26 Mar 2022 12:07:56 GMT" + "Mon, 16 May 2022 17:25:17 GMT" ], "Content-Length": [ - "1239" + "922" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1869,26 +1869,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;hiagarg;hiagavm/protectedItems/VM;iaasvmcontainerv2;hiagarg;hiagavm/recoveryPoints/163033366841464\",\r\n \"name\": \"163033366841464\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints\",\r\n \"properties\": {\r\n \"objectType\": \"IaasVMRecoveryPoint\",\r\n \"recoveryPointType\": \"CrashConsistent\",\r\n \"recoveryPointTime\": \"2022-03-26T11:50:18.9663643Z\",\r\n \"recoveryPointAdditionalInfo\": \"\",\r\n \"sourceVMStorageType\": \"PremiumVMOnPartialPremiumStorage\",\r\n \"isSourceVMEncrypted\": false,\r\n \"isInstantIlrSessionActive\": false,\r\n \"recoveryPointTierDetails\": [\r\n {\r\n \"type\": \"InstantRP\",\r\n \"status\": \"Valid\"\r\n }\r\n ],\r\n \"isManagedVirtualMachine\": true,\r\n \"virtualMachineSize\": \"Standard_B4ms\",\r\n \"originalStorageAccountOption\": false,\r\n \"osType\": \"Windows\",\r\n \"zones\": [\r\n \"1\"\r\n ],\r\n \"recoveryPointMoveReadinessInfo\": {\r\n \"ArchivedRP\": {\r\n \"isReadyForMove\": false,\r\n \"additionalInfo\": \"Recovery point cannot be moved to Archive tier due to insufficient retention duration specified in policy.. Update policy on the protected item with appropriate retention setting and try again.\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/65fe2225-aa9c-48d5-976f-4767917e7787\",\r\n \"name\": \"65fe2225-aa9c-48d5-976f-4767917e7787\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"duration\": \"PT9M29.72876S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"hiagavm\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"hiagavm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T17:15:47.4945075Z\",\r\n \"activityId\": \"e2926508-844c-4d0b-bc81-a41d6c8fe6c0\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resources?$filter=resourceType%20eq%20'Microsoft.ClassicStorage%2FstorageAccounts'&api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5DbGFzc2ljU3RvcmFnZSUyRnN0b3JhZ2VBY2NvdW50cycmYXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/65fe2225-aa9c-48d5-976f-4767917e7787?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEpvYnMvNjVmZTIyMjUtYWE5Yy00OGQ1LTk3NmYtNDc2NzkxN2U3Nzg3P2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "eff686d1-ed46-4a8b-9c6e-ce11619cddab" + "e2926508-844c-4d0b-bc81-a41d6c8fe6c0" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -1898,57 +1898,66 @@ "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "X-Content-Type-Options": [ + "nosniff" ], "x-ms-request-id": [ - "daf01a44-c2b3-4762-ae82-2c58b4b9abdf" - ], - "x-ms-correlation-request-id": [ - "daf01a44-c2b3-4762-ae82-2c58b4b9abdf" + "dd957154-e6f6-4dfe-bc5a-80bc6e73c998" ], - "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T120757Z:daf01a44-c2b3-4762-ae82-2c58b4b9abdf" + "x-ms-client-request-id": [ + "e2926508-844c-4d0b-bc81-a41d6c8fe6c0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ - "nosniff" + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "279" + ], + "x-ms-correlation-request-id": [ + "dd957154-e6f6-4dfe-bc5a-80bc6e73c998" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T172549Z:dd957154-e6f6-4dfe-bc5a-80bc6e73c998" ], "Date": [ - "Sat, 26 Mar 2022 12:07:57 GMT" + "Mon, 16 May 2022 17:25:48 GMT" + ], + "Content-Length": [ + "924" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" - ], - "Content-Length": [ - "268" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.existing/providers/Microsoft.ClassicStorage/storageAccounts/iaasextstore2\",\r\n \"name\": \"iaasextstore2\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"southeastasia\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/65fe2225-aa9c-48d5-976f-4767917e7787\",\r\n \"name\": \"65fe2225-aa9c-48d5-976f-4767917e7787\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"duration\": \"PT10M0.8115064S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"hiagavm\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"hiagavm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T17:15:47.4945075Z\",\r\n \"activityId\": \"e2926508-844c-4d0b-bc81-a41d6c8fe6c0\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resources?$filter=resourceType%20eq%20'Microsoft.Storage%2FstorageAccounts'&api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5TdG9yYWdlJTJGc3RvcmFnZUFjY291bnRzJyZhcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/65fe2225-aa9c-48d5-976f-4767917e7787?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEpvYnMvNjVmZTIyMjUtYWE5Yy00OGQ1LTk3NmYtNDc2NzkxN2U3Nzg3P2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "eff686d1-ed46-4a8b-9c6e-ce11619cddab" + "e2926508-844c-4d0b-bc81-a41d6c8fe6c0" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -1958,63 +1967,135 @@ "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "X-Content-Type-Options": [ + "nosniff" ], "x-ms-request-id": [ - "aef1acd5-9127-41bb-9ee5-0e06a8eb0f2a" - ], - "x-ms-correlation-request-id": [ - "aef1acd5-9127-41bb-9ee5-0e06a8eb0f2a" + "d2270bc7-da68-47d0-8378-94118c967820" ], - "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T120757Z:aef1acd5-9127-41bb-9ee5-0e06a8eb0f2a" + "x-ms-client-request-id": [ + "e2926508-844c-4d0b-bc81-a41d6c8fe6c0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ - "nosniff" + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "278" + ], + "x-ms-correlation-request-id": [ + "d2270bc7-da68-47d0-8378-94118c967820" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T172620Z:d2270bc7-da68-47d0-8378-94118c967820" ], "Date": [ - "Sat, 26 Mar 2022 12:07:57 GMT" + "Mon, 16 May 2022 17:26:19 GMT" + ], + "Content-Length": [ + "925" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" - ], - "Content-Length": [ - "32912" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.existing.crr/providers/Microsoft.Storage/storageAccounts/iaasvmexistingcrrdiag\",\r\n \"name\": \"iaasvmexistingcrrdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"MAB Used\": \"Yes\",\r\n \"DeleteBy\": \"01-2030\",\r\n \"Delete By\": \"01-2030\",\r\n \"Owner\": \"chgonugu\",\r\n \"Purpose\": \"Testing\",\r\n \"AutoShutdown\": \"false\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.existing.crr/providers/Microsoft.Storage/storageAccounts/iaasvmexistingcrrdiag112\",\r\n \"name\": \"iaasvmexistingcrrdiag112\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {\r\n \"Owner\": \"chgonugu\",\r\n \"Purpose\": \"Testing\",\r\n \"MabUsed\": \"Yes\",\r\n \"DeleteBy\": \"01-2025\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.existing.crr/providers/Microsoft.Storage/storageAccounts/iaasvmexistingcrr\",\r\n \"name\": \"iaasvmexistingcrr\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/sambit_rg/providers/Microsoft.Storage/storageAccounts/sarathsa3\",\r\n \"name\": \"sarathsa3\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvmhanaworkload.existing/providers/Microsoft.Storage/storageAccounts/iaasvmhanaworkloadexisti\",\r\n \"name\": \"iaasvmhanaworkloadexisti\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"AutoShutdown\": \"No\",\r\n \"BVT Used\": \"Yes\",\r\n \"Owner\": \"chgonugu\",\r\n \"Purpose\": \"BVT\",\r\n \"DeleteBy\": \"01-2030\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/afsnavigationtest\",\r\n \"name\": \"afsnavigationtest\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/afstbackuptestsa\",\r\n \"name\": \"afstbackuptestsa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.encryptedvm/providers/Microsoft.Storage/storageAccounts/iaasvmencryptedvmdiag170\",\r\n \"name\": \"iaasvmencryptedvmdiag170\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.existing/providers/Microsoft.Storage/storageAccounts/iaasvmexistingdiag1\",\r\n \"name\": \"iaasvmexistingdiag1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.existing/providers/Microsoft.Storage/storageAccounts/iaasextstore1\",\r\n \"name\": \"iaasextstore1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.new/providers/Microsoft.Storage/storageAccounts/iaasvmnewdiag1\",\r\n \"name\": \"iaasvmnewdiag1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.new/providers/Microsoft.Storage/storageAccounts/iaasnewstore1\",\r\n \"name\": \"iaasnewstore1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/IaasVMNavigationTest-RG/providers/Microsoft.Storage/storageAccounts/aasavigationestdiag\",\r\n \"name\": \"aasavigationestdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/IaasVMNavigationTest-RG/providers/Microsoft.Storage/storageAccounts/iaasvmnavigationstore\",\r\n \"name\": \"iaasvmnavigationstore\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pscloudtestrg/providers/Microsoft.Storage/storageAccounts/pscloudtestrgdiag\",\r\n \"name\": \"pscloudtestrgdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MAB Used\": \" Yes\",\r\n \"MABUsed\": \" Yes\",\r\n \"DeleteBy\": \"01-2030\",\r\n \"Purpose\": \"PS bvt\",\r\n \"Owner\": \"sarath\",\r\n \"AutoShutdown\": \"No\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pscloudtestrg/providers/Microsoft.Storage/storageAccounts/psbvtsa2\",\r\n \"name\": \"psbvtsa2\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstestsa8895\",\r\n \"name\": \"pstestsa8895\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstesttargetsa8895\",\r\n \"name\": \"pstesttargetsa8895\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstesttargetsa8896\",\r\n \"name\": \"pstesttargetsa8896\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/afsbackupsa\",\r\n \"name\": \"afsbackupsa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"Owner\": \"sarath\",\r\n \"Purpose\": \" BVT\",\r\n \"DeleteBy\": \"01-2025\",\r\n \"AutoShutdown\": \"No\",\r\n \"MAB Used\": \" Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG54bdf8da/providers/Microsoft.Storage/storageAccounts/pstestsa54bdf8da\",\r\n \"name\": \"pstestsa54bdf8da\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG1e5a278b/providers/Microsoft.Storage/storageAccounts/pstestsa1e5a278b\",\r\n \"name\": \"pstestsa1e5a278b\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG59e1706f/providers/Microsoft.Storage/storageAccounts/pstestsa59e1706f\",\r\n \"name\": \"pstestsa59e1706f\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/storageysci5wbex6jyc\",\r\n \"name\": \"storageysci5wbex6jyc\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/prnookal-rg/providers/Microsoft.Storage/storageAccounts/prnookaltestnob\",\r\n \"name\": \"prnookaltestnob\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"isMABUsed\": \"Yes\",\r\n \" Owner\": \"prnookal@microsoft.com\",\r\n \"DeletBy\": \"12-2021\",\r\n \"Purpose\": \" Testing\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/afsbackupsa1\",\r\n \"name\": \"afsbackupsa1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"Mab Used\": \"yes\",\r\n \"Owner\": \"akkanase\",\r\n \"Purpose\": \"Testing\",\r\n \"DeleteBy\": \"01-2022\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/afsbackupsa2\",\r\n \"name\": \"afsbackupsa2\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseTest/providers/Microsoft.Storage/storageAccounts/afsfilesharetest\",\r\n \"name\": \"afsfilesharetest\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/afsbackupsa3\",\r\n \"name\": \"afsbackupsa3\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/afsbackupsa0\",\r\n \"name\": \"afsbackupsa0\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pscloudtest-diskbackup-existing/providers/Microsoft.Storage/storageAccounts/1vnseapod01otds1\",\r\n \"name\": \"1vnseapod01otds1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGZRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseAFSTest/providers/Microsoft.Storage/storageAccounts/akkanaseafssa\",\r\n \"name\": \"akkanaseafssa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MAB Used\": \"Yes\",\r\n \"Owner\": \"akkanase\",\r\n \"Purpose\": \"Testing\",\r\n \"Delete By\": \"05-202\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseAFSTest/providers/Microsoft.Storage/storageAccounts/akkanasembpd2\",\r\n \"name\": \"akkanasembpd2\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MAB Used\": \"Yes\",\r\n \"Purpose\": \"Testing\",\r\n \"Owner\": \"akkanase\",\r\n \"Delete By\": \"05-2022\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseCMK/providers/Microsoft.Storage/storageAccounts/akkanase\",\r\n \"name\": \"akkanase\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"DeleteBy\": \"05-2023\",\r\n \"Owner\": \"akkanase\",\r\n \"Purpose\": \"Testing\",\r\n \"MAB Used\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/cmk.system/providers/Microsoft.Storage/storageAccounts/cmkautomationstore\",\r\n \"name\": \"cmkautomationstore\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"Delete By\": \"05-2050\",\r\n \"MAB Used\": \" Yes\",\r\n \"Owner\": \"akkanase\",\r\n \"Purpose\": \" BVT\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG235879ba/providers/Microsoft.Storage/storageAccounts/pstestsa235879ba\",\r\n \"name\": \"pstestsa235879ba\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/disk-bvt-test-rg/providers/Microsoft.Storage/storageAccounts/hv3seapod01otds1\",\r\n \"name\": \"hv3seapod01otds1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGZRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/DoNotUse-OSS-BVT-SEA-RG/providers/Microsoft.Storage/storageAccounts/dontuseossrestoreasfile\",\r\n \"name\": \"dontuseossrestoreasfile\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MAB Used\": \" Yes\",\r\n \" Owner\": \"akkanase\",\r\n \"Purpose\": \"BV\",\r\n \"Delete By\": \"05-2020\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseAFSTest/providers/Microsoft.Storage/storageAccounts/akkanaseafsa2\",\r\n \"name\": \"akkanaseafsa2\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseCMK/providers/Microsoft.Storage/storageAccounts/0byseapod01otds1\",\r\n \"name\": \"0byseapod01otds1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGZRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/9exwuspod01otds1\",\r\n \"name\": \"9exwuspod01otds1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/02xseacan01otds1\",\r\n \"name\": \"02xseacan01otds1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGZRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseMAB/providers/Microsoft.Storage/storageAccounts/dnhccypod01otds1\",\r\n \"name\": \"dnhccypod01otds1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rguzio7xhypi/providers/Microsoft.Storage/storageAccounts/clitest4b24ibpr3ztyhwo23\",\r\n \"name\": \"clitest4b24ibpr3ztyhwo23\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rgsiaa3ljqg5/providers/Microsoft.Storage/storageAccounts/clitestgd6i34czs3jb3rdtc\",\r\n \"name\": \"clitestgd6i34czs3jb3rdtc\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rgjxpjikqjjw/providers/Microsoft.Storage/storageAccounts/clitestjkhq2kpsal665atqe\",\r\n \"name\": \"clitestjkhq2kpsal665atqe\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rgwwhxyyhl2u/providers/Microsoft.Storage/storageAccounts/clitestdggdsdbtfa6vq5n5o\",\r\n \"name\": \"clitestdggdsdbtfa6vq5n5o\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rgm44mrkvygk/providers/Microsoft.Storage/storageAccounts/clitestodvd3xsftt63go6dk\",\r\n \"name\": \"clitestodvd3xsftt63go6dk\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rgdy7jf3qqzd/providers/Microsoft.Storage/storageAccounts/clitestnbsma3ftf2yugilxq\",\r\n \"name\": \"clitestnbsma3ftf2yugilxq\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rgl5tlzqo2pt/providers/Microsoft.Storage/storageAccounts/clitestgn64zidsnwe3ndjp5\",\r\n \"name\": \"clitestgn64zidsnwe3ndjp5\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rg73eqbdp4g5/providers/Microsoft.Storage/storageAccounts/clitestzfhrqsr4m24iwnjy7\",\r\n \"name\": \"clitestzfhrqsr4m24iwnjy7\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rg73eqbdp4g5/providers/Microsoft.Storage/storageAccounts/clitestukhlrarahpoebmaln\",\r\n \"name\": \"clitestukhlrarahpoebmaln\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/prnookal-prod/providers/Microsoft.Storage/storageAccounts/prnookalprod\",\r\n \"name\": \"prnookalprod\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"japaneast\",\r\n \"tags\": {\r\n \"IsMabUsed\": \"Yes\",\r\n \"Owner\": \"prnookal\",\r\n \"DeleteBy\": \"12-2021\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/cloud-shell-storage-centralindia/providers/Microsoft.Storage/storageAccounts/csg10032000d221b981\",\r\n \"name\": \"csg10032000d221b981\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centralindia\",\r\n \"tags\": {\r\n \"ms-resource-usage\": \"azure-cloud-shell\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/cloud-shell-storage-centralindia/providers/Microsoft.Storage/storageAccounts/csg10032000b56ab138\",\r\n \"name\": \"csg10032000b56ab138\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centralindia\",\r\n \"tags\": {\r\n \"ms-resource-usage\": \"azure-cloud-shell\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/cloud-shell-storage-centralindia/providers/Microsoft.Storage/storageAccounts/csg10033fffacb0d110\",\r\n \"name\": \"csg10033fffacb0d110\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centralindia\",\r\n \"tags\": {\r\n \"ms-resource-usage\": \"azure-cloud-shell\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/cloud-shell-storage-centralindia/providers/Microsoft.Storage/storageAccounts/csg1003bffda7dcd176\",\r\n \"name\": \"csg1003bffda7dcd176\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centralindia\",\r\n \"tags\": {\r\n \"ms-resource-usage\": \"azure-cloud-shell\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvmsqlworkload.existing.crr/providers/Microsoft.Storage/storageAccounts/iaasvmsqlworkloadexistin\",\r\n \"name\": \"iaasvmsqlworkloadexistin\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {\r\n \"Owner\": \"chgonugu\",\r\n \"Purpose\": \"BVT\",\r\n \"MabUsed\": \"Yes\",\r\n \"DeleteBy\": \"12-2099\",\r\n \"AutoShutdown\": \"No\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/Blob-Backup/providers/Microsoft.Storage/storageAccounts/testblobbackup\",\r\n \"name\": \"testblobbackup\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/fzejupmyclivaultasrcache\",\r\n \"name\": \"fzejupmyclivaultasrcache\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseCcyGrs/providers/Microsoft.Storage/storageAccounts/storeimqyzvpnwrv5a\",\r\n \"name\": \"storeimqyzvpnwrv5a\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/sarath-rg/providers/Microsoft.Storage/storageAccounts/clitestingsa\",\r\n \"name\": \"clitestingsa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/sarath-rg/providers/Microsoft.Storage/storageAccounts/axiccypod01otds1\",\r\n \"name\": \"axiccypod01otds1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseZRS/providers/Microsoft.Storage/storageAccounts/akanasezrsstorag\",\r\n \"name\": \"akanasezrsstorag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {\r\n \"Purpose\": \"Testing\",\r\n \"Owner\": \"akkanase\",\r\n \"Mab Used\": \"yes\",\r\n \"DeleteBy\": \"01-2025\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/sarath-rg/providers/Microsoft.Storage/storageAccounts/sarathsacli\",\r\n \"name\": \"sarathsacli\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm-clitest-rg/providers/Microsoft.Storage/storageAccounts/iaasvmclitestsa\",\r\n \"name\": \"iaasvmclitestsa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"Owner\": \"akneema\",\r\n \"MABUsed\": \"Yes\",\r\n \"Purpose\": \"CLITest\",\r\n \"DeleteBy\": \"12-9999\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.Storage/storageAccounts/hiagasa\",\r\n \"name\": \"hiagasa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\",\r\n \"Purpose\": \"Testing\",\r\n \"DeleteBy\": \"01-2099\",\r\n \"Owner\": \"hiaga\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.Storage/storageAccounts/akneemasaecy\",\r\n \"name\": \"akneemasaecy\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {\r\n \"Owner\": \"akneema\",\r\n \"Purpose\": \"Testing\",\r\n \"MABUsed\": \"Yes\",\r\n \"DeleteBy\": \"12-9999\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/oss-clitest-rg/providers/Microsoft.Storage/storageAccounts/ossclitestsa\",\r\n \"name\": \"ossclitestsa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"Owner\": \"akneema\",\r\n \"Purpose\": \"Testing\",\r\n \"MABUsed\": \"Yes\",\r\n \"DeleteBy\": \"12-9999\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/oss-pstest-rg/providers/Microsoft.Storage/storageAccounts/osspstestsa\",\r\n \"name\": \"osspstestsa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"MABUsed\": \"Ye\",\r\n \"Owne\": \"hiaga\",\r\n \"Purpose\": \"esting\",\r\n \"Del\": \"01-2099\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/cli-track2-rg/providers/Microsoft.Storage/storageAccounts/clitrack2sa\",\r\n \"name\": \"clitrack2sa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"Owner\": \"akneema\",\r\n \"Purpose\": \"Testing\",\r\n \"DeleteBy\": \"12-9999\",\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm-pstest-rg/providers/Microsoft.Storage/storageAccounts/iaasvmpstestsa\",\r\n \"name\": \"iaasvmpstestsa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"MABUsed\": \"yes\",\r\n \"Owner\": \"hiaga\",\r\n \"Purpose\": \"testing\",\r\n \"DeleteBy\": \"01-2099\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/DontUse-BlobRestore-BVT-CCY-RG/providers/Microsoft.Storage/storageAccounts/dontuseblobbvtccyrstrall\",\r\n \"name\": \"dontuseblobbvtccyrstrall\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/DontUse-BlobRestore-BVT-CCY-RG/providers/Microsoft.Storage/storageAccounts/dontuseblobbvtccyprefix\",\r\n \"name\": \"dontuseblobbvtccyprefix\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/DontUse-BlobRestore-BVT-CCY-RG/providers/Microsoft.Storage/storageAccounts/dontuseblobbvtccycontnr\",\r\n \"name\": \"dontuseblobbvtccycontnr\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/oss-clicloudtest-rg/providers/Microsoft.Storage/storageAccounts/ossclicloudtestsa\",\r\n \"name\": \"ossclicloudtestsa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"Owner\": \"akneema\",\r\n \"Purpose\": \"Testing\",\r\n \"DeleteBy\": \"12-9999\",\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/prnookal-wcus/providers/Microsoft.Storage/storageAccounts/prnookalwcus\",\r\n \"name\": \"prnookalwcus\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"Owner\": \"prnookal\",\r\n \"DeleteBy\": \"12-2021\",\r\n \"IsMabUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PORTAL.DPP.BVT.BLOB.RESTORE.EXISTING/providers/Microsoft.Storage/storageAccounts/blobsaforrestoreall\",\r\n \"name\": \"blobsaforrestoreall\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PORTAL.DPP.BVT.BLOB.RESTORE.EXISTING/providers/Microsoft.Storage/storageAccounts/blobrestoreopcontainers\",\r\n \"name\": \"blobrestoreopcontainers\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PORTAL.DPP.BVT.BLOB.RESTORE.EXISTING/providers/Microsoft.Storage/storageAccounts/blobrestoreopprefix\",\r\n \"name\": \"blobrestoreopprefix\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PORTAL.DPP.BVT.BLOB.RESTORE.EXISTING/providers/Microsoft.Storage/storageAccounts/blobrestoreopcontainer\",\r\n \"name\": \"blobrestoreopcontainer\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PORTAL.DPP.BVT.BLOB.RESTORE.EXISTING/providers/Microsoft.Storage/storageAccounts/blobrestoreopall\",\r\n \"name\": \"blobrestoreopall\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PORTAL.DPP.BVT.BLOB.RESTORE.EXISTING/providers/Microsoft.Storage/storageAccounts/bloboprestorecontainers\",\r\n \"name\": \"bloboprestorecontainers\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PORTAL.DPP.BVT.BLOB.RESTORE.EXISTING/providers/Microsoft.Storage/storageAccounts/bloboprestoreall\",\r\n \"name\": \"bloboprestoreall\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagargeus/providers/Microsoft.Storage/storageAccounts/hiagargeus\",\r\n \"name\": \"hiagargeus\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akneema-we-rg/providers/Microsoft.Storage/storageAccounts/gb8wepod01otds1\",\r\n \"name\": \"gb8wepod01otds1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGZRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akneema/providers/Microsoft.Storage/storageAccounts/uvqccypod01otds1\",\r\n \"name\": \"uvqccypod01otds1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagaCZR-rg/providers/Microsoft.Storage/storageAccounts/cliczrlrssa\",\r\n \"name\": \"cliczrlrssa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {\r\n \"Owner\": \"akneema\",\r\n \"Purpose\": \"Testing\",\r\n \"DeleteBy\": \"12-9999\",\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseGRSVault/providers/Microsoft.Storage/storageAccounts/frmseapod01otds1\",\r\n \"name\": \"frmseapod01otds1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGZRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseZRS/providers/Microsoft.Storage/storageAccounts/rfoccypod01otds1\",\r\n \"name\": \"rfoccypod01otds1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akneema-we-rg/providers/Microsoft.Storage/storageAccounts/m3dccypod01otds01\",\r\n \"name\": \"m3dccypod01otds01\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/AdkayethBugbash/providers/Microsoft.Storage/storageAccounts/adkayethsfsa\",\r\n \"name\": \"adkayethsfsa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/AdkayethBugbash/providers/Microsoft.Storage/storageAccounts/adkayathesfsabugbash\",\r\n \"name\": \"adkayathesfsabugbash\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/65fe2225-aa9c-48d5-976f-4767917e7787\",\r\n \"name\": \"65fe2225-aa9c-48d5-976f-4767917e7787\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"duration\": \"PT10M31.8678759S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"hiagavm\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"hiagavm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T17:15:47.4945075Z\",\r\n \"activityId\": \"e2926508-844c-4d0b-bc81-a41d6c8fe6c0\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupFabrics/Azure/protectionContainers/IaasVMContainer%3Biaasvmcontainerv2%3Bhiagarg%3Bhiagavm/protectedItems/VM%3Biaasvmcontainerv2%3Bhiagarg%3Bhiagavm/recoveryPoints/163033366841464/restore?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEZhYnJpY3MvQXp1cmUvcHJvdGVjdGlvbkNvbnRhaW5lcnMvSWFhc1ZNQ29udGFpbmVyJTNCaWFhc3ZtY29udGFpbmVydjIlM0JoaWFnYXJnJTNCaGlhZ2F2bS9wcm90ZWN0ZWRJdGVtcy9WTSUzQmlhYXN2bWNvbnRhaW5lcnYyJTNCaGlhZ2FyZyUzQmhpYWdhdm0vcmVjb3ZlcnlQb2ludHMvMTYzMDMzMzY2ODQxNDY0L3Jlc3RvcmU/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", - "RequestMethod": "POST", - "RequestBody": "{\r\n \"properties\": {\r\n \"objectType\": \"IaasVMRestoreRequest\",\r\n \"recoveryPointId\": \"163033366841464\",\r\n \"recoveryType\": \"RestoreDisks\",\r\n \"sourceResourceId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.Compute/virtualMachines/hiagavm\",\r\n \"targetResourceGroupId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg\",\r\n \"region\": \"centraluseuap\",\r\n \"createNewCloudService\": false,\r\n \"originalStorageAccountOption\": false,\r\n \"restoreDiskLunList\": [],\r\n \"restoreWithManagedDisks\": false,\r\n \"identityInfo\": {\r\n \"isSystemAssignedIdentity\": true\r\n },\r\n \"identityBasedRestoreDetails\": {\r\n \"targetStorageAccountId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.Storage/storageAccounts/hiagasa\"\r\n }\r\n }\r\n}", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/65fe2225-aa9c-48d5-976f-4767917e7787?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEpvYnMvNjVmZTIyMjUtYWE5Yy00OGQ1LTk3NmYtNDc2NzkxN2U3Nzg3P2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "eff686d1-ed46-4a8b-9c6e-ce11619cddab" + "e2926508-844c-4d0b-bc81-a41d6c8fe6c0" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "93a627fb-b1fe-49e4-b8e4-66d774e54e1f" + ], + "x-ms-client-request-id": [ + "e2926508-844c-4d0b-bc81-a41d6c8fe6c0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "277" + ], + "x-ms-correlation-request-id": [ + "93a627fb-b1fe-49e4-b8e4-66d774e54e1f" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T172651Z:93a627fb-b1fe-49e4-b8e4-66d774e54e1f" + ], + "Date": [ + "Mon, 16 May 2022 17:26:50 GMT" + ], + "Content-Length": [ + "924" ], "Content-Type": [ "application/json; charset=utf-8" ], - "Content-Length": [ - "875" + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/65fe2225-aa9c-48d5-976f-4767917e7787\",\r\n \"name\": \"65fe2225-aa9c-48d5-976f-4767917e7787\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"duration\": \"PT11M2.8634822S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"hiagavm\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"hiagavm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T17:15:47.4945075Z\",\r\n \"activityId\": \"e2926508-844c-4d0b-bc81-a41d6c8fe6c0\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/65fe2225-aa9c-48d5-976f-4767917e7787?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEpvYnMvNjVmZTIyMjUtYWE5Yy00OGQ1LTk3NmYtNDc2NzkxN2U3Nzg3P2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e2926508-844c-4d0b-bc81-a41d6c8fe6c0" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -2024,44 +2105,1136 @@ "Pragma": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;hiagarg;hiagavm/protectedItems/VM;iaasvmcontainerv2;hiagarg;hiagavm/operationResults/8d837818-3cb0-4939-b211-6688cad5e95d?api-version=2021-12-01" + "X-Content-Type-Options": [ + "nosniff" ], - "Retry-After": [ - "60" + "x-ms-request-id": [ + "61c8a9c1-d7bc-409f-ab45-006eaea2d812" ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;hiagarg;hiagavm/protectedItems/VM;iaasvmcontainerv2;hiagarg;hiagavm/operationsStatus/8d837818-3cb0-4939-b211-6688cad5e95d?api-version=2021-12-01" + "x-ms-client-request-id": [ + "e2926508-844c-4d0b-bc81-a41d6c8fe6c0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "276" + ], + "x-ms-correlation-request-id": [ + "61c8a9c1-d7bc-409f-ab45-006eaea2d812" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T172722Z:61c8a9c1-d7bc-409f-ab45-006eaea2d812" + ], + "Date": [ + "Mon, 16 May 2022 17:27:21 GMT" + ], + "Content-Length": [ + "925" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/65fe2225-aa9c-48d5-976f-4767917e7787\",\r\n \"name\": \"65fe2225-aa9c-48d5-976f-4767917e7787\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"duration\": \"PT11M33.8578236S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"hiagavm\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"hiagavm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T17:15:47.4945075Z\",\r\n \"activityId\": \"e2926508-844c-4d0b-bc81-a41d6c8fe6c0\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/65fe2225-aa9c-48d5-976f-4767917e7787?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEpvYnMvNjVmZTIyMjUtYWE5Yy00OGQ1LTk3NmYtNDc2NzkxN2U3Nzg3P2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e2926508-844c-4d0b-bc81-a41d6c8fe6c0" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "7ce89778-772b-469d-afb1-601b98272d36" + "4883a5da-ba26-446e-a1c0-af55328b3b4c" ], "x-ms-client-request-id": [ - "eff686d1-ed46-4a8b-9c6e-ce11619cddab" + "e2926508-844c-4d0b-bc81-a41d6c8fe6c0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Server": [ - "Kestrel" + "Microsoft-IIS/10.0" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "275" + ], + "x-ms-correlation-request-id": [ + "4883a5da-ba26-446e-a1c0-af55328b3b4c" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T172753Z:4883a5da-ba26-446e-a1c0-af55328b3b4c" + ], + "Date": [ + "Mon, 16 May 2022 17:27:52 GMT" + ], + "Content-Length": [ + "924" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/65fe2225-aa9c-48d5-976f-4767917e7787\",\r\n \"name\": \"65fe2225-aa9c-48d5-976f-4767917e7787\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"duration\": \"PT12M4.8176233S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"hiagavm\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"hiagavm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T17:15:47.4945075Z\",\r\n \"activityId\": \"e2926508-844c-4d0b-bc81-a41d6c8fe6c0\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/65fe2225-aa9c-48d5-976f-4767917e7787?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEpvYnMvNjVmZTIyMjUtYWE5Yy00OGQ1LTk3NmYtNDc2NzkxN2U3Nzg3P2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e2926508-844c-4d0b-bc81-a41d6c8fe6c0" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "e1d66083-c92d-42da-8c7f-b807129c79de" + ], + "x-ms-client-request-id": [ + "e2926508-844c-4d0b-bc81-a41d6c8fe6c0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "274" + ], + "x-ms-correlation-request-id": [ + "e1d66083-c92d-42da-8c7f-b807129c79de" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T172824Z:e1d66083-c92d-42da-8c7f-b807129c79de" + ], + "Date": [ + "Mon, 16 May 2022 17:28:23 GMT" + ], + "Content-Length": [ + "925" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/65fe2225-aa9c-48d5-976f-4767917e7787\",\r\n \"name\": \"65fe2225-aa9c-48d5-976f-4767917e7787\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"duration\": \"PT12M35.8351521S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"hiagavm\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"hiagavm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T17:15:47.4945075Z\",\r\n \"activityId\": \"e2926508-844c-4d0b-bc81-a41d6c8fe6c0\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/65fe2225-aa9c-48d5-976f-4767917e7787?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEpvYnMvNjVmZTIyMjUtYWE5Yy00OGQ1LTk3NmYtNDc2NzkxN2U3Nzg3P2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e2926508-844c-4d0b-bc81-a41d6c8fe6c0" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "dec0a115-5f3a-471e-bfc1-4bba39c4add9" + ], + "x-ms-client-request-id": [ + "e2926508-844c-4d0b-bc81-a41d6c8fe6c0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "273" + ], + "x-ms-correlation-request-id": [ + "dec0a115-5f3a-471e-bfc1-4bba39c4add9" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T172854Z:dec0a115-5f3a-471e-bfc1-4bba39c4add9" + ], + "Date": [ + "Mon, 16 May 2022 17:28:54 GMT" + ], + "Content-Length": [ + "922" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/65fe2225-aa9c-48d5-976f-4767917e7787\",\r\n \"name\": \"65fe2225-aa9c-48d5-976f-4767917e7787\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"duration\": \"PT13M6.83547S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"hiagavm\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"hiagavm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T17:15:47.4945075Z\",\r\n \"activityId\": \"e2926508-844c-4d0b-bc81-a41d6c8fe6c0\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/65fe2225-aa9c-48d5-976f-4767917e7787?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEpvYnMvNjVmZTIyMjUtYWE5Yy00OGQ1LTk3NmYtNDc2NzkxN2U3Nzg3P2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e2926508-844c-4d0b-bc81-a41d6c8fe6c0" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "272" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "2a5f63fc-24ea-40d7-be9d-c891ffe07926" + ], + "x-ms-client-request-id": [ + "e2926508-844c-4d0b-bc81-a41d6c8fe6c0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-correlation-request-id": [ + "2a5f63fc-24ea-40d7-be9d-c891ffe07926" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T172925Z:2a5f63fc-24ea-40d7-be9d-c891ffe07926" + ], + "Date": [ + "Mon, 16 May 2022 17:29:25 GMT" + ], + "Content-Length": [ + "925" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/65fe2225-aa9c-48d5-976f-4767917e7787\",\r\n \"name\": \"65fe2225-aa9c-48d5-976f-4767917e7787\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"duration\": \"PT13M37.7991318S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"hiagavm\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"hiagavm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T17:15:47.4945075Z\",\r\n \"activityId\": \"e2926508-844c-4d0b-bc81-a41d6c8fe6c0\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/65fe2225-aa9c-48d5-976f-4767917e7787?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEpvYnMvNjVmZTIyMjUtYWE5Yy00OGQ1LTk3NmYtNDc2NzkxN2U3Nzg3P2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e2926508-844c-4d0b-bc81-a41d6c8fe6c0" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "03483e63-86f3-4130-bf18-107165b41a64" + ], + "x-ms-client-request-id": [ + "e2926508-844c-4d0b-bc81-a41d6c8fe6c0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "271" + ], + "x-ms-correlation-request-id": [ + "03483e63-86f3-4130-bf18-107165b41a64" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T172957Z:03483e63-86f3-4130-bf18-107165b41a64" + ], + "Date": [ + "Mon, 16 May 2022 17:29:57 GMT" + ], + "Content-Length": [ + "924" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/65fe2225-aa9c-48d5-976f-4767917e7787\",\r\n \"name\": \"65fe2225-aa9c-48d5-976f-4767917e7787\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"duration\": \"PT14M9.6225264S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"hiagavm\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"hiagavm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T17:15:47.4945075Z\",\r\n \"activityId\": \"e2926508-844c-4d0b-bc81-a41d6c8fe6c0\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/65fe2225-aa9c-48d5-976f-4767917e7787?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEpvYnMvNjVmZTIyMjUtYWE5Yy00OGQ1LTk3NmYtNDc2NzkxN2U3Nzg3P2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e2926508-844c-4d0b-bc81-a41d6c8fe6c0" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "817b34d0-a4ed-4d0b-9193-f7febfdbd0e9" + ], + "x-ms-client-request-id": [ + "e2926508-844c-4d0b-bc81-a41d6c8fe6c0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "270" + ], + "x-ms-correlation-request-id": [ + "817b34d0-a4ed-4d0b-9193-f7febfdbd0e9" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T173028Z:817b34d0-a4ed-4d0b-9193-f7febfdbd0e9" + ], + "Date": [ + "Mon, 16 May 2022 17:30:28 GMT" + ], + "Content-Length": [ + "925" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/65fe2225-aa9c-48d5-976f-4767917e7787\",\r\n \"name\": \"65fe2225-aa9c-48d5-976f-4767917e7787\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"duration\": \"PT14M40.6602559S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"hiagavm\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"hiagavm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T17:15:47.4945075Z\",\r\n \"activityId\": \"e2926508-844c-4d0b-bc81-a41d6c8fe6c0\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/65fe2225-aa9c-48d5-976f-4767917e7787?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEpvYnMvNjVmZTIyMjUtYWE5Yy00OGQ1LTk3NmYtNDc2NzkxN2U3Nzg3P2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e2926508-844c-4d0b-bc81-a41d6c8fe6c0" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "a4b849fd-7c6d-4e07-bc7a-d481b6c8fb64" + ], + "x-ms-client-request-id": [ + "e2926508-844c-4d0b-bc81-a41d6c8fe6c0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "269" + ], + "x-ms-correlation-request-id": [ + "a4b849fd-7c6d-4e07-bc7a-d481b6c8fb64" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T173059Z:a4b849fd-7c6d-4e07-bc7a-d481b6c8fb64" + ], + "Date": [ + "Mon, 16 May 2022 17:30:59 GMT" + ], + "Content-Length": [ + "925" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/65fe2225-aa9c-48d5-976f-4767917e7787\",\r\n \"name\": \"65fe2225-aa9c-48d5-976f-4767917e7787\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"duration\": \"PT15M11.5719408S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"hiagavm\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"hiagavm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T17:15:47.4945075Z\",\r\n \"activityId\": \"e2926508-844c-4d0b-bc81-a41d6c8fe6c0\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/65fe2225-aa9c-48d5-976f-4767917e7787?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEpvYnMvNjVmZTIyMjUtYWE5Yy00OGQ1LTk3NmYtNDc2NzkxN2U3Nzg3P2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e2926508-844c-4d0b-bc81-a41d6c8fe6c0" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "cbf7de02-1ac1-40a1-b076-e2f5affa18df" + ], + "x-ms-client-request-id": [ + "e2926508-844c-4d0b-bc81-a41d6c8fe6c0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "268" + ], + "x-ms-correlation-request-id": [ + "cbf7de02-1ac1-40a1-b076-e2f5affa18df" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T173130Z:cbf7de02-1ac1-40a1-b076-e2f5affa18df" + ], + "Date": [ + "Mon, 16 May 2022 17:31:30 GMT" + ], + "Content-Length": [ + "925" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/65fe2225-aa9c-48d5-976f-4767917e7787\",\r\n \"name\": \"65fe2225-aa9c-48d5-976f-4767917e7787\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"duration\": \"PT15M42.4944816S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"hiagavm\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"hiagavm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T17:15:47.4945075Z\",\r\n \"activityId\": \"e2926508-844c-4d0b-bc81-a41d6c8fe6c0\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/65fe2225-aa9c-48d5-976f-4767917e7787?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEpvYnMvNjVmZTIyMjUtYWE5Yy00OGQ1LTk3NmYtNDc2NzkxN2U3Nzg3P2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e2926508-844c-4d0b-bc81-a41d6c8fe6c0" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "e5eeb480-0938-4acf-b55f-dbbe397e8d64" + ], + "x-ms-client-request-id": [ + "e2926508-844c-4d0b-bc81-a41d6c8fe6c0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "267" + ], + "x-ms-correlation-request-id": [ + "e5eeb480-0938-4acf-b55f-dbbe397e8d64" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T173201Z:e5eeb480-0938-4acf-b55f-dbbe397e8d64" + ], + "Date": [ + "Mon, 16 May 2022 17:32:00 GMT" + ], + "Content-Length": [ + "925" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/65fe2225-aa9c-48d5-976f-4767917e7787\",\r\n \"name\": \"65fe2225-aa9c-48d5-976f-4767917e7787\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"duration\": \"PT16M13.5151206S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"hiagavm\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"hiagavm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T17:15:47.4945075Z\",\r\n \"activityId\": \"e2926508-844c-4d0b-bc81-a41d6c8fe6c0\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/65fe2225-aa9c-48d5-976f-4767917e7787?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEpvYnMvNjVmZTIyMjUtYWE5Yy00OGQ1LTk3NmYtNDc2NzkxN2U3Nzg3P2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e2926508-844c-4d0b-bc81-a41d6c8fe6c0" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "da679b36-6a96-4183-8a76-098b9f495123" + ], + "x-ms-client-request-id": [ + "e2926508-844c-4d0b-bc81-a41d6c8fe6c0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "266" + ], + "x-ms-correlation-request-id": [ + "da679b36-6a96-4183-8a76-098b9f495123" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T173233Z:da679b36-6a96-4183-8a76-098b9f495123" + ], + "Date": [ + "Mon, 16 May 2022 17:32:32 GMT" + ], + "Content-Length": [ + "925" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/65fe2225-aa9c-48d5-976f-4767917e7787\",\r\n \"name\": \"65fe2225-aa9c-48d5-976f-4767917e7787\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"duration\": \"PT16M44.9325086S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"hiagavm\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"hiagavm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T17:15:47.4945075Z\",\r\n \"activityId\": \"e2926508-844c-4d0b-bc81-a41d6c8fe6c0\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/65fe2225-aa9c-48d5-976f-4767917e7787?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEpvYnMvNjVmZTIyMjUtYWE5Yy00OGQ1LTk3NmYtNDc2NzkxN2U3Nzg3P2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e2926508-844c-4d0b-bc81-a41d6c8fe6c0" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "2165211a-a87e-4936-9adf-5d031f734631" + ], + "x-ms-client-request-id": [ + "e2926508-844c-4d0b-bc81-a41d6c8fe6c0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "265" + ], + "x-ms-correlation-request-id": [ + "2165211a-a87e-4936-9adf-5d031f734631" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T173304Z:2165211a-a87e-4936-9adf-5d031f734631" + ], + "Date": [ + "Mon, 16 May 2022 17:33:03 GMT" + ], + "Content-Length": [ + "925" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/65fe2225-aa9c-48d5-976f-4767917e7787\",\r\n \"name\": \"65fe2225-aa9c-48d5-976f-4767917e7787\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"duration\": \"PT17M15.8294756S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"hiagavm\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"hiagavm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T17:15:47.4945075Z\",\r\n \"activityId\": \"e2926508-844c-4d0b-bc81-a41d6c8fe6c0\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/65fe2225-aa9c-48d5-976f-4767917e7787?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEpvYnMvNjVmZTIyMjUtYWE5Yy00OGQ1LTk3NmYtNDc2NzkxN2U3Nzg3P2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e2926508-844c-4d0b-bc81-a41d6c8fe6c0" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "d4fe4152-8294-4719-83e1-a21f3c392233" + ], + "x-ms-client-request-id": [ + "e2926508-844c-4d0b-bc81-a41d6c8fe6c0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "264" + ], + "x-ms-correlation-request-id": [ + "d4fe4152-8294-4719-83e1-a21f3c392233" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T173334Z:d4fe4152-8294-4719-83e1-a21f3c392233" + ], + "Date": [ + "Mon, 16 May 2022 17:33:34 GMT" + ], + "Content-Length": [ + "982" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/65fe2225-aa9c-48d5-976f-4767917e7787\",\r\n \"name\": \"65fe2225-aa9c-48d5-976f-4767917e7787\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"duration\": \"PT17M38.574772S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Skipped\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"hiagavm\",\r\n \"Backup Size\": \"0 MB\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"hiagavm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-05-16T17:15:47.4945075Z\",\r\n \"endTime\": \"2022-05-16T17:33:26.0692795Z\",\r\n \"activityId\": \"e2926508-844c-4d0b-bc81-a41d6c8fe6c0\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupFabrics/Azure/protectionContainers/IaasVMContainer%3Biaasvmcontainerv2%3Bhiagarg%3Bhiagavm/protectedItems/VM%3Biaasvmcontainerv2%3Bhiagarg%3Bhiagavm/recoveryPoints?$filter=startDate%20eq%20'2022-05-16%2005:14:47%20PM'%20and%20endDate%20eq%20'2022-05-16%2005:34:26%20PM'&api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEZhYnJpY3MvQXp1cmUvcHJvdGVjdGlvbkNvbnRhaW5lcnMvSWFhc1ZNQ29udGFpbmVyJTNCaWFhc3ZtY29udGFpbmVydjIlM0JoaWFnYXJnJTNCaGlhZ2F2bS9wcm90ZWN0ZWRJdGVtcy9WTSUzQmlhYXN2bWNvbnRhaW5lcnYyJTNCaGlhZ2FyZyUzQmhpYWdhdm0vcmVjb3ZlcnlQb2ludHM/JGZpbHRlcj1zdGFydERhdGUlMjBlcSUyMCcyMDIyLTA1LTE2JTIwMDU6MTQ6NDclMjBQTSclMjBhbmQlMjBlbmREYXRlJTIwZXElMjAnMjAyMi0wNS0xNiUyMDA1OjM0OjI2JTIwUE0nJmFwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "912ab042-219f-4c44-8f31-248256b84a04" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "d1c7af5b-252d-41de-ab0e-0e0166130c63" + ], + "x-ms-client-request-id": [ + "912ab042-219f-4c44-8f31-248256b84a04" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "299" + ], + "x-ms-correlation-request-id": [ + "d1c7af5b-252d-41de-ab0e-0e0166130c63" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T173335Z:d1c7af5b-252d-41de-ab0e-0e0166130c63" + ], + "Date": [ + "Mon, 16 May 2022 17:33:34 GMT" + ], + "Content-Length": [ + "1143" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;hiagarg;hiagavm/protectedItems/VM;iaasvmcontainerv2;hiagarg;hiagavm/recoveryPoints/158980374391621\",\r\n \"name\": \"158980374391621\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints\",\r\n \"properties\": {\r\n \"objectType\": \"IaasVMRecoveryPoint\",\r\n \"recoveryPointType\": \"CrashConsistent\",\r\n \"recoveryPointTime\": \"2022-05-16T17:15:52.1063298Z\",\r\n \"recoveryPointAdditionalInfo\": \"\",\r\n \"sourceVMStorageType\": \"PremiumVMOnPartialPremiumStorage\",\r\n \"isSourceVMEncrypted\": false,\r\n \"isInstantIlrSessionActive\": false,\r\n \"recoveryPointTierDetails\": [\r\n {\r\n \"type\": \"InstantRP\",\r\n \"status\": \"Valid\"\r\n }\r\n ],\r\n \"isManagedVirtualMachine\": true,\r\n \"virtualMachineSize\": \"Standard_B4ms\",\r\n \"originalStorageAccountOption\": false,\r\n \"osType\": \"Windows\",\r\n \"zones\": [\r\n \"1\"\r\n ],\r\n \"recoveryPointMoveReadinessInfo\": {\r\n \"ArchivedRP\": {\r\n \"isReadyForMove\": false,\r\n \"additionalInfo\": \"We're still determining if this Recovery Point can be moved.. Please check again after some time.\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resources?$filter=resourceType%20eq%20'Microsoft.ClassicStorage%2FstorageAccounts'&api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5DbGFzc2ljU3RvcmFnZSUyRnN0b3JhZ2VBY2NvdW50cycmYXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "65704963-b1ca-4493-945f-a8538aafa54c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-request-id": [ + "db3d3bdd-aa1b-42e1-98e5-bb8e7225e727" + ], + "x-ms-correlation-request-id": [ + "db3d3bdd-aa1b-42e1-98e5-bb8e7225e727" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T173335Z:db3d3bdd-aa1b-42e1-98e5-bb8e7225e727" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 16 May 2022 17:33:35 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "268" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.existing/providers/Microsoft.ClassicStorage/storageAccounts/iaasextstore2\",\r\n \"name\": \"iaasextstore2\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"southeastasia\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resources?$filter=resourceType%20eq%20'Microsoft.Storage%2FstorageAccounts'&api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5TdG9yYWdlJTJGc3RvcmFnZUFjY291bnRzJyZhcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "65704963-b1ca-4493-945f-a8538aafa54c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-request-id": [ + "4134b671-8d4e-4d3d-a1f1-1d6ce344823f" + ], + "x-ms-correlation-request-id": [ + "4134b671-8d4e-4d3d-a1f1-1d6ce344823f" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T173336Z:4134b671-8d4e-4d3d-a1f1-1d6ce344823f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 16 May 2022 17:33:35 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "34899" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.existing.crr/providers/Microsoft.Storage/storageAccounts/iaasvmexistingcrrdiag\",\r\n \"name\": \"iaasvmexistingcrrdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"MAB Used\": \"Yes\",\r\n \"DeleteBy\": \"01-2030\",\r\n \"Delete By\": \"01-2030\",\r\n \"Owner\": \"chgonugu\",\r\n \"Purpose\": \"Testing\",\r\n \"AutoShutdown\": \"false\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.existing.crr/providers/Microsoft.Storage/storageAccounts/iaasvmexistingcrrdiag112\",\r\n \"name\": \"iaasvmexistingcrrdiag112\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {\r\n \"Owner\": \"chgonugu\",\r\n \"Purpose\": \"Testing\",\r\n \"MabUsed\": \"Yes\",\r\n \"DeleteBy\": \"01-2025\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.existing.crr/providers/Microsoft.Storage/storageAccounts/iaasvmexistingcrr\",\r\n \"name\": \"iaasvmexistingcrr\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/sambit_rg/providers/Microsoft.Storage/storageAccounts/sarathsa3\",\r\n \"name\": \"sarathsa3\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvmhanaworkload.existing/providers/Microsoft.Storage/storageAccounts/iaasvmhanaworkloadexisti\",\r\n \"name\": \"iaasvmhanaworkloadexisti\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"AutoShutdown\": \"No\",\r\n \"BVT Used\": \"Yes\",\r\n \"Owner\": \"chgonugu\",\r\n \"Purpose\": \"BVT\",\r\n \"DeleteBy\": \"01-2030\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/afsnavigationtest\",\r\n \"name\": \"afsnavigationtest\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/afstbackuptestsa\",\r\n \"name\": \"afstbackuptestsa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.encryptedvm/providers/Microsoft.Storage/storageAccounts/iaasvmencryptedvmdiag170\",\r\n \"name\": \"iaasvmencryptedvmdiag170\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.existing/providers/Microsoft.Storage/storageAccounts/iaasvmexistingdiag1\",\r\n \"name\": \"iaasvmexistingdiag1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.existing/providers/Microsoft.Storage/storageAccounts/iaasextstore1\",\r\n \"name\": \"iaasextstore1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.new/providers/Microsoft.Storage/storageAccounts/iaasvmnewdiag1\",\r\n \"name\": \"iaasvmnewdiag1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.new/providers/Microsoft.Storage/storageAccounts/iaasnewstore1\",\r\n \"name\": \"iaasnewstore1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/IaasVMNavigationTest-RG/providers/Microsoft.Storage/storageAccounts/aasavigationestdiag\",\r\n \"name\": \"aasavigationestdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/IaasVMNavigationTest-RG/providers/Microsoft.Storage/storageAccounts/iaasvmnavigationstore\",\r\n \"name\": \"iaasvmnavigationstore\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pscloudtestrg/providers/Microsoft.Storage/storageAccounts/pscloudtestrgdiag\",\r\n \"name\": \"pscloudtestrgdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MAB Used\": \" Yes\",\r\n \"MABUsed\": \" Yes\",\r\n \"DeleteBy\": \"01-2030\",\r\n \"Purpose\": \"PS bvt\",\r\n \"Owner\": \"sarath\",\r\n \"AutoShutdown\": \"No\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pscloudtestrg/providers/Microsoft.Storage/storageAccounts/psbvtsa2\",\r\n \"name\": \"psbvtsa2\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstestsa8895\",\r\n \"name\": \"pstestsa8895\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstesttargetsa8895\",\r\n \"name\": \"pstesttargetsa8895\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstesttargetsa8896\",\r\n \"name\": \"pstesttargetsa8896\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/afsbackupsa\",\r\n \"name\": \"afsbackupsa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"Owner\": \"sarath\",\r\n \"Purpose\": \" BVT\",\r\n \"DeleteBy\": \"01-2025\",\r\n \"AutoShutdown\": \"No\",\r\n \"MAB Used\": \" Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG54bdf8da/providers/Microsoft.Storage/storageAccounts/pstestsa54bdf8da\",\r\n \"name\": \"pstestsa54bdf8da\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG1e5a278b/providers/Microsoft.Storage/storageAccounts/pstestsa1e5a278b\",\r\n \"name\": \"pstestsa1e5a278b\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG59e1706f/providers/Microsoft.Storage/storageAccounts/pstestsa59e1706f\",\r\n \"name\": \"pstestsa59e1706f\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/storageysci5wbex6jyc\",\r\n \"name\": \"storageysci5wbex6jyc\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/prnookal-rg/providers/Microsoft.Storage/storageAccounts/prnookaltestnob\",\r\n \"name\": \"prnookaltestnob\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"isMABUsed\": \"Yes\",\r\n \" Owner\": \"prnookal@microsoft.com\",\r\n \"DeletBy\": \"12-2021\",\r\n \"Purpose\": \" Testing\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/afsbackupsa1\",\r\n \"name\": \"afsbackupsa1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"Mab Used\": \"yes\",\r\n \"Owner\": \"akkanase\",\r\n \"Purpose\": \"Testing\",\r\n \"DeleteBy\": \"01-2022\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/afsbackupsa2\",\r\n \"name\": \"afsbackupsa2\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseTest/providers/Microsoft.Storage/storageAccounts/afsfilesharetest\",\r\n \"name\": \"afsfilesharetest\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/afsbackupsa3\",\r\n \"name\": \"afsbackupsa3\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/afsbackupsa0\",\r\n \"name\": \"afsbackupsa0\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pscloudtest-diskbackup-existing/providers/Microsoft.Storage/storageAccounts/1vnseapod01otds1\",\r\n \"name\": \"1vnseapod01otds1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGZRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseAFSTest/providers/Microsoft.Storage/storageAccounts/akkanaseafssa\",\r\n \"name\": \"akkanaseafssa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MAB Used\": \"Yes\",\r\n \"Owner\": \"akkanase\",\r\n \"Purpose\": \"Testing\",\r\n \"Delete By\": \"05-202\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseAFSTest/providers/Microsoft.Storage/storageAccounts/akkanasembpd2\",\r\n \"name\": \"akkanasembpd2\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MAB Used\": \"Yes\",\r\n \"Purpose\": \"Testing\",\r\n \"Owner\": \"akkanase\",\r\n \"Delete By\": \"05-2022\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseCMK/providers/Microsoft.Storage/storageAccounts/akkanase\",\r\n \"name\": \"akkanase\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"DeleteBy\": \"05-2023\",\r\n \"Owner\": \"akkanase\",\r\n \"Purpose\": \"Testing\",\r\n \"MAB Used\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/cmk.system/providers/Microsoft.Storage/storageAccounts/cmkautomationstore\",\r\n \"name\": \"cmkautomationstore\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"Delete By\": \"05-2050\",\r\n \"MAB Used\": \" Yes\",\r\n \"Owner\": \"akkanase\",\r\n \"Purpose\": \" BVT\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG235879ba/providers/Microsoft.Storage/storageAccounts/pstestsa235879ba\",\r\n \"name\": \"pstestsa235879ba\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/disk-bvt-test-rg/providers/Microsoft.Storage/storageAccounts/hv3seapod01otds1\",\r\n \"name\": \"hv3seapod01otds1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGZRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/DoNotUse-OSS-BVT-SEA-RG/providers/Microsoft.Storage/storageAccounts/dontuseossrestoreasfile\",\r\n \"name\": \"dontuseossrestoreasfile\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MAB Used\": \" Yes\",\r\n \" Owner\": \"akkanase\",\r\n \"Purpose\": \"BV\",\r\n \"Delete By\": \"05-2020\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseAFSTest/providers/Microsoft.Storage/storageAccounts/akkanaseafsa2\",\r\n \"name\": \"akkanaseafsa2\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseCMK/providers/Microsoft.Storage/storageAccounts/0byseapod01otds1\",\r\n \"name\": \"0byseapod01otds1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGZRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/9exwuspod01otds1\",\r\n \"name\": \"9exwuspod01otds1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/02xseacan01otds1\",\r\n \"name\": \"02xseacan01otds1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGZRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseMAB/providers/Microsoft.Storage/storageAccounts/dnhccypod01otds1\",\r\n \"name\": \"dnhccypod01otds1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rguzio7xhypi/providers/Microsoft.Storage/storageAccounts/clitest4b24ibpr3ztyhwo23\",\r\n \"name\": \"clitest4b24ibpr3ztyhwo23\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rgsiaa3ljqg5/providers/Microsoft.Storage/storageAccounts/clitestgd6i34czs3jb3rdtc\",\r\n \"name\": \"clitestgd6i34czs3jb3rdtc\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rgjxpjikqjjw/providers/Microsoft.Storage/storageAccounts/clitestjkhq2kpsal665atqe\",\r\n \"name\": \"clitestjkhq2kpsal665atqe\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rgwwhxyyhl2u/providers/Microsoft.Storage/storageAccounts/clitestdggdsdbtfa6vq5n5o\",\r\n \"name\": \"clitestdggdsdbtfa6vq5n5o\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rgm44mrkvygk/providers/Microsoft.Storage/storageAccounts/clitestodvd3xsftt63go6dk\",\r\n \"name\": \"clitestodvd3xsftt63go6dk\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rgdy7jf3qqzd/providers/Microsoft.Storage/storageAccounts/clitestnbsma3ftf2yugilxq\",\r\n \"name\": \"clitestnbsma3ftf2yugilxq\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rgl5tlzqo2pt/providers/Microsoft.Storage/storageAccounts/clitestgn64zidsnwe3ndjp5\",\r\n \"name\": \"clitestgn64zidsnwe3ndjp5\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rg73eqbdp4g5/providers/Microsoft.Storage/storageAccounts/clitestzfhrqsr4m24iwnjy7\",\r\n \"name\": \"clitestzfhrqsr4m24iwnjy7\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rg73eqbdp4g5/providers/Microsoft.Storage/storageAccounts/clitestukhlrarahpoebmaln\",\r\n \"name\": \"clitestukhlrarahpoebmaln\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/prnookal-prod/providers/Microsoft.Storage/storageAccounts/prnookalprod\",\r\n \"name\": \"prnookalprod\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"japaneast\",\r\n \"tags\": {\r\n \"IsMabUsed\": \"Yes\",\r\n \"Owner\": \"prnookal\",\r\n \"DeleteBy\": \"12-2021\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/cloud-shell-storage-centralindia/providers/Microsoft.Storage/storageAccounts/csg10032000d221b981\",\r\n \"name\": \"csg10032000d221b981\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centralindia\",\r\n \"tags\": {\r\n \"ms-resource-usage\": \"azure-cloud-shell\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/cloud-shell-storage-centralindia/providers/Microsoft.Storage/storageAccounts/csg10032000b56ab138\",\r\n \"name\": \"csg10032000b56ab138\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centralindia\",\r\n \"tags\": {\r\n \"ms-resource-usage\": \"azure-cloud-shell\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/cloud-shell-storage-centralindia/providers/Microsoft.Storage/storageAccounts/csg10033fffacb0d110\",\r\n \"name\": \"csg10033fffacb0d110\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centralindia\",\r\n \"tags\": {\r\n \"ms-resource-usage\": \"azure-cloud-shell\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/cloud-shell-storage-centralindia/providers/Microsoft.Storage/storageAccounts/csg1003bffda7dcd176\",\r\n \"name\": \"csg1003bffda7dcd176\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centralindia\",\r\n \"tags\": {\r\n \"ms-resource-usage\": \"azure-cloud-shell\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/cloud-shell-storage-centralindia/providers/Microsoft.Storage/storageAccounts/csg100320004f433d62\",\r\n \"name\": \"csg100320004f433d62\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centralindia\",\r\n \"tags\": {\r\n \"ms-resource-usage\": \"azure-cloud-shell\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvmsqlworkload.existing.crr/providers/Microsoft.Storage/storageAccounts/iaasvmsqlworkloadexistin\",\r\n \"name\": \"iaasvmsqlworkloadexistin\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {\r\n \"Owner\": \"chgonugu\",\r\n \"Purpose\": \"BVT\",\r\n \"MabUsed\": \"Yes\",\r\n \"DeleteBy\": \"12-2099\",\r\n \"AutoShutdown\": \"No\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/Blob-Backup/providers/Microsoft.Storage/storageAccounts/testblobbackup\",\r\n \"name\": \"testblobbackup\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/fzejupmyclivaultasrcache\",\r\n \"name\": \"fzejupmyclivaultasrcache\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rgm7e2kiyzoto4iaicwwkdomftb7zki5kh2xxwh6yyskpflgsrpkrygkpwpdcltggyb/providers/Microsoft.Storage/storageAccounts/clitest7gyg4gqt4sxirqdkc\",\r\n \"name\": \"clitest7gyg4gqt4sxirqdkc\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rglx72s62qimgelno2o6rr34a5ovdikhzq5k6dc7773qrbodtnrdcguic5hpiciscne/providers/Microsoft.Storage/storageAccounts/clitestva4qmim2g5c3cb2tz\",\r\n \"name\": \"clitestva4qmim2g5c3cb2tz\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rg7leptekwovuif35xu6k3mb6lhszl4fkmod7jkg7yckt4v7epruxvjo6ty2hzsurwh/providers/Microsoft.Storage/storageAccounts/clitest3cgxtcwowikxqlds4\",\r\n \"name\": \"clitest3cgxtcwowikxqlds4\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rghgkz2nq6tonmn2ncf5nsluxw6pvzyxdveiba3lhoes54dgsc5vn6fgb5b4dipl57q/providers/Microsoft.Storage/storageAccounts/clitest2mvwrrerw5na6mj23\",\r\n \"name\": \"clitest2mvwrrerw5na6mj23\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseCcyGrs/providers/Microsoft.Storage/storageAccounts/storeimqyzvpnwrv5a\",\r\n \"name\": \"storeimqyzvpnwrv5a\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/sarath-rg/providers/Microsoft.Storage/storageAccounts/clitestingsa\",\r\n \"name\": \"clitestingsa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/sarath-rg/providers/Microsoft.Storage/storageAccounts/axiccypod01otds1\",\r\n \"name\": \"axiccypod01otds1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseZRS/providers/Microsoft.Storage/storageAccounts/akanasezrsstorag\",\r\n \"name\": \"akanasezrsstorag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {\r\n \"Purpose\": \"Testing\",\r\n \"Owner\": \"akkanase\",\r\n \"Mab Used\": \"yes\",\r\n \"DeleteBy\": \"01-2025\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/sarath-rg/providers/Microsoft.Storage/storageAccounts/sarathsacli\",\r\n \"name\": \"sarathsacli\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm-clitest-rg/providers/Microsoft.Storage/storageAccounts/iaasvmclitestsa\",\r\n \"name\": \"iaasvmclitestsa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"Owner\": \"akneema\",\r\n \"MABUsed\": \"Yes\",\r\n \"Purpose\": \"CLITest\",\r\n \"DeleteBy\": \"12-9999\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.Storage/storageAccounts/hiagasa\",\r\n \"name\": \"hiagasa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\",\r\n \"Purpose\": \"Testing\",\r\n \"DeleteBy\": \"01-2099\",\r\n \"Owner\": \"hiaga\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.Storage/storageAccounts/akneemasaecy\",\r\n \"name\": \"akneemasaecy\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {\r\n \"Owner\": \"akneema\",\r\n \"Purpose\": \"Testing\",\r\n \"MABUsed\": \"Yes\",\r\n \"DeleteBy\": \"12-9999\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/oss-clitest-rg/providers/Microsoft.Storage/storageAccounts/ossclitestsa\",\r\n \"name\": \"ossclitestsa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"Owner\": \"akneema\",\r\n \"Purpose\": \"Testing\",\r\n \"MABUsed\": \"Yes\",\r\n \"DeleteBy\": \"12-9999\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/oss-pstest-rg/providers/Microsoft.Storage/storageAccounts/osspstestsa\",\r\n \"name\": \"osspstestsa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"MABUsed\": \"Ye\",\r\n \"Owne\": \"hiaga\",\r\n \"Purpose\": \"esting\",\r\n \"Del\": \"01-2099\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/cli-track2-rg/providers/Microsoft.Storage/storageAccounts/clitrack2sa\",\r\n \"name\": \"clitrack2sa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"Owner\": \"akneema\",\r\n \"Purpose\": \"Testing\",\r\n \"DeleteBy\": \"12-9999\",\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm-pstest-rg/providers/Microsoft.Storage/storageAccounts/iaasvmpstestsa\",\r\n \"name\": \"iaasvmpstestsa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"MABUsed\": \"yes\",\r\n \"Owner\": \"hiaga\",\r\n \"Purpose\": \"testing\",\r\n \"DeleteBy\": \"01-2099\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/DontUse-BlobRestore-BVT-CCY-RG/providers/Microsoft.Storage/storageAccounts/dontuseblobbvtccyrstrall\",\r\n \"name\": \"dontuseblobbvtccyrstrall\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/DontUse-BlobRestore-BVT-CCY-RG/providers/Microsoft.Storage/storageAccounts/dontuseblobbvtccyprefix\",\r\n \"name\": \"dontuseblobbvtccyprefix\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/DontUse-BlobRestore-BVT-CCY-RG/providers/Microsoft.Storage/storageAccounts/dontuseblobbvtccycontnr\",\r\n \"name\": \"dontuseblobbvtccycontnr\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/oss-clicloudtest-rg/providers/Microsoft.Storage/storageAccounts/ossclicloudtestsa\",\r\n \"name\": \"ossclicloudtestsa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"Owner\": \"akneema\",\r\n \"Purpose\": \"Testing\",\r\n \"DeleteBy\": \"12-9999\",\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/prnookal-wcus/providers/Microsoft.Storage/storageAccounts/prnookalwcus\",\r\n \"name\": \"prnookalwcus\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"Owner\": \"prnookal\",\r\n \"DeleteBy\": \"12-2021\",\r\n \"IsMabUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PORTAL.DPP.BVT.BLOB.RESTORE.EXISTING/providers/Microsoft.Storage/storageAccounts/blobsaforrestoreall\",\r\n \"name\": \"blobsaforrestoreall\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PORTAL.DPP.BVT.BLOB.RESTORE.EXISTING/providers/Microsoft.Storage/storageAccounts/blobrestoreopcontainers\",\r\n \"name\": \"blobrestoreopcontainers\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PORTAL.DPP.BVT.BLOB.RESTORE.EXISTING/providers/Microsoft.Storage/storageAccounts/blobrestoreopprefix\",\r\n \"name\": \"blobrestoreopprefix\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PORTAL.DPP.BVT.BLOB.RESTORE.EXISTING/providers/Microsoft.Storage/storageAccounts/blobrestoreopcontainer\",\r\n \"name\": \"blobrestoreopcontainer\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PORTAL.DPP.BVT.BLOB.RESTORE.EXISTING/providers/Microsoft.Storage/storageAccounts/blobrestoreopall\",\r\n \"name\": \"blobrestoreopall\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PORTAL.DPP.BVT.BLOB.RESTORE.EXISTING/providers/Microsoft.Storage/storageAccounts/bloboprestorecontainers\",\r\n \"name\": \"bloboprestorecontainers\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PORTAL.DPP.BVT.BLOB.RESTORE.EXISTING/providers/Microsoft.Storage/storageAccounts/bloboprestoreall\",\r\n \"name\": \"bloboprestoreall\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagargeus/providers/Microsoft.Storage/storageAccounts/hiagargeus\",\r\n \"name\": \"hiagargeus\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akneema-we-rg/providers/Microsoft.Storage/storageAccounts/gb8wepod01otds1\",\r\n \"name\": \"gb8wepod01otds1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGZRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akneema/providers/Microsoft.Storage/storageAccounts/uvqccypod01otds1\",\r\n \"name\": \"uvqccypod01otds1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagaCZR-rg/providers/Microsoft.Storage/storageAccounts/cliczrlrssa\",\r\n \"name\": \"cliczrlrssa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {\r\n \"Owner\": \"akneema\",\r\n \"Purpose\": \"Testing\",\r\n \"DeleteBy\": \"12-9999\",\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseGRSVault/providers/Microsoft.Storage/storageAccounts/frmseapod01otds1\",\r\n \"name\": \"frmseapod01otds1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGZRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseZRS/providers/Microsoft.Storage/storageAccounts/rfoccypod01otds1\",\r\n \"name\": \"rfoccypod01otds1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akneema-we-rg/providers/Microsoft.Storage/storageAccounts/m3dccypod01otds01\",\r\n \"name\": \"m3dccypod01otds01\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/AdkayethBugbash/providers/Microsoft.Storage/storageAccounts/adkayethsfsa\",\r\n \"name\": \"adkayethsfsa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/AdkayethBugbash/providers/Microsoft.Storage/storageAccounts/adkayathesfsabugbash\",\r\n \"name\": \"adkayathesfsabugbash\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupFabrics/Azure/protectionContainers/IaasVMContainer%3Biaasvmcontainerv2%3Bhiagarg%3Bhiagavm/protectedItems/VM%3Biaasvmcontainerv2%3Bhiagarg%3Bhiagavm/recoveryPoints/158980374391621/restore?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEZhYnJpY3MvQXp1cmUvcHJvdGVjdGlvbkNvbnRhaW5lcnMvSWFhc1ZNQ29udGFpbmVyJTNCaWFhc3ZtY29udGFpbmVydjIlM0JoaWFnYXJnJTNCaGlhZ2F2bS9wcm90ZWN0ZWRJdGVtcy9WTSUzQmlhYXN2bWNvbnRhaW5lcnYyJTNCaGlhZ2FyZyUzQmhpYWdhdm0vcmVjb3ZlcnlQb2ludHMvMTU4OTgwMzc0MzkxNjIxL3Jlc3RvcmU/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"properties\": {\r\n \"objectType\": \"IaasVMRestoreRequest\",\r\n \"recoveryPointId\": \"158980374391621\",\r\n \"recoveryType\": \"RestoreDisks\",\r\n \"sourceResourceId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.Compute/virtualMachines/hiagavm\",\r\n \"targetResourceGroupId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg\",\r\n \"region\": \"centraluseuap\",\r\n \"createNewCloudService\": false,\r\n \"originalStorageAccountOption\": false,\r\n \"restoreDiskLunList\": [],\r\n \"restoreWithManagedDisks\": false,\r\n \"identityInfo\": {\r\n \"isSystemAssignedIdentity\": true\r\n },\r\n \"identityBasedRestoreDetails\": {\r\n \"targetStorageAccountId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.Storage/storageAccounts/hiagasa\"\r\n }\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "65704963-b1ca-4493-945f-a8538aafa54c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "875" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;hiagarg;hiagavm/protectedItems/VM;iaasvmcontainerv2;hiagarg;hiagavm/operationResults/f8ea7359-e574-4938-a703-069ed0031339?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;hiagarg;hiagavm/protectedItems/VM;iaasvmcontainerv2;hiagarg;hiagavm/operationsStatus/f8ea7359-e574-4938-a703-069ed0031339?api-version=2022-02-01" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "da21dac3-de13-4b1b-bb9a-b2e0e343fc35" + ], + "x-ms-client-request-id": [ + "65704963-b1ca-4493-945f-a8538aafa54c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Kestrel" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" ], "x-ms-correlation-request-id": [ - "7ce89778-772b-469d-afb1-601b98272d36" + "da21dac3-de13-4b1b-bb9a-b2e0e343fc35" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T120758Z:7ce89778-772b-469d-afb1-601b98272d36" + "JIOINDIAWEST:20220516T173337Z:da21dac3-de13-4b1b-bb9a-b2e0e343fc35" ], "Date": [ - "Sat, 26 Mar 2022 12:07:58 GMT" + "Mon, 16 May 2022 17:33:36 GMT" ], "Expires": [ "-1" @@ -2074,19 +3247,19 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;hiagarg;hiagavm/protectedItems/VM;iaasvmcontainerv2;hiagarg;hiagavm/operationsStatus/8d837818-3cb0-4939-b211-6688cad5e95d?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEZhYnJpY3MvQXp1cmUvcHJvdGVjdGlvbkNvbnRhaW5lcnMvSWFhc1ZNQ29udGFpbmVyO2lhYXN2bWNvbnRhaW5lcnYyO2hpYWdhcmc7aGlhZ2F2bS9wcm90ZWN0ZWRJdGVtcy9WTTtpYWFzdm1jb250YWluZXJ2MjtoaWFnYXJnO2hpYWdhdm0vb3BlcmF0aW9uc1N0YXR1cy84ZDgzNzgxOC0zY2IwLTQ5MzktYjIxMS02Njg4Y2FkNWU5NWQ/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;hiagarg;hiagavm/protectedItems/VM;iaasvmcontainerv2;hiagarg;hiagavm/operationsStatus/f8ea7359-e574-4938-a703-069ed0031339?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEZhYnJpY3MvQXp1cmUvcHJvdGVjdGlvbkNvbnRhaW5lcnMvSWFhc1ZNQ29udGFpbmVyO2lhYXN2bWNvbnRhaW5lcnYyO2hpYWdhcmc7aGlhZ2F2bS9wcm90ZWN0ZWRJdGVtcy9WTTtpYWFzdm1jb250YWluZXJ2MjtoaWFnYXJnO2hpYWdhdm0vb3BlcmF0aW9uc1N0YXR1cy9mOGVhNzM1OS1lNTc0LTQ5MzgtYTcwMy0wNjllZDAwMzEzMzk/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "eff686d1-ed46-4a8b-9c6e-ce11619cddab" + "65704963-b1ca-4493-945f-a8538aafa54c" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -2100,10 +3273,10 @@ "nosniff" ], "x-ms-request-id": [ - "9596afe0-debb-43f3-8462-f14c212d6976" + "4b2a86be-5161-43cd-a131-336738b6fd7d" ], "x-ms-client-request-id": [ - "eff686d1-ed46-4a8b-9c6e-ce11619cddab" + "65704963-b1ca-4493-945f-a8538aafa54c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2118,13 +3291,13 @@ "299" ], "x-ms-correlation-request-id": [ - "9596afe0-debb-43f3-8462-f14c212d6976" + "4b2a86be-5161-43cd-a131-336738b6fd7d" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T120900Z:9596afe0-debb-43f3-8462-f14c212d6976" + "JIOINDIAWEST:20220516T173439Z:4b2a86be-5161-43cd-a131-336738b6fd7d" ], "Date": [ - "Sat, 26 Mar 2022 12:09:00 GMT" + "Mon, 16 May 2022 17:34:39 GMT" ], "Content-Length": [ "304" @@ -2136,23 +3309,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"8d837818-3cb0-4939-b211-6688cad5e95d\",\r\n \"name\": \"8d837818-3cb0-4939-b211-6688cad5e95d\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-03-26T12:07:58.4747082Z\",\r\n \"endTime\": \"2022-03-26T12:07:58.4747082Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"8d837818-3cb0-4939-b211-6688cad5e95d\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"f8ea7359-e574-4938-a703-069ed0031339\",\r\n \"name\": \"f8ea7359-e574-4938-a703-069ed0031339\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-05-16T17:33:37.1189452Z\",\r\n \"endTime\": \"2022-05-16T17:33:37.1189452Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"f8ea7359-e574-4938-a703-069ed0031339\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;hiagarg;hiagavm/protectedItems/VM;iaasvmcontainerv2;hiagarg;hiagavm/operationResults/8d837818-3cb0-4939-b211-6688cad5e95d?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEZhYnJpY3MvQXp1cmUvcHJvdGVjdGlvbkNvbnRhaW5lcnMvSWFhc1ZNQ29udGFpbmVyO2lhYXN2bWNvbnRhaW5lcnYyO2hpYWdhcmc7aGlhZ2F2bS9wcm90ZWN0ZWRJdGVtcy9WTTtpYWFzdm1jb250YWluZXJ2MjtoaWFnYXJnO2hpYWdhdm0vb3BlcmF0aW9uUmVzdWx0cy84ZDgzNzgxOC0zY2IwLTQ5MzktYjIxMS02Njg4Y2FkNWU5NWQ/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;hiagarg;hiagavm/protectedItems/VM;iaasvmcontainerv2;hiagarg;hiagavm/operationResults/f8ea7359-e574-4938-a703-069ed0031339?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEZhYnJpY3MvQXp1cmUvcHJvdGVjdGlvbkNvbnRhaW5lcnMvSWFhc1ZNQ29udGFpbmVyO2lhYXN2bWNvbnRhaW5lcnYyO2hpYWdhcmc7aGlhZ2F2bS9wcm90ZWN0ZWRJdGVtcy9WTTtpYWFzdm1jb250YWluZXJ2MjtoaWFnYXJnO2hpYWdhdm0vb3BlcmF0aW9uUmVzdWx0cy9mOGVhNzM1OS1lNTc0LTQ5MzgtYTcwMy0wNjllZDAwMzEzMzk/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "eff686d1-ed46-4a8b-9c6e-ce11619cddab" + "65704963-b1ca-4493-945f-a8538aafa54c" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -2166,16 +3339,16 @@ "60" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;hiagarg;hiagavm/protectedItems/VM;iaasvmcontainerv2;hiagarg;hiagavm/operationsStatus/8d837818-3cb0-4939-b211-6688cad5e95d?api-version=2021-12-01" + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;hiagarg;hiagavm/protectedItems/VM;iaasvmcontainerv2;hiagarg;hiagavm/operationsStatus/f8ea7359-e574-4938-a703-069ed0031339?api-version=2022-02-01" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "55e0e1fa-f1cb-427d-9880-5cb029079f04" + "9e10906f-0abf-493b-917f-1c16b48809a6" ], "x-ms-client-request-id": [ - "eff686d1-ed46-4a8b-9c6e-ce11619cddab" + "65704963-b1ca-4493-945f-a8538aafa54c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2190,35 +3363,35 @@ "299" ], "x-ms-correlation-request-id": [ - "55e0e1fa-f1cb-427d-9880-5cb029079f04" + "9e10906f-0abf-493b-917f-1c16b48809a6" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T120900Z:55e0e1fa-f1cb-427d-9880-5cb029079f04" + "JIOINDIAWEST:20220516T173440Z:9e10906f-0abf-493b-917f-1c16b48809a6" ], "Date": [ - "Sat, 26 Mar 2022 12:09:00 GMT" + "Mon, 16 May 2022 17:34:39 GMT" ] }, "ResponseBody": "", "StatusCode": 204 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupOperations/8d837818-3cb0-4939-b211-6688cad5e95d?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvOGQ4Mzc4MTgtM2NiMC00OTM5LWIyMTEtNjY4OGNhZDVlOTVkP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupOperations/f8ea7359-e574-4938-a703-069ed0031339?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvZjhlYTczNTktZTU3NC00OTM4LWE3MDMtMDY5ZWQwMDMxMzM5P2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "eff686d1-ed46-4a8b-9c6e-ce11619cddab" + "65704963-b1ca-4493-945f-a8538aafa54c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -2232,10 +3405,10 @@ "nosniff" ], "x-ms-request-id": [ - "71eca50e-f422-428a-8271-4b3acbe9a924" + "c55a0e7e-4188-4e33-8af7-5c7b1c85de1a" ], "x-ms-client-request-id": [ - "eff686d1-ed46-4a8b-9c6e-ce11619cddab" + "65704963-b1ca-4493-945f-a8538aafa54c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2250,13 +3423,13 @@ "299" ], "x-ms-correlation-request-id": [ - "71eca50e-f422-428a-8271-4b3acbe9a924" + "c55a0e7e-4188-4e33-8af7-5c7b1c85de1a" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T120902Z:71eca50e-f422-428a-8271-4b3acbe9a924" + "JIOINDIAWEST:20220516T173443Z:c55a0e7e-4188-4e33-8af7-5c7b1c85de1a" ], "Date": [ - "Sat, 26 Mar 2022 12:09:02 GMT" + "Mon, 16 May 2022 17:34:43 GMT" ], "Content-Length": [ "304" @@ -2268,26 +3441,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"8d837818-3cb0-4939-b211-6688cad5e95d\",\r\n \"name\": \"8d837818-3cb0-4939-b211-6688cad5e95d\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-03-26T12:07:58.4747082Z\",\r\n \"endTime\": \"2022-03-26T12:07:58.4747082Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"8d837818-3cb0-4939-b211-6688cad5e95d\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"f8ea7359-e574-4938-a703-069ed0031339\",\r\n \"name\": \"f8ea7359-e574-4938-a703-069ed0031339\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-05-16T17:33:37.1189452Z\",\r\n \"endTime\": \"2022-05-16T17:33:37.1189452Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"f8ea7359-e574-4938-a703-069ed0031339\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupOperations/8d837818-3cb0-4939-b211-6688cad5e95d?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvOGQ4Mzc4MTgtM2NiMC00OTM5LWIyMTEtNjY4OGNhZDVlOTVkP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupOperations/f8ea7359-e574-4938-a703-069ed0031339?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cE9wZXJhdGlvbnMvZjhlYTczNTktZTU3NC00OTM4LWE3MDMtMDY5ZWQwMDMxMzM5P2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "eff686d1-ed46-4a8b-9c6e-ce11619cddab" + "65704963-b1ca-4493-945f-a8538aafa54c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -2301,10 +3474,10 @@ "nosniff" ], "x-ms-request-id": [ - "f0d89ae9-81f8-4bef-b1ce-738c1e0ea47e" + "c2970ad3-ce7e-463d-a1b8-dc795f2c684f" ], "x-ms-client-request-id": [ - "eff686d1-ed46-4a8b-9c6e-ce11619cddab" + "65704963-b1ca-4493-945f-a8538aafa54c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2319,13 +3492,13 @@ "298" ], "x-ms-correlation-request-id": [ - "f0d89ae9-81f8-4bef-b1ce-738c1e0ea47e" + "c2970ad3-ce7e-463d-a1b8-dc795f2c684f" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T120903Z:f0d89ae9-81f8-4bef-b1ce-738c1e0ea47e" + "JIOINDIAWEST:20220516T173445Z:c2970ad3-ce7e-463d-a1b8-dc795f2c684f" ], "Date": [ - "Sat, 26 Mar 2022 12:09:03 GMT" + "Mon, 16 May 2022 17:34:45 GMT" ], "Content-Length": [ "304" @@ -2337,26 +3510,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"8d837818-3cb0-4939-b211-6688cad5e95d\",\r\n \"name\": \"8d837818-3cb0-4939-b211-6688cad5e95d\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-03-26T12:07:58.4747082Z\",\r\n \"endTime\": \"2022-03-26T12:07:58.4747082Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"8d837818-3cb0-4939-b211-6688cad5e95d\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"f8ea7359-e574-4938-a703-069ed0031339\",\r\n \"name\": \"f8ea7359-e574-4938-a703-069ed0031339\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-05-16T17:33:37.1189452Z\",\r\n \"endTime\": \"2022-05-16T17:33:37.1189452Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"f8ea7359-e574-4938-a703-069ed0031339\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/8d837818-3cb0-4939-b211-6688cad5e95d?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEpvYnMvOGQ4Mzc4MTgtM2NiMC00OTM5LWIyMTEtNjY4OGNhZDVlOTVkP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/f8ea7359-e574-4938-a703-069ed0031339?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEpvYnMvZjhlYTczNTktZTU3NC00OTM4LWE3MDMtMDY5ZWQwMDMxMzM5P2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "eff686d1-ed46-4a8b-9c6e-ce11619cddab" + "65704963-b1ca-4493-945f-a8538aafa54c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -2370,10 +3543,10 @@ "nosniff" ], "x-ms-request-id": [ - "da3f4b7f-99c4-4194-b4e2-abc9f107a6b7" + "3f429141-a9dc-4505-ab91-05c98f8c8002" ], "x-ms-client-request-id": [ - "eff686d1-ed46-4a8b-9c6e-ce11619cddab" + "65704963-b1ca-4493-945f-a8538aafa54c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2388,16 +3561,16 @@ "299" ], "x-ms-correlation-request-id": [ - "da3f4b7f-99c4-4194-b4e2-abc9f107a6b7" + "3f429141-a9dc-4505-ab91-05c98f8c8002" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T120904Z:da3f4b7f-99c4-4194-b4e2-abc9f107a6b7" + "JIOINDIAWEST:20220516T173446Z:3f429141-a9dc-4505-ab91-05c98f8c8002" ], "Date": [ - "Sat, 26 Mar 2022 12:09:04 GMT" + "Mon, 16 May 2022 17:34:46 GMT" ], "Content-Length": [ - "1052" + "1051" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2406,26 +3579,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/8d837818-3cb0-4939-b211-6688cad5e95d\",\r\n \"name\": \"8d837818-3cb0-4939-b211-6688cad5e95d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"duration\": \"PT1M0.3932519S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Transfer data from vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"Job Type\": \"Recover disks\",\r\n \"Target VM Name\": \"vmName\",\r\n \"Target Storage Account Name\": \"hiagasa\",\r\n \"Recovery point time \": \"3/26/2022 11:50:18 AM\",\r\n \"Target resource group\": \"hiagarg\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"restoreLocationType\": \"RestoreDisks\"\r\n },\r\n \"progressPercentage\": 1.0\r\n },\r\n \"entityFriendlyName\": \"hiagavm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-03-26T12:07:58.4747082Z\",\r\n \"activityId\": \"eff686d1-ed46-4a8b-9c6e-ce11619cddab\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/f8ea7359-e574-4938-a703-069ed0031339\",\r\n \"name\": \"f8ea7359-e574-4938-a703-069ed0031339\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"duration\": \"PT1M3.0319054S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Transfer data from vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"Job Type\": \"Recover disks\",\r\n \"Target VM Name\": \"vmName\",\r\n \"Target Storage Account Name\": \"hiagasa\",\r\n \"Recovery point time \": \"5/16/2022 5:15:52 PM\",\r\n \"Target resource group\": \"hiagarg\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"restoreLocationType\": \"RestoreDisks\"\r\n },\r\n \"progressPercentage\": 1.0\r\n },\r\n \"entityFriendlyName\": \"hiagavm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T17:33:37.1189452Z\",\r\n \"activityId\": \"65704963-b1ca-4493-945f-a8538aafa54c\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/8d837818-3cb0-4939-b211-6688cad5e95d?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEpvYnMvOGQ4Mzc4MTgtM2NiMC00OTM5LWIyMTEtNjY4OGNhZDVlOTVkP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/f8ea7359-e574-4938-a703-069ed0031339?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEpvYnMvZjhlYTczNTktZTU3NC00OTM4LWE3MDMtMDY5ZWQwMDMxMzM5P2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "eff686d1-ed46-4a8b-9c6e-ce11619cddab" + "65704963-b1ca-4493-945f-a8538aafa54c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -2439,10 +3612,10 @@ "nosniff" ], "x-ms-request-id": [ - "f61d231c-015b-4d60-974a-b51ebd1159d2" + "5e07fe39-fed4-496c-a576-512a193becaa" ], "x-ms-client-request-id": [ - "eff686d1-ed46-4a8b-9c6e-ce11619cddab" + "65704963-b1ca-4493-945f-a8538aafa54c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2457,16 +3630,16 @@ "298" ], "x-ms-correlation-request-id": [ - "f61d231c-015b-4d60-974a-b51ebd1159d2" + "5e07fe39-fed4-496c-a576-512a193becaa" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T120904Z:f61d231c-015b-4d60-974a-b51ebd1159d2" + "JIOINDIAWEST:20220516T173447Z:5e07fe39-fed4-496c-a576-512a193becaa" ], "Date": [ - "Sat, 26 Mar 2022 12:09:04 GMT" + "Mon, 16 May 2022 17:34:47 GMT" ], "Content-Length": [ - "1052" + "1051" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2475,26 +3648,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/8d837818-3cb0-4939-b211-6688cad5e95d\",\r\n \"name\": \"8d837818-3cb0-4939-b211-6688cad5e95d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"duration\": \"PT1M1.0182499S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Transfer data from vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"Job Type\": \"Recover disks\",\r\n \"Target VM Name\": \"vmName\",\r\n \"Target Storage Account Name\": \"hiagasa\",\r\n \"Recovery point time \": \"3/26/2022 11:50:18 AM\",\r\n \"Target resource group\": \"hiagarg\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"restoreLocationType\": \"RestoreDisks\"\r\n },\r\n \"progressPercentage\": 1.0\r\n },\r\n \"entityFriendlyName\": \"hiagavm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-03-26T12:07:58.4747082Z\",\r\n \"activityId\": \"eff686d1-ed46-4a8b-9c6e-ce11619cddab\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/f8ea7359-e574-4938-a703-069ed0031339\",\r\n \"name\": \"f8ea7359-e574-4938-a703-069ed0031339\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"duration\": \"PT1M3.9865308S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Transfer data from vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"Job Type\": \"Recover disks\",\r\n \"Target VM Name\": \"vmName\",\r\n \"Target Storage Account Name\": \"hiagasa\",\r\n \"Recovery point time \": \"5/16/2022 5:15:52 PM\",\r\n \"Target resource group\": \"hiagarg\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"restoreLocationType\": \"RestoreDisks\"\r\n },\r\n \"progressPercentage\": 1.0\r\n },\r\n \"entityFriendlyName\": \"hiagavm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T17:33:37.1189452Z\",\r\n \"activityId\": \"65704963-b1ca-4493-945f-a8538aafa54c\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/8d837818-3cb0-4939-b211-6688cad5e95d?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEpvYnMvOGQ4Mzc4MTgtM2NiMC00OTM5LWIyMTEtNjY4OGNhZDVlOTVkP2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/f8ea7359-e574-4938-a703-069ed0031339?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cEpvYnMvZjhlYTczNTktZTU3NC00OTM4LWE3MDMtMDY5ZWQwMDMxMzM5P2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "eff686d1-ed46-4a8b-9c6e-ce11619cddab" + "65704963-b1ca-4493-945f-a8538aafa54c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -2508,10 +3681,10 @@ "nosniff" ], "x-ms-request-id": [ - "91ad2503-59c6-4484-8bad-c0c95fd80e68" + "9e7ede81-6ad0-4a32-bc3c-613fe22e61d3" ], "x-ms-client-request-id": [ - "eff686d1-ed46-4a8b-9c6e-ce11619cddab" + "65704963-b1ca-4493-945f-a8538aafa54c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2526,16 +3699,16 @@ "297" ], "x-ms-correlation-request-id": [ - "91ad2503-59c6-4484-8bad-c0c95fd80e68" + "9e7ede81-6ad0-4a32-bc3c-613fe22e61d3" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T121006Z:91ad2503-59c6-4484-8bad-c0c95fd80e68" + "JIOINDIAWEST:20220516T173519Z:9e7ede81-6ad0-4a32-bc3c-613fe22e61d3" ], "Date": [ - "Sat, 26 Mar 2022 12:10:05 GMT" + "Mon, 16 May 2022 17:35:18 GMT" ], "Content-Length": [ - "1644" + "1643" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2544,7 +3717,7 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/8d837818-3cb0-4939-b211-6688cad5e95d\",\r\n \"name\": \"8d837818-3cb0-4939-b211-6688cad5e95d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"duration\": \"PT1M9.9942479S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Transfer data from vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\",\r\n \"taskExecutionDetails\": \"383 GBs / 383 GBs Transferred\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"Job Type\": \"Recover disks\",\r\n \"Target VM Name\": \"vmName\",\r\n \"Target Storage Account Name\": \"hiagasa\",\r\n \"Recovery point time \": \"3/26/2022 11:50:18 AM\",\r\n \"Config Blob Name\": \"config-hiagavm-8d837818-3cb0-4939-b211-6688cad5e95d.json\",\r\n \"Config Blob Container Name\": \"hiagavm-8d321abbafa94258bf2098b17762c251\",\r\n \"Config Blob Uri\": \"https://hiagasa.blob.core.windows.net/hiagavm-8d321abbafa94258bf2098b17762c251/config-hiagavm-8d837818-3cb0-4939-b211-6688cad5e95d.json\",\r\n \"Target resource group\": \"hiagarg\",\r\n \"Template Blob Uri\": \"https://hiagasa.blob.core.windows.net/hiagavm-8d321abbafa94258bf2098b17762c251/azuredeploy8d837818-3cb0-4939-b211-6688cad5e95d.json\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"restoreLocationType\": \"RestoreDisks\"\r\n },\r\n \"progressPercentage\": 100.0,\r\n \"estimatedRemainingDuration\": \"PT0S\"\r\n },\r\n \"entityFriendlyName\": \"hiagavm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-03-26T12:07:58.4747082Z\",\r\n \"endTime\": \"2022-03-26T12:09:08.4689561Z\",\r\n \"activityId\": \"eff686d1-ed46-4a8b-9c6e-ce11619cddab\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupJobs/f8ea7359-e574-4938-a703-069ed0031339\",\r\n \"name\": \"f8ea7359-e574-4938-a703-069ed0031339\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;hiagarg;hiagavm\",\r\n \"duration\": \"PT1M9.1523943S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Transfer data from vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\",\r\n \"taskExecutionDetails\": \"383 GBs / 383 GBs Transferred\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"Job Type\": \"Recover disks\",\r\n \"Target VM Name\": \"vmName\",\r\n \"Target Storage Account Name\": \"hiagasa\",\r\n \"Recovery point time \": \"5/16/2022 5:15:52 PM\",\r\n \"Config Blob Name\": \"config-hiagavm-f8ea7359-e574-4938-a703-069ed0031339.json\",\r\n \"Config Blob Container Name\": \"hiagavm-3be4a32242e74ab5a46edc67fb95903a\",\r\n \"Config Blob Uri\": \"https://hiagasa.blob.core.windows.net/hiagavm-3be4a32242e74ab5a46edc67fb95903a/config-hiagavm-f8ea7359-e574-4938-a703-069ed0031339.json\",\r\n \"Target resource group\": \"hiagarg\",\r\n \"Template Blob Uri\": \"https://hiagasa.blob.core.windows.net/hiagavm-3be4a32242e74ab5a46edc67fb95903a/azuredeployf8ea7359-e574-4938-a703-069ed0031339.json\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"restoreLocationType\": \"RestoreDisks\"\r\n },\r\n \"progressPercentage\": 100.0,\r\n \"estimatedRemainingDuration\": \"PT0S\"\r\n },\r\n \"entityFriendlyName\": \"hiagavm\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-05-16T17:33:37.1189452Z\",\r\n \"endTime\": \"2022-05-16T17:34:46.2713395Z\",\r\n \"activityId\": \"65704963-b1ca-4493-945f-a8538aafa54c\"\r\n }\r\n}", "StatusCode": 200 } ], diff --git a/src/RecoveryServices/RecoveryServices.Backup.Test/SessionRecords/Microsoft.Azure.Commands.RecoveryServices.Backup.Test.ScenarioTests.ItemTests/TestAzureVMSetVaultContext.json b/src/RecoveryServices/RecoveryServices.Backup.Test/SessionRecords/Microsoft.Azure.Commands.RecoveryServices.Backup.Test.ScenarioTests.ItemTests/TestAzureVMSetVaultContext.json index f7ed2941da46..23c6f92b0a70 100644 --- a/src/RecoveryServices/RecoveryServices.Backup.Test/SessionRecords/Microsoft.Azure.Commands.RecoveryServices.Backup.Test.ScenarioTests.ItemTests/TestAzureVMSetVaultContext.json +++ b/src/RecoveryServices/RecoveryServices.Backup.Test/SessionRecords/Microsoft.Azure.Commands.RecoveryServices.Backup.Test.ScenarioTests.ItemTests/TestAzureVMSetVaultContext.json @@ -1,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourcegroups/PSTestRG90564a6f?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlZ3JvdXBzL1BTVGVzdFJHOTA1NjRhNmY/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourcegroups/PSTestRGc96a93a6?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlZ3JvdXBzL1BTVGVzdFJHYzk2YTkzYTY/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1fb44f00-e03d-4498-a337-826ffa0958ab" + "93f679da-5907-4b79-8479-06fd32f01d56" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" ] }, "ResponseHeaders": { @@ -33,13 +33,13 @@ "11999" ], "x-ms-request-id": [ - "05b60805-b130-46b9-b2d0-e4580491ccf3" + "a57da155-9fd6-46f6-9402-f645f9e102ad" ], "x-ms-correlation-request-id": [ - "05b60805-b130-46b9-b2d0-e4580491ccf3" + "a57da155-9fd6-46f6-9402-f645f9e102ad" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T234715Z:05b60805-b130-46b9-b2d0-e4580491ccf3" + "JIOINDIAWEST:20220517T133827Z:a57da155-9fd6-46f6-9402-f645f9e102ad" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -48,7 +48,7 @@ "nosniff" ], "Date": [ - "Thu, 24 Feb 2022 23:47:15 GMT" + "Tue, 17 May 2022 13:38:26 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -60,26 +60,26 @@ "108" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'PSTestRG90564a6f' could not be found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'PSTestRGc96a93a6' could not be found.\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourcegroups/PSTestRG90564a6f?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlZ3JvdXBzL1BTVGVzdFJHOTA1NjRhNmY/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourcegroups/PSTestRGc96a93a6?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlZ3JvdXBzL1BTVGVzdFJHYzk2YTkzYTY/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1fee9d2a-1ae8-47df-b9bd-45043d870d62" + "bcbd819a-f056-4e4f-b9ac-5d80d374e372" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" ] }, "ResponseHeaders": { @@ -93,13 +93,13 @@ "11999" ], "x-ms-request-id": [ - "e43aca0d-f69b-4120-8e10-eb5106288225" + "d6036cc2-c700-4162-b5a3-e68bdeab1854" ], "x-ms-correlation-request-id": [ - "e43aca0d-f69b-4120-8e10-eb5106288225" + "d6036cc2-c700-4162-b5a3-e68bdeab1854" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T235525Z:e43aca0d-f69b-4120-8e10-eb5106288225" + "WESTINDIA:20220517T134722Z:d6036cc2-c700-4162-b5a3-e68bdeab1854" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -108,7 +108,7 @@ "nosniff" ], "Date": [ - "Thu, 24 Feb 2022 23:55:25 GMT" + "Tue, 17 May 2022 13:47:21 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -120,26 +120,26 @@ "192" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG90564a6f\",\r\n \"name\": \"PSTestRG90564a6f\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGc96a93a6\",\r\n \"name\": \"PSTestRGc96a93a6\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourcegroups/PSTestRG90564a6f?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlZ3JvdXBzL1BTVGVzdFJHOTA1NjRhNmY/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourcegroups/PSTestRGc96a93a6?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlZ3JvdXBzL1BTVGVzdFJHYzk2YTkzYTY/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"southeastasia\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "eb004152-c5b5-40cd-be4d-aaf16ea6e0e9" + "19c4d04a-0bfc-45e0-9731-9fe5f3b3aaee" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" ], "Content-Type": [ "application/json; charset=utf-8" @@ -159,13 +159,13 @@ "1199" ], "x-ms-request-id": [ - "1e43e2eb-b756-44af-b203-1356325b2e58" + "efc75940-741a-474c-94f3-f311a47726b3" ], "x-ms-correlation-request-id": [ - "1e43e2eb-b756-44af-b203-1356325b2e58" + "efc75940-741a-474c-94f3-f311a47726b3" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T234720Z:1e43e2eb-b756-44af-b203-1356325b2e58" + "JIOINDIAWEST:20220517T133830Z:efc75940-741a-474c-94f3-f311a47726b3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -174,7 +174,7 @@ "nosniff" ], "Date": [ - "Thu, 24 Feb 2022 23:47:19 GMT" + "Tue, 17 May 2022 13:38:30 GMT" ], "Content-Length": [ "192" @@ -186,26 +186,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG90564a6f\",\r\n \"name\": \"PSTestRG90564a6f\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGc96a93a6\",\r\n \"name\": \"PSTestRGc96a93a6\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG90564a6f/providers/Microsoft.Compute/virtualMachines/PSTestVM905640?api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTA1NjRhNmYvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy9QU1Rlc3RWTTkwNTY0MD9hcGktdmVyc2lvbj0yMDIxLTExLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGc96a93a6/providers/Microsoft.Compute/virtualMachines/PSTestVMc96a90?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYzk2YTkzYTYvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy9QU1Rlc3RWTWM5NmE5MD9hcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "aaf2280c-a206-4924-8fa8-c2d624c6fb63" + "e3de6dd3-1e08-4294-8d80-8626ffe21a43" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ] }, "ResponseHeaders": { @@ -219,13 +219,13 @@ "gateway" ], "x-ms-request-id": [ - "f243d6e0-4e37-4e50-80ff-51ffd5a8fab3" + "dad98521-c78c-4fe3-82ba-23d200b1bd99" ], "x-ms-correlation-request-id": [ - "f243d6e0-4e37-4e50-80ff-51ffd5a8fab3" + "dad98521-c78c-4fe3-82ba-23d200b1bd99" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T234722Z:f243d6e0-4e37-4e50-80ff-51ffd5a8fab3" + "JIOINDIAWEST:20220517T133831Z:dad98521-c78c-4fe3-82ba-23d200b1bd99" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -234,7 +234,7 @@ "nosniff" ], "Date": [ - "Thu, 24 Feb 2022 23:47:22 GMT" + "Tue, 17 May 2022 13:38:30 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -246,23 +246,23 @@ "236" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Compute/virtualMachines/PSTestVM905640' under resource group 'PSTestRG90564a6f' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Compute/virtualMachines/PSTestVMc96a90' under resource group 'PSTestRGc96a93a6' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG90564a6f/providers/Microsoft.Compute/virtualMachines/PSTestVM905640?api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTA1NjRhNmYvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy9QU1Rlc3RWTTkwNTY0MD9hcGktdmVyc2lvbj0yMDIxLTExLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGc96a93a6/providers/Microsoft.Compute/virtualMachines/PSTestVMc96a90?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYzk2YTkzYTYvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy9QU1Rlc3RWTWM5NmE5MD9hcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d97d3f9a-7e1e-411b-a3fc-65fa08b9d784" + "032a228d-061a-4d48-b6d1-12630f498ba9" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ] }, "ResponseHeaders": { @@ -273,13 +273,13 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/LowCostGet3Min;3998,Microsoft.Compute/LowCostGet30Min;31989" + "Microsoft.Compute/LowCostGet3Min;3986,Microsoft.Compute/LowCostGet30Min;31855" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "4874324e-b6e5-4255-b4ab-2974b8902a14" + "fa0087bd-6647-4057-a065-7b995108497b" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -289,19 +289,19 @@ "11995" ], "x-ms-correlation-request-id": [ - "fbf0fd48-c032-4395-b054-cf43ab88aace" + "beb2a70c-8ccf-47d1-8a3a-c1334ccd14c1" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T234958Z:fbf0fd48-c032-4395-b054-cf43ab88aace" + "JIOINDIAWEST:20220517T134053Z:beb2a70c-8ccf-47d1-8a3a-c1334ccd14c1" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 24 Feb 2022 23:49:58 GMT" + "Tue, 17 May 2022 13:40:53 GMT" ], "Content-Length": [ - "2265" + "2195" ], "Content-Type": [ "application/json; charset=utf-8" @@ -310,26 +310,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"PSTestVM905640\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG90564a6f/providers/Microsoft.Compute/virtualMachines/PSTestVM905640\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MabUsed\": \"Yes\",\r\n \"AutoShutDown\": \"No\",\r\n \"Purpose\": \"PSTest\",\r\n \"Owner\": \"sarath\",\r\n \"DeleteBy\": \"06-2022\",\r\n \"azsecpack\": \"nonprod\",\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": \"true\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"26c1c616-17b8-49e5-bc1e-7cd5e0330329\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D1_v2\"\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.4946.220202\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"PSTestVM905640_OsDisk_1_1ec4e5f5dcbc49868932538e47365c83\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG90564a6f/providers/Microsoft.Compute/disks/PSTestVM905640_OsDisk_1_1ec4e5f5dcbc49868932538e47365c83\"\r\n },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"PSTestVM905640\",\r\n \"adminUsername\": \"demouser\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"AutomaticByOS\",\r\n \"assessmentMode\": \"ImageDefault\"\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG90564a6f/providers/Microsoft.Network/networkInterfaces/PSTestNIC905640\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"timeCreated\": \"2022-02-24T18:48:03.7590758-05:00\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"PSTestVMc96a90\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGc96a93a6/providers/Microsoft.Compute/virtualMachines/PSTestVMc96a90\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"DeleteBy\": \"06-2022\",\r\n \"MabUsed\": \"Yes\",\r\n \"Purpose\": \"PSTest\",\r\n \"Owner\": \"sarath\",\r\n \"AutoShutDown\": \"No\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"b6eddf25-29b2-47a0-845c-bca34beef007\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D1_v2\"\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.5125.220505\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"PSTestVMc96a90_OsDisk_1_9ce8c604326e4f0e84e8ae120da988bf\",\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/PSTestRGc96a93a6/providers/Microsoft.Compute/disks/PSTestVMc96a90_OsDisk_1_9ce8c604326e4f0e84e8ae120da988bf\"\r\n },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"PSTestVMc96a90\",\r\n \"adminUsername\": \"demouser\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"AutomaticByOS\",\r\n \"assessmentMode\": \"ImageDefault\"\r\n },\r\n \"enableVMAgentPlatformUpdates\": false\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/PSTestRGc96a93a6/providers/Microsoft.Network/networkInterfaces/PSTestNICc96a90\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"timeCreated\": \"2022-05-17T19:09:02.0429233+05:30\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG90564a6f/providers/Microsoft.Compute/virtualMachines/PSTestVM905640?api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTA1NjRhNmYvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy9QU1Rlc3RWTTkwNTY0MD9hcGktdmVyc2lvbj0yMDIxLTExLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGc96a93a6/providers/Microsoft.Compute/virtualMachines/PSTestVMc96a90?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYzk2YTkzYTYvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy9QU1Rlc3RWTWM5NmE5MD9hcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "875816ab-3f6b-401c-8ef8-9f17dcb24b45" + "58c0c05f-c618-4aad-b9a5-ed2c30983b6b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ] }, "ResponseHeaders": { @@ -340,35 +340,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/LowCostGet3Min;3993,Microsoft.Compute/LowCostGet30Min;31986" + "Microsoft.Compute/LowCostGet3Min;3987,Microsoft.Compute/LowCostGet30Min;31843" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a1ca44a1-2201-4f66-9be0-981663698567" + "fc35a311-9936-476c-8487-56310f2401fd" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" + "11985" ], "x-ms-correlation-request-id": [ - "7accf2b2-d246-4321-95d8-7a4b739c813c" + "89064155-abd0-447f-a887-4114a27a6264" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T235210Z:7accf2b2-d246-4321-95d8-7a4b739c813c" + "JIOINDIAWEST:20220517T134330Z:89064155-abd0-447f-a887-4114a27a6264" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 24 Feb 2022 23:52:10 GMT" + "Tue, 17 May 2022 13:43:30 GMT" ], "Content-Length": [ - "2828" + "2758" ], "Content-Type": [ "application/json; charset=utf-8" @@ -377,26 +377,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"PSTestVM905640\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG90564a6f/providers/Microsoft.Compute/virtualMachines/PSTestVM905640\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MabUsed\": \"Yes\",\r\n \"AutoShutDown\": \"No\",\r\n \"Purpose\": \"PSTest\",\r\n \"Owner\": \"sarath\",\r\n \"DeleteBy\": \"06-2022\",\r\n \"azsecpack\": \"nonprod\",\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": \"true\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"26c1c616-17b8-49e5-bc1e-7cd5e0330329\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D1_v2\"\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.4946.220202\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"PSTestVM905640_OsDisk_1_1ec4e5f5dcbc49868932538e47365c83\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG90564a6f/providers/Microsoft.Compute/disks/PSTestVM905640_OsDisk_1_1ec4e5f5dcbc49868932538e47365c83\"\r\n },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"PSTestVM905640\",\r\n \"adminUsername\": \"demouser\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"AutomaticByOS\",\r\n \"assessmentMode\": \"ImageDefault\"\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG90564a6f/providers/Microsoft.Network/networkInterfaces/PSTestNIC905640\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"timeCreated\": \"2022-02-24T18:48:03.7590758-05:00\"\r\n },\r\n \"resources\": [\r\n {\r\n \"name\": \"BGInfo\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG90564a6f/providers/Microsoft.Compute/virtualMachines/PSTestVM905640/extensions/BGInfo\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"southeastasia\",\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}", + "ResponseBody": "{\r\n \"name\": \"PSTestVMc96a90\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGc96a93a6/providers/Microsoft.Compute/virtualMachines/PSTestVMc96a90\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"DeleteBy\": \"06-2022\",\r\n \"MabUsed\": \"Yes\",\r\n \"Purpose\": \"PSTest\",\r\n \"Owner\": \"sarath\",\r\n \"AutoShutDown\": \"No\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"b6eddf25-29b2-47a0-845c-bca34beef007\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D1_v2\"\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.5125.220505\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"PSTestVMc96a90_OsDisk_1_9ce8c604326e4f0e84e8ae120da988bf\",\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/PSTestRGc96a93a6/providers/Microsoft.Compute/disks/PSTestVMc96a90_OsDisk_1_9ce8c604326e4f0e84e8ae120da988bf\"\r\n },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"PSTestVMc96a90\",\r\n \"adminUsername\": \"demouser\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"AutomaticByOS\",\r\n \"assessmentMode\": \"ImageDefault\"\r\n },\r\n \"enableVMAgentPlatformUpdates\": false\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/PSTestRGc96a93a6/providers/Microsoft.Network/networkInterfaces/PSTestNICc96a90\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"timeCreated\": \"2022-05-17T19:09:02.0429233+05:30\"\r\n },\r\n \"resources\": [\r\n {\r\n \"name\": \"BGInfo\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGc96a93a6/providers/Microsoft.Compute/virtualMachines/PSTestVMc96a90/extensions/BGInfo\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"BGInfo\",\r\n \"typeHandlerVersion\": \"2.2\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG90564a6f/providers/Microsoft.Network/virtualNetworks/PSTestVNET905640?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTA1NjRhNmYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy9QU1Rlc3RWTkVUOTA1NjQwP2FwaS12ZXJzaW9uPTIwMjEtMDUtMDE=", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGc96a93a6/providers/Microsoft.Network/virtualNetworks/PSTestVNETc96a90?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYzk2YTkzYTYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy9QU1Rlc3RWTkVUYzk2YTkwP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0f55ca56-578a-47b1-8e26-b271b3fad573" + "fa1220cd-9281-4616-a8c8-ad468ecb48b4" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ] }, "ResponseHeaders": { @@ -410,13 +410,13 @@ "gateway" ], "x-ms-request-id": [ - "cc1209cb-7ed0-4501-9dfb-fdb8c78ff262" + "1251f612-c53e-4899-8892-8db415405f4a" ], "x-ms-correlation-request-id": [ - "cc1209cb-7ed0-4501-9dfb-fdb8c78ff262" + "1251f612-c53e-4899-8892-8db415405f4a" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T234726Z:cc1209cb-7ed0-4501-9dfb-fdb8c78ff262" + "JIOINDIAWEST:20220517T133832Z:1251f612-c53e-4899-8892-8db415405f4a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -425,7 +425,7 @@ "nosniff" ], "Date": [ - "Thu, 24 Feb 2022 23:47:25 GMT" + "Tue, 17 May 2022 13:38:32 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -437,23 +437,23 @@ "238" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/virtualNetworks/PSTestVNET905640' under resource group 'PSTestRG90564a6f' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/virtualNetworks/PSTestVNETc96a90' under resource group 'PSTestRGc96a93a6' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG90564a6f/providers/Microsoft.Network/virtualNetworks/PSTestVNET905640?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTA1NjRhNmYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy9QU1Rlc3RWTkVUOTA1NjQwP2FwaS12ZXJzaW9uPTIwMjEtMDUtMDE=", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGc96a93a6/providers/Microsoft.Network/virtualNetworks/PSTestVNETc96a90?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYzk2YTkzYTYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy9QU1Rlc3RWTkVUYzk2YTkwP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0f55ca56-578a-47b1-8e26-b271b3fad573" + "fa1220cd-9281-4616-a8c8-ad468ecb48b4" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ] }, "ResponseHeaders": { @@ -464,16 +464,16 @@ "no-cache" ], "ETag": [ - "W/\"27fd27d2-6a06-4bcb-8eec-4dde721d6072\"" + "W/\"fc48ce57-b558-42a4-9826-8cc88d4c7623\"" ], "x-ms-request-id": [ - "4d7d51bd-6fb8-4b92-8dd9-8ae13e6497d0" + "bec1556e-f071-40c9-9f82-dcbb30ad632c" ], "x-ms-correlation-request-id": [ - "a9e38e07-46ba-4084-8396-8620f8d33c42" + "8baa83d3-856f-4446-a28a-5ab7605b7cfa" ], "x-ms-arm-service-request-id": [ - "7b64d098-bf02-42a8-aaae-7ca894ebd08f" + "f07b3f26-7669-4dc3-b5ca-3e21e1a27c48" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -486,13 +486,13 @@ "11997" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T234737Z:a9e38e07-46ba-4084-8396-8620f8d33c42" + "JIOINDIAWEST:20220517T133841Z:8baa83d3-856f-4446-a28a-5ab7605b7cfa" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 24 Feb 2022 23:47:36 GMT" + "Tue, 17 May 2022 13:38:40 GMT" ], "Content-Length": [ "1315" @@ -504,26 +504,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"PSTestVNET905640\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG90564a6f/providers/Microsoft.Network/virtualNetworks/PSTestVNET905640\",\r\n \"etag\": \"W/\\\"27fd27d2-6a06-4bcb-8eec-4dde721d6072\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"e4f03eb1-0d3d-482d-bbf6-3deded3fda2f\",\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\": \"PSTestSNC905640\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG90564a6f/providers/Microsoft.Network/virtualNetworks/PSTestVNET905640/subnets/PSTestSNC905640\",\r\n \"etag\": \"W/\\\"27fd27d2-6a06-4bcb-8eec-4dde721d6072\\\"\",\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 },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"PSTestVNETc96a90\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGc96a93a6/providers/Microsoft.Network/virtualNetworks/PSTestVNETc96a90\",\r\n \"etag\": \"W/\\\"fc48ce57-b558-42a4-9826-8cc88d4c7623\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"43becac5-fddb-4461-88e0-447f62ed801d\",\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\": \"PSTestSNCc96a90\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGc96a93a6/providers/Microsoft.Network/virtualNetworks/PSTestVNETc96a90/subnets/PSTestSNCc96a90\",\r\n \"etag\": \"W/\\\"fc48ce57-b558-42a4-9826-8cc88d4c7623\\\"\",\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 },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG90564a6f/providers/Microsoft.Network/virtualNetworks/PSTestVNET905640?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTA1NjRhNmYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy9QU1Rlc3RWTkVUOTA1NjQwP2FwaS12ZXJzaW9uPTIwMjEtMDUtMDE=", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGc96a93a6/providers/Microsoft.Network/virtualNetworks/PSTestVNETc96a90?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYzk2YTkzYTYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy9QU1Rlc3RWTkVUYzk2YTkwP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0f55ca56-578a-47b1-8e26-b271b3fad573" + "fa1220cd-9281-4616-a8c8-ad468ecb48b4" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ] }, "ResponseHeaders": { @@ -534,16 +534,16 @@ "no-cache" ], "ETag": [ - "W/\"27fd27d2-6a06-4bcb-8eec-4dde721d6072\"" + "W/\"fc48ce57-b558-42a4-9826-8cc88d4c7623\"" ], "x-ms-request-id": [ - "e30b3f14-a644-485b-b095-de44bedc033e" + "b7d63f75-ca12-4f21-9816-25bb58d10580" ], "x-ms-correlation-request-id": [ - "2ccacfeb-377c-43aa-b3bb-bc622871460c" + "f445af9b-98a9-482f-a3a4-4863ba63ff94" ], "x-ms-arm-service-request-id": [ - "ee5177f0-2c16-48d0-96ff-287e9b2ff270" + "c8680104-2d2c-49b6-bd5a-8257e4efee9a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -556,13 +556,13 @@ "11996" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T234737Z:2ccacfeb-377c-43aa-b3bb-bc622871460c" + "JIOINDIAWEST:20220517T133841Z:f445af9b-98a9-482f-a3a4-4863ba63ff94" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 24 Feb 2022 23:47:36 GMT" + "Tue, 17 May 2022 13:38:40 GMT" ], "Content-Length": [ "1315" @@ -574,26 +574,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"PSTestVNET905640\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG90564a6f/providers/Microsoft.Network/virtualNetworks/PSTestVNET905640\",\r\n \"etag\": \"W/\\\"27fd27d2-6a06-4bcb-8eec-4dde721d6072\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"e4f03eb1-0d3d-482d-bbf6-3deded3fda2f\",\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\": \"PSTestSNC905640\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG90564a6f/providers/Microsoft.Network/virtualNetworks/PSTestVNET905640/subnets/PSTestSNC905640\",\r\n \"etag\": \"W/\\\"27fd27d2-6a06-4bcb-8eec-4dde721d6072\\\"\",\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 },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"PSTestVNETc96a90\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGc96a93a6/providers/Microsoft.Network/virtualNetworks/PSTestVNETc96a90\",\r\n \"etag\": \"W/\\\"fc48ce57-b558-42a4-9826-8cc88d4c7623\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"43becac5-fddb-4461-88e0-447f62ed801d\",\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\": \"PSTestSNCc96a90\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGc96a93a6/providers/Microsoft.Network/virtualNetworks/PSTestVNETc96a90/subnets/PSTestSNCc96a90\",\r\n \"etag\": \"W/\\\"fc48ce57-b558-42a4-9826-8cc88d4c7623\\\"\",\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 },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG90564a6f/providers/Microsoft.Network/virtualNetworks/PSTestVNET905640?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTA1NjRhNmYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy9QU1Rlc3RWTkVUOTA1NjQwP2FwaS12ZXJzaW9uPTIwMjEtMDUtMDE=", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGc96a93a6/providers/Microsoft.Network/virtualNetworks/PSTestVNETc96a90?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYzk2YTkzYTYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy9QU1Rlc3RWTkVUYzk2YTkwP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=", "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 \"applicationGatewayIpConfigurations\": []\r\n },\r\n \"name\": \"PSTestSNC905640\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"ipAllocations\": []\r\n },\r\n \"location\": \"southeastasia\"\r\n}", + "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 \"applicationGatewayIpConfigurations\": []\r\n },\r\n \"name\": \"PSTestSNCc96a90\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"ipAllocations\": []\r\n },\r\n \"location\": \"southeastasia\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "0f55ca56-578a-47b1-8e26-b271b3fad573" + "fa1220cd-9281-4616-a8c8-ad468ecb48b4" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -613,19 +613,19 @@ "3" ], "x-ms-request-id": [ - "3096691e-c07a-43f8-8636-51c1ce80f0a6" + "6f679cfa-2b8d-4e97-95a3-23fa7cbf6c72" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Network/locations/southeastasia/operations/3096691e-c07a-43f8-8636-51c1ce80f0a6?api-version=2021-05-01" + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Network/locations/southeastasia/operations/6f679cfa-2b8d-4e97-95a3-23fa7cbf6c72?api-version=2021-08-01" ], "x-ms-correlation-request-id": [ - "30cdd372-504b-4cb0-b217-cf4476e716a9" + "bc8d650d-4ce2-4220-a03e-2e205216594d" ], "Azure-AsyncNotification": [ "Enabled" ], "x-ms-arm-service-request-id": [ - "5efc7c75-23ae-4456-b813-d26b39dce3f7" + "bea85c15-256a-435b-abbc-33e33e8998eb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -638,13 +638,13 @@ "1199" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T234733Z:30cdd372-504b-4cb0-b217-cf4476e716a9" + "JIOINDIAWEST:20220517T133837Z:bc8d650d-4ce2-4220-a03e-2e205216594d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 24 Feb 2022 23:47:33 GMT" + "Tue, 17 May 2022 13:38:36 GMT" ], "Content-Length": [ "1313" @@ -656,23 +656,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"PSTestVNET905640\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG90564a6f/providers/Microsoft.Network/virtualNetworks/PSTestVNET905640\",\r\n \"etag\": \"W/\\\"d2439058-d522-451f-b63b-4278c85f115c\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"e4f03eb1-0d3d-482d-bbf6-3deded3fda2f\",\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\": \"PSTestSNC905640\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG90564a6f/providers/Microsoft.Network/virtualNetworks/PSTestVNET905640/subnets/PSTestSNC905640\",\r\n \"etag\": \"W/\\\"d2439058-d522-451f-b63b-4278c85f115c\\\"\",\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 },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"PSTestVNETc96a90\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGc96a93a6/providers/Microsoft.Network/virtualNetworks/PSTestVNETc96a90\",\r\n \"etag\": \"W/\\\"b573587c-b65c-464a-b20b-4f691e7791c7\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"43becac5-fddb-4461-88e0-447f62ed801d\",\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\": \"PSTestSNCc96a90\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGc96a93a6/providers/Microsoft.Network/virtualNetworks/PSTestVNETc96a90/subnets/PSTestSNCc96a90\",\r\n \"etag\": \"W/\\\"b573587c-b65c-464a-b20b-4f691e7791c7\\\"\",\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 },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Network/locations/southeastasia/operations/3096691e-c07a-43f8-8636-51c1ce80f0a6?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzMwOTY2OTFlLWMwN2EtNDNmOC04NjM2LTUxYzFjZTgwZjBhNj9hcGktdmVyc2lvbj0yMDIxLTA1LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Network/locations/southeastasia/operations/6f679cfa-2b8d-4e97-95a3-23fa7cbf6c72?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzZmNjc5Y2ZhLTJiOGQtNGU5Ny05NWEzLTIzZmE3Y2JmNmM3Mj9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0f55ca56-578a-47b1-8e26-b271b3fad573" + "fa1220cd-9281-4616-a8c8-ad468ecb48b4" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ] }, "ResponseHeaders": { @@ -683,13 +683,13 @@ "no-cache" ], "x-ms-request-id": [ - "ace1c5d3-1b80-423d-8c77-030de5f56411" + "dbfb28eb-7afe-4460-b4fa-af0ccd505417" ], "x-ms-correlation-request-id": [ - "b07764a7-5a64-4a3a-8f57-1b9f9b29d6b4" + "fbe8c751-ac26-47fa-b5e2-0bcae3dd6bca" ], "x-ms-arm-service-request-id": [ - "c879b8c7-dfa8-4871-b687-b50c6a55abc7" + "5100130c-7746-495b-9d4f-714ba1c02219" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -702,13 +702,13 @@ "11998" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T234737Z:b07764a7-5a64-4a3a-8f57-1b9f9b29d6b4" + "JIOINDIAWEST:20220517T133840Z:fbe8c751-ac26-47fa-b5e2-0bcae3dd6bca" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 24 Feb 2022 23:47:36 GMT" + "Tue, 17 May 2022 13:38:40 GMT" ], "Content-Length": [ "29" @@ -724,22 +724,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG90564a6f/providers/Microsoft.Network/publicIPAddresses/pstestpublicdns905640?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTA1NjRhNmYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BzdGVzdHB1YmxpY2RuczkwNTY0MD9hcGktdmVyc2lvbj0yMDIxLTA1LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGc96a93a6/providers/Microsoft.Network/publicIPAddresses/pstestpublicdnsc96a90?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYzk2YTkzYTYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BzdGVzdHB1YmxpY2Ruc2M5NmE5MD9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2fc938c2-0cd6-475c-ac35-9c15592b6b86" + "690cf64b-e024-448b-9f5f-52dbd97e6df7" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ] }, "ResponseHeaders": { @@ -753,13 +753,13 @@ "gateway" ], "x-ms-request-id": [ - "91916fd3-fe0b-4952-8514-1f53b46ced7c" + "a4dc3d3b-8537-4644-804d-be3ab96b3a14" ], "x-ms-correlation-request-id": [ - "91916fd3-fe0b-4952-8514-1f53b46ced7c" + "a4dc3d3b-8537-4644-804d-be3ab96b3a14" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T234738Z:91916fd3-fe0b-4952-8514-1f53b46ced7c" + "JIOINDIAWEST:20220517T133842Z:a4dc3d3b-8537-4644-804d-be3ab96b3a14" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -768,7 +768,7 @@ "nosniff" ], "Date": [ - "Thu, 24 Feb 2022 23:47:37 GMT" + "Tue, 17 May 2022 13:38:41 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -780,23 +780,23 @@ "245" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/publicIPAddresses/pstestpublicdns905640' under resource group 'PSTestRG90564a6f' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/publicIPAddresses/pstestpublicdnsc96a90' under resource group 'PSTestRGc96a93a6' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG90564a6f/providers/Microsoft.Network/publicIPAddresses/pstestpublicdns905640?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTA1NjRhNmYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BzdGVzdHB1YmxpY2RuczkwNTY0MD9hcGktdmVyc2lvbj0yMDIxLTA1LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGc96a93a6/providers/Microsoft.Network/publicIPAddresses/pstestpublicdnsc96a90?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYzk2YTkzYTYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BzdGVzdHB1YmxpY2Ruc2M5NmE5MD9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2fc938c2-0cd6-475c-ac35-9c15592b6b86" + "690cf64b-e024-448b-9f5f-52dbd97e6df7" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ] }, "ResponseHeaders": { @@ -807,16 +807,16 @@ "no-cache" ], "ETag": [ - "W/\"e616ea51-e0f8-47ee-bb77-b4c841a05b66\"" + "W/\"63f208fe-b901-4aa2-bc3a-e48ce4a84a47\"" ], "x-ms-request-id": [ - "82d125cc-01f4-4aa0-8352-ef5e69a16ec1" + "1d6fe478-ae3b-4706-8fe8-cfdc9a8009df" ], "x-ms-correlation-request-id": [ - "fd51784a-c0be-4cac-acc4-e00c78a1823b" + "660c9ce2-4cea-422c-bdfa-68a186f16ffb" ], "x-ms-arm-service-request-id": [ - "1ee3a210-0924-4b5b-8a36-2d663b1ea8ab" + "1e205516-58e3-4cbf-bf39-56f1152a3c44" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -829,16 +829,16 @@ "11993" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T234744Z:fd51784a-c0be-4cac-acc4-e00c78a1823b" + "JIOINDIAWEST:20220517T133846Z:660c9ce2-4cea-422c-bdfa-68a186f16ffb" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 24 Feb 2022 23:47:43 GMT" + "Tue, 17 May 2022 13:38:45 GMT" ], "Content-Length": [ - "697" + "699" ], "Content-Type": [ "application/json; charset=utf-8" @@ -847,26 +847,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"pstestpublicdns905640\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG90564a6f/providers/Microsoft.Network/publicIPAddresses/pstestpublicdns905640\",\r\n \"etag\": \"W/\\\"e616ea51-e0f8-47ee-bb77-b4c841a05b66\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"24c7b198-f0e2-4228-8e65-cd0466ae259a\",\r\n \"ipAddress\": \"13.76.222.53\",\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 \"tier\": \"Regional\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"pstestpublicdnsc96a90\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGc96a93a6/providers/Microsoft.Network/publicIPAddresses/pstestpublicdnsc96a90\",\r\n \"etag\": \"W/\\\"63f208fe-b901-4aa2-bc3a-e48ce4a84a47\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"57f5a2fb-2d54-4a67-aba5-4c4f15a1af6a\",\r\n \"ipAddress\": \"137.116.142.46\",\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 \"tier\": \"Regional\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG90564a6f/providers/Microsoft.Network/publicIPAddresses/pstestpublicdns905640?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTA1NjRhNmYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BzdGVzdHB1YmxpY2RuczkwNTY0MD9hcGktdmVyc2lvbj0yMDIxLTA1LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGc96a93a6/providers/Microsoft.Network/publicIPAddresses/pstestpublicdnsc96a90?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYzk2YTkzYTYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BzdGVzdHB1YmxpY2Ruc2M5NmE5MD9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2fc938c2-0cd6-475c-ac35-9c15592b6b86" + "690cf64b-e024-448b-9f5f-52dbd97e6df7" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ] }, "ResponseHeaders": { @@ -877,16 +877,16 @@ "no-cache" ], "ETag": [ - "W/\"e616ea51-e0f8-47ee-bb77-b4c841a05b66\"" + "W/\"63f208fe-b901-4aa2-bc3a-e48ce4a84a47\"" ], "x-ms-request-id": [ - "0aeba7d9-22f0-4407-b38c-43141a43d550" + "0bca6fae-414e-4fd7-b77c-24008eddecb0" ], "x-ms-correlation-request-id": [ - "7db036ce-3637-488e-bc76-81a5b9e7b714" + "039f0905-2f9d-4742-a118-4425a392b82a" ], "x-ms-arm-service-request-id": [ - "bfca14fc-27af-426a-aae9-d7c29406304e" + "fd4fdd88-7178-4260-abfe-c9e6fe18faf5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -899,16 +899,16 @@ "11992" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T234744Z:7db036ce-3637-488e-bc76-81a5b9e7b714" + "JIOINDIAWEST:20220517T133846Z:039f0905-2f9d-4742-a118-4425a392b82a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 24 Feb 2022 23:47:43 GMT" + "Tue, 17 May 2022 13:38:45 GMT" ], "Content-Length": [ - "697" + "699" ], "Content-Type": [ "application/json; charset=utf-8" @@ -917,26 +917,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"pstestpublicdns905640\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG90564a6f/providers/Microsoft.Network/publicIPAddresses/pstestpublicdns905640\",\r\n \"etag\": \"W/\\\"e616ea51-e0f8-47ee-bb77-b4c841a05b66\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"24c7b198-f0e2-4228-8e65-cd0466ae259a\",\r\n \"ipAddress\": \"13.76.222.53\",\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 \"tier\": \"Regional\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"pstestpublicdnsc96a90\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGc96a93a6/providers/Microsoft.Network/publicIPAddresses/pstestpublicdnsc96a90\",\r\n \"etag\": \"W/\\\"63f208fe-b901-4aa2-bc3a-e48ce4a84a47\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"57f5a2fb-2d54-4a67-aba5-4c4f15a1af6a\",\r\n \"ipAddress\": \"137.116.142.46\",\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 \"tier\": \"Regional\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG90564a6f/providers/Microsoft.Network/publicIPAddresses/pstestpublicdns905640?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTA1NjRhNmYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BzdGVzdHB1YmxpY2RuczkwNTY0MD9hcGktdmVyc2lvbj0yMDIxLTA1LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGc96a93a6/providers/Microsoft.Network/publicIPAddresses/pstestpublicdnsc96a90?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYzk2YTkzYTYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BzdGVzdHB1YmxpY2Ruc2M5NmE5MD9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "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\": \"southeastasia\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "2fc938c2-0cd6-475c-ac35-9c15592b6b86" + "690cf64b-e024-448b-9f5f-52dbd97e6df7" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -956,19 +956,19 @@ "1" ], "x-ms-request-id": [ - "7668ec4f-84cd-4029-b8ff-d148bf61f912" + "412c7b80-4ef7-41b8-b4f8-da3c9b5f566d" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Network/locations/southeastasia/operations/7668ec4f-84cd-4029-b8ff-d148bf61f912?api-version=2021-05-01" + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Network/locations/southeastasia/operations/412c7b80-4ef7-41b8-b4f8-da3c9b5f566d?api-version=2021-08-01" ], "x-ms-correlation-request-id": [ - "e95fd6ab-dca0-45f1-908b-c369f02e3f72" + "26a57773-6dde-4d0b-9cb7-cf5468271c97" ], "Azure-AsyncNotification": [ "Enabled" ], "x-ms-arm-service-request-id": [ - "7e398b19-0c48-44f1-8596-190a9a18cb17" + "d6670aad-bd58-4b69-bea9-bb4b8d444b93" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -981,13 +981,13 @@ "1198" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T234742Z:e95fd6ab-dca0-45f1-908b-c369f02e3f72" + "JIOINDIAWEST:20220517T133844Z:26a57773-6dde-4d0b-9cb7-cf5468271c97" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 24 Feb 2022 23:47:41 GMT" + "Tue, 17 May 2022 13:38:43 GMT" ], "Content-Length": [ "662" @@ -999,23 +999,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"pstestpublicdns905640\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG90564a6f/providers/Microsoft.Network/publicIPAddresses/pstestpublicdns905640\",\r\n \"etag\": \"W/\\\"926fe21f-b056-472e-874d-0d2385bce0f6\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"24c7b198-f0e2-4228-8e65-cd0466ae259a\",\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 \"tier\": \"Regional\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"pstestpublicdnsc96a90\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGc96a93a6/providers/Microsoft.Network/publicIPAddresses/pstestpublicdnsc96a90\",\r\n \"etag\": \"W/\\\"84f91136-a822-4da2-aa12-329b94d71b99\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"57f5a2fb-2d54-4a67-aba5-4c4f15a1af6a\",\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 \"tier\": \"Regional\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Network/locations/southeastasia/operations/7668ec4f-84cd-4029-b8ff-d148bf61f912?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzc2NjhlYzRmLTg0Y2QtNDAyOS1iOGZmLWQxNDhiZjYxZjkxMj9hcGktdmVyc2lvbj0yMDIxLTA1LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Network/locations/southeastasia/operations/412c7b80-4ef7-41b8-b4f8-da3c9b5f566d?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzQxMmM3YjgwLTRlZjctNDFiOC1iNGY4LWRhM2M5YjVmNTY2ZD9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2fc938c2-0cd6-475c-ac35-9c15592b6b86" + "690cf64b-e024-448b-9f5f-52dbd97e6df7" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ] }, "ResponseHeaders": { @@ -1026,13 +1026,13 @@ "no-cache" ], "x-ms-request-id": [ - "150a98bb-dc5c-4af1-b79b-c5221f8af7fb" + "ca83c846-c4c7-43ae-a00f-e16a3864831d" ], "x-ms-correlation-request-id": [ - "e264a1db-bd3a-4dbd-8abe-33be6b91aa26" + "7f95f741-e4d9-4aaf-81b8-c296285b9122" ], "x-ms-arm-service-request-id": [ - "d2201511-2545-4150-a101-3464c283203f" + "17eaf50c-8965-440c-ba52-63869567a2d3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1045,13 +1045,13 @@ "11994" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T234743Z:e264a1db-bd3a-4dbd-8abe-33be6b91aa26" + "JIOINDIAWEST:20220517T133845Z:7f95f741-e4d9-4aaf-81b8-c296285b9122" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 24 Feb 2022 23:47:42 GMT" + "Tue, 17 May 2022 13:38:44 GMT" ], "Content-Length": [ "29" @@ -1067,22 +1067,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG90564a6f/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG905640?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTA1NjRhNmYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtTZWN1cml0eUdyb3Vwcy9QU1Rlc3ROU0c5MDU2NDA/YXBpLXZlcnNpb249MjAyMS0wNS0wMQ==", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGc96a93a6/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGc96a90?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYzk2YTkzYTYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtTZWN1cml0eUdyb3Vwcy9QU1Rlc3ROU0djOTZhOTA/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5006a62b-fc22-4250-b8bb-0032185bc158" + "9808cfb9-ad40-4479-bda2-f52178a65f19" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ] }, "ResponseHeaders": { @@ -1096,13 +1096,13 @@ "gateway" ], "x-ms-request-id": [ - "03f8ce72-3754-47b6-a585-123e066d2b7c" + "a53273f9-eff8-4d56-ad6a-c67eee0c2bed" ], "x-ms-correlation-request-id": [ - "03f8ce72-3754-47b6-a585-123e066d2b7c" + "a53273f9-eff8-4d56-ad6a-c67eee0c2bed" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T234744Z:03f8ce72-3754-47b6-a585-123e066d2b7c" + "JIOINDIAWEST:20220517T133846Z:a53273f9-eff8-4d56-ad6a-c67eee0c2bed" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1111,7 +1111,7 @@ "nosniff" ], "Date": [ - "Thu, 24 Feb 2022 23:47:43 GMT" + "Tue, 17 May 2022 13:38:45 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1123,23 +1123,23 @@ "243" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/networkSecurityGroups/PSTestNSG905640' under resource group 'PSTestRG90564a6f' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/networkSecurityGroups/PSTestNSGc96a90' under resource group 'PSTestRGc96a93a6' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG90564a6f/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG905640?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTA1NjRhNmYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtTZWN1cml0eUdyb3Vwcy9QU1Rlc3ROU0c5MDU2NDA/YXBpLXZlcnNpb249MjAyMS0wNS0wMQ==", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGc96a93a6/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGc96a90?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYzk2YTkzYTYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtTZWN1cml0eUdyb3Vwcy9QU1Rlc3ROU0djOTZhOTA/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5006a62b-fc22-4250-b8bb-0032185bc158" + "9808cfb9-ad40-4479-bda2-f52178a65f19" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ] }, "ResponseHeaders": { @@ -1150,16 +1150,16 @@ "no-cache" ], "ETag": [ - "W/\"6e29d76a-9ba8-4554-b83d-e5fbbc9da397\"" + "W/\"ba41ab87-b9d1-48d0-96f0-32fd11985f20\"" ], "x-ms-request-id": [ - "d910eaa7-e8c1-4fb7-afd1-3fd66c7ce32f" + "48d823b6-5664-4e09-b10d-b839ebe5f044" ], "x-ms-correlation-request-id": [ - "6fcb7500-99ca-4c92-a735-1e15751d6458" + "0366bf05-26b4-4952-8e58-c63dff6eb31c" ], "x-ms-arm-service-request-id": [ - "bbc2d673-af8c-4aaf-8e8e-3b0ecf497b8d" + "f1ff363c-6c03-4658-ba80-9a31106673db" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1172,13 +1172,13 @@ "11989" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T234751Z:6fcb7500-99ca-4c92-a735-1e15751d6458" + "JIOINDIAWEST:20220517T133852Z:0366bf05-26b4-4952-8e58-c63dff6eb31c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 24 Feb 2022 23:47:51 GMT" + "Tue, 17 May 2022 13:38:51 GMT" ], "Content-Length": [ "8475" @@ -1190,26 +1190,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"PSTestNSG905640\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG90564a6f/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG905640\",\r\n \"etag\": \"W/\\\"6e29d76a-9ba8-4554-b83d-e5fbbc9da397\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"2c82676e-9178-4abf-a8ee-2283987bc5a8\",\r\n \"securityRules\": [\r\n {\r\n \"name\": \"PSTestNSGRuleRDP905640\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG90564a6f/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG905640/securityRules/PSTestNSGRuleRDP905640\",\r\n \"etag\": \"W/\\\"6e29d76a-9ba8-4554-b83d-e5fbbc9da397\\\"\",\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\": \"PSTestNSGRuleWeb905640\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG90564a6f/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG905640/securityRules/PSTestNSGRuleWeb905640\",\r\n \"etag\": \"W/\\\"6e29d76a-9ba8-4554-b83d-e5fbbc9da397\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG90564a6f/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG905640/defaultSecurityRules/AllowVnetInBound\",\r\n \"etag\": \"W/\\\"6e29d76a-9ba8-4554-b83d-e5fbbc9da397\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG90564a6f/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG905640/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\r\n \"etag\": \"W/\\\"6e29d76a-9ba8-4554-b83d-e5fbbc9da397\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG90564a6f/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG905640/defaultSecurityRules/DenyAllInBound\",\r\n \"etag\": \"W/\\\"6e29d76a-9ba8-4554-b83d-e5fbbc9da397\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG90564a6f/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG905640/defaultSecurityRules/AllowVnetOutBound\",\r\n \"etag\": \"W/\\\"6e29d76a-9ba8-4554-b83d-e5fbbc9da397\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG90564a6f/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG905640/defaultSecurityRules/AllowInternetOutBound\",\r\n \"etag\": \"W/\\\"6e29d76a-9ba8-4554-b83d-e5fbbc9da397\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG90564a6f/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG905640/defaultSecurityRules/DenyAllOutBound\",\r\n \"etag\": \"W/\\\"6e29d76a-9ba8-4554-b83d-e5fbbc9da397\\\"\",\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}", + "ResponseBody": "{\r\n \"name\": \"PSTestNSGc96a90\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGc96a93a6/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGc96a90\",\r\n \"etag\": \"W/\\\"ba41ab87-b9d1-48d0-96f0-32fd11985f20\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"96e30a71-9768-41ce-a2ac-9db7635a12db\",\r\n \"securityRules\": [\r\n {\r\n \"name\": \"PSTestNSGRuleRDPc96a90\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGc96a93a6/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGc96a90/securityRules/PSTestNSGRuleRDPc96a90\",\r\n \"etag\": \"W/\\\"ba41ab87-b9d1-48d0-96f0-32fd11985f20\\\"\",\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\": \"PSTestNSGRuleWebc96a90\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGc96a93a6/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGc96a90/securityRules/PSTestNSGRuleWebc96a90\",\r\n \"etag\": \"W/\\\"ba41ab87-b9d1-48d0-96f0-32fd11985f20\\\"\",\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/PSTestRGc96a93a6/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGc96a90/defaultSecurityRules/AllowVnetInBound\",\r\n \"etag\": \"W/\\\"ba41ab87-b9d1-48d0-96f0-32fd11985f20\\\"\",\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/PSTestRGc96a93a6/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGc96a90/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\r\n \"etag\": \"W/\\\"ba41ab87-b9d1-48d0-96f0-32fd11985f20\\\"\",\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/PSTestRGc96a93a6/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGc96a90/defaultSecurityRules/DenyAllInBound\",\r\n \"etag\": \"W/\\\"ba41ab87-b9d1-48d0-96f0-32fd11985f20\\\"\",\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/PSTestRGc96a93a6/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGc96a90/defaultSecurityRules/AllowVnetOutBound\",\r\n \"etag\": \"W/\\\"ba41ab87-b9d1-48d0-96f0-32fd11985f20\\\"\",\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/PSTestRGc96a93a6/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGc96a90/defaultSecurityRules/AllowInternetOutBound\",\r\n \"etag\": \"W/\\\"ba41ab87-b9d1-48d0-96f0-32fd11985f20\\\"\",\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/PSTestRGc96a93a6/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGc96a90/defaultSecurityRules/DenyAllOutBound\",\r\n \"etag\": \"W/\\\"ba41ab87-b9d1-48d0-96f0-32fd11985f20\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG90564a6f/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG905640?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTA1NjRhNmYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtTZWN1cml0eUdyb3Vwcy9QU1Rlc3ROU0c5MDU2NDA/YXBpLXZlcnNpb249MjAyMS0wNS0wMQ==", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGc96a93a6/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGc96a90?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYzk2YTkzYTYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtTZWN1cml0eUdyb3Vwcy9QU1Rlc3ROU0djOTZhOTA/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5006a62b-fc22-4250-b8bb-0032185bc158" + "9808cfb9-ad40-4479-bda2-f52178a65f19" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ] }, "ResponseHeaders": { @@ -1220,16 +1220,16 @@ "no-cache" ], "ETag": [ - "W/\"6e29d76a-9ba8-4554-b83d-e5fbbc9da397\"" + "W/\"ba41ab87-b9d1-48d0-96f0-32fd11985f20\"" ], "x-ms-request-id": [ - "fd3bcfc8-29f5-48cb-8f0f-db7483b2e20e" + "24bcfa07-f8e9-4230-9eb9-1eab07023dd9" ], "x-ms-correlation-request-id": [ - "25c46b2f-9f1f-4f9e-8217-05e88d48f6a3" + "ee8b1423-3668-40f5-9386-a9dd9075baf9" ], "x-ms-arm-service-request-id": [ - "b7a30ede-ec98-4e3a-b0e9-ad194bfc1333" + "1271df53-7558-4c74-a191-3095a8f9a507" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1242,13 +1242,13 @@ "11988" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T234751Z:25c46b2f-9f1f-4f9e-8217-05e88d48f6a3" + "JIOINDIAWEST:20220517T133852Z:ee8b1423-3668-40f5-9386-a9dd9075baf9" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 24 Feb 2022 23:47:51 GMT" + "Tue, 17 May 2022 13:38:52 GMT" ], "Content-Length": [ "8475" @@ -1260,26 +1260,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"PSTestNSG905640\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG90564a6f/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG905640\",\r\n \"etag\": \"W/\\\"6e29d76a-9ba8-4554-b83d-e5fbbc9da397\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"2c82676e-9178-4abf-a8ee-2283987bc5a8\",\r\n \"securityRules\": [\r\n {\r\n \"name\": \"PSTestNSGRuleRDP905640\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG90564a6f/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG905640/securityRules/PSTestNSGRuleRDP905640\",\r\n \"etag\": \"W/\\\"6e29d76a-9ba8-4554-b83d-e5fbbc9da397\\\"\",\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\": \"PSTestNSGRuleWeb905640\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG90564a6f/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG905640/securityRules/PSTestNSGRuleWeb905640\",\r\n \"etag\": \"W/\\\"6e29d76a-9ba8-4554-b83d-e5fbbc9da397\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG90564a6f/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG905640/defaultSecurityRules/AllowVnetInBound\",\r\n \"etag\": \"W/\\\"6e29d76a-9ba8-4554-b83d-e5fbbc9da397\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG90564a6f/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG905640/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\r\n \"etag\": \"W/\\\"6e29d76a-9ba8-4554-b83d-e5fbbc9da397\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG90564a6f/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG905640/defaultSecurityRules/DenyAllInBound\",\r\n \"etag\": \"W/\\\"6e29d76a-9ba8-4554-b83d-e5fbbc9da397\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG90564a6f/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG905640/defaultSecurityRules/AllowVnetOutBound\",\r\n \"etag\": \"W/\\\"6e29d76a-9ba8-4554-b83d-e5fbbc9da397\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG90564a6f/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG905640/defaultSecurityRules/AllowInternetOutBound\",\r\n \"etag\": \"W/\\\"6e29d76a-9ba8-4554-b83d-e5fbbc9da397\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG90564a6f/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG905640/defaultSecurityRules/DenyAllOutBound\",\r\n \"etag\": \"W/\\\"6e29d76a-9ba8-4554-b83d-e5fbbc9da397\\\"\",\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}", + "ResponseBody": "{\r\n \"name\": \"PSTestNSGc96a90\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGc96a93a6/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGc96a90\",\r\n \"etag\": \"W/\\\"ba41ab87-b9d1-48d0-96f0-32fd11985f20\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"96e30a71-9768-41ce-a2ac-9db7635a12db\",\r\n \"securityRules\": [\r\n {\r\n \"name\": \"PSTestNSGRuleRDPc96a90\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGc96a93a6/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGc96a90/securityRules/PSTestNSGRuleRDPc96a90\",\r\n \"etag\": \"W/\\\"ba41ab87-b9d1-48d0-96f0-32fd11985f20\\\"\",\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\": \"PSTestNSGRuleWebc96a90\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGc96a93a6/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGc96a90/securityRules/PSTestNSGRuleWebc96a90\",\r\n \"etag\": \"W/\\\"ba41ab87-b9d1-48d0-96f0-32fd11985f20\\\"\",\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/PSTestRGc96a93a6/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGc96a90/defaultSecurityRules/AllowVnetInBound\",\r\n \"etag\": \"W/\\\"ba41ab87-b9d1-48d0-96f0-32fd11985f20\\\"\",\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/PSTestRGc96a93a6/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGc96a90/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\r\n \"etag\": \"W/\\\"ba41ab87-b9d1-48d0-96f0-32fd11985f20\\\"\",\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/PSTestRGc96a93a6/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGc96a90/defaultSecurityRules/DenyAllInBound\",\r\n \"etag\": \"W/\\\"ba41ab87-b9d1-48d0-96f0-32fd11985f20\\\"\",\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/PSTestRGc96a93a6/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGc96a90/defaultSecurityRules/AllowVnetOutBound\",\r\n \"etag\": \"W/\\\"ba41ab87-b9d1-48d0-96f0-32fd11985f20\\\"\",\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/PSTestRGc96a93a6/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGc96a90/defaultSecurityRules/AllowInternetOutBound\",\r\n \"etag\": \"W/\\\"ba41ab87-b9d1-48d0-96f0-32fd11985f20\\\"\",\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/PSTestRGc96a93a6/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGc96a90/defaultSecurityRules/DenyAllOutBound\",\r\n \"etag\": \"W/\\\"ba41ab87-b9d1-48d0-96f0-32fd11985f20\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG90564a6f/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG905640?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTA1NjRhNmYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtTZWN1cml0eUdyb3Vwcy9QU1Rlc3ROU0c5MDU2NDA/YXBpLXZlcnNpb249MjAyMS0wNS0wMQ==", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGc96a93a6/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGc96a90?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYzk2YTkzYTYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtTZWN1cml0eUdyb3Vwcy9QU1Rlc3ROU0djOTZhOTA/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==", "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\": \"PSTestNSGRuleRDP905640\"\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\": \"PSTestNSGRuleWeb905640\"\r\n }\r\n ]\r\n },\r\n \"location\": \"southeastasia\"\r\n}", + "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\": \"PSTestNSGRuleRDPc96a90\"\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\": \"PSTestNSGRuleWebc96a90\"\r\n }\r\n ]\r\n },\r\n \"location\": \"southeastasia\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "5006a62b-fc22-4250-b8bb-0032185bc158" + "9808cfb9-ad40-4479-bda2-f52178a65f19" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1299,19 +1299,19 @@ "3" ], "x-ms-request-id": [ - "25248d8f-0829-4b11-8903-4739bc9483a6" + "23d89088-4780-44dd-b1e7-1eb61c4e85bd" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Network/locations/southeastasia/operations/25248d8f-0829-4b11-8903-4739bc9483a6?api-version=2021-05-01" + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Network/locations/southeastasia/operations/23d89088-4780-44dd-b1e7-1eb61c4e85bd?api-version=2021-08-01" ], "x-ms-correlation-request-id": [ - "9d770ad4-b70d-4164-a298-bf90782c1e2a" + "3316f949-10c6-4b11-a95b-c77221682f82" ], "Azure-AsyncNotification": [ "Enabled" ], "x-ms-arm-service-request-id": [ - "dc852466-6999-4332-9081-0bea069407bb" + "844c4437-cd4a-4017-bc80-3a29c59653b2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1324,13 +1324,13 @@ "1197" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T234748Z:9d770ad4-b70d-4164-a298-bf90782c1e2a" + "JIOINDIAWEST:20220517T133848Z:3316f949-10c6-4b11-a95b-c77221682f82" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 24 Feb 2022 23:47:48 GMT" + "Tue, 17 May 2022 13:38:48 GMT" ], "Content-Length": [ "8466" @@ -1342,23 +1342,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"PSTestNSG905640\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG90564a6f/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG905640\",\r\n \"etag\": \"W/\\\"f2efd058-f27d-4726-b7e7-fb51c508ad59\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"2c82676e-9178-4abf-a8ee-2283987bc5a8\",\r\n \"securityRules\": [\r\n {\r\n \"name\": \"PSTestNSGRuleRDP905640\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG90564a6f/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG905640/securityRules/PSTestNSGRuleRDP905640\",\r\n \"etag\": \"W/\\\"f2efd058-f27d-4726-b7e7-fb51c508ad59\\\"\",\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\": \"PSTestNSGRuleWeb905640\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG90564a6f/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG905640/securityRules/PSTestNSGRuleWeb905640\",\r\n \"etag\": \"W/\\\"f2efd058-f27d-4726-b7e7-fb51c508ad59\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG90564a6f/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG905640/defaultSecurityRules/AllowVnetInBound\",\r\n \"etag\": \"W/\\\"f2efd058-f27d-4726-b7e7-fb51c508ad59\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG90564a6f/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG905640/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\r\n \"etag\": \"W/\\\"f2efd058-f27d-4726-b7e7-fb51c508ad59\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG90564a6f/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG905640/defaultSecurityRules/DenyAllInBound\",\r\n \"etag\": \"W/\\\"f2efd058-f27d-4726-b7e7-fb51c508ad59\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG90564a6f/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG905640/defaultSecurityRules/AllowVnetOutBound\",\r\n \"etag\": \"W/\\\"f2efd058-f27d-4726-b7e7-fb51c508ad59\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG90564a6f/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG905640/defaultSecurityRules/AllowInternetOutBound\",\r\n \"etag\": \"W/\\\"f2efd058-f27d-4726-b7e7-fb51c508ad59\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG90564a6f/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG905640/defaultSecurityRules/DenyAllOutBound\",\r\n \"etag\": \"W/\\\"f2efd058-f27d-4726-b7e7-fb51c508ad59\\\"\",\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}", + "ResponseBody": "{\r\n \"name\": \"PSTestNSGc96a90\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGc96a93a6/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGc96a90\",\r\n \"etag\": \"W/\\\"367f1d67-60cd-4f3b-a030-9703b133d75c\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"96e30a71-9768-41ce-a2ac-9db7635a12db\",\r\n \"securityRules\": [\r\n {\r\n \"name\": \"PSTestNSGRuleRDPc96a90\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGc96a93a6/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGc96a90/securityRules/PSTestNSGRuleRDPc96a90\",\r\n \"etag\": \"W/\\\"367f1d67-60cd-4f3b-a030-9703b133d75c\\\"\",\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\": \"PSTestNSGRuleWebc96a90\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGc96a93a6/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGc96a90/securityRules/PSTestNSGRuleWebc96a90\",\r\n \"etag\": \"W/\\\"367f1d67-60cd-4f3b-a030-9703b133d75c\\\"\",\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/PSTestRGc96a93a6/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGc96a90/defaultSecurityRules/AllowVnetInBound\",\r\n \"etag\": \"W/\\\"367f1d67-60cd-4f3b-a030-9703b133d75c\\\"\",\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/PSTestRGc96a93a6/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGc96a90/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\r\n \"etag\": \"W/\\\"367f1d67-60cd-4f3b-a030-9703b133d75c\\\"\",\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/PSTestRGc96a93a6/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGc96a90/defaultSecurityRules/DenyAllInBound\",\r\n \"etag\": \"W/\\\"367f1d67-60cd-4f3b-a030-9703b133d75c\\\"\",\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/PSTestRGc96a93a6/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGc96a90/defaultSecurityRules/AllowVnetOutBound\",\r\n \"etag\": \"W/\\\"367f1d67-60cd-4f3b-a030-9703b133d75c\\\"\",\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/PSTestRGc96a93a6/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGc96a90/defaultSecurityRules/AllowInternetOutBound\",\r\n \"etag\": \"W/\\\"367f1d67-60cd-4f3b-a030-9703b133d75c\\\"\",\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/PSTestRGc96a93a6/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGc96a90/defaultSecurityRules/DenyAllOutBound\",\r\n \"etag\": \"W/\\\"367f1d67-60cd-4f3b-a030-9703b133d75c\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Network/locations/southeastasia/operations/25248d8f-0829-4b11-8903-4739bc9483a6?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzI1MjQ4ZDhmLTA4MjktNGIxMS04OTAzLTQ3MzliYzk0ODNhNj9hcGktdmVyc2lvbj0yMDIxLTA1LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Network/locations/southeastasia/operations/23d89088-4780-44dd-b1e7-1eb61c4e85bd?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzIzZDg5MDg4LTQ3ODAtNDRkZC1iMWU3LTFlYjYxYzRlODViZD9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5006a62b-fc22-4250-b8bb-0032185bc158" + "9808cfb9-ad40-4479-bda2-f52178a65f19" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ] }, "ResponseHeaders": { @@ -1369,13 +1369,13 @@ "no-cache" ], "x-ms-request-id": [ - "a333e42b-6aea-4201-adb2-97d50c134665" + "96e18452-099e-4572-8a10-f3e1bf169e7b" ], "x-ms-correlation-request-id": [ - "dcb5c569-3bcc-4a68-ac02-fc4fab528231" + "5fdefda2-9e53-4ef1-91ff-d468e01c51eb" ], "x-ms-arm-service-request-id": [ - "b2be6685-8c00-4ab8-8b94-700a99a2da70" + "a6919052-9f90-437d-a78a-297af8825e4e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1388,13 +1388,13 @@ "11990" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T234751Z:dcb5c569-3bcc-4a68-ac02-fc4fab528231" + "JIOINDIAWEST:20220517T133851Z:5fdefda2-9e53-4ef1-91ff-d468e01c51eb" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 24 Feb 2022 23:47:51 GMT" + "Tue, 17 May 2022 13:38:51 GMT" ], "Content-Length": [ "29" @@ -1410,22 +1410,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG90564a6f/providers/Microsoft.Network/networkInterfaces/PSTestNIC905640?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTA1NjRhNmYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL1BTVGVzdE5JQzkwNTY0MD9hcGktdmVyc2lvbj0yMDIxLTA1LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGc96a93a6/providers/Microsoft.Network/networkInterfaces/PSTestNICc96a90?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYzk2YTkzYTYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL1BTVGVzdE5JQ2M5NmE5MD9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "397f9859-30e1-4607-8bfe-cbdd5ae037c4" + "d87c9a39-5981-431e-8e44-efc65927e55c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ] }, "ResponseHeaders": { @@ -1439,13 +1439,13 @@ "gateway" ], "x-ms-request-id": [ - "3c398bb4-b16a-4125-9d6d-87e4a0505d2b" + "097d965d-d6a2-4071-b28f-4869a4214047" ], "x-ms-correlation-request-id": [ - "3c398bb4-b16a-4125-9d6d-87e4a0505d2b" + "097d965d-d6a2-4071-b28f-4869a4214047" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T234752Z:3c398bb4-b16a-4125-9d6d-87e4a0505d2b" + "JIOINDIAWEST:20220517T133852Z:097d965d-d6a2-4071-b28f-4869a4214047" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1454,7 +1454,7 @@ "nosniff" ], "Date": [ - "Thu, 24 Feb 2022 23:47:52 GMT" + "Tue, 17 May 2022 13:38:52 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1466,23 +1466,23 @@ "239" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/networkInterfaces/PSTestNIC905640' under resource group 'PSTestRG90564a6f' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/networkInterfaces/PSTestNICc96a90' under resource group 'PSTestRGc96a93a6' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG90564a6f/providers/Microsoft.Network/networkInterfaces/PSTestNIC905640?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTA1NjRhNmYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL1BTVGVzdE5JQzkwNTY0MD9hcGktdmVyc2lvbj0yMDIxLTA1LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGc96a93a6/providers/Microsoft.Network/networkInterfaces/PSTestNICc96a90?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYzk2YTkzYTYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL1BTVGVzdE5JQ2M5NmE5MD9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "397f9859-30e1-4607-8bfe-cbdd5ae037c4" + "d87c9a39-5981-431e-8e44-efc65927e55c" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ] }, "ResponseHeaders": { @@ -1493,16 +1493,16 @@ "no-cache" ], "ETag": [ - "W/\"b44905a9-c8e2-4617-b2d7-97a99ce473e7\"" + "W/\"f8dd4033-c822-461a-bf2b-fc285870da17\"" ], "x-ms-request-id": [ - "0fdabb3e-e24e-4c24-b5dc-fc5af0075160" + "3c34284f-5346-4ae2-85a3-201cc0f5a3b3" ], "x-ms-correlation-request-id": [ - "688149c0-2560-4e2c-bbe7-dffd2d3beb75" + "98801d6f-595d-4eea-8d6f-4e510069277b" ], "x-ms-arm-service-request-id": [ - "d0ff48c7-4bdf-4df7-b636-add1ff532e4b" + "8fc070b1-0f11-4c49-acec-f14d6ab0a6b2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1515,16 +1515,16 @@ "11986" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T234755Z:688149c0-2560-4e2c-bbe7-dffd2d3beb75" + "JIOINDIAWEST:20220517T133855Z:98801d6f-595d-4eea-8d6f-4e510069277b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 24 Feb 2022 23:47:55 GMT" + "Tue, 17 May 2022 13:38:55 GMT" ], "Content-Length": [ - "2143" + "2165" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1533,26 +1533,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"PSTestNIC905640\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG90564a6f/providers/Microsoft.Network/networkInterfaces/PSTestNIC905640\",\r\n \"etag\": \"W/\\\"b44905a9-c8e2-4617-b2d7-97a99ce473e7\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"065f616f-21cb-4fc2-a60d-f08e0193ac68\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG90564a6f/providers/Microsoft.Network/networkInterfaces/PSTestNIC905640/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"b44905a9-c8e2-4617-b2d7-97a99ce473e7\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG90564a6f/providers/Microsoft.Network/publicIPAddresses/pstestpublicdns905640\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG90564a6f/providers/Microsoft.Network/virtualNetworks/PSTestVNET905640/subnets/PSTestSNC905640\"\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\": \"we5pbzb3buwuro5whxw40p40fh.ix.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"vnetEncryptionSupported\": false,\r\n \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG90564a6f/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG905640\"\r\n },\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": [],\r\n \"nicType\": \"Standard\"\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"PSTestNICc96a90\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGc96a93a6/providers/Microsoft.Network/networkInterfaces/PSTestNICc96a90\",\r\n \"etag\": \"W/\\\"f8dd4033-c822-461a-bf2b-fc285870da17\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"6baae17d-d398-454d-a077-459500847bbb\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGc96a93a6/providers/Microsoft.Network/networkInterfaces/PSTestNICc96a90/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"f8dd4033-c822-461a-bf2b-fc285870da17\\\"\",\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/PSTestRGc96a93a6/providers/Microsoft.Network/publicIPAddresses/pstestpublicdnsc96a90\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGc96a93a6/providers/Microsoft.Network/virtualNetworks/PSTestVNETc96a90/subnets/PSTestSNCc96a90\"\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\": \"yxfl2q415vqujchair5wf1madf.ix.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"vnetEncryptionSupported\": false,\r\n \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGc96a93a6/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGc96a90\"\r\n },\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": [],\r\n \"nicType\": \"Standard\"\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"kind\": \"Regular\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG90564a6f/providers/Microsoft.Network/networkInterfaces/PSTestNIC905640?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTA1NjRhNmYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL1BTVGVzdE5JQzkwNTY0MD9hcGktdmVyc2lvbj0yMDIxLTA1LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGc96a93a6/providers/Microsoft.Network/networkInterfaces/PSTestNICc96a90?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYzk2YTkzYTYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL1BTVGVzdE5JQ2M5NmE5MD9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "397f9859-30e1-4607-8bfe-cbdd5ae037c4" + "d87c9a39-5981-431e-8e44-efc65927e55c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ] }, "ResponseHeaders": { @@ -1563,16 +1563,16 @@ "no-cache" ], "ETag": [ - "W/\"b44905a9-c8e2-4617-b2d7-97a99ce473e7\"" + "W/\"f8dd4033-c822-461a-bf2b-fc285870da17\"" ], "x-ms-request-id": [ - "e5eed2df-9b91-481b-821b-b0c1d565af3b" + "765cf825-37b3-4bbe-ad1f-0176ecfa20ea" ], "x-ms-correlation-request-id": [ - "236840f8-ebd3-479f-a7f2-972bf34c101d" + "6af66ad9-cbab-4cc4-944f-a7b8e00f8aa1" ], "x-ms-arm-service-request-id": [ - "46a85020-b686-458e-9e6b-c25e3fef6df8" + "97d0cc46-20a8-45ee-8146-da8d3346215f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1585,16 +1585,16 @@ "11985" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T234755Z:236840f8-ebd3-479f-a7f2-972bf34c101d" + "JIOINDIAWEST:20220517T133855Z:6af66ad9-cbab-4cc4-944f-a7b8e00f8aa1" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 24 Feb 2022 23:47:55 GMT" + "Tue, 17 May 2022 13:38:55 GMT" ], "Content-Length": [ - "2143" + "2165" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1603,26 +1603,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"PSTestNIC905640\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG90564a6f/providers/Microsoft.Network/networkInterfaces/PSTestNIC905640\",\r\n \"etag\": \"W/\\\"b44905a9-c8e2-4617-b2d7-97a99ce473e7\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"065f616f-21cb-4fc2-a60d-f08e0193ac68\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG90564a6f/providers/Microsoft.Network/networkInterfaces/PSTestNIC905640/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"b44905a9-c8e2-4617-b2d7-97a99ce473e7\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG90564a6f/providers/Microsoft.Network/publicIPAddresses/pstestpublicdns905640\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG90564a6f/providers/Microsoft.Network/virtualNetworks/PSTestVNET905640/subnets/PSTestSNC905640\"\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\": \"we5pbzb3buwuro5whxw40p40fh.ix.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"vnetEncryptionSupported\": false,\r\n \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG90564a6f/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG905640\"\r\n },\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": [],\r\n \"nicType\": \"Standard\"\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"PSTestNICc96a90\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGc96a93a6/providers/Microsoft.Network/networkInterfaces/PSTestNICc96a90\",\r\n \"etag\": \"W/\\\"f8dd4033-c822-461a-bf2b-fc285870da17\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"6baae17d-d398-454d-a077-459500847bbb\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGc96a93a6/providers/Microsoft.Network/networkInterfaces/PSTestNICc96a90/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"f8dd4033-c822-461a-bf2b-fc285870da17\\\"\",\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/PSTestRGc96a93a6/providers/Microsoft.Network/publicIPAddresses/pstestpublicdnsc96a90\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGc96a93a6/providers/Microsoft.Network/virtualNetworks/PSTestVNETc96a90/subnets/PSTestSNCc96a90\"\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\": \"yxfl2q415vqujchair5wf1madf.ix.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"vnetEncryptionSupported\": false,\r\n \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGc96a93a6/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGc96a90\"\r\n },\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": [],\r\n \"nicType\": \"Standard\"\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"kind\": \"Regular\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG90564a6f/providers/Microsoft.Network/networkInterfaces/PSTestNIC905640?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTA1NjRhNmYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL1BTVGVzdE5JQzkwNTY0MD9hcGktdmVyc2lvbj0yMDIxLTA1LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGc96a93a6/providers/Microsoft.Network/networkInterfaces/PSTestNICc96a90?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYzk2YTkzYTYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL1BTVGVzdE5JQ2M5NmE5MD9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"networkSecurityGroup\": {\r\n \"properties\": {\r\n \"securityRules\": []\r\n },\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG90564a6f/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG905640\",\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 \"applicationGatewayIpConfigurations\": []\r\n },\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG90564a6f/providers/Microsoft.Network/virtualNetworks/PSTestVNET905640/subnets/PSTestSNC905640\"\r\n },\r\n \"primary\": true,\r\n \"publicIPAddress\": {\r\n \"properties\": {\r\n \"ipTags\": []\r\n },\r\n \"zones\": [],\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG90564a6f/providers/Microsoft.Network/publicIPAddresses/pstestpublicdns905640\",\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\": \"southeastasia\"\r\n}", + "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/PSTestRGc96a93a6/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGc96a90\",\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 \"applicationGatewayIpConfigurations\": []\r\n },\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGc96a93a6/providers/Microsoft.Network/virtualNetworks/PSTestVNETc96a90/subnets/PSTestSNCc96a90\"\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/PSTestRGc96a93a6/providers/Microsoft.Network/publicIPAddresses/pstestpublicdnsc96a90\",\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\": \"southeastasia\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "397f9859-30e1-4607-8bfe-cbdd5ae037c4" + "d87c9a39-5981-431e-8e44-efc65927e55c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1639,19 +1639,19 @@ "no-cache" ], "x-ms-request-id": [ - "c4cc7cb1-c55a-4ba7-b8ae-31557ff7573f" + "e03cb76c-2b28-4921-9d83-9b61d11378ba" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Network/locations/southeastasia/operations/c4cc7cb1-c55a-4ba7-b8ae-31557ff7573f?api-version=2021-05-01" + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Network/locations/southeastasia/operations/e03cb76c-2b28-4921-9d83-9b61d11378ba?api-version=2021-08-01" ], "x-ms-correlation-request-id": [ - "2b05e262-2b75-41b1-b784-53fcc55c663a" + "2ca8fb0e-e726-41fa-8423-0aa077ec845c" ], "Azure-AsyncNotification": [ "Enabled" ], "x-ms-arm-service-request-id": [ - "1d996b07-5aa6-4267-b289-717382347d26" + "618d4928-1c0c-43fe-8b7b-33f535b2df84" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1664,16 +1664,16 @@ "1196" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T234755Z:2b05e262-2b75-41b1-b784-53fcc55c663a" + "JIOINDIAWEST:20220517T133855Z:2ca8fb0e-e726-41fa-8423-0aa077ec845c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 24 Feb 2022 23:47:55 GMT" + "Tue, 17 May 2022 13:38:54 GMT" ], "Content-Length": [ - "2143" + "2165" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1682,26 +1682,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"PSTestNIC905640\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG90564a6f/providers/Microsoft.Network/networkInterfaces/PSTestNIC905640\",\r\n \"etag\": \"W/\\\"b44905a9-c8e2-4617-b2d7-97a99ce473e7\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"065f616f-21cb-4fc2-a60d-f08e0193ac68\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG90564a6f/providers/Microsoft.Network/networkInterfaces/PSTestNIC905640/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"b44905a9-c8e2-4617-b2d7-97a99ce473e7\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG90564a6f/providers/Microsoft.Network/publicIPAddresses/pstestpublicdns905640\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG90564a6f/providers/Microsoft.Network/virtualNetworks/PSTestVNET905640/subnets/PSTestSNC905640\"\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\": \"we5pbzb3buwuro5whxw40p40fh.ix.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"vnetEncryptionSupported\": false,\r\n \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG90564a6f/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG905640\"\r\n },\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": [],\r\n \"nicType\": \"Standard\"\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"PSTestNICc96a90\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGc96a93a6/providers/Microsoft.Network/networkInterfaces/PSTestNICc96a90\",\r\n \"etag\": \"W/\\\"f8dd4033-c822-461a-bf2b-fc285870da17\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"6baae17d-d398-454d-a077-459500847bbb\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGc96a93a6/providers/Microsoft.Network/networkInterfaces/PSTestNICc96a90/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"f8dd4033-c822-461a-bf2b-fc285870da17\\\"\",\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/PSTestRGc96a93a6/providers/Microsoft.Network/publicIPAddresses/pstestpublicdnsc96a90\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGc96a93a6/providers/Microsoft.Network/virtualNetworks/PSTestVNETc96a90/subnets/PSTestSNCc96a90\"\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\": \"yxfl2q415vqujchair5wf1madf.ix.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"vnetEncryptionSupported\": false,\r\n \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGc96a93a6/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGc96a90\"\r\n },\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": [],\r\n \"nicType\": \"Standard\"\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"kind\": \"Regular\"\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Storage/checkNameAvailability?api-version=2021-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9jaGVja05hbWVBdmFpbGFiaWxpdHk/YXBpLXZlcnNpb249MjAyMS0wMi0wMQ==", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Storage/checkNameAvailability?api-version=2021-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9jaGVja05hbWVBdmFpbGFiaWxpdHk/YXBpLXZlcnNpb249MjAyMS0wMi0wMQ==", "RequestMethod": "POST", - "RequestBody": "{\r\n \"name\": \"tespstestpste022418470\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n}", + "RequestBody": "{\r\n \"name\": \"tespstestpste051719080\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "d97d3f9a-7e1e-411b-a3fc-65fa08b9d784" + "032a228d-061a-4d48-b6d1-12630f498ba9" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.PowerShell.Cmdlets.Compute.Helpers.Storage.StorageManagementClient/4.23.0" + "Microsoft.Azure.PowerShell.Cmdlets.Compute.Helpers.Storage.StorageManagementClient/4.26.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1718,7 +1718,7 @@ "no-cache" ], "x-ms-request-id": [ - "8572a277-cde1-4c21-9b70-4704c6b44228" + "776b881f-e867-4267-b7a0-48bbd243c994" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1730,16 +1730,16 @@ "11999" ], "x-ms-correlation-request-id": [ - "c40d3d7c-c6dd-4798-a817-5fb58cf64386" + "7d788fd3-974a-47e2-87d0-dfe972d93527" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T234756Z:c40d3d7c-c6dd-4798-a817-5fb58cf64386" + "JIOINDIAWEST:20220517T133857Z:7d788fd3-974a-47e2-87d0-dfe972d93527" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 24 Feb 2022 23:47:56 GMT" + "Tue, 17 May 2022 13:38:56 GMT" ], "Content-Length": [ "22" @@ -1755,22 +1755,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG90564a6f/providers/Microsoft.Compute/virtualMachines/PSTestVM905640?api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTA1NjRhNmYvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy9QU1Rlc3RWTTkwNTY0MD9hcGktdmVyc2lvbj0yMDIxLTExLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGc96a93a6/providers/Microsoft.Compute/virtualMachines/PSTestVMc96a90?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYzk2YTkzYTYvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy9QU1Rlc3RWTWM5NmE5MD9hcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D1_v2\"\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\": \"PSTestVM905640\",\r\n \"adminUsername\": \"demouser\",\r\n \"adminPassword\": \"90564a6f-a4bAa.\",\r\n \"windowsConfiguration\": {}\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG90564a6f/providers/Microsoft.Network/networkInterfaces/PSTestNIC905640\"\r\n }\r\n ]\r\n }\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MabUsed\": \"Yes\",\r\n \"AutoShutDown\": \"No\",\r\n \"Purpose\": \"PSTest\",\r\n \"Owner\": \"sarath\",\r\n \"DeleteBy\": \"06-2022\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D1_v2\"\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\": \"PSTestVMc96a90\",\r\n \"adminUsername\": \"demouser\",\r\n \"adminPassword\": \"c96a93a6-8bcAa.\",\r\n \"windowsConfiguration\": {}\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGc96a93a6/providers/Microsoft.Network/networkInterfaces/PSTestNICc96a90\"\r\n }\r\n ]\r\n }\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"DeleteBy\": \"06-2022\",\r\n \"MabUsed\": \"Yes\",\r\n \"Purpose\": \"PSTest\",\r\n \"Owner\": \"sarath\",\r\n \"AutoShutDown\": \"No\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "d97d3f9a-7e1e-411b-a3fc-65fa08b9d784" + "032a228d-061a-4d48-b6d1-12630f498ba9" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1790,7 +1790,7 @@ "10" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/southeastasia/operations/bb84a160-c57f-4de2-90c8-29d3884400a0?p=34dc709c-01b2-42c4-84a2-256a9734610d&api-version=2021-11-01" + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Compute/locations/southeastasia/operations/97b66857-dd22-49e9-9afc-a48b16e06338?p=e484ceca-6435-4a7f-b125-3d82e6b12014&api-version=2021-11-01" ], "Azure-AsyncNotification": [ "Enabled" @@ -1802,7 +1802,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "bb84a160-c57f-4de2-90c8-29d3884400a0" + "97b66857-dd22-49e9-9afc-a48b16e06338" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -1812,19 +1812,19 @@ "1199" ], "x-ms-correlation-request-id": [ - "bc5a7f9c-268c-4385-b753-543deb0d4e8e" + "1e80c9ce-6d9f-4791-8143-1c84264b6519" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T234806Z:bc5a7f9c-268c-4385-b753-543deb0d4e8e" + "JIOINDIAWEST:20220517T133902Z:1e80c9ce-6d9f-4791-8143-1c84264b6519" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 24 Feb 2022 23:48:05 GMT" + "Tue, 17 May 2022 13:39:02 GMT" ], "Content-Length": [ - "1992" + "1922" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1833,23 +1833,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"PSTestVM905640\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG90564a6f/providers/Microsoft.Compute/virtualMachines/PSTestVM905640\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MabUsed\": \"Yes\",\r\n \"AutoShutDown\": \"No\",\r\n \"Purpose\": \"PSTest\",\r\n \"Owner\": \"sarath\",\r\n \"DeleteBy\": \"06-2022\",\r\n \"azsecpack\": \"nonprod\",\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": \"true\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"26c1c616-17b8-49e5-bc1e-7cd5e0330329\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D1_v2\"\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.4946.220202\"\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 \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"PSTestVM905640\",\r\n \"adminUsername\": \"demouser\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"AutomaticByOS\",\r\n \"assessmentMode\": \"ImageDefault\"\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG90564a6f/providers/Microsoft.Network/networkInterfaces/PSTestNIC905640\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\",\r\n \"timeCreated\": \"2022-02-24T18:48:03.7590758-05:00\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"PSTestVMc96a90\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGc96a93a6/providers/Microsoft.Compute/virtualMachines/PSTestVMc96a90\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"DeleteBy\": \"06-2022\",\r\n \"MabUsed\": \"Yes\",\r\n \"Purpose\": \"PSTest\",\r\n \"Owner\": \"sarath\",\r\n \"AutoShutDown\": \"No\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"b6eddf25-29b2-47a0-845c-bca34beef007\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D1_v2\"\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.5125.220505\"\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 \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"PSTestVMc96a90\",\r\n \"adminUsername\": \"demouser\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"AutomaticByOS\",\r\n \"assessmentMode\": \"ImageDefault\"\r\n },\r\n \"enableVMAgentPlatformUpdates\": false\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/PSTestRGc96a93a6/providers/Microsoft.Network/networkInterfaces/PSTestNICc96a90\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\",\r\n \"timeCreated\": \"2022-05-17T19:09:02.0429233+05:30\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/southeastasia/operations/bb84a160-c57f-4de2-90c8-29d3884400a0?p=34dc709c-01b2-42c4-84a2-256a9734610d&api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2JiODRhMTYwLWM1N2YtNGRlMi05MGM4LTI5ZDM4ODQ0MDBhMD9wPTM0ZGM3MDljLTAxYjItNDJjNC04NGEyLTI1NmE5NzM0NjEwZCZhcGktdmVyc2lvbj0yMDIxLTExLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Compute/locations/southeastasia/operations/97b66857-dd22-49e9-9afc-a48b16e06338?p=e484ceca-6435-4a7f-b125-3d82e6b12014&api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzk3YjY2ODU3LWRkMjItNDllOS05YWZjLWE0OGIxNmUwNjMzOD9wPWU0ODRjZWNhLTY0MzUtNGE3Zi1iMTI1LTNkODJlNmIxMjAxNCZhcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d97d3f9a-7e1e-411b-a3fc-65fa08b9d784" + "032a228d-061a-4d48-b6d1-12630f498ba9" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ] }, "ResponseHeaders": { @@ -1863,13 +1863,13 @@ "50" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperation3Min;14999,Microsoft.Compute/GetOperation30Min;29994" + "Microsoft.Compute/GetOperation3Min;14999,Microsoft.Compute/GetOperation30Min;29997" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "498111f5-84cd-4cb6-bb29-8b6566b0d446" + "d8cfd4eb-3cff-46ee-9d64-36a2e21e4a6a" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -1879,16 +1879,16 @@ "11998" ], "x-ms-correlation-request-id": [ - "81740923-8055-4e34-b288-77ede84fc5e0" + "a8b80691-2d75-4d5c-beb4-b13643980212" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T234816Z:81740923-8055-4e34-b288-77ede84fc5e0" + "JIOINDIAWEST:20220517T133913Z:a8b80691-2d75-4d5c-beb4-b13643980212" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 24 Feb 2022 23:48:15 GMT" + "Tue, 17 May 2022 13:39:12 GMT" ], "Content-Length": [ "134" @@ -1900,23 +1900,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-02-24T18:48:03.4153285-05:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"bb84a160-c57f-4de2-90c8-29d3884400a0\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2022-05-17T19:09:01.4647851+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"97b66857-dd22-49e9-9afc-a48b16e06338\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/southeastasia/operations/bb84a160-c57f-4de2-90c8-29d3884400a0?p=34dc709c-01b2-42c4-84a2-256a9734610d&api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2JiODRhMTYwLWM1N2YtNGRlMi05MGM4LTI5ZDM4ODQ0MDBhMD9wPTM0ZGM3MDljLTAxYjItNDJjNC04NGEyLTI1NmE5NzM0NjEwZCZhcGktdmVyc2lvbj0yMDIxLTExLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Compute/locations/southeastasia/operations/97b66857-dd22-49e9-9afc-a48b16e06338?p=e484ceca-6435-4a7f-b125-3d82e6b12014&api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzk3YjY2ODU3LWRkMjItNDllOS05YWZjLWE0OGIxNmUwNjMzOD9wPWU0ODRjZWNhLTY0MzUtNGE3Zi1iMTI1LTNkODJlNmIxMjAxNCZhcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d97d3f9a-7e1e-411b-a3fc-65fa08b9d784" + "032a228d-061a-4d48-b6d1-12630f498ba9" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ] }, "ResponseHeaders": { @@ -1927,13 +1927,13 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperation3Min;14998,Microsoft.Compute/GetOperation30Min;29993" + "Microsoft.Compute/GetOperation3Min;14998,Microsoft.Compute/GetOperation30Min;29996" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "55e71645-9eae-46be-b18c-011c996090da" + "2cc6f411-69a0-47fc-b0c4-389d014aa548" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -1943,16 +1943,16 @@ "11997" ], "x-ms-correlation-request-id": [ - "ad6fecce-a36a-4d2e-883c-0005affff11d" + "2cb91078-59be-4360-999d-e9ce7a9400b9" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T234906Z:ad6fecce-a36a-4d2e-883c-0005affff11d" + "JIOINDIAWEST:20220517T134003Z:2cb91078-59be-4360-999d-e9ce7a9400b9" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 24 Feb 2022 23:49:05 GMT" + "Tue, 17 May 2022 13:40:02 GMT" ], "Content-Length": [ "134" @@ -1964,23 +1964,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-02-24T18:48:03.4153285-05:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"bb84a160-c57f-4de2-90c8-29d3884400a0\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2022-05-17T19:09:01.4647851+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"97b66857-dd22-49e9-9afc-a48b16e06338\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/southeastasia/operations/bb84a160-c57f-4de2-90c8-29d3884400a0?p=34dc709c-01b2-42c4-84a2-256a9734610d&api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2JiODRhMTYwLWM1N2YtNGRlMi05MGM4LTI5ZDM4ODQ0MDBhMD9wPTM0ZGM3MDljLTAxYjItNDJjNC04NGEyLTI1NmE5NzM0NjEwZCZhcGktdmVyc2lvbj0yMDIxLTExLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Compute/locations/southeastasia/operations/97b66857-dd22-49e9-9afc-a48b16e06338?p=e484ceca-6435-4a7f-b125-3d82e6b12014&api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzk3YjY2ODU3LWRkMjItNDllOS05YWZjLWE0OGIxNmUwNjMzOD9wPWU0ODRjZWNhLTY0MzUtNGE3Zi1iMTI1LTNkODJlNmIxMjAxNCZhcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d97d3f9a-7e1e-411b-a3fc-65fa08b9d784" + "032a228d-061a-4d48-b6d1-12630f498ba9" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ] }, "ResponseHeaders": { @@ -1991,13 +1991,13 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperation3Min;14997,Microsoft.Compute/GetOperation30Min;29992" + "Microsoft.Compute/GetOperation3Min;14997,Microsoft.Compute/GetOperation30Min;29995" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "068d055e-10c7-4aee-ac0a-b5f6be3e8db6" + "ed9eb6d3-6d9a-4231-94e8-d10805e60eb1" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -2007,16 +2007,16 @@ "11996" ], "x-ms-correlation-request-id": [ - "3913b85b-b0a1-4a28-bd9b-fae36e67d6f8" + "8d509de2-004e-4616-b18a-33f00d137724" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T234957Z:3913b85b-b0a1-4a28-bd9b-fae36e67d6f8" + "JIOINDIAWEST:20220517T134053Z:8d509de2-004e-4616-b18a-33f00d137724" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 24 Feb 2022 23:49:57 GMT" + "Tue, 17 May 2022 13:40:53 GMT" ], "Content-Length": [ "184" @@ -2028,26 +2028,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-02-24T18:48:03.4153285-05:00\",\r\n \"endTime\": \"2022-02-24T18:49:34.6665053-05:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"bb84a160-c57f-4de2-90c8-29d3884400a0\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2022-05-17T19:09:01.4647851+05:30\",\r\n \"endTime\": \"2022-05-17T19:10:47.8699083+05:30\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"97b66857-dd22-49e9-9afc-a48b16e06338\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/southeastasia/publishers?api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9wdWJsaXNoZXJzP2FwaS12ZXJzaW9uPTIwMjEtMTEtMDE=", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Compute/locations/southeastasia/publishers?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9wdWJsaXNoZXJzP2FwaS12ZXJzaW9uPTIwMjEtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d97d3f9a-7e1e-411b-a3fc-65fa08b9d784" + "032a228d-061a-4d48-b6d1-12630f498ba9" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ] }, "ResponseHeaders": { @@ -2061,10 +2061,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "8d76ef5d-2d17-4297-8566-4612360b9f5a_132860269053396621" + "8d76ef5d-2d17-4297-8566-4612360b9f5a_132927459943306577" ], "x-ms-request-id": [ - "cd3522b6-cbca-4e54-8b12-99468a6220f2" + "562317c9-fddf-40d9-bd36-2a07fe02a5e4" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -2074,19 +2074,19 @@ "11994" ], "x-ms-correlation-request-id": [ - "c3cd2bca-65c2-4bb3-b1ef-dad8b885643a" + "78144d8c-9b8c-4997-81df-99cf178177c0" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T235001Z:c3cd2bca-65c2-4bb3-b1ef-dad8b885643a" + "JIOINDIAWEST:20220517T134054Z:78144d8c-9b8c-4997-81df-99cf178177c0" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 24 Feb 2022 23:50:01 GMT" + "Tue, 17 May 2022 13:40:54 GMT" ], "Content-Length": [ - "420268" + "429866" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2095,26 +2095,26 @@ "-1" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"128technology\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/128technology\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1580863854728\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1580863854728\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1583411303229\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1583411303229\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1583465680865\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1583465680865\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1585118004523\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1585118004523\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1597644262255\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1597644262255\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1598955805825\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1598955805825\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1601633765871\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1601633765871\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1602067018799\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1602067018799\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1604579683207\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1604579683207\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1615257339685\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1615257339685\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1615278064010\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1615278064010\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1615455873642\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1615455873642\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1624590941808\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1624590941808\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1e\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1e\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"2021ai\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/2021ai\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"247commercelimited1611063941652\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/247commercelimited1611063941652\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"3cx-pbx\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/3cx-pbx\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"42crunch1580391915541\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/42crunch1580391915541\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"4psa\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/4psa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"5nine-software-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/5nine-software-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"7isolutions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/7isolutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"a10networks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/a10networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"a10networks1596136698788\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/a10networks1596136698788\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"abiquo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/abiquo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"abzoobainc1598420455082\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/abzoobainc1598420455082\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"accedian\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/accedian\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"accelario1579101623356\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/accelario1579101623356\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"accellion\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/accellion\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"accessdata-group\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/accessdata-group\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"accops\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/accops\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aciworldwide\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aciworldwide\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Acronis\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Acronis\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Acronis.Backup\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Acronis.Backup\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"actian-corp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/actian-corp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"actian_matrix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/actian_matrix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"actifio\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/actifio\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"actiphy\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/actiphy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"actiphyinc1627974506603\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/actiphyinc1627974506603\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"activecountermeasuresinc1631039410073\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/activecountermeasuresinc1631039410073\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"activeeon\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/activeeon\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"activeops\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/activeops\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"adastracorporation-4028356\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/adastracorporation-4028356\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"adgs\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/adgs\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"advantech\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/advantech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"advantech-webaccess\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/advantech-webaccess\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"advantys\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/advantys\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aelf\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aelf\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aerospike\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aerospike\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"affinio\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/affinio\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"affirmednetworks1607630812999\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/affirmednetworks1607630812999\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ageniumscale1591804889317\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ageniumscale1591804889317\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aggregion-ltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aggregion-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"agiledialogssl1603791911858\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/agiledialogssl1603791911858\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"agolo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/agolo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ahnlabinc1584495174865\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ahnlabinc1584495174865\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ahnlabinc1584495467593\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ahnlabinc1584495467593\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"airalabrus\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/airalabrus\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aiscaler-cache-control-ddos-and-url-rewriting-\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aiscaler-cache-control-ddos-and-url-rewriting-\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aisundowninc1618516322959\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aisundowninc1618516322959\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"akamai-technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/akamai-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"akumina\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/akumina\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"akumo-software\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/akumo-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"al-tamamunitedtradingcontractingcompany\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/al-tamamunitedtradingcontractingcompany\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"alachisoft\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/alachisoft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"alertlogic\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/alertlogic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"AlertLogic.Extension\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/AlertLogic.Extension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"algolyticstechnologies1606475101268\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/algolyticstechnologies1606475101268\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"alicetrix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/alicetrix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"alienvault\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/alienvault\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"alldigital-brevity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/alldigital-brevity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"almalinux\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/almalinux\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"almalinuxosfoundation1628089859865\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/almalinuxosfoundation1628089859865\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"altair-engineering-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/altair-engineering-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"altamira-corporation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/altamira-corporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"alteryx\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/alteryx\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"altova\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/altova\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"amergint1593131356777\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/amergint1593131356777\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ansys\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ansys\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"antmedia\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/antmedia\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aod\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aod\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"apigee\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/apigee\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"appcara\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appcara\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"appcelerator\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appcelerator\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"appex-networks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appex-networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"appistry\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appistry\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"appiyo_technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appiyo_technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"appmint_inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appmint_inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"apps-4-rent\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/apps-4-rent\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"appscale-marketplace\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appscale-marketplace\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"appsurifyinc1606933045773\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appsurifyinc1606933045773\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aquaforest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aquaforest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aquantyinc1598537176913\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aquantyinc1598537176913\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aquaveollc1633710529908\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aquaveollc1633710529908\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"arabesque-group\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/arabesque-group\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"arangodb\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/arangodb\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aras\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aras\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"arcblock\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/arcblock\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"arcesb\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/arcesb\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"arcontechsolutionsprivatelimited1623841797810\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/arcontechsolutionsprivatelimited1623841797810\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"arcserveusallc-marketing\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/arcserveusallc-marketing\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"arista-networks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/arista-networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ariwontollc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ariwontollc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"array_networks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/array_networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"artificial-intelligence-techniques-sl\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/artificial-intelligence-techniques-sl\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"arubanetworks-4922182\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/arubanetworks-4922182\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"asdivertissementinc1617837708654\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/asdivertissementinc1617837708654\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"asigra\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/asigra\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aspentechnologyhq-1353108\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aspentechnologyhq-1353108\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"astadia-1148316\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/astadia-1148316\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"asterasoftware1581022936015\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/asterasoftware1581022936015\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"asyscosoftwarebv\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/asyscosoftwarebv\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ataccama\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ataccama\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"athinfosystems1641442221349\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/athinfosystems1641442221349\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"atlgaming\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/atlgaming\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"atmosera\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/atmosera\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"atomicorp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/atomicorp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"atomizedinc1587939464368\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/atomizedinc1587939464368\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"attunity_cloudbeam\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/attunity_cloudbeam\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"audiocodes\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/audiocodes\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"auraportal\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/auraportal\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"auriq-systems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/auriq-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"automateio1592914387888\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/automateio1592914387888\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"automationanywhere\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/automationanywhere\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"avanseus\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/avanseus\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"avepoint\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/avepoint\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aveva1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aveva1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"avi-networks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/avi-networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aviatrix-systems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aviatrix-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"awingu\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/awingu\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"axedrasag1590581171549\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/axedrasag1590581171549\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"axsguardablenv\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/axsguardablenv\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"axshco\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/axshco\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"axway\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/axway\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"axxana\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/axxana\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"azhpc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/azhpc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"azul\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/azul\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"azure-dockit\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/azure-dockit\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"azurecyclecloud\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/azurecyclecloud\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"AzureDatabricks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/AzureDatabricks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"azureopenshift\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/azureopenshift\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"AzureRT.PIR.Synthetics.ProdTest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/AzureRT.PIR.Synthetics.ProdTest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"AzureRT.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/AzureRT.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"azuretesting\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/azuretesting\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"azuretesting2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/azuretesting2\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"azuretesting3\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/azuretesting3\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"AzureTools1type\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/AzureTools1type\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"baas-techbureau\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/baas-techbureau\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"baffle-io\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/baffle-io\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"balabit\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/balabit\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"barracudanetworks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/barracudanetworks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"basho\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/basho\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"batch\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/batch\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bayware\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bayware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bdy\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bdy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"belindaczsro1588885355210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/belindaczsro1588885355210\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bellsoft1582871421940\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bellsoft1582871421940\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"betsol\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/betsol\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"beyondtrust\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/beyondtrust\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bi-builders-as\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bi-builders-as\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"big-id\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/big-id\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"biolibinc1622552350258\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/biolibinc1622552350258\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bissantechnology1583581147809\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bissantechnology1583581147809\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bitdefendercybersecurity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bitdefendercybersecurity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Bitnami\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Bitnami\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bizagi\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bizagi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bizaptyltd1626489237351\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bizaptyltd1626489237351\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bizdataloome\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bizdataloome\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"biztalk360\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/biztalk360\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"black-duck-software\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/black-duck-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"blackbird\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/blackbird\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"blackmagicdesignincorporated1596492193249\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/blackmagicdesignincorporated1596492193249\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"blk-technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/blk-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"blockapps\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/blockapps\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"blockchain-foundry\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/blockchain-foundry\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"blockstack\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/blockstack\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bloombase\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bloombase\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bluecat\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bluecat\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bluejeansnetwork1638333611902\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bluejeansnetwork1638333611902\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"blueprismlimited-4827145\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/blueprismlimited-4827145\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bluesyntaxconsulting1617654548594\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bluesyntaxconsulting1617654548594\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bluetalon\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bluetalon\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bmc.ctm\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bmc.ctm\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bmcctm.test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bmcctm.test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"boardpacpvtltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/boardpacpvtltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bocada\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bocada\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"boemskats\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/boemskats\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"botanalytics\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/botanalytics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bowspritconsultingopcprivatelimited1596291408582\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bowspritconsultingopcprivatelimited1596291408582\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bravura-software-llc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bravura-software-llc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Brianjac.Symantec.CloudWorkloadProtection\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Brianjac.Symantec.CloudWorkloadProtection\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bricatainc1584472632111\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bricatainc1584472632111\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bright-computing\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bright-computing\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"brightcomputing\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/brightcomputing\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"brocade_communications\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/brocade_communications\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"brutale\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/brutale\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bryte\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bryte\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bssw\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bssw\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bt-americas-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bt-americas-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"buddhalabs\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/buddhalabs\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cadosecurityltd1626856705534\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cadosecurityltd1626856705534\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"calculated_systems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/calculated_systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"caloudi_corp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/caloudi_corp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"canadiancentreforcybersecurity1610638436359\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/canadiancentreforcybersecurity1610638436359\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Canonical\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Canonical\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"canonical-test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/canonical-test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"carto\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/carto\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cask\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cask\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"castaigroupinc1595243474856\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/castaigroupinc1595243474856\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"catechnologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/catechnologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"catonetworksltd1641478570665\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/catonetworksltd1641478570665\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cautelalabs\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cautelalabs\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cavirin\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cavirin\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cayosoftinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cayosoftinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cdatasoftware\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cdatasoftware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cds\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cds\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"celum-gmbh\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/celum-gmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"center-for-internet-security-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/center-for-internet-security-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"centeritysystems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/centeritysystems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"centrixeltd1594135951373\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/centrixeltd1594135951373\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"centrocomputerspa1584528117084\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/centrocomputerspa1584528117084\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"certifiedsecuritysolutionsinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/certifiedsecuritysolutionsinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"certivox\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/certivox\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cfd-direct\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cfd-direct\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"chain\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/chain\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"checkpoint\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/checkpoint\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"chef-software\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/chef-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Chef.Bootstrap.WindowsAzure\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Chef.Bootstrap.WindowsAzure\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"chunghwatelecom1587573688842\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/chunghwatelecom1587573688842\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cinchy\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cinchy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cinegy-gmbh\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cinegy-gmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"circleci\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/circleci\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cires21\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cires21\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cirruswaveinc1579234787943\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cirruswaveinc1579234787943\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cisco\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cisco\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"citrix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/citrix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Citrix.ADC\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Citrix.ADC\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"clapsodeughaftungsbeschrnkt1626333173563\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/clapsodeughaftungsbeschrnkt1626333173563\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"clear-linux-project\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/clear-linux-project\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"clone-systems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/clone-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"clouber\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/clouber\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloud-checkr\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloud-checkr\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloud-cruiser\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloud-cruiser\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloud-infrastructure-services\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloud-infrastructure-services\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudaccelinc1628754426775\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudaccelinc1628754426775\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudbees\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudbees\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudbees-enterprise-jenkins\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudbees-enterprise-jenkins\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudbolt-software\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudbolt-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudboltsoftware1639523402532\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudboltsoftware1639523402532\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudboost\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudboost\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudcover\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudcover\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudenablers-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudenablers-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudentity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudentity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudera\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudera\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudflare\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudflare\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudhouse\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudhouse\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudinfo-4919088\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudinfo-4919088\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudknox\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudknox\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudlanes\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudlanes\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudlink\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudlink\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"CloudLinkEMC.SecureVM\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/CloudLinkEMC.SecureVM\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudmavensolutions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudmavensolutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudneeti\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudneeti\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudplan-gmbh\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudplan-gmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudsecurity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudsecurity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudsoft\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudsoft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudwhizsolutions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudwhizsolutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudwrxsconsultingltd1631029702055\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudwrxsconsultingltd1631029702055\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"clustrix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/clustrix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cncf-upstream\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cncf-upstream\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"codaintelligence1606495376525\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/codaintelligence1606495376525\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"codelathe\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/codelathe\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"codenvy\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/codenvy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"codetwo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/codetwo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cognexcorporation1613759804979\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cognexcorporation1613759804979\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cognitive-scale\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cognitive-scale\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cognizant\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cognizant\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cognosys\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cognosys\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cohesity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cohesity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cohesitydev1592001764720\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cohesitydev1592001764720\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cohesive\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cohesive\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"coin-sciences-ltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/coin-sciences-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"collabcloudlimited\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/collabcloudlimited\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"collibranv1619508098620\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/collibranv1619508098620\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"commscopeinc1632135151062\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/commscopeinc1632135151062\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"commvault\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/commvault\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"compellon\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/compellon\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"composable\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/composable\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"comunity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/comunity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"concentrationheatandmomentumlimited1616154387047\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/concentrationheatandmomentumlimited1616154387047\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Confer\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Confer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"confluentinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/confluentinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"conflux\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/conflux\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"connecting-software\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/connecting-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"consensys\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/consensys\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"containeraider\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/containeraider\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"contiamogmbh\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/contiamogmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"controlcase\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/controlcase\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"controlplane\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/controlplane\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"controlplanecorporation1609967567639\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/controlplanecorporation1609967567639\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"convertigo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/convertigo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"corda\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/corda\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"core-stack\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/core-stack\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"corent-technology-pvt\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/corent-technology-pvt\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"CoreOS\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/CoreOS\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"couchbase\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/couchbase\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cpanel\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cpanel\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"credativ\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/credativ\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cristiesoftwareltd1599488127561\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cristiesoftwareltd1599488127561\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"crunchyard\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/crunchyard\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"crunchyardltd1623835391104\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/crunchyardltd1623835391104\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cryptocom1585727786636\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cryptocom1585727786636\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cryptosense1605170011574\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cryptosense1605170011574\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cryptzone\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cryptzone\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ctm.bmc.com\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ctm.bmc.com\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cubebackup\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cubebackup\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cyberark\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cyberark\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cybernetica-as\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cybernetica-as\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cyxtera\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cyxtera\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"d4t4_solutions-1164305\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/d4t4_solutions-1164305\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"daceitdbasensetrafficpulse1579892024934\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/daceitdbasensetrafficpulse1579892024934\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"danielsol.AzureTools1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/danielsol.AzureTools1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Dans.Windows.App\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Dans.Windows.App\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Dans3.Windows.App\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Dans3.Windows.App\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dataart\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dataart\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"databricks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/databricks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datacore\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datacore\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Datadog.Agent\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Datadog.Agent\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datadynamicsinc1581991927942\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datadynamicsinc1581991927942\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dataguiseinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dataguiseinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dataiku\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dataiku\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datalayer\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datalayer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datanomers1584919038987\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datanomers1584919038987\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datanova\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datanova\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datapredsa\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datapredsa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dataroadtechnologiesllc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dataroadtechnologiesllc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datasciencedojo1586563145740\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datasciencedojo1586563145740\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datastax\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datastax\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datasunrise\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datasunrise\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datavirtualitygmbh\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datavirtualitygmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datometry\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datometry\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dbs-h\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dbs-h\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ddn-whamcloud-5345716\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ddn-whamcloud-5345716\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Debian\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Debian\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dece-4446019\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dece-4446019\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"decisosalesbv\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/decisosalesbv\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"deepcognitioninc1593512758156\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/deepcognitioninc1593512758156\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"deepsiginc1581610210151\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/deepsiginc1581610210151\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"deepsurfacesecurityinc1632943333445\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/deepsurfacesecurityinc1632943333445\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dellemc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dellemc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dell_software\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dell_software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"delphix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/delphix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"deltapathlimited1592886319362\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/deltapathlimited1592886319362\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"denodo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/denodo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"denyall\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/denyall\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"derdack\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/derdack\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"desktopstudioag1580294245574\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/desktopstudioag1580294245574\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"devfactory\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/devfactory\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"device42inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/device42inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"deviceauthorityinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/deviceauthorityinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"devolutionsinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/devolutionsinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"devopsgroup-uk\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/devopsgroup-uk\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"df-portal-user\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/df-portal-user\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dgsecure\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dgsecure\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Dh2ico\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Dh2ico\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dh2icompany\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dh2icompany\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dhi\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dhi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"diagramics\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/diagramics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dicomsystems1584107398321\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dicomsystems1584107398321\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"diehl-metering\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/diehl-metering\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"digisitesystems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/digisitesystems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"digitaldefenseinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/digitaldefenseinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"digitaloffice\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/digitaloffice\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"digitamizeinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/digitamizeinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"digitate\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/digitate\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"diladele\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/diladele\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dimensionalmechanics-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dimensionalmechanics-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"diqa\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/diqa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"diyatech\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/diyatech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"diyotta\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/diyotta\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"djiindustrialincus\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/djiindustrialincus\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"docker\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/docker\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dome9\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dome9\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dorabot\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dorabot\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dremiocorporation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dremiocorporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"drizti\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/drizti\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"drone\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/drone\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dsi\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dsi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dundas\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dundas\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dyadic_security\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dyadic_security\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dynatrace\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dynatrace\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dynatrace.ruxit\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dynatrace.ruxit\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"e-magicinc1587696283171\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/e-magicinc1587696283171\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"eastwind-networks-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/eastwind-networks-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"easysoftwaresro1593005637384\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/easysoftwaresro1593005637384\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ebesllc1637780200500\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ebesllc1637780200500\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ecessa\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ecessa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"edevtech\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/edevtech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"edgelesssystems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/edgelesssystems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"edgenetworks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/edgenetworks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"edispheresoftwareprivatelimited1606199736428\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/edispheresoftwareprivatelimited1606199736428\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"education4sight\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/education4sight\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"eecservicesfzllc1604836615706\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/eecservicesfzllc1604836615706\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"egnyte\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/egnyte\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"egress1589289169584\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/egress1589289169584\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"eikonasystemsgmbh1601729310063\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/eikonasystemsgmbh1601729310063\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Elastic\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Elastic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"elasticbox\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/elasticbox\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"elecard\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/elecard\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"electric-cloud\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/electric-cloud\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"elevateiot\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/elevateiot\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"eleven01\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/eleven01\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"elfiqnetworks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/elfiqnetworks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"emercoin\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/emercoin\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"energisme1601990637842\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/energisme1601990637842\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"enforongo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/enforongo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"engineering-ingegneriainformatica-spa1626786889850\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/engineering-ingegneriainformatica-spa1626786889850\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"engysltd1624364546407\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/engysltd1624364546407\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"enterprise-ethereum-alliance\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/enterprise-ethereum-alliance\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"enterprisedb-corp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/enterprisedb-corp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"enterpriseworx-it\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/enterpriseworx-it\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"epicgames\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/epicgames\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"epicgamesinc1633466121071\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/epicgamesinc1633466121071\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"eproe\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/eproe\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"equalum\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/equalum\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"equilibrium\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/equilibrium\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"equinix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/equinix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ergoninformatikag1581586464404\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ergoninformatikag1581586464404\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"esdenera\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/esdenera\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ESET\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ESET\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"esetresearch1579795941720\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/esetresearch1579795941720\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"esri\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/esri\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"esyon\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/esyon\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ethereum\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ethereum\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"eurolinuxspzoo1620639373013\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/eurolinuxspzoo1620639373013\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"eventtracker\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/eventtracker\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"evertzmicrosystemsltd1586877923009\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/evertzmicrosystemsltd1586877923009\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"evostream-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/evostream-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"exact\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/exact\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"exasol\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/exasol\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"excelero1608461290726\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/excelero1608461290726\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"exivity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/exivity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"exonar\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/exonar\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"f5-networks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/f5-networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"falainapteltd1604661424876\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/falainapteltd1604661424876\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"falconstorsoftware\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/falconstorsoftware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fatalsecurity1604924013537\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fatalsecurity1604924013537\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fatpipe-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fatpipe-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fenestrae-1035066\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fenestrae-1035066\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fidesys\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fidesys\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"filecatalyst\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/filecatalyst\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"filemagellc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/filemagellc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fiorano\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fiorano\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fireeye\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fireeye\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"firehost\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/firehost\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"firemon\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/firemon\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"firstderivativesplc1596469572732\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/firstderivativesplc1596469572732\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"flashgrid-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/flashgrid-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"flexbby\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/flexbby\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"flexbby-5255860\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/flexbby-5255860\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"flexify-io\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/flexify-io\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"flexxibleit\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/flexxibleit\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"flowmon\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/flowmon\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"flynet\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/flynet\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"foghorn-systems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/foghorn-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"forcepoint-llc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/forcepoint-llc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"forescout\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/forescout\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"foreseetiab1613650409016\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/foreseetiab1613650409016\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"formpipesoftwareab\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/formpipesoftwareab\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"forscene\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/forscene\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fortanix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fortanix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fortinet\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fortinet\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fortycloud\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fortycloud\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"forumsystems1599756394904\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/forumsystems1599756394904\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fotopiatechnologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fotopiatechnologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"foxiteuropegmbh1585901066320\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/foxiteuropegmbh1585901066320\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"franzinc1593030725310\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/franzinc1593030725310\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fujitsu_fast\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fujitsu_fast\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fw\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fw\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"g2kgroupgmbh-4821943\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/g2kgroupgmbh-4821943\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gapteq\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gapteq\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gatlingcorp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gatlingcorp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gbs\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gbs\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gemalto-safenet\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gemalto-safenet\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Gemalto.SafeNet.ProtectV\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Gemalto.SafeNet.ProtectV\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"genuagmbhdevid1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/genuagmbhdevid1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"genua_gmbh\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/genua_gmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"genymobile\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/genymobile\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gigamon-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gigamon-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"GitHub\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/GitHub\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gitlab\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gitlab\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gitlabinc1586447921813\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gitlabinc1586447921813\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gladinet-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gladinet-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"glantoninc1591876792991\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/glantoninc1591876792991\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"globalidsinc1596800540598\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/globalidsinc1596800540598\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"globalscape\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/globalscape\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"globalsolutions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/globalsolutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gluwareinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gluwareinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"graphistry\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/graphistry\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"graphitegtc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/graphitegtc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"great-software-laboratory-private-limited\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/great-software-laboratory-private-limited\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"greensql\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/greensql\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"greycorbelsolutions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/greycorbelsolutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gridgain\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gridgain\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"guardicore\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/guardicore\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gxchainfoundationltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gxchainfoundationltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"h2o-ai\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/h2o-ai\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hackerbay\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hackerbay\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hackershub\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hackershub\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"haivision\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/haivision\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"haivisionsystemsinc1580780591922\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/haivisionsystemsinc1580780591922\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"haltdoscompvtltd1587136166019\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/haltdoscompvtltd1587136166019\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hanu\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hanu\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"haproxy-technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/haproxy-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"harmanconnectedservicesinc1594928575643\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/harmanconnectedservicesinc1594928575643\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"harpaitalia\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/harpaitalia\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hashhub\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hashhub\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hcl-technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hcl-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"heimdall-data\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/heimdall-data\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"help-systems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/help-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"helpyio\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/helpyio\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"heretechnologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/heretechnologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hewlett-packard\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hewlett-packard\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hillstone-networks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hillstone-networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hitachi-solutions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hitachi-solutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hitachivantara\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hitachivantara\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"holo-industrie40softwaregmbh1600957636008\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/holo-industrie40softwaregmbh1600957636008\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hortonworks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hortonworks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hpe\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hpe\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"HPE.Security.ApplicationDefender\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/HPE.Security.ApplicationDefender\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"huawei\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/huawei\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hubstor-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hubstor-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hush-hush\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hush-hush\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hvr\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hvr\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hyperglance\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hyperglance\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hypergrid\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hypergrid\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hystaxinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hystaxinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hytrust\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hytrust\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"i-exceed-technology\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/i-exceed-technology\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iaansys\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iaansys\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ibm\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ibm\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ibm-alliance-global-1560886\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ibm-alliance-global-1560886\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ibm-alliance-usa-ny-armonk-hq-ibmstorage-6201192\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ibm-alliance-usa-ny-armonk-hq-ibmstorage-6201192\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ibm-usa-ny-armonk-hq-6275750-ibmcloud-aiops\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ibm-usa-ny-armonk-hq-6275750-ibmcloud-aiops\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iboss\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iboss\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iconics\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iconics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iconsulting-spa\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iconsulting-spa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"icubeconsultancyservicesinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/icubeconsultancyservicesinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iguazio-5069960\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iguazio-5069960\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ikan\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ikan\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iliimbiliimveyazlmsistemlerisanvetica1617000555584\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iliimbiliimveyazlmsistemlerisanvetica1617000555584\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"illuminainc1586452220102\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/illuminainc1586452220102\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"image-technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/image-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"imaginecommunications\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/imaginecommunications\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"imperva\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/imperva\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"impetustechnologiesinc1591959591877\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/impetustechnologiesinc1591959591877\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"imprivatainc1580479939967\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/imprivatainc1580479939967\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"incorta\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/incorta\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"incredibuild\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/incredibuild\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"indexima1594300233028\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/indexima1594300233028\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"industry-weapon\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/industry-weapon\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"industryweapon1587162781833\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/industryweapon1587162781833\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"inenprocesosyplataformasdetisderldecv1615482385424\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/inenprocesosyplataformasdetisderldecv1615482385424\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"inergybv1637141413454\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/inergybv1637141413454\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"infinitesoftwarecorporation1579223971125\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/infinitesoftwarecorporation1579223971125\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"infiotinc1614034091460\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/infiotinc1614034091460\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"influxdata\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/influxdata\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"infoblox\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/infoblox\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"infogix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/infogix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"infolibrarian\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/infolibrarian\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"informatica\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/informatica\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"informationbuilders\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/informationbuilders\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"informationtechnologies_ltd_1179601\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/informationtechnologies_ltd_1179601\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"infotecsinternetsecuritysoftwaregmbh1636129257584\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/infotecsinternetsecuritysoftwaregmbh1636129257584\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"infront-consulting-group-ltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/infront-consulting-group-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"infscapeughaftungsbeschrnkt\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/infscapeughaftungsbeschrnkt\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ingenieurstudiohollaus1579587745438\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ingenieurstudiohollaus1579587745438\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ingrammicro\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ingrammicro\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"innomindssoftware\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/innomindssoftware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"innosepgmbh1618331344164\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/innosepgmbh1618331344164\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"innovatorartificialtechsrl1619180685551\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/innovatorartificialtechsrl1619180685551\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"innovtech\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/innovtech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"instight-technology\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/instight-technology\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"integration-objects\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/integration-objects\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"intel-bigdl\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/intel-bigdl\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"intel-fpga\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/intel-fpga\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"intellicus-technologies-pvt-ltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/intellicus-technologies-pvt-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"intelligent-plant-ltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/intelligent-plant-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"internationaltrustmachinescorporation1582190033865\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/internationaltrustmachinescorporation1582190033865\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"internet20inc1635882446190\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/internet20inc1635882446190\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"intersystems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/intersystems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"intigua\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/intigua\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"intigua1638692632641\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/intigua1638692632641\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"introspecioltd1629872641188\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/introspecioltd1629872641188\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iofabric\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iofabric\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ipinfusion1590066770520\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ipinfusion1590066770520\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ipswitch\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ipswitch\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iqsol\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iqsol\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iquate\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iquate\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iquest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iquest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"irion\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/irion\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ishlangu-load-balancer-adc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ishlangu-load-balancer-adc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"issp-corporation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/issp-corporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"isvtestukbigcat\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/isvtestukbigcat\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"isvtestuklegacy\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/isvtestuklegacy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"it4bizdoo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/it4bizdoo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"itelios\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/itelios\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"itrsgroupltd1620310702149\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/itrsgroupltd1620310702149\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ivanti-inc-pcs\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ivanti-inc-pcs\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ivix1595238749040\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ivix1595238749040\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iwnamespace\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iwnamespace\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"izenda\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/izenda\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"jamcracker\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/jamcracker\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"javlinltd1579185328273\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/javlinltd1579185328273\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"jedox\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/jedox\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"jelastic\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/jelastic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"jetnexus\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/jetnexus\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"jetware-srl\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/jetware-srl\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"jfrog\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/jfrog\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"jm-technology-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/jm-technology-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"jogetinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/jogetinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"juniper-networks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/juniper-networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"justanalytics\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/justanalytics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kaazing\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kaazing\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kadenallc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kadenallc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kali-linux\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kali-linux\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kalkitech\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kalkitech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kaminarioinc1588672951794\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kaminarioinc1588672951794\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Kaspersky.Lab\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Kaspersky.Lab\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"KasperskyLab.SecurityAgent\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/KasperskyLab.SecurityAgent\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kaspersky_lab\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kaspersky_lab\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kazendi\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kazendi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kelverion\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kelverion\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kemptech\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kemptech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kepion\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kepion\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"KevlarExtensions.M365Security.SecureOS\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/KevlarExtensions.M365Security.SecureOS\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"KevlarExtensions.M365SecurityHostIDS\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/KevlarExtensions.M365SecurityHostIDS\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"KevlarExtensions.M365SecurityInventory\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/KevlarExtensions.M365SecurityInventory\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"KevlarExtensions.M365SecurityInventory.NameChangeTest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/KevlarExtensions.M365SecurityInventory.NameChangeTest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"KevlarExtensions.M365SecurityODL\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/KevlarExtensions.M365SecurityODL\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"KevlarExtensions.M365SecurityTLSExtension\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/KevlarExtensions.M365SecurityTLSExtension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kinetica\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kinetica\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kinvolk\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kinvolk\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"knime\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/knime\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kobalt\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kobalt\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kognillc1600118221163\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kognillc1600118221163\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kognitivsparkinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kognitivsparkinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"konginc1581527938760\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/konginc1581527938760\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"konsys-ltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/konsys-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"koverseinc1588716263110\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/koverseinc1588716263110\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kryonsystems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kryonsystems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"krypc-technologies-pvt-ltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/krypc-technologies-pvt-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kyligence\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kyligence\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kyvos-insights-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kyvos-insights-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lab3solutions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lab3solutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lancom-systems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lancom-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lansa\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lansa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lastline\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lastline\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"leap-orbit\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/leap-orbit\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lenovosoftware1604394104439\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lenovosoftware1604394104439\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"leostream-corporation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/leostream-corporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lepide-software\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lepide-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"levacloudllc1602151818089\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/levacloudllc1602151818089\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"libelleag\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/libelleag\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"liberatii\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/liberatii\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"libraesva\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/libraesva\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"liebsoft\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/liebsoft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lightning-analyticsinc1582000647396\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lightning-analyticsinc1582000647396\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"linuxbasedsystemsdesignltd1580878904727\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/linuxbasedsystemsdesignltd1580878904727\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"liquid-files\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/liquid-files\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"liquidware\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/liquidware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"literatu\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/literatu\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"litespeedtechnologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/litespeedtechnologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"litespeed_technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/litespeed_technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"litionenergiegmbh1580128829115\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/litionenergiegmbh1580128829115\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"litmusautomation1582760223280\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/litmusautomation1582760223280\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"llcitpro\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/llcitpro\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lnw-softgmbh\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lnw-softgmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"loadbalancer\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/loadbalancer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"logicflowag1638535407949\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/logicflowag1638535407949\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"logsign\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/logsign\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"logstarecorp1635838645101\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/logstarecorp1635838645101\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"logtrust\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/logtrust\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"logzio\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/logzio\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"looker\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/looker\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lotus_beta_analytics\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lotus_beta_analytics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lti-lt-infotech\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lti-lt-infotech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"luminate-security\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/luminate-security\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"M365Security.KevlarExtensions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/M365Security.KevlarExtensions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"M365SecurityInventory\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/M365SecurityInventory\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"machinesense\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/machinesense\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"madhavajay1632269232059\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/madhavajay1632269232059\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"maidenhead-bridge\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/maidenhead-bridge\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"manageengine\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/manageengine\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mapd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mapd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mapr-technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mapr-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"marand\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/marand\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"marketplace-rdfe-caps\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/marketplace-rdfe-caps\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"marklogic\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/marklogic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"massiveanalytic-\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/massiveanalytic-\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mathworks-deployment\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mathworks-deployment\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mathworks-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mathworks-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"matillion\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/matillion\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mavinglobal\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mavinglobal\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"McAfee.EndpointSecurity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/McAfee.EndpointSecurity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"McAfee.EndpointSecurity.test3\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/McAfee.EndpointSecurity.test3\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"meanio\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/meanio\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"media3-adobe\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/media3-adobe\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"media3-technologies-llc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/media3-technologies-llc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mediatekinc1586141563888\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mediatekinc1586141563888\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mendix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mendix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"merlynnintelligencetechnologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/merlynnintelligencetechnologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"meshifyappinc1622759451429\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/meshifyappinc1622759451429\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"messagesolution\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/messagesolution\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"metaswitch\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/metaswitch\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mettainnovations-4900054\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mettainnovations-4900054\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mfe_azure\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mfe_azure\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mfiles\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mfiles\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mico\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mico\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"micro-focus\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/micro-focus\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microlinkpcukltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microlinkpcukltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microolap\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microolap\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-ads\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-ads\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-agci-gaming\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-agci-gaming\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-aks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-aks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-avere\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-avere\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-azure-batch\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-azure-batch\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-azure-compute\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-azure-compute\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-azure-hdinsight\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-azure-hdinsight\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-crypto\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-crypto\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-dsvm\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-dsvm\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-hyperv\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-hyperv\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-minecraft\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-minecraft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AdminCenter\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AdminCenter\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AKS\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AKS\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.ActiveDirectory\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.ActiveDirectory\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.ActiveDirectory.LinuxSSH\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.ActiveDirectory.LinuxSSH\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Applications\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Applications\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Automation.HybridWorker\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Automation.HybridWorker\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Automation.HybridWorker.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Automation.HybridWorker.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.AzureDefenderForServers\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.AzureDefenderForServers\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.AzureDefenderForSQL\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.AzureDefenderForSQL\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Backup.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Backup.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Backup.Test.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Backup.Test.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.ChangeTracking\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.ChangeTracking\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.ChangeTracking.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.ChangeTracking.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.ChangeTrackingAndInventory\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.ChangeTrackingAndInventory\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Chaos\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Chaos\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Compute.Security\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Compute.Security\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.ContainerUpstream\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.ContainerUpstream\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.DefenderForServers.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.DefenderForServers.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.DefenderForServers.Test2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.DefenderForServers.Test2\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Diagnostics\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Diagnostics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Diagnostics.Build.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Diagnostics.Build.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Diagnostics.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Diagnostics.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test012be407-61ea-4e45-a2c3-71a45999ca21-20191228083800\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test012be407-61ea-4e45-a2c3-71a45999ca21-20191228083800\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test01971384-3044-413b-8b1c-33b5d461bf23-20200107051823\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test01971384-3044-413b-8b1c-33b5d461bf23-20200107051823\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test0225ec7d-b36c-4ac8-82f0-aa4fafaf10a9-20200111051346\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test0225ec7d-b36c-4ac8-82f0-aa4fafaf10a9-20200111051346\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test025e16a1-328d-45a2-b7e3-71f7e4cde046-20191229064028\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test025e16a1-328d-45a2-b7e3-71f7e4cde046-20191229064028\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test02d1f941-5607-4757-8df7-fd8c5631ab45-20200103083810\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test02d1f941-5607-4757-8df7-fd8c5631ab45-20200103083810\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test039abd7f-360c-42a1-ad5d-77527c519286-20191002233412\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test039abd7f-360c-42a1-ad5d-77527c519286-20191002233412\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test04a0f157-c6fb-4595-b6ca-6c82a2338063-20200108101451\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test04a0f157-c6fb-4595-b6ca-6c82a2338063-20200108101451\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test0737f33e-63e0-4ba9-b04b-b93a1de4e997-20200106083639\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test0737f33e-63e0-4ba9-b04b-b93a1de4e997-20200106083639\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test0a44d7be-63fa-418d-a7b6-89a44dd21894-20200107052935\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test0a44d7be-63fa-418d-a7b6-89a44dd21894-20200107052935\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test0d01b487-7f79-4d87-b330-5c025068db45-20191004190331\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test0d01b487-7f79-4d87-b330-5c025068db45-20191004190331\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test0d643748-e6fe-41ad-b4d3-89a289a0cee0-20191003055620\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test0d643748-e6fe-41ad-b4d3-89a289a0cee0-20191003055620\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test0df83c51-5bb9-43f8-8ae9-bc896ea64f78-20200110220221\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test0df83c51-5bb9-43f8-8ae9-bc896ea64f78-20200110220221\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test0f02c246-7e65-4010-9367-ca4530c3897e-20191004190223\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test0f02c246-7e65-4010-9367-ca4530c3897e-20191004190223\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test157494ec-e788-43b0-8d26-a17e39ee07cc-20191002011945\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test157494ec-e788-43b0-8d26-a17e39ee07cc-20191002011945\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test1661d154-b623-4507-8a56-3a89812c456c-20200111083940\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test1661d154-b623-4507-8a56-3a89812c456c-20200111083940\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test17bbd860-f21d-40ab-9026-16e05f2907f0-20200106083451\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test17bbd860-f21d-40ab-9026-16e05f2907f0-20200106083451\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test194e2333-13cd-43e3-b0a4-c8cdcf1a3600-20200110211106\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test194e2333-13cd-43e3-b0a4-c8cdcf1a3600-20200110211106\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test1bc26b19-b8d8-41f9-a26d-818f277bdf93-20200101113139\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test1bc26b19-b8d8-41f9-a26d-818f277bdf93-20200101113139\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test1c840053-9213-4f2a-8f2e-9bf2297908bd-20200108101424\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test1c840053-9213-4f2a-8f2e-9bf2297908bd-20200108101424\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test1d7bba72-69f1-43cd-a38c-41ce0b5f4bae-20200109050041\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test1d7bba72-69f1-43cd-a38c-41ce0b5f4bae-20200109050041\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test1f7a8078-50e7-4a3a-91eb-d178fd4c403b-20191002233353\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test1f7a8078-50e7-4a3a-91eb-d178fd4c403b-20191002233353\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test1fef1fdc-57ba-46a8-a879-475ba7d45a7a-20200106083509\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test1fef1fdc-57ba-46a8-a879-475ba7d45a7a-20200106083509\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test21332f15-f78d-4d31-afac-79b9dc989432-20191231175840\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test21332f15-f78d-4d31-afac-79b9dc989432-20191231175840\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test22f10717-6939-4003-a9ce-38effd8b77d6-20191007191355\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test22f10717-6939-4003-a9ce-38effd8b77d6-20191007191355\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test2334e6e3-bb72-4241-a36f-c2429d69bc0b-20200106050834\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test2334e6e3-bb72-4241-a36f-c2429d69bc0b-20200106050834\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test24fa9eb5-1c59-4425-b61c-30fd638c2a45-20191003203802\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test24fa9eb5-1c59-4425-b61c-30fd638c2a45-20191003203802\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test2521a545-ed61-4a15-bed1-aba7ce1d81ee-20200106050804\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test2521a545-ed61-4a15-bed1-aba7ce1d81ee-20200106050804\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test25c6fe61-1282-43c2-867b-b5039219989c-20200105081851\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test25c6fe61-1282-43c2-867b-b5039219989c-20200105081851\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test27515c8c-6773-4f92-afb0-35691cc6e3b6-20200103083821\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test27515c8c-6773-4f92-afb0-35691cc6e3b6-20200103083821\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test28012680-48e7-4903-877f-2f29464e63d5-20191229033424\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test28012680-48e7-4903-877f-2f29464e63d5-20191229033424\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test29a7a529-d293-4728-9d7f-257ed996e64f-20200108081759\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test29a7a529-d293-4728-9d7f-257ed996e64f-20200108081759\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test2a5f2d2c-b8e3-46c2-850d-a1641c024fe7-20200107084228\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test2a5f2d2c-b8e3-46c2-850d-a1641c024fe7-20200107084228\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test2ce856af-ab17-48f2-ba3e-bcd9af091061-20200110013246\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test2ce856af-ab17-48f2-ba3e-bcd9af091061-20200110013246\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test2e012e83-6361-4365-963f-6ced8a08e91c-20200110211254\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test2e012e83-6361-4365-963f-6ced8a08e91c-20200110211254\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test2ecf67b2-fb63-4461-b6a6-7026c4fb1168-20191002214026\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test2ecf67b2-fb63-4461-b6a6-7026c4fb1168-20191002214026\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test2ede6564-c7cc-44cb-a1a8-902505c9829d-20191003020742\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test2ede6564-c7cc-44cb-a1a8-902505c9829d-20191003020742\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test2f4ebc17-e27e-48d9-9cc3-ff933c21884e-20200106092410\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test2f4ebc17-e27e-48d9-9cc3-ff933c21884e-20200106092410\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test349ee02c-af9b-4663-a963-823b40eefed8-20200108083612\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test349ee02c-af9b-4663-a963-823b40eefed8-20200108083612\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test34cf6b13-b78e-478b-b596-8b661629371d-20191007195455\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test34cf6b13-b78e-478b-b596-8b661629371d-20191007195455\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test36cc5b60-2b23-4a04-bf95-f7865e1141cf-20200110085718\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test36cc5b60-2b23-4a04-bf95-f7865e1141cf-20200110085718\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3712fca9-5cdd-4609-be69-b02aedc5c55c-20200107084115\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3712fca9-5cdd-4609-be69-b02aedc5c55c-20200107084115\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3772d042-92e2-4bcb-99b7-8a6a119cc088-20191231182808\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3772d042-92e2-4bcb-99b7-8a6a119cc088-20191231182808\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test37a6dd64-d44d-465e-85bc-3bc38be90350-20200104083535\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test37a6dd64-d44d-465e-85bc-3bc38be90350-20200104083535\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test381074d5-7156-472b-801a-b35f8fef4cc6-20200105050612\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test381074d5-7156-472b-801a-b35f8fef4cc6-20200105050612\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3877a44d-4c48-40db-80eb-227272d5acd6-20200110103540\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3877a44d-4c48-40db-80eb-227272d5acd6-20200110103540\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test38ecd28e-7018-4672-840c-3044a5e7a6b5-20200111084208\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test38ecd28e-7018-4672-840c-3044a5e7a6b5-20200111084208\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test395a0b49-442a-450c-8a1f-65b0aa3bcf47-20200105083839\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test395a0b49-442a-450c-8a1f-65b0aa3bcf47-20200105083839\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3971b300-edff-44a8-b61b-7f9b7460a8d6-20191003002234\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3971b300-edff-44a8-b61b-7f9b7460a8d6-20191003002234\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3adeec20-7458-4b3d-af26-0b6bc2aae3eb-20200103083751\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3adeec20-7458-4b3d-af26-0b6bc2aae3eb-20200103083751\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3b20dd96-f3e4-4798-998d-8c433c2449a7-20200108083635\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3b20dd96-f3e4-4798-998d-8c433c2449a7-20200108083635\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3ce2fd4a-8b5a-4c7e-b08d-3e48fc0f45e7-20200104083825\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3ce2fd4a-8b5a-4c7e-b08d-3e48fc0f45e7-20200104083825\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3d499ca7-cc8d-41cc-a6dc-ffb1a4ac4942-20200107053004\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3d499ca7-cc8d-41cc-a6dc-ffb1a4ac4942-20200107053004\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3db7240e-5e42-4d6d-b024-cc9fce3c828b-20200105083520\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3db7240e-5e42-4d6d-b024-cc9fce3c828b-20200105083520\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3f6b7341-635f-48d5-a36d-be5dfe3002c4-20200105050937\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3f6b7341-635f-48d5-a36d-be5dfe3002c4-20200105050937\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3fc26934-ede2-4482-ad5e-f66f6135d4a6-20191228055558\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3fc26934-ede2-4482-ad5e-f66f6135d4a6-20191228055558\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test406d077c-6017-4062-bc96-f809147a2331-20200106050748\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test406d077c-6017-4062-bc96-f809147a2331-20200106050748\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test4302336c-e039-4e70-bcb6-9275f6089e4a-20200108144821\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test4302336c-e039-4e70-bcb6-9275f6089e4a-20200108144821\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test453a087e-8435-46db-970a-4ee633cc4c4a-20200102083458\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test453a087e-8435-46db-970a-4ee633cc4c4a-20200102083458\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test46b73afa-2259-4aff-81e1-a58bf24b59aa-20191229033459\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test46b73afa-2259-4aff-81e1-a58bf24b59aa-20191229033459\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test4a3399ee-82ea-46aa-9e3a-5434b588e3b6-20191228013518\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test4a3399ee-82ea-46aa-9e3a-5434b588e3b6-20191228013518\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test4eb7a185-527b-4b9f-93a8-7f1cec9d062e-20191231151207\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test4eb7a185-527b-4b9f-93a8-7f1cec9d062e-20191231151207\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test520a0915-f9f0-4da4-9fa1-1b74fc1470aa-20200102083505\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test520a0915-f9f0-4da4-9fa1-1b74fc1470aa-20200102083505\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test5397960f-023b-4979-9a8b-800d049045a4-20191007195417\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test5397960f-023b-4979-9a8b-800d049045a4-20191007195417\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test55a36387-8a3f-4159-9884-29b97539a253-20200109080443\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test55a36387-8a3f-4159-9884-29b97539a253-20200109080443\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test5645f186-4ee5-4209-af37-423660e3318c-20191231175947\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test5645f186-4ee5-4209-af37-423660e3318c-20191231175947\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test58b4461d-4d2d-4395-b6d2-ab83d4d8c62f-20200111001002\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test58b4461d-4d2d-4395-b6d2-ab83d4d8c62f-20200111001002\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test5b0bf447-d98d-429d-8334-c032d197c743-20191003203846\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test5b0bf447-d98d-429d-8334-c032d197c743-20191003203846\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test5bc90367-1ea2-400b-a40c-321081bae3f3-20200108145035\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test5bc90367-1ea2-400b-a40c-321081bae3f3-20200108145035\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test5bd0562f-e939-456f-a6ee-c848d1aba616-20200101151641\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test5bd0562f-e939-456f-a6ee-c848d1aba616-20200101151641\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test5e4efe90-916c-4c96-802c-1508a5b6da78-20191231151150\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test5e4efe90-916c-4c96-802c-1508a5b6da78-20191231151150\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test5f8f0c10-cc3c-45ec-a068-fb1c7edfa0d9-20200101145958\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test5f8f0c10-cc3c-45ec-a068-fb1c7edfa0d9-20200101145958\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test60a000b7-286c-4b2b-9137-bbc088736419-20200108144920\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test60a000b7-286c-4b2b-9137-bbc088736419-20200108144920\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test6192a01b-ba47-4d08-904a-71647a49a112-20191008041625\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test6192a01b-ba47-4d08-904a-71647a49a112-20191008041625\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test62835538-89c6-4f66-9034-f7a4b176c615-20191007234245\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test62835538-89c6-4f66-9034-f7a4b176c615-20191007234245\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test651e4ad2-ee4a-462e-a506-b56b1969f5d0-20200110230749\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test651e4ad2-ee4a-462e-a506-b56b1969f5d0-20200110230749\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test691d94e5-c40c-4568-94b0-09b08aea42b1-20200106050808\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test691d94e5-c40c-4568-94b0-09b08aea42b1-20200106050808\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test6aa3643c-011a-4180-877f-cad955a8e664-20191007234642\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test6aa3643c-011a-4180-877f-cad955a8e664-20191007234642\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test6cfb469b-8478-468f-9bb5-691affd32abb-20200107083803\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test6cfb469b-8478-468f-9bb5-691affd32abb-20200107083803\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test6d36b6b2-7956-4e62-91c1-c33792fd4bb1-20200110123203\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test6d36b6b2-7956-4e62-91c1-c33792fd4bb1-20200110123203\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test6e28168e-a9c8-4c0a-8b40-60c2a1502d43-20200108052802\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test6e28168e-a9c8-4c0a-8b40-60c2a1502d43-20200108052802\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test6eb763ac-7fbe-4e44-bee7-aad035ee2a7d-20200110084429\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test6eb763ac-7fbe-4e44-bee7-aad035ee2a7d-20200110084429\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test6efec253-f625-46f0-9d74-324f69e963d8-20200107070514\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test6efec253-f625-46f0-9d74-324f69e963d8-20200107070514\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test70fa7e4c-3122-4ff7-aec6-fe75ab660a01-20200108105900\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test70fa7e4c-3122-4ff7-aec6-fe75ab660a01-20200108105900\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test710a5fbf-06c7-46ac-b96d-a29d2586422f-20200108083639\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test710a5fbf-06c7-46ac-b96d-a29d2586422f-20200108083639\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test71d72489-67c6-45e2-b1e6-a19546efc823-20200105112903\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test71d72489-67c6-45e2-b1e6-a19546efc823-20200105112903\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test721fccf1-2b3e-44b6-908f-51b910e88b09-20200111104931\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test721fccf1-2b3e-44b6-908f-51b910e88b09-20200111104931\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test742d0189-9e41-4f1b-8ad3-31c05d34903b-20200111103247\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test742d0189-9e41-4f1b-8ad3-31c05d34903b-20200111103247\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test7836a97c-f56e-48d0-8b5d-61e79aeb3226-20200111071656\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7836a97c-f56e-48d0-8b5d-61e79aeb3226-20200111071656\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test78666b2e-25c8-4a48-931a-3131a0317d73-20191002194352\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test78666b2e-25c8-4a48-931a-3131a0317d73-20191002194352\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test79f13508-fcbd-47b9-988f-1c21ef5e7f2e-20191002015429\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test79f13508-fcbd-47b9-988f-1c21ef5e7f2e-20191002015429\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test79fb90ce-4691-4212-99a7-6e4069bd5984-20191007234256\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test79fb90ce-4691-4212-99a7-6e4069bd5984-20191007234256\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test7a8cf687-6a21-4181-ba98-902fee717bd3-20200104103216\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7a8cf687-6a21-4181-ba98-902fee717bd3-20200104103216\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test7aabf813-6644-483a-b9e0-ba6f8973ba1f-20191002232822\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7aabf813-6644-483a-b9e0-ba6f8973ba1f-20191002232822\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test7c96c10a-0c8f-4ab0-83fd-1ad66a362e33-20191229033458\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7c96c10a-0c8f-4ab0-83fd-1ad66a362e33-20191229033458\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test7e79b6ff-2559-44fe-b3ba-afaa68d63636-20200108112116\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7e79b6ff-2559-44fe-b3ba-afaa68d63636-20200108112116\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test7ea372f7-ea7e-4b9e-bbad-4f35c1567aa2-20200108052736\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7ea372f7-ea7e-4b9e-bbad-4f35c1567aa2-20200108052736\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test7fac3d04-98a5-4fc4-904e-9ea3b86eadc2-20200106050751\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7fac3d04-98a5-4fc4-904e-9ea3b86eadc2-20200106050751\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test7fe20dd6-9ed9-4126-bb1d-031c01ac4550-20200101114504\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7fe20dd6-9ed9-4126-bb1d-031c01ac4550-20200101114504\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test7ff974d9-c841-4249-b05b-bbf663cb4605-20200106084104\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7ff974d9-c841-4249-b05b-bbf663cb4605-20200106084104\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test815bd4d5-fc24-4a47-be20-063c4809902c-20200109050508\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test815bd4d5-fc24-4a47-be20-063c4809902c-20200109050508\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test817654d0-2109-4d95-9284-8c8a9d960d08-20200108053758\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test817654d0-2109-4d95-9284-8c8a9d960d08-20200108053758\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test821ca3b6-dd05-4e80-b3d8-74ba03b2609b-20191231151151\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test821ca3b6-dd05-4e80-b3d8-74ba03b2609b-20191231151151\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test8285dc3e-637d-4d46-9695-adc39cbe7d2f-20200108144457\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test8285dc3e-637d-4d46-9695-adc39cbe7d2f-20200108144457\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test828aae03-9239-4938-a303-c23c42311878-20200102083419\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test828aae03-9239-4938-a303-c23c42311878-20200102083419\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test84afd814-5098-49ab-af99-e50350b5898b-20200110211134\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test84afd814-5098-49ab-af99-e50350b5898b-20200110211134\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test85b08563-b15f-4202-a0bc-f2bc2df2c71a-20200107053335\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test85b08563-b15f-4202-a0bc-f2bc2df2c71a-20200107053335\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test88aac268-c087-4481-b78e-99b920784a33-20200101084853\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test88aac268-c087-4481-b78e-99b920784a33-20200101084853\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test88dbd442-a8cc-4874-81a0-d3192c61df62-20191001224544\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test88dbd442-a8cc-4874-81a0-d3192c61df62-20191001224544\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test894dfb75-a00f-4f0c-894c-cae1c9846ad3-20200105051803\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test894dfb75-a00f-4f0c-894c-cae1c9846ad3-20200105051803\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test8d09bf4d-ee63-4ab1-a986-a4b802418403-20200111051447\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test8d09bf4d-ee63-4ab1-a986-a4b802418403-20200111051447\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test8d4d652b-4f05-4e99-93dd-78b9a36b5c78-20191003203755\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test8d4d652b-4f05-4e99-93dd-78b9a36b5c78-20191003203755\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test8de64739-43d8-4f84-af65-fdb3d0885288-20200108053543\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test8de64739-43d8-4f84-af65-fdb3d0885288-20200108053543\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test8e324c65-a51d-4eeb-9ec8-d5f8662dc041-20191228165107\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test8e324c65-a51d-4eeb-9ec8-d5f8662dc041-20191228165107\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test8e564580-8e53-4300-85f1-bf7f31dd37ff-20200107013348\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test8e564580-8e53-4300-85f1-bf7f31dd37ff-20200107013348\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test8f458ca7-8898-4d58-b93d-bfb0c3da028c-20200109050310\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test8f458ca7-8898-4d58-b93d-bfb0c3da028c-20200109050310\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test901cd6ca-5565-4552-a3de-d204d01935c0-20200108083706\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test901cd6ca-5565-4552-a3de-d204d01935c0-20200108083706\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test907b39e5-4008-4b55-93a0-18e9697b9cf3-20200108053817\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test907b39e5-4008-4b55-93a0-18e9697b9cf3-20200108053817\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test90c2be7c-d7ec-4abf-9fad-fef90fc3ef4d-20191004022234\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test90c2be7c-d7ec-4abf-9fad-fef90fc3ef4d-20191004022234\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test922db678-6ee8-43d5-86ff-6a86e132d332-20200107085231\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test922db678-6ee8-43d5-86ff-6a86e132d332-20200107085231\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test93b88aec-5277-4b1b-910c-7008e972ce91-20200107013304\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test93b88aec-5277-4b1b-910c-7008e972ce91-20200107013304\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test95a9104b-6cba-42d8-82ff-cc37e5ac44db-20200108081723\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test95a9104b-6cba-42d8-82ff-cc37e5ac44db-20200108081723\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test96da1605-19e0-46eb-9ce0-53e840f5e2cb-20200101111729\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test96da1605-19e0-46eb-9ce0-53e840f5e2cb-20200101111729\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test996066b2-7d29-400f-929b-e343a21046f7-20191231151212\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test996066b2-7d29-400f-929b-e343a21046f7-20191231151212\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test99663fff-ed21-4a91-9687-1a6da2abb033-20200106084508\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test99663fff-ed21-4a91-9687-1a6da2abb033-20200106084508\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test9eb5efa5-c3c1-4c13-80a6-11f5eba67372-20200108144852\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test9eb5efa5-c3c1-4c13-80a6-11f5eba67372-20200108144852\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testa3791896-b1fc-491e-ba0d-aefcd8d9e52a-20200105083503\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testa3791896-b1fc-491e-ba0d-aefcd8d9e52a-20200105083503\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testa37ff709-a078-45a0-8187-41733df8e101-20200109050003\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testa37ff709-a078-45a0-8187-41733df8e101-20200109050003\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testa4c5fe4e-936e-4be1-a612-a331aff54a8c-20200111105055\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testa4c5fe4e-936e-4be1-a612-a331aff54a8c-20200111105055\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testa59bce1d-e32c-423d-a86e-945d4aeb98b4-20200107051821\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testa59bce1d-e32c-423d-a86e-945d4aeb98b4-20200107051821\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testa604c059-8279-4f4d-a354-eec27222a06c-20200111051514\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testa604c059-8279-4f4d-a354-eec27222a06c-20200111051514\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testa71fefb1-0d9c-4fb3-8d3d-5dcd12d72b77-20200103103221\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testa71fefb1-0d9c-4fb3-8d3d-5dcd12d72b77-20200103103221\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testa748013d-c5a6-44f9-88eb-43167207c742-20200111051402\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testa748013d-c5a6-44f9-88eb-43167207c742-20200111051402\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testaab67022-4f2b-420d-a06a-2c4045110cdf-20191229033144\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testaab67022-4f2b-420d-a06a-2c4045110cdf-20191229033144\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testacab9541-280f-4491-9f49-ac57653f0a07-20200105083839\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testacab9541-280f-4491-9f49-ac57653f0a07-20200105083839\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testad298437-0349-4cc7-88a9-d8aabcba9df1-20191002233431\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testad298437-0349-4cc7-88a9-d8aabcba9df1-20191002233431\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testadd68286-f9e0-4ab1-a526-d8f3cf0f054e-20200105084128\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testadd68286-f9e0-4ab1-a526-d8f3cf0f054e-20200105084128\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testade4c52b-18f5-4b67-8e93-945358ce4f7d-20191007234259\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testade4c52b-18f5-4b67-8e93-945358ce4f7d-20191007234259\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testae421c1d-0211-4ef2-b372-564ce8ad484a-20200110104035\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testae421c1d-0211-4ef2-b372-564ce8ad484a-20200110104035\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testafbbd8bf-aec5-48bf-8fea-73fa15ccc315-20191001224727\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testafbbd8bf-aec5-48bf-8fea-73fa15ccc315-20191001224727\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testb15148bf-78d2-42d4-ad08-b3ad8fb4b122-20200101084759\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testb15148bf-78d2-42d4-ad08-b3ad8fb4b122-20200101084759\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testb4237708-3688-40ea-85a2-275c05f4d100-20191228083519\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testb4237708-3688-40ea-85a2-275c05f4d100-20191228083519\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testb799a18f-be45-4c5c-8438-163ac2e1f1e7-20191004190529\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testb799a18f-be45-4c5c-8438-163ac2e1f1e7-20191004190529\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testb7cee88a-e5ac-4af4-99c8-7247020b00c3-20200105051201\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testb7cee88a-e5ac-4af4-99c8-7247020b00c3-20200105051201\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testb7df0d9a-27c0-4ca5-b692-08dd90387b98-20200111083443\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testb7df0d9a-27c0-4ca5-b692-08dd90387b98-20200111083443\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testbbf6bf32-4bd0-4381-b8f7-2658f585df4d-20191003203846\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testbbf6bf32-4bd0-4381-b8f7-2658f585df4d-20191003203846\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testbeea1376-166a-4b1a-8923-c907cc9737d9-20200107013336\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testbeea1376-166a-4b1a-8923-c907cc9737d9-20200107013336\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testbf9154e9-6166-48c2-86fe-1f331be606d7-20200107051823\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testbf9154e9-6166-48c2-86fe-1f331be606d7-20200107051823\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc0d7c3c5-23b8-489c-a5e0-ae87c681b696-20200101083539\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc0d7c3c5-23b8-489c-a5e0-ae87c681b696-20200101083539\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc193f31a-5186-4e93-84f6-0e4ab87b73c1-20200107052937\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc193f31a-5186-4e93-84f6-0e4ab87b73c1-20200107052937\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc1c7e8dc-fa8c-47d9-8305-de6d1451b939-20200101085248\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc1c7e8dc-fa8c-47d9-8305-de6d1451b939-20200101085248\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc1d0c917-e2ae-430c-a2ca-383fb0fda046-20191007235839\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc1d0c917-e2ae-430c-a2ca-383fb0fda046-20191007235839\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc23a3fbb-6e95-4c0d-94fc-c8ab14dddf1c-20191231151117\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc23a3fbb-6e95-4c0d-94fc-c8ab14dddf1c-20191231151117\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc2697630-6247-411a-94b3-c2974ad8cbee-20191007195417\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc2697630-6247-411a-94b3-c2974ad8cbee-20191007195417\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc466b80f-670f-4383-89b8-44e0d509fa20-20191002000516\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc466b80f-670f-4383-89b8-44e0d509fa20-20191002000516\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc5c8d9bd-75fa-4db3-9f34-5d7b7098584c-20191003203851\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc5c8d9bd-75fa-4db3-9f34-5d7b7098584c-20191003203851\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc8b6d14b-a5db-48e0-bfad-a2818d432bea-20200104083443\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc8b6d14b-a5db-48e0-bfad-a2818d432bea-20200104083443\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc933efa8-c553-4b93-884f-b7221d9ca789-20191228083750\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc933efa8-c553-4b93-884f-b7221d9ca789-20191228083750\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testcbe8ab80-46ef-49b1-a7bb-4e3d6e50e49f-20200104050811\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testcbe8ab80-46ef-49b1-a7bb-4e3d6e50e49f-20200104050811\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testccc0b5e6-9b0d-451a-8ac4-6f4af293b913-20200106092645\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testccc0b5e6-9b0d-451a-8ac4-6f4af293b913-20200106092645\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testcec64786-04b1-487c-80ec-050da646fb1c-20191005123412\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testcec64786-04b1-487c-80ec-050da646fb1c-20191005123412\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testd104a52f-eba2-401d-8e7f-a841c90f7712-20191228083553\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testd104a52f-eba2-401d-8e7f-a841c90f7712-20191228083553\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testd724cea4-0d3c-4539-b2ff-be08fb23a67e-20200107083714\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testd724cea4-0d3c-4539-b2ff-be08fb23a67e-20200107083714\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testd8e60bac-27ff-4fba-90b8-732c9c5ff91c-20191228083751\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testd8e60bac-27ff-4fba-90b8-732c9c5ff91c-20191228083751\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testd99db4a5-7683-4584-89ad-fefd711de284-20191004190210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testd99db4a5-7683-4584-89ad-fefd711de284-20191004190210\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testd9b4309a-67bc-4cd8-ac47-094cb20ca6aa-20200101090202\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testd9b4309a-67bc-4cd8-ac47-094cb20ca6aa-20200101090202\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testda3320e0-28f2-4146-a002-e06296362711-20191004190115\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testda3320e0-28f2-4146-a002-e06296362711-20191004190115\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testda714121-3240-4253-90c3-48c43f115c90-20200102083419\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testda714121-3240-4253-90c3-48c43f115c90-20200102083419\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testdb357558-60b4-4ee3-9ec3-ba22c5d827fb-20191004020617\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testdb357558-60b4-4ee3-9ec3-ba22c5d827fb-20191004020617\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testdc7230e9-df6d-4edd-a57c-ef7e0432c463-20191002011345\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testdc7230e9-df6d-4edd-a57c-ef7e0432c463-20191002011345\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testdccb59de-436f-4935-bed6-2e677dcaf36a-20200109111802\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testdccb59de-436f-4935-bed6-2e677dcaf36a-20200109111802\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testde985b23-9333-4f6e-a5e8-82025a38b2af-20200102083510\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testde985b23-9333-4f6e-a5e8-82025a38b2af-20200102083510\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Teste271da3e-cbcb-4ee7-8770-f297f414451f-20191003015540\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Teste271da3e-cbcb-4ee7-8770-f297f414451f-20191003015540\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Teste4070edd-aec0-455d-8a79-aecdb7170b6d-20191007234642\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Teste4070edd-aec0-455d-8a79-aecdb7170b6d-20191007234642\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Teste42f351a-4da0-4f0d-93e9-ef1d98e06659-20200108083633\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Teste42f351a-4da0-4f0d-93e9-ef1d98e06659-20200108083633\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Teste66ca23c-f4bf-4eb3-8418-139364d19e7d-20200107062643\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Teste66ca23c-f4bf-4eb3-8418-139364d19e7d-20200107062643\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Teste78b1ab2-1380-48ab-9923-0276cdb7198b-20191001224742\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Teste78b1ab2-1380-48ab-9923-0276cdb7198b-20191001224742\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Teste8607e14-b4f8-472a-bd5b-893b8d9612e6-20200112045941\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Teste8607e14-b4f8-472a-bd5b-893b8d9612e6-20200112045941\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Teste980b80e-3add-42c0-bc98-a84020b2d128-20200108101640\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Teste980b80e-3add-42c0-bc98-a84020b2d128-20200108101640\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Tested79dba9-2d38-4ea9-a01c-56e94b30ca7a-20191007195447\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Tested79dba9-2d38-4ea9-a01c-56e94b30ca7a-20191007195447\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testee9dcf5f-f7c4-4192-a8f4-28e9bc7d0f7c-20191001225005\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testee9dcf5f-f7c4-4192-a8f4-28e9bc7d0f7c-20191001225005\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testefbb340a-b68b-4200-872b-d05e7d29f92d-20191007195432\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testefbb340a-b68b-4200-872b-d05e7d29f92d-20191007195432\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testf1fc0559-6740-48dd-9501-2b933c731d52-20200103083458\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testf1fc0559-6740-48dd-9501-2b933c731d52-20200103083458\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testf41dfc97-bb51-4fba-86ca-a6f2695c415a-20200107050834\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testf41dfc97-bb51-4fba-86ca-a6f2695c415a-20200107050834\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testf5784447-83ed-4c00-8764-ea0f932aafa2-20200106085748\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testf5784447-83ed-4c00-8764-ea0f932aafa2-20200106085748\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testf6128ef6-c13c-420e-8088-0710888ce88b-20200109050003\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testf6128ef6-c13c-420e-8088-0710888ce88b-20200109050003\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testf863ab2c-ada9-4646-84c7-1f83a82375d7-20191229033226\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testf863ab2c-ada9-4646-84c7-1f83a82375d7-20191229033226\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testfac552a7-418f-4baa-8f51-d199ceff5c68-20200103050817\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testfac552a7-418f-4baa-8f51-d199ceff5c68-20200103050817\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testfb7be054-5c15-494f-822c-b64f9a36e2f3-20200105051753\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testfb7be054-5c15-494f-822c-b64f9a36e2f3-20200105051753\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testfc5c7585-6c9a-4aa4-a7c4-1223a94e00c7-20200104083552\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testfc5c7585-6c9a-4aa4-a7c4-1223a94e00c7-20200104083552\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.FileServer.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.FileServer.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Geneva\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Geneva\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.KeyVault\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.KeyVault\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.KeyVault.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.KeyVault.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.LabServices\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.LabServices\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.LabServices.test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.LabServices.test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.Agent\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.Agent\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.Dev\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.Dev\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.Dev.INT\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.Dev.INT\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.Dev.SCALE\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.Dev.SCALE\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.Dev.TEST\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.Dev.TEST\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.GuestHealth\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.GuestHealth\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.DEV\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.DEV\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.INT\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.INT\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.SCALE\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.SCALE\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.TEST\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.TEST\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.INT.Dev\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.INT.Dev\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.SCALE.Dev\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.SCALE.Dev\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.TEST.Dev\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.TEST.Dev\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.WorkloadInsights.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.WorkloadInsights.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.WorkloadInsightsTest.newnamespace\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.WorkloadInsightsTest.newnamespace\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.Workloads\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.Workloads\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.Workloads.Dev\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.Workloads.Dev\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitoring.DependencyAgent\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitoring.DependencyAgent\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitoring.DependencyAgent.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitoring.DependencyAgent.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Networking.DNS\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Networking.DNS\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Networking.SDN\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Networking.SDN\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.NetworkWatcher\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.NetworkWatcher\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.NetworkWatcher.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.NetworkWatcher.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.OpenSSH\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.OpenSSH\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Performance.Diagnostics\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Performance.Diagnostics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Performance.Diagnostics.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Performance.Diagnostics.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.RecoveryServices\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.RecoveryServices.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices.SiteRecovery\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.RecoveryServices.SiteRecovery\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices.SiteRecovery2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.RecoveryServices.SiteRecovery2\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices.WorkloadBackup\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.RecoveryServices.WorkloadBackup\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices.WorkloadBackup.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.RecoveryServices.WorkloadBackup.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.AntimalwareSignature\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.AntimalwareSignature\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.AntimalwareSignature.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.AntimalwareSignature.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.Dsms\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.Dsms\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.Dsms.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.Dsms.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.LinuxAttestation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.LinuxAttestation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.LinuxTestAttestation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.LinuxTestAttestation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.Monitoring\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.Monitoring\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.Monitoring.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.Monitoring.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.Monitoring.Testing\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.Monitoring.Testing\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.TestWindowsAttestation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.TestWindowsAttestation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.WindowsAttestation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.WindowsAttestation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.WinTestAttestation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.WinTestAttestation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Sentinel.DnsExtension.Dev\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Sentinel.DnsExtension.Dev\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.ServiceFabric.MC\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.ServiceFabric.MC\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.ServiceFabric.MC.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.ServiceFabric.MC.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.SiteRecovery.Stage\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.SiteRecovery.Stage\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.SiteRecovery.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.SiteRecovery.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.SiteRecovery2.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.SiteRecovery2.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Test.Identity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Test.Identity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WindowsFabric.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WindowsFabric.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.ReleasePipeTest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.ReleasePipeTest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.ReleasePipeTest.INT\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.ReleasePipeTest.INT\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.ReleasePipeTest.TEST\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.ReleasePipeTest.TEST\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test2\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test3\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test3\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test4\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test4\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test5\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test5\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test5.INT\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test5.INT\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test5.TEST\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test5.TEST\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.VincentTest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.VincentTest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.VincentTest2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.VincentTest2\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.VincentTest3\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.VincentTest3\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.VincentTest4\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.VincentTest4\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.TestTest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.TestTest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.TestTest.INT\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.TestTest.INT\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.TestTest.TEST\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.TestTest.TEST\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Windows.ReleasePipeTest.INT\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Windows.ReleasePipeTest.INT\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Windows.ReleasePipeTest.TEST\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Windows.ReleasePipeTest.TEST\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoring\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoring.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoringTest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoringTest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureData\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureData\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureData.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureData.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.Canary\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights.Canary\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.Corp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights.Corp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.Linux.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights.Linux.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.LinuxTest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights.LinuxTest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.Meya0206\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights.Meya0206\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.MeyaCorp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights.MeyaCorp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.Testing\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights.Testing\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureSecurity.JITAccess\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureSecurity.JITAccess\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.CloudBackup.Workload.Extension\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.CloudBackup.Workload.Extension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.CloudBackup.Workload.Extension.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.CloudBackup.Workload.Extension.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Compute\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Compute.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Compute.TestSar\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute.TestSar\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.CPlat.Core\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.CPlat.Core\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.CPlat.Core.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.CPlat.Core.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Dcsswe.Extensions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Dcsswe.Extensions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.EnterpriseCloud.Monitoring\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.EnterpriseCloud.Monitoring.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.EnterpriseCloud.Monitoring.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Golive.Extensions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Golive.Extensions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.GuestConfig.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.GuestConfig.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.GuestConfiguration\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.GuestConfiguration\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.GuestConfiguration.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.GuestConfiguration.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.GuestConfiguration.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.GuestConfiguration.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.HpcCompute\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.HpcCompute\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.HpcCompute.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.HpcCompute.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.HpcPack\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.HpcPack\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Interceptor\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Interceptor\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.M365\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.M365\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.M365SecurityConfiguration.Kevlar.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.M365SecurityConfiguration.Kevlar.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.ManagedIdentity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.ManagedIdentity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.ManagedServices\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.ManagedServices\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.ManagedServices.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.ManagedServices.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.MonitoringAgent.Extension\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.MonitoringAgent.Extension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Network\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Network\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.OSTCExtensions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.OSTCExtensions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.OSTCExtensions.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.OSTCExtensions.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.OSTCExtensions.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.OSTCExtensions.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.OSTCExtensions.Testing\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.OSTCExtensions.Testing\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Powershell\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Powershell\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Powershell.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Powershell.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Powershell.Test01\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Powershell.Test01\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.SecurityManagement.Kevlar\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.SecurityManagement.Kevlar\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Sentinel.AzureMonitorAgentExtensions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Sentinel.AzureMonitorAgentExtensions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.SoftwareUpdateManagement\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.SoftwareUpdateManagement\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.SoftwareUpdateManagement.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.SoftwareUpdateManagement.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.SqlServer.Managability.IaaS.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.SqlServer.Managability.IaaS.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.SqlServer.Management\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.SqlServer.Management\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.SqlServer.Management.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.SqlServer.Management.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.SystemCenter\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.SystemCenter\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.SystemCenter.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.SystemCenter.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Test.Azure.Workloads\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Test.Azure.Workloads\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.TestSqlServer.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.TestSqlServer.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.ETWTraceListenerService\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.Azure.ETWTraceListenerService\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.RemoteDebug\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.Azure.RemoteDebug\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.RemoteDebug.Json\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.Azure.RemoteDebug.Json\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.ServiceProfiler\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.ServiceProfiler\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.Services\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.Services\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.WindowsAzure.DevTest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.WindowsAzure.DevTest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.WindowsAzure.DevTest.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.WindowsAzure.DevTest.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.WindowsAzure.RemoteDebug\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.WindowsAzure.RemoteDebug\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.WindowsAzure.Test.RemoteDebug\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.WindowsAzure.Test.RemoteDebug\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Windows.Azure.Extensions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Windows.Azure.Extensions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Windows.AzureRemoteApp.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Windows.AzureRemoteApp.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Windows.RemoteDesktop\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Windows.RemoteDesktop\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.WindowsAdminCenter\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.WindowsAdminCenter\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.WindowsAdminCenter.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.WindowsAdminCenter.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.WindowsAzure.Compute\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.WindowsAzure.Compute\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.WindowsAzure.Compute.test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.WindowsAzure.Compute.test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.WVD\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.WVD\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoftagciuk\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoftagciuk\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoftazurecituswarp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoftazurecituswarp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftAzureSiteRecovery\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftAzureSiteRecovery\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftBizTalkServer\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftBizTalkServer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftCBLMariner\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftCBLMariner\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoftcmotest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoftcmotest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoftcorporation1602274591143\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoftcorporation1602274591143\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoftcorporation1620407702632\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoftcorporation1620407702632\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftDynamicsAX\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftDynamicsAX\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftDynamicsGP\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftDynamicsGP\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftDynamicsNAV\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftDynamicsNAV\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoftfarmbeats\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoftfarmbeats\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftHybridCloudStorage\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftHybridCloudStorage\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftOSTC\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftOSTC\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftPowerBI\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftPowerBI\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftRServer\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftRServer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftSharePoint\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftSharePoint\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftSQLServer\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftSQLServer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftTestLinuxPPS\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftTestLinuxPPS\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftVisualStudio\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftVisualStudio\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftWindowsDesktop\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsDesktop\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftWindowsServer\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsServer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftWindowsServerHPCPack\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsServerHPCPack\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft_iot_edge\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft_iot_edge\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft_javaeeonazure_test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft_javaeeonazure_test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microstrategy\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microstrategy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"midasolutions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/midasolutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"middleware\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/middleware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"midfin\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/midfin\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"midvision\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/midvision\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mihupcommunicationspvtltd1599046998010\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mihupcommunicationspvtltd1599046998010\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mindcti\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mindcti\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"minio\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/minio\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"miraclelinux\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/miraclelinux\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"miracl_linux\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/miracl_linux\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"miri-infotech-pvt-ltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/miri-infotech-pvt-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mistio1601460379393\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mistio1601460379393\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mobilab\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mobilab\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"modern-systems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/modern-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"modexblockchaindatabase\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/modexblockchaindatabase\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"monetdbsolutions1611751313758\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/monetdbsolutions1611751313758\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"monitorapp1579029852605\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/monitorapp1579029852605\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"monitorcomputersystemsltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/monitorcomputersystemsltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"moogsoft\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/moogsoft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"morpheus-data\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/morpheus-data\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"moviemasher\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/moviemasher\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mriisoftllc1579457820427\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mriisoftllc1579457820427\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"msopentech\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/msopentech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mtnfog\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mtnfog\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"multisoft-ab\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/multisoft-ab\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mvp-systems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mvp-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mwg_azure\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mwg_azure\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mxhero\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mxhero\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"my-com\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/my-com\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"myarchinc1614657280935\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/myarchinc1614657280935\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"narrativescience\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/narrativescience\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nasuni\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nasuni\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nasunicorporation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nasunicorporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"navicloudrsoftwarepteltd1601967280369\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/navicloudrsoftwarepteltd1601967280369\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ncache\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ncache\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ncbi\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ncbi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ncomputingglobalinc1604353053068\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ncomputingglobalinc1604353053068\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ndl\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ndl\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nebbiolo-technologies-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nebbiolo-technologies-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nec-technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nec-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nefelinetworks1591201080882\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nefelinetworks1591201080882\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"neo4j\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/neo4j\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"neos\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/neos\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"neowaybusinesssolutions-4956350\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/neowaybusinesssolutions-4956350\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netapp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netapp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netatwork\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netatwork\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netfoundryinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netfoundryinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netgate\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netgate\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netikus-net-ltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netikus-net-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netiq\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netiq\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netka\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netka\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netmail\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netmail\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netscout\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netscout\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netspi\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netspi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netsweeper\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netsweeper\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"networksexchangetechnologyltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/networksexchangetechnologyltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netwrix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netwrix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netx\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netx\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"neusoft-neteye\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/neusoft-neteye\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"newnetcommunicationtechnologies1589991852134\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/newnetcommunicationtechnologies1589991852134\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"NewRelic.Infrastructure.Extensions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/NewRelic.Infrastructure.Extensions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"newtglobalconsultingllc1581492268566\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/newtglobalconsultingllc1581492268566\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nextronic-5290868\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nextronic-5290868\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nginxinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nginxinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nice-it-management-solutions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nice-it-management-solutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nicepeopleatwork\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nicepeopleatwork\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nilespartnersinc1617691698386\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nilespartnersinc1617691698386\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"niolabs-5229713\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/niolabs-5229713\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nirvatosoftwarepvtltd1601368706606\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nirvatosoftwarepvtltd1601368706606\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nodejsapi\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nodejsapi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"noianetworklimited1584098036197\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/noianetworklimited1584098036197\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nokiaofamericacorporation1591716055441\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nokiaofamericacorporation1591716055441\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"noobaa\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/noobaa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"norcominformationtechnologygmbhcokgaa\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/norcominformationtechnologygmbhcokgaa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"noricumcloudsolutions1600524477681\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/noricumcloudsolutions1600524477681\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"norsync\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/norsync\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"northbridge-secure\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/northbridge-secure\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nozominetworks1582208017986\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nozominetworks1582208017986\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nri\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nri\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ntegralinc1586961136942\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ntegralinc1586961136942\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ntt-data-intellilink-corporation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ntt-data-intellilink-corporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nttdata\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nttdata\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nttltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nttltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nuco-networks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nuco-networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"numbersbelieve\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/numbersbelieve\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"numtrallcpublisher\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/numtrallcpublisher\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nuxeo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nuxeo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nvidia\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nvidia\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"o2mc-real-time-data-platform\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/o2mc-real-time-data-platform\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"objectivity-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/objectivity-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"objectivity1595351622261\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/objectivity1595351622261\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"oceanblue-cloud\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/oceanblue-cloud\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"OctopusDeploy.Tentacle\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/OctopusDeploy.Tentacle\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"odix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/odix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"odysseuscomputationalsolutions1630242118741\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/odysseuscomputationalsolutions1630242118741\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"odysseyconsultantsltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/odysseyconsultantsltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"officeatwork-ag\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/officeatwork-ag\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"omega-software\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/omega-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"onapsis\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/onapsis\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"oncore_cloud_services-4944214\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/oncore_cloud_services-4944214\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"onexgroup\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/onexgroup\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"onspecta\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/onspecta\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ontology\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ontology\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"onyx-point-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/onyx-point-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"op5\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/op5\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"open-connect-systems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/open-connect-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"opencell\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/opencell\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"openlinkswcom-pago\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/openlinkswcom-pago\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"OpenLogic\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/OpenLogic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"openrefactoryinc1620140917523\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/openrefactoryinc1620140917523\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"openshotstudiosllc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/openshotstudiosllc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"opentext\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/opentext\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"openvpn\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/openvpn\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"opslogix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/opslogix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"opswatinc1619007967290\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/opswatinc1619007967290\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"optimitiveslu1618320281443\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/optimitiveslu1618320281443\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"option3\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/option3\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Oracle\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Oracle\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"oraylis\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/oraylis\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"oraylisbi\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/oraylisbi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"orbs-network\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/orbs-network\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"oriana\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/oriana\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"orientdb\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/orientdb\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"oroinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/oroinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"osirium-ltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/osirium-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"osisoft\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/osisoft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"osnexus\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/osnexus\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"outpost24\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/outpost24\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"outsystems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/outsystems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ovaledge1618392232783\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ovaledge1618392232783\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pachyderminc1585170006545\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pachyderminc1585170006545\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pacteratechnologiesinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pacteratechnologiesinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"paladionnetworkspvtltd1606120508449\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/paladionnetworkspvtltd1606120508449\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"paloaltonetworks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/paloaltonetworks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"panopta\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/panopta\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"panorama-necto\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/panorama-necto\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"panzura-file-system\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/panzura-file-system\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"parabole\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/parabole\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"paralaxiomtechnologiesprivatelimited1596433357886\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/paralaxiomtechnologiesprivatelimited1596433357886\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"parallels\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/parallels\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"parasoft\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/parasoft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"parkersoftwarelimited1609786657569\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/parkersoftwarelimited1609786657569\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"parsec-for-teams\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/parsec-for-teams\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pasifikciptamandiri\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pasifikciptamandiri\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"passlogy\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/passlogy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"paxata\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/paxata\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pcman\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pcman\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"peer-software-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/peer-software-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"penta-security-systems-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/penta-security-systems-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"percona\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/percona\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"perforce\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/perforce\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"periscope-tech-4791746\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/periscope-tech-4791746\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"piolinkinc1582849368309\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/piolinkinc1582849368309\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pivotal\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pivotal\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pixitmedia1591611150480\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pixitmedia1591611150480\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"plesk\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/plesk\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pmsoftwareinternational1603102514882\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pmsoftwareinternational1603102514882\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pnop\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pnop\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"polarityioinc1628691850891\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/polarityioinc1628691850891\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"portalarchitects\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/portalarchitects\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"portsysinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/portsysinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"postgres-pro\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/postgres-pro\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"powerbireach\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/powerbireach\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"prakshepprivatelimited1619949827900\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/prakshepprivatelimited1619949827900\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"prestashop\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/prestashop\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"prestige_informatique-1090178\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/prestige_informatique-1090178\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"prime-strategy\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/prime-strategy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"primekey\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/primekey\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"primestrategynewyorkinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/primestrategynewyorkinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pro-vision\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pro-vision\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"process-one\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/process-one\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"processgold\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/processgold\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"procomputers\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/procomputers\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"procomputerssrl1594239153814\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/procomputerssrl1594239153814\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"profecia\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/profecia\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Profiler.AgentOrchestrationRefactor.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Profiler.AgentOrchestrationRefactor.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Profiler.Master.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Profiler.Master.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"profisee\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/profisee\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"progelspa\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/progelspa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"progresssoftwarecorporation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/progresssoftwarecorporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"proliongmbh1628175060372\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/proliongmbh1628175060372\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"protegrityusainc1627404648458\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/protegrityusainc1627404648458\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"protiviti\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/protiviti\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"proventeq\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/proventeq\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ptc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ptc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ptsecurity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ptsecurity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pulse-secure\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pulse-secure\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pulsesecuretechnologies1638179500151\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pulsesecuretechnologies1638179500151\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"puppet\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/puppet\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"puppeteersoy1601024480557\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/puppeteersoy1601024480557\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"PuppetLabs\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/PuppetLabs\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"PuppetLabs.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/PuppetLabs.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"purestorageinc1578960262525\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/purestorageinc1578960262525\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pydio\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pydio\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pyramidanalytics\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pyramidanalytics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"qlik\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/qlik\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"qnapsystemsinc1601352084032\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/qnapsystemsinc1601352084032\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"qore-technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/qore-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"qs-solutions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/qs-solutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Qualys\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Qualys\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Qualys.LinuxAgent.GrayLabel\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Qualys.LinuxAgent.GrayLabel\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Qualys.WindowsAgent.GrayLabel\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Qualys.WindowsAgent.GrayLabel\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"qualysguard\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/qualysguard\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"quasardb\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/quasardb\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"qubole-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/qubole-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"quest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/quest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"racknap\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/racknap\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rackwareinc1619403669255\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rackwareinc1619403669255\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"radiant-logic\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/radiant-logic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"radware\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/radware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"raincode\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/raincode\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rancher\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rancher\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rapid7\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rapid7\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Rapid7.InsightPlatform\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Rapid7.InsightPlatform\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rapidminer\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rapidminer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"raynetgmbh\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/raynetgmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"readymind\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/readymind\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"realm\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/realm\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"reblaze\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/reblaze\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"RedHat\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/RedHat\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"redhat-rhel\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/redhat-rhel\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"redpoint-global\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/redpoint-global\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"refactr\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/refactr\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"refinitiv\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/refinitiv\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"refinitiv-4807503\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/refinitiv-4807503\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"relevance-lab\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/relevance-lab\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"remotelearner\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/remotelearner\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"res\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/res\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"resco\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/resco\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"resemblesystems1582780358300\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/resemblesystems1582780358300\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"responder-corp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/responder-corp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"revolution-analytics\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/revolution-analytics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rhcsolutions1586957910818\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rhcsolutions1586957910818\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ribboncommunications\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ribboncommunications\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"RightScaleLinux\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/RightScaleLinux\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"RightScaleWindowsServer\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/RightScaleWindowsServer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rimo3\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rimo3\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ringsoftwareresearchanddevelopmentinc1578946072257\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ringsoftwareresearchanddevelopmentinc1578946072257\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"riverbed\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/riverbed\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"RiverbedTechnology\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/RiverbedTechnology\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rmgtechnologiesinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rmgtechnologiesinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rocketml\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rocketml\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rocketsoftware\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rocketsoftware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rohdeschwarzcybersecuritygmbh\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rohdeschwarzcybersecuritygmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rohdeschwarzcybersecuritysas\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rohdeschwarzcybersecuritysas\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"roktech\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/roktech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rsa-security-llc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rsa-security-llc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rsk-labs\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rsk-labs\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rstudio-5237862\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rstudio-5237862\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rtts\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rtts\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rubrik-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rubrik-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"runecastsolutionslimited1614186396822\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/runecastsolutionslimited1614186396822\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"s2ix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/s2ix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"saama\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/saama\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"saasame-limited\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/saasame-limited\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"safesoftwareinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/safesoftwareinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"safeticatechnologiessro\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/safeticatechnologiessro\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"safetica_technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/safetica_technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"safetoopen1585013318137\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/safetoopen1585013318137\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"saltsecurity1583264186232\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/saltsecurity1583264186232\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"saltsecurity1583264669848\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/saltsecurity1583264669848\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"saltstack\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/saltstack\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"samsung-sds\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/samsung-sds\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"samsungelectronics1632860607983\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/samsungelectronics1632860607983\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"samsungsds-cello\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/samsungsds-cello\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"samsungsds_sdbe\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/samsungsds_sdbe\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sandhatatechnologieslimited1615753438737\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sandhatatechnologieslimited1615753438737\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sap\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sap\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sapphiretechnologieslimited1611758579346\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sapphiretechnologieslimited1611758579346\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sas-institute-560503\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sas-institute-560503\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"scaidata\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/scaidata\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"scalearc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/scalearc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"scalegrid\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/scalegrid\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"scality\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/scality\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"schrockeninc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/schrockeninc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sci\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sci\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sciencelogicinc1622565452194\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sciencelogicinc1622565452194\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"scientiamobile\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/scientiamobile\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"scontainug1595751515785\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/scontainug1595751515785\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"scubaanalytics\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/scubaanalytics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"scylladb1631195365807\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/scylladb1631195365807\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"seaqserviciossas1579029207572\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/seaqserviciossas1579029207572\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"searchbloxsoftwareinc1594309037050\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/searchbloxsoftwareinc1594309037050\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"secureworks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/secureworks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"securityonionsolutions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/securityonionsolutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"securityonionsolutionsllc1624649205155\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/securityonionsolutionsllc1624649205155\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"securosis\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/securosis\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"seequentltd1585781751395\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/seequentltd1585781751395\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"semarchy\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/semarchy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"semperis\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/semperis\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"senhasegura\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/senhasegura\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"SentinelOne.LinuxExtension\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/SentinelOne.LinuxExtension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"SentinelOne.WindowsExtension\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/SentinelOne.WindowsExtension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"SentinelOne.WindowsExtension.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/SentinelOne.WindowsExtension.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sentriumsl\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sentriumsl\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sentryone\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sentryone\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sepiosystems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sepiosystems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"seppmailag\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/seppmailag\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"seraumo1620002807288\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/seraumo1620002807288\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"service-control-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/service-control-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sesamesoftwareinc1622125191447\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sesamesoftwareinc1622125191447\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"shadow-soft\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/shadow-soft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"shareshiftneeraj.test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/shareshiftneeraj.test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sightapps\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sightapps\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"signal-sciences\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/signal-sciences\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"silk\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/silk\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"silver-peak-systems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/silver-peak-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"simmachinesinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/simmachinesinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"simontelephonics\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/simontelephonics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"simpledatalabsinc1635791235920\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/simpledatalabsinc1635791235920\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"simplifierag\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/simplifierag\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"simpligov\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/simpligov\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sinefa\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sinefa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sinequa\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sinequa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sinequa1588262295885\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sinequa1588262295885\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"singapore-telecommunications-limited\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/singapore-telecommunications-limited\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sios_datakeeper\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sios_datakeeper\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"siportalinc1581539156321\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/siportalinc1581539156321\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sisenseltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sisenseltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Site24x7\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Site24x7\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sktelecom\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sktelecom\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"skyarc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/skyarc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"skyboxsecurity1585187406404\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/skyboxsecurity1585187406404\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"skylarkcloud\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/skylarkcloud\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"smartbearsoftware\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/smartbearsoftware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"smartmessage-autoflow\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/smartmessage-autoflow\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"snaplogic\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/snaplogic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"snapt-adc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/snapt-adc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"snips\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/snips\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"soasta\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/soasta\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"softnas\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/softnas\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"softwarecentralas1642687699196\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/softwarecentralas1642687699196\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"softwarehut\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/softwarehut\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"softwebsolutions-4518310\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/softwebsolutions-4518310\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"soha\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/soha\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"solanolabs\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/solanolabs\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"solar-security\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/solar-security\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"solarwinds\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/solarwinds\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"solvedevops1643693563360\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/solvedevops1643693563360\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sonicwall-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sonicwall-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sophos\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sophos\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sourcegearllc1616101262784\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sourcegearllc1616101262784\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"south-river-technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/south-river-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"southrivertech1586314123192\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/southrivertech1586314123192\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"spacecurve\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/spacecurve\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"spaceliftinc1625499025476\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/spaceliftinc1625499025476\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"spagobi\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/spagobi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sparklinglogic\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sparklinglogic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"spectralcorelimited1619779004178\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/spectralcorelimited1619779004178\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"spektra\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/spektra\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sphere3d\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sphere3d\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"spideroakinc1588278690933\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/spideroakinc1588278690933\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"spirentcommunications1594084187199\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/spirentcommunications1594084187199\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"splunk\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/splunk\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sproutenetworks1593456311717\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sproutenetworks1593456311717\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sqlstream\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sqlstream\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"squadratechnologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/squadratechnologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"squaredup\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/squaredup\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"src-solution\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/src-solution\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stackato-platform-as-a-service\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stackato-platform-as-a-service\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Stackify.LinuxAgent.Extension\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Stackify.LinuxAgent.Extension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stackstorm\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stackstorm\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"startekfingerprintmatch\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/startekfingerprintmatch\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"startisolucoesemtecnologialtda1635263523201\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/startisolucoesemtecnologialtda1635263523201\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"starwind\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/starwind\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"StatusMonitor2.Diagnostics.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/StatusMonitor2.Diagnostics.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"StatusReport.Diagnostics.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/StatusReport.Diagnostics.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stealthbits\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stealthbits\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"steelhive\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/steelhive\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stonebondtechnologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stonebondtechnologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stonefly\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stonefly\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"storage_made_easy\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/storage_made_easy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stormshield\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stormshield\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"storone1594045543980\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/storone1594045543980\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"storreduce\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/storreduce\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"storwarespzoo1611743234900\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/storwarespzoo1611743234900\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"strangebee1595948424730\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/strangebee1595948424730\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"strataidentity1608323708170\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/strataidentity1608323708170\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stratis-group-ltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stratis-group-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stratodesk1611152769936\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stratodesk1611152769936\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stratumn\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stratumn\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"streamsets\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/streamsets\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"striim\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/striim\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stromasys\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stromasys\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"strongboxitllc1594816423884\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/strongboxitllc1594816423884\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"su\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/su\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"subscription.test.krsh\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/subscription.test.krsh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sumologic\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sumologic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sunatogmbh\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sunatogmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sunday\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sunday\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"SUSE\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/SUSE\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"swoopanalytics\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/swoopanalytics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sycom-technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sycom-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sycompatechnologycompanyinc1588192103892\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sycompatechnologycompanyinc1588192103892\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.CloudWorkloadProtection\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.CloudWorkloadProtection\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.CloudWorkloadProtection.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.CloudWorkloadProtection.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.CloudWorkloadProtection.TestOnStage\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.CloudWorkloadProtection.TestOnStage\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.QA\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.QA\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.staging\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.staging\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.test.ru2.latest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.test.ru2.latest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.test.ru2final\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.test.ru2final\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.test.ru2latest1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.test.ru2latest1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.test.ru4mp1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.test.ru4mp1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.test.ru4mp1.latest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.test.ru4mp1.latest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.test.ru4mp1final\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.test.ru4mp1final\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"symanteccorporation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/symanteccorporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"symantectest1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/symantectest1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"synack-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/synack-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"syncfusion\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/syncfusion\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"syncfusionbigdataplatfor\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/syncfusionbigdataplatfor\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"synechron-technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/synechron-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"synergixinc1585256339250\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/synergixinc1585256339250\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"synnexcorp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/synnexcorp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"syscomcomputerengineeringco1583913200141\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/syscomcomputerengineeringco1583913200141\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"syte\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/syte\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tableau\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tableau\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tactic\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tactic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"talari-networks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/talari-networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"talena-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/talena-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"talend\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/talend\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"talon\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/talon\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tamrinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tamrinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"targit\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/targit\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tata_communications\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tata_communications\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tavanttechnologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tavanttechnologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tavendo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tavendo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"te-systems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/te-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"techdivision\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/techdivision\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"techlatest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/techlatest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"technicheltd1606969724100\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/technicheltd1606969724100\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tecknolab\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tecknolab\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"telepat\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/telepat\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"teloscorporation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/teloscorporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tempered-networks-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tempered-networks-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tenable\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tenable\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tensormakecorpdbaoneclickai1608247756082\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tensormakecorpdbaoneclickai1608247756082\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"teradata\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/teradata\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Teradici\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Teradici\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"teramindinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/teramindinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.Gemalto.SafeNet.ProtectV\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.Gemalto.SafeNet.ProtectV\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.Gemalto.SafeNet.ProtectV.Azure\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.Gemalto.SafeNet.ProtectV.Azure\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.HP.AppDefender\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.HP.AppDefender\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.Microsoft.VisualStudio.Services\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.Microsoft.VisualStudio.Services\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.NJHP.AppDefender\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.NJHP.AppDefender\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.SqlServer.Managability\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.SqlServer.Managability\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.SqlServer.Management\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.SqlServer.Management\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.SqlServer.Management.corext\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.SqlServer.Management.corext\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test1.NJHP.AppDefender\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test1.NJHP.AppDefender\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test3.Microsoft.VisualStudio.Services\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test3.Microsoft.VisualStudio.Services\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"testable1603721901088\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/testable1603721901088\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"testpro\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/testpro\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"test_test_mix3pptest0011614206850774\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/test_test_mix3pptest0011614206850774\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"test_test_mneela1628617140187\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/test_test_mneela1628617140187\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"test_test_pmc2pc1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/test_test_pmc2pc1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thales-vormetric\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thales-vormetric\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thalesdiscplusainc1596561677238\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thalesdiscplusainc1596561677238\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thedatavaluefactoryltd1589348815922\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thedatavaluefactoryltd1589348815922\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thefreebsdfoundation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thefreebsdfoundation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thehdfgroup1616725197741\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thehdfgroup1616725197741\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"theumag1596442827072\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/theumag1596442827072\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"things-board\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/things-board\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thingscareinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thingscareinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thinprintgmbh\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thinprintgmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thorntechnologiesllc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thorntechnologiesllc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thoughtspot-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thoughtspot-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"threatintelligenceptyltd1586824172898\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/threatintelligenceptyltd1586824172898\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tibco-software\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tibco-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tidal-migrations\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tidal-migrations\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tidalmediainc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tidalmediainc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tig\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tig\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tiger-technology\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tiger-technology\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tigergraph\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tigergraph\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"timextender\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/timextender\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tmaxsoft\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tmaxsoft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tmaxsoft1608612658335\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tmaxsoft1608612658335\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tomsawyersoftwarecorp1613579206342\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tomsawyersoftwarecorp1613579206342\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"topicus\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/topicus\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"torusware\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/torusware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"totemo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/totemo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"townsend-security\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/townsend-security\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"transcendinformationinc1609918445926\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/transcendinformationinc1609918445926\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"transientxinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/transientxinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"transvault\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/transvault\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"trendmicro\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/trendmicro\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"TrendMicro.DeepSecurity.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/TrendMicro.DeepSecurity.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"TrendMicro.PortalProtect\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/TrendMicro.PortalProtect\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tresorit\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tresorit\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"trifacta\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/trifacta\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tripleblindinc1615730179432\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tripleblindinc1615730179432\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tripwire-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tripwire-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"truata1612259728221\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/truata1612259728221\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"truestack\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/truestack\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tryonsolutionsinc1596650621083\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tryonsolutionsinc1596650621083\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tsa-public-service\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tsa-public-service\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tunnelbiz\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tunnelbiz\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"turbonet\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/turbonet\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"turbonet1581982683964\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/turbonet1581982683964\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"twistlock\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/twistlock\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"typesafe\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/typesafe\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ubeeko\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ubeeko\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ubercloud\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ubercloud\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"uipath-5054924\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/uipath-5054924\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ulex\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ulex\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"unifi-software\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/unifi-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"unifiedstreaming1598872291606\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/unifiedstreaming1598872291606\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"uniprint-net\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/uniprint-net\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"unitrends\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/unitrends\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"unnisoft\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/unnisoft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"unravel-data\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/unravel-data\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"unscramblsingaporepteltd-4999260\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/unscramblsingaporepteltd-4999260\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"untangle\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/untangle\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"upsolver1594188634150\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/upsolver1594188634150\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"usp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/usp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"valohai\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/valohai\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"valtix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/valtix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"varmournetworks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/varmournetworks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"varnish\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/varnish\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vatacommunicationsinc1581644208717\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vatacommunicationsinc1581644208717\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vaultive-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vaultive-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vbot\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vbot\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vcinityinc1587684340545\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vcinityinc1587684340545\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vectraaiinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vectraaiinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"veeam\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/veeam\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"velocitydb-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/velocitydb-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"velocloud\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/velocloud\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vembutechnologiespvtltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vembutechnologiespvtltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vemn\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vemn\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"veritas\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/veritas\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"versanetworks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/versanetworks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"versasec\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/versasec\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vidispine\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vidispine\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vidizmo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vidizmo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vigyanlabs-innovations-pvt-ltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vigyanlabs-innovations-pvt-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vigyanlabsinc1581413676614\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vigyanlabsinc1581413676614\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"viptela\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/viptela\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vircom\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vircom\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"virtamovecorp1615909247913\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/virtamovecorp1615909247913\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"virtualpulsesro1607008728942\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/virtualpulsesro1607008728942\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"virtuozzointernationalgmbh1626704951469\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/virtuozzointernationalgmbh1626704951469\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"visualknowledgeshare1591795776234\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/visualknowledgeshare1591795776234\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"visualsoft-center\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/visualsoft-center\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vizixiotplatformretail001\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vizixiotplatformretail001\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vmlabinc1613642184700\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vmlabinc1613642184700\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vmturbo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vmturbo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vmware-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vmware-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vnomicinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vnomicinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"voiceelements\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/voiceelements\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"voleatechgmbh1636966911943\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/voleatechgmbh1636966911943\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"volterraedgeservices\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/volterraedgeservices\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Vormetric\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Vormetric\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vscconsultingptyltd1608535888097\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vscconsultingptyltd1608535888097\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vte\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vte\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vu-llc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vu-llc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vyulabsinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vyulabsinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"WAD2AI.Diagnostics.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/WAD2AI.Diagnostics.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"WAD2EventHub.Diagnostics.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/WAD2EventHub.Diagnostics.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wallarm\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wallarm\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wallix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wallix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wandisco\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wandisco\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wanos\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wanos\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wanpath-dba-myworkdrive\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wanpath-dba-myworkdrive\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wardy-it-solutions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wardy-it-solutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"warewolf-esb\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/warewolf-esb\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"watchguard-technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/watchguard-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"webaloinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/webaloinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"websense-apmailpe\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/websense-apmailpe\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"websoft9inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/websoft9inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wedoitllc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wedoitllc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"westernoceansoftwaresprivatelimited\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/westernoceansoftwaresprivatelimited\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wherescapesoftware\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wherescapesoftware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"winmagic_securedoc_cloudvm\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/winmagic_securedoc_cloudvm\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wintellisys-inc-4561600\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wintellisys-inc-4561600\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"witfooinc1590167223060\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/witfooinc1590167223060\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wmspanel\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wmspanel\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wood1595864497589\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wood1595864497589\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"workshare-technology\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/workshare-technology\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"world-programming\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/world-programming\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"worxogo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/worxogo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wowza\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wowza\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"xcontentptyltd-1329748\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/xcontentptyltd-1329748\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"xendata-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/xendata-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"xfinityinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/xfinityinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"xilinx\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/xilinx\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"xoriantcorporationazxteam1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/xoriantcorporationazxteam1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"xoriantsolutionspvtltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/xoriantsolutionspvtltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"xtremedata\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/xtremedata\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"xyzrd-group-ou\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/xyzrd-group-ou\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"yellowfin\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/yellowfin\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"yellowfininternationalptyltd1616363974066\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/yellowfininternationalptyltd1616363974066\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"yokogawarentalleasecorporation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/yokogawarentalleasecorporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"your-shop-online\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/your-shop-online\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"z1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/z1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"z4it-aps\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/z4it-aps\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zabbix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zabbix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zend\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zend\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zenterasystemsinc1605292453288\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zenterasystemsinc1605292453288\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zerodown_software\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zerodown_software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zerto\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zerto\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zettalane_systems-5254599\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zettalane_systems-5254599\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zevenet\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zevenet\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zilliz\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zilliz\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zoomdata\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zoomdata\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zscaler\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zscaler\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zscaler1579058425289\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zscaler1579058425289\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zultysinc1596831546163\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zultysinc1596831546163\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"128technology\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/128technology\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1580863854728\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1580863854728\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1583411303229\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1583411303229\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1583465680865\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1583465680865\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1585118004523\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1585118004523\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1592878437854\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1592878437854\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1597644262255\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1597644262255\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1598955805825\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1598955805825\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1601633765871\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1601633765871\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1602067018799\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1602067018799\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1604579683207\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1604579683207\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1615257339685\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1615257339685\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1615278064010\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1615278064010\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1615455873642\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1615455873642\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1624590941808\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1624590941808\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1640334196980\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1640334196980\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1e\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1e\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"2021ai\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/2021ai\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"247commercelimited1611063941652\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/247commercelimited1611063941652\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"3cx-pbx\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/3cx-pbx\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"42crunch1580391915541\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/42crunch1580391915541\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"4psa\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/4psa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"5nine-software-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/5nine-software-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"6124903\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/6124903\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"7isolutions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/7isolutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"a10networks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/a10networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"a10networks1596136698788\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/a10networks1596136698788\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"abiquo\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/abiquo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"abzoobainc1598420455082\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/abzoobainc1598420455082\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"accedian\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/accedian\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"accelario1579101623356\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/accelario1579101623356\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"accellion\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/accellion\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"accessdata-group\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/accessdata-group\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"accops\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/accops\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aciworldwide\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aciworldwide\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Acronis\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Acronis\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Acronis.Backup\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Acronis.Backup\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"actian-corp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/actian-corp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"actian_matrix\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/actian_matrix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"actifio\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/actifio\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"actiphy\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/actiphy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"actiphyinc1627974506603\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/actiphyinc1627974506603\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"activecountermeasuresinc1631039410073\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/activecountermeasuresinc1631039410073\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"activeeon\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/activeeon\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"activeops\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/activeops\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"adastracorporation-4028356\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/adastracorporation-4028356\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"adgs\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/adgs\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"advantech\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/advantech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"advantech-webaccess\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/advantech-webaccess\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"advantys\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/advantys\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aelf\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aelf\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aerospike\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aerospike\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"affinio\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/affinio\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"affirmednetworks1607630812999\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/affirmednetworks1607630812999\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ageniumscale1591804889317\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ageniumscale1591804889317\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aggregion-ltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aggregion-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"agiledialogssl1603791911858\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/agiledialogssl1603791911858\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"agolo\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/agolo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ahnlabinc1584495174865\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ahnlabinc1584495174865\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ahnlabinc1584495467593\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ahnlabinc1584495467593\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"airalabrus\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/airalabrus\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aiscaler-cache-control-ddos-and-url-rewriting-\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aiscaler-cache-control-ddos-and-url-rewriting-\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aisundowninc1618516322959\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aisundowninc1618516322959\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"akamai-technologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/akamai-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"akumina\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/akumina\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"akumo-software\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/akumo-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"al-tamamunitedtradingcontractingcompany\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/al-tamamunitedtradingcontractingcompany\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"alachisoft\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/alachisoft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"alertlogic\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/alertlogic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"AlertLogic.Extension\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/AlertLogic.Extension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"algolyticstechnologies1606475101268\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/algolyticstechnologies1606475101268\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"alicetrix\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/alicetrix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"alienvault\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/alienvault\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"alldigital-brevity\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/alldigital-brevity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"almalinux\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/almalinux\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"almalinuxosfoundation1628089859865\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/almalinuxosfoundation1628089859865\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"altair-engineering-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/altair-engineering-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"altamira-corporation\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/altamira-corporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"alteryx\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/alteryx\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"altova\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/altova\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"amergint1593131356777\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/amergint1593131356777\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"anjanadatasl1583402861145\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/anjanadatasl1583402861145\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ansys\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ansys\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"antmedia\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/antmedia\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aod\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aod\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"apigee\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/apigee\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"appcara\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appcara\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"appcelerator\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appcelerator\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"appex-networks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appex-networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"appistry\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appistry\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"appiyo_technologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appiyo_technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"appmint_inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appmint_inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"apps-4-rent\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/apps-4-rent\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"appscale-marketplace\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appscale-marketplace\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"appsurifyinc1606933045773\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appsurifyinc1606933045773\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aquaforest\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aquaforest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aquantyinc1598537176913\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aquantyinc1598537176913\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aquaveollc1633710529908\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aquaveollc1633710529908\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"arabesque-group\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/arabesque-group\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"arangodb\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/arangodb\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aras\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aras\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"arcblock\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/arcblock\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"arcesb\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/arcesb\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"arcontechsolutionsprivatelimited1623841797810\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/arcontechsolutionsprivatelimited1623841797810\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"arcserveusallc-marketing\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/arcserveusallc-marketing\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"arista-networks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/arista-networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ariwontollc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ariwontollc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"array_networks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/array_networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"artificial-intelligence-techniques-sl\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/artificial-intelligence-techniques-sl\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"arubanetworks-4922182\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/arubanetworks-4922182\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"asdivertissementinc1617837708654\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/asdivertissementinc1617837708654\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"asigra\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/asigra\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aspentechnologyhq-1353108\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aspentechnologyhq-1353108\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"astadia-1148316\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/astadia-1148316\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"asterasoftware1581022936015\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/asterasoftware1581022936015\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"asyscosoftwarebv\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/asyscosoftwarebv\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ataccama\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ataccama\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"athinfosystems1641442221349\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/athinfosystems1641442221349\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"athinfosystems1648710938250\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/athinfosystems1648710938250\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"atlgaming\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/atlgaming\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"atmosera\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/atmosera\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"atomicorp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/atomicorp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"atomizedinc1587939464368\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/atomizedinc1587939464368\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"attunity_cloudbeam\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/attunity_cloudbeam\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"audiocodes\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/audiocodes\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"auraportal\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/auraportal\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"auriq-systems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/auriq-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"automateio1592914387888\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/automateio1592914387888\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"automationanywhere\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/automationanywhere\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"avanseus\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/avanseus\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"avepoint\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/avepoint\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aveva1\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aveva1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"avi-networks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/avi-networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aviatrix-systems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aviatrix-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"awingu\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/awingu\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"axedrasag1590581171549\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/axedrasag1590581171549\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"axsguardablenv\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/axsguardablenv\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"axshco\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/axshco\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"axway\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/axway\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"axxana\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/axxana\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"azhpc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/azhpc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"azul\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/azul\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"azure-dockit\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/azure-dockit\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"azurecyclecloud\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/azurecyclecloud\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"AzureDatabricks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/AzureDatabricks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"azureopenshift\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/azureopenshift\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"AzureRT.PIR.Synthetics.ProdTest\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/AzureRT.PIR.Synthetics.ProdTest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"AzureRT.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/AzureRT.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"azuretesting\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/azuretesting\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"azuretesting2\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/azuretesting2\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"azuretesting3\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/azuretesting3\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"AzureTools1type\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/AzureTools1type\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"baas-techbureau\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/baas-techbureau\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"baffle-io\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/baffle-io\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"balabit\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/balabit\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"barracudanetworks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/barracudanetworks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"basho\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/basho\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"batch\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/batch\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bayware\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bayware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bdy\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bdy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"belindaczsro1588885355210\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/belindaczsro1588885355210\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bellsoft1582871421940\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bellsoft1582871421940\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"betsol\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/betsol\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"beyondtrust\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/beyondtrust\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bi-builders-as\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bi-builders-as\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"big-id\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/big-id\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"biolibinc1622552350258\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/biolibinc1622552350258\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bissantechnology1583581147809\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bissantechnology1583581147809\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bitdefendercybersecurity\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bitdefendercybersecurity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Bitnami\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Bitnami\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bizagi\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bizagi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bizaptyltd1626489237351\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bizaptyltd1626489237351\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bizdataloome\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bizdataloome\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"biztalk360\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/biztalk360\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"black-duck-software\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/black-duck-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"blackbird\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/blackbird\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"blackmagicdesignincorporated1596492193249\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/blackmagicdesignincorporated1596492193249\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"blk-technologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/blk-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"blockapps\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/blockapps\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"blockchain-foundry\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/blockchain-foundry\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"blockstack\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/blockstack\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bloombase\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bloombase\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bluecat\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bluecat\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bluejeansnetwork1638333611902\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bluejeansnetwork1638333611902\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"blueprismlimited-4827145\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/blueprismlimited-4827145\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bluesyntaxconsulting1617654548594\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bluesyntaxconsulting1617654548594\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bluetalon\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bluetalon\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bmc.ctm\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bmc.ctm\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bmcctm.test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bmcctm.test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"boardpacpvtltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/boardpacpvtltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bocada\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bocada\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"boemskats\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/boemskats\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"botanalytics\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/botanalytics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bowspritconsultingopcprivatelimited1596291408582\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bowspritconsultingopcprivatelimited1596291408582\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bravura-software-llc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bravura-software-llc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Brianjac.Symantec.CloudWorkloadProtection\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Brianjac.Symantec.CloudWorkloadProtection\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bricatainc1584472632111\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bricatainc1584472632111\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bright-computing\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bright-computing\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"brightcomputing\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/brightcomputing\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"brocade_communications\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/brocade_communications\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"brutale\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/brutale\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bryte\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bryte\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bssw\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bssw\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bt-americas-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bt-americas-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"buddhalabs\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/buddhalabs\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cadosecurityltd1626856705534\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cadosecurityltd1626856705534\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"calculated_systems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/calculated_systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"caloudi_corp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/caloudi_corp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"canadiancentreforcybersecurity1610638436359\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/canadiancentreforcybersecurity1610638436359\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Canonical\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Canonical\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"canonical-test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/canonical-test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"carto\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/carto\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cask\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cask\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"castaigroupinc1595243474856\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/castaigroupinc1595243474856\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"catechnologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/catechnologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"catonetworksltd1641478570665\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/catonetworksltd1641478570665\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cautelalabs\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cautelalabs\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cavirin\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cavirin\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cayosoftinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cayosoftinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cdatasoftware\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cdatasoftware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cds\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cds\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"celum-gmbh\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/celum-gmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"center-for-internet-security-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/center-for-internet-security-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"centeritysystems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/centeritysystems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"centrixeltd1594135951373\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/centrixeltd1594135951373\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"centrocomputerspa1584528117084\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/centrocomputerspa1584528117084\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"certifiedsecuritysolutionsinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/certifiedsecuritysolutionsinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"certivox\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/certivox\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cfd-direct\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cfd-direct\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"chain\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/chain\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"checkpoint\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/checkpoint\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"chef-software\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/chef-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Chef.Bootstrap.WindowsAzure\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Chef.Bootstrap.WindowsAzure\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"chunghwatelecom1587573688842\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/chunghwatelecom1587573688842\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cinchy\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cinchy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cinegy-gmbh\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cinegy-gmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ciphertechsinc1646670709341\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ciphertechsinc1646670709341\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"circleci\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/circleci\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cires21\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cires21\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cirruswaveinc1579234787943\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cirruswaveinc1579234787943\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cisco\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cisco\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"citrix\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/citrix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Citrix.ADC\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Citrix.ADC\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"clapsodeughaftungsbeschrnkt1626333173563\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/clapsodeughaftungsbeschrnkt1626333173563\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"clear-linux-project\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/clear-linux-project\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"clone-systems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/clone-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"clouber\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/clouber\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloud-checkr\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloud-checkr\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloud-cruiser\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloud-cruiser\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloud-infrastructure-services\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloud-infrastructure-services\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudaccelinc1628754426775\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudaccelinc1628754426775\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudbees\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudbees\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudbees-enterprise-jenkins\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudbees-enterprise-jenkins\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudbolt-software\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudbolt-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudboltsoftware1639523402532\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudboltsoftware1639523402532\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudboost\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudboost\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudcover\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudcover\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudenablers-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudenablers-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudentity\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudentity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudera\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudera\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudflare\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudflare\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudhouse\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudhouse\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudinfo-4919088\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudinfo-4919088\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudknox\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudknox\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudlanes\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudlanes\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudlink\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudlink\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"CloudLinkEMC.SecureVM\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/CloudLinkEMC.SecureVM\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudmavensolutions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudmavensolutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudneeti\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudneeti\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudplan-gmbh\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudplan-gmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudsecurity\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudsecurity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudsoft\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudsoft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudwhizsolutions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudwhizsolutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudwrxsconsultingltd1631029702055\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudwrxsconsultingltd1631029702055\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"clustrix\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/clustrix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cncf-upstream\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cncf-upstream\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"codaintelligence1606495376525\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/codaintelligence1606495376525\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"codelathe\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/codelathe\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"codenvy\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/codenvy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"codetwo\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/codetwo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cognexcorporation1613759804979\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cognexcorporation1613759804979\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cognexcorporation1647410785838\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cognexcorporation1647410785838\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cognitive-scale\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cognitive-scale\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cognizant\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cognizant\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cognosys\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cognosys\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cohesity\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cohesity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cohesitydev1592001764720\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cohesitydev1592001764720\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cohesive\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cohesive\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"coin-sciences-ltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/coin-sciences-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"collabcloudlimited\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/collabcloudlimited\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"collibranv1619508098620\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/collibranv1619508098620\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"commscopeinc1632135151062\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/commscopeinc1632135151062\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"commvault\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/commvault\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"compellon\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/compellon\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"composable\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/composable\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"comunity\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/comunity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"concentrationheatandmomentumlimited1616154387047\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/concentrationheatandmomentumlimited1616154387047\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Confer\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Confer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"confluentinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/confluentinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"conflux\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/conflux\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"connecting-software\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/connecting-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"consensys\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/consensys\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"containeraider\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/containeraider\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"contiamogmbh\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/contiamogmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"controlcase\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/controlcase\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"controlplane\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/controlplane\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"controlplanecorporation1609967567639\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/controlplanecorporation1609967567639\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"convertigo\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/convertigo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"corda\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/corda\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"core-stack\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/core-stack\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"corent-technology-pvt\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/corent-technology-pvt\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"CoreOS\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/CoreOS\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"couchbase\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/couchbase\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cpanel\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cpanel\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"credativ\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/credativ\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cristiesoftwareltd1599488127561\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cristiesoftwareltd1599488127561\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"crunchyard\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/crunchyard\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"crunchyardltd1623835391104\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/crunchyardltd1623835391104\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cryptocom1585727786636\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cryptocom1585727786636\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cryptosense1605170011574\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cryptosense1605170011574\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cryptzone\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cryptzone\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ctm.bmc.com\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ctm.bmc.com\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ctrliqinc1648673227698\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ctrliqinc1648673227698\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cubebackup\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cubebackup\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cyberark\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cyberark\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cybercxptyltd1590132359004\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cybercxptyltd1590132359004\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cybernetica-as\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cybernetica-as\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cygnalabscorp1646065782458\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cygnalabscorp1646065782458\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cyxtera\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cyxtera\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"d4t4_solutions-1164305\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/d4t4_solutions-1164305\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"daceitdbasensetrafficpulse1579892024934\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/daceitdbasensetrafficpulse1579892024934\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"danielsol.AzureTools1\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/danielsol.AzureTools1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Dans.Windows.App\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Dans.Windows.App\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Dans3.Windows.App\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Dans3.Windows.App\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dataart\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dataart\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"databricks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/databricks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datacore\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datacore\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Datadog.Agent\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Datadog.Agent\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datadynamicsinc1581991927942\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datadynamicsinc1581991927942\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datagapsinc1585348463636\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datagapsinc1585348463636\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dataguiseinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dataguiseinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dataiku\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dataiku\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datalayer\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datalayer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datanomers1584919038987\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datanomers1584919038987\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datanova\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datanova\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datapredsa\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datapredsa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dataroadtechnologiesllc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dataroadtechnologiesllc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datasciencedojo1586563145740\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datasciencedojo1586563145740\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datastax\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datastax\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datasunrise\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datasunrise\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datavirtualitygmbh\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datavirtualitygmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datometry\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datometry\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dbs-h\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dbs-h\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ddn-whamcloud-5345716\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ddn-whamcloud-5345716\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Debian\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Debian\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dece-4446019\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dece-4446019\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"decisosalesbv\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/decisosalesbv\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"deepcognitioninc1593512758156\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/deepcognitioninc1593512758156\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"deepsiginc1581610210151\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/deepsiginc1581610210151\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"deepsurfacesecurityinc1632943333445\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/deepsurfacesecurityinc1632943333445\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dellemc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dellemc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dell_software\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dell_software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"delphix\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/delphix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"deltapathlimited1592886319362\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/deltapathlimited1592886319362\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"denodo\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/denodo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"denyall\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/denyall\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"derdack\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/derdack\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"deskpro1650546806675\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/deskpro1650546806675\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"desktopstudioag1580294245574\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/desktopstudioag1580294245574\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"devfactory\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/devfactory\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"device42inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/device42inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"deviceauthorityinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/deviceauthorityinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"devolutionsinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/devolutionsinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"devopsgroup-uk\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/devopsgroup-uk\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"df-portal-user\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/df-portal-user\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dgsecure\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dgsecure\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Dh2ico\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Dh2ico\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dh2icompany\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dh2icompany\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dhi\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dhi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"diagramics\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/diagramics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dicomsystems1584107398321\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dicomsystems1584107398321\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"diehl-metering\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/diehl-metering\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"digisitesystems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/digisitesystems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"digitaldefenseinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/digitaldefenseinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"digitaloffice\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/digitaloffice\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"digitamizeinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/digitamizeinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"digitate\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/digitate\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"diladele\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/diladele\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dimensionalmechanics-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dimensionalmechanics-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"diqa\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/diqa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"diyatech\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/diyatech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"diyotta\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/diyotta\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"djiindustrialincus\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/djiindustrialincus\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"docker\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/docker\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dome9\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dome9\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dorabot\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dorabot\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dremiocorporation\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dremiocorporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"drizti\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/drizti\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"drone\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/drone\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dsi\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dsi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dundas\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dundas\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dyadic_security\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dyadic_security\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dynatrace\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dynatrace\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dynatrace.ruxit\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dynatrace.ruxit\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"e-magicinc1587696283171\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/e-magicinc1587696283171\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"eastwind-networks-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/eastwind-networks-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"easysoftwaresro1593005637384\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/easysoftwaresro1593005637384\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ebesllc1637780200500\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ebesllc1637780200500\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ecessa\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ecessa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"edevtech\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/edevtech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"edgelesssystems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/edgelesssystems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"edgenetworks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/edgenetworks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"edispheresoftwareprivatelimited1606199736428\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/edispheresoftwareprivatelimited1606199736428\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"education4sight\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/education4sight\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"eecservicesfzllc1604836615706\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/eecservicesfzllc1604836615706\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"egnyte\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/egnyte\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"egress1589289169584\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/egress1589289169584\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"eikonasystemsgmbh1601729310063\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/eikonasystemsgmbh1601729310063\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Elastic\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Elastic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"elasticbox\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/elasticbox\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"elecard\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/elecard\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"electric-cloud\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/electric-cloud\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"elevateiot\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/elevateiot\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"eleven01\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/eleven01\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"elfiqnetworks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/elfiqnetworks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"emercoin\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/emercoin\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"energisme1601990637842\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/energisme1601990637842\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"enforongo\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/enforongo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"engineering-ingegneriainformatica-spa1626786889850\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/engineering-ingegneriainformatica-spa1626786889850\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"engysltd1624364546407\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/engysltd1624364546407\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"enterprise-ethereum-alliance\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/enterprise-ethereum-alliance\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"enterprisedb-corp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/enterprisedb-corp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"enterpriseworx-it\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/enterpriseworx-it\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"epicgames\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/epicgames\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"epicgamesinc1633466121071\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/epicgamesinc1633466121071\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"eproe\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/eproe\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"equalum\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/equalum\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"equilibrium\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/equilibrium\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"equinix\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/equinix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ergoninformatikag1581586464404\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ergoninformatikag1581586464404\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"esdenera\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/esdenera\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ESET\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ESET\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"esetresearch1579795941720\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/esetresearch1579795941720\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"esri\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/esri\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"esyon\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/esyon\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ethereum\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ethereum\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"eurolinuxspzoo1620639373013\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/eurolinuxspzoo1620639373013\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"eventtracker\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/eventtracker\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"evertzmicrosystemsltd1586877923009\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/evertzmicrosystemsltd1586877923009\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"evostream-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/evostream-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"exact\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/exact\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"exasol\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/exasol\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"excelero1608461290726\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/excelero1608461290726\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"exivity\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/exivity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"exonar\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/exonar\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"f5-networks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/f5-networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"falainapteltd1604661424876\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/falainapteltd1604661424876\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"falconstorsoftware\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/falconstorsoftware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fatalsecurity1604924013537\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fatalsecurity1604924013537\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fatpipe-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fatpipe-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fenestrae-1035066\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fenestrae-1035066\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fidesys\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fidesys\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"filecatalyst\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/filecatalyst\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"filemagellc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/filemagellc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fiorano\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fiorano\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fireeye\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fireeye\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"firehost\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/firehost\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"firemon\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/firemon\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"firstderivativesplc1596469572732\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/firstderivativesplc1596469572732\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"flashgrid-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/flashgrid-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"flexbby\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/flexbby\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"flexbby-5255860\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/flexbby-5255860\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"flexify-io\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/flexify-io\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"flexxibleit\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/flexxibleit\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"flowmon\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/flowmon\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"flynet\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/flynet\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"foghorn-systems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/foghorn-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"forcepoint-llc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/forcepoint-llc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"forescout\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/forescout\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"foreseetiab1613650409016\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/foreseetiab1613650409016\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"formpipesoftwareab\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/formpipesoftwareab\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"forscene\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/forscene\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fortanix\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fortanix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fortinet\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fortinet\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fortycloud\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fortycloud\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"forumsystems1599756394904\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/forumsystems1599756394904\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fotopiatechnologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fotopiatechnologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"foxiteuropegmbh1585901066320\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/foxiteuropegmbh1585901066320\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"franzinc1593030725310\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/franzinc1593030725310\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fujitsu_fast\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fujitsu_fast\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fw\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fw\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"g2kgroupgmbh-4821943\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/g2kgroupgmbh-4821943\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gapteq\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gapteq\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gatlingcorp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gatlingcorp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gbs\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gbs\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gemalto-safenet\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gemalto-safenet\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Gemalto.SafeNet.ProtectV\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Gemalto.SafeNet.ProtectV\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"genesistechnologyinc1604912285911\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/genesistechnologyinc1604912285911\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"genuagmbhdevid1\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/genuagmbhdevid1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"genua_gmbh\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/genua_gmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"genymobile\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/genymobile\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gigamon-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gigamon-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"GitHub\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/GitHub\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gitlab\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gitlab\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gitlabinc1586447921813\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gitlabinc1586447921813\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gladinet-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gladinet-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"glantoninc1591876792991\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/glantoninc1591876792991\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"globalidsinc1596800540598\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/globalidsinc1596800540598\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"globalscape\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/globalscape\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"globalsolutions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/globalsolutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gluwareinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gluwareinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"graphistry\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/graphistry\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"graphitegtc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/graphitegtc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"great-software-laboratory-private-limited\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/great-software-laboratory-private-limited\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"greensql\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/greensql\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"greycorbelsolutions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/greycorbelsolutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gridgain\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gridgain\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"guardicore\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/guardicore\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gxchainfoundationltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gxchainfoundationltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"h2o-ai\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/h2o-ai\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hackerbay\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hackerbay\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hackershub\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hackershub\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"haivision\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/haivision\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"haivisionsystemsinc1580780591922\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/haivisionsystemsinc1580780591922\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"haltdoscompvtltd1587136166019\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/haltdoscompvtltd1587136166019\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hammerspace\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hammerspace\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hanu\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hanu\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"haproxy-technologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/haproxy-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"harmanconnectedservicesinc1594928575643\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/harmanconnectedservicesinc1594928575643\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"harpaitalia\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/harpaitalia\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hashhub\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hashhub\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hcl-technologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hcl-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"heimdall-data\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/heimdall-data\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"help-systems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/help-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"helpyio\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/helpyio\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"heretechnologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/heretechnologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hewlett-packard\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hewlett-packard\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hillstone-networks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hillstone-networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hitachi-solutions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hitachi-solutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hitachivantara\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hitachivantara\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"holo-industrie40softwaregmbh1600957636008\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/holo-industrie40softwaregmbh1600957636008\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hortonworks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hortonworks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hpe\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hpe\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"HPE.Security.ApplicationDefender\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/HPE.Security.ApplicationDefender\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"huawei\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/huawei\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hubstor-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hubstor-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hush-hush\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hush-hush\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hvr\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hvr\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hyperglance\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hyperglance\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hypergrid\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hypergrid\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hystaxinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hystaxinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hytrust\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hytrust\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"i-exceed-technology\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/i-exceed-technology\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iaansys\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iaansys\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ibm\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ibm\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ibm-alliance-global-1560886\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ibm-alliance-global-1560886\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ibm-alliance-usa-ny-armonk-hq-ibmstorage-6201192\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ibm-alliance-usa-ny-armonk-hq-ibmstorage-6201192\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ibm-usa-ny-armonk-hq-6275750-ibmcloud-aiops\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ibm-usa-ny-armonk-hq-6275750-ibmcloud-aiops\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iboss\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iboss\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iconics\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iconics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iconsulting-spa\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iconsulting-spa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"icubeconsultancyservicesinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/icubeconsultancyservicesinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iguazio-5069960\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iguazio-5069960\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ikan\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ikan\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iliimbiliimveyazlmsistemlerisanvetica1617000555584\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iliimbiliimveyazlmsistemlerisanvetica1617000555584\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"illuminainc1586452220102\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/illuminainc1586452220102\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"image-technologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/image-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"imaginecommunications\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/imaginecommunications\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"imperva\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/imperva\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"impetustechnologiesinc1591959591877\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/impetustechnologiesinc1591959591877\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"imprivatainc1580479939967\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/imprivatainc1580479939967\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"incorta\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/incorta\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"incredibuild\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/incredibuild\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"indexima1594300233028\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/indexima1594300233028\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"industry-weapon\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/industry-weapon\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"industryweapon1587162781833\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/industryweapon1587162781833\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"inenprocesosyplataformasdetisderldecv1615482385424\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/inenprocesosyplataformasdetisderldecv1615482385424\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"inergybv1637141413454\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/inergybv1637141413454\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"infinitesoftwarecorporation1579223971125\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/infinitesoftwarecorporation1579223971125\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"infiotinc1614034091460\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/infiotinc1614034091460\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"influxdata\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/influxdata\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"infoblox\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/infoblox\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"infogix\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/infogix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"infolibrarian\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/infolibrarian\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"informatica\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/informatica\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"informationbuilders\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/informationbuilders\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"informationtechnologies_ltd_1179601\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/informationtechnologies_ltd_1179601\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"infotecsinternetsecuritysoftwaregmbh1636129257584\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/infotecsinternetsecuritysoftwaregmbh1636129257584\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"infront-consulting-group-ltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/infront-consulting-group-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"infscapeughaftungsbeschrnkt\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/infscapeughaftungsbeschrnkt\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ingenieurstudiohollaus1579587745438\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ingenieurstudiohollaus1579587745438\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ingrammicro\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ingrammicro\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"innomindssoftware\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/innomindssoftware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"innosepgmbh1618331344164\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/innosepgmbh1618331344164\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"innovatorartificialtechsrl1619180685551\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/innovatorartificialtechsrl1619180685551\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"innovtech\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/innovtech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"instight-technology\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/instight-technology\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"integration-objects\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/integration-objects\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"intel-bigdl\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/intel-bigdl\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"intel-fpga\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/intel-fpga\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"intellicus-technologies-pvt-ltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/intellicus-technologies-pvt-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"intelligent-plant-ltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/intelligent-plant-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"intel_corporation\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/intel_corporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"internationaltrustmachinescorporation1582190033865\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/internationaltrustmachinescorporation1582190033865\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"internet20inc1635882446190\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/internet20inc1635882446190\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"intersystems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/intersystems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"intigua\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/intigua\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"intigua1638692632641\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/intigua1638692632641\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"introspecioltd1629872641188\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/introspecioltd1629872641188\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iofabric\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iofabric\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ipinfusion1590066770520\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ipinfusion1590066770520\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ipswitch\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ipswitch\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iqsol\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iqsol\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iquate\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iquate\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iquest\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iquest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"irion\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/irion\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ishlangu-load-balancer-adc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ishlangu-load-balancer-adc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"issp-corporation\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/issp-corporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"isvtestukbigcat\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/isvtestukbigcat\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"isvtestuklegacy\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/isvtestuklegacy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"it4bizdoo\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/it4bizdoo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"itelios\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/itelios\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"itrsgroupltd1620310702149\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/itrsgroupltd1620310702149\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ivanti-inc-pcs\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ivanti-inc-pcs\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ivanti-nzta\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ivanti-nzta\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ivix1595238749040\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ivix1595238749040\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iwnamespace\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iwnamespace\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"izenda\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/izenda\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"jamcracker\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/jamcracker\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"javlinltd1579185328273\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/javlinltd1579185328273\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"jedox\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/jedox\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"jelastic\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/jelastic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"jetnexus\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/jetnexus\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"jetware-srl\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/jetware-srl\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"jfrog\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/jfrog\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"jm-technology-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/jm-technology-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"jogetinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/jogetinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"johnsnowlabsinc1646051154808\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/johnsnowlabsinc1646051154808\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"juniper-networks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/juniper-networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"justanalytics\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/justanalytics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kaazing\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kaazing\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kadenallc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kadenallc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kali-linux\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kali-linux\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kalkitech\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kalkitech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kaminarioinc1588672951794\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kaminarioinc1588672951794\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Kaspersky.Lab\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Kaspersky.Lab\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"KasperskyLab.SecurityAgent\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/KasperskyLab.SecurityAgent\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kaspersky_lab\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kaspersky_lab\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kazendi\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kazendi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kelverion\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kelverion\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kemptech\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kemptech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kepion\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kepion\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"KevlarExtensions.M365Security.SecureOS\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/KevlarExtensions.M365Security.SecureOS\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"KevlarExtensions.M365SecurityHostIDS\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/KevlarExtensions.M365SecurityHostIDS\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"KevlarExtensions.M365SecurityInventory\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/KevlarExtensions.M365SecurityInventory\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"KevlarExtensions.M365SecurityInventory.NameChangeTest\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/KevlarExtensions.M365SecurityInventory.NameChangeTest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"KevlarExtensions.M365SecurityODL\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/KevlarExtensions.M365SecurityODL\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"KevlarExtensions.M365SecurityTLSExtension\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/KevlarExtensions.M365SecurityTLSExtension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kinetica\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kinetica\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kinvolk\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kinvolk\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"knime\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/knime\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kobalt\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kobalt\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kognillc1600118221163\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kognillc1600118221163\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kognitivsparkinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kognitivsparkinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"konginc1581527938760\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/konginc1581527938760\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"konsys-ltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/konsys-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"koverseinc1588716263110\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/koverseinc1588716263110\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kryonsystems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kryonsystems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"krypc-technologies-pvt-ltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/krypc-technologies-pvt-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kyligence\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kyligence\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kyvos-insights-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kyvos-insights-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lab3solutions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lab3solutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lancom-systems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lancom-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lansa\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lansa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lastline\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lastline\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"launchnodesltd1644561451121\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/launchnodesltd1644561451121\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"leap-orbit\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/leap-orbit\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lenovosoftware1604394104439\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lenovosoftware1604394104439\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"leostream-corporation\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/leostream-corporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lepide-software\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lepide-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"levacloudllc1602151818089\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/levacloudllc1602151818089\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"libelleag\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/libelleag\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"liberatii\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/liberatii\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"libraesva\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/libraesva\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"liebsoft\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/liebsoft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lightning-analyticsinc1582000647396\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lightning-analyticsinc1582000647396\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"linuxbasedsystemsdesignltd1580878904727\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/linuxbasedsystemsdesignltd1580878904727\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"liquid-files\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/liquid-files\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"liquidware\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/liquidware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"literatu\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/literatu\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"litespeedtechnologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/litespeedtechnologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"litespeed_technologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/litespeed_technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"litionenergiegmbh1580128829115\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/litionenergiegmbh1580128829115\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"litmusautomation1582760223280\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/litmusautomation1582760223280\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"llcitpro\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/llcitpro\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lnw-softgmbh\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lnw-softgmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"loadbalancer\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/loadbalancer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"logicflowag1638535407949\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/logicflowag1638535407949\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"logsign\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/logsign\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"logstarecorp1635838645101\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/logstarecorp1635838645101\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"logtrust\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/logtrust\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"logzio\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/logzio\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"looker\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/looker\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lotus_beta_analytics\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lotus_beta_analytics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lti-lt-infotech\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lti-lt-infotech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"luminate-security\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/luminate-security\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"M365Security.KevlarExtensions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/M365Security.KevlarExtensions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"M365SecurityInventory\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/M365SecurityInventory\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"machinesense\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/machinesense\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"madhavajay1632269232059\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/madhavajay1632269232059\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"maidenhead-bridge\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/maidenhead-bridge\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"manageengine\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/manageengine\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mapd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mapd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"maplelabsinc1623932715330\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/maplelabsinc1623932715330\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mapr-technologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mapr-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"marand\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/marand\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"marketplace-rdfe-caps\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/marketplace-rdfe-caps\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"marklogic\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/marklogic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"massiveanalytic-\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/massiveanalytic-\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mathworks-deployment\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mathworks-deployment\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mathworks-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mathworks-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"matillion\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/matillion\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mavinglobal\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mavinglobal\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"McAfee.EndpointSecurity\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/McAfee.EndpointSecurity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"McAfee.EndpointSecurity.test3\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/McAfee.EndpointSecurity.test3\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"meanio\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/meanio\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"media3-adobe\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/media3-adobe\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"media3-technologies-llc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/media3-technologies-llc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mediatekinc1586141563888\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mediatekinc1586141563888\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mendix\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mendix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"merlynnintelligencetechnologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/merlynnintelligencetechnologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"meshifyappinc1622759451429\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/meshifyappinc1622759451429\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"messagesolution\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/messagesolution\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"metaswitch\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/metaswitch\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mettainnovations-4900054\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mettainnovations-4900054\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mfe_azure\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mfe_azure\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mfiles\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mfiles\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mico\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mico\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"micro-focus\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/micro-focus\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microlinkpcukltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microlinkpcukltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microolap\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microolap\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsecpteltd1634010681688\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsecpteltd1634010681688\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-ads\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-ads\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-agci-gaming\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-agci-gaming\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-aks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-aks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-avere\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-avere\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-azure-batch\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-azure-batch\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-azure-compute\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-azure-compute\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-azure-hdinsight\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-azure-hdinsight\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-crypto\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-crypto\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-dsvm\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-dsvm\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-hyperv\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-hyperv\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-minecraft\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-minecraft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AdminCenter\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AdminCenter\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AKS\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AKS\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.ActiveDirectory\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.ActiveDirectory\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.ActiveDirectory.LinuxSSH\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.ActiveDirectory.LinuxSSH\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Applications\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Applications\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Automation.HybridWorker\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Automation.HybridWorker\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Automation.HybridWorker.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Automation.HybridWorker.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.AzureDefenderForServers\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.AzureDefenderForServers\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.AzureDefenderForSQL\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.AzureDefenderForSQL\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.AzureHybridBenefit\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.AzureHybridBenefit\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Backup.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Backup.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Backup.Test.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Backup.Test.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Batch\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Batch\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.ChangeTracking\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.ChangeTracking\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.ChangeTracking.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.ChangeTracking.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.ChangeTrackingAndInventory\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.ChangeTrackingAndInventory\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Chaos\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Chaos\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Compute.Security\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Compute.Security\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.ContainerUpstream\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.ContainerUpstream\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.DefenderForServers.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.DefenderForServers.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.DefenderForServers.Test2\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.DefenderForServers.Test2\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Diagnostics\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Diagnostics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Diagnostics.Build.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Diagnostics.Build.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Diagnostics.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Diagnostics.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test012be407-61ea-4e45-a2c3-71a45999ca21-20191228083800\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test01971384-3044-413b-8b1c-33b5d461bf23-20200107051823\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test0225ec7d-b36c-4ac8-82f0-aa4fafaf10a9-20200111051346\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test025e16a1-328d-45a2-b7e3-71f7e4cde046-20191229064028\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test02d1f941-5607-4757-8df7-fd8c5631ab45-20200103083810\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test039abd7f-360c-42a1-ad5d-77527c519286-20191002233412\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test04a0f157-c6fb-4595-b6ca-6c82a2338063-20200108101451\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test0737f33e-63e0-4ba9-b04b-b93a1de4e997-20200106083639\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test0a44d7be-63fa-418d-a7b6-89a44dd21894-20200107052935\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test0d01b487-7f79-4d87-b330-5c025068db45-20191004190331\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test0d643748-e6fe-41ad-b4d3-89a289a0cee0-20191003055620\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test0df83c51-5bb9-43f8-8ae9-bc896ea64f78-20200110220221\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test0f02c246-7e65-4010-9367-ca4530c3897e-20191004190223\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test157494ec-e788-43b0-8d26-a17e39ee07cc-20191002011945\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test1661d154-b623-4507-8a56-3a89812c456c-20200111083940\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test17bbd860-f21d-40ab-9026-16e05f2907f0-20200106083451\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test194e2333-13cd-43e3-b0a4-c8cdcf1a3600-20200110211106\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test1bc26b19-b8d8-41f9-a26d-818f277bdf93-20200101113139\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test1c840053-9213-4f2a-8f2e-9bf2297908bd-20200108101424\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test1d7bba72-69f1-43cd-a38c-41ce0b5f4bae-20200109050041\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test1f7a8078-50e7-4a3a-91eb-d178fd4c403b-20191002233353\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test1fef1fdc-57ba-46a8-a879-475ba7d45a7a-20200106083509\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test21332f15-f78d-4d31-afac-79b9dc989432-20191231175840\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test22f10717-6939-4003-a9ce-38effd8b77d6-20191007191355\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test2334e6e3-bb72-4241-a36f-c2429d69bc0b-20200106050834\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test24fa9eb5-1c59-4425-b61c-30fd638c2a45-20191003203802\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test2521a545-ed61-4a15-bed1-aba7ce1d81ee-20200106050804\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test25c6fe61-1282-43c2-867b-b5039219989c-20200105081851\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test27515c8c-6773-4f92-afb0-35691cc6e3b6-20200103083821\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test28012680-48e7-4903-877f-2f29464e63d5-20191229033424\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test29a7a529-d293-4728-9d7f-257ed996e64f-20200108081759\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test2a5f2d2c-b8e3-46c2-850d-a1641c024fe7-20200107084228\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test2ce856af-ab17-48f2-ba3e-bcd9af091061-20200110013246\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test2e012e83-6361-4365-963f-6ced8a08e91c-20200110211254\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test2ecf67b2-fb63-4461-b6a6-7026c4fb1168-20191002214026\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test2ede6564-c7cc-44cb-a1a8-902505c9829d-20191003020742\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test2f4ebc17-e27e-48d9-9cc3-ff933c21884e-20200106092410\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test349ee02c-af9b-4663-a963-823b40eefed8-20200108083612\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test34cf6b13-b78e-478b-b596-8b661629371d-20191007195455\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test36cc5b60-2b23-4a04-bf95-f7865e1141cf-20200110085718\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3712fca9-5cdd-4609-be69-b02aedc5c55c-20200107084115\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3772d042-92e2-4bcb-99b7-8a6a119cc088-20191231182808\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test37a6dd64-d44d-465e-85bc-3bc38be90350-20200104083535\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test381074d5-7156-472b-801a-b35f8fef4cc6-20200105050612\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3877a44d-4c48-40db-80eb-227272d5acd6-20200110103540\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test38ecd28e-7018-4672-840c-3044a5e7a6b5-20200111084208\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test395a0b49-442a-450c-8a1f-65b0aa3bcf47-20200105083839\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3971b300-edff-44a8-b61b-7f9b7460a8d6-20191003002234\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3adeec20-7458-4b3d-af26-0b6bc2aae3eb-20200103083751\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3b20dd96-f3e4-4798-998d-8c433c2449a7-20200108083635\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3ce2fd4a-8b5a-4c7e-b08d-3e48fc0f45e7-20200104083825\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3d499ca7-cc8d-41cc-a6dc-ffb1a4ac4942-20200107053004\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3db7240e-5e42-4d6d-b024-cc9fce3c828b-20200105083520\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3f6b7341-635f-48d5-a36d-be5dfe3002c4-20200105050937\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3fc26934-ede2-4482-ad5e-f66f6135d4a6-20191228055558\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test406d077c-6017-4062-bc96-f809147a2331-20200106050748\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test4302336c-e039-4e70-bcb6-9275f6089e4a-20200108144821\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test453a087e-8435-46db-970a-4ee633cc4c4a-20200102083458\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test46b73afa-2259-4aff-81e1-a58bf24b59aa-20191229033459\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test4a3399ee-82ea-46aa-9e3a-5434b588e3b6-20191228013518\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test4eb7a185-527b-4b9f-93a8-7f1cec9d062e-20191231151207\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test520a0915-f9f0-4da4-9fa1-1b74fc1470aa-20200102083505\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test5397960f-023b-4979-9a8b-800d049045a4-20191007195417\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test55a36387-8a3f-4159-9884-29b97539a253-20200109080443\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test5645f186-4ee5-4209-af37-423660e3318c-20191231175947\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test58b4461d-4d2d-4395-b6d2-ab83d4d8c62f-20200111001002\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test5b0bf447-d98d-429d-8334-c032d197c743-20191003203846\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test5bc90367-1ea2-400b-a40c-321081bae3f3-20200108145035\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test5bd0562f-e939-456f-a6ee-c848d1aba616-20200101151641\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test5e4efe90-916c-4c96-802c-1508a5b6da78-20191231151150\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test5f8f0c10-cc3c-45ec-a068-fb1c7edfa0d9-20200101145958\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test60a000b7-286c-4b2b-9137-bbc088736419-20200108144920\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test6192a01b-ba47-4d08-904a-71647a49a112-20191008041625\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test62835538-89c6-4f66-9034-f7a4b176c615-20191007234245\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test651e4ad2-ee4a-462e-a506-b56b1969f5d0-20200110230749\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test691d94e5-c40c-4568-94b0-09b08aea42b1-20200106050808\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test6aa3643c-011a-4180-877f-cad955a8e664-20191007234642\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test6cfb469b-8478-468f-9bb5-691affd32abb-20200107083803\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test6d36b6b2-7956-4e62-91c1-c33792fd4bb1-20200110123203\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test6e28168e-a9c8-4c0a-8b40-60c2a1502d43-20200108052802\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test6eb763ac-7fbe-4e44-bee7-aad035ee2a7d-20200110084429\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test6efec253-f625-46f0-9d74-324f69e963d8-20200107070514\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test70fa7e4c-3122-4ff7-aec6-fe75ab660a01-20200108105900\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test710a5fbf-06c7-46ac-b96d-a29d2586422f-20200108083639\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test71d72489-67c6-45e2-b1e6-a19546efc823-20200105112903\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test721fccf1-2b3e-44b6-908f-51b910e88b09-20200111104931\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test742d0189-9e41-4f1b-8ad3-31c05d34903b-20200111103247\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7836a97c-f56e-48d0-8b5d-61e79aeb3226-20200111071656\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test78666b2e-25c8-4a48-931a-3131a0317d73-20191002194352\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test79f13508-fcbd-47b9-988f-1c21ef5e7f2e-20191002015429\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test79fb90ce-4691-4212-99a7-6e4069bd5984-20191007234256\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7a8cf687-6a21-4181-ba98-902fee717bd3-20200104103216\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7aabf813-6644-483a-b9e0-ba6f8973ba1f-20191002232822\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7c96c10a-0c8f-4ab0-83fd-1ad66a362e33-20191229033458\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7e79b6ff-2559-44fe-b3ba-afaa68d63636-20200108112116\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7ea372f7-ea7e-4b9e-bbad-4f35c1567aa2-20200108052736\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7fac3d04-98a5-4fc4-904e-9ea3b86eadc2-20200106050751\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7fe20dd6-9ed9-4126-bb1d-031c01ac4550-20200101114504\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7ff974d9-c841-4249-b05b-bbf663cb4605-20200106084104\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test815bd4d5-fc24-4a47-be20-063c4809902c-20200109050508\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test817654d0-2109-4d95-9284-8c8a9d960d08-20200108053758\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test821ca3b6-dd05-4e80-b3d8-74ba03b2609b-20191231151151\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test8285dc3e-637d-4d46-9695-adc39cbe7d2f-20200108144457\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test828aae03-9239-4938-a303-c23c42311878-20200102083419\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test84afd814-5098-49ab-af99-e50350b5898b-20200110211134\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test85b08563-b15f-4202-a0bc-f2bc2df2c71a-20200107053335\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test88aac268-c087-4481-b78e-99b920784a33-20200101084853\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test88dbd442-a8cc-4874-81a0-d3192c61df62-20191001224544\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test894dfb75-a00f-4f0c-894c-cae1c9846ad3-20200105051803\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test8d09bf4d-ee63-4ab1-a986-a4b802418403-20200111051447\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test8d4d652b-4f05-4e99-93dd-78b9a36b5c78-20191003203755\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test8de64739-43d8-4f84-af65-fdb3d0885288-20200108053543\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test8e324c65-a51d-4eeb-9ec8-d5f8662dc041-20191228165107\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test8e564580-8e53-4300-85f1-bf7f31dd37ff-20200107013348\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test8f458ca7-8898-4d58-b93d-bfb0c3da028c-20200109050310\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test901cd6ca-5565-4552-a3de-d204d01935c0-20200108083706\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test907b39e5-4008-4b55-93a0-18e9697b9cf3-20200108053817\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test90c2be7c-d7ec-4abf-9fad-fef90fc3ef4d-20191004022234\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test922db678-6ee8-43d5-86ff-6a86e132d332-20200107085231\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test93b88aec-5277-4b1b-910c-7008e972ce91-20200107013304\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test95a9104b-6cba-42d8-82ff-cc37e5ac44db-20200108081723\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test96da1605-19e0-46eb-9ce0-53e840f5e2cb-20200101111729\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test996066b2-7d29-400f-929b-e343a21046f7-20191231151212\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test99663fff-ed21-4a91-9687-1a6da2abb033-20200106084508\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test9eb5efa5-c3c1-4c13-80a6-11f5eba67372-20200108144852\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testa3791896-b1fc-491e-ba0d-aefcd8d9e52a-20200105083503\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testa37ff709-a078-45a0-8187-41733df8e101-20200109050003\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testa4c5fe4e-936e-4be1-a612-a331aff54a8c-20200111105055\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testa59bce1d-e32c-423d-a86e-945d4aeb98b4-20200107051821\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testa604c059-8279-4f4d-a354-eec27222a06c-20200111051514\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testa71fefb1-0d9c-4fb3-8d3d-5dcd12d72b77-20200103103221\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testa748013d-c5a6-44f9-88eb-43167207c742-20200111051402\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testaab67022-4f2b-420d-a06a-2c4045110cdf-20191229033144\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testacab9541-280f-4491-9f49-ac57653f0a07-20200105083839\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testad298437-0349-4cc7-88a9-d8aabcba9df1-20191002233431\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testadd68286-f9e0-4ab1-a526-d8f3cf0f054e-20200105084128\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testade4c52b-18f5-4b67-8e93-945358ce4f7d-20191007234259\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testae421c1d-0211-4ef2-b372-564ce8ad484a-20200110104035\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testafbbd8bf-aec5-48bf-8fea-73fa15ccc315-20191001224727\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testb15148bf-78d2-42d4-ad08-b3ad8fb4b122-20200101084759\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testb4237708-3688-40ea-85a2-275c05f4d100-20191228083519\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testb799a18f-be45-4c5c-8438-163ac2e1f1e7-20191004190529\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testb7cee88a-e5ac-4af4-99c8-7247020b00c3-20200105051201\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testb7df0d9a-27c0-4ca5-b692-08dd90387b98-20200111083443\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testbbf6bf32-4bd0-4381-b8f7-2658f585df4d-20191003203846\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testbeea1376-166a-4b1a-8923-c907cc9737d9-20200107013336\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testbf9154e9-6166-48c2-86fe-1f331be606d7-20200107051823\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc0d7c3c5-23b8-489c-a5e0-ae87c681b696-20200101083539\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc193f31a-5186-4e93-84f6-0e4ab87b73c1-20200107052937\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc1c7e8dc-fa8c-47d9-8305-de6d1451b939-20200101085248\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc1d0c917-e2ae-430c-a2ca-383fb0fda046-20191007235839\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc23a3fbb-6e95-4c0d-94fc-c8ab14dddf1c-20191231151117\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc2697630-6247-411a-94b3-c2974ad8cbee-20191007195417\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc466b80f-670f-4383-89b8-44e0d509fa20-20191002000516\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc5c8d9bd-75fa-4db3-9f34-5d7b7098584c-20191003203851\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc8b6d14b-a5db-48e0-bfad-a2818d432bea-20200104083443\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc933efa8-c553-4b93-884f-b7221d9ca789-20191228083750\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testcbe8ab80-46ef-49b1-a7bb-4e3d6e50e49f-20200104050811\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testccc0b5e6-9b0d-451a-8ac4-6f4af293b913-20200106092645\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testcec64786-04b1-487c-80ec-050da646fb1c-20191005123412\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testd104a52f-eba2-401d-8e7f-a841c90f7712-20191228083553\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testd724cea4-0d3c-4539-b2ff-be08fb23a67e-20200107083714\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testd8e60bac-27ff-4fba-90b8-732c9c5ff91c-20191228083751\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testd99db4a5-7683-4584-89ad-fefd711de284-20191004190210\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testd9b4309a-67bc-4cd8-ac47-094cb20ca6aa-20200101090202\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testda3320e0-28f2-4146-a002-e06296362711-20191004190115\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testda714121-3240-4253-90c3-48c43f115c90-20200102083419\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testdb357558-60b4-4ee3-9ec3-ba22c5d827fb-20191004020617\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testdc7230e9-df6d-4edd-a57c-ef7e0432c463-20191002011345\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testdccb59de-436f-4935-bed6-2e677dcaf36a-20200109111802\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testde985b23-9333-4f6e-a5e8-82025a38b2af-20200102083510\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Teste271da3e-cbcb-4ee7-8770-f297f414451f-20191003015540\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Teste4070edd-aec0-455d-8a79-aecdb7170b6d-20191007234642\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Teste42f351a-4da0-4f0d-93e9-ef1d98e06659-20200108083633\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Teste66ca23c-f4bf-4eb3-8418-139364d19e7d-20200107062643\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Teste78b1ab2-1380-48ab-9923-0276cdb7198b-20191001224742\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Teste8607e14-b4f8-472a-bd5b-893b8d9612e6-20200112045941\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Teste980b80e-3add-42c0-bc98-a84020b2d128-20200108101640\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Tested79dba9-2d38-4ea9-a01c-56e94b30ca7a-20191007195447\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testee9dcf5f-f7c4-4192-a8f4-28e9bc7d0f7c-20191001225005\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testefbb340a-b68b-4200-872b-d05e7d29f92d-20191007195432\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testf1fc0559-6740-48dd-9501-2b933c731d52-20200103083458\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testf41dfc97-bb51-4fba-86ca-a6f2695c415a-20200107050834\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testf5784447-83ed-4c00-8764-ea0f932aafa2-20200106085748\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testf6128ef6-c13c-420e-8088-0710888ce88b-20200109050003\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testf863ab2c-ada9-4646-84c7-1f83a82375d7-20191229033226\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testfac552a7-418f-4baa-8f51-d199ceff5c68-20200103050817\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testfb7be054-5c15-494f-822c-b64f9a36e2f3-20200105051753\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testfc5c7585-6c9a-4aa4-a7c4-1223a94e00c7-20200104083552\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.FileServer.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.FileServer.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.FleetDiagnostics\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.FleetDiagnostics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.FleetDiagnostics.Dev\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.FleetDiagnostics.Dev\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Geneva\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Geneva\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.KeyVault\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.KeyVault\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.KeyVault.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.KeyVault.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.LabServices\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.LabServices\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.LabServices.test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.LabServices.test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.Agent\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.Agent\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.Dev\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.Dev\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.Dev.INT\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.Dev.INT\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.Dev.SCALE\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.Dev.SCALE\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.Dev.TEST\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.Dev.TEST\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.GuestHealth\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.GuestHealth\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.DEV\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.DEV\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.INT\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.INT\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.SCALE\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.SCALE\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.TEST\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.TEST\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.INT.Dev\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.INT.Dev\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.SCALE.Dev\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.SCALE.Dev\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.TEST.Dev\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.TEST.Dev\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.WorkloadInsights.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.WorkloadInsights.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.WorkloadInsightsTest.newnamespace\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.WorkloadInsightsTest.newnamespace\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.Workloads\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.Workloads\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.Workloads.Dev\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.Workloads.Dev\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitoring.DependencyAgent\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitoring.DependencyAgent\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitoring.DependencyAgent.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitoring.DependencyAgent.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Networking.DNS\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Networking.DNS\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Networking.SDN\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Networking.SDN\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.NetworkWatcher\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.NetworkWatcher\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.NetworkWatcher.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.NetworkWatcher.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.OpenSSH\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.OpenSSH\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Performance.Diagnostics\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Performance.Diagnostics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Performance.Diagnostics.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Performance.Diagnostics.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.RecoveryServices\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.RecoveryServices.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices.SiteRecovery\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.RecoveryServices.SiteRecovery\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices.SiteRecovery2\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.RecoveryServices.SiteRecovery2\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices.WorkloadBackup\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.RecoveryServices.WorkloadBackup\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices.WorkloadBackup.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.RecoveryServices.WorkloadBackup.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.AntimalwareSignature\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.AntimalwareSignature\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.AntimalwareSignature.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.AntimalwareSignature.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.Dsms\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.Dsms\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.Dsms.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.Dsms.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.LinuxAttestation\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.LinuxAttestation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.LinuxTestAttestation\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.LinuxTestAttestation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.Monitoring\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.Monitoring\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.Monitoring.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.Monitoring.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.Monitoring.Testing\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.Monitoring.Testing\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.TestWindowsAttestation\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.TestWindowsAttestation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.WindowsAttestation\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.WindowsAttestation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.WinTestAttestation\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.WinTestAttestation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Sentinel.DnsExtension.Dev\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Sentinel.DnsExtension.Dev\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.ServiceFabric.MC\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.ServiceFabric.MC\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.ServiceFabric.MC.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.ServiceFabric.MC.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.SiteRecovery.Stage\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.SiteRecovery.Stage\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.SiteRecovery.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.SiteRecovery.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.SiteRecovery2.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.SiteRecovery2.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Test.Identity\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Test.Identity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WindowsFabric.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WindowsFabric.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.ReleasePipeTest\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.ReleasePipeTest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.ReleasePipeTest.INT\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.ReleasePipeTest.INT\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.ReleasePipeTest.TEST\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.ReleasePipeTest.TEST\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test1\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test2\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test2\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test3\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test3\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test4\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test4\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test5\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test5\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test5.INT\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test5.INT\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test5.TEST\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test5.TEST\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.VincentTest\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.VincentTest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.VincentTest2\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.VincentTest2\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.VincentTest3\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.VincentTest3\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.VincentTest4\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.VincentTest4\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.TestTest\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.TestTest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.TestTest.INT\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.TestTest.INT\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.TestTest.TEST\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.TestTest.TEST\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Windows.ReleasePipeTest.INT\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Windows.ReleasePipeTest.INT\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Windows.ReleasePipeTest.TEST\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Windows.ReleasePipeTest.TEST\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Workloads\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Workloads\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoring\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoring.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoringTest\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoringTest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureData\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureData\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureData.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureData.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.Canary\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights.Canary\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.Corp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights.Corp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.Linux.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights.Linux.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.LinuxTest\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights.LinuxTest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.Meya0206\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights.Meya0206\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.MeyaCorp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights.MeyaCorp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.Testing\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights.Testing\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureSecurity.JITAccess\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureSecurity.JITAccess\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.CloudBackup.Workload.Extension\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.CloudBackup.Workload.Extension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.CloudBackup.Workload.Extension.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.CloudBackup.Workload.Extension.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Compute\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Compute.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Compute.TestSar\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute.TestSar\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.CPlat.Core\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.CPlat.Core\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.CPlat.Core.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.CPlat.Core.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Dcsswe.Extensions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Dcsswe.Extensions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.EnterpriseCloud.Monitoring\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.EnterpriseCloud.Monitoring.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.EnterpriseCloud.Monitoring.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Golive.Extensions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Golive.Extensions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.GuestConfig.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.GuestConfig.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.GuestConfiguration\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.GuestConfiguration\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.GuestConfiguration.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.GuestConfiguration.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.GuestConfiguration.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.GuestConfiguration.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.HpcCompute\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.HpcCompute\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.HpcCompute.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.HpcCompute.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.HpcPack\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.HpcPack\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Interceptor\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Interceptor\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.M365\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.M365\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.M365SecurityConfiguration.Kevlar.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.M365SecurityConfiguration.Kevlar.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.ManagedIdentity\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.ManagedIdentity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.ManagedServices\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.ManagedServices\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.ManagedServices.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.ManagedServices.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.MonitoringAgent.Extension\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.MonitoringAgent.Extension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Network\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Network\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.OSTCExtensions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.OSTCExtensions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.OSTCExtensions.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.OSTCExtensions.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.OSTCExtensions.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.OSTCExtensions.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.OSTCExtensions.Testing\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.OSTCExtensions.Testing\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Powershell\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Powershell\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Powershell.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Powershell.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Powershell.Test01\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Powershell.Test01\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.SecurityManagement.Kevlar\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.SecurityManagement.Kevlar\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Sentinel.AzureMonitorAgentExtensions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Sentinel.AzureMonitorAgentExtensions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.SoftwareUpdateManagement\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.SoftwareUpdateManagement\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.SoftwareUpdateManagement.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.SoftwareUpdateManagement.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.SqlServer.Managability.IaaS.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.SqlServer.Managability.IaaS.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.SqlServer.Management\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.SqlServer.Management\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.SqlServer.Management.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.SqlServer.Management.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.SystemCenter\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.SystemCenter\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.SystemCenter.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.SystemCenter.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Test.Azure.Workloads\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Test.Azure.Workloads\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.TestSqlServer.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.TestSqlServer.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.ETWTraceListenerService\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.Azure.ETWTraceListenerService\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.RemoteDebug\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.Azure.RemoteDebug\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.RemoteDebug.Json\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.Azure.RemoteDebug.Json\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.ServiceProfiler\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.ServiceProfiler\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.Services\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.Services\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.WindowsAzure.DevTest\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.WindowsAzure.DevTest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.WindowsAzure.DevTest.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.WindowsAzure.DevTest.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.WindowsAzure.RemoteDebug\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.WindowsAzure.RemoteDebug\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.WindowsAzure.Test.RemoteDebug\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.WindowsAzure.Test.RemoteDebug\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Windows.Azure.Extensions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Windows.Azure.Extensions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Windows.AzureRemoteApp.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Windows.AzureRemoteApp.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Windows.RemoteDesktop\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Windows.RemoteDesktop\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.WindowsAdminCenter\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.WindowsAdminCenter\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.WindowsAdminCenter.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.WindowsAdminCenter.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.WindowsAzure.Compute\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.WindowsAzure.Compute\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.WindowsAzure.Compute.test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.WindowsAzure.Compute.test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.WVD\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.WVD\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoftagciuk\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoftagciuk\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoftazurecituswarp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoftazurecituswarp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftAzureSiteRecovery\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftAzureSiteRecovery\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftBizTalkServer\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftBizTalkServer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftCBLMariner\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftCBLMariner\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoftcmotest\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoftcmotest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoftcorporation1602274591143\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoftcorporation1602274591143\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoftcorporation1620407702632\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoftcorporation1620407702632\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftDynamicsAX\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftDynamicsAX\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftDynamicsGP\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftDynamicsGP\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftDynamicsNAV\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftDynamicsNAV\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoftfarmbeats\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoftfarmbeats\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftHybridCloudStorage\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftHybridCloudStorage\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftOSTC\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftOSTC\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftPowerBI\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftPowerBI\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftRServer\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftRServer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftSharePoint\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftSharePoint\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftSQLServer\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftSQLServer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftTestLinuxPPS\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftTestLinuxPPS\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftVisualStudio\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftVisualStudio\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftWindowsDesktop\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsDesktop\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftWindowsServer\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsServer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftWindowsServerHPCPack\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsServerHPCPack\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft_iot_edge\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft_iot_edge\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft_javaeeonazure_test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft_javaeeonazure_test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microstrategy\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microstrategy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"midasolutions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/midasolutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"middleware\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/middleware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"midfin\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/midfin\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"midvision\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/midvision\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mihupcommunicationspvtltd1599046998010\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mihupcommunicationspvtltd1599046998010\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mindcti\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mindcti\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"minio\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/minio\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"miraclelinux\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/miraclelinux\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"miracl_linux\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/miracl_linux\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"miri-infotech-pvt-ltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/miri-infotech-pvt-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mistio1601460379393\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mistio1601460379393\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mobilab\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mobilab\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"modern-systems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/modern-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"modexblockchaindatabase\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/modexblockchaindatabase\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"monetdbsolutions1611751313758\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/monetdbsolutions1611751313758\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"monitorapp1579029852605\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/monitorapp1579029852605\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"monitorcomputersystemsltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/monitorcomputersystemsltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"moogsoft\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/moogsoft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"morpheus-data\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/morpheus-data\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"moviemasher\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/moviemasher\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mriisoftllc1579457820427\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mriisoftllc1579457820427\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"msopentech\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/msopentech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mtnfog\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mtnfog\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"multima1643619641681\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/multima1643619641681\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"multisoft-ab\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/multisoft-ab\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mvp-systems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mvp-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mwg_azure\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mwg_azure\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mxhero\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mxhero\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"my-com\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/my-com\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"myarchinc1614657280935\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/myarchinc1614657280935\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"narrativescience\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/narrativescience\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nasuni\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nasuni\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nasunicorporation\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nasunicorporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"navicloudrsoftwarepteltd1601967280369\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/navicloudrsoftwarepteltd1601967280369\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ncache\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ncache\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ncbi\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ncbi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ncomputingglobalinc1604353053068\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ncomputingglobalinc1604353053068\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ndl\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ndl\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ndstriyelotomasyonsistemlerisanvetica1623147454601\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ndstriyelotomasyonsistemlerisanvetica1623147454601\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nebbiolo-technologies-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nebbiolo-technologies-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nec-technologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nec-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nefelinetworks1591201080882\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nefelinetworks1591201080882\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"neo4j\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/neo4j\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"neos\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/neos\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"neowaybusinesssolutions-4956350\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/neowaybusinesssolutions-4956350\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netapp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netapp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netatwork\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netatwork\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netfoundryinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netfoundryinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netgate\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netgate\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netikus-net-ltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netikus-net-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netiq\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netiq\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netka\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netka\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netmail\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netmail\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netscout\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netscout\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netspi\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netspi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netsweeper\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netsweeper\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"networksexchangetechnologyltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/networksexchangetechnologyltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netwrix\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netwrix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netx\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netx\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"neusoft-neteye\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/neusoft-neteye\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"newegginc1646343565758\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/newegginc1646343565758\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"newnetcommunicationtechnologies1589991852134\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/newnetcommunicationtechnologies1589991852134\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"NewRelic.Infrastructure.Extensions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/NewRelic.Infrastructure.Extensions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"newtglobalconsultingllc1581492268566\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/newtglobalconsultingllc1581492268566\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nextronic-5290868\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nextronic-5290868\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nginxinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nginxinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nice-it-management-solutions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nice-it-management-solutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nicepeopleatwork\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nicepeopleatwork\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nilespartnersinc1617691698386\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nilespartnersinc1617691698386\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"niolabs-5229713\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/niolabs-5229713\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nirvatosoftwarepvtltd1601368706606\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nirvatosoftwarepvtltd1601368706606\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nodejsapi\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nodejsapi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"noianetworklimited1584098036197\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/noianetworklimited1584098036197\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nokiaofamericacorporation1591716055441\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nokiaofamericacorporation1591716055441\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"noobaa\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/noobaa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"norcominformationtechnologygmbhcokgaa\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/norcominformationtechnologygmbhcokgaa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"noricumcloudsolutions1600524477681\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/noricumcloudsolutions1600524477681\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"norsync\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/norsync\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"northbridge-secure\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/northbridge-secure\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nozominetworks1582208017986\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nozominetworks1582208017986\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nri\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nri\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ntegralinc1586961136942\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ntegralinc1586961136942\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ntt-data-intellilink-corporation\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ntt-data-intellilink-corporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nttdata\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nttdata\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nttltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nttltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nuco-networks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nuco-networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"numbersbelieve\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/numbersbelieve\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"numtrallcpublisher\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/numtrallcpublisher\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nuxeo\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nuxeo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nvidia\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nvidia\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"o2mc-real-time-data-platform\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/o2mc-real-time-data-platform\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"objectivity-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/objectivity-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"objectivity1595351622261\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/objectivity1595351622261\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"oceanblue-cloud\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/oceanblue-cloud\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"OctopusDeploy.Tentacle\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/OctopusDeploy.Tentacle\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"odix\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/odix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"odysseuscomputationalsolutions1630242118741\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/odysseuscomputationalsolutions1630242118741\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"odysseyconsultantsltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/odysseyconsultantsltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"officeatwork-ag\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/officeatwork-ag\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"omega-software\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/omega-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"onapsis\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/onapsis\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"oncore_cloud_services-4944214\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/oncore_cloud_services-4944214\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"onexgroup\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/onexgroup\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"onspecta\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/onspecta\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ontology\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ontology\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"onyx-point-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/onyx-point-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"op5\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/op5\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"open-connect-systems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/open-connect-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"opencell\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/opencell\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"openlinkswcom-pago\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/openlinkswcom-pago\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"OpenLogic\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/OpenLogic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"openrefactoryinc1620140917523\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/openrefactoryinc1620140917523\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"openshotstudiosllc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/openshotstudiosllc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"opentext\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/opentext\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"openvpn\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/openvpn\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"opslogix\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/opslogix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"opswatinc1619007967290\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/opswatinc1619007967290\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"optimitiveslu1618320281443\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/optimitiveslu1618320281443\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"option3\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/option3\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Oracle\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Oracle\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"oraylis\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/oraylis\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"oraylisbi\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/oraylisbi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"orbs-network\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/orbs-network\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"oriana\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/oriana\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"orientdb\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/orientdb\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"oroinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/oroinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"osirium-ltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/osirium-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"osisoft\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/osisoft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"osnexus\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/osnexus\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"outpost24\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/outpost24\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"outsystems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/outsystems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ovaledge1618392232783\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ovaledge1618392232783\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pachyderminc1585170006545\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pachyderminc1585170006545\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pacteratechnologiesinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pacteratechnologiesinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"paladionnetworkspvtltd1606120508449\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/paladionnetworkspvtltd1606120508449\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"paloaltonetworks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/paloaltonetworks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"panopta\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/panopta\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"panorama-necto\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/panorama-necto\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"panzura-file-system\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/panzura-file-system\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"parabole\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/parabole\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"paralaxiomtechnologiesprivatelimited1596433357886\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/paralaxiomtechnologiesprivatelimited1596433357886\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"parallels\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/parallels\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"parasoft\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/parasoft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"parkersoftwarelimited1609786657569\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/parkersoftwarelimited1609786657569\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"parsec-for-teams\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/parsec-for-teams\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pasifikciptamandiri\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pasifikciptamandiri\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"passlogy\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/passlogy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"paxata\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/paxata\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pcman\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pcman\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"peer-software-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/peer-software-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"penta-security-systems-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/penta-security-systems-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"percona\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/percona\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"perforce\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/perforce\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"periscope-tech-4791746\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/periscope-tech-4791746\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"piolinkinc1582849368309\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/piolinkinc1582849368309\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pivotal\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pivotal\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pixitmedia1591611150480\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pixitmedia1591611150480\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"plesk\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/plesk\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pmsoftwareinternational1603102514882\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pmsoftwareinternational1603102514882\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pnop\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pnop\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"polarityioinc1628691850891\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/polarityioinc1628691850891\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"portalarchitects\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/portalarchitects\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"portsysinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/portsysinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"postgres-pro\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/postgres-pro\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"powerbireach\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/powerbireach\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"prakshepprivatelimited1619949827900\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/prakshepprivatelimited1619949827900\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"prasselsrl1645470739547\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/prasselsrl1645470739547\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"prestashop\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/prestashop\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"prestige_informatique-1090178\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/prestige_informatique-1090178\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"prime-strategy\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/prime-strategy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"primekey\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/primekey\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"primestrategynewyorkinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/primestrategynewyorkinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pro-vision\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pro-vision\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"probityinc1581611299345\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/probityinc1581611299345\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"process-one\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/process-one\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"processgold\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/processgold\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"procomputers\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/procomputers\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"procomputerssrl1594239153814\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/procomputerssrl1594239153814\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"profecia\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/profecia\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Profiler.AgentOrchestrationRefactor.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Profiler.AgentOrchestrationRefactor.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Profiler.Master.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Profiler.Master.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"profisee\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/profisee\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"progelspa\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/progelspa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"progresssoftwarecorporation\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/progresssoftwarecorporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"proliongmbh1628175060372\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/proliongmbh1628175060372\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"protegrityusainc1627404648458\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/protegrityusainc1627404648458\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"protiviti\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/protiviti\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"proventeq\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/proventeq\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ptc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ptc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ptsecurity\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ptsecurity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pulse-secure\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pulse-secure\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pulsesecuretechnologies1638179500151\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pulsesecuretechnologies1638179500151\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"puppet\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/puppet\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"puppeteersoy1601024480557\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/puppeteersoy1601024480557\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"PuppetLabs\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/PuppetLabs\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"PuppetLabs.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/PuppetLabs.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"purestorageinc1578960262525\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/purestorageinc1578960262525\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pydio\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pydio\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pyramidanalytics\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pyramidanalytics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"qlik\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/qlik\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"qnapsystemsinc1601352084032\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/qnapsystemsinc1601352084032\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"qore-technologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/qore-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"qs-solutions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/qs-solutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Qualys\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Qualys\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Qualys.LinuxAgent.GrayLabel\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Qualys.LinuxAgent.GrayLabel\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Qualys.WindowsAgent.GrayLabel\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Qualys.WindowsAgent.GrayLabel\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"qualysguard\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/qualysguard\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"quasardb\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/quasardb\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"qubole-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/qubole-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"quest\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/quest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"racknap\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/racknap\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rackwareinc1619403669255\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rackwareinc1619403669255\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"radiant-logic\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/radiant-logic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"radware\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/radware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"raincode\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/raincode\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rancher\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rancher\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rapid7\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rapid7\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Rapid7.InsightPlatform\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Rapid7.InsightPlatform\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rapidminer\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rapidminer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"raynetgmbh\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/raynetgmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"readymind\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/readymind\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"realm\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/realm\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"reblaze\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/reblaze\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"RedHat\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/RedHat\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"redhat-rhel\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/redhat-rhel\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"redpoint-global\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/redpoint-global\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"refactr\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/refactr\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"refinitiv\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/refinitiv\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"refinitiv-4807503\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/refinitiv-4807503\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"relevance-lab\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/relevance-lab\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"remotelearner\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/remotelearner\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"res\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/res\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"resco\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/resco\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"researchgraphptyltd1598252602128\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/researchgraphptyltd1598252602128\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"resemblesystems1582780358300\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/resemblesystems1582780358300\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"responder-corp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/responder-corp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"revolution-analytics\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/revolution-analytics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rhcsolutions1586957910818\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rhcsolutions1586957910818\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ribboncommunications\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ribboncommunications\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"RightScaleLinux\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/RightScaleLinux\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"RightScaleWindowsServer\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/RightScaleWindowsServer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rimo3\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rimo3\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ringsoftwareresearchanddevelopmentinc1578946072257\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ringsoftwareresearchanddevelopmentinc1578946072257\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"riverbed\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/riverbed\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"RiverbedTechnology\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/RiverbedTechnology\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rmgtechnologiesinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rmgtechnologiesinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rocketml\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rocketml\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rocketsoftware\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rocketsoftware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rohdeschwarzcybersecuritygmbh\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rohdeschwarzcybersecuritygmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rohdeschwarzcybersecuritysas\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rohdeschwarzcybersecuritysas\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"roktech\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/roktech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rsa-security-llc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rsa-security-llc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rsk-labs\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rsk-labs\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rstudio-5237862\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rstudio-5237862\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rtts\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rtts\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rubrik-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rubrik-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"runecastsolutionslimited1614186396822\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/runecastsolutionslimited1614186396822\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"s2ix\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/s2ix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"saama\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/saama\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"saasame-limited\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/saasame-limited\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"safesoftwareinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/safesoftwareinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"safeticatechnologiessro\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/safeticatechnologiessro\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"safetica_technologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/safetica_technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"safetoopen1585013318137\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/safetoopen1585013318137\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"saltsecurity1583264186232\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/saltsecurity1583264186232\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"saltsecurity1583264669848\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/saltsecurity1583264669848\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"saltstack\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/saltstack\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"samsung-sds\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/samsung-sds\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"samsungelectronics1632860607983\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/samsungelectronics1632860607983\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"samsungsds-cello\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/samsungsds-cello\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"samsungsds_sdbe\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/samsungsds_sdbe\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sandhatatechnologieslimited1615753438737\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sandhatatechnologieslimited1615753438737\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sap\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sap\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sapphiretechnologieslimited1611758579346\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sapphiretechnologieslimited1611758579346\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sas-institute-560503\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sas-institute-560503\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"scaidata\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/scaidata\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"scalearc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/scalearc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"scalegrid\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/scalegrid\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"scality\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/scality\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"schrockeninc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/schrockeninc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sci\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sci\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sciencelogicinc1622565452194\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sciencelogicinc1622565452194\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"scientiamobile\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/scientiamobile\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"scontainug1595751515785\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/scontainug1595751515785\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"scubaanalytics\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/scubaanalytics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"scylladb1631195365807\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/scylladb1631195365807\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"seaqserviciossas1579029207572\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/seaqserviciossas1579029207572\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"searchbloxsoftwareinc1594309037050\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/searchbloxsoftwareinc1594309037050\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"secureworks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/secureworks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"securityonionsolutions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/securityonionsolutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"securityonionsolutionsllc1624649205155\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/securityonionsolutionsllc1624649205155\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"securosis\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/securosis\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"seequentltd1585781751395\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/seequentltd1585781751395\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"semarchy\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/semarchy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"semperis\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/semperis\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"senhasegura\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/senhasegura\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"SentinelOne.LinuxExtension\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/SentinelOne.LinuxExtension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"SentinelOne.LinuxExtension.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/SentinelOne.LinuxExtension.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"SentinelOne.WindowsExtension\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/SentinelOne.WindowsExtension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"SentinelOne.WindowsExtension.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/SentinelOne.WindowsExtension.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sentriumsl\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sentriumsl\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sentry51llc1616686725591\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sentry51llc1616686725591\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sentryone\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sentryone\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sepiosystems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sepiosystems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"seppmailag\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/seppmailag\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"seraumo1620002807288\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/seraumo1620002807288\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"service-control-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/service-control-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sesamesoftwareinc1622125191447\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sesamesoftwareinc1622125191447\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"shadow-soft\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/shadow-soft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"shareshiftneeraj.test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/shareshiftneeraj.test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sightapps\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sightapps\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"signal-sciences\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/signal-sciences\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"silk\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/silk\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"silver-peak-systems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/silver-peak-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"simmachinesinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/simmachinesinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"simontelephonics\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/simontelephonics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"simpledatalabsinc1635791235920\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/simpledatalabsinc1635791235920\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"simplifierag\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/simplifierag\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"simpligov\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/simpligov\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sinefa\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sinefa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sinequa\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sinequa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sinequa1588262295885\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sinequa1588262295885\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"singapore-telecommunications-limited\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/singapore-telecommunications-limited\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sios_datakeeper\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sios_datakeeper\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"siportalinc1581539156321\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/siportalinc1581539156321\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sisenseltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sisenseltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Site24x7\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Site24x7\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sktelecom\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sktelecom\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"skyarc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/skyarc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"skyboxsecurity1585187406404\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/skyboxsecurity1585187406404\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"skylarkcloud\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/skylarkcloud\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"smartbearsoftware\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/smartbearsoftware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"smartmessage-autoflow\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/smartmessage-autoflow\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"snaplogic\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/snaplogic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"snapt-adc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/snapt-adc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"snips\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/snips\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"soasta\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/soasta\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"softnas\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/softnas\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"softwarecentralas1642687699196\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/softwarecentralas1642687699196\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"softwarehut\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/softwarehut\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"softwebsolutions-4518310\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/softwebsolutions-4518310\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"soha\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/soha\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"solanolabs\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/solanolabs\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"solar-security\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/solar-security\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"solarwinds\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/solarwinds\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"solvedevops1643693563360\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/solvedevops1643693563360\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sonicwall-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sonicwall-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sophos\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sophos\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sourcegearllc1616101262784\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sourcegearllc1616101262784\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"south-river-technologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/south-river-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"southrivertech1586314123192\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/southrivertech1586314123192\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"spacecurve\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/spacecurve\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"spaceliftinc1625499025476\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/spaceliftinc1625499025476\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"spagobi\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/spagobi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sparklinglogic\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sparklinglogic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"spectralcorelimited1619779004178\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/spectralcorelimited1619779004178\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"spektra\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/spektra\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sphere3d\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sphere3d\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"spideroakinc1588278690933\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/spideroakinc1588278690933\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"spirentcommunications1594084187199\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/spirentcommunications1594084187199\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"splunk\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/splunk\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sproutenetworks1593456311717\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sproutenetworks1593456311717\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sqlstream\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sqlstream\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"squadratechnologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/squadratechnologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"squaredup\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/squaredup\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"src-solution\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/src-solution\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ssh2appsltd1621588462715\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ssh2appsltd1621588462715\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stackato-platform-as-a-service\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stackato-platform-as-a-service\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Stackify.LinuxAgent.Extension\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Stackify.LinuxAgent.Extension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stackstorm\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stackstorm\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"startekfingerprintmatch\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/startekfingerprintmatch\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"startisolucoesemtecnologialtda1635263523201\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/startisolucoesemtecnologialtda1635263523201\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"starwind\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/starwind\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"StatusMonitor2.Diagnostics.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/StatusMonitor2.Diagnostics.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"StatusReport.Diagnostics.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/StatusReport.Diagnostics.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stealthbits\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stealthbits\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"steelhive\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/steelhive\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stonebondtechnologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stonebondtechnologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stonefly\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stonefly\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"storage_made_easy\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/storage_made_easy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stormshield\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stormshield\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"storone1594045543980\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/storone1594045543980\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"storreduce\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/storreduce\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"storwarespzoo1611743234900\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/storwarespzoo1611743234900\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"strangebee1595948424730\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/strangebee1595948424730\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"strataidentity1608323708170\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/strataidentity1608323708170\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stratis-group-ltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stratis-group-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stratodesk1611152769936\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stratodesk1611152769936\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stratumn\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stratumn\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"streamsets\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/streamsets\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"striim\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/striim\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stromasys\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stromasys\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"strongboxitllc1594816423884\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/strongboxitllc1594816423884\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"su\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/su\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"subscription.test.krsh\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/subscription.test.krsh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sumologic\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sumologic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sunatogmbh\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sunatogmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sunday\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sunday\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"SUSE\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/SUSE\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"SUSE.AzureHybridBenefit\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/SUSE.AzureHybridBenefit\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"swoopanalytics\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/swoopanalytics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sycom-technologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sycom-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sycompatechnologycompanyinc1588192103892\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sycompatechnologycompanyinc1588192103892\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.CloudWorkloadProtection\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.CloudWorkloadProtection\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.CloudWorkloadProtection.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.CloudWorkloadProtection.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.CloudWorkloadProtection.TestOnStage\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.CloudWorkloadProtection.TestOnStage\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.QA\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.QA\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.staging\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.staging\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.test.ru2.latest\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.test.ru2.latest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.test.ru2final\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.test.ru2final\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.test.ru2latest1\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.test.ru2latest1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.test.ru4mp1\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.test.ru4mp1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.test.ru4mp1.latest\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.test.ru4mp1.latest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.test.ru4mp1final\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.test.ru4mp1final\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"symanteccorporation\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/symanteccorporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"symantectest1\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/symantectest1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"synack-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/synack-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"syncfusion\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/syncfusion\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"syncfusionbigdataplatfor\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/syncfusionbigdataplatfor\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"synechron-technologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/synechron-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"synergixinc1585256339250\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/synergixinc1585256339250\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"synnexcorp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/synnexcorp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"syscomcomputerengineeringco1583913200141\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/syscomcomputerengineeringco1583913200141\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"syte\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/syte\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tableau\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tableau\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tactic\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tactic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"talari-networks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/talari-networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"talena-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/talena-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"talend\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/talend\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"talon\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/talon\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tamrinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tamrinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"taniuminc1646329360287\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/taniuminc1646329360287\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"targit\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/targit\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tata_communications\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tata_communications\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tavanttechnologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tavanttechnologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tavendo\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tavendo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"te-systems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/te-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"techdivision\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/techdivision\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"techlatest\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/techlatest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"technicheltd1606969724100\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/technicheltd1606969724100\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tecknolab\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tecknolab\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"telepat\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/telepat\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"teloscorporation\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/teloscorporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tempered-networks-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tempered-networks-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tenable\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tenable\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tensormakecorpdbaoneclickai1608247756082\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tensormakecorpdbaoneclickai1608247756082\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tenthlineinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tenthlineinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"teradata\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/teradata\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Teradici\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Teradici\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"teramindinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/teramindinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.Gemalto.SafeNet.ProtectV\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.Gemalto.SafeNet.ProtectV\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.Gemalto.SafeNet.ProtectV.Azure\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.Gemalto.SafeNet.ProtectV.Azure\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.HP.AppDefender\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.HP.AppDefender\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.Microsoft.VisualStudio.Services\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.Microsoft.VisualStudio.Services\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.NJHP.AppDefender\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.NJHP.AppDefender\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.SqlServer.Managability\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.SqlServer.Managability\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.SqlServer.Management\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.SqlServer.Management\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.SqlServer.Management.corext\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.SqlServer.Management.corext\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test1.NJHP.AppDefender\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test1.NJHP.AppDefender\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test3.Microsoft.VisualStudio.Services\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test3.Microsoft.VisualStudio.Services\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"testable1603721901088\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/testable1603721901088\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"testpro\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/testpro\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"test_test_mix3pptest0011614206850774\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/test_test_mix3pptest0011614206850774\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"test_test_mneela1628617140187\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/test_test_mneela1628617140187\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"test_test_pmc2pc1\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/test_test_pmc2pc1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thales-vormetric\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thales-vormetric\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thalesdiscplusainc1596561677238\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thalesdiscplusainc1596561677238\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thedatavaluefactoryltd1589348815922\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thedatavaluefactoryltd1589348815922\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thefreebsdfoundation\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thefreebsdfoundation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thehdfgroup1616725197741\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thehdfgroup1616725197741\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"theumag1596442827072\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/theumag1596442827072\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"things-board\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/things-board\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thingscareinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thingscareinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thinprintgmbh\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thinprintgmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thorntechnologiesllc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thorntechnologiesllc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thoughtspot-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thoughtspot-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"threatintelligenceptyltd1586824172898\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/threatintelligenceptyltd1586824172898\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tibco-software\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tibco-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tidal-migrations\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tidal-migrations\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tidalmediainc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tidalmediainc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tig\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tig\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tiger-technology\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tiger-technology\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tigergraph\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tigergraph\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"timextender\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/timextender\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tmaxsoft\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tmaxsoft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tmaxsoft1608612658335\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tmaxsoft1608612658335\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tomsawyersoftwarecorp1613579206342\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tomsawyersoftwarecorp1613579206342\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"topicus\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/topicus\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"torusware\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/torusware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"totemo\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/totemo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"townsend-security\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/townsend-security\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"transcendinformationinc1609918445926\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/transcendinformationinc1609918445926\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"transientxinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/transientxinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"transvault\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/transvault\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"trendmicro\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/trendmicro\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"TrendMicro.DeepSecurity.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/TrendMicro.DeepSecurity.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"TrendMicro.PortalProtect\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/TrendMicro.PortalProtect\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tresorit\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tresorit\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"trifacta\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/trifacta\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tripleblindinc1615730179432\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tripleblindinc1615730179432\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tripwire-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tripwire-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"truata1612259728221\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/truata1612259728221\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"truestack\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/truestack\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tryonsolutionsinc1596650621083\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tryonsolutionsinc1596650621083\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tsa-public-service\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tsa-public-service\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tunnelbiz\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tunnelbiz\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"turbonet\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/turbonet\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"turbonet1581982683964\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/turbonet1581982683964\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"twistlock\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/twistlock\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"typesafe\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/typesafe\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ubeeko\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ubeeko\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ubercloud\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ubercloud\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"uipath-5054924\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/uipath-5054924\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ulex\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ulex\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"unifi-software\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/unifi-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"unifiedstreaming1598872291606\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/unifiedstreaming1598872291606\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"uniprint-net\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/uniprint-net\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"unitrends\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/unitrends\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"unnisoft\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/unnisoft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"unravel-data\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/unravel-data\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"unscramblsingaporepteltd-4999260\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/unscramblsingaporepteltd-4999260\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"untangle\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/untangle\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"upsolver1594188634150\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/upsolver1594188634150\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"usp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/usp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"valohai\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/valohai\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"valtix\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/valtix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"varmournetworks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/varmournetworks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"varnish\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/varnish\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vastdata1650451243415\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vastdata1650451243415\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vatacommunicationsinc1581644208717\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vatacommunicationsinc1581644208717\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vaultive-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vaultive-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vbot\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vbot\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vcinityinc1587684340545\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vcinityinc1587684340545\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vectraaiinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vectraaiinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"veeam\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/veeam\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"velocitydb-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/velocitydb-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"velocloud\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/velocloud\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vembutechnologiespvtltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vembutechnologiespvtltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vemn\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vemn\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"veritas\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/veritas\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"versanetworks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/versanetworks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"versasec\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/versasec\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vidispine\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vidispine\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vidizmo\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vidizmo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vigyanlabs-innovations-pvt-ltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vigyanlabs-innovations-pvt-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vigyanlabsinc1581413676614\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vigyanlabsinc1581413676614\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"viptela\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/viptela\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vircom\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vircom\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"virtamovecorp1615909247913\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/virtamovecorp1615909247913\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"virtualpulsesro1607008728942\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/virtualpulsesro1607008728942\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"virtuozzointernationalgmbh1626704951469\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/virtuozzointernationalgmbh1626704951469\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"visualknowledgeshare1591795776234\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/visualknowledgeshare1591795776234\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"visualsoft-center\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/visualsoft-center\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vizixiotplatformretail001\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vizixiotplatformretail001\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vmlabinc1613642184700\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vmlabinc1613642184700\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vmturbo\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vmturbo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vmware-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vmware-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vnomicinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vnomicinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"voiceelements\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/voiceelements\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"voleatechgmbh1636966911943\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/voleatechgmbh1636966911943\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"volterraedgeservices\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/volterraedgeservices\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Vormetric\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Vormetric\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vscconsultingptyltd1608535888097\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vscconsultingptyltd1608535888097\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vte\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vte\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vu-llc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vu-llc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vunetsystemsprivatelimited1646716402131\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vunetsystemsprivatelimited1646716402131\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vyulabsinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vyulabsinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"WAD2AI.Diagnostics.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/WAD2AI.Diagnostics.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"WAD2EventHub.Diagnostics.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/WAD2EventHub.Diagnostics.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wallarm\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wallarm\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wallix\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wallix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wandisco\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wandisco\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wanos\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wanos\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wanpath-dba-myworkdrive\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wanpath-dba-myworkdrive\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wardy-it-solutions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wardy-it-solutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"warewolf-esb\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/warewolf-esb\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"watchguard-technologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/watchguard-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"webaloinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/webaloinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"websense-apmailpe\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/websense-apmailpe\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"websoft9inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/websoft9inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wedoitllc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wedoitllc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"westernoceansoftwaresprivatelimited\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/westernoceansoftwaresprivatelimited\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wherescapesoftware\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wherescapesoftware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"winmagic_securedoc_cloudvm\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/winmagic_securedoc_cloudvm\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wintellisys-inc-4561600\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wintellisys-inc-4561600\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"witfooinc1590167223060\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/witfooinc1590167223060\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wmspanel\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wmspanel\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wood1595864497589\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wood1595864497589\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"workshare-technology\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/workshare-technology\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"world-programming\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/world-programming\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"worxogo\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/worxogo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wowza\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wowza\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"xcontentptyltd-1329748\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/xcontentptyltd-1329748\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"xendata-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/xendata-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"xfinityinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/xfinityinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"xilinx\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/xilinx\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"xoriantcorporationazxteam1\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/xoriantcorporationazxteam1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"xoriantsolutionspvtltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/xoriantsolutionspvtltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"xtremedata\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/xtremedata\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"xyzrd-group-ou\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/xyzrd-group-ou\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"yaseensmarket1645449809728\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/yaseensmarket1645449809728\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"yellowfin\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/yellowfin\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"yellowfininternationalptyltd1616363974066\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/yellowfininternationalptyltd1616363974066\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"yokogawarentalleasecorporation\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/yokogawarentalleasecorporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"your-shop-online\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/your-shop-online\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"z1\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/z1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"z4it-aps\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/z4it-aps\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zabbix\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zabbix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zend\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zend\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zenterasystemsinc1605292453288\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zenterasystemsinc1605292453288\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zerodown_software\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zerodown_software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zerto\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zerto\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zettalane_systems-5254599\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zettalane_systems-5254599\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zevenet\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zevenet\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zilliz\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zilliz\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zoomdata\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zoomdata\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zscaler\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zscaler\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zscaler1579058425289\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zscaler1579058425289\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zultysinc1596831546163\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zultysinc1596831546163\"\r\n }\r\n]", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/southeastasia/publishers/Microsoft.Compute/artifacttypes/vmextension/types?api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9wdWJsaXNoZXJzL01pY3Jvc29mdC5Db21wdXRlL2FydGlmYWN0dHlwZXMvdm1leHRlbnNpb24vdHlwZXM/YXBpLXZlcnNpb249MjAyMS0xMS0wMQ==", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Compute/locations/southeastasia/publishers/Microsoft.Compute/artifacttypes/vmextension/types?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9wdWJsaXNoZXJzL01pY3Jvc29mdC5Db21wdXRlL2FydGlmYWN0dHlwZXMvdm1leHRlbnNpb24vdHlwZXM/YXBpLXZlcnNpb249MjAyMS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d97d3f9a-7e1e-411b-a3fc-65fa08b9d784" + "032a228d-061a-4d48-b6d1-12630f498ba9" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ] }, "ResponseHeaders": { @@ -2131,10 +2131,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "1f3ad383-bb66-4279-b2a8-fbbcd093a7e3_132718957370641376" + "1f3ad383-bb66-4279-b2a8-fbbcd093a7e3_132836337789816871" ], "x-ms-request-id": [ - "e7614b52-00eb-4d40-83b8-21ece0802c3a" + "171efbf1-c680-4219-b588-e6fd5650f26c" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -2144,16 +2144,16 @@ "11993" ], "x-ms-correlation-request-id": [ - "f88a57b8-f31b-46f6-9615-3870f9593f24" + "68e3b0a2-43be-45ff-95d9-fdefdbca8568" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T235003Z:f88a57b8-f31b-46f6-9615-3870f9593f24" + "JIOINDIAWEST:20220517T134055Z:68e3b0a2-43be-45ff-95d9-fdefdbca8568" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 24 Feb 2022 23:50:03 GMT" + "Tue, 17 May 2022 13:40:54 GMT" ], "Content-Length": [ "1089" @@ -2165,26 +2165,26 @@ "-1" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"BGInfo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"CustomScriptExtension\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"JsonADDomainExtension\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/JsonADDomainExtension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"VMAccessAgent\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/VMAccessAgent\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"BGInfo\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"CustomScriptExtension\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"JsonADDomainExtension\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/JsonADDomainExtension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"VMAccessAgent\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/VMAccessAgent\"\r\n }\r\n]", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/southeastasia/publishers/Microsoft.Compute/artifacttypes/vmextension/types/BGInfo/versions?api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9wdWJsaXNoZXJzL01pY3Jvc29mdC5Db21wdXRlL2FydGlmYWN0dHlwZXMvdm1leHRlbnNpb24vdHlwZXMvQkdJbmZvL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMjEtMTEtMDE=", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Compute/locations/southeastasia/publishers/Microsoft.Compute/artifacttypes/vmextension/types/BGInfo/versions?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9wdWJsaXNoZXJzL01pY3Jvc29mdC5Db21wdXRlL2FydGlmYWN0dHlwZXMvdm1leHRlbnNpb24vdHlwZXMvQkdJbmZvL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMjEtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d97d3f9a-7e1e-411b-a3fc-65fa08b9d784" + "032a228d-061a-4d48-b6d1-12630f498ba9" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ] }, "ResponseHeaders": { @@ -2201,10 +2201,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "1f3ad383-bb66-4279-b2a8-fbbcd093a7e3_132718957370641376" + "1f3ad383-bb66-4279-b2a8-fbbcd093a7e3_132836337789816871" ], "x-ms-request-id": [ - "1ccebb05-920d-4668-ac95-24ad377d9153" + "833501f1-5315-40bc-a552-55e491f6bdf1" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -2214,19 +2214,19 @@ "11992" ], "x-ms-correlation-request-id": [ - "016e1736-52a5-4087-8689-21c8790c9930" + "7237de25-fa2d-4c38-bb3c-85d1765e1fd8" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T235003Z:016e1736-52a5-4087-8689-21c8790c9930" + "JIOINDIAWEST:20220517T134055Z:7237de25-fa2d-4c38-bb3c-85d1765e1fd8" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 24 Feb 2022 23:50:03 GMT" + "Tue, 17 May 2022 13:40:55 GMT" ], "Content-Length": [ - "1589" + "1856" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2235,26 +2235,26 @@ "-1" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1.0\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo/Versions/1.0\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1.0.1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo/Versions/1.0.1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1.1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo/Versions/1.1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1.2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo/Versions/1.2\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1.2.2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo/Versions/1.2.2\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"2.1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo/Versions/2.1\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1.0\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo/Versions/1.0\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1.0.1\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo/Versions/1.0.1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1.1\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo/Versions/1.1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1.2\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo/Versions/1.2\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1.2.2\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo/Versions/1.2.2\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"2.1\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo/Versions/2.1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"2.2.2\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo/Versions/2.2.2\"\r\n }\r\n]", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG90564a6f/providers/Microsoft.Compute/virtualMachines/PSTestVM905640/extensions/BGInfo?api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTA1NjRhNmYvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy9QU1Rlc3RWTTkwNTY0MC9leHRlbnNpb25zL0JHSW5mbz9hcGktdmVyc2lvbj0yMDIxLTExLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGc96a93a6/providers/Microsoft.Compute/virtualMachines/PSTestVMc96a90/extensions/BGInfo?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYzk2YTkzYTYvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy9QU1Rlc3RWTWM5NmE5MC9leHRlbnNpb25zL0JHSW5mbz9hcGktdmVyc2lvbj0yMDIxLTExLTAx", "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\": \"southeastasia\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"BGInfo\",\r\n \"typeHandlerVersion\": \"2.2\",\r\n \"autoUpgradeMinorVersion\": true\r\n },\r\n \"location\": \"southeastasia\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "d97d3f9a-7e1e-411b-a3fc-65fa08b9d784" + "032a228d-061a-4d48-b6d1-12630f498ba9" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2271,7 +2271,7 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/southeastasia/operations/9d32978d-93c3-4e10-b400-66295dc640b2?p=34dc709c-01b2-42c4-84a2-256a9734610d&api-version=2021-11-01" + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Compute/locations/southeastasia/operations/e781f04f-4d48-43c6-89aa-109a5725c7ae?p=e484ceca-6435-4a7f-b125-3d82e6b12014&api-version=2021-11-01" ], "Azure-AsyncNotification": [ "Enabled" @@ -2283,7 +2283,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "9d32978d-93c3-4e10-b400-66295dc640b2" + "e781f04f-4d48-43c6-89aa-109a5725c7ae" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -2293,16 +2293,16 @@ "1198" ], "x-ms-correlation-request-id": [ - "f6abd727-112e-4721-a620-f06b59d41272" + "409d2441-70e3-4f29-b646-7b5225c66588" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T235009Z:f6abd727-112e-4721-a620-f06b59d41272" + "JIOINDIAWEST:20220517T134058Z:409d2441-70e3-4f29-b646-7b5225c66588" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 24 Feb 2022 23:50:08 GMT" + "Tue, 17 May 2022 13:40:58 GMT" ], "Content-Length": [ "484" @@ -2314,23 +2314,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"BGInfo\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG90564a6f/providers/Microsoft.Compute/virtualMachines/PSTestVM905640/extensions/BGInfo\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"southeastasia\",\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}", + "ResponseBody": "{\r\n \"name\": \"BGInfo\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGc96a93a6/providers/Microsoft.Compute/virtualMachines/PSTestVMc96a90/extensions/BGInfo\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Creating\",\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"BGInfo\",\r\n \"typeHandlerVersion\": \"2.2\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/southeastasia/operations/9d32978d-93c3-4e10-b400-66295dc640b2?p=34dc709c-01b2-42c4-84a2-256a9734610d&api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzlkMzI5NzhkLTkzYzMtNGUxMC1iNDAwLTY2Mjk1ZGM2NDBiMj9wPTM0ZGM3MDljLTAxYjItNDJjNC04NGEyLTI1NmE5NzM0NjEwZCZhcGktdmVyc2lvbj0yMDIxLTExLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Compute/locations/southeastasia/operations/e781f04f-4d48-43c6-89aa-109a5725c7ae?p=e484ceca-6435-4a7f-b125-3d82e6b12014&api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2U3ODFmMDRmLTRkNDgtNDNjNi04OWFhLTEwOWE1NzI1YzdhZT9wPWU0ODRjZWNhLTY0MzUtNGE3Zi1iMTI1LTNkODJlNmIxMjAxNCZhcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d97d3f9a-7e1e-411b-a3fc-65fa08b9d784" + "032a228d-061a-4d48-b6d1-12630f498ba9" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ] }, "ResponseHeaders": { @@ -2341,13 +2341,13 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperation3Min;14995,Microsoft.Compute/GetOperation30Min;29990" + "Microsoft.Compute/GetOperation3Min;14995,Microsoft.Compute/GetOperation30Min;29993" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "0bdc8a1e-37c4-4def-bbe1-9775ec2a50d0" + "893ec2cb-5d00-41a3-b2e6-0b7290f15d37" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -2357,16 +2357,16 @@ "11991" ], "x-ms-correlation-request-id": [ - "8020442d-2e3a-4f89-8895-c3646bc89780" + "b7a2a2fa-034e-4cdc-87d2-314298ede7cb" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T235039Z:8020442d-2e3a-4f89-8895-c3646bc89780" + "JIOINDIAWEST:20220517T134128Z:b7a2a2fa-034e-4cdc-87d2-314298ede7cb" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 24 Feb 2022 23:50:38 GMT" + "Tue, 17 May 2022 13:41:28 GMT" ], "Content-Length": [ "134" @@ -2378,23 +2378,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-02-24T18:50:07.8075561-05:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"9d32978d-93c3-4e10-b400-66295dc640b2\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2022-05-17T19:10:58.1197754+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"e781f04f-4d48-43c6-89aa-109a5725c7ae\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/southeastasia/operations/9d32978d-93c3-4e10-b400-66295dc640b2?p=34dc709c-01b2-42c4-84a2-256a9734610d&api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzlkMzI5NzhkLTkzYzMtNGUxMC1iNDAwLTY2Mjk1ZGM2NDBiMj9wPTM0ZGM3MDljLTAxYjItNDJjNC04NGEyLTI1NmE5NzM0NjEwZCZhcGktdmVyc2lvbj0yMDIxLTExLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Compute/locations/southeastasia/operations/e781f04f-4d48-43c6-89aa-109a5725c7ae?p=e484ceca-6435-4a7f-b125-3d82e6b12014&api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2U3ODFmMDRmLTRkNDgtNDNjNi04OWFhLTEwOWE1NzI1YzdhZT9wPWU0ODRjZWNhLTY0MzUtNGE3Zi1iMTI1LTNkODJlNmIxMjAxNCZhcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d97d3f9a-7e1e-411b-a3fc-65fa08b9d784" + "032a228d-061a-4d48-b6d1-12630f498ba9" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ] }, "ResponseHeaders": { @@ -2405,13 +2405,13 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperation3Min;14995,Microsoft.Compute/GetOperation30Min;29989" + "Microsoft.Compute/GetOperation3Min;14994,Microsoft.Compute/GetOperation30Min;29992" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "75d23c83-c81e-42fe-98c5-958c760119b0" + "1d9861d8-19a6-4c5d-ac56-33076db63eb4" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -2421,16 +2421,16 @@ "11990" ], "x-ms-correlation-request-id": [ - "871f3ec9-241b-42c9-a039-340be55bdf46" + "5ef57225-43a1-4034-b224-24cd4113a040" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T235109Z:871f3ec9-241b-42c9-a039-340be55bdf46" + "JIOINDIAWEST:20220517T134159Z:5ef57225-43a1-4034-b224-24cd4113a040" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 24 Feb 2022 23:51:09 GMT" + "Tue, 17 May 2022 13:41:58 GMT" ], "Content-Length": [ "134" @@ -2442,23 +2442,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-02-24T18:50:07.8075561-05:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"9d32978d-93c3-4e10-b400-66295dc640b2\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2022-05-17T19:10:58.1197754+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"e781f04f-4d48-43c6-89aa-109a5725c7ae\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/southeastasia/operations/9d32978d-93c3-4e10-b400-66295dc640b2?p=34dc709c-01b2-42c4-84a2-256a9734610d&api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzlkMzI5NzhkLTkzYzMtNGUxMC1iNDAwLTY2Mjk1ZGM2NDBiMj9wPTM0ZGM3MDljLTAxYjItNDJjNC04NGEyLTI1NmE5NzM0NjEwZCZhcGktdmVyc2lvbj0yMDIxLTExLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Compute/locations/southeastasia/operations/e781f04f-4d48-43c6-89aa-109a5725c7ae?p=e484ceca-6435-4a7f-b125-3d82e6b12014&api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2U3ODFmMDRmLTRkNDgtNDNjNi04OWFhLTEwOWE1NzI1YzdhZT9wPWU0ODRjZWNhLTY0MzUtNGE3Zi1iMTI1LTNkODJlNmIxMjAxNCZhcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d97d3f9a-7e1e-411b-a3fc-65fa08b9d784" + "032a228d-061a-4d48-b6d1-12630f498ba9" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ] }, "ResponseHeaders": { @@ -2469,13 +2469,13 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperation3Min;14994,Microsoft.Compute/GetOperation30Min;29988" + "Microsoft.Compute/GetOperation3Min;14994,Microsoft.Compute/GetOperation30Min;29991" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "be5173b4-5873-42fc-a77d-c0e6326b65d8" + "2b582c1d-d699-4f08-b31a-0d735b231fc3" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -2485,16 +2485,16 @@ "11989" ], "x-ms-correlation-request-id": [ - "3b79ca62-f019-46dc-a4d1-c60744a4b54b" + "fbeb7bb6-d118-44a8-99de-2517fd0480c5" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T235139Z:3b79ca62-f019-46dc-a4d1-c60744a4b54b" + "JIOINDIAWEST:20220517T134229Z:fbeb7bb6-d118-44a8-99de-2517fd0480c5" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 24 Feb 2022 23:51:39 GMT" + "Tue, 17 May 2022 13:42:29 GMT" ], "Content-Length": [ "134" @@ -2506,23 +2506,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-02-24T18:50:07.8075561-05:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"9d32978d-93c3-4e10-b400-66295dc640b2\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2022-05-17T19:10:58.1197754+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"e781f04f-4d48-43c6-89aa-109a5725c7ae\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/southeastasia/operations/9d32978d-93c3-4e10-b400-66295dc640b2?p=34dc709c-01b2-42c4-84a2-256a9734610d&api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzlkMzI5NzhkLTkzYzMtNGUxMC1iNDAwLTY2Mjk1ZGM2NDBiMj9wPTM0ZGM3MDljLTAxYjItNDJjNC04NGEyLTI1NmE5NzM0NjEwZCZhcGktdmVyc2lvbj0yMDIxLTExLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Compute/locations/southeastasia/operations/e781f04f-4d48-43c6-89aa-109a5725c7ae?p=e484ceca-6435-4a7f-b125-3d82e6b12014&api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2U3ODFmMDRmLTRkNDgtNDNjNi04OWFhLTEwOWE1NzI1YzdhZT9wPWU0ODRjZWNhLTY0MzUtNGE3Zi1iMTI1LTNkODJlNmIxMjAxNCZhcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d97d3f9a-7e1e-411b-a3fc-65fa08b9d784" + "032a228d-061a-4d48-b6d1-12630f498ba9" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ] }, "ResponseHeaders": { @@ -2533,13 +2533,13 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperation3Min;14993,Microsoft.Compute/GetOperation30Min;29986" + "Microsoft.Compute/GetOperation3Min;14993,Microsoft.Compute/GetOperation30Min;29990" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "dfc6832f-19b4-45b6-b14a-33ccd6eaa63f" + "edbb53bd-4c44-4f4d-80c0-6a4bc941a395" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -2549,19 +2549,19 @@ "11988" ], "x-ms-correlation-request-id": [ - "85e6c40e-1d4c-4eac-9883-39657fa26af4" + "1cec89a6-aec7-4d20-bed5-b911f625ee9d" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T235210Z:85e6c40e-1d4c-4eac-9883-39657fa26af4" + "JIOINDIAWEST:20220517T134259Z:1cec89a6-aec7-4d20-bed5-b911f625ee9d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 24 Feb 2022 23:52:09 GMT" + "Tue, 17 May 2022 13:42:59 GMT" ], "Content-Length": [ - "184" + "134" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2570,23 +2570,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-02-24T18:50:07.8075561-05:00\",\r\n \"endTime\": \"2022-02-24T18:51:52.5742381-05:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"9d32978d-93c3-4e10-b400-66295dc640b2\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2022-05-17T19:10:58.1197754+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"e781f04f-4d48-43c6-89aa-109a5725c7ae\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG90564a6f/providers/Microsoft.Compute/virtualMachines/PSTestVM905640/extensions/BGInfo?api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTA1NjRhNmYvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy9QU1Rlc3RWTTkwNTY0MC9leHRlbnNpb25zL0JHSW5mbz9hcGktdmVyc2lvbj0yMDIxLTExLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Compute/locations/southeastasia/operations/e781f04f-4d48-43c6-89aa-109a5725c7ae?p=e484ceca-6435-4a7f-b125-3d82e6b12014&api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2U3ODFmMDRmLTRkNDgtNDNjNi04OWFhLTEwOWE1NzI1YzdhZT9wPWU0ODRjZWNhLTY0MzUtNGE3Zi1iMTI1LTNkODJlNmIxMjAxNCZhcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d97d3f9a-7e1e-411b-a3fc-65fa08b9d784" + "032a228d-061a-4d48-b6d1-12630f498ba9" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ] }, "ResponseHeaders": { @@ -2597,13 +2597,13 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/LowCostGet3Min;3994,Microsoft.Compute/LowCostGet30Min;31987" + "Microsoft.Compute/GetOperation3Min;14992,Microsoft.Compute/GetOperation30Min;29988" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "96499e69-72e9-4a96-9354-79b267677647" + "43c14214-8718-4c50-b06d-3543046bab24" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -2613,16 +2613,80 @@ "11987" ], "x-ms-correlation-request-id": [ - "1ca927fe-2804-4f2f-be0e-acf8f984d61a" + "d1a389a6-4968-42b1-b615-02f2421a5def" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220517T134330Z:d1a389a6-4968-42b1-b615-02f2421a5def" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 17 May 2022 13:43:30 GMT" + ], + "Content-Length": [ + "184" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2022-05-17T19:10:58.1197754+05:30\",\r\n \"endTime\": \"2022-05-17T19:13:17.4156036+05:30\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"e781f04f-4d48-43c6-89aa-109a5725c7ae\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGc96a93a6/providers/Microsoft.Compute/virtualMachines/PSTestVMc96a90/extensions/BGInfo?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYzk2YTkzYTYvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy9QU1Rlc3RWTWM5NmE5MC9leHRlbnNpb25zL0JHSW5mbz9hcGktdmVyc2lvbj0yMDIxLTExLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "032a228d-061a-4d48-b6d1-12630f498ba9" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/LowCostGet3Min;3988,Microsoft.Compute/LowCostGet30Min;31844" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "63610e41-669e-456b-aca4-5c8311d9d3cc" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11986" + ], + "x-ms-correlation-request-id": [ + "abab7ff4-7537-41cf-bebc-ad1a016b60d5" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T235210Z:1ca927fe-2804-4f2f-be0e-acf8f984d61a" + "JIOINDIAWEST:20220517T134330Z:abab7ff4-7537-41cf-bebc-ad1a016b60d5" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 24 Feb 2022 23:52:09 GMT" + "Tue, 17 May 2022 13:43:30 GMT" ], "Content-Length": [ "485" @@ -2634,23 +2698,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"BGInfo\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG90564a6f/providers/Microsoft.Compute/virtualMachines/PSTestVM905640/extensions/BGInfo\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"southeastasia\",\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}", + "ResponseBody": "{\r\n \"name\": \"BGInfo\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGc96a93a6/providers/Microsoft.Compute/virtualMachines/PSTestVMc96a90/extensions/BGInfo\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"BGInfo\",\r\n \"typeHandlerVersion\": \"2.2\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG90564a6f/providers/Microsoft.RecoveryServices/vaults/PSTestRSV90564a6f?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTA1NjRhNmYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5MDU2NGE2Zj9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGc96a93a6/providers/Microsoft.RecoveryServices/vaults/PSTestRSVc96a93a6?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYzk2YTkzYTYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZjOTZhOTNhNj9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6f9c1769-c90a-4b9c-8af8-9bf27fa112ca" + "9cfbb716-6719-41eb-93fb-b5c577f5af13" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesClient/4.3.2.0" @@ -2667,13 +2731,13 @@ "gateway" ], "x-ms-request-id": [ - "663f94f4-b5c6-472f-9d19-4168a1689469" + "2d862c00-1396-4026-aa1b-a6ff25244e9f" ], "x-ms-correlation-request-id": [ - "663f94f4-b5c6-472f-9d19-4168a1689469" + "2d862c00-1396-4026-aa1b-a6ff25244e9f" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T235213Z:663f94f4-b5c6-472f-9d19-4168a1689469" + "JIOINDIAWEST:20220517T134332Z:2d862c00-1396-4026-aa1b-a6ff25244e9f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2682,7 +2746,7 @@ "nosniff" ], "Date": [ - "Thu, 24 Feb 2022 23:52:13 GMT" + "Tue, 17 May 2022 13:43:31 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2694,23 +2758,23 @@ "239" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.RecoveryServices/vaults/PSTestRSV90564a6f' under resource group 'PSTestRG90564a6f' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.RecoveryServices/vaults/PSTestRSVc96a93a6' under resource group 'PSTestRGc96a93a6' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG90564a6f/providers/Microsoft.RecoveryServices/vaults/PSTestRSV90564a6f?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTA1NjRhNmYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5MDU2NGE2Zj9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGc96a93a6/providers/Microsoft.RecoveryServices/vaults/PSTestRSVc96a93a6?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYzk2YTkzYTYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZjOTZhOTNhNj9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "67e1eb65-dc8e-4709-a534-8111a0c3b824" + "3686a7d8-7d1f-4a00-93ba-fe3257b778a5" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesClient/4.3.2.0" @@ -2727,10 +2791,10 @@ "nosniff" ], "x-ms-request-id": [ - "925cdbac-48dd-40fc-8210-79fb87684d48" + "4bdeb0f6-dcb9-47d1-81d4-9d6ea3a6c78b" ], "x-ms-client-request-id": [ - "67e1eb65-dc8e-4709-a534-8111a0c3b824" + "3686a7d8-7d1f-4a00-93ba-fe3257b778a5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2742,16 +2806,16 @@ "11998" ], "x-ms-correlation-request-id": [ - "925cdbac-48dd-40fc-8210-79fb87684d48" + "4bdeb0f6-dcb9-47d1-81d4-9d6ea3a6c78b" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T235232Z:925cdbac-48dd-40fc-8210-79fb87684d48" + "JIOINDIAWEST:20220517T134405Z:4bdeb0f6-dcb9-47d1-81d4-9d6ea3a6c78b" ], "Date": [ - "Thu, 24 Feb 2022 23:52:32 GMT" + "Tue, 17 May 2022 13:44:05 GMT" ], "Content-Length": [ - "466" + "518" ], "Content-Type": [ "application/json" @@ -2760,23 +2824,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"location\": \"southeastasia\",\r\n \"name\": \"PSTestRSV90564a6f\",\r\n \"etag\": \"W/\\\"datetime'2022-02-24T23%3A52%3A22.0164647Z'\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateEndpointStateForBackup\": \"None\",\r\n \"privateEndpointStateForSiteRecovery\": \"None\"\r\n },\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG90564a6f/providers/Microsoft.RecoveryServices/vaults/PSTestRSV90564a6f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"location\": \"southeastasia\",\r\n \"name\": \"PSTestRSVc96a93a6\",\r\n \"etag\": \"W/\\\"datetime'2022-05-17T13%3A43%3A55.5435596Z'\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateEndpointStateForBackup\": \"None\",\r\n \"privateEndpointStateForSiteRecovery\": \"None\",\r\n \"networkSettings\": {\r\n \"publicNetworkAccess\": \"Enabled\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGc96a93a6/providers/Microsoft.RecoveryServices/vaults/PSTestRSVc96a93a6\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG90564a6f/providers/Microsoft.RecoveryServices/vaults/PSTestRSV90564a6f?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTA1NjRhNmYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5MDU2NGE2Zj9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGc96a93a6/providers/Microsoft.RecoveryServices/vaults/PSTestRSVc96a93a6?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYzk2YTkzYTYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZjOTZhOTNhNj9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"southeastasia\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "61e0fbf4-e19f-4d2c-9429-596842b6e696" + "b614fdff-5530-4b8a-beb8-fd08ad4e3958" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesClient/4.3.2.0" @@ -2799,10 +2863,10 @@ "nosniff" ], "x-ms-request-id": [ - "1eef717a-74a6-43ac-a4bc-f18497564dc5" + "4ad4b145-7bc8-4dd1-89ad-12441e87e4d6" ], "x-ms-client-request-id": [ - "61e0fbf4-e19f-4d2c-9429-596842b6e696" + "b614fdff-5530-4b8a-beb8-fd08ad4e3958" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2814,16 +2878,16 @@ "209" ], "x-ms-correlation-request-id": [ - "1eef717a-74a6-43ac-a4bc-f18497564dc5" + "4ad4b145-7bc8-4dd1-89ad-12441e87e4d6" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T235223Z:1eef717a-74a6-43ac-a4bc-f18497564dc5" + "JIOINDIAWEST:20220517T134356Z:4ad4b145-7bc8-4dd1-89ad-12441e87e4d6" ], "Date": [ - "Thu, 24 Feb 2022 23:52:23 GMT" + "Tue, 17 May 2022 13:43:55 GMT" ], "Content-Length": [ - "466" + "518" ], "Content-Type": [ "application/json" @@ -2832,26 +2896,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"location\": \"southeastasia\",\r\n \"name\": \"PSTestRSV90564a6f\",\r\n \"etag\": \"W/\\\"datetime'2022-02-24T23%3A52%3A22.0164647Z'\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateEndpointStateForBackup\": \"None\",\r\n \"privateEndpointStateForSiteRecovery\": \"None\"\r\n },\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG90564a6f/providers/Microsoft.RecoveryServices/vaults/PSTestRSV90564a6f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"location\": \"southeastasia\",\r\n \"name\": \"PSTestRSVc96a93a6\",\r\n \"etag\": \"W/\\\"datetime'2022-05-17T13%3A43%3A55.5105713Z'\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateEndpointStateForBackup\": \"None\",\r\n \"privateEndpointStateForSiteRecovery\": \"None\",\r\n \"networkSettings\": {\r\n \"publicNetworkAccess\": \"Enabled\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGc96a93a6/providers/Microsoft.RecoveryServices/vaults/PSTestRSVc96a93a6\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG90564a6f/providers/Microsoft.RecoveryServices/vaults/PSTestRSV90564a6f/backupconfig/vaultconfig?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTA1NjRhNmYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5MDU2NGE2Zi9iYWNrdXBjb25maWcvdmF1bHRjb25maWc/YXBpLXZlcnNpb249MjAyMS0xMC0wMQ==", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGc96a93a6/providers/Microsoft.RecoveryServices/vaults/PSTestRSVc96a93a6/backupconfig/vaultconfig?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYzk2YTkzYTYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZjOTZhOTNhNi9iYWNrdXBjb25maWcvdmF1bHRjb25maWc/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e909a6cc-1fd6-4825-959d-135e0d187014" + "795d48dc-d5db-4786-b22e-679ad716a737" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -2865,15 +2929,14 @@ "nosniff" ], "x-ms-request-id": [ - "9829b60f-eaa0-4c26-b88d-6a9ec2ec46d9" - ], - "x-ms-client-request-id": [ - "e909a6cc-1fd6-4825-959d-135e0d187014", - "e909a6cc-1fd6-4825-959d-135e0d187014" + "" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-client-request-id": [ + "795d48dc-d5db-4786-b22e-679ad716a737" + ], "Server": [ "Microsoft-IIS/10.0" ], @@ -2884,13 +2947,13 @@ "149" ], "x-ms-correlation-request-id": [ - "9829b60f-eaa0-4c26-b88d-6a9ec2ec46d9" + "d23e05e3-4071-4722-81f1-60c06032bbfa" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T235225Z:9829b60f-eaa0-4c26-b88d-6a9ec2ec46d9" + "JIOINDIAWEST:20220517T134358Z:d23e05e3-4071-4722-81f1-60c06032bbfa" ], "Date": [ - "Thu, 24 Feb 2022 23:52:25 GMT" + "Tue, 17 May 2022 13:43:57 GMT" ], "Content-Length": [ "380" @@ -2902,32 +2965,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG90564a6f/providers/Microsoft.RecoveryServices/vaults/PSTestRSV90564a6f/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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGc96a93a6/providers/Microsoft.RecoveryServices/vaults/PSTestRSVc96a93a6/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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG90564a6f/providers/Microsoft.RecoveryServices/vaults/PSTestRSV90564a6f/backupconfig/vaultconfig?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTA1NjRhNmYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5MDU2NGE2Zi9iYWNrdXBjb25maWcvdmF1bHRjb25maWc/YXBpLXZlcnNpb249MjAyMS0xMC0wMQ==", - "RequestMethod": "PATCH", - "RequestBody": "{\r\n \"properties\": {\r\n \"enhancedSecurityState\": \"Enabled\",\r\n \"softDeleteFeatureState\": \"Disabled\"\r\n }\r\n}", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGc96a93a6/providers/Microsoft.RecoveryServices/vaults/PSTestRSVc96a93a6/backupResourceGuardProxies?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYzk2YTkzYTYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZjOTZhOTNhNi9iYWNrdXBSZXNvdXJjZUd1YXJkUHJveGllcz9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e909a6cc-1fd6-4825-959d-135e0d187014" + "795d48dc-d5db-4786-b22e-679ad716a737" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "111" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -2941,11 +2998,11 @@ "nosniff" ], "x-ms-request-id": [ - "d7b731d6-c7bd-43e5-bf07-c21f4bcb81d4" + "30aa64a5-1b0f-4352-8fa5-d6a954880643" ], "x-ms-client-request-id": [ - "e909a6cc-1fd6-4825-959d-135e0d187014", - "e909a6cc-1fd6-4825-959d-135e0d187014" + "795d48dc-d5db-4786-b22e-679ad716a737", + "795d48dc-d5db-4786-b22e-679ad716a737" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2956,20 +3013,20 @@ "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" ], "x-ms-correlation-request-id": [ - "d7b731d6-c7bd-43e5-bf07-c21f4bcb81d4" + "30aa64a5-1b0f-4352-8fa5-d6a954880643" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T235227Z:d7b731d6-c7bd-43e5-bf07-c21f4bcb81d4" + "JIOINDIAWEST:20220517T134358Z:30aa64a5-1b0f-4352-8fa5-d6a954880643" ], "Date": [ - "Thu, 24 Feb 2022 23:52:27 GMT" + "Tue, 17 May 2022 13:43:57 GMT" ], "Content-Length": [ - "381" + "12" ], "Content-Type": [ "application/json" @@ -2978,26 +3035,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG90564a6f/providers/Microsoft.RecoveryServices/vaults/PSTestRSV90564a6f/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}", + "ResponseBody": "{\r\n \"value\": []\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG90564a6f/providers/Microsoft.RecoveryServices/vaults/PSTestRSV90564a6f/backupPolicies/DefaultPolicy?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTA1NjRhNmYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5MDU2NGE2Zi9iYWNrdXBQb2xpY2llcy9EZWZhdWx0UG9saWN5P2FwaS12ZXJzaW9uPTIwMjEtMTAtMDE=", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGc96a93a6/providers/Microsoft.RecoveryServices/vaults/PSTestRSVc96a93a6/backupResourceGuardProxies?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYzk2YTkzYTYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZjOTZhOTNhNi9iYWNrdXBSZXNvdXJjZUd1YXJkUHJveGllcz9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "74cb5607-6e90-40bf-ae5c-bd0cd3fad356" + "d17f348c-fd39-49cc-956d-8d37a493a662" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -3011,11 +3068,11 @@ "nosniff" ], "x-ms-request-id": [ - "3446467a-e2fd-48ce-bef2-ff42fd39ca11" + "5273045a-d910-4e7d-985a-c2e091eecec1" ], "x-ms-client-request-id": [ - "74cb5607-6e90-40bf-ae5c-bd0cd3fad356", - "74cb5607-6e90-40bf-ae5c-bd0cd3fad356" + "d17f348c-fd39-49cc-956d-8d37a493a662", + "d17f348c-fd39-49cc-956d-8d37a493a662" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3026,20 +3083,20 @@ "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "149" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" ], "x-ms-correlation-request-id": [ - "3446467a-e2fd-48ce-bef2-ff42fd39ca11" + "5273045a-d910-4e7d-985a-c2e091eecec1" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T235233Z:3446467a-e2fd-48ce-bef2-ff42fd39ca11" + "JIOINDIAWEST:20220517T134523Z:5273045a-d910-4e7d-985a-c2e091eecec1" ], "Date": [ - "Thu, 24 Feb 2022 23:52:33 GMT" + "Tue, 17 May 2022 13:45:22 GMT" ], "Content-Length": [ - "762" + "12" ], "Content-Type": [ "application/json" @@ -3048,26 +3105,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG90564a6f/providers/Microsoft.RecoveryServices/vaults/PSTestRSV90564a6f/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 \"2022-02-25T09: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 \"2022-02-25T09:30:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 30,\r\n \"durationType\": \"Days\"\r\n }\r\n }\r\n },\r\n \"instantRpRetentionRangeInDays\": 2,\r\n \"timeZone\": \"UTC\",\r\n \"protectedItemsCount\": 0\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": []\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG90564a6f/providers/Microsoft.RecoveryServices/vaults/PSTestRSV90564a6f/backupProtectableItems?$filter=backupManagementType%20eq%20'AzureIaasVM'&api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTA1NjRhNmYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5MDU2NGE2Zi9iYWNrdXBQcm90ZWN0YWJsZUl0ZW1zPyRmaWx0ZXI9YmFja3VwTWFuYWdlbWVudFR5cGUlMjBlcSUyMCdBenVyZUlhYXNWTScmYXBpLXZlcnNpb249MjAyMS0xMC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGc96a93a6/providers/Microsoft.RecoveryServices/vaults/PSTestRSVc96a93a6/backupconfig/vaultconfig?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYzk2YTkzYTYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZjOTZhOTNhNi9iYWNrdXBjb25maWcvdmF1bHRjb25maWc/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "PATCH", + "RequestBody": "{\r\n \"properties\": {\r\n \"enhancedSecurityState\": \"Enabled\",\r\n \"softDeleteFeatureState\": \"Disabled\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "fff12bdc-822a-4708-b839-6ca816e75b72" + "795d48dc-d5db-4786-b22e-679ad716a737" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "111" ] }, "ResponseHeaders": { @@ -3081,11 +3144,11 @@ "nosniff" ], "x-ms-request-id": [ - "96e9f963-bfd2-4b82-b03e-87e1dcd58e71" + "18097131-6298-4b87-924e-0a22eb50c4e5" ], "x-ms-client-request-id": [ - "fff12bdc-822a-4708-b839-6ca816e75b72", - "fff12bdc-822a-4708-b839-6ca816e75b72" + "795d48dc-d5db-4786-b22e-679ad716a737", + "795d48dc-d5db-4786-b22e-679ad716a737" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3096,20 +3159,20 @@ "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "149" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" ], "x-ms-correlation-request-id": [ - "96e9f963-bfd2-4b82-b03e-87e1dcd58e71" + "18097131-6298-4b87-924e-0a22eb50c4e5" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T235234Z:96e9f963-bfd2-4b82-b03e-87e1dcd58e71" + "JIOINDIAWEST:20220517T134400Z:18097131-6298-4b87-924e-0a22eb50c4e5" ], "Date": [ - "Thu, 24 Feb 2022 23:52:33 GMT" + "Tue, 17 May 2022 13:44:00 GMT" ], "Content-Length": [ - "905" + "381" ], "Content-Type": [ "application/json" @@ -3118,32 +3181,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG90564a6f/providers/Microsoft.RecoveryServices/vaults/PSTestRSV90564a6f/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrg90564a6f;pstestvm905640/protectableItems/vm;iaasvmcontainerv2;pstestrg90564a6f;pstestvm905640\",\r\n \"name\": \"iaasvmcontainerv2;pstestrg90564a6f;pstestvm905640\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems\",\r\n \"properties\": {\r\n \"virtualMachineId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG90564a6f/providers/Microsoft.Compute/virtualMachines/PSTestVM905640\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"resourceGroup\": \"PSTestRG90564a6f\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"protectableItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"friendlyName\": \"PSTestVM905640\",\r\n \"protectionState\": \"NotProtected\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGc96a93a6/providers/Microsoft.RecoveryServices/vaults/PSTestRSVc96a93a6/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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG90564a6f/providers/Microsoft.RecoveryServices/vaults/PSTestRSV90564a6f/backupFabrics/Azure/protectionContainers/IaasVMContainer%3Biaasvmcontainerv2%3Bpstestrg90564a6f%3Bpstestvm905640/protectedItems/vm%3Biaasvmcontainerv2%3Bpstestrg90564a6f%3Bpstestvm905640?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTA1NjRhNmYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5MDU2NGE2Zi9iYWNrdXBGYWJyaWNzL0F6dXJlL3Byb3RlY3Rpb25Db250YWluZXJzL0lhYXNWTUNvbnRhaW5lciUzQmlhYXN2bWNvbnRhaW5lcnYyJTNCcHN0ZXN0cmc5MDU2NGE2ZiUzQnBzdGVzdHZtOTA1NjQwL3Byb3RlY3RlZEl0ZW1zL3ZtJTNCaWFhc3ZtY29udGFpbmVydjIlM0Jwc3Rlc3RyZzkwNTY0YTZmJTNCcHN0ZXN0dm05MDU2NDA/YXBpLXZlcnNpb249MjAyMS0xMC0wMQ==", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"protectedItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"sourceResourceId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG90564a6f/providers/Microsoft.Compute/virtualMachines/PSTestVM905640\",\r\n \"policyId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG90564a6f/providers/Microsoft.RecoveryServices/vaults/PSTestRSV90564a6f/backupPolicies/DefaultPolicy\"\r\n }\r\n}", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGc96a93a6/providers/Microsoft.RecoveryServices/vaults/PSTestRSVc96a93a6/backupPolicies/DefaultPolicy?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYzk2YTkzYTYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZjOTZhOTNhNi9iYWNrdXBQb2xpY2llcy9EZWZhdWx0UG9saWN5P2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fff12bdc-822a-4708-b839-6ca816e75b72" + "c78af624-4fb7-43ea-9839-544dc5cf02b2" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "456" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -3153,70 +3210,67 @@ "Pragma": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG90564a6f/providers/Microsoft.RecoveryServices/vaults/PSTestRSV90564a6f/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrg90564a6f;pstestvm905640/protectedItems/vm;iaasvmcontainerv2;pstestrg90564a6f;pstestvm905640/operationResults/60557d33-ad2b-4119-bdba-adfea0ab0394?api-version=2021-10-01" - ], - "Retry-After": [ - "60" - ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG90564a6f/providers/Microsoft.RecoveryServices/vaults/PSTestRSV90564a6f/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrg90564a6f;pstestvm905640/protectedItems/vm;iaasvmcontainerv2;pstestrg90564a6f;pstestvm905640/operationsStatus/60557d33-ad2b-4119-bdba-adfea0ab0394?api-version=2021-10-01" - ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "ed4b49a2-46b9-4d67-a7a8-dbc4ae338457" + "65c9425e-da04-496d-be8c-7f3fd55223a6" ], "x-ms-client-request-id": [ - "fff12bdc-822a-4708-b839-6ca816e75b72", - "fff12bdc-822a-4708-b839-6ca816e75b72" + "c78af624-4fb7-43ea-9839-544dc5cf02b2", + "c78af624-4fb7-43ea-9839-544dc5cf02b2" ], "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-ratelimit-remaining-subscription-resource-requests": [ + "149" ], "x-ms-correlation-request-id": [ - "ed4b49a2-46b9-4d67-a7a8-dbc4ae338457" + "65c9425e-da04-496d-be8c-7f3fd55223a6" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T235235Z:ed4b49a2-46b9-4d67-a7a8-dbc4ae338457" + "JIOINDIAWEST:20220517T134406Z:65c9425e-da04-496d-be8c-7f3fd55223a6" ], "Date": [ - "Thu, 24 Feb 2022 23:52:34 GMT" + "Tue, 17 May 2022 13:44:06 GMT" + ], + "Content-Length": [ + "762" + ], + "Content-Type": [ + "application/json" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, - "ResponseBody": "", - "StatusCode": 202 + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGc96a93a6/providers/Microsoft.RecoveryServices/vaults/PSTestRSVc96a93a6/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 \"2022-05-17T23: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 \"2022-05-17T23:30:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 30,\r\n \"durationType\": \"Days\"\r\n }\r\n }\r\n },\r\n \"instantRpRetentionRangeInDays\": 2,\r\n \"timeZone\": \"UTC\",\r\n \"protectedItemsCount\": 0\r\n }\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG90564a6f/providers/Microsoft.RecoveryServices/vaults/PSTestRSV90564a6f/backupOperations/60557d33-ad2b-4119-bdba-adfea0ab0394?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTA1NjRhNmYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5MDU2NGE2Zi9iYWNrdXBPcGVyYXRpb25zLzYwNTU3ZDMzLWFkMmItNDExOS1iZGJhLWFkZmVhMGFiMDM5ND9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGc96a93a6/providers/Microsoft.RecoveryServices/vaults/PSTestRSVc96a93a6/backupProtectableItems?$filter=backupManagementType%20eq%20'AzureIaasVM'&api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYzk2YTkzYTYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZjOTZhOTNhNi9iYWNrdXBQcm90ZWN0YWJsZUl0ZW1zPyRmaWx0ZXI9YmFja3VwTWFuYWdlbWVudFR5cGUlMjBlcSUyMCdBenVyZUlhYXNWTScmYXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fff12bdc-822a-4708-b839-6ca816e75b72" + "632ce356-d012-4dc9-aa99-72f430f17103" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -3230,11 +3284,11 @@ "nosniff" ], "x-ms-request-id": [ - "70a2c3e0-80c9-4790-91f8-f21a66d32a7a" + "67784cbb-7b0a-45d6-a80a-1a658f311d88" ], "x-ms-client-request-id": [ - "fff12bdc-822a-4708-b839-6ca816e75b72", - "fff12bdc-822a-4708-b839-6ca816e75b72" + "632ce356-d012-4dc9-aa99-72f430f17103", + "632ce356-d012-4dc9-aa99-72f430f17103" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3249,16 +3303,16 @@ "149" ], "x-ms-correlation-request-id": [ - "70a2c3e0-80c9-4790-91f8-f21a66d32a7a" + "67784cbb-7b0a-45d6-a80a-1a658f311d88" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T235235Z:70a2c3e0-80c9-4790-91f8-f21a66d32a7a" + "JIOINDIAWEST:20220517T134407Z:67784cbb-7b0a-45d6-a80a-1a658f311d88" ], "Date": [ - "Thu, 24 Feb 2022 23:52:35 GMT" + "Tue, 17 May 2022 13:44:06 GMT" ], "Content-Length": [ - "188" + "7033" ], "Content-Type": [ "application/json" @@ -3267,26 +3321,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"60557d33-ad2b-4119-bdba-adfea0ab0394\",\r\n \"name\": \"60557d33-ad2b-4119-bdba-adfea0ab0394\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-24T23:52:34.9671825Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGc96a93a6/providers/Microsoft.RecoveryServices/vaults/PSTestRSVc96a93a6/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;akneema;akneema-hana-vm/protectableItems/vm;iaasvmcontainerv2;akneema;akneema-hana-vm\",\r\n \"name\": \"iaasvmcontainerv2;akneema;akneema-hana-vm\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems\",\r\n \"properties\": {\r\n \"virtualMachineId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/akneema/providers/Microsoft.Compute/virtualMachines/akneema-hana-vm\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"resourceGroup\": \"akneema\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"protectableItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"friendlyName\": \"akneema-hana-vm\",\r\n \"protectionState\": \"NotProtected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGc96a93a6/providers/Microsoft.RecoveryServices/vaults/PSTestRSVc96a93a6/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;containerautoprotection;shrja-2019/protectableItems/vm;iaasvmcontainerv2;containerautoprotection;shrja-2019\",\r\n \"name\": \"iaasvmcontainerv2;containerautoprotection;shrja-2019\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems\",\r\n \"properties\": {\r\n \"virtualMachineId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/ContainerAutoProtection/providers/Microsoft.Compute/virtualMachines/shrja-2019\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"resourceGroup\": \"ContainerAutoProtection\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"protectableItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"friendlyName\": \"shrja-2019\",\r\n \"protectionState\": \"NotProtected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGc96a93a6/providers/Microsoft.RecoveryServices/vaults/PSTestRSVc96a93a6/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrgc96a93a6;pstestvmc96a90/protectableItems/vm;iaasvmcontainerv2;pstestrgc96a93a6;pstestvmc96a90\",\r\n \"name\": \"iaasvmcontainerv2;pstestrgc96a93a6;pstestvmc96a90\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems\",\r\n \"properties\": {\r\n \"virtualMachineId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGc96a93a6/providers/Microsoft.Compute/virtualMachines/PSTestVMc96a90\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"resourceGroup\": \"PSTestRGc96a93a6\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"protectableItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"friendlyName\": \"PSTestVMc96a90\",\r\n \"protectionState\": \"NotProtected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGc96a93a6/providers/Microsoft.RecoveryServices/vaults/PSTestRSVc96a93a6/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestwlrg1bca8;pstestwlvm1bca8/protectableItems/vm;iaasvmcontainerv2;pstestwlrg1bca8;pstestwlvm1bca8\",\r\n \"name\": \"iaasvmcontainerv2;pstestwlrg1bca8;pstestwlvm1bca8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems\",\r\n \"properties\": {\r\n \"virtualMachineId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/pstestwlRG1bca8/providers/Microsoft.Compute/virtualMachines/pstestwlvm1bca8\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"resourceGroup\": \"pstestwlRG1bca8\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"protectableItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"friendlyName\": \"pstestwlvm1bca8\",\r\n \"protectionState\": \"NotProtected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGc96a93a6/providers/Microsoft.RecoveryServices/vaults/PSTestRSVc96a93a6/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;shrja2008_group;shrja2008/protectableItems/vm;iaasvmcontainerv2;shrja2008_group;shrja2008\",\r\n \"name\": \"iaasvmcontainerv2;shrja2008_group;shrja2008\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems\",\r\n \"properties\": {\r\n \"virtualMachineId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/shrja2008_group/providers/Microsoft.Compute/virtualMachines/shrja2008\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"resourceGroup\": \"shrja2008_group\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"protectableItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"friendlyName\": \"shrja2008\",\r\n \"protectionState\": \"NotProtected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGc96a93a6/providers/Microsoft.RecoveryServices/vaults/PSTestRSVc96a93a6/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;shswain-rg-donotuse;dsdsdsad/protectableItems/vm;iaasvmcontainerv2;shswain-rg-donotuse;dsdsdsad\",\r\n \"name\": \"iaasvmcontainerv2;shswain-rg-donotuse;dsdsdsad\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems\",\r\n \"properties\": {\r\n \"virtualMachineId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/shswain-rg-donotuse/providers/Microsoft.Compute/virtualMachines/dsdsdsad\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"resourceGroup\": \"shswain-rg-donotuse\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"protectableItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"friendlyName\": \"dsdsdsad\",\r\n \"protectionState\": \"NotProtected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGc96a93a6/providers/Microsoft.RecoveryServices/vaults/PSTestRSVc96a93a6/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;shswain-rg-donotuse;iumjjkuui/protectableItems/vm;iaasvmcontainerv2;shswain-rg-donotuse;iumjjkuui\",\r\n \"name\": \"iaasvmcontainerv2;shswain-rg-donotuse;iumjjkuui\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems\",\r\n \"properties\": {\r\n \"virtualMachineId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/shswain-rg-donotuse/providers/Microsoft.Compute/virtualMachines/iumjjkuui\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"resourceGroup\": \"shswain-rg-donotuse\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"protectableItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"friendlyName\": \"iumjjkuui\",\r\n \"protectionState\": \"NotProtected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGc96a93a6/providers/Microsoft.RecoveryServices/vaults/PSTestRSVc96a93a6/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;sisi-rsv;sisi-mercury/protectableItems/vm;iaasvmcontainerv2;sisi-rsv;sisi-mercury\",\r\n \"name\": \"iaasvmcontainerv2;sisi-rsv;sisi-mercury\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems\",\r\n \"properties\": {\r\n \"virtualMachineId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/sisi-RSV/providers/Microsoft.Compute/virtualMachines/sisi-mercury\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"resourceGroup\": \"sisi-RSV\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"protectableItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"friendlyName\": \"sisi-mercury\",\r\n \"protectionState\": \"NotProtected\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG90564a6f/providers/Microsoft.RecoveryServices/vaults/PSTestRSV90564a6f/backupOperations/60557d33-ad2b-4119-bdba-adfea0ab0394?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTA1NjRhNmYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5MDU2NGE2Zi9iYWNrdXBPcGVyYXRpb25zLzYwNTU3ZDMzLWFkMmItNDExOS1iZGJhLWFkZmVhMGFiMDM5ND9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGc96a93a6/providers/Microsoft.RecoveryServices/vaults/PSTestRSVc96a93a6/backupFabrics/Azure/protectionContainers/IaasVMContainer%3Biaasvmcontainerv2%3Bpstestrgc96a93a6%3Bpstestvmc96a90/protectedItems/vm%3Biaasvmcontainerv2%3Bpstestrgc96a93a6%3Bpstestvmc96a90?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYzk2YTkzYTYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZjOTZhOTNhNi9iYWNrdXBGYWJyaWNzL0F6dXJlL3Byb3RlY3Rpb25Db250YWluZXJzL0lhYXNWTUNvbnRhaW5lciUzQmlhYXN2bWNvbnRhaW5lcnYyJTNCcHN0ZXN0cmdjOTZhOTNhNiUzQnBzdGVzdHZtYzk2YTkwL3Byb3RlY3RlZEl0ZW1zL3ZtJTNCaWFhc3ZtY29udGFpbmVydjIlM0Jwc3Rlc3RyZ2M5NmE5M2E2JTNCcHN0ZXN0dm1jOTZhOTA/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"protectedItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"sourceResourceId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGc96a93a6/providers/Microsoft.Compute/virtualMachines/PSTestVMc96a90\",\r\n \"policyId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGc96a93a6/providers/Microsoft.RecoveryServices/vaults/PSTestRSVc96a93a6/backupPolicies/DefaultPolicy\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "fff12bdc-822a-4708-b839-6ca816e75b72" + "632ce356-d012-4dc9-aa99-72f430f17103" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "456" ] }, "ResponseHeaders": { @@ -3296,67 +3356,70 @@ "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGc96a93a6/providers/Microsoft.RecoveryServices/vaults/PSTestRSVc96a93a6/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrgc96a93a6;pstestvmc96a90/protectedItems/vm;iaasvmcontainerv2;pstestrgc96a93a6;pstestvmc96a90/operationResults/c351d351-869c-49b7-b9ff-012f3f19f4e6?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGc96a93a6/providers/Microsoft.RecoveryServices/vaults/PSTestRSVc96a93a6/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrgc96a93a6;pstestvmc96a90/protectedItems/vm;iaasvmcontainerv2;pstestrgc96a93a6;pstestvmc96a90/operationsStatus/c351d351-869c-49b7-b9ff-012f3f19f4e6?api-version=2022-02-01" + ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "71ecce8f-2deb-47b9-88f3-e9a872854f02" + "7e8b3bbc-e2a7-43eb-b00c-a4a9c8a10fff" ], "x-ms-client-request-id": [ - "fff12bdc-822a-4708-b839-6ca816e75b72", - "fff12bdc-822a-4708-b839-6ca816e75b72" + "632ce356-d012-4dc9-aa99-72f430f17103", + "632ce356-d012-4dc9-aa99-72f430f17103" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Server": [ - "Microsoft-IIS/10.0" - ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "148" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" ], "x-ms-correlation-request-id": [ - "71ecce8f-2deb-47b9-88f3-e9a872854f02" + "7e8b3bbc-e2a7-43eb-b00c-a4a9c8a10fff" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T235246Z:71ecce8f-2deb-47b9-88f3-e9a872854f02" + "JIOINDIAWEST:20220517T134408Z:7e8b3bbc-e2a7-43eb-b00c-a4a9c8a10fff" ], "Date": [ - "Thu, 24 Feb 2022 23:52:45 GMT" - ], - "Content-Length": [ - "188" - ], - "Content-Type": [ - "application/json" + "Tue, 17 May 2022 13:44:07 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, - "ResponseBody": "{\r\n \"id\": \"60557d33-ad2b-4119-bdba-adfea0ab0394\",\r\n \"name\": \"60557d33-ad2b-4119-bdba-adfea0ab0394\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-24T23:52:34.9671825Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", - "StatusCode": 200 + "ResponseBody": "", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG90564a6f/providers/Microsoft.RecoveryServices/vaults/PSTestRSV90564a6f/backupOperations/60557d33-ad2b-4119-bdba-adfea0ab0394?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTA1NjRhNmYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5MDU2NGE2Zi9iYWNrdXBPcGVyYXRpb25zLzYwNTU3ZDMzLWFkMmItNDExOS1iZGJhLWFkZmVhMGFiMDM5ND9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGc96a93a6/providers/Microsoft.RecoveryServices/vaults/PSTestRSVc96a93a6/backupOperations/c351d351-869c-49b7-b9ff-012f3f19f4e6?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYzk2YTkzYTYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZjOTZhOTNhNi9iYWNrdXBPcGVyYXRpb25zL2MzNTFkMzUxLTg2OWMtNDliNy1iOWZmLTAxMmYzZjE5ZjRlNj9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fff12bdc-822a-4708-b839-6ca816e75b72" + "632ce356-d012-4dc9-aa99-72f430f17103" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -3370,11 +3433,11 @@ "nosniff" ], "x-ms-request-id": [ - "3c7f6701-816f-4ac6-9abf-7fccc159db6a" + "faea21c2-f530-4ba9-b5f4-2735bdea1658" ], "x-ms-client-request-id": [ - "fff12bdc-822a-4708-b839-6ca816e75b72", - "fff12bdc-822a-4708-b839-6ca816e75b72" + "632ce356-d012-4dc9-aa99-72f430f17103", + "632ce356-d012-4dc9-aa99-72f430f17103" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3386,19 +3449,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "147" + "149" ], "x-ms-correlation-request-id": [ - "3c7f6701-816f-4ac6-9abf-7fccc159db6a" + "faea21c2-f530-4ba9-b5f4-2735bdea1658" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T235315Z:3c7f6701-816f-4ac6-9abf-7fccc159db6a" + "JIOINDIAWEST:20220517T134408Z:faea21c2-f530-4ba9-b5f4-2735bdea1658" ], "Date": [ - "Thu, 24 Feb 2022 23:53:15 GMT" + "Tue, 17 May 2022 13:44:08 GMT" ], "Content-Length": [ - "304" + "188" ], "Content-Type": [ "application/json" @@ -3407,26 +3470,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"60557d33-ad2b-4119-bdba-adfea0ab0394\",\r\n \"name\": \"60557d33-ad2b-4119-bdba-adfea0ab0394\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-02-24T23:52:34.9671825Z\",\r\n \"endTime\": \"2022-02-24T23:52:34.9671825Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"05a02788-611b-4257-90e0-0038b845b490\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"c351d351-869c-49b7-b9ff-012f3f19f4e6\",\r\n \"name\": \"c351d351-869c-49b7-b9ff-012f3f19f4e6\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T13:44:07.8770216Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG90564a6f/providers/Microsoft.RecoveryServices/vaults/PSTestRSV90564a6f/backupOperations/60557d33-ad2b-4119-bdba-adfea0ab0394?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTA1NjRhNmYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5MDU2NGE2Zi9iYWNrdXBPcGVyYXRpb25zLzYwNTU3ZDMzLWFkMmItNDExOS1iZGJhLWFkZmVhMGFiMDM5ND9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGc96a93a6/providers/Microsoft.RecoveryServices/vaults/PSTestRSVc96a93a6/backupOperations/c351d351-869c-49b7-b9ff-012f3f19f4e6?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYzk2YTkzYTYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZjOTZhOTNhNi9iYWNrdXBPcGVyYXRpb25zL2MzNTFkMzUxLTg2OWMtNDliNy1iOWZmLTAxMmYzZjE5ZjRlNj9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fff12bdc-822a-4708-b839-6ca816e75b72" + "632ce356-d012-4dc9-aa99-72f430f17103" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -3440,11 +3503,11 @@ "nosniff" ], "x-ms-request-id": [ - "6090ef49-e9bf-498e-acf9-659d126e357c" + "85d6926a-3f06-411a-afeb-b0c618d5b578" ], "x-ms-client-request-id": [ - "fff12bdc-822a-4708-b839-6ca816e75b72", - "fff12bdc-822a-4708-b839-6ca816e75b72" + "632ce356-d012-4dc9-aa99-72f430f17103", + "632ce356-d012-4dc9-aa99-72f430f17103" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3456,19 +3519,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "146" + "148" ], "x-ms-correlation-request-id": [ - "6090ef49-e9bf-498e-acf9-659d126e357c" + "85d6926a-3f06-411a-afeb-b0c618d5b578" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T235318Z:6090ef49-e9bf-498e-acf9-659d126e357c" + "JIOINDIAWEST:20220517T134414Z:85d6926a-3f06-411a-afeb-b0c618d5b578" ], "Date": [ - "Thu, 24 Feb 2022 23:53:17 GMT" + "Tue, 17 May 2022 13:44:13 GMT" ], "Content-Length": [ - "304" + "188" ], "Content-Type": [ "application/json" @@ -3477,26 +3540,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"60557d33-ad2b-4119-bdba-adfea0ab0394\",\r\n \"name\": \"60557d33-ad2b-4119-bdba-adfea0ab0394\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-02-24T23:52:34.9671825Z\",\r\n \"endTime\": \"2022-02-24T23:52:34.9671825Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"05a02788-611b-4257-90e0-0038b845b490\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"c351d351-869c-49b7-b9ff-012f3f19f4e6\",\r\n \"name\": \"c351d351-869c-49b7-b9ff-012f3f19f4e6\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T13:44:07.8770216Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG90564a6f/providers/Microsoft.RecoveryServices/vaults/PSTestRSV90564a6f/backupJobs/05a02788-611b-4257-90e0-0038b845b490?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTA1NjRhNmYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5MDU2NGE2Zi9iYWNrdXBKb2JzLzA1YTAyNzg4LTYxMWItNDI1Ny05MGUwLTAwMzhiODQ1YjQ5MD9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGc96a93a6/providers/Microsoft.RecoveryServices/vaults/PSTestRSVc96a93a6/backupOperations/c351d351-869c-49b7-b9ff-012f3f19f4e6?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYzk2YTkzYTYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZjOTZhOTNhNi9iYWNrdXBPcGVyYXRpb25zL2MzNTFkMzUxLTg2OWMtNDliNy1iOWZmLTAxMmYzZjE5ZjRlNj9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fff12bdc-822a-4708-b839-6ca816e75b72" + "632ce356-d012-4dc9-aa99-72f430f17103" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -3506,40 +3569,39 @@ "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-IIS/10.0" - ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "2ef3cb4c-f8c9-44df-8939-a85fe07b5836" + "96e0ece0-42c6-4787-936f-01cdba30a021" ], "x-ms-client-request-id": [ - "fff12bdc-822a-4708-b839-6ca816e75b72", - "fff12bdc-822a-4708-b839-6ca816e75b72" - ], - "X-Powered-By": [ - "ASP.NET" + "632ce356-d012-4dc9-aa99-72f430f17103", + "632ce356-d012-4dc9-aa99-72f430f17103" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "149" + "147" ], "x-ms-correlation-request-id": [ - "2ef3cb4c-f8c9-44df-8939-a85fe07b5836" + "96e0ece0-42c6-4787-936f-01cdba30a021" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T235321Z:2ef3cb4c-f8c9-44df-8939-a85fe07b5836" + "JIOINDIAWEST:20220517T134419Z:96e0ece0-42c6-4787-936f-01cdba30a021" ], "Date": [ - "Thu, 24 Feb 2022 23:53:20 GMT" + "Tue, 17 May 2022 13:44:19 GMT" ], "Content-Length": [ - "839" + "188" ], "Content-Type": [ "application/json" @@ -3548,26 +3610,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG90564a6f/providers/Microsoft.RecoveryServices/vaults/PSTestRSV90564a6f/backupJobs/05a02788-611b-4257-90e0-0038b845b490\",\r\n \"name\": \"05a02788-611b-4257-90e0-0038b845b490\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg90564a6f;pstestvm905640\",\r\n \"duration\": \"PT30.7571285S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm905640\",\r\n \"Policy Name\": \"DefaultPolicy\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm905640\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"ConfigureBackup\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-02-24T23:52:34.9671825Z\",\r\n \"endTime\": \"2022-02-24T23:53:05.724311Z\",\r\n \"activityId\": \"fff12bdc-822a-4708-b839-6ca816e75b72\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"c351d351-869c-49b7-b9ff-012f3f19f4e6\",\r\n \"name\": \"c351d351-869c-49b7-b9ff-012f3f19f4e6\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T13:44:07.8770216Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG90564a6f/providers/Microsoft.RecoveryServices/vaults/PSTestRSV90564a6f/backupProtectionContainers?$filter=backupManagementType%20eq%20'AzureIaasVM'%20and%20status%20eq%20'Registered'&api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTA1NjRhNmYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5MDU2NGE2Zi9iYWNrdXBQcm90ZWN0aW9uQ29udGFpbmVycz8kZmlsdGVyPWJhY2t1cE1hbmFnZW1lbnRUeXBlJTIwZXElMjAnQXp1cmVJYWFzVk0nJTIwYW5kJTIwc3RhdHVzJTIwZXElMjAnUmVnaXN0ZXJlZCcmYXBpLXZlcnNpb249MjAyMS0xMC0wMQ==", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGc96a93a6/providers/Microsoft.RecoveryServices/vaults/PSTestRSVc96a93a6/backupOperations/c351d351-869c-49b7-b9ff-012f3f19f4e6?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYzk2YTkzYTYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZjOTZhOTNhNi9iYWNrdXBPcGVyYXRpb25zL2MzNTFkMzUxLTg2OWMtNDliNy1iOWZmLTAxMmYzZjE5ZjRlNj9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "62945015-a2a7-4329-b86d-a097089d4dac" + "632ce356-d012-4dc9-aa99-72f430f17103" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -3581,11 +3643,11 @@ "nosniff" ], "x-ms-request-id": [ - "4c0f8f6f-1256-46fe-ac4f-3cb50b41c5d1" + "57844c61-172d-4c20-b0c0-a9624f5e15a3" ], "x-ms-client-request-id": [ - "62945015-a2a7-4329-b86d-a097089d4dac", - "62945015-a2a7-4329-b86d-a097089d4dac" + "632ce356-d012-4dc9-aa99-72f430f17103", + "632ce356-d012-4dc9-aa99-72f430f17103" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3597,19 +3659,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "149" + "146" ], "x-ms-correlation-request-id": [ - "4c0f8f6f-1256-46fe-ac4f-3cb50b41c5d1" + "57844c61-172d-4c20-b0c0-a9624f5e15a3" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T235323Z:4c0f8f6f-1256-46fe-ac4f-3cb50b41c5d1" + "JIOINDIAWEST:20220517T134425Z:57844c61-172d-4c20-b0c0-a9624f5e15a3" ], "Date": [ - "Thu, 24 Feb 2022 23:53:22 GMT" + "Tue, 17 May 2022 13:44:24 GMT" ], "Content-Length": [ - "914" + "188" ], "Content-Type": [ "application/json" @@ -3618,26 +3680,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG90564a6f/providers/Microsoft.RecoveryServices/vaults/PSTestRSV90564a6f/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrg90564a6f;pstestvm905640\",\r\n \"name\": \"IaasVMContainer;iaasvmcontainerv2;pstestrg90564a6f;pstestvm905640\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers\",\r\n \"properties\": {\r\n \"virtualMachineId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG90564a6f/providers/Microsoft.Compute/virtualMachines/PSTestVM905640\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"resourceGroup\": \"PSTestRG90564a6f\",\r\n \"friendlyName\": \"PSTestVM905640\",\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}", + "ResponseBody": "{\r\n \"id\": \"c351d351-869c-49b7-b9ff-012f3f19f4e6\",\r\n \"name\": \"c351d351-869c-49b7-b9ff-012f3f19f4e6\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T13:44:07.8770216Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG90564a6f/providers/Microsoft.RecoveryServices/vaults/PSTestRSV90564a6f/backupProtectionContainers?$filter=backupManagementType%20eq%20'AzureIaasVM'%20and%20status%20eq%20'Registered'&api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTA1NjRhNmYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5MDU2NGE2Zi9iYWNrdXBQcm90ZWN0aW9uQ29udGFpbmVycz8kZmlsdGVyPWJhY2t1cE1hbmFnZW1lbnRUeXBlJTIwZXElMjAnQXp1cmVJYWFzVk0nJTIwYW5kJTIwc3RhdHVzJTIwZXElMjAnUmVnaXN0ZXJlZCcmYXBpLXZlcnNpb249MjAyMS0xMC0wMQ==", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGc96a93a6/providers/Microsoft.RecoveryServices/vaults/PSTestRSVc96a93a6/backupOperations/c351d351-869c-49b7-b9ff-012f3f19f4e6?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYzk2YTkzYTYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZjOTZhOTNhNi9iYWNrdXBPcGVyYXRpb25zL2MzNTFkMzUxLTg2OWMtNDliNy1iOWZmLTAxMmYzZjE5ZjRlNj9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "564357ae-ddf3-418c-8c1e-edd67515e70a" + "632ce356-d012-4dc9-aa99-72f430f17103" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -3651,11 +3713,11 @@ "nosniff" ], "x-ms-request-id": [ - "3e4be2bd-8b59-44b0-84d5-aee8f2d00e7d" + "446544ed-b796-4290-ba17-86e1bb57fcc6" ], "x-ms-client-request-id": [ - "564357ae-ddf3-418c-8c1e-edd67515e70a", - "564357ae-ddf3-418c-8c1e-edd67515e70a" + "632ce356-d012-4dc9-aa99-72f430f17103", + "632ce356-d012-4dc9-aa99-72f430f17103" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3667,19 +3729,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "148" + "145" ], "x-ms-correlation-request-id": [ - "3e4be2bd-8b59-44b0-84d5-aee8f2d00e7d" + "446544ed-b796-4290-ba17-86e1bb57fcc6" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T235527Z:3e4be2bd-8b59-44b0-84d5-aee8f2d00e7d" + "JIOINDIAWEST:20220517T134430Z:446544ed-b796-4290-ba17-86e1bb57fcc6" ], "Date": [ - "Thu, 24 Feb 2022 23:55:27 GMT" + "Tue, 17 May 2022 13:44:30 GMT" ], "Content-Length": [ - "12" + "188" ], "Content-Type": [ "application/json" @@ -3688,26 +3750,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseBody": "{\r\n \"id\": \"c351d351-869c-49b7-b9ff-012f3f19f4e6\",\r\n \"name\": \"c351d351-869c-49b7-b9ff-012f3f19f4e6\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T13:44:07.8770216Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG90564a6f/providers/Microsoft.RecoveryServices/vaults/PSTestRSV90564a6f/backupProtectedItems?$filter=backupManagementType%20eq%20'AzureIaasVM'%20and%20itemType%20eq%20'VM'&api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTA1NjRhNmYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5MDU2NGE2Zi9iYWNrdXBQcm90ZWN0ZWRJdGVtcz8kZmlsdGVyPWJhY2t1cE1hbmFnZW1lbnRUeXBlJTIwZXElMjAnQXp1cmVJYWFzVk0nJTIwYW5kJTIwaXRlbVR5cGUlMjBlcSUyMCdWTScmYXBpLXZlcnNpb249MjAyMS0xMC0wMQ==", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGc96a93a6/providers/Microsoft.RecoveryServices/vaults/PSTestRSVc96a93a6/backupOperations/c351d351-869c-49b7-b9ff-012f3f19f4e6?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYzk2YTkzYTYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZjOTZhOTNhNi9iYWNrdXBPcGVyYXRpb25zL2MzNTFkMzUxLTg2OWMtNDliNy1iOWZmLTAxMmYzZjE5ZjRlNj9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "08f7b0c2-db2f-4a24-95ea-05cf8394d8b3" + "632ce356-d012-4dc9-aa99-72f430f17103" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -3721,11 +3783,11 @@ "nosniff" ], "x-ms-request-id": [ - "9a21d553-34b3-4227-95e3-b9bdef2b4253" + "de8e0a7f-6c9c-421c-a8f6-0fdd3d4e6c5d" ], "x-ms-client-request-id": [ - "08f7b0c2-db2f-4a24-95ea-05cf8394d8b3", - "08f7b0c2-db2f-4a24-95ea-05cf8394d8b3" + "632ce356-d012-4dc9-aa99-72f430f17103", + "632ce356-d012-4dc9-aa99-72f430f17103" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3737,19 +3799,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "149" + "144" ], "x-ms-correlation-request-id": [ - "9a21d553-34b3-4227-95e3-b9bdef2b4253" + "de8e0a7f-6c9c-421c-a8f6-0fdd3d4e6c5d" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T235323Z:9a21d553-34b3-4227-95e3-b9bdef2b4253" + "JIOINDIAWEST:20220517T134436Z:de8e0a7f-6c9c-421c-a8f6-0fdd3d4e6c5d" ], "Date": [ - "Thu, 24 Feb 2022 23:53:23 GMT" + "Tue, 17 May 2022 13:44:35 GMT" ], "Content-Length": [ - "1495" + "188" ], "Content-Type": [ "application/json" @@ -3758,26 +3820,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG90564a6f/providers/Microsoft.RecoveryServices/vaults/PSTestRSV90564a6f/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrg90564a6f;pstestvm905640/protectedItems/VM;iaasvmcontainerv2;pstestrg90564a6f;pstestvm905640\",\r\n \"name\": \"VM;iaasvmcontainerv2;pstestrg90564a6f;pstestvm905640\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems\",\r\n \"properties\": {\r\n \"kpisHealths\": {},\r\n \"friendlyName\": \"PSTestVM905640\",\r\n \"virtualMachineId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG90564a6f/providers/Microsoft.Compute/virtualMachines/PSTestVM905640\",\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\": \"87960979922170\",\r\n \"protectedItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"workloadType\": \"VM\",\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg90564a6f;pstestvm905640\",\r\n \"sourceResourceId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG90564a6f/providers/Microsoft.Compute/virtualMachines/PSTestVM905640\",\r\n \"policyId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG90564a6f/providers/Microsoft.RecoveryServices/vaults/PSTestRSV90564a6f/backupPolicies/DefaultPolicy\",\r\n \"policyName\": \"DefaultPolicy\",\r\n \"isArchiveEnabled\": false\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"c351d351-869c-49b7-b9ff-012f3f19f4e6\",\r\n \"name\": \"c351d351-869c-49b7-b9ff-012f3f19f4e6\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T13:44:07.8770216Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG90564a6f/providers/Microsoft.RecoveryServices/vaults/PSTestRSV90564a6f/backupFabrics/Azure/protectionContainers/IaasVMContainer%3Biaasvmcontainerv2%3Bpstestrg90564a6f%3Bpstestvm905640/protectedItems/VM%3Biaasvmcontainerv2%3Bpstestrg90564a6f%3Bpstestvm905640/recoveryPoints?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTA1NjRhNmYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5MDU2NGE2Zi9iYWNrdXBGYWJyaWNzL0F6dXJlL3Byb3RlY3Rpb25Db250YWluZXJzL0lhYXNWTUNvbnRhaW5lciUzQmlhYXN2bWNvbnRhaW5lcnYyJTNCcHN0ZXN0cmc5MDU2NGE2ZiUzQnBzdGVzdHZtOTA1NjQwL3Byb3RlY3RlZEl0ZW1zL1ZNJTNCaWFhc3ZtY29udGFpbmVydjIlM0Jwc3Rlc3RyZzkwNTY0YTZmJTNCcHN0ZXN0dm05MDU2NDAvcmVjb3ZlcnlQb2ludHM/YXBpLXZlcnNpb249MjAyMS0xMC0wMQ==", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGc96a93a6/providers/Microsoft.RecoveryServices/vaults/PSTestRSVc96a93a6/backupOperations/c351d351-869c-49b7-b9ff-012f3f19f4e6?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYzk2YTkzYTYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZjOTZhOTNhNi9iYWNrdXBPcGVyYXRpb25zL2MzNTFkMzUxLTg2OWMtNDliNy1iOWZmLTAxMmYzZjE5ZjRlNj9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "be1fba19-754c-481d-964d-2e3efb8e0539" + "632ce356-d012-4dc9-aa99-72f430f17103" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -3791,11 +3853,11 @@ "nosniff" ], "x-ms-request-id": [ - "883c6e97-f771-44bf-be10-4f23229dbaf3" + "dd14057f-3c42-410e-87de-19ff56fd684f" ], "x-ms-client-request-id": [ - "be1fba19-754c-481d-964d-2e3efb8e0539", - "be1fba19-754c-481d-964d-2e3efb8e0539" + "632ce356-d012-4dc9-aa99-72f430f17103", + "632ce356-d012-4dc9-aa99-72f430f17103" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3807,19 +3869,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "149" + "143" ], "x-ms-correlation-request-id": [ - "883c6e97-f771-44bf-be10-4f23229dbaf3" + "dd14057f-3c42-410e-87de-19ff56fd684f" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T235324Z:883c6e97-f771-44bf-be10-4f23229dbaf3" + "JIOINDIAWEST:20220517T134441Z:dd14057f-3c42-410e-87de-19ff56fd684f" ], "Date": [ - "Thu, 24 Feb 2022 23:53:23 GMT" + "Tue, 17 May 2022 13:44:41 GMT" ], "Content-Length": [ - "12" + "188" ], "Content-Type": [ "application/json" @@ -3828,26 +3890,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseBody": "{\r\n \"id\": \"c351d351-869c-49b7-b9ff-012f3f19f4e6\",\r\n \"name\": \"c351d351-869c-49b7-b9ff-012f3f19f4e6\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T13:44:07.8770216Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG90564a6f/providers/Microsoft.RecoveryServices/vaults/PSTestRSV90564a6f/backupFabrics/Azure/protectionContainers/IaasVMContainer%3Biaasvmcontainerv2%3Bpstestrg90564a6f%3Bpstestvm905640/protectedItems/VM%3Biaasvmcontainerv2%3Bpstestrg90564a6f%3Bpstestvm905640?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTA1NjRhNmYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5MDU2NGE2Zi9iYWNrdXBGYWJyaWNzL0F6dXJlL3Byb3RlY3Rpb25Db250YWluZXJzL0lhYXNWTUNvbnRhaW5lciUzQmlhYXN2bWNvbnRhaW5lcnYyJTNCcHN0ZXN0cmc5MDU2NGE2ZiUzQnBzdGVzdHZtOTA1NjQwL3Byb3RlY3RlZEl0ZW1zL1ZNJTNCaWFhc3ZtY29udGFpbmVydjIlM0Jwc3Rlc3RyZzkwNTY0YTZmJTNCcHN0ZXN0dm05MDU2NDA/YXBpLXZlcnNpb249MjAyMS0xMC0wMQ==", - "RequestMethod": "DELETE", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGc96a93a6/providers/Microsoft.RecoveryServices/vaults/PSTestRSVc96a93a6/backupOperations/c351d351-869c-49b7-b9ff-012f3f19f4e6?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYzk2YTkzYTYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZjOTZhOTNhNi9iYWNrdXBPcGVyYXRpb25zL2MzNTFkMzUxLTg2OWMtNDliNy1iOWZmLTAxMmYzZjE5ZjRlNj9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "be1fba19-754c-481d-964d-2e3efb8e0539" + "632ce356-d012-4dc9-aa99-72f430f17103" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -3857,70 +3919,67 @@ "Pragma": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG90564a6f/providers/Microsoft.RecoveryServices/vaults/PSTestRSV90564a6f/backupOperationResults/1b749af9-0829-40c6-ab80-a4c132944bbf?api-version=2021-10-01" - ], - "Retry-After": [ - "60" - ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG90564a6f/providers/Microsoft.RecoveryServices/vaults/PSTestRSV90564a6f/backupOperations/1b749af9-0829-40c6-ab80-a4c132944bbf?api-version=2021-10-01" - ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "43490d5a-3724-4bcd-8801-10b845448190" + "2e7c3082-91d6-49a8-9c68-d4c7f9fa48de" ], "x-ms-client-request-id": [ - "be1fba19-754c-481d-964d-2e3efb8e0539", - "be1fba19-754c-481d-964d-2e3efb8e0539" + "632ce356-d012-4dc9-aa99-72f430f17103", + "632ce356-d012-4dc9-aa99-72f430f17103" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-IIS/10.0" + ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ - "14999" + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "142" ], "x-ms-correlation-request-id": [ - "43490d5a-3724-4bcd-8801-10b845448190" + "2e7c3082-91d6-49a8-9c68-d4c7f9fa48de" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T235325Z:43490d5a-3724-4bcd-8801-10b845448190" + "JIOINDIAWEST:20220517T134447Z:2e7c3082-91d6-49a8-9c68-d4c7f9fa48de" ], "Date": [ - "Thu, 24 Feb 2022 23:53:24 GMT" + "Tue, 17 May 2022 13:44:46 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, - "ResponseBody": "", - "StatusCode": 202 + "ResponseBody": "{\r\n \"id\": \"c351d351-869c-49b7-b9ff-012f3f19f4e6\",\r\n \"name\": \"c351d351-869c-49b7-b9ff-012f3f19f4e6\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T13:44:07.8770216Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG90564a6f/providers/Microsoft.RecoveryServices/vaults/PSTestRSV90564a6f/backupOperations/1b749af9-0829-40c6-ab80-a4c132944bbf?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTA1NjRhNmYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5MDU2NGE2Zi9iYWNrdXBPcGVyYXRpb25zLzFiNzQ5YWY5LTA4MjktNDBjNi1hYjgwLWE0YzEzMjk0NGJiZj9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGc96a93a6/providers/Microsoft.RecoveryServices/vaults/PSTestRSVc96a93a6/backupOperations/c351d351-869c-49b7-b9ff-012f3f19f4e6?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYzk2YTkzYTYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZjOTZhOTNhNi9iYWNrdXBPcGVyYXRpb25zL2MzNTFkMzUxLTg2OWMtNDliNy1iOWZmLTAxMmYzZjE5ZjRlNj9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "be1fba19-754c-481d-964d-2e3efb8e0539" + "632ce356-d012-4dc9-aa99-72f430f17103" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -3934,11 +3993,11 @@ "nosniff" ], "x-ms-request-id": [ - "b995004a-cfe4-4b34-ad88-89d859a466c7" + "5b06f20b-bf37-454f-b1e2-59e6a716b42f" ], "x-ms-client-request-id": [ - "be1fba19-754c-481d-964d-2e3efb8e0539", - "be1fba19-754c-481d-964d-2e3efb8e0539" + "632ce356-d012-4dc9-aa99-72f430f17103", + "632ce356-d012-4dc9-aa99-72f430f17103" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3950,19 +4009,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "145" + "141" ], "x-ms-correlation-request-id": [ - "b995004a-cfe4-4b34-ad88-89d859a466c7" + "5b06f20b-bf37-454f-b1e2-59e6a716b42f" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T235326Z:b995004a-cfe4-4b34-ad88-89d859a466c7" + "JIOINDIAWEST:20220517T134452Z:5b06f20b-bf37-454f-b1e2-59e6a716b42f" ], "Date": [ - "Thu, 24 Feb 2022 23:53:25 GMT" + "Tue, 17 May 2022 13:44:52 GMT" ], "Content-Length": [ - "187" + "188" ], "Content-Type": [ "application/json" @@ -3971,26 +4030,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"1b749af9-0829-40c6-ab80-a4c132944bbf\",\r\n \"name\": \"1b749af9-0829-40c6-ab80-a4c132944bbf\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-24T23:53:25.107534Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"c351d351-869c-49b7-b9ff-012f3f19f4e6\",\r\n \"name\": \"c351d351-869c-49b7-b9ff-012f3f19f4e6\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T13:44:07.8770216Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG90564a6f/providers/Microsoft.RecoveryServices/vaults/PSTestRSV90564a6f/backupOperations/1b749af9-0829-40c6-ab80-a4c132944bbf?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTA1NjRhNmYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5MDU2NGE2Zi9iYWNrdXBPcGVyYXRpb25zLzFiNzQ5YWY5LTA4MjktNDBjNi1hYjgwLWE0YzEzMjk0NGJiZj9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGc96a93a6/providers/Microsoft.RecoveryServices/vaults/PSTestRSVc96a93a6/backupOperations/c351d351-869c-49b7-b9ff-012f3f19f4e6?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYzk2YTkzYTYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZjOTZhOTNhNi9iYWNrdXBPcGVyYXRpb25zL2MzNTFkMzUxLTg2OWMtNDliNy1iOWZmLTAxMmYzZjE5ZjRlNj9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "be1fba19-754c-481d-964d-2e3efb8e0539" + "632ce356-d012-4dc9-aa99-72f430f17103" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -4004,11 +4063,11 @@ "nosniff" ], "x-ms-request-id": [ - "2942e8e4-4bb4-4c72-a947-55756fe5cca1" + "7fdb29ba-c0d8-41dd-80ff-a3bd7791a313" ], "x-ms-client-request-id": [ - "be1fba19-754c-481d-964d-2e3efb8e0539", - "be1fba19-754c-481d-964d-2e3efb8e0539" + "632ce356-d012-4dc9-aa99-72f430f17103", + "632ce356-d012-4dc9-aa99-72f430f17103" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4020,19 +4079,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "144" + "140" ], "x-ms-correlation-request-id": [ - "2942e8e4-4bb4-4c72-a947-55756fe5cca1" + "7fdb29ba-c0d8-41dd-80ff-a3bd7791a313" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T235337Z:2942e8e4-4bb4-4c72-a947-55756fe5cca1" + "JIOINDIAWEST:20220517T134458Z:7fdb29ba-c0d8-41dd-80ff-a3bd7791a313" ], "Date": [ - "Thu, 24 Feb 2022 23:53:36 GMT" + "Tue, 17 May 2022 13:44:57 GMT" ], "Content-Length": [ - "187" + "188" ], "Content-Type": [ "application/json" @@ -4041,26 +4100,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"1b749af9-0829-40c6-ab80-a4c132944bbf\",\r\n \"name\": \"1b749af9-0829-40c6-ab80-a4c132944bbf\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-24T23:53:25.107534Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"c351d351-869c-49b7-b9ff-012f3f19f4e6\",\r\n \"name\": \"c351d351-869c-49b7-b9ff-012f3f19f4e6\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T13:44:07.8770216Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG90564a6f/providers/Microsoft.RecoveryServices/vaults/PSTestRSV90564a6f/backupOperations/1b749af9-0829-40c6-ab80-a4c132944bbf?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTA1NjRhNmYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5MDU2NGE2Zi9iYWNrdXBPcGVyYXRpb25zLzFiNzQ5YWY5LTA4MjktNDBjNi1hYjgwLWE0YzEzMjk0NGJiZj9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGc96a93a6/providers/Microsoft.RecoveryServices/vaults/PSTestRSVc96a93a6/backupOperations/c351d351-869c-49b7-b9ff-012f3f19f4e6?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYzk2YTkzYTYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZjOTZhOTNhNi9iYWNrdXBPcGVyYXRpb25zL2MzNTFkMzUxLTg2OWMtNDliNy1iOWZmLTAxMmYzZjE5ZjRlNj9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "be1fba19-754c-481d-964d-2e3efb8e0539" + "632ce356-d012-4dc9-aa99-72f430f17103" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -4074,11 +4133,11 @@ "nosniff" ], "x-ms-request-id": [ - "03b8b033-a804-4133-8e97-c395b909c4b2" + "d63b9a6c-190b-471f-9178-045272db40e8" ], "x-ms-client-request-id": [ - "be1fba19-754c-481d-964d-2e3efb8e0539", - "be1fba19-754c-481d-964d-2e3efb8e0539" + "632ce356-d012-4dc9-aa99-72f430f17103", + "632ce356-d012-4dc9-aa99-72f430f17103" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4090,19 +4149,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "143" + "139" ], "x-ms-correlation-request-id": [ - "03b8b033-a804-4133-8e97-c395b909c4b2" + "d63b9a6c-190b-471f-9178-045272db40e8" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T235409Z:03b8b033-a804-4133-8e97-c395b909c4b2" + "JIOINDIAWEST:20220517T134503Z:d63b9a6c-190b-471f-9178-045272db40e8" ], "Date": [ - "Thu, 24 Feb 2022 23:54:09 GMT" + "Tue, 17 May 2022 13:45:03 GMT" ], "Content-Length": [ - "187" + "188" ], "Content-Type": [ "application/json" @@ -4111,26 +4170,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"1b749af9-0829-40c6-ab80-a4c132944bbf\",\r\n \"name\": \"1b749af9-0829-40c6-ab80-a4c132944bbf\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-24T23:53:25.107534Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"c351d351-869c-49b7-b9ff-012f3f19f4e6\",\r\n \"name\": \"c351d351-869c-49b7-b9ff-012f3f19f4e6\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T13:44:07.8770216Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG90564a6f/providers/Microsoft.RecoveryServices/vaults/PSTestRSV90564a6f/backupOperations/1b749af9-0829-40c6-ab80-a4c132944bbf?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTA1NjRhNmYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5MDU2NGE2Zi9iYWNrdXBPcGVyYXRpb25zLzFiNzQ5YWY5LTA4MjktNDBjNi1hYjgwLWE0YzEzMjk0NGJiZj9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGc96a93a6/providers/Microsoft.RecoveryServices/vaults/PSTestRSVc96a93a6/backupOperations/c351d351-869c-49b7-b9ff-012f3f19f4e6?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYzk2YTkzYTYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZjOTZhOTNhNi9iYWNrdXBPcGVyYXRpb25zL2MzNTFkMzUxLTg2OWMtNDliNy1iOWZmLTAxMmYzZjE5ZjRlNj9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "be1fba19-754c-481d-964d-2e3efb8e0539" + "632ce356-d012-4dc9-aa99-72f430f17103" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -4144,11 +4203,11 @@ "nosniff" ], "x-ms-request-id": [ - "201c7ee5-4116-4afb-a452-df2a3eacd955" + "8a6e1582-8cb7-4911-88fb-501a6900bdc7" ], "x-ms-client-request-id": [ - "be1fba19-754c-481d-964d-2e3efb8e0539", - "be1fba19-754c-481d-964d-2e3efb8e0539" + "632ce356-d012-4dc9-aa99-72f430f17103", + "632ce356-d012-4dc9-aa99-72f430f17103" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4160,19 +4219,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "142" + "138" ], "x-ms-correlation-request-id": [ - "201c7ee5-4116-4afb-a452-df2a3eacd955" + "8a6e1582-8cb7-4911-88fb-501a6900bdc7" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T235426Z:201c7ee5-4116-4afb-a452-df2a3eacd955" + "JIOINDIAWEST:20220517T134509Z:8a6e1582-8cb7-4911-88fb-501a6900bdc7" ], "Date": [ - "Thu, 24 Feb 2022 23:54:26 GMT" + "Tue, 17 May 2022 13:45:08 GMT" ], "Content-Length": [ - "187" + "188" ], "Content-Type": [ "application/json" @@ -4181,26 +4240,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"1b749af9-0829-40c6-ab80-a4c132944bbf\",\r\n \"name\": \"1b749af9-0829-40c6-ab80-a4c132944bbf\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-24T23:53:25.107534Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"c351d351-869c-49b7-b9ff-012f3f19f4e6\",\r\n \"name\": \"c351d351-869c-49b7-b9ff-012f3f19f4e6\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T13:44:07.8770216Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG90564a6f/providers/Microsoft.RecoveryServices/vaults/PSTestRSV90564a6f/backupOperations/1b749af9-0829-40c6-ab80-a4c132944bbf?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTA1NjRhNmYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5MDU2NGE2Zi9iYWNrdXBPcGVyYXRpb25zLzFiNzQ5YWY5LTA4MjktNDBjNi1hYjgwLWE0YzEzMjk0NGJiZj9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGc96a93a6/providers/Microsoft.RecoveryServices/vaults/PSTestRSVc96a93a6/backupOperations/c351d351-869c-49b7-b9ff-012f3f19f4e6?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYzk2YTkzYTYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZjOTZhOTNhNi9iYWNrdXBPcGVyYXRpb25zL2MzNTFkMzUxLTg2OWMtNDliNy1iOWZmLTAxMmYzZjE5ZjRlNj9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "be1fba19-754c-481d-964d-2e3efb8e0539" + "632ce356-d012-4dc9-aa99-72f430f17103" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -4214,11 +4273,11 @@ "nosniff" ], "x-ms-request-id": [ - "6536a383-92d2-4e63-ad91-ef593cda1db7" + "006dde47-8725-4eb5-b105-5cb826d827b3" ], "x-ms-client-request-id": [ - "be1fba19-754c-481d-964d-2e3efb8e0539", - "be1fba19-754c-481d-964d-2e3efb8e0539" + "632ce356-d012-4dc9-aa99-72f430f17103", + "632ce356-d012-4dc9-aa99-72f430f17103" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4230,19 +4289,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "141" + "137" ], "x-ms-correlation-request-id": [ - "6536a383-92d2-4e63-ad91-ef593cda1db7" + "006dde47-8725-4eb5-b105-5cb826d827b3" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T235440Z:6536a383-92d2-4e63-ad91-ef593cda1db7" + "JIOINDIAWEST:20220517T134514Z:006dde47-8725-4eb5-b105-5cb826d827b3" ], "Date": [ - "Thu, 24 Feb 2022 23:54:39 GMT" + "Tue, 17 May 2022 13:45:14 GMT" ], "Content-Length": [ - "187" + "188" ], "Content-Type": [ "application/json" @@ -4251,26 +4310,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"1b749af9-0829-40c6-ab80-a4c132944bbf\",\r\n \"name\": \"1b749af9-0829-40c6-ab80-a4c132944bbf\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-24T23:53:25.107534Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"c351d351-869c-49b7-b9ff-012f3f19f4e6\",\r\n \"name\": \"c351d351-869c-49b7-b9ff-012f3f19f4e6\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T13:44:07.8770216Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG90564a6f/providers/Microsoft.RecoveryServices/vaults/PSTestRSV90564a6f/backupOperations/1b749af9-0829-40c6-ab80-a4c132944bbf?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTA1NjRhNmYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5MDU2NGE2Zi9iYWNrdXBPcGVyYXRpb25zLzFiNzQ5YWY5LTA4MjktNDBjNi1hYjgwLWE0YzEzMjk0NGJiZj9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGc96a93a6/providers/Microsoft.RecoveryServices/vaults/PSTestRSVc96a93a6/backupOperations/c351d351-869c-49b7-b9ff-012f3f19f4e6?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYzk2YTkzYTYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZjOTZhOTNhNi9iYWNrdXBPcGVyYXRpb25zL2MzNTFkMzUxLTg2OWMtNDliNy1iOWZmLTAxMmYzZjE5ZjRlNj9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "be1fba19-754c-481d-964d-2e3efb8e0539" + "632ce356-d012-4dc9-aa99-72f430f17103" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -4284,11 +4343,11 @@ "nosniff" ], "x-ms-request-id": [ - "d83484e8-2e48-4f92-8f44-16f681ed6778" + "61b88141-cb5e-4bc3-b16f-706ff01f1b9e" ], "x-ms-client-request-id": [ - "be1fba19-754c-481d-964d-2e3efb8e0539", - "be1fba19-754c-481d-964d-2e3efb8e0539" + "632ce356-d012-4dc9-aa99-72f430f17103", + "632ce356-d012-4dc9-aa99-72f430f17103" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4300,19 +4359,1563 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "140" + "136" + ], + "x-ms-correlation-request-id": [ + "61b88141-cb5e-4bc3-b16f-706ff01f1b9e" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220517T134520Z:61b88141-cb5e-4bc3-b16f-706ff01f1b9e" + ], + "Date": [ + "Tue, 17 May 2022 13:45:19 GMT" + ], + "Content-Length": [ + "304" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"c351d351-869c-49b7-b9ff-012f3f19f4e6\",\r\n \"name\": \"c351d351-869c-49b7-b9ff-012f3f19f4e6\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-05-17T13:44:07.8770216Z\",\r\n \"endTime\": \"2022-05-17T13:44:07.8770216Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"372129d1-f722-410a-bc8e-7ff2deb436e7\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGc96a93a6/providers/Microsoft.RecoveryServices/vaults/PSTestRSVc96a93a6/backupOperations/c351d351-869c-49b7-b9ff-012f3f19f4e6?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYzk2YTkzYTYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZjOTZhOTNhNi9iYWNrdXBPcGVyYXRpb25zL2MzNTFkMzUxLTg2OWMtNDliNy1iOWZmLTAxMmYzZjE5ZjRlNj9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "632ce356-d012-4dc9-aa99-72f430f17103" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "a10d97ff-a158-4d6b-9113-c46ac8bd25a6" + ], + "x-ms-client-request-id": [ + "632ce356-d012-4dc9-aa99-72f430f17103", + "632ce356-d012-4dc9-aa99-72f430f17103" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "135" + ], + "x-ms-correlation-request-id": [ + "a10d97ff-a158-4d6b-9113-c46ac8bd25a6" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220517T134520Z:a10d97ff-a158-4d6b-9113-c46ac8bd25a6" + ], + "Date": [ + "Tue, 17 May 2022 13:45:20 GMT" + ], + "Content-Length": [ + "304" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"c351d351-869c-49b7-b9ff-012f3f19f4e6\",\r\n \"name\": \"c351d351-869c-49b7-b9ff-012f3f19f4e6\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-05-17T13:44:07.8770216Z\",\r\n \"endTime\": \"2022-05-17T13:44:07.8770216Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"372129d1-f722-410a-bc8e-7ff2deb436e7\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGc96a93a6/providers/Microsoft.RecoveryServices/vaults/PSTestRSVc96a93a6/backupJobs/372129d1-f722-410a-bc8e-7ff2deb436e7?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYzk2YTkzYTYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZjOTZhOTNhNi9iYWNrdXBKb2JzLzM3MjEyOWQxLWY3MjItNDEwYS1iYzhlLTdmZjJkZWI0MzZlNz9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "632ce356-d012-4dc9-aa99-72f430f17103" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.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": [ + "17a5a491-8f2f-4a37-85ef-723fe3a6a305" + ], + "x-ms-client-request-id": [ + "632ce356-d012-4dc9-aa99-72f430f17103", + "632ce356-d012-4dc9-aa99-72f430f17103" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "149" + ], + "x-ms-correlation-request-id": [ + "17a5a491-8f2f-4a37-85ef-723fe3a6a305" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220517T134521Z:17a5a491-8f2f-4a37-85ef-723fe3a6a305" + ], + "Date": [ + "Tue, 17 May 2022 13:45:20 GMT" + ], + "Content-Length": [ + "841" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGc96a93a6/providers/Microsoft.RecoveryServices/vaults/PSTestRSVc96a93a6/backupJobs/372129d1-f722-410a-bc8e-7ff2deb436e7\",\r\n \"name\": \"372129d1-f722-410a-bc8e-7ff2deb436e7\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgc96a93a6;pstestvmc96a90\",\r\n \"duration\": \"PT1M11.387757S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvmc96a90\",\r\n \"Policy Name\": \"DefaultPolicy\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvmc96a90\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"ConfigureBackup\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-05-17T13:44:07.8770216Z\",\r\n \"endTime\": \"2022-05-17T13:45:19.2647786Z\",\r\n \"activityId\": \"632ce356-d012-4dc9-aa99-72f430f17103\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGc96a93a6/providers/Microsoft.RecoveryServices/vaults/PSTestRSVc96a93a6/backupProtectionContainers?$filter=backupManagementType%20eq%20'AzureIaasVM'%20and%20status%20eq%20'Registered'&api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYzk2YTkzYTYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZjOTZhOTNhNi9iYWNrdXBQcm90ZWN0aW9uQ29udGFpbmVycz8kZmlsdGVyPWJhY2t1cE1hbmFnZW1lbnRUeXBlJTIwZXElMjAnQXp1cmVJYWFzVk0nJTIwYW5kJTIwc3RhdHVzJTIwZXElMjAnUmVnaXN0ZXJlZCcmYXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "53dbf38d-ff77-4b8e-94fc-ef09570de804" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "40eb7c8d-eb4d-4224-aa4d-b1a54f307fe9" + ], + "x-ms-client-request-id": [ + "53dbf38d-ff77-4b8e-94fc-ef09570de804", + "53dbf38d-ff77-4b8e-94fc-ef09570de804" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "149" + ], + "x-ms-correlation-request-id": [ + "40eb7c8d-eb4d-4224-aa4d-b1a54f307fe9" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220517T134521Z:40eb7c8d-eb4d-4224-aa4d-b1a54f307fe9" + ], + "Date": [ + "Tue, 17 May 2022 13:45:21 GMT" + ], + "Content-Length": [ + "914" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGc96a93a6/providers/Microsoft.RecoveryServices/vaults/PSTestRSVc96a93a6/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrgc96a93a6;pstestvmc96a90\",\r\n \"name\": \"IaasVMContainer;iaasvmcontainerv2;pstestrgc96a93a6;pstestvmc96a90\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers\",\r\n \"properties\": {\r\n \"virtualMachineId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGc96a93a6/providers/Microsoft.Compute/virtualMachines/PSTestVMc96a90\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"resourceGroup\": \"PSTestRGc96a93a6\",\r\n \"friendlyName\": \"PSTestVMc96a90\",\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/PSTestRGc96a93a6/providers/Microsoft.RecoveryServices/vaults/PSTestRSVc96a93a6/backupProtectionContainers?$filter=backupManagementType%20eq%20'AzureIaasVM'%20and%20status%20eq%20'Registered'&api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYzk2YTkzYTYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZjOTZhOTNhNi9iYWNrdXBQcm90ZWN0aW9uQ29udGFpbmVycz8kZmlsdGVyPWJhY2t1cE1hbmFnZW1lbnRUeXBlJTIwZXElMjAnQXp1cmVJYWFzVk0nJTIwYW5kJTIwc3RhdHVzJTIwZXElMjAnUmVnaXN0ZXJlZCcmYXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "53c08546-6938-485f-ac9d-3cf8dcd51f8d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "30cbac57-67a9-4990-b514-a66f101043d1" + ], + "x-ms-client-request-id": [ + "53c08546-6938-485f-ac9d-3cf8dcd51f8d", + "53c08546-6938-485f-ac9d-3cf8dcd51f8d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "148" + ], + "x-ms-correlation-request-id": [ + "30cbac57-67a9-4990-b514-a66f101043d1" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220517T134723Z:30cbac57-67a9-4990-b514-a66f101043d1" + ], + "Date": [ + "Tue, 17 May 2022 13:47:23 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/PSTestRGc96a93a6/providers/Microsoft.RecoveryServices/vaults/PSTestRSVc96a93a6/backupProtectedItems?$filter=backupManagementType%20eq%20'AzureIaasVM'%20and%20itemType%20eq%20'VM'&api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYzk2YTkzYTYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZjOTZhOTNhNi9iYWNrdXBQcm90ZWN0ZWRJdGVtcz8kZmlsdGVyPWJhY2t1cE1hbmFnZW1lbnRUeXBlJTIwZXElMjAnQXp1cmVJYWFzVk0nJTIwYW5kJTIwaXRlbVR5cGUlMjBlcSUyMCdWTScmYXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "86c7cd39-f5bc-427e-8fe3-4f6f95aca149" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "21656bc0-a8b9-4cbd-80aa-67a3a6d69d42" + ], + "x-ms-client-request-id": [ + "86c7cd39-f5bc-427e-8fe3-4f6f95aca149", + "86c7cd39-f5bc-427e-8fe3-4f6f95aca149" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "149" + ], + "x-ms-correlation-request-id": [ + "21656bc0-a8b9-4cbd-80aa-67a3a6d69d42" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220517T134522Z:21656bc0-a8b9-4cbd-80aa-67a3a6d69d42" + ], + "Date": [ + "Tue, 17 May 2022 13:45:21 GMT" + ], + "Content-Length": [ + "1495" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGc96a93a6/providers/Microsoft.RecoveryServices/vaults/PSTestRSVc96a93a6/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrgc96a93a6;pstestvmc96a90/protectedItems/VM;iaasvmcontainerv2;pstestrgc96a93a6;pstestvmc96a90\",\r\n \"name\": \"VM;iaasvmcontainerv2;pstestrgc96a93a6;pstestvmc96a90\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems\",\r\n \"properties\": {\r\n \"kpisHealths\": {},\r\n \"friendlyName\": \"PSTestVMc96a90\",\r\n \"virtualMachineId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGc96a93a6/providers/Microsoft.Compute/virtualMachines/PSTestVMc96a90\",\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\": \"35186222388321\",\r\n \"protectedItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"workloadType\": \"VM\",\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgc96a93a6;pstestvmc96a90\",\r\n \"sourceResourceId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGc96a93a6/providers/Microsoft.Compute/virtualMachines/PSTestVMc96a90\",\r\n \"policyId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGc96a93a6/providers/Microsoft.RecoveryServices/vaults/PSTestRSVc96a93a6/backupPolicies/DefaultPolicy\",\r\n \"policyName\": \"DefaultPolicy\",\r\n \"isArchiveEnabled\": false\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGc96a93a6/providers/Microsoft.RecoveryServices/vaults/PSTestRSVc96a93a6/backupFabrics/Azure/protectionContainers/IaasVMContainer%3Biaasvmcontainerv2%3Bpstestrgc96a93a6%3Bpstestvmc96a90/protectedItems/VM%3Biaasvmcontainerv2%3Bpstestrgc96a93a6%3Bpstestvmc96a90/recoveryPoints?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYzk2YTkzYTYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZjOTZhOTNhNi9iYWNrdXBGYWJyaWNzL0F6dXJlL3Byb3RlY3Rpb25Db250YWluZXJzL0lhYXNWTUNvbnRhaW5lciUzQmlhYXN2bWNvbnRhaW5lcnYyJTNCcHN0ZXN0cmdjOTZhOTNhNiUzQnBzdGVzdHZtYzk2YTkwL3Byb3RlY3RlZEl0ZW1zL1ZNJTNCaWFhc3ZtY29udGFpbmVydjIlM0Jwc3Rlc3RyZ2M5NmE5M2E2JTNCcHN0ZXN0dm1jOTZhOTAvcmVjb3ZlcnlQb2ludHM/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d17f348c-fd39-49cc-956d-8d37a493a662" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "ada5d91e-b635-4beb-aef9-79b89a4b6911" + ], + "x-ms-client-request-id": [ + "d17f348c-fd39-49cc-956d-8d37a493a662", + "d17f348c-fd39-49cc-956d-8d37a493a662" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "149" + ], + "x-ms-correlation-request-id": [ + "ada5d91e-b635-4beb-aef9-79b89a4b6911" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220517T134523Z:ada5d91e-b635-4beb-aef9-79b89a4b6911" + ], + "Date": [ + "Tue, 17 May 2022 13:45:22 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/PSTestRGc96a93a6/providers/Microsoft.RecoveryServices/vaults/PSTestRSVc96a93a6/backupFabrics/Azure/protectionContainers/IaasVMContainer%3Biaasvmcontainerv2%3Bpstestrgc96a93a6%3Bpstestvmc96a90/protectedItems/VM%3Biaasvmcontainerv2%3Bpstestrgc96a93a6%3Bpstestvmc96a90?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYzk2YTkzYTYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZjOTZhOTNhNi9iYWNrdXBGYWJyaWNzL0F6dXJlL3Byb3RlY3Rpb25Db250YWluZXJzL0lhYXNWTUNvbnRhaW5lciUzQmlhYXN2bWNvbnRhaW5lcnYyJTNCcHN0ZXN0cmdjOTZhOTNhNiUzQnBzdGVzdHZtYzk2YTkwL3Byb3RlY3RlZEl0ZW1zL1ZNJTNCaWFhc3ZtY29udGFpbmVydjIlM0Jwc3Rlc3RyZ2M5NmE5M2E2JTNCcHN0ZXN0dm1jOTZhOTA/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d17f348c-fd39-49cc-956d-8d37a493a662" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGc96a93a6/providers/Microsoft.RecoveryServices/vaults/PSTestRSVc96a93a6/backupOperationResults/31122b76-bb48-44d2-86e9-68d848dc6f12?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGc96a93a6/providers/Microsoft.RecoveryServices/vaults/PSTestRSVc96a93a6/backupOperations/31122b76-bb48-44d2-86e9-68d848dc6f12?api-version=2022-02-01" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "6fecaccc-9721-4aea-a0a5-ac76ab37075b" + ], + "x-ms-client-request-id": [ + "d17f348c-fd39-49cc-956d-8d37a493a662", + "d17f348c-fd39-49cc-956d-8d37a493a662" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-correlation-request-id": [ + "6fecaccc-9721-4aea-a0a5-ac76ab37075b" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220517T134524Z:6fecaccc-9721-4aea-a0a5-ac76ab37075b" + ], + "Date": [ + "Tue, 17 May 2022 13:45:23 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGc96a93a6/providers/Microsoft.RecoveryServices/vaults/PSTestRSVc96a93a6/backupOperations/31122b76-bb48-44d2-86e9-68d848dc6f12?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYzk2YTkzYTYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZjOTZhOTNhNi9iYWNrdXBPcGVyYXRpb25zLzMxMTIyYjc2LWJiNDgtNDRkMi04NmU5LTY4ZDg0OGRjNmYxMj9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d17f348c-fd39-49cc-956d-8d37a493a662" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "f412c2e7-18bc-4606-8ac5-97bea0aa9601" + ], + "x-ms-client-request-id": [ + "d17f348c-fd39-49cc-956d-8d37a493a662", + "d17f348c-fd39-49cc-956d-8d37a493a662" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "134" + ], + "x-ms-correlation-request-id": [ + "f412c2e7-18bc-4606-8ac5-97bea0aa9601" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220517T134525Z:f412c2e7-18bc-4606-8ac5-97bea0aa9601" + ], + "Date": [ + "Tue, 17 May 2022 13:45:24 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"31122b76-bb48-44d2-86e9-68d848dc6f12\",\r\n \"name\": \"31122b76-bb48-44d2-86e9-68d848dc6f12\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T13:45:24.4747293Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGc96a93a6/providers/Microsoft.RecoveryServices/vaults/PSTestRSVc96a93a6/backupOperations/31122b76-bb48-44d2-86e9-68d848dc6f12?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYzk2YTkzYTYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZjOTZhOTNhNi9iYWNrdXBPcGVyYXRpb25zLzMxMTIyYjc2LWJiNDgtNDRkMi04NmU5LTY4ZDg0OGRjNmYxMj9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d17f348c-fd39-49cc-956d-8d37a493a662" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "a3e33b56-a1e0-4f60-b807-1d175e9a90df" + ], + "x-ms-client-request-id": [ + "d17f348c-fd39-49cc-956d-8d37a493a662", + "d17f348c-fd39-49cc-956d-8d37a493a662" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "133" + ], + "x-ms-correlation-request-id": [ + "a3e33b56-a1e0-4f60-b807-1d175e9a90df" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220517T134530Z:a3e33b56-a1e0-4f60-b807-1d175e9a90df" + ], + "Date": [ + "Tue, 17 May 2022 13:45:29 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"31122b76-bb48-44d2-86e9-68d848dc6f12\",\r\n \"name\": \"31122b76-bb48-44d2-86e9-68d848dc6f12\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T13:45:24.4747293Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGc96a93a6/providers/Microsoft.RecoveryServices/vaults/PSTestRSVc96a93a6/backupOperations/31122b76-bb48-44d2-86e9-68d848dc6f12?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYzk2YTkzYTYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZjOTZhOTNhNi9iYWNrdXBPcGVyYXRpb25zLzMxMTIyYjc2LWJiNDgtNDRkMi04NmU5LTY4ZDg0OGRjNmYxMj9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d17f348c-fd39-49cc-956d-8d37a493a662" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "c72c6313-43bd-41f9-951a-d194456bdfab" + ], + "x-ms-client-request-id": [ + "d17f348c-fd39-49cc-956d-8d37a493a662", + "d17f348c-fd39-49cc-956d-8d37a493a662" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "132" + ], + "x-ms-correlation-request-id": [ + "c72c6313-43bd-41f9-951a-d194456bdfab" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220517T134536Z:c72c6313-43bd-41f9-951a-d194456bdfab" + ], + "Date": [ + "Tue, 17 May 2022 13:45:35 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"31122b76-bb48-44d2-86e9-68d848dc6f12\",\r\n \"name\": \"31122b76-bb48-44d2-86e9-68d848dc6f12\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T13:45:24.4747293Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGc96a93a6/providers/Microsoft.RecoveryServices/vaults/PSTestRSVc96a93a6/backupOperations/31122b76-bb48-44d2-86e9-68d848dc6f12?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYzk2YTkzYTYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZjOTZhOTNhNi9iYWNrdXBPcGVyYXRpb25zLzMxMTIyYjc2LWJiNDgtNDRkMi04NmU5LTY4ZDg0OGRjNmYxMj9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d17f348c-fd39-49cc-956d-8d37a493a662" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "09be3188-e631-4735-bc4b-fa9caa62fcdb" + ], + "x-ms-client-request-id": [ + "d17f348c-fd39-49cc-956d-8d37a493a662", + "d17f348c-fd39-49cc-956d-8d37a493a662" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "131" + ], + "x-ms-correlation-request-id": [ + "09be3188-e631-4735-bc4b-fa9caa62fcdb" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220517T134541Z:09be3188-e631-4735-bc4b-fa9caa62fcdb" + ], + "Date": [ + "Tue, 17 May 2022 13:45:41 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"31122b76-bb48-44d2-86e9-68d848dc6f12\",\r\n \"name\": \"31122b76-bb48-44d2-86e9-68d848dc6f12\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T13:45:24.4747293Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGc96a93a6/providers/Microsoft.RecoveryServices/vaults/PSTestRSVc96a93a6/backupOperations/31122b76-bb48-44d2-86e9-68d848dc6f12?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYzk2YTkzYTYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZjOTZhOTNhNi9iYWNrdXBPcGVyYXRpb25zLzMxMTIyYjc2LWJiNDgtNDRkMi04NmU5LTY4ZDg0OGRjNmYxMj9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d17f348c-fd39-49cc-956d-8d37a493a662" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "06aa4911-3f37-4baa-b4c6-6ac680d7c383" + ], + "x-ms-client-request-id": [ + "d17f348c-fd39-49cc-956d-8d37a493a662", + "d17f348c-fd39-49cc-956d-8d37a493a662" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "130" + ], + "x-ms-correlation-request-id": [ + "06aa4911-3f37-4baa-b4c6-6ac680d7c383" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220517T134547Z:06aa4911-3f37-4baa-b4c6-6ac680d7c383" + ], + "Date": [ + "Tue, 17 May 2022 13:45:47 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"31122b76-bb48-44d2-86e9-68d848dc6f12\",\r\n \"name\": \"31122b76-bb48-44d2-86e9-68d848dc6f12\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T13:45:24.4747293Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGc96a93a6/providers/Microsoft.RecoveryServices/vaults/PSTestRSVc96a93a6/backupOperations/31122b76-bb48-44d2-86e9-68d848dc6f12?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYzk2YTkzYTYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZjOTZhOTNhNi9iYWNrdXBPcGVyYXRpb25zLzMxMTIyYjc2LWJiNDgtNDRkMi04NmU5LTY4ZDg0OGRjNmYxMj9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d17f348c-fd39-49cc-956d-8d37a493a662" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "9dcfdda0-f8e5-4131-abd0-68933dcd5d0f" + ], + "x-ms-client-request-id": [ + "d17f348c-fd39-49cc-956d-8d37a493a662", + "d17f348c-fd39-49cc-956d-8d37a493a662" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "129" + ], + "x-ms-correlation-request-id": [ + "9dcfdda0-f8e5-4131-abd0-68933dcd5d0f" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220517T134552Z:9dcfdda0-f8e5-4131-abd0-68933dcd5d0f" + ], + "Date": [ + "Tue, 17 May 2022 13:45:52 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"31122b76-bb48-44d2-86e9-68d848dc6f12\",\r\n \"name\": \"31122b76-bb48-44d2-86e9-68d848dc6f12\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T13:45:24.4747293Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGc96a93a6/providers/Microsoft.RecoveryServices/vaults/PSTestRSVc96a93a6/backupOperations/31122b76-bb48-44d2-86e9-68d848dc6f12?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYzk2YTkzYTYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZjOTZhOTNhNi9iYWNrdXBPcGVyYXRpb25zLzMxMTIyYjc2LWJiNDgtNDRkMi04NmU5LTY4ZDg0OGRjNmYxMj9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d17f348c-fd39-49cc-956d-8d37a493a662" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "46b15370-b918-48cb-aec5-2507f8a00588" + ], + "x-ms-client-request-id": [ + "d17f348c-fd39-49cc-956d-8d37a493a662", + "d17f348c-fd39-49cc-956d-8d37a493a662" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "128" + ], + "x-ms-correlation-request-id": [ + "46b15370-b918-48cb-aec5-2507f8a00588" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220517T134558Z:46b15370-b918-48cb-aec5-2507f8a00588" + ], + "Date": [ + "Tue, 17 May 2022 13:45:57 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"31122b76-bb48-44d2-86e9-68d848dc6f12\",\r\n \"name\": \"31122b76-bb48-44d2-86e9-68d848dc6f12\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T13:45:24.4747293Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGc96a93a6/providers/Microsoft.RecoveryServices/vaults/PSTestRSVc96a93a6/backupOperations/31122b76-bb48-44d2-86e9-68d848dc6f12?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYzk2YTkzYTYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZjOTZhOTNhNi9iYWNrdXBPcGVyYXRpb25zLzMxMTIyYjc2LWJiNDgtNDRkMi04NmU5LTY4ZDg0OGRjNmYxMj9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d17f348c-fd39-49cc-956d-8d37a493a662" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "921785f2-f46f-46f1-8283-58570aab086a" + ], + "x-ms-client-request-id": [ + "d17f348c-fd39-49cc-956d-8d37a493a662", + "d17f348c-fd39-49cc-956d-8d37a493a662" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "127" + ], + "x-ms-correlation-request-id": [ + "921785f2-f46f-46f1-8283-58570aab086a" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220517T134603Z:921785f2-f46f-46f1-8283-58570aab086a" + ], + "Date": [ + "Tue, 17 May 2022 13:46:03 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"31122b76-bb48-44d2-86e9-68d848dc6f12\",\r\n \"name\": \"31122b76-bb48-44d2-86e9-68d848dc6f12\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T13:45:24.4747293Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGc96a93a6/providers/Microsoft.RecoveryServices/vaults/PSTestRSVc96a93a6/backupOperations/31122b76-bb48-44d2-86e9-68d848dc6f12?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYzk2YTkzYTYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZjOTZhOTNhNi9iYWNrdXBPcGVyYXRpb25zLzMxMTIyYjc2LWJiNDgtNDRkMi04NmU5LTY4ZDg0OGRjNmYxMj9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d17f348c-fd39-49cc-956d-8d37a493a662" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "56ac19e3-7852-4574-933f-eeca7d0cf731" + ], + "x-ms-client-request-id": [ + "d17f348c-fd39-49cc-956d-8d37a493a662", + "d17f348c-fd39-49cc-956d-8d37a493a662" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "126" + ], + "x-ms-correlation-request-id": [ + "56ac19e3-7852-4574-933f-eeca7d0cf731" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220517T134609Z:56ac19e3-7852-4574-933f-eeca7d0cf731" + ], + "Date": [ + "Tue, 17 May 2022 13:46:08 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"31122b76-bb48-44d2-86e9-68d848dc6f12\",\r\n \"name\": \"31122b76-bb48-44d2-86e9-68d848dc6f12\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T13:45:24.4747293Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGc96a93a6/providers/Microsoft.RecoveryServices/vaults/PSTestRSVc96a93a6/backupOperations/31122b76-bb48-44d2-86e9-68d848dc6f12?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYzk2YTkzYTYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZjOTZhOTNhNi9iYWNrdXBPcGVyYXRpb25zLzMxMTIyYjc2LWJiNDgtNDRkMi04NmU5LTY4ZDg0OGRjNmYxMj9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d17f348c-fd39-49cc-956d-8d37a493a662" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "25a5d638-8b35-41ec-8c7a-a1e60e209352" + ], + "x-ms-client-request-id": [ + "d17f348c-fd39-49cc-956d-8d37a493a662", + "d17f348c-fd39-49cc-956d-8d37a493a662" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "125" + ], + "x-ms-correlation-request-id": [ + "25a5d638-8b35-41ec-8c7a-a1e60e209352" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220517T134614Z:25a5d638-8b35-41ec-8c7a-a1e60e209352" + ], + "Date": [ + "Tue, 17 May 2022 13:46:14 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"31122b76-bb48-44d2-86e9-68d848dc6f12\",\r\n \"name\": \"31122b76-bb48-44d2-86e9-68d848dc6f12\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T13:45:24.4747293Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGc96a93a6/providers/Microsoft.RecoveryServices/vaults/PSTestRSVc96a93a6/backupOperations/31122b76-bb48-44d2-86e9-68d848dc6f12?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYzk2YTkzYTYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZjOTZhOTNhNi9iYWNrdXBPcGVyYXRpb25zLzMxMTIyYjc2LWJiNDgtNDRkMi04NmU5LTY4ZDg0OGRjNmYxMj9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d17f348c-fd39-49cc-956d-8d37a493a662" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "403e5159-61d4-476d-9e70-7e282a76afb2" + ], + "x-ms-client-request-id": [ + "d17f348c-fd39-49cc-956d-8d37a493a662", + "d17f348c-fd39-49cc-956d-8d37a493a662" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "124" + ], + "x-ms-correlation-request-id": [ + "403e5159-61d4-476d-9e70-7e282a76afb2" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220517T134620Z:403e5159-61d4-476d-9e70-7e282a76afb2" + ], + "Date": [ + "Tue, 17 May 2022 13:46:19 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"31122b76-bb48-44d2-86e9-68d848dc6f12\",\r\n \"name\": \"31122b76-bb48-44d2-86e9-68d848dc6f12\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T13:45:24.4747293Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGc96a93a6/providers/Microsoft.RecoveryServices/vaults/PSTestRSVc96a93a6/backupOperations/31122b76-bb48-44d2-86e9-68d848dc6f12?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYzk2YTkzYTYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZjOTZhOTNhNi9iYWNrdXBPcGVyYXRpb25zLzMxMTIyYjc2LWJiNDgtNDRkMi04NmU5LTY4ZDg0OGRjNmYxMj9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d17f348c-fd39-49cc-956d-8d37a493a662" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "a5cc221d-c9dc-42fd-be21-aec7ba30d1d5" + ], + "x-ms-client-request-id": [ + "d17f348c-fd39-49cc-956d-8d37a493a662", + "d17f348c-fd39-49cc-956d-8d37a493a662" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "123" + ], + "x-ms-correlation-request-id": [ + "a5cc221d-c9dc-42fd-be21-aec7ba30d1d5" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220517T134625Z:a5cc221d-c9dc-42fd-be21-aec7ba30d1d5" + ], + "Date": [ + "Tue, 17 May 2022 13:46:25 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"31122b76-bb48-44d2-86e9-68d848dc6f12\",\r\n \"name\": \"31122b76-bb48-44d2-86e9-68d848dc6f12\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T13:45:24.4747293Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGc96a93a6/providers/Microsoft.RecoveryServices/vaults/PSTestRSVc96a93a6/backupOperations/31122b76-bb48-44d2-86e9-68d848dc6f12?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYzk2YTkzYTYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZjOTZhOTNhNi9iYWNrdXBPcGVyYXRpb25zLzMxMTIyYjc2LWJiNDgtNDRkMi04NmU5LTY4ZDg0OGRjNmYxMj9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d17f348c-fd39-49cc-956d-8d37a493a662" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "25e3165d-5fd9-466a-96d1-adfd7ed26219" + ], + "x-ms-client-request-id": [ + "d17f348c-fd39-49cc-956d-8d37a493a662", + "d17f348c-fd39-49cc-956d-8d37a493a662" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "122" + ], + "x-ms-correlation-request-id": [ + "25e3165d-5fd9-466a-96d1-adfd7ed26219" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220517T134631Z:25e3165d-5fd9-466a-96d1-adfd7ed26219" + ], + "Date": [ + "Tue, 17 May 2022 13:46:30 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"31122b76-bb48-44d2-86e9-68d848dc6f12\",\r\n \"name\": \"31122b76-bb48-44d2-86e9-68d848dc6f12\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T13:45:24.4747293Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGc96a93a6/providers/Microsoft.RecoveryServices/vaults/PSTestRSVc96a93a6/backupOperations/31122b76-bb48-44d2-86e9-68d848dc6f12?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYzk2YTkzYTYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZjOTZhOTNhNi9iYWNrdXBPcGVyYXRpb25zLzMxMTIyYjc2LWJiNDgtNDRkMi04NmU5LTY4ZDg0OGRjNmYxMj9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d17f348c-fd39-49cc-956d-8d37a493a662" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "0a7ffa32-7687-4b14-858b-b4b8ffdbca3a" + ], + "x-ms-client-request-id": [ + "d17f348c-fd39-49cc-956d-8d37a493a662", + "d17f348c-fd39-49cc-956d-8d37a493a662" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "121" + ], + "x-ms-correlation-request-id": [ + "0a7ffa32-7687-4b14-858b-b4b8ffdbca3a" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220517T134636Z:0a7ffa32-7687-4b14-858b-b4b8ffdbca3a" + ], + "Date": [ + "Tue, 17 May 2022 13:46:36 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"31122b76-bb48-44d2-86e9-68d848dc6f12\",\r\n \"name\": \"31122b76-bb48-44d2-86e9-68d848dc6f12\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T13:45:24.4747293Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGc96a93a6/providers/Microsoft.RecoveryServices/vaults/PSTestRSVc96a93a6/backupOperations/31122b76-bb48-44d2-86e9-68d848dc6f12?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYzk2YTkzYTYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZjOTZhOTNhNi9iYWNrdXBPcGVyYXRpb25zLzMxMTIyYjc2LWJiNDgtNDRkMi04NmU5LTY4ZDg0OGRjNmYxMj9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d17f348c-fd39-49cc-956d-8d37a493a662" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "5e072514-22ad-4df5-93aa-3543337a845b" + ], + "x-ms-client-request-id": [ + "d17f348c-fd39-49cc-956d-8d37a493a662", + "d17f348c-fd39-49cc-956d-8d37a493a662" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "120" ], "x-ms-correlation-request-id": [ - "d83484e8-2e48-4f92-8f44-16f681ed6778" + "5e072514-22ad-4df5-93aa-3543337a845b" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T235450Z:d83484e8-2e48-4f92-8f44-16f681ed6778" + "JIOINDIAWEST:20220517T134642Z:5e072514-22ad-4df5-93aa-3543337a845b" ], "Date": [ - "Thu, 24 Feb 2022 23:54:50 GMT" + "Tue, 17 May 2022 13:46:41 GMT" ], "Content-Length": [ - "187" + "188" ], "Content-Type": [ "application/json" @@ -4321,26 +5924,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"1b749af9-0829-40c6-ab80-a4c132944bbf\",\r\n \"name\": \"1b749af9-0829-40c6-ab80-a4c132944bbf\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-24T23:53:25.107534Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"31122b76-bb48-44d2-86e9-68d848dc6f12\",\r\n \"name\": \"31122b76-bb48-44d2-86e9-68d848dc6f12\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T13:45:24.4747293Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG90564a6f/providers/Microsoft.RecoveryServices/vaults/PSTestRSV90564a6f/backupOperations/1b749af9-0829-40c6-ab80-a4c132944bbf?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTA1NjRhNmYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5MDU2NGE2Zi9iYWNrdXBPcGVyYXRpb25zLzFiNzQ5YWY5LTA4MjktNDBjNi1hYjgwLWE0YzEzMjk0NGJiZj9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGc96a93a6/providers/Microsoft.RecoveryServices/vaults/PSTestRSVc96a93a6/backupOperations/31122b76-bb48-44d2-86e9-68d848dc6f12?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYzk2YTkzYTYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZjOTZhOTNhNi9iYWNrdXBPcGVyYXRpb25zLzMxMTIyYjc2LWJiNDgtNDRkMi04NmU5LTY4ZDg0OGRjNmYxMj9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "be1fba19-754c-481d-964d-2e3efb8e0539" + "d17f348c-fd39-49cc-956d-8d37a493a662" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -4354,11 +5957,11 @@ "nosniff" ], "x-ms-request-id": [ - "0248e6b8-2f15-464e-89be-999083152438" + "436c5137-03f4-4474-9136-4551bb38d121" ], "x-ms-client-request-id": [ - "be1fba19-754c-481d-964d-2e3efb8e0539", - "be1fba19-754c-481d-964d-2e3efb8e0539" + "d17f348c-fd39-49cc-956d-8d37a493a662", + "d17f348c-fd39-49cc-956d-8d37a493a662" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4370,19 +5973,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "139" + "119" ], "x-ms-correlation-request-id": [ - "0248e6b8-2f15-464e-89be-999083152438" + "436c5137-03f4-4474-9136-4551bb38d121" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T235502Z:0248e6b8-2f15-464e-89be-999083152438" + "JIOINDIAWEST:20220517T134647Z:436c5137-03f4-4474-9136-4551bb38d121" ], "Date": [ - "Thu, 24 Feb 2022 23:55:01 GMT" + "Tue, 17 May 2022 13:46:47 GMT" ], "Content-Length": [ - "187" + "188" ], "Content-Type": [ "application/json" @@ -4391,26 +5994,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"1b749af9-0829-40c6-ab80-a4c132944bbf\",\r\n \"name\": \"1b749af9-0829-40c6-ab80-a4c132944bbf\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-24T23:53:25.107534Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"31122b76-bb48-44d2-86e9-68d848dc6f12\",\r\n \"name\": \"31122b76-bb48-44d2-86e9-68d848dc6f12\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T13:45:24.4747293Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG90564a6f/providers/Microsoft.RecoveryServices/vaults/PSTestRSV90564a6f/backupOperations/1b749af9-0829-40c6-ab80-a4c132944bbf?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTA1NjRhNmYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5MDU2NGE2Zi9iYWNrdXBPcGVyYXRpb25zLzFiNzQ5YWY5LTA4MjktNDBjNi1hYjgwLWE0YzEzMjk0NGJiZj9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGc96a93a6/providers/Microsoft.RecoveryServices/vaults/PSTestRSVc96a93a6/backupOperations/31122b76-bb48-44d2-86e9-68d848dc6f12?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYzk2YTkzYTYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZjOTZhOTNhNi9iYWNrdXBPcGVyYXRpb25zLzMxMTIyYjc2LWJiNDgtNDRkMi04NmU5LTY4ZDg0OGRjNmYxMj9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "be1fba19-754c-481d-964d-2e3efb8e0539" + "d17f348c-fd39-49cc-956d-8d37a493a662" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -4424,11 +6027,11 @@ "nosniff" ], "x-ms-request-id": [ - "0d92dc33-9911-4133-bb69-c4b63c8a1ac6" + "d55070c5-c2c5-4885-bc46-89ea035f8638" ], "x-ms-client-request-id": [ - "be1fba19-754c-481d-964d-2e3efb8e0539", - "be1fba19-754c-481d-964d-2e3efb8e0539" + "d17f348c-fd39-49cc-956d-8d37a493a662", + "d17f348c-fd39-49cc-956d-8d37a493a662" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4440,19 +6043,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "138" + "118" ], "x-ms-correlation-request-id": [ - "0d92dc33-9911-4133-bb69-c4b63c8a1ac6" + "d55070c5-c2c5-4885-bc46-89ea035f8638" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T235513Z:0d92dc33-9911-4133-bb69-c4b63c8a1ac6" + "JIOINDIAWEST:20220517T134653Z:d55070c5-c2c5-4885-bc46-89ea035f8638" ], "Date": [ - "Thu, 24 Feb 2022 23:55:13 GMT" + "Tue, 17 May 2022 13:46:52 GMT" ], "Content-Length": [ - "187" + "188" ], "Content-Type": [ "application/json" @@ -4461,26 +6064,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"1b749af9-0829-40c6-ab80-a4c132944bbf\",\r\n \"name\": \"1b749af9-0829-40c6-ab80-a4c132944bbf\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-24T23:53:25.107534Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"31122b76-bb48-44d2-86e9-68d848dc6f12\",\r\n \"name\": \"31122b76-bb48-44d2-86e9-68d848dc6f12\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T13:45:24.4747293Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG90564a6f/providers/Microsoft.RecoveryServices/vaults/PSTestRSV90564a6f/backupOperations/1b749af9-0829-40c6-ab80-a4c132944bbf?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTA1NjRhNmYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5MDU2NGE2Zi9iYWNrdXBPcGVyYXRpb25zLzFiNzQ5YWY5LTA4MjktNDBjNi1hYjgwLWE0YzEzMjk0NGJiZj9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGc96a93a6/providers/Microsoft.RecoveryServices/vaults/PSTestRSVc96a93a6/backupOperations/31122b76-bb48-44d2-86e9-68d848dc6f12?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYzk2YTkzYTYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZjOTZhOTNhNi9iYWNrdXBPcGVyYXRpb25zLzMxMTIyYjc2LWJiNDgtNDRkMi04NmU5LTY4ZDg0OGRjNmYxMj9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "be1fba19-754c-481d-964d-2e3efb8e0539" + "d17f348c-fd39-49cc-956d-8d37a493a662" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -4494,11 +6097,11 @@ "nosniff" ], "x-ms-request-id": [ - "b558c39c-9ba7-4b4d-9fcd-54aa4d7cb8a7" + "69c8c8a0-ea80-4fd4-a678-948b382b7d3f" ], "x-ms-client-request-id": [ - "be1fba19-754c-481d-964d-2e3efb8e0539", - "be1fba19-754c-481d-964d-2e3efb8e0539" + "d17f348c-fd39-49cc-956d-8d37a493a662", + "d17f348c-fd39-49cc-956d-8d37a493a662" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4510,19 +6113,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "137" + "117" ], "x-ms-correlation-request-id": [ - "b558c39c-9ba7-4b4d-9fcd-54aa4d7cb8a7" + "69c8c8a0-ea80-4fd4-a678-948b382b7d3f" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T235523Z:b558c39c-9ba7-4b4d-9fcd-54aa4d7cb8a7" + "JIOINDIAWEST:20220517T134658Z:69c8c8a0-ea80-4fd4-a678-948b382b7d3f" ], "Date": [ - "Thu, 24 Feb 2022 23:55:23 GMT" + "Tue, 17 May 2022 13:46:57 GMT" ], "Content-Length": [ - "302" + "188" ], "Content-Type": [ "application/json" @@ -4531,26 +6134,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"1b749af9-0829-40c6-ab80-a4c132944bbf\",\r\n \"name\": \"1b749af9-0829-40c6-ab80-a4c132944bbf\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-02-24T23:53:25.107534Z\",\r\n \"endTime\": \"2022-02-24T23:53:25.107534Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"33f67a73-c766-4191-a12d-2a6a0bd359c2\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"31122b76-bb48-44d2-86e9-68d848dc6f12\",\r\n \"name\": \"31122b76-bb48-44d2-86e9-68d848dc6f12\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T13:45:24.4747293Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG90564a6f/providers/Microsoft.RecoveryServices/vaults/PSTestRSV90564a6f/backupOperations/1b749af9-0829-40c6-ab80-a4c132944bbf?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTA1NjRhNmYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5MDU2NGE2Zi9iYWNrdXBPcGVyYXRpb25zLzFiNzQ5YWY5LTA4MjktNDBjNi1hYjgwLWE0YzEzMjk0NGJiZj9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGc96a93a6/providers/Microsoft.RecoveryServices/vaults/PSTestRSVc96a93a6/backupOperations/31122b76-bb48-44d2-86e9-68d848dc6f12?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYzk2YTkzYTYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZjOTZhOTNhNi9iYWNrdXBPcGVyYXRpb25zLzMxMTIyYjc2LWJiNDgtNDRkMi04NmU5LTY4ZDg0OGRjNmYxMj9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "be1fba19-754c-481d-964d-2e3efb8e0539" + "d17f348c-fd39-49cc-956d-8d37a493a662" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -4564,11 +6167,11 @@ "nosniff" ], "x-ms-request-id": [ - "303c0792-ba71-44b5-a311-10a72ae1dc91" + "28317be1-6f65-4d0a-a13b-2e193203755b" ], "x-ms-client-request-id": [ - "be1fba19-754c-481d-964d-2e3efb8e0539", - "be1fba19-754c-481d-964d-2e3efb8e0539" + "d17f348c-fd39-49cc-956d-8d37a493a662", + "d17f348c-fd39-49cc-956d-8d37a493a662" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4580,19 +6183,299 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "136" + "116" + ], + "x-ms-correlation-request-id": [ + "28317be1-6f65-4d0a-a13b-2e193203755b" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220517T134704Z:28317be1-6f65-4d0a-a13b-2e193203755b" + ], + "Date": [ + "Tue, 17 May 2022 13:47:03 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"31122b76-bb48-44d2-86e9-68d848dc6f12\",\r\n \"name\": \"31122b76-bb48-44d2-86e9-68d848dc6f12\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T13:45:24.4747293Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGc96a93a6/providers/Microsoft.RecoveryServices/vaults/PSTestRSVc96a93a6/backupOperations/31122b76-bb48-44d2-86e9-68d848dc6f12?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYzk2YTkzYTYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZjOTZhOTNhNi9iYWNrdXBPcGVyYXRpb25zLzMxMTIyYjc2LWJiNDgtNDRkMi04NmU5LTY4ZDg0OGRjNmYxMj9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d17f348c-fd39-49cc-956d-8d37a493a662" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "c60aa6b2-df98-44ca-a624-6cff60317fe4" + ], + "x-ms-client-request-id": [ + "d17f348c-fd39-49cc-956d-8d37a493a662", + "d17f348c-fd39-49cc-956d-8d37a493a662" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "115" + ], + "x-ms-correlation-request-id": [ + "c60aa6b2-df98-44ca-a624-6cff60317fe4" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220517T134709Z:c60aa6b2-df98-44ca-a624-6cff60317fe4" + ], + "Date": [ + "Tue, 17 May 2022 13:47:08 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"31122b76-bb48-44d2-86e9-68d848dc6f12\",\r\n \"name\": \"31122b76-bb48-44d2-86e9-68d848dc6f12\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T13:45:24.4747293Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGc96a93a6/providers/Microsoft.RecoveryServices/vaults/PSTestRSVc96a93a6/backupOperations/31122b76-bb48-44d2-86e9-68d848dc6f12?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYzk2YTkzYTYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZjOTZhOTNhNi9iYWNrdXBPcGVyYXRpb25zLzMxMTIyYjc2LWJiNDgtNDRkMi04NmU5LTY4ZDg0OGRjNmYxMj9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d17f348c-fd39-49cc-956d-8d37a493a662" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "6cdb95fe-0a03-4941-82cd-54babb788b8e" + ], + "x-ms-client-request-id": [ + "d17f348c-fd39-49cc-956d-8d37a493a662", + "d17f348c-fd39-49cc-956d-8d37a493a662" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "114" + ], + "x-ms-correlation-request-id": [ + "6cdb95fe-0a03-4941-82cd-54babb788b8e" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220517T134715Z:6cdb95fe-0a03-4941-82cd-54babb788b8e" + ], + "Date": [ + "Tue, 17 May 2022 13:47:15 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"31122b76-bb48-44d2-86e9-68d848dc6f12\",\r\n \"name\": \"31122b76-bb48-44d2-86e9-68d848dc6f12\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T13:45:24.4747293Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGc96a93a6/providers/Microsoft.RecoveryServices/vaults/PSTestRSVc96a93a6/backupOperations/31122b76-bb48-44d2-86e9-68d848dc6f12?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYzk2YTkzYTYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZjOTZhOTNhNi9iYWNrdXBPcGVyYXRpb25zLzMxMTIyYjc2LWJiNDgtNDRkMi04NmU5LTY4ZDg0OGRjNmYxMj9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d17f348c-fd39-49cc-956d-8d37a493a662" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "5d623afe-29ae-468d-9250-2a94b61e92a0" + ], + "x-ms-client-request-id": [ + "d17f348c-fd39-49cc-956d-8d37a493a662", + "d17f348c-fd39-49cc-956d-8d37a493a662" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "113" + ], + "x-ms-correlation-request-id": [ + "5d623afe-29ae-468d-9250-2a94b61e92a0" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220517T134720Z:5d623afe-29ae-468d-9250-2a94b61e92a0" + ], + "Date": [ + "Tue, 17 May 2022 13:47:20 GMT" + ], + "Content-Length": [ + "304" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"31122b76-bb48-44d2-86e9-68d848dc6f12\",\r\n \"name\": \"31122b76-bb48-44d2-86e9-68d848dc6f12\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-05-17T13:45:24.4747293Z\",\r\n \"endTime\": \"2022-05-17T13:45:24.4747293Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"59c51a16-8ad2-4fe9-b6db-83bf11d66720\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGc96a93a6/providers/Microsoft.RecoveryServices/vaults/PSTestRSVc96a93a6/backupOperations/31122b76-bb48-44d2-86e9-68d848dc6f12?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYzk2YTkzYTYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZjOTZhOTNhNi9iYWNrdXBPcGVyYXRpb25zLzMxMTIyYjc2LWJiNDgtNDRkMi04NmU5LTY4ZDg0OGRjNmYxMj9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d17f348c-fd39-49cc-956d-8d37a493a662" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "55778c80-d1c7-44fd-a8a4-21497372affd" + ], + "x-ms-client-request-id": [ + "d17f348c-fd39-49cc-956d-8d37a493a662", + "d17f348c-fd39-49cc-956d-8d37a493a662" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "112" ], "x-ms-correlation-request-id": [ - "303c0792-ba71-44b5-a311-10a72ae1dc91" + "55778c80-d1c7-44fd-a8a4-21497372affd" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T235524Z:303c0792-ba71-44b5-a311-10a72ae1dc91" + "JIOINDIAWEST:20220517T134721Z:55778c80-d1c7-44fd-a8a4-21497372affd" ], "Date": [ - "Thu, 24 Feb 2022 23:55:24 GMT" + "Tue, 17 May 2022 13:47:21 GMT" ], "Content-Length": [ - "302" + "304" ], "Content-Type": [ "application/json" @@ -4601,26 +6484,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"1b749af9-0829-40c6-ab80-a4c132944bbf\",\r\n \"name\": \"1b749af9-0829-40c6-ab80-a4c132944bbf\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-02-24T23:53:25.107534Z\",\r\n \"endTime\": \"2022-02-24T23:53:25.107534Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"33f67a73-c766-4191-a12d-2a6a0bd359c2\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"31122b76-bb48-44d2-86e9-68d848dc6f12\",\r\n \"name\": \"31122b76-bb48-44d2-86e9-68d848dc6f12\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-05-17T13:45:24.4747293Z\",\r\n \"endTime\": \"2022-05-17T13:45:24.4747293Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"59c51a16-8ad2-4fe9-b6db-83bf11d66720\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG90564a6f/providers/Microsoft.RecoveryServices/vaults/PSTestRSV90564a6f/backupJobs/33f67a73-c766-4191-a12d-2a6a0bd359c2?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTA1NjRhNmYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5MDU2NGE2Zi9iYWNrdXBKb2JzLzMzZjY3YTczLWM3NjYtNDE5MS1hMTJkLTJhNmEwYmQzNTljMj9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGc96a93a6/providers/Microsoft.RecoveryServices/vaults/PSTestRSVc96a93a6/backupJobs/59c51a16-8ad2-4fe9-b6db-83bf11d66720?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYzk2YTkzYTYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZjOTZhOTNhNi9iYWNrdXBKb2JzLzU5YzUxYTE2LThhZDItNGZlOS1iNmRiLTgzYmYxMWQ2NjcyMD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "be1fba19-754c-481d-964d-2e3efb8e0539" + "d17f348c-fd39-49cc-956d-8d37a493a662" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -4638,11 +6521,11 @@ "nosniff" ], "x-ms-request-id": [ - "9b38951c-9396-4cf8-b45f-6c99c3b9d966" + "014e8762-35ff-4947-bc31-9619fc6b1e1f" ], "x-ms-client-request-id": [ - "be1fba19-754c-481d-964d-2e3efb8e0539", - "be1fba19-754c-481d-964d-2e3efb8e0539" + "d17f348c-fd39-49cc-956d-8d37a493a662", + "d17f348c-fd39-49cc-956d-8d37a493a662" ], "X-Powered-By": [ "ASP.NET" @@ -4654,16 +6537,16 @@ "148" ], "x-ms-correlation-request-id": [ - "9b38951c-9396-4cf8-b45f-6c99c3b9d966" + "014e8762-35ff-4947-bc31-9619fc6b1e1f" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T235525Z:9b38951c-9396-4cf8-b45f-6c99c3b9d966" + "JIOINDIAWEST:20220517T134721Z:014e8762-35ff-4947-bc31-9619fc6b1e1f" ], "Date": [ - "Thu, 24 Feb 2022 23:55:24 GMT" + "Tue, 17 May 2022 13:47:21 GMT" ], "Content-Length": [ - "844" + "843" ], "Content-Type": [ "application/json" @@ -4672,23 +6555,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG90564a6f/providers/Microsoft.RecoveryServices/vaults/PSTestRSV90564a6f/backupJobs/33f67a73-c766-4191-a12d-2a6a0bd359c2\",\r\n \"name\": \"33f67a73-c766-4191-a12d-2a6a0bd359c2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg90564a6f;pstestvm905640\",\r\n \"duration\": \"PT1M51.3574605S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"VM Name\": \"PSTestVM905640\",\r\n \"Number of Recovery Points\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"PSTestVM905640\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"DeleteBackupData\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-02-24T23:53:25.107534Z\",\r\n \"endTime\": \"2022-02-24T23:55:16.4649945Z\",\r\n \"activityId\": \"be1fba19-754c-481d-964d-2e3efb8e0539\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGc96a93a6/providers/Microsoft.RecoveryServices/vaults/PSTestRSVc96a93a6/backupJobs/59c51a16-8ad2-4fe9-b6db-83bf11d66720\",\r\n \"name\": \"59c51a16-8ad2-4fe9-b6db-83bf11d66720\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgc96a93a6;pstestvmc96a90\",\r\n \"duration\": \"PT1M51.3576607S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"VM Name\": \"PSTestVMc96a90\",\r\n \"Number of Recovery Points\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"PSTestVMc96a90\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"DeleteBackupData\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-05-17T13:45:24.4747293Z\",\r\n \"endTime\": \"2022-05-17T13:47:15.83239Z\",\r\n \"activityId\": \"d17f348c-fd39-49cc-956d-8d37a493a662\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG90564a6f/providers/Microsoft.RecoveryServices/vaults?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTA1NjRhNmYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cz9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGc96a93a6/providers/Microsoft.RecoveryServices/vaults?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYzk2YTkzYTYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cz9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2e4e322c-9741-4a6a-a4a8-f119181cf696" + "f3856be7-61cc-416b-9adc-6624eba886f2" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesClient/4.3.2.0" @@ -4705,10 +6588,10 @@ "nosniff" ], "x-ms-request-id": [ - "ec615b2a-3b33-43a7-b5a1-f795d83142da" + "dfb49211-929d-4cd7-824d-96c1cb4d4a49" ], "x-ms-client-request-id": [ - "2e4e322c-9741-4a6a-a4a8-f119181cf696" + "f3856be7-61cc-416b-9adc-6624eba886f2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4720,16 +6603,16 @@ "11999" ], "x-ms-correlation-request-id": [ - "ec615b2a-3b33-43a7-b5a1-f795d83142da" + "dfb49211-929d-4cd7-824d-96c1cb4d4a49" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T235526Z:ec615b2a-3b33-43a7-b5a1-f795d83142da" + "WESTINDIA:20220517T134722Z:dfb49211-929d-4cd7-824d-96c1cb4d4a49" ], "Date": [ - "Thu, 24 Feb 2022 23:55:26 GMT" + "Tue, 17 May 2022 13:47:22 GMT" ], "Content-Length": [ - "478" + "530" ], "Content-Type": [ "application/json" @@ -4738,23 +6621,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"PSTestRSV90564a6f\",\r\n \"etag\": \"W/\\\"datetime'2022-02-24T23%3A52%3A22.0164647Z'\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateEndpointStateForBackup\": \"None\",\r\n \"privateEndpointStateForSiteRecovery\": \"None\"\r\n },\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG90564a6f/providers/Microsoft.RecoveryServices/vaults/PSTestRSV90564a6f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"PSTestRSVc96a93a6\",\r\n \"etag\": \"W/\\\"datetime'2022-05-17T13%3A43%3A55.5435596Z'\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateEndpointStateForBackup\": \"None\",\r\n \"privateEndpointStateForSiteRecovery\": \"None\",\r\n \"networkSettings\": {\r\n \"publicNetworkAccess\": \"Enabled\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGc96a93a6/providers/Microsoft.RecoveryServices/vaults/PSTestRSVc96a93a6\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG90564a6f/providers/Microsoft.RecoveryServices/vaults/PSTestRSV90564a6f?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTA1NjRhNmYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5MDU2NGE2Zj9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGc96a93a6/providers/Microsoft.RecoveryServices/vaults/PSTestRSVc96a93a6?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYzk2YTkzYTYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZjOTZhOTNhNj9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "38778c46-4272-411f-8bf1-75e45d1486e4" + "1a3e958a-4b89-4e35-8571-cb58dadeaa6c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesClient/4.3.2.0" @@ -4771,10 +6654,10 @@ "nosniff" ], "x-ms-request-id": [ - "88e562b8-e83d-48fa-a451-9408566300dc" + "3a31a965-0cbe-47b1-acf2-b24aa95ff1ab" ], "x-ms-client-request-id": [ - "38778c46-4272-411f-8bf1-75e45d1486e4" + "1a3e958a-4b89-4e35-8571-cb58dadeaa6c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4783,13 +6666,13 @@ "9" ], "x-ms-correlation-request-id": [ - "88e562b8-e83d-48fa-a451-9408566300dc" + "3a31a965-0cbe-47b1-acf2-b24aa95ff1ab" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T235538Z:88e562b8-e83d-48fa-a451-9408566300dc" + "WESTINDIA:20220517T134728Z:3a31a965-0cbe-47b1-acf2-b24aa95ff1ab" ], "Date": [ - "Thu, 24 Feb 2022 23:55:38 GMT" + "Tue, 17 May 2022 13:47:27 GMT" ], "Expires": [ "-1" @@ -4802,22 +6685,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourcegroups/PSTestRG90564a6f?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlZ3JvdXBzL1BTVGVzdFJHOTA1NjRhNmY/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourcegroups/PSTestRGc96a93a6?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlZ3JvdXBzL1BTVGVzdFJHYzk2YTkzYTY/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b3d68bc6-f1e9-4c1f-826b-5750c159bd0f" + "fd0555ff-98ee-4523-af90-aad91e75e12a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" ] }, "ResponseHeaders": { @@ -4828,7 +6711,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzkwNTY0QTZGLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0M5NkE5M0E2LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -4837,13 +6720,13 @@ "14999" ], "x-ms-request-id": [ - "4e7476f7-99a3-4173-aac6-77c8f5e969ef" + "1665562c-8150-4115-b9c7-3a8c80985493" ], "x-ms-correlation-request-id": [ - "4e7476f7-99a3-4173-aac6-77c8f5e969ef" + "1665562c-8150-4115-b9c7-3a8c80985493" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T235546Z:4e7476f7-99a3-4173-aac6-77c8f5e969ef" + "WESTINDIA:20220517T134730Z:1665562c-8150-4115-b9c7-3a8c80985493" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4852,7 +6735,7 @@ "nosniff" ], "Date": [ - "Thu, 24 Feb 2022 23:55:45 GMT" + "Tue, 17 May 2022 13:47:30 GMT" ], "Expires": [ "-1" @@ -4865,16 +6748,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzkwNTY0QTZGLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemt3TlRZMFFUWkdMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0M5NkE5M0E2LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSME01TmtFNU0wRTJMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" ] }, "ResponseHeaders": { @@ -4885,7 +6768,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzkwNTY0QTZGLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0M5NkE5M0E2LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -4894,13 +6777,13 @@ "11998" ], "x-ms-request-id": [ - "341f019a-3869-4c65-a03f-5904f0a21065" + "8c39770a-d403-48a0-8d33-ba6c1f5ff890" ], "x-ms-correlation-request-id": [ - "341f019a-3869-4c65-a03f-5904f0a21065" + "8c39770a-d403-48a0-8d33-ba6c1f5ff890" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T235601Z:341f019a-3869-4c65-a03f-5904f0a21065" + "WESTINDIA:20220517T134745Z:8c39770a-d403-48a0-8d33-ba6c1f5ff890" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4909,7 +6792,7 @@ "nosniff" ], "Date": [ - "Thu, 24 Feb 2022 23:56:01 GMT" + "Tue, 17 May 2022 13:47:45 GMT" ], "Expires": [ "-1" @@ -4922,16 +6805,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzkwNTY0QTZGLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemt3TlRZMFFUWkdMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0M5NkE5M0E2LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSME01TmtFNU0wRTJMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" ] }, "ResponseHeaders": { @@ -4942,7 +6825,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzkwNTY0QTZGLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0M5NkE5M0E2LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -4951,13 +6834,13 @@ "11997" ], "x-ms-request-id": [ - "e87dc25f-3cc0-460f-af27-a6036681ee47" + "1c8f5f96-2baf-420d-8e2b-e57b258a66bf" ], "x-ms-correlation-request-id": [ - "e87dc25f-3cc0-460f-af27-a6036681ee47" + "1c8f5f96-2baf-420d-8e2b-e57b258a66bf" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T235617Z:e87dc25f-3cc0-460f-af27-a6036681ee47" + "WESTINDIA:20220517T134801Z:1c8f5f96-2baf-420d-8e2b-e57b258a66bf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4966,7 +6849,7 @@ "nosniff" ], "Date": [ - "Thu, 24 Feb 2022 23:56:16 GMT" + "Tue, 17 May 2022 13:48:00 GMT" ], "Expires": [ "-1" @@ -4979,16 +6862,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzkwNTY0QTZGLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemt3TlRZMFFUWkdMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0M5NkE5M0E2LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSME01TmtFNU0wRTJMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" ] }, "ResponseHeaders": { @@ -4999,7 +6882,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzkwNTY0QTZGLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0M5NkE5M0E2LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -5008,13 +6891,13 @@ "11996" ], "x-ms-request-id": [ - "c1a91c51-de3f-4a12-8433-465934a81f93" + "a0a45004-3230-4223-b3f4-728acb676759" ], "x-ms-correlation-request-id": [ - "c1a91c51-de3f-4a12-8433-465934a81f93" + "a0a45004-3230-4223-b3f4-728acb676759" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T235632Z:c1a91c51-de3f-4a12-8433-465934a81f93" + "WESTINDIA:20220517T134816Z:a0a45004-3230-4223-b3f4-728acb676759" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5023,7 +6906,7 @@ "nosniff" ], "Date": [ - "Thu, 24 Feb 2022 23:56:32 GMT" + "Tue, 17 May 2022 13:48:15 GMT" ], "Expires": [ "-1" @@ -5036,16 +6919,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzkwNTY0QTZGLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemt3TlRZMFFUWkdMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0M5NkE5M0E2LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSME01TmtFNU0wRTJMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" ] }, "ResponseHeaders": { @@ -5056,7 +6939,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzkwNTY0QTZGLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0M5NkE5M0E2LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -5065,13 +6948,13 @@ "11995" ], "x-ms-request-id": [ - "492ec7c7-f9db-4f53-bff0-320ecf1a40da" + "8e2fc617-0aad-4cae-b4e9-a59b04852e03" ], "x-ms-correlation-request-id": [ - "492ec7c7-f9db-4f53-bff0-320ecf1a40da" + "8e2fc617-0aad-4cae-b4e9-a59b04852e03" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T235648Z:492ec7c7-f9db-4f53-bff0-320ecf1a40da" + "WESTINDIA:20220517T134831Z:8e2fc617-0aad-4cae-b4e9-a59b04852e03" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5080,7 +6963,7 @@ "nosniff" ], "Date": [ - "Thu, 24 Feb 2022 23:56:47 GMT" + "Tue, 17 May 2022 13:48:31 GMT" ], "Expires": [ "-1" @@ -5093,16 +6976,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzkwNTY0QTZGLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemt3TlRZMFFUWkdMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0M5NkE5M0E2LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSME01TmtFNU0wRTJMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" ] }, "ResponseHeaders": { @@ -5113,7 +6996,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzkwNTY0QTZGLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0M5NkE5M0E2LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -5122,13 +7005,13 @@ "11994" ], "x-ms-request-id": [ - "9a567052-955c-4145-944c-2f8aa58b88f7" + "3cd94013-7cd9-49ef-9efd-5aea1a005636" ], "x-ms-correlation-request-id": [ - "9a567052-955c-4145-944c-2f8aa58b88f7" + "3cd94013-7cd9-49ef-9efd-5aea1a005636" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T235703Z:9a567052-955c-4145-944c-2f8aa58b88f7" + "WESTINDIA:20220517T134846Z:3cd94013-7cd9-49ef-9efd-5aea1a005636" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5137,7 +7020,7 @@ "nosniff" ], "Date": [ - "Thu, 24 Feb 2022 23:57:03 GMT" + "Tue, 17 May 2022 13:48:46 GMT" ], "Expires": [ "-1" @@ -5150,16 +7033,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzkwNTY0QTZGLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemt3TlRZMFFUWkdMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0M5NkE5M0E2LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSME01TmtFNU0wRTJMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" ] }, "ResponseHeaders": { @@ -5170,7 +7053,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzkwNTY0QTZGLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0M5NkE5M0E2LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -5179,13 +7062,13 @@ "11993" ], "x-ms-request-id": [ - "bf461d09-8660-441c-bb5b-47d16f8ba064" + "0b8c2e31-c790-4f81-a900-fe37454f064c" ], "x-ms-correlation-request-id": [ - "bf461d09-8660-441c-bb5b-47d16f8ba064" + "0b8c2e31-c790-4f81-a900-fe37454f064c" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T235718Z:bf461d09-8660-441c-bb5b-47d16f8ba064" + "WESTINDIA:20220517T134901Z:0b8c2e31-c790-4f81-a900-fe37454f064c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5194,7 +7077,7 @@ "nosniff" ], "Date": [ - "Thu, 24 Feb 2022 23:57:18 GMT" + "Tue, 17 May 2022 13:49:01 GMT" ], "Expires": [ "-1" @@ -5207,16 +7090,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzkwNTY0QTZGLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemt3TlRZMFFUWkdMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0M5NkE5M0E2LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSME01TmtFNU0wRTJMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" ] }, "ResponseHeaders": { @@ -5227,7 +7110,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzkwNTY0QTZGLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0M5NkE5M0E2LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -5236,13 +7119,13 @@ "11992" ], "x-ms-request-id": [ - "a7d7e84a-2ae0-4ba4-ac46-918a278a2d4f" + "46935021-2338-48d3-9439-7828f812ec6c" ], "x-ms-correlation-request-id": [ - "a7d7e84a-2ae0-4ba4-ac46-918a278a2d4f" + "46935021-2338-48d3-9439-7828f812ec6c" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T235734Z:a7d7e84a-2ae0-4ba4-ac46-918a278a2d4f" + "WESTINDIA:20220517T134917Z:46935021-2338-48d3-9439-7828f812ec6c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5251,7 +7134,7 @@ "nosniff" ], "Date": [ - "Thu, 24 Feb 2022 23:57:33 GMT" + "Tue, 17 May 2022 13:49:16 GMT" ], "Expires": [ "-1" @@ -5264,16 +7147,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzkwNTY0QTZGLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemt3TlRZMFFUWkdMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0M5NkE5M0E2LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSME01TmtFNU0wRTJMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" ] }, "ResponseHeaders": { @@ -5284,7 +7167,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzkwNTY0QTZGLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0M5NkE5M0E2LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -5293,13 +7176,13 @@ "11991" ], "x-ms-request-id": [ - "8aa2bc2a-b019-4241-a0ed-91f9269c30ba" + "485f66b4-a151-46de-b2c8-8f298dd7df5f" ], "x-ms-correlation-request-id": [ - "8aa2bc2a-b019-4241-a0ed-91f9269c30ba" + "485f66b4-a151-46de-b2c8-8f298dd7df5f" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T235749Z:8aa2bc2a-b019-4241-a0ed-91f9269c30ba" + "WESTINDIA:20220517T134932Z:485f66b4-a151-46de-b2c8-8f298dd7df5f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5308,7 +7191,7 @@ "nosniff" ], "Date": [ - "Thu, 24 Feb 2022 23:57:49 GMT" + "Tue, 17 May 2022 13:49:32 GMT" ], "Expires": [ "-1" @@ -5321,16 +7204,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzkwNTY0QTZGLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemt3TlRZMFFUWkdMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0M5NkE5M0E2LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSME01TmtFNU0wRTJMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" ] }, "ResponseHeaders": { @@ -5341,7 +7224,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzkwNTY0QTZGLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0M5NkE5M0E2LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -5350,13 +7233,13 @@ "11990" ], "x-ms-request-id": [ - "4eb9393c-87de-4663-99b5-51200ed6a6a0" + "bdd3218e-692c-468f-9586-c18350c5e58b" ], "x-ms-correlation-request-id": [ - "4eb9393c-87de-4663-99b5-51200ed6a6a0" + "bdd3218e-692c-468f-9586-c18350c5e58b" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T235805Z:4eb9393c-87de-4663-99b5-51200ed6a6a0" + "WESTINDIA:20220517T134947Z:bdd3218e-692c-468f-9586-c18350c5e58b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5365,7 +7248,7 @@ "nosniff" ], "Date": [ - "Thu, 24 Feb 2022 23:58:05 GMT" + "Tue, 17 May 2022 13:49:47 GMT" ], "Expires": [ "-1" @@ -5378,16 +7261,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzkwNTY0QTZGLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemt3TlRZMFFUWkdMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0M5NkE5M0E2LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSME01TmtFNU0wRTJMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" ] }, "ResponseHeaders": { @@ -5398,7 +7281,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzkwNTY0QTZGLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0M5NkE5M0E2LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -5407,13 +7290,13 @@ "11989" ], "x-ms-request-id": [ - "9981ad60-860c-43e1-a70c-df35210c20b5" + "a4e47522-1bbf-4df8-ae37-2ed2ddd15fe0" ], "x-ms-correlation-request-id": [ - "9981ad60-860c-43e1-a70c-df35210c20b5" + "a4e47522-1bbf-4df8-ae37-2ed2ddd15fe0" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T235820Z:9981ad60-860c-43e1-a70c-df35210c20b5" + "WESTINDIA:20220517T135002Z:a4e47522-1bbf-4df8-ae37-2ed2ddd15fe0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5422,7 +7305,7 @@ "nosniff" ], "Date": [ - "Thu, 24 Feb 2022 23:58:20 GMT" + "Tue, 17 May 2022 13:50:01 GMT" ], "Expires": [ "-1" @@ -5435,16 +7318,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzkwNTY0QTZGLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemt3TlRZMFFUWkdMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0M5NkE5M0E2LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSME01TmtFNU0wRTJMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" ] }, "ResponseHeaders": { @@ -5455,7 +7338,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzkwNTY0QTZGLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0M5NkE5M0E2LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -5464,13 +7347,13 @@ "11988" ], "x-ms-request-id": [ - "e16d2a8b-a377-4532-b829-b1cac5321542" + "aa871e53-ab45-474e-99ca-da83d74ed894" ], "x-ms-correlation-request-id": [ - "e16d2a8b-a377-4532-b829-b1cac5321542" + "aa871e53-ab45-474e-99ca-da83d74ed894" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T235836Z:e16d2a8b-a377-4532-b829-b1cac5321542" + "WESTINDIA:20220517T135017Z:aa871e53-ab45-474e-99ca-da83d74ed894" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5479,7 +7362,7 @@ "nosniff" ], "Date": [ - "Thu, 24 Feb 2022 23:58:36 GMT" + "Tue, 17 May 2022 13:50:16 GMT" ], "Expires": [ "-1" @@ -5492,16 +7375,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzkwNTY0QTZGLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemt3TlRZMFFUWkdMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0M5NkE5M0E2LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSME01TmtFNU0wRTJMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" ] }, "ResponseHeaders": { @@ -5512,7 +7395,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzkwNTY0QTZGLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0M5NkE5M0E2LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -5521,13 +7404,13 @@ "11987" ], "x-ms-request-id": [ - "e550c597-c3b4-407c-923a-dfecf0bf6567" + "1f089626-04fb-4eea-a07e-ad82e0112fb2" ], "x-ms-correlation-request-id": [ - "e550c597-c3b4-407c-923a-dfecf0bf6567" + "1f089626-04fb-4eea-a07e-ad82e0112fb2" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T235851Z:e550c597-c3b4-407c-923a-dfecf0bf6567" + "WESTINDIA:20220517T135033Z:1f089626-04fb-4eea-a07e-ad82e0112fb2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5536,7 +7419,7 @@ "nosniff" ], "Date": [ - "Thu, 24 Feb 2022 23:58:51 GMT" + "Tue, 17 May 2022 13:50:32 GMT" ], "Expires": [ "-1" @@ -5549,16 +7432,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzkwNTY0QTZGLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemt3TlRZMFFUWkdMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0M5NkE5M0E2LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSME01TmtFNU0wRTJMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" ] }, "ResponseHeaders": { @@ -5569,7 +7452,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzkwNTY0QTZGLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0M5NkE5M0E2LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -5578,13 +7461,13 @@ "11986" ], "x-ms-request-id": [ - "be702c93-5ad2-4569-bec6-12249aa1f246" + "ea78c664-d6d9-4251-a0cc-19a2aea6a2e3" ], "x-ms-correlation-request-id": [ - "be702c93-5ad2-4569-bec6-12249aa1f246" + "ea78c664-d6d9-4251-a0cc-19a2aea6a2e3" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T235907Z:be702c93-5ad2-4569-bec6-12249aa1f246" + "WESTINDIA:20220517T135048Z:ea78c664-d6d9-4251-a0cc-19a2aea6a2e3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5593,7 +7476,7 @@ "nosniff" ], "Date": [ - "Thu, 24 Feb 2022 23:59:06 GMT" + "Tue, 17 May 2022 13:50:47 GMT" ], "Expires": [ "-1" @@ -5606,16 +7489,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzkwNTY0QTZGLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemt3TlRZMFFUWkdMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0M5NkE5M0E2LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSME01TmtFNU0wRTJMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" ] }, "ResponseHeaders": { @@ -5626,7 +7509,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzkwNTY0QTZGLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0M5NkE5M0E2LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -5635,13 +7518,13 @@ "11985" ], "x-ms-request-id": [ - "d5472d0f-31f1-4e9f-baf7-97ea7a9505cf" + "fbd215f0-5e90-4a15-baf8-25e0df0d3d6e" ], "x-ms-correlation-request-id": [ - "d5472d0f-31f1-4e9f-baf7-97ea7a9505cf" + "fbd215f0-5e90-4a15-baf8-25e0df0d3d6e" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T235922Z:d5472d0f-31f1-4e9f-baf7-97ea7a9505cf" + "WESTINDIA:20220517T135103Z:fbd215f0-5e90-4a15-baf8-25e0df0d3d6e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5650,7 +7533,7 @@ "nosniff" ], "Date": [ - "Thu, 24 Feb 2022 23:59:22 GMT" + "Tue, 17 May 2022 13:51:02 GMT" ], "Expires": [ "-1" @@ -5663,16 +7546,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzkwNTY0QTZGLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemt3TlRZMFFUWkdMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0M5NkE5M0E2LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSME01TmtFNU0wRTJMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" ] }, "ResponseHeaders": { @@ -5683,7 +7566,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzkwNTY0QTZGLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0M5NkE5M0E2LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -5692,13 +7575,13 @@ "11984" ], "x-ms-request-id": [ - "bb1d54b2-9eab-4286-a2e1-5307615b7d25" + "30f8db14-d768-459a-b25a-cbcd002f07d2" ], "x-ms-correlation-request-id": [ - "bb1d54b2-9eab-4286-a2e1-5307615b7d25" + "30f8db14-d768-459a-b25a-cbcd002f07d2" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T235938Z:bb1d54b2-9eab-4286-a2e1-5307615b7d25" + "WESTINDIA:20220517T135118Z:30f8db14-d768-459a-b25a-cbcd002f07d2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5707,7 +7590,7 @@ "nosniff" ], "Date": [ - "Thu, 24 Feb 2022 23:59:37 GMT" + "Tue, 17 May 2022 13:51:17 GMT" ], "Expires": [ "-1" @@ -5720,16 +7603,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzkwNTY0QTZGLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemt3TlRZMFFUWkdMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0M5NkE5M0E2LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSME01TmtFNU0wRTJMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" ] }, "ResponseHeaders": { @@ -5743,13 +7626,13 @@ "11983" ], "x-ms-request-id": [ - "82df35bc-2f2f-4cf7-af28-695ecfe36adf" + "5021d780-dec3-4614-a20e-111fefaa4a84" ], "x-ms-correlation-request-id": [ - "82df35bc-2f2f-4cf7-af28-695ecfe36adf" + "5021d780-dec3-4614-a20e-111fefaa4a84" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T235953Z:82df35bc-2f2f-4cf7-af28-695ecfe36adf" + "WESTINDIA:20220517T135133Z:5021d780-dec3-4614-a20e-111fefaa4a84" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5758,7 +7641,7 @@ "nosniff" ], "Date": [ - "Thu, 24 Feb 2022 23:59:52 GMT" + "Tue, 17 May 2022 13:51:33 GMT" ], "Expires": [ "-1" @@ -5771,16 +7654,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzkwNTY0QTZGLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemt3TlRZMFFUWkdMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0M5NkE5M0E2LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSME01TmtFNU0wRTJMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" ] }, "ResponseHeaders": { @@ -5794,13 +7677,13 @@ "11982" ], "x-ms-request-id": [ - "0d129904-6e2b-4a7c-951f-b01873707cc6" + "4aad12e7-2b13-453b-933c-79507be334f7" ], "x-ms-correlation-request-id": [ - "0d129904-6e2b-4a7c-951f-b01873707cc6" + "4aad12e7-2b13-453b-933c-79507be334f7" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220224T235954Z:0d129904-6e2b-4a7c-951f-b01873707cc6" + "WESTINDIA:20220517T135134Z:4aad12e7-2b13-453b-933c-79507be334f7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5809,7 +7692,7 @@ "nosniff" ], "Date": [ - "Thu, 24 Feb 2022 23:59:53 GMT" + "Tue, 17 May 2022 13:51:34 GMT" ], "Expires": [ "-1" @@ -5824,7 +7707,7 @@ ], "Names": {}, "Variables": { - "SubscriptionId": "e37510d7-33b6-4676-886f-ee75bcc01871", - "NamingSuffix": "90564a6f-a4b4-42c4-8a8c-26642ed1b1d4" + "SubscriptionId": "da364f0f-307b-41c9-9d47-b7413ec45535", + "NamingSuffix": "c96a93a6-8bcc-4a44-810d-6acc6f04e584" } } \ No newline at end of file diff --git a/src/RecoveryServices/RecoveryServices.Backup.Test/SessionRecords/Microsoft.Azure.Commands.RecoveryServices.Backup.Test.ScenarioTests.JobTests/TestAzureFSGetJob.json b/src/RecoveryServices/RecoveryServices.Backup.Test/SessionRecords/Microsoft.Azure.Commands.RecoveryServices.Backup.Test.ScenarioTests.JobTests/TestAzureFSGetJob.json index ebd6cc8f3e48..2531542741a8 100644 --- a/src/RecoveryServices/RecoveryServices.Backup.Test/SessionRecords/Microsoft.Azure.Commands.RecoveryServices.Backup.Test.ScenarioTests.JobTests/TestAzureFSGetJob.json +++ b/src/RecoveryServices/RecoveryServices.Backup.Test/SessionRecords/Microsoft.Azure.Commands.RecoveryServices.Backup.Test.ScenarioTests.JobTests/TestAzureFSGetJob.json @@ -7,13 +7,13 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5bc88a5c-24e8-4309-96e5-96ccc4f3d819" + "156144a7-7178-4b8c-9a28-69dc112c9ae5" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesClient/4.3.2.0" @@ -30,10 +30,10 @@ "nosniff" ], "x-ms-request-id": [ - "7a0bceaf-cded-49fd-b28c-d227985cbeda" + "3ee330e0-bbec-46ba-b09a-90dfe72091d3" ], "x-ms-client-request-id": [ - "5bc88a5c-24e8-4309-96e5-96ccc4f3d819" + "156144a7-7178-4b8c-9a28-69dc112c9ae5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -45,16 +45,16 @@ "11999" ], "x-ms-correlation-request-id": [ - "7a0bceaf-cded-49fd-b28c-d227985cbeda" + "3ee330e0-bbec-46ba-b09a-90dfe72091d3" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T113954Z:7a0bceaf-cded-49fd-b28c-d227985cbeda" + "WESTINDIA:20220516T162030Z:3ee330e0-bbec-46ba-b09a-90dfe72091d3" ], "Date": [ - "Sat, 26 Mar 2022 11:39:54 GMT" + "Mon, 16 May 2022 16:20:29 GMT" ], "Content-Length": [ - "467" + "519" ], "Content-Type": [ "application/json" @@ -63,26 +63,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pstestrsv8895\",\r\n \"etag\": \"W/\\\"datetime'2022-02-18T07%3A20%3A25.5509044Z'\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateEndpointStateForBackup\": \"None\",\r\n \"privateEndpointStateForSiteRecovery\": \"None\"\r\n },\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"RS0\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pstestrsv8895\",\r\n \"etag\": \"W/\\\"datetime'2022-02-18T07%3A20%3A25.5509044Z'\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateEndpointStateForBackup\": \"None\",\r\n \"privateEndpointStateForSiteRecovery\": \"None\",\r\n \"networkSettings\": {\r\n \"publicNetworkAccess\": \"Enabled\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"RS0\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupProtectionContainers?$filter=friendlyName%20eq%20'pstestsa8895'%20and%20backupManagementType%20eq%20'AzureStorage'%20and%20status%20eq%20'Registered'&api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwUHJvdGVjdGlvbkNvbnRhaW5lcnM/JGZpbHRlcj1mcmllbmRseU5hbWUlMjBlcSUyMCdwc3Rlc3RzYTg4OTUnJTIwYW5kJTIwYmFja3VwTWFuYWdlbWVudFR5cGUlMjBlcSUyMCdBenVyZVN0b3JhZ2UnJTIwYW5kJTIwc3RhdHVzJTIwZXElMjAnUmVnaXN0ZXJlZCcmYXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupProtectionContainers?$filter=friendlyName%20eq%20'pstestsa8895'%20and%20backupManagementType%20eq%20'AzureStorage'%20and%20status%20eq%20'Registered'&api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwUHJvdGVjdGlvbkNvbnRhaW5lcnM/JGZpbHRlcj1mcmllbmRseU5hbWUlMjBlcSUyMCdwc3Rlc3RzYTg4OTUnJTIwYW5kJTIwYmFja3VwTWFuYWdlbWVudFR5cGUlMjBlcSUyMCdBenVyZVN0b3JhZ2UnJTIwYW5kJTIwc3RhdHVzJTIwZXElMjAnUmVnaXN0ZXJlZCcmYXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "577971d5-5ae8-4613-8c8a-cf842810128d" + "7b949c05-17a6-4a04-8ac2-67a000235fcf" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -96,11 +96,11 @@ "nosniff" ], "x-ms-request-id": [ - "0d36d4f8-41a2-4b16-b214-8d0d2c02226d" + "1defd1bf-94c8-4cec-9a31-a1a229a9bd92" ], "x-ms-client-request-id": [ - "577971d5-5ae8-4613-8c8a-cf842810128d", - "577971d5-5ae8-4613-8c8a-cf842810128d" + "7b949c05-17a6-4a04-8ac2-67a000235fcf", + "7b949c05-17a6-4a04-8ac2-67a000235fcf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -115,13 +115,13 @@ "299" ], "x-ms-correlation-request-id": [ - "0d36d4f8-41a2-4b16-b214-8d0d2c02226d" + "1defd1bf-94c8-4cec-9a31-a1a229a9bd92" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T113955Z:0d36d4f8-41a2-4b16-b214-8d0d2c02226d" + "WESTINDIA:20220516T162032Z:1defd1bf-94c8-4cec-9a31-a1a229a9bd92" ], "Date": [ - "Sat, 26 Mar 2022 11:39:54 GMT" + "Mon, 16 May 2022 16:20:31 GMT" ], "Content-Length": [ "12" @@ -137,22 +137,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupProtectionContainers?$filter=friendlyName%20eq%20'pstestsa8895'%20and%20backupManagementType%20eq%20'AzureStorage'%20and%20status%20eq%20'Registered'&api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwUHJvdGVjdGlvbkNvbnRhaW5lcnM/JGZpbHRlcj1mcmllbmRseU5hbWUlMjBlcSUyMCdwc3Rlc3RzYTg4OTUnJTIwYW5kJTIwYmFja3VwTWFuYWdlbWVudFR5cGUlMjBlcSUyMCdBenVyZVN0b3JhZ2UnJTIwYW5kJTIwc3RhdHVzJTIwZXElMjAnUmVnaXN0ZXJlZCcmYXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupProtectionContainers?$filter=friendlyName%20eq%20'pstestsa8895'%20and%20backupManagementType%20eq%20'AzureStorage'%20and%20status%20eq%20'Registered'&api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwUHJvdGVjdGlvbkNvbnRhaW5lcnM/JGZpbHRlcj1mcmllbmRseU5hbWUlMjBlcSUyMCdwc3Rlc3RzYTg4OTUnJTIwYW5kJTIwYmFja3VwTWFuYWdlbWVudFR5cGUlMjBlcSUyMCdBenVyZVN0b3JhZ2UnJTIwYW5kJTIwc3RhdHVzJTIwZXElMjAnUmVnaXN0ZXJlZCcmYXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "77a5f711-f294-46a6-a946-8f0d030d19ee" + "c3db635c-f4fe-4b47-b5d0-95e0ab5e7d06" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -166,11 +166,11 @@ "nosniff" ], "x-ms-request-id": [ - "bb089ee6-4f8b-4611-84bb-e680ad5a5aed" + "87779d2c-944a-4b63-89ba-bf632cf5eb8f" ], "x-ms-client-request-id": [ - "77a5f711-f294-46a6-a946-8f0d030d19ee", - "77a5f711-f294-46a6-a946-8f0d030d19ee" + "c3db635c-f4fe-4b47-b5d0-95e0ab5e7d06", + "c3db635c-f4fe-4b47-b5d0-95e0ab5e7d06" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,13 +185,13 @@ "297" ], "x-ms-correlation-request-id": [ - "bb089ee6-4f8b-4611-84bb-e680ad5a5aed" + "87779d2c-944a-4b63-89ba-bf632cf5eb8f" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T114111Z:bb089ee6-4f8b-4611-84bb-e680ad5a5aed" + "WESTINDIA:20220516T162131Z:87779d2c-944a-4b63-89ba-bf632cf5eb8f" ], "Date": [ - "Sat, 26 Mar 2022 11:41:10 GMT" + "Mon, 16 May 2022 16:21:30 GMT" ], "Content-Length": [ "827" @@ -207,22 +207,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupProtectionContainers?$filter=friendlyName%20eq%20'pstestsa8895'%20and%20backupManagementType%20eq%20'AzureStorage'%20and%20status%20eq%20'Registered'&api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwUHJvdGVjdGlvbkNvbnRhaW5lcnM/JGZpbHRlcj1mcmllbmRseU5hbWUlMjBlcSUyMCdwc3Rlc3RzYTg4OTUnJTIwYW5kJTIwYmFja3VwTWFuYWdlbWVudFR5cGUlMjBlcSUyMCdBenVyZVN0b3JhZ2UnJTIwYW5kJTIwc3RhdHVzJTIwZXElMjAnUmVnaXN0ZXJlZCcmYXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupProtectionContainers?$filter=friendlyName%20eq%20'pstestsa8895'%20and%20backupManagementType%20eq%20'AzureStorage'%20and%20status%20eq%20'Registered'&api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwUHJvdGVjdGlvbkNvbnRhaW5lcnM/JGZpbHRlcj1mcmllbmRseU5hbWUlMjBlcSUyMCdwc3Rlc3RzYTg4OTUnJTIwYW5kJTIwYmFja3VwTWFuYWdlbWVudFR5cGUlMjBlcSUyMCdBenVyZVN0b3JhZ2UnJTIwYW5kJTIwc3RhdHVzJTIwZXElMjAnUmVnaXN0ZXJlZCcmYXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "57ec54b0-7100-4050-a025-92e6106443b9" + "df49f707-d74c-4e00-8a88-1b5580def6c6" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -236,11 +236,11 @@ "nosniff" ], "x-ms-request-id": [ - "fffdbf1c-5385-444a-8d21-d392633ddd10" + "9ee2eaf7-e075-4bc5-895f-5247cb86fd6c" ], "x-ms-client-request-id": [ - "57ec54b0-7100-4050-a025-92e6106443b9", - "57ec54b0-7100-4050-a025-92e6106443b9" + "df49f707-d74c-4e00-8a88-1b5580def6c6", + "df49f707-d74c-4e00-8a88-1b5580def6c6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -255,13 +255,13 @@ "296" ], "x-ms-correlation-request-id": [ - "fffdbf1c-5385-444a-8d21-d392633ddd10" + "9ee2eaf7-e075-4bc5-895f-5247cb86fd6c" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T114143Z:fffdbf1c-5385-444a-8d21-d392633ddd10" + "WESTINDIA:20220516T162209Z:9ee2eaf7-e075-4bc5-895f-5247cb86fd6c" ], "Date": [ - "Sat, 26 Mar 2022 11:41:42 GMT" + "Mon, 16 May 2022 16:22:08 GMT" ], "Content-Length": [ "827" @@ -277,22 +277,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupPolicies/afspolicy1?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwUG9saWNpZXMvYWZzcG9saWN5MT9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupPolicies/afspolicy1?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwUG9saWNpZXMvYWZzcG9saWN5MT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8fc812af-5f45-436c-a944-7bf72ad46d99" + "67a29c22-d82c-4bd1-9642-a76390073a1a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -306,11 +306,11 @@ "nosniff" ], "x-ms-request-id": [ - "b4afc886-ea51-4e7d-a9c2-7fe92a19a162" + "381a7c34-1455-4ae9-a1c8-46f3df2dc9e4" ], "x-ms-client-request-id": [ - "8fc812af-5f45-436c-a944-7bf72ad46d99", - "8fc812af-5f45-436c-a944-7bf72ad46d99" + "67a29c22-d82c-4bd1-9642-a76390073a1a", + "67a29c22-d82c-4bd1-9642-a76390073a1a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -325,13 +325,13 @@ "299" ], "x-ms-correlation-request-id": [ - "b4afc886-ea51-4e7d-a9c2-7fe92a19a162" + "381a7c34-1455-4ae9-a1c8-46f3df2dc9e4" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T113955Z:b4afc886-ea51-4e7d-a9c2-7fe92a19a162" + "WESTINDIA:20220516T162032Z:381a7c34-1455-4ae9-a1c8-46f3df2dc9e4" ], "Date": [ - "Sat, 26 Mar 2022 11:39:55 GMT" + "Mon, 16 May 2022 16:20:32 GMT" ], "Content-Length": [ "693" @@ -347,22 +347,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupProtectionContainers?$filter=backupManagementType%20eq%20'AzureStorage'&api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwUHJvdGVjdGlvbkNvbnRhaW5lcnM/JGZpbHRlcj1iYWNrdXBNYW5hZ2VtZW50VHlwZSUyMGVxJTIwJ0F6dXJlU3RvcmFnZScmYXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupProtectionContainers?$filter=backupManagementType%20eq%20'AzureStorage'&api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwUHJvdGVjdGlvbkNvbnRhaW5lcnM/JGZpbHRlcj1iYWNrdXBNYW5hZ2VtZW50VHlwZSUyMGVxJTIwJ0F6dXJlU3RvcmFnZScmYXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2bd18e52-f1e4-40f4-be9f-37a5dd632d73" + "3495fd44-a614-44cf-b9c6-259732e0f5ac" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -376,11 +376,11 @@ "nosniff" ], "x-ms-request-id": [ - "39725112-6a08-4e45-bf6f-b19b71885e0f" + "e31a522a-71fd-48d1-8d3e-d88a5c039ebb" ], "x-ms-client-request-id": [ - "2bd18e52-f1e4-40f4-be9f-37a5dd632d73", - "2bd18e52-f1e4-40f4-be9f-37a5dd632d73" + "3495fd44-a614-44cf-b9c6-259732e0f5ac", + "3495fd44-a614-44cf-b9c6-259732e0f5ac" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -395,13 +395,13 @@ "298" ], "x-ms-correlation-request-id": [ - "39725112-6a08-4e45-bf6f-b19b71885e0f" + "e31a522a-71fd-48d1-8d3e-d88a5c039ebb" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T113956Z:39725112-6a08-4e45-bf6f-b19b71885e0f" + "WESTINDIA:20220516T162033Z:e31a522a-71fd-48d1-8d3e-d88a5c039ebb" ], "Date": [ - "Sat, 26 Mar 2022 11:39:55 GMT" + "Mon, 16 May 2022 16:20:32 GMT" ], "Content-Length": [ "12" @@ -417,22 +417,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers?$filter=backupManagementType%20eq%20'AzureStorage'&api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0YWJsZUNvbnRhaW5lcnM/JGZpbHRlcj1iYWNrdXBNYW5hZ2VtZW50VHlwZSUyMGVxJTIwJ0F6dXJlU3RvcmFnZScmYXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers?$filter=backupManagementType%20eq%20'AzureStorage'&api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0YWJsZUNvbnRhaW5lcnM/JGZpbHRlcj1iYWNrdXBNYW5hZ2VtZW50VHlwZSUyMGVxJTIwJ0F6dXJlU3RvcmFnZScmYXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2bd18e52-f1e4-40f4-be9f-37a5dd632d73" + "3495fd44-a614-44cf-b9c6-259732e0f5ac" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -446,11 +446,11 @@ "nosniff" ], "x-ms-request-id": [ - "bc1cfac7-a53a-447d-a5be-d813a44af1da" + "8da2ccc8-db2b-4069-9fef-a987f03fa9cb" ], "x-ms-client-request-id": [ - "2bd18e52-f1e4-40f4-be9f-37a5dd632d73", - "2bd18e52-f1e4-40f4-be9f-37a5dd632d73" + "3495fd44-a614-44cf-b9c6-259732e0f5ac", + "3495fd44-a614-44cf-b9c6-259732e0f5ac" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -465,16 +465,16 @@ "299" ], "x-ms-correlation-request-id": [ - "bc1cfac7-a53a-447d-a5be-d813a44af1da" + "8da2ccc8-db2b-4069-9fef-a987f03fa9cb" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T113956Z:bc1cfac7-a53a-447d-a5be-d813a44af1da" + "WESTINDIA:20220516T162034Z:8da2ccc8-db2b-4069-9fef-a987f03fa9cb" ], "Date": [ - "Sat, 26 Mar 2022 11:39:56 GMT" + "Mon, 16 May 2022 16:20:33 GMT" ], "Content-Length": [ - "14925" + "24516" ], "Content-Type": [ "application/json" @@ -483,26 +483,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;afstests;02xseacan01otds1\",\r\n \"name\": \"StorageContainer;Storage;afstests;02xseacan01otds1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"02xseacan01otds1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/02xseacan01otds1\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;afstests;afsbackupsa\",\r\n \"name\": \"StorageContainer;Storage;afstests;afsbackupsa\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"afsbackupsa\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/afsbackupsa\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;afstests;storageysci5wbex6jyc\",\r\n \"name\": \"StorageContainer;Storage;afstests;storageysci5wbex6jyc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"storageysci5wbex6jyc\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/storageysci5wbex6jyc\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;akkanaseCMK;0byseapod01otds1\",\r\n \"name\": \"StorageContainer;Storage;akkanaseCMK;0byseapod01otds1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"0byseapod01otds1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseCMK/providers/Microsoft.Storage/storageAccounts/0byseapod01otds1\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;akkanaseGRSVault;frmseapod01otds1\",\r\n \"name\": \"StorageContainer;Storage;akkanaseGRSVault;frmseapod01otds1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"frmseapod01otds1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseGRSVault/providers/Microsoft.Storage/storageAccounts/frmseapod01otds1\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;cmk.system;cmkautomationstore\",\r\n \"name\": \"StorageContainer;Storage;cmk.system;cmkautomationstore\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"cmkautomationstore\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/cmk.system/providers/Microsoft.Storage/storageAccounts/cmkautomationstore\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;disk-bvt-test-rg;hv3seapod01otds1\",\r\n \"name\": \"StorageContainer;Storage;disk-bvt-test-rg;hv3seapod01otds1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"hv3seapod01otds1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/disk-bvt-test-rg/providers/Microsoft.Storage/storageAccounts/hv3seapod01otds1\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;DoNotUse-OSS-BVT-SEA-RG;dontuseossrestoreasfile\",\r\n \"name\": \"StorageContainer;Storage;DoNotUse-OSS-BVT-SEA-RG;dontuseossrestoreasfile\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"dontuseossrestoreasfile\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/DoNotUse-OSS-BVT-SEA-RG/providers/Microsoft.Storage/storageAccounts/dontuseossrestoreasfile\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;iaasvm.encryptedvm;iaasvmencryptedvmdiag170\",\r\n \"name\": \"StorageContainer;Storage;iaasvm.encryptedvm;iaasvmencryptedvmdiag170\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"iaasvmencryptedvmdiag170\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.encryptedvm/providers/Microsoft.Storage/storageAccounts/iaasvmencryptedvmdiag170\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;iaasvm.existing;iaasextstore1\",\r\n \"name\": \"StorageContainer;Storage;iaasvm.existing;iaasextstore1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"iaasextstore1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.existing/providers/Microsoft.Storage/storageAccounts/iaasextstore1\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;iaasvm.new;iaasvmnewdiag1\",\r\n \"name\": \"StorageContainer;Storage;iaasvm.new;iaasvmnewdiag1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"iaasvmnewdiag1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.new/providers/Microsoft.Storage/storageAccounts/iaasvmnewdiag1\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;iaasvmhanaworkload.existing;iaasvmhanaworkloadexisti\",\r\n \"name\": \"StorageContainer;Storage;iaasvmhanaworkload.existing;iaasvmhanaworkloadexisti\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"iaasvmhanaworkloadexisti\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvmhanaworkload.existing/providers/Microsoft.Storage/storageAccounts/iaasvmhanaworkloadexisti\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;pscloudtestrg;pscloudtestrgdiag\",\r\n \"name\": \"StorageContainer;Storage;pscloudtestrg;pscloudtestrgdiag\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"pscloudtestrgdiag\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pscloudtestrg/providers/Microsoft.Storage/storageAccounts/pscloudtestrgdiag\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;PSTestRG1e5a278b;pstestsa1e5a278b\",\r\n \"name\": \"StorageContainer;Storage;PSTestRG1e5a278b;pstestsa1e5a278b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"pstestsa1e5a278b\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG1e5a278b/providers/Microsoft.Storage/storageAccounts/pstestsa1e5a278b\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;PSTestRG235879ba;pstestsa235879ba\",\r\n \"name\": \"StorageContainer;Storage;PSTestRG235879ba;pstestsa235879ba\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"pstestsa235879ba\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG235879ba/providers/Microsoft.Storage/storageAccounts/pstestsa235879ba\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;PSTestRG54bdf8da;pstestsa54bdf8da\",\r\n \"name\": \"StorageContainer;Storage;PSTestRG54bdf8da;pstestsa54bdf8da\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"pstestsa54bdf8da\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG54bdf8da/providers/Microsoft.Storage/storageAccounts/pstestsa54bdf8da\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;PSTestRG59e1706f;pstestsa59e1706f\",\r\n \"name\": \"StorageContainer;Storage;PSTestRG59e1706f;pstestsa59e1706f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"pstestsa59e1706f\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG59e1706f/providers/Microsoft.Storage/storageAccounts/pstestsa59e1706f\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895\",\r\n \"name\": \"StorageContainer;Storage;pstestrg8895;pstestsa8895\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"pstestsa8895\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstestsa8895\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;pstestrg8895;pstesttargetsa8895\",\r\n \"name\": \"StorageContainer;Storage;pstestrg8895;pstesttargetsa8895\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"pstesttargetsa8895\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstesttargetsa8895\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;pstestrg8895;pstesttargetsa8896\",\r\n \"name\": \"StorageContainer;Storage;pstestrg8895;pstesttargetsa8896\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"pstesttargetsa8896\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstesttargetsa8896\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;sambit_rg;sarathsa3\",\r\n \"name\": \"StorageContainer;Storage;sambit_rg;sarathsa3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"sarathsa3\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/sambit_rg/providers/Microsoft.Storage/storageAccounts/sarathsa3\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;afstests;02xseacan01otds1\",\r\n \"name\": \"StorageContainer;Storage;afstests;02xseacan01otds1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"02xseacan01otds1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/02xseacan01otds1\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;afstests;afsbackupsa\",\r\n \"name\": \"StorageContainer;Storage;afstests;afsbackupsa\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"afsbackupsa\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/afsbackupsa\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;afstests;storageysci5wbex6jyc\",\r\n \"name\": \"StorageContainer;Storage;afstests;storageysci5wbex6jyc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"storageysci5wbex6jyc\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/storageysci5wbex6jyc\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;akkanaseCMK;0byseapod01otds1\",\r\n \"name\": \"StorageContainer;Storage;akkanaseCMK;0byseapod01otds1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"0byseapod01otds1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseCMK/providers/Microsoft.Storage/storageAccounts/0byseapod01otds1\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;akkanaseGRSVault;frmseapod01otds1\",\r\n \"name\": \"StorageContainer;Storage;akkanaseGRSVault;frmseapod01otds1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"frmseapod01otds1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/akkanaseGRSVault/providers/Microsoft.Storage/storageAccounts/frmseapod01otds1\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rg2z2u2iy224;clitestupktrqr622evq7uzq\",\r\n \"name\": \"StorageContainer;Storage;clitest.rg2z2u2iy224;clitestupktrqr622evq7uzq\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"clitestupktrqr622evq7uzq\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rg2z2u2iy224/providers/Microsoft.Storage/storageAccounts/clitestupktrqr622evq7uzq\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rg3szxf3a3my;clitestjcdqcd3tnqg5bhtr2\",\r\n \"name\": \"StorageContainer;Storage;clitest.rg3szxf3a3my;clitestjcdqcd3tnqg5bhtr2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"clitestjcdqcd3tnqg5bhtr2\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rg3szxf3a3my/providers/Microsoft.Storage/storageAccounts/clitestjcdqcd3tnqg5bhtr2\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rg5daabmbo3e;clitestfky4kz2v5vosldvhe\",\r\n \"name\": \"StorageContainer;Storage;clitest.rg5daabmbo3e;clitestfky4kz2v5vosldvhe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"clitestfky4kz2v5vosldvhe\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rg5daabmbo3e/providers/Microsoft.Storage/storageAccounts/clitestfky4kz2v5vosldvhe\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rg7leptekwovuif35xu6k3mb6lhszl4fkmod7jkg7yckt4v7epruxvjo6ty2hzsurwh;clitest3cgxtcwowikxqlds4\",\r\n \"name\": \"StorageContainer;Storage;clitest.rg7leptekwovuif35xu6k3mb6lhszl4fkmod7jkg7yckt4v7epruxvjo6ty2hzsurwh;clitest3cgxtcwowikxqlds4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"clitest3cgxtcwowikxqlds4\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rg7leptekwovuif35xu6k3mb6lhszl4fkmod7jkg7yckt4v7epruxvjo6ty2hzsurwh/providers/Microsoft.Storage/storageAccounts/clitest3cgxtcwowikxqlds4\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgbwwuivauc5;clitesttmyfbjqgepkrqhedt\",\r\n \"name\": \"StorageContainer;Storage;clitest.rgbwwuivauc5;clitesttmyfbjqgepkrqhedt\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"clitesttmyfbjqgepkrqhedt\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rgbwwuivauc5/providers/Microsoft.Storage/storageAccounts/clitesttmyfbjqgepkrqhedt\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgf6xl2fxqfv;clitestophphng5ygnzbvq3a\",\r\n \"name\": \"StorageContainer;Storage;clitest.rgf6xl2fxqfv;clitestophphng5ygnzbvq3a\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"clitestophphng5ygnzbvq3a\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rgf6xl2fxqfv/providers/Microsoft.Storage/storageAccounts/clitestophphng5ygnzbvq3a\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rglgudxl7bi5;clitestvv2va5tikpqjvoq6o\",\r\n \"name\": \"StorageContainer;Storage;clitest.rglgudxl7bi5;clitestvv2va5tikpqjvoq6o\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"clitestvv2va5tikpqjvoq6o\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rglgudxl7bi5/providers/Microsoft.Storage/storageAccounts/clitestvv2va5tikpqjvoq6o\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rglx72s62qimgelno2o6rr34a5ovdikhzq5k6dc7773qrbodtnrdcguic5hpiciscne;clitestva4qmim2g5c3cb2tz\",\r\n \"name\": \"StorageContainer;Storage;clitest.rglx72s62qimgelno2o6rr34a5ovdikhzq5k6dc7773qrbodtnrdcguic5hpiciscne;clitestva4qmim2g5c3cb2tz\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"clitestva4qmim2g5c3cb2tz\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rglx72s62qimgelno2o6rr34a5ovdikhzq5k6dc7773qrbodtnrdcguic5hpiciscne/providers/Microsoft.Storage/storageAccounts/clitestva4qmim2g5c3cb2tz\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgm7e2kiyzoto4iaicwwkdomftb7zki5kh2xxwh6yyskpflgsrpkrygkpwpdcltggyb;clitest7gyg4gqt4sxirqdkc\",\r\n \"name\": \"StorageContainer;Storage;clitest.rgm7e2kiyzoto4iaicwwkdomftb7zki5kh2xxwh6yyskpflgsrpkrygkpwpdcltggyb;clitest7gyg4gqt4sxirqdkc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"clitest7gyg4gqt4sxirqdkc\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rgm7e2kiyzoto4iaicwwkdomftb7zki5kh2xxwh6yyskpflgsrpkrygkpwpdcltggyb/providers/Microsoft.Storage/storageAccounts/clitest7gyg4gqt4sxirqdkc\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgqhfzt7fh5x;clitestz6nwne7j34dloacko\",\r\n \"name\": \"StorageContainer;Storage;clitest.rgqhfzt7fh5x;clitestz6nwne7j34dloacko\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"clitestz6nwne7j34dloacko\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rgqhfzt7fh5x/providers/Microsoft.Storage/storageAccounts/clitestz6nwne7j34dloacko\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgwsn3drxg3s;clitestukj4en4puxeag7shu\",\r\n \"name\": \"StorageContainer;Storage;clitest.rgwsn3drxg3s;clitestukj4en4puxeag7shu\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"clitestukj4en4puxeag7shu\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rgwsn3drxg3s/providers/Microsoft.Storage/storageAccounts/clitestukj4en4puxeag7shu\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgwsn3drxg3s;clitestw7rgjg33mzx6cc3su\",\r\n \"name\": \"StorageContainer;Storage;clitest.rgwsn3drxg3s;clitestw7rgjg33mzx6cc3su\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"clitestw7rgjg33mzx6cc3su\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest.rgwsn3drxg3s/providers/Microsoft.Storage/storageAccounts/clitestw7rgjg33mzx6cc3su\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;cmk.system;cmkautomationstore\",\r\n \"name\": \"StorageContainer;Storage;cmk.system;cmkautomationstore\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"cmkautomationstore\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/cmk.system/providers/Microsoft.Storage/storageAccounts/cmkautomationstore\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;disk-bvt-test-rg;hv3seapod01otds1\",\r\n \"name\": \"StorageContainer;Storage;disk-bvt-test-rg;hv3seapod01otds1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"hv3seapod01otds1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/disk-bvt-test-rg/providers/Microsoft.Storage/storageAccounts/hv3seapod01otds1\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;DoNotUse-OSS-BVT-SEA-RG;dontuseossrestoreasfile\",\r\n \"name\": \"StorageContainer;Storage;DoNotUse-OSS-BVT-SEA-RG;dontuseossrestoreasfile\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"dontuseossrestoreasfile\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/DoNotUse-OSS-BVT-SEA-RG/providers/Microsoft.Storage/storageAccounts/dontuseossrestoreasfile\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;iaasvm.encryptedvm;iaasvmencryptedvmdiag170\",\r\n \"name\": \"StorageContainer;Storage;iaasvm.encryptedvm;iaasvmencryptedvmdiag170\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"iaasvmencryptedvmdiag170\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.encryptedvm/providers/Microsoft.Storage/storageAccounts/iaasvmencryptedvmdiag170\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;iaasvm.existing;iaasextstore1\",\r\n \"name\": \"StorageContainer;Storage;iaasvm.existing;iaasextstore1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"iaasextstore1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.existing/providers/Microsoft.Storage/storageAccounts/iaasextstore1\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;iaasvm.new;iaasvmnewdiag1\",\r\n \"name\": \"StorageContainer;Storage;iaasvm.new;iaasvmnewdiag1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"iaasvmnewdiag1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.new/providers/Microsoft.Storage/storageAccounts/iaasvmnewdiag1\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;iaasvmhanaworkload.existing;iaasvmhanaworkloadexisti\",\r\n \"name\": \"StorageContainer;Storage;iaasvmhanaworkload.existing;iaasvmhanaworkloadexisti\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"iaasvmhanaworkloadexisti\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvmhanaworkload.existing/providers/Microsoft.Storage/storageAccounts/iaasvmhanaworkloadexisti\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;pscloudtestrg;pscloudtestrgdiag\",\r\n \"name\": \"StorageContainer;Storage;pscloudtestrg;pscloudtestrgdiag\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"pscloudtestrgdiag\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pscloudtestrg/providers/Microsoft.Storage/storageAccounts/pscloudtestrgdiag\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;PSTestRG1e5a278b;pstestsa1e5a278b\",\r\n \"name\": \"StorageContainer;Storage;PSTestRG1e5a278b;pstestsa1e5a278b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"pstestsa1e5a278b\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG1e5a278b/providers/Microsoft.Storage/storageAccounts/pstestsa1e5a278b\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;PSTestRG235879ba;pstestsa235879ba\",\r\n \"name\": \"StorageContainer;Storage;PSTestRG235879ba;pstestsa235879ba\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"pstestsa235879ba\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG235879ba/providers/Microsoft.Storage/storageAccounts/pstestsa235879ba\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;PSTestRG54bdf8da;pstestsa54bdf8da\",\r\n \"name\": \"StorageContainer;Storage;PSTestRG54bdf8da;pstestsa54bdf8da\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"pstestsa54bdf8da\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG54bdf8da/providers/Microsoft.Storage/storageAccounts/pstestsa54bdf8da\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;PSTestRG59e1706f;pstestsa59e1706f\",\r\n \"name\": \"StorageContainer;Storage;PSTestRG59e1706f;pstestsa59e1706f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"pstestsa59e1706f\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG59e1706f/providers/Microsoft.Storage/storageAccounts/pstestsa59e1706f\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895\",\r\n \"name\": \"StorageContainer;Storage;pstestrg8895;pstestsa8895\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"pstestsa8895\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstestsa8895\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;pstestrg8895;pstesttargetsa8895\",\r\n \"name\": \"StorageContainer;Storage;pstestrg8895;pstesttargetsa8895\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"pstesttargetsa8895\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstesttargetsa8895\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;pstestrg8895;pstesttargetsa8896\",\r\n \"name\": \"StorageContainer;Storage;pstestrg8895;pstesttargetsa8896\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"pstesttargetsa8896\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstesttargetsa8896\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;sambit_rg;sarathsa3\",\r\n \"name\": \"StorageContainer;Storage;sambit_rg;sarathsa3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"sarathsa3\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/sambit_rg/providers/Microsoft.Storage/storageAccounts/sarathsa3\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NT9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"containerType\": \"StorageContainer\",\r\n \"sourceResourceId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstestsa8895\",\r\n \"resourceGroup\": \"pstestrg8895\",\r\n \"friendlyName\": \"pstestsa8895\",\r\n \"backupManagementType\": \"AzureStorage\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "2bd18e52-f1e4-40f4-be9f-37a5dd632d73" + "3495fd44-a614-44cf-b9c6-259732e0f5ac" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -519,23 +519,23 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationResults/41206020-155f-48d9-8600-c2dab40cf66c?api-version=2021-12-01" + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationResults/5490573a-3dd4-4254-8a5c-8f8ca081431e?api-version=2022-02-01" ], "Retry-After": [ "60" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationsStatus/41206020-155f-48d9-8600-c2dab40cf66c?api-version=2019-05-13-preview" + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationsStatus/5490573a-3dd4-4254-8a5c-8f8ca081431e?api-version=2019-05-13-preview" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "2f2b8c57-6671-4115-a4df-f10f66d6626e" + "92616d7b-9347-40b2-a80e-2cc866a4684f" ], "x-ms-client-request-id": [ - "2bd18e52-f1e4-40f4-be9f-37a5dd632d73", - "2bd18e52-f1e4-40f4-be9f-37a5dd632d73" + "3495fd44-a614-44cf-b9c6-259732e0f5ac", + "3495fd44-a614-44cf-b9c6-259732e0f5ac" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -550,13 +550,13 @@ "1199" ], "x-ms-correlation-request-id": [ - "2f2b8c57-6671-4115-a4df-f10f66d6626e" + "92616d7b-9347-40b2-a80e-2cc866a4684f" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T113957Z:2f2b8c57-6671-4115-a4df-f10f66d6626e" + "WESTINDIA:20220516T162035Z:92616d7b-9347-40b2-a80e-2cc866a4684f" ], "Date": [ - "Sat, 26 Mar 2022 11:39:57 GMT" + "Mon, 16 May 2022 16:20:34 GMT" ], "Content-Length": [ "2" @@ -572,22 +572,22 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895/operationResults/41206020-155f-48d9-8600-c2dab40cf66c?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9vcGVyYXRpb25SZXN1bHRzLzQxMjA2MDIwLTE1NWYtNDhkOS04NjAwLWMyZGFiNDBjZjY2Yz9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895/operationResults/5490573a-3dd4-4254-8a5c-8f8ca081431e?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9vcGVyYXRpb25SZXN1bHRzLzU0OTA1NzNhLTNkZDQtNDI1NC04YTVjLThmOGNhMDgxNDMxZT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2bd18e52-f1e4-40f4-be9f-37a5dd632d73" + "3495fd44-a614-44cf-b9c6-259732e0f5ac" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -598,23 +598,23 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationResults/41206020-155f-48d9-8600-c2dab40cf66c?api-version=2021-12-01" + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationResults/5490573a-3dd4-4254-8a5c-8f8ca081431e?api-version=2022-02-01" ], "Retry-After": [ "60" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationsStatus/41206020-155f-48d9-8600-c2dab40cf66c?api-version=2019-05-13-preview" + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationsStatus/5490573a-3dd4-4254-8a5c-8f8ca081431e?api-version=2019-05-13-preview" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "8da71177-18e6-4c60-aac1-902eaa93320e" + "3769267f-5013-4005-b27a-4f5701ca1c11" ], "x-ms-client-request-id": [ - "2bd18e52-f1e4-40f4-be9f-37a5dd632d73", - "2bd18e52-f1e4-40f4-be9f-37a5dd632d73" + "3495fd44-a614-44cf-b9c6-259732e0f5ac", + "3495fd44-a614-44cf-b9c6-259732e0f5ac" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -629,13 +629,13 @@ "299" ], "x-ms-correlation-request-id": [ - "8da71177-18e6-4c60-aac1-902eaa93320e" + "3769267f-5013-4005-b27a-4f5701ca1c11" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T113957Z:8da71177-18e6-4c60-aac1-902eaa93320e" + "WESTINDIA:20220516T162036Z:3769267f-5013-4005-b27a-4f5701ca1c11" ], "Date": [ - "Sat, 26 Mar 2022 11:39:57 GMT" + "Mon, 16 May 2022 16:20:35 GMT" ], "Content-Length": [ "2" @@ -651,22 +651,22 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895/operationResults/41206020-155f-48d9-8600-c2dab40cf66c?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9vcGVyYXRpb25SZXN1bHRzLzQxMjA2MDIwLTE1NWYtNDhkOS04NjAwLWMyZGFiNDBjZjY2Yz9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895/operationResults/5490573a-3dd4-4254-8a5c-8f8ca081431e?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9vcGVyYXRpb25SZXN1bHRzLzU0OTA1NzNhLTNkZDQtNDI1NC04YTVjLThmOGNhMDgxNDMxZT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2bd18e52-f1e4-40f4-be9f-37a5dd632d73" + "3495fd44-a614-44cf-b9c6-259732e0f5ac" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -677,23 +677,23 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationResults/41206020-155f-48d9-8600-c2dab40cf66c?api-version=2021-12-01" + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationResults/5490573a-3dd4-4254-8a5c-8f8ca081431e?api-version=2022-02-01" ], "Retry-After": [ "60" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationsStatus/41206020-155f-48d9-8600-c2dab40cf66c?api-version=2019-05-13-preview" + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationsStatus/5490573a-3dd4-4254-8a5c-8f8ca081431e?api-version=2019-05-13-preview" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "748d3092-c7e4-47c3-b06f-4a1ad50e4c81" + "ea82fcd7-1b4c-426c-bad4-20afe4d3ece8" ], "x-ms-client-request-id": [ - "2bd18e52-f1e4-40f4-be9f-37a5dd632d73", - "2bd18e52-f1e4-40f4-be9f-37a5dd632d73" + "3495fd44-a614-44cf-b9c6-259732e0f5ac", + "3495fd44-a614-44cf-b9c6-259732e0f5ac" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -708,13 +708,13 @@ "298" ], "x-ms-correlation-request-id": [ - "748d3092-c7e4-47c3-b06f-4a1ad50e4c81" + "ea82fcd7-1b4c-426c-bad4-20afe4d3ece8" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T114003Z:748d3092-c7e4-47c3-b06f-4a1ad50e4c81" + "WESTINDIA:20220516T162036Z:ea82fcd7-1b4c-426c-bad4-20afe4d3ece8" ], "Date": [ - "Sat, 26 Mar 2022 11:40:02 GMT" + "Mon, 16 May 2022 16:20:35 GMT" ], "Content-Length": [ "2" @@ -730,22 +730,22 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895/operationResults/41206020-155f-48d9-8600-c2dab40cf66c?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9vcGVyYXRpb25SZXN1bHRzLzQxMjA2MDIwLTE1NWYtNDhkOS04NjAwLWMyZGFiNDBjZjY2Yz9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895/operationResults/5490573a-3dd4-4254-8a5c-8f8ca081431e?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9vcGVyYXRpb25SZXN1bHRzLzU0OTA1NzNhLTNkZDQtNDI1NC04YTVjLThmOGNhMDgxNDMxZT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2bd18e52-f1e4-40f4-be9f-37a5dd632d73" + "3495fd44-a614-44cf-b9c6-259732e0f5ac" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -756,23 +756,23 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationResults/41206020-155f-48d9-8600-c2dab40cf66c?api-version=2021-12-01" + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationResults/5490573a-3dd4-4254-8a5c-8f8ca081431e?api-version=2022-02-01" ], "Retry-After": [ "60" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationsStatus/41206020-155f-48d9-8600-c2dab40cf66c?api-version=2019-05-13-preview" + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationsStatus/5490573a-3dd4-4254-8a5c-8f8ca081431e?api-version=2019-05-13-preview" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "d9bd00a3-5164-4ca7-a1cf-a70df3f05b15" + "ef730b26-ff74-4188-a0f6-f6c65696fd93" ], "x-ms-client-request-id": [ - "2bd18e52-f1e4-40f4-be9f-37a5dd632d73", - "2bd18e52-f1e4-40f4-be9f-37a5dd632d73" + "3495fd44-a614-44cf-b9c6-259732e0f5ac", + "3495fd44-a614-44cf-b9c6-259732e0f5ac" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -787,13 +787,13 @@ "297" ], "x-ms-correlation-request-id": [ - "d9bd00a3-5164-4ca7-a1cf-a70df3f05b15" + "ef730b26-ff74-4188-a0f6-f6c65696fd93" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T114008Z:d9bd00a3-5164-4ca7-a1cf-a70df3f05b15" + "WESTINDIA:20220516T162037Z:ef730b26-ff74-4188-a0f6-f6c65696fd93" ], "Date": [ - "Sat, 26 Mar 2022 11:40:07 GMT" + "Mon, 16 May 2022 16:20:37 GMT" ], "Content-Length": [ "2" @@ -809,22 +809,22 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895/operationResults/41206020-155f-48d9-8600-c2dab40cf66c?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9vcGVyYXRpb25SZXN1bHRzLzQxMjA2MDIwLTE1NWYtNDhkOS04NjAwLWMyZGFiNDBjZjY2Yz9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895/operationResults/5490573a-3dd4-4254-8a5c-8f8ca081431e?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9vcGVyYXRpb25SZXN1bHRzLzU0OTA1NzNhLTNkZDQtNDI1NC04YTVjLThmOGNhMDgxNDMxZT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2bd18e52-f1e4-40f4-be9f-37a5dd632d73" + "3495fd44-a614-44cf-b9c6-259732e0f5ac" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -835,23 +835,23 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationResults/41206020-155f-48d9-8600-c2dab40cf66c?api-version=2021-12-01" + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationResults/5490573a-3dd4-4254-8a5c-8f8ca081431e?api-version=2022-02-01" ], "Retry-After": [ "60" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationsStatus/41206020-155f-48d9-8600-c2dab40cf66c?api-version=2019-05-13-preview" + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationsStatus/5490573a-3dd4-4254-8a5c-8f8ca081431e?api-version=2019-05-13-preview" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "4a619425-d811-40d1-9b81-00b0a84ae962" + "ad117e9b-eb67-4891-83f2-ea6aaf4a0480" ], "x-ms-client-request-id": [ - "2bd18e52-f1e4-40f4-be9f-37a5dd632d73", - "2bd18e52-f1e4-40f4-be9f-37a5dd632d73" + "3495fd44-a614-44cf-b9c6-259732e0f5ac", + "3495fd44-a614-44cf-b9c6-259732e0f5ac" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -866,13 +866,13 @@ "296" ], "x-ms-correlation-request-id": [ - "4a619425-d811-40d1-9b81-00b0a84ae962" + "ad117e9b-eb67-4891-83f2-ea6aaf4a0480" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T114014Z:4a619425-d811-40d1-9b81-00b0a84ae962" + "WESTINDIA:20220516T162037Z:ad117e9b-eb67-4891-83f2-ea6aaf4a0480" ], "Date": [ - "Sat, 26 Mar 2022 11:40:13 GMT" + "Mon, 16 May 2022 16:20:37 GMT" ], "Content-Length": [ "2" @@ -888,22 +888,22 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895/operationResults/41206020-155f-48d9-8600-c2dab40cf66c?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9vcGVyYXRpb25SZXN1bHRzLzQxMjA2MDIwLTE1NWYtNDhkOS04NjAwLWMyZGFiNDBjZjY2Yz9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895/operationResults/5490573a-3dd4-4254-8a5c-8f8ca081431e?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9vcGVyYXRpb25SZXN1bHRzLzU0OTA1NzNhLTNkZDQtNDI1NC04YTVjLThmOGNhMDgxNDMxZT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2bd18e52-f1e4-40f4-be9f-37a5dd632d73" + "3495fd44-a614-44cf-b9c6-259732e0f5ac" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -914,23 +914,23 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationResults/41206020-155f-48d9-8600-c2dab40cf66c?api-version=2021-12-01" + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationResults/5490573a-3dd4-4254-8a5c-8f8ca081431e?api-version=2022-02-01" ], "Retry-After": [ "60" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationsStatus/41206020-155f-48d9-8600-c2dab40cf66c?api-version=2019-05-13-preview" + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationsStatus/5490573a-3dd4-4254-8a5c-8f8ca081431e?api-version=2019-05-13-preview" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "bc2d6da1-4730-40bb-b707-a8de9fc60606" + "09253508-8b87-41a7-8902-ad46b7726814" ], "x-ms-client-request-id": [ - "2bd18e52-f1e4-40f4-be9f-37a5dd632d73", - "2bd18e52-f1e4-40f4-be9f-37a5dd632d73" + "3495fd44-a614-44cf-b9c6-259732e0f5ac", + "3495fd44-a614-44cf-b9c6-259732e0f5ac" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -945,13 +945,13 @@ "295" ], "x-ms-correlation-request-id": [ - "bc2d6da1-4730-40bb-b707-a8de9fc60606" + "09253508-8b87-41a7-8902-ad46b7726814" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T114019Z:bc2d6da1-4730-40bb-b707-a8de9fc60606" + "WESTINDIA:20220516T162038Z:09253508-8b87-41a7-8902-ad46b7726814" ], "Date": [ - "Sat, 26 Mar 2022 11:40:19 GMT" + "Mon, 16 May 2022 16:20:38 GMT" ], "Content-Length": [ "2" @@ -967,22 +967,22 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895/operationResults/41206020-155f-48d9-8600-c2dab40cf66c?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9vcGVyYXRpb25SZXN1bHRzLzQxMjA2MDIwLTE1NWYtNDhkOS04NjAwLWMyZGFiNDBjZjY2Yz9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895/operationResults/5490573a-3dd4-4254-8a5c-8f8ca081431e?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9vcGVyYXRpb25SZXN1bHRzLzU0OTA1NzNhLTNkZDQtNDI1NC04YTVjLThmOGNhMDgxNDMxZT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2bd18e52-f1e4-40f4-be9f-37a5dd632d73" + "3495fd44-a614-44cf-b9c6-259732e0f5ac" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -992,15 +992,24 @@ "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationResults/5490573a-3dd4-4254-8a5c-8f8ca081431e?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationsStatus/5490573a-3dd4-4254-8a5c-8f8ca081431e?api-version=2019-05-13-preview" + ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "53d378a0-1f0e-4c33-8e49-4ec95081d234" + "d638ec81-9264-4f07-a27c-cd9a5f0fbb81" ], "x-ms-client-request-id": [ - "2bd18e52-f1e4-40f4-be9f-37a5dd632d73", - "2bd18e52-f1e4-40f4-be9f-37a5dd632d73" + "3495fd44-a614-44cf-b9c6-259732e0f5ac", + "3495fd44-a614-44cf-b9c6-259732e0f5ac" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1015,16 +1024,16 @@ "294" ], "x-ms-correlation-request-id": [ - "53d378a0-1f0e-4c33-8e49-4ec95081d234" + "d638ec81-9264-4f07-a27c-cd9a5f0fbb81" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T114024Z:53d378a0-1f0e-4c33-8e49-4ec95081d234" + "WESTINDIA:20220516T162038Z:d638ec81-9264-4f07-a27c-cd9a5f0fbb81" ], "Date": [ - "Sat, 26 Mar 2022 11:40:24 GMT" + "Mon, 16 May 2022 16:20:38 GMT" ], "Content-Length": [ - "737" + "2" ], "Content-Type": [ "application/json" @@ -1033,26 +1042,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895\",\r\n \"name\": \"StorageContainer;Storage;pstestrg8895;pstestsa8895\",\r\n \"properties\": {\r\n \"sourceResourceId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstestsa8895\",\r\n \"protectedItemCount\": 0,\r\n \"acquireStorageAccountLock\": \"Acquire\",\r\n \"friendlyName\": \"pstestsa8895\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"registrationStatus\": \"Registered\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerType\": \"StorageContainer\",\r\n \"protectableObjectType\": \"StorageContainer\"\r\n }\r\n}", - "StatusCode": 200 + "ResponseBody": "{}", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895/operationResults/41206020-155f-48d9-8600-c2dab40cf66c?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9vcGVyYXRpb25SZXN1bHRzLzQxMjA2MDIwLTE1NWYtNDhkOS04NjAwLWMyZGFiNDBjZjY2Yz9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895/operationResults/5490573a-3dd4-4254-8a5c-8f8ca081431e?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9vcGVyYXRpb25SZXN1bHRzLzU0OTA1NzNhLTNkZDQtNDI1NC04YTVjLThmOGNhMDgxNDMxZT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2bd18e52-f1e4-40f4-be9f-37a5dd632d73" + "3495fd44-a614-44cf-b9c6-259732e0f5ac" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -1062,15 +1071,24 @@ "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationResults/5490573a-3dd4-4254-8a5c-8f8ca081431e?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationsStatus/5490573a-3dd4-4254-8a5c-8f8ca081431e?api-version=2019-05-13-preview" + ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "6fdf04bf-9781-4f4e-abaa-9ac66861927e" + "6c38575d-b9ce-41ea-bf0a-be820b466922" ], "x-ms-client-request-id": [ - "2bd18e52-f1e4-40f4-be9f-37a5dd632d73", - "2bd18e52-f1e4-40f4-be9f-37a5dd632d73" + "3495fd44-a614-44cf-b9c6-259732e0f5ac", + "3495fd44-a614-44cf-b9c6-259732e0f5ac" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1085,16 +1103,16 @@ "293" ], "x-ms-correlation-request-id": [ - "6fdf04bf-9781-4f4e-abaa-9ac66861927e" + "6c38575d-b9ce-41ea-bf0a-be820b466922" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T114025Z:6fdf04bf-9781-4f4e-abaa-9ac66861927e" + "WESTINDIA:20220516T162039Z:6c38575d-b9ce-41ea-bf0a-be820b466922" ], "Date": [ - "Sat, 26 Mar 2022 11:40:25 GMT" + "Mon, 16 May 2022 16:20:39 GMT" ], "Content-Length": [ - "737" + "2" ], "Content-Type": [ "application/json" @@ -1103,26 +1121,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895\",\r\n \"name\": \"StorageContainer;Storage;pstestrg8895;pstestsa8895\",\r\n \"properties\": {\r\n \"sourceResourceId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstestsa8895\",\r\n \"protectedItemCount\": 0,\r\n \"acquireStorageAccountLock\": \"Acquire\",\r\n \"friendlyName\": \"pstestsa8895\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"registrationStatus\": \"Registered\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerType\": \"StorageContainer\",\r\n \"protectableObjectType\": \"StorageContainer\"\r\n }\r\n}", - "StatusCode": 200 + "ResponseBody": "{}", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupProtectableItems?$filter=backupManagementType%20eq%20'AzureStorage'&api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwUHJvdGVjdGFibGVJdGVtcz8kZmlsdGVyPWJhY2t1cE1hbmFnZW1lbnRUeXBlJTIwZXElMjAnQXp1cmVTdG9yYWdlJyZhcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895/operationResults/5490573a-3dd4-4254-8a5c-8f8ca081431e?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9vcGVyYXRpb25SZXN1bHRzLzU0OTA1NzNhLTNkZDQtNDI1NC04YTVjLThmOGNhMDgxNDMxZT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2bd18e52-f1e4-40f4-be9f-37a5dd632d73" + "3495fd44-a614-44cf-b9c6-259732e0f5ac" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -1132,15 +1150,24 @@ "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationResults/5490573a-3dd4-4254-8a5c-8f8ca081431e?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationsStatus/5490573a-3dd4-4254-8a5c-8f8ca081431e?api-version=2019-05-13-preview" + ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "c5de9fdf-3cac-476d-907e-9b83b4f68567" + "ad6b9178-3d2e-485f-a6e3-4d43b2659cd6" ], "x-ms-client-request-id": [ - "2bd18e52-f1e4-40f4-be9f-37a5dd632d73", - "2bd18e52-f1e4-40f4-be9f-37a5dd632d73" + "3495fd44-a614-44cf-b9c6-259732e0f5ac", + "3495fd44-a614-44cf-b9c6-259732e0f5ac" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1152,19 +1179,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "299" + "292" ], "x-ms-correlation-request-id": [ - "c5de9fdf-3cac-476d-907e-9b83b4f68567" + "ad6b9178-3d2e-485f-a6e3-4d43b2659cd6" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T114025Z:c5de9fdf-3cac-476d-907e-9b83b4f68567" + "WESTINDIA:20220516T162039Z:ad6b9178-3d2e-485f-a6e3-4d43b2659cd6" ], "Date": [ - "Sat, 26 Mar 2022 11:40:25 GMT" + "Mon, 16 May 2022 16:20:39 GMT" ], "Content-Length": [ - "947" + "2" ], "Content-Type": [ "application/json" @@ -1173,32 +1200,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/storagecontainer;storage;pstestrg8895;pstestsa8895/protectableItems/azurefileshare;698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959\",\r\n \"name\": \"azurefileshare;698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems\",\r\n \"properties\": {\r\n \"parentContainerFabricId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstestsa8895\",\r\n \"parentContainerFriendlyName\": \"pstestsa8895\",\r\n \"azureFileShareType\": \"XSMB\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"workloadType\": \"AzureFileShare\",\r\n \"protectableItemType\": \"AzureFileShare\",\r\n \"friendlyName\": \"fs1\",\r\n \"protectionState\": \"NotProtected\"\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 + "ResponseBody": "{}", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/storagecontainer%3Bstorage%3Bpstestrg8895%3Bpstestsa8895/protectedItems/azurefileshare%3B698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9zdG9yYWdlY29udGFpbmVyJTNCc3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9wcm90ZWN0ZWRJdGVtcy9henVyZWZpbGVzaGFyZSUzQjY5OGRmNTk1OTQ4ZTIzNTVmMmJiNzQ0YTQxY2YyNDVkNGJhMTI1NWQ5Njk5Y2MzYzJhZDFmNTA0NWUxNzc5NTk/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"protectedItemType\": \"AzureFileShareProtectedItem\",\r\n \"sourceResourceId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstestsa8895\",\r\n \"policyId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupPolicies/afspolicy1\"\r\n }\r\n}", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895/operationResults/5490573a-3dd4-4254-8a5c-8f8ca081431e?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9vcGVyYXRpb25SZXN1bHRzLzU0OTA1NzNhLTNkZDQtNDI1NC04YTVjLThmOGNhMDgxNDMxZT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2bd18e52-f1e4-40f4-be9f-37a5dd632d73" + "3495fd44-a614-44cf-b9c6-259732e0f5ac" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "433" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -1209,69 +1230,75 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/storagecontainer;storage;pstestrg8895;pstestsa8895/protectedItems/azurefileshare;698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959/operationResults/d028338a-3944-4502-ba17-b1029811f5ca?api-version=2021-12-01" + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationResults/5490573a-3dd4-4254-8a5c-8f8ca081431e?api-version=2022-02-01" ], "Retry-After": [ "60" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/storagecontainer;storage;pstestrg8895;pstestsa8895/protectedItems/azurefileshare;698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959/operationsStatus/d028338a-3944-4502-ba17-b1029811f5ca?api-version=2021-12-01" + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationsStatus/5490573a-3dd4-4254-8a5c-8f8ca081431e?api-version=2019-05-13-preview" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "e96ad758-1a1c-44e1-9d1d-d9c0c9f8e44e" + "dc9c26ac-a64e-4788-83a4-6da6f73e1596" ], "x-ms-client-request-id": [ - "2bd18e52-f1e4-40f4-be9f-37a5dd632d73", - "2bd18e52-f1e4-40f4-be9f-37a5dd632d73" + "3495fd44-a614-44cf-b9c6-259732e0f5ac", + "3495fd44-a614-44cf-b9c6-259732e0f5ac" ], "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-ratelimit-remaining-subscription-resource-requests": [ + "291" ], "x-ms-correlation-request-id": [ - "e96ad758-1a1c-44e1-9d1d-d9c0c9f8e44e" + "dc9c26ac-a64e-4788-83a4-6da6f73e1596" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T114026Z:e96ad758-1a1c-44e1-9d1d-d9c0c9f8e44e" + "WESTINDIA:20220516T162040Z:dc9c26ac-a64e-4788-83a4-6da6f73e1596" ], "Date": [ - "Sat, 26 Mar 2022 11:40:26 GMT" + "Mon, 16 May 2022 16:20:40 GMT" + ], + "Content-Length": [ + "2" + ], + "Content-Type": [ + "application/json" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, - "ResponseBody": "", + "ResponseBody": "{}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/d028338a-3944-4502-ba17-b1029811f5ca?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9kMDI4MzM4YS0zOTQ0LTQ1MDItYmExNy1iMTAyOTgxMWY1Y2E/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895/operationResults/5490573a-3dd4-4254-8a5c-8f8ca081431e?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9vcGVyYXRpb25SZXN1bHRzLzU0OTA1NzNhLTNkZDQtNDI1NC04YTVjLThmOGNhMDgxNDMxZT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2bd18e52-f1e4-40f4-be9f-37a5dd632d73" + "3495fd44-a614-44cf-b9c6-259732e0f5ac" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -1281,15 +1308,24 @@ "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationResults/5490573a-3dd4-4254-8a5c-8f8ca081431e?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationsStatus/5490573a-3dd4-4254-8a5c-8f8ca081431e?api-version=2019-05-13-preview" + ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "e2da8813-67a0-4cac-a02e-44f1e39bd46b" + "d5f3bc30-345b-4fbe-9def-25197ca62367" ], "x-ms-client-request-id": [ - "2bd18e52-f1e4-40f4-be9f-37a5dd632d73", - "2bd18e52-f1e4-40f4-be9f-37a5dd632d73" + "3495fd44-a614-44cf-b9c6-259732e0f5ac", + "3495fd44-a614-44cf-b9c6-259732e0f5ac" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1301,19 +1337,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "299" + "290" ], "x-ms-correlation-request-id": [ - "e2da8813-67a0-4cac-a02e-44f1e39bd46b" + "d5f3bc30-345b-4fbe-9def-25197ca62367" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T114026Z:e2da8813-67a0-4cac-a02e-44f1e39bd46b" + "WESTINDIA:20220516T162040Z:d5f3bc30-345b-4fbe-9def-25197ca62367" ], "Date": [ - "Sat, 26 Mar 2022 11:40:26 GMT" + "Mon, 16 May 2022 16:20:40 GMT" ], "Content-Length": [ - "187" + "2" ], "Content-Type": [ "application/json" @@ -1322,26 +1358,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"d028338a-3944-4502-ba17-b1029811f5ca\",\r\n \"name\": \"d028338a-3944-4502-ba17-b1029811f5ca\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-03-26T11:40:26.315054Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", - "StatusCode": 200 + "ResponseBody": "{}", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/d028338a-3944-4502-ba17-b1029811f5ca?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9kMDI4MzM4YS0zOTQ0LTQ1MDItYmExNy1iMTAyOTgxMWY1Y2E/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895/operationResults/5490573a-3dd4-4254-8a5c-8f8ca081431e?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9vcGVyYXRpb25SZXN1bHRzLzU0OTA1NzNhLTNkZDQtNDI1NC04YTVjLThmOGNhMDgxNDMxZT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2bd18e52-f1e4-40f4-be9f-37a5dd632d73" + "3495fd44-a614-44cf-b9c6-259732e0f5ac" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -1351,15 +1387,24 @@ "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationResults/5490573a-3dd4-4254-8a5c-8f8ca081431e?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationsStatus/5490573a-3dd4-4254-8a5c-8f8ca081431e?api-version=2019-05-13-preview" + ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "10610753-085e-4d32-a34a-b923aa152956" + "fdddd010-4d9a-4003-9f0d-d0327538a1cd" ], "x-ms-client-request-id": [ - "2bd18e52-f1e4-40f4-be9f-37a5dd632d73", - "2bd18e52-f1e4-40f4-be9f-37a5dd632d73" + "3495fd44-a614-44cf-b9c6-259732e0f5ac", + "3495fd44-a614-44cf-b9c6-259732e0f5ac" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1371,19 +1416,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "298" + "289" ], "x-ms-correlation-request-id": [ - "10610753-085e-4d32-a34a-b923aa152956" + "fdddd010-4d9a-4003-9f0d-d0327538a1cd" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T114032Z:10610753-085e-4d32-a34a-b923aa152956" + "WESTINDIA:20220516T162041Z:fdddd010-4d9a-4003-9f0d-d0327538a1cd" ], "Date": [ - "Sat, 26 Mar 2022 11:40:31 GMT" + "Mon, 16 May 2022 16:20:41 GMT" ], "Content-Length": [ - "187" + "2" ], "Content-Type": [ "application/json" @@ -1392,26 +1437,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"d028338a-3944-4502-ba17-b1029811f5ca\",\r\n \"name\": \"d028338a-3944-4502-ba17-b1029811f5ca\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-03-26T11:40:26.315054Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", - "StatusCode": 200 + "ResponseBody": "{}", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/d028338a-3944-4502-ba17-b1029811f5ca?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9kMDI4MzM4YS0zOTQ0LTQ1MDItYmExNy1iMTAyOTgxMWY1Y2E/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895/operationResults/5490573a-3dd4-4254-8a5c-8f8ca081431e?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9vcGVyYXRpb25SZXN1bHRzLzU0OTA1NzNhLTNkZDQtNDI1NC04YTVjLThmOGNhMDgxNDMxZT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2bd18e52-f1e4-40f4-be9f-37a5dd632d73" + "3495fd44-a614-44cf-b9c6-259732e0f5ac" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -1421,15 +1466,24 @@ "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationResults/5490573a-3dd4-4254-8a5c-8f8ca081431e?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationsStatus/5490573a-3dd4-4254-8a5c-8f8ca081431e?api-version=2019-05-13-preview" + ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "e84af17e-406d-4bdb-b3ee-76ca6e160f1b" + "b26b4092-22c3-4eb4-9f5d-1ad05676d90f" ], "x-ms-client-request-id": [ - "2bd18e52-f1e4-40f4-be9f-37a5dd632d73", - "2bd18e52-f1e4-40f4-be9f-37a5dd632d73" + "3495fd44-a614-44cf-b9c6-259732e0f5ac", + "3495fd44-a614-44cf-b9c6-259732e0f5ac" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1441,19 +1495,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "297" + "288" ], "x-ms-correlation-request-id": [ - "e84af17e-406d-4bdb-b3ee-76ca6e160f1b" + "b26b4092-22c3-4eb4-9f5d-1ad05676d90f" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T114037Z:e84af17e-406d-4bdb-b3ee-76ca6e160f1b" + "WESTINDIA:20220516T162041Z:b26b4092-22c3-4eb4-9f5d-1ad05676d90f" ], "Date": [ - "Sat, 26 Mar 2022 11:40:37 GMT" + "Mon, 16 May 2022 16:20:41 GMT" ], "Content-Length": [ - "187" + "2" ], "Content-Type": [ "application/json" @@ -1462,26 +1516,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"d028338a-3944-4502-ba17-b1029811f5ca\",\r\n \"name\": \"d028338a-3944-4502-ba17-b1029811f5ca\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-03-26T11:40:26.315054Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", - "StatusCode": 200 + "ResponseBody": "{}", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/d028338a-3944-4502-ba17-b1029811f5ca?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9kMDI4MzM4YS0zOTQ0LTQ1MDItYmExNy1iMTAyOTgxMWY1Y2E/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895/operationResults/5490573a-3dd4-4254-8a5c-8f8ca081431e?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9vcGVyYXRpb25SZXN1bHRzLzU0OTA1NzNhLTNkZDQtNDI1NC04YTVjLThmOGNhMDgxNDMxZT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2bd18e52-f1e4-40f4-be9f-37a5dd632d73" + "3495fd44-a614-44cf-b9c6-259732e0f5ac" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -1491,15 +1545,24 @@ "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationResults/5490573a-3dd4-4254-8a5c-8f8ca081431e?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationsStatus/5490573a-3dd4-4254-8a5c-8f8ca081431e?api-version=2019-05-13-preview" + ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "508c2e23-6bb8-42bc-a149-679ab704b86c" + "d15b8869-dea2-49af-98fd-9866a91e5d38" ], "x-ms-client-request-id": [ - "2bd18e52-f1e4-40f4-be9f-37a5dd632d73", - "2bd18e52-f1e4-40f4-be9f-37a5dd632d73" + "3495fd44-a614-44cf-b9c6-259732e0f5ac", + "3495fd44-a614-44cf-b9c6-259732e0f5ac" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1511,19 +1574,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "296" + "287" ], "x-ms-correlation-request-id": [ - "508c2e23-6bb8-42bc-a149-679ab704b86c" + "d15b8869-dea2-49af-98fd-9866a91e5d38" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T114043Z:508c2e23-6bb8-42bc-a149-679ab704b86c" + "WESTINDIA:20220516T162042Z:d15b8869-dea2-49af-98fd-9866a91e5d38" ], "Date": [ - "Sat, 26 Mar 2022 11:40:42 GMT" + "Mon, 16 May 2022 16:20:42 GMT" ], "Content-Length": [ - "187" + "2" ], "Content-Type": [ "application/json" @@ -1532,26 +1595,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"d028338a-3944-4502-ba17-b1029811f5ca\",\r\n \"name\": \"d028338a-3944-4502-ba17-b1029811f5ca\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-03-26T11:40:26.315054Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", - "StatusCode": 200 + "ResponseBody": "{}", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/d028338a-3944-4502-ba17-b1029811f5ca?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9kMDI4MzM4YS0zOTQ0LTQ1MDItYmExNy1iMTAyOTgxMWY1Y2E/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895/operationResults/5490573a-3dd4-4254-8a5c-8f8ca081431e?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9vcGVyYXRpb25SZXN1bHRzLzU0OTA1NzNhLTNkZDQtNDI1NC04YTVjLThmOGNhMDgxNDMxZT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2bd18e52-f1e4-40f4-be9f-37a5dd632d73" + "3495fd44-a614-44cf-b9c6-259732e0f5ac" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -1561,15 +1624,24 @@ "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationResults/5490573a-3dd4-4254-8a5c-8f8ca081431e?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationsStatus/5490573a-3dd4-4254-8a5c-8f8ca081431e?api-version=2019-05-13-preview" + ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "9cd037bc-d0f8-4ec8-8e2d-3fc95aafd432" + "e5bb44cf-77a9-4c5f-a255-8b012b07b0bf" ], "x-ms-client-request-id": [ - "2bd18e52-f1e4-40f4-be9f-37a5dd632d73", - "2bd18e52-f1e4-40f4-be9f-37a5dd632d73" + "3495fd44-a614-44cf-b9c6-259732e0f5ac", + "3495fd44-a614-44cf-b9c6-259732e0f5ac" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1581,19 +1653,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "295" + "286" ], "x-ms-correlation-request-id": [ - "9cd037bc-d0f8-4ec8-8e2d-3fc95aafd432" + "e5bb44cf-77a9-4c5f-a255-8b012b07b0bf" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T114048Z:9cd037bc-d0f8-4ec8-8e2d-3fc95aafd432" + "WESTINDIA:20220516T162042Z:e5bb44cf-77a9-4c5f-a255-8b012b07b0bf" ], "Date": [ - "Sat, 26 Mar 2022 11:40:47 GMT" + "Mon, 16 May 2022 16:20:42 GMT" ], "Content-Length": [ - "187" + "2" ], "Content-Type": [ "application/json" @@ -1602,26 +1674,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"d028338a-3944-4502-ba17-b1029811f5ca\",\r\n \"name\": \"d028338a-3944-4502-ba17-b1029811f5ca\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-03-26T11:40:26.315054Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", - "StatusCode": 200 + "ResponseBody": "{}", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/d028338a-3944-4502-ba17-b1029811f5ca?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9kMDI4MzM4YS0zOTQ0LTQ1MDItYmExNy1iMTAyOTgxMWY1Y2E/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895/operationResults/5490573a-3dd4-4254-8a5c-8f8ca081431e?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9vcGVyYXRpb25SZXN1bHRzLzU0OTA1NzNhLTNkZDQtNDI1NC04YTVjLThmOGNhMDgxNDMxZT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2bd18e52-f1e4-40f4-be9f-37a5dd632d73" + "3495fd44-a614-44cf-b9c6-259732e0f5ac" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -1631,15 +1703,24 @@ "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationResults/5490573a-3dd4-4254-8a5c-8f8ca081431e?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationsStatus/5490573a-3dd4-4254-8a5c-8f8ca081431e?api-version=2019-05-13-preview" + ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "610d5d26-4e9b-4fb8-90d5-1999d96909b3" + "e7bb9fd6-d764-4f20-96c6-1f9e1754462d" ], "x-ms-client-request-id": [ - "2bd18e52-f1e4-40f4-be9f-37a5dd632d73", - "2bd18e52-f1e4-40f4-be9f-37a5dd632d73" + "3495fd44-a614-44cf-b9c6-259732e0f5ac", + "3495fd44-a614-44cf-b9c6-259732e0f5ac" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1651,19 +1732,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "294" + "285" ], "x-ms-correlation-request-id": [ - "610d5d26-4e9b-4fb8-90d5-1999d96909b3" + "e7bb9fd6-d764-4f20-96c6-1f9e1754462d" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T114053Z:610d5d26-4e9b-4fb8-90d5-1999d96909b3" + "WESTINDIA:20220516T162043Z:e7bb9fd6-d764-4f20-96c6-1f9e1754462d" ], "Date": [ - "Sat, 26 Mar 2022 11:40:52 GMT" + "Mon, 16 May 2022 16:20:43 GMT" ], "Content-Length": [ - "187" + "2" ], "Content-Type": [ "application/json" @@ -1672,26 +1753,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"d028338a-3944-4502-ba17-b1029811f5ca\",\r\n \"name\": \"d028338a-3944-4502-ba17-b1029811f5ca\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-03-26T11:40:26.315054Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", - "StatusCode": 200 + "ResponseBody": "{}", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/d028338a-3944-4502-ba17-b1029811f5ca?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9kMDI4MzM4YS0zOTQ0LTQ1MDItYmExNy1iMTAyOTgxMWY1Y2E/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895/operationResults/5490573a-3dd4-4254-8a5c-8f8ca081431e?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9vcGVyYXRpb25SZXN1bHRzLzU0OTA1NzNhLTNkZDQtNDI1NC04YTVjLThmOGNhMDgxNDMxZT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2bd18e52-f1e4-40f4-be9f-37a5dd632d73" + "3495fd44-a614-44cf-b9c6-259732e0f5ac" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -1701,15 +1782,24 @@ "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationResults/5490573a-3dd4-4254-8a5c-8f8ca081431e?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationsStatus/5490573a-3dd4-4254-8a5c-8f8ca081431e?api-version=2019-05-13-preview" + ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "2fd619ac-b79c-4297-8648-1931b0e42ac5" + "bda4a9d9-806b-41f4-ba3d-1f27a723d6ef" ], "x-ms-client-request-id": [ - "2bd18e52-f1e4-40f4-be9f-37a5dd632d73", - "2bd18e52-f1e4-40f4-be9f-37a5dd632d73" + "3495fd44-a614-44cf-b9c6-259732e0f5ac", + "3495fd44-a614-44cf-b9c6-259732e0f5ac" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1721,19 +1811,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "293" + "284" ], "x-ms-correlation-request-id": [ - "2fd619ac-b79c-4297-8648-1931b0e42ac5" + "bda4a9d9-806b-41f4-ba3d-1f27a723d6ef" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T114059Z:2fd619ac-b79c-4297-8648-1931b0e42ac5" + "WESTINDIA:20220516T162044Z:bda4a9d9-806b-41f4-ba3d-1f27a723d6ef" ], "Date": [ - "Sat, 26 Mar 2022 11:40:59 GMT" + "Mon, 16 May 2022 16:20:44 GMT" ], "Content-Length": [ - "187" + "2" ], "Content-Type": [ "application/json" @@ -1742,26 +1832,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"d028338a-3944-4502-ba17-b1029811f5ca\",\r\n \"name\": \"d028338a-3944-4502-ba17-b1029811f5ca\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-03-26T11:40:26.315054Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", - "StatusCode": 200 + "ResponseBody": "{}", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/d028338a-3944-4502-ba17-b1029811f5ca?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9kMDI4MzM4YS0zOTQ0LTQ1MDItYmExNy1iMTAyOTgxMWY1Y2E/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895/operationResults/5490573a-3dd4-4254-8a5c-8f8ca081431e?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9vcGVyYXRpb25SZXN1bHRzLzU0OTA1NzNhLTNkZDQtNDI1NC04YTVjLThmOGNhMDgxNDMxZT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2bd18e52-f1e4-40f4-be9f-37a5dd632d73" + "3495fd44-a614-44cf-b9c6-259732e0f5ac" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -1771,15 +1861,24 @@ "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationResults/5490573a-3dd4-4254-8a5c-8f8ca081431e?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationsStatus/5490573a-3dd4-4254-8a5c-8f8ca081431e?api-version=2019-05-13-preview" + ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "162060a8-b44d-4e21-8dd4-258d094b3205" + "2774deeb-10e8-4eac-b39c-ae8f30925d50" ], "x-ms-client-request-id": [ - "2bd18e52-f1e4-40f4-be9f-37a5dd632d73", - "2bd18e52-f1e4-40f4-be9f-37a5dd632d73" + "3495fd44-a614-44cf-b9c6-259732e0f5ac", + "3495fd44-a614-44cf-b9c6-259732e0f5ac" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1791,19 +1890,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "292" + "283" ], "x-ms-correlation-request-id": [ - "162060a8-b44d-4e21-8dd4-258d094b3205" + "2774deeb-10e8-4eac-b39c-ae8f30925d50" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T114104Z:162060a8-b44d-4e21-8dd4-258d094b3205" + "WESTINDIA:20220516T162044Z:2774deeb-10e8-4eac-b39c-ae8f30925d50" ], "Date": [ - "Sat, 26 Mar 2022 11:41:04 GMT" + "Mon, 16 May 2022 16:20:44 GMT" ], "Content-Length": [ - "187" + "2" ], "Content-Type": [ "application/json" @@ -1812,26 +1911,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"d028338a-3944-4502-ba17-b1029811f5ca\",\r\n \"name\": \"d028338a-3944-4502-ba17-b1029811f5ca\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-03-26T11:40:26.315054Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", - "StatusCode": 200 + "ResponseBody": "{}", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/d028338a-3944-4502-ba17-b1029811f5ca?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9kMDI4MzM4YS0zOTQ0LTQ1MDItYmExNy1iMTAyOTgxMWY1Y2E/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895/operationResults/5490573a-3dd4-4254-8a5c-8f8ca081431e?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9vcGVyYXRpb25SZXN1bHRzLzU0OTA1NzNhLTNkZDQtNDI1NC04YTVjLThmOGNhMDgxNDMxZT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2bd18e52-f1e4-40f4-be9f-37a5dd632d73" + "3495fd44-a614-44cf-b9c6-259732e0f5ac" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -1841,15 +1940,24 @@ "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationResults/5490573a-3dd4-4254-8a5c-8f8ca081431e?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationsStatus/5490573a-3dd4-4254-8a5c-8f8ca081431e?api-version=2019-05-13-preview" + ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "8eaee2ec-5464-4813-a911-98f232bbf9ba" + "05701d6a-8e64-4a47-baf9-ce39f90d8944" ], "x-ms-client-request-id": [ - "2bd18e52-f1e4-40f4-be9f-37a5dd632d73", - "2bd18e52-f1e4-40f4-be9f-37a5dd632d73" + "3495fd44-a614-44cf-b9c6-259732e0f5ac", + "3495fd44-a614-44cf-b9c6-259732e0f5ac" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1861,19 +1969,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "291" + "282" ], "x-ms-correlation-request-id": [ - "8eaee2ec-5464-4813-a911-98f232bbf9ba" + "05701d6a-8e64-4a47-baf9-ce39f90d8944" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T114109Z:8eaee2ec-5464-4813-a911-98f232bbf9ba" + "WESTINDIA:20220516T162045Z:05701d6a-8e64-4a47-baf9-ce39f90d8944" ], "Date": [ - "Sat, 26 Mar 2022 11:41:09 GMT" + "Mon, 16 May 2022 16:20:44 GMT" ], "Content-Length": [ - "302" + "2" ], "Content-Type": [ "application/json" @@ -1882,26 +1990,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"d028338a-3944-4502-ba17-b1029811f5ca\",\r\n \"name\": \"d028338a-3944-4502-ba17-b1029811f5ca\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-03-26T11:40:26.315054Z\",\r\n \"endTime\": \"2022-03-26T11:40:26.315054Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"57ff0e5c-4f8d-418c-8292-849f6fabb7f2\"\r\n }\r\n}", - "StatusCode": 200 + "ResponseBody": "{}", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/d028338a-3944-4502-ba17-b1029811f5ca?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9kMDI4MzM4YS0zOTQ0LTQ1MDItYmExNy1iMTAyOTgxMWY1Y2E/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895/operationResults/5490573a-3dd4-4254-8a5c-8f8ca081431e?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9vcGVyYXRpb25SZXN1bHRzLzU0OTA1NzNhLTNkZDQtNDI1NC04YTVjLThmOGNhMDgxNDMxZT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2bd18e52-f1e4-40f4-be9f-37a5dd632d73" + "3495fd44-a614-44cf-b9c6-259732e0f5ac" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -1911,15 +2019,24 @@ "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationResults/5490573a-3dd4-4254-8a5c-8f8ca081431e?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationsStatus/5490573a-3dd4-4254-8a5c-8f8ca081431e?api-version=2019-05-13-preview" + ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "4f65631b-ab80-403d-aaa5-961c3b2ed6cc" + "6a58a301-c232-45b0-85a9-4327389752f4" ], "x-ms-client-request-id": [ - "2bd18e52-f1e4-40f4-be9f-37a5dd632d73", - "2bd18e52-f1e4-40f4-be9f-37a5dd632d73" + "3495fd44-a614-44cf-b9c6-259732e0f5ac", + "3495fd44-a614-44cf-b9c6-259732e0f5ac" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1931,19 +2048,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "290" + "281" ], "x-ms-correlation-request-id": [ - "4f65631b-ab80-403d-aaa5-961c3b2ed6cc" + "6a58a301-c232-45b0-85a9-4327389752f4" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T114110Z:4f65631b-ab80-403d-aaa5-961c3b2ed6cc" + "WESTINDIA:20220516T162045Z:6a58a301-c232-45b0-85a9-4327389752f4" ], "Date": [ - "Sat, 26 Mar 2022 11:41:10 GMT" + "Mon, 16 May 2022 16:20:45 GMT" ], "Content-Length": [ - "302" + "2" ], "Content-Type": [ "application/json" @@ -1952,26 +2069,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"d028338a-3944-4502-ba17-b1029811f5ca\",\r\n \"name\": \"d028338a-3944-4502-ba17-b1029811f5ca\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-03-26T11:40:26.315054Z\",\r\n \"endTime\": \"2022-03-26T11:40:26.315054Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"57ff0e5c-4f8d-418c-8292-849f6fabb7f2\"\r\n }\r\n}", - "StatusCode": 200 + "ResponseBody": "{}", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/57ff0e5c-4f8d-418c-8292-849f6fabb7f2?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy81N2ZmMGU1Yy00ZjhkLTQxOGMtODI5Mi04NDlmNmZhYmI3ZjI/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895/operationResults/5490573a-3dd4-4254-8a5c-8f8ca081431e?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9vcGVyYXRpb25SZXN1bHRzLzU0OTA1NzNhLTNkZDQtNDI1NC04YTVjLThmOGNhMDgxNDMxZT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2bd18e52-f1e4-40f4-be9f-37a5dd632d73" + "3495fd44-a614-44cf-b9c6-259732e0f5ac" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -1981,40 +2098,48 @@ "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-IIS/10.0" + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationResults/5490573a-3dd4-4254-8a5c-8f8ca081431e?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationsStatus/5490573a-3dd4-4254-8a5c-8f8ca081431e?api-version=2019-05-13-preview" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "c7d4a516-b91e-48a5-9e36-66be993aede0" + "0ef9e596-c132-4d8b-bd14-e31291ac08e3" ], "x-ms-client-request-id": [ - "2bd18e52-f1e4-40f4-be9f-37a5dd632d73", - "2bd18e52-f1e4-40f4-be9f-37a5dd632d73" - ], - "X-Powered-By": [ - "ASP.NET" + "3495fd44-a614-44cf-b9c6-259732e0f5ac", + "3495fd44-a614-44cf-b9c6-259732e0f5ac" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "299" + "280" ], "x-ms-correlation-request-id": [ - "c7d4a516-b91e-48a5-9e36-66be993aede0" + "0ef9e596-c132-4d8b-bd14-e31291ac08e3" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T114110Z:c7d4a516-b91e-48a5-9e36-66be993aede0" + "WESTINDIA:20220516T162046Z:0ef9e596-c132-4d8b-bd14-e31291ac08e3" ], "Date": [ - "Sat, 26 Mar 2022 11:41:10 GMT" + "Mon, 16 May 2022 16:20:45 GMT" ], "Content-Length": [ - "846" + "2" ], "Content-Type": [ "application/json" @@ -2023,26 +2148,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/57ff0e5c-4f8d-418c-8292-849f6fabb7f2\",\r\n \"name\": \"57ff0e5c-4f8d-418c-8292-849f6fabb7f2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT42.7192487S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"Storage\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"File Share Name\": \"fs1\",\r\n \"Storage Account Name\": \"pstestsa8895\",\r\n \"Policy Name\": \"afspolicy1\"\r\n }\r\n },\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"ConfigureBackup\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-03-26T11:40:26.315054Z\",\r\n \"endTime\": \"2022-03-26T11:41:09.0343027Z\",\r\n \"activityId\": \"2bd18e52-f1e4-40f4-be9f-37a5dd632d73\"\r\n }\r\n}", - "StatusCode": 200 + "ResponseBody": "{}", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/57ff0e5c-4f8d-418c-8292-849f6fabb7f2?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy81N2ZmMGU1Yy00ZjhkLTQxOGMtODI5Mi04NDlmNmZhYmI3ZjI/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895/operationResults/5490573a-3dd4-4254-8a5c-8f8ca081431e?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9vcGVyYXRpb25SZXN1bHRzLzU0OTA1NzNhLTNkZDQtNDI1NC04YTVjLThmOGNhMDgxNDMxZT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0cd7cd2b-488d-4e9d-961c-e86ba866ad8e" + "3495fd44-a614-44cf-b9c6-259732e0f5ac" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -2052,40 +2177,39 @@ "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-IIS/10.0" - ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "722584c6-4b29-441c-8d3e-e2030dec9b92" + "c3bc4f24-bbd4-40de-a69e-9727a2f6ed0a" ], "x-ms-client-request-id": [ - "0cd7cd2b-488d-4e9d-961c-e86ba866ad8e", - "0cd7cd2b-488d-4e9d-961c-e86ba866ad8e" - ], - "X-Powered-By": [ - "ASP.NET" + "3495fd44-a614-44cf-b9c6-259732e0f5ac", + "3495fd44-a614-44cf-b9c6-259732e0f5ac" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "297" + "279" ], "x-ms-correlation-request-id": [ - "722584c6-4b29-441c-8d3e-e2030dec9b92" + "c3bc4f24-bbd4-40de-a69e-9727a2f6ed0a" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T114112Z:722584c6-4b29-441c-8d3e-e2030dec9b92" + "WESTINDIA:20220516T162046Z:c3bc4f24-bbd4-40de-a69e-9727a2f6ed0a" ], "Date": [ - "Sat, 26 Mar 2022 11:41:12 GMT" + "Mon, 16 May 2022 16:20:46 GMT" ], "Content-Length": [ - "846" + "737" ], "Content-Type": [ "application/json" @@ -2094,26 +2218,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/57ff0e5c-4f8d-418c-8292-849f6fabb7f2\",\r\n \"name\": \"57ff0e5c-4f8d-418c-8292-849f6fabb7f2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT42.7192487S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"Storage\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"File Share Name\": \"fs1\",\r\n \"Storage Account Name\": \"pstestsa8895\",\r\n \"Policy Name\": \"afspolicy1\"\r\n }\r\n },\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"ConfigureBackup\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-03-26T11:40:26.315054Z\",\r\n \"endTime\": \"2022-03-26T11:41:09.0343027Z\",\r\n \"activityId\": \"2bd18e52-f1e4-40f4-be9f-37a5dd632d73\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895\",\r\n \"name\": \"StorageContainer;Storage;pstestrg8895;pstestsa8895\",\r\n \"properties\": {\r\n \"sourceResourceId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstestsa8895\",\r\n \"protectedItemCount\": 0,\r\n \"acquireStorageAccountLock\": \"Acquire\",\r\n \"friendlyName\": \"pstestsa8895\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"registrationStatus\": \"Registered\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerType\": \"StorageContainer\",\r\n \"protectableObjectType\": \"StorageContainer\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/57ff0e5c-4f8d-418c-8292-849f6fabb7f2?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy81N2ZmMGU1Yy00ZjhkLTQxOGMtODI5Mi04NDlmNmZhYmI3ZjI/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895/operationResults/5490573a-3dd4-4254-8a5c-8f8ca081431e?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9vcGVyYXRpb25SZXN1bHRzLzU0OTA1NzNhLTNkZDQtNDI1NC04YTVjLThmOGNhMDgxNDMxZT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "634a8f01-a163-4713-8481-770e3dca3b58" + "3495fd44-a614-44cf-b9c6-259732e0f5ac" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -2123,40 +2247,39 @@ "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-IIS/10.0" - ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "c15d7cb7-69c5-4113-a2d9-8407532d0107" + "08515b41-c677-4bf0-a892-d54314bdcd51" ], "x-ms-client-request-id": [ - "634a8f01-a163-4713-8481-770e3dca3b58", - "634a8f01-a163-4713-8481-770e3dca3b58" - ], - "X-Powered-By": [ - "ASP.NET" + "3495fd44-a614-44cf-b9c6-259732e0f5ac", + "3495fd44-a614-44cf-b9c6-259732e0f5ac" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "296" + "278" ], "x-ms-correlation-request-id": [ - "c15d7cb7-69c5-4113-a2d9-8407532d0107" + "08515b41-c677-4bf0-a892-d54314bdcd51" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T114113Z:c15d7cb7-69c5-4113-a2d9-8407532d0107" + "WESTINDIA:20220516T162047Z:08515b41-c677-4bf0-a892-d54314bdcd51" ], "Date": [ - "Sat, 26 Mar 2022 11:41:13 GMT" + "Mon, 16 May 2022 16:20:47 GMT" ], "Content-Length": [ - "846" + "737" ], "Content-Type": [ "application/json" @@ -2165,26 +2288,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/57ff0e5c-4f8d-418c-8292-849f6fabb7f2\",\r\n \"name\": \"57ff0e5c-4f8d-418c-8292-849f6fabb7f2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT42.7192487S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"Storage\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"File Share Name\": \"fs1\",\r\n \"Storage Account Name\": \"pstestsa8895\",\r\n \"Policy Name\": \"afspolicy1\"\r\n }\r\n },\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"ConfigureBackup\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-03-26T11:40:26.315054Z\",\r\n \"endTime\": \"2022-03-26T11:41:09.0343027Z\",\r\n \"activityId\": \"2bd18e52-f1e4-40f4-be9f-37a5dd632d73\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895\",\r\n \"name\": \"StorageContainer;Storage;pstestrg8895;pstestsa8895\",\r\n \"properties\": {\r\n \"sourceResourceId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstestsa8895\",\r\n \"protectedItemCount\": 0,\r\n \"acquireStorageAccountLock\": \"Acquire\",\r\n \"friendlyName\": \"pstestsa8895\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"registrationStatus\": \"Registered\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerType\": \"StorageContainer\",\r\n \"protectableObjectType\": \"StorageContainer\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupProtectedItems?$filter=backupManagementType%20eq%20'AzureStorage'%20and%20itemType%20eq%20'AzureFileShare'&api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwUHJvdGVjdGVkSXRlbXM/JGZpbHRlcj1iYWNrdXBNYW5hZ2VtZW50VHlwZSUyMGVxJTIwJ0F6dXJlU3RvcmFnZSclMjBhbmQlMjBpdGVtVHlwZSUyMGVxJTIwJ0F6dXJlRmlsZVNoYXJlJyZhcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupProtectableItems?$filter=backupManagementType%20eq%20'AzureStorage'&api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwUHJvdGVjdGFibGVJdGVtcz8kZmlsdGVyPWJhY2t1cE1hbmFnZW1lbnRUeXBlJTIwZXElMjAnQXp1cmVTdG9yYWdlJyZhcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a52aafae-134e-4913-a5ff-bcffafd52afd" + "3495fd44-a614-44cf-b9c6-259732e0f5ac" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -2198,11 +2321,11 @@ "nosniff" ], "x-ms-request-id": [ - "4749ee9a-4a96-4656-b349-95aa0d2e59d8" + "4b0cf9c6-1c97-471f-a9b6-6e14497f0489" ], "x-ms-client-request-id": [ - "a52aafae-134e-4913-a5ff-bcffafd52afd", - "a52aafae-134e-4913-a5ff-bcffafd52afd" + "3495fd44-a614-44cf-b9c6-259732e0f5ac", + "3495fd44-a614-44cf-b9c6-259732e0f5ac" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2217,16 +2340,16 @@ "299" ], "x-ms-correlation-request-id": [ - "4749ee9a-4a96-4656-b349-95aa0d2e59d8" + "4b0cf9c6-1c97-471f-a9b6-6e14497f0489" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T114111Z:4749ee9a-4a96-4656-b349-95aa0d2e59d8" + "WESTINDIA:20220516T162047Z:4b0cf9c6-1c97-471f-a9b6-6e14497f0489" ], "Date": [ - "Sat, 26 Mar 2022 11:41:11 GMT" + "Mon, 16 May 2022 16:20:47 GMT" ], "Content-Length": [ - "1219" + "12" ], "Content-Type": [ "application/json" @@ -2235,26 +2358,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;storage;pstestrg8895;pstestsa8895/protectedItems/AzureFileShare;698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959\",\r\n \"name\": \"AzureFileShare;698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems\",\r\n \"properties\": {\r\n \"kpisHealths\": {},\r\n \"friendlyName\": \"fs1\",\r\n \"protectionStatus\": \"Healthy\",\r\n \"protectionState\": \"IRPending\",\r\n \"lastBackupStatus\": \"IRPending\",\r\n \"protectedItemType\": \"AzureFileShareProtectedItem\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"workloadType\": \"AzureFileShare\",\r\n \"containerName\": \"StorageContainer;storage;pstestrg8895;pstestsa8895\",\r\n \"sourceResourceId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.storage/storageAccounts/pstestsa8895\",\r\n \"policyId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupPolicies/afspolicy1\",\r\n \"isArchiveEnabled\": false\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": []\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3Bstorage%3Bpstestrg8895%3Bpstestsa8895/protectedItems/AzureFileShare%3B698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959?$filter=expand%20eq%20'extendedinfo'&api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCc3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9wcm90ZWN0ZWRJdGVtcy9BenVyZUZpbGVTaGFyZSUzQjY5OGRmNTk1OTQ4ZTIzNTVmMmJiNzQ0YTQxY2YyNDVkNGJhMTI1NWQ5Njk5Y2MzYzJhZDFmNTA0NWUxNzc5NTk/JGZpbHRlcj1leHBhbmQlMjBlcSUyMCdleHRlbmRlZGluZm8nJmFwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupProtectableItems?$filter=backupManagementType%20eq%20'AzureStorage'&api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwUHJvdGVjdGFibGVJdGVtcz8kZmlsdGVyPWJhY2t1cE1hbmFnZW1lbnRUeXBlJTIwZXElMjAnQXp1cmVTdG9yYWdlJyZhcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a52aafae-134e-4913-a5ff-bcffafd52afd" + "3495fd44-a614-44cf-b9c6-259732e0f5ac" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -2268,11 +2391,11 @@ "nosniff" ], "x-ms-request-id": [ - "43612531-b1ab-4cf7-8972-03680e220a95" + "648435d6-0e6b-4d98-89d1-c6fe5b06473c" ], "x-ms-client-request-id": [ - "a52aafae-134e-4913-a5ff-bcffafd52afd", - "a52aafae-134e-4913-a5ff-bcffafd52afd" + "3495fd44-a614-44cf-b9c6-259732e0f5ac", + "3495fd44-a614-44cf-b9c6-259732e0f5ac" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2284,19 +2407,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "299" + "298" ], "x-ms-correlation-request-id": [ - "43612531-b1ab-4cf7-8972-03680e220a95" + "648435d6-0e6b-4d98-89d1-c6fe5b06473c" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T114112Z:43612531-b1ab-4cf7-8972-03680e220a95" + "WESTINDIA:20220516T162055Z:648435d6-0e6b-4d98-89d1-c6fe5b06473c" ], "Date": [ - "Sat, 26 Mar 2022 11:41:11 GMT" + "Mon, 16 May 2022 16:20:55 GMT" ], "Content-Length": [ - "1354" + "947" ], "Content-Type": [ "application/json" @@ -2305,26 +2428,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;storage;pstestrg8895;pstestsa8895/protectedItems/AzureFileShare;698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959\",\r\n \"name\": \"AzureFileShare;698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems\",\r\n \"properties\": {\r\n \"kpisHealths\": {},\r\n \"friendlyName\": \"fs1\",\r\n \"protectionStatus\": \"Healthy\",\r\n \"protectionState\": \"IRPending\",\r\n \"lastBackupStatus\": \"IRPending\",\r\n \"extendedInfo\": {\r\n \"recoveryPointCount\": 0,\r\n \"policyState\": \"Consistent\",\r\n \"resourceState\": \"Active\",\r\n \"resourceStateSyncTime\": \"2022-03-26T11:41:08.7217912Z\"\r\n },\r\n \"protectedItemType\": \"AzureFileShareProtectedItem\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"workloadType\": \"AzureFileShare\",\r\n \"containerName\": \"StorageContainer;storage;pstestrg8895;pstestsa8895\",\r\n \"sourceResourceId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.storage/storageAccounts/pstestsa8895\",\r\n \"policyId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupPolicies/afspolicy1\",\r\n \"isArchiveEnabled\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/storagecontainer;storage;pstestrg8895;pstestsa8895/protectableItems/azurefileshare;698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959\",\r\n \"name\": \"azurefileshare;698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems\",\r\n \"properties\": {\r\n \"parentContainerFabricId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstestsa8895\",\r\n \"parentContainerFriendlyName\": \"pstestsa8895\",\r\n \"azureFileShareType\": \"XSMB\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"workloadType\": \"AzureFileShare\",\r\n \"protectableItemType\": \"AzureFileShare\",\r\n \"friendlyName\": \"fs1\",\r\n \"protectionState\": \"NotProtected\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs?$filter=operation%20eq%20''%20and%20startTime%20eq%20'2022-03-25%2011:41:12%20AM'%20and%20endTime%20eq%20'2022-03-26%2011:41:12%20AM'&api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icz8kZmlsdGVyPW9wZXJhdGlvbiUyMGVxJTIwJyclMjBhbmQlMjBzdGFydFRpbWUlMjBlcSUyMCcyMDIyLTAzLTI1JTIwMTE6NDE6MTIlMjBBTSclMjBhbmQlMjBlbmRUaW1lJTIwZXElMjAnMjAyMi0wMy0yNiUyMDExOjQxOjEyJTIwQU0nJmFwaS12ZXJzaW9uPTIwMjEtMTItMDE=", - "RequestMethod": "GET", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895/inquire?$filter=workloadType%20eq%20'AzureFileShare'&api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9pbnF1aXJlPyRmaWx0ZXI9d29ya2xvYWRUeXBlJTIwZXElMjAnQXp1cmVGaWxlU2hhcmUnJmFwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "71f1818b-e9d5-48d6-a7d3-89616ad04e78" + "3495fd44-a614-44cf-b9c6-259732e0f5ac" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -2334,68 +2457,70 @@ "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-IIS/10.0" + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationResults/6098258d-cdaa-4165-9b6b-7553832f5bf1?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationsStatus/6098258d-cdaa-4165-9b6b-7553832f5bf1?api-version=2019-05-13-preview" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "12292f5b-8fdb-4144-b758-1db610ace6c7" + "66f4cec0-a1a1-4d7a-80de-690581b86ef0" ], "x-ms-client-request-id": [ - "71f1818b-e9d5-48d6-a7d3-89616ad04e78", - "71f1818b-e9d5-48d6-a7d3-89616ad04e78" - ], - "X-Powered-By": [ - "ASP.NET" + "3495fd44-a614-44cf-b9c6-259732e0f5ac", + "3495fd44-a614-44cf-b9c6-259732e0f5ac" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "298" + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" ], "x-ms-correlation-request-id": [ - "12292f5b-8fdb-4144-b758-1db610ace6c7" + "66f4cec0-a1a1-4d7a-80de-690581b86ef0" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T114112Z:12292f5b-8fdb-4144-b758-1db610ace6c7" + "WESTINDIA:20220516T162048Z:66f4cec0-a1a1-4d7a-80de-690581b86ef0" ], "Date": [ - "Sat, 26 Mar 2022 11:41:12 GMT" - ], - "Content-Length": [ - "27149" - ], - "Content-Type": [ - "application/json" + "Mon, 16 May 2022 16:20:48 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/57ff0e5c-4f8d-418c-8292-849f6fabb7f2\",\r\n \"name\": \"57ff0e5c-4f8d-418c-8292-849f6fabb7f2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT42.7192487S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"Storage\",\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"ConfigureBackup\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-03-26T11:40:26.315054Z\",\r\n \"endTime\": \"2022-03-26T11:41:09.0343027Z\",\r\n \"activityId\": \"2bd18e52-f1e4-40f4-be9f-37a5dd632d73\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/14c6277a-ac46-4f25-8a3d-c259eac05070\",\r\n \"name\": \"14c6277a-ac46-4f25-8a3d-c259eac05070\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT23.2616966S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"Storage\",\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"pstestsa8895\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Register\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-03-26T11:39:57.2610006Z\",\r\n \"endTime\": \"2022-03-26T11:40:20.5226972Z\",\r\n \"activityId\": \"2bd18e52-f1e4-40f4-be9f-37a5dd632d73\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/864cb523-d273-49b0-932e-1aa391a727a5\",\r\n \"name\": \"864cb523-d273-49b0-932e-1aa391a727a5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT23.6617207S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"Storage\",\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"pstestsa8895\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"UnRegister\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-03-26T10:02:34.7700035Z\",\r\n \"endTime\": \"2022-03-26T10:02:58.4317242Z\",\r\n \"activityId\": \"5ce376ee-c10b-422f-ac6e-2529304b8317\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/bd282af2-74ee-44f1-b8b6-ba10c38748d6\",\r\n \"name\": \"bd282af2-74ee-44f1-b8b6-ba10c38748d6\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT22.1462265S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"Storage\",\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"DeleteBackupData\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-03-26T10:02:01.813618Z\",\r\n \"endTime\": \"2022-03-26T10:02:23.9598445Z\",\r\n \"activityId\": \"71d8a62f-abbe-481c-b07e-91bdcaf80a25\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/dcf9fa8e-efbd-4fc0-9f79-958a357e0cb8\",\r\n \"name\": \"dcf9fa8e-efbd-4fc0-9f79-958a357e0cb8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"duration\": \"PT32.8679589S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-03-26T10:00:57.7071283Z\",\r\n \"endTime\": \"2022-03-26T10:01:30.5750872Z\",\r\n \"activityId\": \"e6a21136-a7ea-4f38-97e5-47524c628ec0\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/73e4797a-0b90-4144-bbfe-20e4f073ef2e\",\r\n \"name\": \"73e4797a-0b90-4144-bbfe-20e4f073ef2e\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"duration\": \"PT33.0240721S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-03-26T09:59:53.7784997Z\",\r\n \"endTime\": \"2022-03-26T10:00:26.8025718Z\",\r\n \"activityId\": \"710f4ec8-20fe-4fdd-9de3-b7169babc8eb\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/1b7e1e78-04b5-43fa-b657-0e90c57521ed\",\r\n \"name\": \"1b7e1e78-04b5-43fa-b657-0e90c57521ed\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"duration\": \"PT32.4384942S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-03-26T09:58:50.1950909Z\",\r\n \"endTime\": \"2022-03-26T09:59:22.6335851Z\",\r\n \"activityId\": \"bbfb3d3c-8482-49e1-94e1-71481f000bf8\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/2d99d9cc-0921-4577-b6cc-ebff7dd126f5\",\r\n \"name\": \"2d99d9cc-0921-4577-b6cc-ebff7dd126f5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"duration\": \"PT32.7308836S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-03-26T09:57:46.4191668Z\",\r\n \"endTime\": \"2022-03-26T09:58:19.1500504Z\",\r\n \"activityId\": \"875fb7d6-5caf-4a93-8aa9-ce8dcad33c8f\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/263e6342-e9d5-4653-b55c-acaf87dcb360\",\r\n \"name\": \"263e6342-e9d5-4653-b55c-acaf87dcb360\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"duration\": \"PT46.9891146S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-03-26T09:56:42.4412607Z\",\r\n \"endTime\": \"2022-03-26T09:57:29.4303753Z\",\r\n \"activityId\": \"ef85bfee-a58f-425b-bdf6-6efd860f2fcd\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/9bce39eb-167f-437f-a250-d175a0b5a9de\",\r\n \"name\": \"9bce39eb-167f-437f-a250-d175a0b5a9de\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT2.6940355S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"MicrosoftStorage\",\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-03-26T09:55:38.226849Z\",\r\n \"endTime\": \"2022-03-26T09:55:40.9208845Z\",\r\n \"activityId\": \"0b1781fe-3a7f-4e4a-bdc4-7593fab735d5\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/43171772-b9f5-4743-8375-50d28f1d1db7\",\r\n \"name\": \"43171772-b9f5-4743-8375-50d28f1d1db7\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT42.9972104S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"Storage\",\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"ConfigureBackup\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-03-26T09:54:42.6900537Z\",\r\n \"endTime\": \"2022-03-26T09:55:25.6872641Z\",\r\n \"activityId\": \"c6f1d089-4a93-47b8-a09c-8e0808468896\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/f9eb5164-378e-4e5c-bd59-73a833eca70a\",\r\n \"name\": \"f9eb5164-378e-4e5c-bd59-73a833eca70a\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT11.6793706S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"Storage\",\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"pstestsa8895\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Register\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-03-26T09:54:20.0198547Z\",\r\n \"endTime\": \"2022-03-26T09:54:31.6992253Z\",\r\n \"activityId\": \"c6f1d089-4a93-47b8-a09c-8e0808468896\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/3f170e7c-5362-4c23-ac5e-6ee029be1e5d\",\r\n \"name\": \"3f170e7c-5362-4c23-ac5e-6ee029be1e5d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT23.5171866S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"Storage\",\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"pstestsa8895\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"UnRegister\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-03-26T09:53:37.7004695Z\",\r\n \"endTime\": \"2022-03-26T09:54:01.2176561Z\",\r\n \"activityId\": \"436df36e-bd56-478d-959a-80c27501d470\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/3f952331-a043-41a6-a5b0-e16faf287f14\",\r\n \"name\": \"3f952331-a043-41a6-a5b0-e16faf287f14\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT21.1915184S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"Storage\",\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"DeleteBackupData\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-03-26T09:53:14.7875007Z\",\r\n \"endTime\": \"2022-03-26T09:53:35.9790191Z\",\r\n \"activityId\": \"b2b5b25d-395b-4474-ba5f-80a59ab92dd5\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/0a6b6438-49ca-4ab6-ab29-e9c270c84788\",\r\n \"name\": \"0a6b6438-49ca-4ab6-ab29-e9c270c84788\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT41.4628665S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"Storage\",\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"ConfigureBackup\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-03-26T09:52:29.9540872Z\",\r\n \"endTime\": \"2022-03-26T09:53:11.4169537Z\",\r\n \"activityId\": \"5e8325aa-e488-40cc-bb1f-f94d7d638d5c\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/4c63698a-3684-4826-9104-c5e941a98884\",\r\n \"name\": \"4c63698a-3684-4826-9104-c5e941a98884\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT42.5017425S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"Storage\",\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"ConfigureBackup\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-03-26T09:51:33.9414315Z\",\r\n \"endTime\": \"2022-03-26T09:52:16.443174Z\",\r\n \"activityId\": \"57dd8b3f-51de-4b2e-bb61-278104b124e7\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/8d26f365-b510-4279-8e97-8085d857cc73\",\r\n \"name\": \"8d26f365-b510-4279-8e97-8085d857cc73\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT12.1600734S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"Storage\",\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"pstestsa8895\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Register\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-03-26T09:51:10.7182819Z\",\r\n \"endTime\": \"2022-03-26T09:51:22.8783553Z\",\r\n \"activityId\": \"57dd8b3f-51de-4b2e-bb61-278104b124e7\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/1ed7f676-9f53-47a0-be44-1a95d9423c4b\",\r\n \"name\": \"1ed7f676-9f53-47a0-be44-1a95d9423c4b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT23.4246491S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"Storage\",\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"pstestsa8895\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"UnRegister\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-03-26T09:50:29.1148258Z\",\r\n \"endTime\": \"2022-03-26T09:50:52.5394749Z\",\r\n \"activityId\": \"f6701f77-4f4e-4283-ab8e-626480b8258b\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/3f3f7b1d-de21-4404-8972-7a5230043480\",\r\n \"name\": \"3f3f7b1d-de21-4404-8972-7a5230043480\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT21.6914953S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"Storage\",\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"DeleteBackupData\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-03-26T09:49:55.5447063Z\",\r\n \"endTime\": \"2022-03-26T09:50:17.2362016Z\",\r\n \"activityId\": \"f7dc25b6-2271-4e15-a667-67ab7c0a9ecd\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/3c9f5cc5-4f78-416f-9834-ec1dd0c300c2\",\r\n \"name\": \"3c9f5cc5-4f78-416f-9834-ec1dd0c300c2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT2.5571821S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"MicrosoftStorage\",\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-03-26T09:48:51.192171Z\",\r\n \"endTime\": \"2022-03-26T09:48:53.7493531Z\",\r\n \"activityId\": \"e37c471d-8bcb-4433-8823-ba496c36e726\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/4201e88b-7d2b-4785-a36e-5f10ca833965\",\r\n \"name\": \"4201e88b-7d2b-4785-a36e-5f10ca833965\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT42.1570008S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"Storage\",\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"ConfigureBackup\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-03-26T09:48:05.1830658Z\",\r\n \"endTime\": \"2022-03-26T09:48:47.3400666Z\",\r\n \"activityId\": \"19f80edc-34d0-4416-bb59-dfd0ac6da4f0\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/0d77fc83-4c24-4d7c-b142-552257cfb96e\",\r\n \"name\": \"0d77fc83-4c24-4d7c-b142-552257cfb96e\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT28.0334628S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"Storage\",\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"pstestsa8895\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Register\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-03-26T09:47:31.6160908Z\",\r\n \"endTime\": \"2022-03-26T09:47:59.6495536Z\",\r\n \"activityId\": \"19f80edc-34d0-4416-bb59-dfd0ac6da4f0\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/130af6ec-1d4b-4723-b9e5-59eea0edf3c7\",\r\n \"name\": \"130af6ec-1d4b-4723-b9e5-59eea0edf3c7\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT23.8505195S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"Storage\",\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"pstestsa8895\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"UnRegister\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-03-26T08:50:14.4307105Z\",\r\n \"endTime\": \"2022-03-26T08:50:38.28123Z\",\r\n \"activityId\": \"ed748b06-ba8c-4277-892f-4e616aa800f2\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/1b63cf02-c748-4e4c-acb0-fd7b971ed8a6\",\r\n \"name\": \"1b63cf02-c748-4e4c-acb0-fd7b971ed8a6\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT21.5540902S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"Storage\",\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"DeleteBackupData\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-03-26T08:49:41.3890659Z\",\r\n \"endTime\": \"2022-03-26T08:50:02.9431561Z\",\r\n \"activityId\": \"8a9ac54c-c681-4ab4-9c14-bf595fdceb5f\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/8b5d9156-8fb0-4bd6-9f6c-91682fbd6df1\",\r\n \"name\": \"8b5d9156-8fb0-4bd6-9f6c-91682fbd6df1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT42.3312149S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"Storage\",\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"ConfigureBackup\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-03-26T08:48:44.032676Z\",\r\n \"endTime\": \"2022-03-26T08:49:26.3638909Z\",\r\n \"activityId\": \"d8e78e34-f966-4976-9fbd-58d17bcb5c8a\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/756b0587-be95-4127-9540-674395c9c125\",\r\n \"name\": \"756b0587-be95-4127-9540-674395c9c125\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT11.8239018S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"Storage\",\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"pstestsa8895\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Register\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-03-26T08:48:21.1942954Z\",\r\n \"endTime\": \"2022-03-26T08:48:33.0181972Z\",\r\n \"activityId\": \"d8e78e34-f966-4976-9fbd-58d17bcb5c8a\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/8c17a08c-26c9-47be-84f4-5f7ca9ccfec6\",\r\n \"name\": \"8c17a08c-26c9-47be-84f4-5f7ca9ccfec6\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT24.264383S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"Storage\",\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"pstestsa8895\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"UnRegister\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-03-26T08:47:38.6385509Z\",\r\n \"endTime\": \"2022-03-26T08:48:02.9029339Z\",\r\n \"activityId\": \"24727d24-33bc-4760-a6d6-7de3ad2feeea\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/f5a93728-e9a9-418f-b671-9b165ba57d04\",\r\n \"name\": \"f5a93728-e9a9-418f-b671-9b165ba57d04\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT21.6486127S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"Storage\",\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"DeleteBackupData\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-03-26T08:47:05.9143952Z\",\r\n \"endTime\": \"2022-03-26T08:47:27.5630079Z\",\r\n \"activityId\": \"0116c2f4-41a2-4df6-b307-d408a172b3dd\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/43dad9dd-0648-490d-8f19-adde22975b0a\",\r\n \"name\": \"43dad9dd-0648-490d-8f19-adde22975b0a\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT42.3180023S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"Storage\",\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"ConfigureBackup\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-03-26T08:46:09.5856191Z\",\r\n \"endTime\": \"2022-03-26T08:46:51.9036214Z\",\r\n \"activityId\": \"12d6e3a0-e8c4-496c-b6af-21323463ae7d\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/026b85ad-b3c8-41e1-bdfd-f1728e49cd23\",\r\n \"name\": \"026b85ad-b3c8-41e1-bdfd-f1728e49cd23\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT12.352555S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"Storage\",\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"pstestsa8895\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Register\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-03-26T08:45:46.8803425Z\",\r\n \"endTime\": \"2022-03-26T08:45:59.2328975Z\",\r\n \"activityId\": \"12d6e3a0-e8c4-496c-b6af-21323463ae7d\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/371eedb7-5835-456a-8eaa-ec3aea472903\",\r\n \"name\": \"371eedb7-5835-456a-8eaa-ec3aea472903\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT23.932798S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"Storage\",\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"pstestsa8895\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"UnRegister\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-03-26T08:44:57.2680066Z\",\r\n \"endTime\": \"2022-03-26T08:45:21.2008046Z\",\r\n \"activityId\": \"8ce15a2a-727c-487d-8e02-d3c9b0ac1998\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/897afcc3-ba51-432a-9088-06267e987b97\",\r\n \"name\": \"897afcc3-ba51-432a-9088-06267e987b97\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT21.1836594S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"Storage\",\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"DeleteBackupData\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-03-26T08:44:33.2993392Z\",\r\n \"endTime\": \"2022-03-26T08:44:54.4829986Z\",\r\n \"activityId\": \"e9194750-9964-481b-b880-b8d8295f4568\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/8c30881e-2f44-436f-b85d-fcd1a14219d5\",\r\n \"name\": \"8c30881e-2f44-436f-b85d-fcd1a14219d5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT43.6141722S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"Storage\",\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"ConfigureBackup\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-03-26T08:43:38.6623882Z\",\r\n \"endTime\": \"2022-03-26T08:44:22.2765604Z\",\r\n \"activityId\": \"5c4d9eb3-b751-474b-a91d-ea6ffd24b222\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/ac140717-13e7-411c-b9ce-fbf59d5b6110\",\r\n \"name\": \"ac140717-13e7-411c-b9ce-fbf59d5b6110\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT12.8048575S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"Storage\",\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"pstestsa8895\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Register\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-03-26T08:43:19.5105326Z\",\r\n \"endTime\": \"2022-03-26T08:43:32.3153901Z\",\r\n \"activityId\": \"5c4d9eb3-b751-474b-a91d-ea6ffd24b222\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/c9b94ae2-5ac4-470f-bb6a-c0835446b4f1\",\r\n \"name\": \"c9b94ae2-5ac4-470f-bb6a-c0835446b4f1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT24.5004221S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"Storage\",\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"pstestsa8895\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"UnRegister\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-03-26T08:05:05.6916064Z\",\r\n \"endTime\": \"2022-03-26T08:05:30.1920285Z\",\r\n \"activityId\": \"d5c998cf-c423-4075-b42f-2f04aef98dd6\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/f6e15415-5012-4619-9d73-9e933278db4d\",\r\n \"name\": \"f6e15415-5012-4619-9d73-9e933278db4d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT21.553208S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"Storage\",\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"DeleteBackupData\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-03-26T08:04:42.1085586Z\",\r\n \"endTime\": \"2022-03-26T08:05:03.6617666Z\",\r\n \"activityId\": \"570e26d0-e023-409c-b0c7-9cae97810c47\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/3b0005a9-06c9-4e8d-93cb-8a09dfae0b17\",\r\n \"name\": \"3b0005a9-06c9-4e8d-93cb-8a09dfae0b17\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT42.9964142S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"Storage\",\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"ConfigureBackup\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-03-26T08:03:48.1427742Z\",\r\n \"endTime\": \"2022-03-26T08:04:31.1391884Z\",\r\n \"activityId\": \"9ee7925b-c730-4d4e-a557-85424b0f8ec1\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/99833fa7-b9c1-4925-b843-1dcee038ecd7\",\r\n \"name\": \"99833fa7-b9c1-4925-b843-1dcee038ecd7\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT25.17579S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"Storage\",\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"pstestsa8895\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Register\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-03-26T08:03:17.1963618Z\",\r\n \"endTime\": \"2022-03-26T08:03:42.3721518Z\",\r\n \"activityId\": \"9ee7925b-c730-4d4e-a557-85424b0f8ec1\"\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 + "ResponseBody": "", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/14c6277a-ac46-4f25-8a3d-c259eac05070?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy8xNGM2Mjc3YS1hYzQ2LTRmMjUtOGEzZC1jMjU5ZWFjMDUwNzA/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/6098258d-cdaa-4165-9b6b-7553832f5bf1?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzLzYwOTgyNThkLWNkYWEtNDE2NS05YjZiLTc1NTM4MzJmNWJmMT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "202e9db4-761c-44a3-b9fe-fd89cfd81689" + "3495fd44-a614-44cf-b9c6-259732e0f5ac" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -2405,68 +2530,67 @@ "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-IIS/10.0" + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/6098258d-cdaa-4165-9b6b-7553832f5bf1?api-version=2022-02-01" + ], + "Retry-After": [ + "60" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "22da4745-3dd5-487b-a962-fac416a958d2" + "76eebbe5-046d-4804-9839-c0edea47c465" ], "x-ms-client-request-id": [ - "202e9db4-761c-44a3-b9fe-fd89cfd81689", - "202e9db4-761c-44a3-b9fe-fd89cfd81689" - ], - "X-Powered-By": [ - "ASP.NET" + "3495fd44-a614-44cf-b9c6-259732e0f5ac", + "3495fd44-a614-44cf-b9c6-259732e0f5ac" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Powered-By": [ + "ASP.NET" + ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "295" + "299" ], "x-ms-correlation-request-id": [ - "22da4745-3dd5-487b-a962-fac416a958d2" + "76eebbe5-046d-4804-9839-c0edea47c465" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T114113Z:22da4745-3dd5-487b-a962-fac416a958d2" + "WESTINDIA:20220516T162049Z:76eebbe5-046d-4804-9839-c0edea47c465" ], "Date": [ - "Sat, 26 Mar 2022 11:41:13 GMT" - ], - "Content-Length": [ - "798" - ], - "Content-Type": [ - "application/json" + "Mon, 16 May 2022 16:20:48 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/14c6277a-ac46-4f25-8a3d-c259eac05070\",\r\n \"name\": \"14c6277a-ac46-4f25-8a3d-c259eac05070\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT23.2616966S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"Storage\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Storage Account Name\": \"pstestsa8895\"\r\n }\r\n },\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"pstestsa8895\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Register\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-03-26T11:39:57.2610006Z\",\r\n \"endTime\": \"2022-03-26T11:40:20.5226972Z\",\r\n \"activityId\": \"2bd18e52-f1e4-40f4-be9f-37a5dd632d73\"\r\n }\r\n}", - "StatusCode": 200 + "ResponseBody": "", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/14c6277a-ac46-4f25-8a3d-c259eac05070?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy8xNGM2Mjc3YS1hYzQ2LTRmMjUtOGEzZC1jMjU5ZWFjMDUwNzA/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/6098258d-cdaa-4165-9b6b-7553832f5bf1?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzLzYwOTgyNThkLWNkYWEtNDE2NS05YjZiLTc1NTM4MzJmNWJmMT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fe4b9486-e642-4381-a282-377bc7c1613f" + "3495fd44-a614-44cf-b9c6-259732e0f5ac" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -2476,68 +2600,67 @@ "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-IIS/10.0" + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/6098258d-cdaa-4165-9b6b-7553832f5bf1?api-version=2022-02-01" + ], + "Retry-After": [ + "60" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "4c732a91-5307-40ed-9a99-90bac8e59297" + "2bc31914-0071-429a-b80b-adf76c032e79" ], "x-ms-client-request-id": [ - "fe4b9486-e642-4381-a282-377bc7c1613f", - "fe4b9486-e642-4381-a282-377bc7c1613f" - ], - "X-Powered-By": [ - "ASP.NET" + "3495fd44-a614-44cf-b9c6-259732e0f5ac", + "3495fd44-a614-44cf-b9c6-259732e0f5ac" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Powered-By": [ + "ASP.NET" + ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "294" + "298" ], "x-ms-correlation-request-id": [ - "4c732a91-5307-40ed-9a99-90bac8e59297" + "2bc31914-0071-429a-b80b-adf76c032e79" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T114114Z:4c732a91-5307-40ed-9a99-90bac8e59297" + "WESTINDIA:20220516T162049Z:2bc31914-0071-429a-b80b-adf76c032e79" ], "Date": [ - "Sat, 26 Mar 2022 11:41:13 GMT" - ], - "Content-Length": [ - "798" - ], - "Content-Type": [ - "application/json" + "Mon, 16 May 2022 16:20:49 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/14c6277a-ac46-4f25-8a3d-c259eac05070\",\r\n \"name\": \"14c6277a-ac46-4f25-8a3d-c259eac05070\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT23.2616966S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"Storage\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Storage Account Name\": \"pstestsa8895\"\r\n }\r\n },\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"pstestsa8895\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Register\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-03-26T11:39:57.2610006Z\",\r\n \"endTime\": \"2022-03-26T11:40:20.5226972Z\",\r\n \"activityId\": \"2bd18e52-f1e4-40f4-be9f-37a5dd632d73\"\r\n }\r\n}", - "StatusCode": 200 + "ResponseBody": "", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/864cb523-d273-49b0-932e-1aa391a727a5?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy84NjRjYjUyMy1kMjczLTQ5YjAtOTMyZS0xYWEzOTFhNzI3YTU/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/6098258d-cdaa-4165-9b6b-7553832f5bf1?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzLzYwOTgyNThkLWNkYWEtNDE2NS05YjZiLTc1NTM4MzJmNWJmMT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "12e22fab-8866-407f-b8eb-af407ef2f522" + "3495fd44-a614-44cf-b9c6-259732e0f5ac" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -2547,68 +2670,67 @@ "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-IIS/10.0" + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/6098258d-cdaa-4165-9b6b-7553832f5bf1?api-version=2022-02-01" + ], + "Retry-After": [ + "60" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "e2adaaca-e8c9-4a3a-8d23-e480789d8d16" + "3534666b-a0c7-44fa-a051-f982d64ae8e4" ], "x-ms-client-request-id": [ - "12e22fab-8866-407f-b8eb-af407ef2f522", - "12e22fab-8866-407f-b8eb-af407ef2f522" - ], - "X-Powered-By": [ - "ASP.NET" + "3495fd44-a614-44cf-b9c6-259732e0f5ac", + "3495fd44-a614-44cf-b9c6-259732e0f5ac" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Powered-By": [ + "ASP.NET" + ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "293" + "297" ], "x-ms-correlation-request-id": [ - "e2adaaca-e8c9-4a3a-8d23-e480789d8d16" + "3534666b-a0c7-44fa-a051-f982d64ae8e4" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T114114Z:e2adaaca-e8c9-4a3a-8d23-e480789d8d16" + "WESTINDIA:20220516T162049Z:3534666b-a0c7-44fa-a051-f982d64ae8e4" ], "Date": [ - "Sat, 26 Mar 2022 11:41:14 GMT" - ], - "Content-Length": [ - "800" - ], - "Content-Type": [ - "application/json" + "Mon, 16 May 2022 16:20:49 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/864cb523-d273-49b0-932e-1aa391a727a5\",\r\n \"name\": \"864cb523-d273-49b0-932e-1aa391a727a5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT23.6617207S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"Storage\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Storage Account Name\": \"pstestsa8895\"\r\n }\r\n },\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"pstestsa8895\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"UnRegister\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-03-26T10:02:34.7700035Z\",\r\n \"endTime\": \"2022-03-26T10:02:58.4317242Z\",\r\n \"activityId\": \"5ce376ee-c10b-422f-ac6e-2529304b8317\"\r\n }\r\n}", - "StatusCode": 200 + "ResponseBody": "", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/864cb523-d273-49b0-932e-1aa391a727a5?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy84NjRjYjUyMy1kMjczLTQ5YjAtOTMyZS0xYWEzOTFhNzI3YTU/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/6098258d-cdaa-4165-9b6b-7553832f5bf1?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzLzYwOTgyNThkLWNkYWEtNDE2NS05YjZiLTc1NTM4MzJmNWJmMT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6a828f4c-2917-4412-b57c-35885a47f17c" + "3495fd44-a614-44cf-b9c6-259732e0f5ac" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -2618,68 +2740,67 @@ "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-IIS/10.0" + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/6098258d-cdaa-4165-9b6b-7553832f5bf1?api-version=2022-02-01" + ], + "Retry-After": [ + "60" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "004c2486-08e3-4923-8752-36fb643910b9" + "ca524985-bf95-4b98-857a-5f5d921ee9bd" ], "x-ms-client-request-id": [ - "6a828f4c-2917-4412-b57c-35885a47f17c", - "6a828f4c-2917-4412-b57c-35885a47f17c" - ], - "X-Powered-By": [ - "ASP.NET" + "3495fd44-a614-44cf-b9c6-259732e0f5ac", + "3495fd44-a614-44cf-b9c6-259732e0f5ac" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Powered-By": [ + "ASP.NET" + ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "292" + "296" ], "x-ms-correlation-request-id": [ - "004c2486-08e3-4923-8752-36fb643910b9" + "ca524985-bf95-4b98-857a-5f5d921ee9bd" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T114115Z:004c2486-08e3-4923-8752-36fb643910b9" + "WESTINDIA:20220516T162050Z:ca524985-bf95-4b98-857a-5f5d921ee9bd" ], "Date": [ - "Sat, 26 Mar 2022 11:41:14 GMT" - ], - "Content-Length": [ - "800" - ], - "Content-Type": [ - "application/json" + "Mon, 16 May 2022 16:20:50 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/864cb523-d273-49b0-932e-1aa391a727a5\",\r\n \"name\": \"864cb523-d273-49b0-932e-1aa391a727a5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT23.6617207S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"Storage\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Storage Account Name\": \"pstestsa8895\"\r\n }\r\n },\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"pstestsa8895\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"UnRegister\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-03-26T10:02:34.7700035Z\",\r\n \"endTime\": \"2022-03-26T10:02:58.4317242Z\",\r\n \"activityId\": \"5ce376ee-c10b-422f-ac6e-2529304b8317\"\r\n }\r\n}", - "StatusCode": 200 + "ResponseBody": "", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/bd282af2-74ee-44f1-b8b6-ba10c38748d6?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9iZDI4MmFmMi03NGVlLTQ0ZjEtYjhiNi1iYTEwYzM4NzQ4ZDY/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/6098258d-cdaa-4165-9b6b-7553832f5bf1?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzLzYwOTgyNThkLWNkYWEtNDE2NS05YjZiLTc1NTM4MzJmNWJmMT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "74670adf-a680-4a7a-a0a0-b68a1dd92d3f" + "3495fd44-a614-44cf-b9c6-259732e0f5ac" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -2689,68 +2810,67 @@ "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-IIS/10.0" + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/6098258d-cdaa-4165-9b6b-7553832f5bf1?api-version=2022-02-01" + ], + "Retry-After": [ + "60" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "acf74d12-9680-4338-89a0-88f4f16604d9" + "376f3b7c-e2b8-4510-92a4-a07e42d2f9f1" ], "x-ms-client-request-id": [ - "74670adf-a680-4a7a-a0a0-b68a1dd92d3f", - "74670adf-a680-4a7a-a0a0-b68a1dd92d3f" - ], - "X-Powered-By": [ - "ASP.NET" + "3495fd44-a614-44cf-b9c6-259732e0f5ac", + "3495fd44-a614-44cf-b9c6-259732e0f5ac" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Powered-By": [ + "ASP.NET" + ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "291" + "295" ], "x-ms-correlation-request-id": [ - "acf74d12-9680-4338-89a0-88f4f16604d9" + "376f3b7c-e2b8-4510-92a4-a07e42d2f9f1" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T114115Z:acf74d12-9680-4338-89a0-88f4f16604d9" + "WESTINDIA:20220516T162051Z:376f3b7c-e2b8-4510-92a4-a07e42d2f9f1" ], "Date": [ - "Sat, 26 Mar 2022 11:41:15 GMT" - ], - "Content-Length": [ - "820" - ], - "Content-Type": [ - "application/json" + "Mon, 16 May 2022 16:20:51 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/bd282af2-74ee-44f1-b8b6-ba10c38748d6\",\r\n \"name\": \"bd282af2-74ee-44f1-b8b6-ba10c38748d6\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT22.1462265S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"Storage\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"File Share Name\": \"fs1\",\r\n \"Storage Account Name\": \"pstestsa8895\"\r\n }\r\n },\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"DeleteBackupData\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-03-26T10:02:01.813618Z\",\r\n \"endTime\": \"2022-03-26T10:02:23.9598445Z\",\r\n \"activityId\": \"71d8a62f-abbe-481c-b07e-91bdcaf80a25\"\r\n }\r\n}", - "StatusCode": 200 + "ResponseBody": "", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/bd282af2-74ee-44f1-b8b6-ba10c38748d6?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9iZDI4MmFmMi03NGVlLTQ0ZjEtYjhiNi1iYTEwYzM4NzQ4ZDY/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/6098258d-cdaa-4165-9b6b-7553832f5bf1?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzLzYwOTgyNThkLWNkYWEtNDE2NS05YjZiLTc1NTM4MzJmNWJmMT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9f584cf9-505a-4282-9c4d-bc8385c701ed" + "3495fd44-a614-44cf-b9c6-259732e0f5ac" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -2760,68 +2880,67 @@ "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-IIS/10.0" + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/6098258d-cdaa-4165-9b6b-7553832f5bf1?api-version=2022-02-01" + ], + "Retry-After": [ + "60" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "e408634c-9893-4919-af1f-367398372490" + "9049af30-2c81-4535-8d50-0ec1d7313fd9" ], "x-ms-client-request-id": [ - "9f584cf9-505a-4282-9c4d-bc8385c701ed", - "9f584cf9-505a-4282-9c4d-bc8385c701ed" - ], - "X-Powered-By": [ - "ASP.NET" + "3495fd44-a614-44cf-b9c6-259732e0f5ac", + "3495fd44-a614-44cf-b9c6-259732e0f5ac" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Powered-By": [ + "ASP.NET" + ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "290" + "294" ], "x-ms-correlation-request-id": [ - "e408634c-9893-4919-af1f-367398372490" + "9049af30-2c81-4535-8d50-0ec1d7313fd9" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T114115Z:e408634c-9893-4919-af1f-367398372490" + "WESTINDIA:20220516T162052Z:9049af30-2c81-4535-8d50-0ec1d7313fd9" ], "Date": [ - "Sat, 26 Mar 2022 11:41:15 GMT" - ], - "Content-Length": [ - "820" - ], - "Content-Type": [ - "application/json" + "Mon, 16 May 2022 16:20:51 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/bd282af2-74ee-44f1-b8b6-ba10c38748d6\",\r\n \"name\": \"bd282af2-74ee-44f1-b8b6-ba10c38748d6\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT22.1462265S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"Storage\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"File Share Name\": \"fs1\",\r\n \"Storage Account Name\": \"pstestsa8895\"\r\n }\r\n },\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"DeleteBackupData\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-03-26T10:02:01.813618Z\",\r\n \"endTime\": \"2022-03-26T10:02:23.9598445Z\",\r\n \"activityId\": \"71d8a62f-abbe-481c-b07e-91bdcaf80a25\"\r\n }\r\n}", - "StatusCode": 200 + "ResponseBody": "", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/dcf9fa8e-efbd-4fc0-9f79-958a357e0cb8?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9kY2Y5ZmE4ZS1lZmJkLTRmYzAtOWY3OS05NThhMzU3ZTBjYjg/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/6098258d-cdaa-4165-9b6b-7553832f5bf1?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzLzYwOTgyNThkLWNkYWEtNDE2NS05YjZiLTc1NTM4MzJmNWJmMT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "890b5d40-b6fd-44ac-a114-d278763bfa35" + "3495fd44-a614-44cf-b9c6-259732e0f5ac" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -2831,68 +2950,67 @@ "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-IIS/10.0" + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/6098258d-cdaa-4165-9b6b-7553832f5bf1?api-version=2022-02-01" + ], + "Retry-After": [ + "60" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "87ffa665-43fe-4e63-8aea-2cf9812b1192" + "0f5647bb-ac41-46fa-8fe7-c2217114e15c" ], "x-ms-client-request-id": [ - "890b5d40-b6fd-44ac-a114-d278763bfa35", - "890b5d40-b6fd-44ac-a114-d278763bfa35" - ], - "X-Powered-By": [ - "ASP.NET" + "3495fd44-a614-44cf-b9c6-259732e0f5ac", + "3495fd44-a614-44cf-b9c6-259732e0f5ac" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Powered-By": [ + "ASP.NET" + ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "289" + "293" ], "x-ms-correlation-request-id": [ - "87ffa665-43fe-4e63-8aea-2cf9812b1192" + "0f5647bb-ac41-46fa-8fe7-c2217114e15c" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T114116Z:87ffa665-43fe-4e63-8aea-2cf9812b1192" + "WESTINDIA:20220516T162052Z:0f5647bb-ac41-46fa-8fe7-c2217114e15c" ], "Date": [ - "Sat, 26 Mar 2022 11:41:16 GMT" - ], - "Content-Length": [ - "1114" - ], - "Content-Type": [ - "application/json" + "Mon, 16 May 2022 16:20:52 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/dcf9fa8e-efbd-4fc0-9f79-958a357e0cb8\",\r\n \"name\": \"dcf9fa8e-efbd-4fc0-9f79-958a357e0cb8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"duration\": \"PT32.8679589S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"RestoreRecoveryPointTime\": \"3/26/2022 9:55:40 AM\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"1\",\r\n \"Number Of Restored Files\": \"3\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-03-26T10:00:57.7071283Z\",\r\n \"endTime\": \"2022-03-26T10:01:30.5750872Z\",\r\n \"activityId\": \"e6a21136-a7ea-4f38-97e5-47524c628ec0\"\r\n }\r\n}", - "StatusCode": 200 + "ResponseBody": "", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/dcf9fa8e-efbd-4fc0-9f79-958a357e0cb8?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9kY2Y5ZmE4ZS1lZmJkLTRmYzAtOWY3OS05NThhMzU3ZTBjYjg/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/6098258d-cdaa-4165-9b6b-7553832f5bf1?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzLzYwOTgyNThkLWNkYWEtNDE2NS05YjZiLTc1NTM4MzJmNWJmMT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3d1231d2-5d35-4c70-9e78-949f48884ed0" + "3495fd44-a614-44cf-b9c6-259732e0f5ac" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -2902,68 +3020,67 @@ "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-IIS/10.0" + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/6098258d-cdaa-4165-9b6b-7553832f5bf1?api-version=2022-02-01" + ], + "Retry-After": [ + "60" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "5bacf0fc-034f-4b11-9151-0b491dfe2064" + "7fec762e-3275-4e48-815a-d4a435c5d9ff" ], "x-ms-client-request-id": [ - "3d1231d2-5d35-4c70-9e78-949f48884ed0", - "3d1231d2-5d35-4c70-9e78-949f48884ed0" - ], - "X-Powered-By": [ - "ASP.NET" + "3495fd44-a614-44cf-b9c6-259732e0f5ac", + "3495fd44-a614-44cf-b9c6-259732e0f5ac" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Powered-By": [ + "ASP.NET" + ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "288" + "292" ], "x-ms-correlation-request-id": [ - "5bacf0fc-034f-4b11-9151-0b491dfe2064" + "7fec762e-3275-4e48-815a-d4a435c5d9ff" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T114116Z:5bacf0fc-034f-4b11-9151-0b491dfe2064" + "WESTINDIA:20220516T162053Z:7fec762e-3275-4e48-815a-d4a435c5d9ff" ], "Date": [ - "Sat, 26 Mar 2022 11:41:16 GMT" - ], - "Content-Length": [ - "1114" - ], - "Content-Type": [ - "application/json" + "Mon, 16 May 2022 16:20:52 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/dcf9fa8e-efbd-4fc0-9f79-958a357e0cb8\",\r\n \"name\": \"dcf9fa8e-efbd-4fc0-9f79-958a357e0cb8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"duration\": \"PT32.8679589S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"RestoreRecoveryPointTime\": \"3/26/2022 9:55:40 AM\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"1\",\r\n \"Number Of Restored Files\": \"3\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-03-26T10:00:57.7071283Z\",\r\n \"endTime\": \"2022-03-26T10:01:30.5750872Z\",\r\n \"activityId\": \"e6a21136-a7ea-4f38-97e5-47524c628ec0\"\r\n }\r\n}", - "StatusCode": 200 + "ResponseBody": "", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/73e4797a-0b90-4144-bbfe-20e4f073ef2e?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy83M2U0Nzk3YS0wYjkwLTQxNDQtYmJmZS0yMGU0ZjA3M2VmMmU/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/6098258d-cdaa-4165-9b6b-7553832f5bf1?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzLzYwOTgyNThkLWNkYWEtNDE2NS05YjZiLTc1NTM4MzJmNWJmMT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e4ed5111-bc94-49a0-87c7-74c0182439df" + "3495fd44-a614-44cf-b9c6-259732e0f5ac" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -2973,68 +3090,67 @@ "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-IIS/10.0" + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/6098258d-cdaa-4165-9b6b-7553832f5bf1?api-version=2022-02-01" + ], + "Retry-After": [ + "60" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "4c1e6aa6-fbd7-49a4-9a48-fe355555d603" + "0fc45f9d-f058-4b8e-9b7b-8d7f378bb1c0" ], "x-ms-client-request-id": [ - "e4ed5111-bc94-49a0-87c7-74c0182439df", - "e4ed5111-bc94-49a0-87c7-74c0182439df" - ], - "X-Powered-By": [ - "ASP.NET" + "3495fd44-a614-44cf-b9c6-259732e0f5ac", + "3495fd44-a614-44cf-b9c6-259732e0f5ac" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Powered-By": [ + "ASP.NET" + ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "287" + "291" ], "x-ms-correlation-request-id": [ - "4c1e6aa6-fbd7-49a4-9a48-fe355555d603" + "0fc45f9d-f058-4b8e-9b7b-8d7f378bb1c0" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T114117Z:4c1e6aa6-fbd7-49a4-9a48-fe355555d603" + "WESTINDIA:20220516T162053Z:0fc45f9d-f058-4b8e-9b7b-8d7f378bb1c0" ], "Date": [ - "Sat, 26 Mar 2022 11:41:16 GMT" - ], - "Content-Length": [ - "1114" - ], - "Content-Type": [ - "application/json" + "Mon, 16 May 2022 16:20:53 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/73e4797a-0b90-4144-bbfe-20e4f073ef2e\",\r\n \"name\": \"73e4797a-0b90-4144-bbfe-20e4f073ef2e\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"duration\": \"PT33.0240721S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"RestoreRecoveryPointTime\": \"3/26/2022 9:55:40 AM\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"1\",\r\n \"Number Of Restored Files\": \"1\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-03-26T09:59:53.7784997Z\",\r\n \"endTime\": \"2022-03-26T10:00:26.8025718Z\",\r\n \"activityId\": \"710f4ec8-20fe-4fdd-9de3-b7169babc8eb\"\r\n }\r\n}", - "StatusCode": 200 + "ResponseBody": "", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/73e4797a-0b90-4144-bbfe-20e4f073ef2e?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy83M2U0Nzk3YS0wYjkwLTQxNDQtYmJmZS0yMGU0ZjA3M2VmMmU/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/6098258d-cdaa-4165-9b6b-7553832f5bf1?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzLzYwOTgyNThkLWNkYWEtNDE2NS05YjZiLTc1NTM4MzJmNWJmMT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "40d305c8-ad3d-483e-968f-b2b625b3443d" + "3495fd44-a614-44cf-b9c6-259732e0f5ac" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -3044,68 +3160,67 @@ "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-IIS/10.0" + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/6098258d-cdaa-4165-9b6b-7553832f5bf1?api-version=2022-02-01" + ], + "Retry-After": [ + "60" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "776ddcc8-6e6c-403b-bcda-dd78d3b505ae" + "4d2a9c0b-3667-4c1d-972b-9b6afb244888" ], "x-ms-client-request-id": [ - "40d305c8-ad3d-483e-968f-b2b625b3443d", - "40d305c8-ad3d-483e-968f-b2b625b3443d" - ], - "X-Powered-By": [ - "ASP.NET" + "3495fd44-a614-44cf-b9c6-259732e0f5ac", + "3495fd44-a614-44cf-b9c6-259732e0f5ac" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Powered-By": [ + "ASP.NET" + ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "286" + "290" ], "x-ms-correlation-request-id": [ - "776ddcc8-6e6c-403b-bcda-dd78d3b505ae" + "4d2a9c0b-3667-4c1d-972b-9b6afb244888" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T114117Z:776ddcc8-6e6c-403b-bcda-dd78d3b505ae" + "WESTINDIA:20220516T162053Z:4d2a9c0b-3667-4c1d-972b-9b6afb244888" ], "Date": [ - "Sat, 26 Mar 2022 11:41:17 GMT" - ], - "Content-Length": [ - "1114" - ], - "Content-Type": [ - "application/json" + "Mon, 16 May 2022 16:20:53 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/73e4797a-0b90-4144-bbfe-20e4f073ef2e\",\r\n \"name\": \"73e4797a-0b90-4144-bbfe-20e4f073ef2e\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"duration\": \"PT33.0240721S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"RestoreRecoveryPointTime\": \"3/26/2022 9:55:40 AM\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"1\",\r\n \"Number Of Restored Files\": \"1\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-03-26T09:59:53.7784997Z\",\r\n \"endTime\": \"2022-03-26T10:00:26.8025718Z\",\r\n \"activityId\": \"710f4ec8-20fe-4fdd-9de3-b7169babc8eb\"\r\n }\r\n}", - "StatusCode": 200 + "ResponseBody": "", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/1b7e1e78-04b5-43fa-b657-0e90c57521ed?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy8xYjdlMWU3OC0wNGI1LTQzZmEtYjY1Ny0wZTkwYzU3NTIxZWQ/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/6098258d-cdaa-4165-9b6b-7553832f5bf1?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzLzYwOTgyNThkLWNkYWEtNDE2NS05YjZiLTc1NTM4MzJmNWJmMT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "000f7e13-9e40-498b-9723-7cc197e19903" + "3495fd44-a614-44cf-b9c6-259732e0f5ac" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -3115,68 +3230,55 @@ "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-IIS/10.0" - ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "68c74a8b-a251-4a04-b9bf-22781a19b2e9" + "3276a679-a37b-4454-a11f-c519d4fd0815" ], "x-ms-client-request-id": [ - "000f7e13-9e40-498b-9723-7cc197e19903", - "000f7e13-9e40-498b-9723-7cc197e19903" - ], - "X-Powered-By": [ - "ASP.NET" + "3495fd44-a614-44cf-b9c6-259732e0f5ac", + "3495fd44-a614-44cf-b9c6-259732e0f5ac" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Powered-By": [ + "ASP.NET" + ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "285" + "289" ], "x-ms-correlation-request-id": [ - "68c74a8b-a251-4a04-b9bf-22781a19b2e9" + "3276a679-a37b-4454-a11f-c519d4fd0815" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T114117Z:68c74a8b-a251-4a04-b9bf-22781a19b2e9" + "WESTINDIA:20220516T162054Z:3276a679-a37b-4454-a11f-c519d4fd0815" ], "Date": [ - "Sat, 26 Mar 2022 11:41:17 GMT" - ], - "Content-Length": [ - "1219" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" + "Mon, 16 May 2022 16:20:54 GMT" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/1b7e1e78-04b5-43fa-b657-0e90c57521ed\",\r\n \"name\": \"1b7e1e78-04b5-43fa-b657-0e90c57521ed\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"duration\": \"PT32.4384942S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"RestoreRecoveryPointTime\": \"3/26/2022 9:55:40 AM\",\r\n \"Target File Share Name\": \"fs1\",\r\n \"Target Storage Account Name\": \"pstesttargetsa8896\",\r\n \"Job Type\": \"Recover to an alternate file share\",\r\n \"RestoreDestination\": \"pstesttargetsa8896/fs1/pstestfolder3rty7d7s\",\r\n \"Data Transferred (in MB)\": \"1\",\r\n \"Number Of Restored Files\": \"3\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-03-26T09:58:50.1950909Z\",\r\n \"endTime\": \"2022-03-26T09:59:22.6335851Z\",\r\n \"activityId\": \"bbfb3d3c-8482-49e1-94e1-71481f000bf8\"\r\n }\r\n}", - "StatusCode": 200 + "ResponseBody": "", + "StatusCode": 204 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/1b7e1e78-04b5-43fa-b657-0e90c57521ed?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy8xYjdlMWU3OC0wNGI1LTQzZmEtYjY1Ny0wZTkwYzU3NTIxZWQ/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/6098258d-cdaa-4165-9b6b-7553832f5bf1?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzLzYwOTgyNThkLWNkYWEtNDE2NS05YjZiLTc1NTM4MzJmNWJmMT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3a3ce71e-6cd3-4456-a6e8-083a54a9dd56" + "3495fd44-a614-44cf-b9c6-259732e0f5ac" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -3186,68 +3288,61 @@ "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-IIS/10.0" - ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "8a0456fa-428e-405f-9079-6e40c4b3a21a" + "89aa77de-92c8-4634-93d4-485214c99e13" ], "x-ms-client-request-id": [ - "3a3ce71e-6cd3-4456-a6e8-083a54a9dd56", - "3a3ce71e-6cd3-4456-a6e8-083a54a9dd56" - ], - "X-Powered-By": [ - "ASP.NET" + "3495fd44-a614-44cf-b9c6-259732e0f5ac", + "3495fd44-a614-44cf-b9c6-259732e0f5ac" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Powered-By": [ + "ASP.NET" + ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "284" + "288" ], "x-ms-correlation-request-id": [ - "8a0456fa-428e-405f-9079-6e40c4b3a21a" + "89aa77de-92c8-4634-93d4-485214c99e13" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T114118Z:8a0456fa-428e-405f-9079-6e40c4b3a21a" + "WESTINDIA:20220516T162054Z:89aa77de-92c8-4634-93d4-485214c99e13" ], "Date": [ - "Sat, 26 Mar 2022 11:41:18 GMT" - ], - "Content-Length": [ - "1219" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" + "Mon, 16 May 2022 16:20:54 GMT" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/1b7e1e78-04b5-43fa-b657-0e90c57521ed\",\r\n \"name\": \"1b7e1e78-04b5-43fa-b657-0e90c57521ed\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"duration\": \"PT32.4384942S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"RestoreRecoveryPointTime\": \"3/26/2022 9:55:40 AM\",\r\n \"Target File Share Name\": \"fs1\",\r\n \"Target Storage Account Name\": \"pstesttargetsa8896\",\r\n \"Job Type\": \"Recover to an alternate file share\",\r\n \"RestoreDestination\": \"pstesttargetsa8896/fs1/pstestfolder3rty7d7s\",\r\n \"Data Transferred (in MB)\": \"1\",\r\n \"Number Of Restored Files\": \"3\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-03-26T09:58:50.1950909Z\",\r\n \"endTime\": \"2022-03-26T09:59:22.6335851Z\",\r\n \"activityId\": \"bbfb3d3c-8482-49e1-94e1-71481f000bf8\"\r\n }\r\n}", - "StatusCode": 200 + "ResponseBody": "", + "StatusCode": 204 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/2d99d9cc-0921-4577-b6cc-ebff7dd126f5?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy8yZDk5ZDljYy0wOTIxLTQ1NzctYjZjYy1lYmZmN2RkMTI2ZjU/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/storagecontainer%3Bstorage%3Bpstestrg8895%3Bpstestsa8895/protectedItems/azurefileshare%3B698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9zdG9yYWdlY29udGFpbmVyJTNCc3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9wcm90ZWN0ZWRJdGVtcy9henVyZWZpbGVzaGFyZSUzQjY5OGRmNTk1OTQ4ZTIzNTVmMmJiNzQ0YTQxY2YyNDVkNGJhMTI1NWQ5Njk5Y2MzYzJhZDFmNTA0NWUxNzc5NTk/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"protectedItemType\": \"AzureFileShareProtectedItem\",\r\n \"sourceResourceId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstestsa8895\",\r\n \"policyId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupPolicies/afspolicy1\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "01a58f68-e369-4866-8071-71992ba00133" + "3495fd44-a614-44cf-b9c6-259732e0f5ac" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "433" ] }, "ResponseHeaders": { @@ -3257,68 +3352,70 @@ "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-IIS/10.0" + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/storagecontainer;storage;pstestrg8895;pstestsa8895/protectedItems/azurefileshare;698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959/operationResults/a7ebb62e-372f-4616-8a2a-a06aa5882ed8?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/storagecontainer;storage;pstestrg8895;pstestsa8895/protectedItems/azurefileshare;698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959/operationsStatus/a7ebb62e-372f-4616-8a2a-a06aa5882ed8?api-version=2022-02-01" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "32f23c0e-0ae8-4477-888e-5a980df20a18" + "d2451f9a-8011-4e15-a9c2-34ef9e66a2fd" ], "x-ms-client-request-id": [ - "01a58f68-e369-4866-8071-71992ba00133", - "01a58f68-e369-4866-8071-71992ba00133" - ], - "X-Powered-By": [ - "ASP.NET" + "3495fd44-a614-44cf-b9c6-259732e0f5ac", + "3495fd44-a614-44cf-b9c6-259732e0f5ac" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "283" + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" ], "x-ms-correlation-request-id": [ - "32f23c0e-0ae8-4477-888e-5a980df20a18" + "d2451f9a-8011-4e15-a9c2-34ef9e66a2fd" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T114118Z:32f23c0e-0ae8-4477-888e-5a980df20a18" + "WESTINDIA:20220516T162056Z:d2451f9a-8011-4e15-a9c2-34ef9e66a2fd" ], "Date": [ - "Sat, 26 Mar 2022 11:41:18 GMT" - ], - "Content-Length": [ - "1219" - ], - "Content-Type": [ - "application/json" + "Mon, 16 May 2022 16:20:56 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/2d99d9cc-0921-4577-b6cc-ebff7dd126f5\",\r\n \"name\": \"2d99d9cc-0921-4577-b6cc-ebff7dd126f5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"duration\": \"PT32.7308836S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"RestoreRecoveryPointTime\": \"3/26/2022 9:55:40 AM\",\r\n \"Target File Share Name\": \"fs1\",\r\n \"Target Storage Account Name\": \"pstesttargetsa8896\",\r\n \"Job Type\": \"Recover to an alternate file share\",\r\n \"RestoreDestination\": \"pstesttargetsa8896/fs1/pstestfolder3rty7d7s\",\r\n \"Data Transferred (in MB)\": \"1\",\r\n \"Number Of Restored Files\": \"1\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-03-26T09:57:46.4191668Z\",\r\n \"endTime\": \"2022-03-26T09:58:19.1500504Z\",\r\n \"activityId\": \"875fb7d6-5caf-4a93-8aa9-ce8dcad33c8f\"\r\n }\r\n}", - "StatusCode": 200 + "ResponseBody": "", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/2d99d9cc-0921-4577-b6cc-ebff7dd126f5?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy8yZDk5ZDljYy0wOTIxLTQ1NzctYjZjYy1lYmZmN2RkMTI2ZjU/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/a7ebb62e-372f-4616-8a2a-a06aa5882ed8?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9hN2ViYjYyZS0zNzJmLTQ2MTYtOGEyYS1hMDZhYTU4ODJlZDg/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fb2707ab-b8ca-46fc-8321-a96c47ecd940" + "3495fd44-a614-44cf-b9c6-259732e0f5ac" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -3328,40 +3425,39 @@ "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-IIS/10.0" - ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "5a974345-9205-4bf9-bfd0-b017541156e2" + "2b292d79-604c-4141-ac89-954f000502ec" ], "x-ms-client-request-id": [ - "fb2707ab-b8ca-46fc-8321-a96c47ecd940", - "fb2707ab-b8ca-46fc-8321-a96c47ecd940" - ], - "X-Powered-By": [ - "ASP.NET" + "3495fd44-a614-44cf-b9c6-259732e0f5ac", + "3495fd44-a614-44cf-b9c6-259732e0f5ac" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "282" + "299" ], "x-ms-correlation-request-id": [ - "5a974345-9205-4bf9-bfd0-b017541156e2" + "2b292d79-604c-4141-ac89-954f000502ec" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T114119Z:5a974345-9205-4bf9-bfd0-b017541156e2" + "WESTINDIA:20220516T162056Z:2b292d79-604c-4141-ac89-954f000502ec" ], "Date": [ - "Sat, 26 Mar 2022 11:41:18 GMT" + "Mon, 16 May 2022 16:20:56 GMT" ], "Content-Length": [ - "1219" + "188" ], "Content-Type": [ "application/json" @@ -3370,26 +3466,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/2d99d9cc-0921-4577-b6cc-ebff7dd126f5\",\r\n \"name\": \"2d99d9cc-0921-4577-b6cc-ebff7dd126f5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"duration\": \"PT32.7308836S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"RestoreRecoveryPointTime\": \"3/26/2022 9:55:40 AM\",\r\n \"Target File Share Name\": \"fs1\",\r\n \"Target Storage Account Name\": \"pstesttargetsa8896\",\r\n \"Job Type\": \"Recover to an alternate file share\",\r\n \"RestoreDestination\": \"pstesttargetsa8896/fs1/pstestfolder3rty7d7s\",\r\n \"Data Transferred (in MB)\": \"1\",\r\n \"Number Of Restored Files\": \"1\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-03-26T09:57:46.4191668Z\",\r\n \"endTime\": \"2022-03-26T09:58:19.1500504Z\",\r\n \"activityId\": \"875fb7d6-5caf-4a93-8aa9-ce8dcad33c8f\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"a7ebb62e-372f-4616-8a2a-a06aa5882ed8\",\r\n \"name\": \"a7ebb62e-372f-4616-8a2a-a06aa5882ed8\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T16:20:56.1688226Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/263e6342-e9d5-4653-b55c-acaf87dcb360?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy8yNjNlNjM0Mi1lOWQ1LTQ2NTMtYjU1Yy1hY2FmODdkY2IzNjA/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/a7ebb62e-372f-4616-8a2a-a06aa5882ed8?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9hN2ViYjYyZS0zNzJmLTQ2MTYtOGEyYS1hMDZhYTU4ODJlZDg/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3ab2138e-7379-4117-8b67-9f7d85717530" + "3495fd44-a614-44cf-b9c6-259732e0f5ac" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -3399,40 +3495,39 @@ "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-IIS/10.0" - ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "5e50b05a-edbd-4920-b0c0-6daec4ffec67" + "9776fd92-1ecc-4814-8335-d611133b5d3f" ], "x-ms-client-request-id": [ - "3ab2138e-7379-4117-8b67-9f7d85717530", - "3ab2138e-7379-4117-8b67-9f7d85717530" - ], - "X-Powered-By": [ - "ASP.NET" + "3495fd44-a614-44cf-b9c6-259732e0f5ac", + "3495fd44-a614-44cf-b9c6-259732e0f5ac" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "281" + "298" ], "x-ms-correlation-request-id": [ - "5e50b05a-edbd-4920-b0c0-6daec4ffec67" + "9776fd92-1ecc-4814-8335-d611133b5d3f" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T114119Z:5e50b05a-edbd-4920-b0c0-6daec4ffec67" + "WESTINDIA:20220516T162057Z:9776fd92-1ecc-4814-8335-d611133b5d3f" ], "Date": [ - "Sat, 26 Mar 2022 11:41:19 GMT" + "Mon, 16 May 2022 16:20:57 GMT" ], "Content-Length": [ - "1114" + "188" ], "Content-Type": [ "application/json" @@ -3441,26 +3536,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/263e6342-e9d5-4653-b55c-acaf87dcb360\",\r\n \"name\": \"263e6342-e9d5-4653-b55c-acaf87dcb360\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"duration\": \"PT46.9891146S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"RestoreRecoveryPointTime\": \"3/26/2022 9:55:40 AM\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"2\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-03-26T09:56:42.4412607Z\",\r\n \"endTime\": \"2022-03-26T09:57:29.4303753Z\",\r\n \"activityId\": \"ef85bfee-a58f-425b-bdf6-6efd860f2fcd\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"a7ebb62e-372f-4616-8a2a-a06aa5882ed8\",\r\n \"name\": \"a7ebb62e-372f-4616-8a2a-a06aa5882ed8\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T16:20:56.1688226Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/263e6342-e9d5-4653-b55c-acaf87dcb360?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy8yNjNlNjM0Mi1lOWQ1LTQ2NTMtYjU1Yy1hY2FmODdkY2IzNjA/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/a7ebb62e-372f-4616-8a2a-a06aa5882ed8?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9hN2ViYjYyZS0zNzJmLTQ2MTYtOGEyYS1hMDZhYTU4ODJlZDg/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "01547abc-7ef5-4a53-abf0-45878d8d48ec" + "3495fd44-a614-44cf-b9c6-259732e0f5ac" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -3470,40 +3565,39 @@ "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-IIS/10.0" - ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "5c0e7c6e-d5d4-4c04-b3ae-c313818d47c1" + "dcb990e9-e2e2-40a4-8f9d-80658c4881e2" ], "x-ms-client-request-id": [ - "01547abc-7ef5-4a53-abf0-45878d8d48ec", - "01547abc-7ef5-4a53-abf0-45878d8d48ec" - ], - "X-Powered-By": [ - "ASP.NET" + "3495fd44-a614-44cf-b9c6-259732e0f5ac", + "3495fd44-a614-44cf-b9c6-259732e0f5ac" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "280" + "297" ], "x-ms-correlation-request-id": [ - "5c0e7c6e-d5d4-4c04-b3ae-c313818d47c1" + "dcb990e9-e2e2-40a4-8f9d-80658c4881e2" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T114120Z:5c0e7c6e-d5d4-4c04-b3ae-c313818d47c1" + "WESTINDIA:20220516T162057Z:dcb990e9-e2e2-40a4-8f9d-80658c4881e2" ], "Date": [ - "Sat, 26 Mar 2022 11:41:19 GMT" + "Mon, 16 May 2022 16:20:57 GMT" ], "Content-Length": [ - "1114" + "188" ], "Content-Type": [ "application/json" @@ -3512,26 +3606,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/263e6342-e9d5-4653-b55c-acaf87dcb360\",\r\n \"name\": \"263e6342-e9d5-4653-b55c-acaf87dcb360\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"duration\": \"PT46.9891146S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"RestoreRecoveryPointTime\": \"3/26/2022 9:55:40 AM\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"2\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-03-26T09:56:42.4412607Z\",\r\n \"endTime\": \"2022-03-26T09:57:29.4303753Z\",\r\n \"activityId\": \"ef85bfee-a58f-425b-bdf6-6efd860f2fcd\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"a7ebb62e-372f-4616-8a2a-a06aa5882ed8\",\r\n \"name\": \"a7ebb62e-372f-4616-8a2a-a06aa5882ed8\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T16:20:56.1688226Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/9bce39eb-167f-437f-a250-d175a0b5a9de?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy85YmNlMzllYi0xNjdmLTQzN2YtYTI1MC1kMTc1YTBiNWE5ZGU/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/a7ebb62e-372f-4616-8a2a-a06aa5882ed8?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9hN2ViYjYyZS0zNzJmLTQ2MTYtOGEyYS1hMDZhYTU4ODJlZDg/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "684d47e7-8569-4b20-bd73-18337fbcafc7" + "3495fd44-a614-44cf-b9c6-259732e0f5ac" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -3541,40 +3635,39 @@ "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-IIS/10.0" - ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "422a455d-3c5e-45a4-8955-0ee6f2c09661" + "c3eb1a31-d482-4f91-a6fb-2bcade485dea" ], "x-ms-client-request-id": [ - "684d47e7-8569-4b20-bd73-18337fbcafc7", - "684d47e7-8569-4b20-bd73-18337fbcafc7" - ], - "X-Powered-By": [ - "ASP.NET" + "3495fd44-a614-44cf-b9c6-259732e0f5ac", + "3495fd44-a614-44cf-b9c6-259732e0f5ac" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "279" + "296" ], "x-ms-correlation-request-id": [ - "422a455d-3c5e-45a4-8955-0ee6f2c09661" + "c3eb1a31-d482-4f91-a6fb-2bcade485dea" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T114120Z:422a455d-3c5e-45a4-8955-0ee6f2c09661" + "WESTINDIA:20220516T162058Z:c3eb1a31-d482-4f91-a6fb-2bcade485dea" ], "Date": [ - "Sat, 26 Mar 2022 11:41:20 GMT" + "Mon, 16 May 2022 16:20:58 GMT" ], "Content-Length": [ - "902" + "188" ], "Content-Type": [ "application/json" @@ -3583,26 +3676,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/9bce39eb-167f-437f-a250-d175a0b5a9de\",\r\n \"name\": \"9bce39eb-167f-437f-a250-d175a0b5a9de\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT2.6940355S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"MicrosoftStorage\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"status\": \"Completed\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"File Share Name\": \"fs1\",\r\n \"Whether job is adhoc or scheduled.\": \"True\"\r\n }\r\n },\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-03-26T09:55:38.226849Z\",\r\n \"endTime\": \"2022-03-26T09:55:40.9208845Z\",\r\n \"activityId\": \"0b1781fe-3a7f-4e4a-bdc4-7593fab735d5\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"a7ebb62e-372f-4616-8a2a-a06aa5882ed8\",\r\n \"name\": \"a7ebb62e-372f-4616-8a2a-a06aa5882ed8\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T16:20:56.1688226Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/9bce39eb-167f-437f-a250-d175a0b5a9de?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy85YmNlMzllYi0xNjdmLTQzN2YtYTI1MC1kMTc1YTBiNWE5ZGU/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/a7ebb62e-372f-4616-8a2a-a06aa5882ed8?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9hN2ViYjYyZS0zNzJmLTQ2MTYtOGEyYS1hMDZhYTU4ODJlZDg/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3fa1b035-5c66-4a70-9591-e9108c059b72" + "3495fd44-a614-44cf-b9c6-259732e0f5ac" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -3612,40 +3705,39 @@ "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-IIS/10.0" - ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "eb03724a-1d39-442f-8ee5-d3fed19d55f8" + "d7d6881d-e1e0-42e7-88a2-681e1267cb6c" ], "x-ms-client-request-id": [ - "3fa1b035-5c66-4a70-9591-e9108c059b72", - "3fa1b035-5c66-4a70-9591-e9108c059b72" - ], - "X-Powered-By": [ - "ASP.NET" + "3495fd44-a614-44cf-b9c6-259732e0f5ac", + "3495fd44-a614-44cf-b9c6-259732e0f5ac" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "278" + "295" ], "x-ms-correlation-request-id": [ - "eb03724a-1d39-442f-8ee5-d3fed19d55f8" + "d7d6881d-e1e0-42e7-88a2-681e1267cb6c" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T114120Z:eb03724a-1d39-442f-8ee5-d3fed19d55f8" + "WESTINDIA:20220516T162058Z:d7d6881d-e1e0-42e7-88a2-681e1267cb6c" ], "Date": [ - "Sat, 26 Mar 2022 11:41:20 GMT" + "Mon, 16 May 2022 16:20:58 GMT" ], "Content-Length": [ - "902" + "188" ], "Content-Type": [ "application/json" @@ -3654,26 +3746,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/9bce39eb-167f-437f-a250-d175a0b5a9de\",\r\n \"name\": \"9bce39eb-167f-437f-a250-d175a0b5a9de\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT2.6940355S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"MicrosoftStorage\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"status\": \"Completed\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"File Share Name\": \"fs1\",\r\n \"Whether job is adhoc or scheduled.\": \"True\"\r\n }\r\n },\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-03-26T09:55:38.226849Z\",\r\n \"endTime\": \"2022-03-26T09:55:40.9208845Z\",\r\n \"activityId\": \"0b1781fe-3a7f-4e4a-bdc4-7593fab735d5\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"a7ebb62e-372f-4616-8a2a-a06aa5882ed8\",\r\n \"name\": \"a7ebb62e-372f-4616-8a2a-a06aa5882ed8\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T16:20:56.1688226Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/43171772-b9f5-4743-8375-50d28f1d1db7?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy80MzE3MTc3Mi1iOWY1LTQ3NDMtODM3NS01MGQyOGYxZDFkYjc/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/a7ebb62e-372f-4616-8a2a-a06aa5882ed8?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9hN2ViYjYyZS0zNzJmLTQ2MTYtOGEyYS1hMDZhYTU4ODJlZDg/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "72f4742c-237f-474e-b7d7-948b70291cba" + "3495fd44-a614-44cf-b9c6-259732e0f5ac" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -3683,40 +3775,39 @@ "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-IIS/10.0" - ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "1df1a942-28ea-42ba-9419-1ad31cfcadc1" + "849b09d4-0752-4880-831c-de36cec5be83" ], "x-ms-client-request-id": [ - "72f4742c-237f-474e-b7d7-948b70291cba", - "72f4742c-237f-474e-b7d7-948b70291cba" - ], - "X-Powered-By": [ - "ASP.NET" + "3495fd44-a614-44cf-b9c6-259732e0f5ac", + "3495fd44-a614-44cf-b9c6-259732e0f5ac" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "277" + "294" ], "x-ms-correlation-request-id": [ - "1df1a942-28ea-42ba-9419-1ad31cfcadc1" + "849b09d4-0752-4880-831c-de36cec5be83" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T114121Z:1df1a942-28ea-42ba-9419-1ad31cfcadc1" + "WESTINDIA:20220516T162059Z:849b09d4-0752-4880-831c-de36cec5be83" ], "Date": [ - "Sat, 26 Mar 2022 11:41:20 GMT" + "Mon, 16 May 2022 16:20:59 GMT" ], "Content-Length": [ - "847" + "188" ], "Content-Type": [ "application/json" @@ -3725,26 +3816,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/43171772-b9f5-4743-8375-50d28f1d1db7\",\r\n \"name\": \"43171772-b9f5-4743-8375-50d28f1d1db7\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT42.9972104S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"Storage\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"File Share Name\": \"fs1\",\r\n \"Storage Account Name\": \"pstestsa8895\",\r\n \"Policy Name\": \"afspolicy1\"\r\n }\r\n },\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"ConfigureBackup\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-03-26T09:54:42.6900537Z\",\r\n \"endTime\": \"2022-03-26T09:55:25.6872641Z\",\r\n \"activityId\": \"c6f1d089-4a93-47b8-a09c-8e0808468896\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"a7ebb62e-372f-4616-8a2a-a06aa5882ed8\",\r\n \"name\": \"a7ebb62e-372f-4616-8a2a-a06aa5882ed8\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T16:20:56.1688226Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/43171772-b9f5-4743-8375-50d28f1d1db7?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy80MzE3MTc3Mi1iOWY1LTQ3NDMtODM3NS01MGQyOGYxZDFkYjc/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/a7ebb62e-372f-4616-8a2a-a06aa5882ed8?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9hN2ViYjYyZS0zNzJmLTQ2MTYtOGEyYS1hMDZhYTU4ODJlZDg/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "694c0ac6-41ab-4ee5-a6b7-d203e2cff877" + "3495fd44-a614-44cf-b9c6-259732e0f5ac" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -3754,40 +3845,39 @@ "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-IIS/10.0" - ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "780a4cfb-10b6-4de2-9c48-27cfc5d84122" + "8cc6d3d4-8b99-4626-a6e3-0ea60275e62c" ], "x-ms-client-request-id": [ - "694c0ac6-41ab-4ee5-a6b7-d203e2cff877", - "694c0ac6-41ab-4ee5-a6b7-d203e2cff877" - ], - "X-Powered-By": [ - "ASP.NET" + "3495fd44-a614-44cf-b9c6-259732e0f5ac", + "3495fd44-a614-44cf-b9c6-259732e0f5ac" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "276" + "293" ], "x-ms-correlation-request-id": [ - "780a4cfb-10b6-4de2-9c48-27cfc5d84122" + "8cc6d3d4-8b99-4626-a6e3-0ea60275e62c" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T114121Z:780a4cfb-10b6-4de2-9c48-27cfc5d84122" + "WESTINDIA:20220516T162059Z:8cc6d3d4-8b99-4626-a6e3-0ea60275e62c" ], "Date": [ - "Sat, 26 Mar 2022 11:41:21 GMT" + "Mon, 16 May 2022 16:20:59 GMT" ], "Content-Length": [ - "847" + "188" ], "Content-Type": [ "application/json" @@ -3796,26 +3886,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/43171772-b9f5-4743-8375-50d28f1d1db7\",\r\n \"name\": \"43171772-b9f5-4743-8375-50d28f1d1db7\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT42.9972104S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"Storage\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"File Share Name\": \"fs1\",\r\n \"Storage Account Name\": \"pstestsa8895\",\r\n \"Policy Name\": \"afspolicy1\"\r\n }\r\n },\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"ConfigureBackup\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-03-26T09:54:42.6900537Z\",\r\n \"endTime\": \"2022-03-26T09:55:25.6872641Z\",\r\n \"activityId\": \"c6f1d089-4a93-47b8-a09c-8e0808468896\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"a7ebb62e-372f-4616-8a2a-a06aa5882ed8\",\r\n \"name\": \"a7ebb62e-372f-4616-8a2a-a06aa5882ed8\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T16:20:56.1688226Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/f9eb5164-378e-4e5c-bd59-73a833eca70a?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9mOWViNTE2NC0zNzhlLTRlNWMtYmQ1OS03M2E4MzNlY2E3MGE/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/a7ebb62e-372f-4616-8a2a-a06aa5882ed8?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9hN2ViYjYyZS0zNzJmLTQ2MTYtOGEyYS1hMDZhYTU4ODJlZDg/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c17d85fe-86e6-456e-966d-8ad10ba12106" + "3495fd44-a614-44cf-b9c6-259732e0f5ac" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -3825,40 +3915,39 @@ "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-IIS/10.0" - ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "51b00972-29c9-4872-9bca-02287bfb289a" + "edd40e31-752f-4f61-bfe0-5382468060bb" ], "x-ms-client-request-id": [ - "c17d85fe-86e6-456e-966d-8ad10ba12106", - "c17d85fe-86e6-456e-966d-8ad10ba12106" - ], - "X-Powered-By": [ - "ASP.NET" + "3495fd44-a614-44cf-b9c6-259732e0f5ac", + "3495fd44-a614-44cf-b9c6-259732e0f5ac" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "275" + "292" ], "x-ms-correlation-request-id": [ - "51b00972-29c9-4872-9bca-02287bfb289a" + "edd40e31-752f-4f61-bfe0-5382468060bb" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T114122Z:51b00972-29c9-4872-9bca-02287bfb289a" + "WESTINDIA:20220516T162100Z:edd40e31-752f-4f61-bfe0-5382468060bb" ], "Date": [ - "Sat, 26 Mar 2022 11:41:21 GMT" + "Mon, 16 May 2022 16:21:00 GMT" ], "Content-Length": [ - "798" + "188" ], "Content-Type": [ "application/json" @@ -3867,26 +3956,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/f9eb5164-378e-4e5c-bd59-73a833eca70a\",\r\n \"name\": \"f9eb5164-378e-4e5c-bd59-73a833eca70a\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT11.6793706S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"Storage\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Storage Account Name\": \"pstestsa8895\"\r\n }\r\n },\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"pstestsa8895\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Register\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-03-26T09:54:20.0198547Z\",\r\n \"endTime\": \"2022-03-26T09:54:31.6992253Z\",\r\n \"activityId\": \"c6f1d089-4a93-47b8-a09c-8e0808468896\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"a7ebb62e-372f-4616-8a2a-a06aa5882ed8\",\r\n \"name\": \"a7ebb62e-372f-4616-8a2a-a06aa5882ed8\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T16:20:56.1688226Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/f9eb5164-378e-4e5c-bd59-73a833eca70a?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9mOWViNTE2NC0zNzhlLTRlNWMtYmQ1OS03M2E4MzNlY2E3MGE/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/a7ebb62e-372f-4616-8a2a-a06aa5882ed8?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9hN2ViYjYyZS0zNzJmLTQ2MTYtOGEyYS1hMDZhYTU4ODJlZDg/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4d4a4a95-cc35-4043-b74e-b4f026340b13" + "3495fd44-a614-44cf-b9c6-259732e0f5ac" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -3896,40 +3985,39 @@ "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-IIS/10.0" - ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "73401b2f-3699-4248-bf29-037624d7e0b2" + "eb0c7ded-e952-4ecf-a2be-9dcffe3f58f7" ], "x-ms-client-request-id": [ - "4d4a4a95-cc35-4043-b74e-b4f026340b13", - "4d4a4a95-cc35-4043-b74e-b4f026340b13" - ], - "X-Powered-By": [ - "ASP.NET" + "3495fd44-a614-44cf-b9c6-259732e0f5ac", + "3495fd44-a614-44cf-b9c6-259732e0f5ac" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "274" + "291" ], "x-ms-correlation-request-id": [ - "73401b2f-3699-4248-bf29-037624d7e0b2" + "eb0c7ded-e952-4ecf-a2be-9dcffe3f58f7" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T114122Z:73401b2f-3699-4248-bf29-037624d7e0b2" + "WESTINDIA:20220516T162100Z:eb0c7ded-e952-4ecf-a2be-9dcffe3f58f7" ], "Date": [ - "Sat, 26 Mar 2022 11:41:22 GMT" + "Mon, 16 May 2022 16:21:00 GMT" ], "Content-Length": [ - "798" + "188" ], "Content-Type": [ "application/json" @@ -3938,26 +4026,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/f9eb5164-378e-4e5c-bd59-73a833eca70a\",\r\n \"name\": \"f9eb5164-378e-4e5c-bd59-73a833eca70a\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT11.6793706S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"Storage\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Storage Account Name\": \"pstestsa8895\"\r\n }\r\n },\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"pstestsa8895\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Register\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-03-26T09:54:20.0198547Z\",\r\n \"endTime\": \"2022-03-26T09:54:31.6992253Z\",\r\n \"activityId\": \"c6f1d089-4a93-47b8-a09c-8e0808468896\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"a7ebb62e-372f-4616-8a2a-a06aa5882ed8\",\r\n \"name\": \"a7ebb62e-372f-4616-8a2a-a06aa5882ed8\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T16:20:56.1688226Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/3f170e7c-5362-4c23-ac5e-6ee029be1e5d?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy8zZjE3MGU3Yy01MzYyLTRjMjMtYWM1ZS02ZWUwMjliZTFlNWQ/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/a7ebb62e-372f-4616-8a2a-a06aa5882ed8?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9hN2ViYjYyZS0zNzJmLTQ2MTYtOGEyYS1hMDZhYTU4ODJlZDg/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "71227cbf-d56e-480c-9833-fd3c5677172e" + "3495fd44-a614-44cf-b9c6-259732e0f5ac" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -3967,40 +4055,39 @@ "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-IIS/10.0" - ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "4e502640-cdfd-42e0-9727-18ac5e8264a8" + "ac7a4f4f-c87c-4374-af7d-1ea404708633" ], "x-ms-client-request-id": [ - "71227cbf-d56e-480c-9833-fd3c5677172e", - "71227cbf-d56e-480c-9833-fd3c5677172e" - ], - "X-Powered-By": [ - "ASP.NET" + "3495fd44-a614-44cf-b9c6-259732e0f5ac", + "3495fd44-a614-44cf-b9c6-259732e0f5ac" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "273" + "290" ], "x-ms-correlation-request-id": [ - "4e502640-cdfd-42e0-9727-18ac5e8264a8" + "ac7a4f4f-c87c-4374-af7d-1ea404708633" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T114122Z:4e502640-cdfd-42e0-9727-18ac5e8264a8" + "WESTINDIA:20220516T162101Z:ac7a4f4f-c87c-4374-af7d-1ea404708633" ], "Date": [ - "Sat, 26 Mar 2022 11:41:22 GMT" + "Mon, 16 May 2022 16:21:01 GMT" ], "Content-Length": [ - "800" + "188" ], "Content-Type": [ "application/json" @@ -4009,26 +4096,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/3f170e7c-5362-4c23-ac5e-6ee029be1e5d\",\r\n \"name\": \"3f170e7c-5362-4c23-ac5e-6ee029be1e5d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT23.5171866S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"Storage\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Storage Account Name\": \"pstestsa8895\"\r\n }\r\n },\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"pstestsa8895\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"UnRegister\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-03-26T09:53:37.7004695Z\",\r\n \"endTime\": \"2022-03-26T09:54:01.2176561Z\",\r\n \"activityId\": \"436df36e-bd56-478d-959a-80c27501d470\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"a7ebb62e-372f-4616-8a2a-a06aa5882ed8\",\r\n \"name\": \"a7ebb62e-372f-4616-8a2a-a06aa5882ed8\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T16:20:56.1688226Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/3f170e7c-5362-4c23-ac5e-6ee029be1e5d?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy8zZjE3MGU3Yy01MzYyLTRjMjMtYWM1ZS02ZWUwMjliZTFlNWQ/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/a7ebb62e-372f-4616-8a2a-a06aa5882ed8?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9hN2ViYjYyZS0zNzJmLTQ2MTYtOGEyYS1hMDZhYTU4ODJlZDg/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "42d3dd70-dd2c-42e1-a051-f74f755548de" + "3495fd44-a614-44cf-b9c6-259732e0f5ac" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -4038,40 +4125,39 @@ "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-IIS/10.0" - ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "8892a6ec-90d7-464d-8efa-4d2b99ebe663" + "9e26eb3c-5906-40e3-aac9-c41134d43b5c" ], "x-ms-client-request-id": [ - "42d3dd70-dd2c-42e1-a051-f74f755548de", - "42d3dd70-dd2c-42e1-a051-f74f755548de" - ], - "X-Powered-By": [ - "ASP.NET" + "3495fd44-a614-44cf-b9c6-259732e0f5ac", + "3495fd44-a614-44cf-b9c6-259732e0f5ac" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "272" + "289" ], "x-ms-correlation-request-id": [ - "8892a6ec-90d7-464d-8efa-4d2b99ebe663" + "9e26eb3c-5906-40e3-aac9-c41134d43b5c" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T114123Z:8892a6ec-90d7-464d-8efa-4d2b99ebe663" + "WESTINDIA:20220516T162102Z:9e26eb3c-5906-40e3-aac9-c41134d43b5c" ], "Date": [ - "Sat, 26 Mar 2022 11:41:22 GMT" + "Mon, 16 May 2022 16:21:01 GMT" ], "Content-Length": [ - "800" + "188" ], "Content-Type": [ "application/json" @@ -4080,26 +4166,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/3f170e7c-5362-4c23-ac5e-6ee029be1e5d\",\r\n \"name\": \"3f170e7c-5362-4c23-ac5e-6ee029be1e5d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT23.5171866S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"Storage\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Storage Account Name\": \"pstestsa8895\"\r\n }\r\n },\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"pstestsa8895\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"UnRegister\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-03-26T09:53:37.7004695Z\",\r\n \"endTime\": \"2022-03-26T09:54:01.2176561Z\",\r\n \"activityId\": \"436df36e-bd56-478d-959a-80c27501d470\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"a7ebb62e-372f-4616-8a2a-a06aa5882ed8\",\r\n \"name\": \"a7ebb62e-372f-4616-8a2a-a06aa5882ed8\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T16:20:56.1688226Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/3f952331-a043-41a6-a5b0-e16faf287f14?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy8zZjk1MjMzMS1hMDQzLTQxYTYtYTViMC1lMTZmYWYyODdmMTQ/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/a7ebb62e-372f-4616-8a2a-a06aa5882ed8?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9hN2ViYjYyZS0zNzJmLTQ2MTYtOGEyYS1hMDZhYTU4ODJlZDg/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d40bb57e-9798-4cc6-b8e9-32a43c7c5681" + "3495fd44-a614-44cf-b9c6-259732e0f5ac" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -4109,40 +4195,39 @@ "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-IIS/10.0" - ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "3aa6e412-b982-44cb-aaa3-44e18c58152f" + "42f64e11-f809-449d-87da-b1ceb5880ced" ], "x-ms-client-request-id": [ - "d40bb57e-9798-4cc6-b8e9-32a43c7c5681", - "d40bb57e-9798-4cc6-b8e9-32a43c7c5681" - ], - "X-Powered-By": [ - "ASP.NET" + "3495fd44-a614-44cf-b9c6-259732e0f5ac", + "3495fd44-a614-44cf-b9c6-259732e0f5ac" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "271" + "288" ], "x-ms-correlation-request-id": [ - "3aa6e412-b982-44cb-aaa3-44e18c58152f" + "42f64e11-f809-449d-87da-b1ceb5880ced" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T114123Z:3aa6e412-b982-44cb-aaa3-44e18c58152f" + "WESTINDIA:20220516T162102Z:42f64e11-f809-449d-87da-b1ceb5880ced" ], "Date": [ - "Sat, 26 Mar 2022 11:41:23 GMT" + "Mon, 16 May 2022 16:21:02 GMT" ], "Content-Length": [ - "821" + "188" ], "Content-Type": [ "application/json" @@ -4151,26 +4236,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/3f952331-a043-41a6-a5b0-e16faf287f14\",\r\n \"name\": \"3f952331-a043-41a6-a5b0-e16faf287f14\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT21.1915184S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"Storage\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"File Share Name\": \"fs1\",\r\n \"Storage Account Name\": \"pstestsa8895\"\r\n }\r\n },\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"DeleteBackupData\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-03-26T09:53:14.7875007Z\",\r\n \"endTime\": \"2022-03-26T09:53:35.9790191Z\",\r\n \"activityId\": \"b2b5b25d-395b-4474-ba5f-80a59ab92dd5\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"a7ebb62e-372f-4616-8a2a-a06aa5882ed8\",\r\n \"name\": \"a7ebb62e-372f-4616-8a2a-a06aa5882ed8\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T16:20:56.1688226Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/3f952331-a043-41a6-a5b0-e16faf287f14?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy8zZjk1MjMzMS1hMDQzLTQxYTYtYTViMC1lMTZmYWYyODdmMTQ/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/a7ebb62e-372f-4616-8a2a-a06aa5882ed8?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9hN2ViYjYyZS0zNzJmLTQ2MTYtOGEyYS1hMDZhYTU4ODJlZDg/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5fd4fb75-0a9c-4c70-ba92-7f8b49b92ca2" + "3495fd44-a614-44cf-b9c6-259732e0f5ac" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -4180,40 +4265,39 @@ "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-IIS/10.0" - ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "3ab2e8b6-15af-480a-9300-0841e6b1a38f" + "d3742da6-c67d-414f-a28a-91b75feca8ab" ], "x-ms-client-request-id": [ - "5fd4fb75-0a9c-4c70-ba92-7f8b49b92ca2", - "5fd4fb75-0a9c-4c70-ba92-7f8b49b92ca2" - ], - "X-Powered-By": [ - "ASP.NET" + "3495fd44-a614-44cf-b9c6-259732e0f5ac", + "3495fd44-a614-44cf-b9c6-259732e0f5ac" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "270" + "287" ], "x-ms-correlation-request-id": [ - "3ab2e8b6-15af-480a-9300-0841e6b1a38f" + "d3742da6-c67d-414f-a28a-91b75feca8ab" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T114123Z:3ab2e8b6-15af-480a-9300-0841e6b1a38f" + "WESTINDIA:20220516T162103Z:d3742da6-c67d-414f-a28a-91b75feca8ab" ], "Date": [ - "Sat, 26 Mar 2022 11:41:23 GMT" + "Mon, 16 May 2022 16:21:02 GMT" ], "Content-Length": [ - "821" + "188" ], "Content-Type": [ "application/json" @@ -4222,26 +4306,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/3f952331-a043-41a6-a5b0-e16faf287f14\",\r\n \"name\": \"3f952331-a043-41a6-a5b0-e16faf287f14\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT21.1915184S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"Storage\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"File Share Name\": \"fs1\",\r\n \"Storage Account Name\": \"pstestsa8895\"\r\n }\r\n },\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"DeleteBackupData\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-03-26T09:53:14.7875007Z\",\r\n \"endTime\": \"2022-03-26T09:53:35.9790191Z\",\r\n \"activityId\": \"b2b5b25d-395b-4474-ba5f-80a59ab92dd5\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"a7ebb62e-372f-4616-8a2a-a06aa5882ed8\",\r\n \"name\": \"a7ebb62e-372f-4616-8a2a-a06aa5882ed8\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T16:20:56.1688226Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/0a6b6438-49ca-4ab6-ab29-e9c270c84788?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy8wYTZiNjQzOC00OWNhLTRhYjYtYWIyOS1lOWMyNzBjODQ3ODg/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/a7ebb62e-372f-4616-8a2a-a06aa5882ed8?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9hN2ViYjYyZS0zNzJmLTQ2MTYtOGEyYS1hMDZhYTU4ODJlZDg/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "54901984-3b11-4fd5-9942-c5b998e3502c" + "3495fd44-a614-44cf-b9c6-259732e0f5ac" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -4251,40 +4335,39 @@ "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-IIS/10.0" - ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "3b2b3b76-0816-4c07-a4db-42b6ca17839d" + "7d36bb2c-b348-471d-9ad3-663fc65c1496" ], "x-ms-client-request-id": [ - "54901984-3b11-4fd5-9942-c5b998e3502c", - "54901984-3b11-4fd5-9942-c5b998e3502c" - ], - "X-Powered-By": [ - "ASP.NET" + "3495fd44-a614-44cf-b9c6-259732e0f5ac", + "3495fd44-a614-44cf-b9c6-259732e0f5ac" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "269" + "286" ], "x-ms-correlation-request-id": [ - "3b2b3b76-0816-4c07-a4db-42b6ca17839d" + "7d36bb2c-b348-471d-9ad3-663fc65c1496" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T114124Z:3b2b3b76-0816-4c07-a4db-42b6ca17839d" + "WESTINDIA:20220516T162103Z:7d36bb2c-b348-471d-9ad3-663fc65c1496" ], "Date": [ - "Sat, 26 Mar 2022 11:41:23 GMT" + "Mon, 16 May 2022 16:21:03 GMT" ], "Content-Length": [ - "855" + "188" ], "Content-Type": [ "application/json" @@ -4293,26 +4376,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/0a6b6438-49ca-4ab6-ab29-e9c270c84788\",\r\n \"name\": \"0a6b6438-49ca-4ab6-ab29-e9c270c84788\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT41.4628665S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"Storage\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"File Share Name\": \"fs1\",\r\n \"Storage Account Name\": \"pstestsa8895\",\r\n \"Policy Name\": \"NewAFSBackupPolicy\"\r\n }\r\n },\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"ConfigureBackup\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-03-26T09:52:29.9540872Z\",\r\n \"endTime\": \"2022-03-26T09:53:11.4169537Z\",\r\n \"activityId\": \"5e8325aa-e488-40cc-bb1f-f94d7d638d5c\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"a7ebb62e-372f-4616-8a2a-a06aa5882ed8\",\r\n \"name\": \"a7ebb62e-372f-4616-8a2a-a06aa5882ed8\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T16:20:56.1688226Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/0a6b6438-49ca-4ab6-ab29-e9c270c84788?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy8wYTZiNjQzOC00OWNhLTRhYjYtYWIyOS1lOWMyNzBjODQ3ODg/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/a7ebb62e-372f-4616-8a2a-a06aa5882ed8?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9hN2ViYjYyZS0zNzJmLTQ2MTYtOGEyYS1hMDZhYTU4ODJlZDg/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0ec8858f-739e-4c46-8ea4-c290c7b21882" + "3495fd44-a614-44cf-b9c6-259732e0f5ac" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -4322,40 +4405,39 @@ "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-IIS/10.0" - ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "e5525311-9fbb-4e67-9ae9-d5dc82b8b199" + "2436cfd9-240b-47bc-b4ba-a231a1d7a50d" ], "x-ms-client-request-id": [ - "0ec8858f-739e-4c46-8ea4-c290c7b21882", - "0ec8858f-739e-4c46-8ea4-c290c7b21882" - ], - "X-Powered-By": [ - "ASP.NET" + "3495fd44-a614-44cf-b9c6-259732e0f5ac", + "3495fd44-a614-44cf-b9c6-259732e0f5ac" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "268" + "285" ], "x-ms-correlation-request-id": [ - "e5525311-9fbb-4e67-9ae9-d5dc82b8b199" + "2436cfd9-240b-47bc-b4ba-a231a1d7a50d" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T114124Z:e5525311-9fbb-4e67-9ae9-d5dc82b8b199" + "WESTINDIA:20220516T162103Z:2436cfd9-240b-47bc-b4ba-a231a1d7a50d" ], "Date": [ - "Sat, 26 Mar 2022 11:41:24 GMT" + "Mon, 16 May 2022 16:21:03 GMT" ], "Content-Length": [ - "855" + "188" ], "Content-Type": [ "application/json" @@ -4364,26 +4446,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/0a6b6438-49ca-4ab6-ab29-e9c270c84788\",\r\n \"name\": \"0a6b6438-49ca-4ab6-ab29-e9c270c84788\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT41.4628665S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"Storage\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"File Share Name\": \"fs1\",\r\n \"Storage Account Name\": \"pstestsa8895\",\r\n \"Policy Name\": \"NewAFSBackupPolicy\"\r\n }\r\n },\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"ConfigureBackup\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-03-26T09:52:29.9540872Z\",\r\n \"endTime\": \"2022-03-26T09:53:11.4169537Z\",\r\n \"activityId\": \"5e8325aa-e488-40cc-bb1f-f94d7d638d5c\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"a7ebb62e-372f-4616-8a2a-a06aa5882ed8\",\r\n \"name\": \"a7ebb62e-372f-4616-8a2a-a06aa5882ed8\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T16:20:56.1688226Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/4c63698a-3684-4826-9104-c5e941a98884?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy80YzYzNjk4YS0zNjg0LTQ4MjYtOTEwNC1jNWU5NDFhOTg4ODQ/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/a7ebb62e-372f-4616-8a2a-a06aa5882ed8?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9hN2ViYjYyZS0zNzJmLTQ2MTYtOGEyYS1hMDZhYTU4ODJlZDg/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "81094358-2f98-4ae7-b45a-76a1dd3d8cb2" + "3495fd44-a614-44cf-b9c6-259732e0f5ac" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -4393,40 +4475,39 @@ "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-IIS/10.0" - ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "c83c263a-9383-4d94-9b53-91116e39e2df" + "4456d26b-043f-496a-8bf5-d7929898cc7e" ], "x-ms-client-request-id": [ - "81094358-2f98-4ae7-b45a-76a1dd3d8cb2", - "81094358-2f98-4ae7-b45a-76a1dd3d8cb2" - ], - "X-Powered-By": [ - "ASP.NET" + "3495fd44-a614-44cf-b9c6-259732e0f5ac", + "3495fd44-a614-44cf-b9c6-259732e0f5ac" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "267" + "284" ], "x-ms-correlation-request-id": [ - "c83c263a-9383-4d94-9b53-91116e39e2df" + "4456d26b-043f-496a-8bf5-d7929898cc7e" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T114125Z:c83c263a-9383-4d94-9b53-91116e39e2df" + "WESTINDIA:20220516T162104Z:4456d26b-043f-496a-8bf5-d7929898cc7e" ], "Date": [ - "Sat, 26 Mar 2022 11:41:24 GMT" + "Mon, 16 May 2022 16:21:03 GMT" ], "Content-Length": [ - "846" + "188" ], "Content-Type": [ "application/json" @@ -4435,26 +4516,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/4c63698a-3684-4826-9104-c5e941a98884\",\r\n \"name\": \"4c63698a-3684-4826-9104-c5e941a98884\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT42.5017425S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"Storage\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"File Share Name\": \"fs1\",\r\n \"Storage Account Name\": \"pstestsa8895\",\r\n \"Policy Name\": \"afspolicy1\"\r\n }\r\n },\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"ConfigureBackup\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-03-26T09:51:33.9414315Z\",\r\n \"endTime\": \"2022-03-26T09:52:16.443174Z\",\r\n \"activityId\": \"57dd8b3f-51de-4b2e-bb61-278104b124e7\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"a7ebb62e-372f-4616-8a2a-a06aa5882ed8\",\r\n \"name\": \"a7ebb62e-372f-4616-8a2a-a06aa5882ed8\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T16:20:56.1688226Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/4c63698a-3684-4826-9104-c5e941a98884?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy80YzYzNjk4YS0zNjg0LTQ4MjYtOTEwNC1jNWU5NDFhOTg4ODQ/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/a7ebb62e-372f-4616-8a2a-a06aa5882ed8?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9hN2ViYjYyZS0zNzJmLTQ2MTYtOGEyYS1hMDZhYTU4ODJlZDg/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "59eba4cf-1a72-4e2c-acb9-de7a54ff7ae9" + "3495fd44-a614-44cf-b9c6-259732e0f5ac" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -4464,40 +4545,39 @@ "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-IIS/10.0" - ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "1b3af8ea-f3d4-4d58-9f4c-80f996a4e345" + "cb88f6b5-b9c2-44d3-ad53-6f514d77f0e4" ], "x-ms-client-request-id": [ - "59eba4cf-1a72-4e2c-acb9-de7a54ff7ae9", - "59eba4cf-1a72-4e2c-acb9-de7a54ff7ae9" - ], - "X-Powered-By": [ - "ASP.NET" + "3495fd44-a614-44cf-b9c6-259732e0f5ac", + "3495fd44-a614-44cf-b9c6-259732e0f5ac" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "266" + "283" ], "x-ms-correlation-request-id": [ - "1b3af8ea-f3d4-4d58-9f4c-80f996a4e345" + "cb88f6b5-b9c2-44d3-ad53-6f514d77f0e4" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T114125Z:1b3af8ea-f3d4-4d58-9f4c-80f996a4e345" + "WESTINDIA:20220516T162104Z:cb88f6b5-b9c2-44d3-ad53-6f514d77f0e4" ], "Date": [ - "Sat, 26 Mar 2022 11:41:25 GMT" + "Mon, 16 May 2022 16:21:04 GMT" ], "Content-Length": [ - "846" + "188" ], "Content-Type": [ "application/json" @@ -4506,26 +4586,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/4c63698a-3684-4826-9104-c5e941a98884\",\r\n \"name\": \"4c63698a-3684-4826-9104-c5e941a98884\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT42.5017425S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"Storage\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"File Share Name\": \"fs1\",\r\n \"Storage Account Name\": \"pstestsa8895\",\r\n \"Policy Name\": \"afspolicy1\"\r\n }\r\n },\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"ConfigureBackup\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-03-26T09:51:33.9414315Z\",\r\n \"endTime\": \"2022-03-26T09:52:16.443174Z\",\r\n \"activityId\": \"57dd8b3f-51de-4b2e-bb61-278104b124e7\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"a7ebb62e-372f-4616-8a2a-a06aa5882ed8\",\r\n \"name\": \"a7ebb62e-372f-4616-8a2a-a06aa5882ed8\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T16:20:56.1688226Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/8d26f365-b510-4279-8e97-8085d857cc73?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy84ZDI2ZjM2NS1iNTEwLTQyNzktOGU5Ny04MDg1ZDg1N2NjNzM/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/a7ebb62e-372f-4616-8a2a-a06aa5882ed8?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9hN2ViYjYyZS0zNzJmLTQ2MTYtOGEyYS1hMDZhYTU4ODJlZDg/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5e428081-90a4-4889-b402-2a577b7c1b28" + "3495fd44-a614-44cf-b9c6-259732e0f5ac" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -4535,40 +4615,39 @@ "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-IIS/10.0" - ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "3eb7bc8c-b647-4052-a7c0-e9d7a48b5ebf" + "381a317f-ebd9-4be2-8d7e-632f50577dbe" ], "x-ms-client-request-id": [ - "5e428081-90a4-4889-b402-2a577b7c1b28", - "5e428081-90a4-4889-b402-2a577b7c1b28" - ], - "X-Powered-By": [ - "ASP.NET" + "3495fd44-a614-44cf-b9c6-259732e0f5ac", + "3495fd44-a614-44cf-b9c6-259732e0f5ac" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "265" + "282" ], "x-ms-correlation-request-id": [ - "3eb7bc8c-b647-4052-a7c0-e9d7a48b5ebf" + "381a317f-ebd9-4be2-8d7e-632f50577dbe" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T114125Z:3eb7bc8c-b647-4052-a7c0-e9d7a48b5ebf" + "WESTINDIA:20220516T162105Z:381a317f-ebd9-4be2-8d7e-632f50577dbe" ], "Date": [ - "Sat, 26 Mar 2022 11:41:25 GMT" + "Mon, 16 May 2022 16:21:05 GMT" ], "Content-Length": [ - "798" + "188" ], "Content-Type": [ "application/json" @@ -4577,26 +4656,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/8d26f365-b510-4279-8e97-8085d857cc73\",\r\n \"name\": \"8d26f365-b510-4279-8e97-8085d857cc73\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT12.1600734S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"Storage\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Storage Account Name\": \"pstestsa8895\"\r\n }\r\n },\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"pstestsa8895\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Register\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-03-26T09:51:10.7182819Z\",\r\n \"endTime\": \"2022-03-26T09:51:22.8783553Z\",\r\n \"activityId\": \"57dd8b3f-51de-4b2e-bb61-278104b124e7\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"a7ebb62e-372f-4616-8a2a-a06aa5882ed8\",\r\n \"name\": \"a7ebb62e-372f-4616-8a2a-a06aa5882ed8\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T16:20:56.1688226Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/8d26f365-b510-4279-8e97-8085d857cc73?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy84ZDI2ZjM2NS1iNTEwLTQyNzktOGU5Ny04MDg1ZDg1N2NjNzM/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/a7ebb62e-372f-4616-8a2a-a06aa5882ed8?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9hN2ViYjYyZS0zNzJmLTQ2MTYtOGEyYS1hMDZhYTU4ODJlZDg/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "69237d20-a610-4249-9a98-a095e90af27f" + "3495fd44-a614-44cf-b9c6-259732e0f5ac" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -4606,40 +4685,39 @@ "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-IIS/10.0" - ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "a803d58b-7be6-4a14-b4cc-23e70c207873" + "d95ba669-c4c0-40b2-80f7-909fadbc0592" ], "x-ms-client-request-id": [ - "69237d20-a610-4249-9a98-a095e90af27f", - "69237d20-a610-4249-9a98-a095e90af27f" - ], - "X-Powered-By": [ - "ASP.NET" + "3495fd44-a614-44cf-b9c6-259732e0f5ac", + "3495fd44-a614-44cf-b9c6-259732e0f5ac" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "264" + "281" ], "x-ms-correlation-request-id": [ - "a803d58b-7be6-4a14-b4cc-23e70c207873" + "d95ba669-c4c0-40b2-80f7-909fadbc0592" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T114126Z:a803d58b-7be6-4a14-b4cc-23e70c207873" + "WESTINDIA:20220516T162106Z:d95ba669-c4c0-40b2-80f7-909fadbc0592" ], "Date": [ - "Sat, 26 Mar 2022 11:41:25 GMT" + "Mon, 16 May 2022 16:21:05 GMT" ], "Content-Length": [ - "798" + "188" ], "Content-Type": [ "application/json" @@ -4648,26 +4726,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/8d26f365-b510-4279-8e97-8085d857cc73\",\r\n \"name\": \"8d26f365-b510-4279-8e97-8085d857cc73\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT12.1600734S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"Storage\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Storage Account Name\": \"pstestsa8895\"\r\n }\r\n },\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"pstestsa8895\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Register\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-03-26T09:51:10.7182819Z\",\r\n \"endTime\": \"2022-03-26T09:51:22.8783553Z\",\r\n \"activityId\": \"57dd8b3f-51de-4b2e-bb61-278104b124e7\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"a7ebb62e-372f-4616-8a2a-a06aa5882ed8\",\r\n \"name\": \"a7ebb62e-372f-4616-8a2a-a06aa5882ed8\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T16:20:56.1688226Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/1ed7f676-9f53-47a0-be44-1a95d9423c4b?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy8xZWQ3ZjY3Ni05ZjUzLTQ3YTAtYmU0NC0xYTk1ZDk0MjNjNGI/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/a7ebb62e-372f-4616-8a2a-a06aa5882ed8?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9hN2ViYjYyZS0zNzJmLTQ2MTYtOGEyYS1hMDZhYTU4ODJlZDg/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "62f60613-2835-4620-a19c-6178df225b71" + "3495fd44-a614-44cf-b9c6-259732e0f5ac" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -4677,40 +4755,39 @@ "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-IIS/10.0" - ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "4c1b6575-2804-43ff-a1da-db40ae3cc8f2" + "a749c064-ddf3-40b8-a158-22b7baf39ae7" ], "x-ms-client-request-id": [ - "62f60613-2835-4620-a19c-6178df225b71", - "62f60613-2835-4620-a19c-6178df225b71" - ], - "X-Powered-By": [ - "ASP.NET" + "3495fd44-a614-44cf-b9c6-259732e0f5ac", + "3495fd44-a614-44cf-b9c6-259732e0f5ac" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "263" + "280" ], "x-ms-correlation-request-id": [ - "4c1b6575-2804-43ff-a1da-db40ae3cc8f2" + "a749c064-ddf3-40b8-a158-22b7baf39ae7" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T114126Z:4c1b6575-2804-43ff-a1da-db40ae3cc8f2" + "WESTINDIA:20220516T162106Z:a749c064-ddf3-40b8-a158-22b7baf39ae7" ], "Date": [ - "Sat, 26 Mar 2022 11:41:26 GMT" + "Mon, 16 May 2022 16:21:06 GMT" ], "Content-Length": [ - "800" + "188" ], "Content-Type": [ "application/json" @@ -4719,26 +4796,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/1ed7f676-9f53-47a0-be44-1a95d9423c4b\",\r\n \"name\": \"1ed7f676-9f53-47a0-be44-1a95d9423c4b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT23.4246491S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"Storage\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Storage Account Name\": \"pstestsa8895\"\r\n }\r\n },\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"pstestsa8895\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"UnRegister\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-03-26T09:50:29.1148258Z\",\r\n \"endTime\": \"2022-03-26T09:50:52.5394749Z\",\r\n \"activityId\": \"f6701f77-4f4e-4283-ab8e-626480b8258b\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"a7ebb62e-372f-4616-8a2a-a06aa5882ed8\",\r\n \"name\": \"a7ebb62e-372f-4616-8a2a-a06aa5882ed8\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T16:20:56.1688226Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/1ed7f676-9f53-47a0-be44-1a95d9423c4b?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy8xZWQ3ZjY3Ni05ZjUzLTQ3YTAtYmU0NC0xYTk1ZDk0MjNjNGI/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/a7ebb62e-372f-4616-8a2a-a06aa5882ed8?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9hN2ViYjYyZS0zNzJmLTQ2MTYtOGEyYS1hMDZhYTU4ODJlZDg/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "29fee4e9-e19d-4c10-8c94-fd17468af6cf" + "3495fd44-a614-44cf-b9c6-259732e0f5ac" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -4748,40 +4825,39 @@ "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-IIS/10.0" - ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "e90a339f-f463-43da-931b-7c77cd91c044" + "778f6038-552c-4e75-bf74-e80fe164b26b" ], "x-ms-client-request-id": [ - "29fee4e9-e19d-4c10-8c94-fd17468af6cf", - "29fee4e9-e19d-4c10-8c94-fd17468af6cf" - ], - "X-Powered-By": [ - "ASP.NET" + "3495fd44-a614-44cf-b9c6-259732e0f5ac", + "3495fd44-a614-44cf-b9c6-259732e0f5ac" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "262" + "279" ], "x-ms-correlation-request-id": [ - "e90a339f-f463-43da-931b-7c77cd91c044" + "778f6038-552c-4e75-bf74-e80fe164b26b" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T114127Z:e90a339f-f463-43da-931b-7c77cd91c044" + "WESTINDIA:20220516T162107Z:778f6038-552c-4e75-bf74-e80fe164b26b" ], "Date": [ - "Sat, 26 Mar 2022 11:41:26 GMT" + "Mon, 16 May 2022 16:21:06 GMT" ], "Content-Length": [ - "800" + "188" ], "Content-Type": [ "application/json" @@ -4790,26 +4866,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/1ed7f676-9f53-47a0-be44-1a95d9423c4b\",\r\n \"name\": \"1ed7f676-9f53-47a0-be44-1a95d9423c4b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT23.4246491S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"Storage\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Storage Account Name\": \"pstestsa8895\"\r\n }\r\n },\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"pstestsa8895\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"UnRegister\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-03-26T09:50:29.1148258Z\",\r\n \"endTime\": \"2022-03-26T09:50:52.5394749Z\",\r\n \"activityId\": \"f6701f77-4f4e-4283-ab8e-626480b8258b\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"a7ebb62e-372f-4616-8a2a-a06aa5882ed8\",\r\n \"name\": \"a7ebb62e-372f-4616-8a2a-a06aa5882ed8\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T16:20:56.1688226Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/3f3f7b1d-de21-4404-8972-7a5230043480?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy8zZjNmN2IxZC1kZTIxLTQ0MDQtODk3Mi03YTUyMzAwNDM0ODA/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/a7ebb62e-372f-4616-8a2a-a06aa5882ed8?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9hN2ViYjYyZS0zNzJmLTQ2MTYtOGEyYS1hMDZhYTU4ODJlZDg/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "08376b48-3aab-45a8-a32c-5119b4e28eba" + "3495fd44-a614-44cf-b9c6-259732e0f5ac" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -4819,40 +4895,39 @@ "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-IIS/10.0" - ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "12494649-ba1b-4e7d-b090-2c06c92c47b9" + "b4dbb10f-3a70-4c76-80f0-6edbe30bddaf" ], "x-ms-client-request-id": [ - "08376b48-3aab-45a8-a32c-5119b4e28eba", - "08376b48-3aab-45a8-a32c-5119b4e28eba" - ], - "X-Powered-By": [ - "ASP.NET" + "3495fd44-a614-44cf-b9c6-259732e0f5ac", + "3495fd44-a614-44cf-b9c6-259732e0f5ac" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "261" + "278" ], "x-ms-correlation-request-id": [ - "12494649-ba1b-4e7d-b090-2c06c92c47b9" + "b4dbb10f-3a70-4c76-80f0-6edbe30bddaf" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T114127Z:12494649-ba1b-4e7d-b090-2c06c92c47b9" + "WESTINDIA:20220516T162107Z:b4dbb10f-3a70-4c76-80f0-6edbe30bddaf" ], "Date": [ - "Sat, 26 Mar 2022 11:41:27 GMT" + "Mon, 16 May 2022 16:21:07 GMT" ], "Content-Length": [ - "821" + "188" ], "Content-Type": [ "application/json" @@ -4861,26 +4936,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/3f3f7b1d-de21-4404-8972-7a5230043480\",\r\n \"name\": \"3f3f7b1d-de21-4404-8972-7a5230043480\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT21.6914953S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"Storage\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"File Share Name\": \"fs1\",\r\n \"Storage Account Name\": \"pstestsa8895\"\r\n }\r\n },\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"DeleteBackupData\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-03-26T09:49:55.5447063Z\",\r\n \"endTime\": \"2022-03-26T09:50:17.2362016Z\",\r\n \"activityId\": \"f7dc25b6-2271-4e15-a667-67ab7c0a9ecd\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"a7ebb62e-372f-4616-8a2a-a06aa5882ed8\",\r\n \"name\": \"a7ebb62e-372f-4616-8a2a-a06aa5882ed8\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T16:20:56.1688226Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/3f3f7b1d-de21-4404-8972-7a5230043480?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy8zZjNmN2IxZC1kZTIxLTQ0MDQtODk3Mi03YTUyMzAwNDM0ODA/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/a7ebb62e-372f-4616-8a2a-a06aa5882ed8?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9hN2ViYjYyZS0zNzJmLTQ2MTYtOGEyYS1hMDZhYTU4ODJlZDg/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ad31e85f-af13-481f-8344-10f8b02b8a41" + "3495fd44-a614-44cf-b9c6-259732e0f5ac" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -4890,40 +4965,39 @@ "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-IIS/10.0" - ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "42df6647-6acd-4a7f-9925-c50eaf57a278" + "61812282-2a4e-435f-81d5-f955e1960476" ], "x-ms-client-request-id": [ - "ad31e85f-af13-481f-8344-10f8b02b8a41", - "ad31e85f-af13-481f-8344-10f8b02b8a41" - ], - "X-Powered-By": [ - "ASP.NET" + "3495fd44-a614-44cf-b9c6-259732e0f5ac", + "3495fd44-a614-44cf-b9c6-259732e0f5ac" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "260" + "277" ], "x-ms-correlation-request-id": [ - "42df6647-6acd-4a7f-9925-c50eaf57a278" + "61812282-2a4e-435f-81d5-f955e1960476" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T114127Z:42df6647-6acd-4a7f-9925-c50eaf57a278" + "WESTINDIA:20220516T162108Z:61812282-2a4e-435f-81d5-f955e1960476" ], "Date": [ - "Sat, 26 Mar 2022 11:41:27 GMT" + "Mon, 16 May 2022 16:21:07 GMT" ], "Content-Length": [ - "821" + "188" ], "Content-Type": [ "application/json" @@ -4932,26 +5006,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/3f3f7b1d-de21-4404-8972-7a5230043480\",\r\n \"name\": \"3f3f7b1d-de21-4404-8972-7a5230043480\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT21.6914953S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"Storage\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"File Share Name\": \"fs1\",\r\n \"Storage Account Name\": \"pstestsa8895\"\r\n }\r\n },\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"DeleteBackupData\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-03-26T09:49:55.5447063Z\",\r\n \"endTime\": \"2022-03-26T09:50:17.2362016Z\",\r\n \"activityId\": \"f7dc25b6-2271-4e15-a667-67ab7c0a9ecd\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"a7ebb62e-372f-4616-8a2a-a06aa5882ed8\",\r\n \"name\": \"a7ebb62e-372f-4616-8a2a-a06aa5882ed8\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T16:20:56.1688226Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/3c9f5cc5-4f78-416f-9834-ec1dd0c300c2?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy8zYzlmNWNjNS00Zjc4LTQxNmYtOTgzNC1lYzFkZDBjMzAwYzI/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/a7ebb62e-372f-4616-8a2a-a06aa5882ed8?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9hN2ViYjYyZS0zNzJmLTQ2MTYtOGEyYS1hMDZhYTU4ODJlZDg/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "daf55166-0ed4-40cc-adcd-87962740866b" + "3495fd44-a614-44cf-b9c6-259732e0f5ac" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -4961,40 +5035,39 @@ "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-IIS/10.0" - ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "61569c46-75ce-44b0-92e4-1264f372e1a3" + "52b142d7-2019-48b2-a63f-b30b69566ed5" ], "x-ms-client-request-id": [ - "daf55166-0ed4-40cc-adcd-87962740866b", - "daf55166-0ed4-40cc-adcd-87962740866b" - ], - "X-Powered-By": [ - "ASP.NET" + "3495fd44-a614-44cf-b9c6-259732e0f5ac", + "3495fd44-a614-44cf-b9c6-259732e0f5ac" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "259" + "276" ], "x-ms-correlation-request-id": [ - "61569c46-75ce-44b0-92e4-1264f372e1a3" + "52b142d7-2019-48b2-a63f-b30b69566ed5" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T114128Z:61569c46-75ce-44b0-92e4-1264f372e1a3" + "WESTINDIA:20220516T162108Z:52b142d7-2019-48b2-a63f-b30b69566ed5" ], "Date": [ - "Sat, 26 Mar 2022 11:41:27 GMT" + "Mon, 16 May 2022 16:21:08 GMT" ], "Content-Length": [ - "902" + "188" ], "Content-Type": [ "application/json" @@ -5003,26 +5076,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/3c9f5cc5-4f78-416f-9834-ec1dd0c300c2\",\r\n \"name\": \"3c9f5cc5-4f78-416f-9834-ec1dd0c300c2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT2.5571821S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"MicrosoftStorage\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"status\": \"Completed\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"File Share Name\": \"fs1\",\r\n \"Whether job is adhoc or scheduled.\": \"True\"\r\n }\r\n },\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-03-26T09:48:51.192171Z\",\r\n \"endTime\": \"2022-03-26T09:48:53.7493531Z\",\r\n \"activityId\": \"e37c471d-8bcb-4433-8823-ba496c36e726\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"a7ebb62e-372f-4616-8a2a-a06aa5882ed8\",\r\n \"name\": \"a7ebb62e-372f-4616-8a2a-a06aa5882ed8\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T16:20:56.1688226Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/3c9f5cc5-4f78-416f-9834-ec1dd0c300c2?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy8zYzlmNWNjNS00Zjc4LTQxNmYtOTgzNC1lYzFkZDBjMzAwYzI/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/a7ebb62e-372f-4616-8a2a-a06aa5882ed8?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9hN2ViYjYyZS0zNzJmLTQ2MTYtOGEyYS1hMDZhYTU4ODJlZDg/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0eb240b7-5b56-46e5-b540-cffc597f65aa" + "3495fd44-a614-44cf-b9c6-259732e0f5ac" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -5032,40 +5105,39 @@ "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-IIS/10.0" - ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "ca528c18-aff0-4263-9fc6-9b6204c8b4d2" + "28c7d4d4-157b-46c5-9541-8fd3a3625ec5" ], "x-ms-client-request-id": [ - "0eb240b7-5b56-46e5-b540-cffc597f65aa", - "0eb240b7-5b56-46e5-b540-cffc597f65aa" - ], - "X-Powered-By": [ - "ASP.NET" + "3495fd44-a614-44cf-b9c6-259732e0f5ac", + "3495fd44-a614-44cf-b9c6-259732e0f5ac" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "258" + "275" ], "x-ms-correlation-request-id": [ - "ca528c18-aff0-4263-9fc6-9b6204c8b4d2" + "28c7d4d4-157b-46c5-9541-8fd3a3625ec5" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T114128Z:ca528c18-aff0-4263-9fc6-9b6204c8b4d2" + "WESTINDIA:20220516T162109Z:28c7d4d4-157b-46c5-9541-8fd3a3625ec5" ], "Date": [ - "Sat, 26 Mar 2022 11:41:28 GMT" + "Mon, 16 May 2022 16:21:08 GMT" ], "Content-Length": [ - "902" + "188" ], "Content-Type": [ "application/json" @@ -5074,26 +5146,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/3c9f5cc5-4f78-416f-9834-ec1dd0c300c2\",\r\n \"name\": \"3c9f5cc5-4f78-416f-9834-ec1dd0c300c2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT2.5571821S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"MicrosoftStorage\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"status\": \"Completed\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"File Share Name\": \"fs1\",\r\n \"Whether job is adhoc or scheduled.\": \"True\"\r\n }\r\n },\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-03-26T09:48:51.192171Z\",\r\n \"endTime\": \"2022-03-26T09:48:53.7493531Z\",\r\n \"activityId\": \"e37c471d-8bcb-4433-8823-ba496c36e726\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"a7ebb62e-372f-4616-8a2a-a06aa5882ed8\",\r\n \"name\": \"a7ebb62e-372f-4616-8a2a-a06aa5882ed8\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T16:20:56.1688226Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/4201e88b-7d2b-4785-a36e-5f10ca833965?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy80MjAxZTg4Yi03ZDJiLTQ3ODUtYTM2ZS01ZjEwY2E4MzM5NjU/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/a7ebb62e-372f-4616-8a2a-a06aa5882ed8?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9hN2ViYjYyZS0zNzJmLTQ2MTYtOGEyYS1hMDZhYTU4ODJlZDg/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d45c6499-6b90-4af9-a2da-0d64ce584574" + "3495fd44-a614-44cf-b9c6-259732e0f5ac" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -5103,40 +5175,39 @@ "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-IIS/10.0" - ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "c53a19fd-d786-4655-9565-d91c48f284b0" + "227a19fe-aa4a-4660-8382-f27f280412af" ], "x-ms-client-request-id": [ - "d45c6499-6b90-4af9-a2da-0d64ce584574", - "d45c6499-6b90-4af9-a2da-0d64ce584574" - ], - "X-Powered-By": [ - "ASP.NET" + "3495fd44-a614-44cf-b9c6-259732e0f5ac", + "3495fd44-a614-44cf-b9c6-259732e0f5ac" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "257" + "274" ], "x-ms-correlation-request-id": [ - "c53a19fd-d786-4655-9565-d91c48f284b0" + "227a19fe-aa4a-4660-8382-f27f280412af" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T114129Z:c53a19fd-d786-4655-9565-d91c48f284b0" + "WESTINDIA:20220516T162109Z:227a19fe-aa4a-4660-8382-f27f280412af" ], "Date": [ - "Sat, 26 Mar 2022 11:41:28 GMT" + "Mon, 16 May 2022 16:21:09 GMT" ], "Content-Length": [ - "847" + "188" ], "Content-Type": [ "application/json" @@ -5145,26 +5216,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/4201e88b-7d2b-4785-a36e-5f10ca833965\",\r\n \"name\": \"4201e88b-7d2b-4785-a36e-5f10ca833965\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT42.1570008S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"Storage\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"File Share Name\": \"fs1\",\r\n \"Storage Account Name\": \"pstestsa8895\",\r\n \"Policy Name\": \"afspolicy1\"\r\n }\r\n },\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"ConfigureBackup\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-03-26T09:48:05.1830658Z\",\r\n \"endTime\": \"2022-03-26T09:48:47.3400666Z\",\r\n \"activityId\": \"19f80edc-34d0-4416-bb59-dfd0ac6da4f0\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"a7ebb62e-372f-4616-8a2a-a06aa5882ed8\",\r\n \"name\": \"a7ebb62e-372f-4616-8a2a-a06aa5882ed8\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T16:20:56.1688226Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/4201e88b-7d2b-4785-a36e-5f10ca833965?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy80MjAxZTg4Yi03ZDJiLTQ3ODUtYTM2ZS01ZjEwY2E4MzM5NjU/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/a7ebb62e-372f-4616-8a2a-a06aa5882ed8?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9hN2ViYjYyZS0zNzJmLTQ2MTYtOGEyYS1hMDZhYTU4ODJlZDg/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "df9ea2e6-4754-4f1b-afdd-3d81b5595843" + "3495fd44-a614-44cf-b9c6-259732e0f5ac" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -5174,40 +5245,39 @@ "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-IIS/10.0" - ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "72a5520e-2924-4de8-b1d9-e40e06214ece" + "4896ffcd-347c-499e-8700-0e53eacdc5b8" ], "x-ms-client-request-id": [ - "df9ea2e6-4754-4f1b-afdd-3d81b5595843", - "df9ea2e6-4754-4f1b-afdd-3d81b5595843" - ], - "X-Powered-By": [ - "ASP.NET" + "3495fd44-a614-44cf-b9c6-259732e0f5ac", + "3495fd44-a614-44cf-b9c6-259732e0f5ac" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "256" + "273" ], "x-ms-correlation-request-id": [ - "72a5520e-2924-4de8-b1d9-e40e06214ece" + "4896ffcd-347c-499e-8700-0e53eacdc5b8" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T114129Z:72a5520e-2924-4de8-b1d9-e40e06214ece" + "WESTINDIA:20220516T162110Z:4896ffcd-347c-499e-8700-0e53eacdc5b8" ], "Date": [ - "Sat, 26 Mar 2022 11:41:28 GMT" + "Mon, 16 May 2022 16:21:09 GMT" ], "Content-Length": [ - "847" + "188" ], "Content-Type": [ "application/json" @@ -5216,26 +5286,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/4201e88b-7d2b-4785-a36e-5f10ca833965\",\r\n \"name\": \"4201e88b-7d2b-4785-a36e-5f10ca833965\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT42.1570008S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"Storage\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"File Share Name\": \"fs1\",\r\n \"Storage Account Name\": \"pstestsa8895\",\r\n \"Policy Name\": \"afspolicy1\"\r\n }\r\n },\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"ConfigureBackup\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-03-26T09:48:05.1830658Z\",\r\n \"endTime\": \"2022-03-26T09:48:47.3400666Z\",\r\n \"activityId\": \"19f80edc-34d0-4416-bb59-dfd0ac6da4f0\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"a7ebb62e-372f-4616-8a2a-a06aa5882ed8\",\r\n \"name\": \"a7ebb62e-372f-4616-8a2a-a06aa5882ed8\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T16:20:56.1688226Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/0d77fc83-4c24-4d7c-b142-552257cfb96e?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy8wZDc3ZmM4My00YzI0LTRkN2MtYjE0Mi01NTIyNTdjZmI5NmU/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/a7ebb62e-372f-4616-8a2a-a06aa5882ed8?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9hN2ViYjYyZS0zNzJmLTQ2MTYtOGEyYS1hMDZhYTU4ODJlZDg/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "30c6357f-9185-4bc0-bc29-909057cb612e" + "3495fd44-a614-44cf-b9c6-259732e0f5ac" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -5245,40 +5315,39 @@ "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-IIS/10.0" - ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "ebf726eb-d0bb-4731-95c1-c5f5912d9e2a" + "81971953-49f9-47e7-9a28-e37d5658c1b8" ], "x-ms-client-request-id": [ - "30c6357f-9185-4bc0-bc29-909057cb612e", - "30c6357f-9185-4bc0-bc29-909057cb612e" - ], - "X-Powered-By": [ - "ASP.NET" + "3495fd44-a614-44cf-b9c6-259732e0f5ac", + "3495fd44-a614-44cf-b9c6-259732e0f5ac" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "255" + "272" ], "x-ms-correlation-request-id": [ - "ebf726eb-d0bb-4731-95c1-c5f5912d9e2a" + "81971953-49f9-47e7-9a28-e37d5658c1b8" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T114129Z:ebf726eb-d0bb-4731-95c1-c5f5912d9e2a" + "WESTINDIA:20220516T162110Z:81971953-49f9-47e7-9a28-e37d5658c1b8" ], "Date": [ - "Sat, 26 Mar 2022 11:41:29 GMT" + "Mon, 16 May 2022 16:21:10 GMT" ], "Content-Length": [ - "798" + "188" ], "Content-Type": [ "application/json" @@ -5287,26 +5356,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/0d77fc83-4c24-4d7c-b142-552257cfb96e\",\r\n \"name\": \"0d77fc83-4c24-4d7c-b142-552257cfb96e\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT28.0334628S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"Storage\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Storage Account Name\": \"pstestsa8895\"\r\n }\r\n },\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"pstestsa8895\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Register\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-03-26T09:47:31.6160908Z\",\r\n \"endTime\": \"2022-03-26T09:47:59.6495536Z\",\r\n \"activityId\": \"19f80edc-34d0-4416-bb59-dfd0ac6da4f0\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"a7ebb62e-372f-4616-8a2a-a06aa5882ed8\",\r\n \"name\": \"a7ebb62e-372f-4616-8a2a-a06aa5882ed8\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T16:20:56.1688226Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/0d77fc83-4c24-4d7c-b142-552257cfb96e?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy8wZDc3ZmM4My00YzI0LTRkN2MtYjE0Mi01NTIyNTdjZmI5NmU/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/a7ebb62e-372f-4616-8a2a-a06aa5882ed8?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9hN2ViYjYyZS0zNzJmLTQ2MTYtOGEyYS1hMDZhYTU4ODJlZDg/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "75fa267d-f363-49d2-b8a2-1f38210c0ec4" + "3495fd44-a614-44cf-b9c6-259732e0f5ac" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -5316,40 +5385,39 @@ "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-IIS/10.0" - ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "948515f2-6761-4f8b-bc65-ac12c8d7adec" + "50e451da-8fc9-43fa-ad7f-3daab22122ba" ], "x-ms-client-request-id": [ - "75fa267d-f363-49d2-b8a2-1f38210c0ec4", - "75fa267d-f363-49d2-b8a2-1f38210c0ec4" - ], - "X-Powered-By": [ - "ASP.NET" + "3495fd44-a614-44cf-b9c6-259732e0f5ac", + "3495fd44-a614-44cf-b9c6-259732e0f5ac" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "254" + "271" ], "x-ms-correlation-request-id": [ - "948515f2-6761-4f8b-bc65-ac12c8d7adec" + "50e451da-8fc9-43fa-ad7f-3daab22122ba" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T114130Z:948515f2-6761-4f8b-bc65-ac12c8d7adec" + "WESTINDIA:20220516T162111Z:50e451da-8fc9-43fa-ad7f-3daab22122ba" ], "Date": [ - "Sat, 26 Mar 2022 11:41:29 GMT" + "Mon, 16 May 2022 16:21:10 GMT" ], "Content-Length": [ - "798" + "188" ], "Content-Type": [ "application/json" @@ -5358,26 +5426,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/0d77fc83-4c24-4d7c-b142-552257cfb96e\",\r\n \"name\": \"0d77fc83-4c24-4d7c-b142-552257cfb96e\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT28.0334628S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"Storage\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Storage Account Name\": \"pstestsa8895\"\r\n }\r\n },\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"pstestsa8895\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Register\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-03-26T09:47:31.6160908Z\",\r\n \"endTime\": \"2022-03-26T09:47:59.6495536Z\",\r\n \"activityId\": \"19f80edc-34d0-4416-bb59-dfd0ac6da4f0\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"a7ebb62e-372f-4616-8a2a-a06aa5882ed8\",\r\n \"name\": \"a7ebb62e-372f-4616-8a2a-a06aa5882ed8\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T16:20:56.1688226Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/130af6ec-1d4b-4723-b9e5-59eea0edf3c7?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy8xMzBhZjZlYy0xZDRiLTQ3MjMtYjllNS01OWVlYTBlZGYzYzc/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/a7ebb62e-372f-4616-8a2a-a06aa5882ed8?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9hN2ViYjYyZS0zNzJmLTQ2MTYtOGEyYS1hMDZhYTU4ODJlZDg/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1615fd9e-d521-4f73-97e5-e15af33a5be1" + "3495fd44-a614-44cf-b9c6-259732e0f5ac" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -5387,40 +5455,39 @@ "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-IIS/10.0" - ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "8e0d6b2c-c21c-45cc-8660-ad89e488de0f" + "2b9df6d0-4e04-40f9-acb3-9295514c80ea" ], "x-ms-client-request-id": [ - "1615fd9e-d521-4f73-97e5-e15af33a5be1", - "1615fd9e-d521-4f73-97e5-e15af33a5be1" - ], - "X-Powered-By": [ - "ASP.NET" + "3495fd44-a614-44cf-b9c6-259732e0f5ac", + "3495fd44-a614-44cf-b9c6-259732e0f5ac" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "253" + "270" ], "x-ms-correlation-request-id": [ - "8e0d6b2c-c21c-45cc-8660-ad89e488de0f" + "2b9df6d0-4e04-40f9-acb3-9295514c80ea" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T114130Z:8e0d6b2c-c21c-45cc-8660-ad89e488de0f" + "WESTINDIA:20220516T162111Z:2b9df6d0-4e04-40f9-acb3-9295514c80ea" ], "Date": [ - "Sat, 26 Mar 2022 11:41:30 GMT" + "Mon, 16 May 2022 16:21:11 GMT" ], "Content-Length": [ - "798" + "188" ], "Content-Type": [ "application/json" @@ -5429,26 +5496,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/130af6ec-1d4b-4723-b9e5-59eea0edf3c7\",\r\n \"name\": \"130af6ec-1d4b-4723-b9e5-59eea0edf3c7\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT23.8505195S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"Storage\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Storage Account Name\": \"pstestsa8895\"\r\n }\r\n },\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"pstestsa8895\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"UnRegister\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-03-26T08:50:14.4307105Z\",\r\n \"endTime\": \"2022-03-26T08:50:38.28123Z\",\r\n \"activityId\": \"ed748b06-ba8c-4277-892f-4e616aa800f2\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"a7ebb62e-372f-4616-8a2a-a06aa5882ed8\",\r\n \"name\": \"a7ebb62e-372f-4616-8a2a-a06aa5882ed8\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T16:20:56.1688226Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/130af6ec-1d4b-4723-b9e5-59eea0edf3c7?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy8xMzBhZjZlYy0xZDRiLTQ3MjMtYjllNS01OWVlYTBlZGYzYzc/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/a7ebb62e-372f-4616-8a2a-a06aa5882ed8?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9hN2ViYjYyZS0zNzJmLTQ2MTYtOGEyYS1hMDZhYTU4ODJlZDg/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5b5c2f46-493f-4908-a3e3-28792c33b0f5" + "3495fd44-a614-44cf-b9c6-259732e0f5ac" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -5458,40 +5525,39 @@ "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-IIS/10.0" - ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "ce8be2bb-bbe9-4048-9b6c-12f6e83e34a3" + "abf97c14-5f04-476b-9fc7-3e593740ae37" ], "x-ms-client-request-id": [ - "5b5c2f46-493f-4908-a3e3-28792c33b0f5", - "5b5c2f46-493f-4908-a3e3-28792c33b0f5" - ], - "X-Powered-By": [ - "ASP.NET" + "3495fd44-a614-44cf-b9c6-259732e0f5ac", + "3495fd44-a614-44cf-b9c6-259732e0f5ac" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "252" + "269" ], "x-ms-correlation-request-id": [ - "ce8be2bb-bbe9-4048-9b6c-12f6e83e34a3" + "abf97c14-5f04-476b-9fc7-3e593740ae37" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T114131Z:ce8be2bb-bbe9-4048-9b6c-12f6e83e34a3" + "WESTINDIA:20220516T162112Z:abf97c14-5f04-476b-9fc7-3e593740ae37" ], "Date": [ - "Sat, 26 Mar 2022 11:41:30 GMT" + "Mon, 16 May 2022 16:21:11 GMT" ], "Content-Length": [ - "798" + "188" ], "Content-Type": [ "application/json" @@ -5500,26 +5566,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/130af6ec-1d4b-4723-b9e5-59eea0edf3c7\",\r\n \"name\": \"130af6ec-1d4b-4723-b9e5-59eea0edf3c7\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT23.8505195S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"Storage\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Storage Account Name\": \"pstestsa8895\"\r\n }\r\n },\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"pstestsa8895\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"UnRegister\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-03-26T08:50:14.4307105Z\",\r\n \"endTime\": \"2022-03-26T08:50:38.28123Z\",\r\n \"activityId\": \"ed748b06-ba8c-4277-892f-4e616aa800f2\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"a7ebb62e-372f-4616-8a2a-a06aa5882ed8\",\r\n \"name\": \"a7ebb62e-372f-4616-8a2a-a06aa5882ed8\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T16:20:56.1688226Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/1b63cf02-c748-4e4c-acb0-fd7b971ed8a6?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy8xYjYzY2YwMi1jNzQ4LTRlNGMtYWNiMC1mZDdiOTcxZWQ4YTY/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/a7ebb62e-372f-4616-8a2a-a06aa5882ed8?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9hN2ViYjYyZS0zNzJmLTQ2MTYtOGEyYS1hMDZhYTU4ODJlZDg/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a5b8e14e-9139-4671-b690-c54a618f5707" + "3495fd44-a614-44cf-b9c6-259732e0f5ac" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -5529,40 +5595,39 @@ "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-IIS/10.0" - ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "61bbe97f-0a84-4278-999a-a544e0834745" + "b4ebcf40-4a6f-4664-adf2-1f2adfbed809" ], "x-ms-client-request-id": [ - "a5b8e14e-9139-4671-b690-c54a618f5707", - "a5b8e14e-9139-4671-b690-c54a618f5707" - ], - "X-Powered-By": [ - "ASP.NET" + "3495fd44-a614-44cf-b9c6-259732e0f5ac", + "3495fd44-a614-44cf-b9c6-259732e0f5ac" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "251" + "268" ], "x-ms-correlation-request-id": [ - "61bbe97f-0a84-4278-999a-a544e0834745" + "b4ebcf40-4a6f-4664-adf2-1f2adfbed809" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T114131Z:61bbe97f-0a84-4278-999a-a544e0834745" + "WESTINDIA:20220516T162112Z:b4ebcf40-4a6f-4664-adf2-1f2adfbed809" ], "Date": [ - "Sat, 26 Mar 2022 11:41:31 GMT" + "Mon, 16 May 2022 16:21:12 GMT" ], "Content-Length": [ - "821" + "188" ], "Content-Type": [ "application/json" @@ -5571,26 +5636,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/1b63cf02-c748-4e4c-acb0-fd7b971ed8a6\",\r\n \"name\": \"1b63cf02-c748-4e4c-acb0-fd7b971ed8a6\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT21.5540902S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"Storage\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"File Share Name\": \"fs1\",\r\n \"Storage Account Name\": \"pstestsa8895\"\r\n }\r\n },\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"DeleteBackupData\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-03-26T08:49:41.3890659Z\",\r\n \"endTime\": \"2022-03-26T08:50:02.9431561Z\",\r\n \"activityId\": \"8a9ac54c-c681-4ab4-9c14-bf595fdceb5f\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"a7ebb62e-372f-4616-8a2a-a06aa5882ed8\",\r\n \"name\": \"a7ebb62e-372f-4616-8a2a-a06aa5882ed8\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T16:20:56.1688226Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/1b63cf02-c748-4e4c-acb0-fd7b971ed8a6?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy8xYjYzY2YwMi1jNzQ4LTRlNGMtYWNiMC1mZDdiOTcxZWQ4YTY/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/a7ebb62e-372f-4616-8a2a-a06aa5882ed8?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9hN2ViYjYyZS0zNzJmLTQ2MTYtOGEyYS1hMDZhYTU4ODJlZDg/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1c8b8e16-98fc-4c0e-9e57-2a0ff3612915" + "3495fd44-a614-44cf-b9c6-259732e0f5ac" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -5600,40 +5665,39 @@ "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-IIS/10.0" - ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "03d6ff29-326e-4d0e-a7a9-d05bf07247f1" + "d15d4386-f49c-4980-8179-6a10e88b1248" ], "x-ms-client-request-id": [ - "1c8b8e16-98fc-4c0e-9e57-2a0ff3612915", - "1c8b8e16-98fc-4c0e-9e57-2a0ff3612915" - ], - "X-Powered-By": [ - "ASP.NET" + "3495fd44-a614-44cf-b9c6-259732e0f5ac", + "3495fd44-a614-44cf-b9c6-259732e0f5ac" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "250" + "267" ], "x-ms-correlation-request-id": [ - "03d6ff29-326e-4d0e-a7a9-d05bf07247f1" + "d15d4386-f49c-4980-8179-6a10e88b1248" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T114131Z:03d6ff29-326e-4d0e-a7a9-d05bf07247f1" + "WESTINDIA:20220516T162113Z:d15d4386-f49c-4980-8179-6a10e88b1248" ], "Date": [ - "Sat, 26 Mar 2022 11:41:31 GMT" + "Mon, 16 May 2022 16:21:12 GMT" ], "Content-Length": [ - "821" + "188" ], "Content-Type": [ "application/json" @@ -5642,26 +5706,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/1b63cf02-c748-4e4c-acb0-fd7b971ed8a6\",\r\n \"name\": \"1b63cf02-c748-4e4c-acb0-fd7b971ed8a6\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT21.5540902S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"Storage\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"File Share Name\": \"fs1\",\r\n \"Storage Account Name\": \"pstestsa8895\"\r\n }\r\n },\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"DeleteBackupData\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-03-26T08:49:41.3890659Z\",\r\n \"endTime\": \"2022-03-26T08:50:02.9431561Z\",\r\n \"activityId\": \"8a9ac54c-c681-4ab4-9c14-bf595fdceb5f\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"a7ebb62e-372f-4616-8a2a-a06aa5882ed8\",\r\n \"name\": \"a7ebb62e-372f-4616-8a2a-a06aa5882ed8\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T16:20:56.1688226Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/8b5d9156-8fb0-4bd6-9f6c-91682fbd6df1?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy84YjVkOTE1Ni04ZmIwLTRiZDYtOWY2Yy05MTY4MmZiZDZkZjE/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/a7ebb62e-372f-4616-8a2a-a06aa5882ed8?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9hN2ViYjYyZS0zNzJmLTQ2MTYtOGEyYS1hMDZhYTU4ODJlZDg/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c9bde3d2-f89e-4eed-a67c-58c04a22a96a" + "3495fd44-a614-44cf-b9c6-259732e0f5ac" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -5671,40 +5735,39 @@ "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-IIS/10.0" - ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "4632e98d-7fbe-40cd-9b8a-c0c87a6b1cbf" + "7beb39fd-a02a-4470-9cfb-fe516e0e243d" ], "x-ms-client-request-id": [ - "c9bde3d2-f89e-4eed-a67c-58c04a22a96a", - "c9bde3d2-f89e-4eed-a67c-58c04a22a96a" - ], - "X-Powered-By": [ - "ASP.NET" + "3495fd44-a614-44cf-b9c6-259732e0f5ac", + "3495fd44-a614-44cf-b9c6-259732e0f5ac" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "249" + "266" ], "x-ms-correlation-request-id": [ - "4632e98d-7fbe-40cd-9b8a-c0c87a6b1cbf" + "7beb39fd-a02a-4470-9cfb-fe516e0e243d" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T114132Z:4632e98d-7fbe-40cd-9b8a-c0c87a6b1cbf" + "WESTINDIA:20220516T162113Z:7beb39fd-a02a-4470-9cfb-fe516e0e243d" ], "Date": [ - "Sat, 26 Mar 2022 11:41:31 GMT" + "Mon, 16 May 2022 16:21:13 GMT" ], "Content-Length": [ - "846" + "188" ], "Content-Type": [ "application/json" @@ -5713,26 +5776,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/8b5d9156-8fb0-4bd6-9f6c-91682fbd6df1\",\r\n \"name\": \"8b5d9156-8fb0-4bd6-9f6c-91682fbd6df1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT42.3312149S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"Storage\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"File Share Name\": \"fs1\",\r\n \"Storage Account Name\": \"pstestsa8895\",\r\n \"Policy Name\": \"afspolicy1\"\r\n }\r\n },\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"ConfigureBackup\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-03-26T08:48:44.032676Z\",\r\n \"endTime\": \"2022-03-26T08:49:26.3638909Z\",\r\n \"activityId\": \"d8e78e34-f966-4976-9fbd-58d17bcb5c8a\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"a7ebb62e-372f-4616-8a2a-a06aa5882ed8\",\r\n \"name\": \"a7ebb62e-372f-4616-8a2a-a06aa5882ed8\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T16:20:56.1688226Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/8b5d9156-8fb0-4bd6-9f6c-91682fbd6df1?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy84YjVkOTE1Ni04ZmIwLTRiZDYtOWY2Yy05MTY4MmZiZDZkZjE/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/a7ebb62e-372f-4616-8a2a-a06aa5882ed8?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9hN2ViYjYyZS0zNzJmLTQ2MTYtOGEyYS1hMDZhYTU4ODJlZDg/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "77fc09f9-a049-4a72-9f6d-32225e878b12" + "3495fd44-a614-44cf-b9c6-259732e0f5ac" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -5742,40 +5805,39 @@ "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-IIS/10.0" - ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "7d56f819-1811-41f8-8809-c254773881da" + "493410fd-6218-4f1c-98f8-ffb30380ab0f" ], "x-ms-client-request-id": [ - "77fc09f9-a049-4a72-9f6d-32225e878b12", - "77fc09f9-a049-4a72-9f6d-32225e878b12" - ], - "X-Powered-By": [ - "ASP.NET" + "3495fd44-a614-44cf-b9c6-259732e0f5ac", + "3495fd44-a614-44cf-b9c6-259732e0f5ac" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "248" + "265" ], "x-ms-correlation-request-id": [ - "7d56f819-1811-41f8-8809-c254773881da" + "493410fd-6218-4f1c-98f8-ffb30380ab0f" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T114132Z:7d56f819-1811-41f8-8809-c254773881da" + "WESTINDIA:20220516T162114Z:493410fd-6218-4f1c-98f8-ffb30380ab0f" ], "Date": [ - "Sat, 26 Mar 2022 11:41:32 GMT" + "Mon, 16 May 2022 16:21:13 GMT" ], "Content-Length": [ - "846" + "188" ], "Content-Type": [ "application/json" @@ -5784,26 +5846,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/8b5d9156-8fb0-4bd6-9f6c-91682fbd6df1\",\r\n \"name\": \"8b5d9156-8fb0-4bd6-9f6c-91682fbd6df1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT42.3312149S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"Storage\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"File Share Name\": \"fs1\",\r\n \"Storage Account Name\": \"pstestsa8895\",\r\n \"Policy Name\": \"afspolicy1\"\r\n }\r\n },\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"ConfigureBackup\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-03-26T08:48:44.032676Z\",\r\n \"endTime\": \"2022-03-26T08:49:26.3638909Z\",\r\n \"activityId\": \"d8e78e34-f966-4976-9fbd-58d17bcb5c8a\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"a7ebb62e-372f-4616-8a2a-a06aa5882ed8\",\r\n \"name\": \"a7ebb62e-372f-4616-8a2a-a06aa5882ed8\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T16:20:56.1688226Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/756b0587-be95-4127-9540-674395c9c125?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy83NTZiMDU4Ny1iZTk1LTQxMjctOTU0MC02NzQzOTVjOWMxMjU/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/a7ebb62e-372f-4616-8a2a-a06aa5882ed8?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9hN2ViYjYyZS0zNzJmLTQ2MTYtOGEyYS1hMDZhYTU4ODJlZDg/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "abf4ea27-f6ec-40ce-bafb-0cb51cc905e3" + "3495fd44-a614-44cf-b9c6-259732e0f5ac" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -5813,40 +5875,39 @@ "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-IIS/10.0" - ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "12967b9c-a46b-4885-9c0c-806ac6be2ec4" + "ebc1fc4b-635c-4bb9-a806-bb34e58013e9" ], "x-ms-client-request-id": [ - "abf4ea27-f6ec-40ce-bafb-0cb51cc905e3", - "abf4ea27-f6ec-40ce-bafb-0cb51cc905e3" - ], - "X-Powered-By": [ - "ASP.NET" + "3495fd44-a614-44cf-b9c6-259732e0f5ac", + "3495fd44-a614-44cf-b9c6-259732e0f5ac" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "247" + "264" ], "x-ms-correlation-request-id": [ - "12967b9c-a46b-4885-9c0c-806ac6be2ec4" + "ebc1fc4b-635c-4bb9-a806-bb34e58013e9" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T114133Z:12967b9c-a46b-4885-9c0c-806ac6be2ec4" + "WESTINDIA:20220516T162114Z:ebc1fc4b-635c-4bb9-a806-bb34e58013e9" ], "Date": [ - "Sat, 26 Mar 2022 11:41:32 GMT" + "Mon, 16 May 2022 16:21:14 GMT" ], "Content-Length": [ - "798" + "188" ], "Content-Type": [ "application/json" @@ -5855,26 +5916,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/756b0587-be95-4127-9540-674395c9c125\",\r\n \"name\": \"756b0587-be95-4127-9540-674395c9c125\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT11.8239018S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"Storage\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Storage Account Name\": \"pstestsa8895\"\r\n }\r\n },\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"pstestsa8895\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Register\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-03-26T08:48:21.1942954Z\",\r\n \"endTime\": \"2022-03-26T08:48:33.0181972Z\",\r\n \"activityId\": \"d8e78e34-f966-4976-9fbd-58d17bcb5c8a\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"a7ebb62e-372f-4616-8a2a-a06aa5882ed8\",\r\n \"name\": \"a7ebb62e-372f-4616-8a2a-a06aa5882ed8\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T16:20:56.1688226Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/756b0587-be95-4127-9540-674395c9c125?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy83NTZiMDU4Ny1iZTk1LTQxMjctOTU0MC02NzQzOTVjOWMxMjU/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/a7ebb62e-372f-4616-8a2a-a06aa5882ed8?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9hN2ViYjYyZS0zNzJmLTQ2MTYtOGEyYS1hMDZhYTU4ODJlZDg/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f69f9461-bf27-4d47-bc00-f1b89c165bf6" + "3495fd44-a614-44cf-b9c6-259732e0f5ac" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -5884,40 +5945,39 @@ "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-IIS/10.0" - ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "68c4ed71-72fa-4d57-a17f-99a2ce8667bd" + "bb483700-a2a8-4fc7-95f4-5074316300ca" ], "x-ms-client-request-id": [ - "f69f9461-bf27-4d47-bc00-f1b89c165bf6", - "f69f9461-bf27-4d47-bc00-f1b89c165bf6" - ], - "X-Powered-By": [ - "ASP.NET" + "3495fd44-a614-44cf-b9c6-259732e0f5ac", + "3495fd44-a614-44cf-b9c6-259732e0f5ac" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "246" + "263" ], "x-ms-correlation-request-id": [ - "68c4ed71-72fa-4d57-a17f-99a2ce8667bd" + "bb483700-a2a8-4fc7-95f4-5074316300ca" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T114133Z:68c4ed71-72fa-4d57-a17f-99a2ce8667bd" + "WESTINDIA:20220516T162115Z:bb483700-a2a8-4fc7-95f4-5074316300ca" ], "Date": [ - "Sat, 26 Mar 2022 11:41:32 GMT" + "Mon, 16 May 2022 16:21:14 GMT" ], "Content-Length": [ - "798" + "188" ], "Content-Type": [ "application/json" @@ -5926,26 +5986,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/756b0587-be95-4127-9540-674395c9c125\",\r\n \"name\": \"756b0587-be95-4127-9540-674395c9c125\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT11.8239018S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"Storage\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Storage Account Name\": \"pstestsa8895\"\r\n }\r\n },\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"pstestsa8895\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Register\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-03-26T08:48:21.1942954Z\",\r\n \"endTime\": \"2022-03-26T08:48:33.0181972Z\",\r\n \"activityId\": \"d8e78e34-f966-4976-9fbd-58d17bcb5c8a\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"a7ebb62e-372f-4616-8a2a-a06aa5882ed8\",\r\n \"name\": \"a7ebb62e-372f-4616-8a2a-a06aa5882ed8\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T16:20:56.1688226Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/8c17a08c-26c9-47be-84f4-5f7ca9ccfec6?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy84YzE3YTA4Yy0yNmM5LTQ3YmUtODRmNC01ZjdjYTljY2ZlYzY/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/a7ebb62e-372f-4616-8a2a-a06aa5882ed8?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9hN2ViYjYyZS0zNzJmLTQ2MTYtOGEyYS1hMDZhYTU4ODJlZDg/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "02f62b90-7bd2-4599-9bee-d9b9336f518c" + "3495fd44-a614-44cf-b9c6-259732e0f5ac" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -5955,40 +6015,39 @@ "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-IIS/10.0" - ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "0b0e0210-8662-4c17-ac9d-77c42ceee4b6" + "8d0782a0-e8db-4e37-a57c-94472366c5fb" ], "x-ms-client-request-id": [ - "02f62b90-7bd2-4599-9bee-d9b9336f518c", - "02f62b90-7bd2-4599-9bee-d9b9336f518c" - ], - "X-Powered-By": [ - "ASP.NET" + "3495fd44-a614-44cf-b9c6-259732e0f5ac", + "3495fd44-a614-44cf-b9c6-259732e0f5ac" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "245" + "262" ], "x-ms-correlation-request-id": [ - "0b0e0210-8662-4c17-ac9d-77c42ceee4b6" + "8d0782a0-e8db-4e37-a57c-94472366c5fb" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T114134Z:0b0e0210-8662-4c17-ac9d-77c42ceee4b6" + "WESTINDIA:20220516T162115Z:8d0782a0-e8db-4e37-a57c-94472366c5fb" ], "Date": [ - "Sat, 26 Mar 2022 11:41:33 GMT" + "Mon, 16 May 2022 16:21:15 GMT" ], "Content-Length": [ - "799" + "188" ], "Content-Type": [ "application/json" @@ -5997,26 +6056,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/8c17a08c-26c9-47be-84f4-5f7ca9ccfec6\",\r\n \"name\": \"8c17a08c-26c9-47be-84f4-5f7ca9ccfec6\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT24.264383S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"Storage\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Storage Account Name\": \"pstestsa8895\"\r\n }\r\n },\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"pstestsa8895\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"UnRegister\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-03-26T08:47:38.6385509Z\",\r\n \"endTime\": \"2022-03-26T08:48:02.9029339Z\",\r\n \"activityId\": \"24727d24-33bc-4760-a6d6-7de3ad2feeea\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"a7ebb62e-372f-4616-8a2a-a06aa5882ed8\",\r\n \"name\": \"a7ebb62e-372f-4616-8a2a-a06aa5882ed8\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T16:20:56.1688226Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/8c17a08c-26c9-47be-84f4-5f7ca9ccfec6?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy84YzE3YTA4Yy0yNmM5LTQ3YmUtODRmNC01ZjdjYTljY2ZlYzY/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/a7ebb62e-372f-4616-8a2a-a06aa5882ed8?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9hN2ViYjYyZS0zNzJmLTQ2MTYtOGEyYS1hMDZhYTU4ODJlZDg/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7e11184a-3768-4326-bf4c-0983db5c6bb1" + "3495fd44-a614-44cf-b9c6-259732e0f5ac" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -6026,40 +6085,39 @@ "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-IIS/10.0" - ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "5506526d-c60c-4a40-8e72-9d24bfbe6882" + "a695eaa3-aeb9-4fca-9dc5-7b8acfbe2b04" ], "x-ms-client-request-id": [ - "7e11184a-3768-4326-bf4c-0983db5c6bb1", - "7e11184a-3768-4326-bf4c-0983db5c6bb1" - ], - "X-Powered-By": [ - "ASP.NET" + "3495fd44-a614-44cf-b9c6-259732e0f5ac", + "3495fd44-a614-44cf-b9c6-259732e0f5ac" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "244" + "261" ], "x-ms-correlation-request-id": [ - "5506526d-c60c-4a40-8e72-9d24bfbe6882" + "a695eaa3-aeb9-4fca-9dc5-7b8acfbe2b04" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T114134Z:5506526d-c60c-4a40-8e72-9d24bfbe6882" + "WESTINDIA:20220516T162116Z:a695eaa3-aeb9-4fca-9dc5-7b8acfbe2b04" ], "Date": [ - "Sat, 26 Mar 2022 11:41:33 GMT" + "Mon, 16 May 2022 16:21:15 GMT" ], "Content-Length": [ - "799" + "188" ], "Content-Type": [ "application/json" @@ -6068,26 +6126,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/8c17a08c-26c9-47be-84f4-5f7ca9ccfec6\",\r\n \"name\": \"8c17a08c-26c9-47be-84f4-5f7ca9ccfec6\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT24.264383S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"Storage\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Storage Account Name\": \"pstestsa8895\"\r\n }\r\n },\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"pstestsa8895\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"UnRegister\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-03-26T08:47:38.6385509Z\",\r\n \"endTime\": \"2022-03-26T08:48:02.9029339Z\",\r\n \"activityId\": \"24727d24-33bc-4760-a6d6-7de3ad2feeea\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"a7ebb62e-372f-4616-8a2a-a06aa5882ed8\",\r\n \"name\": \"a7ebb62e-372f-4616-8a2a-a06aa5882ed8\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T16:20:56.1688226Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/f5a93728-e9a9-418f-b671-9b165ba57d04?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9mNWE5MzcyOC1lOWE5LTQxOGYtYjY3MS05YjE2NWJhNTdkMDQ/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/a7ebb62e-372f-4616-8a2a-a06aa5882ed8?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9hN2ViYjYyZS0zNzJmLTQ2MTYtOGEyYS1hMDZhYTU4ODJlZDg/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f5d4f552-302b-47ce-a4ba-009ceb20d408" + "3495fd44-a614-44cf-b9c6-259732e0f5ac" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -6097,40 +6155,39 @@ "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-IIS/10.0" - ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "7f62a095-e0f9-4183-bb4a-00c73c780cbb" + "d35f7396-be9b-4777-87f1-214c9d23474d" ], "x-ms-client-request-id": [ - "f5d4f552-302b-47ce-a4ba-009ceb20d408", - "f5d4f552-302b-47ce-a4ba-009ceb20d408" - ], - "X-Powered-By": [ - "ASP.NET" + "3495fd44-a614-44cf-b9c6-259732e0f5ac", + "3495fd44-a614-44cf-b9c6-259732e0f5ac" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "243" + "260" ], "x-ms-correlation-request-id": [ - "7f62a095-e0f9-4183-bb4a-00c73c780cbb" + "d35f7396-be9b-4777-87f1-214c9d23474d" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T114134Z:7f62a095-e0f9-4183-bb4a-00c73c780cbb" + "WESTINDIA:20220516T162116Z:d35f7396-be9b-4777-87f1-214c9d23474d" ], "Date": [ - "Sat, 26 Mar 2022 11:41:34 GMT" + "Mon, 16 May 2022 16:21:16 GMT" ], "Content-Length": [ - "821" + "188" ], "Content-Type": [ "application/json" @@ -6139,26 +6196,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/f5a93728-e9a9-418f-b671-9b165ba57d04\",\r\n \"name\": \"f5a93728-e9a9-418f-b671-9b165ba57d04\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT21.6486127S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"Storage\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"File Share Name\": \"fs1\",\r\n \"Storage Account Name\": \"pstestsa8895\"\r\n }\r\n },\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"DeleteBackupData\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-03-26T08:47:05.9143952Z\",\r\n \"endTime\": \"2022-03-26T08:47:27.5630079Z\",\r\n \"activityId\": \"0116c2f4-41a2-4df6-b307-d408a172b3dd\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"a7ebb62e-372f-4616-8a2a-a06aa5882ed8\",\r\n \"name\": \"a7ebb62e-372f-4616-8a2a-a06aa5882ed8\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T16:20:56.1688226Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/f5a93728-e9a9-418f-b671-9b165ba57d04?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9mNWE5MzcyOC1lOWE5LTQxOGYtYjY3MS05YjE2NWJhNTdkMDQ/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/a7ebb62e-372f-4616-8a2a-a06aa5882ed8?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9hN2ViYjYyZS0zNzJmLTQ2MTYtOGEyYS1hMDZhYTU4ODJlZDg/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "281ebb35-4a7e-437e-a37c-e52defac7245" + "3495fd44-a614-44cf-b9c6-259732e0f5ac" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -6168,40 +6225,39 @@ "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-IIS/10.0" - ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "6d93d1a7-a7ea-4dab-9eea-53f8c3004585" + "3be90220-09f0-4b33-820a-1eddde8432a8" ], "x-ms-client-request-id": [ - "281ebb35-4a7e-437e-a37c-e52defac7245", - "281ebb35-4a7e-437e-a37c-e52defac7245" - ], - "X-Powered-By": [ - "ASP.NET" + "3495fd44-a614-44cf-b9c6-259732e0f5ac", + "3495fd44-a614-44cf-b9c6-259732e0f5ac" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "242" + "259" ], "x-ms-correlation-request-id": [ - "6d93d1a7-a7ea-4dab-9eea-53f8c3004585" + "3be90220-09f0-4b33-820a-1eddde8432a8" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T114135Z:6d93d1a7-a7ea-4dab-9eea-53f8c3004585" + "WESTINDIA:20220516T162117Z:3be90220-09f0-4b33-820a-1eddde8432a8" ], "Date": [ - "Sat, 26 Mar 2022 11:41:34 GMT" + "Mon, 16 May 2022 16:21:16 GMT" ], "Content-Length": [ - "821" + "188" ], "Content-Type": [ "application/json" @@ -6210,26 +6266,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/f5a93728-e9a9-418f-b671-9b165ba57d04\",\r\n \"name\": \"f5a93728-e9a9-418f-b671-9b165ba57d04\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT21.6486127S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"Storage\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"File Share Name\": \"fs1\",\r\n \"Storage Account Name\": \"pstestsa8895\"\r\n }\r\n },\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"DeleteBackupData\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-03-26T08:47:05.9143952Z\",\r\n \"endTime\": \"2022-03-26T08:47:27.5630079Z\",\r\n \"activityId\": \"0116c2f4-41a2-4df6-b307-d408a172b3dd\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"a7ebb62e-372f-4616-8a2a-a06aa5882ed8\",\r\n \"name\": \"a7ebb62e-372f-4616-8a2a-a06aa5882ed8\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T16:20:56.1688226Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/43dad9dd-0648-490d-8f19-adde22975b0a?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy80M2RhZDlkZC0wNjQ4LTQ5MGQtOGYxOS1hZGRlMjI5NzViMGE/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/a7ebb62e-372f-4616-8a2a-a06aa5882ed8?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9hN2ViYjYyZS0zNzJmLTQ2MTYtOGEyYS1hMDZhYTU4ODJlZDg/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5de36e43-d452-4c80-b340-14c9806d61f0" + "3495fd44-a614-44cf-b9c6-259732e0f5ac" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -6239,40 +6295,39 @@ "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-IIS/10.0" - ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "7076ae46-14ef-474e-8a74-8f8d73ef51fd" + "e5a02f11-aee2-4ab0-a734-92124040217c" ], "x-ms-client-request-id": [ - "5de36e43-d452-4c80-b340-14c9806d61f0", - "5de36e43-d452-4c80-b340-14c9806d61f0" - ], - "X-Powered-By": [ - "ASP.NET" + "3495fd44-a614-44cf-b9c6-259732e0f5ac", + "3495fd44-a614-44cf-b9c6-259732e0f5ac" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "241" + "258" ], "x-ms-correlation-request-id": [ - "7076ae46-14ef-474e-8a74-8f8d73ef51fd" + "e5a02f11-aee2-4ab0-a734-92124040217c" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T114135Z:7076ae46-14ef-474e-8a74-8f8d73ef51fd" + "WESTINDIA:20220516T162117Z:e5a02f11-aee2-4ab0-a734-92124040217c" ], "Date": [ - "Sat, 26 Mar 2022 11:41:34 GMT" + "Mon, 16 May 2022 16:21:17 GMT" ], "Content-Length": [ - "847" + "188" ], "Content-Type": [ "application/json" @@ -6281,26 +6336,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/43dad9dd-0648-490d-8f19-adde22975b0a\",\r\n \"name\": \"43dad9dd-0648-490d-8f19-adde22975b0a\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT42.3180023S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"Storage\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"File Share Name\": \"fs1\",\r\n \"Storage Account Name\": \"pstestsa8895\",\r\n \"Policy Name\": \"afspolicy1\"\r\n }\r\n },\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"ConfigureBackup\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-03-26T08:46:09.5856191Z\",\r\n \"endTime\": \"2022-03-26T08:46:51.9036214Z\",\r\n \"activityId\": \"12d6e3a0-e8c4-496c-b6af-21323463ae7d\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"a7ebb62e-372f-4616-8a2a-a06aa5882ed8\",\r\n \"name\": \"a7ebb62e-372f-4616-8a2a-a06aa5882ed8\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T16:20:56.1688226Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/43dad9dd-0648-490d-8f19-adde22975b0a?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy80M2RhZDlkZC0wNjQ4LTQ5MGQtOGYxOS1hZGRlMjI5NzViMGE/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/a7ebb62e-372f-4616-8a2a-a06aa5882ed8?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9hN2ViYjYyZS0zNzJmLTQ2MTYtOGEyYS1hMDZhYTU4ODJlZDg/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "19cda75f-0bfd-40e3-807c-00b4049a15c8" + "3495fd44-a614-44cf-b9c6-259732e0f5ac" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -6310,40 +6365,39 @@ "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-IIS/10.0" - ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "ce5a4294-13c8-4912-8267-4cee20cd3fab" + "3982c901-9871-49c7-afb3-9b7eca6b7519" ], "x-ms-client-request-id": [ - "19cda75f-0bfd-40e3-807c-00b4049a15c8", - "19cda75f-0bfd-40e3-807c-00b4049a15c8" - ], - "X-Powered-By": [ - "ASP.NET" + "3495fd44-a614-44cf-b9c6-259732e0f5ac", + "3495fd44-a614-44cf-b9c6-259732e0f5ac" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "240" + "257" ], "x-ms-correlation-request-id": [ - "ce5a4294-13c8-4912-8267-4cee20cd3fab" + "3982c901-9871-49c7-afb3-9b7eca6b7519" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T114135Z:ce5a4294-13c8-4912-8267-4cee20cd3fab" + "WESTINDIA:20220516T162118Z:3982c901-9871-49c7-afb3-9b7eca6b7519" ], "Date": [ - "Sat, 26 Mar 2022 11:41:35 GMT" + "Mon, 16 May 2022 16:21:17 GMT" ], "Content-Length": [ - "847" + "188" ], "Content-Type": [ "application/json" @@ -6352,26 +6406,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/43dad9dd-0648-490d-8f19-adde22975b0a\",\r\n \"name\": \"43dad9dd-0648-490d-8f19-adde22975b0a\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT42.3180023S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"Storage\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"File Share Name\": \"fs1\",\r\n \"Storage Account Name\": \"pstestsa8895\",\r\n \"Policy Name\": \"afspolicy1\"\r\n }\r\n },\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"ConfigureBackup\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-03-26T08:46:09.5856191Z\",\r\n \"endTime\": \"2022-03-26T08:46:51.9036214Z\",\r\n \"activityId\": \"12d6e3a0-e8c4-496c-b6af-21323463ae7d\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"a7ebb62e-372f-4616-8a2a-a06aa5882ed8\",\r\n \"name\": \"a7ebb62e-372f-4616-8a2a-a06aa5882ed8\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T16:20:56.1688226Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/026b85ad-b3c8-41e1-bdfd-f1728e49cd23?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy8wMjZiODVhZC1iM2M4LTQxZTEtYmRmZC1mMTcyOGU0OWNkMjM/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/a7ebb62e-372f-4616-8a2a-a06aa5882ed8?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9hN2ViYjYyZS0zNzJmLTQ2MTYtOGEyYS1hMDZhYTU4ODJlZDg/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "20930fd8-28bf-42b2-9b87-2a7be08e469b" + "3495fd44-a614-44cf-b9c6-259732e0f5ac" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -6381,40 +6435,39 @@ "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-IIS/10.0" - ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "6c2a22ba-b869-4eed-bb9d-b5cc6c352576" + "719e29bb-94f9-4394-9bba-6c6188b54794" ], "x-ms-client-request-id": [ - "20930fd8-28bf-42b2-9b87-2a7be08e469b", - "20930fd8-28bf-42b2-9b87-2a7be08e469b" - ], - "X-Powered-By": [ - "ASP.NET" + "3495fd44-a614-44cf-b9c6-259732e0f5ac", + "3495fd44-a614-44cf-b9c6-259732e0f5ac" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "239" + "256" ], "x-ms-correlation-request-id": [ - "6c2a22ba-b869-4eed-bb9d-b5cc6c352576" + "719e29bb-94f9-4394-9bba-6c6188b54794" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T114136Z:6c2a22ba-b869-4eed-bb9d-b5cc6c352576" + "WESTINDIA:20220516T162118Z:719e29bb-94f9-4394-9bba-6c6188b54794" ], "Date": [ - "Sat, 26 Mar 2022 11:41:35 GMT" + "Mon, 16 May 2022 16:21:18 GMT" ], "Content-Length": [ - "797" + "188" ], "Content-Type": [ "application/json" @@ -6423,26 +6476,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/026b85ad-b3c8-41e1-bdfd-f1728e49cd23\",\r\n \"name\": \"026b85ad-b3c8-41e1-bdfd-f1728e49cd23\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT12.352555S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"Storage\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Storage Account Name\": \"pstestsa8895\"\r\n }\r\n },\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"pstestsa8895\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Register\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-03-26T08:45:46.8803425Z\",\r\n \"endTime\": \"2022-03-26T08:45:59.2328975Z\",\r\n \"activityId\": \"12d6e3a0-e8c4-496c-b6af-21323463ae7d\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"a7ebb62e-372f-4616-8a2a-a06aa5882ed8\",\r\n \"name\": \"a7ebb62e-372f-4616-8a2a-a06aa5882ed8\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T16:20:56.1688226Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/026b85ad-b3c8-41e1-bdfd-f1728e49cd23?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy8wMjZiODVhZC1iM2M4LTQxZTEtYmRmZC1mMTcyOGU0OWNkMjM/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/a7ebb62e-372f-4616-8a2a-a06aa5882ed8?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9hN2ViYjYyZS0zNzJmLTQ2MTYtOGEyYS1hMDZhYTU4ODJlZDg/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d9ebb46e-acc1-4e9e-a020-da2028b69639" + "3495fd44-a614-44cf-b9c6-259732e0f5ac" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -6452,40 +6505,39 @@ "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-IIS/10.0" - ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "b7c008ea-d28a-450c-b3a4-9cdf9486c165" + "a7f5a727-6577-447c-bb9f-aa93489cff61" ], "x-ms-client-request-id": [ - "d9ebb46e-acc1-4e9e-a020-da2028b69639", - "d9ebb46e-acc1-4e9e-a020-da2028b69639" - ], - "X-Powered-By": [ - "ASP.NET" + "3495fd44-a614-44cf-b9c6-259732e0f5ac", + "3495fd44-a614-44cf-b9c6-259732e0f5ac" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "238" + "255" ], "x-ms-correlation-request-id": [ - "b7c008ea-d28a-450c-b3a4-9cdf9486c165" + "a7f5a727-6577-447c-bb9f-aa93489cff61" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T114136Z:b7c008ea-d28a-450c-b3a4-9cdf9486c165" + "WESTINDIA:20220516T162119Z:a7f5a727-6577-447c-bb9f-aa93489cff61" ], "Date": [ - "Sat, 26 Mar 2022 11:41:36 GMT" + "Mon, 16 May 2022 16:21:18 GMT" ], "Content-Length": [ - "797" + "188" ], "Content-Type": [ "application/json" @@ -6494,26 +6546,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/026b85ad-b3c8-41e1-bdfd-f1728e49cd23\",\r\n \"name\": \"026b85ad-b3c8-41e1-bdfd-f1728e49cd23\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT12.352555S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"Storage\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Storage Account Name\": \"pstestsa8895\"\r\n }\r\n },\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"pstestsa8895\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Register\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-03-26T08:45:46.8803425Z\",\r\n \"endTime\": \"2022-03-26T08:45:59.2328975Z\",\r\n \"activityId\": \"12d6e3a0-e8c4-496c-b6af-21323463ae7d\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"a7ebb62e-372f-4616-8a2a-a06aa5882ed8\",\r\n \"name\": \"a7ebb62e-372f-4616-8a2a-a06aa5882ed8\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T16:20:56.1688226Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/371eedb7-5835-456a-8eaa-ec3aea472903?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy8zNzFlZWRiNy01ODM1LTQ1NmEtOGVhYS1lYzNhZWE0NzI5MDM/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/a7ebb62e-372f-4616-8a2a-a06aa5882ed8?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9hN2ViYjYyZS0zNzJmLTQ2MTYtOGEyYS1hMDZhYTU4ODJlZDg/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7a6b5c5f-db74-4994-8151-c5862291d593" + "3495fd44-a614-44cf-b9c6-259732e0f5ac" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -6523,40 +6575,39 @@ "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-IIS/10.0" - ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "41d7f1d8-aeec-4af7-873d-d37ade926416" + "da89dd71-0c87-4f6f-ab5e-e313dacf7879" ], "x-ms-client-request-id": [ - "7a6b5c5f-db74-4994-8151-c5862291d593", - "7a6b5c5f-db74-4994-8151-c5862291d593" - ], - "X-Powered-By": [ - "ASP.NET" + "3495fd44-a614-44cf-b9c6-259732e0f5ac", + "3495fd44-a614-44cf-b9c6-259732e0f5ac" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "237" + "254" ], "x-ms-correlation-request-id": [ - "41d7f1d8-aeec-4af7-873d-d37ade926416" + "da89dd71-0c87-4f6f-ab5e-e313dacf7879" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T114137Z:41d7f1d8-aeec-4af7-873d-d37ade926416" + "WESTINDIA:20220516T162119Z:da89dd71-0c87-4f6f-ab5e-e313dacf7879" ], "Date": [ - "Sat, 26 Mar 2022 11:41:36 GMT" + "Mon, 16 May 2022 16:21:18 GMT" ], "Content-Length": [ - "799" + "188" ], "Content-Type": [ "application/json" @@ -6565,26 +6616,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/371eedb7-5835-456a-8eaa-ec3aea472903\",\r\n \"name\": \"371eedb7-5835-456a-8eaa-ec3aea472903\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT23.932798S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"Storage\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Storage Account Name\": \"pstestsa8895\"\r\n }\r\n },\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"pstestsa8895\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"UnRegister\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-03-26T08:44:57.2680066Z\",\r\n \"endTime\": \"2022-03-26T08:45:21.2008046Z\",\r\n \"activityId\": \"8ce15a2a-727c-487d-8e02-d3c9b0ac1998\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"a7ebb62e-372f-4616-8a2a-a06aa5882ed8\",\r\n \"name\": \"a7ebb62e-372f-4616-8a2a-a06aa5882ed8\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T16:20:56.1688226Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/371eedb7-5835-456a-8eaa-ec3aea472903?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy8zNzFlZWRiNy01ODM1LTQ1NmEtOGVhYS1lYzNhZWE0NzI5MDM/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/a7ebb62e-372f-4616-8a2a-a06aa5882ed8?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9hN2ViYjYyZS0zNzJmLTQ2MTYtOGEyYS1hMDZhYTU4ODJlZDg/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "69e22384-5aaa-4454-a4d4-cbe32739eb34" + "3495fd44-a614-44cf-b9c6-259732e0f5ac" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -6594,40 +6645,39 @@ "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-IIS/10.0" - ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "2326c5bb-eefa-4247-b2fc-01835f11f77c" + "bba84a1d-50fa-4876-80da-61a316aba580" ], "x-ms-client-request-id": [ - "69e22384-5aaa-4454-a4d4-cbe32739eb34", - "69e22384-5aaa-4454-a4d4-cbe32739eb34" - ], - "X-Powered-By": [ - "ASP.NET" + "3495fd44-a614-44cf-b9c6-259732e0f5ac", + "3495fd44-a614-44cf-b9c6-259732e0f5ac" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "236" + "253" ], "x-ms-correlation-request-id": [ - "2326c5bb-eefa-4247-b2fc-01835f11f77c" + "bba84a1d-50fa-4876-80da-61a316aba580" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T114137Z:2326c5bb-eefa-4247-b2fc-01835f11f77c" + "WESTINDIA:20220516T162120Z:bba84a1d-50fa-4876-80da-61a316aba580" ], "Date": [ - "Sat, 26 Mar 2022 11:41:36 GMT" + "Mon, 16 May 2022 16:21:19 GMT" ], "Content-Length": [ - "799" + "188" ], "Content-Type": [ "application/json" @@ -6636,26 +6686,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/371eedb7-5835-456a-8eaa-ec3aea472903\",\r\n \"name\": \"371eedb7-5835-456a-8eaa-ec3aea472903\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT23.932798S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"Storage\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Storage Account Name\": \"pstestsa8895\"\r\n }\r\n },\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"pstestsa8895\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"UnRegister\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-03-26T08:44:57.2680066Z\",\r\n \"endTime\": \"2022-03-26T08:45:21.2008046Z\",\r\n \"activityId\": \"8ce15a2a-727c-487d-8e02-d3c9b0ac1998\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"a7ebb62e-372f-4616-8a2a-a06aa5882ed8\",\r\n \"name\": \"a7ebb62e-372f-4616-8a2a-a06aa5882ed8\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T16:20:56.1688226Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/897afcc3-ba51-432a-9088-06267e987b97?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy84OTdhZmNjMy1iYTUxLTQzMmEtOTA4OC0wNjI2N2U5ODdiOTc/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/a7ebb62e-372f-4616-8a2a-a06aa5882ed8?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9hN2ViYjYyZS0zNzJmLTQ2MTYtOGEyYS1hMDZhYTU4ODJlZDg/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7778c769-dacc-4441-9ece-80f132defb3c" + "3495fd44-a614-44cf-b9c6-259732e0f5ac" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -6665,40 +6715,39 @@ "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-IIS/10.0" - ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "8a0dc304-3cb0-436c-bff4-cee0828d41a9" + "6bb2ef1c-b039-4f8b-9932-0fca901ca324" ], "x-ms-client-request-id": [ - "7778c769-dacc-4441-9ece-80f132defb3c", - "7778c769-dacc-4441-9ece-80f132defb3c" - ], - "X-Powered-By": [ - "ASP.NET" + "3495fd44-a614-44cf-b9c6-259732e0f5ac", + "3495fd44-a614-44cf-b9c6-259732e0f5ac" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "235" + "252" ], "x-ms-correlation-request-id": [ - "8a0dc304-3cb0-436c-bff4-cee0828d41a9" + "6bb2ef1c-b039-4f8b-9932-0fca901ca324" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T114137Z:8a0dc304-3cb0-436c-bff4-cee0828d41a9" + "WESTINDIA:20220516T162120Z:6bb2ef1c-b039-4f8b-9932-0fca901ca324" ], "Date": [ - "Sat, 26 Mar 2022 11:41:37 GMT" + "Mon, 16 May 2022 16:21:19 GMT" ], "Content-Length": [ - "821" + "188" ], "Content-Type": [ "application/json" @@ -6707,26 +6756,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/897afcc3-ba51-432a-9088-06267e987b97\",\r\n \"name\": \"897afcc3-ba51-432a-9088-06267e987b97\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT21.1836594S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"Storage\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"File Share Name\": \"fs1\",\r\n \"Storage Account Name\": \"pstestsa8895\"\r\n }\r\n },\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"DeleteBackupData\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-03-26T08:44:33.2993392Z\",\r\n \"endTime\": \"2022-03-26T08:44:54.4829986Z\",\r\n \"activityId\": \"e9194750-9964-481b-b880-b8d8295f4568\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"a7ebb62e-372f-4616-8a2a-a06aa5882ed8\",\r\n \"name\": \"a7ebb62e-372f-4616-8a2a-a06aa5882ed8\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T16:20:56.1688226Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/897afcc3-ba51-432a-9088-06267e987b97?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy84OTdhZmNjMy1iYTUxLTQzMmEtOTA4OC0wNjI2N2U5ODdiOTc/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/a7ebb62e-372f-4616-8a2a-a06aa5882ed8?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9hN2ViYjYyZS0zNzJmLTQ2MTYtOGEyYS1hMDZhYTU4ODJlZDg/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d4b53c91-2abd-4a5e-a4c6-ea2c371bb92c" + "3495fd44-a614-44cf-b9c6-259732e0f5ac" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -6736,40 +6785,39 @@ "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-IIS/10.0" - ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "f28f25bc-c3a6-4625-8b9f-03f2d435a89e" + "9514e062-05df-4608-8113-e34b72370b67" ], "x-ms-client-request-id": [ - "d4b53c91-2abd-4a5e-a4c6-ea2c371bb92c", - "d4b53c91-2abd-4a5e-a4c6-ea2c371bb92c" - ], - "X-Powered-By": [ - "ASP.NET" + "3495fd44-a614-44cf-b9c6-259732e0f5ac", + "3495fd44-a614-44cf-b9c6-259732e0f5ac" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "234" + "251" ], "x-ms-correlation-request-id": [ - "f28f25bc-c3a6-4625-8b9f-03f2d435a89e" + "9514e062-05df-4608-8113-e34b72370b67" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T114138Z:f28f25bc-c3a6-4625-8b9f-03f2d435a89e" + "WESTINDIA:20220516T162121Z:9514e062-05df-4608-8113-e34b72370b67" ], "Date": [ - "Sat, 26 Mar 2022 11:41:37 GMT" + "Mon, 16 May 2022 16:21:20 GMT" ], "Content-Length": [ - "821" + "188" ], "Content-Type": [ "application/json" @@ -6778,26 +6826,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/897afcc3-ba51-432a-9088-06267e987b97\",\r\n \"name\": \"897afcc3-ba51-432a-9088-06267e987b97\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT21.1836594S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"Storage\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"File Share Name\": \"fs1\",\r\n \"Storage Account Name\": \"pstestsa8895\"\r\n }\r\n },\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"DeleteBackupData\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-03-26T08:44:33.2993392Z\",\r\n \"endTime\": \"2022-03-26T08:44:54.4829986Z\",\r\n \"activityId\": \"e9194750-9964-481b-b880-b8d8295f4568\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"a7ebb62e-372f-4616-8a2a-a06aa5882ed8\",\r\n \"name\": \"a7ebb62e-372f-4616-8a2a-a06aa5882ed8\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T16:20:56.1688226Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/8c30881e-2f44-436f-b85d-fcd1a14219d5?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy84YzMwODgxZS0yZjQ0LTQzNmYtYjg1ZC1mY2QxYTE0MjE5ZDU/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/a7ebb62e-372f-4616-8a2a-a06aa5882ed8?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9hN2ViYjYyZS0zNzJmLTQ2MTYtOGEyYS1hMDZhYTU4ODJlZDg/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "792c4187-165d-43b1-9ca5-135ccc804d76" + "3495fd44-a614-44cf-b9c6-259732e0f5ac" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -6807,40 +6855,39 @@ "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-IIS/10.0" - ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "875dc989-2d44-4369-a59e-a1e7110a47a9" + "c0e0125d-30c3-4016-b232-c6c042d1b4fc" ], "x-ms-client-request-id": [ - "792c4187-165d-43b1-9ca5-135ccc804d76", - "792c4187-165d-43b1-9ca5-135ccc804d76" - ], - "X-Powered-By": [ - "ASP.NET" + "3495fd44-a614-44cf-b9c6-259732e0f5ac", + "3495fd44-a614-44cf-b9c6-259732e0f5ac" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "233" + "250" ], "x-ms-correlation-request-id": [ - "875dc989-2d44-4369-a59e-a1e7110a47a9" + "c0e0125d-30c3-4016-b232-c6c042d1b4fc" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T114138Z:875dc989-2d44-4369-a59e-a1e7110a47a9" + "WESTINDIA:20220516T162121Z:c0e0125d-30c3-4016-b232-c6c042d1b4fc" ], "Date": [ - "Sat, 26 Mar 2022 11:41:37 GMT" + "Mon, 16 May 2022 16:21:20 GMT" ], "Content-Length": [ - "847" + "188" ], "Content-Type": [ "application/json" @@ -6849,26 +6896,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/8c30881e-2f44-436f-b85d-fcd1a14219d5\",\r\n \"name\": \"8c30881e-2f44-436f-b85d-fcd1a14219d5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT43.6141722S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"Storage\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"File Share Name\": \"fs1\",\r\n \"Storage Account Name\": \"pstestsa8895\",\r\n \"Policy Name\": \"afspolicy1\"\r\n }\r\n },\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"ConfigureBackup\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-03-26T08:43:38.6623882Z\",\r\n \"endTime\": \"2022-03-26T08:44:22.2765604Z\",\r\n \"activityId\": \"5c4d9eb3-b751-474b-a91d-ea6ffd24b222\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"a7ebb62e-372f-4616-8a2a-a06aa5882ed8\",\r\n \"name\": \"a7ebb62e-372f-4616-8a2a-a06aa5882ed8\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T16:20:56.1688226Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/8c30881e-2f44-436f-b85d-fcd1a14219d5?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy84YzMwODgxZS0yZjQ0LTQzNmYtYjg1ZC1mY2QxYTE0MjE5ZDU/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/a7ebb62e-372f-4616-8a2a-a06aa5882ed8?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9hN2ViYjYyZS0zNzJmLTQ2MTYtOGEyYS1hMDZhYTU4ODJlZDg/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "17c7bda2-7cc1-4037-89fd-59c178bf8e73" + "3495fd44-a614-44cf-b9c6-259732e0f5ac" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -6878,40 +6925,39 @@ "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-IIS/10.0" - ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "2d97e056-a784-4e63-b0b5-df4f632f7bc4" + "2cecbc90-1629-474c-b340-af300eea51f9" ], "x-ms-client-request-id": [ - "17c7bda2-7cc1-4037-89fd-59c178bf8e73", - "17c7bda2-7cc1-4037-89fd-59c178bf8e73" - ], - "X-Powered-By": [ - "ASP.NET" + "3495fd44-a614-44cf-b9c6-259732e0f5ac", + "3495fd44-a614-44cf-b9c6-259732e0f5ac" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "232" + "249" ], "x-ms-correlation-request-id": [ - "2d97e056-a784-4e63-b0b5-df4f632f7bc4" + "2cecbc90-1629-474c-b340-af300eea51f9" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T114138Z:2d97e056-a784-4e63-b0b5-df4f632f7bc4" + "WESTINDIA:20220516T162122Z:2cecbc90-1629-474c-b340-af300eea51f9" ], "Date": [ - "Sat, 26 Mar 2022 11:41:38 GMT" + "Mon, 16 May 2022 16:21:21 GMT" ], "Content-Length": [ - "847" + "188" ], "Content-Type": [ "application/json" @@ -6920,26 +6966,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/8c30881e-2f44-436f-b85d-fcd1a14219d5\",\r\n \"name\": \"8c30881e-2f44-436f-b85d-fcd1a14219d5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT43.6141722S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"Storage\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"File Share Name\": \"fs1\",\r\n \"Storage Account Name\": \"pstestsa8895\",\r\n \"Policy Name\": \"afspolicy1\"\r\n }\r\n },\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"ConfigureBackup\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-03-26T08:43:38.6623882Z\",\r\n \"endTime\": \"2022-03-26T08:44:22.2765604Z\",\r\n \"activityId\": \"5c4d9eb3-b751-474b-a91d-ea6ffd24b222\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"a7ebb62e-372f-4616-8a2a-a06aa5882ed8\",\r\n \"name\": \"a7ebb62e-372f-4616-8a2a-a06aa5882ed8\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T16:20:56.1688226Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/ac140717-13e7-411c-b9ce-fbf59d5b6110?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9hYzE0MDcxNy0xM2U3LTQxMWMtYjljZS1mYmY1OWQ1YjYxMTA/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/a7ebb62e-372f-4616-8a2a-a06aa5882ed8?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9hN2ViYjYyZS0zNzJmLTQ2MTYtOGEyYS1hMDZhYTU4ODJlZDg/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "65b28797-5716-44ba-9571-f589d2fad803" + "3495fd44-a614-44cf-b9c6-259732e0f5ac" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -6949,40 +6995,39 @@ "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-IIS/10.0" - ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "a845dc86-e641-4b66-a6ea-46ffeb7aed2e" + "af71cc37-c05a-4bab-9482-778b3d951e58" ], "x-ms-client-request-id": [ - "65b28797-5716-44ba-9571-f589d2fad803", - "65b28797-5716-44ba-9571-f589d2fad803" - ], - "X-Powered-By": [ - "ASP.NET" + "3495fd44-a614-44cf-b9c6-259732e0f5ac", + "3495fd44-a614-44cf-b9c6-259732e0f5ac" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "231" - ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "248" + ], "x-ms-correlation-request-id": [ - "a845dc86-e641-4b66-a6ea-46ffeb7aed2e" + "af71cc37-c05a-4bab-9482-778b3d951e58" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T114139Z:a845dc86-e641-4b66-a6ea-46ffeb7aed2e" + "WESTINDIA:20220516T162122Z:af71cc37-c05a-4bab-9482-778b3d951e58" ], "Date": [ - "Sat, 26 Mar 2022 11:41:38 GMT" + "Mon, 16 May 2022 16:21:22 GMT" ], "Content-Length": [ - "798" + "188" ], "Content-Type": [ "application/json" @@ -6991,26 +7036,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/ac140717-13e7-411c-b9ce-fbf59d5b6110\",\r\n \"name\": \"ac140717-13e7-411c-b9ce-fbf59d5b6110\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT12.8048575S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"Storage\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Storage Account Name\": \"pstestsa8895\"\r\n }\r\n },\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"pstestsa8895\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Register\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-03-26T08:43:19.5105326Z\",\r\n \"endTime\": \"2022-03-26T08:43:32.3153901Z\",\r\n \"activityId\": \"5c4d9eb3-b751-474b-a91d-ea6ffd24b222\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"a7ebb62e-372f-4616-8a2a-a06aa5882ed8\",\r\n \"name\": \"a7ebb62e-372f-4616-8a2a-a06aa5882ed8\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T16:20:56.1688226Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/ac140717-13e7-411c-b9ce-fbf59d5b6110?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9hYzE0MDcxNy0xM2U3LTQxMWMtYjljZS1mYmY1OWQ1YjYxMTA/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/a7ebb62e-372f-4616-8a2a-a06aa5882ed8?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9hN2ViYjYyZS0zNzJmLTQ2MTYtOGEyYS1hMDZhYTU4ODJlZDg/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c910f2a2-b7c0-4e75-9624-d0748f26a096" + "3495fd44-a614-44cf-b9c6-259732e0f5ac" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -7020,40 +7065,39 @@ "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-IIS/10.0" - ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "01341872-94a6-4cc6-b7cd-186f16acfc07" + "bd35574b-5212-41f2-b506-69266530a1b1" ], "x-ms-client-request-id": [ - "c910f2a2-b7c0-4e75-9624-d0748f26a096", - "c910f2a2-b7c0-4e75-9624-d0748f26a096" - ], - "X-Powered-By": [ - "ASP.NET" + "3495fd44-a614-44cf-b9c6-259732e0f5ac", + "3495fd44-a614-44cf-b9c6-259732e0f5ac" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "230" + "247" ], "x-ms-correlation-request-id": [ - "01341872-94a6-4cc6-b7cd-186f16acfc07" + "bd35574b-5212-41f2-b506-69266530a1b1" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T114139Z:01341872-94a6-4cc6-b7cd-186f16acfc07" + "WESTINDIA:20220516T162123Z:bd35574b-5212-41f2-b506-69266530a1b1" ], "Date": [ - "Sat, 26 Mar 2022 11:41:38 GMT" + "Mon, 16 May 2022 16:21:22 GMT" ], "Content-Length": [ - "798" + "188" ], "Content-Type": [ "application/json" @@ -7062,26 +7106,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/ac140717-13e7-411c-b9ce-fbf59d5b6110\",\r\n \"name\": \"ac140717-13e7-411c-b9ce-fbf59d5b6110\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT12.8048575S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"Storage\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Storage Account Name\": \"pstestsa8895\"\r\n }\r\n },\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"pstestsa8895\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Register\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-03-26T08:43:19.5105326Z\",\r\n \"endTime\": \"2022-03-26T08:43:32.3153901Z\",\r\n \"activityId\": \"5c4d9eb3-b751-474b-a91d-ea6ffd24b222\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"a7ebb62e-372f-4616-8a2a-a06aa5882ed8\",\r\n \"name\": \"a7ebb62e-372f-4616-8a2a-a06aa5882ed8\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T16:20:56.1688226Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/c9b94ae2-5ac4-470f-bb6a-c0835446b4f1?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9jOWI5NGFlMi01YWM0LTQ3MGYtYmI2YS1jMDgzNTQ0NmI0ZjE/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/a7ebb62e-372f-4616-8a2a-a06aa5882ed8?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9hN2ViYjYyZS0zNzJmLTQ2MTYtOGEyYS1hMDZhYTU4ODJlZDg/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "034ab5c1-2ec4-4b93-a40a-077dd05f8adb" + "3495fd44-a614-44cf-b9c6-259732e0f5ac" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -7091,40 +7135,39 @@ "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-IIS/10.0" - ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "bf9de008-f701-4d78-bd3b-4b7160d223fa" + "61f6ca53-085f-4fbe-a26e-b7b4719cfec5" ], "x-ms-client-request-id": [ - "034ab5c1-2ec4-4b93-a40a-077dd05f8adb", - "034ab5c1-2ec4-4b93-a40a-077dd05f8adb" - ], - "X-Powered-By": [ - "ASP.NET" + "3495fd44-a614-44cf-b9c6-259732e0f5ac", + "3495fd44-a614-44cf-b9c6-259732e0f5ac" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "229" + "246" ], "x-ms-correlation-request-id": [ - "bf9de008-f701-4d78-bd3b-4b7160d223fa" + "61f6ca53-085f-4fbe-a26e-b7b4719cfec5" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T114140Z:bf9de008-f701-4d78-bd3b-4b7160d223fa" + "WESTINDIA:20220516T162123Z:61f6ca53-085f-4fbe-a26e-b7b4719cfec5" ], "Date": [ - "Sat, 26 Mar 2022 11:41:39 GMT" + "Mon, 16 May 2022 16:21:22 GMT" ], "Content-Length": [ - "800" + "188" ], "Content-Type": [ "application/json" @@ -7133,26 +7176,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/c9b94ae2-5ac4-470f-bb6a-c0835446b4f1\",\r\n \"name\": \"c9b94ae2-5ac4-470f-bb6a-c0835446b4f1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT24.5004221S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"Storage\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Storage Account Name\": \"pstestsa8895\"\r\n }\r\n },\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"pstestsa8895\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"UnRegister\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-03-26T08:05:05.6916064Z\",\r\n \"endTime\": \"2022-03-26T08:05:30.1920285Z\",\r\n \"activityId\": \"d5c998cf-c423-4075-b42f-2f04aef98dd6\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"a7ebb62e-372f-4616-8a2a-a06aa5882ed8\",\r\n \"name\": \"a7ebb62e-372f-4616-8a2a-a06aa5882ed8\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T16:20:56.1688226Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/c9b94ae2-5ac4-470f-bb6a-c0835446b4f1?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9jOWI5NGFlMi01YWM0LTQ3MGYtYmI2YS1jMDgzNTQ0NmI0ZjE/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/a7ebb62e-372f-4616-8a2a-a06aa5882ed8?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9hN2ViYjYyZS0zNzJmLTQ2MTYtOGEyYS1hMDZhYTU4ODJlZDg/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1cf38263-5a5e-41a6-a086-c23a4be67868" + "3495fd44-a614-44cf-b9c6-259732e0f5ac" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -7162,40 +7205,39 @@ "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-IIS/10.0" - ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "d98857b4-6970-46bf-b3fd-8f711b751f18" + "ec80d332-f104-4fe6-920b-063366b338ad" ], "x-ms-client-request-id": [ - "1cf38263-5a5e-41a6-a086-c23a4be67868", - "1cf38263-5a5e-41a6-a086-c23a4be67868" - ], - "X-Powered-By": [ - "ASP.NET" + "3495fd44-a614-44cf-b9c6-259732e0f5ac", + "3495fd44-a614-44cf-b9c6-259732e0f5ac" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "228" + "245" ], "x-ms-correlation-request-id": [ - "d98857b4-6970-46bf-b3fd-8f711b751f18" + "ec80d332-f104-4fe6-920b-063366b338ad" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T114140Z:d98857b4-6970-46bf-b3fd-8f711b751f18" + "WESTINDIA:20220516T162124Z:ec80d332-f104-4fe6-920b-063366b338ad" ], "Date": [ - "Sat, 26 Mar 2022 11:41:39 GMT" + "Mon, 16 May 2022 16:21:23 GMT" ], "Content-Length": [ - "800" + "188" ], "Content-Type": [ "application/json" @@ -7204,26 +7246,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/c9b94ae2-5ac4-470f-bb6a-c0835446b4f1\",\r\n \"name\": \"c9b94ae2-5ac4-470f-bb6a-c0835446b4f1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT24.5004221S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"Storage\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Storage Account Name\": \"pstestsa8895\"\r\n }\r\n },\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"pstestsa8895\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"UnRegister\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-03-26T08:05:05.6916064Z\",\r\n \"endTime\": \"2022-03-26T08:05:30.1920285Z\",\r\n \"activityId\": \"d5c998cf-c423-4075-b42f-2f04aef98dd6\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"a7ebb62e-372f-4616-8a2a-a06aa5882ed8\",\r\n \"name\": \"a7ebb62e-372f-4616-8a2a-a06aa5882ed8\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T16:20:56.1688226Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/f6e15415-5012-4619-9d73-9e933278db4d?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9mNmUxNTQxNS01MDEyLTQ2MTktOWQ3My05ZTkzMzI3OGRiNGQ/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/a7ebb62e-372f-4616-8a2a-a06aa5882ed8?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9hN2ViYjYyZS0zNzJmLTQ2MTYtOGEyYS1hMDZhYTU4ODJlZDg/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c1947dc2-26f4-419c-bf89-5fab016ba5c9" + "3495fd44-a614-44cf-b9c6-259732e0f5ac" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -7233,40 +7275,39 @@ "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-IIS/10.0" - ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "36c387f4-fa4d-4285-bb43-f4cbdfebbbc5" + "c1b7b407-28b9-444a-a3a8-42fe4ca4dff7" ], "x-ms-client-request-id": [ - "c1947dc2-26f4-419c-bf89-5fab016ba5c9", - "c1947dc2-26f4-419c-bf89-5fab016ba5c9" - ], - "X-Powered-By": [ - "ASP.NET" + "3495fd44-a614-44cf-b9c6-259732e0f5ac", + "3495fd44-a614-44cf-b9c6-259732e0f5ac" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "227" + "244" ], "x-ms-correlation-request-id": [ - "36c387f4-fa4d-4285-bb43-f4cbdfebbbc5" + "c1b7b407-28b9-444a-a3a8-42fe4ca4dff7" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T114140Z:36c387f4-fa4d-4285-bb43-f4cbdfebbbc5" + "WESTINDIA:20220516T162124Z:c1b7b407-28b9-444a-a3a8-42fe4ca4dff7" ], "Date": [ - "Sat, 26 Mar 2022 11:41:40 GMT" + "Mon, 16 May 2022 16:21:23 GMT" ], "Content-Length": [ - "820" + "188" ], "Content-Type": [ "application/json" @@ -7275,26 +7316,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/f6e15415-5012-4619-9d73-9e933278db4d\",\r\n \"name\": \"f6e15415-5012-4619-9d73-9e933278db4d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT21.553208S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"Storage\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"File Share Name\": \"fs1\",\r\n \"Storage Account Name\": \"pstestsa8895\"\r\n }\r\n },\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"DeleteBackupData\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-03-26T08:04:42.1085586Z\",\r\n \"endTime\": \"2022-03-26T08:05:03.6617666Z\",\r\n \"activityId\": \"570e26d0-e023-409c-b0c7-9cae97810c47\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"a7ebb62e-372f-4616-8a2a-a06aa5882ed8\",\r\n \"name\": \"a7ebb62e-372f-4616-8a2a-a06aa5882ed8\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T16:20:56.1688226Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/f6e15415-5012-4619-9d73-9e933278db4d?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9mNmUxNTQxNS01MDEyLTQ2MTktOWQ3My05ZTkzMzI3OGRiNGQ/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/a7ebb62e-372f-4616-8a2a-a06aa5882ed8?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9hN2ViYjYyZS0zNzJmLTQ2MTYtOGEyYS1hMDZhYTU4ODJlZDg/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4db0ba78-f787-4db8-8c44-0425f1cf8bdb" + "3495fd44-a614-44cf-b9c6-259732e0f5ac" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -7304,40 +7345,39 @@ "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-IIS/10.0" - ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "9f971376-51ae-415b-a2ff-d3feb0c2d3aa" + "37f12226-0b11-4495-bca3-17f2058706a3" ], "x-ms-client-request-id": [ - "4db0ba78-f787-4db8-8c44-0425f1cf8bdb", - "4db0ba78-f787-4db8-8c44-0425f1cf8bdb" - ], - "X-Powered-By": [ - "ASP.NET" + "3495fd44-a614-44cf-b9c6-259732e0f5ac", + "3495fd44-a614-44cf-b9c6-259732e0f5ac" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "226" + "243" ], "x-ms-correlation-request-id": [ - "9f971376-51ae-415b-a2ff-d3feb0c2d3aa" + "37f12226-0b11-4495-bca3-17f2058706a3" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T114141Z:9f971376-51ae-415b-a2ff-d3feb0c2d3aa" + "WESTINDIA:20220516T162125Z:37f12226-0b11-4495-bca3-17f2058706a3" ], "Date": [ - "Sat, 26 Mar 2022 11:41:40 GMT" + "Mon, 16 May 2022 16:21:24 GMT" ], "Content-Length": [ - "820" + "188" ], "Content-Type": [ "application/json" @@ -7346,26 +7386,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/f6e15415-5012-4619-9d73-9e933278db4d\",\r\n \"name\": \"f6e15415-5012-4619-9d73-9e933278db4d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT21.553208S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"Storage\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"File Share Name\": \"fs1\",\r\n \"Storage Account Name\": \"pstestsa8895\"\r\n }\r\n },\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"DeleteBackupData\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-03-26T08:04:42.1085586Z\",\r\n \"endTime\": \"2022-03-26T08:05:03.6617666Z\",\r\n \"activityId\": \"570e26d0-e023-409c-b0c7-9cae97810c47\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"a7ebb62e-372f-4616-8a2a-a06aa5882ed8\",\r\n \"name\": \"a7ebb62e-372f-4616-8a2a-a06aa5882ed8\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T16:20:56.1688226Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/3b0005a9-06c9-4e8d-93cb-8a09dfae0b17?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy8zYjAwMDVhOS0wNmM5LTRlOGQtOTNjYi04YTA5ZGZhZTBiMTc/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/a7ebb62e-372f-4616-8a2a-a06aa5882ed8?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9hN2ViYjYyZS0zNzJmLTQ2MTYtOGEyYS1hMDZhYTU4ODJlZDg/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "16c6d40c-c00c-4b7d-927c-8fd0f16a8d0f" + "3495fd44-a614-44cf-b9c6-259732e0f5ac" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -7375,40 +7415,39 @@ "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-IIS/10.0" - ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "79a0fa46-36c0-437a-b396-9ab95984897e" + "91068eb2-e56f-4fbf-8a28-0e3fe309e135" ], "x-ms-client-request-id": [ - "16c6d40c-c00c-4b7d-927c-8fd0f16a8d0f", - "16c6d40c-c00c-4b7d-927c-8fd0f16a8d0f" - ], - "X-Powered-By": [ - "ASP.NET" + "3495fd44-a614-44cf-b9c6-259732e0f5ac", + "3495fd44-a614-44cf-b9c6-259732e0f5ac" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "225" + "242" ], "x-ms-correlation-request-id": [ - "79a0fa46-36c0-437a-b396-9ab95984897e" + "91068eb2-e56f-4fbf-8a28-0e3fe309e135" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T114141Z:79a0fa46-36c0-437a-b396-9ab95984897e" + "WESTINDIA:20220516T162125Z:91068eb2-e56f-4fbf-8a28-0e3fe309e135" ], "Date": [ - "Sat, 26 Mar 2022 11:41:40 GMT" + "Mon, 16 May 2022 16:21:24 GMT" ], "Content-Length": [ - "847" + "188" ], "Content-Type": [ "application/json" @@ -7417,26 +7456,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/3b0005a9-06c9-4e8d-93cb-8a09dfae0b17\",\r\n \"name\": \"3b0005a9-06c9-4e8d-93cb-8a09dfae0b17\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT42.9964142S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"Storage\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"File Share Name\": \"fs1\",\r\n \"Storage Account Name\": \"pstestsa8895\",\r\n \"Policy Name\": \"afspolicy1\"\r\n }\r\n },\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"ConfigureBackup\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-03-26T08:03:48.1427742Z\",\r\n \"endTime\": \"2022-03-26T08:04:31.1391884Z\",\r\n \"activityId\": \"9ee7925b-c730-4d4e-a557-85424b0f8ec1\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"a7ebb62e-372f-4616-8a2a-a06aa5882ed8\",\r\n \"name\": \"a7ebb62e-372f-4616-8a2a-a06aa5882ed8\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T16:20:56.1688226Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/3b0005a9-06c9-4e8d-93cb-8a09dfae0b17?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy8zYjAwMDVhOS0wNmM5LTRlOGQtOTNjYi04YTA5ZGZhZTBiMTc/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/a7ebb62e-372f-4616-8a2a-a06aa5882ed8?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9hN2ViYjYyZS0zNzJmLTQ2MTYtOGEyYS1hMDZhYTU4ODJlZDg/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1abcc916-a9e6-4db2-b1ab-9f1ca630967d" + "3495fd44-a614-44cf-b9c6-259732e0f5ac" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -7446,40 +7485,109 @@ "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-IIS/10.0" - ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "215ffd38-cc89-4a9b-b603-6c6e0405d84f" + "826a03d9-861d-4d0b-b12d-8a52b0f220f4" ], "x-ms-client-request-id": [ - "1abcc916-a9e6-4db2-b1ab-9f1ca630967d", - "1abcc916-a9e6-4db2-b1ab-9f1ca630967d" + "3495fd44-a614-44cf-b9c6-259732e0f5ac", + "3495fd44-a614-44cf-b9c6-259732e0f5ac" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" ], "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "241" + ], + "x-ms-correlation-request-id": [ + "826a03d9-861d-4d0b-b12d-8a52b0f220f4" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T162126Z:826a03d9-861d-4d0b-b12d-8a52b0f220f4" + ], + "Date": [ + "Mon, 16 May 2022 16:21:25 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"a7ebb62e-372f-4616-8a2a-a06aa5882ed8\",\r\n \"name\": \"a7ebb62e-372f-4616-8a2a-a06aa5882ed8\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T16:20:56.1688226Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/a7ebb62e-372f-4616-8a2a-a06aa5882ed8?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9hN2ViYjYyZS0zNzJmLTQ2MTYtOGEyYS1hMDZhYTU4ODJlZDg/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3495fd44-a614-44cf-b9c6-259732e0f5ac" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "d1b402ee-90be-446e-8676-1741b5fd508f" + ], + "x-ms-client-request-id": [ + "3495fd44-a614-44cf-b9c6-259732e0f5ac", + "3495fd44-a614-44cf-b9c6-259732e0f5ac" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "224" + "240" ], "x-ms-correlation-request-id": [ - "215ffd38-cc89-4a9b-b603-6c6e0405d84f" + "d1b402ee-90be-446e-8676-1741b5fd508f" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T114142Z:215ffd38-cc89-4a9b-b603-6c6e0405d84f" + "WESTINDIA:20220516T162126Z:d1b402ee-90be-446e-8676-1741b5fd508f" ], "Date": [ - "Sat, 26 Mar 2022 11:41:41 GMT" + "Mon, 16 May 2022 16:21:25 GMT" ], "Content-Length": [ - "847" + "188" ], "Content-Type": [ "application/json" @@ -7488,26 +7596,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/3b0005a9-06c9-4e8d-93cb-8a09dfae0b17\",\r\n \"name\": \"3b0005a9-06c9-4e8d-93cb-8a09dfae0b17\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT42.9964142S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"Storage\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"File Share Name\": \"fs1\",\r\n \"Storage Account Name\": \"pstestsa8895\",\r\n \"Policy Name\": \"afspolicy1\"\r\n }\r\n },\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"ConfigureBackup\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-03-26T08:03:48.1427742Z\",\r\n \"endTime\": \"2022-03-26T08:04:31.1391884Z\",\r\n \"activityId\": \"9ee7925b-c730-4d4e-a557-85424b0f8ec1\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"a7ebb62e-372f-4616-8a2a-a06aa5882ed8\",\r\n \"name\": \"a7ebb62e-372f-4616-8a2a-a06aa5882ed8\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T16:20:56.1688226Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/99833fa7-b9c1-4925-b843-1dcee038ecd7?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy85OTgzM2ZhNy1iOWMxLTQ5MjUtYjg0My0xZGNlZTAzOGVjZDc/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/a7ebb62e-372f-4616-8a2a-a06aa5882ed8?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9hN2ViYjYyZS0zNzJmLTQ2MTYtOGEyYS1hMDZhYTU4ODJlZDg/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f39debf2-a235-44ad-ab35-857c6f681a3b" + "3495fd44-a614-44cf-b9c6-259732e0f5ac" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -7517,68 +7625,11204 @@ "Pragma": [ "no-cache" ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "a53c3366-c1b3-4686-a207-979418a54e1c" + ], + "x-ms-client-request-id": [ + "3495fd44-a614-44cf-b9c6-259732e0f5ac", + "3495fd44-a614-44cf-b9c6-259732e0f5ac" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "Server": [ - "Microsoft-IIS/10.0", "Microsoft-IIS/10.0" ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "239" + ], + "x-ms-correlation-request-id": [ + "a53c3366-c1b3-4686-a207-979418a54e1c" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T162127Z:a53c3366-c1b3-4686-a207-979418a54e1c" + ], + "Date": [ + "Mon, 16 May 2022 16:21:26 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"a7ebb62e-372f-4616-8a2a-a06aa5882ed8\",\r\n \"name\": \"a7ebb62e-372f-4616-8a2a-a06aa5882ed8\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T16:20:56.1688226Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/a7ebb62e-372f-4616-8a2a-a06aa5882ed8?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9hN2ViYjYyZS0zNzJmLTQ2MTYtOGEyYS1hMDZhYTU4ODJlZDg/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3495fd44-a614-44cf-b9c6-259732e0f5ac" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "504975b8-1b16-4d12-9912-7c7db496a962" + "ecc9e234-0eb3-44bf-b09a-c483821afd38" ], "x-ms-client-request-id": [ - "f39debf2-a235-44ad-ab35-857c6f681a3b", - "f39debf2-a235-44ad-ab35-857c6f681a3b" + "3495fd44-a614-44cf-b9c6-259732e0f5ac", + "3495fd44-a614-44cf-b9c6-259732e0f5ac" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" ], "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "238" + ], + "x-ms-correlation-request-id": [ + "ecc9e234-0eb3-44bf-b09a-c483821afd38" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T162127Z:ecc9e234-0eb3-44bf-b09a-c483821afd38" + ], + "Date": [ + "Mon, 16 May 2022 16:21:26 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"a7ebb62e-372f-4616-8a2a-a06aa5882ed8\",\r\n \"name\": \"a7ebb62e-372f-4616-8a2a-a06aa5882ed8\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T16:20:56.1688226Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/a7ebb62e-372f-4616-8a2a-a06aa5882ed8?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9hN2ViYjYyZS0zNzJmLTQ2MTYtOGEyYS1hMDZhYTU4ODJlZDg/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3495fd44-a614-44cf-b9c6-259732e0f5ac" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "a97e9846-86f8-4f39-a8a0-04352ccf8a5c" + ], + "x-ms-client-request-id": [ + "3495fd44-a614-44cf-b9c6-259732e0f5ac", + "3495fd44-a614-44cf-b9c6-259732e0f5ac" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "237" + ], + "x-ms-correlation-request-id": [ + "a97e9846-86f8-4f39-a8a0-04352ccf8a5c" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T162127Z:a97e9846-86f8-4f39-a8a0-04352ccf8a5c" + ], + "Date": [ + "Mon, 16 May 2022 16:21:27 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"a7ebb62e-372f-4616-8a2a-a06aa5882ed8\",\r\n \"name\": \"a7ebb62e-372f-4616-8a2a-a06aa5882ed8\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T16:20:56.1688226Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/a7ebb62e-372f-4616-8a2a-a06aa5882ed8?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9hN2ViYjYyZS0zNzJmLTQ2MTYtOGEyYS1hMDZhYTU4ODJlZDg/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3495fd44-a614-44cf-b9c6-259732e0f5ac" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "62248b0c-cb45-4ad2-8d99-53c633e82411" + ], + "x-ms-client-request-id": [ + "3495fd44-a614-44cf-b9c6-259732e0f5ac", + "3495fd44-a614-44cf-b9c6-259732e0f5ac" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "236" + ], + "x-ms-correlation-request-id": [ + "62248b0c-cb45-4ad2-8d99-53c633e82411" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T162128Z:62248b0c-cb45-4ad2-8d99-53c633e82411" + ], + "Date": [ + "Mon, 16 May 2022 16:21:27 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"a7ebb62e-372f-4616-8a2a-a06aa5882ed8\",\r\n \"name\": \"a7ebb62e-372f-4616-8a2a-a06aa5882ed8\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T16:20:56.1688226Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/a7ebb62e-372f-4616-8a2a-a06aa5882ed8?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9hN2ViYjYyZS0zNzJmLTQ2MTYtOGEyYS1hMDZhYTU4ODJlZDg/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3495fd44-a614-44cf-b9c6-259732e0f5ac" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "ad3fdd4c-720e-45db-947c-6e2f9a2a617b" + ], + "x-ms-client-request-id": [ + "3495fd44-a614-44cf-b9c6-259732e0f5ac", + "3495fd44-a614-44cf-b9c6-259732e0f5ac" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "235" + ], + "x-ms-correlation-request-id": [ + "ad3fdd4c-720e-45db-947c-6e2f9a2a617b" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T162128Z:ad3fdd4c-720e-45db-947c-6e2f9a2a617b" + ], + "Date": [ + "Mon, 16 May 2022 16:21:27 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"a7ebb62e-372f-4616-8a2a-a06aa5882ed8\",\r\n \"name\": \"a7ebb62e-372f-4616-8a2a-a06aa5882ed8\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T16:20:56.1688226Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/a7ebb62e-372f-4616-8a2a-a06aa5882ed8?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9hN2ViYjYyZS0zNzJmLTQ2MTYtOGEyYS1hMDZhYTU4ODJlZDg/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3495fd44-a614-44cf-b9c6-259732e0f5ac" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "b8a7eab4-1d62-46bc-b70f-dbe505d8ce19" + ], + "x-ms-client-request-id": [ + "3495fd44-a614-44cf-b9c6-259732e0f5ac", + "3495fd44-a614-44cf-b9c6-259732e0f5ac" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "234" + ], + "x-ms-correlation-request-id": [ + "b8a7eab4-1d62-46bc-b70f-dbe505d8ce19" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T162129Z:b8a7eab4-1d62-46bc-b70f-dbe505d8ce19" + ], + "Date": [ + "Mon, 16 May 2022 16:21:28 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"a7ebb62e-372f-4616-8a2a-a06aa5882ed8\",\r\n \"name\": \"a7ebb62e-372f-4616-8a2a-a06aa5882ed8\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T16:20:56.1688226Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/a7ebb62e-372f-4616-8a2a-a06aa5882ed8?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9hN2ViYjYyZS0zNzJmLTQ2MTYtOGEyYS1hMDZhYTU4ODJlZDg/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3495fd44-a614-44cf-b9c6-259732e0f5ac" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "e96f4e6b-35c9-42f4-9cad-83f0f7bc4884" + ], + "x-ms-client-request-id": [ + "3495fd44-a614-44cf-b9c6-259732e0f5ac", + "3495fd44-a614-44cf-b9c6-259732e0f5ac" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "233" + ], + "x-ms-correlation-request-id": [ + "e96f4e6b-35c9-42f4-9cad-83f0f7bc4884" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T162129Z:e96f4e6b-35c9-42f4-9cad-83f0f7bc4884" + ], + "Date": [ + "Mon, 16 May 2022 16:21:28 GMT" + ], + "Content-Length": [ + "304" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"a7ebb62e-372f-4616-8a2a-a06aa5882ed8\",\r\n \"name\": \"a7ebb62e-372f-4616-8a2a-a06aa5882ed8\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-05-16T16:20:56.1688226Z\",\r\n \"endTime\": \"2022-05-16T16:20:56.1688226Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"1949f32e-b572-4ecd-833e-2d635ad7a793\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/a7ebb62e-372f-4616-8a2a-a06aa5882ed8?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9hN2ViYjYyZS0zNzJmLTQ2MTYtOGEyYS1hMDZhYTU4ODJlZDg/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3495fd44-a614-44cf-b9c6-259732e0f5ac" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "871d83b8-a507-4f36-8462-8ec1f3f27f1a" + ], + "x-ms-client-request-id": [ + "3495fd44-a614-44cf-b9c6-259732e0f5ac", + "3495fd44-a614-44cf-b9c6-259732e0f5ac" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "232" + ], + "x-ms-correlation-request-id": [ + "871d83b8-a507-4f36-8462-8ec1f3f27f1a" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T162130Z:871d83b8-a507-4f36-8462-8ec1f3f27f1a" + ], + "Date": [ + "Mon, 16 May 2022 16:21:29 GMT" + ], + "Content-Length": [ + "304" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"a7ebb62e-372f-4616-8a2a-a06aa5882ed8\",\r\n \"name\": \"a7ebb62e-372f-4616-8a2a-a06aa5882ed8\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-05-16T16:20:56.1688226Z\",\r\n \"endTime\": \"2022-05-16T16:20:56.1688226Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"1949f32e-b572-4ecd-833e-2d635ad7a793\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/1949f32e-b572-4ecd-833e-2d635ad7a793?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy8xOTQ5ZjMyZS1iNTcyLTRlY2QtODMzZS0yZDYzNWFkN2E3OTM/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3495fd44-a614-44cf-b9c6-259732e0f5ac" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.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": [ + "f3739eeb-6750-4201-bbd9-3c3b7c23215d" + ], + "x-ms-client-request-id": [ + "3495fd44-a614-44cf-b9c6-259732e0f5ac", + "3495fd44-a614-44cf-b9c6-259732e0f5ac" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "299" + ], + "x-ms-correlation-request-id": [ + "f3739eeb-6750-4201-bbd9-3c3b7c23215d" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T162130Z:f3739eeb-6750-4201-bbd9-3c3b7c23215d" + ], + "Date": [ + "Mon, 16 May 2022 16:21:29 GMT" + ], + "Content-Length": [ + "847" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/1949f32e-b572-4ecd-833e-2d635ad7a793\",\r\n \"name\": \"1949f32e-b572-4ecd-833e-2d635ad7a793\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT32.9128837S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"Storage\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"File Share Name\": \"fs1\",\r\n \"Storage Account Name\": \"pstestsa8895\",\r\n \"Policy Name\": \"afspolicy1\"\r\n }\r\n },\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"ConfigureBackup\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-05-16T16:20:56.1688226Z\",\r\n \"endTime\": \"2022-05-16T16:21:29.0817063Z\",\r\n \"activityId\": \"3495fd44-a614-44cf-b9c6-259732e0f5ac\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/1949f32e-b572-4ecd-833e-2d635ad7a793?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy8xOTQ5ZjMyZS1iNTcyLTRlY2QtODMzZS0yZDYzNWFkN2E3OTM/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "573fad97-2beb-4e3b-bbee-eb3cb0446527" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.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": [ + "3a3a8241-4859-43a0-b960-fe1ac38c71b0" + ], + "x-ms-client-request-id": [ + "573fad97-2beb-4e3b-bbee-eb3cb0446527", + "573fad97-2beb-4e3b-bbee-eb3cb0446527" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "297" + ], + "x-ms-correlation-request-id": [ + "3a3a8241-4859-43a0-b960-fe1ac38c71b0" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T162133Z:3a3a8241-4859-43a0-b960-fe1ac38c71b0" + ], + "Date": [ + "Mon, 16 May 2022 16:21:32 GMT" + ], + "Content-Length": [ + "847" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/1949f32e-b572-4ecd-833e-2d635ad7a793\",\r\n \"name\": \"1949f32e-b572-4ecd-833e-2d635ad7a793\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT32.9128837S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"Storage\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"File Share Name\": \"fs1\",\r\n \"Storage Account Name\": \"pstestsa8895\",\r\n \"Policy Name\": \"afspolicy1\"\r\n }\r\n },\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"ConfigureBackup\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-05-16T16:20:56.1688226Z\",\r\n \"endTime\": \"2022-05-16T16:21:29.0817063Z\",\r\n \"activityId\": \"3495fd44-a614-44cf-b9c6-259732e0f5ac\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/1949f32e-b572-4ecd-833e-2d635ad7a793?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy8xOTQ5ZjMyZS1iNTcyLTRlY2QtODMzZS0yZDYzNWFkN2E3OTM/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3cdb3748-5d5d-4220-ae40-561df4ff91f5" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.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": [ + "d7283ab9-c393-4f6f-8fd7-4d3888df576b" + ], + "x-ms-client-request-id": [ + "3cdb3748-5d5d-4220-ae40-561df4ff91f5", + "3cdb3748-5d5d-4220-ae40-561df4ff91f5" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "296" + ], + "x-ms-correlation-request-id": [ + "d7283ab9-c393-4f6f-8fd7-4d3888df576b" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T162134Z:d7283ab9-c393-4f6f-8fd7-4d3888df576b" + ], + "Date": [ + "Mon, 16 May 2022 16:21:34 GMT" + ], + "Content-Length": [ + "847" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/1949f32e-b572-4ecd-833e-2d635ad7a793\",\r\n \"name\": \"1949f32e-b572-4ecd-833e-2d635ad7a793\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT32.9128837S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"Storage\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"File Share Name\": \"fs1\",\r\n \"Storage Account Name\": \"pstestsa8895\",\r\n \"Policy Name\": \"afspolicy1\"\r\n }\r\n },\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"ConfigureBackup\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-05-16T16:20:56.1688226Z\",\r\n \"endTime\": \"2022-05-16T16:21:29.0817063Z\",\r\n \"activityId\": \"3495fd44-a614-44cf-b9c6-259732e0f5ac\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupProtectedItems?$filter=backupManagementType%20eq%20'AzureStorage'%20and%20itemType%20eq%20'AzureFileShare'&api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwUHJvdGVjdGVkSXRlbXM/JGZpbHRlcj1iYWNrdXBNYW5hZ2VtZW50VHlwZSUyMGVxJTIwJ0F6dXJlU3RvcmFnZSclMjBhbmQlMjBpdGVtVHlwZSUyMGVxJTIwJ0F6dXJlRmlsZVNoYXJlJyZhcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "92b08e15-0078-4d4d-acb9-1981aaddb957" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "cf613ff1-e039-4fad-8451-0b00022d1ddb" + ], + "x-ms-client-request-id": [ + "92b08e15-0078-4d4d-acb9-1981aaddb957", + "92b08e15-0078-4d4d-acb9-1981aaddb957" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "299" + ], + "x-ms-correlation-request-id": [ + "cf613ff1-e039-4fad-8451-0b00022d1ddb" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T162131Z:cf613ff1-e039-4fad-8451-0b00022d1ddb" + ], + "Date": [ + "Mon, 16 May 2022 16:21:30 GMT" + ], + "Content-Length": [ + "1219" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;storage;pstestrg8895;pstestsa8895/protectedItems/AzureFileShare;698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959\",\r\n \"name\": \"AzureFileShare;698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems\",\r\n \"properties\": {\r\n \"kpisHealths\": {},\r\n \"friendlyName\": \"fs1\",\r\n \"protectionStatus\": \"Healthy\",\r\n \"protectionState\": \"IRPending\",\r\n \"lastBackupStatus\": \"IRPending\",\r\n \"protectedItemType\": \"AzureFileShareProtectedItem\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"workloadType\": \"AzureFileShare\",\r\n \"containerName\": \"StorageContainer;storage;pstestrg8895;pstestsa8895\",\r\n \"sourceResourceId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.storage/storageAccounts/pstestsa8895\",\r\n \"policyId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupPolicies/afspolicy1\",\r\n \"isArchiveEnabled\": false\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3Bstorage%3Bpstestrg8895%3Bpstestsa8895/protectedItems/AzureFileShare%3B698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959?$filter=expand%20eq%20'extendedinfo'&api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCc3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9wcm90ZWN0ZWRJdGVtcy9BenVyZUZpbGVTaGFyZSUzQjY5OGRmNTk1OTQ4ZTIzNTVmMmJiNzQ0YTQxY2YyNDVkNGJhMTI1NWQ5Njk5Y2MzYzJhZDFmNTA0NWUxNzc5NTk/JGZpbHRlcj1leHBhbmQlMjBlcSUyMCdleHRlbmRlZGluZm8nJmFwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "92b08e15-0078-4d4d-acb9-1981aaddb957" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "aa865ce8-7434-4ff0-986c-e6bd23434e38" + ], + "x-ms-client-request-id": [ + "92b08e15-0078-4d4d-acb9-1981aaddb957", + "92b08e15-0078-4d4d-acb9-1981aaddb957" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "299" + ], + "x-ms-correlation-request-id": [ + "aa865ce8-7434-4ff0-986c-e6bd23434e38" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T162132Z:aa865ce8-7434-4ff0-986c-e6bd23434e38" + ], + "Date": [ + "Mon, 16 May 2022 16:21:31 GMT" + ], + "Content-Length": [ + "1354" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;storage;pstestrg8895;pstestsa8895/protectedItems/AzureFileShare;698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959\",\r\n \"name\": \"AzureFileShare;698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems\",\r\n \"properties\": {\r\n \"kpisHealths\": {},\r\n \"friendlyName\": \"fs1\",\r\n \"protectionStatus\": \"Healthy\",\r\n \"protectionState\": \"IRPending\",\r\n \"lastBackupStatus\": \"IRPending\",\r\n \"extendedInfo\": {\r\n \"recoveryPointCount\": 0,\r\n \"policyState\": \"Consistent\",\r\n \"resourceState\": \"Active\",\r\n \"resourceStateSyncTime\": \"2022-05-16T16:21:28.6462483Z\"\r\n },\r\n \"protectedItemType\": \"AzureFileShareProtectedItem\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"workloadType\": \"AzureFileShare\",\r\n \"containerName\": \"StorageContainer;storage;pstestrg8895;pstestsa8895\",\r\n \"sourceResourceId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.storage/storageAccounts/pstestsa8895\",\r\n \"policyId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupPolicies/afspolicy1\",\r\n \"isArchiveEnabled\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs?$filter=operation%20eq%20''%20and%20startTime%20eq%20'2022-05-15%2004:21:33%20PM'%20and%20endTime%20eq%20'2022-05-16%2004:21:33%20PM'&api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icz8kZmlsdGVyPW9wZXJhdGlvbiUyMGVxJTIwJyclMjBhbmQlMjBzdGFydFRpbWUlMjBlcSUyMCcyMDIyLTA1LTE1JTIwMDQ6MjE6MzMlMjBQTSclMjBhbmQlMjBlbmRUaW1lJTIwZXElMjAnMjAyMi0wNS0xNiUyMDA0OjIxOjMzJTIwUE0nJmFwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0039eee7-e8dc-4076-b4dd-df8e17698d75" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.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": [ + "22f9d2ca-fe98-4019-90df-00c00aa54f8e" + ], + "x-ms-client-request-id": [ + "0039eee7-e8dc-4076-b4dd-df8e17698d75", + "0039eee7-e8dc-4076-b4dd-df8e17698d75" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "298" + ], + "x-ms-correlation-request-id": [ + "22f9d2ca-fe98-4019-90df-00c00aa54f8e" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T162133Z:22f9d2ca-fe98-4019-90df-00c00aa54f8e" + ], + "Date": [ + "Mon, 16 May 2022 16:21:32 GMT" + ], + "Content-Length": [ + "24303" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/1949f32e-b572-4ecd-833e-2d635ad7a793\",\r\n \"name\": \"1949f32e-b572-4ecd-833e-2d635ad7a793\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT32.9128837S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"Storage\",\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"ConfigureBackup\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-05-16T16:20:56.1688226Z\",\r\n \"endTime\": \"2022-05-16T16:21:29.0817063Z\",\r\n \"activityId\": \"3495fd44-a614-44cf-b9c6-259732e0f5ac\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/eca39789-46f9-4420-952f-cf6655906fd3\",\r\n \"name\": \"eca39789-46f9-4420-952f-cf6655906fd3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT11.1550398S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"Storage\",\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"pstestsa8895\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Register\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-05-16T16:20:35.175378Z\",\r\n \"endTime\": \"2022-05-16T16:20:46.3304178Z\",\r\n \"activityId\": \"3495fd44-a614-44cf-b9c6-259732e0f5ac\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/80cd0458-bccb-48ac-9b06-f500658d1cc6\",\r\n \"name\": \"80cd0458-bccb-48ac-9b06-f500658d1cc6\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT23.8488589S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"Storage\",\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"pstestsa8895\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"UnRegister\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-05-16T16:16:41.1139029Z\",\r\n \"endTime\": \"2022-05-16T16:17:04.9627618Z\",\r\n \"activityId\": \"ba873114-3421-47e8-819f-dfcc0804f6f9\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/36b2b11b-3412-4e47-a0a8-c5e60b2bf87b\",\r\n \"name\": \"36b2b11b-3412-4e47-a0a8-c5e60b2bf87b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT21.7936461S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"Storage\",\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"DeleteBackupData\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-05-16T16:16:16.5428763Z\",\r\n \"endTime\": \"2022-05-16T16:16:38.3365224Z\",\r\n \"activityId\": \"d3cc3871-20de-46a0-af46-a46c57b19417\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/aa81b692-e218-414e-b213-3ec4d943bdbc\",\r\n \"name\": \"aa81b692-e218-414e-b213-3ec4d943bdbc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"duration\": \"PT32.1682148S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-05-16T16:15:10.6525425Z\",\r\n \"endTime\": \"2022-05-16T16:15:42.8207573Z\",\r\n \"activityId\": \"57aec408-aec2-4f48-b16d-5e219ca4d292\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/dc1ab121-d353-452a-8425-f6323bacccd5\",\r\n \"name\": \"dc1ab121-d353-452a-8425-f6323bacccd5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"duration\": \"PT32.7085456S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-05-16T16:14:04.7970599Z\",\r\n \"endTime\": \"2022-05-16T16:14:37.5056055Z\",\r\n \"activityId\": \"3c145b4f-4a12-4ba6-9964-2936d8bc94e4\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/1d4dca3f-981a-48d3-b43d-a696efa85068\",\r\n \"name\": \"1d4dca3f-981a-48d3-b43d-a696efa85068\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"duration\": \"PT32.8787453S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-05-16T16:12:59.2449561Z\",\r\n \"endTime\": \"2022-05-16T16:13:32.1237014Z\",\r\n \"activityId\": \"fd770b01-8b83-4071-aad7-cf86d08a24cd\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/db848432-40e4-4f16-a776-94ef9bcee00d\",\r\n \"name\": \"db848432-40e4-4f16-a776-94ef9bcee00d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"duration\": \"PT45.7601296S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-05-16T16:11:54.379616Z\",\r\n \"endTime\": \"2022-05-16T16:12:40.1397456Z\",\r\n \"activityId\": \"0624898d-8cee-4015-bfda-78fbce0120fa\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/7545d00f-cbd6-40f9-8617-1163682b8dad\",\r\n \"name\": \"7545d00f-cbd6-40f9-8617-1163682b8dad\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"duration\": \"PT33.092223S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-05-16T16:10:48.6038834Z\",\r\n \"endTime\": \"2022-05-16T16:11:21.6961064Z\",\r\n \"activityId\": \"91ca1cd7-c0c8-483b-b1ed-64f85417e18a\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/f1723a12-4e8e-4ecd-aad4-df22fefc41fe\",\r\n \"name\": \"f1723a12-4e8e-4ecd-aad4-df22fefc41fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT3.2333372S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"MicrosoftStorage\",\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-05-16T16:10:38.6329612Z\",\r\n \"endTime\": \"2022-05-16T16:10:41.8662984Z\",\r\n \"activityId\": \"2721bcfc-6b0f-4564-91a3-42f7de103707\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/5b75fd41-2203-49ef-a8cd-b5fb969fa522\",\r\n \"name\": \"5b75fd41-2203-49ef-a8cd-b5fb969fa522\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT42.8868836S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"Storage\",\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"ConfigureBackup\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-05-16T16:09:47.935131Z\",\r\n \"endTime\": \"2022-05-16T16:10:30.8220146Z\",\r\n \"activityId\": \"a8f88a84-d257-4df1-b7d8-425088904579\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/ab3822c9-9576-4d0e-a4be-533e451bcdd0\",\r\n \"name\": \"ab3822c9-9576-4d0e-a4be-533e451bcdd0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT11.1937872S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"Storage\",\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"pstestsa8895\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Register\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-05-16T16:09:20.5365607Z\",\r\n \"endTime\": \"2022-05-16T16:09:31.7303479Z\",\r\n \"activityId\": \"a8f88a84-d257-4df1-b7d8-425088904579\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/6615afe3-0a51-474c-9858-e76a30075a2f\",\r\n \"name\": \"6615afe3-0a51-474c-9858-e76a30075a2f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT22.4648741S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"Storage\",\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"pstestsa8895\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"UnRegister\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-05-16T16:08:42.2297867Z\",\r\n \"endTime\": \"2022-05-16T16:09:04.6946608Z\",\r\n \"activityId\": \"96a21cb9-a0c4-4316-8444-4cce83a5da9c\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/d8c7bc77-46c9-4893-919e-0550265e5c6c\",\r\n \"name\": \"d8c7bc77-46c9-4893-919e-0550265e5c6c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT21.3479925S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"Storage\",\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"DeleteBackupData\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-05-16T16:08:17.7064574Z\",\r\n \"endTime\": \"2022-05-16T16:08:39.0544499Z\",\r\n \"activityId\": \"a1683137-e468-4d8f-bb2e-1f2f89a0205c\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/20de1c1b-1c32-4caf-b9ac-9307e1d8f874\",\r\n \"name\": \"20de1c1b-1c32-4caf-b9ac-9307e1d8f874\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT32.3379696S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"Storage\",\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"ConfigureBackup\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-05-16T16:07:40.1564999Z\",\r\n \"endTime\": \"2022-05-16T16:08:12.4944695Z\",\r\n \"activityId\": \"3204ff63-e722-4e5d-a1a9-38dc7c5ddc96\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/54107bf8-5161-4b8f-83cb-42f8709ad25f\",\r\n \"name\": \"54107bf8-5161-4b8f-83cb-42f8709ad25f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT41.8923475S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"Storage\",\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"ConfigureBackup\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-05-16T16:06:48.7466287Z\",\r\n \"endTime\": \"2022-05-16T16:07:30.6389762Z\",\r\n \"activityId\": \"0efe7a34-5f1a-41d2-87e7-dd3aa25b052b\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/ed714670-5f1b-4448-b048-ec358fa11d27\",\r\n \"name\": \"ed714670-5f1b-4448-b048-ec358fa11d27\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT11.8502017S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"Storage\",\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"pstestsa8895\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Register\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-05-16T16:06:29.4326866Z\",\r\n \"endTime\": \"2022-05-16T16:06:41.2828883Z\",\r\n \"activityId\": \"0efe7a34-5f1a-41d2-87e7-dd3aa25b052b\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/b93b24f9-6a6a-41b6-852b-d8d5a941e2b1\",\r\n \"name\": \"b93b24f9-6a6a-41b6-852b-d8d5a941e2b1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT22.4278695S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"Storage\",\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"pstestsa8895\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"UnRegister\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-05-16T16:05:52.3469832Z\",\r\n \"endTime\": \"2022-05-16T16:06:14.7748527Z\",\r\n \"activityId\": \"9443324c-93e0-47f9-a9db-da305d49c589\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/02580b0e-2339-4ffa-aea1-82e2018e58c9\",\r\n \"name\": \"02580b0e-2339-4ffa-aea1-82e2018e58c9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT11.9518238S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"Storage\",\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"DeleteBackupData\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-05-16T16:05:33.8553609Z\",\r\n \"endTime\": \"2022-05-16T16:05:45.8071847Z\",\r\n \"activityId\": \"c01fbcb7-97ce-4515-94cf-651d23e79b31\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/dd8c8ceb-f455-4994-94e4-51dad2c1e548\",\r\n \"name\": \"dd8c8ceb-f455-4994-94e4-51dad2c1e548\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT2.1561885S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"MicrosoftStorage\",\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-05-16T16:04:59.7478141Z\",\r\n \"endTime\": \"2022-05-16T16:05:01.9040026Z\",\r\n \"activityId\": \"f2025029-bbc3-4768-b9e4-1511456350b1\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/ba7830ae-f040-47e1-b8b5-b978c251dca8\",\r\n \"name\": \"ba7830ae-f040-47e1-b8b5-b978c251dca8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT41.9274137S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"Storage\",\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"ConfigureBackup\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-05-16T16:04:12.9402938Z\",\r\n \"endTime\": \"2022-05-16T16:04:54.8677075Z\",\r\n \"activityId\": \"a8a5427d-d0da-49e9-b70f-23d8fc1d4ab1\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/28b12999-eb96-4ce4-ac06-397297d24084\",\r\n \"name\": \"28b12999-eb96-4ce4-ac06-397297d24084\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT10.9900535S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"Storage\",\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"pstestsa8895\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Register\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-05-16T16:03:51.8693518Z\",\r\n \"endTime\": \"2022-05-16T16:04:02.8594053Z\",\r\n \"activityId\": \"a8a5427d-d0da-49e9-b70f-23d8fc1d4ab1\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/3a9827dc-310b-4404-b108-6fc98d7b5046\",\r\n \"name\": \"3a9827dc-310b-4404-b108-6fc98d7b5046\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT21.9415471S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"Storage\",\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"pstestsa8895\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"UnRegister\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-05-16T15:41:39.2922047Z\",\r\n \"endTime\": \"2022-05-16T15:42:01.2337518Z\",\r\n \"activityId\": \"b13eb5cf-0216-4f94-80d7-72c96d270f64\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/3d2fdb9c-af98-458d-8c7f-af9e3bade4d5\",\r\n \"name\": \"3d2fdb9c-af98-458d-8c7f-af9e3bade4d5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT11.8207946S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"Storage\",\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"DeleteBackupData\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-05-16T15:41:25.5289733Z\",\r\n \"endTime\": \"2022-05-16T15:41:37.3497679Z\",\r\n \"activityId\": \"398c1e97-1e96-4e46-8414-970f532af784\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e7e468c3-5f49-4bba-937c-665aaccb7908\",\r\n \"name\": \"e7e468c3-5f49-4bba-937c-665aaccb7908\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT42.5795149S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"Storage\",\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"ConfigureBackup\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-05-16T15:40:32.342656Z\",\r\n \"endTime\": \"2022-05-16T15:41:14.9221709Z\",\r\n \"activityId\": \"25dd5578-ff1a-4bc5-8226-b46696054475\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/ea4b9f92-4f3a-4043-a655-b82dc686f233\",\r\n \"name\": \"ea4b9f92-4f3a-4043-a655-b82dc686f233\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT13.3602465S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"Storage\",\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"pstestsa8895\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Register\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-05-16T15:40:12.4257211Z\",\r\n \"endTime\": \"2022-05-16T15:40:25.7859676Z\",\r\n \"activityId\": \"25dd5578-ff1a-4bc5-8226-b46696054475\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/2d625e48-6862-4b90-9a0c-ec643effe1a2\",\r\n \"name\": \"2d625e48-6862-4b90-9a0c-ec643effe1a2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT22.6500174S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"Storage\",\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"pstestsa8895\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"UnRegister\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-05-16T15:39:34.8327642Z\",\r\n \"endTime\": \"2022-05-16T15:39:57.4827816Z\",\r\n \"activityId\": \"fb0226d4-1bd5-4e75-887d-1f3495003f41\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/6dfd01fc-789f-490f-9bdd-fdf4ef407136\",\r\n \"name\": \"6dfd01fc-789f-490f-9bdd-fdf4ef407136\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT21.5356658S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"Storage\",\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"DeleteBackupData\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-05-16T15:39:10.8836722Z\",\r\n \"endTime\": \"2022-05-16T15:39:32.419338Z\",\r\n \"activityId\": \"1a26be24-7700-401a-9a76-67079a5f06ac\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/c1c539cf-b399-4a31-839c-c246999fbb4d\",\r\n \"name\": \"c1c539cf-b399-4a31-839c-c246999fbb4d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT34.0089341S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"Storage\",\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"ConfigureBackup\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-05-16T15:38:30.0656373Z\",\r\n \"endTime\": \"2022-05-16T15:39:04.0745714Z\",\r\n \"activityId\": \"f25f9579-d774-488b-b0d1-c6a4280c455e\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/0c080175-50a3-4f22-a95f-7a7fee009850\",\r\n \"name\": \"0c080175-50a3-4f22-a95f-7a7fee009850\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT13.040123S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"Storage\",\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"pstestsa8895\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Register\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-05-16T15:38:04.8606404Z\",\r\n \"endTime\": \"2022-05-16T15:38:17.9007634Z\",\r\n \"activityId\": \"f25f9579-d774-488b-b0d1-c6a4280c455e\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/ee51cce2-20bc-426f-b676-71799a45cb37\",\r\n \"name\": \"ee51cce2-20bc-426f-b676-71799a45cb37\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT34.8024662S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"Storage\",\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"pstestsa8895\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"UnRegister\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-05-16T15:34:58.5265234Z\",\r\n \"endTime\": \"2022-05-16T15:35:33.3289896Z\",\r\n \"activityId\": \"0358961b-b7b9-44c6-bf04-ec1dc3248c83\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/8bef072b-c56b-4123-8c14-0369184641bf\",\r\n \"name\": \"8bef072b-c56b-4123-8c14-0369184641bf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT22.369743S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"Storage\",\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"DeleteBackupData\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-05-16T15:34:33.9302828Z\",\r\n \"endTime\": \"2022-05-16T15:34:56.3000258Z\",\r\n \"activityId\": \"277f52a0-5b87-4429-8f3b-bfaecde047bc\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/7233e37c-bdcd-4e34-8f65-8f7d13366141\",\r\n \"name\": \"7233e37c-bdcd-4e34-8f65-8f7d13366141\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT33.5924426S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"Storage\",\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"ConfigureBackup\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-05-16T15:33:44.4505291Z\",\r\n \"endTime\": \"2022-05-16T15:34:18.0429717Z\",\r\n \"activityId\": \"a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e202b571-e59b-476a-be2f-c97bda562ec4\",\r\n \"name\": \"e202b571-e59b-476a-be2f-c97bda562ec4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT25.9778645S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"Storage\",\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"pstestsa8895\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Register\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-05-16T15:33:14.468951Z\",\r\n \"endTime\": \"2022-05-16T15:33:40.4468155Z\",\r\n \"activityId\": \"a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f\"\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/eca39789-46f9-4420-952f-cf6655906fd3?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lY2EzOTc4OS00NmY5LTQ0MjAtOTUyZi1jZjY2NTU5MDZmZDM/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "241dbc1e-449a-4b88-9e68-c7fbe1545e51" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.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": [ + "aa617504-0679-4b0f-9d53-4a1459482cfc" + ], + "x-ms-client-request-id": [ + "241dbc1e-449a-4b88-9e68-c7fbe1545e51", + "241dbc1e-449a-4b88-9e68-c7fbe1545e51" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "295" + ], + "x-ms-correlation-request-id": [ + "aa617504-0679-4b0f-9d53-4a1459482cfc" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T162134Z:aa617504-0679-4b0f-9d53-4a1459482cfc" + ], + "Date": [ + "Mon, 16 May 2022 16:21:34 GMT" + ], + "Content-Length": [ + "797" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/eca39789-46f9-4420-952f-cf6655906fd3\",\r\n \"name\": \"eca39789-46f9-4420-952f-cf6655906fd3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT11.1550398S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"Storage\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Storage Account Name\": \"pstestsa8895\"\r\n }\r\n },\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"pstestsa8895\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Register\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-05-16T16:20:35.175378Z\",\r\n \"endTime\": \"2022-05-16T16:20:46.3304178Z\",\r\n \"activityId\": \"3495fd44-a614-44cf-b9c6-259732e0f5ac\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/eca39789-46f9-4420-952f-cf6655906fd3?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lY2EzOTc4OS00NmY5LTQ0MjAtOTUyZi1jZjY2NTU5MDZmZDM/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "140b7d5a-3e77-4a8c-b4fc-d35b95a75883" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.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": [ + "a9c21bb1-9593-4cde-8db5-e552e06ac971" + ], + "x-ms-client-request-id": [ + "140b7d5a-3e77-4a8c-b4fc-d35b95a75883", + "140b7d5a-3e77-4a8c-b4fc-d35b95a75883" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "294" + ], + "x-ms-correlation-request-id": [ + "a9c21bb1-9593-4cde-8db5-e552e06ac971" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T162135Z:a9c21bb1-9593-4cde-8db5-e552e06ac971" + ], + "Date": [ + "Mon, 16 May 2022 16:21:35 GMT" + ], + "Content-Length": [ + "797" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/eca39789-46f9-4420-952f-cf6655906fd3\",\r\n \"name\": \"eca39789-46f9-4420-952f-cf6655906fd3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT11.1550398S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"Storage\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Storage Account Name\": \"pstestsa8895\"\r\n }\r\n },\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"pstestsa8895\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Register\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-05-16T16:20:35.175378Z\",\r\n \"endTime\": \"2022-05-16T16:20:46.3304178Z\",\r\n \"activityId\": \"3495fd44-a614-44cf-b9c6-259732e0f5ac\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/80cd0458-bccb-48ac-9b06-f500658d1cc6?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy84MGNkMDQ1OC1iY2NiLTQ4YWMtOWIwNi1mNTAwNjU4ZDFjYzY/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "69d60e36-f3b0-46d2-8389-3582e3fe407e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.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": [ + "1e350c0e-8fe7-4402-859c-6eb6ff06ae97" + ], + "x-ms-client-request-id": [ + "69d60e36-f3b0-46d2-8389-3582e3fe407e", + "69d60e36-f3b0-46d2-8389-3582e3fe407e" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "293" + ], + "x-ms-correlation-request-id": [ + "1e350c0e-8fe7-4402-859c-6eb6ff06ae97" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T162135Z:1e350c0e-8fe7-4402-859c-6eb6ff06ae97" + ], + "Date": [ + "Mon, 16 May 2022 16:21:35 GMT" + ], + "Content-Length": [ + "800" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/80cd0458-bccb-48ac-9b06-f500658d1cc6\",\r\n \"name\": \"80cd0458-bccb-48ac-9b06-f500658d1cc6\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT23.8488589S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"Storage\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Storage Account Name\": \"pstestsa8895\"\r\n }\r\n },\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"pstestsa8895\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"UnRegister\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-05-16T16:16:41.1139029Z\",\r\n \"endTime\": \"2022-05-16T16:17:04.9627618Z\",\r\n \"activityId\": \"ba873114-3421-47e8-819f-dfcc0804f6f9\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/80cd0458-bccb-48ac-9b06-f500658d1cc6?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy84MGNkMDQ1OC1iY2NiLTQ4YWMtOWIwNi1mNTAwNjU4ZDFjYzY/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c5ff4d0c-30bb-4c3c-9475-911833a63429" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.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": [ + "a3d6809c-db8d-4555-8f76-f15749acfb5d" + ], + "x-ms-client-request-id": [ + "c5ff4d0c-30bb-4c3c-9475-911833a63429", + "c5ff4d0c-30bb-4c3c-9475-911833a63429" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "292" + ], + "x-ms-correlation-request-id": [ + "a3d6809c-db8d-4555-8f76-f15749acfb5d" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T162136Z:a3d6809c-db8d-4555-8f76-f15749acfb5d" + ], + "Date": [ + "Mon, 16 May 2022 16:21:36 GMT" + ], + "Content-Length": [ + "800" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/80cd0458-bccb-48ac-9b06-f500658d1cc6\",\r\n \"name\": \"80cd0458-bccb-48ac-9b06-f500658d1cc6\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT23.8488589S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"Storage\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Storage Account Name\": \"pstestsa8895\"\r\n }\r\n },\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"pstestsa8895\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"UnRegister\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-05-16T16:16:41.1139029Z\",\r\n \"endTime\": \"2022-05-16T16:17:04.9627618Z\",\r\n \"activityId\": \"ba873114-3421-47e8-819f-dfcc0804f6f9\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/36b2b11b-3412-4e47-a0a8-c5e60b2bf87b?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy8zNmIyYjExYi0zNDEyLTRlNDctYTBhOC1jNWU2MGIyYmY4N2I/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6b9da11a-9d5a-4c6b-8fc8-23b82a2d20fe" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.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": [ + "54e20ee6-bd26-49bb-b101-bb4f90dff0ff" + ], + "x-ms-client-request-id": [ + "6b9da11a-9d5a-4c6b-8fc8-23b82a2d20fe", + "6b9da11a-9d5a-4c6b-8fc8-23b82a2d20fe" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "291" + ], + "x-ms-correlation-request-id": [ + "54e20ee6-bd26-49bb-b101-bb4f90dff0ff" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T162136Z:54e20ee6-bd26-49bb-b101-bb4f90dff0ff" + ], + "Date": [ + "Mon, 16 May 2022 16:21:36 GMT" + ], + "Content-Length": [ + "821" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/36b2b11b-3412-4e47-a0a8-c5e60b2bf87b\",\r\n \"name\": \"36b2b11b-3412-4e47-a0a8-c5e60b2bf87b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT21.7936461S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"Storage\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"File Share Name\": \"fs1\",\r\n \"Storage Account Name\": \"pstestsa8895\"\r\n }\r\n },\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"DeleteBackupData\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-05-16T16:16:16.5428763Z\",\r\n \"endTime\": \"2022-05-16T16:16:38.3365224Z\",\r\n \"activityId\": \"d3cc3871-20de-46a0-af46-a46c57b19417\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/36b2b11b-3412-4e47-a0a8-c5e60b2bf87b?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy8zNmIyYjExYi0zNDEyLTRlNDctYTBhOC1jNWU2MGIyYmY4N2I/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "91d7597e-ea4d-4249-a32e-a9350f61f591" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.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": [ + "acd48499-98ee-484b-9e2f-757a665a206a" + ], + "x-ms-client-request-id": [ + "91d7597e-ea4d-4249-a32e-a9350f61f591", + "91d7597e-ea4d-4249-a32e-a9350f61f591" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "290" + ], + "x-ms-correlation-request-id": [ + "acd48499-98ee-484b-9e2f-757a665a206a" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T162137Z:acd48499-98ee-484b-9e2f-757a665a206a" + ], + "Date": [ + "Mon, 16 May 2022 16:21:37 GMT" + ], + "Content-Length": [ + "821" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/36b2b11b-3412-4e47-a0a8-c5e60b2bf87b\",\r\n \"name\": \"36b2b11b-3412-4e47-a0a8-c5e60b2bf87b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT21.7936461S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"Storage\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"File Share Name\": \"fs1\",\r\n \"Storage Account Name\": \"pstestsa8895\"\r\n }\r\n },\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"DeleteBackupData\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-05-16T16:16:16.5428763Z\",\r\n \"endTime\": \"2022-05-16T16:16:38.3365224Z\",\r\n \"activityId\": \"d3cc3871-20de-46a0-af46-a46c57b19417\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/aa81b692-e218-414e-b213-3ec4d943bdbc?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9hYTgxYjY5Mi1lMjE4LTQxNGUtYjIxMy0zZWM0ZDk0M2JkYmM/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "941fa0db-e876-4c42-9c1a-45755008263f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.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": [ + "e0a4df57-cc4f-4dd9-8e0c-4e55d9d272f4" + ], + "x-ms-client-request-id": [ + "941fa0db-e876-4c42-9c1a-45755008263f", + "941fa0db-e876-4c42-9c1a-45755008263f" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "289" + ], + "x-ms-correlation-request-id": [ + "e0a4df57-cc4f-4dd9-8e0c-4e55d9d272f4" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T162138Z:e0a4df57-cc4f-4dd9-8e0c-4e55d9d272f4" + ], + "Date": [ + "Mon, 16 May 2022 16:21:38 GMT" + ], + "Content-Length": [ + "1114" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/aa81b692-e218-414e-b213-3ec4d943bdbc\",\r\n \"name\": \"aa81b692-e218-414e-b213-3ec4d943bdbc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"duration\": \"PT32.1682148S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"RestoreRecoveryPointTime\": \"5/16/2022 4:10:40 PM\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"1\",\r\n \"Number Of Restored Files\": \"3\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-05-16T16:15:10.6525425Z\",\r\n \"endTime\": \"2022-05-16T16:15:42.8207573Z\",\r\n \"activityId\": \"57aec408-aec2-4f48-b16d-5e219ca4d292\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/aa81b692-e218-414e-b213-3ec4d943bdbc?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9hYTgxYjY5Mi1lMjE4LTQxNGUtYjIxMy0zZWM0ZDk0M2JkYmM/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "014fedd7-48d0-422a-972d-b73792b44ac5" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.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": [ + "6016b7fe-a748-4bfe-93aa-98cc1a28f101" + ], + "x-ms-client-request-id": [ + "014fedd7-48d0-422a-972d-b73792b44ac5", + "014fedd7-48d0-422a-972d-b73792b44ac5" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "288" + ], + "x-ms-correlation-request-id": [ + "6016b7fe-a748-4bfe-93aa-98cc1a28f101" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T162138Z:6016b7fe-a748-4bfe-93aa-98cc1a28f101" + ], + "Date": [ + "Mon, 16 May 2022 16:21:38 GMT" + ], + "Content-Length": [ + "1114" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/aa81b692-e218-414e-b213-3ec4d943bdbc\",\r\n \"name\": \"aa81b692-e218-414e-b213-3ec4d943bdbc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"duration\": \"PT32.1682148S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"RestoreRecoveryPointTime\": \"5/16/2022 4:10:40 PM\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"1\",\r\n \"Number Of Restored Files\": \"3\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-05-16T16:15:10.6525425Z\",\r\n \"endTime\": \"2022-05-16T16:15:42.8207573Z\",\r\n \"activityId\": \"57aec408-aec2-4f48-b16d-5e219ca4d292\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/dc1ab121-d353-452a-8425-f6323bacccd5?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9kYzFhYjEyMS1kMzUzLTQ1MmEtODQyNS1mNjMyM2JhY2NjZDU/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a0cf299f-a735-416f-9c7b-8a281ce7e430" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.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": [ + "8bb7e051-cba8-4981-b4a8-8f5daedac1b6" + ], + "x-ms-client-request-id": [ + "a0cf299f-a735-416f-9c7b-8a281ce7e430", + "a0cf299f-a735-416f-9c7b-8a281ce7e430" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "287" + ], + "x-ms-correlation-request-id": [ + "8bb7e051-cba8-4981-b4a8-8f5daedac1b6" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T162139Z:8bb7e051-cba8-4981-b4a8-8f5daedac1b6" + ], + "Date": [ + "Mon, 16 May 2022 16:21:39 GMT" + ], + "Content-Length": [ + "1114" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/dc1ab121-d353-452a-8425-f6323bacccd5\",\r\n \"name\": \"dc1ab121-d353-452a-8425-f6323bacccd5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"duration\": \"PT32.7085456S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"RestoreRecoveryPointTime\": \"5/16/2022 4:10:40 PM\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"1\",\r\n \"Number Of Restored Files\": \"1\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-05-16T16:14:04.7970599Z\",\r\n \"endTime\": \"2022-05-16T16:14:37.5056055Z\",\r\n \"activityId\": \"3c145b4f-4a12-4ba6-9964-2936d8bc94e4\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/dc1ab121-d353-452a-8425-f6323bacccd5?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9kYzFhYjEyMS1kMzUzLTQ1MmEtODQyNS1mNjMyM2JhY2NjZDU/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d24a9aa8-66eb-413e-9347-9f2c7976a2b4" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.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": [ + "1f9ea9bc-564a-49e7-9e23-34aabada81a8" + ], + "x-ms-client-request-id": [ + "d24a9aa8-66eb-413e-9347-9f2c7976a2b4", + "d24a9aa8-66eb-413e-9347-9f2c7976a2b4" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "286" + ], + "x-ms-correlation-request-id": [ + "1f9ea9bc-564a-49e7-9e23-34aabada81a8" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T162139Z:1f9ea9bc-564a-49e7-9e23-34aabada81a8" + ], + "Date": [ + "Mon, 16 May 2022 16:21:39 GMT" + ], + "Content-Length": [ + "1114" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/dc1ab121-d353-452a-8425-f6323bacccd5\",\r\n \"name\": \"dc1ab121-d353-452a-8425-f6323bacccd5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"duration\": \"PT32.7085456S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"RestoreRecoveryPointTime\": \"5/16/2022 4:10:40 PM\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"1\",\r\n \"Number Of Restored Files\": \"1\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-05-16T16:14:04.7970599Z\",\r\n \"endTime\": \"2022-05-16T16:14:37.5056055Z\",\r\n \"activityId\": \"3c145b4f-4a12-4ba6-9964-2936d8bc94e4\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/1d4dca3f-981a-48d3-b43d-a696efa85068?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy8xZDRkY2EzZi05ODFhLTQ4ZDMtYjQzZC1hNjk2ZWZhODUwNjg/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "907c16cb-9e0a-414e-b76d-caa193311ece" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.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": [ + "f1cfc2a0-50b3-4c18-8f98-c6e1d0168d53" + ], + "x-ms-client-request-id": [ + "907c16cb-9e0a-414e-b76d-caa193311ece", + "907c16cb-9e0a-414e-b76d-caa193311ece" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "285" + ], + "x-ms-correlation-request-id": [ + "f1cfc2a0-50b3-4c18-8f98-c6e1d0168d53" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T162140Z:f1cfc2a0-50b3-4c18-8f98-c6e1d0168d53" + ], + "Date": [ + "Mon, 16 May 2022 16:21:40 GMT" + ], + "Content-Length": [ + "1219" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/1d4dca3f-981a-48d3-b43d-a696efa85068\",\r\n \"name\": \"1d4dca3f-981a-48d3-b43d-a696efa85068\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"duration\": \"PT32.8787453S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"RestoreRecoveryPointTime\": \"5/16/2022 4:10:40 PM\",\r\n \"Target File Share Name\": \"fs1\",\r\n \"Target Storage Account Name\": \"pstesttargetsa8896\",\r\n \"Job Type\": \"Recover to an alternate file share\",\r\n \"RestoreDestination\": \"pstesttargetsa8896/fs1/pstestfolder3rty7d7s\",\r\n \"Data Transferred (in MB)\": \"1\",\r\n \"Number Of Restored Files\": \"3\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-05-16T16:12:59.2449561Z\",\r\n \"endTime\": \"2022-05-16T16:13:32.1237014Z\",\r\n \"activityId\": \"fd770b01-8b83-4071-aad7-cf86d08a24cd\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/1d4dca3f-981a-48d3-b43d-a696efa85068?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy8xZDRkY2EzZi05ODFhLTQ4ZDMtYjQzZC1hNjk2ZWZhODUwNjg/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e1faaba1-2836-4a8d-8a58-57972612167c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.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": [ + "1d26b1f2-5318-40da-8740-9e08d92d1b38" + ], + "x-ms-client-request-id": [ + "e1faaba1-2836-4a8d-8a58-57972612167c", + "e1faaba1-2836-4a8d-8a58-57972612167c" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "284" + ], + "x-ms-correlation-request-id": [ + "1d26b1f2-5318-40da-8740-9e08d92d1b38" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T162140Z:1d26b1f2-5318-40da-8740-9e08d92d1b38" + ], + "Date": [ + "Mon, 16 May 2022 16:21:40 GMT" + ], + "Content-Length": [ + "1219" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/1d4dca3f-981a-48d3-b43d-a696efa85068\",\r\n \"name\": \"1d4dca3f-981a-48d3-b43d-a696efa85068\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"duration\": \"PT32.8787453S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"RestoreRecoveryPointTime\": \"5/16/2022 4:10:40 PM\",\r\n \"Target File Share Name\": \"fs1\",\r\n \"Target Storage Account Name\": \"pstesttargetsa8896\",\r\n \"Job Type\": \"Recover to an alternate file share\",\r\n \"RestoreDestination\": \"pstesttargetsa8896/fs1/pstestfolder3rty7d7s\",\r\n \"Data Transferred (in MB)\": \"1\",\r\n \"Number Of Restored Files\": \"3\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-05-16T16:12:59.2449561Z\",\r\n \"endTime\": \"2022-05-16T16:13:32.1237014Z\",\r\n \"activityId\": \"fd770b01-8b83-4071-aad7-cf86d08a24cd\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/db848432-40e4-4f16-a776-94ef9bcee00d?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9kYjg0ODQzMi00MGU0LTRmMTYtYTc3Ni05NGVmOWJjZWUwMGQ/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a6b3c2a9-9d91-44e2-b3fc-fe91eb79fb71" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.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": [ + "10151fa8-cadb-46f8-afab-e628e7c05a08" + ], + "x-ms-client-request-id": [ + "a6b3c2a9-9d91-44e2-b3fc-fe91eb79fb71", + "a6b3c2a9-9d91-44e2-b3fc-fe91eb79fb71" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "283" + ], + "x-ms-correlation-request-id": [ + "10151fa8-cadb-46f8-afab-e628e7c05a08" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T162141Z:10151fa8-cadb-46f8-afab-e628e7c05a08" + ], + "Date": [ + "Mon, 16 May 2022 16:21:41 GMT" + ], + "Content-Length": [ + "1218" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/db848432-40e4-4f16-a776-94ef9bcee00d\",\r\n \"name\": \"db848432-40e4-4f16-a776-94ef9bcee00d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"duration\": \"PT45.7601296S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"RestoreRecoveryPointTime\": \"5/16/2022 4:10:40 PM\",\r\n \"Target File Share Name\": \"fs1\",\r\n \"Target Storage Account Name\": \"pstesttargetsa8896\",\r\n \"Job Type\": \"Recover to an alternate file share\",\r\n \"RestoreDestination\": \"pstesttargetsa8896/fs1/pstestfolder3rty7d7s\",\r\n \"Data Transferred (in MB)\": \"1\",\r\n \"Number Of Restored Files\": \"1\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-05-16T16:11:54.379616Z\",\r\n \"endTime\": \"2022-05-16T16:12:40.1397456Z\",\r\n \"activityId\": \"0624898d-8cee-4015-bfda-78fbce0120fa\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/db848432-40e4-4f16-a776-94ef9bcee00d?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9kYjg0ODQzMi00MGU0LTRmMTYtYTc3Ni05NGVmOWJjZWUwMGQ/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "147bbbf0-94fc-4972-848c-52fe5329c6e2" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.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": [ + "d99b0b03-c6aa-4372-a9bf-247b1c3a49b3" + ], + "x-ms-client-request-id": [ + "147bbbf0-94fc-4972-848c-52fe5329c6e2", + "147bbbf0-94fc-4972-848c-52fe5329c6e2" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "282" + ], + "x-ms-correlation-request-id": [ + "d99b0b03-c6aa-4372-a9bf-247b1c3a49b3" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T162142Z:d99b0b03-c6aa-4372-a9bf-247b1c3a49b3" + ], + "Date": [ + "Mon, 16 May 2022 16:21:41 GMT" + ], + "Content-Length": [ + "1218" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/db848432-40e4-4f16-a776-94ef9bcee00d\",\r\n \"name\": \"db848432-40e4-4f16-a776-94ef9bcee00d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"duration\": \"PT45.7601296S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"RestoreRecoveryPointTime\": \"5/16/2022 4:10:40 PM\",\r\n \"Target File Share Name\": \"fs1\",\r\n \"Target Storage Account Name\": \"pstesttargetsa8896\",\r\n \"Job Type\": \"Recover to an alternate file share\",\r\n \"RestoreDestination\": \"pstesttargetsa8896/fs1/pstestfolder3rty7d7s\",\r\n \"Data Transferred (in MB)\": \"1\",\r\n \"Number Of Restored Files\": \"1\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-05-16T16:11:54.379616Z\",\r\n \"endTime\": \"2022-05-16T16:12:40.1397456Z\",\r\n \"activityId\": \"0624898d-8cee-4015-bfda-78fbce0120fa\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/7545d00f-cbd6-40f9-8617-1163682b8dad?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy83NTQ1ZDAwZi1jYmQ2LTQwZjktODYxNy0xMTYzNjgyYjhkYWQ/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "71eb876c-f246-4158-b2cf-829704bce90f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.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": [ + "66b5f509-2ce0-4a17-b126-930bb6b9f11f" + ], + "x-ms-client-request-id": [ + "71eb876c-f246-4158-b2cf-829704bce90f", + "71eb876c-f246-4158-b2cf-829704bce90f" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "281" + ], + "x-ms-correlation-request-id": [ + "66b5f509-2ce0-4a17-b126-930bb6b9f11f" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T162142Z:66b5f509-2ce0-4a17-b126-930bb6b9f11f" + ], + "Date": [ + "Mon, 16 May 2022 16:21:42 GMT" + ], + "Content-Length": [ + "1113" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/7545d00f-cbd6-40f9-8617-1163682b8dad\",\r\n \"name\": \"7545d00f-cbd6-40f9-8617-1163682b8dad\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"duration\": \"PT33.092223S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"RestoreRecoveryPointTime\": \"5/16/2022 4:10:40 PM\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"2\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-05-16T16:10:48.6038834Z\",\r\n \"endTime\": \"2022-05-16T16:11:21.6961064Z\",\r\n \"activityId\": \"91ca1cd7-c0c8-483b-b1ed-64f85417e18a\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/7545d00f-cbd6-40f9-8617-1163682b8dad?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy83NTQ1ZDAwZi1jYmQ2LTQwZjktODYxNy0xMTYzNjgyYjhkYWQ/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "bfc8d917-5286-4073-9d26-f6ef28593d34" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.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": [ + "fae10e78-ad89-44a6-9b59-76ee6ba8f3f3" + ], + "x-ms-client-request-id": [ + "bfc8d917-5286-4073-9d26-f6ef28593d34", + "bfc8d917-5286-4073-9d26-f6ef28593d34" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "280" + ], + "x-ms-correlation-request-id": [ + "fae10e78-ad89-44a6-9b59-76ee6ba8f3f3" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T162143Z:fae10e78-ad89-44a6-9b59-76ee6ba8f3f3" + ], + "Date": [ + "Mon, 16 May 2022 16:21:42 GMT" + ], + "Content-Length": [ + "1113" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/7545d00f-cbd6-40f9-8617-1163682b8dad\",\r\n \"name\": \"7545d00f-cbd6-40f9-8617-1163682b8dad\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"duration\": \"PT33.092223S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"RestoreRecoveryPointTime\": \"5/16/2022 4:10:40 PM\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"2\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-05-16T16:10:48.6038834Z\",\r\n \"endTime\": \"2022-05-16T16:11:21.6961064Z\",\r\n \"activityId\": \"91ca1cd7-c0c8-483b-b1ed-64f85417e18a\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/f1723a12-4e8e-4ecd-aad4-df22fefc41fe?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9mMTcyM2ExMi00ZThlLTRlY2QtYWFkNC1kZjIyZmVmYzQxZmU/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4aeaea77-f650-4ff0-b05f-a35dcee2d0d4" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.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": [ + "d6465d38-2dd7-438d-935b-15aa7e094791" + ], + "x-ms-client-request-id": [ + "4aeaea77-f650-4ff0-b05f-a35dcee2d0d4", + "4aeaea77-f650-4ff0-b05f-a35dcee2d0d4" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "279" + ], + "x-ms-correlation-request-id": [ + "d6465d38-2dd7-438d-935b-15aa7e094791" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T162143Z:d6465d38-2dd7-438d-935b-15aa7e094791" + ], + "Date": [ + "Mon, 16 May 2022 16:21:43 GMT" + ], + "Content-Length": [ + "903" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/f1723a12-4e8e-4ecd-aad4-df22fefc41fe\",\r\n \"name\": \"f1723a12-4e8e-4ecd-aad4-df22fefc41fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT3.2333372S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"MicrosoftStorage\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"status\": \"Completed\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"File Share Name\": \"fs1\",\r\n \"Whether job is adhoc or scheduled.\": \"True\"\r\n }\r\n },\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-05-16T16:10:38.6329612Z\",\r\n \"endTime\": \"2022-05-16T16:10:41.8662984Z\",\r\n \"activityId\": \"2721bcfc-6b0f-4564-91a3-42f7de103707\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/f1723a12-4e8e-4ecd-aad4-df22fefc41fe?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9mMTcyM2ExMi00ZThlLTRlY2QtYWFkNC1kZjIyZmVmYzQxZmU/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "78979613-85b4-4aa3-b7e8-8922e5ee9093" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.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": [ + "de6bf3f3-110e-4612-b9b2-b2d68257d089" + ], + "x-ms-client-request-id": [ + "78979613-85b4-4aa3-b7e8-8922e5ee9093", + "78979613-85b4-4aa3-b7e8-8922e5ee9093" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "278" + ], + "x-ms-correlation-request-id": [ + "de6bf3f3-110e-4612-b9b2-b2d68257d089" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T162144Z:de6bf3f3-110e-4612-b9b2-b2d68257d089" + ], + "Date": [ + "Mon, 16 May 2022 16:21:43 GMT" + ], + "Content-Length": [ + "903" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/f1723a12-4e8e-4ecd-aad4-df22fefc41fe\",\r\n \"name\": \"f1723a12-4e8e-4ecd-aad4-df22fefc41fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT3.2333372S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"MicrosoftStorage\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"status\": \"Completed\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"File Share Name\": \"fs1\",\r\n \"Whether job is adhoc or scheduled.\": \"True\"\r\n }\r\n },\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-05-16T16:10:38.6329612Z\",\r\n \"endTime\": \"2022-05-16T16:10:41.8662984Z\",\r\n \"activityId\": \"2721bcfc-6b0f-4564-91a3-42f7de103707\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/5b75fd41-2203-49ef-a8cd-b5fb969fa522?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy81Yjc1ZmQ0MS0yMjAzLTQ5ZWYtYThjZC1iNWZiOTY5ZmE1MjI/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c709ca35-c2f5-400d-993f-936ab51a5d46" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.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": [ + "1dc08cb5-6886-474f-928a-5d610e6de519" + ], + "x-ms-client-request-id": [ + "c709ca35-c2f5-400d-993f-936ab51a5d46", + "c709ca35-c2f5-400d-993f-936ab51a5d46" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "277" + ], + "x-ms-correlation-request-id": [ + "1dc08cb5-6886-474f-928a-5d610e6de519" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T162144Z:1dc08cb5-6886-474f-928a-5d610e6de519" + ], + "Date": [ + "Mon, 16 May 2022 16:21:44 GMT" + ], + "Content-Length": [ + "846" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/5b75fd41-2203-49ef-a8cd-b5fb969fa522\",\r\n \"name\": \"5b75fd41-2203-49ef-a8cd-b5fb969fa522\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT42.8868836S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"Storage\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"File Share Name\": \"fs1\",\r\n \"Storage Account Name\": \"pstestsa8895\",\r\n \"Policy Name\": \"afspolicy1\"\r\n }\r\n },\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"ConfigureBackup\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-05-16T16:09:47.935131Z\",\r\n \"endTime\": \"2022-05-16T16:10:30.8220146Z\",\r\n \"activityId\": \"a8f88a84-d257-4df1-b7d8-425088904579\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/5b75fd41-2203-49ef-a8cd-b5fb969fa522?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy81Yjc1ZmQ0MS0yMjAzLTQ5ZWYtYThjZC1iNWZiOTY5ZmE1MjI/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8915c286-15f7-443f-baf4-711ec336e36c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.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": [ + "07c07fe6-0c3c-45bb-bb98-32a8dd41e208" + ], + "x-ms-client-request-id": [ + "8915c286-15f7-443f-baf4-711ec336e36c", + "8915c286-15f7-443f-baf4-711ec336e36c" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "276" + ], + "x-ms-correlation-request-id": [ + "07c07fe6-0c3c-45bb-bb98-32a8dd41e208" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T162145Z:07c07fe6-0c3c-45bb-bb98-32a8dd41e208" + ], + "Date": [ + "Mon, 16 May 2022 16:21:45 GMT" + ], + "Content-Length": [ + "846" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/5b75fd41-2203-49ef-a8cd-b5fb969fa522\",\r\n \"name\": \"5b75fd41-2203-49ef-a8cd-b5fb969fa522\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT42.8868836S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"Storage\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"File Share Name\": \"fs1\",\r\n \"Storage Account Name\": \"pstestsa8895\",\r\n \"Policy Name\": \"afspolicy1\"\r\n }\r\n },\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"ConfigureBackup\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-05-16T16:09:47.935131Z\",\r\n \"endTime\": \"2022-05-16T16:10:30.8220146Z\",\r\n \"activityId\": \"a8f88a84-d257-4df1-b7d8-425088904579\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/ab3822c9-9576-4d0e-a4be-533e451bcdd0?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9hYjM4MjJjOS05NTc2LTRkMGUtYTRiZS01MzNlNDUxYmNkZDA/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ad406d84-4fe6-42a9-b484-c2d938bc9828" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.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": [ + "8d209deb-fa85-4811-bbcd-679ef6d06cce" + ], + "x-ms-client-request-id": [ + "ad406d84-4fe6-42a9-b484-c2d938bc9828", + "ad406d84-4fe6-42a9-b484-c2d938bc9828" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "275" + ], + "x-ms-correlation-request-id": [ + "8d209deb-fa85-4811-bbcd-679ef6d06cce" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T162145Z:8d209deb-fa85-4811-bbcd-679ef6d06cce" + ], + "Date": [ + "Mon, 16 May 2022 16:21:45 GMT" + ], + "Content-Length": [ + "798" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/ab3822c9-9576-4d0e-a4be-533e451bcdd0\",\r\n \"name\": \"ab3822c9-9576-4d0e-a4be-533e451bcdd0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT11.1937872S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"Storage\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Storage Account Name\": \"pstestsa8895\"\r\n }\r\n },\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"pstestsa8895\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Register\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-05-16T16:09:20.5365607Z\",\r\n \"endTime\": \"2022-05-16T16:09:31.7303479Z\",\r\n \"activityId\": \"a8f88a84-d257-4df1-b7d8-425088904579\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/ab3822c9-9576-4d0e-a4be-533e451bcdd0?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9hYjM4MjJjOS05NTc2LTRkMGUtYTRiZS01MzNlNDUxYmNkZDA/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ae455b33-bf6d-4008-9b72-e7536c123b11" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.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": [ + "ce708991-c1f0-439c-8f6e-aa40f21b9302" + ], + "x-ms-client-request-id": [ + "ae455b33-bf6d-4008-9b72-e7536c123b11", + "ae455b33-bf6d-4008-9b72-e7536c123b11" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "274" + ], + "x-ms-correlation-request-id": [ + "ce708991-c1f0-439c-8f6e-aa40f21b9302" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T162146Z:ce708991-c1f0-439c-8f6e-aa40f21b9302" + ], + "Date": [ + "Mon, 16 May 2022 16:21:46 GMT" + ], + "Content-Length": [ + "798" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/ab3822c9-9576-4d0e-a4be-533e451bcdd0\",\r\n \"name\": \"ab3822c9-9576-4d0e-a4be-533e451bcdd0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT11.1937872S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"Storage\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Storage Account Name\": \"pstestsa8895\"\r\n }\r\n },\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"pstestsa8895\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Register\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-05-16T16:09:20.5365607Z\",\r\n \"endTime\": \"2022-05-16T16:09:31.7303479Z\",\r\n \"activityId\": \"a8f88a84-d257-4df1-b7d8-425088904579\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/6615afe3-0a51-474c-9858-e76a30075a2f?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy82NjE1YWZlMy0wYTUxLTQ3NGMtOTg1OC1lNzZhMzAwNzVhMmY/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d2e871fc-f3ab-4498-8e5c-cdc86ec4ce3b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.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": [ + "2c6e3d72-1721-4149-ae29-17b091542b53" + ], + "x-ms-client-request-id": [ + "d2e871fc-f3ab-4498-8e5c-cdc86ec4ce3b", + "d2e871fc-f3ab-4498-8e5c-cdc86ec4ce3b" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "273" + ], + "x-ms-correlation-request-id": [ + "2c6e3d72-1721-4149-ae29-17b091542b53" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T162146Z:2c6e3d72-1721-4149-ae29-17b091542b53" + ], + "Date": [ + "Mon, 16 May 2022 16:21:46 GMT" + ], + "Content-Length": [ + "800" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/6615afe3-0a51-474c-9858-e76a30075a2f\",\r\n \"name\": \"6615afe3-0a51-474c-9858-e76a30075a2f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT22.4648741S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"Storage\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Storage Account Name\": \"pstestsa8895\"\r\n }\r\n },\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"pstestsa8895\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"UnRegister\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-05-16T16:08:42.2297867Z\",\r\n \"endTime\": \"2022-05-16T16:09:04.6946608Z\",\r\n \"activityId\": \"96a21cb9-a0c4-4316-8444-4cce83a5da9c\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/6615afe3-0a51-474c-9858-e76a30075a2f?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy82NjE1YWZlMy0wYTUxLTQ3NGMtOTg1OC1lNzZhMzAwNzVhMmY/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5d8a726a-a7ff-45ef-bffa-c9c4ffe7ae31" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.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": [ + "d46c7bf6-22c3-44ca-afb0-33f753417a6f" + ], + "x-ms-client-request-id": [ + "5d8a726a-a7ff-45ef-bffa-c9c4ffe7ae31", + "5d8a726a-a7ff-45ef-bffa-c9c4ffe7ae31" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "272" + ], + "x-ms-correlation-request-id": [ + "d46c7bf6-22c3-44ca-afb0-33f753417a6f" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T162147Z:d46c7bf6-22c3-44ca-afb0-33f753417a6f" + ], + "Date": [ + "Mon, 16 May 2022 16:21:47 GMT" + ], + "Content-Length": [ + "800" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/6615afe3-0a51-474c-9858-e76a30075a2f\",\r\n \"name\": \"6615afe3-0a51-474c-9858-e76a30075a2f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT22.4648741S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"Storage\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Storage Account Name\": \"pstestsa8895\"\r\n }\r\n },\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"pstestsa8895\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"UnRegister\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-05-16T16:08:42.2297867Z\",\r\n \"endTime\": \"2022-05-16T16:09:04.6946608Z\",\r\n \"activityId\": \"96a21cb9-a0c4-4316-8444-4cce83a5da9c\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/d8c7bc77-46c9-4893-919e-0550265e5c6c?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9kOGM3YmM3Ny00NmM5LTQ4OTMtOTE5ZS0wNTUwMjY1ZTVjNmM/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a7387f9e-2193-4a24-aa82-ec77d0c876ff" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.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": [ + "8044e803-c476-44a6-b367-3fb3a7683871" + ], + "x-ms-client-request-id": [ + "a7387f9e-2193-4a24-aa82-ec77d0c876ff", + "a7387f9e-2193-4a24-aa82-ec77d0c876ff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "271" + ], + "x-ms-correlation-request-id": [ + "8044e803-c476-44a6-b367-3fb3a7683871" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T162147Z:8044e803-c476-44a6-b367-3fb3a7683871" + ], + "Date": [ + "Mon, 16 May 2022 16:21:47 GMT" + ], + "Content-Length": [ + "821" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/d8c7bc77-46c9-4893-919e-0550265e5c6c\",\r\n \"name\": \"d8c7bc77-46c9-4893-919e-0550265e5c6c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT21.3479925S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"Storage\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"File Share Name\": \"fs1\",\r\n \"Storage Account Name\": \"pstestsa8895\"\r\n }\r\n },\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"DeleteBackupData\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-05-16T16:08:17.7064574Z\",\r\n \"endTime\": \"2022-05-16T16:08:39.0544499Z\",\r\n \"activityId\": \"a1683137-e468-4d8f-bb2e-1f2f89a0205c\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/d8c7bc77-46c9-4893-919e-0550265e5c6c?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9kOGM3YmM3Ny00NmM5LTQ4OTMtOTE5ZS0wNTUwMjY1ZTVjNmM/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b21e6c4b-dba9-47e3-8a8a-3406bb87e1ea" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.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": [ + "5321f59e-f807-4c4f-9184-04f00036c8ff" + ], + "x-ms-client-request-id": [ + "b21e6c4b-dba9-47e3-8a8a-3406bb87e1ea", + "b21e6c4b-dba9-47e3-8a8a-3406bb87e1ea" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "270" + ], + "x-ms-correlation-request-id": [ + "5321f59e-f807-4c4f-9184-04f00036c8ff" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T162148Z:5321f59e-f807-4c4f-9184-04f00036c8ff" + ], + "Date": [ + "Mon, 16 May 2022 16:21:48 GMT" + ], + "Content-Length": [ + "821" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/d8c7bc77-46c9-4893-919e-0550265e5c6c\",\r\n \"name\": \"d8c7bc77-46c9-4893-919e-0550265e5c6c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT21.3479925S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"Storage\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"File Share Name\": \"fs1\",\r\n \"Storage Account Name\": \"pstestsa8895\"\r\n }\r\n },\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"DeleteBackupData\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-05-16T16:08:17.7064574Z\",\r\n \"endTime\": \"2022-05-16T16:08:39.0544499Z\",\r\n \"activityId\": \"a1683137-e468-4d8f-bb2e-1f2f89a0205c\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/20de1c1b-1c32-4caf-b9ac-9307e1d8f874?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy8yMGRlMWMxYi0xYzMyLTRjYWYtYjlhYy05MzA3ZTFkOGY4NzQ/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "78ec9871-c880-43fa-a432-362972ad2ce2" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.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": [ + "6e0fa0c8-ec54-4a46-bd20-f3fa962f8fca" + ], + "x-ms-client-request-id": [ + "78ec9871-c880-43fa-a432-362972ad2ce2", + "78ec9871-c880-43fa-a432-362972ad2ce2" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "269" + ], + "x-ms-correlation-request-id": [ + "6e0fa0c8-ec54-4a46-bd20-f3fa962f8fca" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T162148Z:6e0fa0c8-ec54-4a46-bd20-f3fa962f8fca" + ], + "Date": [ + "Mon, 16 May 2022 16:21:48 GMT" + ], + "Content-Length": [ + "855" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/20de1c1b-1c32-4caf-b9ac-9307e1d8f874\",\r\n \"name\": \"20de1c1b-1c32-4caf-b9ac-9307e1d8f874\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT32.3379696S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"Storage\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"File Share Name\": \"fs1\",\r\n \"Storage Account Name\": \"pstestsa8895\",\r\n \"Policy Name\": \"NewAFSBackupPolicy\"\r\n }\r\n },\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"ConfigureBackup\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-05-16T16:07:40.1564999Z\",\r\n \"endTime\": \"2022-05-16T16:08:12.4944695Z\",\r\n \"activityId\": \"3204ff63-e722-4e5d-a1a9-38dc7c5ddc96\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/20de1c1b-1c32-4caf-b9ac-9307e1d8f874?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy8yMGRlMWMxYi0xYzMyLTRjYWYtYjlhYy05MzA3ZTFkOGY4NzQ/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e3493a97-aa9e-4592-a820-2b5c67a278e3" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.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": [ + "0d56af21-0ea5-480a-8a90-403417f6dfef" + ], + "x-ms-client-request-id": [ + "e3493a97-aa9e-4592-a820-2b5c67a278e3", + "e3493a97-aa9e-4592-a820-2b5c67a278e3" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "268" + ], + "x-ms-correlation-request-id": [ + "0d56af21-0ea5-480a-8a90-403417f6dfef" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T162149Z:0d56af21-0ea5-480a-8a90-403417f6dfef" + ], + "Date": [ + "Mon, 16 May 2022 16:21:48 GMT" + ], + "Content-Length": [ + "855" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/20de1c1b-1c32-4caf-b9ac-9307e1d8f874\",\r\n \"name\": \"20de1c1b-1c32-4caf-b9ac-9307e1d8f874\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT32.3379696S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"Storage\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"File Share Name\": \"fs1\",\r\n \"Storage Account Name\": \"pstestsa8895\",\r\n \"Policy Name\": \"NewAFSBackupPolicy\"\r\n }\r\n },\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"ConfigureBackup\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-05-16T16:07:40.1564999Z\",\r\n \"endTime\": \"2022-05-16T16:08:12.4944695Z\",\r\n \"activityId\": \"3204ff63-e722-4e5d-a1a9-38dc7c5ddc96\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/54107bf8-5161-4b8f-83cb-42f8709ad25f?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy81NDEwN2JmOC01MTYxLTRiOGYtODNjYi00MmY4NzA5YWQyNWY/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6321cc61-6e00-4550-bb1d-37bc8cc006a9" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.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": [ + "392df762-c674-4b73-8f28-d2f00c513151" + ], + "x-ms-client-request-id": [ + "6321cc61-6e00-4550-bb1d-37bc8cc006a9", + "6321cc61-6e00-4550-bb1d-37bc8cc006a9" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "267" + ], + "x-ms-correlation-request-id": [ + "392df762-c674-4b73-8f28-d2f00c513151" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T162149Z:392df762-c674-4b73-8f28-d2f00c513151" + ], + "Date": [ + "Mon, 16 May 2022 16:21:49 GMT" + ], + "Content-Length": [ + "847" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/54107bf8-5161-4b8f-83cb-42f8709ad25f\",\r\n \"name\": \"54107bf8-5161-4b8f-83cb-42f8709ad25f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT41.8923475S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"Storage\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"File Share Name\": \"fs1\",\r\n \"Storage Account Name\": \"pstestsa8895\",\r\n \"Policy Name\": \"afspolicy1\"\r\n }\r\n },\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"ConfigureBackup\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-05-16T16:06:48.7466287Z\",\r\n \"endTime\": \"2022-05-16T16:07:30.6389762Z\",\r\n \"activityId\": \"0efe7a34-5f1a-41d2-87e7-dd3aa25b052b\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/54107bf8-5161-4b8f-83cb-42f8709ad25f?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy81NDEwN2JmOC01MTYxLTRiOGYtODNjYi00MmY4NzA5YWQyNWY/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2010ee9d-3a8a-4704-9fa1-9920fd80b459" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.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": [ + "72daa2e8-976c-4eff-a49c-c13fd2226937" + ], + "x-ms-client-request-id": [ + "2010ee9d-3a8a-4704-9fa1-9920fd80b459", + "2010ee9d-3a8a-4704-9fa1-9920fd80b459" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "266" + ], + "x-ms-correlation-request-id": [ + "72daa2e8-976c-4eff-a49c-c13fd2226937" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T162150Z:72daa2e8-976c-4eff-a49c-c13fd2226937" + ], + "Date": [ + "Mon, 16 May 2022 16:21:50 GMT" + ], + "Content-Length": [ + "847" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/54107bf8-5161-4b8f-83cb-42f8709ad25f\",\r\n \"name\": \"54107bf8-5161-4b8f-83cb-42f8709ad25f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT41.8923475S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"Storage\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"File Share Name\": \"fs1\",\r\n \"Storage Account Name\": \"pstestsa8895\",\r\n \"Policy Name\": \"afspolicy1\"\r\n }\r\n },\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"ConfigureBackup\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-05-16T16:06:48.7466287Z\",\r\n \"endTime\": \"2022-05-16T16:07:30.6389762Z\",\r\n \"activityId\": \"0efe7a34-5f1a-41d2-87e7-dd3aa25b052b\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/ed714670-5f1b-4448-b048-ec358fa11d27?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lZDcxNDY3MC01ZjFiLTQ0NDgtYjA0OC1lYzM1OGZhMTFkMjc/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9464e26b-d906-4eb2-89a6-e33858223ad0" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.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": [ + "69993772-3246-4f64-ab32-23ec1657dfc6" + ], + "x-ms-client-request-id": [ + "9464e26b-d906-4eb2-89a6-e33858223ad0", + "9464e26b-d906-4eb2-89a6-e33858223ad0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "265" + ], + "x-ms-correlation-request-id": [ + "69993772-3246-4f64-ab32-23ec1657dfc6" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T162150Z:69993772-3246-4f64-ab32-23ec1657dfc6" + ], + "Date": [ + "Mon, 16 May 2022 16:21:50 GMT" + ], + "Content-Length": [ + "798" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/ed714670-5f1b-4448-b048-ec358fa11d27\",\r\n \"name\": \"ed714670-5f1b-4448-b048-ec358fa11d27\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT11.8502017S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"Storage\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Storage Account Name\": \"pstestsa8895\"\r\n }\r\n },\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"pstestsa8895\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Register\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-05-16T16:06:29.4326866Z\",\r\n \"endTime\": \"2022-05-16T16:06:41.2828883Z\",\r\n \"activityId\": \"0efe7a34-5f1a-41d2-87e7-dd3aa25b052b\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/ed714670-5f1b-4448-b048-ec358fa11d27?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lZDcxNDY3MC01ZjFiLTQ0NDgtYjA0OC1lYzM1OGZhMTFkMjc/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "53565d49-61c4-4ae5-8719-c9647edf84d4" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.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": [ + "99f56e1d-7656-46f0-8de3-9e023cf29cef" + ], + "x-ms-client-request-id": [ + "53565d49-61c4-4ae5-8719-c9647edf84d4", + "53565d49-61c4-4ae5-8719-c9647edf84d4" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "264" + ], + "x-ms-correlation-request-id": [ + "99f56e1d-7656-46f0-8de3-9e023cf29cef" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T162152Z:99f56e1d-7656-46f0-8de3-9e023cf29cef" + ], + "Date": [ + "Mon, 16 May 2022 16:21:51 GMT" + ], + "Content-Length": [ + "798" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/ed714670-5f1b-4448-b048-ec358fa11d27\",\r\n \"name\": \"ed714670-5f1b-4448-b048-ec358fa11d27\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT11.8502017S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"Storage\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Storage Account Name\": \"pstestsa8895\"\r\n }\r\n },\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"pstestsa8895\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Register\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-05-16T16:06:29.4326866Z\",\r\n \"endTime\": \"2022-05-16T16:06:41.2828883Z\",\r\n \"activityId\": \"0efe7a34-5f1a-41d2-87e7-dd3aa25b052b\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/b93b24f9-6a6a-41b6-852b-d8d5a941e2b1?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9iOTNiMjRmOS02YTZhLTQxYjYtODUyYi1kOGQ1YTk0MWUyYjE/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d5fd3502-72ef-4659-974a-df8c8a1f9422" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.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": [ + "0889c940-c001-4dff-9c5d-996a68821cc8" + ], + "x-ms-client-request-id": [ + "d5fd3502-72ef-4659-974a-df8c8a1f9422", + "d5fd3502-72ef-4659-974a-df8c8a1f9422" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "263" + ], + "x-ms-correlation-request-id": [ + "0889c940-c001-4dff-9c5d-996a68821cc8" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T162152Z:0889c940-c001-4dff-9c5d-996a68821cc8" + ], + "Date": [ + "Mon, 16 May 2022 16:21:52 GMT" + ], + "Content-Length": [ + "800" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/b93b24f9-6a6a-41b6-852b-d8d5a941e2b1\",\r\n \"name\": \"b93b24f9-6a6a-41b6-852b-d8d5a941e2b1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT22.4278695S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"Storage\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Storage Account Name\": \"pstestsa8895\"\r\n }\r\n },\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"pstestsa8895\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"UnRegister\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-05-16T16:05:52.3469832Z\",\r\n \"endTime\": \"2022-05-16T16:06:14.7748527Z\",\r\n \"activityId\": \"9443324c-93e0-47f9-a9db-da305d49c589\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/b93b24f9-6a6a-41b6-852b-d8d5a941e2b1?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9iOTNiMjRmOS02YTZhLTQxYjYtODUyYi1kOGQ1YTk0MWUyYjE/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "80332731-4b67-4b83-b903-5d6557172248" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.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": [ + "9b2db831-4f1d-41ab-aca9-8b8f000f6739" + ], + "x-ms-client-request-id": [ + "80332731-4b67-4b83-b903-5d6557172248", + "80332731-4b67-4b83-b903-5d6557172248" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "262" + ], + "x-ms-correlation-request-id": [ + "9b2db831-4f1d-41ab-aca9-8b8f000f6739" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T162153Z:9b2db831-4f1d-41ab-aca9-8b8f000f6739" + ], + "Date": [ + "Mon, 16 May 2022 16:21:52 GMT" + ], + "Content-Length": [ + "800" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/b93b24f9-6a6a-41b6-852b-d8d5a941e2b1\",\r\n \"name\": \"b93b24f9-6a6a-41b6-852b-d8d5a941e2b1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT22.4278695S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"Storage\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Storage Account Name\": \"pstestsa8895\"\r\n }\r\n },\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"pstestsa8895\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"UnRegister\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-05-16T16:05:52.3469832Z\",\r\n \"endTime\": \"2022-05-16T16:06:14.7748527Z\",\r\n \"activityId\": \"9443324c-93e0-47f9-a9db-da305d49c589\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/02580b0e-2339-4ffa-aea1-82e2018e58c9?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy8wMjU4MGIwZS0yMzM5LTRmZmEtYWVhMS04MmUyMDE4ZTU4Yzk/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4abaa2b2-3343-4e63-89fb-46ecd7deff9e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.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": [ + "8713ea18-14fe-4c4e-9677-81e567ba2a1d" + ], + "x-ms-client-request-id": [ + "4abaa2b2-3343-4e63-89fb-46ecd7deff9e", + "4abaa2b2-3343-4e63-89fb-46ecd7deff9e" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "261" + ], + "x-ms-correlation-request-id": [ + "8713ea18-14fe-4c4e-9677-81e567ba2a1d" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T162153Z:8713ea18-14fe-4c4e-9677-81e567ba2a1d" + ], + "Date": [ + "Mon, 16 May 2022 16:21:53 GMT" + ], + "Content-Length": [ + "821" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/02580b0e-2339-4ffa-aea1-82e2018e58c9\",\r\n \"name\": \"02580b0e-2339-4ffa-aea1-82e2018e58c9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT11.9518238S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"Storage\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"File Share Name\": \"fs1\",\r\n \"Storage Account Name\": \"pstestsa8895\"\r\n }\r\n },\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"DeleteBackupData\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-05-16T16:05:33.8553609Z\",\r\n \"endTime\": \"2022-05-16T16:05:45.8071847Z\",\r\n \"activityId\": \"c01fbcb7-97ce-4515-94cf-651d23e79b31\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/02580b0e-2339-4ffa-aea1-82e2018e58c9?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy8wMjU4MGIwZS0yMzM5LTRmZmEtYWVhMS04MmUyMDE4ZTU4Yzk/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0b00927e-29e5-47f7-9ef2-e336bdf54b9f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.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": [ + "b7294a00-1472-4cdb-a620-ad3b794f1831" + ], + "x-ms-client-request-id": [ + "0b00927e-29e5-47f7-9ef2-e336bdf54b9f", + "0b00927e-29e5-47f7-9ef2-e336bdf54b9f" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "260" + ], + "x-ms-correlation-request-id": [ + "b7294a00-1472-4cdb-a620-ad3b794f1831" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T162153Z:b7294a00-1472-4cdb-a620-ad3b794f1831" + ], + "Date": [ + "Mon, 16 May 2022 16:21:53 GMT" + ], + "Content-Length": [ + "821" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/02580b0e-2339-4ffa-aea1-82e2018e58c9\",\r\n \"name\": \"02580b0e-2339-4ffa-aea1-82e2018e58c9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT11.9518238S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"Storage\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"File Share Name\": \"fs1\",\r\n \"Storage Account Name\": \"pstestsa8895\"\r\n }\r\n },\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"DeleteBackupData\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-05-16T16:05:33.8553609Z\",\r\n \"endTime\": \"2022-05-16T16:05:45.8071847Z\",\r\n \"activityId\": \"c01fbcb7-97ce-4515-94cf-651d23e79b31\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/dd8c8ceb-f455-4994-94e4-51dad2c1e548?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9kZDhjOGNlYi1mNDU1LTQ5OTQtOTRlNC01MWRhZDJjMWU1NDg/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "57411e74-9cfb-49ca-8b06-829fb08f078d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.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": [ + "fedf01c7-369f-4a55-a397-f3d5a7a591c4" + ], + "x-ms-client-request-id": [ + "57411e74-9cfb-49ca-8b06-829fb08f078d", + "57411e74-9cfb-49ca-8b06-829fb08f078d" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "259" + ], + "x-ms-correlation-request-id": [ + "fedf01c7-369f-4a55-a397-f3d5a7a591c4" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T162154Z:fedf01c7-369f-4a55-a397-f3d5a7a591c4" + ], + "Date": [ + "Mon, 16 May 2022 16:21:54 GMT" + ], + "Content-Length": [ + "903" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/dd8c8ceb-f455-4994-94e4-51dad2c1e548\",\r\n \"name\": \"dd8c8ceb-f455-4994-94e4-51dad2c1e548\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT2.1561885S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"MicrosoftStorage\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"status\": \"Completed\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"File Share Name\": \"fs1\",\r\n \"Whether job is adhoc or scheduled.\": \"True\"\r\n }\r\n },\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-05-16T16:04:59.7478141Z\",\r\n \"endTime\": \"2022-05-16T16:05:01.9040026Z\",\r\n \"activityId\": \"f2025029-bbc3-4768-b9e4-1511456350b1\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/dd8c8ceb-f455-4994-94e4-51dad2c1e548?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9kZDhjOGNlYi1mNDU1LTQ5OTQtOTRlNC01MWRhZDJjMWU1NDg/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4c0e9813-1010-493d-9411-8096d750deba" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.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": [ + "20724480-fd34-46e7-8d6a-8c89a9c61b0b" + ], + "x-ms-client-request-id": [ + "4c0e9813-1010-493d-9411-8096d750deba", + "4c0e9813-1010-493d-9411-8096d750deba" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "258" + ], + "x-ms-correlation-request-id": [ + "20724480-fd34-46e7-8d6a-8c89a9c61b0b" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T162154Z:20724480-fd34-46e7-8d6a-8c89a9c61b0b" + ], + "Date": [ + "Mon, 16 May 2022 16:21:54 GMT" + ], + "Content-Length": [ + "903" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/dd8c8ceb-f455-4994-94e4-51dad2c1e548\",\r\n \"name\": \"dd8c8ceb-f455-4994-94e4-51dad2c1e548\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT2.1561885S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"MicrosoftStorage\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"status\": \"Completed\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"File Share Name\": \"fs1\",\r\n \"Whether job is adhoc or scheduled.\": \"True\"\r\n }\r\n },\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-05-16T16:04:59.7478141Z\",\r\n \"endTime\": \"2022-05-16T16:05:01.9040026Z\",\r\n \"activityId\": \"f2025029-bbc3-4768-b9e4-1511456350b1\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/ba7830ae-f040-47e1-b8b5-b978c251dca8?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9iYTc4MzBhZS1mMDQwLTQ3ZTEtYjhiNS1iOTc4YzI1MWRjYTg/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "83c26e94-5416-463f-b9ae-5d4ed4669f96" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.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": [ + "57261023-a305-437e-bdf7-9b6fbce12d9e" + ], + "x-ms-client-request-id": [ + "83c26e94-5416-463f-b9ae-5d4ed4669f96", + "83c26e94-5416-463f-b9ae-5d4ed4669f96" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "257" + ], + "x-ms-correlation-request-id": [ + "57261023-a305-437e-bdf7-9b6fbce12d9e" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T162155Z:57261023-a305-437e-bdf7-9b6fbce12d9e" + ], + "Date": [ + "Mon, 16 May 2022 16:21:55 GMT" + ], + "Content-Length": [ + "847" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/ba7830ae-f040-47e1-b8b5-b978c251dca8\",\r\n \"name\": \"ba7830ae-f040-47e1-b8b5-b978c251dca8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT41.9274137S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"Storage\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"File Share Name\": \"fs1\",\r\n \"Storage Account Name\": \"pstestsa8895\",\r\n \"Policy Name\": \"afspolicy1\"\r\n }\r\n },\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"ConfigureBackup\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-05-16T16:04:12.9402938Z\",\r\n \"endTime\": \"2022-05-16T16:04:54.8677075Z\",\r\n \"activityId\": \"a8a5427d-d0da-49e9-b70f-23d8fc1d4ab1\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/ba7830ae-f040-47e1-b8b5-b978c251dca8?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9iYTc4MzBhZS1mMDQwLTQ3ZTEtYjhiNS1iOTc4YzI1MWRjYTg/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "543b05b1-1e20-4b0c-b91a-b772a20e81d1" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.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": [ + "672a1603-d030-4d55-80a0-b0d259b010c5" + ], + "x-ms-client-request-id": [ + "543b05b1-1e20-4b0c-b91a-b772a20e81d1", + "543b05b1-1e20-4b0c-b91a-b772a20e81d1" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "256" + ], + "x-ms-correlation-request-id": [ + "672a1603-d030-4d55-80a0-b0d259b010c5" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T162155Z:672a1603-d030-4d55-80a0-b0d259b010c5" + ], + "Date": [ + "Mon, 16 May 2022 16:21:55 GMT" + ], + "Content-Length": [ + "847" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/ba7830ae-f040-47e1-b8b5-b978c251dca8\",\r\n \"name\": \"ba7830ae-f040-47e1-b8b5-b978c251dca8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT41.9274137S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"Storage\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"File Share Name\": \"fs1\",\r\n \"Storage Account Name\": \"pstestsa8895\",\r\n \"Policy Name\": \"afspolicy1\"\r\n }\r\n },\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"ConfigureBackup\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-05-16T16:04:12.9402938Z\",\r\n \"endTime\": \"2022-05-16T16:04:54.8677075Z\",\r\n \"activityId\": \"a8a5427d-d0da-49e9-b70f-23d8fc1d4ab1\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/28b12999-eb96-4ce4-ac06-397297d24084?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy8yOGIxMjk5OS1lYjk2LTRjZTQtYWMwNi0zOTcyOTdkMjQwODQ/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a2591c1a-4435-4073-ad77-a08a0b41a784" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.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": [ + "b453d8d8-6bd4-45c1-a360-cba2206045a7" + ], + "x-ms-client-request-id": [ + "a2591c1a-4435-4073-ad77-a08a0b41a784", + "a2591c1a-4435-4073-ad77-a08a0b41a784" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "255" + ], + "x-ms-correlation-request-id": [ + "b453d8d8-6bd4-45c1-a360-cba2206045a7" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T162156Z:b453d8d8-6bd4-45c1-a360-cba2206045a7" + ], + "Date": [ + "Mon, 16 May 2022 16:21:55 GMT" + ], + "Content-Length": [ + "798" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/28b12999-eb96-4ce4-ac06-397297d24084\",\r\n \"name\": \"28b12999-eb96-4ce4-ac06-397297d24084\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT10.9900535S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"Storage\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Storage Account Name\": \"pstestsa8895\"\r\n }\r\n },\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"pstestsa8895\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Register\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-05-16T16:03:51.8693518Z\",\r\n \"endTime\": \"2022-05-16T16:04:02.8594053Z\",\r\n \"activityId\": \"a8a5427d-d0da-49e9-b70f-23d8fc1d4ab1\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/28b12999-eb96-4ce4-ac06-397297d24084?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy8yOGIxMjk5OS1lYjk2LTRjZTQtYWMwNi0zOTcyOTdkMjQwODQ/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ea5b2582-8291-45b6-ba11-a769e8ac0fb7" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.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": [ + "913d24d4-253b-4d9f-91a0-4a0edaf5a097" + ], + "x-ms-client-request-id": [ + "ea5b2582-8291-45b6-ba11-a769e8ac0fb7", + "ea5b2582-8291-45b6-ba11-a769e8ac0fb7" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "254" + ], + "x-ms-correlation-request-id": [ + "913d24d4-253b-4d9f-91a0-4a0edaf5a097" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T162156Z:913d24d4-253b-4d9f-91a0-4a0edaf5a097" + ], + "Date": [ + "Mon, 16 May 2022 16:21:56 GMT" + ], + "Content-Length": [ + "798" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/28b12999-eb96-4ce4-ac06-397297d24084\",\r\n \"name\": \"28b12999-eb96-4ce4-ac06-397297d24084\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT10.9900535S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"Storage\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Storage Account Name\": \"pstestsa8895\"\r\n }\r\n },\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"pstestsa8895\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Register\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-05-16T16:03:51.8693518Z\",\r\n \"endTime\": \"2022-05-16T16:04:02.8594053Z\",\r\n \"activityId\": \"a8a5427d-d0da-49e9-b70f-23d8fc1d4ab1\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/3a9827dc-310b-4404-b108-6fc98d7b5046?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy8zYTk4MjdkYy0zMTBiLTQ0MDQtYjEwOC02ZmM5OGQ3YjUwNDY/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "95d76981-498e-4ea9-98ec-d6db01ffc1d7" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.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": [ + "0c52f110-e089-41da-8e8d-1acc9082e83a" + ], + "x-ms-client-request-id": [ + "95d76981-498e-4ea9-98ec-d6db01ffc1d7", + "95d76981-498e-4ea9-98ec-d6db01ffc1d7" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "253" + ], + "x-ms-correlation-request-id": [ + "0c52f110-e089-41da-8e8d-1acc9082e83a" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T162157Z:0c52f110-e089-41da-8e8d-1acc9082e83a" + ], + "Date": [ + "Mon, 16 May 2022 16:21:56 GMT" + ], + "Content-Length": [ + "800" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/3a9827dc-310b-4404-b108-6fc98d7b5046\",\r\n \"name\": \"3a9827dc-310b-4404-b108-6fc98d7b5046\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT21.9415471S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"Storage\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Storage Account Name\": \"pstestsa8895\"\r\n }\r\n },\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"pstestsa8895\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"UnRegister\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-05-16T15:41:39.2922047Z\",\r\n \"endTime\": \"2022-05-16T15:42:01.2337518Z\",\r\n \"activityId\": \"b13eb5cf-0216-4f94-80d7-72c96d270f64\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/3a9827dc-310b-4404-b108-6fc98d7b5046?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy8zYTk4MjdkYy0zMTBiLTQ0MDQtYjEwOC02ZmM5OGQ3YjUwNDY/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2052b9db-6b28-4486-8234-d533262b818f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.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": [ + "bb195b81-271f-4653-98e8-e9cb033c4c06" + ], + "x-ms-client-request-id": [ + "2052b9db-6b28-4486-8234-d533262b818f", + "2052b9db-6b28-4486-8234-d533262b818f" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "252" + ], + "x-ms-correlation-request-id": [ + "bb195b81-271f-4653-98e8-e9cb033c4c06" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T162157Z:bb195b81-271f-4653-98e8-e9cb033c4c06" + ], + "Date": [ + "Mon, 16 May 2022 16:21:57 GMT" + ], + "Content-Length": [ + "800" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/3a9827dc-310b-4404-b108-6fc98d7b5046\",\r\n \"name\": \"3a9827dc-310b-4404-b108-6fc98d7b5046\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT21.9415471S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"Storage\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Storage Account Name\": \"pstestsa8895\"\r\n }\r\n },\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"pstestsa8895\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"UnRegister\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-05-16T15:41:39.2922047Z\",\r\n \"endTime\": \"2022-05-16T15:42:01.2337518Z\",\r\n \"activityId\": \"b13eb5cf-0216-4f94-80d7-72c96d270f64\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/3d2fdb9c-af98-458d-8c7f-af9e3bade4d5?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy8zZDJmZGI5Yy1hZjk4LTQ1OGQtOGM3Zi1hZjllM2JhZGU0ZDU/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f580d44d-4c0f-4174-8980-a0d0cb05618d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.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": [ + "3f3caa67-302b-4695-93ce-e65fa387396e" + ], + "x-ms-client-request-id": [ + "f580d44d-4c0f-4174-8980-a0d0cb05618d", + "f580d44d-4c0f-4174-8980-a0d0cb05618d" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "251" + ], + "x-ms-correlation-request-id": [ + "3f3caa67-302b-4695-93ce-e65fa387396e" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T162158Z:3f3caa67-302b-4695-93ce-e65fa387396e" + ], + "Date": [ + "Mon, 16 May 2022 16:21:58 GMT" + ], + "Content-Length": [ + "821" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/3d2fdb9c-af98-458d-8c7f-af9e3bade4d5\",\r\n \"name\": \"3d2fdb9c-af98-458d-8c7f-af9e3bade4d5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT11.8207946S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"Storage\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"File Share Name\": \"fs1\",\r\n \"Storage Account Name\": \"pstestsa8895\"\r\n }\r\n },\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"DeleteBackupData\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-05-16T15:41:25.5289733Z\",\r\n \"endTime\": \"2022-05-16T15:41:37.3497679Z\",\r\n \"activityId\": \"398c1e97-1e96-4e46-8414-970f532af784\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/3d2fdb9c-af98-458d-8c7f-af9e3bade4d5?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy8zZDJmZGI5Yy1hZjk4LTQ1OGQtOGM3Zi1hZjllM2JhZGU0ZDU/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "77de8b0c-7dcb-442a-bd93-bd4301981ab8" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.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": [ + "f3c8677a-9924-4607-9be9-e71cfa7baf9b" + ], + "x-ms-client-request-id": [ + "77de8b0c-7dcb-442a-bd93-bd4301981ab8", + "77de8b0c-7dcb-442a-bd93-bd4301981ab8" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "250" + ], + "x-ms-correlation-request-id": [ + "f3c8677a-9924-4607-9be9-e71cfa7baf9b" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T162159Z:f3c8677a-9924-4607-9be9-e71cfa7baf9b" + ], + "Date": [ + "Mon, 16 May 2022 16:21:58 GMT" + ], + "Content-Length": [ + "821" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/3d2fdb9c-af98-458d-8c7f-af9e3bade4d5\",\r\n \"name\": \"3d2fdb9c-af98-458d-8c7f-af9e3bade4d5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT11.8207946S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"Storage\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"File Share Name\": \"fs1\",\r\n \"Storage Account Name\": \"pstestsa8895\"\r\n }\r\n },\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"DeleteBackupData\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-05-16T15:41:25.5289733Z\",\r\n \"endTime\": \"2022-05-16T15:41:37.3497679Z\",\r\n \"activityId\": \"398c1e97-1e96-4e46-8414-970f532af784\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e7e468c3-5f49-4bba-937c-665aaccb7908?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lN2U0NjhjMy01ZjQ5LTRiYmEtOTM3Yy02NjVhYWNjYjc5MDg/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "965deb7e-cbe7-4a9a-a01b-ed546a9dee6e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.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": [ + "cd1cd478-1527-47e4-ba9d-bc4fc5afa23f" + ], + "x-ms-client-request-id": [ + "965deb7e-cbe7-4a9a-a01b-ed546a9dee6e", + "965deb7e-cbe7-4a9a-a01b-ed546a9dee6e" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "249" + ], + "x-ms-correlation-request-id": [ + "cd1cd478-1527-47e4-ba9d-bc4fc5afa23f" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T162159Z:cd1cd478-1527-47e4-ba9d-bc4fc5afa23f" + ], + "Date": [ + "Mon, 16 May 2022 16:21:59 GMT" + ], + "Content-Length": [ + "846" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e7e468c3-5f49-4bba-937c-665aaccb7908\",\r\n \"name\": \"e7e468c3-5f49-4bba-937c-665aaccb7908\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT42.5795149S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"Storage\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"File Share Name\": \"fs1\",\r\n \"Storage Account Name\": \"pstestsa8895\",\r\n \"Policy Name\": \"afspolicy1\"\r\n }\r\n },\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"ConfigureBackup\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-05-16T15:40:32.342656Z\",\r\n \"endTime\": \"2022-05-16T15:41:14.9221709Z\",\r\n \"activityId\": \"25dd5578-ff1a-4bc5-8226-b46696054475\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e7e468c3-5f49-4bba-937c-665aaccb7908?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lN2U0NjhjMy01ZjQ5LTRiYmEtOTM3Yy02NjVhYWNjYjc5MDg/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "304e855c-37d9-4731-a1ad-1867d49e82d7" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.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": [ + "d0cda332-dd2e-491c-a9de-ab5a8b533b69" + ], + "x-ms-client-request-id": [ + "304e855c-37d9-4731-a1ad-1867d49e82d7", + "304e855c-37d9-4731-a1ad-1867d49e82d7" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "248" + ], + "x-ms-correlation-request-id": [ + "d0cda332-dd2e-491c-a9de-ab5a8b533b69" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T162200Z:d0cda332-dd2e-491c-a9de-ab5a8b533b69" + ], + "Date": [ + "Mon, 16 May 2022 16:21:59 GMT" + ], + "Content-Length": [ + "846" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e7e468c3-5f49-4bba-937c-665aaccb7908\",\r\n \"name\": \"e7e468c3-5f49-4bba-937c-665aaccb7908\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT42.5795149S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"Storage\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"File Share Name\": \"fs1\",\r\n \"Storage Account Name\": \"pstestsa8895\",\r\n \"Policy Name\": \"afspolicy1\"\r\n }\r\n },\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"ConfigureBackup\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-05-16T15:40:32.342656Z\",\r\n \"endTime\": \"2022-05-16T15:41:14.9221709Z\",\r\n \"activityId\": \"25dd5578-ff1a-4bc5-8226-b46696054475\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/ea4b9f92-4f3a-4043-a655-b82dc686f233?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lYTRiOWY5Mi00ZjNhLTQwNDMtYTY1NS1iODJkYzY4NmYyMzM/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c9a339bc-d801-41e1-9c08-721c9c3ceda2" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.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": [ + "ea309d12-814b-45f9-8791-eb26b08115dd" + ], + "x-ms-client-request-id": [ + "c9a339bc-d801-41e1-9c08-721c9c3ceda2", + "c9a339bc-d801-41e1-9c08-721c9c3ceda2" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "247" + ], + "x-ms-correlation-request-id": [ + "ea309d12-814b-45f9-8791-eb26b08115dd" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T162200Z:ea309d12-814b-45f9-8791-eb26b08115dd" + ], + "Date": [ + "Mon, 16 May 2022 16:22:00 GMT" + ], + "Content-Length": [ + "798" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/ea4b9f92-4f3a-4043-a655-b82dc686f233\",\r\n \"name\": \"ea4b9f92-4f3a-4043-a655-b82dc686f233\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT13.3602465S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"Storage\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Storage Account Name\": \"pstestsa8895\"\r\n }\r\n },\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"pstestsa8895\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Register\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-05-16T15:40:12.4257211Z\",\r\n \"endTime\": \"2022-05-16T15:40:25.7859676Z\",\r\n \"activityId\": \"25dd5578-ff1a-4bc5-8226-b46696054475\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/ea4b9f92-4f3a-4043-a655-b82dc686f233?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lYTRiOWY5Mi00ZjNhLTQwNDMtYTY1NS1iODJkYzY4NmYyMzM/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "bd59dbd2-0d4b-4aed-be76-ddf84eaca10c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.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": [ + "b84c3f72-3540-4d86-98b7-ffa737684235" + ], + "x-ms-client-request-id": [ + "bd59dbd2-0d4b-4aed-be76-ddf84eaca10c", + "bd59dbd2-0d4b-4aed-be76-ddf84eaca10c" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "246" + ], + "x-ms-correlation-request-id": [ + "b84c3f72-3540-4d86-98b7-ffa737684235" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T162201Z:b84c3f72-3540-4d86-98b7-ffa737684235" + ], + "Date": [ + "Mon, 16 May 2022 16:22:00 GMT" + ], + "Content-Length": [ + "798" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/ea4b9f92-4f3a-4043-a655-b82dc686f233\",\r\n \"name\": \"ea4b9f92-4f3a-4043-a655-b82dc686f233\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT13.3602465S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"Storage\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Storage Account Name\": \"pstestsa8895\"\r\n }\r\n },\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"pstestsa8895\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Register\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-05-16T15:40:12.4257211Z\",\r\n \"endTime\": \"2022-05-16T15:40:25.7859676Z\",\r\n \"activityId\": \"25dd5578-ff1a-4bc5-8226-b46696054475\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/2d625e48-6862-4b90-9a0c-ec643effe1a2?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy8yZDYyNWU0OC02ODYyLTRiOTAtOWEwYy1lYzY0M2VmZmUxYTI/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "cc4326f0-7d2e-4988-9360-d9899f16a3a6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.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": [ + "1b6aa8a2-a488-4ba1-b263-c9ae71e1b2fb" + ], + "x-ms-client-request-id": [ + "cc4326f0-7d2e-4988-9360-d9899f16a3a6", + "cc4326f0-7d2e-4988-9360-d9899f16a3a6" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "245" + ], + "x-ms-correlation-request-id": [ + "1b6aa8a2-a488-4ba1-b263-c9ae71e1b2fb" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T162201Z:1b6aa8a2-a488-4ba1-b263-c9ae71e1b2fb" + ], + "Date": [ + "Mon, 16 May 2022 16:22:01 GMT" + ], + "Content-Length": [ + "800" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/2d625e48-6862-4b90-9a0c-ec643effe1a2\",\r\n \"name\": \"2d625e48-6862-4b90-9a0c-ec643effe1a2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT22.6500174S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"Storage\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Storage Account Name\": \"pstestsa8895\"\r\n }\r\n },\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"pstestsa8895\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"UnRegister\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-05-16T15:39:34.8327642Z\",\r\n \"endTime\": \"2022-05-16T15:39:57.4827816Z\",\r\n \"activityId\": \"fb0226d4-1bd5-4e75-887d-1f3495003f41\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/2d625e48-6862-4b90-9a0c-ec643effe1a2?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy8yZDYyNWU0OC02ODYyLTRiOTAtOWEwYy1lYzY0M2VmZmUxYTI/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ef56e29a-24f0-470c-b939-55f4e861f2ac" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.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": [ + "0677bfdc-15e2-4372-bd2a-37a72b73bff9" + ], + "x-ms-client-request-id": [ + "ef56e29a-24f0-470c-b939-55f4e861f2ac", + "ef56e29a-24f0-470c-b939-55f4e861f2ac" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "244" + ], + "x-ms-correlation-request-id": [ + "0677bfdc-15e2-4372-bd2a-37a72b73bff9" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T162202Z:0677bfdc-15e2-4372-bd2a-37a72b73bff9" + ], + "Date": [ + "Mon, 16 May 2022 16:22:01 GMT" + ], + "Content-Length": [ + "800" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/2d625e48-6862-4b90-9a0c-ec643effe1a2\",\r\n \"name\": \"2d625e48-6862-4b90-9a0c-ec643effe1a2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT22.6500174S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"Storage\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Storage Account Name\": \"pstestsa8895\"\r\n }\r\n },\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"pstestsa8895\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"UnRegister\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-05-16T15:39:34.8327642Z\",\r\n \"endTime\": \"2022-05-16T15:39:57.4827816Z\",\r\n \"activityId\": \"fb0226d4-1bd5-4e75-887d-1f3495003f41\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/6dfd01fc-789f-490f-9bdd-fdf4ef407136?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy82ZGZkMDFmYy03ODlmLTQ5MGYtOWJkZC1mZGY0ZWY0MDcxMzY/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "784d4d31-c00a-490b-86a5-d771e8e74085" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.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": [ + "fecd2983-15bf-4cdb-9272-8e97d342cc1d" + ], + "x-ms-client-request-id": [ + "784d4d31-c00a-490b-86a5-d771e8e74085", + "784d4d31-c00a-490b-86a5-d771e8e74085" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "243" + ], + "x-ms-correlation-request-id": [ + "fecd2983-15bf-4cdb-9272-8e97d342cc1d" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T162202Z:fecd2983-15bf-4cdb-9272-8e97d342cc1d" + ], + "Date": [ + "Mon, 16 May 2022 16:22:02 GMT" + ], + "Content-Length": [ + "820" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/6dfd01fc-789f-490f-9bdd-fdf4ef407136\",\r\n \"name\": \"6dfd01fc-789f-490f-9bdd-fdf4ef407136\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT21.5356658S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"Storage\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"File Share Name\": \"fs1\",\r\n \"Storage Account Name\": \"pstestsa8895\"\r\n }\r\n },\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"DeleteBackupData\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-05-16T15:39:10.8836722Z\",\r\n \"endTime\": \"2022-05-16T15:39:32.419338Z\",\r\n \"activityId\": \"1a26be24-7700-401a-9a76-67079a5f06ac\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/6dfd01fc-789f-490f-9bdd-fdf4ef407136?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy82ZGZkMDFmYy03ODlmLTQ5MGYtOWJkZC1mZGY0ZWY0MDcxMzY/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "dce585be-af1e-48aa-9f29-3bc9b9f5bfbf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.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": [ + "5f9647a5-4365-4339-939f-4909a6feff5f" + ], + "x-ms-client-request-id": [ + "dce585be-af1e-48aa-9f29-3bc9b9f5bfbf", + "dce585be-af1e-48aa-9f29-3bc9b9f5bfbf" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "242" + ], + "x-ms-correlation-request-id": [ + "5f9647a5-4365-4339-939f-4909a6feff5f" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T162203Z:5f9647a5-4365-4339-939f-4909a6feff5f" + ], + "Date": [ + "Mon, 16 May 2022 16:22:02 GMT" + ], + "Content-Length": [ + "820" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/6dfd01fc-789f-490f-9bdd-fdf4ef407136\",\r\n \"name\": \"6dfd01fc-789f-490f-9bdd-fdf4ef407136\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT21.5356658S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"Storage\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"File Share Name\": \"fs1\",\r\n \"Storage Account Name\": \"pstestsa8895\"\r\n }\r\n },\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"DeleteBackupData\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-05-16T15:39:10.8836722Z\",\r\n \"endTime\": \"2022-05-16T15:39:32.419338Z\",\r\n \"activityId\": \"1a26be24-7700-401a-9a76-67079a5f06ac\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/c1c539cf-b399-4a31-839c-c246999fbb4d?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9jMWM1MzljZi1iMzk5LTRhMzEtODM5Yy1jMjQ2OTk5ZmJiNGQ/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "28ebf058-57e2-48a2-bb3b-bc6d2d6a0bc6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.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": [ + "1e369ce6-dbbd-4ebb-8e07-de08c0f48ecb" + ], + "x-ms-client-request-id": [ + "28ebf058-57e2-48a2-bb3b-bc6d2d6a0bc6", + "28ebf058-57e2-48a2-bb3b-bc6d2d6a0bc6" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "241" + ], + "x-ms-correlation-request-id": [ + "1e369ce6-dbbd-4ebb-8e07-de08c0f48ecb" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T162203Z:1e369ce6-dbbd-4ebb-8e07-de08c0f48ecb" + ], + "Date": [ + "Mon, 16 May 2022 16:22:03 GMT" + ], + "Content-Length": [ + "847" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/c1c539cf-b399-4a31-839c-c246999fbb4d\",\r\n \"name\": \"c1c539cf-b399-4a31-839c-c246999fbb4d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT34.0089341S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"Storage\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"File Share Name\": \"fs1\",\r\n \"Storage Account Name\": \"pstestsa8895\",\r\n \"Policy Name\": \"afspolicy1\"\r\n }\r\n },\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"ConfigureBackup\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-05-16T15:38:30.0656373Z\",\r\n \"endTime\": \"2022-05-16T15:39:04.0745714Z\",\r\n \"activityId\": \"f25f9579-d774-488b-b0d1-c6a4280c455e\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/c1c539cf-b399-4a31-839c-c246999fbb4d?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9jMWM1MzljZi1iMzk5LTRhMzEtODM5Yy1jMjQ2OTk5ZmJiNGQ/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ffe220cd-2500-49cc-80f5-5a287f364ede" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.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": [ + "bd13711a-9a47-4ebc-af26-206c39bdf53d" + ], + "x-ms-client-request-id": [ + "ffe220cd-2500-49cc-80f5-5a287f364ede", + "ffe220cd-2500-49cc-80f5-5a287f364ede" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "240" + ], + "x-ms-correlation-request-id": [ + "bd13711a-9a47-4ebc-af26-206c39bdf53d" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T162204Z:bd13711a-9a47-4ebc-af26-206c39bdf53d" + ], + "Date": [ + "Mon, 16 May 2022 16:22:03 GMT" + ], + "Content-Length": [ + "847" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/c1c539cf-b399-4a31-839c-c246999fbb4d\",\r\n \"name\": \"c1c539cf-b399-4a31-839c-c246999fbb4d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT34.0089341S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"Storage\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"File Share Name\": \"fs1\",\r\n \"Storage Account Name\": \"pstestsa8895\",\r\n \"Policy Name\": \"afspolicy1\"\r\n }\r\n },\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"ConfigureBackup\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-05-16T15:38:30.0656373Z\",\r\n \"endTime\": \"2022-05-16T15:39:04.0745714Z\",\r\n \"activityId\": \"f25f9579-d774-488b-b0d1-c6a4280c455e\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/0c080175-50a3-4f22-a95f-7a7fee009850?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy8wYzA4MDE3NS01MGEzLTRmMjItYTk1Zi03YTdmZWUwMDk4NTA/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b74ce416-2a59-45ab-a92e-fda83f4cd3bf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.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": [ + "1ddb0eb8-fbc0-4dc5-b654-ca0ee9d4f5d8" + ], + "x-ms-client-request-id": [ + "b74ce416-2a59-45ab-a92e-fda83f4cd3bf", + "b74ce416-2a59-45ab-a92e-fda83f4cd3bf" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "239" + ], + "x-ms-correlation-request-id": [ + "1ddb0eb8-fbc0-4dc5-b654-ca0ee9d4f5d8" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T162204Z:1ddb0eb8-fbc0-4dc5-b654-ca0ee9d4f5d8" + ], + "Date": [ + "Mon, 16 May 2022 16:22:04 GMT" + ], + "Content-Length": [ + "797" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/0c080175-50a3-4f22-a95f-7a7fee009850\",\r\n \"name\": \"0c080175-50a3-4f22-a95f-7a7fee009850\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT13.040123S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"Storage\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Storage Account Name\": \"pstestsa8895\"\r\n }\r\n },\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"pstestsa8895\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Register\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-05-16T15:38:04.8606404Z\",\r\n \"endTime\": \"2022-05-16T15:38:17.9007634Z\",\r\n \"activityId\": \"f25f9579-d774-488b-b0d1-c6a4280c455e\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/0c080175-50a3-4f22-a95f-7a7fee009850?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy8wYzA4MDE3NS01MGEzLTRmMjItYTk1Zi03YTdmZWUwMDk4NTA/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "dd8d99a1-d803-4b59-a465-f774fde5a764" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.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": [ + "4279dbd2-3007-44b2-bef4-e11b8488d945" + ], + "x-ms-client-request-id": [ + "dd8d99a1-d803-4b59-a465-f774fde5a764", + "dd8d99a1-d803-4b59-a465-f774fde5a764" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "238" + ], + "x-ms-correlation-request-id": [ + "4279dbd2-3007-44b2-bef4-e11b8488d945" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T162205Z:4279dbd2-3007-44b2-bef4-e11b8488d945" + ], + "Date": [ + "Mon, 16 May 2022 16:22:04 GMT" + ], + "Content-Length": [ + "797" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/0c080175-50a3-4f22-a95f-7a7fee009850\",\r\n \"name\": \"0c080175-50a3-4f22-a95f-7a7fee009850\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT13.040123S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"Storage\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Storage Account Name\": \"pstestsa8895\"\r\n }\r\n },\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"pstestsa8895\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Register\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-05-16T15:38:04.8606404Z\",\r\n \"endTime\": \"2022-05-16T15:38:17.9007634Z\",\r\n \"activityId\": \"f25f9579-d774-488b-b0d1-c6a4280c455e\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/ee51cce2-20bc-426f-b676-71799a45cb37?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lZTUxY2NlMi0yMGJjLTQyNmYtYjY3Ni03MTc5OWE0NWNiMzc/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "64605c86-ab90-49e5-9e4e-8cb73914dc93" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.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": [ + "fff94383-df87-44ee-94be-7de4d0267717" + ], + "x-ms-client-request-id": [ + "64605c86-ab90-49e5-9e4e-8cb73914dc93", + "64605c86-ab90-49e5-9e4e-8cb73914dc93" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "237" + ], + "x-ms-correlation-request-id": [ + "fff94383-df87-44ee-94be-7de4d0267717" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T162205Z:fff94383-df87-44ee-94be-7de4d0267717" + ], + "Date": [ + "Mon, 16 May 2022 16:22:05 GMT" + ], + "Content-Length": [ + "800" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/ee51cce2-20bc-426f-b676-71799a45cb37\",\r\n \"name\": \"ee51cce2-20bc-426f-b676-71799a45cb37\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT34.8024662S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"Storage\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Storage Account Name\": \"pstestsa8895\"\r\n }\r\n },\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"pstestsa8895\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"UnRegister\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-05-16T15:34:58.5265234Z\",\r\n \"endTime\": \"2022-05-16T15:35:33.3289896Z\",\r\n \"activityId\": \"0358961b-b7b9-44c6-bf04-ec1dc3248c83\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/ee51cce2-20bc-426f-b676-71799a45cb37?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lZTUxY2NlMi0yMGJjLTQyNmYtYjY3Ni03MTc5OWE0NWNiMzc/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "44a76dba-fa3d-4dfd-9c77-64d6a66420e6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.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": [ + "d790e2f0-e520-4cf0-bf16-ff1aa106963a" + ], + "x-ms-client-request-id": [ + "44a76dba-fa3d-4dfd-9c77-64d6a66420e6", + "44a76dba-fa3d-4dfd-9c77-64d6a66420e6" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "236" + ], + "x-ms-correlation-request-id": [ + "d790e2f0-e520-4cf0-bf16-ff1aa106963a" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T162205Z:d790e2f0-e520-4cf0-bf16-ff1aa106963a" + ], + "Date": [ + "Mon, 16 May 2022 16:22:05 GMT" + ], + "Content-Length": [ + "800" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/ee51cce2-20bc-426f-b676-71799a45cb37\",\r\n \"name\": \"ee51cce2-20bc-426f-b676-71799a45cb37\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT34.8024662S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"Storage\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Storage Account Name\": \"pstestsa8895\"\r\n }\r\n },\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"pstestsa8895\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"UnRegister\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-05-16T15:34:58.5265234Z\",\r\n \"endTime\": \"2022-05-16T15:35:33.3289896Z\",\r\n \"activityId\": \"0358961b-b7b9-44c6-bf04-ec1dc3248c83\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/8bef072b-c56b-4123-8c14-0369184641bf?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy84YmVmMDcyYi1jNTZiLTQxMjMtOGMxNC0wMzY5MTg0NjQxYmY/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4b57f744-6934-4984-8d7a-b1945865074e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.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": [ + "6d80dc82-7cce-4357-baa8-f7e08266c263" + ], + "x-ms-client-request-id": [ + "4b57f744-6934-4984-8d7a-b1945865074e", + "4b57f744-6934-4984-8d7a-b1945865074e" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "235" + ], + "x-ms-correlation-request-id": [ + "6d80dc82-7cce-4357-baa8-f7e08266c263" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T162206Z:6d80dc82-7cce-4357-baa8-f7e08266c263" + ], + "Date": [ + "Mon, 16 May 2022 16:22:06 GMT" + ], + "Content-Length": [ + "820" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/8bef072b-c56b-4123-8c14-0369184641bf\",\r\n \"name\": \"8bef072b-c56b-4123-8c14-0369184641bf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT22.369743S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"Storage\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"File Share Name\": \"fs1\",\r\n \"Storage Account Name\": \"pstestsa8895\"\r\n }\r\n },\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"DeleteBackupData\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-05-16T15:34:33.9302828Z\",\r\n \"endTime\": \"2022-05-16T15:34:56.3000258Z\",\r\n \"activityId\": \"277f52a0-5b87-4429-8f3b-bfaecde047bc\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/8bef072b-c56b-4123-8c14-0369184641bf?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy84YmVmMDcyYi1jNTZiLTQxMjMtOGMxNC0wMzY5MTg0NjQxYmY/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8a3f3b4d-33f2-4972-bb65-d2e9214b0f45" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.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": [ + "e7a3f741-368b-49a0-9706-0e97b0a90f2f" + ], + "x-ms-client-request-id": [ + "8a3f3b4d-33f2-4972-bb65-d2e9214b0f45", + "8a3f3b4d-33f2-4972-bb65-d2e9214b0f45" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "234" + ], + "x-ms-correlation-request-id": [ + "e7a3f741-368b-49a0-9706-0e97b0a90f2f" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T162207Z:e7a3f741-368b-49a0-9706-0e97b0a90f2f" + ], + "Date": [ + "Mon, 16 May 2022 16:22:06 GMT" + ], + "Content-Length": [ + "820" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/8bef072b-c56b-4123-8c14-0369184641bf\",\r\n \"name\": \"8bef072b-c56b-4123-8c14-0369184641bf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT22.369743S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"Storage\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"File Share Name\": \"fs1\",\r\n \"Storage Account Name\": \"pstestsa8895\"\r\n }\r\n },\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"DeleteBackupData\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-05-16T15:34:33.9302828Z\",\r\n \"endTime\": \"2022-05-16T15:34:56.3000258Z\",\r\n \"activityId\": \"277f52a0-5b87-4429-8f3b-bfaecde047bc\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/7233e37c-bdcd-4e34-8f65-8f7d13366141?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy83MjMzZTM3Yy1iZGNkLTRlMzQtOGY2NS04ZjdkMTMzNjYxNDE/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b0aec83c-c248-4470-a5ff-5d8e55362ccd" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.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": [ + "34b52f16-8800-48ce-b525-a6069d660c13" + ], + "x-ms-client-request-id": [ + "b0aec83c-c248-4470-a5ff-5d8e55362ccd", + "b0aec83c-c248-4470-a5ff-5d8e55362ccd" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "233" + ], + "x-ms-correlation-request-id": [ + "34b52f16-8800-48ce-b525-a6069d660c13" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T162207Z:34b52f16-8800-48ce-b525-a6069d660c13" + ], + "Date": [ + "Mon, 16 May 2022 16:22:07 GMT" + ], + "Content-Length": [ + "847" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/7233e37c-bdcd-4e34-8f65-8f7d13366141\",\r\n \"name\": \"7233e37c-bdcd-4e34-8f65-8f7d13366141\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT33.5924426S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"Storage\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"File Share Name\": \"fs1\",\r\n \"Storage Account Name\": \"pstestsa8895\",\r\n \"Policy Name\": \"afspolicy1\"\r\n }\r\n },\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"ConfigureBackup\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-05-16T15:33:44.4505291Z\",\r\n \"endTime\": \"2022-05-16T15:34:18.0429717Z\",\r\n \"activityId\": \"a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/7233e37c-bdcd-4e34-8f65-8f7d13366141?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy83MjMzZTM3Yy1iZGNkLTRlMzQtOGY2NS04ZjdkMTMzNjYxNDE/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "57b719ee-dd54-460a-a500-40fcbaf1c42b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.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": [ + "8a779d40-05ec-40f8-83c5-4363b75b064f" + ], + "x-ms-client-request-id": [ + "57b719ee-dd54-460a-a500-40fcbaf1c42b", + "57b719ee-dd54-460a-a500-40fcbaf1c42b" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "232" + ], + "x-ms-correlation-request-id": [ + "8a779d40-05ec-40f8-83c5-4363b75b064f" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T162208Z:8a779d40-05ec-40f8-83c5-4363b75b064f" + ], + "Date": [ + "Mon, 16 May 2022 16:22:07 GMT" + ], + "Content-Length": [ + "847" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/7233e37c-bdcd-4e34-8f65-8f7d13366141\",\r\n \"name\": \"7233e37c-bdcd-4e34-8f65-8f7d13366141\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT33.5924426S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"Storage\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"File Share Name\": \"fs1\",\r\n \"Storage Account Name\": \"pstestsa8895\",\r\n \"Policy Name\": \"afspolicy1\"\r\n }\r\n },\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"ConfigureBackup\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-05-16T15:33:44.4505291Z\",\r\n \"endTime\": \"2022-05-16T15:34:18.0429717Z\",\r\n \"activityId\": \"a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e202b571-e59b-476a-be2f-c97bda562ec4?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lMjAyYjU3MS1lNTliLTQ3NmEtYmUyZi1jOTdiZGE1NjJlYzQ/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8dac91c2-0f18-4d60-ac0d-61a664846fb6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.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": [ + "4b8c1d49-0772-4af3-9964-31140ee861bd" + ], + "x-ms-client-request-id": [ + "8dac91c2-0f18-4d60-ac0d-61a664846fb6", + "8dac91c2-0f18-4d60-ac0d-61a664846fb6" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "231" + ], + "x-ms-correlation-request-id": [ + "4b8c1d49-0772-4af3-9964-31140ee861bd" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T162208Z:4b8c1d49-0772-4af3-9964-31140ee861bd" + ], + "Date": [ + "Mon, 16 May 2022 16:22:07 GMT" + ], + "Content-Length": [ + "797" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e202b571-e59b-476a-be2f-c97bda562ec4\",\r\n \"name\": \"e202b571-e59b-476a-be2f-c97bda562ec4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT25.9778645S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"Storage\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Storage Account Name\": \"pstestsa8895\"\r\n }\r\n },\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"pstestsa8895\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Register\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-05-16T15:33:14.468951Z\",\r\n \"endTime\": \"2022-05-16T15:33:40.4468155Z\",\r\n \"activityId\": \"a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e202b571-e59b-476a-be2f-c97bda562ec4?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lMjAyYjU3MS1lNTliLTQ3NmEtYmUyZi1jOTdiZGE1NjJlYzQ/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fa593751-8bc4-4666-9175-1d397caf27f1" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.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": [ + "351bf8ff-2274-400f-810a-0736dce88e3d" + ], + "x-ms-client-request-id": [ + "fa593751-8bc4-4666-9175-1d397caf27f1", + "fa593751-8bc4-4666-9175-1d397caf27f1" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "230" + ], + "x-ms-correlation-request-id": [ + "351bf8ff-2274-400f-810a-0736dce88e3d" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T162208Z:351bf8ff-2274-400f-810a-0736dce88e3d" + ], + "Date": [ + "Mon, 16 May 2022 16:22:08 GMT" + ], + "Content-Length": [ + "797" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e202b571-e59b-476a-be2f-c97bda562ec4\",\r\n \"name\": \"e202b571-e59b-476a-be2f-c97bda562ec4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT25.9778645S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"Storage\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Storage Account Name\": \"pstestsa8895\"\r\n }\r\n },\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"pstestsa8895\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Register\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-05-16T15:33:14.468951Z\",\r\n \"endTime\": \"2022-05-16T15:33:40.4468155Z\",\r\n \"activityId\": \"a2b6d2b0-0786-4ec9-9dd1-49585fe8c36f\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3Bstorage%3Bpstestrg8895%3Bpstestsa8895/protectedItems/AzureFileShare%3B698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959/recoveryPoints?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCc3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9wcm90ZWN0ZWRJdGVtcy9BenVyZUZpbGVTaGFyZSUzQjY5OGRmNTk1OTQ4ZTIzNTVmMmJiNzQ0YTQxY2YyNDVkNGJhMTI1NWQ5Njk5Y2MzYzJhZDFmNTA0NWUxNzc5NTkvcmVjb3ZlcnlQb2ludHM/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4da1b0ef-5a68-4228-86f4-a2b7b6c60a54" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "95d8bc03-37a9-4a45-8130-2d8aad0a0950" + ], + "x-ms-client-request-id": [ + "4da1b0ef-5a68-4228-86f4-a2b7b6c60a54", + "4da1b0ef-5a68-4228-86f4-a2b7b6c60a54" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "299" + ], + "x-ms-correlation-request-id": [ + "95d8bc03-37a9-4a45-8130-2d8aad0a0950" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T162210Z:95d8bc03-37a9-4a45-8130-2d8aad0a0950" + ], + "Date": [ + "Mon, 16 May 2022 16:22:09 GMT" + ], + "Content-Length": [ + "12" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupResourceGuardProxies?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwUmVzb3VyY2VHdWFyZFByb3hpZXM/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4da1b0ef-5a68-4228-86f4-a2b7b6c60a54" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "2d9d5781-30ef-4027-81e1-aafe593229e8" + ], + "x-ms-client-request-id": [ + "4da1b0ef-5a68-4228-86f4-a2b7b6c60a54", + "4da1b0ef-5a68-4228-86f4-a2b7b6c60a54" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "2d9d5781-30ef-4027-81e1-aafe593229e8" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T162210Z:2d9d5781-30ef-4027-81e1-aafe593229e8" + ], + "Date": [ + "Mon, 16 May 2022 16:22:10 GMT" + ], + "Content-Length": [ + "12" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3Bstorage%3Bpstestrg8895%3Bpstestsa8895/protectedItems/AzureFileShare%3B698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCc3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9wcm90ZWN0ZWRJdGVtcy9BenVyZUZpbGVTaGFyZSUzQjY5OGRmNTk1OTQ4ZTIzNTVmMmJiNzQ0YTQxY2YyNDVkNGJhMTI1NWQ5Njk5Y2MzYzJhZDFmNTA0NWUxNzc5NTk/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4da1b0ef-5a68-4228-86f4-a2b7b6c60a54" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperationResults/360206a9-f8a2-4854-88f9-00b0f5fd7166?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/360206a9-f8a2-4854-88f9-00b0f5fd7166?api-version=2022-02-01" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "b125f970-8c89-4167-9cc7-4582cb3a160f" + ], + "x-ms-client-request-id": [ + "4da1b0ef-5a68-4228-86f4-a2b7b6c60a54", + "4da1b0ef-5a68-4228-86f4-a2b7b6c60a54" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-correlation-request-id": [ + "b125f970-8c89-4167-9cc7-4582cb3a160f" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T162211Z:b125f970-8c89-4167-9cc7-4582cb3a160f" + ], + "Date": [ + "Mon, 16 May 2022 16:22:11 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/360206a9-f8a2-4854-88f9-00b0f5fd7166?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy8zNjAyMDZhOS1mOGEyLTQ4NTQtODhmOS0wMGIwZjVmZDcxNjY/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4da1b0ef-5a68-4228-86f4-a2b7b6c60a54" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "eb7ceeb8-fada-4475-ada0-b536a636b696" + ], + "x-ms-client-request-id": [ + "4da1b0ef-5a68-4228-86f4-a2b7b6c60a54", + "4da1b0ef-5a68-4228-86f4-a2b7b6c60a54" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "231" + ], + "x-ms-correlation-request-id": [ + "eb7ceeb8-fada-4475-ada0-b536a636b696" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T162212Z:eb7ceeb8-fada-4475-ada0-b536a636b696" + ], + "Date": [ + "Mon, 16 May 2022 16:22:11 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"360206a9-f8a2-4854-88f9-00b0f5fd7166\",\r\n \"name\": \"360206a9-f8a2-4854-88f9-00b0f5fd7166\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T16:22:11.4192676Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/360206a9-f8a2-4854-88f9-00b0f5fd7166?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy8zNjAyMDZhOS1mOGEyLTQ4NTQtODhmOS0wMGIwZjVmZDcxNjY/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4da1b0ef-5a68-4228-86f4-a2b7b6c60a54" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "a3887800-680b-4ad6-9ca6-8c0acdbe90f7" + ], + "x-ms-client-request-id": [ + "4da1b0ef-5a68-4228-86f4-a2b7b6c60a54", + "4da1b0ef-5a68-4228-86f4-a2b7b6c60a54" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "230" + ], + "x-ms-correlation-request-id": [ + "a3887800-680b-4ad6-9ca6-8c0acdbe90f7" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T162212Z:a3887800-680b-4ad6-9ca6-8c0acdbe90f7" + ], + "Date": [ + "Mon, 16 May 2022 16:22:12 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"360206a9-f8a2-4854-88f9-00b0f5fd7166\",\r\n \"name\": \"360206a9-f8a2-4854-88f9-00b0f5fd7166\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T16:22:11.4192676Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/360206a9-f8a2-4854-88f9-00b0f5fd7166?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy8zNjAyMDZhOS1mOGEyLTQ4NTQtODhmOS0wMGIwZjVmZDcxNjY/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4da1b0ef-5a68-4228-86f4-a2b7b6c60a54" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "58d2fade-e1e3-4f8f-8a19-28ae7701fa1b" + ], + "x-ms-client-request-id": [ + "4da1b0ef-5a68-4228-86f4-a2b7b6c60a54", + "4da1b0ef-5a68-4228-86f4-a2b7b6c60a54" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "229" + ], + "x-ms-correlation-request-id": [ + "58d2fade-e1e3-4f8f-8a19-28ae7701fa1b" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T162213Z:58d2fade-e1e3-4f8f-8a19-28ae7701fa1b" + ], + "Date": [ + "Mon, 16 May 2022 16:22:12 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"360206a9-f8a2-4854-88f9-00b0f5fd7166\",\r\n \"name\": \"360206a9-f8a2-4854-88f9-00b0f5fd7166\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T16:22:11.4192676Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/360206a9-f8a2-4854-88f9-00b0f5fd7166?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy8zNjAyMDZhOS1mOGEyLTQ4NTQtODhmOS0wMGIwZjVmZDcxNjY/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4da1b0ef-5a68-4228-86f4-a2b7b6c60a54" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "04598180-7189-486c-813b-775d37033f8e" + ], + "x-ms-client-request-id": [ + "4da1b0ef-5a68-4228-86f4-a2b7b6c60a54", + "4da1b0ef-5a68-4228-86f4-a2b7b6c60a54" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "228" + ], + "x-ms-correlation-request-id": [ + "04598180-7189-486c-813b-775d37033f8e" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T162213Z:04598180-7189-486c-813b-775d37033f8e" + ], + "Date": [ + "Mon, 16 May 2022 16:22:13 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"360206a9-f8a2-4854-88f9-00b0f5fd7166\",\r\n \"name\": \"360206a9-f8a2-4854-88f9-00b0f5fd7166\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T16:22:11.4192676Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/360206a9-f8a2-4854-88f9-00b0f5fd7166?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy8zNjAyMDZhOS1mOGEyLTQ4NTQtODhmOS0wMGIwZjVmZDcxNjY/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4da1b0ef-5a68-4228-86f4-a2b7b6c60a54" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "59b3409d-90ac-4f49-9219-0c3e6ed662f9" + ], + "x-ms-client-request-id": [ + "4da1b0ef-5a68-4228-86f4-a2b7b6c60a54", + "4da1b0ef-5a68-4228-86f4-a2b7b6c60a54" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "227" + ], + "x-ms-correlation-request-id": [ + "59b3409d-90ac-4f49-9219-0c3e6ed662f9" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T162214Z:59b3409d-90ac-4f49-9219-0c3e6ed662f9" + ], + "Date": [ + "Mon, 16 May 2022 16:22:13 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"360206a9-f8a2-4854-88f9-00b0f5fd7166\",\r\n \"name\": \"360206a9-f8a2-4854-88f9-00b0f5fd7166\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T16:22:11.4192676Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/360206a9-f8a2-4854-88f9-00b0f5fd7166?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy8zNjAyMDZhOS1mOGEyLTQ4NTQtODhmOS0wMGIwZjVmZDcxNjY/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4da1b0ef-5a68-4228-86f4-a2b7b6c60a54" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "f68656be-87f0-4f2b-a008-d0bfd44d6a40" + ], + "x-ms-client-request-id": [ + "4da1b0ef-5a68-4228-86f4-a2b7b6c60a54", + "4da1b0ef-5a68-4228-86f4-a2b7b6c60a54" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "226" + ], + "x-ms-correlation-request-id": [ + "f68656be-87f0-4f2b-a008-d0bfd44d6a40" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T162214Z:f68656be-87f0-4f2b-a008-d0bfd44d6a40" + ], + "Date": [ + "Mon, 16 May 2022 16:22:14 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"360206a9-f8a2-4854-88f9-00b0f5fd7166\",\r\n \"name\": \"360206a9-f8a2-4854-88f9-00b0f5fd7166\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T16:22:11.4192676Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/360206a9-f8a2-4854-88f9-00b0f5fd7166?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy8zNjAyMDZhOS1mOGEyLTQ4NTQtODhmOS0wMGIwZjVmZDcxNjY/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4da1b0ef-5a68-4228-86f4-a2b7b6c60a54" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "49fbbaf7-88cf-4085-8371-b56c5f020af3" + ], + "x-ms-client-request-id": [ + "4da1b0ef-5a68-4228-86f4-a2b7b6c60a54", + "4da1b0ef-5a68-4228-86f4-a2b7b6c60a54" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "225" + ], + "x-ms-correlation-request-id": [ + "49fbbaf7-88cf-4085-8371-b56c5f020af3" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T162215Z:49fbbaf7-88cf-4085-8371-b56c5f020af3" + ], + "Date": [ + "Mon, 16 May 2022 16:22:14 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"360206a9-f8a2-4854-88f9-00b0f5fd7166\",\r\n \"name\": \"360206a9-f8a2-4854-88f9-00b0f5fd7166\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T16:22:11.4192676Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/360206a9-f8a2-4854-88f9-00b0f5fd7166?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy8zNjAyMDZhOS1mOGEyLTQ4NTQtODhmOS0wMGIwZjVmZDcxNjY/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4da1b0ef-5a68-4228-86f4-a2b7b6c60a54" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "c7076d94-d23c-4a2e-bfd2-4ff29a7d1bcf" + ], + "x-ms-client-request-id": [ + "4da1b0ef-5a68-4228-86f4-a2b7b6c60a54", + "4da1b0ef-5a68-4228-86f4-a2b7b6c60a54" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "224" + ], + "x-ms-correlation-request-id": [ + "c7076d94-d23c-4a2e-bfd2-4ff29a7d1bcf" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T162215Z:c7076d94-d23c-4a2e-bfd2-4ff29a7d1bcf" + ], + "Date": [ + "Mon, 16 May 2022 16:22:15 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"360206a9-f8a2-4854-88f9-00b0f5fd7166\",\r\n \"name\": \"360206a9-f8a2-4854-88f9-00b0f5fd7166\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T16:22:11.4192676Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/360206a9-f8a2-4854-88f9-00b0f5fd7166?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy8zNjAyMDZhOS1mOGEyLTQ4NTQtODhmOS0wMGIwZjVmZDcxNjY/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4da1b0ef-5a68-4228-86f4-a2b7b6c60a54" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "ddf96144-3d6f-42b5-b53d-0093dc572339" + ], + "x-ms-client-request-id": [ + "4da1b0ef-5a68-4228-86f4-a2b7b6c60a54", + "4da1b0ef-5a68-4228-86f4-a2b7b6c60a54" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "223" + ], + "x-ms-correlation-request-id": [ + "ddf96144-3d6f-42b5-b53d-0093dc572339" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T162216Z:ddf96144-3d6f-42b5-b53d-0093dc572339" + ], + "Date": [ + "Mon, 16 May 2022 16:22:15 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"360206a9-f8a2-4854-88f9-00b0f5fd7166\",\r\n \"name\": \"360206a9-f8a2-4854-88f9-00b0f5fd7166\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T16:22:11.4192676Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/360206a9-f8a2-4854-88f9-00b0f5fd7166?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy8zNjAyMDZhOS1mOGEyLTQ4NTQtODhmOS0wMGIwZjVmZDcxNjY/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4da1b0ef-5a68-4228-86f4-a2b7b6c60a54" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "78831ed4-7e4a-421d-9888-34e133557dc7" + ], + "x-ms-client-request-id": [ + "4da1b0ef-5a68-4228-86f4-a2b7b6c60a54", + "4da1b0ef-5a68-4228-86f4-a2b7b6c60a54" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "222" + ], + "x-ms-correlation-request-id": [ + "78831ed4-7e4a-421d-9888-34e133557dc7" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T162216Z:78831ed4-7e4a-421d-9888-34e133557dc7" + ], + "Date": [ + "Mon, 16 May 2022 16:22:16 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"360206a9-f8a2-4854-88f9-00b0f5fd7166\",\r\n \"name\": \"360206a9-f8a2-4854-88f9-00b0f5fd7166\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T16:22:11.4192676Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/360206a9-f8a2-4854-88f9-00b0f5fd7166?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy8zNjAyMDZhOS1mOGEyLTQ4NTQtODhmOS0wMGIwZjVmZDcxNjY/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4da1b0ef-5a68-4228-86f4-a2b7b6c60a54" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "f6a001c5-91cf-4967-9831-b6577e64c46a" + ], + "x-ms-client-request-id": [ + "4da1b0ef-5a68-4228-86f4-a2b7b6c60a54", + "4da1b0ef-5a68-4228-86f4-a2b7b6c60a54" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "221" + ], + "x-ms-correlation-request-id": [ + "f6a001c5-91cf-4967-9831-b6577e64c46a" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T162217Z:f6a001c5-91cf-4967-9831-b6577e64c46a" + ], + "Date": [ + "Mon, 16 May 2022 16:22:16 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"360206a9-f8a2-4854-88f9-00b0f5fd7166\",\r\n \"name\": \"360206a9-f8a2-4854-88f9-00b0f5fd7166\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T16:22:11.4192676Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/360206a9-f8a2-4854-88f9-00b0f5fd7166?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy8zNjAyMDZhOS1mOGEyLTQ4NTQtODhmOS0wMGIwZjVmZDcxNjY/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4da1b0ef-5a68-4228-86f4-a2b7b6c60a54" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "e1ecc78c-573f-4d06-94e7-6243d17878e6" + ], + "x-ms-client-request-id": [ + "4da1b0ef-5a68-4228-86f4-a2b7b6c60a54", + "4da1b0ef-5a68-4228-86f4-a2b7b6c60a54" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "220" + ], + "x-ms-correlation-request-id": [ + "e1ecc78c-573f-4d06-94e7-6243d17878e6" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T162217Z:e1ecc78c-573f-4d06-94e7-6243d17878e6" + ], + "Date": [ + "Mon, 16 May 2022 16:22:17 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"360206a9-f8a2-4854-88f9-00b0f5fd7166\",\r\n \"name\": \"360206a9-f8a2-4854-88f9-00b0f5fd7166\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T16:22:11.4192676Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/360206a9-f8a2-4854-88f9-00b0f5fd7166?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy8zNjAyMDZhOS1mOGEyLTQ4NTQtODhmOS0wMGIwZjVmZDcxNjY/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4da1b0ef-5a68-4228-86f4-a2b7b6c60a54" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "58b945f3-63e1-4809-bf19-155a30cabc0d" + ], + "x-ms-client-request-id": [ + "4da1b0ef-5a68-4228-86f4-a2b7b6c60a54", + "4da1b0ef-5a68-4228-86f4-a2b7b6c60a54" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "219" + ], + "x-ms-correlation-request-id": [ + "58b945f3-63e1-4809-bf19-155a30cabc0d" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T162218Z:58b945f3-63e1-4809-bf19-155a30cabc0d" + ], + "Date": [ + "Mon, 16 May 2022 16:22:17 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"360206a9-f8a2-4854-88f9-00b0f5fd7166\",\r\n \"name\": \"360206a9-f8a2-4854-88f9-00b0f5fd7166\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T16:22:11.4192676Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/360206a9-f8a2-4854-88f9-00b0f5fd7166?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy8zNjAyMDZhOS1mOGEyLTQ4NTQtODhmOS0wMGIwZjVmZDcxNjY/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4da1b0ef-5a68-4228-86f4-a2b7b6c60a54" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "d6faa15b-ed23-49eb-883a-fed12a22d6ed" + ], + "x-ms-client-request-id": [ + "4da1b0ef-5a68-4228-86f4-a2b7b6c60a54", + "4da1b0ef-5a68-4228-86f4-a2b7b6c60a54" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "218" + ], + "x-ms-correlation-request-id": [ + "d6faa15b-ed23-49eb-883a-fed12a22d6ed" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T162218Z:d6faa15b-ed23-49eb-883a-fed12a22d6ed" + ], + "Date": [ + "Mon, 16 May 2022 16:22:18 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"360206a9-f8a2-4854-88f9-00b0f5fd7166\",\r\n \"name\": \"360206a9-f8a2-4854-88f9-00b0f5fd7166\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T16:22:11.4192676Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/360206a9-f8a2-4854-88f9-00b0f5fd7166?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy8zNjAyMDZhOS1mOGEyLTQ4NTQtODhmOS0wMGIwZjVmZDcxNjY/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4da1b0ef-5a68-4228-86f4-a2b7b6c60a54" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "6e787469-637a-4d45-9103-4ff7b88a5ed0" + ], + "x-ms-client-request-id": [ + "4da1b0ef-5a68-4228-86f4-a2b7b6c60a54", + "4da1b0ef-5a68-4228-86f4-a2b7b6c60a54" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "217" + ], + "x-ms-correlation-request-id": [ + "6e787469-637a-4d45-9103-4ff7b88a5ed0" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T162219Z:6e787469-637a-4d45-9103-4ff7b88a5ed0" + ], + "Date": [ + "Mon, 16 May 2022 16:22:18 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"360206a9-f8a2-4854-88f9-00b0f5fd7166\",\r\n \"name\": \"360206a9-f8a2-4854-88f9-00b0f5fd7166\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T16:22:11.4192676Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/360206a9-f8a2-4854-88f9-00b0f5fd7166?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy8zNjAyMDZhOS1mOGEyLTQ4NTQtODhmOS0wMGIwZjVmZDcxNjY/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4da1b0ef-5a68-4228-86f4-a2b7b6c60a54" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "ab09b157-a801-4ed7-9051-359a5946c0bd" + ], + "x-ms-client-request-id": [ + "4da1b0ef-5a68-4228-86f4-a2b7b6c60a54", + "4da1b0ef-5a68-4228-86f4-a2b7b6c60a54" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "216" + ], + "x-ms-correlation-request-id": [ + "ab09b157-a801-4ed7-9051-359a5946c0bd" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T162219Z:ab09b157-a801-4ed7-9051-359a5946c0bd" + ], + "Date": [ + "Mon, 16 May 2022 16:22:19 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"360206a9-f8a2-4854-88f9-00b0f5fd7166\",\r\n \"name\": \"360206a9-f8a2-4854-88f9-00b0f5fd7166\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T16:22:11.4192676Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/360206a9-f8a2-4854-88f9-00b0f5fd7166?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy8zNjAyMDZhOS1mOGEyLTQ4NTQtODhmOS0wMGIwZjVmZDcxNjY/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4da1b0ef-5a68-4228-86f4-a2b7b6c60a54" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "918ca525-abd0-475c-b383-636625c7eaab" + ], + "x-ms-client-request-id": [ + "4da1b0ef-5a68-4228-86f4-a2b7b6c60a54", + "4da1b0ef-5a68-4228-86f4-a2b7b6c60a54" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "215" + ], + "x-ms-correlation-request-id": [ + "918ca525-abd0-475c-b383-636625c7eaab" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T162220Z:918ca525-abd0-475c-b383-636625c7eaab" + ], + "Date": [ + "Mon, 16 May 2022 16:22:19 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"360206a9-f8a2-4854-88f9-00b0f5fd7166\",\r\n \"name\": \"360206a9-f8a2-4854-88f9-00b0f5fd7166\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T16:22:11.4192676Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/360206a9-f8a2-4854-88f9-00b0f5fd7166?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy8zNjAyMDZhOS1mOGEyLTQ4NTQtODhmOS0wMGIwZjVmZDcxNjY/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4da1b0ef-5a68-4228-86f4-a2b7b6c60a54" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "c42526c2-e8c4-4f5c-903f-d535a6e8b207" + ], + "x-ms-client-request-id": [ + "4da1b0ef-5a68-4228-86f4-a2b7b6c60a54", + "4da1b0ef-5a68-4228-86f4-a2b7b6c60a54" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "214" + ], + "x-ms-correlation-request-id": [ + "c42526c2-e8c4-4f5c-903f-d535a6e8b207" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T162220Z:c42526c2-e8c4-4f5c-903f-d535a6e8b207" + ], + "Date": [ + "Mon, 16 May 2022 16:22:20 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"360206a9-f8a2-4854-88f9-00b0f5fd7166\",\r\n \"name\": \"360206a9-f8a2-4854-88f9-00b0f5fd7166\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T16:22:11.4192676Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/360206a9-f8a2-4854-88f9-00b0f5fd7166?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy8zNjAyMDZhOS1mOGEyLTQ4NTQtODhmOS0wMGIwZjVmZDcxNjY/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4da1b0ef-5a68-4228-86f4-a2b7b6c60a54" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "021fe645-33bf-461a-9828-b06ddb88a62d" + ], + "x-ms-client-request-id": [ + "4da1b0ef-5a68-4228-86f4-a2b7b6c60a54", + "4da1b0ef-5a68-4228-86f4-a2b7b6c60a54" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "213" + ], + "x-ms-correlation-request-id": [ + "021fe645-33bf-461a-9828-b06ddb88a62d" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T162221Z:021fe645-33bf-461a-9828-b06ddb88a62d" + ], + "Date": [ + "Mon, 16 May 2022 16:22:20 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"360206a9-f8a2-4854-88f9-00b0f5fd7166\",\r\n \"name\": \"360206a9-f8a2-4854-88f9-00b0f5fd7166\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T16:22:11.4192676Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/360206a9-f8a2-4854-88f9-00b0f5fd7166?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy8zNjAyMDZhOS1mOGEyLTQ4NTQtODhmOS0wMGIwZjVmZDcxNjY/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4da1b0ef-5a68-4228-86f4-a2b7b6c60a54" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "4cbf0aff-40f8-493a-aef4-45b8bd4fb54b" + ], + "x-ms-client-request-id": [ + "4da1b0ef-5a68-4228-86f4-a2b7b6c60a54", + "4da1b0ef-5a68-4228-86f4-a2b7b6c60a54" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "212" + ], + "x-ms-correlation-request-id": [ + "4cbf0aff-40f8-493a-aef4-45b8bd4fb54b" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T162221Z:4cbf0aff-40f8-493a-aef4-45b8bd4fb54b" + ], + "Date": [ + "Mon, 16 May 2022 16:22:20 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"360206a9-f8a2-4854-88f9-00b0f5fd7166\",\r\n \"name\": \"360206a9-f8a2-4854-88f9-00b0f5fd7166\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T16:22:11.4192676Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/360206a9-f8a2-4854-88f9-00b0f5fd7166?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy8zNjAyMDZhOS1mOGEyLTQ4NTQtODhmOS0wMGIwZjVmZDcxNjY/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4da1b0ef-5a68-4228-86f4-a2b7b6c60a54" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "a10e0de4-ef33-461f-9fc8-7878414b4df6" + ], + "x-ms-client-request-id": [ + "4da1b0ef-5a68-4228-86f4-a2b7b6c60a54", + "4da1b0ef-5a68-4228-86f4-a2b7b6c60a54" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "211" + ], + "x-ms-correlation-request-id": [ + "a10e0de4-ef33-461f-9fc8-7878414b4df6" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T162222Z:a10e0de4-ef33-461f-9fc8-7878414b4df6" + ], + "Date": [ + "Mon, 16 May 2022 16:22:21 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"360206a9-f8a2-4854-88f9-00b0f5fd7166\",\r\n \"name\": \"360206a9-f8a2-4854-88f9-00b0f5fd7166\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T16:22:11.4192676Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/360206a9-f8a2-4854-88f9-00b0f5fd7166?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy8zNjAyMDZhOS1mOGEyLTQ4NTQtODhmOS0wMGIwZjVmZDcxNjY/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4da1b0ef-5a68-4228-86f4-a2b7b6c60a54" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "733fe541-861e-462f-9589-57e683f129e1" + ], + "x-ms-client-request-id": [ + "4da1b0ef-5a68-4228-86f4-a2b7b6c60a54", + "4da1b0ef-5a68-4228-86f4-a2b7b6c60a54" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "210" + ], + "x-ms-correlation-request-id": [ + "733fe541-861e-462f-9589-57e683f129e1" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T162222Z:733fe541-861e-462f-9589-57e683f129e1" + ], + "Date": [ + "Mon, 16 May 2022 16:22:22 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"360206a9-f8a2-4854-88f9-00b0f5fd7166\",\r\n \"name\": \"360206a9-f8a2-4854-88f9-00b0f5fd7166\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T16:22:11.4192676Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/360206a9-f8a2-4854-88f9-00b0f5fd7166?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy8zNjAyMDZhOS1mOGEyLTQ4NTQtODhmOS0wMGIwZjVmZDcxNjY/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4da1b0ef-5a68-4228-86f4-a2b7b6c60a54" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "debf1666-cff1-4861-982f-6849054491ed" + ], + "x-ms-client-request-id": [ + "4da1b0ef-5a68-4228-86f4-a2b7b6c60a54", + "4da1b0ef-5a68-4228-86f4-a2b7b6c60a54" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "209" + ], + "x-ms-correlation-request-id": [ + "debf1666-cff1-4861-982f-6849054491ed" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T162223Z:debf1666-cff1-4861-982f-6849054491ed" + ], + "Date": [ + "Mon, 16 May 2022 16:22:22 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"360206a9-f8a2-4854-88f9-00b0f5fd7166\",\r\n \"name\": \"360206a9-f8a2-4854-88f9-00b0f5fd7166\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T16:22:11.4192676Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/360206a9-f8a2-4854-88f9-00b0f5fd7166?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy8zNjAyMDZhOS1mOGEyLTQ4NTQtODhmOS0wMGIwZjVmZDcxNjY/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4da1b0ef-5a68-4228-86f4-a2b7b6c60a54" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "0e1a2c6e-8e12-45ba-9b22-7ded9d8815cd" + ], + "x-ms-client-request-id": [ + "4da1b0ef-5a68-4228-86f4-a2b7b6c60a54", + "4da1b0ef-5a68-4228-86f4-a2b7b6c60a54" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "208" + ], + "x-ms-correlation-request-id": [ + "0e1a2c6e-8e12-45ba-9b22-7ded9d8815cd" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T162223Z:0e1a2c6e-8e12-45ba-9b22-7ded9d8815cd" + ], + "Date": [ + "Mon, 16 May 2022 16:22:23 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"360206a9-f8a2-4854-88f9-00b0f5fd7166\",\r\n \"name\": \"360206a9-f8a2-4854-88f9-00b0f5fd7166\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T16:22:11.4192676Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/360206a9-f8a2-4854-88f9-00b0f5fd7166?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy8zNjAyMDZhOS1mOGEyLTQ4NTQtODhmOS0wMGIwZjVmZDcxNjY/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4da1b0ef-5a68-4228-86f4-a2b7b6c60a54" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "bd94090a-9d10-4e49-8473-dbf49f2896ad" + ], + "x-ms-client-request-id": [ + "4da1b0ef-5a68-4228-86f4-a2b7b6c60a54", + "4da1b0ef-5a68-4228-86f4-a2b7b6c60a54" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "207" + ], + "x-ms-correlation-request-id": [ + "bd94090a-9d10-4e49-8473-dbf49f2896ad" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T162224Z:bd94090a-9d10-4e49-8473-dbf49f2896ad" + ], + "Date": [ + "Mon, 16 May 2022 16:22:23 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"360206a9-f8a2-4854-88f9-00b0f5fd7166\",\r\n \"name\": \"360206a9-f8a2-4854-88f9-00b0f5fd7166\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T16:22:11.4192676Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/360206a9-f8a2-4854-88f9-00b0f5fd7166?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy8zNjAyMDZhOS1mOGEyLTQ4NTQtODhmOS0wMGIwZjVmZDcxNjY/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4da1b0ef-5a68-4228-86f4-a2b7b6c60a54" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "ec7d1869-42e0-4176-af18-43f12454e0e3" + ], + "x-ms-client-request-id": [ + "4da1b0ef-5a68-4228-86f4-a2b7b6c60a54", + "4da1b0ef-5a68-4228-86f4-a2b7b6c60a54" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "206" + ], + "x-ms-correlation-request-id": [ + "ec7d1869-42e0-4176-af18-43f12454e0e3" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T162224Z:ec7d1869-42e0-4176-af18-43f12454e0e3" + ], + "Date": [ + "Mon, 16 May 2022 16:22:24 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"360206a9-f8a2-4854-88f9-00b0f5fd7166\",\r\n \"name\": \"360206a9-f8a2-4854-88f9-00b0f5fd7166\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T16:22:11.4192676Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/360206a9-f8a2-4854-88f9-00b0f5fd7166?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy8zNjAyMDZhOS1mOGEyLTQ4NTQtODhmOS0wMGIwZjVmZDcxNjY/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4da1b0ef-5a68-4228-86f4-a2b7b6c60a54" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "72554d6e-382d-4625-92dc-45342f4f824b" + ], + "x-ms-client-request-id": [ + "4da1b0ef-5a68-4228-86f4-a2b7b6c60a54", + "4da1b0ef-5a68-4228-86f4-a2b7b6c60a54" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "205" + ], + "x-ms-correlation-request-id": [ + "72554d6e-382d-4625-92dc-45342f4f824b" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T162225Z:72554d6e-382d-4625-92dc-45342f4f824b" + ], + "Date": [ + "Mon, 16 May 2022 16:22:24 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"360206a9-f8a2-4854-88f9-00b0f5fd7166\",\r\n \"name\": \"360206a9-f8a2-4854-88f9-00b0f5fd7166\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T16:22:11.4192676Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/360206a9-f8a2-4854-88f9-00b0f5fd7166?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy8zNjAyMDZhOS1mOGEyLTQ4NTQtODhmOS0wMGIwZjVmZDcxNjY/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4da1b0ef-5a68-4228-86f4-a2b7b6c60a54" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "51fd31d6-3a81-4730-8e8f-7e8f65c46e8e" + ], + "x-ms-client-request-id": [ + "4da1b0ef-5a68-4228-86f4-a2b7b6c60a54", + "4da1b0ef-5a68-4228-86f4-a2b7b6c60a54" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "204" + ], + "x-ms-correlation-request-id": [ + "51fd31d6-3a81-4730-8e8f-7e8f65c46e8e" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T162225Z:51fd31d6-3a81-4730-8e8f-7e8f65c46e8e" + ], + "Date": [ + "Mon, 16 May 2022 16:22:25 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"360206a9-f8a2-4854-88f9-00b0f5fd7166\",\r\n \"name\": \"360206a9-f8a2-4854-88f9-00b0f5fd7166\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T16:22:11.4192676Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/360206a9-f8a2-4854-88f9-00b0f5fd7166?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy8zNjAyMDZhOS1mOGEyLTQ4NTQtODhmOS0wMGIwZjVmZDcxNjY/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4da1b0ef-5a68-4228-86f4-a2b7b6c60a54" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "05f12b14-b470-4ad7-a1b9-06766903e06f" + ], + "x-ms-client-request-id": [ + "4da1b0ef-5a68-4228-86f4-a2b7b6c60a54", + "4da1b0ef-5a68-4228-86f4-a2b7b6c60a54" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "203" + ], + "x-ms-correlation-request-id": [ + "05f12b14-b470-4ad7-a1b9-06766903e06f" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T162226Z:05f12b14-b470-4ad7-a1b9-06766903e06f" + ], + "Date": [ + "Mon, 16 May 2022 16:22:25 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"360206a9-f8a2-4854-88f9-00b0f5fd7166\",\r\n \"name\": \"360206a9-f8a2-4854-88f9-00b0f5fd7166\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T16:22:11.4192676Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/360206a9-f8a2-4854-88f9-00b0f5fd7166?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy8zNjAyMDZhOS1mOGEyLTQ4NTQtODhmOS0wMGIwZjVmZDcxNjY/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4da1b0ef-5a68-4228-86f4-a2b7b6c60a54" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "a1892e46-f155-47ac-9114-ba13030a88a7" + ], + "x-ms-client-request-id": [ + "4da1b0ef-5a68-4228-86f4-a2b7b6c60a54", + "4da1b0ef-5a68-4228-86f4-a2b7b6c60a54" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "202" + ], + "x-ms-correlation-request-id": [ + "a1892e46-f155-47ac-9114-ba13030a88a7" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T162226Z:a1892e46-f155-47ac-9114-ba13030a88a7" + ], + "Date": [ + "Mon, 16 May 2022 16:22:25 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"360206a9-f8a2-4854-88f9-00b0f5fd7166\",\r\n \"name\": \"360206a9-f8a2-4854-88f9-00b0f5fd7166\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T16:22:11.4192676Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/360206a9-f8a2-4854-88f9-00b0f5fd7166?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy8zNjAyMDZhOS1mOGEyLTQ4NTQtODhmOS0wMGIwZjVmZDcxNjY/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4da1b0ef-5a68-4228-86f4-a2b7b6c60a54" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "6e9378d6-427b-4397-8a7d-63d6b03846a1" + ], + "x-ms-client-request-id": [ + "4da1b0ef-5a68-4228-86f4-a2b7b6c60a54", + "4da1b0ef-5a68-4228-86f4-a2b7b6c60a54" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "201" + ], + "x-ms-correlation-request-id": [ + "6e9378d6-427b-4397-8a7d-63d6b03846a1" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T162227Z:6e9378d6-427b-4397-8a7d-63d6b03846a1" + ], + "Date": [ + "Mon, 16 May 2022 16:22:26 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"360206a9-f8a2-4854-88f9-00b0f5fd7166\",\r\n \"name\": \"360206a9-f8a2-4854-88f9-00b0f5fd7166\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T16:22:11.4192676Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/360206a9-f8a2-4854-88f9-00b0f5fd7166?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy8zNjAyMDZhOS1mOGEyLTQ4NTQtODhmOS0wMGIwZjVmZDcxNjY/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4da1b0ef-5a68-4228-86f4-a2b7b6c60a54" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "30032e3b-c57d-4d27-9312-9f5294bc156c" + ], + "x-ms-client-request-id": [ + "4da1b0ef-5a68-4228-86f4-a2b7b6c60a54", + "4da1b0ef-5a68-4228-86f4-a2b7b6c60a54" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "200" + ], + "x-ms-correlation-request-id": [ + "30032e3b-c57d-4d27-9312-9f5294bc156c" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T162227Z:30032e3b-c57d-4d27-9312-9f5294bc156c" + ], + "Date": [ + "Mon, 16 May 2022 16:22:26 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"360206a9-f8a2-4854-88f9-00b0f5fd7166\",\r\n \"name\": \"360206a9-f8a2-4854-88f9-00b0f5fd7166\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T16:22:11.4192676Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/360206a9-f8a2-4854-88f9-00b0f5fd7166?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy8zNjAyMDZhOS1mOGEyLTQ4NTQtODhmOS0wMGIwZjVmZDcxNjY/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4da1b0ef-5a68-4228-86f4-a2b7b6c60a54" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "8078ecbf-b7a1-4a42-a472-fde34696ea78" + ], + "x-ms-client-request-id": [ + "4da1b0ef-5a68-4228-86f4-a2b7b6c60a54", + "4da1b0ef-5a68-4228-86f4-a2b7b6c60a54" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "199" + ], + "x-ms-correlation-request-id": [ + "8078ecbf-b7a1-4a42-a472-fde34696ea78" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T162227Z:8078ecbf-b7a1-4a42-a472-fde34696ea78" + ], + "Date": [ + "Mon, 16 May 2022 16:22:27 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"360206a9-f8a2-4854-88f9-00b0f5fd7166\",\r\n \"name\": \"360206a9-f8a2-4854-88f9-00b0f5fd7166\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T16:22:11.4192676Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/360206a9-f8a2-4854-88f9-00b0f5fd7166?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy8zNjAyMDZhOS1mOGEyLTQ4NTQtODhmOS0wMGIwZjVmZDcxNjY/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4da1b0ef-5a68-4228-86f4-a2b7b6c60a54" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "9c500ef8-1dc6-4b06-8aec-ae5db0b71318" + ], + "x-ms-client-request-id": [ + "4da1b0ef-5a68-4228-86f4-a2b7b6c60a54", + "4da1b0ef-5a68-4228-86f4-a2b7b6c60a54" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "198" + ], + "x-ms-correlation-request-id": [ + "9c500ef8-1dc6-4b06-8aec-ae5db0b71318" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T162228Z:9c500ef8-1dc6-4b06-8aec-ae5db0b71318" + ], + "Date": [ + "Mon, 16 May 2022 16:22:27 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"360206a9-f8a2-4854-88f9-00b0f5fd7166\",\r\n \"name\": \"360206a9-f8a2-4854-88f9-00b0f5fd7166\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T16:22:11.4192676Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/360206a9-f8a2-4854-88f9-00b0f5fd7166?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy8zNjAyMDZhOS1mOGEyLTQ4NTQtODhmOS0wMGIwZjVmZDcxNjY/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4da1b0ef-5a68-4228-86f4-a2b7b6c60a54" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "91935a67-c4eb-47cf-acfb-f5b67dcfd405" + ], + "x-ms-client-request-id": [ + "4da1b0ef-5a68-4228-86f4-a2b7b6c60a54", + "4da1b0ef-5a68-4228-86f4-a2b7b6c60a54" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "197" + ], + "x-ms-correlation-request-id": [ + "91935a67-c4eb-47cf-acfb-f5b67dcfd405" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T162228Z:91935a67-c4eb-47cf-acfb-f5b67dcfd405" + ], + "Date": [ + "Mon, 16 May 2022 16:22:28 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"360206a9-f8a2-4854-88f9-00b0f5fd7166\",\r\n \"name\": \"360206a9-f8a2-4854-88f9-00b0f5fd7166\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T16:22:11.4192676Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/360206a9-f8a2-4854-88f9-00b0f5fd7166?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy8zNjAyMDZhOS1mOGEyLTQ4NTQtODhmOS0wMGIwZjVmZDcxNjY/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4da1b0ef-5a68-4228-86f4-a2b7b6c60a54" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "86960f3e-adb0-476b-8794-83122f67d89e" + ], + "x-ms-client-request-id": [ + "4da1b0ef-5a68-4228-86f4-a2b7b6c60a54", + "4da1b0ef-5a68-4228-86f4-a2b7b6c60a54" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "196" + ], + "x-ms-correlation-request-id": [ + "86960f3e-adb0-476b-8794-83122f67d89e" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T162229Z:86960f3e-adb0-476b-8794-83122f67d89e" + ], + "Date": [ + "Mon, 16 May 2022 16:22:28 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"360206a9-f8a2-4854-88f9-00b0f5fd7166\",\r\n \"name\": \"360206a9-f8a2-4854-88f9-00b0f5fd7166\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T16:22:11.4192676Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/360206a9-f8a2-4854-88f9-00b0f5fd7166?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy8zNjAyMDZhOS1mOGEyLTQ4NTQtODhmOS0wMGIwZjVmZDcxNjY/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4da1b0ef-5a68-4228-86f4-a2b7b6c60a54" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "1dc89f79-72d5-4d73-8816-fb844e087773" + ], + "x-ms-client-request-id": [ + "4da1b0ef-5a68-4228-86f4-a2b7b6c60a54", + "4da1b0ef-5a68-4228-86f4-a2b7b6c60a54" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "195" + ], + "x-ms-correlation-request-id": [ + "1dc89f79-72d5-4d73-8816-fb844e087773" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T162229Z:1dc89f79-72d5-4d73-8816-fb844e087773" + ], + "Date": [ + "Mon, 16 May 2022 16:22:29 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"360206a9-f8a2-4854-88f9-00b0f5fd7166\",\r\n \"name\": \"360206a9-f8a2-4854-88f9-00b0f5fd7166\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T16:22:11.4192676Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/360206a9-f8a2-4854-88f9-00b0f5fd7166?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy8zNjAyMDZhOS1mOGEyLTQ4NTQtODhmOS0wMGIwZjVmZDcxNjY/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4da1b0ef-5a68-4228-86f4-a2b7b6c60a54" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "02da4872-360c-4f85-9f73-cba812aaed93" + ], + "x-ms-client-request-id": [ + "4da1b0ef-5a68-4228-86f4-a2b7b6c60a54", + "4da1b0ef-5a68-4228-86f4-a2b7b6c60a54" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "194" + ], + "x-ms-correlation-request-id": [ + "02da4872-360c-4f85-9f73-cba812aaed93" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T162230Z:02da4872-360c-4f85-9f73-cba812aaed93" + ], + "Date": [ + "Mon, 16 May 2022 16:22:29 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"360206a9-f8a2-4854-88f9-00b0f5fd7166\",\r\n \"name\": \"360206a9-f8a2-4854-88f9-00b0f5fd7166\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T16:22:11.4192676Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/360206a9-f8a2-4854-88f9-00b0f5fd7166?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy8zNjAyMDZhOS1mOGEyLTQ4NTQtODhmOS0wMGIwZjVmZDcxNjY/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4da1b0ef-5a68-4228-86f4-a2b7b6c60a54" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "a49ec33c-3138-494a-95a9-8713576b154a" + ], + "x-ms-client-request-id": [ + "4da1b0ef-5a68-4228-86f4-a2b7b6c60a54", + "4da1b0ef-5a68-4228-86f4-a2b7b6c60a54" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "193" + ], + "x-ms-correlation-request-id": [ + "a49ec33c-3138-494a-95a9-8713576b154a" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T162230Z:a49ec33c-3138-494a-95a9-8713576b154a" + ], + "Date": [ + "Mon, 16 May 2022 16:22:29 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"360206a9-f8a2-4854-88f9-00b0f5fd7166\",\r\n \"name\": \"360206a9-f8a2-4854-88f9-00b0f5fd7166\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T16:22:11.4192676Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/360206a9-f8a2-4854-88f9-00b0f5fd7166?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy8zNjAyMDZhOS1mOGEyLTQ4NTQtODhmOS0wMGIwZjVmZDcxNjY/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4da1b0ef-5a68-4228-86f4-a2b7b6c60a54" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "3c21987b-2c3c-49a2-a9e6-0105f86122bd" + ], + "x-ms-client-request-id": [ + "4da1b0ef-5a68-4228-86f4-a2b7b6c60a54", + "4da1b0ef-5a68-4228-86f4-a2b7b6c60a54" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "192" + ], + "x-ms-correlation-request-id": [ + "3c21987b-2c3c-49a2-a9e6-0105f86122bd" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T162231Z:3c21987b-2c3c-49a2-a9e6-0105f86122bd" + ], + "Date": [ + "Mon, 16 May 2022 16:22:30 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"360206a9-f8a2-4854-88f9-00b0f5fd7166\",\r\n \"name\": \"360206a9-f8a2-4854-88f9-00b0f5fd7166\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T16:22:11.4192676Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/360206a9-f8a2-4854-88f9-00b0f5fd7166?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy8zNjAyMDZhOS1mOGEyLTQ4NTQtODhmOS0wMGIwZjVmZDcxNjY/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4da1b0ef-5a68-4228-86f4-a2b7b6c60a54" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "ede33055-e214-4f22-98ad-79166575d2af" + ], + "x-ms-client-request-id": [ + "4da1b0ef-5a68-4228-86f4-a2b7b6c60a54", + "4da1b0ef-5a68-4228-86f4-a2b7b6c60a54" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "191" + ], + "x-ms-correlation-request-id": [ + "ede33055-e214-4f22-98ad-79166575d2af" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T162231Z:ede33055-e214-4f22-98ad-79166575d2af" + ], + "Date": [ + "Mon, 16 May 2022 16:22:30 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"360206a9-f8a2-4854-88f9-00b0f5fd7166\",\r\n \"name\": \"360206a9-f8a2-4854-88f9-00b0f5fd7166\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T16:22:11.4192676Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/360206a9-f8a2-4854-88f9-00b0f5fd7166?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy8zNjAyMDZhOS1mOGEyLTQ4NTQtODhmOS0wMGIwZjVmZDcxNjY/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4da1b0ef-5a68-4228-86f4-a2b7b6c60a54" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "bb9feae3-2f79-49c6-bfc6-b9a760732ae1" + ], + "x-ms-client-request-id": [ + "4da1b0ef-5a68-4228-86f4-a2b7b6c60a54", + "4da1b0ef-5a68-4228-86f4-a2b7b6c60a54" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "190" + ], + "x-ms-correlation-request-id": [ + "bb9feae3-2f79-49c6-bfc6-b9a760732ae1" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T162232Z:bb9feae3-2f79-49c6-bfc6-b9a760732ae1" + ], + "Date": [ + "Mon, 16 May 2022 16:22:31 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"360206a9-f8a2-4854-88f9-00b0f5fd7166\",\r\n \"name\": \"360206a9-f8a2-4854-88f9-00b0f5fd7166\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T16:22:11.4192676Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/360206a9-f8a2-4854-88f9-00b0f5fd7166?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy8zNjAyMDZhOS1mOGEyLTQ4NTQtODhmOS0wMGIwZjVmZDcxNjY/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4da1b0ef-5a68-4228-86f4-a2b7b6c60a54" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "77b342f4-6453-4b65-a614-3012a82d22d8" + ], + "x-ms-client-request-id": [ + "4da1b0ef-5a68-4228-86f4-a2b7b6c60a54", + "4da1b0ef-5a68-4228-86f4-a2b7b6c60a54" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "189" + ], + "x-ms-correlation-request-id": [ + "77b342f4-6453-4b65-a614-3012a82d22d8" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T162232Z:77b342f4-6453-4b65-a614-3012a82d22d8" + ], + "Date": [ + "Mon, 16 May 2022 16:22:31 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"360206a9-f8a2-4854-88f9-00b0f5fd7166\",\r\n \"name\": \"360206a9-f8a2-4854-88f9-00b0f5fd7166\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T16:22:11.4192676Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/360206a9-f8a2-4854-88f9-00b0f5fd7166?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy8zNjAyMDZhOS1mOGEyLTQ4NTQtODhmOS0wMGIwZjVmZDcxNjY/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4da1b0ef-5a68-4228-86f4-a2b7b6c60a54" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "796ff6b1-f522-41ba-89f4-f50f3085b45f" + ], + "x-ms-client-request-id": [ + "4da1b0ef-5a68-4228-86f4-a2b7b6c60a54", + "4da1b0ef-5a68-4228-86f4-a2b7b6c60a54" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "188" + ], + "x-ms-correlation-request-id": [ + "796ff6b1-f522-41ba-89f4-f50f3085b45f" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T162233Z:796ff6b1-f522-41ba-89f4-f50f3085b45f" + ], + "Date": [ + "Mon, 16 May 2022 16:22:32 GMT" + ], + "Content-Length": [ + "304" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"360206a9-f8a2-4854-88f9-00b0f5fd7166\",\r\n \"name\": \"360206a9-f8a2-4854-88f9-00b0f5fd7166\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-05-16T16:22:11.4192676Z\",\r\n \"endTime\": \"2022-05-16T16:22:11.4192676Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"893c259d-1edc-4c71-af62-dc4556f7e99f\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/360206a9-f8a2-4854-88f9-00b0f5fd7166?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy8zNjAyMDZhOS1mOGEyLTQ4NTQtODhmOS0wMGIwZjVmZDcxNjY/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4da1b0ef-5a68-4228-86f4-a2b7b6c60a54" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "942e3629-2167-4ff6-b1c7-5f9b484e3d19" + ], + "x-ms-client-request-id": [ + "4da1b0ef-5a68-4228-86f4-a2b7b6c60a54", + "4da1b0ef-5a68-4228-86f4-a2b7b6c60a54" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "187" + ], + "x-ms-correlation-request-id": [ + "942e3629-2167-4ff6-b1c7-5f9b484e3d19" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T162233Z:942e3629-2167-4ff6-b1c7-5f9b484e3d19" + ], + "Date": [ + "Mon, 16 May 2022 16:22:32 GMT" + ], + "Content-Length": [ + "304" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"360206a9-f8a2-4854-88f9-00b0f5fd7166\",\r\n \"name\": \"360206a9-f8a2-4854-88f9-00b0f5fd7166\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-05-16T16:22:11.4192676Z\",\r\n \"endTime\": \"2022-05-16T16:22:11.4192676Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"893c259d-1edc-4c71-af62-dc4556f7e99f\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/893c259d-1edc-4c71-af62-dc4556f7e99f?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy84OTNjMjU5ZC0xZWRjLTRjNzEtYWY2Mi1kYzQ1NTZmN2U5OWY/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4da1b0ef-5a68-4228-86f4-a2b7b6c60a54" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.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": [ + "45153df0-97e7-42e3-8ab5-ebf394825237" + ], + "x-ms-client-request-id": [ + "4da1b0ef-5a68-4228-86f4-a2b7b6c60a54", + "4da1b0ef-5a68-4228-86f4-a2b7b6c60a54" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "229" + ], + "x-ms-correlation-request-id": [ + "45153df0-97e7-42e3-8ab5-ebf394825237" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T162234Z:45153df0-97e7-42e3-8ab5-ebf394825237" + ], + "Date": [ + "Mon, 16 May 2022 16:22:33 GMT" + ], + "Content-Length": [ + "821" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/893c259d-1edc-4c71-af62-dc4556f7e99f\",\r\n \"name\": \"893c259d-1edc-4c71-af62-dc4556f7e99f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT21.4096057S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"Storage\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"File Share Name\": \"fs1\",\r\n \"Storage Account Name\": \"pstestsa8895\"\r\n }\r\n },\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"DeleteBackupData\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-05-16T16:22:11.4192676Z\",\r\n \"endTime\": \"2022-05-16T16:22:32.8288733Z\",\r\n \"activityId\": \"4da1b0ef-5a68-4228-86f4-a2b7b6c60a54\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "44699b43-5d03-4f3e-a7b2-dd901857f0dd" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperationResults/ab17db49-8017-46c6-b18a-6222af6324d4?fabricName=Azure?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationsStatus/ab17db49-8017-46c6-b18a-6222af6324d4?api-version=2019-05-13-preview" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "7c56e6fa-f1e7-4176-8fc2-ec9b7a2a4d06" + ], + "x-ms-client-request-id": [ + "44699b43-5d03-4f3e-a7b2-dd901857f0dd", + "44699b43-5d03-4f3e-a7b2-dd901857f0dd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14998" + ], + "x-ms-correlation-request-id": [ + "7c56e6fa-f1e7-4176-8fc2-ec9b7a2a4d06" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T162234Z:7c56e6fa-f1e7-4176-8fc2-ec9b7a2a4d06" + ], + "Date": [ + "Mon, 16 May 2022 16:22:33 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/ab17db49-8017-46c6-b18a-6222af6324d4?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzL2FiMTdkYjQ5LTgwMTctNDZjNi1iMThhLTYyMjJhZjYzMjRkND9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "44699b43-5d03-4f3e-a7b2-dd901857f0dd" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/ab17db49-8017-46c6-b18a-6222af6324d4?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "62221911-cb33-4d41-adfe-0b7c6a9bbe4c" + ], + "x-ms-client-request-id": [ + "44699b43-5d03-4f3e-a7b2-dd901857f0dd", + "44699b43-5d03-4f3e-a7b2-dd901857f0dd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "287" + ], + "x-ms-correlation-request-id": [ + "62221911-cb33-4d41-adfe-0b7c6a9bbe4c" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T162235Z:62221911-cb33-4d41-adfe-0b7c6a9bbe4c" + ], + "Date": [ + "Mon, 16 May 2022 16:22:34 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/ab17db49-8017-46c6-b18a-6222af6324d4?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzL2FiMTdkYjQ5LTgwMTctNDZjNi1iMThhLTYyMjJhZjYzMjRkND9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "44699b43-5d03-4f3e-a7b2-dd901857f0dd" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/ab17db49-8017-46c6-b18a-6222af6324d4?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "65b7cf66-e88a-46b4-803c-2ee72681b71c" + ], + "x-ms-client-request-id": [ + "44699b43-5d03-4f3e-a7b2-dd901857f0dd", + "44699b43-5d03-4f3e-a7b2-dd901857f0dd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "286" + ], + "x-ms-correlation-request-id": [ + "65b7cf66-e88a-46b4-803c-2ee72681b71c" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T162235Z:65b7cf66-e88a-46b4-803c-2ee72681b71c" + ], + "Date": [ + "Mon, 16 May 2022 16:22:34 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/ab17db49-8017-46c6-b18a-6222af6324d4?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzL2FiMTdkYjQ5LTgwMTctNDZjNi1iMThhLTYyMjJhZjYzMjRkND9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "44699b43-5d03-4f3e-a7b2-dd901857f0dd" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/ab17db49-8017-46c6-b18a-6222af6324d4?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "de1e3ee4-ed1e-4f42-a041-44909f04a6ee" + ], + "x-ms-client-request-id": [ + "44699b43-5d03-4f3e-a7b2-dd901857f0dd", + "44699b43-5d03-4f3e-a7b2-dd901857f0dd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "285" + ], + "x-ms-correlation-request-id": [ + "de1e3ee4-ed1e-4f42-a041-44909f04a6ee" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T162236Z:de1e3ee4-ed1e-4f42-a041-44909f04a6ee" + ], + "Date": [ + "Mon, 16 May 2022 16:22:35 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/ab17db49-8017-46c6-b18a-6222af6324d4?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzL2FiMTdkYjQ5LTgwMTctNDZjNi1iMThhLTYyMjJhZjYzMjRkND9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "44699b43-5d03-4f3e-a7b2-dd901857f0dd" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/ab17db49-8017-46c6-b18a-6222af6324d4?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "d8aebda5-375f-41f4-83d9-8f0e31d86039" + ], + "x-ms-client-request-id": [ + "44699b43-5d03-4f3e-a7b2-dd901857f0dd", + "44699b43-5d03-4f3e-a7b2-dd901857f0dd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "284" + ], + "x-ms-correlation-request-id": [ + "d8aebda5-375f-41f4-83d9-8f0e31d86039" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T162236Z:d8aebda5-375f-41f4-83d9-8f0e31d86039" + ], + "Date": [ + "Mon, 16 May 2022 16:22:35 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/ab17db49-8017-46c6-b18a-6222af6324d4?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzL2FiMTdkYjQ5LTgwMTctNDZjNi1iMThhLTYyMjJhZjYzMjRkND9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "44699b43-5d03-4f3e-a7b2-dd901857f0dd" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/ab17db49-8017-46c6-b18a-6222af6324d4?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "2a521130-5dba-4bcf-90fe-ed855054fe9f" + ], + "x-ms-client-request-id": [ + "44699b43-5d03-4f3e-a7b2-dd901857f0dd", + "44699b43-5d03-4f3e-a7b2-dd901857f0dd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "283" + ], + "x-ms-correlation-request-id": [ + "2a521130-5dba-4bcf-90fe-ed855054fe9f" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T162237Z:2a521130-5dba-4bcf-90fe-ed855054fe9f" + ], + "Date": [ + "Mon, 16 May 2022 16:22:36 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/ab17db49-8017-46c6-b18a-6222af6324d4?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzL2FiMTdkYjQ5LTgwMTctNDZjNi1iMThhLTYyMjJhZjYzMjRkND9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "44699b43-5d03-4f3e-a7b2-dd901857f0dd" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/ab17db49-8017-46c6-b18a-6222af6324d4?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "49be601d-a33a-44a9-aa02-767e10a02de3" + ], + "x-ms-client-request-id": [ + "44699b43-5d03-4f3e-a7b2-dd901857f0dd", + "44699b43-5d03-4f3e-a7b2-dd901857f0dd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "282" + ], + "x-ms-correlation-request-id": [ + "49be601d-a33a-44a9-aa02-767e10a02de3" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T162238Z:49be601d-a33a-44a9-aa02-767e10a02de3" + ], + "Date": [ + "Mon, 16 May 2022 16:22:37 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/ab17db49-8017-46c6-b18a-6222af6324d4?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzL2FiMTdkYjQ5LTgwMTctNDZjNi1iMThhLTYyMjJhZjYzMjRkND9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "44699b43-5d03-4f3e-a7b2-dd901857f0dd" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/ab17db49-8017-46c6-b18a-6222af6324d4?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "d5783817-9627-46d0-8830-47b5be039fe8" + ], + "x-ms-client-request-id": [ + "44699b43-5d03-4f3e-a7b2-dd901857f0dd", + "44699b43-5d03-4f3e-a7b2-dd901857f0dd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "281" + ], + "x-ms-correlation-request-id": [ + "d5783817-9627-46d0-8830-47b5be039fe8" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T162238Z:d5783817-9627-46d0-8830-47b5be039fe8" + ], + "Date": [ + "Mon, 16 May 2022 16:22:37 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/ab17db49-8017-46c6-b18a-6222af6324d4?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzL2FiMTdkYjQ5LTgwMTctNDZjNi1iMThhLTYyMjJhZjYzMjRkND9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "44699b43-5d03-4f3e-a7b2-dd901857f0dd" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/ab17db49-8017-46c6-b18a-6222af6324d4?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "f9753a6a-9f46-4f2a-891d-020ad01fadfa" + ], + "x-ms-client-request-id": [ + "44699b43-5d03-4f3e-a7b2-dd901857f0dd", + "44699b43-5d03-4f3e-a7b2-dd901857f0dd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "280" + ], + "x-ms-correlation-request-id": [ + "f9753a6a-9f46-4f2a-891d-020ad01fadfa" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T162239Z:f9753a6a-9f46-4f2a-891d-020ad01fadfa" + ], + "Date": [ + "Mon, 16 May 2022 16:22:38 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/ab17db49-8017-46c6-b18a-6222af6324d4?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzL2FiMTdkYjQ5LTgwMTctNDZjNi1iMThhLTYyMjJhZjYzMjRkND9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "44699b43-5d03-4f3e-a7b2-dd901857f0dd" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/ab17db49-8017-46c6-b18a-6222af6324d4?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "30771cf5-09ae-4280-a90b-abb3020b0dfb" + ], + "x-ms-client-request-id": [ + "44699b43-5d03-4f3e-a7b2-dd901857f0dd", + "44699b43-5d03-4f3e-a7b2-dd901857f0dd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "279" + ], + "x-ms-correlation-request-id": [ + "30771cf5-09ae-4280-a90b-abb3020b0dfb" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T162239Z:30771cf5-09ae-4280-a90b-abb3020b0dfb" + ], + "Date": [ + "Mon, 16 May 2022 16:22:38 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/ab17db49-8017-46c6-b18a-6222af6324d4?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzL2FiMTdkYjQ5LTgwMTctNDZjNi1iMThhLTYyMjJhZjYzMjRkND9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "44699b43-5d03-4f3e-a7b2-dd901857f0dd" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/ab17db49-8017-46c6-b18a-6222af6324d4?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "01f9fc8c-bc94-44e4-a2db-02ca634a5dd3" + ], + "x-ms-client-request-id": [ + "44699b43-5d03-4f3e-a7b2-dd901857f0dd", + "44699b43-5d03-4f3e-a7b2-dd901857f0dd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "278" + ], + "x-ms-correlation-request-id": [ + "01f9fc8c-bc94-44e4-a2db-02ca634a5dd3" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T162240Z:01f9fc8c-bc94-44e4-a2db-02ca634a5dd3" + ], + "Date": [ + "Mon, 16 May 2022 16:22:40 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/ab17db49-8017-46c6-b18a-6222af6324d4?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzL2FiMTdkYjQ5LTgwMTctNDZjNi1iMThhLTYyMjJhZjYzMjRkND9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "44699b43-5d03-4f3e-a7b2-dd901857f0dd" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/ab17db49-8017-46c6-b18a-6222af6324d4?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "33d68d69-2636-42b7-a5df-aa81b0e66c04" + ], + "x-ms-client-request-id": [ + "44699b43-5d03-4f3e-a7b2-dd901857f0dd", + "44699b43-5d03-4f3e-a7b2-dd901857f0dd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "277" + ], + "x-ms-correlation-request-id": [ + "33d68d69-2636-42b7-a5df-aa81b0e66c04" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T162240Z:33d68d69-2636-42b7-a5df-aa81b0e66c04" + ], + "Date": [ + "Mon, 16 May 2022 16:22:40 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/ab17db49-8017-46c6-b18a-6222af6324d4?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzL2FiMTdkYjQ5LTgwMTctNDZjNi1iMThhLTYyMjJhZjYzMjRkND9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "44699b43-5d03-4f3e-a7b2-dd901857f0dd" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/ab17db49-8017-46c6-b18a-6222af6324d4?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "9f16dab7-941e-416b-a301-3a5d30be425b" + ], + "x-ms-client-request-id": [ + "44699b43-5d03-4f3e-a7b2-dd901857f0dd", + "44699b43-5d03-4f3e-a7b2-dd901857f0dd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "276" + ], + "x-ms-correlation-request-id": [ + "9f16dab7-941e-416b-a301-3a5d30be425b" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T162241Z:9f16dab7-941e-416b-a301-3a5d30be425b" + ], + "Date": [ + "Mon, 16 May 2022 16:22:41 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/ab17db49-8017-46c6-b18a-6222af6324d4?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzL2FiMTdkYjQ5LTgwMTctNDZjNi1iMThhLTYyMjJhZjYzMjRkND9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "44699b43-5d03-4f3e-a7b2-dd901857f0dd" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/ab17db49-8017-46c6-b18a-6222af6324d4?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "11a73c84-45d0-422e-9c3c-eaab83fb11d5" + ], + "x-ms-client-request-id": [ + "44699b43-5d03-4f3e-a7b2-dd901857f0dd", + "44699b43-5d03-4f3e-a7b2-dd901857f0dd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "275" + ], + "x-ms-correlation-request-id": [ + "11a73c84-45d0-422e-9c3c-eaab83fb11d5" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T162241Z:11a73c84-45d0-422e-9c3c-eaab83fb11d5" + ], + "Date": [ + "Mon, 16 May 2022 16:22:41 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/ab17db49-8017-46c6-b18a-6222af6324d4?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzL2FiMTdkYjQ5LTgwMTctNDZjNi1iMThhLTYyMjJhZjYzMjRkND9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "44699b43-5d03-4f3e-a7b2-dd901857f0dd" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/ab17db49-8017-46c6-b18a-6222af6324d4?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "7691b732-edc5-4d61-803e-11f39c1d20e7" + ], + "x-ms-client-request-id": [ + "44699b43-5d03-4f3e-a7b2-dd901857f0dd", + "44699b43-5d03-4f3e-a7b2-dd901857f0dd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "274" + ], + "x-ms-correlation-request-id": [ + "7691b732-edc5-4d61-803e-11f39c1d20e7" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T162242Z:7691b732-edc5-4d61-803e-11f39c1d20e7" + ], + "Date": [ + "Mon, 16 May 2022 16:22:42 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/ab17db49-8017-46c6-b18a-6222af6324d4?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzL2FiMTdkYjQ5LTgwMTctNDZjNi1iMThhLTYyMjJhZjYzMjRkND9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "44699b43-5d03-4f3e-a7b2-dd901857f0dd" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/ab17db49-8017-46c6-b18a-6222af6324d4?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "479fbd35-9015-4476-a619-7ae3fb66bc03" + ], + "x-ms-client-request-id": [ + "44699b43-5d03-4f3e-a7b2-dd901857f0dd", + "44699b43-5d03-4f3e-a7b2-dd901857f0dd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "273" + ], + "x-ms-correlation-request-id": [ + "479fbd35-9015-4476-a619-7ae3fb66bc03" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T162242Z:479fbd35-9015-4476-a619-7ae3fb66bc03" + ], + "Date": [ + "Mon, 16 May 2022 16:22:42 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/ab17db49-8017-46c6-b18a-6222af6324d4?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzL2FiMTdkYjQ5LTgwMTctNDZjNi1iMThhLTYyMjJhZjYzMjRkND9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "44699b43-5d03-4f3e-a7b2-dd901857f0dd" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/ab17db49-8017-46c6-b18a-6222af6324d4?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "dbcc322b-7a1e-4d64-88a8-41ac085b6ca6" + ], + "x-ms-client-request-id": [ + "44699b43-5d03-4f3e-a7b2-dd901857f0dd", + "44699b43-5d03-4f3e-a7b2-dd901857f0dd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "272" + ], + "x-ms-correlation-request-id": [ + "dbcc322b-7a1e-4d64-88a8-41ac085b6ca6" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T162243Z:dbcc322b-7a1e-4d64-88a8-41ac085b6ca6" + ], + "Date": [ + "Mon, 16 May 2022 16:22:42 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/ab17db49-8017-46c6-b18a-6222af6324d4?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzL2FiMTdkYjQ5LTgwMTctNDZjNi1iMThhLTYyMjJhZjYzMjRkND9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "44699b43-5d03-4f3e-a7b2-dd901857f0dd" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/ab17db49-8017-46c6-b18a-6222af6324d4?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "f9973f45-0601-414e-82e5-4f9a0c4d0c85" + ], + "x-ms-client-request-id": [ + "44699b43-5d03-4f3e-a7b2-dd901857f0dd", + "44699b43-5d03-4f3e-a7b2-dd901857f0dd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "271" + ], + "x-ms-correlation-request-id": [ + "f9973f45-0601-414e-82e5-4f9a0c4d0c85" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T162243Z:f9973f45-0601-414e-82e5-4f9a0c4d0c85" + ], + "Date": [ + "Mon, 16 May 2022 16:22:43 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/ab17db49-8017-46c6-b18a-6222af6324d4?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzL2FiMTdkYjQ5LTgwMTctNDZjNi1iMThhLTYyMjJhZjYzMjRkND9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "44699b43-5d03-4f3e-a7b2-dd901857f0dd" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/ab17db49-8017-46c6-b18a-6222af6324d4?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "951a7f69-fb8c-421b-94e0-f95b4fc07f0d" + ], + "x-ms-client-request-id": [ + "44699b43-5d03-4f3e-a7b2-dd901857f0dd", + "44699b43-5d03-4f3e-a7b2-dd901857f0dd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "270" + ], + "x-ms-correlation-request-id": [ + "951a7f69-fb8c-421b-94e0-f95b4fc07f0d" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T162243Z:951a7f69-fb8c-421b-94e0-f95b4fc07f0d" + ], + "Date": [ + "Mon, 16 May 2022 16:22:43 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/ab17db49-8017-46c6-b18a-6222af6324d4?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzL2FiMTdkYjQ5LTgwMTctNDZjNi1iMThhLTYyMjJhZjYzMjRkND9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "44699b43-5d03-4f3e-a7b2-dd901857f0dd" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/ab17db49-8017-46c6-b18a-6222af6324d4?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "1df7bce1-f058-4fb8-beef-997db1523f1d" + ], + "x-ms-client-request-id": [ + "44699b43-5d03-4f3e-a7b2-dd901857f0dd", + "44699b43-5d03-4f3e-a7b2-dd901857f0dd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "269" + ], + "x-ms-correlation-request-id": [ + "1df7bce1-f058-4fb8-beef-997db1523f1d" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T162244Z:1df7bce1-f058-4fb8-beef-997db1523f1d" + ], + "Date": [ + "Mon, 16 May 2022 16:22:44 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/ab17db49-8017-46c6-b18a-6222af6324d4?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzL2FiMTdkYjQ5LTgwMTctNDZjNi1iMThhLTYyMjJhZjYzMjRkND9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "44699b43-5d03-4f3e-a7b2-dd901857f0dd" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/ab17db49-8017-46c6-b18a-6222af6324d4?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "d0ea5708-3fd9-4c26-8da7-96f1754be676" + ], + "x-ms-client-request-id": [ + "44699b43-5d03-4f3e-a7b2-dd901857f0dd", + "44699b43-5d03-4f3e-a7b2-dd901857f0dd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "268" + ], + "x-ms-correlation-request-id": [ + "d0ea5708-3fd9-4c26-8da7-96f1754be676" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T162245Z:d0ea5708-3fd9-4c26-8da7-96f1754be676" + ], + "Date": [ + "Mon, 16 May 2022 16:22:44 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/ab17db49-8017-46c6-b18a-6222af6324d4?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzL2FiMTdkYjQ5LTgwMTctNDZjNi1iMThhLTYyMjJhZjYzMjRkND9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "44699b43-5d03-4f3e-a7b2-dd901857f0dd" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/ab17db49-8017-46c6-b18a-6222af6324d4?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "bc275329-27ae-4432-b304-cf91533bcfbe" + ], + "x-ms-client-request-id": [ + "44699b43-5d03-4f3e-a7b2-dd901857f0dd", + "44699b43-5d03-4f3e-a7b2-dd901857f0dd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "267" + ], + "x-ms-correlation-request-id": [ + "bc275329-27ae-4432-b304-cf91533bcfbe" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T162245Z:bc275329-27ae-4432-b304-cf91533bcfbe" + ], + "Date": [ + "Mon, 16 May 2022 16:22:45 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/ab17db49-8017-46c6-b18a-6222af6324d4?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzL2FiMTdkYjQ5LTgwMTctNDZjNi1iMThhLTYyMjJhZjYzMjRkND9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "44699b43-5d03-4f3e-a7b2-dd901857f0dd" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/ab17db49-8017-46c6-b18a-6222af6324d4?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "b6cd36f0-7650-4487-8435-35ebfebbe198" + ], + "x-ms-client-request-id": [ + "44699b43-5d03-4f3e-a7b2-dd901857f0dd", + "44699b43-5d03-4f3e-a7b2-dd901857f0dd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "266" + ], + "x-ms-correlation-request-id": [ + "b6cd36f0-7650-4487-8435-35ebfebbe198" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T162246Z:b6cd36f0-7650-4487-8435-35ebfebbe198" + ], + "Date": [ + "Mon, 16 May 2022 16:22:45 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/ab17db49-8017-46c6-b18a-6222af6324d4?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzL2FiMTdkYjQ5LTgwMTctNDZjNi1iMThhLTYyMjJhZjYzMjRkND9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "44699b43-5d03-4f3e-a7b2-dd901857f0dd" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/ab17db49-8017-46c6-b18a-6222af6324d4?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "6a93c7b2-3453-4767-b8c3-4c015794c941" + ], + "x-ms-client-request-id": [ + "44699b43-5d03-4f3e-a7b2-dd901857f0dd", + "44699b43-5d03-4f3e-a7b2-dd901857f0dd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "265" + ], + "x-ms-correlation-request-id": [ + "6a93c7b2-3453-4767-b8c3-4c015794c941" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T162246Z:6a93c7b2-3453-4767-b8c3-4c015794c941" + ], + "Date": [ + "Mon, 16 May 2022 16:22:46 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/ab17db49-8017-46c6-b18a-6222af6324d4?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzL2FiMTdkYjQ5LTgwMTctNDZjNi1iMThhLTYyMjJhZjYzMjRkND9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "44699b43-5d03-4f3e-a7b2-dd901857f0dd" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/ab17db49-8017-46c6-b18a-6222af6324d4?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "b385fddb-21b8-426a-b213-e090b9ac50c6" + ], + "x-ms-client-request-id": [ + "44699b43-5d03-4f3e-a7b2-dd901857f0dd", + "44699b43-5d03-4f3e-a7b2-dd901857f0dd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "264" + ], + "x-ms-correlation-request-id": [ + "b385fddb-21b8-426a-b213-e090b9ac50c6" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T162247Z:b385fddb-21b8-426a-b213-e090b9ac50c6" + ], + "Date": [ + "Mon, 16 May 2022 16:22:46 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/ab17db49-8017-46c6-b18a-6222af6324d4?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzL2FiMTdkYjQ5LTgwMTctNDZjNi1iMThhLTYyMjJhZjYzMjRkND9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "44699b43-5d03-4f3e-a7b2-dd901857f0dd" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/ab17db49-8017-46c6-b18a-6222af6324d4?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "b38331c5-3f0d-4d78-8182-b6e5137d0638" + ], + "x-ms-client-request-id": [ + "44699b43-5d03-4f3e-a7b2-dd901857f0dd", + "44699b43-5d03-4f3e-a7b2-dd901857f0dd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "263" + ], + "x-ms-correlation-request-id": [ + "b38331c5-3f0d-4d78-8182-b6e5137d0638" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T162247Z:b38331c5-3f0d-4d78-8182-b6e5137d0638" + ], + "Date": [ + "Mon, 16 May 2022 16:22:47 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/ab17db49-8017-46c6-b18a-6222af6324d4?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzL2FiMTdkYjQ5LTgwMTctNDZjNi1iMThhLTYyMjJhZjYzMjRkND9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "44699b43-5d03-4f3e-a7b2-dd901857f0dd" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/ab17db49-8017-46c6-b18a-6222af6324d4?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "af9ff241-955b-48df-bff8-92773c4a828a" + ], + "x-ms-client-request-id": [ + "44699b43-5d03-4f3e-a7b2-dd901857f0dd", + "44699b43-5d03-4f3e-a7b2-dd901857f0dd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "262" + ], + "x-ms-correlation-request-id": [ + "af9ff241-955b-48df-bff8-92773c4a828a" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T162247Z:af9ff241-955b-48df-bff8-92773c4a828a" + ], + "Date": [ + "Mon, 16 May 2022 16:22:47 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/ab17db49-8017-46c6-b18a-6222af6324d4?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzL2FiMTdkYjQ5LTgwMTctNDZjNi1iMThhLTYyMjJhZjYzMjRkND9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "44699b43-5d03-4f3e-a7b2-dd901857f0dd" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/ab17db49-8017-46c6-b18a-6222af6324d4?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "2e70b7d1-b2d1-4890-af2c-328e3e3a3b52" + ], + "x-ms-client-request-id": [ + "44699b43-5d03-4f3e-a7b2-dd901857f0dd", + "44699b43-5d03-4f3e-a7b2-dd901857f0dd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "261" + ], + "x-ms-correlation-request-id": [ + "2e70b7d1-b2d1-4890-af2c-328e3e3a3b52" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T162248Z:2e70b7d1-b2d1-4890-af2c-328e3e3a3b52" + ], + "Date": [ + "Mon, 16 May 2022 16:22:47 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/ab17db49-8017-46c6-b18a-6222af6324d4?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzL2FiMTdkYjQ5LTgwMTctNDZjNi1iMThhLTYyMjJhZjYzMjRkND9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "44699b43-5d03-4f3e-a7b2-dd901857f0dd" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/ab17db49-8017-46c6-b18a-6222af6324d4?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "86b40d30-5879-43a2-a875-cc220fb5f1ad" + ], + "x-ms-client-request-id": [ + "44699b43-5d03-4f3e-a7b2-dd901857f0dd", + "44699b43-5d03-4f3e-a7b2-dd901857f0dd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "260" + ], + "x-ms-correlation-request-id": [ + "86b40d30-5879-43a2-a875-cc220fb5f1ad" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T162248Z:86b40d30-5879-43a2-a875-cc220fb5f1ad" + ], + "Date": [ + "Mon, 16 May 2022 16:22:48 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/ab17db49-8017-46c6-b18a-6222af6324d4?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzL2FiMTdkYjQ5LTgwMTctNDZjNi1iMThhLTYyMjJhZjYzMjRkND9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "44699b43-5d03-4f3e-a7b2-dd901857f0dd" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/ab17db49-8017-46c6-b18a-6222af6324d4?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "9e93faee-1507-47f3-bb25-88f9664abbf9" + ], + "x-ms-client-request-id": [ + "44699b43-5d03-4f3e-a7b2-dd901857f0dd", + "44699b43-5d03-4f3e-a7b2-dd901857f0dd" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Powered-By": [ + "ASP.NET" + ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "223" + "259" ], "x-ms-correlation-request-id": [ - "504975b8-1b16-4d12-9912-7c7db496a962" + "9e93faee-1507-47f3-bb25-88f9664abbf9" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T114142Z:504975b8-1b16-4d12-9912-7c7db496a962" + "WESTINDIA:20220516T162249Z:9e93faee-1507-47f3-bb25-88f9664abbf9" ], "Date": [ - "Sat, 26 Mar 2022 11:41:41 GMT" - ], - "Content-Length": [ - "796" - ], - "Content-Type": [ - "application/json" + "Mon, 16 May 2022 16:22:48 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/99833fa7-b9c1-4925-b843-1dcee038ecd7\",\r\n \"name\": \"99833fa7-b9c1-4925-b843-1dcee038ecd7\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT25.17579S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"Storage\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Storage Account Name\": \"pstestsa8895\"\r\n }\r\n },\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"pstestsa8895\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Register\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-03-26T08:03:17.1963618Z\",\r\n \"endTime\": \"2022-03-26T08:03:42.3721518Z\",\r\n \"activityId\": \"9ee7925b-c730-4d4e-a557-85424b0f8ec1\"\r\n }\r\n}", - "StatusCode": 200 + "ResponseBody": "", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/99833fa7-b9c1-4925-b843-1dcee038ecd7?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy85OTgzM2ZhNy1iOWMxLTQ5MjUtYjg0My0xZGNlZTAzOGVjZDc/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/ab17db49-8017-46c6-b18a-6222af6324d4?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzL2FiMTdkYjQ5LTgwMTctNDZjNi1iMThhLTYyMjJhZjYzMjRkND9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4b0c6321-b286-41f2-bfe2-6eaccb7b9911" + "44699b43-5d03-4f3e-a7b2-dd901857f0dd" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -7588,68 +18832,67 @@ "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-IIS/10.0" + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/ab17db49-8017-46c6-b18a-6222af6324d4?api-version=2022-02-01" + ], + "Retry-After": [ + "60" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "514cbaf7-1a05-4ea3-b11e-5334bffe5c5b" + "d3b0ba94-fc36-42ff-a929-50b93ebc7ad5" ], "x-ms-client-request-id": [ - "4b0c6321-b286-41f2-bfe2-6eaccb7b9911", - "4b0c6321-b286-41f2-bfe2-6eaccb7b9911" - ], - "X-Powered-By": [ - "ASP.NET" + "44699b43-5d03-4f3e-a7b2-dd901857f0dd", + "44699b43-5d03-4f3e-a7b2-dd901857f0dd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Powered-By": [ + "ASP.NET" + ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "222" + "258" ], "x-ms-correlation-request-id": [ - "514cbaf7-1a05-4ea3-b11e-5334bffe5c5b" + "d3b0ba94-fc36-42ff-a929-50b93ebc7ad5" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T114142Z:514cbaf7-1a05-4ea3-b11e-5334bffe5c5b" + "WESTINDIA:20220516T162249Z:d3b0ba94-fc36-42ff-a929-50b93ebc7ad5" ], "Date": [ - "Sat, 26 Mar 2022 11:41:41 GMT" - ], - "Content-Length": [ - "796" - ], - "Content-Type": [ - "application/json" + "Mon, 16 May 2022 16:22:49 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/99833fa7-b9c1-4925-b843-1dcee038ecd7\",\r\n \"name\": \"99833fa7-b9c1-4925-b843-1dcee038ecd7\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT25.17579S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"Storage\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Storage Account Name\": \"pstestsa8895\"\r\n }\r\n },\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"pstestsa8895\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Register\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-03-26T08:03:17.1963618Z\",\r\n \"endTime\": \"2022-03-26T08:03:42.3721518Z\",\r\n \"activityId\": \"9ee7925b-c730-4d4e-a557-85424b0f8ec1\"\r\n }\r\n}", - "StatusCode": 200 + "ResponseBody": "", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3Bstorage%3Bpstestrg8895%3Bpstestsa8895/protectedItems/AzureFileShare%3B698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959/recoveryPoints?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCc3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9wcm90ZWN0ZWRJdGVtcy9BenVyZUZpbGVTaGFyZSUzQjY5OGRmNTk1OTQ4ZTIzNTVmMmJiNzQ0YTQxY2YyNDVkNGJhMTI1NWQ5Njk5Y2MzYzJhZDFmNTA0NWUxNzc5NTkvcmVjb3ZlcnlQb2ludHM/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/ab17db49-8017-46c6-b18a-6222af6324d4?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzL2FiMTdkYjQ5LTgwMTctNDZjNi1iMThhLTYyMjJhZjYzMjRkND9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6b6a56c7-e324-4949-951a-abd4444474b0" + "44699b43-5d03-4f3e-a7b2-dd901857f0dd" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -7659,67 +18902,67 @@ "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/ab17db49-8017-46c6-b18a-6222af6324d4?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "6e000d95-3295-4065-9d57-e5931316deb4" + "7d7edf5d-599b-46ab-9663-8ec3a8806171" ], "x-ms-client-request-id": [ - "6b6a56c7-e324-4949-951a-abd4444474b0", - "6b6a56c7-e324-4949-951a-abd4444474b0" + "44699b43-5d03-4f3e-a7b2-dd901857f0dd", + "44699b43-5d03-4f3e-a7b2-dd901857f0dd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Server": [ - "Microsoft-IIS/10.0" - ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "299" + "257" ], "x-ms-correlation-request-id": [ - "6e000d95-3295-4065-9d57-e5931316deb4" + "7d7edf5d-599b-46ab-9663-8ec3a8806171" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T114143Z:6e000d95-3295-4065-9d57-e5931316deb4" + "WESTINDIA:20220516T162250Z:7d7edf5d-599b-46ab-9663-8ec3a8806171" ], "Date": [ - "Sat, 26 Mar 2022 11:41:42 GMT" - ], - "Content-Length": [ - "12" - ], - "Content-Type": [ - "application/json" + "Mon, 16 May 2022 16:22:49 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, - "ResponseBody": "{\r\n \"value\": []\r\n}", - "StatusCode": 200 + "ResponseBody": "", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3Bstorage%3Bpstestrg8895%3Bpstestsa8895/protectedItems/AzureFileShare%3B698df595948e2355f2bb744a41cf245d4ba1255d9699cc3c2ad1f5045e177959?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCc3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9wcm90ZWN0ZWRJdGVtcy9BenVyZUZpbGVTaGFyZSUzQjY5OGRmNTk1OTQ4ZTIzNTVmMmJiNzQ0YTQxY2YyNDVkNGJhMTI1NWQ5Njk5Y2MzYzJhZDFmNTA0NWUxNzc5NTk/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", - "RequestMethod": "DELETE", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/ab17db49-8017-46c6-b18a-6222af6324d4?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzL2FiMTdkYjQ5LTgwMTctNDZjNi1iMThhLTYyMjJhZjYzMjRkND9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6b6a56c7-e324-4949-951a-abd4444474b0" + "44699b43-5d03-4f3e-a7b2-dd901857f0dd" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -7730,23 +18973,20 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperationResults/2e4a1477-f806-4f1a-888c-ed075a580fbe?api-version=2021-12-01" + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/ab17db49-8017-46c6-b18a-6222af6324d4?api-version=2022-02-01" ], "Retry-After": [ "60" ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/2e4a1477-f806-4f1a-888c-ed075a580fbe?api-version=2021-12-01" - ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "fe939449-784e-41b3-b17d-fae3d7ae2d10" + "625bd2d1-a46d-4a7a-89f7-1904c39531fa" ], "x-ms-client-request-id": [ - "6b6a56c7-e324-4949-951a-abd4444474b0", - "6b6a56c7-e324-4949-951a-abd4444474b0" + "44699b43-5d03-4f3e-a7b2-dd901857f0dd", + "44699b43-5d03-4f3e-a7b2-dd901857f0dd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -7754,17 +18994,17 @@ "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ - "14999" + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "256" ], "x-ms-correlation-request-id": [ - "fe939449-784e-41b3-b17d-fae3d7ae2d10" + "625bd2d1-a46d-4a7a-89f7-1904c39531fa" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T114144Z:fe939449-784e-41b3-b17d-fae3d7ae2d10" + "WESTINDIA:20220516T162250Z:625bd2d1-a46d-4a7a-89f7-1904c39531fa" ], "Date": [ - "Sat, 26 Mar 2022 11:41:43 GMT" + "Mon, 16 May 2022 16:22:50 GMT" ], "Expires": [ "-1" @@ -7777,22 +19017,22 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/2e4a1477-f806-4f1a-888c-ed075a580fbe?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy8yZTRhMTQ3Ny1mODA2LTRmMWEtODg4Yy1lZDA3NWE1ODBmYmU/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/ab17db49-8017-46c6-b18a-6222af6324d4?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzL2FiMTdkYjQ5LTgwMTctNDZjNi1iMThhLTYyMjJhZjYzMjRkND9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6b6a56c7-e324-4949-951a-abd4444474b0" + "44699b43-5d03-4f3e-a7b2-dd901857f0dd" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -7802,67 +19042,67 @@ "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/ab17db49-8017-46c6-b18a-6222af6324d4?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "7565c8ba-68de-40d6-a881-33a5cd5402cd" + "3e372063-2e11-4ee6-ae5b-4bc0db849d7b" ], "x-ms-client-request-id": [ - "6b6a56c7-e324-4949-951a-abd4444474b0", - "6b6a56c7-e324-4949-951a-abd4444474b0" + "44699b43-5d03-4f3e-a7b2-dd901857f0dd", + "44699b43-5d03-4f3e-a7b2-dd901857f0dd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Server": [ - "Microsoft-IIS/10.0" - ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "289" + "255" ], "x-ms-correlation-request-id": [ - "7565c8ba-68de-40d6-a881-33a5cd5402cd" + "3e372063-2e11-4ee6-ae5b-4bc0db849d7b" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T114144Z:7565c8ba-68de-40d6-a881-33a5cd5402cd" + "WESTINDIA:20220516T162251Z:3e372063-2e11-4ee6-ae5b-4bc0db849d7b" ], "Date": [ - "Sat, 26 Mar 2022 11:41:43 GMT" - ], - "Content-Length": [ - "188" - ], - "Content-Type": [ - "application/json" + "Mon, 16 May 2022 16:22:50 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, - "ResponseBody": "{\r\n \"id\": \"2e4a1477-f806-4f1a-888c-ed075a580fbe\",\r\n \"name\": \"2e4a1477-f806-4f1a-888c-ed075a580fbe\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-03-26T11:41:44.2049298Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", - "StatusCode": 200 + "ResponseBody": "", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/2e4a1477-f806-4f1a-888c-ed075a580fbe?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy8yZTRhMTQ3Ny1mODA2LTRmMWEtODg4Yy1lZDA3NWE1ODBmYmU/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/ab17db49-8017-46c6-b18a-6222af6324d4?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzL2FiMTdkYjQ5LTgwMTctNDZjNi1iMThhLTYyMjJhZjYzMjRkND9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6b6a56c7-e324-4949-951a-abd4444474b0" + "44699b43-5d03-4f3e-a7b2-dd901857f0dd" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -7872,67 +19112,67 @@ "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/ab17db49-8017-46c6-b18a-6222af6324d4?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "a96f29b3-e320-48f8-95cf-402f2cff5efc" + "f9ec5b70-6bb2-48cb-a323-dcd010d56e0e" ], "x-ms-client-request-id": [ - "6b6a56c7-e324-4949-951a-abd4444474b0", - "6b6a56c7-e324-4949-951a-abd4444474b0" + "44699b43-5d03-4f3e-a7b2-dd901857f0dd", + "44699b43-5d03-4f3e-a7b2-dd901857f0dd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Server": [ - "Microsoft-IIS/10.0" - ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "288" + "254" ], "x-ms-correlation-request-id": [ - "a96f29b3-e320-48f8-95cf-402f2cff5efc" + "f9ec5b70-6bb2-48cb-a323-dcd010d56e0e" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T114150Z:a96f29b3-e320-48f8-95cf-402f2cff5efc" + "WESTINDIA:20220516T162251Z:f9ec5b70-6bb2-48cb-a323-dcd010d56e0e" ], "Date": [ - "Sat, 26 Mar 2022 11:41:50 GMT" - ], - "Content-Length": [ - "188" - ], - "Content-Type": [ - "application/json" + "Mon, 16 May 2022 16:22:51 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, - "ResponseBody": "{\r\n \"id\": \"2e4a1477-f806-4f1a-888c-ed075a580fbe\",\r\n \"name\": \"2e4a1477-f806-4f1a-888c-ed075a580fbe\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-03-26T11:41:44.2049298Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", - "StatusCode": 200 + "ResponseBody": "", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/2e4a1477-f806-4f1a-888c-ed075a580fbe?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy8yZTRhMTQ3Ny1mODA2LTRmMWEtODg4Yy1lZDA3NWE1ODBmYmU/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/ab17db49-8017-46c6-b18a-6222af6324d4?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzL2FiMTdkYjQ5LTgwMTctNDZjNi1iMThhLTYyMjJhZjYzMjRkND9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6b6a56c7-e324-4949-951a-abd4444474b0" + "44699b43-5d03-4f3e-a7b2-dd901857f0dd" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -7942,67 +19182,67 @@ "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/ab17db49-8017-46c6-b18a-6222af6324d4?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "ba09cbef-f24f-4ada-af5a-c238fbec7dd7" + "8e6e4d85-24c2-4fec-8066-230416f0a33c" ], "x-ms-client-request-id": [ - "6b6a56c7-e324-4949-951a-abd4444474b0", - "6b6a56c7-e324-4949-951a-abd4444474b0" + "44699b43-5d03-4f3e-a7b2-dd901857f0dd", + "44699b43-5d03-4f3e-a7b2-dd901857f0dd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Server": [ - "Microsoft-IIS/10.0" - ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "287" + "253" ], "x-ms-correlation-request-id": [ - "ba09cbef-f24f-4ada-af5a-c238fbec7dd7" + "8e6e4d85-24c2-4fec-8066-230416f0a33c" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T114155Z:ba09cbef-f24f-4ada-af5a-c238fbec7dd7" + "WESTINDIA:20220516T162251Z:8e6e4d85-24c2-4fec-8066-230416f0a33c" ], "Date": [ - "Sat, 26 Mar 2022 11:41:55 GMT" - ], - "Content-Length": [ - "188" - ], - "Content-Type": [ - "application/json" + "Mon, 16 May 2022 16:22:51 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, - "ResponseBody": "{\r\n \"id\": \"2e4a1477-f806-4f1a-888c-ed075a580fbe\",\r\n \"name\": \"2e4a1477-f806-4f1a-888c-ed075a580fbe\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-03-26T11:41:44.2049298Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", - "StatusCode": 200 + "ResponseBody": "", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/2e4a1477-f806-4f1a-888c-ed075a580fbe?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy8yZTRhMTQ3Ny1mODA2LTRmMWEtODg4Yy1lZDA3NWE1ODBmYmU/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/ab17db49-8017-46c6-b18a-6222af6324d4?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzL2FiMTdkYjQ5LTgwMTctNDZjNi1iMThhLTYyMjJhZjYzMjRkND9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6b6a56c7-e324-4949-951a-abd4444474b0" + "44699b43-5d03-4f3e-a7b2-dd901857f0dd" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -8012,67 +19252,67 @@ "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/ab17db49-8017-46c6-b18a-6222af6324d4?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "987c22b4-6e33-4664-93a8-1d0185e3ea91" + "70fee0c3-8bbf-4383-be5b-c06e3f5cdc3d" ], "x-ms-client-request-id": [ - "6b6a56c7-e324-4949-951a-abd4444474b0", - "6b6a56c7-e324-4949-951a-abd4444474b0" + "44699b43-5d03-4f3e-a7b2-dd901857f0dd", + "44699b43-5d03-4f3e-a7b2-dd901857f0dd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Server": [ - "Microsoft-IIS/10.0" - ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "286" + "252" ], "x-ms-correlation-request-id": [ - "987c22b4-6e33-4664-93a8-1d0185e3ea91" + "70fee0c3-8bbf-4383-be5b-c06e3f5cdc3d" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T114200Z:987c22b4-6e33-4664-93a8-1d0185e3ea91" + "WESTINDIA:20220516T162252Z:70fee0c3-8bbf-4383-be5b-c06e3f5cdc3d" ], "Date": [ - "Sat, 26 Mar 2022 11:42:00 GMT" - ], - "Content-Length": [ - "188" - ], - "Content-Type": [ - "application/json" + "Mon, 16 May 2022 16:22:52 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, - "ResponseBody": "{\r\n \"id\": \"2e4a1477-f806-4f1a-888c-ed075a580fbe\",\r\n \"name\": \"2e4a1477-f806-4f1a-888c-ed075a580fbe\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-03-26T11:41:44.2049298Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", - "StatusCode": 200 + "ResponseBody": "", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/2e4a1477-f806-4f1a-888c-ed075a580fbe?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy8yZTRhMTQ3Ny1mODA2LTRmMWEtODg4Yy1lZDA3NWE1ODBmYmU/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/ab17db49-8017-46c6-b18a-6222af6324d4?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzL2FiMTdkYjQ5LTgwMTctNDZjNi1iMThhLTYyMjJhZjYzMjRkND9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6b6a56c7-e324-4949-951a-abd4444474b0" + "44699b43-5d03-4f3e-a7b2-dd901857f0dd" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -8082,67 +19322,67 @@ "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/ab17db49-8017-46c6-b18a-6222af6324d4?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "ae573e5f-72a9-499c-8e52-55415b8ce7f0" + "213b2595-4263-49b7-8279-de3f88a30556" ], "x-ms-client-request-id": [ - "6b6a56c7-e324-4949-951a-abd4444474b0", - "6b6a56c7-e324-4949-951a-abd4444474b0" + "44699b43-5d03-4f3e-a7b2-dd901857f0dd", + "44699b43-5d03-4f3e-a7b2-dd901857f0dd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Server": [ - "Microsoft-IIS/10.0" - ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "285" + "251" ], "x-ms-correlation-request-id": [ - "ae573e5f-72a9-499c-8e52-55415b8ce7f0" + "213b2595-4263-49b7-8279-de3f88a30556" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T114206Z:ae573e5f-72a9-499c-8e52-55415b8ce7f0" + "WESTINDIA:20220516T162252Z:213b2595-4263-49b7-8279-de3f88a30556" ], "Date": [ - "Sat, 26 Mar 2022 11:42:05 GMT" - ], - "Content-Length": [ - "304" - ], - "Content-Type": [ - "application/json" + "Mon, 16 May 2022 16:22:52 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, - "ResponseBody": "{\r\n \"id\": \"2e4a1477-f806-4f1a-888c-ed075a580fbe\",\r\n \"name\": \"2e4a1477-f806-4f1a-888c-ed075a580fbe\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-03-26T11:41:44.2049298Z\",\r\n \"endTime\": \"2022-03-26T11:41:44.2049298Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"0370d5ca-b522-4bd2-ac42-ead246fb743e\"\r\n }\r\n}", - "StatusCode": 200 + "ResponseBody": "", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/2e4a1477-f806-4f1a-888c-ed075a580fbe?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy8yZTRhMTQ3Ny1mODA2LTRmMWEtODg4Yy1lZDA3NWE1ODBmYmU/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/ab17db49-8017-46c6-b18a-6222af6324d4?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzL2FiMTdkYjQ5LTgwMTctNDZjNi1iMThhLTYyMjJhZjYzMjRkND9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6b6a56c7-e324-4949-951a-abd4444474b0" + "44699b43-5d03-4f3e-a7b2-dd901857f0dd" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -8152,67 +19392,67 @@ "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/ab17db49-8017-46c6-b18a-6222af6324d4?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "673ec35b-9f41-4bbb-beef-bda6d145f221" + "23507cc3-c275-441f-b587-4e60ead57f82" ], "x-ms-client-request-id": [ - "6b6a56c7-e324-4949-951a-abd4444474b0", - "6b6a56c7-e324-4949-951a-abd4444474b0" + "44699b43-5d03-4f3e-a7b2-dd901857f0dd", + "44699b43-5d03-4f3e-a7b2-dd901857f0dd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Server": [ - "Microsoft-IIS/10.0" - ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "284" + "250" ], "x-ms-correlation-request-id": [ - "673ec35b-9f41-4bbb-beef-bda6d145f221" + "23507cc3-c275-441f-b587-4e60ead57f82" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T114206Z:673ec35b-9f41-4bbb-beef-bda6d145f221" + "WESTINDIA:20220516T162253Z:23507cc3-c275-441f-b587-4e60ead57f82" ], "Date": [ - "Sat, 26 Mar 2022 11:42:06 GMT" - ], - "Content-Length": [ - "304" - ], - "Content-Type": [ - "application/json" + "Mon, 16 May 2022 16:22:52 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, - "ResponseBody": "{\r\n \"id\": \"2e4a1477-f806-4f1a-888c-ed075a580fbe\",\r\n \"name\": \"2e4a1477-f806-4f1a-888c-ed075a580fbe\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-03-26T11:41:44.2049298Z\",\r\n \"endTime\": \"2022-03-26T11:41:44.2049298Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"0370d5ca-b522-4bd2-ac42-ead246fb743e\"\r\n }\r\n}", - "StatusCode": 200 + "ResponseBody": "", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/0370d5ca-b522-4bd2-ac42-ead246fb743e?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy8wMzcwZDVjYS1iNTIyLTRiZDItYWM0Mi1lYWQyNDZmYjc0M2U/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/ab17db49-8017-46c6-b18a-6222af6324d4?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzL2FiMTdkYjQ5LTgwMTctNDZjNi1iMThhLTYyMjJhZjYzMjRkND9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6b6a56c7-e324-4949-951a-abd4444474b0" + "44699b43-5d03-4f3e-a7b2-dd901857f0dd" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -8222,68 +19462,67 @@ "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-IIS/10.0" + "Location": [ + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/ab17db49-8017-46c6-b18a-6222af6324d4?api-version=2022-02-01" + ], + "Retry-After": [ + "60" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "0fc1b443-61ca-4490-aed2-02e9f42602e8" + "2c30f964-60d2-4331-b348-fe60c7fd2b43" ], "x-ms-client-request-id": [ - "6b6a56c7-e324-4949-951a-abd4444474b0", - "6b6a56c7-e324-4949-951a-abd4444474b0" - ], - "X-Powered-By": [ - "ASP.NET" + "44699b43-5d03-4f3e-a7b2-dd901857f0dd", + "44699b43-5d03-4f3e-a7b2-dd901857f0dd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Powered-By": [ + "ASP.NET" + ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "221" + "249" ], "x-ms-correlation-request-id": [ - "0fc1b443-61ca-4490-aed2-02e9f42602e8" + "2c30f964-60d2-4331-b348-fe60c7fd2b43" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T114207Z:0fc1b443-61ca-4490-aed2-02e9f42602e8" + "WESTINDIA:20220516T162253Z:2c30f964-60d2-4331-b348-fe60c7fd2b43" ], "Date": [ - "Sat, 26 Mar 2022 11:42:06 GMT" - ], - "Content-Length": [ - "821" - ], - "Content-Type": [ - "application/json" + "Mon, 16 May 2022 16:22:53 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/0370d5ca-b522-4bd2-ac42-ead246fb743e\",\r\n \"name\": \"0370d5ca-b522-4bd2-ac42-ead246fb743e\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT21.5130994S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"Storage\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"File Share Name\": \"fs1\",\r\n \"Storage Account Name\": \"pstestsa8895\"\r\n }\r\n },\r\n \"isUserTriggered\": false,\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"DeleteBackupData\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-03-26T11:41:44.2049298Z\",\r\n \"endTime\": \"2022-03-26T11:42:05.7180292Z\",\r\n \"activityId\": \"6b6a56c7-e324-4949-951a-abd4444474b0\"\r\n }\r\n}", - "StatusCode": 200 + "ResponseBody": "", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NT9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", - "RequestMethod": "DELETE", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/ab17db49-8017-46c6-b18a-6222af6324d4?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzL2FiMTdkYjQ5LTgwMTctNDZjNi1iMThhLTYyMjJhZjYzMjRkND9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3cd05b24-ac9d-41f4-a30e-0d4ab0ef6361" + "44699b43-5d03-4f3e-a7b2-dd901857f0dd" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -8294,23 +19533,20 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperationResults/37f429db-c04c-4843-b342-a93abb7e29f5?fabricName=Azure?api-version=2021-12-01" + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/ab17db49-8017-46c6-b18a-6222af6324d4?api-version=2022-02-01" ], "Retry-After": [ "60" ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationsStatus/37f429db-c04c-4843-b342-a93abb7e29f5?api-version=2019-05-13-preview" - ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "1eb3b190-5ec1-425c-bc91-c2ca7a128a5c" + "5050a10f-b2fd-4d84-8b04-ccf8678e99e0" ], "x-ms-client-request-id": [ - "3cd05b24-ac9d-41f4-a30e-0d4ab0ef6361", - "3cd05b24-ac9d-41f4-a30e-0d4ab0ef6361" + "44699b43-5d03-4f3e-a7b2-dd901857f0dd", + "44699b43-5d03-4f3e-a7b2-dd901857f0dd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -8318,17 +19554,17 @@ "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ - "14998" + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "248" ], "x-ms-correlation-request-id": [ - "1eb3b190-5ec1-425c-bc91-c2ca7a128a5c" + "5050a10f-b2fd-4d84-8b04-ccf8678e99e0" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T114207Z:1eb3b190-5ec1-425c-bc91-c2ca7a128a5c" + "WESTINDIA:20220516T162254Z:5050a10f-b2fd-4d84-8b04-ccf8678e99e0" ], "Date": [ - "Sat, 26 Mar 2022 11:42:07 GMT" + "Mon, 16 May 2022 16:22:53 GMT" ], "Expires": [ "-1" @@ -8341,22 +19577,22 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/37f429db-c04c-4843-b342-a93abb7e29f5?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzLzM3ZjQyOWRiLWMwNGMtNDg0My1iMzQyLWE5M2FiYjdlMjlmNT9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/ab17db49-8017-46c6-b18a-6222af6324d4?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzL2FiMTdkYjQ5LTgwMTctNDZjNi1iMThhLTYyMjJhZjYzMjRkND9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3cd05b24-ac9d-41f4-a30e-0d4ab0ef6361" + "44699b43-5d03-4f3e-a7b2-dd901857f0dd" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -8367,7 +19603,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/37f429db-c04c-4843-b342-a93abb7e29f5?api-version=2021-12-01" + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/ab17db49-8017-46c6-b18a-6222af6324d4?api-version=2022-02-01" ], "Retry-After": [ "60" @@ -8376,11 +19612,11 @@ "nosniff" ], "x-ms-request-id": [ - "d0e269f6-51ee-4c1f-a5a3-f844500316d4" + "737146bd-65eb-4ef0-ac90-3d9a8b910976" ], "x-ms-client-request-id": [ - "3cd05b24-ac9d-41f4-a30e-0d4ab0ef6361", - "3cd05b24-ac9d-41f4-a30e-0d4ab0ef6361" + "44699b43-5d03-4f3e-a7b2-dd901857f0dd", + "44699b43-5d03-4f3e-a7b2-dd901857f0dd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -8389,16 +19625,16 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "299" + "247" ], "x-ms-correlation-request-id": [ - "d0e269f6-51ee-4c1f-a5a3-f844500316d4" + "737146bd-65eb-4ef0-ac90-3d9a8b910976" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T114208Z:d0e269f6-51ee-4c1f-a5a3-f844500316d4" + "WESTINDIA:20220516T162254Z:737146bd-65eb-4ef0-ac90-3d9a8b910976" ], "Date": [ - "Sat, 26 Mar 2022 11:42:07 GMT" + "Mon, 16 May 2022 16:22:54 GMT" ], "Expires": [ "-1" @@ -8411,22 +19647,22 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/37f429db-c04c-4843-b342-a93abb7e29f5?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzLzM3ZjQyOWRiLWMwNGMtNDg0My1iMzQyLWE5M2FiYjdlMjlmNT9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/ab17db49-8017-46c6-b18a-6222af6324d4?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzL2FiMTdkYjQ5LTgwMTctNDZjNi1iMThhLTYyMjJhZjYzMjRkND9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3cd05b24-ac9d-41f4-a30e-0d4ab0ef6361" + "44699b43-5d03-4f3e-a7b2-dd901857f0dd" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -8437,7 +19673,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/37f429db-c04c-4843-b342-a93abb7e29f5?api-version=2021-12-01" + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/ab17db49-8017-46c6-b18a-6222af6324d4?api-version=2022-02-01" ], "Retry-After": [ "60" @@ -8446,11 +19682,11 @@ "nosniff" ], "x-ms-request-id": [ - "1ae028cf-a4bf-4cca-b1ef-6baeb73e34e5" + "a52a9d83-679f-4f3b-9d9f-28e256019f3b" ], "x-ms-client-request-id": [ - "3cd05b24-ac9d-41f4-a30e-0d4ab0ef6361", - "3cd05b24-ac9d-41f4-a30e-0d4ab0ef6361" + "44699b43-5d03-4f3e-a7b2-dd901857f0dd", + "44699b43-5d03-4f3e-a7b2-dd901857f0dd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -8459,16 +19695,16 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "298" + "246" ], "x-ms-correlation-request-id": [ - "1ae028cf-a4bf-4cca-b1ef-6baeb73e34e5" + "a52a9d83-679f-4f3b-9d9f-28e256019f3b" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T114213Z:1ae028cf-a4bf-4cca-b1ef-6baeb73e34e5" + "WESTINDIA:20220516T162255Z:a52a9d83-679f-4f3b-9d9f-28e256019f3b" ], "Date": [ - "Sat, 26 Mar 2022 11:42:12 GMT" + "Mon, 16 May 2022 16:22:54 GMT" ], "Expires": [ "-1" @@ -8481,22 +19717,22 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/37f429db-c04c-4843-b342-a93abb7e29f5?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzLzM3ZjQyOWRiLWMwNGMtNDg0My1iMzQyLWE5M2FiYjdlMjlmNT9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/ab17db49-8017-46c6-b18a-6222af6324d4?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzL2FiMTdkYjQ5LTgwMTctNDZjNi1iMThhLTYyMjJhZjYzMjRkND9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3cd05b24-ac9d-41f4-a30e-0d4ab0ef6361" + "44699b43-5d03-4f3e-a7b2-dd901857f0dd" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -8507,7 +19743,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/37f429db-c04c-4843-b342-a93abb7e29f5?api-version=2021-12-01" + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/ab17db49-8017-46c6-b18a-6222af6324d4?api-version=2022-02-01" ], "Retry-After": [ "60" @@ -8516,11 +19752,11 @@ "nosniff" ], "x-ms-request-id": [ - "c39ae34d-ec3f-48fc-ba6f-2e3454457664" + "b66a9386-0faf-4123-8270-f48d1d087673" ], "x-ms-client-request-id": [ - "3cd05b24-ac9d-41f4-a30e-0d4ab0ef6361", - "3cd05b24-ac9d-41f4-a30e-0d4ab0ef6361" + "44699b43-5d03-4f3e-a7b2-dd901857f0dd", + "44699b43-5d03-4f3e-a7b2-dd901857f0dd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -8529,16 +19765,16 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "297" + "245" ], "x-ms-correlation-request-id": [ - "c39ae34d-ec3f-48fc-ba6f-2e3454457664" + "b66a9386-0faf-4123-8270-f48d1d087673" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T114218Z:c39ae34d-ec3f-48fc-ba6f-2e3454457664" + "WESTINDIA:20220516T162256Z:b66a9386-0faf-4123-8270-f48d1d087673" ], "Date": [ - "Sat, 26 Mar 2022 11:42:18 GMT" + "Mon, 16 May 2022 16:22:55 GMT" ], "Expires": [ "-1" @@ -8551,22 +19787,22 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/37f429db-c04c-4843-b342-a93abb7e29f5?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzLzM3ZjQyOWRiLWMwNGMtNDg0My1iMzQyLWE5M2FiYjdlMjlmNT9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/ab17db49-8017-46c6-b18a-6222af6324d4?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzL2FiMTdkYjQ5LTgwMTctNDZjNi1iMThhLTYyMjJhZjYzMjRkND9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3cd05b24-ac9d-41f4-a30e-0d4ab0ef6361" + "44699b43-5d03-4f3e-a7b2-dd901857f0dd" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -8577,7 +19813,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/37f429db-c04c-4843-b342-a93abb7e29f5?api-version=2021-12-01" + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/ab17db49-8017-46c6-b18a-6222af6324d4?api-version=2022-02-01" ], "Retry-After": [ "60" @@ -8586,11 +19822,11 @@ "nosniff" ], "x-ms-request-id": [ - "0d384360-50cd-4342-9ed0-57c13d4009bc" + "dda8f033-cf42-4559-a188-ced256fd5e30" ], "x-ms-client-request-id": [ - "3cd05b24-ac9d-41f4-a30e-0d4ab0ef6361", - "3cd05b24-ac9d-41f4-a30e-0d4ab0ef6361" + "44699b43-5d03-4f3e-a7b2-dd901857f0dd", + "44699b43-5d03-4f3e-a7b2-dd901857f0dd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -8599,16 +19835,16 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "296" + "244" ], "x-ms-correlation-request-id": [ - "0d384360-50cd-4342-9ed0-57c13d4009bc" + "dda8f033-cf42-4559-a188-ced256fd5e30" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T114224Z:0d384360-50cd-4342-9ed0-57c13d4009bc" + "WESTINDIA:20220516T162256Z:dda8f033-cf42-4559-a188-ced256fd5e30" ], "Date": [ - "Sat, 26 Mar 2022 11:42:23 GMT" + "Mon, 16 May 2022 16:22:55 GMT" ], "Expires": [ "-1" @@ -8621,22 +19857,22 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/37f429db-c04c-4843-b342-a93abb7e29f5?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzLzM3ZjQyOWRiLWMwNGMtNDg0My1iMzQyLWE5M2FiYjdlMjlmNT9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/ab17db49-8017-46c6-b18a-6222af6324d4?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzL2FiMTdkYjQ5LTgwMTctNDZjNi1iMThhLTYyMjJhZjYzMjRkND9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3cd05b24-ac9d-41f4-a30e-0d4ab0ef6361" + "44699b43-5d03-4f3e-a7b2-dd901857f0dd" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -8647,7 +19883,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/37f429db-c04c-4843-b342-a93abb7e29f5?api-version=2021-12-01" + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/ab17db49-8017-46c6-b18a-6222af6324d4?api-version=2022-02-01" ], "Retry-After": [ "60" @@ -8656,11 +19892,11 @@ "nosniff" ], "x-ms-request-id": [ - "b6f1c96e-1d28-4012-82d6-fdd1d7bce9de" + "d83b018c-dcdc-428c-a4a0-b8d02d81d147" ], "x-ms-client-request-id": [ - "3cd05b24-ac9d-41f4-a30e-0d4ab0ef6361", - "3cd05b24-ac9d-41f4-a30e-0d4ab0ef6361" + "44699b43-5d03-4f3e-a7b2-dd901857f0dd", + "44699b43-5d03-4f3e-a7b2-dd901857f0dd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -8669,16 +19905,16 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "295" + "243" ], "x-ms-correlation-request-id": [ - "b6f1c96e-1d28-4012-82d6-fdd1d7bce9de" + "d83b018c-dcdc-428c-a4a0-b8d02d81d147" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T114229Z:b6f1c96e-1d28-4012-82d6-fdd1d7bce9de" + "WESTINDIA:20220516T162257Z:d83b018c-dcdc-428c-a4a0-b8d02d81d147" ], "Date": [ - "Sat, 26 Mar 2022 11:42:28 GMT" + "Mon, 16 May 2022 16:22:56 GMT" ], "Expires": [ "-1" @@ -8691,22 +19927,22 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/37f429db-c04c-4843-b342-a93abb7e29f5?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzLzM3ZjQyOWRiLWMwNGMtNDg0My1iMzQyLWE5M2FiYjdlMjlmNT9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/ab17db49-8017-46c6-b18a-6222af6324d4?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzL2FiMTdkYjQ5LTgwMTctNDZjNi1iMThhLTYyMjJhZjYzMjRkND9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3cd05b24-ac9d-41f4-a30e-0d4ab0ef6361" + "44699b43-5d03-4f3e-a7b2-dd901857f0dd" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -8720,11 +19956,11 @@ "nosniff" ], "x-ms-request-id": [ - "7b614614-cfb1-4f82-bcd8-bd85c91347db" + "1b686285-408d-45d1-a47c-28ea90153383" ], "x-ms-client-request-id": [ - "3cd05b24-ac9d-41f4-a30e-0d4ab0ef6361", - "3cd05b24-ac9d-41f4-a30e-0d4ab0ef6361" + "44699b43-5d03-4f3e-a7b2-dd901857f0dd", + "44699b43-5d03-4f3e-a7b2-dd901857f0dd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -8733,38 +19969,38 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "294" + "242" ], "x-ms-correlation-request-id": [ - "7b614614-cfb1-4f82-bcd8-bd85c91347db" + "1b686285-408d-45d1-a47c-28ea90153383" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T114234Z:7b614614-cfb1-4f82-bcd8-bd85c91347db" + "WESTINDIA:20220516T162257Z:1b686285-408d-45d1-a47c-28ea90153383" ], "Date": [ - "Sat, 26 Mar 2022 11:42:34 GMT" + "Mon, 16 May 2022 16:22:57 GMT" ] }, "ResponseBody": "", "StatusCode": 204 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/37f429db-c04c-4843-b342-a93abb7e29f5?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzLzM3ZjQyOWRiLWMwNGMtNDg0My1iMzQyLWE5M2FiYjdlMjlmNT9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/ab17db49-8017-46c6-b18a-6222af6324d4?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzL2FiMTdkYjQ5LTgwMTctNDZjNi1iMThhLTYyMjJhZjYzMjRkND9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3cd05b24-ac9d-41f4-a30e-0d4ab0ef6361" + "44699b43-5d03-4f3e-a7b2-dd901857f0dd" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -8778,11 +20014,11 @@ "nosniff" ], "x-ms-request-id": [ - "c6a0e158-3126-4a78-b6ed-3e070a690daf" + "a64616f6-c3bc-4954-b9c5-2d1d8fb7f410" ], "x-ms-client-request-id": [ - "3cd05b24-ac9d-41f4-a30e-0d4ab0ef6361", - "3cd05b24-ac9d-41f4-a30e-0d4ab0ef6361" + "44699b43-5d03-4f3e-a7b2-dd901857f0dd", + "44699b43-5d03-4f3e-a7b2-dd901857f0dd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -8791,16 +20027,16 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "293" + "241" ], "x-ms-correlation-request-id": [ - "c6a0e158-3126-4a78-b6ed-3e070a690daf" + "a64616f6-c3bc-4954-b9c5-2d1d8fb7f410" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T114235Z:c6a0e158-3126-4a78-b6ed-3e070a690daf" + "WESTINDIA:20220516T162258Z:a64616f6-c3bc-4954-b9c5-2d1d8fb7f410" ], "Date": [ - "Sat, 26 Mar 2022 11:42:34 GMT" + "Mon, 16 May 2022 16:22:57 GMT" ] }, "ResponseBody": "", @@ -8810,7 +20046,7 @@ "Names": {}, "Variables": { "SubscriptionId": "38304e13-357e-405e-9e9a-220351dcce8c", - "StartDate1": "2022-03-25 11:41:12Z", - "EndDate1": "2022-03-26 11:41:12Z" + "StartDate1": "2022-05-15 16:21:33Z", + "EndDate1": "2022-05-16 16:21:33Z" } } \ No newline at end of file diff --git a/src/RecoveryServices/RecoveryServices.Backup.Test/SessionRecords/Microsoft.Azure.Commands.RecoveryServices.Backup.Test.ScenarioTests.JobTests/TestAzureVMCancelJob.json b/src/RecoveryServices/RecoveryServices.Backup.Test/SessionRecords/Microsoft.Azure.Commands.RecoveryServices.Backup.Test.ScenarioTests.JobTests/TestAzureVMCancelJob.json index 4f2f5d99f56b..b94850f905db 100644 --- a/src/RecoveryServices/RecoveryServices.Backup.Test/SessionRecords/Microsoft.Azure.Commands.RecoveryServices.Backup.Test.ScenarioTests.JobTests/TestAzureVMCancelJob.json +++ b/src/RecoveryServices/RecoveryServices.Backup.Test/SessionRecords/Microsoft.Azure.Commands.RecoveryServices.Backup.Test.ScenarioTests.JobTests/TestAzureVMCancelJob.json @@ -1,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourcegroups/PSTestRG3cdeb8e4?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlZ3JvdXBzL1BTVGVzdFJHM2NkZWI4ZTQ/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourcegroups/PSTestRGae69e07b?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlZ3JvdXBzL1BTVGVzdFJHYWU2OWUwN2I/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0f068cab-79d1-4cb5-a1fa-5f01c2801d5e" + "2543b590-63e1-4d32-8469-4f7304d29536" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" ] }, "ResponseHeaders": { @@ -30,16 +30,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11998" ], "x-ms-request-id": [ - "fff4954f-c1f6-45cf-a8b4-fbee8e0cd49d" + "7557d6e4-df2b-49ae-8ac1-779d2f00e9a4" ], "x-ms-correlation-request-id": [ - "fff4954f-c1f6-45cf-a8b4-fbee8e0cd49d" + "7557d6e4-df2b-49ae-8ac1-779d2f00e9a4" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T215006Z:fff4954f-c1f6-45cf-a8b4-fbee8e0cd49d" + "WESTINDIA:20220517T034600Z:7557d6e4-df2b-49ae-8ac1-779d2f00e9a4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -48,7 +48,7 @@ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 21:50:06 GMT" + "Tue, 17 May 2022 03:46:00 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -60,26 +60,26 @@ "108" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'PSTestRG3cdeb8e4' could not be found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'PSTestRGae69e07b' could not be found.\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourcegroups/PSTestRG3cdeb8e4?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlZ3JvdXBzL1BTVGVzdFJHM2NkZWI4ZTQ/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourcegroups/PSTestRGae69e07b?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlZ3JvdXBzL1BTVGVzdFJHYWU2OWUwN2I/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1268ec0e-1343-4363-ad11-11c5e94b7f1a" + "30b2df17-6f24-455b-b1ea-f8c8dabf9a5b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" ] }, "ResponseHeaders": { @@ -93,13 +93,13 @@ "11999" ], "x-ms-request-id": [ - "1de46b1f-a54e-4896-a8b4-5874b05b708e" + "73e02cf1-221d-48d4-8156-316a9b7b139a" ], "x-ms-correlation-request-id": [ - "1de46b1f-a54e-4896-a8b4-5874b05b708e" + "73e02cf1-221d-48d4-8156-316a9b7b139a" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T215935Z:1de46b1f-a54e-4896-a8b4-5874b05b708e" + "JIOINDIAWEST:20220517T035145Z:73e02cf1-221d-48d4-8156-316a9b7b139a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -108,7 +108,7 @@ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 21:59:35 GMT" + "Tue, 17 May 2022 03:51:44 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -120,26 +120,26 @@ "192" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG3cdeb8e4\",\r\n \"name\": \"PSTestRG3cdeb8e4\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGae69e07b\",\r\n \"name\": \"PSTestRGae69e07b\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourcegroups/PSTestRG3cdeb8e4?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlZ3JvdXBzL1BTVGVzdFJHM2NkZWI4ZTQ/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourcegroups/PSTestRGae69e07b?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlZ3JvdXBzL1BTVGVzdFJHYWU2OWUwN2I/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"southeastasia\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "e3515de7-62fd-44ca-9882-92338f08cd64" + "e4f301ef-07f6-4a4b-b652-55925523556e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" ], "Content-Type": [ "application/json; charset=utf-8" @@ -159,13 +159,13 @@ "1199" ], "x-ms-request-id": [ - "6b6032e4-ddb0-47a1-aaac-b185d9a10452" + "7ebd0c9d-9c74-489f-a34c-6a105826562f" ], "x-ms-correlation-request-id": [ - "6b6032e4-ddb0-47a1-aaac-b185d9a10452" + "7ebd0c9d-9c74-489f-a34c-6a105826562f" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T215010Z:6b6032e4-ddb0-47a1-aaac-b185d9a10452" + "WESTINDIA:20220517T034601Z:7ebd0c9d-9c74-489f-a34c-6a105826562f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -174,7 +174,7 @@ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 21:50:10 GMT" + "Tue, 17 May 2022 03:46:01 GMT" ], "Content-Length": [ "192" @@ -186,26 +186,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG3cdeb8e4\",\r\n \"name\": \"PSTestRG3cdeb8e4\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGae69e07b\",\r\n \"name\": \"PSTestRGae69e07b\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG3cdeb8e4/providers/Microsoft.Compute/virtualMachines/PSTestVM3cdeb0?api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHM2NkZWI4ZTQvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy9QU1Rlc3RWTTNjZGViMD9hcGktdmVyc2lvbj0yMDIxLTExLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGae69e07b/providers/Microsoft.Compute/virtualMachines/PSTestVMae69e0?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYWU2OWUwN2IvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy9QU1Rlc3RWTWFlNjllMD9hcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "616b5cf5-0dc9-4f66-8be3-cff60b650b97" + "d20de439-5035-47da-9dbb-3458e824e4c0" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ] }, "ResponseHeaders": { @@ -219,13 +219,13 @@ "gateway" ], "x-ms-request-id": [ - "a22bb878-5a4a-4e6a-a1ed-de6461106c20" + "881f89a5-64a4-4a21-b5f3-9e22295f4fd1" ], "x-ms-correlation-request-id": [ - "a22bb878-5a4a-4e6a-a1ed-de6461106c20" + "881f89a5-64a4-4a21-b5f3-9e22295f4fd1" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T215012Z:a22bb878-5a4a-4e6a-a1ed-de6461106c20" + "WESTINDIA:20220517T034602Z:881f89a5-64a4-4a21-b5f3-9e22295f4fd1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -234,7 +234,7 @@ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 21:50:12 GMT" + "Tue, 17 May 2022 03:46:02 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -246,23 +246,23 @@ "236" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Compute/virtualMachines/PSTestVM3cdeb0' under resource group 'PSTestRG3cdeb8e4' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Compute/virtualMachines/PSTestVMae69e0' under resource group 'PSTestRGae69e07b' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG3cdeb8e4/providers/Microsoft.Compute/virtualMachines/PSTestVM3cdeb0?api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHM2NkZWI4ZTQvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy9QU1Rlc3RWTTNjZGViMD9hcGktdmVyc2lvbj0yMDIxLTExLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGae69e07b/providers/Microsoft.Compute/virtualMachines/PSTestVMae69e0?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYWU2OWUwN2IvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy9QU1Rlc3RWTWFlNjllMD9hcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2de24e7a-076f-46b1-a4ca-26c0ca293cb2" + "9562aeca-1534-4c2b-b00b-4c9e67a988c6" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ] }, "ResponseHeaders": { @@ -273,35 +273,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/LowCostGet3Min;3997,Microsoft.Compute/LowCostGet30Min;31983" + "Microsoft.Compute/LowCostGet3Min;3992,Microsoft.Compute/LowCostGet30Min;31853" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "396c3193-9adc-49bd-befd-bb0846a7d17f" + "f8e4fa77-2587-4f7f-b6a1-06174038d4ab" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11978" ], "x-ms-correlation-request-id": [ - "e37c23f6-8501-48b9-ac49-f85f2c6a1828" + "13f8df48-aab7-4c1e-b662-1262b49b521f" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T215522Z:e37c23f6-8501-48b9-ac49-f85f2c6a1828" + "WESTINDIA:20220517T034816Z:13f8df48-aab7-4c1e-b662-1262b49b521f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 21:55:22 GMT" + "Tue, 17 May 2022 03:48:15 GMT" ], "Content-Length": [ - "2265" + "2195" ], "Content-Type": [ "application/json; charset=utf-8" @@ -310,26 +310,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"PSTestVM3cdeb0\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG3cdeb8e4/providers/Microsoft.Compute/virtualMachines/PSTestVM3cdeb0\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"Purpose\": \"PSTest\",\r\n \"DeleteBy\": \"06-2022\",\r\n \"AutoShutDown\": \"No\",\r\n \"Owner\": \"sarath\",\r\n \"MabUsed\": \"Yes\",\r\n \"azsecpack\": \"nonprod\",\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": \"true\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"de07bf67-8bec-4d3e-9f83-0d05d0b90ce8\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D1_v2\"\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.4946.220202\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"PSTestVM3cdeb0_OsDisk_1_19738942b4a94faca5d7d47d45df6471\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG3cdeb8e4/providers/Microsoft.Compute/disks/PSTestVM3cdeb0_OsDisk_1_19738942b4a94faca5d7d47d45df6471\"\r\n },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"PSTestVM3cdeb0\",\r\n \"adminUsername\": \"demouser\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"AutomaticByOS\",\r\n \"assessmentMode\": \"ImageDefault\"\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG3cdeb8e4/providers/Microsoft.Network/networkInterfaces/PSTestNIC3cdeb0\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"timeCreated\": \"2022-02-23T16:50:57.5386131-05:00\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"PSTestVMae69e0\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGae69e07b/providers/Microsoft.Compute/virtualMachines/PSTestVMae69e0\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"AutoShutDown\": \"No\",\r\n \"Owner\": \"sarath\",\r\n \"Purpose\": \"PSTest\",\r\n \"MabUsed\": \"Yes\",\r\n \"DeleteBy\": \"06-2022\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"033824c8-d2a0-4554-b69b-49c358c040ea\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D1_v2\"\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.5125.220505\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"PSTestVMae69e0_OsDisk_1_a0ab0e23dff9480e8f7fa42266bdf83c\",\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/PSTestRGae69e07b/providers/Microsoft.Compute/disks/PSTestVMae69e0_OsDisk_1_a0ab0e23dff9480e8f7fa42266bdf83c\"\r\n },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"PSTestVMae69e0\",\r\n \"adminUsername\": \"demouser\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"AutomaticByOS\",\r\n \"assessmentMode\": \"ImageDefault\"\r\n },\r\n \"enableVMAgentPlatformUpdates\": false\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/PSTestRGae69e07b/providers/Microsoft.Network/networkInterfaces/PSTestNICae69e0\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"timeCreated\": \"2022-05-17T09:16:24.4727149+05:30\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG3cdeb8e4/providers/Microsoft.Compute/virtualMachines/PSTestVM3cdeb0?api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHM2NkZWI4ZTQvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy9QU1Rlc3RWTTNjZGViMD9hcGktdmVyc2lvbj0yMDIxLTExLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGae69e07b/providers/Microsoft.Compute/virtualMachines/PSTestVMae69e0?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYWU2OWUwN2IvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy9QU1Rlc3RWTWFlNjllMD9hcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "49807c68-d3a7-46bd-ac6a-bb34c95b753d" + "0591aeb8-26ba-48db-8930-548d3b1359a9" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ] }, "ResponseHeaders": { @@ -340,35 +340,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/LowCostGet3Min;3996,Microsoft.Compute/LowCostGet30Min;31979" + "Microsoft.Compute/LowCostGet3Min;3986,Microsoft.Compute/LowCostGet30Min;31945" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "368bd57f-5ae9-4ed9-ad34-d17cfe9f3a2c" + "c82992d6-012d-4c0c-8c1d-eaf71ae5b87a" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11982" + "11969" ], "x-ms-correlation-request-id": [ - "a6442d56-e1c6-4bd4-8a71-a4e638741ec0" + "0651c78b-518d-4f9e-8900-7823a1fe905b" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T215804Z:a6442d56-e1c6-4bd4-8a71-a4e638741ec0" + "WESTINDIA:20220517T035021Z:0651c78b-518d-4f9e-8900-7823a1fe905b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 21:58:03 GMT" + "Tue, 17 May 2022 03:50:20 GMT" ], "Content-Length": [ - "2828" + "2758" ], "Content-Type": [ "application/json; charset=utf-8" @@ -377,26 +377,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"PSTestVM3cdeb0\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG3cdeb8e4/providers/Microsoft.Compute/virtualMachines/PSTestVM3cdeb0\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"Purpose\": \"PSTest\",\r\n \"DeleteBy\": \"06-2022\",\r\n \"AutoShutDown\": \"No\",\r\n \"Owner\": \"sarath\",\r\n \"MabUsed\": \"Yes\",\r\n \"azsecpack\": \"nonprod\",\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": \"true\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"de07bf67-8bec-4d3e-9f83-0d05d0b90ce8\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D1_v2\"\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.4946.220202\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"PSTestVM3cdeb0_OsDisk_1_19738942b4a94faca5d7d47d45df6471\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG3cdeb8e4/providers/Microsoft.Compute/disks/PSTestVM3cdeb0_OsDisk_1_19738942b4a94faca5d7d47d45df6471\"\r\n },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"PSTestVM3cdeb0\",\r\n \"adminUsername\": \"demouser\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"AutomaticByOS\",\r\n \"assessmentMode\": \"ImageDefault\"\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG3cdeb8e4/providers/Microsoft.Network/networkInterfaces/PSTestNIC3cdeb0\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"timeCreated\": \"2022-02-23T16:50:57.5386131-05:00\"\r\n },\r\n \"resources\": [\r\n {\r\n \"name\": \"BGInfo\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG3cdeb8e4/providers/Microsoft.Compute/virtualMachines/PSTestVM3cdeb0/extensions/BGInfo\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"southeastasia\",\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}", + "ResponseBody": "{\r\n \"name\": \"PSTestVMae69e0\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGae69e07b/providers/Microsoft.Compute/virtualMachines/PSTestVMae69e0\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"AutoShutDown\": \"No\",\r\n \"Owner\": \"sarath\",\r\n \"Purpose\": \"PSTest\",\r\n \"MabUsed\": \"Yes\",\r\n \"DeleteBy\": \"06-2022\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"033824c8-d2a0-4554-b69b-49c358c040ea\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D1_v2\"\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.5125.220505\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"PSTestVMae69e0_OsDisk_1_a0ab0e23dff9480e8f7fa42266bdf83c\",\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/PSTestRGae69e07b/providers/Microsoft.Compute/disks/PSTestVMae69e0_OsDisk_1_a0ab0e23dff9480e8f7fa42266bdf83c\"\r\n },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"PSTestVMae69e0\",\r\n \"adminUsername\": \"demouser\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"AutomaticByOS\",\r\n \"assessmentMode\": \"ImageDefault\"\r\n },\r\n \"enableVMAgentPlatformUpdates\": false\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/PSTestRGae69e07b/providers/Microsoft.Network/networkInterfaces/PSTestNICae69e0\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"timeCreated\": \"2022-05-17T09:16:24.4727149+05:30\"\r\n },\r\n \"resources\": [\r\n {\r\n \"name\": \"BGInfo\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGae69e07b/providers/Microsoft.Compute/virtualMachines/PSTestVMae69e0/extensions/BGInfo\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"BGInfo\",\r\n \"typeHandlerVersion\": \"2.2\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG3cdeb8e4/providers/Microsoft.Network/virtualNetworks/PSTestVNET3cdeb0?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHM2NkZWI4ZTQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy9QU1Rlc3RWTkVUM2NkZWIwP2FwaS12ZXJzaW9uPTIwMjEtMDUtMDE=", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGae69e07b/providers/Microsoft.Network/virtualNetworks/PSTestVNETae69e0?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYWU2OWUwN2IvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy9QU1Rlc3RWTkVUYWU2OWUwP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4a9c714d-85d9-49d2-8e3b-a3aa1e0fd3af" + "d878b9a5-cb50-4c3d-a104-51a0f47be15f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ] }, "ResponseHeaders": { @@ -410,13 +410,13 @@ "gateway" ], "x-ms-request-id": [ - "a2b5321f-107f-40d6-94b7-c31bdc57e551" + "3f2beb99-763e-47f3-a5d7-a1d2a7f896b6" ], "x-ms-correlation-request-id": [ - "a2b5321f-107f-40d6-94b7-c31bdc57e551" + "3f2beb99-763e-47f3-a5d7-a1d2a7f896b6" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T215015Z:a2b5321f-107f-40d6-94b7-c31bdc57e551" + "WESTINDIA:20220517T034602Z:3f2beb99-763e-47f3-a5d7-a1d2a7f896b6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -425,7 +425,7 @@ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 21:50:14 GMT" + "Tue, 17 May 2022 03:46:02 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -437,23 +437,23 @@ "238" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/virtualNetworks/PSTestVNET3cdeb0' under resource group 'PSTestRG3cdeb8e4' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/virtualNetworks/PSTestVNETae69e0' under resource group 'PSTestRGae69e07b' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG3cdeb8e4/providers/Microsoft.Network/virtualNetworks/PSTestVNET3cdeb0?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHM2NkZWI4ZTQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy9QU1Rlc3RWTkVUM2NkZWIwP2FwaS12ZXJzaW9uPTIwMjEtMDUtMDE=", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGae69e07b/providers/Microsoft.Network/virtualNetworks/PSTestVNETae69e0?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYWU2OWUwN2IvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy9QU1Rlc3RWTkVUYWU2OWUwP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4a9c714d-85d9-49d2-8e3b-a3aa1e0fd3af" + "d878b9a5-cb50-4c3d-a104-51a0f47be15f" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ] }, "ResponseHeaders": { @@ -464,16 +464,16 @@ "no-cache" ], "ETag": [ - "W/\"afbaa4ff-358b-4167-92d1-3b2d9e1304ff\"" + "W/\"83a0081a-0e31-4330-9b28-8fabc859c1fb\"" ], "x-ms-request-id": [ - "174941e4-e67b-4fec-b5ed-5d545745685d" + "03199d15-cc1b-4f42-bd45-69d0dca5a24c" ], "x-ms-correlation-request-id": [ - "77b2dafe-e02d-4e23-ba15-23d3e7f5cc99" + "9fa47990-4879-4680-a02f-579b9c22ef96" ], "x-ms-arm-service-request-id": [ - "36cd0a32-90b8-4848-b019-2667a57196be" + "5e499122-5116-453f-afc9-980e50ab1251" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -483,16 +483,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11994" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T215028Z:77b2dafe-e02d-4e23-ba15-23d3e7f5cc99" + "WESTINDIA:20220517T034609Z:9fa47990-4879-4680-a02f-579b9c22ef96" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 21:50:27 GMT" + "Tue, 17 May 2022 03:46:09 GMT" ], "Content-Length": [ "1315" @@ -504,26 +504,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"PSTestVNET3cdeb0\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG3cdeb8e4/providers/Microsoft.Network/virtualNetworks/PSTestVNET3cdeb0\",\r\n \"etag\": \"W/\\\"afbaa4ff-358b-4167-92d1-3b2d9e1304ff\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"2de7fdae-5d92-45ec-8a27-317a3a0d65fd\",\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\": \"PSTestSNC3cdeb0\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG3cdeb8e4/providers/Microsoft.Network/virtualNetworks/PSTestVNET3cdeb0/subnets/PSTestSNC3cdeb0\",\r\n \"etag\": \"W/\\\"afbaa4ff-358b-4167-92d1-3b2d9e1304ff\\\"\",\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 },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"PSTestVNETae69e0\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGae69e07b/providers/Microsoft.Network/virtualNetworks/PSTestVNETae69e0\",\r\n \"etag\": \"W/\\\"83a0081a-0e31-4330-9b28-8fabc859c1fb\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"a46ddb90-2449-48bb-be34-369de17805f1\",\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\": \"PSTestSNCae69e0\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGae69e07b/providers/Microsoft.Network/virtualNetworks/PSTestVNETae69e0/subnets/PSTestSNCae69e0\",\r\n \"etag\": \"W/\\\"83a0081a-0e31-4330-9b28-8fabc859c1fb\\\"\",\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 },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG3cdeb8e4/providers/Microsoft.Network/virtualNetworks/PSTestVNET3cdeb0?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHM2NkZWI4ZTQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy9QU1Rlc3RWTkVUM2NkZWIwP2FwaS12ZXJzaW9uPTIwMjEtMDUtMDE=", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGae69e07b/providers/Microsoft.Network/virtualNetworks/PSTestVNETae69e0?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYWU2OWUwN2IvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy9QU1Rlc3RWTkVUYWU2OWUwP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4a9c714d-85d9-49d2-8e3b-a3aa1e0fd3af" + "d878b9a5-cb50-4c3d-a104-51a0f47be15f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ] }, "ResponseHeaders": { @@ -534,16 +534,16 @@ "no-cache" ], "ETag": [ - "W/\"afbaa4ff-358b-4167-92d1-3b2d9e1304ff\"" + "W/\"83a0081a-0e31-4330-9b28-8fabc859c1fb\"" ], "x-ms-request-id": [ - "99847003-d173-4b12-b666-a14cbb6bfaea" + "351215b6-7a0a-4a81-b164-bdf68d270ab5" ], "x-ms-correlation-request-id": [ - "6386bf48-a12e-4691-8452-914dc69b3d46" + "a8a50594-7bc5-41bf-8048-f910853c171e" ], "x-ms-arm-service-request-id": [ - "12792b6b-fbe8-4916-a0a1-af56b17b6966" + "103796ab-d489-4a6c-baca-59aa3a203320" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -553,16 +553,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11993" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T215028Z:6386bf48-a12e-4691-8452-914dc69b3d46" + "WESTINDIA:20220517T034609Z:a8a50594-7bc5-41bf-8048-f910853c171e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 21:50:28 GMT" + "Tue, 17 May 2022 03:46:09 GMT" ], "Content-Length": [ "1315" @@ -574,26 +574,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"PSTestVNET3cdeb0\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG3cdeb8e4/providers/Microsoft.Network/virtualNetworks/PSTestVNET3cdeb0\",\r\n \"etag\": \"W/\\\"afbaa4ff-358b-4167-92d1-3b2d9e1304ff\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"2de7fdae-5d92-45ec-8a27-317a3a0d65fd\",\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\": \"PSTestSNC3cdeb0\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG3cdeb8e4/providers/Microsoft.Network/virtualNetworks/PSTestVNET3cdeb0/subnets/PSTestSNC3cdeb0\",\r\n \"etag\": \"W/\\\"afbaa4ff-358b-4167-92d1-3b2d9e1304ff\\\"\",\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 },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"PSTestVNETae69e0\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGae69e07b/providers/Microsoft.Network/virtualNetworks/PSTestVNETae69e0\",\r\n \"etag\": \"W/\\\"83a0081a-0e31-4330-9b28-8fabc859c1fb\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"a46ddb90-2449-48bb-be34-369de17805f1\",\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\": \"PSTestSNCae69e0\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGae69e07b/providers/Microsoft.Network/virtualNetworks/PSTestVNETae69e0/subnets/PSTestSNCae69e0\",\r\n \"etag\": \"W/\\\"83a0081a-0e31-4330-9b28-8fabc859c1fb\\\"\",\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 },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG3cdeb8e4/providers/Microsoft.Network/virtualNetworks/PSTestVNET3cdeb0?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHM2NkZWI4ZTQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy9QU1Rlc3RWTkVUM2NkZWIwP2FwaS12ZXJzaW9uPTIwMjEtMDUtMDE=", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGae69e07b/providers/Microsoft.Network/virtualNetworks/PSTestVNETae69e0?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYWU2OWUwN2IvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy9QU1Rlc3RWTkVUYWU2OWUwP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=", "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 \"applicationGatewayIpConfigurations\": []\r\n },\r\n \"name\": \"PSTestSNC3cdeb0\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"ipAllocations\": []\r\n },\r\n \"location\": \"southeastasia\"\r\n}", + "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 \"applicationGatewayIpConfigurations\": []\r\n },\r\n \"name\": \"PSTestSNCae69e0\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"ipAllocations\": []\r\n },\r\n \"location\": \"southeastasia\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "4a9c714d-85d9-49d2-8e3b-a3aa1e0fd3af" + "d878b9a5-cb50-4c3d-a104-51a0f47be15f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -613,19 +613,19 @@ "3" ], "x-ms-request-id": [ - "a3508564-7fa9-47d6-bb85-49da203d6177" + "947351ff-321b-4777-b5c2-2c104910e258" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Network/locations/southeastasia/operations/a3508564-7fa9-47d6-bb85-49da203d6177?api-version=2021-05-01" + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Network/locations/southeastasia/operations/947351ff-321b-4777-b5c2-2c104910e258?api-version=2021-08-01" ], "x-ms-correlation-request-id": [ - "b8c5e83c-afb1-4e5d-8c1e-4fc83dcb0e7a" + "375829e9-794c-4a84-bd70-8092c999b9d7" ], "Azure-AsyncNotification": [ "Enabled" ], "x-ms-arm-service-request-id": [ - "2a9d2ec0-73d7-4805-b699-f38464a438a3" + "656f914b-9193-4654-b650-ab63970934ff" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -635,16 +635,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1198" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T215024Z:b8c5e83c-afb1-4e5d-8c1e-4fc83dcb0e7a" + "WESTINDIA:20220517T034606Z:375829e9-794c-4a84-bd70-8092c999b9d7" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 21:50:24 GMT" + "Tue, 17 May 2022 03:46:06 GMT" ], "Content-Length": [ "1313" @@ -656,23 +656,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"PSTestVNET3cdeb0\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG3cdeb8e4/providers/Microsoft.Network/virtualNetworks/PSTestVNET3cdeb0\",\r\n \"etag\": \"W/\\\"1325c67a-94f2-4ae9-8da7-d9035b61cbc7\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"2de7fdae-5d92-45ec-8a27-317a3a0d65fd\",\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\": \"PSTestSNC3cdeb0\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG3cdeb8e4/providers/Microsoft.Network/virtualNetworks/PSTestVNET3cdeb0/subnets/PSTestSNC3cdeb0\",\r\n \"etag\": \"W/\\\"1325c67a-94f2-4ae9-8da7-d9035b61cbc7\\\"\",\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 },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"PSTestVNETae69e0\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGae69e07b/providers/Microsoft.Network/virtualNetworks/PSTestVNETae69e0\",\r\n \"etag\": \"W/\\\"1c1e8bcb-ac74-439a-9e39-ef44962a50f2\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"a46ddb90-2449-48bb-be34-369de17805f1\",\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\": \"PSTestSNCae69e0\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGae69e07b/providers/Microsoft.Network/virtualNetworks/PSTestVNETae69e0/subnets/PSTestSNCae69e0\",\r\n \"etag\": \"W/\\\"1c1e8bcb-ac74-439a-9e39-ef44962a50f2\\\"\",\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 },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Network/locations/southeastasia/operations/a3508564-7fa9-47d6-bb85-49da203d6177?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2EzNTA4NTY0LTdmYTktNDdkNi1iYjg1LTQ5ZGEyMDNkNjE3Nz9hcGktdmVyc2lvbj0yMDIxLTA1LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Network/locations/southeastasia/operations/947351ff-321b-4777-b5c2-2c104910e258?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzk0NzM1MWZmLTMyMWItNDc3Ny1iNWMyLTJjMTA0OTEwZTI1OD9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4a9c714d-85d9-49d2-8e3b-a3aa1e0fd3af" + "d878b9a5-cb50-4c3d-a104-51a0f47be15f" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ] }, "ResponseHeaders": { @@ -683,13 +683,13 @@ "no-cache" ], "x-ms-request-id": [ - "cfd874d4-7324-4274-a721-276976a46e77" + "6108f9fe-412a-43f8-a869-dba4e397e699" ], "x-ms-correlation-request-id": [ - "1601cb00-8abb-4612-8290-8afd329bfa5e" + "b4871176-e828-4149-abaa-7a9fc32749a1" ], "x-ms-arm-service-request-id": [ - "b0b50f63-d1b4-4f4d-8c58-ad59f288ebdd" + "af8f7a1a-cdc0-46c1-bf3d-0890e27ee350" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -699,16 +699,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11995" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T215027Z:1601cb00-8abb-4612-8290-8afd329bfa5e" + "WESTINDIA:20220517T034609Z:b4871176-e828-4149-abaa-7a9fc32749a1" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 21:50:27 GMT" + "Tue, 17 May 2022 03:46:09 GMT" ], "Content-Length": [ "29" @@ -724,22 +724,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG3cdeb8e4/providers/Microsoft.Network/publicIPAddresses/pstestpublicdns3cdeb0?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHM2NkZWI4ZTQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BzdGVzdHB1YmxpY2RuczNjZGViMD9hcGktdmVyc2lvbj0yMDIxLTA1LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGae69e07b/providers/Microsoft.Network/publicIPAddresses/pstestpublicdnsae69e0?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYWU2OWUwN2IvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BzdGVzdHB1YmxpY2Ruc2FlNjllMD9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bdb3b5bb-a4af-4ab8-85a5-46c1b8abd057" + "1dbee220-cda6-4fae-9f99-e8dbf572e12c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ] }, "ResponseHeaders": { @@ -753,13 +753,13 @@ "gateway" ], "x-ms-request-id": [ - "17b76cfd-c3e4-403d-9306-8bace1cddd93" + "8774e7b8-3b88-44d7-bd91-b73c35ce6660" ], "x-ms-correlation-request-id": [ - "17b76cfd-c3e4-403d-9306-8bace1cddd93" + "8774e7b8-3b88-44d7-bd91-b73c35ce6660" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T215028Z:17b76cfd-c3e4-403d-9306-8bace1cddd93" + "WESTINDIA:20220517T034610Z:8774e7b8-3b88-44d7-bd91-b73c35ce6660" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -768,7 +768,7 @@ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 21:50:28 GMT" + "Tue, 17 May 2022 03:46:09 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -780,23 +780,23 @@ "245" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/publicIPAddresses/pstestpublicdns3cdeb0' under resource group 'PSTestRG3cdeb8e4' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/publicIPAddresses/pstestpublicdnsae69e0' under resource group 'PSTestRGae69e07b' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG3cdeb8e4/providers/Microsoft.Network/publicIPAddresses/pstestpublicdns3cdeb0?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHM2NkZWI4ZTQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BzdGVzdHB1YmxpY2RuczNjZGViMD9hcGktdmVyc2lvbj0yMDIxLTA1LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGae69e07b/providers/Microsoft.Network/publicIPAddresses/pstestpublicdnsae69e0?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYWU2OWUwN2IvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BzdGVzdHB1YmxpY2Ruc2FlNjllMD9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bdb3b5bb-a4af-4ab8-85a5-46c1b8abd057" + "1dbee220-cda6-4fae-9f99-e8dbf572e12c" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ] }, "ResponseHeaders": { @@ -807,16 +807,16 @@ "no-cache" ], "ETag": [ - "W/\"bad3dd42-b76d-4ccf-ac1f-efa9faa9c149\"" + "W/\"252dd277-a940-4794-8081-e171033d29d8\"" ], "x-ms-request-id": [ - "a8b5b065-9f1d-4d06-9cfb-e995d6b17b43" + "ab586b2a-5fef-43d1-ad02-34715839d943" ], "x-ms-correlation-request-id": [ - "3de3ac31-1e2d-4124-abd7-fae93937ca2e" + "ef315fe2-2ce2-40cf-a9d4-81d4baee801d" ], "x-ms-arm-service-request-id": [ - "4f939f7e-5e86-4980-aa4c-7ed96105412f" + "fce21f4e-c2b5-4ece-b8a3-867f31bc677f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -826,19 +826,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11990" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T215034Z:3de3ac31-1e2d-4124-abd7-fae93937ca2e" + "WESTINDIA:20220517T034613Z:ef315fe2-2ce2-40cf-a9d4-81d4baee801d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 21:50:33 GMT" + "Tue, 17 May 2022 03:46:12 GMT" ], "Content-Length": [ - "699" + "697" ], "Content-Type": [ "application/json; charset=utf-8" @@ -847,26 +847,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"pstestpublicdns3cdeb0\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG3cdeb8e4/providers/Microsoft.Network/publicIPAddresses/pstestpublicdns3cdeb0\",\r\n \"etag\": \"W/\\\"bad3dd42-b76d-4ccf-ac1f-efa9faa9c149\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"029a493c-f4b3-487e-83d4-17db8478b294\",\r\n \"ipAddress\": \"20.205.212.170\",\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 \"tier\": \"Regional\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"pstestpublicdnsae69e0\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGae69e07b/providers/Microsoft.Network/publicIPAddresses/pstestpublicdnsae69e0\",\r\n \"etag\": \"W/\\\"252dd277-a940-4794-8081-e171033d29d8\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"001d2899-a5ee-4bc1-ae1c-155340160c46\",\r\n \"ipAddress\": \"52.187.63.94\",\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 \"tier\": \"Regional\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG3cdeb8e4/providers/Microsoft.Network/publicIPAddresses/pstestpublicdns3cdeb0?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHM2NkZWI4ZTQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BzdGVzdHB1YmxpY2RuczNjZGViMD9hcGktdmVyc2lvbj0yMDIxLTA1LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGae69e07b/providers/Microsoft.Network/publicIPAddresses/pstestpublicdnsae69e0?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYWU2OWUwN2IvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BzdGVzdHB1YmxpY2Ruc2FlNjllMD9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bdb3b5bb-a4af-4ab8-85a5-46c1b8abd057" + "1dbee220-cda6-4fae-9f99-e8dbf572e12c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ] }, "ResponseHeaders": { @@ -877,16 +877,16 @@ "no-cache" ], "ETag": [ - "W/\"bad3dd42-b76d-4ccf-ac1f-efa9faa9c149\"" + "W/\"252dd277-a940-4794-8081-e171033d29d8\"" ], "x-ms-request-id": [ - "7a932248-1cd3-419e-a9fc-d44bd72723bd" + "02505536-4acf-4303-8070-17f71be5c9c9" ], "x-ms-correlation-request-id": [ - "ef75060a-f4b4-453a-80d0-e022818170b9" + "1a611155-e24f-45d0-8b4a-1a471a7c55df" ], "x-ms-arm-service-request-id": [ - "083c7530-4c4a-48b5-b74c-e786e1e1c3b1" + "64dae2ce-4864-416c-ac63-81b4972b9731" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -896,19 +896,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11989" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T215034Z:ef75060a-f4b4-453a-80d0-e022818170b9" + "WESTINDIA:20220517T034613Z:1a611155-e24f-45d0-8b4a-1a471a7c55df" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 21:50:34 GMT" + "Tue, 17 May 2022 03:46:12 GMT" ], "Content-Length": [ - "699" + "697" ], "Content-Type": [ "application/json; charset=utf-8" @@ -917,26 +917,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"pstestpublicdns3cdeb0\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG3cdeb8e4/providers/Microsoft.Network/publicIPAddresses/pstestpublicdns3cdeb0\",\r\n \"etag\": \"W/\\\"bad3dd42-b76d-4ccf-ac1f-efa9faa9c149\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"029a493c-f4b3-487e-83d4-17db8478b294\",\r\n \"ipAddress\": \"20.205.212.170\",\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 \"tier\": \"Regional\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"pstestpublicdnsae69e0\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGae69e07b/providers/Microsoft.Network/publicIPAddresses/pstestpublicdnsae69e0\",\r\n \"etag\": \"W/\\\"252dd277-a940-4794-8081-e171033d29d8\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"001d2899-a5ee-4bc1-ae1c-155340160c46\",\r\n \"ipAddress\": \"52.187.63.94\",\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 \"tier\": \"Regional\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG3cdeb8e4/providers/Microsoft.Network/publicIPAddresses/pstestpublicdns3cdeb0?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHM2NkZWI4ZTQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BzdGVzdHB1YmxpY2RuczNjZGViMD9hcGktdmVyc2lvbj0yMDIxLTA1LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGae69e07b/providers/Microsoft.Network/publicIPAddresses/pstestpublicdnsae69e0?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYWU2OWUwN2IvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BzdGVzdHB1YmxpY2Ruc2FlNjllMD9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "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\": \"southeastasia\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "bdb3b5bb-a4af-4ab8-85a5-46c1b8abd057" + "1dbee220-cda6-4fae-9f99-e8dbf572e12c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -956,19 +956,19 @@ "1" ], "x-ms-request-id": [ - "87e47a3e-405a-42cd-bd48-c1cba0c28def" + "8098d3a0-2d61-484a-bcfe-92fd2e878a7b" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Network/locations/southeastasia/operations/87e47a3e-405a-42cd-bd48-c1cba0c28def?api-version=2021-05-01" + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Network/locations/southeastasia/operations/8098d3a0-2d61-484a-bcfe-92fd2e878a7b?api-version=2021-08-01" ], "x-ms-correlation-request-id": [ - "53c2555c-c189-4bb6-a9bf-9a9e80fafbf0" + "513ede92-d199-44dc-919f-5271062b37c1" ], "Azure-AsyncNotification": [ "Enabled" ], "x-ms-arm-service-request-id": [ - "e5704090-72f6-41d9-8a8a-7d1512c0dedb" + "7de3a90e-9ea2-4803-8513-eaa8ebc816dc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -978,16 +978,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1197" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T215032Z:53c2555c-c189-4bb6-a9bf-9a9e80fafbf0" + "WESTINDIA:20220517T034611Z:513ede92-d199-44dc-919f-5271062b37c1" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 21:50:32 GMT" + "Tue, 17 May 2022 03:46:11 GMT" ], "Content-Length": [ "662" @@ -999,23 +999,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"pstestpublicdns3cdeb0\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG3cdeb8e4/providers/Microsoft.Network/publicIPAddresses/pstestpublicdns3cdeb0\",\r\n \"etag\": \"W/\\\"68a0a4a5-2f32-4868-83ed-09fda3a19dc5\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"029a493c-f4b3-487e-83d4-17db8478b294\",\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 \"tier\": \"Regional\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"pstestpublicdnsae69e0\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGae69e07b/providers/Microsoft.Network/publicIPAddresses/pstestpublicdnsae69e0\",\r\n \"etag\": \"W/\\\"9a911b2a-938b-471f-854b-2f7dbb5cbfcb\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"001d2899-a5ee-4bc1-ae1c-155340160c46\",\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 \"tier\": \"Regional\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Network/locations/southeastasia/operations/87e47a3e-405a-42cd-bd48-c1cba0c28def?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzg3ZTQ3YTNlLTQwNWEtNDJjZC1iZDQ4LWMxY2JhMGMyOGRlZj9hcGktdmVyc2lvbj0yMDIxLTA1LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Network/locations/southeastasia/operations/8098d3a0-2d61-484a-bcfe-92fd2e878a7b?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzgwOThkM2EwLTJkNjEtNDg0YS1iY2ZlLTkyZmQyZTg3OGE3Yj9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bdb3b5bb-a4af-4ab8-85a5-46c1b8abd057" + "1dbee220-cda6-4fae-9f99-e8dbf572e12c" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ] }, "ResponseHeaders": { @@ -1026,13 +1026,13 @@ "no-cache" ], "x-ms-request-id": [ - "a62e4396-0c39-4828-9eb2-d7d9b689c1ae" + "991224d6-9f87-4ccd-9bd8-45888a3eceea" ], "x-ms-correlation-request-id": [ - "d5749842-7c74-42a0-b4df-ae45d48a0b08" + "4a285c75-42b6-429b-9c11-cfe5369c93c2" ], "x-ms-arm-service-request-id": [ - "14cecc43-2dc8-4c25-b134-3c57f972ded4" + "133423a8-a4e0-407e-b04a-2234ee43d6a1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1042,16 +1042,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11991" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T215033Z:d5749842-7c74-42a0-b4df-ae45d48a0b08" + "WESTINDIA:20220517T034612Z:4a285c75-42b6-429b-9c11-cfe5369c93c2" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 21:50:33 GMT" + "Tue, 17 May 2022 03:46:12 GMT" ], "Content-Length": [ "29" @@ -1067,22 +1067,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG3cdeb8e4/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG3cdeb0?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHM2NkZWI4ZTQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtTZWN1cml0eUdyb3Vwcy9QU1Rlc3ROU0czY2RlYjA/YXBpLXZlcnNpb249MjAyMS0wNS0wMQ==", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGae69e07b/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGae69e0?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYWU2OWUwN2IvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtTZWN1cml0eUdyb3Vwcy9QU1Rlc3ROU0dhZTY5ZTA/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "38c07543-9426-4ffb-95cd-bd20f877db5c" + "d53794f8-d034-4fda-aa49-6d22aaa373f6" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ] }, "ResponseHeaders": { @@ -1096,13 +1096,13 @@ "gateway" ], "x-ms-request-id": [ - "f048f37b-3fb4-4912-89a1-7c86bf0b8e15" + "44a87c81-5121-4aba-a0db-bef8155ff36a" ], "x-ms-correlation-request-id": [ - "f048f37b-3fb4-4912-89a1-7c86bf0b8e15" + "44a87c81-5121-4aba-a0db-bef8155ff36a" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T215034Z:f048f37b-3fb4-4912-89a1-7c86bf0b8e15" + "WESTINDIA:20220517T034613Z:44a87c81-5121-4aba-a0db-bef8155ff36a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1111,7 +1111,7 @@ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 21:50:34 GMT" + "Tue, 17 May 2022 03:46:13 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1123,23 +1123,23 @@ "243" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/networkSecurityGroups/PSTestNSG3cdeb0' under resource group 'PSTestRG3cdeb8e4' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/networkSecurityGroups/PSTestNSGae69e0' under resource group 'PSTestRGae69e07b' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG3cdeb8e4/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG3cdeb0?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHM2NkZWI4ZTQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtTZWN1cml0eUdyb3Vwcy9QU1Rlc3ROU0czY2RlYjA/YXBpLXZlcnNpb249MjAyMS0wNS0wMQ==", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGae69e07b/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGae69e0?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYWU2OWUwN2IvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtTZWN1cml0eUdyb3Vwcy9QU1Rlc3ROU0dhZTY5ZTA/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "38c07543-9426-4ffb-95cd-bd20f877db5c" + "d53794f8-d034-4fda-aa49-6d22aaa373f6" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ] }, "ResponseHeaders": { @@ -1150,16 +1150,16 @@ "no-cache" ], "ETag": [ - "W/\"6b1b73a8-ce09-45b3-a159-1e24faad39d0\"" + "W/\"f1833ef7-b1f8-4256-8547-f874a5ef98f0\"" ], "x-ms-request-id": [ - "7239ecff-589f-4567-8e83-4e4c1be9cf21" + "44eed998-641b-448d-8d4b-10f610999c69" ], "x-ms-correlation-request-id": [ - "ef1b2bd8-8142-40f9-8559-dd5172a48c25" + "06f0073d-31aa-47f0-9a20-1da3427e3dbb" ], "x-ms-arm-service-request-id": [ - "8fb33776-f583-443b-8965-ab6c5e6067bf" + "c184b387-7a58-4168-b0d2-11c143970fad" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1169,16 +1169,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11986" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T215043Z:ef1b2bd8-8142-40f9-8559-dd5172a48c25" + "WESTINDIA:20220517T034618Z:06f0073d-31aa-47f0-9a20-1da3427e3dbb" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 21:50:42 GMT" + "Tue, 17 May 2022 03:46:18 GMT" ], "Content-Length": [ "8475" @@ -1190,26 +1190,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"PSTestNSG3cdeb0\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG3cdeb8e4/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG3cdeb0\",\r\n \"etag\": \"W/\\\"6b1b73a8-ce09-45b3-a159-1e24faad39d0\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"8eb28693-3484-432b-b915-28979a81ae1f\",\r\n \"securityRules\": [\r\n {\r\n \"name\": \"PSTestNSGRuleRDP3cdeb0\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG3cdeb8e4/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG3cdeb0/securityRules/PSTestNSGRuleRDP3cdeb0\",\r\n \"etag\": \"W/\\\"6b1b73a8-ce09-45b3-a159-1e24faad39d0\\\"\",\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\": \"PSTestNSGRuleWeb3cdeb0\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG3cdeb8e4/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG3cdeb0/securityRules/PSTestNSGRuleWeb3cdeb0\",\r\n \"etag\": \"W/\\\"6b1b73a8-ce09-45b3-a159-1e24faad39d0\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG3cdeb8e4/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG3cdeb0/defaultSecurityRules/AllowVnetInBound\",\r\n \"etag\": \"W/\\\"6b1b73a8-ce09-45b3-a159-1e24faad39d0\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG3cdeb8e4/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG3cdeb0/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\r\n \"etag\": \"W/\\\"6b1b73a8-ce09-45b3-a159-1e24faad39d0\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG3cdeb8e4/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG3cdeb0/defaultSecurityRules/DenyAllInBound\",\r\n \"etag\": \"W/\\\"6b1b73a8-ce09-45b3-a159-1e24faad39d0\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG3cdeb8e4/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG3cdeb0/defaultSecurityRules/AllowVnetOutBound\",\r\n \"etag\": \"W/\\\"6b1b73a8-ce09-45b3-a159-1e24faad39d0\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG3cdeb8e4/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG3cdeb0/defaultSecurityRules/AllowInternetOutBound\",\r\n \"etag\": \"W/\\\"6b1b73a8-ce09-45b3-a159-1e24faad39d0\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG3cdeb8e4/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG3cdeb0/defaultSecurityRules/DenyAllOutBound\",\r\n \"etag\": \"W/\\\"6b1b73a8-ce09-45b3-a159-1e24faad39d0\\\"\",\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}", + "ResponseBody": "{\r\n \"name\": \"PSTestNSGae69e0\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGae69e07b/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGae69e0\",\r\n \"etag\": \"W/\\\"f1833ef7-b1f8-4256-8547-f874a5ef98f0\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"0902b32d-792e-4a21-bfc5-3012a0a99427\",\r\n \"securityRules\": [\r\n {\r\n \"name\": \"PSTestNSGRuleRDPae69e0\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGae69e07b/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGae69e0/securityRules/PSTestNSGRuleRDPae69e0\",\r\n \"etag\": \"W/\\\"f1833ef7-b1f8-4256-8547-f874a5ef98f0\\\"\",\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\": \"PSTestNSGRuleWebae69e0\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGae69e07b/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGae69e0/securityRules/PSTestNSGRuleWebae69e0\",\r\n \"etag\": \"W/\\\"f1833ef7-b1f8-4256-8547-f874a5ef98f0\\\"\",\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/PSTestRGae69e07b/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGae69e0/defaultSecurityRules/AllowVnetInBound\",\r\n \"etag\": \"W/\\\"f1833ef7-b1f8-4256-8547-f874a5ef98f0\\\"\",\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/PSTestRGae69e07b/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGae69e0/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\r\n \"etag\": \"W/\\\"f1833ef7-b1f8-4256-8547-f874a5ef98f0\\\"\",\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/PSTestRGae69e07b/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGae69e0/defaultSecurityRules/DenyAllInBound\",\r\n \"etag\": \"W/\\\"f1833ef7-b1f8-4256-8547-f874a5ef98f0\\\"\",\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/PSTestRGae69e07b/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGae69e0/defaultSecurityRules/AllowVnetOutBound\",\r\n \"etag\": \"W/\\\"f1833ef7-b1f8-4256-8547-f874a5ef98f0\\\"\",\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/PSTestRGae69e07b/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGae69e0/defaultSecurityRules/AllowInternetOutBound\",\r\n \"etag\": \"W/\\\"f1833ef7-b1f8-4256-8547-f874a5ef98f0\\\"\",\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/PSTestRGae69e07b/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGae69e0/defaultSecurityRules/DenyAllOutBound\",\r\n \"etag\": \"W/\\\"f1833ef7-b1f8-4256-8547-f874a5ef98f0\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG3cdeb8e4/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG3cdeb0?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHM2NkZWI4ZTQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtTZWN1cml0eUdyb3Vwcy9QU1Rlc3ROU0czY2RlYjA/YXBpLXZlcnNpb249MjAyMS0wNS0wMQ==", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGae69e07b/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGae69e0?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYWU2OWUwN2IvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtTZWN1cml0eUdyb3Vwcy9QU1Rlc3ROU0dhZTY5ZTA/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "38c07543-9426-4ffb-95cd-bd20f877db5c" + "d53794f8-d034-4fda-aa49-6d22aaa373f6" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ] }, "ResponseHeaders": { @@ -1220,16 +1220,16 @@ "no-cache" ], "ETag": [ - "W/\"6b1b73a8-ce09-45b3-a159-1e24faad39d0\"" + "W/\"f1833ef7-b1f8-4256-8547-f874a5ef98f0\"" ], "x-ms-request-id": [ - "8a3af4f0-e3a0-41c2-bc3d-980971f86ab6" + "666bbe3b-f86a-411a-9e48-d66be797b119" ], "x-ms-correlation-request-id": [ - "2c46d4f5-bed1-4dfe-8f69-901ccc8c58e7" + "4783fe87-c2dc-4e3c-ac4e-83ab31dfdcfc" ], "x-ms-arm-service-request-id": [ - "25ade000-61b3-4c57-ad72-7841111116b6" + "5668b422-5fe5-4fdf-befd-13bbe1c47c1e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1239,16 +1239,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "11985" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T215043Z:2c46d4f5-bed1-4dfe-8f69-901ccc8c58e7" + "WESTINDIA:20220517T034618Z:4783fe87-c2dc-4e3c-ac4e-83ab31dfdcfc" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 21:50:43 GMT" + "Tue, 17 May 2022 03:46:18 GMT" ], "Content-Length": [ "8475" @@ -1260,26 +1260,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"PSTestNSG3cdeb0\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG3cdeb8e4/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG3cdeb0\",\r\n \"etag\": \"W/\\\"6b1b73a8-ce09-45b3-a159-1e24faad39d0\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"8eb28693-3484-432b-b915-28979a81ae1f\",\r\n \"securityRules\": [\r\n {\r\n \"name\": \"PSTestNSGRuleRDP3cdeb0\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG3cdeb8e4/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG3cdeb0/securityRules/PSTestNSGRuleRDP3cdeb0\",\r\n \"etag\": \"W/\\\"6b1b73a8-ce09-45b3-a159-1e24faad39d0\\\"\",\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\": \"PSTestNSGRuleWeb3cdeb0\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG3cdeb8e4/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG3cdeb0/securityRules/PSTestNSGRuleWeb3cdeb0\",\r\n \"etag\": \"W/\\\"6b1b73a8-ce09-45b3-a159-1e24faad39d0\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG3cdeb8e4/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG3cdeb0/defaultSecurityRules/AllowVnetInBound\",\r\n \"etag\": \"W/\\\"6b1b73a8-ce09-45b3-a159-1e24faad39d0\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG3cdeb8e4/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG3cdeb0/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\r\n \"etag\": \"W/\\\"6b1b73a8-ce09-45b3-a159-1e24faad39d0\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG3cdeb8e4/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG3cdeb0/defaultSecurityRules/DenyAllInBound\",\r\n \"etag\": \"W/\\\"6b1b73a8-ce09-45b3-a159-1e24faad39d0\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG3cdeb8e4/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG3cdeb0/defaultSecurityRules/AllowVnetOutBound\",\r\n \"etag\": \"W/\\\"6b1b73a8-ce09-45b3-a159-1e24faad39d0\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG3cdeb8e4/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG3cdeb0/defaultSecurityRules/AllowInternetOutBound\",\r\n \"etag\": \"W/\\\"6b1b73a8-ce09-45b3-a159-1e24faad39d0\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG3cdeb8e4/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG3cdeb0/defaultSecurityRules/DenyAllOutBound\",\r\n \"etag\": \"W/\\\"6b1b73a8-ce09-45b3-a159-1e24faad39d0\\\"\",\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}", + "ResponseBody": "{\r\n \"name\": \"PSTestNSGae69e0\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGae69e07b/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGae69e0\",\r\n \"etag\": \"W/\\\"f1833ef7-b1f8-4256-8547-f874a5ef98f0\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"0902b32d-792e-4a21-bfc5-3012a0a99427\",\r\n \"securityRules\": [\r\n {\r\n \"name\": \"PSTestNSGRuleRDPae69e0\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGae69e07b/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGae69e0/securityRules/PSTestNSGRuleRDPae69e0\",\r\n \"etag\": \"W/\\\"f1833ef7-b1f8-4256-8547-f874a5ef98f0\\\"\",\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\": \"PSTestNSGRuleWebae69e0\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGae69e07b/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGae69e0/securityRules/PSTestNSGRuleWebae69e0\",\r\n \"etag\": \"W/\\\"f1833ef7-b1f8-4256-8547-f874a5ef98f0\\\"\",\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/PSTestRGae69e07b/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGae69e0/defaultSecurityRules/AllowVnetInBound\",\r\n \"etag\": \"W/\\\"f1833ef7-b1f8-4256-8547-f874a5ef98f0\\\"\",\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/PSTestRGae69e07b/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGae69e0/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\r\n \"etag\": \"W/\\\"f1833ef7-b1f8-4256-8547-f874a5ef98f0\\\"\",\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/PSTestRGae69e07b/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGae69e0/defaultSecurityRules/DenyAllInBound\",\r\n \"etag\": \"W/\\\"f1833ef7-b1f8-4256-8547-f874a5ef98f0\\\"\",\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/PSTestRGae69e07b/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGae69e0/defaultSecurityRules/AllowVnetOutBound\",\r\n \"etag\": \"W/\\\"f1833ef7-b1f8-4256-8547-f874a5ef98f0\\\"\",\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/PSTestRGae69e07b/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGae69e0/defaultSecurityRules/AllowInternetOutBound\",\r\n \"etag\": \"W/\\\"f1833ef7-b1f8-4256-8547-f874a5ef98f0\\\"\",\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/PSTestRGae69e07b/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGae69e0/defaultSecurityRules/DenyAllOutBound\",\r\n \"etag\": \"W/\\\"f1833ef7-b1f8-4256-8547-f874a5ef98f0\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG3cdeb8e4/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG3cdeb0?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHM2NkZWI4ZTQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtTZWN1cml0eUdyb3Vwcy9QU1Rlc3ROU0czY2RlYjA/YXBpLXZlcnNpb249MjAyMS0wNS0wMQ==", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGae69e07b/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGae69e0?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYWU2OWUwN2IvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtTZWN1cml0eUdyb3Vwcy9QU1Rlc3ROU0dhZTY5ZTA/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==", "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\": \"PSTestNSGRuleRDP3cdeb0\"\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\": \"PSTestNSGRuleWeb3cdeb0\"\r\n }\r\n ]\r\n },\r\n \"location\": \"southeastasia\"\r\n}", + "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\": \"PSTestNSGRuleRDPae69e0\"\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\": \"PSTestNSGRuleWebae69e0\"\r\n }\r\n ]\r\n },\r\n \"location\": \"southeastasia\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "38c07543-9426-4ffb-95cd-bd20f877db5c" + "d53794f8-d034-4fda-aa49-6d22aaa373f6" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1299,19 +1299,19 @@ "3" ], "x-ms-request-id": [ - "26d90195-4a7e-4a1e-b409-f4395b5d062d" + "649bf54d-3214-44ff-8b77-592cde12e9d8" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Network/locations/southeastasia/operations/26d90195-4a7e-4a1e-b409-f4395b5d062d?api-version=2021-05-01" + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Network/locations/southeastasia/operations/649bf54d-3214-44ff-8b77-592cde12e9d8?api-version=2021-08-01" ], "x-ms-correlation-request-id": [ - "5d5dcbc5-150a-4071-ba0c-70769d838025" + "86c281d6-3d08-4989-b608-63ea6ee5df25" ], "Azure-AsyncNotification": [ "Enabled" ], "x-ms-arm-service-request-id": [ - "cd7e7a0f-cf53-4312-83ad-38224d6d1736" + "bc7e304e-239e-46fe-846d-0c1eda400d0d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1321,16 +1321,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1196" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T215039Z:5d5dcbc5-150a-4071-ba0c-70769d838025" + "WESTINDIA:20220517T034615Z:86c281d6-3d08-4989-b608-63ea6ee5df25" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 21:50:39 GMT" + "Tue, 17 May 2022 03:46:14 GMT" ], "Content-Length": [ "8466" @@ -1342,23 +1342,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"PSTestNSG3cdeb0\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG3cdeb8e4/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG3cdeb0\",\r\n \"etag\": \"W/\\\"57970575-4ece-470a-babc-06be2c19e104\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"8eb28693-3484-432b-b915-28979a81ae1f\",\r\n \"securityRules\": [\r\n {\r\n \"name\": \"PSTestNSGRuleRDP3cdeb0\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG3cdeb8e4/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG3cdeb0/securityRules/PSTestNSGRuleRDP3cdeb0\",\r\n \"etag\": \"W/\\\"57970575-4ece-470a-babc-06be2c19e104\\\"\",\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\": \"PSTestNSGRuleWeb3cdeb0\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG3cdeb8e4/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG3cdeb0/securityRules/PSTestNSGRuleWeb3cdeb0\",\r\n \"etag\": \"W/\\\"57970575-4ece-470a-babc-06be2c19e104\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG3cdeb8e4/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG3cdeb0/defaultSecurityRules/AllowVnetInBound\",\r\n \"etag\": \"W/\\\"57970575-4ece-470a-babc-06be2c19e104\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG3cdeb8e4/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG3cdeb0/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\r\n \"etag\": \"W/\\\"57970575-4ece-470a-babc-06be2c19e104\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG3cdeb8e4/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG3cdeb0/defaultSecurityRules/DenyAllInBound\",\r\n \"etag\": \"W/\\\"57970575-4ece-470a-babc-06be2c19e104\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG3cdeb8e4/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG3cdeb0/defaultSecurityRules/AllowVnetOutBound\",\r\n \"etag\": \"W/\\\"57970575-4ece-470a-babc-06be2c19e104\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG3cdeb8e4/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG3cdeb0/defaultSecurityRules/AllowInternetOutBound\",\r\n \"etag\": \"W/\\\"57970575-4ece-470a-babc-06be2c19e104\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG3cdeb8e4/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG3cdeb0/defaultSecurityRules/DenyAllOutBound\",\r\n \"etag\": \"W/\\\"57970575-4ece-470a-babc-06be2c19e104\\\"\",\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}", + "ResponseBody": "{\r\n \"name\": \"PSTestNSGae69e0\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGae69e07b/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGae69e0\",\r\n \"etag\": \"W/\\\"c67dd429-82e3-449b-a680-6759bc2e47f9\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"0902b32d-792e-4a21-bfc5-3012a0a99427\",\r\n \"securityRules\": [\r\n {\r\n \"name\": \"PSTestNSGRuleRDPae69e0\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGae69e07b/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGae69e0/securityRules/PSTestNSGRuleRDPae69e0\",\r\n \"etag\": \"W/\\\"c67dd429-82e3-449b-a680-6759bc2e47f9\\\"\",\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\": \"PSTestNSGRuleWebae69e0\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGae69e07b/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGae69e0/securityRules/PSTestNSGRuleWebae69e0\",\r\n \"etag\": \"W/\\\"c67dd429-82e3-449b-a680-6759bc2e47f9\\\"\",\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/PSTestRGae69e07b/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGae69e0/defaultSecurityRules/AllowVnetInBound\",\r\n \"etag\": \"W/\\\"c67dd429-82e3-449b-a680-6759bc2e47f9\\\"\",\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/PSTestRGae69e07b/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGae69e0/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\r\n \"etag\": \"W/\\\"c67dd429-82e3-449b-a680-6759bc2e47f9\\\"\",\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/PSTestRGae69e07b/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGae69e0/defaultSecurityRules/DenyAllInBound\",\r\n \"etag\": \"W/\\\"c67dd429-82e3-449b-a680-6759bc2e47f9\\\"\",\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/PSTestRGae69e07b/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGae69e0/defaultSecurityRules/AllowVnetOutBound\",\r\n \"etag\": \"W/\\\"c67dd429-82e3-449b-a680-6759bc2e47f9\\\"\",\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/PSTestRGae69e07b/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGae69e0/defaultSecurityRules/AllowInternetOutBound\",\r\n \"etag\": \"W/\\\"c67dd429-82e3-449b-a680-6759bc2e47f9\\\"\",\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/PSTestRGae69e07b/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGae69e0/defaultSecurityRules/DenyAllOutBound\",\r\n \"etag\": \"W/\\\"c67dd429-82e3-449b-a680-6759bc2e47f9\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Network/locations/southeastasia/operations/26d90195-4a7e-4a1e-b409-f4395b5d062d?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzI2ZDkwMTk1LTRhN2UtNGExZS1iNDA5LWY0Mzk1YjVkMDYyZD9hcGktdmVyc2lvbj0yMDIxLTA1LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Network/locations/southeastasia/operations/649bf54d-3214-44ff-8b77-592cde12e9d8?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzY0OWJmNTRkLTMyMTQtNDRmZi04Yjc3LTU5MmNkZTEyZTlkOD9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "38c07543-9426-4ffb-95cd-bd20f877db5c" + "d53794f8-d034-4fda-aa49-6d22aaa373f6" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ] }, "ResponseHeaders": { @@ -1369,13 +1369,13 @@ "no-cache" ], "x-ms-request-id": [ - "e26c1c7e-21ea-4d62-a534-96fc4e0fecd2" + "58530370-86b5-45d5-9dfd-3f691d1ca946" ], "x-ms-correlation-request-id": [ - "815f89a4-c81d-4c8b-b978-f1c3e6d713de" + "a5b9199e-04d3-4bfe-8eaa-21312a318ab4" ], "x-ms-arm-service-request-id": [ - "b88db906-97a8-448e-8166-3e9ea379b330" + "b20d4dde-9cf8-4158-b0c1-4adda38b36e7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1385,16 +1385,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11987" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T215042Z:815f89a4-c81d-4c8b-b978-f1c3e6d713de" + "WESTINDIA:20220517T034618Z:a5b9199e-04d3-4bfe-8eaa-21312a318ab4" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 21:50:42 GMT" + "Tue, 17 May 2022 03:46:17 GMT" ], "Content-Length": [ "29" @@ -1410,22 +1410,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG3cdeb8e4/providers/Microsoft.Network/networkInterfaces/PSTestNIC3cdeb0?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHM2NkZWI4ZTQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL1BTVGVzdE5JQzNjZGViMD9hcGktdmVyc2lvbj0yMDIxLTA1LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGae69e07b/providers/Microsoft.Network/networkInterfaces/PSTestNICae69e0?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYWU2OWUwN2IvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL1BTVGVzdE5JQ2FlNjllMD9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "09b4b7ee-6224-4b02-9c43-c24a83119dbf" + "faebb343-d69b-41c1-a390-809d7f44e410" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ] }, "ResponseHeaders": { @@ -1439,13 +1439,13 @@ "gateway" ], "x-ms-request-id": [ - "1cfd9031-b1a9-46b7-8653-77cfdbaa80c8" + "198b1955-ecfd-44cc-9c0a-c0af6eeec5ff" ], "x-ms-correlation-request-id": [ - "1cfd9031-b1a9-46b7-8653-77cfdbaa80c8" + "198b1955-ecfd-44cc-9c0a-c0af6eeec5ff" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T215043Z:1cfd9031-b1a9-46b7-8653-77cfdbaa80c8" + "WESTINDIA:20220517T034618Z:198b1955-ecfd-44cc-9c0a-c0af6eeec5ff" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1454,7 +1454,7 @@ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 21:50:43 GMT" + "Tue, 17 May 2022 03:46:18 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1466,23 +1466,23 @@ "239" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/networkInterfaces/PSTestNIC3cdeb0' under resource group 'PSTestRG3cdeb8e4' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/networkInterfaces/PSTestNICae69e0' under resource group 'PSTestRGae69e07b' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG3cdeb8e4/providers/Microsoft.Network/networkInterfaces/PSTestNIC3cdeb0?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHM2NkZWI4ZTQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL1BTVGVzdE5JQzNjZGViMD9hcGktdmVyc2lvbj0yMDIxLTA1LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGae69e07b/providers/Microsoft.Network/networkInterfaces/PSTestNICae69e0?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYWU2OWUwN2IvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL1BTVGVzdE5JQ2FlNjllMD9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "09b4b7ee-6224-4b02-9c43-c24a83119dbf" + "faebb343-d69b-41c1-a390-809d7f44e410" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ] }, "ResponseHeaders": { @@ -1493,16 +1493,16 @@ "no-cache" ], "ETag": [ - "W/\"d378a749-760e-4417-9c4f-d9f3dba8a09c\"" + "W/\"cab18bb7-74c3-4700-be37-edc32afc8be3\"" ], "x-ms-request-id": [ - "c91ea79a-076f-4518-8b9b-96e46c97fe1d" + "5c83712e-8cc9-4392-bb75-adf23b1352d6" ], "x-ms-correlation-request-id": [ - "d1b32032-cd80-443d-85d8-109d2ad044b2" + "3186aed6-3b86-4ca8-97e6-9a1724de5301" ], "x-ms-arm-service-request-id": [ - "ef87f105-cd0b-428f-9e11-a324fdbcc68b" + "5b3a43de-7504-4d4c-8b4b-0a09595857d9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1512,19 +1512,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" + "11983" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T215047Z:d1b32032-cd80-443d-85d8-109d2ad044b2" + "WESTINDIA:20220517T034620Z:3186aed6-3b86-4ca8-97e6-9a1724de5301" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 21:50:47 GMT" + "Tue, 17 May 2022 03:46:20 GMT" ], "Content-Length": [ - "2143" + "2165" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1533,26 +1533,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"PSTestNIC3cdeb0\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG3cdeb8e4/providers/Microsoft.Network/networkInterfaces/PSTestNIC3cdeb0\",\r\n \"etag\": \"W/\\\"d378a749-760e-4417-9c4f-d9f3dba8a09c\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"b49e0206-bc9f-4ad0-a1e3-daac9a9f0378\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG3cdeb8e4/providers/Microsoft.Network/networkInterfaces/PSTestNIC3cdeb0/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"d378a749-760e-4417-9c4f-d9f3dba8a09c\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG3cdeb8e4/providers/Microsoft.Network/publicIPAddresses/pstestpublicdns3cdeb0\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG3cdeb8e4/providers/Microsoft.Network/virtualNetworks/PSTestVNET3cdeb0/subnets/PSTestSNC3cdeb0\"\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\": \"v144olmslxwelcrhgf3dudlf5f.ix.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"vnetEncryptionSupported\": false,\r\n \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG3cdeb8e4/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG3cdeb0\"\r\n },\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": [],\r\n \"nicType\": \"Standard\"\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"PSTestNICae69e0\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGae69e07b/providers/Microsoft.Network/networkInterfaces/PSTestNICae69e0\",\r\n \"etag\": \"W/\\\"cab18bb7-74c3-4700-be37-edc32afc8be3\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"7e0db6ee-295d-4735-9aed-b0ea69ced727\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGae69e07b/providers/Microsoft.Network/networkInterfaces/PSTestNICae69e0/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"cab18bb7-74c3-4700-be37-edc32afc8be3\\\"\",\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/PSTestRGae69e07b/providers/Microsoft.Network/publicIPAddresses/pstestpublicdnsae69e0\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGae69e07b/providers/Microsoft.Network/virtualNetworks/PSTestVNETae69e0/subnets/PSTestSNCae69e0\"\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\": \"sdnw1jcjes3urprug0o4c4af4b.ix.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"vnetEncryptionSupported\": false,\r\n \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGae69e07b/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGae69e0\"\r\n },\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": [],\r\n \"nicType\": \"Standard\"\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"kind\": \"Regular\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG3cdeb8e4/providers/Microsoft.Network/networkInterfaces/PSTestNIC3cdeb0?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHM2NkZWI4ZTQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL1BTVGVzdE5JQzNjZGViMD9hcGktdmVyc2lvbj0yMDIxLTA1LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGae69e07b/providers/Microsoft.Network/networkInterfaces/PSTestNICae69e0?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYWU2OWUwN2IvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL1BTVGVzdE5JQ2FlNjllMD9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "09b4b7ee-6224-4b02-9c43-c24a83119dbf" + "faebb343-d69b-41c1-a390-809d7f44e410" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ] }, "ResponseHeaders": { @@ -1563,16 +1563,16 @@ "no-cache" ], "ETag": [ - "W/\"d378a749-760e-4417-9c4f-d9f3dba8a09c\"" + "W/\"cab18bb7-74c3-4700-be37-edc32afc8be3\"" ], "x-ms-request-id": [ - "e731ada9-ee2b-4e9a-bece-09080ae35438" + "57d85e1a-a35a-4c37-a909-e62df1d4cc7f" ], "x-ms-correlation-request-id": [ - "22242dbb-aca3-4fc5-9953-167970caa741" + "878dcb0c-cc35-40de-978b-aedc78442c0b" ], "x-ms-arm-service-request-id": [ - "02d31437-e701-49a5-a9b2-da6ec58ac961" + "e6fdb622-1c91-438b-b058-e4b43bac0938" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1582,19 +1582,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" + "11982" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T215048Z:22242dbb-aca3-4fc5-9953-167970caa741" + "WESTINDIA:20220517T034620Z:878dcb0c-cc35-40de-978b-aedc78442c0b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 21:50:47 GMT" + "Tue, 17 May 2022 03:46:20 GMT" ], "Content-Length": [ - "2143" + "2165" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1603,26 +1603,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"PSTestNIC3cdeb0\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG3cdeb8e4/providers/Microsoft.Network/networkInterfaces/PSTestNIC3cdeb0\",\r\n \"etag\": \"W/\\\"d378a749-760e-4417-9c4f-d9f3dba8a09c\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"b49e0206-bc9f-4ad0-a1e3-daac9a9f0378\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG3cdeb8e4/providers/Microsoft.Network/networkInterfaces/PSTestNIC3cdeb0/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"d378a749-760e-4417-9c4f-d9f3dba8a09c\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG3cdeb8e4/providers/Microsoft.Network/publicIPAddresses/pstestpublicdns3cdeb0\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG3cdeb8e4/providers/Microsoft.Network/virtualNetworks/PSTestVNET3cdeb0/subnets/PSTestSNC3cdeb0\"\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\": \"v144olmslxwelcrhgf3dudlf5f.ix.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"vnetEncryptionSupported\": false,\r\n \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG3cdeb8e4/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG3cdeb0\"\r\n },\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": [],\r\n \"nicType\": \"Standard\"\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"PSTestNICae69e0\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGae69e07b/providers/Microsoft.Network/networkInterfaces/PSTestNICae69e0\",\r\n \"etag\": \"W/\\\"cab18bb7-74c3-4700-be37-edc32afc8be3\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"7e0db6ee-295d-4735-9aed-b0ea69ced727\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGae69e07b/providers/Microsoft.Network/networkInterfaces/PSTestNICae69e0/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"cab18bb7-74c3-4700-be37-edc32afc8be3\\\"\",\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/PSTestRGae69e07b/providers/Microsoft.Network/publicIPAddresses/pstestpublicdnsae69e0\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGae69e07b/providers/Microsoft.Network/virtualNetworks/PSTestVNETae69e0/subnets/PSTestSNCae69e0\"\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\": \"sdnw1jcjes3urprug0o4c4af4b.ix.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"vnetEncryptionSupported\": false,\r\n \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGae69e07b/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGae69e0\"\r\n },\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": [],\r\n \"nicType\": \"Standard\"\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"kind\": \"Regular\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG3cdeb8e4/providers/Microsoft.Network/networkInterfaces/PSTestNIC3cdeb0?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHM2NkZWI4ZTQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL1BTVGVzdE5JQzNjZGViMD9hcGktdmVyc2lvbj0yMDIxLTA1LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGae69e07b/providers/Microsoft.Network/networkInterfaces/PSTestNICae69e0?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYWU2OWUwN2IvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL1BTVGVzdE5JQ2FlNjllMD9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"networkSecurityGroup\": {\r\n \"properties\": {\r\n \"securityRules\": []\r\n },\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG3cdeb8e4/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG3cdeb0\",\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 \"applicationGatewayIpConfigurations\": []\r\n },\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG3cdeb8e4/providers/Microsoft.Network/virtualNetworks/PSTestVNET3cdeb0/subnets/PSTestSNC3cdeb0\"\r\n },\r\n \"primary\": true,\r\n \"publicIPAddress\": {\r\n \"properties\": {\r\n \"ipTags\": []\r\n },\r\n \"zones\": [],\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG3cdeb8e4/providers/Microsoft.Network/publicIPAddresses/pstestpublicdns3cdeb0\",\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\": \"southeastasia\"\r\n}", + "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/PSTestRGae69e07b/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGae69e0\",\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 \"applicationGatewayIpConfigurations\": []\r\n },\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGae69e07b/providers/Microsoft.Network/virtualNetworks/PSTestVNETae69e0/subnets/PSTestSNCae69e0\"\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/PSTestRGae69e07b/providers/Microsoft.Network/publicIPAddresses/pstestpublicdnsae69e0\",\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\": \"southeastasia\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "09b4b7ee-6224-4b02-9c43-c24a83119dbf" + "faebb343-d69b-41c1-a390-809d7f44e410" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1639,19 +1639,19 @@ "no-cache" ], "x-ms-request-id": [ - "b951d6b0-3dab-40be-ab44-80670dd1d599" + "dd8d9bc0-0940-4fb4-a8ba-db20b70b7216" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Network/locations/southeastasia/operations/b951d6b0-3dab-40be-ab44-80670dd1d599?api-version=2021-05-01" + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Network/locations/southeastasia/operations/dd8d9bc0-0940-4fb4-a8ba-db20b70b7216?api-version=2021-08-01" ], "x-ms-correlation-request-id": [ - "7b007a60-ceb8-4506-a14c-73572f964291" + "d8076502-af6d-4c7a-a56f-21fdbf1409c9" ], "Azure-AsyncNotification": [ "Enabled" ], "x-ms-arm-service-request-id": [ - "fb6ac715-9e57-4cdc-aef7-58831a348830" + "8a6d9958-8237-4bd7-8f42-de46f472cde4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1661,19 +1661,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1195" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T215047Z:7b007a60-ceb8-4506-a14c-73572f964291" + "WESTINDIA:20220517T034620Z:d8076502-af6d-4c7a-a56f-21fdbf1409c9" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 21:50:47 GMT" + "Tue, 17 May 2022 03:46:19 GMT" ], "Content-Length": [ - "2143" + "2165" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1682,26 +1682,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"PSTestNIC3cdeb0\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG3cdeb8e4/providers/Microsoft.Network/networkInterfaces/PSTestNIC3cdeb0\",\r\n \"etag\": \"W/\\\"d378a749-760e-4417-9c4f-d9f3dba8a09c\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"b49e0206-bc9f-4ad0-a1e3-daac9a9f0378\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG3cdeb8e4/providers/Microsoft.Network/networkInterfaces/PSTestNIC3cdeb0/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"d378a749-760e-4417-9c4f-d9f3dba8a09c\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG3cdeb8e4/providers/Microsoft.Network/publicIPAddresses/pstestpublicdns3cdeb0\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG3cdeb8e4/providers/Microsoft.Network/virtualNetworks/PSTestVNET3cdeb0/subnets/PSTestSNC3cdeb0\"\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\": \"v144olmslxwelcrhgf3dudlf5f.ix.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"vnetEncryptionSupported\": false,\r\n \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG3cdeb8e4/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG3cdeb0\"\r\n },\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": [],\r\n \"nicType\": \"Standard\"\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"PSTestNICae69e0\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGae69e07b/providers/Microsoft.Network/networkInterfaces/PSTestNICae69e0\",\r\n \"etag\": \"W/\\\"cab18bb7-74c3-4700-be37-edc32afc8be3\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"7e0db6ee-295d-4735-9aed-b0ea69ced727\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGae69e07b/providers/Microsoft.Network/networkInterfaces/PSTestNICae69e0/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"cab18bb7-74c3-4700-be37-edc32afc8be3\\\"\",\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/PSTestRGae69e07b/providers/Microsoft.Network/publicIPAddresses/pstestpublicdnsae69e0\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGae69e07b/providers/Microsoft.Network/virtualNetworks/PSTestVNETae69e0/subnets/PSTestSNCae69e0\"\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\": \"sdnw1jcjes3urprug0o4c4af4b.ix.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"vnetEncryptionSupported\": false,\r\n \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGae69e07b/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGae69e0\"\r\n },\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": [],\r\n \"nicType\": \"Standard\"\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"kind\": \"Regular\"\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Storage/checkNameAvailability?api-version=2021-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9jaGVja05hbWVBdmFpbGFiaWxpdHk/YXBpLXZlcnNpb249MjAyMS0wMi0wMQ==", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Storage/checkNameAvailability?api-version=2021-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9jaGVja05hbWVBdmFpbGFiaWxpdHk/YXBpLXZlcnNpb249MjAyMS0wMi0wMQ==", "RequestMethod": "POST", - "RequestBody": "{\r\n \"name\": \"tespstestpste022316500\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n}", + "RequestBody": "{\r\n \"name\": \"tespstestpste051709160\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "2de24e7a-076f-46b1-a4ca-26c0ca293cb2" + "9562aeca-1534-4c2b-b00b-4c9e67a988c6" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.PowerShell.Cmdlets.Compute.Helpers.Storage.StorageManagementClient/4.23.0" + "Microsoft.Azure.PowerShell.Cmdlets.Compute.Helpers.Storage.StorageManagementClient/4.26.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1718,7 +1718,7 @@ "no-cache" ], "x-ms-request-id": [ - "be0399e2-0e7d-40d5-8d0d-195b9b0d1fd7" + "ed451555-7583-4c5b-ba26-d296c28e7a3e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1730,16 +1730,16 @@ "11999" ], "x-ms-correlation-request-id": [ - "b07459b8-409b-4917-ad7a-1aa213cbbf23" + "1ca4a1ee-4f97-4307-a529-985fcb6666e8" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T215048Z:b07459b8-409b-4917-ad7a-1aa213cbbf23" + "WESTINDIA:20220517T034622Z:1ca4a1ee-4f97-4307-a529-985fcb6666e8" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 21:50:47 GMT" + "Tue, 17 May 2022 03:46:21 GMT" ], "Content-Length": [ "22" @@ -1755,22 +1755,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG3cdeb8e4/providers/Microsoft.Compute/virtualMachines/PSTestVM3cdeb0?api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHM2NkZWI4ZTQvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy9QU1Rlc3RWTTNjZGViMD9hcGktdmVyc2lvbj0yMDIxLTExLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGae69e07b/providers/Microsoft.Compute/virtualMachines/PSTestVMae69e0?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYWU2OWUwN2IvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy9QU1Rlc3RWTWFlNjllMD9hcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D1_v2\"\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\": \"PSTestVM3cdeb0\",\r\n \"adminUsername\": \"demouser\",\r\n \"adminPassword\": \"3cdeb8e4-199Aa.\",\r\n \"windowsConfiguration\": {}\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG3cdeb8e4/providers/Microsoft.Network/networkInterfaces/PSTestNIC3cdeb0\"\r\n }\r\n ]\r\n }\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"Purpose\": \"PSTest\",\r\n \"DeleteBy\": \"06-2022\",\r\n \"AutoShutDown\": \"No\",\r\n \"Owner\": \"sarath\",\r\n \"MabUsed\": \"Yes\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D1_v2\"\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\": \"PSTestVMae69e0\",\r\n \"adminUsername\": \"demouser\",\r\n \"adminPassword\": \"ae69e07b-59cAa.\",\r\n \"windowsConfiguration\": {}\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGae69e07b/providers/Microsoft.Network/networkInterfaces/PSTestNICae69e0\"\r\n }\r\n ]\r\n }\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"AutoShutDown\": \"No\",\r\n \"Owner\": \"sarath\",\r\n \"Purpose\": \"PSTest\",\r\n \"MabUsed\": \"Yes\",\r\n \"DeleteBy\": \"06-2022\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "2de24e7a-076f-46b1-a4ca-26c0ca293cb2" + "9562aeca-1534-4c2b-b00b-4c9e67a988c6" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1790,7 +1790,7 @@ "10" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/southeastasia/operations/b08722e4-015e-4dea-b804-3b13214a1f9b?p=34dc709c-01b2-42c4-84a2-256a9734610d&api-version=2021-11-01" + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Compute/locations/southeastasia/operations/852fc5f3-d49e-4f7e-9d7a-ff98ed79af57?p=e484ceca-6435-4a7f-b125-3d82e6b12014&api-version=2021-11-01" ], "Azure-AsyncNotification": [ "Enabled" @@ -1802,29 +1802,29 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b08722e4-015e-4dea-b804-3b13214a1f9b" + "852fc5f3-d49e-4f7e-9d7a-ff98ed79af57" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1194" ], "x-ms-correlation-request-id": [ - "7da4e183-0260-4076-b75c-12d7e21a6d25" + "0f575839-e29a-4d2f-9116-acc28acb31e0" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T215100Z:7da4e183-0260-4076-b75c-12d7e21a6d25" + "WESTINDIA:20220517T034625Z:0f575839-e29a-4d2f-9116-acc28acb31e0" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 21:50:59 GMT" + "Tue, 17 May 2022 03:46:24 GMT" ], "Content-Length": [ - "1992" + "1922" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1833,23 +1833,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"PSTestVM3cdeb0\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG3cdeb8e4/providers/Microsoft.Compute/virtualMachines/PSTestVM3cdeb0\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"Purpose\": \"PSTest\",\r\n \"DeleteBy\": \"06-2022\",\r\n \"AutoShutDown\": \"No\",\r\n \"Owner\": \"sarath\",\r\n \"MabUsed\": \"Yes\",\r\n \"azsecpack\": \"nonprod\",\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": \"true\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"de07bf67-8bec-4d3e-9f83-0d05d0b90ce8\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D1_v2\"\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.4946.220202\"\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 \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"PSTestVM3cdeb0\",\r\n \"adminUsername\": \"demouser\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"AutomaticByOS\",\r\n \"assessmentMode\": \"ImageDefault\"\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG3cdeb8e4/providers/Microsoft.Network/networkInterfaces/PSTestNIC3cdeb0\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\",\r\n \"timeCreated\": \"2022-02-23T16:50:57.5386131-05:00\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"PSTestVMae69e0\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGae69e07b/providers/Microsoft.Compute/virtualMachines/PSTestVMae69e0\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"AutoShutDown\": \"No\",\r\n \"Owner\": \"sarath\",\r\n \"Purpose\": \"PSTest\",\r\n \"MabUsed\": \"Yes\",\r\n \"DeleteBy\": \"06-2022\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"033824c8-d2a0-4554-b69b-49c358c040ea\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D1_v2\"\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.5125.220505\"\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 \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"PSTestVMae69e0\",\r\n \"adminUsername\": \"demouser\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"AutomaticByOS\",\r\n \"assessmentMode\": \"ImageDefault\"\r\n },\r\n \"enableVMAgentPlatformUpdates\": false\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/PSTestRGae69e07b/providers/Microsoft.Network/networkInterfaces/PSTestNICae69e0\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\",\r\n \"timeCreated\": \"2022-05-17T09:16:24.4727149+05:30\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/southeastasia/operations/b08722e4-015e-4dea-b804-3b13214a1f9b?p=34dc709c-01b2-42c4-84a2-256a9734610d&api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2IwODcyMmU0LTAxNWUtNGRlYS1iODA0LTNiMTMyMTRhMWY5Yj9wPTM0ZGM3MDljLTAxYjItNDJjNC04NGEyLTI1NmE5NzM0NjEwZCZhcGktdmVyc2lvbj0yMDIxLTExLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Compute/locations/southeastasia/operations/852fc5f3-d49e-4f7e-9d7a-ff98ed79af57?p=e484ceca-6435-4a7f-b125-3d82e6b12014&api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzg1MmZjNWYzLWQ0OWUtNGY3ZS05ZDdhLWZmOThlZDc5YWY1Nz9wPWU0ODRjZWNhLTY0MzUtNGE3Zi1iMTI1LTNkODJlNmIxMjAxNCZhcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2de24e7a-076f-46b1-a4ca-26c0ca293cb2" + "9562aeca-1534-4c2b-b00b-4c9e67a988c6" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ] }, "ResponseHeaders": { @@ -1863,35 +1863,35 @@ "50" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperation3Min;14999,Microsoft.Compute/GetOperation30Min;29995" + "Microsoft.Compute/GetOperation3Min;14999,Microsoft.Compute/GetOperation30Min;29999" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f04c7046-ebe4-4e82-99ef-ded943b87968" + "4426e74a-323c-4e3b-ac64-5b6b789dd42a" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11981" ], "x-ms-correlation-request-id": [ - "65436cf0-a2fe-42c0-a079-6b3da6acc28a" + "b5025dae-fba8-4b58-82fb-abe922291d1f" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T215110Z:65436cf0-a2fe-42c0-a079-6b3da6acc28a" + "WESTINDIA:20220517T034635Z:b5025dae-fba8-4b58-82fb-abe922291d1f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 21:51:09 GMT" + "Tue, 17 May 2022 03:46:35 GMT" ], "Content-Length": [ - "134" + "133" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1900,23 +1900,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-02-23T16:50:57.1792364-05:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b08722e4-015e-4dea-b804-3b13214a1f9b\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2022-05-17T09:16:23.675844+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"852fc5f3-d49e-4f7e-9d7a-ff98ed79af57\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/southeastasia/operations/b08722e4-015e-4dea-b804-3b13214a1f9b?p=34dc709c-01b2-42c4-84a2-256a9734610d&api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2IwODcyMmU0LTAxNWUtNGRlYS1iODA0LTNiMTMyMTRhMWY5Yj9wPTM0ZGM3MDljLTAxYjItNDJjNC04NGEyLTI1NmE5NzM0NjEwZCZhcGktdmVyc2lvbj0yMDIxLTExLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Compute/locations/southeastasia/operations/852fc5f3-d49e-4f7e-9d7a-ff98ed79af57?p=e484ceca-6435-4a7f-b125-3d82e6b12014&api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzg1MmZjNWYzLWQ0OWUtNGY3ZS05ZDdhLWZmOThlZDc5YWY1Nz9wPWU0ODRjZWNhLTY0MzUtNGE3Zi1iMTI1LTNkODJlNmIxMjAxNCZhcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2de24e7a-076f-46b1-a4ca-26c0ca293cb2" + "9562aeca-1534-4c2b-b00b-4c9e67a988c6" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ] }, "ResponseHeaders": { @@ -1927,35 +1927,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperation3Min;14998,Microsoft.Compute/GetOperation30Min;29994" + "Microsoft.Compute/GetOperation3Min;14998,Microsoft.Compute/GetOperation30Min;29998" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "5b13e2a8-c072-4eaa-920b-aba24efc7a2a" + "97773255-3222-4d4c-9d1a-20f0c4cc9fe0" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11980" ], "x-ms-correlation-request-id": [ - "f94ebddd-dfad-47cc-8d39-902f832c14be" + "86480523-69d6-4a7f-aec8-4a8dcc97cc49" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T215200Z:f94ebddd-dfad-47cc-8d39-902f832c14be" + "WESTINDIA:20220517T034725Z:86480523-69d6-4a7f-aec8-4a8dcc97cc49" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 21:52:00 GMT" + "Tue, 17 May 2022 03:47:25 GMT" ], "Content-Length": [ - "134" + "133" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1964,23 +1964,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-02-23T16:50:57.1792364-05:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b08722e4-015e-4dea-b804-3b13214a1f9b\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2022-05-17T09:16:23.675844+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"852fc5f3-d49e-4f7e-9d7a-ff98ed79af57\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/southeastasia/operations/b08722e4-015e-4dea-b804-3b13214a1f9b?p=34dc709c-01b2-42c4-84a2-256a9734610d&api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2IwODcyMmU0LTAxNWUtNGRlYS1iODA0LTNiMTMyMTRhMWY5Yj9wPTM0ZGM3MDljLTAxYjItNDJjNC04NGEyLTI1NmE5NzM0NjEwZCZhcGktdmVyc2lvbj0yMDIxLTExLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Compute/locations/southeastasia/operations/852fc5f3-d49e-4f7e-9d7a-ff98ed79af57?p=e484ceca-6435-4a7f-b125-3d82e6b12014&api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzg1MmZjNWYzLWQ0OWUtNGY3ZS05ZDdhLWZmOThlZDc5YWY1Nz9wPWU0ODRjZWNhLTY0MzUtNGE3Zi1iMTI1LTNkODJlNmIxMjAxNCZhcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2de24e7a-076f-46b1-a4ca-26c0ca293cb2" + "9562aeca-1534-4c2b-b00b-4c9e67a988c6" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ] }, "ResponseHeaders": { @@ -1991,35 +1991,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperation3Min;14997,Microsoft.Compute/GetOperation30Min;29993" + "Microsoft.Compute/GetOperation3Min;14997,Microsoft.Compute/GetOperation30Min;29997" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f824b752-56f2-4ae9-9c08-fbf2b307026a" + "3d6d1919-c93d-480e-9436-0af9bc3eaa26" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11979" ], "x-ms-correlation-request-id": [ - "2edca466-13d9-48aa-bb31-c5e8c3502eb9" + "7ec849aa-86de-40ef-81ea-deac98ae9fee" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T215251Z:2edca466-13d9-48aa-bb31-c5e8c3502eb9" + "WESTINDIA:20220517T034815Z:7ec849aa-86de-40ef-81ea-deac98ae9fee" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 21:52:50 GMT" + "Tue, 17 May 2022 03:48:15 GMT" ], "Content-Length": [ - "134" + "182" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2028,23 +2028,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-02-23T16:50:57.1792364-05:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b08722e4-015e-4dea-b804-3b13214a1f9b\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2022-05-17T09:16:23.675844+05:30\",\r\n \"endTime\": \"2022-05-17T09:18:02.346743+05:30\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"852fc5f3-d49e-4f7e-9d7a-ff98ed79af57\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/southeastasia/operations/b08722e4-015e-4dea-b804-3b13214a1f9b?p=34dc709c-01b2-42c4-84a2-256a9734610d&api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2IwODcyMmU0LTAxNWUtNGRlYS1iODA0LTNiMTMyMTRhMWY5Yj9wPTM0ZGM3MDljLTAxYjItNDJjNC04NGEyLTI1NmE5NzM0NjEwZCZhcGktdmVyc2lvbj0yMDIxLTExLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Compute/locations/southeastasia/publishers?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9wdWJsaXNoZXJzP2FwaS12ZXJzaW9uPTIwMjEtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2de24e7a-076f-46b1-a4ca-26c0ca293cb2" + "9562aeca-1534-4c2b-b00b-4c9e67a988c6" + ], + "Accept-Language": [ + "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ] }, "ResponseHeaders": { @@ -2054,36 +2057,36 @@ "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperation3Min;14995,Microsoft.Compute/GetOperation30Min;29991" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "8d76ef5d-2d17-4297-8566-4612360b9f5a_132927459943306577" + ], "x-ms-request-id": [ - "f29829ad-5165-49c0-a1dc-f4a5074633ce" + "f4a0f8b8-b684-44d7-ada0-004f90b329dc" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11977" ], "x-ms-correlation-request-id": [ - "3ea78579-fa27-408f-aa74-dc2bb6d90ecc" + "a02b0643-67e9-404c-9b36-76423194a287" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T215342Z:3ea78579-fa27-408f-aa74-dc2bb6d90ecc" + "WESTINDIA:20220517T034817Z:a02b0643-67e9-404c-9b36-76423194a287" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 21:53:41 GMT" + "Tue, 17 May 2022 03:48:16 GMT" ], "Content-Length": [ - "134" + "429129" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2092,23 +2095,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-02-23T16:50:57.1792364-05:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b08722e4-015e-4dea-b804-3b13214a1f9b\"\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"128technology\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/128technology\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1580863854728\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1580863854728\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1583411303229\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1583411303229\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1583465680865\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1583465680865\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1585118004523\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1585118004523\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1592878437854\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1592878437854\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1597644262255\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1597644262255\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1598955805825\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1598955805825\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1601633765871\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1601633765871\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1602067018799\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1602067018799\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1604579683207\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1604579683207\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1615257339685\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1615257339685\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1615278064010\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1615278064010\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1615455873642\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1615455873642\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1624590941808\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1624590941808\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1640334196980\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1640334196980\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1e\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1e\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"2021ai\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/2021ai\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"247commercelimited1611063941652\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/247commercelimited1611063941652\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"3cx-pbx\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/3cx-pbx\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"42crunch1580391915541\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/42crunch1580391915541\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"4psa\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/4psa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"5nine-software-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/5nine-software-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"6124903\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/6124903\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"7isolutions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/7isolutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"a10networks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/a10networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"a10networks1596136698788\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/a10networks1596136698788\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"abiquo\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/abiquo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"abzoobainc1598420455082\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/abzoobainc1598420455082\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"accedian\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/accedian\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"accelario1579101623356\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/accelario1579101623356\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"accellion\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/accellion\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"accessdata-group\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/accessdata-group\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"accops\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/accops\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aciworldwide\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aciworldwide\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Acronis\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Acronis\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Acronis.Backup\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Acronis.Backup\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"actian-corp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/actian-corp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"actian_matrix\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/actian_matrix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"actifio\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/actifio\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"actiphy\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/actiphy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"actiphyinc1627974506603\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/actiphyinc1627974506603\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"activecountermeasuresinc1631039410073\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/activecountermeasuresinc1631039410073\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"activeeon\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/activeeon\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"activeops\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/activeops\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"adastracorporation-4028356\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/adastracorporation-4028356\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"adgs\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/adgs\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"advantech\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/advantech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"advantech-webaccess\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/advantech-webaccess\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"advantys\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/advantys\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aelf\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aelf\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aerospike\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aerospike\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"affinio\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/affinio\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"affirmednetworks1607630812999\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/affirmednetworks1607630812999\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ageniumscale1591804889317\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ageniumscale1591804889317\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aggregion-ltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aggregion-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"agiledialogssl1603791911858\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/agiledialogssl1603791911858\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"agolo\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/agolo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ahnlabinc1584495174865\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ahnlabinc1584495174865\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ahnlabinc1584495467593\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ahnlabinc1584495467593\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"airalabrus\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/airalabrus\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aiscaler-cache-control-ddos-and-url-rewriting-\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aiscaler-cache-control-ddos-and-url-rewriting-\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aisundowninc1618516322959\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aisundowninc1618516322959\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"akamai-technologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/akamai-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"akumina\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/akumina\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"akumo-software\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/akumo-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"al-tamamunitedtradingcontractingcompany\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/al-tamamunitedtradingcontractingcompany\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"alachisoft\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/alachisoft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"alertlogic\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/alertlogic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"AlertLogic.Extension\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/AlertLogic.Extension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"algolyticstechnologies1606475101268\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/algolyticstechnologies1606475101268\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"alicetrix\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/alicetrix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"alienvault\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/alienvault\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"alldigital-brevity\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/alldigital-brevity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"almalinux\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/almalinux\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"almalinuxosfoundation1628089859865\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/almalinuxosfoundation1628089859865\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"altair-engineering-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/altair-engineering-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"altamira-corporation\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/altamira-corporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"alteryx\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/alteryx\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"altova\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/altova\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"amergint1593131356777\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/amergint1593131356777\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"anjanadatasl1583402861145\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/anjanadatasl1583402861145\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ansys\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ansys\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"antmedia\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/antmedia\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aod\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aod\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"apigee\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/apigee\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"appcara\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appcara\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"appcelerator\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appcelerator\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"appex-networks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appex-networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"appistry\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appistry\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"appiyo_technologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appiyo_technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"appmint_inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appmint_inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"apps-4-rent\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/apps-4-rent\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"appscale-marketplace\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appscale-marketplace\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"appsurifyinc1606933045773\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appsurifyinc1606933045773\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aquaforest\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aquaforest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aquantyinc1598537176913\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aquantyinc1598537176913\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aquaveollc1633710529908\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aquaveollc1633710529908\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"arabesque-group\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/arabesque-group\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"arangodb\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/arangodb\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aras\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aras\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"arcblock\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/arcblock\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"arcesb\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/arcesb\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"arcontechsolutionsprivatelimited1623841797810\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/arcontechsolutionsprivatelimited1623841797810\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"arcserveusallc-marketing\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/arcserveusallc-marketing\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"arista-networks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/arista-networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ariwontollc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ariwontollc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"array_networks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/array_networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"artificial-intelligence-techniques-sl\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/artificial-intelligence-techniques-sl\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"arubanetworks-4922182\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/arubanetworks-4922182\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"asdivertissementinc1617837708654\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/asdivertissementinc1617837708654\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"asigra\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/asigra\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aspentechnologyhq-1353108\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aspentechnologyhq-1353108\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"astadia-1148316\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/astadia-1148316\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"asterasoftware1581022936015\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/asterasoftware1581022936015\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"asyscosoftwarebv\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/asyscosoftwarebv\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ataccama\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ataccama\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"athinfosystems1641442221349\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/athinfosystems1641442221349\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"athinfosystems1648710938250\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/athinfosystems1648710938250\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"atlgaming\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/atlgaming\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"atmosera\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/atmosera\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"atomicorp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/atomicorp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"atomizedinc1587939464368\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/atomizedinc1587939464368\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"attunity_cloudbeam\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/attunity_cloudbeam\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"audiocodes\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/audiocodes\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"auraportal\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/auraportal\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"auriq-systems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/auriq-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"automateio1592914387888\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/automateio1592914387888\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"automationanywhere\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/automationanywhere\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"avanseus\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/avanseus\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"avepoint\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/avepoint\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aveva1\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aveva1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"avi-networks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/avi-networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aviatrix-systems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aviatrix-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"awingu\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/awingu\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"axedrasag1590581171549\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/axedrasag1590581171549\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"axsguardablenv\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/axsguardablenv\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"axshco\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/axshco\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"axway\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/axway\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"axxana\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/axxana\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"azhpc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/azhpc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"azul\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/azul\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"azure-dockit\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/azure-dockit\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"azurecyclecloud\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/azurecyclecloud\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"AzureDatabricks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/AzureDatabricks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"azureopenshift\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/azureopenshift\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"AzureRT.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/AzureRT.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"azuretesting\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/azuretesting\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"azuretesting2\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/azuretesting2\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"azuretesting3\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/azuretesting3\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"AzureTools1type\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/AzureTools1type\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"baas-techbureau\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/baas-techbureau\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"baffle-io\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/baffle-io\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"balabit\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/balabit\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"barracudanetworks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/barracudanetworks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"basho\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/basho\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"batch\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/batch\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bayware\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bayware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bdy\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bdy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"belindaczsro1588885355210\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/belindaczsro1588885355210\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bellsoft1582871421940\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bellsoft1582871421940\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"betsol\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/betsol\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"beyondtrust\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/beyondtrust\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bi-builders-as\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bi-builders-as\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"big-id\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/big-id\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"biolibinc1622552350258\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/biolibinc1622552350258\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bissantechnology1583581147809\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bissantechnology1583581147809\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bitdefendercybersecurity\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bitdefendercybersecurity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Bitnami\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Bitnami\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bizagi\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bizagi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bizaptyltd1626489237351\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bizaptyltd1626489237351\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bizdataloome\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bizdataloome\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"biztalk360\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/biztalk360\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"black-duck-software\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/black-duck-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"blackbird\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/blackbird\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"blackmagicdesignincorporated1596492193249\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/blackmagicdesignincorporated1596492193249\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"blk-technologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/blk-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"blockapps\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/blockapps\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"blockchain-foundry\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/blockchain-foundry\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"blockstack\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/blockstack\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bloombase\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bloombase\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bluecat\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bluecat\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bluejeansnetwork1638333611902\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bluejeansnetwork1638333611902\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"blueprismlimited-4827145\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/blueprismlimited-4827145\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bluesyntaxconsulting1617654548594\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bluesyntaxconsulting1617654548594\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bluetalon\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bluetalon\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bmc.ctm\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bmc.ctm\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bmcctm.test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bmcctm.test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"boardpacpvtltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/boardpacpvtltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bocada\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bocada\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"boemskats\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/boemskats\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"botanalytics\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/botanalytics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bowspritconsultingopcprivatelimited1596291408582\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bowspritconsultingopcprivatelimited1596291408582\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bravura-software-llc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bravura-software-llc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Brianjac.Symantec.CloudWorkloadProtection\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Brianjac.Symantec.CloudWorkloadProtection\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bricatainc1584472632111\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bricatainc1584472632111\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bright-computing\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bright-computing\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"brightcomputing\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/brightcomputing\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"brocade_communications\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/brocade_communications\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"brutale\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/brutale\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bryte\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bryte\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bssw\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bssw\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bt-americas-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bt-americas-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"buddhalabs\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/buddhalabs\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cadosecurityltd1626856705534\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cadosecurityltd1626856705534\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"calculated_systems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/calculated_systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"caloudi_corp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/caloudi_corp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"canadiancentreforcybersecurity1610638436359\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/canadiancentreforcybersecurity1610638436359\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Canonical\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Canonical\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"canonical-test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/canonical-test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"carto\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/carto\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cask\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cask\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"castaigroupinc1595243474856\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/castaigroupinc1595243474856\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"catechnologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/catechnologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"catonetworksltd1641478570665\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/catonetworksltd1641478570665\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cautelalabs\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cautelalabs\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cavirin\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cavirin\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cayosoftinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cayosoftinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cdatasoftware\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cdatasoftware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cds\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cds\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"celum-gmbh\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/celum-gmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"center-for-internet-security-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/center-for-internet-security-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"centeritysystems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/centeritysystems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"centrixeltd1594135951373\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/centrixeltd1594135951373\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"centrocomputerspa1584528117084\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/centrocomputerspa1584528117084\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"certifiedsecuritysolutionsinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/certifiedsecuritysolutionsinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"certivox\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/certivox\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cfd-direct\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cfd-direct\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"chain\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/chain\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"checkpoint\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/checkpoint\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"chef-software\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/chef-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Chef.Bootstrap.WindowsAzure\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Chef.Bootstrap.WindowsAzure\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"chunghwatelecom1587573688842\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/chunghwatelecom1587573688842\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cinchy\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cinchy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cinegy-gmbh\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cinegy-gmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ciphertechsinc1646670709341\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ciphertechsinc1646670709341\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"circleci\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/circleci\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cires21\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cires21\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cirruswaveinc1579234787943\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cirruswaveinc1579234787943\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cisco\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cisco\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"citrix\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/citrix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Citrix.ADC\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Citrix.ADC\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"clapsodeughaftungsbeschrnkt1626333173563\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/clapsodeughaftungsbeschrnkt1626333173563\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"clear-linux-project\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/clear-linux-project\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"clone-systems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/clone-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"clouber\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/clouber\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloud-checkr\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloud-checkr\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloud-cruiser\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloud-cruiser\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloud-infrastructure-services\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloud-infrastructure-services\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudaccelinc1628754426775\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudaccelinc1628754426775\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudbees\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudbees\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudbees-enterprise-jenkins\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudbees-enterprise-jenkins\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudbolt-software\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudbolt-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudboltsoftware1639523402532\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudboltsoftware1639523402532\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudboost\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudboost\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudcover\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudcover\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudenablers-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudenablers-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudentity\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudentity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudera\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudera\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudflare\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudflare\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudhouse\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudhouse\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudinfo-4919088\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudinfo-4919088\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudknox\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudknox\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudlanes\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudlanes\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudlink\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudlink\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"CloudLinkEMC.SecureVM\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/CloudLinkEMC.SecureVM\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudmavensolutions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudmavensolutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudneeti\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudneeti\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudplan-gmbh\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudplan-gmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudsecurity\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudsecurity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudsoft\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudsoft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudwhizsolutions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudwhizsolutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudwrxsconsultingltd1631029702055\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudwrxsconsultingltd1631029702055\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"clustrix\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/clustrix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cncf-upstream\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cncf-upstream\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"codaintelligence1606495376525\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/codaintelligence1606495376525\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"codelathe\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/codelathe\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"codenvy\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/codenvy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"codetwo\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/codetwo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cognexcorporation1613759804979\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cognexcorporation1613759804979\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cognexcorporation1647410785838\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cognexcorporation1647410785838\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cognitive-scale\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cognitive-scale\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cognizant\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cognizant\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cognosys\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cognosys\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cohesity\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cohesity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cohesitydev1592001764720\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cohesitydev1592001764720\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cohesive\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cohesive\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"coin-sciences-ltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/coin-sciences-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"collabcloudlimited\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/collabcloudlimited\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"collibranv1619508098620\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/collibranv1619508098620\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"commscopeinc1632135151062\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/commscopeinc1632135151062\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"commvault\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/commvault\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"compellon\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/compellon\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"composable\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/composable\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"comunity\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/comunity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"concentrationheatandmomentumlimited1616154387047\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/concentrationheatandmomentumlimited1616154387047\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Confer\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Confer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"confluentinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/confluentinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"conflux\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/conflux\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"connecting-software\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/connecting-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"consensys\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/consensys\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"containeraider\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/containeraider\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"contiamogmbh\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/contiamogmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"controlcase\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/controlcase\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"controlplane\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/controlplane\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"controlplanecorporation1609967567639\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/controlplanecorporation1609967567639\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"convertigo\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/convertigo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"corda\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/corda\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"core-stack\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/core-stack\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"corent-technology-pvt\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/corent-technology-pvt\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"CoreOS\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/CoreOS\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"couchbase\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/couchbase\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cpanel\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cpanel\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"credativ\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/credativ\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cristiesoftwareltd1599488127561\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cristiesoftwareltd1599488127561\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"crunchyard\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/crunchyard\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"crunchyardltd1623835391104\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/crunchyardltd1623835391104\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cryptocom1585727786636\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cryptocom1585727786636\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cryptosense1605170011574\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cryptosense1605170011574\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cryptzone\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cryptzone\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ctm.bmc.com\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ctm.bmc.com\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ctrliqinc1648673227698\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ctrliqinc1648673227698\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cubebackup\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cubebackup\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cyberark\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cyberark\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cybernetica-as\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cybernetica-as\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cygnalabscorp1646065782458\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cygnalabscorp1646065782458\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cyxtera\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cyxtera\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"d4t4_solutions-1164305\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/d4t4_solutions-1164305\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"daceitdbasensetrafficpulse1579892024934\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/daceitdbasensetrafficpulse1579892024934\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"danielsol.AzureTools1\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/danielsol.AzureTools1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Dans.Windows.App\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Dans.Windows.App\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Dans3.Windows.App\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Dans3.Windows.App\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dataart\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dataart\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"databricks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/databricks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datacore\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datacore\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Datadog.Agent\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Datadog.Agent\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datadynamicsinc1581991927942\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datadynamicsinc1581991927942\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datagapsinc1585348463636\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datagapsinc1585348463636\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dataguiseinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dataguiseinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dataiku\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dataiku\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datalayer\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datalayer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datanomers1584919038987\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datanomers1584919038987\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datanova\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datanova\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datapredsa\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datapredsa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dataroadtechnologiesllc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dataroadtechnologiesllc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datasciencedojo1586563145740\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datasciencedojo1586563145740\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datastax\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datastax\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datasunrise\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datasunrise\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datavirtualitygmbh\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datavirtualitygmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datometry\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datometry\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dbs-h\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dbs-h\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ddn-whamcloud-5345716\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ddn-whamcloud-5345716\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Debian\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Debian\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dece-4446019\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dece-4446019\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"decisosalesbv\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/decisosalesbv\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"deepcognitioninc1593512758156\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/deepcognitioninc1593512758156\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"deepsiginc1581610210151\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/deepsiginc1581610210151\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"deepsurfacesecurityinc1632943333445\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/deepsurfacesecurityinc1632943333445\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dellemc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dellemc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dell_software\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dell_software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"delphix\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/delphix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"deltapathlimited1592886319362\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/deltapathlimited1592886319362\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"denodo\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/denodo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"denyall\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/denyall\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"derdack\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/derdack\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"deskpro1650546806675\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/deskpro1650546806675\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"desktopstudioag1580294245574\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/desktopstudioag1580294245574\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"devfactory\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/devfactory\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"device42inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/device42inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"deviceauthorityinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/deviceauthorityinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"devolutionsinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/devolutionsinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"devopsgroup-uk\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/devopsgroup-uk\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"df-portal-user\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/df-portal-user\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dgsecure\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dgsecure\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Dh2ico\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Dh2ico\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dh2icompany\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dh2icompany\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dhi\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dhi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"diagramics\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/diagramics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dicomsystems1584107398321\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dicomsystems1584107398321\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"diehl-metering\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/diehl-metering\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"digisitesystems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/digisitesystems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"digitaldefenseinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/digitaldefenseinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"digitaloffice\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/digitaloffice\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"digitamizeinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/digitamizeinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"digitate\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/digitate\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"diladele\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/diladele\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dimensionalmechanics-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dimensionalmechanics-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"diqa\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/diqa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"diyatech\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/diyatech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"diyotta\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/diyotta\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"djiindustrialincus\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/djiindustrialincus\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"docker\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/docker\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dome9\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dome9\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dorabot\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dorabot\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dremiocorporation\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dremiocorporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"drizti\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/drizti\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"drone\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/drone\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dsi\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dsi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dundas\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dundas\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dyadic_security\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dyadic_security\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dynatrace\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dynatrace\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dynatrace.ruxit\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dynatrace.ruxit\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"e-magicinc1587696283171\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/e-magicinc1587696283171\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"eastwind-networks-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/eastwind-networks-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"easysoftwaresro1593005637384\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/easysoftwaresro1593005637384\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ebesllc1637780200500\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ebesllc1637780200500\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ecessa\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ecessa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"edevtech\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/edevtech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"edgelesssystems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/edgelesssystems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"edgenetworks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/edgenetworks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"edispheresoftwareprivatelimited1606199736428\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/edispheresoftwareprivatelimited1606199736428\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"education4sight\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/education4sight\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"eecservicesfzllc1604836615706\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/eecservicesfzllc1604836615706\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"egnyte\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/egnyte\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"egress1589289169584\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/egress1589289169584\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"eikonasystemsgmbh1601729310063\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/eikonasystemsgmbh1601729310063\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Elastic\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Elastic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"elasticbox\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/elasticbox\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"elecard\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/elecard\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"electric-cloud\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/electric-cloud\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"elevateiot\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/elevateiot\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"eleven01\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/eleven01\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"elfiqnetworks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/elfiqnetworks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"emercoin\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/emercoin\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"energisme1601990637842\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/energisme1601990637842\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"enforongo\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/enforongo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"engineering-ingegneriainformatica-spa1626786889850\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/engineering-ingegneriainformatica-spa1626786889850\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"engysltd1624364546407\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/engysltd1624364546407\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"enterprise-ethereum-alliance\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/enterprise-ethereum-alliance\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"enterprisedb-corp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/enterprisedb-corp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"enterpriseworx-it\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/enterpriseworx-it\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"epicgames\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/epicgames\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"epicgamesinc1633466121071\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/epicgamesinc1633466121071\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"eproe\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/eproe\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"equalum\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/equalum\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"equilibrium\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/equilibrium\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"equinix\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/equinix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ergoninformatikag1581586464404\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ergoninformatikag1581586464404\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"esdenera\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/esdenera\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ESET\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ESET\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"esetresearch1579795941720\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/esetresearch1579795941720\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"esri\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/esri\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"esyon\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/esyon\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ethereum\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ethereum\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"eurolinuxspzoo1620639373013\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/eurolinuxspzoo1620639373013\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"eventtracker\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/eventtracker\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"evertzmicrosystemsltd1586877923009\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/evertzmicrosystemsltd1586877923009\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"evostream-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/evostream-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"exact\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/exact\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"exasol\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/exasol\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"excelero1608461290726\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/excelero1608461290726\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"exivity\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/exivity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"exonar\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/exonar\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"f5-networks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/f5-networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"falainapteltd1604661424876\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/falainapteltd1604661424876\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"falconstorsoftware\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/falconstorsoftware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fatalsecurity1604924013537\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fatalsecurity1604924013537\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fatpipe-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fatpipe-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fenestrae-1035066\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fenestrae-1035066\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fidesys\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fidesys\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"filecatalyst\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/filecatalyst\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"filemagellc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/filemagellc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fiorano\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fiorano\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fireeye\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fireeye\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"firehost\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/firehost\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"firemon\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/firemon\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"firstderivativesplc1596469572732\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/firstderivativesplc1596469572732\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"flashgrid-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/flashgrid-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"flexbby\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/flexbby\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"flexbby-5255860\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/flexbby-5255860\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"flexify-io\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/flexify-io\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"flexxibleit\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/flexxibleit\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"flowmon\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/flowmon\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"flynet\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/flynet\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"foghorn-systems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/foghorn-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"forcepoint-llc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/forcepoint-llc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"forescout\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/forescout\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"foreseetiab1613650409016\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/foreseetiab1613650409016\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"formpipesoftwareab\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/formpipesoftwareab\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"forscene\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/forscene\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fortanix\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fortanix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fortinet\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fortinet\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fortycloud\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fortycloud\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"forumsystems1599756394904\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/forumsystems1599756394904\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fotopiatechnologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fotopiatechnologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"foxiteuropegmbh1585901066320\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/foxiteuropegmbh1585901066320\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"franzinc1593030725310\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/franzinc1593030725310\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fujitsu_fast\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fujitsu_fast\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fw\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fw\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"g2kgroupgmbh-4821943\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/g2kgroupgmbh-4821943\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gapteq\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gapteq\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gatlingcorp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gatlingcorp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gbs\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gbs\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gemalto-safenet\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gemalto-safenet\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Gemalto.SafeNet.ProtectV\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Gemalto.SafeNet.ProtectV\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"genesistechnologyinc1604912285911\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/genesistechnologyinc1604912285911\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"genuagmbhdevid1\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/genuagmbhdevid1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"genua_gmbh\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/genua_gmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"genymobile\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/genymobile\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gigamon-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gigamon-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"GitHub\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/GitHub\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gitlab\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gitlab\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gitlabinc1586447921813\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gitlabinc1586447921813\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gladinet-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gladinet-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"glantoninc1591876792991\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/glantoninc1591876792991\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"globalidsinc1596800540598\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/globalidsinc1596800540598\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"globalscape\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/globalscape\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"globalsolutions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/globalsolutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gluwareinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gluwareinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"graphistry\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/graphistry\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"graphitegtc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/graphitegtc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"great-software-laboratory-private-limited\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/great-software-laboratory-private-limited\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"greensql\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/greensql\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"greycorbelsolutions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/greycorbelsolutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gridgain\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gridgain\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"guardicore\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/guardicore\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gxchainfoundationltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gxchainfoundationltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"h2o-ai\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/h2o-ai\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hackerbay\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hackerbay\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hackershub\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hackershub\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"haivision\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/haivision\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"haivisionsystemsinc1580780591922\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/haivisionsystemsinc1580780591922\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"haltdoscompvtltd1587136166019\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/haltdoscompvtltd1587136166019\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hammerspace\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hammerspace\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hanu\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hanu\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"haproxy-technologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/haproxy-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"harmanconnectedservicesinc1594928575643\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/harmanconnectedservicesinc1594928575643\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"harpaitalia\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/harpaitalia\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hashhub\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hashhub\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hcl-technologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hcl-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"heimdall-data\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/heimdall-data\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"help-systems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/help-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"helpyio\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/helpyio\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"heretechnologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/heretechnologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hewlett-packard\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hewlett-packard\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hillstone-networks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hillstone-networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hitachi-solutions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hitachi-solutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hitachivantara\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hitachivantara\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"holo-industrie40softwaregmbh1600957636008\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/holo-industrie40softwaregmbh1600957636008\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hortonworks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hortonworks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hpe\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hpe\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"HPE.Security.ApplicationDefender\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/HPE.Security.ApplicationDefender\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"huawei\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/huawei\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hubstor-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hubstor-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hush-hush\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hush-hush\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hvr\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hvr\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hyperglance\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hyperglance\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hypergrid\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hypergrid\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hystaxinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hystaxinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hytrust\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hytrust\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"i-exceed-technology\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/i-exceed-technology\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iaansys\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iaansys\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ibm\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ibm\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ibm-alliance-global-1560886\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ibm-alliance-global-1560886\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ibm-alliance-usa-ny-armonk-hq-ibmstorage-6201192\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ibm-alliance-usa-ny-armonk-hq-ibmstorage-6201192\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ibm-usa-ny-armonk-hq-6275750-ibmcloud-aiops\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ibm-usa-ny-armonk-hq-6275750-ibmcloud-aiops\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iboss\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iboss\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iconics\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iconics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iconsulting-spa\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iconsulting-spa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"icubeconsultancyservicesinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/icubeconsultancyservicesinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iguazio-5069960\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iguazio-5069960\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ikan\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ikan\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iliimbiliimveyazlmsistemlerisanvetica1617000555584\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iliimbiliimveyazlmsistemlerisanvetica1617000555584\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"illuminainc1586452220102\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/illuminainc1586452220102\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"image-technologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/image-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"imaginecommunications\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/imaginecommunications\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"imperva\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/imperva\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"impetustechnologiesinc1591959591877\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/impetustechnologiesinc1591959591877\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"imprivatainc1580479939967\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/imprivatainc1580479939967\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"incorta\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/incorta\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"incredibuild\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/incredibuild\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"indexima1594300233028\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/indexima1594300233028\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"industry-weapon\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/industry-weapon\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"industryweapon1587162781833\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/industryweapon1587162781833\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"inenprocesosyplataformasdetisderldecv1615482385424\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/inenprocesosyplataformasdetisderldecv1615482385424\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"inergybv1637141413454\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/inergybv1637141413454\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"infinitesoftwarecorporation1579223971125\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/infinitesoftwarecorporation1579223971125\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"infiotinc1614034091460\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/infiotinc1614034091460\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"influxdata\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/influxdata\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"infoblox\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/infoblox\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"infogix\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/infogix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"infolibrarian\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/infolibrarian\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"informatica\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/informatica\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"informationbuilders\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/informationbuilders\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"informationtechnologies_ltd_1179601\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/informationtechnologies_ltd_1179601\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"infotecsinternetsecuritysoftwaregmbh1636129257584\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/infotecsinternetsecuritysoftwaregmbh1636129257584\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"infront-consulting-group-ltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/infront-consulting-group-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"infscapeughaftungsbeschrnkt\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/infscapeughaftungsbeschrnkt\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ingenieurstudiohollaus1579587745438\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ingenieurstudiohollaus1579587745438\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ingrammicro\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ingrammicro\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"innomindssoftware\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/innomindssoftware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"innosepgmbh1618331344164\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/innosepgmbh1618331344164\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"innovatorartificialtechsrl1619180685551\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/innovatorartificialtechsrl1619180685551\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"innovtech\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/innovtech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"instight-technology\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/instight-technology\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"integration-objects\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/integration-objects\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"intel-bigdl\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/intel-bigdl\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"intel-fpga\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/intel-fpga\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"intellicus-technologies-pvt-ltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/intellicus-technologies-pvt-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"intelligent-plant-ltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/intelligent-plant-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"intel_corporation\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/intel_corporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"internationaltrustmachinescorporation1582190033865\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/internationaltrustmachinescorporation1582190033865\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"internet20inc1635882446190\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/internet20inc1635882446190\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"intersystems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/intersystems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"intigua\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/intigua\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"intigua1638692632641\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/intigua1638692632641\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"introspecioltd1629872641188\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/introspecioltd1629872641188\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iofabric\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iofabric\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ipinfusion1590066770520\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ipinfusion1590066770520\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ipswitch\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ipswitch\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iqsol\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iqsol\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iquate\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iquate\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iquest\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iquest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"irion\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/irion\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ishlangu-load-balancer-adc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ishlangu-load-balancer-adc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"issp-corporation\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/issp-corporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"isvtestukbigcat\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/isvtestukbigcat\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"isvtestuklegacy\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/isvtestuklegacy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"it4bizdoo\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/it4bizdoo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"itelios\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/itelios\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"itrsgroupltd1620310702149\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/itrsgroupltd1620310702149\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ivanti-inc-pcs\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ivanti-inc-pcs\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ivanti-nzta\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ivanti-nzta\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ivix1595238749040\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ivix1595238749040\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iwnamespace\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iwnamespace\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"izenda\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/izenda\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"jamcracker\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/jamcracker\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"javlinltd1579185328273\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/javlinltd1579185328273\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"jedox\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/jedox\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"jelastic\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/jelastic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"jetnexus\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/jetnexus\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"jetware-srl\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/jetware-srl\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"jfrog\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/jfrog\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"jm-technology-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/jm-technology-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"jogetinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/jogetinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"johnsnowlabsinc1646051154808\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/johnsnowlabsinc1646051154808\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"juniper-networks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/juniper-networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"justanalytics\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/justanalytics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kaazing\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kaazing\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kadenallc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kadenallc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kali-linux\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kali-linux\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kalkitech\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kalkitech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kaminarioinc1588672951794\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kaminarioinc1588672951794\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Kaspersky.Lab\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Kaspersky.Lab\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"KasperskyLab.SecurityAgent\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/KasperskyLab.SecurityAgent\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kaspersky_lab\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kaspersky_lab\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kazendi\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kazendi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kelverion\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kelverion\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kemptech\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kemptech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kepion\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kepion\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"KevlarExtensions.M365Security.SecureOS\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/KevlarExtensions.M365Security.SecureOS\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"KevlarExtensions.M365SecurityHostIDS\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/KevlarExtensions.M365SecurityHostIDS\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"KevlarExtensions.M365SecurityInventory\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/KevlarExtensions.M365SecurityInventory\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"KevlarExtensions.M365SecurityInventory.NameChangeTest\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/KevlarExtensions.M365SecurityInventory.NameChangeTest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"KevlarExtensions.M365SecurityODL\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/KevlarExtensions.M365SecurityODL\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"KevlarExtensions.M365SecurityTLSExtension\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/KevlarExtensions.M365SecurityTLSExtension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kinetica\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kinetica\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kinvolk\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kinvolk\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"knime\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/knime\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kobalt\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kobalt\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kognillc1600118221163\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kognillc1600118221163\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kognitivsparkinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kognitivsparkinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"konginc1581527938760\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/konginc1581527938760\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"konsys-ltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/konsys-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"koverseinc1588716263110\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/koverseinc1588716263110\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kryonsystems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kryonsystems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"krypc-technologies-pvt-ltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/krypc-technologies-pvt-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kyligence\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kyligence\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kyvos-insights-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kyvos-insights-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lab3solutions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lab3solutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lancom-systems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lancom-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lansa\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lansa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lastline\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lastline\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"launchnodesltd1644561451121\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/launchnodesltd1644561451121\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"leap-orbit\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/leap-orbit\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lenovosoftware1604394104439\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lenovosoftware1604394104439\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"leostream-corporation\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/leostream-corporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lepide-software\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lepide-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"levacloudllc1602151818089\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/levacloudllc1602151818089\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"libelleag\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/libelleag\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"liberatii\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/liberatii\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"libraesva\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/libraesva\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"liebsoft\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/liebsoft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lightning-analyticsinc1582000647396\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lightning-analyticsinc1582000647396\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"linuxbasedsystemsdesignltd1580878904727\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/linuxbasedsystemsdesignltd1580878904727\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"liquid-files\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/liquid-files\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"liquidware\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/liquidware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"literatu\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/literatu\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"litespeedtechnologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/litespeedtechnologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"litespeed_technologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/litespeed_technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"litionenergiegmbh1580128829115\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/litionenergiegmbh1580128829115\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"litmusautomation1582760223280\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/litmusautomation1582760223280\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"llcitpro\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/llcitpro\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lnw-softgmbh\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lnw-softgmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"loadbalancer\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/loadbalancer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"logicflowag1638535407949\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/logicflowag1638535407949\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"logsign\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/logsign\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"logstarecorp1635838645101\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/logstarecorp1635838645101\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"logtrust\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/logtrust\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"logzio\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/logzio\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"looker\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/looker\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lotus_beta_analytics\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lotus_beta_analytics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lti-lt-infotech\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lti-lt-infotech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"luminate-security\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/luminate-security\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"M365Security.KevlarExtensions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/M365Security.KevlarExtensions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"M365SecurityInventory\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/M365SecurityInventory\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"machinesense\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/machinesense\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"madhavajay1632269232059\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/madhavajay1632269232059\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"maidenhead-bridge\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/maidenhead-bridge\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"manageengine\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/manageengine\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mapd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mapd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"maplelabsinc1623932715330\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/maplelabsinc1623932715330\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mapr-technologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mapr-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"marand\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/marand\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"marketplace-rdfe-caps\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/marketplace-rdfe-caps\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"marklogic\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/marklogic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"massiveanalytic-\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/massiveanalytic-\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mathworks-deployment\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mathworks-deployment\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mathworks-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mathworks-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"matillion\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/matillion\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mavinglobal\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mavinglobal\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"McAfee.EndpointSecurity\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/McAfee.EndpointSecurity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"McAfee.EndpointSecurity.test3\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/McAfee.EndpointSecurity.test3\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"meanio\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/meanio\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"media3-adobe\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/media3-adobe\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"media3-technologies-llc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/media3-technologies-llc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mediatekinc1586141563888\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mediatekinc1586141563888\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mendix\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mendix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"merlynnintelligencetechnologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/merlynnintelligencetechnologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"meshifyappinc1622759451429\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/meshifyappinc1622759451429\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"messagesolution\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/messagesolution\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"metaswitch\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/metaswitch\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mettainnovations-4900054\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mettainnovations-4900054\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mfe_azure\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mfe_azure\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mfiles\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mfiles\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mico\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mico\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"micro-focus\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/micro-focus\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microlinkpcukltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microlinkpcukltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microolap\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microolap\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsecpteltd1634010681688\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsecpteltd1634010681688\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-ads\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-ads\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-agci-gaming\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-agci-gaming\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-aks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-aks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-avere\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-avere\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-azure-batch\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-azure-batch\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-azure-compute\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-azure-compute\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-azure-hdinsight\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-azure-hdinsight\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-crypto\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-crypto\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-dsvm\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-dsvm\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-hyperv\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-hyperv\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-minecraft\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-minecraft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AdminCenter\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AdminCenter\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AKS\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AKS\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.ActiveDirectory\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.ActiveDirectory\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.ActiveDirectory.LinuxSSH\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.ActiveDirectory.LinuxSSH\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Applications\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Applications\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Automation.HybridWorker\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Automation.HybridWorker\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Automation.HybridWorker.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Automation.HybridWorker.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.AzureDefenderForServers\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.AzureDefenderForServers\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.AzureDefenderForSQL\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.AzureDefenderForSQL\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.AzureHybridBenefit\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.AzureHybridBenefit\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Backup.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Backup.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Backup.Test.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Backup.Test.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Batch\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Batch\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.ChangeTracking\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.ChangeTracking\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.ChangeTracking.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.ChangeTracking.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.ChangeTrackingAndInventory\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.ChangeTrackingAndInventory\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Chaos\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Chaos\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Compute.Security\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Compute.Security\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.ContainerUpstream\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.ContainerUpstream\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.DefenderForServers.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.DefenderForServers.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.DefenderForServers.Test2\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.DefenderForServers.Test2\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Diagnostics\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Diagnostics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Diagnostics.Build.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Diagnostics.Build.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Diagnostics.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Diagnostics.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test012be407-61ea-4e45-a2c3-71a45999ca21-20191228083800\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test01971384-3044-413b-8b1c-33b5d461bf23-20200107051823\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test0225ec7d-b36c-4ac8-82f0-aa4fafaf10a9-20200111051346\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test025e16a1-328d-45a2-b7e3-71f7e4cde046-20191229064028\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test02d1f941-5607-4757-8df7-fd8c5631ab45-20200103083810\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test039abd7f-360c-42a1-ad5d-77527c519286-20191002233412\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test04a0f157-c6fb-4595-b6ca-6c82a2338063-20200108101451\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test0737f33e-63e0-4ba9-b04b-b93a1de4e997-20200106083639\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test0a44d7be-63fa-418d-a7b6-89a44dd21894-20200107052935\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test0d01b487-7f79-4d87-b330-5c025068db45-20191004190331\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test0d643748-e6fe-41ad-b4d3-89a289a0cee0-20191003055620\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test0df83c51-5bb9-43f8-8ae9-bc896ea64f78-20200110220221\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test0f02c246-7e65-4010-9367-ca4530c3897e-20191004190223\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test157494ec-e788-43b0-8d26-a17e39ee07cc-20191002011945\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test1661d154-b623-4507-8a56-3a89812c456c-20200111083940\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test17bbd860-f21d-40ab-9026-16e05f2907f0-20200106083451\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test194e2333-13cd-43e3-b0a4-c8cdcf1a3600-20200110211106\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test1bc26b19-b8d8-41f9-a26d-818f277bdf93-20200101113139\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test1c840053-9213-4f2a-8f2e-9bf2297908bd-20200108101424\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test1d7bba72-69f1-43cd-a38c-41ce0b5f4bae-20200109050041\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test1f7a8078-50e7-4a3a-91eb-d178fd4c403b-20191002233353\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test1fef1fdc-57ba-46a8-a879-475ba7d45a7a-20200106083509\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test21332f15-f78d-4d31-afac-79b9dc989432-20191231175840\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test22f10717-6939-4003-a9ce-38effd8b77d6-20191007191355\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test2334e6e3-bb72-4241-a36f-c2429d69bc0b-20200106050834\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test24fa9eb5-1c59-4425-b61c-30fd638c2a45-20191003203802\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test2521a545-ed61-4a15-bed1-aba7ce1d81ee-20200106050804\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test25c6fe61-1282-43c2-867b-b5039219989c-20200105081851\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test27515c8c-6773-4f92-afb0-35691cc6e3b6-20200103083821\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test28012680-48e7-4903-877f-2f29464e63d5-20191229033424\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test29a7a529-d293-4728-9d7f-257ed996e64f-20200108081759\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test2a5f2d2c-b8e3-46c2-850d-a1641c024fe7-20200107084228\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test2ce856af-ab17-48f2-ba3e-bcd9af091061-20200110013246\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test2e012e83-6361-4365-963f-6ced8a08e91c-20200110211254\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test2ecf67b2-fb63-4461-b6a6-7026c4fb1168-20191002214026\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test2ede6564-c7cc-44cb-a1a8-902505c9829d-20191003020742\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test2f4ebc17-e27e-48d9-9cc3-ff933c21884e-20200106092410\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test349ee02c-af9b-4663-a963-823b40eefed8-20200108083612\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test34cf6b13-b78e-478b-b596-8b661629371d-20191007195455\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test36cc5b60-2b23-4a04-bf95-f7865e1141cf-20200110085718\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3712fca9-5cdd-4609-be69-b02aedc5c55c-20200107084115\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3772d042-92e2-4bcb-99b7-8a6a119cc088-20191231182808\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test37a6dd64-d44d-465e-85bc-3bc38be90350-20200104083535\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test381074d5-7156-472b-801a-b35f8fef4cc6-20200105050612\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3877a44d-4c48-40db-80eb-227272d5acd6-20200110103540\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test38ecd28e-7018-4672-840c-3044a5e7a6b5-20200111084208\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test395a0b49-442a-450c-8a1f-65b0aa3bcf47-20200105083839\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3971b300-edff-44a8-b61b-7f9b7460a8d6-20191003002234\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3adeec20-7458-4b3d-af26-0b6bc2aae3eb-20200103083751\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3b20dd96-f3e4-4798-998d-8c433c2449a7-20200108083635\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3ce2fd4a-8b5a-4c7e-b08d-3e48fc0f45e7-20200104083825\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3d499ca7-cc8d-41cc-a6dc-ffb1a4ac4942-20200107053004\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3db7240e-5e42-4d6d-b024-cc9fce3c828b-20200105083520\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3f6b7341-635f-48d5-a36d-be5dfe3002c4-20200105050937\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3fc26934-ede2-4482-ad5e-f66f6135d4a6-20191228055558\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test406d077c-6017-4062-bc96-f809147a2331-20200106050748\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test4302336c-e039-4e70-bcb6-9275f6089e4a-20200108144821\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test453a087e-8435-46db-970a-4ee633cc4c4a-20200102083458\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test46b73afa-2259-4aff-81e1-a58bf24b59aa-20191229033459\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test4a3399ee-82ea-46aa-9e3a-5434b588e3b6-20191228013518\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test4eb7a185-527b-4b9f-93a8-7f1cec9d062e-20191231151207\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test520a0915-f9f0-4da4-9fa1-1b74fc1470aa-20200102083505\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test5397960f-023b-4979-9a8b-800d049045a4-20191007195417\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test55a36387-8a3f-4159-9884-29b97539a253-20200109080443\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test5645f186-4ee5-4209-af37-423660e3318c-20191231175947\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test58b4461d-4d2d-4395-b6d2-ab83d4d8c62f-20200111001002\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test5b0bf447-d98d-429d-8334-c032d197c743-20191003203846\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test5bc90367-1ea2-400b-a40c-321081bae3f3-20200108145035\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test5bd0562f-e939-456f-a6ee-c848d1aba616-20200101151641\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test5e4efe90-916c-4c96-802c-1508a5b6da78-20191231151150\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test5f8f0c10-cc3c-45ec-a068-fb1c7edfa0d9-20200101145958\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test60a000b7-286c-4b2b-9137-bbc088736419-20200108144920\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test6192a01b-ba47-4d08-904a-71647a49a112-20191008041625\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test62835538-89c6-4f66-9034-f7a4b176c615-20191007234245\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test651e4ad2-ee4a-462e-a506-b56b1969f5d0-20200110230749\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test691d94e5-c40c-4568-94b0-09b08aea42b1-20200106050808\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test6aa3643c-011a-4180-877f-cad955a8e664-20191007234642\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test6cfb469b-8478-468f-9bb5-691affd32abb-20200107083803\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test6d36b6b2-7956-4e62-91c1-c33792fd4bb1-20200110123203\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test6e28168e-a9c8-4c0a-8b40-60c2a1502d43-20200108052802\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test6eb763ac-7fbe-4e44-bee7-aad035ee2a7d-20200110084429\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test6efec253-f625-46f0-9d74-324f69e963d8-20200107070514\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test70fa7e4c-3122-4ff7-aec6-fe75ab660a01-20200108105900\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test710a5fbf-06c7-46ac-b96d-a29d2586422f-20200108083639\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test71d72489-67c6-45e2-b1e6-a19546efc823-20200105112903\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test721fccf1-2b3e-44b6-908f-51b910e88b09-20200111104931\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test742d0189-9e41-4f1b-8ad3-31c05d34903b-20200111103247\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7836a97c-f56e-48d0-8b5d-61e79aeb3226-20200111071656\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test78666b2e-25c8-4a48-931a-3131a0317d73-20191002194352\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test79f13508-fcbd-47b9-988f-1c21ef5e7f2e-20191002015429\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test79fb90ce-4691-4212-99a7-6e4069bd5984-20191007234256\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7a8cf687-6a21-4181-ba98-902fee717bd3-20200104103216\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7aabf813-6644-483a-b9e0-ba6f8973ba1f-20191002232822\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7c96c10a-0c8f-4ab0-83fd-1ad66a362e33-20191229033458\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7e79b6ff-2559-44fe-b3ba-afaa68d63636-20200108112116\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7ea372f7-ea7e-4b9e-bbad-4f35c1567aa2-20200108052736\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7fac3d04-98a5-4fc4-904e-9ea3b86eadc2-20200106050751\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7fe20dd6-9ed9-4126-bb1d-031c01ac4550-20200101114504\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7ff974d9-c841-4249-b05b-bbf663cb4605-20200106084104\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test815bd4d5-fc24-4a47-be20-063c4809902c-20200109050508\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test817654d0-2109-4d95-9284-8c8a9d960d08-20200108053758\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test821ca3b6-dd05-4e80-b3d8-74ba03b2609b-20191231151151\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test8285dc3e-637d-4d46-9695-adc39cbe7d2f-20200108144457\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test828aae03-9239-4938-a303-c23c42311878-20200102083419\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test84afd814-5098-49ab-af99-e50350b5898b-20200110211134\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test85b08563-b15f-4202-a0bc-f2bc2df2c71a-20200107053335\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test88aac268-c087-4481-b78e-99b920784a33-20200101084853\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test88dbd442-a8cc-4874-81a0-d3192c61df62-20191001224544\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test894dfb75-a00f-4f0c-894c-cae1c9846ad3-20200105051803\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test8d09bf4d-ee63-4ab1-a986-a4b802418403-20200111051447\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test8d4d652b-4f05-4e99-93dd-78b9a36b5c78-20191003203755\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test8de64739-43d8-4f84-af65-fdb3d0885288-20200108053543\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test8e324c65-a51d-4eeb-9ec8-d5f8662dc041-20191228165107\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test8e564580-8e53-4300-85f1-bf7f31dd37ff-20200107013348\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test8f458ca7-8898-4d58-b93d-bfb0c3da028c-20200109050310\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test901cd6ca-5565-4552-a3de-d204d01935c0-20200108083706\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test907b39e5-4008-4b55-93a0-18e9697b9cf3-20200108053817\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test90c2be7c-d7ec-4abf-9fad-fef90fc3ef4d-20191004022234\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test922db678-6ee8-43d5-86ff-6a86e132d332-20200107085231\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test93b88aec-5277-4b1b-910c-7008e972ce91-20200107013304\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test95a9104b-6cba-42d8-82ff-cc37e5ac44db-20200108081723\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test96da1605-19e0-46eb-9ce0-53e840f5e2cb-20200101111729\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test996066b2-7d29-400f-929b-e343a21046f7-20191231151212\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test99663fff-ed21-4a91-9687-1a6da2abb033-20200106084508\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test9eb5efa5-c3c1-4c13-80a6-11f5eba67372-20200108144852\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testa3791896-b1fc-491e-ba0d-aefcd8d9e52a-20200105083503\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testa37ff709-a078-45a0-8187-41733df8e101-20200109050003\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testa4c5fe4e-936e-4be1-a612-a331aff54a8c-20200111105055\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testa59bce1d-e32c-423d-a86e-945d4aeb98b4-20200107051821\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testa604c059-8279-4f4d-a354-eec27222a06c-20200111051514\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testa71fefb1-0d9c-4fb3-8d3d-5dcd12d72b77-20200103103221\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testa748013d-c5a6-44f9-88eb-43167207c742-20200111051402\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testaab67022-4f2b-420d-a06a-2c4045110cdf-20191229033144\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testacab9541-280f-4491-9f49-ac57653f0a07-20200105083839\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testad298437-0349-4cc7-88a9-d8aabcba9df1-20191002233431\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testadd68286-f9e0-4ab1-a526-d8f3cf0f054e-20200105084128\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testade4c52b-18f5-4b67-8e93-945358ce4f7d-20191007234259\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testae421c1d-0211-4ef2-b372-564ce8ad484a-20200110104035\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testafbbd8bf-aec5-48bf-8fea-73fa15ccc315-20191001224727\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testb15148bf-78d2-42d4-ad08-b3ad8fb4b122-20200101084759\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testb4237708-3688-40ea-85a2-275c05f4d100-20191228083519\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testb799a18f-be45-4c5c-8438-163ac2e1f1e7-20191004190529\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testb7cee88a-e5ac-4af4-99c8-7247020b00c3-20200105051201\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testb7df0d9a-27c0-4ca5-b692-08dd90387b98-20200111083443\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testbbf6bf32-4bd0-4381-b8f7-2658f585df4d-20191003203846\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testbeea1376-166a-4b1a-8923-c907cc9737d9-20200107013336\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testbf9154e9-6166-48c2-86fe-1f331be606d7-20200107051823\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc0d7c3c5-23b8-489c-a5e0-ae87c681b696-20200101083539\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc193f31a-5186-4e93-84f6-0e4ab87b73c1-20200107052937\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc1c7e8dc-fa8c-47d9-8305-de6d1451b939-20200101085248\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc1d0c917-e2ae-430c-a2ca-383fb0fda046-20191007235839\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc23a3fbb-6e95-4c0d-94fc-c8ab14dddf1c-20191231151117\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc2697630-6247-411a-94b3-c2974ad8cbee-20191007195417\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc466b80f-670f-4383-89b8-44e0d509fa20-20191002000516\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc5c8d9bd-75fa-4db3-9f34-5d7b7098584c-20191003203851\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc8b6d14b-a5db-48e0-bfad-a2818d432bea-20200104083443\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc933efa8-c553-4b93-884f-b7221d9ca789-20191228083750\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testcbe8ab80-46ef-49b1-a7bb-4e3d6e50e49f-20200104050811\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testccc0b5e6-9b0d-451a-8ac4-6f4af293b913-20200106092645\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testcec64786-04b1-487c-80ec-050da646fb1c-20191005123412\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testd104a52f-eba2-401d-8e7f-a841c90f7712-20191228083553\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testd724cea4-0d3c-4539-b2ff-be08fb23a67e-20200107083714\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testd8e60bac-27ff-4fba-90b8-732c9c5ff91c-20191228083751\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testd99db4a5-7683-4584-89ad-fefd711de284-20191004190210\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testd9b4309a-67bc-4cd8-ac47-094cb20ca6aa-20200101090202\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testda3320e0-28f2-4146-a002-e06296362711-20191004190115\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testda714121-3240-4253-90c3-48c43f115c90-20200102083419\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testdb357558-60b4-4ee3-9ec3-ba22c5d827fb-20191004020617\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testdc7230e9-df6d-4edd-a57c-ef7e0432c463-20191002011345\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testdccb59de-436f-4935-bed6-2e677dcaf36a-20200109111802\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testde985b23-9333-4f6e-a5e8-82025a38b2af-20200102083510\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Teste271da3e-cbcb-4ee7-8770-f297f414451f-20191003015540\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Teste4070edd-aec0-455d-8a79-aecdb7170b6d-20191007234642\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Teste42f351a-4da0-4f0d-93e9-ef1d98e06659-20200108083633\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Teste66ca23c-f4bf-4eb3-8418-139364d19e7d-20200107062643\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Teste78b1ab2-1380-48ab-9923-0276cdb7198b-20191001224742\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Teste8607e14-b4f8-472a-bd5b-893b8d9612e6-20200112045941\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Teste980b80e-3add-42c0-bc98-a84020b2d128-20200108101640\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Tested79dba9-2d38-4ea9-a01c-56e94b30ca7a-20191007195447\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testee9dcf5f-f7c4-4192-a8f4-28e9bc7d0f7c-20191001225005\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testefbb340a-b68b-4200-872b-d05e7d29f92d-20191007195432\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testf1fc0559-6740-48dd-9501-2b933c731d52-20200103083458\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testf41dfc97-bb51-4fba-86ca-a6f2695c415a-20200107050834\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testf5784447-83ed-4c00-8764-ea0f932aafa2-20200106085748\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testf6128ef6-c13c-420e-8088-0710888ce88b-20200109050003\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testf863ab2c-ada9-4646-84c7-1f83a82375d7-20191229033226\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testfac552a7-418f-4baa-8f51-d199ceff5c68-20200103050817\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testfb7be054-5c15-494f-822c-b64f9a36e2f3-20200105051753\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testfc5c7585-6c9a-4aa4-a7c4-1223a94e00c7-20200104083552\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.FileServer.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.FileServer.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.FleetDiagnostics\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.FleetDiagnostics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.FleetDiagnostics.Dev\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.FleetDiagnostics.Dev\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Geneva\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Geneva\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.KeyVault\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.KeyVault\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.KeyVault.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.KeyVault.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.LabServices\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.LabServices\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.LabServices.test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.LabServices.test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.Agent\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.Agent\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.Dev\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.Dev\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.Dev.INT\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.Dev.INT\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.Dev.SCALE\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.Dev.SCALE\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.Dev.TEST\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.Dev.TEST\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.GuestHealth\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.GuestHealth\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.DEV\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.DEV\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.INT\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.INT\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.SCALE\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.SCALE\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.TEST\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.TEST\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.INT.Dev\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.INT.Dev\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.SCALE.Dev\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.SCALE.Dev\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.TEST.Dev\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.TEST.Dev\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.WorkloadInsights.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.WorkloadInsights.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.WorkloadInsightsTest.newnamespace\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.WorkloadInsightsTest.newnamespace\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.Workloads\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.Workloads\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.Workloads.Dev\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.Workloads.Dev\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitoring.DependencyAgent\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitoring.DependencyAgent\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitoring.DependencyAgent.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitoring.DependencyAgent.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Networking.DNS\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Networking.DNS\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Networking.SDN\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Networking.SDN\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.NetworkWatcher\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.NetworkWatcher\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.NetworkWatcher.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.NetworkWatcher.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.OpenSSH\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.OpenSSH\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Performance.Diagnostics\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Performance.Diagnostics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Performance.Diagnostics.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Performance.Diagnostics.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.RecoveryServices\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.RecoveryServices.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices.SiteRecovery\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.RecoveryServices.SiteRecovery\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices.SiteRecovery2\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.RecoveryServices.SiteRecovery2\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices.WorkloadBackup\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.RecoveryServices.WorkloadBackup\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices.WorkloadBackup.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.RecoveryServices.WorkloadBackup.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.AntimalwareSignature\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.AntimalwareSignature\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.AntimalwareSignature.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.AntimalwareSignature.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.Dsms\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.Dsms\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.Dsms.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.Dsms.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.LinuxAttestation\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.LinuxAttestation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.LinuxTestAttestation\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.LinuxTestAttestation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.Monitoring\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.Monitoring\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.Monitoring.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.Monitoring.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.Monitoring.Testing\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.Monitoring.Testing\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.TestWindowsAttestation\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.TestWindowsAttestation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.WindowsAttestation\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.WindowsAttestation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.WinTestAttestation\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.WinTestAttestation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Sentinel.DnsExtension.Dev\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Sentinel.DnsExtension.Dev\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.ServiceFabric.MC\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.ServiceFabric.MC\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.ServiceFabric.MC.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.ServiceFabric.MC.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.SiteRecovery.Stage\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.SiteRecovery.Stage\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.SiteRecovery.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.SiteRecovery.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.SiteRecovery2.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.SiteRecovery2.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Test.Identity\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Test.Identity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WindowsFabric.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WindowsFabric.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.ReleasePipeTest\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.ReleasePipeTest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.ReleasePipeTest.INT\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.ReleasePipeTest.INT\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.ReleasePipeTest.TEST\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.ReleasePipeTest.TEST\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test1\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test2\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test2\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test3\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test3\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test4\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test4\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test5\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test5\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test5.INT\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test5.INT\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test5.TEST\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test5.TEST\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.VincentTest\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.VincentTest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.VincentTest2\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.VincentTest2\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.VincentTest3\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.VincentTest3\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.VincentTest4\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.VincentTest4\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.TestTest\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.TestTest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.TestTest.INT\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.TestTest.INT\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.TestTest.TEST\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.TestTest.TEST\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Windows.ReleasePipeTest.INT\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Windows.ReleasePipeTest.INT\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Windows.ReleasePipeTest.TEST\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Windows.ReleasePipeTest.TEST\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoring\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoring.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoringTest\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoringTest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureData\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureData\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureData.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureData.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.Canary\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights.Canary\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.Corp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights.Corp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.Linux.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights.Linux.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.LinuxTest\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights.LinuxTest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.Meya0206\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights.Meya0206\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.MeyaCorp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights.MeyaCorp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.Testing\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights.Testing\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureSecurity.JITAccess\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureSecurity.JITAccess\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.CloudBackup.Workload.Extension\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.CloudBackup.Workload.Extension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.CloudBackup.Workload.Extension.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.CloudBackup.Workload.Extension.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Compute\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Compute.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Compute.TestSar\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute.TestSar\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.CPlat.Core\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.CPlat.Core\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.CPlat.Core.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.CPlat.Core.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Dcsswe.Extensions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Dcsswe.Extensions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.EnterpriseCloud.Monitoring\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.EnterpriseCloud.Monitoring.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.EnterpriseCloud.Monitoring.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Golive.Extensions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Golive.Extensions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.GuestConfig.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.GuestConfig.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.GuestConfiguration\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.GuestConfiguration\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.GuestConfiguration.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.GuestConfiguration.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.GuestConfiguration.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.GuestConfiguration.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.HpcCompute\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.HpcCompute\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.HpcCompute.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.HpcCompute.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.HpcPack\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.HpcPack\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Interceptor\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Interceptor\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.M365\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.M365\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.M365SecurityConfiguration.Kevlar.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.M365SecurityConfiguration.Kevlar.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.ManagedIdentity\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.ManagedIdentity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.ManagedServices\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.ManagedServices\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.ManagedServices.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.ManagedServices.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.MonitoringAgent.Extension\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.MonitoringAgent.Extension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Network\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Network\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.OSTCExtensions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.OSTCExtensions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.OSTCExtensions.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.OSTCExtensions.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.OSTCExtensions.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.OSTCExtensions.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.OSTCExtensions.Testing\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.OSTCExtensions.Testing\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Powershell\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Powershell\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Powershell.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Powershell.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Powershell.Test01\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Powershell.Test01\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.SecurityManagement.Kevlar\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.SecurityManagement.Kevlar\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Sentinel.AzureMonitorAgentExtensions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Sentinel.AzureMonitorAgentExtensions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.SoftwareUpdateManagement\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.SoftwareUpdateManagement\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.SoftwareUpdateManagement.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.SoftwareUpdateManagement.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.SqlServer.Managability.IaaS.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.SqlServer.Managability.IaaS.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.SqlServer.Management\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.SqlServer.Management\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.SqlServer.Management.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.SqlServer.Management.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.SystemCenter\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.SystemCenter\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.SystemCenter.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.SystemCenter.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Test.Azure.Workloads\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Test.Azure.Workloads\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.TestSqlServer.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.TestSqlServer.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.ETWTraceListenerService\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.Azure.ETWTraceListenerService\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.RemoteDebug\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.Azure.RemoteDebug\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.RemoteDebug.Json\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.Azure.RemoteDebug.Json\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.ServiceProfiler\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.ServiceProfiler\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.Services\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.Services\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.WindowsAzure.DevTest\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.WindowsAzure.DevTest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.WindowsAzure.DevTest.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.WindowsAzure.DevTest.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.WindowsAzure.RemoteDebug\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.WindowsAzure.RemoteDebug\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.WindowsAzure.Test.RemoteDebug\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.WindowsAzure.Test.RemoteDebug\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Windows.Azure.Extensions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Windows.Azure.Extensions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Windows.AzureRemoteApp.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Windows.AzureRemoteApp.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Windows.RemoteDesktop\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Windows.RemoteDesktop\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.WindowsAdminCenter\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.WindowsAdminCenter\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.WindowsAdminCenter.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.WindowsAdminCenter.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.WindowsAzure.Compute\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.WindowsAzure.Compute\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.WindowsAzure.Compute.test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.WindowsAzure.Compute.test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.WVD\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.WVD\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoftagciuk\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoftagciuk\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoftazurecituswarp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoftazurecituswarp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftAzureSiteRecovery\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftAzureSiteRecovery\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftBizTalkServer\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftBizTalkServer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftCBLMariner\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftCBLMariner\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoftcmotest\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoftcmotest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoftcorporation1602274591143\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoftcorporation1602274591143\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoftcorporation1620407702632\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoftcorporation1620407702632\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftDynamicsAX\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftDynamicsAX\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftDynamicsGP\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftDynamicsGP\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftDynamicsNAV\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftDynamicsNAV\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoftfarmbeats\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoftfarmbeats\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftHybridCloudStorage\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftHybridCloudStorage\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftOSTC\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftOSTC\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftPowerBI\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftPowerBI\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftRServer\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftRServer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftSharePoint\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftSharePoint\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftSQLServer\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftSQLServer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftTestLinuxPPS\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftTestLinuxPPS\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftVisualStudio\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftVisualStudio\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftWindowsDesktop\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsDesktop\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftWindowsServer\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsServer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftWindowsServerHPCPack\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsServerHPCPack\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft_iot_edge\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft_iot_edge\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft_javaeeonazure_test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft_javaeeonazure_test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microstrategy\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microstrategy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"midasolutions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/midasolutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"middleware\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/middleware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"midfin\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/midfin\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"midvision\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/midvision\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mihupcommunicationspvtltd1599046998010\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mihupcommunicationspvtltd1599046998010\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mindcti\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mindcti\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"minio\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/minio\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"miraclelinux\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/miraclelinux\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"miracl_linux\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/miracl_linux\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"miri-infotech-pvt-ltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/miri-infotech-pvt-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mistio1601460379393\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mistio1601460379393\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mobilab\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mobilab\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"modern-systems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/modern-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"modexblockchaindatabase\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/modexblockchaindatabase\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"monetdbsolutions1611751313758\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/monetdbsolutions1611751313758\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"monitorapp1579029852605\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/monitorapp1579029852605\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"monitorcomputersystemsltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/monitorcomputersystemsltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"moogsoft\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/moogsoft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"morpheus-data\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/morpheus-data\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"moviemasher\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/moviemasher\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mriisoftllc1579457820427\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mriisoftllc1579457820427\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"msopentech\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/msopentech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mtnfog\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mtnfog\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"multima1643619641681\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/multima1643619641681\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"multisoft-ab\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/multisoft-ab\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mvp-systems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mvp-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mwg_azure\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mwg_azure\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mxhero\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mxhero\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"my-com\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/my-com\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"myarchinc1614657280935\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/myarchinc1614657280935\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"narrativescience\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/narrativescience\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nasuni\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nasuni\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nasunicorporation\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nasunicorporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"navicloudrsoftwarepteltd1601967280369\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/navicloudrsoftwarepteltd1601967280369\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ncache\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ncache\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ncbi\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ncbi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ncomputingglobalinc1604353053068\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ncomputingglobalinc1604353053068\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ndl\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ndl\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ndstriyelotomasyonsistemlerisanvetica1623147454601\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ndstriyelotomasyonsistemlerisanvetica1623147454601\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nebbiolo-technologies-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nebbiolo-technologies-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nec-technologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nec-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nefelinetworks1591201080882\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nefelinetworks1591201080882\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"neo4j\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/neo4j\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"neos\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/neos\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"neowaybusinesssolutions-4956350\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/neowaybusinesssolutions-4956350\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netapp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netapp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netatwork\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netatwork\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netfoundryinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netfoundryinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netgate\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netgate\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netikus-net-ltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netikus-net-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netiq\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netiq\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netka\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netka\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netmail\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netmail\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netscout\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netscout\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netspi\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netspi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netsweeper\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netsweeper\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"networksexchangetechnologyltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/networksexchangetechnologyltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netwrix\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netwrix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netx\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netx\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"neusoft-neteye\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/neusoft-neteye\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"newegginc1646343565758\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/newegginc1646343565758\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"newnetcommunicationtechnologies1589991852134\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/newnetcommunicationtechnologies1589991852134\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"NewRelic.Infrastructure.Extensions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/NewRelic.Infrastructure.Extensions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"newtglobalconsultingllc1581492268566\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/newtglobalconsultingllc1581492268566\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nextronic-5290868\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nextronic-5290868\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nginxinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nginxinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nice-it-management-solutions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nice-it-management-solutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nicepeopleatwork\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nicepeopleatwork\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nilespartnersinc1617691698386\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nilespartnersinc1617691698386\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"niolabs-5229713\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/niolabs-5229713\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nirvatosoftwarepvtltd1601368706606\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nirvatosoftwarepvtltd1601368706606\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nodejsapi\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nodejsapi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"noianetworklimited1584098036197\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/noianetworklimited1584098036197\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nokiaofamericacorporation1591716055441\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nokiaofamericacorporation1591716055441\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"noobaa\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/noobaa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"norcominformationtechnologygmbhcokgaa\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/norcominformationtechnologygmbhcokgaa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"noricumcloudsolutions1600524477681\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/noricumcloudsolutions1600524477681\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"norsync\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/norsync\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"northbridge-secure\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/northbridge-secure\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nozominetworks1582208017986\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nozominetworks1582208017986\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nri\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nri\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ntegralinc1586961136942\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ntegralinc1586961136942\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ntt-data-intellilink-corporation\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ntt-data-intellilink-corporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nttdata\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nttdata\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nttltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nttltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nuco-networks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nuco-networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"numbersbelieve\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/numbersbelieve\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"numtrallcpublisher\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/numtrallcpublisher\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nuxeo\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nuxeo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nvidia\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nvidia\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"o2mc-real-time-data-platform\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/o2mc-real-time-data-platform\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"objectivity-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/objectivity-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"objectivity1595351622261\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/objectivity1595351622261\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"oceanblue-cloud\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/oceanblue-cloud\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"OctopusDeploy.Tentacle\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/OctopusDeploy.Tentacle\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"odix\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/odix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"odysseuscomputationalsolutions1630242118741\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/odysseuscomputationalsolutions1630242118741\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"odysseyconsultantsltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/odysseyconsultantsltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"officeatwork-ag\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/officeatwork-ag\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"omega-software\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/omega-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"onapsis\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/onapsis\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"oncore_cloud_services-4944214\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/oncore_cloud_services-4944214\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"onexgroup\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/onexgroup\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"onspecta\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/onspecta\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ontology\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ontology\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"onyx-point-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/onyx-point-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"op5\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/op5\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"open-connect-systems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/open-connect-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"opencell\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/opencell\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"openlinkswcom-pago\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/openlinkswcom-pago\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"OpenLogic\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/OpenLogic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"openrefactoryinc1620140917523\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/openrefactoryinc1620140917523\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"openshotstudiosllc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/openshotstudiosllc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"opentext\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/opentext\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"openvpn\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/openvpn\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"opslogix\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/opslogix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"opswatinc1619007967290\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/opswatinc1619007967290\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"optimitiveslu1618320281443\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/optimitiveslu1618320281443\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"option3\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/option3\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Oracle\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Oracle\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"oraylis\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/oraylis\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"oraylisbi\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/oraylisbi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"orbs-network\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/orbs-network\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"oriana\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/oriana\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"orientdb\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/orientdb\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"oroinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/oroinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"osirium-ltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/osirium-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"osisoft\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/osisoft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"osnexus\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/osnexus\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"outpost24\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/outpost24\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"outsystems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/outsystems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ovaledge1618392232783\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ovaledge1618392232783\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pachyderminc1585170006545\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pachyderminc1585170006545\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pacteratechnologiesinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pacteratechnologiesinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"paladionnetworkspvtltd1606120508449\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/paladionnetworkspvtltd1606120508449\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"paloaltonetworks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/paloaltonetworks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"panopta\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/panopta\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"panorama-necto\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/panorama-necto\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"panzura-file-system\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/panzura-file-system\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"parabole\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/parabole\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"paralaxiomtechnologiesprivatelimited1596433357886\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/paralaxiomtechnologiesprivatelimited1596433357886\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"parallels\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/parallels\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"parasoft\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/parasoft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"parkersoftwarelimited1609786657569\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/parkersoftwarelimited1609786657569\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"parsec-for-teams\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/parsec-for-teams\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pasifikciptamandiri\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pasifikciptamandiri\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"passlogy\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/passlogy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"paxata\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/paxata\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pcman\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pcman\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"peer-software-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/peer-software-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"penta-security-systems-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/penta-security-systems-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"percona\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/percona\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"perforce\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/perforce\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"periscope-tech-4791746\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/periscope-tech-4791746\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"piolinkinc1582849368309\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/piolinkinc1582849368309\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pivotal\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pivotal\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pixitmedia1591611150480\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pixitmedia1591611150480\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"plesk\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/plesk\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pmsoftwareinternational1603102514882\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pmsoftwareinternational1603102514882\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pnop\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pnop\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"polarityioinc1628691850891\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/polarityioinc1628691850891\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"portalarchitects\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/portalarchitects\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"portsysinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/portsysinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"postgres-pro\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/postgres-pro\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"powerbireach\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/powerbireach\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"prakshepprivatelimited1619949827900\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/prakshepprivatelimited1619949827900\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"prasselsrl1645470739547\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/prasselsrl1645470739547\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"prestashop\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/prestashop\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"prestige_informatique-1090178\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/prestige_informatique-1090178\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"prime-strategy\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/prime-strategy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"primekey\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/primekey\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"primestrategynewyorkinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/primestrategynewyorkinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pro-vision\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pro-vision\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"probityinc1581611299345\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/probityinc1581611299345\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"process-one\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/process-one\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"processgold\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/processgold\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"procomputers\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/procomputers\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"procomputerssrl1594239153814\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/procomputerssrl1594239153814\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"profecia\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/profecia\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Profiler.AgentOrchestrationRefactor.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Profiler.AgentOrchestrationRefactor.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Profiler.Master.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Profiler.Master.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"profisee\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/profisee\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"progelspa\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/progelspa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"progresssoftwarecorporation\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/progresssoftwarecorporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"proliongmbh1628175060372\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/proliongmbh1628175060372\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"protegrityusainc1627404648458\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/protegrityusainc1627404648458\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"protiviti\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/protiviti\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"proventeq\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/proventeq\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ptc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ptc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ptsecurity\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ptsecurity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pulse-secure\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pulse-secure\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pulsesecuretechnologies1638179500151\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pulsesecuretechnologies1638179500151\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"puppet\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/puppet\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"puppeteersoy1601024480557\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/puppeteersoy1601024480557\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"PuppetLabs\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/PuppetLabs\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"PuppetLabs.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/PuppetLabs.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"purestorageinc1578960262525\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/purestorageinc1578960262525\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pydio\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pydio\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pyramidanalytics\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pyramidanalytics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"qlik\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/qlik\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"qnapsystemsinc1601352084032\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/qnapsystemsinc1601352084032\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"qore-technologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/qore-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"qs-solutions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/qs-solutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Qualys\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Qualys\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Qualys.LinuxAgent.GrayLabel\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Qualys.LinuxAgent.GrayLabel\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Qualys.WindowsAgent.GrayLabel\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Qualys.WindowsAgent.GrayLabel\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"qualysguard\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/qualysguard\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"quasardb\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/quasardb\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"qubole-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/qubole-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"quest\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/quest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"racknap\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/racknap\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rackwareinc1619403669255\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rackwareinc1619403669255\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"radiant-logic\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/radiant-logic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"radware\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/radware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"raincode\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/raincode\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rancher\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rancher\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rapid7\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rapid7\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Rapid7.InsightPlatform\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Rapid7.InsightPlatform\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rapidminer\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rapidminer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"raynetgmbh\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/raynetgmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"readymind\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/readymind\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"realm\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/realm\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"reblaze\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/reblaze\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"RedHat\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/RedHat\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"redhat-rhel\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/redhat-rhel\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"redpoint-global\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/redpoint-global\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"refactr\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/refactr\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"refinitiv\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/refinitiv\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"refinitiv-4807503\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/refinitiv-4807503\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"relevance-lab\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/relevance-lab\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"remotelearner\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/remotelearner\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"res\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/res\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"resco\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/resco\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"researchgraphptyltd1598252602128\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/researchgraphptyltd1598252602128\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"resemblesystems1582780358300\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/resemblesystems1582780358300\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"responder-corp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/responder-corp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"revolution-analytics\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/revolution-analytics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rhcsolutions1586957910818\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rhcsolutions1586957910818\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ribboncommunications\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ribboncommunications\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"RightScaleLinux\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/RightScaleLinux\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"RightScaleWindowsServer\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/RightScaleWindowsServer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rimo3\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rimo3\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ringsoftwareresearchanddevelopmentinc1578946072257\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ringsoftwareresearchanddevelopmentinc1578946072257\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"riverbed\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/riverbed\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"RiverbedTechnology\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/RiverbedTechnology\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rmgtechnologiesinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rmgtechnologiesinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rocketml\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rocketml\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rocketsoftware\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rocketsoftware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rohdeschwarzcybersecuritygmbh\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rohdeschwarzcybersecuritygmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rohdeschwarzcybersecuritysas\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rohdeschwarzcybersecuritysas\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"roktech\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/roktech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rsa-security-llc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rsa-security-llc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rsk-labs\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rsk-labs\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rstudio-5237862\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rstudio-5237862\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rtts\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rtts\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rubrik-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rubrik-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"runecastsolutionslimited1614186396822\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/runecastsolutionslimited1614186396822\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"s2ix\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/s2ix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"saama\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/saama\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"saasame-limited\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/saasame-limited\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"safesoftwareinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/safesoftwareinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"safeticatechnologiessro\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/safeticatechnologiessro\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"safetica_technologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/safetica_technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"safetoopen1585013318137\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/safetoopen1585013318137\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"saltsecurity1583264186232\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/saltsecurity1583264186232\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"saltsecurity1583264669848\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/saltsecurity1583264669848\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"saltstack\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/saltstack\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"samsung-sds\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/samsung-sds\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"samsungelectronics1632860607983\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/samsungelectronics1632860607983\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"samsungsds-cello\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/samsungsds-cello\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"samsungsds_sdbe\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/samsungsds_sdbe\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sandhatatechnologieslimited1615753438737\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sandhatatechnologieslimited1615753438737\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sap\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sap\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sapphiretechnologieslimited1611758579346\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sapphiretechnologieslimited1611758579346\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sas-institute-560503\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sas-institute-560503\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"scaidata\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/scaidata\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"scalearc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/scalearc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"scalegrid\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/scalegrid\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"scality\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/scality\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"schrockeninc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/schrockeninc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sci\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sci\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sciencelogicinc1622565452194\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sciencelogicinc1622565452194\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"scientiamobile\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/scientiamobile\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"scontainug1595751515785\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/scontainug1595751515785\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"scubaanalytics\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/scubaanalytics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"scylladb1631195365807\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/scylladb1631195365807\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"seaqserviciossas1579029207572\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/seaqserviciossas1579029207572\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"searchbloxsoftwareinc1594309037050\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/searchbloxsoftwareinc1594309037050\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"secureworks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/secureworks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"securityonionsolutions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/securityonionsolutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"securityonionsolutionsllc1624649205155\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/securityonionsolutionsllc1624649205155\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"securosis\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/securosis\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"seequentltd1585781751395\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/seequentltd1585781751395\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"semarchy\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/semarchy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"semperis\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/semperis\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"senhasegura\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/senhasegura\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"SentinelOne.LinuxExtension\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/SentinelOne.LinuxExtension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"SentinelOne.LinuxExtension.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/SentinelOne.LinuxExtension.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"SentinelOne.WindowsExtension\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/SentinelOne.WindowsExtension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"SentinelOne.WindowsExtension.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/SentinelOne.WindowsExtension.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sentriumsl\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sentriumsl\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sentry51llc1616686725591\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sentry51llc1616686725591\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sentryone\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sentryone\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sepiosystems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sepiosystems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"seppmailag\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/seppmailag\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"seraumo1620002807288\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/seraumo1620002807288\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"service-control-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/service-control-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sesamesoftwareinc1622125191447\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sesamesoftwareinc1622125191447\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"shadow-soft\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/shadow-soft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"shareshiftneeraj.test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/shareshiftneeraj.test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sightapps\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sightapps\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"signal-sciences\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/signal-sciences\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"silk\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/silk\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"silver-peak-systems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/silver-peak-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"simmachinesinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/simmachinesinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"simontelephonics\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/simontelephonics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"simpledatalabsinc1635791235920\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/simpledatalabsinc1635791235920\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"simplifierag\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/simplifierag\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"simpligov\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/simpligov\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sinefa\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sinefa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sinequa\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sinequa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sinequa1588262295885\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sinequa1588262295885\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"singapore-telecommunications-limited\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/singapore-telecommunications-limited\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sios_datakeeper\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sios_datakeeper\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"siportalinc1581539156321\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/siportalinc1581539156321\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sisenseltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sisenseltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Site24x7\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Site24x7\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sktelecom\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sktelecom\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"skyarc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/skyarc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"skyboxsecurity1585187406404\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/skyboxsecurity1585187406404\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"skylarkcloud\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/skylarkcloud\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"smartbearsoftware\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/smartbearsoftware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"smartmessage-autoflow\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/smartmessage-autoflow\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"snaplogic\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/snaplogic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"snapt-adc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/snapt-adc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"snips\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/snips\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"soasta\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/soasta\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"softnas\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/softnas\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"softwarecentralas1642687699196\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/softwarecentralas1642687699196\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"softwarehut\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/softwarehut\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"softwebsolutions-4518310\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/softwebsolutions-4518310\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"soha\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/soha\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"solanolabs\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/solanolabs\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"solar-security\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/solar-security\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"solarwinds\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/solarwinds\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"solvedevops1643693563360\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/solvedevops1643693563360\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sonicwall-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sonicwall-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sophos\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sophos\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sourcegearllc1616101262784\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sourcegearllc1616101262784\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"south-river-technologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/south-river-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"southrivertech1586314123192\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/southrivertech1586314123192\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"spacecurve\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/spacecurve\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"spaceliftinc1625499025476\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/spaceliftinc1625499025476\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"spagobi\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/spagobi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sparklinglogic\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sparklinglogic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"spectralcorelimited1619779004178\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/spectralcorelimited1619779004178\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"spektra\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/spektra\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sphere3d\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sphere3d\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"spideroakinc1588278690933\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/spideroakinc1588278690933\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"spirentcommunications1594084187199\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/spirentcommunications1594084187199\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"splunk\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/splunk\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sproutenetworks1593456311717\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sproutenetworks1593456311717\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sqlstream\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sqlstream\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"squadratechnologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/squadratechnologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"squaredup\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/squaredup\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"src-solution\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/src-solution\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ssh2appsltd1621588462715\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ssh2appsltd1621588462715\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stackato-platform-as-a-service\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stackato-platform-as-a-service\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Stackify.LinuxAgent.Extension\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Stackify.LinuxAgent.Extension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stackstorm\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stackstorm\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"startekfingerprintmatch\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/startekfingerprintmatch\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"startisolucoesemtecnologialtda1635263523201\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/startisolucoesemtecnologialtda1635263523201\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"starwind\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/starwind\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"StatusMonitor2.Diagnostics.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/StatusMonitor2.Diagnostics.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"StatusReport.Diagnostics.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/StatusReport.Diagnostics.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stealthbits\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stealthbits\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"steelhive\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/steelhive\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stonebondtechnologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stonebondtechnologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stonefly\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stonefly\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"storage_made_easy\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/storage_made_easy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stormshield\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stormshield\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"storone1594045543980\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/storone1594045543980\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"storreduce\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/storreduce\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"storwarespzoo1611743234900\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/storwarespzoo1611743234900\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"strangebee1595948424730\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/strangebee1595948424730\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"strataidentity1608323708170\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/strataidentity1608323708170\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stratis-group-ltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stratis-group-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stratodesk1611152769936\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stratodesk1611152769936\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stratumn\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stratumn\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"streamsets\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/streamsets\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"striim\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/striim\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stromasys\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stromasys\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"strongboxitllc1594816423884\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/strongboxitllc1594816423884\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"su\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/su\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"subscription.test.krsh\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/subscription.test.krsh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sumologic\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sumologic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sunatogmbh\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sunatogmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sunday\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sunday\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"SUSE\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/SUSE\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"SUSE.AzureHybridBenefit\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/SUSE.AzureHybridBenefit\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"swoopanalytics\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/swoopanalytics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sycom-technologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sycom-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sycompatechnologycompanyinc1588192103892\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sycompatechnologycompanyinc1588192103892\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.CloudWorkloadProtection\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.CloudWorkloadProtection\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.CloudWorkloadProtection.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.CloudWorkloadProtection.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.CloudWorkloadProtection.TestOnStage\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.CloudWorkloadProtection.TestOnStage\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.QA\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.QA\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.staging\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.staging\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.test.ru2.latest\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.test.ru2.latest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.test.ru2final\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.test.ru2final\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.test.ru2latest1\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.test.ru2latest1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.test.ru4mp1\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.test.ru4mp1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.test.ru4mp1.latest\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.test.ru4mp1.latest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.test.ru4mp1final\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.test.ru4mp1final\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"symanteccorporation\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/symanteccorporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"symantectest1\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/symantectest1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"synack-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/synack-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"syncfusion\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/syncfusion\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"syncfusionbigdataplatfor\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/syncfusionbigdataplatfor\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"synechron-technologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/synechron-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"synergixinc1585256339250\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/synergixinc1585256339250\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"synnexcorp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/synnexcorp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"syscomcomputerengineeringco1583913200141\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/syscomcomputerengineeringco1583913200141\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"syte\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/syte\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tableau\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tableau\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tactic\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tactic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"talari-networks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/talari-networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"talena-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/talena-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"talend\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/talend\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"talon\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/talon\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tamrinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tamrinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"taniuminc1646329360287\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/taniuminc1646329360287\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"targit\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/targit\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tata_communications\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tata_communications\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tavanttechnologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tavanttechnologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tavendo\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tavendo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"te-systems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/te-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"techdivision\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/techdivision\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"techlatest\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/techlatest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"technicheltd1606969724100\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/technicheltd1606969724100\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tecknolab\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tecknolab\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"telepat\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/telepat\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"teloscorporation\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/teloscorporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tempered-networks-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tempered-networks-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tenable\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tenable\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tensormakecorpdbaoneclickai1608247756082\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tensormakecorpdbaoneclickai1608247756082\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tenthlineinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tenthlineinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"teradata\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/teradata\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Teradici\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Teradici\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"teramindinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/teramindinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.Gemalto.SafeNet.ProtectV\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.Gemalto.SafeNet.ProtectV\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.Gemalto.SafeNet.ProtectV.Azure\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.Gemalto.SafeNet.ProtectV.Azure\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.HP.AppDefender\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.HP.AppDefender\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.Microsoft.VisualStudio.Services\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.Microsoft.VisualStudio.Services\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.NJHP.AppDefender\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.NJHP.AppDefender\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.SqlServer.Managability\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.SqlServer.Managability\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.SqlServer.Management\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.SqlServer.Management\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.SqlServer.Management.corext\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.SqlServer.Management.corext\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test1.NJHP.AppDefender\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test1.NJHP.AppDefender\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test3.Microsoft.VisualStudio.Services\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test3.Microsoft.VisualStudio.Services\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"testable1603721901088\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/testable1603721901088\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"testpro\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/testpro\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"test_test_mix3pptest0011614206850774\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/test_test_mix3pptest0011614206850774\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"test_test_mneela1628617140187\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/test_test_mneela1628617140187\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"test_test_pmc2pc1\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/test_test_pmc2pc1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thales-vormetric\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thales-vormetric\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thalesdiscplusainc1596561677238\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thalesdiscplusainc1596561677238\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thedatavaluefactoryltd1589348815922\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thedatavaluefactoryltd1589348815922\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thefreebsdfoundation\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thefreebsdfoundation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thehdfgroup1616725197741\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thehdfgroup1616725197741\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"theumag1596442827072\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/theumag1596442827072\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"things-board\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/things-board\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thingscareinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thingscareinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thinprintgmbh\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thinprintgmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thorntechnologiesllc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thorntechnologiesllc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thoughtspot-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thoughtspot-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"threatintelligenceptyltd1586824172898\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/threatintelligenceptyltd1586824172898\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tibco-software\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tibco-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tidal-migrations\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tidal-migrations\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tidalmediainc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tidalmediainc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tig\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tig\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tiger-technology\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tiger-technology\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tigergraph\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tigergraph\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"timextender\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/timextender\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tmaxsoft\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tmaxsoft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tmaxsoft1608612658335\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tmaxsoft1608612658335\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tomsawyersoftwarecorp1613579206342\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tomsawyersoftwarecorp1613579206342\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"topicus\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/topicus\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"torusware\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/torusware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"totemo\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/totemo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"townsend-security\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/townsend-security\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"transcendinformationinc1609918445926\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/transcendinformationinc1609918445926\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"transientxinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/transientxinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"transvault\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/transvault\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"trendmicro\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/trendmicro\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"TrendMicro.DeepSecurity.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/TrendMicro.DeepSecurity.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"TrendMicro.PortalProtect\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/TrendMicro.PortalProtect\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tresorit\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tresorit\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"trifacta\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/trifacta\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tripleblindinc1615730179432\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tripleblindinc1615730179432\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tripwire-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tripwire-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"truata1612259728221\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/truata1612259728221\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"truestack\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/truestack\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tryonsolutionsinc1596650621083\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tryonsolutionsinc1596650621083\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tsa-public-service\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tsa-public-service\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tunnelbiz\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tunnelbiz\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"turbonet\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/turbonet\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"turbonet1581982683964\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/turbonet1581982683964\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"twistlock\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/twistlock\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"typesafe\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/typesafe\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ubeeko\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ubeeko\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ubercloud\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ubercloud\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"uipath-5054924\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/uipath-5054924\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ulex\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ulex\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"unifi-software\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/unifi-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"unifiedstreaming1598872291606\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/unifiedstreaming1598872291606\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"uniprint-net\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/uniprint-net\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"unitrends\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/unitrends\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"unnisoft\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/unnisoft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"unravel-data\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/unravel-data\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"unscramblsingaporepteltd-4999260\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/unscramblsingaporepteltd-4999260\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"untangle\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/untangle\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"upsolver1594188634150\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/upsolver1594188634150\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"usp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/usp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"valohai\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/valohai\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"valtix\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/valtix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"varmournetworks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/varmournetworks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"varnish\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/varnish\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vastdata1650451243415\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vastdata1650451243415\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vatacommunicationsinc1581644208717\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vatacommunicationsinc1581644208717\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vaultive-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vaultive-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vbot\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vbot\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vcinityinc1587684340545\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vcinityinc1587684340545\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vectraaiinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vectraaiinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"veeam\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/veeam\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"velocitydb-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/velocitydb-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"velocloud\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/velocloud\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vembutechnologiespvtltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vembutechnologiespvtltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vemn\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vemn\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"veritas\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/veritas\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"versanetworks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/versanetworks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"versasec\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/versasec\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vidispine\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vidispine\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vidizmo\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vidizmo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vigyanlabs-innovations-pvt-ltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vigyanlabs-innovations-pvt-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vigyanlabsinc1581413676614\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vigyanlabsinc1581413676614\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"viptela\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/viptela\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vircom\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vircom\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"virtamovecorp1615909247913\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/virtamovecorp1615909247913\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"virtualpulsesro1607008728942\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/virtualpulsesro1607008728942\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"virtuozzointernationalgmbh1626704951469\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/virtuozzointernationalgmbh1626704951469\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"visualknowledgeshare1591795776234\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/visualknowledgeshare1591795776234\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"visualsoft-center\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/visualsoft-center\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vizixiotplatformretail001\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vizixiotplatformretail001\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vmlabinc1613642184700\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vmlabinc1613642184700\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vmturbo\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vmturbo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vmware-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vmware-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vnomicinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vnomicinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"voiceelements\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/voiceelements\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"voleatechgmbh1636966911943\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/voleatechgmbh1636966911943\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"volterraedgeservices\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/volterraedgeservices\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Vormetric\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Vormetric\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vscconsultingptyltd1608535888097\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vscconsultingptyltd1608535888097\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vte\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vte\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vu-llc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vu-llc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vunetsystemsprivatelimited1646716402131\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vunetsystemsprivatelimited1646716402131\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vyulabsinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vyulabsinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"WAD2AI.Diagnostics.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/WAD2AI.Diagnostics.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"WAD2EventHub.Diagnostics.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/WAD2EventHub.Diagnostics.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wallarm\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wallarm\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wallix\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wallix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wandisco\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wandisco\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wanos\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wanos\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wanpath-dba-myworkdrive\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wanpath-dba-myworkdrive\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wardy-it-solutions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wardy-it-solutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"warewolf-esb\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/warewolf-esb\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"watchguard-technologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/watchguard-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"webaloinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/webaloinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"websense-apmailpe\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/websense-apmailpe\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"websoft9inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/websoft9inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wedoitllc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wedoitllc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"westernoceansoftwaresprivatelimited\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/westernoceansoftwaresprivatelimited\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wherescapesoftware\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wherescapesoftware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"winmagic_securedoc_cloudvm\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/winmagic_securedoc_cloudvm\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wintellisys-inc-4561600\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wintellisys-inc-4561600\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"witfooinc1590167223060\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/witfooinc1590167223060\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wmspanel\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wmspanel\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wood1595864497589\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wood1595864497589\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"workshare-technology\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/workshare-technology\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"world-programming\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/world-programming\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"worxogo\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/worxogo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wowza\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wowza\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"xcontentptyltd-1329748\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/xcontentptyltd-1329748\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"xendata-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/xendata-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"xfinityinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/xfinityinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"xilinx\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/xilinx\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"xoriantcorporationazxteam1\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/xoriantcorporationazxteam1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"xoriantsolutionspvtltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/xoriantsolutionspvtltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"xtremedata\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/xtremedata\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"xyzrd-group-ou\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/xyzrd-group-ou\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"yaseensmarket1645449809728\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/yaseensmarket1645449809728\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"yellowfin\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/yellowfin\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"yellowfininternationalptyltd1616363974066\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/yellowfininternationalptyltd1616363974066\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"yokogawarentalleasecorporation\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/yokogawarentalleasecorporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"your-shop-online\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/your-shop-online\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"z1\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/z1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"z4it-aps\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/z4it-aps\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zabbix\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zabbix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zend\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zend\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zenterasystemsinc1605292453288\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zenterasystemsinc1605292453288\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zerodown_software\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zerodown_software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zerto\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zerto\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zettalane_systems-5254599\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zettalane_systems-5254599\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zevenet\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zevenet\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zilliz\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zilliz\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zoomdata\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zoomdata\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zscaler\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zscaler\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zscaler1579058425289\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zscaler1579058425289\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zultysinc1596831546163\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zultysinc1596831546163\"\r\n }\r\n]", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/southeastasia/operations/b08722e4-015e-4dea-b804-3b13214a1f9b?p=34dc709c-01b2-42c4-84a2-256a9734610d&api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2IwODcyMmU0LTAxNWUtNGRlYS1iODA0LTNiMTMyMTRhMWY5Yj9wPTM0ZGM3MDljLTAxYjItNDJjNC04NGEyLTI1NmE5NzM0NjEwZCZhcGktdmVyc2lvbj0yMDIxLTExLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Compute/locations/southeastasia/publishers/Microsoft.Compute/artifacttypes/vmextension/types?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9wdWJsaXNoZXJzL01pY3Jvc29mdC5Db21wdXRlL2FydGlmYWN0dHlwZXMvdm1leHRlbnNpb24vdHlwZXM/YXBpLXZlcnNpb249MjAyMS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2de24e7a-076f-46b1-a4ca-26c0ca293cb2" + "9562aeca-1534-4c2b-b00b-4c9e67a988c6" + ], + "Accept-Language": [ + "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ] }, "ResponseHeaders": { @@ -2119,35 +2125,38 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperation3Min;14995,Microsoft.Compute/GetOperation30Min;29990" + "Microsoft.Compute/ListVMExtensionTypes3Min;17999,Microsoft.Compute/ListVMExtensionTypes30Min;22499" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "1f3ad383-bb66-4279-b2a8-fbbcd093a7e3_132836337789816871" + ], "x-ms-request-id": [ - "3e4c99c3-e19e-4d0f-90b9-bac4b5d2ce85" + "ae83ac07-725e-47cf-a316-d8d4ab35a603" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11976" ], "x-ms-correlation-request-id": [ - "7c7efdab-5726-4e39-881c-4ae8af507c6e" + "bcccdf1d-82e8-4298-b8c0-501e9845a825" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T215432Z:7c7efdab-5726-4e39-881c-4ae8af507c6e" + "WESTINDIA:20220517T034818Z:bcccdf1d-82e8-4298-b8c0-501e9845a825" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 21:54:31 GMT" + "Tue, 17 May 2022 03:48:17 GMT" ], "Content-Length": [ - "134" + "1089" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2156,23 +2165,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-02-23T16:50:57.1792364-05:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b08722e4-015e-4dea-b804-3b13214a1f9b\"\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"BGInfo\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"CustomScriptExtension\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"JsonADDomainExtension\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/JsonADDomainExtension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"VMAccessAgent\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/VMAccessAgent\"\r\n }\r\n]", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/southeastasia/operations/b08722e4-015e-4dea-b804-3b13214a1f9b?p=34dc709c-01b2-42c4-84a2-256a9734610d&api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2IwODcyMmU0LTAxNWUtNGRlYS1iODA0LTNiMTMyMTRhMWY5Yj9wPTM0ZGM3MDljLTAxYjItNDJjNC04NGEyLTI1NmE5NzM0NjEwZCZhcGktdmVyc2lvbj0yMDIxLTExLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Compute/locations/southeastasia/publishers/Microsoft.Compute/artifacttypes/vmextension/types/BGInfo/versions?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9wdWJsaXNoZXJzL01pY3Jvc29mdC5Db21wdXRlL2FydGlmYWN0dHlwZXMvdm1leHRlbnNpb24vdHlwZXMvQkdJbmZvL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMjEtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2de24e7a-076f-46b1-a4ca-26c0ca293cb2" + "9562aeca-1534-4c2b-b00b-4c9e67a988c6" + ], + "Accept-Language": [ + "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ] }, "ResponseHeaders": { @@ -2183,35 +2195,38 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperation3Min;14994,Microsoft.Compute/GetOperation30Min;29988" + "Microsoft.Compute/ListVMExtensions3Min;9999,Microsoft.Compute/ListVMExtensions30Min;21999" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "1f3ad383-bb66-4279-b2a8-fbbcd093a7e3_132836337789816871" + ], "x-ms-request-id": [ - "75508b74-b3bb-40da-883e-7c87d01fcec4" + "e021dfce-d023-40db-a23a-f2a4e0e25136" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11975" ], "x-ms-correlation-request-id": [ - "cbb70d30-810c-443e-b19d-f703f0fde164" + "b6ced342-6712-462b-937c-6bdcf47e9262" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T215522Z:cbb70d30-810c-443e-b19d-f703f0fde164" + "WESTINDIA:20220517T034818Z:b6ced342-6712-462b-937c-6bdcf47e9262" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 21:55:22 GMT" + "Tue, 17 May 2022 03:48:17 GMT" ], "Content-Length": [ - "184" + "1856" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2220,26 +2235,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-02-23T16:50:57.1792364-05:00\",\r\n \"endTime\": \"2022-02-23T16:55:06.9636327-05:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"b08722e4-015e-4dea-b804-3b13214a1f9b\"\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1.0\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo/Versions/1.0\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1.0.1\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo/Versions/1.0.1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1.1\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo/Versions/1.1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1.2\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo/Versions/1.2\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1.2.2\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo/Versions/1.2.2\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"2.1\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo/Versions/2.1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"2.2.2\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo/Versions/2.2.2\"\r\n }\r\n]", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/southeastasia/publishers?api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9wdWJsaXNoZXJzP2FwaS12ZXJzaW9uPTIwMjEtMTEtMDE=", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGae69e07b/providers/Microsoft.Compute/virtualMachines/PSTestVMae69e0/extensions/BGInfo?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYWU2OWUwN2IvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy9QU1Rlc3RWTWFlNjllMC9leHRlbnNpb25zL0JHSW5mbz9hcGktdmVyc2lvbj0yMDIxLTExLTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"BGInfo\",\r\n \"typeHandlerVersion\": \"2.2\",\r\n \"autoUpgradeMinorVersion\": true\r\n },\r\n \"location\": \"southeastasia\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "2de24e7a-076f-46b1-a4ca-26c0ca293cb2" + "9562aeca-1534-4c2b-b00b-4c9e67a988c6" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "193" ] }, "ResponseHeaders": { @@ -2249,36 +2270,42 @@ "Pragma": [ "no-cache" ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Compute/locations/southeastasia/operations/5744b3fe-64e7-476e-9ec7-c4f04dac2da4?p=e484ceca-6435-4a7f-b125-3d82e6b12014&api-version=2021-11-01" + ], + "Azure-AsyncNotification": [ + "Enabled" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/UpdateVM3Min;239,Microsoft.Compute/UpdateVM30Min;1199" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-served-by": [ - "8d76ef5d-2d17-4297-8566-4612360b9f5a_132792867042483732" - ], "x-ms-request-id": [ - "6ac77579-1aeb-4bc4-aeaa-6a9a62377993" + "5744b3fe-64e7-476e-9ec7-c4f04dac2da4" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1193" ], "x-ms-correlation-request-id": [ - "5839dc69-e112-4d98-a308-4c306f94f708" + "ad562a42-96c0-46f2-93f8-5cafcf53acf7" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T215526Z:5839dc69-e112-4d98-a308-4c306f94f708" + "WESTINDIA:20220517T034820Z:ad562a42-96c0-46f2-93f8-5cafcf53acf7" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 21:55:25 GMT" + "Tue, 17 May 2022 03:48:19 GMT" ], "Content-Length": [ - "420268" + "484" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2287,26 +2314,23 @@ "-1" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"128technology\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/128technology\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1580863854728\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1580863854728\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1583411303229\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1583411303229\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1583465680865\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1583465680865\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1585118004523\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1585118004523\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1597644262255\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1597644262255\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1598955805825\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1598955805825\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1601633765871\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1601633765871\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1602067018799\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1602067018799\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1604579683207\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1604579683207\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1615257339685\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1615257339685\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1615278064010\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1615278064010\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1615455873642\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1615455873642\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1624590941808\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1624590941808\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1e\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1e\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"2021ai\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/2021ai\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"247commercelimited1611063941652\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/247commercelimited1611063941652\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"3cx-pbx\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/3cx-pbx\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"42crunch1580391915541\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/42crunch1580391915541\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"4psa\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/4psa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"5nine-software-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/5nine-software-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"7isolutions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/7isolutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"a10networks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/a10networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"a10networks1596136698788\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/a10networks1596136698788\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"abiquo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/abiquo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"abzoobainc1598420455082\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/abzoobainc1598420455082\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"accedian\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/accedian\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"accelario1579101623356\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/accelario1579101623356\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"accellion\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/accellion\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"accessdata-group\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/accessdata-group\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"accops\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/accops\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aciworldwide\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aciworldwide\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Acronis\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Acronis\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Acronis.Backup\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Acronis.Backup\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"actian-corp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/actian-corp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"actian_matrix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/actian_matrix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"actifio\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/actifio\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"actiphy\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/actiphy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"actiphyinc1627974506603\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/actiphyinc1627974506603\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"activecountermeasuresinc1631039410073\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/activecountermeasuresinc1631039410073\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"activeeon\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/activeeon\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"activeops\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/activeops\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"adastracorporation-4028356\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/adastracorporation-4028356\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"adgs\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/adgs\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"advantech\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/advantech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"advantech-webaccess\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/advantech-webaccess\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"advantys\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/advantys\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aelf\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aelf\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aerospike\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aerospike\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"affinio\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/affinio\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"affirmednetworks1607630812999\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/affirmednetworks1607630812999\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ageniumscale1591804889317\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ageniumscale1591804889317\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aggregion-ltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aggregion-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"agiledialogssl1603791911858\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/agiledialogssl1603791911858\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"agolo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/agolo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ahnlabinc1584495174865\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ahnlabinc1584495174865\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ahnlabinc1584495467593\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ahnlabinc1584495467593\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"airalabrus\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/airalabrus\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aiscaler-cache-control-ddos-and-url-rewriting-\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aiscaler-cache-control-ddos-and-url-rewriting-\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aisundowninc1618516322959\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aisundowninc1618516322959\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"akamai-technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/akamai-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"akumina\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/akumina\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"akumo-software\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/akumo-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"al-tamamunitedtradingcontractingcompany\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/al-tamamunitedtradingcontractingcompany\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"alachisoft\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/alachisoft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"alertlogic\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/alertlogic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"AlertLogic.Extension\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/AlertLogic.Extension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"algolyticstechnologies1606475101268\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/algolyticstechnologies1606475101268\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"alicetrix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/alicetrix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"alienvault\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/alienvault\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"alldigital-brevity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/alldigital-brevity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"almalinux\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/almalinux\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"almalinuxosfoundation1628089859865\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/almalinuxosfoundation1628089859865\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"altair-engineering-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/altair-engineering-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"altamira-corporation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/altamira-corporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"alteryx\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/alteryx\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"altova\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/altova\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"amergint1593131356777\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/amergint1593131356777\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ansys\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ansys\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"antmedia\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/antmedia\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aod\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aod\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"apigee\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/apigee\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"appcara\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appcara\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"appcelerator\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appcelerator\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"appex-networks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appex-networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"appistry\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appistry\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"appiyo_technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appiyo_technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"appmint_inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appmint_inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"apps-4-rent\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/apps-4-rent\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"appscale-marketplace\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appscale-marketplace\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"appsurifyinc1606933045773\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appsurifyinc1606933045773\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aquaforest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aquaforest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aquantyinc1598537176913\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aquantyinc1598537176913\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aquaveollc1633710529908\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aquaveollc1633710529908\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"arabesque-group\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/arabesque-group\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"arangodb\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/arangodb\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aras\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aras\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"arcblock\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/arcblock\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"arcesb\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/arcesb\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"arcontechsolutionsprivatelimited1623841797810\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/arcontechsolutionsprivatelimited1623841797810\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"arcserveusallc-marketing\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/arcserveusallc-marketing\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"arista-networks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/arista-networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ariwontollc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ariwontollc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"array_networks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/array_networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"artificial-intelligence-techniques-sl\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/artificial-intelligence-techniques-sl\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"arubanetworks-4922182\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/arubanetworks-4922182\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"asdivertissementinc1617837708654\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/asdivertissementinc1617837708654\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"asigra\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/asigra\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aspentechnologyhq-1353108\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aspentechnologyhq-1353108\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"astadia-1148316\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/astadia-1148316\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"asterasoftware1581022936015\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/asterasoftware1581022936015\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"asyscosoftwarebv\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/asyscosoftwarebv\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ataccama\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ataccama\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"athinfosystems1641442221349\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/athinfosystems1641442221349\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"atlgaming\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/atlgaming\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"atmosera\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/atmosera\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"atomicorp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/atomicorp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"atomizedinc1587939464368\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/atomizedinc1587939464368\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"attunity_cloudbeam\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/attunity_cloudbeam\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"audiocodes\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/audiocodes\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"auraportal\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/auraportal\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"auriq-systems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/auriq-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"automateio1592914387888\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/automateio1592914387888\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"automationanywhere\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/automationanywhere\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"avanseus\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/avanseus\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"avepoint\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/avepoint\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aveva1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aveva1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"avi-networks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/avi-networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aviatrix-systems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aviatrix-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"awingu\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/awingu\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"axedrasag1590581171549\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/axedrasag1590581171549\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"axsguardablenv\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/axsguardablenv\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"axshco\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/axshco\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"axway\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/axway\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"axxana\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/axxana\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"azhpc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/azhpc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"azul\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/azul\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"azure-dockit\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/azure-dockit\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"azurecyclecloud\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/azurecyclecloud\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"AzureDatabricks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/AzureDatabricks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"azureopenshift\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/azureopenshift\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"AzureRT.PIR.Synthetics.ProdTest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/AzureRT.PIR.Synthetics.ProdTest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"AzureRT.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/AzureRT.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"azuretesting\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/azuretesting\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"azuretesting2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/azuretesting2\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"azuretesting3\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/azuretesting3\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"AzureTools1type\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/AzureTools1type\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"baas-techbureau\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/baas-techbureau\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"baffle-io\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/baffle-io\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"balabit\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/balabit\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"barracudanetworks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/barracudanetworks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"basho\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/basho\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"batch\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/batch\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bayware\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bayware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bdy\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bdy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"belindaczsro1588885355210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/belindaczsro1588885355210\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bellsoft1582871421940\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bellsoft1582871421940\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"betsol\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/betsol\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"beyondtrust\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/beyondtrust\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bi-builders-as\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bi-builders-as\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"big-id\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/big-id\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"biolibinc1622552350258\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/biolibinc1622552350258\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bissantechnology1583581147809\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bissantechnology1583581147809\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bitdefendercybersecurity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bitdefendercybersecurity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Bitnami\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Bitnami\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bizagi\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bizagi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bizaptyltd1626489237351\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bizaptyltd1626489237351\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bizdataloome\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bizdataloome\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"biztalk360\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/biztalk360\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"black-duck-software\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/black-duck-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"blackbird\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/blackbird\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"blackmagicdesignincorporated1596492193249\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/blackmagicdesignincorporated1596492193249\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"blk-technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/blk-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"blockapps\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/blockapps\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"blockchain-foundry\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/blockchain-foundry\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"blockstack\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/blockstack\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bloombase\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bloombase\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bluecat\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bluecat\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bluejeansnetwork1638333611902\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bluejeansnetwork1638333611902\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"blueprismlimited-4827145\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/blueprismlimited-4827145\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bluesyntaxconsulting1617654548594\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bluesyntaxconsulting1617654548594\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bluetalon\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bluetalon\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bmc.ctm\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bmc.ctm\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bmcctm.test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bmcctm.test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"boardpacpvtltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/boardpacpvtltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bocada\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bocada\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"boemskats\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/boemskats\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"botanalytics\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/botanalytics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bowspritconsultingopcprivatelimited1596291408582\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bowspritconsultingopcprivatelimited1596291408582\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bravura-software-llc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bravura-software-llc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Brianjac.Symantec.CloudWorkloadProtection\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Brianjac.Symantec.CloudWorkloadProtection\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bricatainc1584472632111\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bricatainc1584472632111\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bright-computing\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bright-computing\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"brightcomputing\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/brightcomputing\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"brocade_communications\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/brocade_communications\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"brutale\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/brutale\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bryte\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bryte\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bssw\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bssw\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bt-americas-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bt-americas-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"buddhalabs\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/buddhalabs\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cadosecurityltd1626856705534\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cadosecurityltd1626856705534\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"calculated_systems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/calculated_systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"caloudi_corp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/caloudi_corp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"canadiancentreforcybersecurity1610638436359\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/canadiancentreforcybersecurity1610638436359\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Canonical\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Canonical\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"canonical-test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/canonical-test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"carto\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/carto\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cask\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cask\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"castaigroupinc1595243474856\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/castaigroupinc1595243474856\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"catechnologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/catechnologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"catonetworksltd1641478570665\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/catonetworksltd1641478570665\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cautelalabs\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cautelalabs\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cavirin\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cavirin\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cayosoftinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cayosoftinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cdatasoftware\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cdatasoftware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cds\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cds\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"celum-gmbh\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/celum-gmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"center-for-internet-security-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/center-for-internet-security-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"centeritysystems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/centeritysystems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"centrixeltd1594135951373\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/centrixeltd1594135951373\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"centrocomputerspa1584528117084\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/centrocomputerspa1584528117084\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"certifiedsecuritysolutionsinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/certifiedsecuritysolutionsinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"certivox\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/certivox\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cfd-direct\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cfd-direct\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"chain\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/chain\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"checkpoint\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/checkpoint\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"chef-software\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/chef-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Chef.Bootstrap.WindowsAzure\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Chef.Bootstrap.WindowsAzure\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"chunghwatelecom1587573688842\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/chunghwatelecom1587573688842\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cinchy\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cinchy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cinegy-gmbh\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cinegy-gmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"circleci\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/circleci\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cires21\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cires21\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cirruswaveinc1579234787943\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cirruswaveinc1579234787943\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cisco\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cisco\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"citrix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/citrix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Citrix.ADC\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Citrix.ADC\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"clapsodeughaftungsbeschrnkt1626333173563\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/clapsodeughaftungsbeschrnkt1626333173563\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"clear-linux-project\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/clear-linux-project\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"clone-systems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/clone-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"clouber\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/clouber\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloud-checkr\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloud-checkr\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloud-cruiser\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloud-cruiser\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloud-infrastructure-services\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloud-infrastructure-services\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudaccelinc1628754426775\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudaccelinc1628754426775\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudbees\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudbees\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudbees-enterprise-jenkins\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudbees-enterprise-jenkins\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudbolt-software\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudbolt-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudboltsoftware1639523402532\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudboltsoftware1639523402532\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudboost\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudboost\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudcover\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudcover\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudenablers-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudenablers-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudentity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudentity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudera\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudera\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudflare\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudflare\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudhouse\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudhouse\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudinfo-4919088\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudinfo-4919088\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudknox\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudknox\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudlanes\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudlanes\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudlink\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudlink\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"CloudLinkEMC.SecureVM\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/CloudLinkEMC.SecureVM\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudmavensolutions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudmavensolutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudneeti\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudneeti\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudplan-gmbh\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudplan-gmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudsecurity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudsecurity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudsoft\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudsoft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudwhizsolutions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudwhizsolutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudwrxsconsultingltd1631029702055\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudwrxsconsultingltd1631029702055\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"clustrix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/clustrix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cncf-upstream\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cncf-upstream\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"codaintelligence1606495376525\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/codaintelligence1606495376525\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"codelathe\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/codelathe\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"codenvy\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/codenvy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"codetwo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/codetwo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cognexcorporation1613759804979\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cognexcorporation1613759804979\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cognitive-scale\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cognitive-scale\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cognizant\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cognizant\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cognosys\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cognosys\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cohesity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cohesity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cohesitydev1592001764720\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cohesitydev1592001764720\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cohesive\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cohesive\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"coin-sciences-ltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/coin-sciences-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"collabcloudlimited\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/collabcloudlimited\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"collibranv1619508098620\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/collibranv1619508098620\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"commscopeinc1632135151062\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/commscopeinc1632135151062\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"commvault\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/commvault\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"compellon\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/compellon\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"composable\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/composable\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"comunity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/comunity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"concentrationheatandmomentumlimited1616154387047\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/concentrationheatandmomentumlimited1616154387047\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Confer\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Confer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"confluentinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/confluentinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"conflux\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/conflux\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"connecting-software\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/connecting-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"consensys\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/consensys\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"containeraider\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/containeraider\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"contiamogmbh\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/contiamogmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"controlcase\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/controlcase\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"controlplane\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/controlplane\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"controlplanecorporation1609967567639\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/controlplanecorporation1609967567639\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"convertigo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/convertigo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"corda\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/corda\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"core-stack\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/core-stack\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"corent-technology-pvt\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/corent-technology-pvt\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"CoreOS\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/CoreOS\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"couchbase\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/couchbase\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cpanel\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cpanel\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"credativ\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/credativ\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cristiesoftwareltd1599488127561\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cristiesoftwareltd1599488127561\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"crunchyard\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/crunchyard\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"crunchyardltd1623835391104\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/crunchyardltd1623835391104\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cryptocom1585727786636\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cryptocom1585727786636\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cryptosense1605170011574\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cryptosense1605170011574\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cryptzone\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cryptzone\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ctm.bmc.com\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ctm.bmc.com\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cubebackup\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cubebackup\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cyberark\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cyberark\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cybernetica-as\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cybernetica-as\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cyxtera\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cyxtera\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"d4t4_solutions-1164305\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/d4t4_solutions-1164305\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"daceitdbasensetrafficpulse1579892024934\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/daceitdbasensetrafficpulse1579892024934\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"danielsol.AzureTools1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/danielsol.AzureTools1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Dans.Windows.App\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Dans.Windows.App\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Dans3.Windows.App\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Dans3.Windows.App\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dataart\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dataart\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"databricks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/databricks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datacore\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datacore\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Datadog.Agent\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Datadog.Agent\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datadynamicsinc1581991927942\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datadynamicsinc1581991927942\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dataguiseinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dataguiseinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dataiku\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dataiku\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datalayer\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datalayer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datanomers1584919038987\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datanomers1584919038987\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datanova\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datanova\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datapredsa\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datapredsa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dataroadtechnologiesllc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dataroadtechnologiesllc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datasciencedojo1586563145740\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datasciencedojo1586563145740\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datastax\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datastax\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datasunrise\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datasunrise\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datavirtualitygmbh\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datavirtualitygmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datometry\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datometry\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dbs-h\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dbs-h\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ddn-whamcloud-5345716\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ddn-whamcloud-5345716\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Debian\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Debian\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dece-4446019\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dece-4446019\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"decisosalesbv\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/decisosalesbv\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"deepcognitioninc1593512758156\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/deepcognitioninc1593512758156\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"deepsiginc1581610210151\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/deepsiginc1581610210151\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"deepsurfacesecurityinc1632943333445\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/deepsurfacesecurityinc1632943333445\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dellemc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dellemc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dell_software\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dell_software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"delphix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/delphix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"deltapathlimited1592886319362\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/deltapathlimited1592886319362\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"denodo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/denodo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"denyall\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/denyall\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"derdack\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/derdack\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"desktopstudioag1580294245574\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/desktopstudioag1580294245574\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"devfactory\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/devfactory\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"device42inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/device42inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"deviceauthorityinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/deviceauthorityinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"devolutionsinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/devolutionsinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"devopsgroup-uk\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/devopsgroup-uk\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"df-portal-user\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/df-portal-user\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dgsecure\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dgsecure\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Dh2ico\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Dh2ico\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dh2icompany\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dh2icompany\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dhi\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dhi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"diagramics\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/diagramics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dicomsystems1584107398321\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dicomsystems1584107398321\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"diehl-metering\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/diehl-metering\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"digisitesystems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/digisitesystems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"digitaldefenseinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/digitaldefenseinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"digitaloffice\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/digitaloffice\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"digitamizeinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/digitamizeinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"digitate\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/digitate\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"diladele\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/diladele\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dimensionalmechanics-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dimensionalmechanics-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"diqa\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/diqa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"diyatech\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/diyatech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"diyotta\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/diyotta\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"djiindustrialincus\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/djiindustrialincus\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"docker\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/docker\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dome9\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dome9\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dorabot\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dorabot\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dremiocorporation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dremiocorporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"drizti\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/drizti\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"drone\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/drone\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dsi\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dsi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dundas\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dundas\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dyadic_security\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dyadic_security\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dynatrace\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dynatrace\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dynatrace.ruxit\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dynatrace.ruxit\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"e-magicinc1587696283171\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/e-magicinc1587696283171\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"eastwind-networks-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/eastwind-networks-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"easysoftwaresro1593005637384\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/easysoftwaresro1593005637384\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ebesllc1637780200500\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ebesllc1637780200500\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ecessa\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ecessa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"edevtech\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/edevtech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"edgelesssystems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/edgelesssystems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"edgenetworks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/edgenetworks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"edispheresoftwareprivatelimited1606199736428\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/edispheresoftwareprivatelimited1606199736428\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"education4sight\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/education4sight\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"eecservicesfzllc1604836615706\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/eecservicesfzllc1604836615706\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"egnyte\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/egnyte\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"egress1589289169584\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/egress1589289169584\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"eikonasystemsgmbh1601729310063\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/eikonasystemsgmbh1601729310063\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Elastic\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Elastic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"elasticbox\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/elasticbox\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"elecard\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/elecard\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"electric-cloud\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/electric-cloud\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"elevateiot\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/elevateiot\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"eleven01\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/eleven01\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"elfiqnetworks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/elfiqnetworks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"emercoin\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/emercoin\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"energisme1601990637842\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/energisme1601990637842\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"enforongo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/enforongo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"engineering-ingegneriainformatica-spa1626786889850\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/engineering-ingegneriainformatica-spa1626786889850\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"engysltd1624364546407\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/engysltd1624364546407\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"enterprise-ethereum-alliance\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/enterprise-ethereum-alliance\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"enterprisedb-corp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/enterprisedb-corp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"enterpriseworx-it\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/enterpriseworx-it\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"epicgames\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/epicgames\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"epicgamesinc1633466121071\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/epicgamesinc1633466121071\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"eproe\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/eproe\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"equalum\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/equalum\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"equilibrium\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/equilibrium\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"equinix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/equinix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ergoninformatikag1581586464404\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ergoninformatikag1581586464404\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"esdenera\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/esdenera\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ESET\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ESET\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"esetresearch1579795941720\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/esetresearch1579795941720\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"esri\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/esri\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"esyon\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/esyon\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ethereum\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ethereum\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"eurolinuxspzoo1620639373013\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/eurolinuxspzoo1620639373013\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"eventtracker\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/eventtracker\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"evertzmicrosystemsltd1586877923009\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/evertzmicrosystemsltd1586877923009\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"evostream-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/evostream-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"exact\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/exact\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"exasol\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/exasol\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"excelero1608461290726\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/excelero1608461290726\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"exivity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/exivity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"exonar\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/exonar\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"f5-networks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/f5-networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"falainapteltd1604661424876\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/falainapteltd1604661424876\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"falconstorsoftware\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/falconstorsoftware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fatalsecurity1604924013537\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fatalsecurity1604924013537\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fatpipe-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fatpipe-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fenestrae-1035066\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fenestrae-1035066\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fidesys\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fidesys\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"filecatalyst\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/filecatalyst\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"filemagellc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/filemagellc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fiorano\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fiorano\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fireeye\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fireeye\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"firehost\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/firehost\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"firemon\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/firemon\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"firstderivativesplc1596469572732\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/firstderivativesplc1596469572732\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"flashgrid-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/flashgrid-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"flexbby\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/flexbby\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"flexbby-5255860\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/flexbby-5255860\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"flexify-io\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/flexify-io\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"flexxibleit\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/flexxibleit\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"flowmon\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/flowmon\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"flynet\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/flynet\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"foghorn-systems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/foghorn-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"forcepoint-llc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/forcepoint-llc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"forescout\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/forescout\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"foreseetiab1613650409016\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/foreseetiab1613650409016\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"formpipesoftwareab\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/formpipesoftwareab\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"forscene\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/forscene\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fortanix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fortanix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fortinet\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fortinet\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fortycloud\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fortycloud\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"forumsystems1599756394904\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/forumsystems1599756394904\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fotopiatechnologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fotopiatechnologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"foxiteuropegmbh1585901066320\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/foxiteuropegmbh1585901066320\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"franzinc1593030725310\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/franzinc1593030725310\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fujitsu_fast\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fujitsu_fast\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fw\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fw\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"g2kgroupgmbh-4821943\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/g2kgroupgmbh-4821943\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gapteq\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gapteq\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gatlingcorp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gatlingcorp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gbs\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gbs\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gemalto-safenet\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gemalto-safenet\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Gemalto.SafeNet.ProtectV\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Gemalto.SafeNet.ProtectV\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"genuagmbhdevid1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/genuagmbhdevid1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"genua_gmbh\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/genua_gmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"genymobile\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/genymobile\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gigamon-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gigamon-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"GitHub\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/GitHub\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gitlab\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gitlab\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gitlabinc1586447921813\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gitlabinc1586447921813\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gladinet-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gladinet-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"glantoninc1591876792991\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/glantoninc1591876792991\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"globalidsinc1596800540598\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/globalidsinc1596800540598\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"globalscape\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/globalscape\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"globalsolutions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/globalsolutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gluwareinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gluwareinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"graphistry\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/graphistry\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"graphitegtc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/graphitegtc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"great-software-laboratory-private-limited\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/great-software-laboratory-private-limited\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"greensql\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/greensql\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"greycorbelsolutions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/greycorbelsolutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gridgain\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gridgain\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"guardicore\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/guardicore\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gxchainfoundationltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gxchainfoundationltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"h2o-ai\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/h2o-ai\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hackerbay\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hackerbay\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hackershub\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hackershub\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"haivision\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/haivision\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"haivisionsystemsinc1580780591922\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/haivisionsystemsinc1580780591922\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"haltdoscompvtltd1587136166019\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/haltdoscompvtltd1587136166019\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hanu\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hanu\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"haproxy-technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/haproxy-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"harmanconnectedservicesinc1594928575643\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/harmanconnectedservicesinc1594928575643\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"harpaitalia\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/harpaitalia\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hashhub\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hashhub\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hcl-technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hcl-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"heimdall-data\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/heimdall-data\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"help-systems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/help-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"helpyio\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/helpyio\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"heretechnologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/heretechnologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hewlett-packard\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hewlett-packard\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hillstone-networks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hillstone-networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hitachi-solutions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hitachi-solutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hitachivantara\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hitachivantara\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"holo-industrie40softwaregmbh1600957636008\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/holo-industrie40softwaregmbh1600957636008\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hortonworks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hortonworks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hpe\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hpe\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"HPE.Security.ApplicationDefender\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/HPE.Security.ApplicationDefender\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"huawei\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/huawei\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hubstor-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hubstor-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hush-hush\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hush-hush\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hvr\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hvr\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hyperglance\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hyperglance\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hypergrid\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hypergrid\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hystaxinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hystaxinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hytrust\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hytrust\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"i-exceed-technology\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/i-exceed-technology\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iaansys\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iaansys\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ibm\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ibm\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ibm-alliance-global-1560886\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ibm-alliance-global-1560886\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ibm-alliance-usa-ny-armonk-hq-ibmstorage-6201192\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ibm-alliance-usa-ny-armonk-hq-ibmstorage-6201192\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ibm-usa-ny-armonk-hq-6275750-ibmcloud-aiops\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ibm-usa-ny-armonk-hq-6275750-ibmcloud-aiops\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iboss\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iboss\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iconics\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iconics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iconsulting-spa\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iconsulting-spa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"icubeconsultancyservicesinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/icubeconsultancyservicesinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iguazio-5069960\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iguazio-5069960\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ikan\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ikan\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iliimbiliimveyazlmsistemlerisanvetica1617000555584\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iliimbiliimveyazlmsistemlerisanvetica1617000555584\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"illuminainc1586452220102\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/illuminainc1586452220102\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"image-technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/image-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"imaginecommunications\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/imaginecommunications\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"imperva\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/imperva\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"impetustechnologiesinc1591959591877\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/impetustechnologiesinc1591959591877\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"imprivatainc1580479939967\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/imprivatainc1580479939967\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"incorta\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/incorta\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"incredibuild\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/incredibuild\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"indexima1594300233028\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/indexima1594300233028\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"industry-weapon\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/industry-weapon\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"industryweapon1587162781833\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/industryweapon1587162781833\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"inenprocesosyplataformasdetisderldecv1615482385424\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/inenprocesosyplataformasdetisderldecv1615482385424\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"inergybv1637141413454\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/inergybv1637141413454\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"infinitesoftwarecorporation1579223971125\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/infinitesoftwarecorporation1579223971125\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"infiotinc1614034091460\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/infiotinc1614034091460\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"influxdata\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/influxdata\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"infoblox\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/infoblox\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"infogix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/infogix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"infolibrarian\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/infolibrarian\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"informatica\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/informatica\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"informationbuilders\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/informationbuilders\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"informationtechnologies_ltd_1179601\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/informationtechnologies_ltd_1179601\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"infotecsinternetsecuritysoftwaregmbh1636129257584\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/infotecsinternetsecuritysoftwaregmbh1636129257584\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"infront-consulting-group-ltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/infront-consulting-group-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"infscapeughaftungsbeschrnkt\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/infscapeughaftungsbeschrnkt\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ingenieurstudiohollaus1579587745438\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ingenieurstudiohollaus1579587745438\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ingrammicro\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ingrammicro\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"innomindssoftware\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/innomindssoftware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"innosepgmbh1618331344164\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/innosepgmbh1618331344164\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"innovatorartificialtechsrl1619180685551\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/innovatorartificialtechsrl1619180685551\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"innovtech\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/innovtech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"instight-technology\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/instight-technology\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"integration-objects\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/integration-objects\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"intel-bigdl\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/intel-bigdl\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"intel-fpga\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/intel-fpga\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"intellicus-technologies-pvt-ltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/intellicus-technologies-pvt-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"intelligent-plant-ltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/intelligent-plant-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"internationaltrustmachinescorporation1582190033865\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/internationaltrustmachinescorporation1582190033865\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"internet20inc1635882446190\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/internet20inc1635882446190\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"intersystems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/intersystems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"intigua\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/intigua\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"intigua1638692632641\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/intigua1638692632641\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"introspecioltd1629872641188\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/introspecioltd1629872641188\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iofabric\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iofabric\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ipinfusion1590066770520\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ipinfusion1590066770520\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ipswitch\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ipswitch\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iqsol\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iqsol\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iquate\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iquate\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iquest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iquest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"irion\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/irion\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ishlangu-load-balancer-adc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ishlangu-load-balancer-adc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"issp-corporation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/issp-corporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"isvtestukbigcat\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/isvtestukbigcat\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"isvtestuklegacy\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/isvtestuklegacy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"it4bizdoo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/it4bizdoo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"itelios\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/itelios\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"itrsgroupltd1620310702149\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/itrsgroupltd1620310702149\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ivanti-inc-pcs\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ivanti-inc-pcs\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ivix1595238749040\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ivix1595238749040\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iwnamespace\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iwnamespace\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"izenda\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/izenda\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"jamcracker\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/jamcracker\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"javlinltd1579185328273\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/javlinltd1579185328273\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"jedox\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/jedox\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"jelastic\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/jelastic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"jetnexus\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/jetnexus\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"jetware-srl\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/jetware-srl\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"jfrog\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/jfrog\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"jm-technology-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/jm-technology-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"jogetinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/jogetinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"juniper-networks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/juniper-networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"justanalytics\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/justanalytics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kaazing\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kaazing\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kadenallc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kadenallc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kali-linux\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kali-linux\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kalkitech\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kalkitech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kaminarioinc1588672951794\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kaminarioinc1588672951794\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Kaspersky.Lab\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Kaspersky.Lab\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"KasperskyLab.SecurityAgent\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/KasperskyLab.SecurityAgent\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kaspersky_lab\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kaspersky_lab\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kazendi\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kazendi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kelverion\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kelverion\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kemptech\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kemptech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kepion\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kepion\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"KevlarExtensions.M365Security.SecureOS\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/KevlarExtensions.M365Security.SecureOS\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"KevlarExtensions.M365SecurityHostIDS\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/KevlarExtensions.M365SecurityHostIDS\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"KevlarExtensions.M365SecurityInventory\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/KevlarExtensions.M365SecurityInventory\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"KevlarExtensions.M365SecurityInventory.NameChangeTest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/KevlarExtensions.M365SecurityInventory.NameChangeTest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"KevlarExtensions.M365SecurityODL\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/KevlarExtensions.M365SecurityODL\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"KevlarExtensions.M365SecurityTLSExtension\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/KevlarExtensions.M365SecurityTLSExtension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kinetica\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kinetica\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kinvolk\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kinvolk\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"knime\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/knime\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kobalt\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kobalt\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kognillc1600118221163\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kognillc1600118221163\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kognitivsparkinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kognitivsparkinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"konginc1581527938760\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/konginc1581527938760\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"konsys-ltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/konsys-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"koverseinc1588716263110\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/koverseinc1588716263110\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kryonsystems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kryonsystems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"krypc-technologies-pvt-ltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/krypc-technologies-pvt-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kyligence\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kyligence\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kyvos-insights-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kyvos-insights-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lab3solutions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lab3solutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lancom-systems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lancom-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lansa\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lansa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lastline\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lastline\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"leap-orbit\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/leap-orbit\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lenovosoftware1604394104439\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lenovosoftware1604394104439\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"leostream-corporation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/leostream-corporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lepide-software\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lepide-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"levacloudllc1602151818089\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/levacloudllc1602151818089\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"libelleag\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/libelleag\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"liberatii\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/liberatii\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"libraesva\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/libraesva\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"liebsoft\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/liebsoft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lightning-analyticsinc1582000647396\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lightning-analyticsinc1582000647396\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"linuxbasedsystemsdesignltd1580878904727\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/linuxbasedsystemsdesignltd1580878904727\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"liquid-files\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/liquid-files\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"liquidware\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/liquidware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"literatu\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/literatu\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"litespeedtechnologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/litespeedtechnologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"litespeed_technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/litespeed_technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"litionenergiegmbh1580128829115\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/litionenergiegmbh1580128829115\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"litmusautomation1582760223280\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/litmusautomation1582760223280\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"llcitpro\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/llcitpro\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lnw-softgmbh\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lnw-softgmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"loadbalancer\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/loadbalancer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"logicflowag1638535407949\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/logicflowag1638535407949\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"logsign\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/logsign\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"logstarecorp1635838645101\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/logstarecorp1635838645101\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"logtrust\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/logtrust\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"logzio\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/logzio\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"looker\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/looker\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lotus_beta_analytics\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lotus_beta_analytics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lti-lt-infotech\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lti-lt-infotech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"luminate-security\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/luminate-security\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"M365Security.KevlarExtensions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/M365Security.KevlarExtensions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"M365SecurityInventory\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/M365SecurityInventory\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"machinesense\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/machinesense\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"madhavajay1632269232059\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/madhavajay1632269232059\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"maidenhead-bridge\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/maidenhead-bridge\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"manageengine\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/manageengine\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mapd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mapd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mapr-technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mapr-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"marand\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/marand\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"marketplace-rdfe-caps\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/marketplace-rdfe-caps\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"marklogic\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/marklogic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"massiveanalytic-\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/massiveanalytic-\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mathworks-deployment\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mathworks-deployment\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mathworks-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mathworks-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"matillion\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/matillion\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mavinglobal\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mavinglobal\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"McAfee.EndpointSecurity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/McAfee.EndpointSecurity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"McAfee.EndpointSecurity.test3\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/McAfee.EndpointSecurity.test3\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"meanio\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/meanio\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"media3-adobe\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/media3-adobe\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"media3-technologies-llc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/media3-technologies-llc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mediatekinc1586141563888\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mediatekinc1586141563888\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mendix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mendix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"merlynnintelligencetechnologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/merlynnintelligencetechnologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"meshifyappinc1622759451429\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/meshifyappinc1622759451429\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"messagesolution\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/messagesolution\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"metaswitch\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/metaswitch\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mettainnovations-4900054\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mettainnovations-4900054\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mfe_azure\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mfe_azure\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mfiles\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mfiles\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mico\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mico\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"micro-focus\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/micro-focus\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microlinkpcukltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microlinkpcukltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microolap\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microolap\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-ads\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-ads\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-agci-gaming\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-agci-gaming\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-aks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-aks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-avere\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-avere\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-azure-batch\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-azure-batch\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-azure-compute\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-azure-compute\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-azure-hdinsight\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-azure-hdinsight\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-crypto\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-crypto\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-dsvm\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-dsvm\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-hyperv\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-hyperv\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-minecraft\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-minecraft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AdminCenter\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AdminCenter\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AKS\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AKS\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.ActiveDirectory\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.ActiveDirectory\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.ActiveDirectory.LinuxSSH\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.ActiveDirectory.LinuxSSH\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Applications\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Applications\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Automation.HybridWorker\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Automation.HybridWorker\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Automation.HybridWorker.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Automation.HybridWorker.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.AzureDefenderForServers\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.AzureDefenderForServers\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.AzureDefenderForSQL\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.AzureDefenderForSQL\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Backup.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Backup.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Backup.Test.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Backup.Test.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.ChangeTracking\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.ChangeTracking\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.ChangeTracking.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.ChangeTracking.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.ChangeTrackingAndInventory\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.ChangeTrackingAndInventory\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Chaos\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Chaos\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Compute.Security\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Compute.Security\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.ContainerUpstream\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.ContainerUpstream\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.DefenderForServers.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.DefenderForServers.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.DefenderForServers.Test2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.DefenderForServers.Test2\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Diagnostics\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Diagnostics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Diagnostics.Build.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Diagnostics.Build.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Diagnostics.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Diagnostics.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test012be407-61ea-4e45-a2c3-71a45999ca21-20191228083800\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test012be407-61ea-4e45-a2c3-71a45999ca21-20191228083800\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test01971384-3044-413b-8b1c-33b5d461bf23-20200107051823\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test01971384-3044-413b-8b1c-33b5d461bf23-20200107051823\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test0225ec7d-b36c-4ac8-82f0-aa4fafaf10a9-20200111051346\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test0225ec7d-b36c-4ac8-82f0-aa4fafaf10a9-20200111051346\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test025e16a1-328d-45a2-b7e3-71f7e4cde046-20191229064028\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test025e16a1-328d-45a2-b7e3-71f7e4cde046-20191229064028\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test02d1f941-5607-4757-8df7-fd8c5631ab45-20200103083810\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test02d1f941-5607-4757-8df7-fd8c5631ab45-20200103083810\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test039abd7f-360c-42a1-ad5d-77527c519286-20191002233412\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test039abd7f-360c-42a1-ad5d-77527c519286-20191002233412\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test04a0f157-c6fb-4595-b6ca-6c82a2338063-20200108101451\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test04a0f157-c6fb-4595-b6ca-6c82a2338063-20200108101451\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test0737f33e-63e0-4ba9-b04b-b93a1de4e997-20200106083639\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test0737f33e-63e0-4ba9-b04b-b93a1de4e997-20200106083639\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test0a44d7be-63fa-418d-a7b6-89a44dd21894-20200107052935\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test0a44d7be-63fa-418d-a7b6-89a44dd21894-20200107052935\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test0d01b487-7f79-4d87-b330-5c025068db45-20191004190331\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test0d01b487-7f79-4d87-b330-5c025068db45-20191004190331\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test0d643748-e6fe-41ad-b4d3-89a289a0cee0-20191003055620\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test0d643748-e6fe-41ad-b4d3-89a289a0cee0-20191003055620\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test0df83c51-5bb9-43f8-8ae9-bc896ea64f78-20200110220221\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test0df83c51-5bb9-43f8-8ae9-bc896ea64f78-20200110220221\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test0f02c246-7e65-4010-9367-ca4530c3897e-20191004190223\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test0f02c246-7e65-4010-9367-ca4530c3897e-20191004190223\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test157494ec-e788-43b0-8d26-a17e39ee07cc-20191002011945\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test157494ec-e788-43b0-8d26-a17e39ee07cc-20191002011945\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test1661d154-b623-4507-8a56-3a89812c456c-20200111083940\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test1661d154-b623-4507-8a56-3a89812c456c-20200111083940\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test17bbd860-f21d-40ab-9026-16e05f2907f0-20200106083451\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test17bbd860-f21d-40ab-9026-16e05f2907f0-20200106083451\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test194e2333-13cd-43e3-b0a4-c8cdcf1a3600-20200110211106\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test194e2333-13cd-43e3-b0a4-c8cdcf1a3600-20200110211106\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test1bc26b19-b8d8-41f9-a26d-818f277bdf93-20200101113139\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test1bc26b19-b8d8-41f9-a26d-818f277bdf93-20200101113139\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test1c840053-9213-4f2a-8f2e-9bf2297908bd-20200108101424\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test1c840053-9213-4f2a-8f2e-9bf2297908bd-20200108101424\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test1d7bba72-69f1-43cd-a38c-41ce0b5f4bae-20200109050041\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test1d7bba72-69f1-43cd-a38c-41ce0b5f4bae-20200109050041\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test1f7a8078-50e7-4a3a-91eb-d178fd4c403b-20191002233353\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test1f7a8078-50e7-4a3a-91eb-d178fd4c403b-20191002233353\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test1fef1fdc-57ba-46a8-a879-475ba7d45a7a-20200106083509\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test1fef1fdc-57ba-46a8-a879-475ba7d45a7a-20200106083509\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test21332f15-f78d-4d31-afac-79b9dc989432-20191231175840\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test21332f15-f78d-4d31-afac-79b9dc989432-20191231175840\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test22f10717-6939-4003-a9ce-38effd8b77d6-20191007191355\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test22f10717-6939-4003-a9ce-38effd8b77d6-20191007191355\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test2334e6e3-bb72-4241-a36f-c2429d69bc0b-20200106050834\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test2334e6e3-bb72-4241-a36f-c2429d69bc0b-20200106050834\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test24fa9eb5-1c59-4425-b61c-30fd638c2a45-20191003203802\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test24fa9eb5-1c59-4425-b61c-30fd638c2a45-20191003203802\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test2521a545-ed61-4a15-bed1-aba7ce1d81ee-20200106050804\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test2521a545-ed61-4a15-bed1-aba7ce1d81ee-20200106050804\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test25c6fe61-1282-43c2-867b-b5039219989c-20200105081851\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test25c6fe61-1282-43c2-867b-b5039219989c-20200105081851\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test27515c8c-6773-4f92-afb0-35691cc6e3b6-20200103083821\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test27515c8c-6773-4f92-afb0-35691cc6e3b6-20200103083821\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test28012680-48e7-4903-877f-2f29464e63d5-20191229033424\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test28012680-48e7-4903-877f-2f29464e63d5-20191229033424\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test29a7a529-d293-4728-9d7f-257ed996e64f-20200108081759\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test29a7a529-d293-4728-9d7f-257ed996e64f-20200108081759\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test2a5f2d2c-b8e3-46c2-850d-a1641c024fe7-20200107084228\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test2a5f2d2c-b8e3-46c2-850d-a1641c024fe7-20200107084228\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test2ce856af-ab17-48f2-ba3e-bcd9af091061-20200110013246\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test2ce856af-ab17-48f2-ba3e-bcd9af091061-20200110013246\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test2e012e83-6361-4365-963f-6ced8a08e91c-20200110211254\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test2e012e83-6361-4365-963f-6ced8a08e91c-20200110211254\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test2ecf67b2-fb63-4461-b6a6-7026c4fb1168-20191002214026\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test2ecf67b2-fb63-4461-b6a6-7026c4fb1168-20191002214026\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test2ede6564-c7cc-44cb-a1a8-902505c9829d-20191003020742\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test2ede6564-c7cc-44cb-a1a8-902505c9829d-20191003020742\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test2f4ebc17-e27e-48d9-9cc3-ff933c21884e-20200106092410\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test2f4ebc17-e27e-48d9-9cc3-ff933c21884e-20200106092410\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test349ee02c-af9b-4663-a963-823b40eefed8-20200108083612\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test349ee02c-af9b-4663-a963-823b40eefed8-20200108083612\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test34cf6b13-b78e-478b-b596-8b661629371d-20191007195455\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test34cf6b13-b78e-478b-b596-8b661629371d-20191007195455\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test36cc5b60-2b23-4a04-bf95-f7865e1141cf-20200110085718\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test36cc5b60-2b23-4a04-bf95-f7865e1141cf-20200110085718\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3712fca9-5cdd-4609-be69-b02aedc5c55c-20200107084115\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3712fca9-5cdd-4609-be69-b02aedc5c55c-20200107084115\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3772d042-92e2-4bcb-99b7-8a6a119cc088-20191231182808\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3772d042-92e2-4bcb-99b7-8a6a119cc088-20191231182808\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test37a6dd64-d44d-465e-85bc-3bc38be90350-20200104083535\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test37a6dd64-d44d-465e-85bc-3bc38be90350-20200104083535\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test381074d5-7156-472b-801a-b35f8fef4cc6-20200105050612\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test381074d5-7156-472b-801a-b35f8fef4cc6-20200105050612\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3877a44d-4c48-40db-80eb-227272d5acd6-20200110103540\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3877a44d-4c48-40db-80eb-227272d5acd6-20200110103540\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test38ecd28e-7018-4672-840c-3044a5e7a6b5-20200111084208\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test38ecd28e-7018-4672-840c-3044a5e7a6b5-20200111084208\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test395a0b49-442a-450c-8a1f-65b0aa3bcf47-20200105083839\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test395a0b49-442a-450c-8a1f-65b0aa3bcf47-20200105083839\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3971b300-edff-44a8-b61b-7f9b7460a8d6-20191003002234\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3971b300-edff-44a8-b61b-7f9b7460a8d6-20191003002234\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3adeec20-7458-4b3d-af26-0b6bc2aae3eb-20200103083751\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3adeec20-7458-4b3d-af26-0b6bc2aae3eb-20200103083751\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3b20dd96-f3e4-4798-998d-8c433c2449a7-20200108083635\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3b20dd96-f3e4-4798-998d-8c433c2449a7-20200108083635\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3ce2fd4a-8b5a-4c7e-b08d-3e48fc0f45e7-20200104083825\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3ce2fd4a-8b5a-4c7e-b08d-3e48fc0f45e7-20200104083825\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3d499ca7-cc8d-41cc-a6dc-ffb1a4ac4942-20200107053004\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3d499ca7-cc8d-41cc-a6dc-ffb1a4ac4942-20200107053004\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3db7240e-5e42-4d6d-b024-cc9fce3c828b-20200105083520\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3db7240e-5e42-4d6d-b024-cc9fce3c828b-20200105083520\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3f6b7341-635f-48d5-a36d-be5dfe3002c4-20200105050937\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3f6b7341-635f-48d5-a36d-be5dfe3002c4-20200105050937\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3fc26934-ede2-4482-ad5e-f66f6135d4a6-20191228055558\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3fc26934-ede2-4482-ad5e-f66f6135d4a6-20191228055558\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test406d077c-6017-4062-bc96-f809147a2331-20200106050748\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test406d077c-6017-4062-bc96-f809147a2331-20200106050748\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test4302336c-e039-4e70-bcb6-9275f6089e4a-20200108144821\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test4302336c-e039-4e70-bcb6-9275f6089e4a-20200108144821\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test453a087e-8435-46db-970a-4ee633cc4c4a-20200102083458\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test453a087e-8435-46db-970a-4ee633cc4c4a-20200102083458\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test46b73afa-2259-4aff-81e1-a58bf24b59aa-20191229033459\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test46b73afa-2259-4aff-81e1-a58bf24b59aa-20191229033459\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test4a3399ee-82ea-46aa-9e3a-5434b588e3b6-20191228013518\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test4a3399ee-82ea-46aa-9e3a-5434b588e3b6-20191228013518\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test4eb7a185-527b-4b9f-93a8-7f1cec9d062e-20191231151207\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test4eb7a185-527b-4b9f-93a8-7f1cec9d062e-20191231151207\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test520a0915-f9f0-4da4-9fa1-1b74fc1470aa-20200102083505\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test520a0915-f9f0-4da4-9fa1-1b74fc1470aa-20200102083505\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test5397960f-023b-4979-9a8b-800d049045a4-20191007195417\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test5397960f-023b-4979-9a8b-800d049045a4-20191007195417\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test55a36387-8a3f-4159-9884-29b97539a253-20200109080443\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test55a36387-8a3f-4159-9884-29b97539a253-20200109080443\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test5645f186-4ee5-4209-af37-423660e3318c-20191231175947\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test5645f186-4ee5-4209-af37-423660e3318c-20191231175947\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test58b4461d-4d2d-4395-b6d2-ab83d4d8c62f-20200111001002\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test58b4461d-4d2d-4395-b6d2-ab83d4d8c62f-20200111001002\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test5b0bf447-d98d-429d-8334-c032d197c743-20191003203846\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test5b0bf447-d98d-429d-8334-c032d197c743-20191003203846\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test5bc90367-1ea2-400b-a40c-321081bae3f3-20200108145035\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test5bc90367-1ea2-400b-a40c-321081bae3f3-20200108145035\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test5bd0562f-e939-456f-a6ee-c848d1aba616-20200101151641\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test5bd0562f-e939-456f-a6ee-c848d1aba616-20200101151641\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test5e4efe90-916c-4c96-802c-1508a5b6da78-20191231151150\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test5e4efe90-916c-4c96-802c-1508a5b6da78-20191231151150\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test5f8f0c10-cc3c-45ec-a068-fb1c7edfa0d9-20200101145958\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test5f8f0c10-cc3c-45ec-a068-fb1c7edfa0d9-20200101145958\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test60a000b7-286c-4b2b-9137-bbc088736419-20200108144920\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test60a000b7-286c-4b2b-9137-bbc088736419-20200108144920\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test6192a01b-ba47-4d08-904a-71647a49a112-20191008041625\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test6192a01b-ba47-4d08-904a-71647a49a112-20191008041625\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test62835538-89c6-4f66-9034-f7a4b176c615-20191007234245\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test62835538-89c6-4f66-9034-f7a4b176c615-20191007234245\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test651e4ad2-ee4a-462e-a506-b56b1969f5d0-20200110230749\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test651e4ad2-ee4a-462e-a506-b56b1969f5d0-20200110230749\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test691d94e5-c40c-4568-94b0-09b08aea42b1-20200106050808\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test691d94e5-c40c-4568-94b0-09b08aea42b1-20200106050808\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test6aa3643c-011a-4180-877f-cad955a8e664-20191007234642\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test6aa3643c-011a-4180-877f-cad955a8e664-20191007234642\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test6cfb469b-8478-468f-9bb5-691affd32abb-20200107083803\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test6cfb469b-8478-468f-9bb5-691affd32abb-20200107083803\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test6d36b6b2-7956-4e62-91c1-c33792fd4bb1-20200110123203\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test6d36b6b2-7956-4e62-91c1-c33792fd4bb1-20200110123203\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test6e28168e-a9c8-4c0a-8b40-60c2a1502d43-20200108052802\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test6e28168e-a9c8-4c0a-8b40-60c2a1502d43-20200108052802\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test6eb763ac-7fbe-4e44-bee7-aad035ee2a7d-20200110084429\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test6eb763ac-7fbe-4e44-bee7-aad035ee2a7d-20200110084429\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test6efec253-f625-46f0-9d74-324f69e963d8-20200107070514\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test6efec253-f625-46f0-9d74-324f69e963d8-20200107070514\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test70fa7e4c-3122-4ff7-aec6-fe75ab660a01-20200108105900\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test70fa7e4c-3122-4ff7-aec6-fe75ab660a01-20200108105900\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test710a5fbf-06c7-46ac-b96d-a29d2586422f-20200108083639\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test710a5fbf-06c7-46ac-b96d-a29d2586422f-20200108083639\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test71d72489-67c6-45e2-b1e6-a19546efc823-20200105112903\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test71d72489-67c6-45e2-b1e6-a19546efc823-20200105112903\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test721fccf1-2b3e-44b6-908f-51b910e88b09-20200111104931\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test721fccf1-2b3e-44b6-908f-51b910e88b09-20200111104931\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test742d0189-9e41-4f1b-8ad3-31c05d34903b-20200111103247\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test742d0189-9e41-4f1b-8ad3-31c05d34903b-20200111103247\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test7836a97c-f56e-48d0-8b5d-61e79aeb3226-20200111071656\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7836a97c-f56e-48d0-8b5d-61e79aeb3226-20200111071656\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test78666b2e-25c8-4a48-931a-3131a0317d73-20191002194352\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test78666b2e-25c8-4a48-931a-3131a0317d73-20191002194352\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test79f13508-fcbd-47b9-988f-1c21ef5e7f2e-20191002015429\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test79f13508-fcbd-47b9-988f-1c21ef5e7f2e-20191002015429\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test79fb90ce-4691-4212-99a7-6e4069bd5984-20191007234256\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test79fb90ce-4691-4212-99a7-6e4069bd5984-20191007234256\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test7a8cf687-6a21-4181-ba98-902fee717bd3-20200104103216\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7a8cf687-6a21-4181-ba98-902fee717bd3-20200104103216\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test7aabf813-6644-483a-b9e0-ba6f8973ba1f-20191002232822\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7aabf813-6644-483a-b9e0-ba6f8973ba1f-20191002232822\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test7c96c10a-0c8f-4ab0-83fd-1ad66a362e33-20191229033458\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7c96c10a-0c8f-4ab0-83fd-1ad66a362e33-20191229033458\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test7e79b6ff-2559-44fe-b3ba-afaa68d63636-20200108112116\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7e79b6ff-2559-44fe-b3ba-afaa68d63636-20200108112116\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test7ea372f7-ea7e-4b9e-bbad-4f35c1567aa2-20200108052736\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7ea372f7-ea7e-4b9e-bbad-4f35c1567aa2-20200108052736\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test7fac3d04-98a5-4fc4-904e-9ea3b86eadc2-20200106050751\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7fac3d04-98a5-4fc4-904e-9ea3b86eadc2-20200106050751\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test7fe20dd6-9ed9-4126-bb1d-031c01ac4550-20200101114504\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7fe20dd6-9ed9-4126-bb1d-031c01ac4550-20200101114504\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test7ff974d9-c841-4249-b05b-bbf663cb4605-20200106084104\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7ff974d9-c841-4249-b05b-bbf663cb4605-20200106084104\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test815bd4d5-fc24-4a47-be20-063c4809902c-20200109050508\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test815bd4d5-fc24-4a47-be20-063c4809902c-20200109050508\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test817654d0-2109-4d95-9284-8c8a9d960d08-20200108053758\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test817654d0-2109-4d95-9284-8c8a9d960d08-20200108053758\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test821ca3b6-dd05-4e80-b3d8-74ba03b2609b-20191231151151\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test821ca3b6-dd05-4e80-b3d8-74ba03b2609b-20191231151151\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test8285dc3e-637d-4d46-9695-adc39cbe7d2f-20200108144457\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test8285dc3e-637d-4d46-9695-adc39cbe7d2f-20200108144457\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test828aae03-9239-4938-a303-c23c42311878-20200102083419\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test828aae03-9239-4938-a303-c23c42311878-20200102083419\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test84afd814-5098-49ab-af99-e50350b5898b-20200110211134\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test84afd814-5098-49ab-af99-e50350b5898b-20200110211134\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test85b08563-b15f-4202-a0bc-f2bc2df2c71a-20200107053335\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test85b08563-b15f-4202-a0bc-f2bc2df2c71a-20200107053335\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test88aac268-c087-4481-b78e-99b920784a33-20200101084853\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test88aac268-c087-4481-b78e-99b920784a33-20200101084853\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test88dbd442-a8cc-4874-81a0-d3192c61df62-20191001224544\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test88dbd442-a8cc-4874-81a0-d3192c61df62-20191001224544\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test894dfb75-a00f-4f0c-894c-cae1c9846ad3-20200105051803\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test894dfb75-a00f-4f0c-894c-cae1c9846ad3-20200105051803\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test8d09bf4d-ee63-4ab1-a986-a4b802418403-20200111051447\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test8d09bf4d-ee63-4ab1-a986-a4b802418403-20200111051447\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test8d4d652b-4f05-4e99-93dd-78b9a36b5c78-20191003203755\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test8d4d652b-4f05-4e99-93dd-78b9a36b5c78-20191003203755\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test8de64739-43d8-4f84-af65-fdb3d0885288-20200108053543\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test8de64739-43d8-4f84-af65-fdb3d0885288-20200108053543\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test8e324c65-a51d-4eeb-9ec8-d5f8662dc041-20191228165107\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test8e324c65-a51d-4eeb-9ec8-d5f8662dc041-20191228165107\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test8e564580-8e53-4300-85f1-bf7f31dd37ff-20200107013348\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test8e564580-8e53-4300-85f1-bf7f31dd37ff-20200107013348\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test8f458ca7-8898-4d58-b93d-bfb0c3da028c-20200109050310\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test8f458ca7-8898-4d58-b93d-bfb0c3da028c-20200109050310\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test901cd6ca-5565-4552-a3de-d204d01935c0-20200108083706\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test901cd6ca-5565-4552-a3de-d204d01935c0-20200108083706\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test907b39e5-4008-4b55-93a0-18e9697b9cf3-20200108053817\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test907b39e5-4008-4b55-93a0-18e9697b9cf3-20200108053817\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test90c2be7c-d7ec-4abf-9fad-fef90fc3ef4d-20191004022234\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test90c2be7c-d7ec-4abf-9fad-fef90fc3ef4d-20191004022234\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test922db678-6ee8-43d5-86ff-6a86e132d332-20200107085231\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test922db678-6ee8-43d5-86ff-6a86e132d332-20200107085231\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test93b88aec-5277-4b1b-910c-7008e972ce91-20200107013304\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test93b88aec-5277-4b1b-910c-7008e972ce91-20200107013304\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test95a9104b-6cba-42d8-82ff-cc37e5ac44db-20200108081723\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test95a9104b-6cba-42d8-82ff-cc37e5ac44db-20200108081723\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test96da1605-19e0-46eb-9ce0-53e840f5e2cb-20200101111729\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test96da1605-19e0-46eb-9ce0-53e840f5e2cb-20200101111729\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test996066b2-7d29-400f-929b-e343a21046f7-20191231151212\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test996066b2-7d29-400f-929b-e343a21046f7-20191231151212\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test99663fff-ed21-4a91-9687-1a6da2abb033-20200106084508\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test99663fff-ed21-4a91-9687-1a6da2abb033-20200106084508\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test9eb5efa5-c3c1-4c13-80a6-11f5eba67372-20200108144852\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test9eb5efa5-c3c1-4c13-80a6-11f5eba67372-20200108144852\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testa3791896-b1fc-491e-ba0d-aefcd8d9e52a-20200105083503\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testa3791896-b1fc-491e-ba0d-aefcd8d9e52a-20200105083503\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testa37ff709-a078-45a0-8187-41733df8e101-20200109050003\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testa37ff709-a078-45a0-8187-41733df8e101-20200109050003\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testa4c5fe4e-936e-4be1-a612-a331aff54a8c-20200111105055\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testa4c5fe4e-936e-4be1-a612-a331aff54a8c-20200111105055\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testa59bce1d-e32c-423d-a86e-945d4aeb98b4-20200107051821\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testa59bce1d-e32c-423d-a86e-945d4aeb98b4-20200107051821\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testa604c059-8279-4f4d-a354-eec27222a06c-20200111051514\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testa604c059-8279-4f4d-a354-eec27222a06c-20200111051514\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testa71fefb1-0d9c-4fb3-8d3d-5dcd12d72b77-20200103103221\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testa71fefb1-0d9c-4fb3-8d3d-5dcd12d72b77-20200103103221\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testa748013d-c5a6-44f9-88eb-43167207c742-20200111051402\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testa748013d-c5a6-44f9-88eb-43167207c742-20200111051402\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testaab67022-4f2b-420d-a06a-2c4045110cdf-20191229033144\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testaab67022-4f2b-420d-a06a-2c4045110cdf-20191229033144\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testacab9541-280f-4491-9f49-ac57653f0a07-20200105083839\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testacab9541-280f-4491-9f49-ac57653f0a07-20200105083839\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testad298437-0349-4cc7-88a9-d8aabcba9df1-20191002233431\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testad298437-0349-4cc7-88a9-d8aabcba9df1-20191002233431\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testadd68286-f9e0-4ab1-a526-d8f3cf0f054e-20200105084128\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testadd68286-f9e0-4ab1-a526-d8f3cf0f054e-20200105084128\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testade4c52b-18f5-4b67-8e93-945358ce4f7d-20191007234259\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testade4c52b-18f5-4b67-8e93-945358ce4f7d-20191007234259\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testae421c1d-0211-4ef2-b372-564ce8ad484a-20200110104035\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testae421c1d-0211-4ef2-b372-564ce8ad484a-20200110104035\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testafbbd8bf-aec5-48bf-8fea-73fa15ccc315-20191001224727\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testafbbd8bf-aec5-48bf-8fea-73fa15ccc315-20191001224727\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testb15148bf-78d2-42d4-ad08-b3ad8fb4b122-20200101084759\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testb15148bf-78d2-42d4-ad08-b3ad8fb4b122-20200101084759\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testb4237708-3688-40ea-85a2-275c05f4d100-20191228083519\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testb4237708-3688-40ea-85a2-275c05f4d100-20191228083519\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testb799a18f-be45-4c5c-8438-163ac2e1f1e7-20191004190529\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testb799a18f-be45-4c5c-8438-163ac2e1f1e7-20191004190529\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testb7cee88a-e5ac-4af4-99c8-7247020b00c3-20200105051201\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testb7cee88a-e5ac-4af4-99c8-7247020b00c3-20200105051201\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testb7df0d9a-27c0-4ca5-b692-08dd90387b98-20200111083443\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testb7df0d9a-27c0-4ca5-b692-08dd90387b98-20200111083443\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testbbf6bf32-4bd0-4381-b8f7-2658f585df4d-20191003203846\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testbbf6bf32-4bd0-4381-b8f7-2658f585df4d-20191003203846\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testbeea1376-166a-4b1a-8923-c907cc9737d9-20200107013336\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testbeea1376-166a-4b1a-8923-c907cc9737d9-20200107013336\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testbf9154e9-6166-48c2-86fe-1f331be606d7-20200107051823\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testbf9154e9-6166-48c2-86fe-1f331be606d7-20200107051823\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc0d7c3c5-23b8-489c-a5e0-ae87c681b696-20200101083539\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc0d7c3c5-23b8-489c-a5e0-ae87c681b696-20200101083539\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc193f31a-5186-4e93-84f6-0e4ab87b73c1-20200107052937\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc193f31a-5186-4e93-84f6-0e4ab87b73c1-20200107052937\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc1c7e8dc-fa8c-47d9-8305-de6d1451b939-20200101085248\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc1c7e8dc-fa8c-47d9-8305-de6d1451b939-20200101085248\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc1d0c917-e2ae-430c-a2ca-383fb0fda046-20191007235839\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc1d0c917-e2ae-430c-a2ca-383fb0fda046-20191007235839\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc23a3fbb-6e95-4c0d-94fc-c8ab14dddf1c-20191231151117\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc23a3fbb-6e95-4c0d-94fc-c8ab14dddf1c-20191231151117\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc2697630-6247-411a-94b3-c2974ad8cbee-20191007195417\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc2697630-6247-411a-94b3-c2974ad8cbee-20191007195417\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc466b80f-670f-4383-89b8-44e0d509fa20-20191002000516\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc466b80f-670f-4383-89b8-44e0d509fa20-20191002000516\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc5c8d9bd-75fa-4db3-9f34-5d7b7098584c-20191003203851\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc5c8d9bd-75fa-4db3-9f34-5d7b7098584c-20191003203851\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc8b6d14b-a5db-48e0-bfad-a2818d432bea-20200104083443\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc8b6d14b-a5db-48e0-bfad-a2818d432bea-20200104083443\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc933efa8-c553-4b93-884f-b7221d9ca789-20191228083750\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc933efa8-c553-4b93-884f-b7221d9ca789-20191228083750\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testcbe8ab80-46ef-49b1-a7bb-4e3d6e50e49f-20200104050811\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testcbe8ab80-46ef-49b1-a7bb-4e3d6e50e49f-20200104050811\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testccc0b5e6-9b0d-451a-8ac4-6f4af293b913-20200106092645\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testccc0b5e6-9b0d-451a-8ac4-6f4af293b913-20200106092645\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testcec64786-04b1-487c-80ec-050da646fb1c-20191005123412\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testcec64786-04b1-487c-80ec-050da646fb1c-20191005123412\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testd104a52f-eba2-401d-8e7f-a841c90f7712-20191228083553\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testd104a52f-eba2-401d-8e7f-a841c90f7712-20191228083553\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testd724cea4-0d3c-4539-b2ff-be08fb23a67e-20200107083714\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testd724cea4-0d3c-4539-b2ff-be08fb23a67e-20200107083714\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testd8e60bac-27ff-4fba-90b8-732c9c5ff91c-20191228083751\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testd8e60bac-27ff-4fba-90b8-732c9c5ff91c-20191228083751\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testd99db4a5-7683-4584-89ad-fefd711de284-20191004190210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testd99db4a5-7683-4584-89ad-fefd711de284-20191004190210\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testd9b4309a-67bc-4cd8-ac47-094cb20ca6aa-20200101090202\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testd9b4309a-67bc-4cd8-ac47-094cb20ca6aa-20200101090202\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testda3320e0-28f2-4146-a002-e06296362711-20191004190115\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testda3320e0-28f2-4146-a002-e06296362711-20191004190115\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testda714121-3240-4253-90c3-48c43f115c90-20200102083419\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testda714121-3240-4253-90c3-48c43f115c90-20200102083419\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testdb357558-60b4-4ee3-9ec3-ba22c5d827fb-20191004020617\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testdb357558-60b4-4ee3-9ec3-ba22c5d827fb-20191004020617\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testdc7230e9-df6d-4edd-a57c-ef7e0432c463-20191002011345\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testdc7230e9-df6d-4edd-a57c-ef7e0432c463-20191002011345\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testdccb59de-436f-4935-bed6-2e677dcaf36a-20200109111802\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testdccb59de-436f-4935-bed6-2e677dcaf36a-20200109111802\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testde985b23-9333-4f6e-a5e8-82025a38b2af-20200102083510\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testde985b23-9333-4f6e-a5e8-82025a38b2af-20200102083510\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Teste271da3e-cbcb-4ee7-8770-f297f414451f-20191003015540\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Teste271da3e-cbcb-4ee7-8770-f297f414451f-20191003015540\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Teste4070edd-aec0-455d-8a79-aecdb7170b6d-20191007234642\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Teste4070edd-aec0-455d-8a79-aecdb7170b6d-20191007234642\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Teste42f351a-4da0-4f0d-93e9-ef1d98e06659-20200108083633\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Teste42f351a-4da0-4f0d-93e9-ef1d98e06659-20200108083633\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Teste66ca23c-f4bf-4eb3-8418-139364d19e7d-20200107062643\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Teste66ca23c-f4bf-4eb3-8418-139364d19e7d-20200107062643\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Teste78b1ab2-1380-48ab-9923-0276cdb7198b-20191001224742\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Teste78b1ab2-1380-48ab-9923-0276cdb7198b-20191001224742\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Teste8607e14-b4f8-472a-bd5b-893b8d9612e6-20200112045941\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Teste8607e14-b4f8-472a-bd5b-893b8d9612e6-20200112045941\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Teste980b80e-3add-42c0-bc98-a84020b2d128-20200108101640\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Teste980b80e-3add-42c0-bc98-a84020b2d128-20200108101640\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Tested79dba9-2d38-4ea9-a01c-56e94b30ca7a-20191007195447\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Tested79dba9-2d38-4ea9-a01c-56e94b30ca7a-20191007195447\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testee9dcf5f-f7c4-4192-a8f4-28e9bc7d0f7c-20191001225005\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testee9dcf5f-f7c4-4192-a8f4-28e9bc7d0f7c-20191001225005\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testefbb340a-b68b-4200-872b-d05e7d29f92d-20191007195432\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testefbb340a-b68b-4200-872b-d05e7d29f92d-20191007195432\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testf1fc0559-6740-48dd-9501-2b933c731d52-20200103083458\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testf1fc0559-6740-48dd-9501-2b933c731d52-20200103083458\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testf41dfc97-bb51-4fba-86ca-a6f2695c415a-20200107050834\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testf41dfc97-bb51-4fba-86ca-a6f2695c415a-20200107050834\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testf5784447-83ed-4c00-8764-ea0f932aafa2-20200106085748\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testf5784447-83ed-4c00-8764-ea0f932aafa2-20200106085748\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testf6128ef6-c13c-420e-8088-0710888ce88b-20200109050003\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testf6128ef6-c13c-420e-8088-0710888ce88b-20200109050003\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testf863ab2c-ada9-4646-84c7-1f83a82375d7-20191229033226\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testf863ab2c-ada9-4646-84c7-1f83a82375d7-20191229033226\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testfac552a7-418f-4baa-8f51-d199ceff5c68-20200103050817\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testfac552a7-418f-4baa-8f51-d199ceff5c68-20200103050817\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testfb7be054-5c15-494f-822c-b64f9a36e2f3-20200105051753\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testfb7be054-5c15-494f-822c-b64f9a36e2f3-20200105051753\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testfc5c7585-6c9a-4aa4-a7c4-1223a94e00c7-20200104083552\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testfc5c7585-6c9a-4aa4-a7c4-1223a94e00c7-20200104083552\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.FileServer.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.FileServer.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Geneva\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Geneva\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.KeyVault\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.KeyVault\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.KeyVault.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.KeyVault.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.LabServices\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.LabServices\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.LabServices.test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.LabServices.test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.Agent\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.Agent\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.Dev\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.Dev\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.Dev.INT\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.Dev.INT\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.Dev.SCALE\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.Dev.SCALE\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.Dev.TEST\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.Dev.TEST\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.GuestHealth\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.GuestHealth\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.DEV\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.DEV\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.INT\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.INT\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.SCALE\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.SCALE\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.TEST\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.TEST\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.INT.Dev\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.INT.Dev\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.SCALE.Dev\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.SCALE.Dev\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.TEST.Dev\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.TEST.Dev\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.WorkloadInsights.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.WorkloadInsights.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.WorkloadInsightsTest.newnamespace\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.WorkloadInsightsTest.newnamespace\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.Workloads\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.Workloads\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.Workloads.Dev\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.Workloads.Dev\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitoring.DependencyAgent\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitoring.DependencyAgent\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitoring.DependencyAgent.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitoring.DependencyAgent.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Networking.DNS\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Networking.DNS\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Networking.SDN\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Networking.SDN\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.NetworkWatcher\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.NetworkWatcher\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.NetworkWatcher.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.NetworkWatcher.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.OpenSSH\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.OpenSSH\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Performance.Diagnostics\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Performance.Diagnostics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Performance.Diagnostics.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Performance.Diagnostics.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.RecoveryServices\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.RecoveryServices.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices.SiteRecovery\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.RecoveryServices.SiteRecovery\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices.SiteRecovery2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.RecoveryServices.SiteRecovery2\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices.WorkloadBackup\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.RecoveryServices.WorkloadBackup\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices.WorkloadBackup.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.RecoveryServices.WorkloadBackup.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.AntimalwareSignature\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.AntimalwareSignature\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.AntimalwareSignature.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.AntimalwareSignature.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.Dsms\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.Dsms\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.Dsms.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.Dsms.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.LinuxAttestation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.LinuxAttestation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.LinuxTestAttestation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.LinuxTestAttestation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.Monitoring\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.Monitoring\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.Monitoring.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.Monitoring.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.Monitoring.Testing\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.Monitoring.Testing\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.TestWindowsAttestation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.TestWindowsAttestation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.WindowsAttestation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.WindowsAttestation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.WinTestAttestation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.WinTestAttestation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Sentinel.DnsExtension.Dev\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Sentinel.DnsExtension.Dev\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.ServiceFabric.MC\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.ServiceFabric.MC\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.ServiceFabric.MC.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.ServiceFabric.MC.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.SiteRecovery.Stage\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.SiteRecovery.Stage\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.SiteRecovery.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.SiteRecovery.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.SiteRecovery2.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.SiteRecovery2.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Test.Identity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Test.Identity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WindowsFabric.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WindowsFabric.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.ReleasePipeTest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.ReleasePipeTest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.ReleasePipeTest.INT\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.ReleasePipeTest.INT\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.ReleasePipeTest.TEST\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.ReleasePipeTest.TEST\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test2\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test3\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test3\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test4\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test4\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test5\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test5\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test5.INT\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test5.INT\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test5.TEST\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test5.TEST\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.VincentTest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.VincentTest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.VincentTest2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.VincentTest2\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.VincentTest3\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.VincentTest3\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.VincentTest4\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.VincentTest4\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.TestTest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.TestTest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.TestTest.INT\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.TestTest.INT\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.TestTest.TEST\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.TestTest.TEST\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Windows.ReleasePipeTest.INT\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Windows.ReleasePipeTest.INT\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Windows.ReleasePipeTest.TEST\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Windows.ReleasePipeTest.TEST\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoring\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoring.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoringTest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoringTest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureData\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureData\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureData.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureData.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.Canary\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights.Canary\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.Corp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights.Corp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.Linux.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights.Linux.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.LinuxTest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights.LinuxTest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.Meya0206\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights.Meya0206\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.MeyaCorp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights.MeyaCorp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.Testing\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights.Testing\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureSecurity.JITAccess\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureSecurity.JITAccess\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.CloudBackup.Workload.Extension\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.CloudBackup.Workload.Extension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.CloudBackup.Workload.Extension.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.CloudBackup.Workload.Extension.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Compute\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Compute.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Compute.TestSar\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute.TestSar\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.CPlat.Core\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.CPlat.Core\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.CPlat.Core.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.CPlat.Core.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Dcsswe.Extensions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Dcsswe.Extensions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.EnterpriseCloud.Monitoring\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.EnterpriseCloud.Monitoring.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.EnterpriseCloud.Monitoring.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Golive.Extensions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Golive.Extensions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.GuestConfig.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.GuestConfig.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.GuestConfiguration\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.GuestConfiguration\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.GuestConfiguration.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.GuestConfiguration.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.GuestConfiguration.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.GuestConfiguration.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.HpcCompute\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.HpcCompute\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.HpcCompute.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.HpcCompute.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.HpcPack\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.HpcPack\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Interceptor\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Interceptor\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.M365\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.M365\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.M365SecurityConfiguration.Kevlar.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.M365SecurityConfiguration.Kevlar.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.ManagedIdentity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.ManagedIdentity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.ManagedServices\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.ManagedServices\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.ManagedServices.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.ManagedServices.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.MonitoringAgent.Extension\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.MonitoringAgent.Extension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Network\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Network\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.OSTCExtensions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.OSTCExtensions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.OSTCExtensions.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.OSTCExtensions.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.OSTCExtensions.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.OSTCExtensions.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.OSTCExtensions.Testing\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.OSTCExtensions.Testing\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Powershell\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Powershell\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Powershell.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Powershell.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Powershell.Test01\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Powershell.Test01\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.SecurityManagement.Kevlar\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.SecurityManagement.Kevlar\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Sentinel.AzureMonitorAgentExtensions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Sentinel.AzureMonitorAgentExtensions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.SoftwareUpdateManagement\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.SoftwareUpdateManagement\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.SoftwareUpdateManagement.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.SoftwareUpdateManagement.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.SqlServer.Managability.IaaS.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.SqlServer.Managability.IaaS.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.SqlServer.Management\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.SqlServer.Management\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.SqlServer.Management.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.SqlServer.Management.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.SystemCenter\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.SystemCenter\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.SystemCenter.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.SystemCenter.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Test.Azure.Workloads\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Test.Azure.Workloads\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.TestSqlServer.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.TestSqlServer.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.ETWTraceListenerService\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.Azure.ETWTraceListenerService\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.RemoteDebug\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.Azure.RemoteDebug\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.RemoteDebug.Json\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.Azure.RemoteDebug.Json\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.ServiceProfiler\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.ServiceProfiler\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.Services\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.Services\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.WindowsAzure.DevTest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.WindowsAzure.DevTest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.WindowsAzure.DevTest.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.WindowsAzure.DevTest.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.WindowsAzure.RemoteDebug\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.WindowsAzure.RemoteDebug\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.WindowsAzure.Test.RemoteDebug\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.WindowsAzure.Test.RemoteDebug\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Windows.Azure.Extensions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Windows.Azure.Extensions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Windows.AzureRemoteApp.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Windows.AzureRemoteApp.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Windows.RemoteDesktop\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Windows.RemoteDesktop\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.WindowsAdminCenter\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.WindowsAdminCenter\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.WindowsAdminCenter.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.WindowsAdminCenter.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.WindowsAzure.Compute\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.WindowsAzure.Compute\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.WindowsAzure.Compute.test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.WindowsAzure.Compute.test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.WVD\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.WVD\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoftagciuk\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoftagciuk\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoftazurecituswarp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoftazurecituswarp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftAzureSiteRecovery\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftAzureSiteRecovery\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftBizTalkServer\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftBizTalkServer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftCBLMariner\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftCBLMariner\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoftcmotest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoftcmotest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoftcorporation1602274591143\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoftcorporation1602274591143\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoftcorporation1620407702632\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoftcorporation1620407702632\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftDynamicsAX\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftDynamicsAX\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftDynamicsGP\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftDynamicsGP\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftDynamicsNAV\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftDynamicsNAV\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoftfarmbeats\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoftfarmbeats\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftHybridCloudStorage\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftHybridCloudStorage\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftOSTC\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftOSTC\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftPowerBI\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftPowerBI\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftRServer\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftRServer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftSharePoint\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftSharePoint\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftSQLServer\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftSQLServer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftTestLinuxPPS\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftTestLinuxPPS\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftVisualStudio\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftVisualStudio\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftWindowsDesktop\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsDesktop\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftWindowsServer\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsServer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftWindowsServerHPCPack\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsServerHPCPack\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft_iot_edge\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft_iot_edge\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft_javaeeonazure_test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft_javaeeonazure_test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microstrategy\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microstrategy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"midasolutions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/midasolutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"middleware\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/middleware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"midfin\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/midfin\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"midvision\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/midvision\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mihupcommunicationspvtltd1599046998010\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mihupcommunicationspvtltd1599046998010\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mindcti\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mindcti\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"minio\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/minio\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"miraclelinux\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/miraclelinux\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"miracl_linux\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/miracl_linux\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"miri-infotech-pvt-ltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/miri-infotech-pvt-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mistio1601460379393\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mistio1601460379393\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mobilab\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mobilab\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"modern-systems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/modern-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"modexblockchaindatabase\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/modexblockchaindatabase\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"monetdbsolutions1611751313758\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/monetdbsolutions1611751313758\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"monitorapp1579029852605\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/monitorapp1579029852605\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"monitorcomputersystemsltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/monitorcomputersystemsltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"moogsoft\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/moogsoft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"morpheus-data\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/morpheus-data\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"moviemasher\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/moviemasher\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mriisoftllc1579457820427\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mriisoftllc1579457820427\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"msopentech\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/msopentech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mtnfog\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mtnfog\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"multisoft-ab\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/multisoft-ab\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mvp-systems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mvp-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mwg_azure\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mwg_azure\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mxhero\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mxhero\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"my-com\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/my-com\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"myarchinc1614657280935\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/myarchinc1614657280935\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"narrativescience\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/narrativescience\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nasuni\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nasuni\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nasunicorporation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nasunicorporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"navicloudrsoftwarepteltd1601967280369\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/navicloudrsoftwarepteltd1601967280369\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ncache\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ncache\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ncbi\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ncbi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ncomputingglobalinc1604353053068\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ncomputingglobalinc1604353053068\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ndl\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ndl\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nebbiolo-technologies-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nebbiolo-technologies-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nec-technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nec-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nefelinetworks1591201080882\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nefelinetworks1591201080882\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"neo4j\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/neo4j\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"neos\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/neos\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"neowaybusinesssolutions-4956350\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/neowaybusinesssolutions-4956350\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netapp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netapp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netatwork\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netatwork\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netfoundryinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netfoundryinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netgate\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netgate\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netikus-net-ltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netikus-net-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netiq\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netiq\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netka\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netka\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netmail\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netmail\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netscout\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netscout\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netspi\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netspi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netsweeper\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netsweeper\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"networksexchangetechnologyltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/networksexchangetechnologyltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netwrix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netwrix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netx\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netx\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"neusoft-neteye\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/neusoft-neteye\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"newnetcommunicationtechnologies1589991852134\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/newnetcommunicationtechnologies1589991852134\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"NewRelic.Infrastructure.Extensions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/NewRelic.Infrastructure.Extensions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"newtglobalconsultingllc1581492268566\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/newtglobalconsultingllc1581492268566\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nextronic-5290868\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nextronic-5290868\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nginxinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nginxinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nice-it-management-solutions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nice-it-management-solutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nicepeopleatwork\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nicepeopleatwork\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nilespartnersinc1617691698386\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nilespartnersinc1617691698386\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"niolabs-5229713\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/niolabs-5229713\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nirvatosoftwarepvtltd1601368706606\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nirvatosoftwarepvtltd1601368706606\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nodejsapi\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nodejsapi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"noianetworklimited1584098036197\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/noianetworklimited1584098036197\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nokiaofamericacorporation1591716055441\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nokiaofamericacorporation1591716055441\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"noobaa\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/noobaa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"norcominformationtechnologygmbhcokgaa\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/norcominformationtechnologygmbhcokgaa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"noricumcloudsolutions1600524477681\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/noricumcloudsolutions1600524477681\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"norsync\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/norsync\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"northbridge-secure\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/northbridge-secure\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nozominetworks1582208017986\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nozominetworks1582208017986\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nri\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nri\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ntegralinc1586961136942\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ntegralinc1586961136942\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ntt-data-intellilink-corporation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ntt-data-intellilink-corporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nttdata\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nttdata\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nttltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nttltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nuco-networks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nuco-networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"numbersbelieve\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/numbersbelieve\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"numtrallcpublisher\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/numtrallcpublisher\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nuxeo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nuxeo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nvidia\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nvidia\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"o2mc-real-time-data-platform\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/o2mc-real-time-data-platform\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"objectivity-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/objectivity-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"objectivity1595351622261\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/objectivity1595351622261\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"oceanblue-cloud\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/oceanblue-cloud\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"OctopusDeploy.Tentacle\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/OctopusDeploy.Tentacle\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"odix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/odix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"odysseuscomputationalsolutions1630242118741\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/odysseuscomputationalsolutions1630242118741\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"odysseyconsultantsltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/odysseyconsultantsltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"officeatwork-ag\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/officeatwork-ag\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"omega-software\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/omega-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"onapsis\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/onapsis\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"oncore_cloud_services-4944214\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/oncore_cloud_services-4944214\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"onexgroup\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/onexgroup\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"onspecta\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/onspecta\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ontology\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ontology\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"onyx-point-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/onyx-point-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"op5\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/op5\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"open-connect-systems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/open-connect-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"opencell\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/opencell\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"openlinkswcom-pago\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/openlinkswcom-pago\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"OpenLogic\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/OpenLogic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"openrefactoryinc1620140917523\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/openrefactoryinc1620140917523\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"openshotstudiosllc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/openshotstudiosllc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"opentext\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/opentext\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"openvpn\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/openvpn\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"opslogix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/opslogix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"opswatinc1619007967290\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/opswatinc1619007967290\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"optimitiveslu1618320281443\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/optimitiveslu1618320281443\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"option3\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/option3\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Oracle\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Oracle\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"oraylis\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/oraylis\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"oraylisbi\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/oraylisbi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"orbs-network\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/orbs-network\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"oriana\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/oriana\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"orientdb\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/orientdb\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"oroinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/oroinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"osirium-ltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/osirium-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"osisoft\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/osisoft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"osnexus\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/osnexus\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"outpost24\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/outpost24\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"outsystems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/outsystems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ovaledge1618392232783\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ovaledge1618392232783\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pachyderminc1585170006545\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pachyderminc1585170006545\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pacteratechnologiesinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pacteratechnologiesinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"paladionnetworkspvtltd1606120508449\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/paladionnetworkspvtltd1606120508449\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"paloaltonetworks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/paloaltonetworks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"panopta\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/panopta\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"panorama-necto\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/panorama-necto\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"panzura-file-system\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/panzura-file-system\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"parabole\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/parabole\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"paralaxiomtechnologiesprivatelimited1596433357886\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/paralaxiomtechnologiesprivatelimited1596433357886\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"parallels\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/parallels\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"parasoft\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/parasoft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"parkersoftwarelimited1609786657569\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/parkersoftwarelimited1609786657569\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"parsec-for-teams\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/parsec-for-teams\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pasifikciptamandiri\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pasifikciptamandiri\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"passlogy\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/passlogy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"paxata\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/paxata\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pcman\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pcman\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"peer-software-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/peer-software-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"penta-security-systems-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/penta-security-systems-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"percona\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/percona\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"perforce\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/perforce\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"periscope-tech-4791746\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/periscope-tech-4791746\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"piolinkinc1582849368309\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/piolinkinc1582849368309\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pivotal\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pivotal\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pixitmedia1591611150480\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pixitmedia1591611150480\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"plesk\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/plesk\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pmsoftwareinternational1603102514882\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pmsoftwareinternational1603102514882\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pnop\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pnop\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"polarityioinc1628691850891\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/polarityioinc1628691850891\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"portalarchitects\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/portalarchitects\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"portsysinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/portsysinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"postgres-pro\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/postgres-pro\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"powerbireach\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/powerbireach\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"prakshepprivatelimited1619949827900\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/prakshepprivatelimited1619949827900\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"prestashop\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/prestashop\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"prestige_informatique-1090178\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/prestige_informatique-1090178\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"prime-strategy\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/prime-strategy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"primekey\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/primekey\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"primestrategynewyorkinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/primestrategynewyorkinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pro-vision\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pro-vision\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"process-one\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/process-one\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"processgold\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/processgold\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"procomputers\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/procomputers\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"procomputerssrl1594239153814\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/procomputerssrl1594239153814\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"profecia\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/profecia\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Profiler.AgentOrchestrationRefactor.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Profiler.AgentOrchestrationRefactor.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Profiler.Master.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Profiler.Master.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"profisee\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/profisee\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"progelspa\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/progelspa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"progresssoftwarecorporation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/progresssoftwarecorporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"proliongmbh1628175060372\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/proliongmbh1628175060372\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"protegrityusainc1627404648458\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/protegrityusainc1627404648458\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"protiviti\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/protiviti\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"proventeq\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/proventeq\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ptc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ptc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ptsecurity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ptsecurity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pulse-secure\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pulse-secure\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pulsesecuretechnologies1638179500151\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pulsesecuretechnologies1638179500151\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"puppet\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/puppet\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"puppeteersoy1601024480557\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/puppeteersoy1601024480557\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"PuppetLabs\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/PuppetLabs\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"PuppetLabs.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/PuppetLabs.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"purestorageinc1578960262525\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/purestorageinc1578960262525\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pydio\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pydio\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pyramidanalytics\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pyramidanalytics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"qlik\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/qlik\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"qnapsystemsinc1601352084032\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/qnapsystemsinc1601352084032\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"qore-technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/qore-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"qs-solutions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/qs-solutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Qualys\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Qualys\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Qualys.LinuxAgent.GrayLabel\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Qualys.LinuxAgent.GrayLabel\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Qualys.WindowsAgent.GrayLabel\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Qualys.WindowsAgent.GrayLabel\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"qualysguard\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/qualysguard\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"quasardb\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/quasardb\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"qubole-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/qubole-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"quest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/quest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"racknap\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/racknap\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rackwareinc1619403669255\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rackwareinc1619403669255\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"radiant-logic\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/radiant-logic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"radware\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/radware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"raincode\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/raincode\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rancher\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rancher\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rapid7\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rapid7\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Rapid7.InsightPlatform\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Rapid7.InsightPlatform\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rapidminer\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rapidminer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"raynetgmbh\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/raynetgmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"readymind\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/readymind\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"realm\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/realm\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"reblaze\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/reblaze\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"RedHat\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/RedHat\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"redhat-rhel\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/redhat-rhel\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"redpoint-global\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/redpoint-global\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"refactr\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/refactr\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"refinitiv\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/refinitiv\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"refinitiv-4807503\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/refinitiv-4807503\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"relevance-lab\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/relevance-lab\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"remotelearner\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/remotelearner\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"res\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/res\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"resco\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/resco\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"resemblesystems1582780358300\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/resemblesystems1582780358300\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"responder-corp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/responder-corp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"revolution-analytics\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/revolution-analytics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rhcsolutions1586957910818\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rhcsolutions1586957910818\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ribboncommunications\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ribboncommunications\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"RightScaleLinux\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/RightScaleLinux\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"RightScaleWindowsServer\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/RightScaleWindowsServer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rimo3\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rimo3\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ringsoftwareresearchanddevelopmentinc1578946072257\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ringsoftwareresearchanddevelopmentinc1578946072257\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"riverbed\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/riverbed\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"RiverbedTechnology\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/RiverbedTechnology\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rmgtechnologiesinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rmgtechnologiesinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rocketml\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rocketml\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rocketsoftware\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rocketsoftware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rohdeschwarzcybersecuritygmbh\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rohdeschwarzcybersecuritygmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rohdeschwarzcybersecuritysas\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rohdeschwarzcybersecuritysas\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"roktech\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/roktech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rsa-security-llc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rsa-security-llc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rsk-labs\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rsk-labs\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rstudio-5237862\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rstudio-5237862\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rtts\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rtts\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rubrik-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rubrik-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"runecastsolutionslimited1614186396822\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/runecastsolutionslimited1614186396822\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"s2ix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/s2ix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"saama\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/saama\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"saasame-limited\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/saasame-limited\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"safesoftwareinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/safesoftwareinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"safeticatechnologiessro\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/safeticatechnologiessro\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"safetica_technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/safetica_technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"safetoopen1585013318137\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/safetoopen1585013318137\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"saltsecurity1583264186232\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/saltsecurity1583264186232\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"saltsecurity1583264669848\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/saltsecurity1583264669848\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"saltstack\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/saltstack\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"samsung-sds\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/samsung-sds\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"samsungelectronics1632860607983\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/samsungelectronics1632860607983\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"samsungsds-cello\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/samsungsds-cello\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"samsungsds_sdbe\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/samsungsds_sdbe\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sandhatatechnologieslimited1615753438737\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sandhatatechnologieslimited1615753438737\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sap\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sap\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sapphiretechnologieslimited1611758579346\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sapphiretechnologieslimited1611758579346\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sas-institute-560503\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sas-institute-560503\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"scaidata\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/scaidata\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"scalearc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/scalearc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"scalegrid\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/scalegrid\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"scality\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/scality\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"schrockeninc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/schrockeninc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sci\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sci\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sciencelogicinc1622565452194\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sciencelogicinc1622565452194\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"scientiamobile\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/scientiamobile\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"scontainug1595751515785\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/scontainug1595751515785\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"scubaanalytics\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/scubaanalytics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"scylladb1631195365807\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/scylladb1631195365807\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"seaqserviciossas1579029207572\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/seaqserviciossas1579029207572\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"searchbloxsoftwareinc1594309037050\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/searchbloxsoftwareinc1594309037050\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"secureworks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/secureworks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"securityonionsolutions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/securityonionsolutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"securityonionsolutionsllc1624649205155\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/securityonionsolutionsllc1624649205155\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"securosis\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/securosis\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"seequentltd1585781751395\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/seequentltd1585781751395\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"semarchy\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/semarchy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"semperis\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/semperis\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"senhasegura\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/senhasegura\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"SentinelOne.LinuxExtension\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/SentinelOne.LinuxExtension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"SentinelOne.WindowsExtension\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/SentinelOne.WindowsExtension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"SentinelOne.WindowsExtension.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/SentinelOne.WindowsExtension.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sentriumsl\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sentriumsl\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sentryone\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sentryone\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sepiosystems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sepiosystems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"seppmailag\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/seppmailag\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"seraumo1620002807288\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/seraumo1620002807288\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"service-control-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/service-control-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sesamesoftwareinc1622125191447\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sesamesoftwareinc1622125191447\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"shadow-soft\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/shadow-soft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"shareshiftneeraj.test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/shareshiftneeraj.test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sightapps\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sightapps\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"signal-sciences\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/signal-sciences\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"silk\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/silk\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"silver-peak-systems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/silver-peak-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"simmachinesinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/simmachinesinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"simontelephonics\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/simontelephonics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"simpledatalabsinc1635791235920\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/simpledatalabsinc1635791235920\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"simplifierag\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/simplifierag\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"simpligov\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/simpligov\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sinefa\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sinefa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sinequa\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sinequa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sinequa1588262295885\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sinequa1588262295885\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"singapore-telecommunications-limited\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/singapore-telecommunications-limited\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sios_datakeeper\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sios_datakeeper\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"siportalinc1581539156321\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/siportalinc1581539156321\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sisenseltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sisenseltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Site24x7\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Site24x7\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sktelecom\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sktelecom\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"skyarc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/skyarc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"skyboxsecurity1585187406404\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/skyboxsecurity1585187406404\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"skylarkcloud\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/skylarkcloud\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"smartbearsoftware\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/smartbearsoftware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"smartmessage-autoflow\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/smartmessage-autoflow\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"snaplogic\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/snaplogic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"snapt-adc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/snapt-adc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"snips\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/snips\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"soasta\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/soasta\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"softnas\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/softnas\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"softwarecentralas1642687699196\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/softwarecentralas1642687699196\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"softwarehut\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/softwarehut\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"softwebsolutions-4518310\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/softwebsolutions-4518310\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"soha\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/soha\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"solanolabs\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/solanolabs\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"solar-security\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/solar-security\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"solarwinds\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/solarwinds\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"solvedevops1643693563360\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/solvedevops1643693563360\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sonicwall-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sonicwall-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sophos\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sophos\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sourcegearllc1616101262784\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sourcegearllc1616101262784\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"south-river-technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/south-river-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"southrivertech1586314123192\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/southrivertech1586314123192\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"spacecurve\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/spacecurve\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"spaceliftinc1625499025476\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/spaceliftinc1625499025476\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"spagobi\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/spagobi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sparklinglogic\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sparklinglogic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"spectralcorelimited1619779004178\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/spectralcorelimited1619779004178\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"spektra\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/spektra\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sphere3d\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sphere3d\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"spideroakinc1588278690933\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/spideroakinc1588278690933\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"spirentcommunications1594084187199\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/spirentcommunications1594084187199\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"splunk\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/splunk\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sproutenetworks1593456311717\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sproutenetworks1593456311717\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sqlstream\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sqlstream\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"squadratechnologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/squadratechnologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"squaredup\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/squaredup\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"src-solution\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/src-solution\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stackato-platform-as-a-service\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stackato-platform-as-a-service\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Stackify.LinuxAgent.Extension\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Stackify.LinuxAgent.Extension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stackstorm\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stackstorm\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"startekfingerprintmatch\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/startekfingerprintmatch\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"startisolucoesemtecnologialtda1635263523201\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/startisolucoesemtecnologialtda1635263523201\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"starwind\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/starwind\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"StatusMonitor2.Diagnostics.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/StatusMonitor2.Diagnostics.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"StatusReport.Diagnostics.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/StatusReport.Diagnostics.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stealthbits\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stealthbits\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"steelhive\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/steelhive\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stonebondtechnologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stonebondtechnologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stonefly\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stonefly\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"storage_made_easy\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/storage_made_easy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stormshield\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stormshield\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"storone1594045543980\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/storone1594045543980\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"storreduce\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/storreduce\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"storwarespzoo1611743234900\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/storwarespzoo1611743234900\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"strangebee1595948424730\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/strangebee1595948424730\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"strataidentity1608323708170\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/strataidentity1608323708170\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stratis-group-ltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stratis-group-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stratodesk1611152769936\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stratodesk1611152769936\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stratumn\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stratumn\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"streamsets\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/streamsets\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"striim\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/striim\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stromasys\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stromasys\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"strongboxitllc1594816423884\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/strongboxitllc1594816423884\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"su\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/su\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"subscription.test.krsh\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/subscription.test.krsh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sumologic\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sumologic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sunatogmbh\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sunatogmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sunday\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sunday\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"SUSE\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/SUSE\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"swoopanalytics\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/swoopanalytics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sycom-technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sycom-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sycompatechnologycompanyinc1588192103892\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sycompatechnologycompanyinc1588192103892\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.CloudWorkloadProtection\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.CloudWorkloadProtection\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.CloudWorkloadProtection.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.CloudWorkloadProtection.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.CloudWorkloadProtection.TestOnStage\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.CloudWorkloadProtection.TestOnStage\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.QA\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.QA\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.staging\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.staging\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.test.ru2.latest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.test.ru2.latest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.test.ru2final\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.test.ru2final\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.test.ru2latest1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.test.ru2latest1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.test.ru4mp1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.test.ru4mp1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.test.ru4mp1.latest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.test.ru4mp1.latest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.test.ru4mp1final\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.test.ru4mp1final\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"symanteccorporation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/symanteccorporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"symantectest1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/symantectest1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"synack-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/synack-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"syncfusion\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/syncfusion\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"syncfusionbigdataplatfor\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/syncfusionbigdataplatfor\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"synechron-technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/synechron-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"synergixinc1585256339250\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/synergixinc1585256339250\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"synnexcorp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/synnexcorp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"syscomcomputerengineeringco1583913200141\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/syscomcomputerengineeringco1583913200141\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"syte\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/syte\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tableau\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tableau\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tactic\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tactic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"talari-networks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/talari-networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"talena-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/talena-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"talend\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/talend\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"talon\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/talon\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tamrinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tamrinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"targit\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/targit\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tata_communications\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tata_communications\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tavanttechnologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tavanttechnologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tavendo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tavendo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"te-systems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/te-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"techdivision\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/techdivision\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"techlatest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/techlatest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"technicheltd1606969724100\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/technicheltd1606969724100\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tecknolab\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tecknolab\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"telepat\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/telepat\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"teloscorporation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/teloscorporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tempered-networks-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tempered-networks-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tenable\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tenable\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tensormakecorpdbaoneclickai1608247756082\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tensormakecorpdbaoneclickai1608247756082\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"teradata\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/teradata\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Teradici\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Teradici\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"teramindinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/teramindinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.Gemalto.SafeNet.ProtectV\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.Gemalto.SafeNet.ProtectV\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.Gemalto.SafeNet.ProtectV.Azure\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.Gemalto.SafeNet.ProtectV.Azure\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.HP.AppDefender\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.HP.AppDefender\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.Microsoft.VisualStudio.Services\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.Microsoft.VisualStudio.Services\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.NJHP.AppDefender\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.NJHP.AppDefender\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.SqlServer.Managability\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.SqlServer.Managability\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.SqlServer.Management\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.SqlServer.Management\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.SqlServer.Management.corext\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.SqlServer.Management.corext\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test1.NJHP.AppDefender\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test1.NJHP.AppDefender\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test3.Microsoft.VisualStudio.Services\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test3.Microsoft.VisualStudio.Services\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"testable1603721901088\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/testable1603721901088\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"testpro\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/testpro\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"test_test_mix3pptest0011614206850774\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/test_test_mix3pptest0011614206850774\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"test_test_mneela1628617140187\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/test_test_mneela1628617140187\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"test_test_pmc2pc1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/test_test_pmc2pc1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thales-vormetric\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thales-vormetric\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thalesdiscplusainc1596561677238\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thalesdiscplusainc1596561677238\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thedatavaluefactoryltd1589348815922\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thedatavaluefactoryltd1589348815922\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thefreebsdfoundation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thefreebsdfoundation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thehdfgroup1616725197741\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thehdfgroup1616725197741\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"theumag1596442827072\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/theumag1596442827072\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"things-board\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/things-board\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thingscareinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thingscareinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thinprintgmbh\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thinprintgmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thorntechnologiesllc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thorntechnologiesllc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thoughtspot-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thoughtspot-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"threatintelligenceptyltd1586824172898\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/threatintelligenceptyltd1586824172898\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tibco-software\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tibco-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tidal-migrations\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tidal-migrations\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tidalmediainc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tidalmediainc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tig\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tig\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tiger-technology\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tiger-technology\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tigergraph\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tigergraph\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"timextender\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/timextender\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tmaxsoft\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tmaxsoft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tmaxsoft1608612658335\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tmaxsoft1608612658335\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tomsawyersoftwarecorp1613579206342\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tomsawyersoftwarecorp1613579206342\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"topicus\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/topicus\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"torusware\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/torusware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"totemo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/totemo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"townsend-security\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/townsend-security\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"transcendinformationinc1609918445926\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/transcendinformationinc1609918445926\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"transientxinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/transientxinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"transvault\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/transvault\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"trendmicro\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/trendmicro\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"TrendMicro.DeepSecurity.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/TrendMicro.DeepSecurity.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"TrendMicro.PortalProtect\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/TrendMicro.PortalProtect\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tresorit\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tresorit\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"trifacta\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/trifacta\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tripleblindinc1615730179432\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tripleblindinc1615730179432\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tripwire-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tripwire-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"truata1612259728221\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/truata1612259728221\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"truestack\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/truestack\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tryonsolutionsinc1596650621083\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tryonsolutionsinc1596650621083\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tsa-public-service\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tsa-public-service\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tunnelbiz\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tunnelbiz\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"turbonet\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/turbonet\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"turbonet1581982683964\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/turbonet1581982683964\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"twistlock\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/twistlock\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"typesafe\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/typesafe\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ubeeko\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ubeeko\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ubercloud\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ubercloud\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"uipath-5054924\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/uipath-5054924\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ulex\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ulex\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"unifi-software\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/unifi-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"unifiedstreaming1598872291606\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/unifiedstreaming1598872291606\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"uniprint-net\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/uniprint-net\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"unitrends\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/unitrends\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"unnisoft\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/unnisoft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"unravel-data\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/unravel-data\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"unscramblsingaporepteltd-4999260\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/unscramblsingaporepteltd-4999260\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"untangle\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/untangle\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"upsolver1594188634150\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/upsolver1594188634150\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"usp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/usp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"valohai\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/valohai\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"valtix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/valtix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"varmournetworks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/varmournetworks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"varnish\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/varnish\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vatacommunicationsinc1581644208717\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vatacommunicationsinc1581644208717\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vaultive-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vaultive-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vbot\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vbot\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vcinityinc1587684340545\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vcinityinc1587684340545\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vectraaiinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vectraaiinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"veeam\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/veeam\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"velocitydb-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/velocitydb-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"velocloud\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/velocloud\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vembutechnologiespvtltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vembutechnologiespvtltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vemn\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vemn\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"veritas\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/veritas\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"versanetworks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/versanetworks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"versasec\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/versasec\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vidispine\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vidispine\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vidizmo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vidizmo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vigyanlabs-innovations-pvt-ltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vigyanlabs-innovations-pvt-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vigyanlabsinc1581413676614\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vigyanlabsinc1581413676614\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"viptela\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/viptela\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vircom\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vircom\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"virtamovecorp1615909247913\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/virtamovecorp1615909247913\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"virtualpulsesro1607008728942\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/virtualpulsesro1607008728942\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"virtuozzointernationalgmbh1626704951469\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/virtuozzointernationalgmbh1626704951469\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"visualknowledgeshare1591795776234\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/visualknowledgeshare1591795776234\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"visualsoft-center\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/visualsoft-center\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vizixiotplatformretail001\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vizixiotplatformretail001\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vmlabinc1613642184700\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vmlabinc1613642184700\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vmturbo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vmturbo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vmware-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vmware-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vnomicinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vnomicinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"voiceelements\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/voiceelements\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"voleatechgmbh1636966911943\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/voleatechgmbh1636966911943\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"volterraedgeservices\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/volterraedgeservices\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Vormetric\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Vormetric\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vscconsultingptyltd1608535888097\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vscconsultingptyltd1608535888097\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vte\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vte\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vu-llc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vu-llc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vyulabsinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vyulabsinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"WAD2AI.Diagnostics.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/WAD2AI.Diagnostics.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"WAD2EventHub.Diagnostics.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/WAD2EventHub.Diagnostics.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wallarm\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wallarm\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wallix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wallix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wandisco\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wandisco\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wanos\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wanos\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wanpath-dba-myworkdrive\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wanpath-dba-myworkdrive\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wardy-it-solutions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wardy-it-solutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"warewolf-esb\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/warewolf-esb\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"watchguard-technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/watchguard-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"webaloinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/webaloinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"websense-apmailpe\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/websense-apmailpe\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"websoft9inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/websoft9inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wedoitllc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wedoitllc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"westernoceansoftwaresprivatelimited\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/westernoceansoftwaresprivatelimited\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wherescapesoftware\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wherescapesoftware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"winmagic_securedoc_cloudvm\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/winmagic_securedoc_cloudvm\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wintellisys-inc-4561600\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wintellisys-inc-4561600\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"witfooinc1590167223060\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/witfooinc1590167223060\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wmspanel\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wmspanel\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wood1595864497589\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wood1595864497589\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"workshare-technology\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/workshare-technology\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"world-programming\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/world-programming\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"worxogo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/worxogo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wowza\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wowza\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"xcontentptyltd-1329748\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/xcontentptyltd-1329748\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"xendata-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/xendata-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"xfinityinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/xfinityinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"xilinx\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/xilinx\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"xoriantcorporationazxteam1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/xoriantcorporationazxteam1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"xoriantsolutionspvtltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/xoriantsolutionspvtltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"xtremedata\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/xtremedata\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"xyzrd-group-ou\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/xyzrd-group-ou\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"yellowfin\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/yellowfin\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"yellowfininternationalptyltd1616363974066\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/yellowfininternationalptyltd1616363974066\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"yokogawarentalleasecorporation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/yokogawarentalleasecorporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"your-shop-online\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/your-shop-online\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"z1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/z1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"z4it-aps\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/z4it-aps\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zabbix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zabbix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zend\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zend\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zenterasystemsinc1605292453288\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zenterasystemsinc1605292453288\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zerodown_software\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zerodown_software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zerto\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zerto\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zettalane_systems-5254599\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zettalane_systems-5254599\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zevenet\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zevenet\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zilliz\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zilliz\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zoomdata\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zoomdata\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zscaler\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zscaler\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zscaler1579058425289\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zscaler1579058425289\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zultysinc1596831546163\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zultysinc1596831546163\"\r\n }\r\n]", - "StatusCode": 200 + "ResponseBody": "{\r\n \"name\": \"BGInfo\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGae69e07b/providers/Microsoft.Compute/virtualMachines/PSTestVMae69e0/extensions/BGInfo\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Creating\",\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"BGInfo\",\r\n \"typeHandlerVersion\": \"2.2\"\r\n }\r\n}", + "StatusCode": 201 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/southeastasia/publishers/Microsoft.Compute/artifacttypes/vmextension/types?api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9wdWJsaXNoZXJzL01pY3Jvc29mdC5Db21wdXRlL2FydGlmYWN0dHlwZXMvdm1leHRlbnNpb24vdHlwZXM/YXBpLXZlcnNpb249MjAyMS0xMS0wMQ==", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Compute/locations/southeastasia/operations/5744b3fe-64e7-476e-9ec7-c4f04dac2da4?p=e484ceca-6435-4a7f-b125-3d82e6b12014&api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzU3NDRiM2ZlLTY0ZTctNDc2ZS05ZWM3LWM0ZjA0ZGFjMmRhND9wPWU0ODRjZWNhLTY0MzUtNGE3Zi1iMTI1LTNkODJlNmIxMjAxNCZhcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2de24e7a-076f-46b1-a4ca-26c0ca293cb2" - ], - "Accept-Language": [ - "en-US" + "9562aeca-1534-4c2b-b00b-4c9e67a988c6" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ] }, "ResponseHeaders": { @@ -2317,38 +2341,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/ListVMExtensionTypes3Min;17999,Microsoft.Compute/ListVMExtensionTypes30Min;22499" + "Microsoft.Compute/GetOperation3Min;14995,Microsoft.Compute/GetOperation30Min;29995" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-served-by": [ - "1f3ad383-bb66-4279-b2a8-fbbcd093a7e3_132678318374571324" - ], "x-ms-request-id": [ - "26c52ad6-e1c4-4550-b6ec-291353c1da25" + "8fe94630-3b5e-4a0f-8cdd-10fbaf919d24" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11974" ], "x-ms-correlation-request-id": [ - "7f2d6ddd-c02c-485b-9127-2936c3526a60" + "e4904553-8fd9-4678-80b4-8e9258086f92" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T215526Z:7f2d6ddd-c02c-485b-9127-2936c3526a60" + "WESTINDIA:20220517T034850Z:e4904553-8fd9-4678-80b4-8e9258086f92" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 21:55:26 GMT" + "Tue, 17 May 2022 03:48:50 GMT" ], "Content-Length": [ - "1089" + "134" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2357,26 +2378,23 @@ "-1" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"BGInfo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"CustomScriptExtension\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"JsonADDomainExtension\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/JsonADDomainExtension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"VMAccessAgent\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/VMAccessAgent\"\r\n }\r\n]", + "ResponseBody": "{\r\n \"startTime\": \"2022-05-17T09:18:19.5653274+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"5744b3fe-64e7-476e-9ec7-c4f04dac2da4\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/southeastasia/publishers/Microsoft.Compute/artifacttypes/vmextension/types/BGInfo/versions?api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9wdWJsaXNoZXJzL01pY3Jvc29mdC5Db21wdXRlL2FydGlmYWN0dHlwZXMvdm1leHRlbnNpb24vdHlwZXMvQkdJbmZvL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMjEtMTEtMDE=", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Compute/locations/southeastasia/operations/5744b3fe-64e7-476e-9ec7-c4f04dac2da4?p=e484ceca-6435-4a7f-b125-3d82e6b12014&api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzU3NDRiM2ZlLTY0ZTctNDc2ZS05ZWM3LWM0ZjA0ZGFjMmRhND9wPWU0ODRjZWNhLTY0MzUtNGE3Zi1iMTI1LTNkODJlNmIxMjAxNCZhcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2de24e7a-076f-46b1-a4ca-26c0ca293cb2" - ], - "Accept-Language": [ - "en-US" + "9562aeca-1534-4c2b-b00b-4c9e67a988c6" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ] }, "ResponseHeaders": { @@ -2387,38 +2405,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/ListVMExtensions3Min;9999,Microsoft.Compute/ListVMExtensions30Min;21999" + "Microsoft.Compute/GetOperation3Min;14994,Microsoft.Compute/GetOperation30Min;29994" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-served-by": [ - "1f3ad383-bb66-4279-b2a8-fbbcd093a7e3_132678318374571324" - ], "x-ms-request-id": [ - "9d8984ac-db51-4d0f-9e9e-6b2435b6def0" + "d8985149-1d53-4513-9aeb-fb48ecf93f71" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11973" ], "x-ms-correlation-request-id": [ - "bca2e9bb-f8dd-4740-988e-908bd5afdbad" + "d3a09749-dbc1-4461-a413-baef043e9197" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T215527Z:bca2e9bb-f8dd-4740-988e-908bd5afdbad" + "WESTINDIA:20220517T034920Z:d3a09749-dbc1-4461-a413-baef043e9197" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 21:55:26 GMT" + "Tue, 17 May 2022 03:49:19 GMT" ], "Content-Length": [ - "1589" + "134" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2427,32 +2442,23 @@ "-1" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1.0\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo/Versions/1.0\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1.0.1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo/Versions/1.0.1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1.1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo/Versions/1.1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1.2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo/Versions/1.2\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1.2.2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo/Versions/1.2.2\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"2.1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo/Versions/2.1\"\r\n }\r\n]", + "ResponseBody": "{\r\n \"startTime\": \"2022-05-17T09:18:19.5653274+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"5744b3fe-64e7-476e-9ec7-c4f04dac2da4\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG3cdeb8e4/providers/Microsoft.Compute/virtualMachines/PSTestVM3cdeb0/extensions/BGInfo?api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHM2NkZWI4ZTQvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy9QU1Rlc3RWTTNjZGViMC9leHRlbnNpb25zL0JHSW5mbz9hcGktdmVyc2lvbj0yMDIxLTExLTAx", - "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\": \"southeastasia\"\r\n}", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Compute/locations/southeastasia/operations/5744b3fe-64e7-476e-9ec7-c4f04dac2da4?p=e484ceca-6435-4a7f-b125-3d82e6b12014&api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzU3NDRiM2ZlLTY0ZTctNDc2ZS05ZWM3LWM0ZjA0ZGFjMmRhND9wPWU0ODRjZWNhLTY0MzUtNGE3Zi1iMTI1LTNkODJlNmIxMjAxNCZhcGktdmVyc2lvbj0yMDIxLTExLTAx", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2de24e7a-076f-46b1-a4ca-26c0ca293cb2" - ], - "Accept-Language": [ - "en-US" + "9562aeca-1534-4c2b-b00b-4c9e67a988c6" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "193" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ] }, "ResponseHeaders": { @@ -2462,42 +2468,36 @@ "Pragma": [ "no-cache" ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/southeastasia/operations/f9882ee4-e162-4a43-9d13-4585e2d23cd2?p=34dc709c-01b2-42c4-84a2-256a9734610d&api-version=2021-11-01" - ], - "Azure-AsyncNotification": [ - "Enabled" - ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/UpdateVM3Min;239,Microsoft.Compute/UpdateVM30Min;1199" + "Microsoft.Compute/GetOperation3Min;14994,Microsoft.Compute/GetOperation30Min;29993" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f9882ee4-e162-4a43-9d13-4585e2d23cd2" + "d8891c35-4588-416a-9cff-2e1c8f61bc21" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11972" ], "x-ms-correlation-request-id": [ - "38efc5f2-7813-47d5-a0fc-79ccc70141fe" + "ff14fd50-5538-4e33-952a-618a59f3e067" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T215531Z:38efc5f2-7813-47d5-a0fc-79ccc70141fe" + "WESTINDIA:20220517T034950Z:ff14fd50-5538-4e33-952a-618a59f3e067" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 21:55:31 GMT" + "Tue, 17 May 2022 03:49:50 GMT" ], "Content-Length": [ - "484" + "134" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2506,23 +2506,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"BGInfo\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG3cdeb8e4/providers/Microsoft.Compute/virtualMachines/PSTestVM3cdeb0/extensions/BGInfo\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"southeastasia\",\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 + "ResponseBody": "{\r\n \"startTime\": \"2022-05-17T09:18:19.5653274+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"5744b3fe-64e7-476e-9ec7-c4f04dac2da4\"\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/southeastasia/operations/f9882ee4-e162-4a43-9d13-4585e2d23cd2?p=34dc709c-01b2-42c4-84a2-256a9734610d&api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Y5ODgyZWU0LWUxNjItNGE0My05ZDEzLTQ1ODVlMmQyM2NkMj9wPTM0ZGM3MDljLTAxYjItNDJjNC04NGEyLTI1NmE5NzM0NjEwZCZhcGktdmVyc2lvbj0yMDIxLTExLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Compute/locations/southeastasia/operations/5744b3fe-64e7-476e-9ec7-c4f04dac2da4?p=e484ceca-6435-4a7f-b125-3d82e6b12014&api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzU3NDRiM2ZlLTY0ZTctNDc2ZS05ZWM3LWM0ZjA0ZGFjMmRhND9wPWU0ODRjZWNhLTY0MzUtNGE3Zi1iMTI1LTNkODJlNmIxMjAxNCZhcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2de24e7a-076f-46b1-a4ca-26c0ca293cb2" + "9562aeca-1534-4c2b-b00b-4c9e67a988c6" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ] }, "ResponseHeaders": { @@ -2533,35 +2533,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperation3Min;14995,Microsoft.Compute/GetOperation30Min;29987" + "Microsoft.Compute/GetOperation3Min;14993,Microsoft.Compute/GetOperation30Min;29991" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "2ef86235-9c3a-4e17-aff5-e7411f553ac2" + "366337d4-ee24-46ea-ae6a-796bcb84d080" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "11971" ], "x-ms-correlation-request-id": [ - "370c0212-9656-4a45-8cf6-007abe88cfea" + "3779c983-8aa5-4bf7-b398-373f9531e60c" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T215602Z:370c0212-9656-4a45-8cf6-007abe88cfea" + "WESTINDIA:20220517T035021Z:3779c983-8aa5-4bf7-b398-373f9531e60c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 21:56:02 GMT" + "Tue, 17 May 2022 03:50:20 GMT" ], "Content-Length": [ - "134" + "184" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2570,23 +2570,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-02-23T16:55:30.2920501-05:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"f9882ee4-e162-4a43-9d13-4585e2d23cd2\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2022-05-17T09:18:19.5653274+05:30\",\r\n \"endTime\": \"2022-05-17T09:20:17.9391504+05:30\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"5744b3fe-64e7-476e-9ec7-c4f04dac2da4\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/southeastasia/operations/f9882ee4-e162-4a43-9d13-4585e2d23cd2?p=34dc709c-01b2-42c4-84a2-256a9734610d&api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Y5ODgyZWU0LWUxNjItNGE0My05ZDEzLTQ1ODVlMmQyM2NkMj9wPTM0ZGM3MDljLTAxYjItNDJjNC04NGEyLTI1NmE5NzM0NjEwZCZhcGktdmVyc2lvbj0yMDIxLTExLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGae69e07b/providers/Microsoft.Compute/virtualMachines/PSTestVMae69e0/extensions/BGInfo?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYWU2OWUwN2IvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy9QU1Rlc3RWTWFlNjllMC9leHRlbnNpb25zL0JHSW5mbz9hcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2de24e7a-076f-46b1-a4ca-26c0ca293cb2" + "9562aeca-1534-4c2b-b00b-4c9e67a988c6" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ] }, "ResponseHeaders": { @@ -2597,35 +2597,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperation3Min;14995,Microsoft.Compute/GetOperation30Min;29986" + "Microsoft.Compute/LowCostGet3Min;3987,Microsoft.Compute/LowCostGet30Min;31946" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e5cd906e-eb92-4d3e-97e5-0003d97a867b" + "19517e25-5d33-48f2-85ae-1e05ed398d2e" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "11970" ], "x-ms-correlation-request-id": [ - "e777023d-443a-48f8-b316-a38979ded379" + "594ecd48-59d3-4ccc-9333-1156ba501726" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T215633Z:e777023d-443a-48f8-b316-a38979ded379" + "WESTINDIA:20220517T035021Z:594ecd48-59d3-4ccc-9333-1156ba501726" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 21:56:32 GMT" + "Tue, 17 May 2022 03:50:20 GMT" ], "Content-Length": [ - "134" + "485" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2634,23 +2634,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-02-23T16:55:30.2920501-05:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"f9882ee4-e162-4a43-9d13-4585e2d23cd2\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"BGInfo\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGae69e07b/providers/Microsoft.Compute/virtualMachines/PSTestVMae69e0/extensions/BGInfo\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"BGInfo\",\r\n \"typeHandlerVersion\": \"2.2\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/southeastasia/operations/f9882ee4-e162-4a43-9d13-4585e2d23cd2?p=34dc709c-01b2-42c4-84a2-256a9734610d&api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Y5ODgyZWU0LWUxNjItNGE0My05ZDEzLTQ1ODVlMmQyM2NkMj9wPTM0ZGM3MDljLTAxYjItNDJjNC04NGEyLTI1NmE5NzM0NjEwZCZhcGktdmVyc2lvbj0yMDIxLTExLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGae69e07b/providers/Microsoft.RecoveryServices/vaults/PSTestRSVae69e07b?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYWU2OWUwN2IvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZhZTY5ZTA3Yj9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2de24e7a-076f-46b1-a4ca-26c0ca293cb2" + "77509a44-9cf8-421e-89c0-631491f4954e" + ], + "Accept-Language": [ + "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" + "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesClient/4.3.2.0" ] }, "ResponseHeaders": { @@ -2660,61 +2663,63 @@ "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperation3Min;14993,Microsoft.Compute/GetOperation30Min;29984" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-failure-cause": [ + "gateway" ], "x-ms-request-id": [ - "a7152d4e-3755-43f8-88ba-91237ee99410" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" + "3609f494-5dce-4936-a648-25e27dac5544" ], "x-ms-correlation-request-id": [ - "c07dee3e-7eb2-46b4-af66-556cd2bebd77" + "3609f494-5dce-4936-a648-25e27dac5544" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T215703Z:c07dee3e-7eb2-46b4-af66-556cd2bebd77" + "JIOINDIAWEST:20220517T035022Z:3609f494-5dce-4936-a648-25e27dac5544" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 21:57:03 GMT" - ], - "Content-Length": [ - "134" + "Tue, 17 May 2022 03:50:22 GMT" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" + ], + "Content-Length": [ + "239" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-02-23T16:55:30.2920501-05:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"f9882ee4-e162-4a43-9d13-4585e2d23cd2\"\r\n}", - "StatusCode": 200 + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.RecoveryServices/vaults/PSTestRSVae69e07b' under resource group 'PSTestRGae69e07b' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "StatusCode": 404 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/southeastasia/operations/f9882ee4-e162-4a43-9d13-4585e2d23cd2?p=34dc709c-01b2-42c4-84a2-256a9734610d&api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Y5ODgyZWU0LWUxNjItNGE0My05ZDEzLTQ1ODVlMmQyM2NkMj9wPTM0ZGM3MDljLTAxYjItNDJjNC04NGEyLTI1NmE5NzM0NjEwZCZhcGktdmVyc2lvbj0yMDIxLTExLTAx", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGae69e07b/providers/Microsoft.RecoveryServices/vaults/PSTestRSVae69e07b?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYWU2OWUwN2IvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZhZTY5ZTA3Yj9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"southeastasia\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "2de24e7a-076f-46b1-a4ca-26c0ca293cb2" + "a19ad4b0-7d2e-42b9-86da-1c85c16f97dc" + ], + "Accept-Language": [ + "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" + "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesClient/4.3.2.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "98" ] }, "ResponseHeaders": { @@ -2724,61 +2729,63 @@ "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperation3Min;14992,Microsoft.Compute/GetOperation30Min;29982" + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "f61d6697-a4d1-4ac0-a1df-50848c2845e5" + ], + "x-ms-client-request-id": [ + "a19ad4b0-7d2e-42b9-86da-1c85c16f97dc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ - "c170102a-801a-4355-8857-48ee4cecd7d7" - ], "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "Microsoft-IIS/10.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "209" ], "x-ms-correlation-request-id": [ - "aade0154-7e07-40eb-913e-bcc50d379d27" + "f61d6697-a4d1-4ac0-a1df-50848c2845e5" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T215733Z:aade0154-7e07-40eb-913e-bcc50d379d27" - ], - "X-Content-Type-Options": [ - "nosniff" + "JIOINDIAWEST:20220517T035029Z:f61d6697-a4d1-4ac0-a1df-50848c2845e5" ], "Date": [ - "Wed, 23 Feb 2022 21:57:33 GMT" + "Tue, 17 May 2022 03:50:29 GMT" ], "Content-Length": [ - "134" + "518" ], "Content-Type": [ - "application/json; charset=utf-8" + "application/json" ], "Expires": [ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-02-23T16:55:30.2920501-05:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"f9882ee4-e162-4a43-9d13-4585e2d23cd2\"\r\n}", - "StatusCode": 200 + "ResponseBody": "{\r\n \"location\": \"southeastasia\",\r\n \"name\": \"PSTestRSVae69e07b\",\r\n \"etag\": \"W/\\\"datetime'2022-05-17T03%3A50%3A28.5196743Z'\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateEndpointStateForBackup\": \"None\",\r\n \"privateEndpointStateForSiteRecovery\": \"None\",\r\n \"networkSettings\": {\r\n \"publicNetworkAccess\": \"Enabled\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGae69e07b/providers/Microsoft.RecoveryServices/vaults/PSTestRSVae69e07b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n }\r\n}", + "StatusCode": 201 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/southeastasia/operations/f9882ee4-e162-4a43-9d13-4585e2d23cd2?p=34dc709c-01b2-42c4-84a2-256a9734610d&api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Y5ODgyZWU0LWUxNjItNGE0My05ZDEzLTQ1ODVlMmQyM2NkMj9wPTM0ZGM3MDljLTAxYjItNDJjNC04NGEyLTI1NmE5NzM0NjEwZCZhcGktdmVyc2lvbj0yMDIxLTExLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGae69e07b/providers/Microsoft.RecoveryServices/vaults/PSTestRSVae69e07b/backupconfig/vaultconfig?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYWU2OWUwN2IvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZhZTY5ZTA3Yi9iYWNrdXBjb25maWcvdmF1bHRjb25maWc/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2de24e7a-076f-46b1-a4ca-26c0ca293cb2" + "3c0dc09c-ccc8-4728-9a51-1a32c99f9752" + ], + "Accept-Language": [ + "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -2788,61 +2795,66 @@ "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperation3Min;14993,Microsoft.Compute/GetOperation30Min;29981" + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ - "b7da9dde-259e-4215-a754-73e0655eef22" + "x-ms-client-request-id": [ + "3c0dc09c-ccc8-4728-9a51-1a32c99f9752" ], "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "Microsoft-IIS/10.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11984" + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "148" ], "x-ms-correlation-request-id": [ - "e4215b15-a65c-413f-88fb-496c343fcbae" + "b8f1d4f0-1553-4787-abeb-afb1a09dc276" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T215803Z:e4215b15-a65c-413f-88fb-496c343fcbae" - ], - "X-Content-Type-Options": [ - "nosniff" + "JIOINDIAWEST:20220517T035031Z:b8f1d4f0-1553-4787-abeb-afb1a09dc276" ], "Date": [ - "Wed, 23 Feb 2022 21:58:03 GMT" + "Tue, 17 May 2022 03:50:31 GMT" ], "Content-Length": [ - "184" + "380" ], "Content-Type": [ - "application/json; charset=utf-8" + "application/json" ], "Expires": [ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-02-23T16:55:30.2920501-05:00\",\r\n \"endTime\": \"2022-02-23T16:57:43.5435502-05:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"f9882ee4-e162-4a43-9d13-4585e2d23cd2\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGae69e07b/providers/Microsoft.RecoveryServices/vaults/PSTestRSVae69e07b/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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG3cdeb8e4/providers/Microsoft.Compute/virtualMachines/PSTestVM3cdeb0/extensions/BGInfo?api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHM2NkZWI4ZTQvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy9QU1Rlc3RWTTNjZGViMC9leHRlbnNpb25zL0JHSW5mbz9hcGktdmVyc2lvbj0yMDIxLTExLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGae69e07b/providers/Microsoft.RecoveryServices/vaults/PSTestRSVae69e07b/backupResourceGuardProxies?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYWU2OWUwN2IvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZhZTY5ZTA3Yi9iYWNrdXBSZXNvdXJjZUd1YXJkUHJveGllcz9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2de24e7a-076f-46b1-a4ca-26c0ca293cb2" + "3c0dc09c-ccc8-4728-9a51-1a32c99f9752" + ], + "Accept-Language": [ + "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -2852,168 +2864,39 @@ "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/LowCostGet3Min;3997,Microsoft.Compute/LowCostGet30Min;31980" + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "0c17a7a8-3b20-4684-aa54-cabf57360b43" + ], + "x-ms-client-request-id": [ + "3c0dc09c-ccc8-4728-9a51-1a32c99f9752", + "3c0dc09c-ccc8-4728-9a51-1a32c99f9752" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ - "71f54f1a-5f09-4400-8d08-10d06a2520b8" - ], "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11983" + "11997" ], "x-ms-correlation-request-id": [ - "2208d878-358a-4fbe-8d16-7bef042951d0" + "0c17a7a8-3b20-4684-aa54-cabf57360b43" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T215804Z:2208d878-358a-4fbe-8d16-7bef042951d0" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 23 Feb 2022 21:58:03 GMT" - ], - "Content-Length": [ - "485" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"name\": \"BGInfo\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG3cdeb8e4/providers/Microsoft.Compute/virtualMachines/PSTestVM3cdeb0/extensions/BGInfo\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"southeastasia\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG3cdeb8e4/providers/Microsoft.RecoveryServices/vaults/PSTestRSV3cdeb8e4?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHM2NkZWI4ZTQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YzY2RlYjhlND9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "38cce4b1-7508-47fa-a718-5d9daa119e84" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.700.21.56803", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesClient/4.3.2.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-failure-cause": [ - "gateway" - ], - "x-ms-request-id": [ - "9424436a-b3ef-4df1-acc1-7a9486873d7d" - ], - "x-ms-correlation-request-id": [ - "9424436a-b3ef-4df1-acc1-7a9486873d7d" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20220223T215808Z:9424436a-b3ef-4df1-acc1-7a9486873d7d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 23 Feb 2022 21:58:08 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "239" - ] - }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.RecoveryServices/vaults/PSTestRSV3cdeb8e4' under resource group 'PSTestRG3cdeb8e4' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", - "StatusCode": 404 - }, - { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG3cdeb8e4/providers/Microsoft.RecoveryServices/vaults/PSTestRSV3cdeb8e4?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHM2NkZWI4ZTQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YzY2RlYjhlND9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"southeastasia\"\r\n}", - "RequestHeaders": { - "x-ms-client-request-id": [ - "7c88c816-abfc-4237-97b0-941c7448114d" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.700.21.56803", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesClient/4.3.2.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": [ - "07522672-e215-46e2-8bfe-d335f566a8af" - ], - "x-ms-client-request-id": [ - "7c88c816-abfc-4237-97b0-941c7448114d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "209" - ], - "x-ms-correlation-request-id": [ - "07522672-e215-46e2-8bfe-d335f566a8af" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20220223T215818Z:07522672-e215-46e2-8bfe-d335f566a8af" + "JIOINDIAWEST:20220517T035032Z:0c17a7a8-3b20-4684-aa54-cabf57360b43" ], "Date": [ - "Wed, 23 Feb 2022 21:58:18 GMT" + "Tue, 17 May 2022 03:50:31 GMT" ], "Content-Length": [ - "466" + "12" ], "Content-Type": [ "application/json" @@ -3022,26 +2905,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"location\": \"southeastasia\",\r\n \"name\": \"PSTestRSV3cdeb8e4\",\r\n \"etag\": \"W/\\\"datetime'2022-02-23T21%3A58%3A17.0283182Z'\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateEndpointStateForBackup\": \"None\",\r\n \"privateEndpointStateForSiteRecovery\": \"None\"\r\n },\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG3cdeb8e4/providers/Microsoft.RecoveryServices/vaults/PSTestRSV3cdeb8e4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n }\r\n}", - "StatusCode": 201 + "ResponseBody": "{\r\n \"value\": []\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG3cdeb8e4/providers/Microsoft.RecoveryServices/vaults/PSTestRSV3cdeb8e4/backupconfig/vaultconfig?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHM2NkZWI4ZTQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YzY2RlYjhlNC9iYWNrdXBjb25maWcvdmF1bHRjb25maWc/YXBpLXZlcnNpb249MjAyMS0xMC0wMQ==", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGae69e07b/providers/Microsoft.RecoveryServices/vaults/PSTestRSVae69e07b/backupResourceGuardProxies?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYWU2OWUwN2IvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZhZTY5ZTA3Yi9iYWNrdXBSZXNvdXJjZUd1YXJkUHJveGllcz9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8dc1ab8c-0eb0-4ab8-8eb8-4921fa1d04ea" + "c36bb0f7-f47b-4f48-901d-faac990ed8fe" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -3055,11 +2938,11 @@ "nosniff" ], "x-ms-request-id": [ - "68a2433c-b836-4ff1-ab6f-c51acec00f6d" + "0e90e18f-2bbc-4400-bc46-de205074f823" ], "x-ms-client-request-id": [ - "8dc1ab8c-0eb0-4ab8-8eb8-4921fa1d04ea", - "8dc1ab8c-0eb0-4ab8-8eb8-4921fa1d04ea" + "c36bb0f7-f47b-4f48-901d-faac990ed8fe", + "c36bb0f7-f47b-4f48-901d-faac990ed8fe" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3070,20 +2953,20 @@ "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "149" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" ], "x-ms-correlation-request-id": [ - "68a2433c-b836-4ff1-ab6f-c51acec00f6d" + "0e90e18f-2bbc-4400-bc46-de205074f823" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T215820Z:68a2433c-b836-4ff1-ab6f-c51acec00f6d" + "JIOINDIAWEST:20220517T035147Z:0e90e18f-2bbc-4400-bc46-de205074f823" ], "Date": [ - "Wed, 23 Feb 2022 21:58:20 GMT" + "Tue, 17 May 2022 03:51:47 GMT" ], "Content-Length": [ - "380" + "12" ], "Content-Type": [ "application/json" @@ -3092,26 +2975,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG3cdeb8e4/providers/Microsoft.RecoveryServices/vaults/PSTestRSV3cdeb8e4/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}", + "ResponseBody": "{\r\n \"value\": []\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG3cdeb8e4/providers/Microsoft.RecoveryServices/vaults/PSTestRSV3cdeb8e4/backupconfig/vaultconfig?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHM2NkZWI4ZTQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YzY2RlYjhlNC9iYWNrdXBjb25maWcvdmF1bHRjb25maWc/YXBpLXZlcnNpb249MjAyMS0xMC0wMQ==", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGae69e07b/providers/Microsoft.RecoveryServices/vaults/PSTestRSVae69e07b/backupconfig/vaultconfig?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYWU2OWUwN2IvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZhZTY5ZTA3Yi9iYWNrdXBjb25maWcvdmF1bHRjb25maWc/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "PATCH", "RequestBody": "{\r\n \"properties\": {\r\n \"enhancedSecurityState\": \"Enabled\",\r\n \"softDeleteFeatureState\": \"Disabled\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "8dc1ab8c-0eb0-4ab8-8eb8-4921fa1d04ea" + "3c0dc09c-ccc8-4728-9a51-1a32c99f9752" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3131,11 +3014,11 @@ "nosniff" ], "x-ms-request-id": [ - "608e2236-73f4-4571-9e84-1fc7b5c9fed4" + "7f900f7c-9bd5-45ff-b63f-216bff34b12e" ], "x-ms-client-request-id": [ - "8dc1ab8c-0eb0-4ab8-8eb8-4921fa1d04ea", - "8dc1ab8c-0eb0-4ab8-8eb8-4921fa1d04ea" + "3c0dc09c-ccc8-4728-9a51-1a32c99f9752", + "3c0dc09c-ccc8-4728-9a51-1a32c99f9752" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3147,16 +3030,16 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1197" ], "x-ms-correlation-request-id": [ - "608e2236-73f4-4571-9e84-1fc7b5c9fed4" + "7f900f7c-9bd5-45ff-b63f-216bff34b12e" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T215821Z:608e2236-73f4-4571-9e84-1fc7b5c9fed4" + "JIOINDIAWEST:20220517T035034Z:7f900f7c-9bd5-45ff-b63f-216bff34b12e" ], "Date": [ - "Wed, 23 Feb 2022 21:58:21 GMT" + "Tue, 17 May 2022 03:50:33 GMT" ], "Content-Length": [ "381" @@ -3168,26 +3051,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG3cdeb8e4/providers/Microsoft.RecoveryServices/vaults/PSTestRSV3cdeb8e4/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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGae69e07b/providers/Microsoft.RecoveryServices/vaults/PSTestRSVae69e07b/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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG3cdeb8e4/providers/Microsoft.RecoveryServices/vaults/PSTestRSV3cdeb8e4/backupProtectionContainers?$filter=friendlyName%20eq%20'PSTestVM3cdeb0'%20and%20backupManagementType%20eq%20'AzureIaasVM'%20and%20status%20eq%20'Registered'&api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHM2NkZWI4ZTQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YzY2RlYjhlNC9iYWNrdXBQcm90ZWN0aW9uQ29udGFpbmVycz8kZmlsdGVyPWZyaWVuZGx5TmFtZSUyMGVxJTIwJ1BTVGVzdFZNM2NkZWIwJyUyMGFuZCUyMGJhY2t1cE1hbmFnZW1lbnRUeXBlJTIwZXElMjAnQXp1cmVJYWFzVk0nJTIwYW5kJTIwc3RhdHVzJTIwZXElMjAnUmVnaXN0ZXJlZCcmYXBpLXZlcnNpb249MjAyMS0xMC0wMQ==", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGae69e07b/providers/Microsoft.RecoveryServices/vaults/PSTestRSVae69e07b/backupProtectionContainers?$filter=friendlyName%20eq%20'PSTestVMae69e0'%20and%20backupManagementType%20eq%20'AzureIaasVM'%20and%20status%20eq%20'Registered'&api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYWU2OWUwN2IvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZhZTY5ZTA3Yi9iYWNrdXBQcm90ZWN0aW9uQ29udGFpbmVycz8kZmlsdGVyPWZyaWVuZGx5TmFtZSUyMGVxJTIwJ1BTVGVzdFZNYWU2OWUwJyUyMGFuZCUyMGJhY2t1cE1hbmFnZW1lbnRUeXBlJTIwZXElMjAnQXp1cmVJYWFzVk0nJTIwYW5kJTIwc3RhdHVzJTIwZXElMjAnUmVnaXN0ZXJlZCcmYXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "059efe21-3a8d-4e6a-98c0-c7a937af1f4b" + "abe3de0e-6b2c-4f5e-af98-ecffcd926eea" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -3201,11 +3084,11 @@ "nosniff" ], "x-ms-request-id": [ - "988dd98f-8bb3-4141-892f-d6ba66f0aa58" + "6d254b91-9c00-40ca-983a-71e180c81afd" ], "x-ms-client-request-id": [ - "059efe21-3a8d-4e6a-98c0-c7a937af1f4b", - "059efe21-3a8d-4e6a-98c0-c7a937af1f4b" + "abe3de0e-6b2c-4f5e-af98-ecffcd926eea", + "abe3de0e-6b2c-4f5e-af98-ecffcd926eea" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3217,16 +3100,16 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "149" + "146" ], "x-ms-correlation-request-id": [ - "988dd98f-8bb3-4141-892f-d6ba66f0aa58" + "6d254b91-9c00-40ca-983a-71e180c81afd" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T215827Z:988dd98f-8bb3-4141-892f-d6ba66f0aa58" + "JIOINDIAWEST:20220517T035039Z:6d254b91-9c00-40ca-983a-71e180c81afd" ], "Date": [ - "Wed, 23 Feb 2022 21:58:26 GMT" + "Tue, 17 May 2022 03:50:39 GMT" ], "Content-Length": [ "12" @@ -3242,22 +3125,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG3cdeb8e4/providers/Microsoft.RecoveryServices/vaults/PSTestRSV3cdeb8e4/backupProtectionContainers?$filter=friendlyName%20eq%20'PSTestVM3cdeb0'%20and%20backupManagementType%20eq%20'AzureIaasVM'%20and%20status%20eq%20'Registered'&api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHM2NkZWI4ZTQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YzY2RlYjhlNC9iYWNrdXBQcm90ZWN0aW9uQ29udGFpbmVycz8kZmlsdGVyPWZyaWVuZGx5TmFtZSUyMGVxJTIwJ1BTVGVzdFZNM2NkZWIwJyUyMGFuZCUyMGJhY2t1cE1hbmFnZW1lbnRUeXBlJTIwZXElMjAnQXp1cmVJYWFzVk0nJTIwYW5kJTIwc3RhdHVzJTIwZXElMjAnUmVnaXN0ZXJlZCcmYXBpLXZlcnNpb249MjAyMS0xMC0wMQ==", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGae69e07b/providers/Microsoft.RecoveryServices/vaults/PSTestRSVae69e07b/backupProtectionContainers?$filter=friendlyName%20eq%20'PSTestVMae69e0'%20and%20backupManagementType%20eq%20'AzureIaasVM'%20and%20status%20eq%20'Registered'&api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYWU2OWUwN2IvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZhZTY5ZTA3Yi9iYWNrdXBQcm90ZWN0aW9uQ29udGFpbmVycz8kZmlsdGVyPWZyaWVuZGx5TmFtZSUyMGVxJTIwJ1BTVGVzdFZNYWU2OWUwJyUyMGFuZCUyMGJhY2t1cE1hbmFnZW1lbnRUeXBlJTIwZXElMjAnQXp1cmVJYWFzVk0nJTIwYW5kJTIwc3RhdHVzJTIwZXElMjAnUmVnaXN0ZXJlZCcmYXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3629e815-9552-45a3-b404-a70bc37e1ea8" + "db060d6c-4378-4a4f-ab36-df38958b40ee" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -3271,11 +3154,11 @@ "nosniff" ], "x-ms-request-id": [ - "32f62322-ae55-40b1-9771-b4a955c862cd" + "27ea4758-5e7c-4841-a117-f97f547db7f7" ], "x-ms-client-request-id": [ - "3629e815-9552-45a3-b404-a70bc37e1ea8", - "3629e815-9552-45a3-b404-a70bc37e1ea8" + "db060d6c-4378-4a4f-ab36-df38958b40ee", + "db060d6c-4378-4a4f-ab36-df38958b40ee" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3287,16 +3170,16 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "148" + "145" ], "x-ms-correlation-request-id": [ - "32f62322-ae55-40b1-9771-b4a955c862cd" + "27ea4758-5e7c-4841-a117-f97f547db7f7" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T215918Z:32f62322-ae55-40b1-9771-b4a955c862cd" + "JIOINDIAWEST:20220517T035128Z:27ea4758-5e7c-4841-a117-f97f547db7f7" ], "Date": [ - "Wed, 23 Feb 2022 21:59:18 GMT" + "Tue, 17 May 2022 03:51:27 GMT" ], "Content-Length": [ "914" @@ -3308,26 +3191,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG3cdeb8e4/providers/Microsoft.RecoveryServices/vaults/PSTestRSV3cdeb8e4/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrg3cdeb8e4;pstestvm3cdeb0\",\r\n \"name\": \"IaasVMContainer;iaasvmcontainerv2;pstestrg3cdeb8e4;pstestvm3cdeb0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers\",\r\n \"properties\": {\r\n \"virtualMachineId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG3cdeb8e4/providers/Microsoft.Compute/virtualMachines/PSTestVM3cdeb0\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"resourceGroup\": \"PSTestRG3cdeb8e4\",\r\n \"friendlyName\": \"PSTestVM3cdeb0\",\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGae69e07b/providers/Microsoft.RecoveryServices/vaults/PSTestRSVae69e07b/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrgae69e07b;pstestvmae69e0\",\r\n \"name\": \"IaasVMContainer;iaasvmcontainerv2;pstestrgae69e07b;pstestvmae69e0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers\",\r\n \"properties\": {\r\n \"virtualMachineId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGae69e07b/providers/Microsoft.Compute/virtualMachines/PSTestVMae69e0\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"resourceGroup\": \"PSTestRGae69e07b\",\r\n \"friendlyName\": \"PSTestVMae69e0\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG3cdeb8e4/providers/Microsoft.RecoveryServices/vaults/PSTestRSV3cdeb8e4/backupPolicies/DefaultPolicy?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHM2NkZWI4ZTQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YzY2RlYjhlNC9iYWNrdXBQb2xpY2llcy9EZWZhdWx0UG9saWN5P2FwaS12ZXJzaW9uPTIwMjEtMTAtMDE=", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGae69e07b/providers/Microsoft.RecoveryServices/vaults/PSTestRSVae69e07b/backupPolicies/DefaultPolicy?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYWU2OWUwN2IvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZhZTY5ZTA3Yi9iYWNrdXBQb2xpY2llcy9EZWZhdWx0UG9saWN5P2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a685d141-6605-40e1-ac7b-106871bed9f4" + "d4fe764e-20c3-4d74-bfb8-3ac7c7baed18" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -3341,11 +3224,11 @@ "nosniff" ], "x-ms-request-id": [ - "7197adbb-3ee4-4b51-b8d5-62996076d506" + "ef4aea96-f8e2-4ca2-a74e-01f9154ed6f3" ], "x-ms-client-request-id": [ - "a685d141-6605-40e1-ac7b-106871bed9f4", - "a685d141-6605-40e1-ac7b-106871bed9f4" + "d4fe764e-20c3-4d74-bfb8-3ac7c7baed18", + "d4fe764e-20c3-4d74-bfb8-3ac7c7baed18" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3357,16 +3240,16 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "149" + "148" ], "x-ms-correlation-request-id": [ - "7197adbb-3ee4-4b51-b8d5-62996076d506" + "ef4aea96-f8e2-4ca2-a74e-01f9154ed6f3" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T215827Z:7197adbb-3ee4-4b51-b8d5-62996076d506" + "JIOINDIAWEST:20220517T035040Z:ef4aea96-f8e2-4ca2-a74e-01f9154ed6f3" ], "Date": [ - "Wed, 23 Feb 2022 21:58:27 GMT" + "Tue, 17 May 2022 03:50:40 GMT" ], "Content-Length": [ "762" @@ -3378,26 +3261,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG3cdeb8e4/providers/Microsoft.RecoveryServices/vaults/PSTestRSV3cdeb8e4/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 \"2022-02-24T07: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 \"2022-02-24T07:30:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 30,\r\n \"durationType\": \"Days\"\r\n }\r\n }\r\n },\r\n \"instantRpRetentionRangeInDays\": 2,\r\n \"timeZone\": \"UTC\",\r\n \"protectedItemsCount\": 0\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGae69e07b/providers/Microsoft.RecoveryServices/vaults/PSTestRSVae69e07b/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 \"2022-05-17T13: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 \"2022-05-17T13:30:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 30,\r\n \"durationType\": \"Days\"\r\n }\r\n }\r\n },\r\n \"instantRpRetentionRangeInDays\": 2,\r\n \"timeZone\": \"UTC\",\r\n \"protectedItemsCount\": 0\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG3cdeb8e4/providers/Microsoft.RecoveryServices/vaults/PSTestRSV3cdeb8e4/backupProtectableItems?$filter=backupManagementType%20eq%20'AzureIaasVM'&api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHM2NkZWI4ZTQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YzY2RlYjhlNC9iYWNrdXBQcm90ZWN0YWJsZUl0ZW1zPyRmaWx0ZXI9YmFja3VwTWFuYWdlbWVudFR5cGUlMjBlcSUyMCdBenVyZUlhYXNWTScmYXBpLXZlcnNpb249MjAyMS0xMC0wMQ==", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGae69e07b/providers/Microsoft.RecoveryServices/vaults/PSTestRSVae69e07b/backupProtectableItems?$filter=backupManagementType%20eq%20'AzureIaasVM'&api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYWU2OWUwN2IvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZhZTY5ZTA3Yi9iYWNrdXBQcm90ZWN0YWJsZUl0ZW1zPyRmaWx0ZXI9YmFja3VwTWFuYWdlbWVudFR5cGUlMjBlcSUyMCdBenVyZUlhYXNWTScmYXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "06332cbe-916d-4f53-980d-559abc161adf" + "eb47954c-8952-45ac-8591-cfd34aebaa60" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -3411,11 +3294,11 @@ "nosniff" ], "x-ms-request-id": [ - "50fad0c1-289a-43cf-a510-30137c8aecdf" + "ac57a204-8cc3-4ed1-8b86-ad04fba12945" ], "x-ms-client-request-id": [ - "06332cbe-916d-4f53-980d-559abc161adf", - "06332cbe-916d-4f53-980d-559abc161adf" + "eb47954c-8952-45ac-8591-cfd34aebaa60", + "eb47954c-8952-45ac-8591-cfd34aebaa60" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3427,19 +3310,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "149" + "148" ], "x-ms-correlation-request-id": [ - "50fad0c1-289a-43cf-a510-30137c8aecdf" + "ac57a204-8cc3-4ed1-8b86-ad04fba12945" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T215828Z:50fad0c1-289a-43cf-a510-30137c8aecdf" + "JIOINDIAWEST:20220517T035041Z:ac57a204-8cc3-4ed1-8b86-ad04fba12945" ], "Date": [ - "Wed, 23 Feb 2022 21:58:28 GMT" + "Tue, 17 May 2022 03:50:40 GMT" ], "Content-Length": [ - "905" + "7033" ], "Content-Type": [ "application/json" @@ -3448,26 +3331,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG3cdeb8e4/providers/Microsoft.RecoveryServices/vaults/PSTestRSV3cdeb8e4/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrg3cdeb8e4;pstestvm3cdeb0/protectableItems/vm;iaasvmcontainerv2;pstestrg3cdeb8e4;pstestvm3cdeb0\",\r\n \"name\": \"iaasvmcontainerv2;pstestrg3cdeb8e4;pstestvm3cdeb0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems\",\r\n \"properties\": {\r\n \"virtualMachineId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG3cdeb8e4/providers/Microsoft.Compute/virtualMachines/PSTestVM3cdeb0\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"resourceGroup\": \"PSTestRG3cdeb8e4\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"protectableItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"friendlyName\": \"PSTestVM3cdeb0\",\r\n \"protectionState\": \"NotProtected\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGae69e07b/providers/Microsoft.RecoveryServices/vaults/PSTestRSVae69e07b/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;akneema;akneema-hana-vm/protectableItems/vm;iaasvmcontainerv2;akneema;akneema-hana-vm\",\r\n \"name\": \"iaasvmcontainerv2;akneema;akneema-hana-vm\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems\",\r\n \"properties\": {\r\n \"virtualMachineId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/akneema/providers/Microsoft.Compute/virtualMachines/akneema-hana-vm\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"resourceGroup\": \"akneema\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"protectableItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"friendlyName\": \"akneema-hana-vm\",\r\n \"protectionState\": \"NotProtected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGae69e07b/providers/Microsoft.RecoveryServices/vaults/PSTestRSVae69e07b/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;containerautoprotection;shrja-2019/protectableItems/vm;iaasvmcontainerv2;containerautoprotection;shrja-2019\",\r\n \"name\": \"iaasvmcontainerv2;containerautoprotection;shrja-2019\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems\",\r\n \"properties\": {\r\n \"virtualMachineId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/ContainerAutoProtection/providers/Microsoft.Compute/virtualMachines/shrja-2019\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"resourceGroup\": \"ContainerAutoProtection\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"protectableItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"friendlyName\": \"shrja-2019\",\r\n \"protectionState\": \"NotProtected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGae69e07b/providers/Microsoft.RecoveryServices/vaults/PSTestRSVae69e07b/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrgae69e07b;pstestvmae69e0/protectableItems/vm;iaasvmcontainerv2;pstestrgae69e07b;pstestvmae69e0\",\r\n \"name\": \"iaasvmcontainerv2;pstestrgae69e07b;pstestvmae69e0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems\",\r\n \"properties\": {\r\n \"virtualMachineId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGae69e07b/providers/Microsoft.Compute/virtualMachines/PSTestVMae69e0\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"resourceGroup\": \"PSTestRGae69e07b\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"protectableItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"friendlyName\": \"PSTestVMae69e0\",\r\n \"protectionState\": \"NotProtected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGae69e07b/providers/Microsoft.RecoveryServices/vaults/PSTestRSVae69e07b/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestwlrg1bca8;pstestwlvm1bca8/protectableItems/vm;iaasvmcontainerv2;pstestwlrg1bca8;pstestwlvm1bca8\",\r\n \"name\": \"iaasvmcontainerv2;pstestwlrg1bca8;pstestwlvm1bca8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems\",\r\n \"properties\": {\r\n \"virtualMachineId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/pstestwlRG1bca8/providers/Microsoft.Compute/virtualMachines/pstestwlvm1bca8\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"resourceGroup\": \"pstestwlRG1bca8\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"protectableItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"friendlyName\": \"pstestwlvm1bca8\",\r\n \"protectionState\": \"NotProtected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGae69e07b/providers/Microsoft.RecoveryServices/vaults/PSTestRSVae69e07b/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;shrja2008_group;shrja2008/protectableItems/vm;iaasvmcontainerv2;shrja2008_group;shrja2008\",\r\n \"name\": \"iaasvmcontainerv2;shrja2008_group;shrja2008\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems\",\r\n \"properties\": {\r\n \"virtualMachineId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/shrja2008_group/providers/Microsoft.Compute/virtualMachines/shrja2008\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"resourceGroup\": \"shrja2008_group\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"protectableItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"friendlyName\": \"shrja2008\",\r\n \"protectionState\": \"NotProtected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGae69e07b/providers/Microsoft.RecoveryServices/vaults/PSTestRSVae69e07b/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;shswain-rg-donotuse;dsdsdsad/protectableItems/vm;iaasvmcontainerv2;shswain-rg-donotuse;dsdsdsad\",\r\n \"name\": \"iaasvmcontainerv2;shswain-rg-donotuse;dsdsdsad\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems\",\r\n \"properties\": {\r\n \"virtualMachineId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/shswain-rg-donotuse/providers/Microsoft.Compute/virtualMachines/dsdsdsad\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"resourceGroup\": \"shswain-rg-donotuse\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"protectableItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"friendlyName\": \"dsdsdsad\",\r\n \"protectionState\": \"NotProtected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGae69e07b/providers/Microsoft.RecoveryServices/vaults/PSTestRSVae69e07b/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;shswain-rg-donotuse;iumjjkuui/protectableItems/vm;iaasvmcontainerv2;shswain-rg-donotuse;iumjjkuui\",\r\n \"name\": \"iaasvmcontainerv2;shswain-rg-donotuse;iumjjkuui\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems\",\r\n \"properties\": {\r\n \"virtualMachineId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/shswain-rg-donotuse/providers/Microsoft.Compute/virtualMachines/iumjjkuui\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"resourceGroup\": \"shswain-rg-donotuse\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"protectableItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"friendlyName\": \"iumjjkuui\",\r\n \"protectionState\": \"NotProtected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGae69e07b/providers/Microsoft.RecoveryServices/vaults/PSTestRSVae69e07b/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;sisi-rsv;sisi-mercury/protectableItems/vm;iaasvmcontainerv2;sisi-rsv;sisi-mercury\",\r\n \"name\": \"iaasvmcontainerv2;sisi-rsv;sisi-mercury\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems\",\r\n \"properties\": {\r\n \"virtualMachineId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/sisi-RSV/providers/Microsoft.Compute/virtualMachines/sisi-mercury\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"resourceGroup\": \"sisi-RSV\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"protectableItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"friendlyName\": \"sisi-mercury\",\r\n \"protectionState\": \"NotProtected\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG3cdeb8e4/providers/Microsoft.RecoveryServices/vaults/PSTestRSV3cdeb8e4/backupFabrics/Azure/protectionContainers/IaasVMContainer%3Biaasvmcontainerv2%3Bpstestrg3cdeb8e4%3Bpstestvm3cdeb0/protectedItems/vm%3Biaasvmcontainerv2%3Bpstestrg3cdeb8e4%3Bpstestvm3cdeb0?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHM2NkZWI4ZTQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YzY2RlYjhlNC9iYWNrdXBGYWJyaWNzL0F6dXJlL3Byb3RlY3Rpb25Db250YWluZXJzL0lhYXNWTUNvbnRhaW5lciUzQmlhYXN2bWNvbnRhaW5lcnYyJTNCcHN0ZXN0cmczY2RlYjhlNCUzQnBzdGVzdHZtM2NkZWIwL3Byb3RlY3RlZEl0ZW1zL3ZtJTNCaWFhc3ZtY29udGFpbmVydjIlM0Jwc3Rlc3RyZzNjZGViOGU0JTNCcHN0ZXN0dm0zY2RlYjA/YXBpLXZlcnNpb249MjAyMS0xMC0wMQ==", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGae69e07b/providers/Microsoft.RecoveryServices/vaults/PSTestRSVae69e07b/backupFabrics/Azure/protectionContainers/IaasVMContainer%3Biaasvmcontainerv2%3Bpstestrgae69e07b%3Bpstestvmae69e0/protectedItems/vm%3Biaasvmcontainerv2%3Bpstestrgae69e07b%3Bpstestvmae69e0?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYWU2OWUwN2IvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZhZTY5ZTA3Yi9iYWNrdXBGYWJyaWNzL0F6dXJlL3Byb3RlY3Rpb25Db250YWluZXJzL0lhYXNWTUNvbnRhaW5lciUzQmlhYXN2bWNvbnRhaW5lcnYyJTNCcHN0ZXN0cmdhZTY5ZTA3YiUzQnBzdGVzdHZtYWU2OWUwL3Byb3RlY3RlZEl0ZW1zL3ZtJTNCaWFhc3ZtY29udGFpbmVydjIlM0Jwc3Rlc3RyZ2FlNjllMDdiJTNCcHN0ZXN0dm1hZTY5ZTA/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"protectedItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"sourceResourceId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG3cdeb8e4/providers/Microsoft.Compute/virtualMachines/PSTestVM3cdeb0\",\r\n \"policyId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG3cdeb8e4/providers/Microsoft.RecoveryServices/vaults/PSTestRSV3cdeb8e4/backupPolicies/DefaultPolicy\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"protectedItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"sourceResourceId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGae69e07b/providers/Microsoft.Compute/virtualMachines/PSTestVMae69e0\",\r\n \"policyId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGae69e07b/providers/Microsoft.RecoveryServices/vaults/PSTestRSVae69e07b/backupPolicies/DefaultPolicy\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "06332cbe-916d-4f53-980d-559abc161adf" + "eb47954c-8952-45ac-8591-cfd34aebaa60" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3484,23 +3367,23 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG3cdeb8e4/providers/Microsoft.RecoveryServices/vaults/PSTestRSV3cdeb8e4/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrg3cdeb8e4;pstestvm3cdeb0/protectedItems/vm;iaasvmcontainerv2;pstestrg3cdeb8e4;pstestvm3cdeb0/operationResults/2f5f1ff7-4d16-44eb-a623-bb206d511527?api-version=2021-10-01" + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGae69e07b/providers/Microsoft.RecoveryServices/vaults/PSTestRSVae69e07b/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrgae69e07b;pstestvmae69e0/protectedItems/vm;iaasvmcontainerv2;pstestrgae69e07b;pstestvmae69e0/operationResults/9995a31d-e98e-4d40-9faa-f4669acbcbce?api-version=2022-02-01" ], "Retry-After": [ "60" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG3cdeb8e4/providers/Microsoft.RecoveryServices/vaults/PSTestRSV3cdeb8e4/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrg3cdeb8e4;pstestvm3cdeb0/protectedItems/vm;iaasvmcontainerv2;pstestrg3cdeb8e4;pstestvm3cdeb0/operationsStatus/2f5f1ff7-4d16-44eb-a623-bb206d511527?api-version=2021-10-01" + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGae69e07b/providers/Microsoft.RecoveryServices/vaults/PSTestRSVae69e07b/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrgae69e07b;pstestvmae69e0/protectedItems/vm;iaasvmcontainerv2;pstestrgae69e07b;pstestvmae69e0/operationsStatus/9995a31d-e98e-4d40-9faa-f4669acbcbce?api-version=2022-02-01" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "54c82393-ee6e-4870-acfa-38283e39f5fb" + "10100d46-d257-4d9e-8d53-df0a440ec4d7" ], "x-ms-client-request-id": [ - "06332cbe-916d-4f53-980d-559abc161adf", - "06332cbe-916d-4f53-980d-559abc161adf" + "eb47954c-8952-45ac-8591-cfd34aebaa60", + "eb47954c-8952-45ac-8591-cfd34aebaa60" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3509,16 +3392,16 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1196" ], "x-ms-correlation-request-id": [ - "54c82393-ee6e-4870-acfa-38283e39f5fb" + "10100d46-d257-4d9e-8d53-df0a440ec4d7" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T215829Z:54c82393-ee6e-4870-acfa-38283e39f5fb" + "JIOINDIAWEST:20220517T035042Z:10100d46-d257-4d9e-8d53-df0a440ec4d7" ], "Date": [ - "Wed, 23 Feb 2022 21:58:29 GMT" + "Tue, 17 May 2022 03:50:41 GMT" ], "Expires": [ "-1" @@ -3531,22 +3414,22 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG3cdeb8e4/providers/Microsoft.RecoveryServices/vaults/PSTestRSV3cdeb8e4/backupOperations/2f5f1ff7-4d16-44eb-a623-bb206d511527?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHM2NkZWI4ZTQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YzY2RlYjhlNC9iYWNrdXBPcGVyYXRpb25zLzJmNWYxZmY3LTRkMTYtNDRlYi1hNjIzLWJiMjA2ZDUxMTUyNz9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGae69e07b/providers/Microsoft.RecoveryServices/vaults/PSTestRSVae69e07b/backupOperations/9995a31d-e98e-4d40-9faa-f4669acbcbce?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYWU2OWUwN2IvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZhZTY5ZTA3Yi9iYWNrdXBPcGVyYXRpb25zLzk5OTVhMzFkLWU5OGUtNGQ0MC05ZmFhLWY0NjY5YWNiY2JjZT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "06332cbe-916d-4f53-980d-559abc161adf" + "eb47954c-8952-45ac-8591-cfd34aebaa60" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -3560,11 +3443,11 @@ "nosniff" ], "x-ms-request-id": [ - "8cc13e74-3c34-40b6-bb16-87fb89b9e386" + "56bb3b42-5ec1-4414-8582-bad52a14fa43" ], "x-ms-client-request-id": [ - "06332cbe-916d-4f53-980d-559abc161adf", - "06332cbe-916d-4f53-980d-559abc161adf" + "eb47954c-8952-45ac-8591-cfd34aebaa60", + "eb47954c-8952-45ac-8591-cfd34aebaa60" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3576,16 +3459,16 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "149" + "114" ], "x-ms-correlation-request-id": [ - "8cc13e74-3c34-40b6-bb16-87fb89b9e386" + "56bb3b42-5ec1-4414-8582-bad52a14fa43" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T215830Z:8cc13e74-3c34-40b6-bb16-87fb89b9e386" + "JIOINDIAWEST:20220517T035042Z:56bb3b42-5ec1-4414-8582-bad52a14fa43" ], "Date": [ - "Wed, 23 Feb 2022 21:58:29 GMT" + "Tue, 17 May 2022 03:50:42 GMT" ], "Content-Length": [ "188" @@ -3597,26 +3480,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"2f5f1ff7-4d16-44eb-a623-bb206d511527\",\r\n \"name\": \"2f5f1ff7-4d16-44eb-a623-bb206d511527\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-23T21:58:29.2236957Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"9995a31d-e98e-4d40-9faa-f4669acbcbce\",\r\n \"name\": \"9995a31d-e98e-4d40-9faa-f4669acbcbce\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T03:50:41.9045712Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG3cdeb8e4/providers/Microsoft.RecoveryServices/vaults/PSTestRSV3cdeb8e4/backupOperations/2f5f1ff7-4d16-44eb-a623-bb206d511527?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHM2NkZWI4ZTQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YzY2RlYjhlNC9iYWNrdXBPcGVyYXRpb25zLzJmNWYxZmY3LTRkMTYtNDRlYi1hNjIzLWJiMjA2ZDUxMTUyNz9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGae69e07b/providers/Microsoft.RecoveryServices/vaults/PSTestRSVae69e07b/backupOperations/9995a31d-e98e-4d40-9faa-f4669acbcbce?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYWU2OWUwN2IvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZhZTY5ZTA3Yi9iYWNrdXBPcGVyYXRpb25zLzk5OTVhMzFkLWU5OGUtNGQ0MC05ZmFhLWY0NjY5YWNiY2JjZT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "06332cbe-916d-4f53-980d-559abc161adf" + "eb47954c-8952-45ac-8591-cfd34aebaa60" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -3630,11 +3513,11 @@ "nosniff" ], "x-ms-request-id": [ - "f750de3d-24e6-4a08-9089-1e7f9e4df579" + "80ab3862-64fd-42a0-b4e0-16830c3ce240" ], "x-ms-client-request-id": [ - "06332cbe-916d-4f53-980d-559abc161adf", - "06332cbe-916d-4f53-980d-559abc161adf" + "eb47954c-8952-45ac-8591-cfd34aebaa60", + "eb47954c-8952-45ac-8591-cfd34aebaa60" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3646,16 +3529,16 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "148" + "113" ], "x-ms-correlation-request-id": [ - "f750de3d-24e6-4a08-9089-1e7f9e4df579" + "80ab3862-64fd-42a0-b4e0-16830c3ce240" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T215846Z:f750de3d-24e6-4a08-9089-1e7f9e4df579" + "JIOINDIAWEST:20220517T035048Z:80ab3862-64fd-42a0-b4e0-16830c3ce240" ], "Date": [ - "Wed, 23 Feb 2022 21:58:45 GMT" + "Tue, 17 May 2022 03:50:47 GMT" ], "Content-Length": [ "188" @@ -3667,26 +3550,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"2f5f1ff7-4d16-44eb-a623-bb206d511527\",\r\n \"name\": \"2f5f1ff7-4d16-44eb-a623-bb206d511527\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-23T21:58:29.2236957Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"9995a31d-e98e-4d40-9faa-f4669acbcbce\",\r\n \"name\": \"9995a31d-e98e-4d40-9faa-f4669acbcbce\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T03:50:41.9045712Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG3cdeb8e4/providers/Microsoft.RecoveryServices/vaults/PSTestRSV3cdeb8e4/backupOperations/2f5f1ff7-4d16-44eb-a623-bb206d511527?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHM2NkZWI4ZTQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YzY2RlYjhlNC9iYWNrdXBPcGVyYXRpb25zLzJmNWYxZmY3LTRkMTYtNDRlYi1hNjIzLWJiMjA2ZDUxMTUyNz9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGae69e07b/providers/Microsoft.RecoveryServices/vaults/PSTestRSVae69e07b/backupOperations/9995a31d-e98e-4d40-9faa-f4669acbcbce?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYWU2OWUwN2IvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZhZTY5ZTA3Yi9iYWNrdXBPcGVyYXRpb25zLzk5OTVhMzFkLWU5OGUtNGQ0MC05ZmFhLWY0NjY5YWNiY2JjZT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "06332cbe-916d-4f53-980d-559abc161adf" + "eb47954c-8952-45ac-8591-cfd34aebaa60" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -3700,11 +3583,11 @@ "nosniff" ], "x-ms-request-id": [ - "717d8ed6-8cd9-4cff-97af-162540513c2c" + "10eb45a1-7f2a-411d-b63b-31a0fa133df9" ], "x-ms-client-request-id": [ - "06332cbe-916d-4f53-980d-559abc161adf", - "06332cbe-916d-4f53-980d-559abc161adf" + "eb47954c-8952-45ac-8591-cfd34aebaa60", + "eb47954c-8952-45ac-8591-cfd34aebaa60" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3716,19 +3599,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "147" + "112" ], "x-ms-correlation-request-id": [ - "717d8ed6-8cd9-4cff-97af-162540513c2c" + "10eb45a1-7f2a-411d-b63b-31a0fa133df9" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T215916Z:717d8ed6-8cd9-4cff-97af-162540513c2c" + "JIOINDIAWEST:20220517T035053Z:10eb45a1-7f2a-411d-b63b-31a0fa133df9" ], "Date": [ - "Wed, 23 Feb 2022 21:59:15 GMT" + "Tue, 17 May 2022 03:50:53 GMT" ], "Content-Length": [ - "304" + "188" ], "Content-Type": [ "application/json" @@ -3737,26 +3620,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"2f5f1ff7-4d16-44eb-a623-bb206d511527\",\r\n \"name\": \"2f5f1ff7-4d16-44eb-a623-bb206d511527\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-02-23T21:58:29.2236957Z\",\r\n \"endTime\": \"2022-02-23T21:58:29.2236957Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"9be9f6a5-0eb4-46f0-ac23-14c41deeb95c\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"9995a31d-e98e-4d40-9faa-f4669acbcbce\",\r\n \"name\": \"9995a31d-e98e-4d40-9faa-f4669acbcbce\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T03:50:41.9045712Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG3cdeb8e4/providers/Microsoft.RecoveryServices/vaults/PSTestRSV3cdeb8e4/backupOperations/2f5f1ff7-4d16-44eb-a623-bb206d511527?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHM2NkZWI4ZTQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YzY2RlYjhlNC9iYWNrdXBPcGVyYXRpb25zLzJmNWYxZmY3LTRkMTYtNDRlYi1hNjIzLWJiMjA2ZDUxMTUyNz9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGae69e07b/providers/Microsoft.RecoveryServices/vaults/PSTestRSVae69e07b/backupOperations/9995a31d-e98e-4d40-9faa-f4669acbcbce?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYWU2OWUwN2IvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZhZTY5ZTA3Yi9iYWNrdXBPcGVyYXRpb25zLzk5OTVhMzFkLWU5OGUtNGQ0MC05ZmFhLWY0NjY5YWNiY2JjZT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "06332cbe-916d-4f53-980d-559abc161adf" + "eb47954c-8952-45ac-8591-cfd34aebaa60" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -3770,11 +3653,11 @@ "nosniff" ], "x-ms-request-id": [ - "d6820653-0069-43c7-9296-97a510cab302" + "8f51e13c-043c-4420-ad38-28734c796139" ], "x-ms-client-request-id": [ - "06332cbe-916d-4f53-980d-559abc161adf", - "06332cbe-916d-4f53-980d-559abc161adf" + "eb47954c-8952-45ac-8591-cfd34aebaa60", + "eb47954c-8952-45ac-8591-cfd34aebaa60" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3786,19 +3669,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "146" + "111" ], "x-ms-correlation-request-id": [ - "d6820653-0069-43c7-9296-97a510cab302" + "8f51e13c-043c-4420-ad38-28734c796139" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T215917Z:d6820653-0069-43c7-9296-97a510cab302" + "JIOINDIAWEST:20220517T035059Z:8f51e13c-043c-4420-ad38-28734c796139" ], "Date": [ - "Wed, 23 Feb 2022 21:59:16 GMT" + "Tue, 17 May 2022 03:50:58 GMT" ], "Content-Length": [ - "304" + "188" ], "Content-Type": [ "application/json" @@ -3807,26 +3690,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"2f5f1ff7-4d16-44eb-a623-bb206d511527\",\r\n \"name\": \"2f5f1ff7-4d16-44eb-a623-bb206d511527\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-02-23T21:58:29.2236957Z\",\r\n \"endTime\": \"2022-02-23T21:58:29.2236957Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"9be9f6a5-0eb4-46f0-ac23-14c41deeb95c\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"9995a31d-e98e-4d40-9faa-f4669acbcbce\",\r\n \"name\": \"9995a31d-e98e-4d40-9faa-f4669acbcbce\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T03:50:41.9045712Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG3cdeb8e4/providers/Microsoft.RecoveryServices/vaults/PSTestRSV3cdeb8e4/backupJobs/9be9f6a5-0eb4-46f0-ac23-14c41deeb95c?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHM2NkZWI4ZTQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YzY2RlYjhlNC9iYWNrdXBKb2JzLzliZTlmNmE1LTBlYjQtNDZmMC1hYzIzLTE0YzQxZGVlYjk1Yz9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGae69e07b/providers/Microsoft.RecoveryServices/vaults/PSTestRSVae69e07b/backupOperations/9995a31d-e98e-4d40-9faa-f4669acbcbce?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYWU2OWUwN2IvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZhZTY5ZTA3Yi9iYWNrdXBPcGVyYXRpb25zLzk5OTVhMzFkLWU5OGUtNGQ0MC05ZmFhLWY0NjY5YWNiY2JjZT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "06332cbe-916d-4f53-980d-559abc161adf" + "eb47954c-8952-45ac-8591-cfd34aebaa60" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -3836,40 +3719,39 @@ "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-IIS/10.0" - ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "bd0f1567-16f4-4c05-993a-a6e662b2bc72" + "833d3975-5471-41e9-8db4-8983c7faa392" ], "x-ms-client-request-id": [ - "06332cbe-916d-4f53-980d-559abc161adf", - "06332cbe-916d-4f53-980d-559abc161adf" - ], - "X-Powered-By": [ - "ASP.NET" + "eb47954c-8952-45ac-8591-cfd34aebaa60", + "eb47954c-8952-45ac-8591-cfd34aebaa60" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "149" + "110" ], "x-ms-correlation-request-id": [ - "bd0f1567-16f4-4c05-993a-a6e662b2bc72" + "833d3975-5471-41e9-8db4-8983c7faa392" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T215918Z:bd0f1567-16f4-4c05-993a-a6e662b2bc72" + "JIOINDIAWEST:20220517T035104Z:833d3975-5471-41e9-8db4-8983c7faa392" ], "Date": [ - "Wed, 23 Feb 2022 21:59:17 GMT" + "Tue, 17 May 2022 03:51:04 GMT" ], "Content-Length": [ - "839" + "188" ], "Content-Type": [ "application/json" @@ -3878,26 +3760,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG3cdeb8e4/providers/Microsoft.RecoveryServices/vaults/PSTestRSV3cdeb8e4/backupJobs/9be9f6a5-0eb4-46f0-ac23-14c41deeb95c\",\r\n \"name\": \"9be9f6a5-0eb4-46f0-ac23-14c41deeb95c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg3cdeb8e4;pstestvm3cdeb0\",\r\n \"duration\": \"PT30.9990803S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm3cdeb0\",\r\n \"Policy Name\": \"DefaultPolicy\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm3cdeb0\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"ConfigureBackup\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-02-23T21:58:29.2236957Z\",\r\n \"endTime\": \"2022-02-23T21:59:00.222776Z\",\r\n \"activityId\": \"06332cbe-916d-4f53-980d-559abc161adf\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"9995a31d-e98e-4d40-9faa-f4669acbcbce\",\r\n \"name\": \"9995a31d-e98e-4d40-9faa-f4669acbcbce\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T03:50:41.9045712Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG3cdeb8e4/providers/Microsoft.RecoveryServices/vaults/PSTestRSV3cdeb8e4/backupProtectedItems?$filter=backupManagementType%20eq%20'AzureIaasVM'%20and%20itemType%20eq%20'VM'&api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHM2NkZWI4ZTQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YzY2RlYjhlNC9iYWNrdXBQcm90ZWN0ZWRJdGVtcz8kZmlsdGVyPWJhY2t1cE1hbmFnZW1lbnRUeXBlJTIwZXElMjAnQXp1cmVJYWFzVk0nJTIwYW5kJTIwaXRlbVR5cGUlMjBlcSUyMCdWTScmYXBpLXZlcnNpb249MjAyMS0xMC0wMQ==", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGae69e07b/providers/Microsoft.RecoveryServices/vaults/PSTestRSVae69e07b/backupOperations/9995a31d-e98e-4d40-9faa-f4669acbcbce?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYWU2OWUwN2IvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZhZTY5ZTA3Yi9iYWNrdXBPcGVyYXRpb25zLzk5OTVhMzFkLWU5OGUtNGQ0MC05ZmFhLWY0NjY5YWNiY2JjZT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "dcbde1c0-8edf-4819-8743-89d137bbec12" + "eb47954c-8952-45ac-8591-cfd34aebaa60" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -3911,11 +3793,11 @@ "nosniff" ], "x-ms-request-id": [ - "33540b66-6e29-48fe-8130-1e4121e79d62" + "b4ffb371-98d0-4a47-9c16-a26568795bc6" ], "x-ms-client-request-id": [ - "dcbde1c0-8edf-4819-8743-89d137bbec12", - "dcbde1c0-8edf-4819-8743-89d137bbec12" + "eb47954c-8952-45ac-8591-cfd34aebaa60", + "eb47954c-8952-45ac-8591-cfd34aebaa60" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3927,19 +3809,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "149" + "109" ], "x-ms-correlation-request-id": [ - "33540b66-6e29-48fe-8130-1e4121e79d62" + "b4ffb371-98d0-4a47-9c16-a26568795bc6" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T215919Z:33540b66-6e29-48fe-8130-1e4121e79d62" + "JIOINDIAWEST:20220517T035110Z:b4ffb371-98d0-4a47-9c16-a26568795bc6" ], "Date": [ - "Wed, 23 Feb 2022 21:59:18 GMT" + "Tue, 17 May 2022 03:51:09 GMT" ], "Content-Length": [ - "1495" + "188" ], "Content-Type": [ "application/json" @@ -3948,26 +3830,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG3cdeb8e4/providers/Microsoft.RecoveryServices/vaults/PSTestRSV3cdeb8e4/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrg3cdeb8e4;pstestvm3cdeb0/protectedItems/VM;iaasvmcontainerv2;pstestrg3cdeb8e4;pstestvm3cdeb0\",\r\n \"name\": \"VM;iaasvmcontainerv2;pstestrg3cdeb8e4;pstestvm3cdeb0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems\",\r\n \"properties\": {\r\n \"kpisHealths\": {},\r\n \"friendlyName\": \"PSTestVM3cdeb0\",\r\n \"virtualMachineId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG3cdeb8e4/providers/Microsoft.Compute/virtualMachines/PSTestVM3cdeb0\",\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\": \"17593597970665\",\r\n \"protectedItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"workloadType\": \"VM\",\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg3cdeb8e4;pstestvm3cdeb0\",\r\n \"sourceResourceId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG3cdeb8e4/providers/Microsoft.Compute/virtualMachines/PSTestVM3cdeb0\",\r\n \"policyId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG3cdeb8e4/providers/Microsoft.RecoveryServices/vaults/PSTestRSV3cdeb8e4/backupPolicies/DefaultPolicy\",\r\n \"policyName\": \"DefaultPolicy\",\r\n \"isArchiveEnabled\": false\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"9995a31d-e98e-4d40-9faa-f4669acbcbce\",\r\n \"name\": \"9995a31d-e98e-4d40-9faa-f4669acbcbce\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T03:50:41.9045712Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG3cdeb8e4/providers/Microsoft.RecoveryServices/vaults/PSTestRSV3cdeb8e4/backupProtectedItems?$filter=backupManagementType%20eq%20'AzureIaasVM'%20and%20itemType%20eq%20'VM'&api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHM2NkZWI4ZTQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YzY2RlYjhlNC9iYWNrdXBQcm90ZWN0ZWRJdGVtcz8kZmlsdGVyPWJhY2t1cE1hbmFnZW1lbnRUeXBlJTIwZXElMjAnQXp1cmVJYWFzVk0nJTIwYW5kJTIwaXRlbVR5cGUlMjBlcSUyMCdWTScmYXBpLXZlcnNpb249MjAyMS0xMC0wMQ==", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGae69e07b/providers/Microsoft.RecoveryServices/vaults/PSTestRSVae69e07b/backupOperations/9995a31d-e98e-4d40-9faa-f4669acbcbce?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYWU2OWUwN2IvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZhZTY5ZTA3Yi9iYWNrdXBPcGVyYXRpb25zLzk5OTVhMzFkLWU5OGUtNGQ0MC05ZmFhLWY0NjY5YWNiY2JjZT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1cb16fdf-9ded-4178-b32c-807c88dac47b" + "eb47954c-8952-45ac-8591-cfd34aebaa60" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -3981,11 +3863,11 @@ "nosniff" ], "x-ms-request-id": [ - "e04c1309-cde0-4d7a-95fb-6eb5cb63f3fb" + "c573fce7-ba37-425e-94a5-e219dbd9a36b" ], "x-ms-client-request-id": [ - "1cb16fdf-9ded-4178-b32c-807c88dac47b", - "1cb16fdf-9ded-4178-b32c-807c88dac47b" + "eb47954c-8952-45ac-8591-cfd34aebaa60", + "eb47954c-8952-45ac-8591-cfd34aebaa60" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3997,19 +3879,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "148" + "108" ], "x-ms-correlation-request-id": [ - "e04c1309-cde0-4d7a-95fb-6eb5cb63f3fb" + "c573fce7-ba37-425e-94a5-e219dbd9a36b" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T215937Z:e04c1309-cde0-4d7a-95fb-6eb5cb63f3fb" + "JIOINDIAWEST:20220517T035115Z:c573fce7-ba37-425e-94a5-e219dbd9a36b" ], "Date": [ - "Wed, 23 Feb 2022 21:59:37 GMT" + "Tue, 17 May 2022 03:51:15 GMT" ], "Content-Length": [ - "1495" + "188" ], "Content-Type": [ "application/json" @@ -4018,26 +3900,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG3cdeb8e4/providers/Microsoft.RecoveryServices/vaults/PSTestRSV3cdeb8e4/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrg3cdeb8e4;pstestvm3cdeb0/protectedItems/VM;iaasvmcontainerv2;pstestrg3cdeb8e4;pstestvm3cdeb0\",\r\n \"name\": \"VM;iaasvmcontainerv2;pstestrg3cdeb8e4;pstestvm3cdeb0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems\",\r\n \"properties\": {\r\n \"kpisHealths\": {},\r\n \"friendlyName\": \"PSTestVM3cdeb0\",\r\n \"virtualMachineId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG3cdeb8e4/providers/Microsoft.Compute/virtualMachines/PSTestVM3cdeb0\",\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\": \"17593597970665\",\r\n \"protectedItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"workloadType\": \"VM\",\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg3cdeb8e4;pstestvm3cdeb0\",\r\n \"sourceResourceId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG3cdeb8e4/providers/Microsoft.Compute/virtualMachines/PSTestVM3cdeb0\",\r\n \"policyId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG3cdeb8e4/providers/Microsoft.RecoveryServices/vaults/PSTestRSV3cdeb8e4/backupPolicies/DefaultPolicy\",\r\n \"policyName\": \"DefaultPolicy\",\r\n \"isArchiveEnabled\": false\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"9995a31d-e98e-4d40-9faa-f4669acbcbce\",\r\n \"name\": \"9995a31d-e98e-4d40-9faa-f4669acbcbce\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T03:50:41.9045712Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG3cdeb8e4/providers/Microsoft.RecoveryServices/vaults/PSTestRSV3cdeb8e4/backupFabrics/Azure/protectionContainers/IaasVMContainer%3Biaasvmcontainerv2%3Bpstestrg3cdeb8e4%3Bpstestvm3cdeb0/protectedItems/VM%3Biaasvmcontainerv2%3Bpstestrg3cdeb8e4%3Bpstestvm3cdeb0?$filter=expand%20eq%20'extendedinfo'&api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHM2NkZWI4ZTQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YzY2RlYjhlNC9iYWNrdXBGYWJyaWNzL0F6dXJlL3Byb3RlY3Rpb25Db250YWluZXJzL0lhYXNWTUNvbnRhaW5lciUzQmlhYXN2bWNvbnRhaW5lcnYyJTNCcHN0ZXN0cmczY2RlYjhlNCUzQnBzdGVzdHZtM2NkZWIwL3Byb3RlY3RlZEl0ZW1zL1ZNJTNCaWFhc3ZtY29udGFpbmVydjIlM0Jwc3Rlc3RyZzNjZGViOGU0JTNCcHN0ZXN0dm0zY2RlYjA/JGZpbHRlcj1leHBhbmQlMjBlcSUyMCdleHRlbmRlZGluZm8nJmFwaS12ZXJzaW9uPTIwMjEtMTAtMDE=", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGae69e07b/providers/Microsoft.RecoveryServices/vaults/PSTestRSVae69e07b/backupOperations/9995a31d-e98e-4d40-9faa-f4669acbcbce?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYWU2OWUwN2IvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZhZTY5ZTA3Yi9iYWNrdXBPcGVyYXRpb25zLzk5OTVhMzFkLWU5OGUtNGQ0MC05ZmFhLWY0NjY5YWNiY2JjZT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "dcbde1c0-8edf-4819-8743-89d137bbec12" + "eb47954c-8952-45ac-8591-cfd34aebaa60" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -4051,11 +3933,11 @@ "nosniff" ], "x-ms-request-id": [ - "05eb2841-12ae-4cbc-bb69-62cca9f1c8ed" + "0fe55a7c-2fff-45ed-b8e6-2f81656b1f2d" ], "x-ms-client-request-id": [ - "dcbde1c0-8edf-4819-8743-89d137bbec12", - "dcbde1c0-8edf-4819-8743-89d137bbec12" + "eb47954c-8952-45ac-8591-cfd34aebaa60", + "eb47954c-8952-45ac-8591-cfd34aebaa60" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4067,19 +3949,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "149" + "107" ], "x-ms-correlation-request-id": [ - "05eb2841-12ae-4cbc-bb69-62cca9f1c8ed" + "0fe55a7c-2fff-45ed-b8e6-2f81656b1f2d" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T215919Z:05eb2841-12ae-4cbc-bb69-62cca9f1c8ed" + "JIOINDIAWEST:20220517T035121Z:0fe55a7c-2fff-45ed-b8e6-2f81656b1f2d" ], "Date": [ - "Wed, 23 Feb 2022 21:59:19 GMT" + "Tue, 17 May 2022 03:51:20 GMT" ], "Content-Length": [ - "1550" + "188" ], "Content-Type": [ "application/json" @@ -4088,32 +3970,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG3cdeb8e4/providers/Microsoft.RecoveryServices/vaults/PSTestRSV3cdeb8e4/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrg3cdeb8e4;pstestvm3cdeb0/protectedItems/VM;iaasvmcontainerv2;pstestrg3cdeb8e4;pstestvm3cdeb0\",\r\n \"name\": \"VM;iaasvmcontainerv2;pstestrg3cdeb8e4;pstestvm3cdeb0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems\",\r\n \"properties\": {\r\n \"kpisHealths\": {},\r\n \"friendlyName\": \"PSTestVM3cdeb0\",\r\n \"virtualMachineId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG3cdeb8e4/providers/Microsoft.Compute/virtualMachines/PSTestVM3cdeb0\",\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\": \"17593597970665\",\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;pstestrg3cdeb8e4;pstestvm3cdeb0\",\r\n \"sourceResourceId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG3cdeb8e4/providers/Microsoft.Compute/virtualMachines/PSTestVM3cdeb0\",\r\n \"policyId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG3cdeb8e4/providers/Microsoft.RecoveryServices/vaults/PSTestRSV3cdeb8e4/backupPolicies/DefaultPolicy\",\r\n \"policyName\": \"DefaultPolicy\",\r\n \"isArchiveEnabled\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"9995a31d-e98e-4d40-9faa-f4669acbcbce\",\r\n \"name\": \"9995a31d-e98e-4d40-9faa-f4669acbcbce\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T03:50:41.9045712Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG3cdeb8e4/providers/Microsoft.RecoveryServices/vaults/PSTestRSV3cdeb8e4/backupFabrics/Azure/protectionContainers/IaasVMContainer%3Biaasvmcontainerv2%3Bpstestrg3cdeb8e4%3Bpstestvm3cdeb0/protectedItems/VM%3Biaasvmcontainerv2%3Bpstestrg3cdeb8e4%3Bpstestvm3cdeb0/backup?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHM2NkZWI4ZTQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YzY2RlYjhlNC9iYWNrdXBGYWJyaWNzL0F6dXJlL3Byb3RlY3Rpb25Db250YWluZXJzL0lhYXNWTUNvbnRhaW5lciUzQmlhYXN2bWNvbnRhaW5lcnYyJTNCcHN0ZXN0cmczY2RlYjhlNCUzQnBzdGVzdHZtM2NkZWIwL3Byb3RlY3RlZEl0ZW1zL1ZNJTNCaWFhc3ZtY29udGFpbmVydjIlM0Jwc3Rlc3RyZzNjZGViOGU0JTNCcHN0ZXN0dm0zY2RlYjAvYmFja3VwP2FwaS12ZXJzaW9uPTIwMjEtMTAtMDE=", - "RequestMethod": "POST", - "RequestBody": "{\r\n \"properties\": {\r\n \"objectType\": \"IaasVMBackupRequest\"\r\n }\r\n}", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGae69e07b/providers/Microsoft.RecoveryServices/vaults/PSTestRSVae69e07b/backupOperations/9995a31d-e98e-4d40-9faa-f4669acbcbce?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYWU2OWUwN2IvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZhZTY5ZTA3Yi9iYWNrdXBPcGVyYXRpb25zLzk5OTVhMzFkLWU5OGUtNGQ0MC05ZmFhLWY0NjY5YWNiY2JjZT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "15ba844b-de32-49d9-b541-c7cfabd7d58c" + "eb47954c-8952-45ac-8591-cfd34aebaa60" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "69" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -4123,70 +3999,67 @@ "Pragma": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG3cdeb8e4/providers/Microsoft.RecoveryServices/vaults/PSTestRSV3cdeb8e4/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrg3cdeb8e4;pstestvm3cdeb0/protectedItems/VM;iaasvmcontainerv2;pstestrg3cdeb8e4;pstestvm3cdeb0/operationResults/aefa129e-9fd0-4010-bb91-132e3390db52?api-version=2021-10-01" - ], - "Retry-After": [ - "60" - ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG3cdeb8e4/providers/Microsoft.RecoveryServices/vaults/PSTestRSV3cdeb8e4/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrg3cdeb8e4;pstestvm3cdeb0/protectedItems/VM;iaasvmcontainerv2;pstestrg3cdeb8e4;pstestvm3cdeb0/operationsStatus/aefa129e-9fd0-4010-bb91-132e3390db52?api-version=2021-10-01" - ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "bbe07a26-6d30-46d6-b5fc-fd79438aa1a8" + "df182a26-9d36-4a05-a006-c8c48a3e2f29" ], "x-ms-client-request-id": [ - "15ba844b-de32-49d9-b541-c7cfabd7d58c", - "15ba844b-de32-49d9-b541-c7cfabd7d58c" + "eb47954c-8952-45ac-8591-cfd34aebaa60", + "eb47954c-8952-45ac-8591-cfd34aebaa60" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-IIS/10.0" + ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "106" ], "x-ms-correlation-request-id": [ - "bbe07a26-6d30-46d6-b5fc-fd79438aa1a8" + "df182a26-9d36-4a05-a006-c8c48a3e2f29" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T215920Z:bbe07a26-6d30-46d6-b5fc-fd79438aa1a8" + "JIOINDIAWEST:20220517T035126Z:df182a26-9d36-4a05-a006-c8c48a3e2f29" ], "Date": [ - "Wed, 23 Feb 2022 21:59:19 GMT" + "Tue, 17 May 2022 03:51:26 GMT" + ], + "Content-Length": [ + "304" + ], + "Content-Type": [ + "application/json" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, - "ResponseBody": "", - "StatusCode": 202 + "ResponseBody": "{\r\n \"id\": \"9995a31d-e98e-4d40-9faa-f4669acbcbce\",\r\n \"name\": \"9995a31d-e98e-4d40-9faa-f4669acbcbce\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-05-17T03:50:41.9045712Z\",\r\n \"endTime\": \"2022-05-17T03:50:41.9045712Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"826b6b2d-9c08-42da-b508-5d8acfb5eb9a\"\r\n }\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG3cdeb8e4/providers/Microsoft.RecoveryServices/vaults/PSTestRSV3cdeb8e4/backupOperations/aefa129e-9fd0-4010-bb91-132e3390db52?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHM2NkZWI4ZTQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YzY2RlYjhlNC9iYWNrdXBPcGVyYXRpb25zL2FlZmExMjllLTlmZDAtNDAxMC1iYjkxLTEzMmUzMzkwZGI1Mj9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGae69e07b/providers/Microsoft.RecoveryServices/vaults/PSTestRSVae69e07b/backupOperations/9995a31d-e98e-4d40-9faa-f4669acbcbce?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYWU2OWUwN2IvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZhZTY5ZTA3Yi9iYWNrdXBPcGVyYXRpb25zLzk5OTVhMzFkLWU5OGUtNGQ0MC05ZmFhLWY0NjY5YWNiY2JjZT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "15ba844b-de32-49d9-b541-c7cfabd7d58c" + "eb47954c-8952-45ac-8591-cfd34aebaa60" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -4200,11 +4073,11 @@ "nosniff" ], "x-ms-request-id": [ - "ad54ed47-6897-40db-8e41-f4eea288e1eb" + "d17a62fe-4598-47e8-b826-efa519a0d5ef" ], "x-ms-client-request-id": [ - "15ba844b-de32-49d9-b541-c7cfabd7d58c", - "15ba844b-de32-49d9-b541-c7cfabd7d58c" + "eb47954c-8952-45ac-8591-cfd34aebaa60", + "eb47954c-8952-45ac-8591-cfd34aebaa60" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4216,19 +4089,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "145" + "105" ], "x-ms-correlation-request-id": [ - "ad54ed47-6897-40db-8e41-f4eea288e1eb" + "d17a62fe-4598-47e8-b826-efa519a0d5ef" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T215921Z:ad54ed47-6897-40db-8e41-f4eea288e1eb" + "JIOINDIAWEST:20220517T035127Z:d17a62fe-4598-47e8-b826-efa519a0d5ef" ], "Date": [ - "Wed, 23 Feb 2022 21:59:20 GMT" + "Tue, 17 May 2022 03:51:26 GMT" ], "Content-Length": [ - "188" + "304" ], "Content-Type": [ "application/json" @@ -4237,26 +4110,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"aefa129e-9fd0-4010-bb91-132e3390db52\",\r\n \"name\": \"aefa129e-9fd0-4010-bb91-132e3390db52\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-23T21:59:20.4205671Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"9995a31d-e98e-4d40-9faa-f4669acbcbce\",\r\n \"name\": \"9995a31d-e98e-4d40-9faa-f4669acbcbce\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-05-17T03:50:41.9045712Z\",\r\n \"endTime\": \"2022-05-17T03:50:41.9045712Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"826b6b2d-9c08-42da-b508-5d8acfb5eb9a\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG3cdeb8e4/providers/Microsoft.RecoveryServices/vaults/PSTestRSV3cdeb8e4/backupOperations/aefa129e-9fd0-4010-bb91-132e3390db52?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHM2NkZWI4ZTQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YzY2RlYjhlNC9iYWNrdXBPcGVyYXRpb25zL2FlZmExMjllLTlmZDAtNDAxMC1iYjkxLTEzMmUzMzkwZGI1Mj9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGae69e07b/providers/Microsoft.RecoveryServices/vaults/PSTestRSVae69e07b/backupJobs/826b6b2d-9c08-42da-b508-5d8acfb5eb9a?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYWU2OWUwN2IvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZhZTY5ZTA3Yi9iYWNrdXBKb2JzLzgyNmI2YjJkLTljMDgtNDJkYS1iNTA4LTVkOGFjZmI1ZWI5YT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "15ba844b-de32-49d9-b541-c7cfabd7d58c" + "eb47954c-8952-45ac-8591-cfd34aebaa60" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -4266,39 +4139,40 @@ "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-IIS/10.0", + "Microsoft-IIS/10.0" + ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "b9f159c3-aac2-4255-a924-dc09cf1ae856" + "43a8c6fa-c221-4211-ba59-ee3201d0d80a" ], "x-ms-client-request-id": [ - "15ba844b-de32-49d9-b541-c7cfabd7d58c", - "15ba844b-de32-49d9-b541-c7cfabd7d58c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-IIS/10.0" + "eb47954c-8952-45ac-8591-cfd34aebaa60", + "eb47954c-8952-45ac-8591-cfd34aebaa60" ], "X-Powered-By": [ "ASP.NET" ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "144" + "145" ], "x-ms-correlation-request-id": [ - "b9f159c3-aac2-4255-a924-dc09cf1ae856" + "43a8c6fa-c221-4211-ba59-ee3201d0d80a" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T215931Z:b9f159c3-aac2-4255-a924-dc09cf1ae856" + "JIOINDIAWEST:20220517T035127Z:43a8c6fa-c221-4211-ba59-ee3201d0d80a" ], "Date": [ - "Wed, 23 Feb 2022 21:59:30 GMT" + "Tue, 17 May 2022 03:51:27 GMT" ], "Content-Length": [ - "304" + "840" ], "Content-Type": [ "application/json" @@ -4307,26 +4181,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"aefa129e-9fd0-4010-bb91-132e3390db52\",\r\n \"name\": \"aefa129e-9fd0-4010-bb91-132e3390db52\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-02-23T21:59:20.4205671Z\",\r\n \"endTime\": \"2022-02-23T21:59:20.4205671Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"7d72365c-5d4c-46b8-b37f-69fc455f8a79\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGae69e07b/providers/Microsoft.RecoveryServices/vaults/PSTestRSVae69e07b/backupJobs/826b6b2d-9c08-42da-b508-5d8acfb5eb9a\",\r\n \"name\": \"826b6b2d-9c08-42da-b508-5d8acfb5eb9a\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgae69e07b;pstestvmae69e0\",\r\n \"duration\": \"PT41.4548641S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvmae69e0\",\r\n \"Policy Name\": \"DefaultPolicy\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvmae69e0\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"ConfigureBackup\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-05-17T03:50:41.9045712Z\",\r\n \"endTime\": \"2022-05-17T03:51:23.3594353Z\",\r\n \"activityId\": \"eb47954c-8952-45ac-8591-cfd34aebaa60\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG3cdeb8e4/providers/Microsoft.RecoveryServices/vaults/PSTestRSV3cdeb8e4/backupOperations/aefa129e-9fd0-4010-bb91-132e3390db52?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHM2NkZWI4ZTQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YzY2RlYjhlNC9iYWNrdXBPcGVyYXRpb25zL2FlZmExMjllLTlmZDAtNDAxMC1iYjkxLTEzMmUzMzkwZGI1Mj9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGae69e07b/providers/Microsoft.RecoveryServices/vaults/PSTestRSVae69e07b/backupProtectedItems?$filter=backupManagementType%20eq%20'AzureIaasVM'%20and%20itemType%20eq%20'VM'&api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYWU2OWUwN2IvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZhZTY5ZTA3Yi9iYWNrdXBQcm90ZWN0ZWRJdGVtcz8kZmlsdGVyPWJhY2t1cE1hbmFnZW1lbnRUeXBlJTIwZXElMjAnQXp1cmVJYWFzVk0nJTIwYW5kJTIwaXRlbVR5cGUlMjBlcSUyMCdWTScmYXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "15ba844b-de32-49d9-b541-c7cfabd7d58c" + "d74acbf3-6413-4039-bea0-6d3a8e952beb" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -4340,11 +4214,11 @@ "nosniff" ], "x-ms-request-id": [ - "fd75734b-1570-4836-926e-b6a4f9924ac6" + "3bce1850-8517-4098-97df-dd73b73b7ec9" ], "x-ms-client-request-id": [ - "15ba844b-de32-49d9-b541-c7cfabd7d58c", - "15ba844b-de32-49d9-b541-c7cfabd7d58c" + "d74acbf3-6413-4039-bea0-6d3a8e952beb", + "d74acbf3-6413-4039-bea0-6d3a8e952beb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4356,19 +4230,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "143" + "147" ], "x-ms-correlation-request-id": [ - "fd75734b-1570-4836-926e-b6a4f9924ac6" + "3bce1850-8517-4098-97df-dd73b73b7ec9" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T215932Z:fd75734b-1570-4836-926e-b6a4f9924ac6" + "JIOINDIAWEST:20220517T035128Z:3bce1850-8517-4098-97df-dd73b73b7ec9" ], "Date": [ - "Wed, 23 Feb 2022 21:59:31 GMT" + "Tue, 17 May 2022 03:51:28 GMT" ], "Content-Length": [ - "304" + "1495" ], "Content-Type": [ "application/json" @@ -4377,26 +4251,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"aefa129e-9fd0-4010-bb91-132e3390db52\",\r\n \"name\": \"aefa129e-9fd0-4010-bb91-132e3390db52\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-02-23T21:59:20.4205671Z\",\r\n \"endTime\": \"2022-02-23T21:59:20.4205671Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"7d72365c-5d4c-46b8-b37f-69fc455f8a79\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGae69e07b/providers/Microsoft.RecoveryServices/vaults/PSTestRSVae69e07b/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrgae69e07b;pstestvmae69e0/protectedItems/VM;iaasvmcontainerv2;pstestrgae69e07b;pstestvmae69e0\",\r\n \"name\": \"VM;iaasvmcontainerv2;pstestrgae69e07b;pstestvmae69e0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems\",\r\n \"properties\": {\r\n \"kpisHealths\": {},\r\n \"friendlyName\": \"PSTestVMae69e0\",\r\n \"virtualMachineId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGae69e07b/providers/Microsoft.Compute/virtualMachines/PSTestVMae69e0\",\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\": \"35184443619863\",\r\n \"protectedItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"workloadType\": \"VM\",\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgae69e07b;pstestvmae69e0\",\r\n \"sourceResourceId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGae69e07b/providers/Microsoft.Compute/virtualMachines/PSTestVMae69e0\",\r\n \"policyId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGae69e07b/providers/Microsoft.RecoveryServices/vaults/PSTestRSVae69e07b/backupPolicies/DefaultPolicy\",\r\n \"policyName\": \"DefaultPolicy\",\r\n \"isArchiveEnabled\": false\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG3cdeb8e4/providers/Microsoft.RecoveryServices/vaults/PSTestRSV3cdeb8e4/backupJobs/7d72365c-5d4c-46b8-b37f-69fc455f8a79?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHM2NkZWI4ZTQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YzY2RlYjhlNC9iYWNrdXBKb2JzLzdkNzIzNjVjLTVkNGMtNDZiOC1iMzdmLTY5ZmM0NTVmOGE3OT9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGae69e07b/providers/Microsoft.RecoveryServices/vaults/PSTestRSVae69e07b/backupProtectedItems?$filter=backupManagementType%20eq%20'AzureIaasVM'%20and%20itemType%20eq%20'VM'&api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYWU2OWUwN2IvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZhZTY5ZTA3Yi9iYWNrdXBQcm90ZWN0ZWRJdGVtcz8kZmlsdGVyPWJhY2t1cE1hbmFnZW1lbnRUeXBlJTIwZXElMjAnQXp1cmVJYWFzVk0nJTIwYW5kJTIwaXRlbVR5cGUlMjBlcSUyMCdWTScmYXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "15ba844b-de32-49d9-b541-c7cfabd7d58c" + "b99dd206-1f0a-49bc-8d85-b07a52772fd8" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -4406,40 +4280,39 @@ "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-IIS/10.0" - ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "434758fc-81e3-4bff-a026-e680e6823097" + "9c8d96f9-d50e-43ad-88b3-c79be412cc21" ], "x-ms-client-request-id": [ - "15ba844b-de32-49d9-b541-c7cfabd7d58c", - "15ba844b-de32-49d9-b541-c7cfabd7d58c" - ], - "X-Powered-By": [ - "ASP.NET" + "b99dd206-1f0a-49bc-8d85-b07a52772fd8", + "b99dd206-1f0a-49bc-8d85-b07a52772fd8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "148" + "146" ], "x-ms-correlation-request-id": [ - "434758fc-81e3-4bff-a026-e680e6823097" + "9c8d96f9-d50e-43ad-88b3-c79be412cc21" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T215933Z:434758fc-81e3-4bff-a026-e680e6823097" + "JIOINDIAWEST:20220517T035146Z:9c8d96f9-d50e-43ad-88b3-c79be412cc21" ], "Date": [ - "Wed, 23 Feb 2022 21:59:32 GMT" + "Tue, 17 May 2022 03:51:46 GMT" ], "Content-Length": [ - "969" + "1495" ], "Content-Type": [ "application/json" @@ -4448,26 +4321,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG3cdeb8e4/providers/Microsoft.RecoveryServices/vaults/PSTestRSV3cdeb8e4/backupJobs/7d72365c-5d4c-46b8-b37f-69fc455f8a79\",\r\n \"name\": \"7d72365c-5d4c-46b8-b37f-69fc455f8a79\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg3cdeb8e4;pstestvm3cdeb0\",\r\n \"duration\": \"PT12.2541344S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm3cdeb0\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm3cdeb0\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-23T21:59:20.4205671Z\",\r\n \"activityId\": \"15ba844b-de32-49d9-b541-c7cfabd7d58c\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGae69e07b/providers/Microsoft.RecoveryServices/vaults/PSTestRSVae69e07b/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrgae69e07b;pstestvmae69e0/protectedItems/VM;iaasvmcontainerv2;pstestrgae69e07b;pstestvmae69e0\",\r\n \"name\": \"VM;iaasvmcontainerv2;pstestrgae69e07b;pstestvmae69e0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems\",\r\n \"properties\": {\r\n \"kpisHealths\": {},\r\n \"friendlyName\": \"PSTestVMae69e0\",\r\n \"virtualMachineId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGae69e07b/providers/Microsoft.Compute/virtualMachines/PSTestVMae69e0\",\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\": \"35184443619863\",\r\n \"protectedItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"workloadType\": \"VM\",\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgae69e07b;pstestvmae69e0\",\r\n \"sourceResourceId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGae69e07b/providers/Microsoft.Compute/virtualMachines/PSTestVMae69e0\",\r\n \"policyId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGae69e07b/providers/Microsoft.RecoveryServices/vaults/PSTestRSVae69e07b/backupPolicies/DefaultPolicy\",\r\n \"policyName\": \"DefaultPolicy\",\r\n \"isArchiveEnabled\": false\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG3cdeb8e4/providers/Microsoft.RecoveryServices/vaults/PSTestRSV3cdeb8e4/backupJobs/7d72365c-5d4c-46b8-b37f-69fc455f8a79?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHM2NkZWI4ZTQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YzY2RlYjhlNC9iYWNrdXBKb2JzLzdkNzIzNjVjLTVkNGMtNDZiOC1iMzdmLTY5ZmM0NTVmOGE3OT9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGae69e07b/providers/Microsoft.RecoveryServices/vaults/PSTestRSVae69e07b/backupFabrics/Azure/protectionContainers/IaasVMContainer%3Biaasvmcontainerv2%3Bpstestrgae69e07b%3Bpstestvmae69e0/protectedItems/VM%3Biaasvmcontainerv2%3Bpstestrgae69e07b%3Bpstestvmae69e0?$filter=expand%20eq%20'extendedinfo'&api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYWU2OWUwN2IvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZhZTY5ZTA3Yi9iYWNrdXBGYWJyaWNzL0F6dXJlL3Byb3RlY3Rpb25Db250YWluZXJzL0lhYXNWTUNvbnRhaW5lciUzQmlhYXN2bWNvbnRhaW5lcnYyJTNCcHN0ZXN0cmdhZTY5ZTA3YiUzQnBzdGVzdHZtYWU2OWUwL3Byb3RlY3RlZEl0ZW1zL1ZNJTNCaWFhc3ZtY29udGFpbmVydjIlM0Jwc3Rlc3RyZ2FlNjllMDdiJTNCcHN0ZXN0dm1hZTY5ZTA/JGZpbHRlcj1leHBhbmQlMjBlcSUyMCdleHRlbmRlZGluZm8nJmFwaS12ZXJzaW9uPTIwMjItMDItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b7ce6aec-794f-490b-b5d2-8f654f4e2d65" + "d74acbf3-6413-4039-bea0-6d3a8e952beb" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -4477,40 +4350,39 @@ "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-IIS/10.0" - ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "ea8bec32-6973-431f-a687-283932457b82" + "d588e668-5da9-4a5c-a7d8-55155b897d5b" ], "x-ms-client-request-id": [ - "b7ce6aec-794f-490b-b5d2-8f654f4e2d65", - "b7ce6aec-794f-490b-b5d2-8f654f4e2d65" - ], - "X-Powered-By": [ - "ASP.NET" + "d74acbf3-6413-4039-bea0-6d3a8e952beb", + "d74acbf3-6413-4039-bea0-6d3a8e952beb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "147" + "148" ], "x-ms-correlation-request-id": [ - "ea8bec32-6973-431f-a687-283932457b82" + "d588e668-5da9-4a5c-a7d8-55155b897d5b" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T215935Z:ea8bec32-6973-431f-a687-283932457b82" + "JIOINDIAWEST:20220517T035129Z:d588e668-5da9-4a5c-a7d8-55155b897d5b" ], "Date": [ - "Wed, 23 Feb 2022 21:59:34 GMT" + "Tue, 17 May 2022 03:51:28 GMT" ], "Content-Length": [ - "969" + "1550" ], "Content-Type": [ "application/json" @@ -4519,26 +4391,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG3cdeb8e4/providers/Microsoft.RecoveryServices/vaults/PSTestRSV3cdeb8e4/backupJobs/7d72365c-5d4c-46b8-b37f-69fc455f8a79\",\r\n \"name\": \"7d72365c-5d4c-46b8-b37f-69fc455f8a79\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg3cdeb8e4;pstestvm3cdeb0\",\r\n \"duration\": \"PT15.0119808S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Cancelling\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Cancelling\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm3cdeb0\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm3cdeb0\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"Cancelling\",\r\n \"startTime\": \"2022-02-23T21:59:20.4205671Z\",\r\n \"activityId\": \"15ba844b-de32-49d9-b541-c7cfabd7d58c\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGae69e07b/providers/Microsoft.RecoveryServices/vaults/PSTestRSVae69e07b/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrgae69e07b;pstestvmae69e0/protectedItems/VM;iaasvmcontainerv2;pstestrgae69e07b;pstestvmae69e0\",\r\n \"name\": \"VM;iaasvmcontainerv2;pstestrgae69e07b;pstestvmae69e0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems\",\r\n \"properties\": {\r\n \"kpisHealths\": {},\r\n \"friendlyName\": \"PSTestVMae69e0\",\r\n \"virtualMachineId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGae69e07b/providers/Microsoft.Compute/virtualMachines/PSTestVMae69e0\",\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\": \"35184443619863\",\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;pstestrgae69e07b;pstestvmae69e0\",\r\n \"sourceResourceId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGae69e07b/providers/Microsoft.Compute/virtualMachines/PSTestVMae69e0\",\r\n \"policyId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGae69e07b/providers/Microsoft.RecoveryServices/vaults/PSTestRSVae69e07b/backupPolicies/DefaultPolicy\",\r\n \"policyName\": \"DefaultPolicy\",\r\n \"isArchiveEnabled\": false\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG3cdeb8e4/providers/Microsoft.RecoveryServices/vaults/PSTestRSV3cdeb8e4/backupJobs/7d72365c-5d4c-46b8-b37f-69fc455f8a79/cancel?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHM2NkZWI4ZTQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YzY2RlYjhlNC9iYWNrdXBKb2JzLzdkNzIzNjVjLTVkNGMtNDZiOC1iMzdmLTY5ZmM0NTVmOGE3OS9jYW5jZWw/YXBpLXZlcnNpb249MjAyMS0xMC0wMQ==", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGae69e07b/providers/Microsoft.RecoveryServices/vaults/PSTestRSVae69e07b/backupFabrics/Azure/protectionContainers/IaasVMContainer%3Biaasvmcontainerv2%3Bpstestrgae69e07b%3Bpstestvmae69e0/protectedItems/VM%3Biaasvmcontainerv2%3Bpstestrgae69e07b%3Bpstestvmae69e0/backup?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYWU2OWUwN2IvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZhZTY5ZTA3Yi9iYWNrdXBGYWJyaWNzL0F6dXJlL3Byb3RlY3Rpb25Db250YWluZXJzL0lhYXNWTUNvbnRhaW5lciUzQmlhYXN2bWNvbnRhaW5lcnYyJTNCcHN0ZXN0cmdhZTY5ZTA3YiUzQnBzdGVzdHZtYWU2OWUwL3Byb3RlY3RlZEl0ZW1zL1ZNJTNCaWFhc3ZtY29udGFpbmVydjIlM0Jwc3Rlc3RyZ2FlNjllMDdiJTNCcHN0ZXN0dm1hZTY5ZTAvYmFja3VwP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", "RequestMethod": "POST", - "RequestBody": "", + "RequestBody": "{\r\n \"properties\": {\r\n \"objectType\": \"IaasVMBackupRequest\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "b7ce6aec-794f-490b-b5d2-8f654f4e2d65" + "4f079c36-ae0c-42d6-9952-654ce896df2f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "69" ] }, "ResponseHeaders": { @@ -4549,23 +4427,23 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG3cdeb8e4/providers/Microsoft.RecoveryServices/vaults/PSTestRSV3cdeb8e4/backupJobs/7d72365c-5d4c-46b8-b37f-69fc455f8a79/operationResults/15540ce9-400a-4659-b701-cc2508d0f0fd?api-version=2021-10-01" + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGae69e07b/providers/Microsoft.RecoveryServices/vaults/PSTestRSVae69e07b/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrgae69e07b;pstestvmae69e0/protectedItems/VM;iaasvmcontainerv2;pstestrgae69e07b;pstestvmae69e0/operationResults/792bcb4b-100a-4bc3-9c52-69f29743d874?api-version=2022-02-01" ], "Retry-After": [ "60" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG3cdeb8e4/providers/Microsoft.RecoveryServices/vaults/PSTestRSV3cdeb8e4/backupJobs/7d72365c-5d4c-46b8-b37f-69fc455f8a79/operationsStatus/15540ce9-400a-4659-b701-cc2508d0f0fd?api-version=2019-05-13-preview" + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGae69e07b/providers/Microsoft.RecoveryServices/vaults/PSTestRSVae69e07b/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrgae69e07b;pstestvmae69e0/protectedItems/VM;iaasvmcontainerv2;pstestrgae69e07b;pstestvmae69e0/operationsStatus/792bcb4b-100a-4bc3-9c52-69f29743d874?api-version=2022-02-01" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "e1bc7e48-ded5-4bd7-a33f-cc4100a58aa6" + "c8c0c79f-f031-4c28-ac10-23d6832d6d70" ], "x-ms-client-request-id": [ - "b7ce6aec-794f-490b-b5d2-8f654f4e2d65", - "b7ce6aec-794f-490b-b5d2-8f654f4e2d65" + "4f079c36-ae0c-42d6-9952-654ce896df2f", + "4f079c36-ae0c-42d6-9952-654ce896df2f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4574,16 +4452,16 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1197" ], "x-ms-correlation-request-id": [ - "e1bc7e48-ded5-4bd7-a33f-cc4100a58aa6" + "c8c0c79f-f031-4c28-ac10-23d6832d6d70" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T215933Z:e1bc7e48-ded5-4bd7-a33f-cc4100a58aa6" + "JIOINDIAWEST:20220517T035130Z:c8c0c79f-f031-4c28-ac10-23d6832d6d70" ], "Date": [ - "Wed, 23 Feb 2022 21:59:32 GMT" + "Tue, 17 May 2022 03:51:29 GMT" ], "Expires": [ "-1" @@ -4596,22 +4474,22 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG3cdeb8e4/providers/Microsoft.RecoveryServices/vaults/PSTestRSV3cdeb8e4/backupJobs/Azure/operationResults/15540ce9-400a-4659-b701-cc2508d0f0fd?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHM2NkZWI4ZTQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YzY2RlYjhlNC9iYWNrdXBKb2JzL0F6dXJlL29wZXJhdGlvblJlc3VsdHMvMTU1NDBjZTktNDAwYS00NjU5LWI3MDEtY2MyNTA4ZDBmMGZkP2FwaS12ZXJzaW9uPTIwMjEtMTAtMDE=", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGae69e07b/providers/Microsoft.RecoveryServices/vaults/PSTestRSVae69e07b/backupOperations/792bcb4b-100a-4bc3-9c52-69f29743d874?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYWU2OWUwN2IvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZhZTY5ZTA3Yi9iYWNrdXBPcGVyYXRpb25zLzc5MmJjYjRiLTEwMGEtNGJjMy05YzUyLTY5ZjI5NzQzZDg3ND9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b7ce6aec-794f-490b-b5d2-8f654f4e2d65" + "4f079c36-ae0c-42d6-9952-654ce896df2f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -4625,54 +4503,63 @@ "nosniff" ], "x-ms-request-id": [ - "fafc2f0f-ecc3-49a4-81b1-7c204c77addc" + "257893a9-c7b3-4cf0-bd35-558438fe213f" ], "x-ms-client-request-id": [ - "b7ce6aec-794f-490b-b5d2-8f654f4e2d65", - "b7ce6aec-794f-490b-b5d2-8f654f4e2d65" + "4f079c36-ae0c-42d6-9952-654ce896df2f", + "4f079c36-ae0c-42d6-9952-654ce896df2f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-IIS/10.0" + ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "149" + "104" ], "x-ms-correlation-request-id": [ - "fafc2f0f-ecc3-49a4-81b1-7c204c77addc" + "257893a9-c7b3-4cf0-bd35-558438fe213f" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T215934Z:fafc2f0f-ecc3-49a4-81b1-7c204c77addc" + "JIOINDIAWEST:20220517T035130Z:257893a9-c7b3-4cf0-bd35-558438fe213f" ], "Date": [ - "Wed, 23 Feb 2022 21:59:33 GMT" + "Tue, 17 May 2022 03:51:29 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" ], "Expires": [ "-1" ] }, - "ResponseBody": "", - "StatusCode": 204 + "ResponseBody": "{\r\n \"id\": \"792bcb4b-100a-4bc3-9c52-69f29743d874\",\r\n \"name\": \"792bcb4b-100a-4bc3-9c52-69f29743d874\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T03:51:29.9102886Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG3cdeb8e4/providers/Microsoft.RecoveryServices/vaults/PSTestRSV3cdeb8e4/backupJobs/Azure/operationResults/15540ce9-400a-4659-b701-cc2508d0f0fd?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHM2NkZWI4ZTQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YzY2RlYjhlNC9iYWNrdXBKb2JzL0F6dXJlL29wZXJhdGlvblJlc3VsdHMvMTU1NDBjZTktNDAwYS00NjU5LWI3MDEtY2MyNTA4ZDBmMGZkP2FwaS12ZXJzaW9uPTIwMjEtMTAtMDE=", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGae69e07b/providers/Microsoft.RecoveryServices/vaults/PSTestRSVae69e07b/backupOperations/792bcb4b-100a-4bc3-9c52-69f29743d874?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYWU2OWUwN2IvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZhZTY5ZTA3Yi9iYWNrdXBPcGVyYXRpb25zLzc5MmJjYjRiLTEwMGEtNGJjMy05YzUyLTY5ZjI5NzQzZDg3ND9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b7ce6aec-794f-490b-b5d2-8f654f4e2d65" + "4f079c36-ae0c-42d6-9952-654ce896df2f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -4686,54 +4573,63 @@ "nosniff" ], "x-ms-request-id": [ - "67c75282-4e11-4482-bac4-07e8bed395ef" + "b9e33f7f-026c-4c9d-9196-4266b699a746" ], "x-ms-client-request-id": [ - "b7ce6aec-794f-490b-b5d2-8f654f4e2d65", - "b7ce6aec-794f-490b-b5d2-8f654f4e2d65" + "4f079c36-ae0c-42d6-9952-654ce896df2f", + "4f079c36-ae0c-42d6-9952-654ce896df2f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-IIS/10.0" + ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "148" + "103" ], "x-ms-correlation-request-id": [ - "67c75282-4e11-4482-bac4-07e8bed395ef" + "b9e33f7f-026c-4c9d-9196-4266b699a746" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T215935Z:67c75282-4e11-4482-bac4-07e8bed395ef" + "JIOINDIAWEST:20220517T035135Z:b9e33f7f-026c-4c9d-9196-4266b699a746" ], "Date": [ - "Wed, 23 Feb 2022 21:59:34 GMT" + "Tue, 17 May 2022 03:51:35 GMT" + ], + "Content-Length": [ + "304" + ], + "Content-Type": [ + "application/json" ], "Expires": [ "-1" ] }, - "ResponseBody": "", - "StatusCode": 204 + "ResponseBody": "{\r\n \"id\": \"792bcb4b-100a-4bc3-9c52-69f29743d874\",\r\n \"name\": \"792bcb4b-100a-4bc3-9c52-69f29743d874\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-05-17T03:51:29.9102886Z\",\r\n \"endTime\": \"2022-05-17T03:51:29.9102886Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"347c15e1-734f-41f9-ab7c-cc4935c1dd86\"\r\n }\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG3cdeb8e4/providers/Microsoft.RecoveryServices/vaults?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHM2NkZWI4ZTQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cz9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGae69e07b/providers/Microsoft.RecoveryServices/vaults/PSTestRSVae69e07b/backupOperations/792bcb4b-100a-4bc3-9c52-69f29743d874?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYWU2OWUwN2IvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZhZTY5ZTA3Yi9iYWNrdXBPcGVyYXRpb25zLzc5MmJjYjRiLTEwMGEtNGJjMy05YzUyLTY5ZjI5NzQzZDg3ND9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6fe2b09d-e481-4009-8ef8-6adee10aa98d" + "4f079c36-ae0c-42d6-9952-654ce896df2f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesClient/4.3.2.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -4747,10 +4643,11 @@ "nosniff" ], "x-ms-request-id": [ - "726284f6-fbfc-44fb-9f15-fcc7756d678b" + "a0b39cc1-379b-4bd5-9294-d0bca714de6e" ], "x-ms-client-request-id": [ - "6fe2b09d-e481-4009-8ef8-6adee10aa98d" + "4f079c36-ae0c-42d6-9952-654ce896df2f", + "4f079c36-ae0c-42d6-9952-654ce896df2f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4758,20 +4655,23 @@ "Server": [ "Microsoft-IIS/10.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "102" ], "x-ms-correlation-request-id": [ - "726284f6-fbfc-44fb-9f15-fcc7756d678b" + "a0b39cc1-379b-4bd5-9294-d0bca714de6e" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T215936Z:726284f6-fbfc-44fb-9f15-fcc7756d678b" + "JIOINDIAWEST:20220517T035136Z:a0b39cc1-379b-4bd5-9294-d0bca714de6e" ], "Date": [ - "Wed, 23 Feb 2022 21:59:35 GMT" + "Tue, 17 May 2022 03:51:35 GMT" ], "Content-Length": [ - "478" + "304" ], "Content-Type": [ "application/json" @@ -4780,26 +4680,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"PSTestRSV3cdeb8e4\",\r\n \"etag\": \"W/\\\"datetime'2022-02-23T21%3A58%3A17.0283182Z'\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateEndpointStateForBackup\": \"None\",\r\n \"privateEndpointStateForSiteRecovery\": \"None\"\r\n },\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG3cdeb8e4/providers/Microsoft.RecoveryServices/vaults/PSTestRSV3cdeb8e4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"792bcb4b-100a-4bc3-9c52-69f29743d874\",\r\n \"name\": \"792bcb4b-100a-4bc3-9c52-69f29743d874\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-05-17T03:51:29.9102886Z\",\r\n \"endTime\": \"2022-05-17T03:51:29.9102886Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"347c15e1-734f-41f9-ab7c-cc4935c1dd86\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG3cdeb8e4/providers/Microsoft.RecoveryServices/vaults/PSTestRSV3cdeb8e4/backupProtectionContainers?$filter=backupManagementType%20eq%20'AzureIaasVM'%20and%20status%20eq%20'Registered'&api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHM2NkZWI4ZTQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YzY2RlYjhlNC9iYWNrdXBQcm90ZWN0aW9uQ29udGFpbmVycz8kZmlsdGVyPWJhY2t1cE1hbmFnZW1lbnRUeXBlJTIwZXElMjAnQXp1cmVJYWFzVk0nJTIwYW5kJTIwc3RhdHVzJTIwZXElMjAnUmVnaXN0ZXJlZCcmYXBpLXZlcnNpb249MjAyMS0xMC0wMQ==", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGae69e07b/providers/Microsoft.RecoveryServices/vaults/PSTestRSVae69e07b/backupJobs/347c15e1-734f-41f9-ab7c-cc4935c1dd86?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYWU2OWUwN2IvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZhZTY5ZTA3Yi9iYWNrdXBKb2JzLzM0N2MxNWUxLTczNGYtNDFmOS1hYjdjLWNjNDkzNWMxZGQ4Nj9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c97c2884-a265-487f-9c7c-05bf8716cbdb" + "4f079c36-ae0c-42d6-9952-654ce896df2f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -4809,39 +4709,40 @@ "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-IIS/10.0", + "Microsoft-IIS/10.0" + ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "8bdba17f-829b-47b3-bd37-36440198b8d1" + "dabf4f6b-36c7-4f61-b989-a37e8d2d318d" ], "x-ms-client-request-id": [ - "c97c2884-a265-487f-9c7c-05bf8716cbdb", - "c97c2884-a265-487f-9c7c-05bf8716cbdb" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-IIS/10.0" + "4f079c36-ae0c-42d6-9952-654ce896df2f", + "4f079c36-ae0c-42d6-9952-654ce896df2f" ], "X-Powered-By": [ "ASP.NET" ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "147" + "144" ], "x-ms-correlation-request-id": [ - "8bdba17f-829b-47b3-bd37-36440198b8d1" + "dabf4f6b-36c7-4f61-b989-a37e8d2d318d" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T215936Z:8bdba17f-829b-47b3-bd37-36440198b8d1" + "JIOINDIAWEST:20220517T035137Z:dabf4f6b-36c7-4f61-b989-a37e8d2d318d" ], "Date": [ - "Wed, 23 Feb 2022 21:59:36 GMT" + "Tue, 17 May 2022 03:51:36 GMT" ], "Content-Length": [ - "914" + "968" ], "Content-Type": [ "application/json" @@ -4850,26 +4751,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG3cdeb8e4/providers/Microsoft.RecoveryServices/vaults/PSTestRSV3cdeb8e4/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrg3cdeb8e4;pstestvm3cdeb0\",\r\n \"name\": \"IaasVMContainer;iaasvmcontainerv2;pstestrg3cdeb8e4;pstestvm3cdeb0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers\",\r\n \"properties\": {\r\n \"virtualMachineId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG3cdeb8e4/providers/Microsoft.Compute/virtualMachines/PSTestVM3cdeb0\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"resourceGroup\": \"PSTestRG3cdeb8e4\",\r\n \"friendlyName\": \"PSTestVM3cdeb0\",\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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGae69e07b/providers/Microsoft.RecoveryServices/vaults/PSTestRSVae69e07b/backupJobs/347c15e1-734f-41f9-ab7c-cc4935c1dd86\",\r\n \"name\": \"347c15e1-734f-41f9-ab7c-cc4935c1dd86\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgae69e07b;pstestvmae69e0\",\r\n \"duration\": \"PT6.7692454S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvmae69e0\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvmae69e0\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T03:51:29.9102886Z\",\r\n \"activityId\": \"4f079c36-ae0c-42d6-9952-654ce896df2f\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG3cdeb8e4/providers/Microsoft.RecoveryServices/vaults/PSTestRSV3cdeb8e4/backupFabrics/Azure/protectionContainers/IaasVMContainer%3Biaasvmcontainerv2%3Bpstestrg3cdeb8e4%3Bpstestvm3cdeb0/protectedItems/VM%3Biaasvmcontainerv2%3Bpstestrg3cdeb8e4%3Bpstestvm3cdeb0/recoveryPoints?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHM2NkZWI4ZTQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YzY2RlYjhlNC9iYWNrdXBGYWJyaWNzL0F6dXJlL3Byb3RlY3Rpb25Db250YWluZXJzL0lhYXNWTUNvbnRhaW5lciUzQmlhYXN2bWNvbnRhaW5lcnYyJTNCcHN0ZXN0cmczY2RlYjhlNCUzQnBzdGVzdHZtM2NkZWIwL3Byb3RlY3RlZEl0ZW1zL1ZNJTNCaWFhc3ZtY29udGFpbmVydjIlM0Jwc3Rlc3RyZzNjZGViOGU0JTNCcHN0ZXN0dm0zY2RlYjAvcmVjb3ZlcnlQb2ludHM/YXBpLXZlcnNpb249MjAyMS0xMC0wMQ==", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGae69e07b/providers/Microsoft.RecoveryServices/vaults/PSTestRSVae69e07b/backupJobs/347c15e1-734f-41f9-ab7c-cc4935c1dd86?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYWU2OWUwN2IvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZhZTY5ZTA3Yi9iYWNrdXBKb2JzLzM0N2MxNWUxLTczNGYtNDFmOS1hYjdjLWNjNDkzNWMxZGQ4Nj9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5785443b-f12e-4f17-b1ea-899d8b5143d2" + "e3eb2bac-793e-460d-a3e4-77768869630a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -4879,39 +4780,40 @@ "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-IIS/10.0", + "Microsoft-IIS/10.0" + ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "f3465ba2-a6a1-4145-b5be-4b525f6a01a0" + "59da7fe7-7c85-4ecc-87df-829765d01095" ], "x-ms-client-request-id": [ - "5785443b-f12e-4f17-b1ea-899d8b5143d2", - "5785443b-f12e-4f17-b1ea-899d8b5143d2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-IIS/10.0" + "e3eb2bac-793e-460d-a3e4-77768869630a", + "e3eb2bac-793e-460d-a3e4-77768869630a" ], "X-Powered-By": [ "ASP.NET" ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "149" + "143" ], "x-ms-correlation-request-id": [ - "f3465ba2-a6a1-4145-b5be-4b525f6a01a0" + "59da7fe7-7c85-4ecc-87df-829765d01095" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T215938Z:f3465ba2-a6a1-4145-b5be-4b525f6a01a0" + "JIOINDIAWEST:20220517T035144Z:59da7fe7-7c85-4ecc-87df-829765d01095" ], "Date": [ - "Wed, 23 Feb 2022 21:59:38 GMT" + "Tue, 17 May 2022 03:51:44 GMT" ], "Content-Length": [ - "12" + "969" ], "Content-Type": [ "application/json" @@ -4920,26 +4822,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGae69e07b/providers/Microsoft.RecoveryServices/vaults/PSTestRSVae69e07b/backupJobs/347c15e1-734f-41f9-ab7c-cc4935c1dd86\",\r\n \"name\": \"347c15e1-734f-41f9-ab7c-cc4935c1dd86\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgae69e07b;pstestvmae69e0\",\r\n \"duration\": \"PT14.8382774S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Cancelling\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Cancelling\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvmae69e0\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvmae69e0\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"Cancelling\",\r\n \"startTime\": \"2022-05-17T03:51:29.9102886Z\",\r\n \"activityId\": \"4f079c36-ae0c-42d6-9952-654ce896df2f\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG3cdeb8e4/providers/Microsoft.RecoveryServices/vaults/PSTestRSV3cdeb8e4/backupFabrics/Azure/protectionContainers/IaasVMContainer%3Biaasvmcontainerv2%3Bpstestrg3cdeb8e4%3Bpstestvm3cdeb0/protectedItems/VM%3Biaasvmcontainerv2%3Bpstestrg3cdeb8e4%3Bpstestvm3cdeb0?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHM2NkZWI4ZTQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YzY2RlYjhlNC9iYWNrdXBGYWJyaWNzL0F6dXJlL3Byb3RlY3Rpb25Db250YWluZXJzL0lhYXNWTUNvbnRhaW5lciUzQmlhYXN2bWNvbnRhaW5lcnYyJTNCcHN0ZXN0cmczY2RlYjhlNCUzQnBzdGVzdHZtM2NkZWIwL3Byb3RlY3RlZEl0ZW1zL1ZNJTNCaWFhc3ZtY29udGFpbmVydjIlM0Jwc3Rlc3RyZzNjZGViOGU0JTNCcHN0ZXN0dm0zY2RlYjA/YXBpLXZlcnNpb249MjAyMS0xMC0wMQ==", - "RequestMethod": "DELETE", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGae69e07b/providers/Microsoft.RecoveryServices/vaults/PSTestRSVae69e07b/backupJobs/347c15e1-734f-41f9-ab7c-cc4935c1dd86/cancel?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYWU2OWUwN2IvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZhZTY5ZTA3Yi9iYWNrdXBKb2JzLzM0N2MxNWUxLTczNGYtNDFmOS1hYjdjLWNjNDkzNWMxZGQ4Ni9jYW5jZWw/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5785443b-f12e-4f17-b1ea-899d8b5143d2" + "e3eb2bac-793e-460d-a3e4-77768869630a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -4950,23 +4852,23 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG3cdeb8e4/providers/Microsoft.RecoveryServices/vaults/PSTestRSV3cdeb8e4/backupOperationResults/efa1c767-e9ca-42c8-b806-9072648bdef6?api-version=2021-10-01" + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGae69e07b/providers/Microsoft.RecoveryServices/vaults/PSTestRSVae69e07b/backupJobs/347c15e1-734f-41f9-ab7c-cc4935c1dd86/operationResults/61b56b9d-5740-49e4-8e69-a9b6889c2a45?api-version=2022-02-01" ], "Retry-After": [ "60" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG3cdeb8e4/providers/Microsoft.RecoveryServices/vaults/PSTestRSV3cdeb8e4/backupOperations/efa1c767-e9ca-42c8-b806-9072648bdef6?api-version=2021-10-01" + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGae69e07b/providers/Microsoft.RecoveryServices/vaults/PSTestRSVae69e07b/backupJobs/347c15e1-734f-41f9-ab7c-cc4935c1dd86/operationsStatus/61b56b9d-5740-49e4-8e69-a9b6889c2a45?api-version=2019-05-13-preview" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "53683898-948a-405f-bfdf-cfeca167940d" + "ff4f2bf4-f7cd-4dd7-b59e-2658256097e1" ], "x-ms-client-request-id": [ - "5785443b-f12e-4f17-b1ea-899d8b5143d2", - "5785443b-f12e-4f17-b1ea-899d8b5143d2" + "e3eb2bac-793e-460d-a3e4-77768869630a", + "e3eb2bac-793e-460d-a3e4-77768869630a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4974,17 +4876,17 @@ "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ - "14999" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" ], "x-ms-correlation-request-id": [ - "53683898-948a-405f-bfdf-cfeca167940d" + "ff4f2bf4-f7cd-4dd7-b59e-2658256097e1" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T215938Z:53683898-948a-405f-bfdf-cfeca167940d" + "JIOINDIAWEST:20220517T035137Z:ff4f2bf4-f7cd-4dd7-b59e-2658256097e1" ], "Date": [ - "Wed, 23 Feb 2022 21:59:38 GMT" + "Tue, 17 May 2022 03:51:37 GMT" ], "Expires": [ "-1" @@ -4997,22 +4899,22 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG3cdeb8e4/providers/Microsoft.RecoveryServices/vaults/PSTestRSV3cdeb8e4/backupOperations/efa1c767-e9ca-42c8-b806-9072648bdef6?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHM2NkZWI4ZTQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YzY2RlYjhlNC9iYWNrdXBPcGVyYXRpb25zL2VmYTFjNzY3LWU5Y2EtNDJjOC1iODA2LTkwNzI2NDhiZGVmNj9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGae69e07b/providers/Microsoft.RecoveryServices/vaults/PSTestRSVae69e07b/backupJobs/Azure/operationResults/61b56b9d-5740-49e4-8e69-a9b6889c2a45?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYWU2OWUwN2IvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZhZTY5ZTA3Yi9iYWNrdXBKb2JzL0F6dXJlL29wZXJhdGlvblJlc3VsdHMvNjFiNTZiOWQtNTc0MC00OWU0LThlNjktYTliNjg4OWMyYTQ1P2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5785443b-f12e-4f17-b1ea-899d8b5143d2" + "e3eb2bac-793e-460d-a3e4-77768869630a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -5022,67 +4924,70 @@ "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGae69e07b/providers/Microsoft.RecoveryServices/vaults/PSTestRSVae69e07b/backupJobs/Azure/operationResults/61b56b9d-5740-49e4-8e69-a9b6889c2a45?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGae69e07b/providers/Microsoft.RecoveryServices/vaults/PSTestRSVae69e07b/backupJobs/Azure/operationsStatus/61b56b9d-5740-49e4-8e69-a9b6889c2a45?api-version=2019-05-13-preview" + ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "7d17e57b-5d9c-40ce-9ca5-370b75d8077c" + "3d543a6e-8360-4a33-9fca-768cfdb684a6" ], "x-ms-client-request-id": [ - "5785443b-f12e-4f17-b1ea-899d8b5143d2", - "5785443b-f12e-4f17-b1ea-899d8b5143d2" + "e3eb2bac-793e-460d-a3e4-77768869630a", + "e3eb2bac-793e-460d-a3e4-77768869630a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Server": [ - "Microsoft-IIS/10.0" - ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "142" + "146" ], "x-ms-correlation-request-id": [ - "7d17e57b-5d9c-40ce-9ca5-370b75d8077c" + "3d543a6e-8360-4a33-9fca-768cfdb684a6" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T215939Z:7d17e57b-5d9c-40ce-9ca5-370b75d8077c" + "JIOINDIAWEST:20220517T035138Z:3d543a6e-8360-4a33-9fca-768cfdb684a6" ], "Date": [ - "Wed, 23 Feb 2022 21:59:39 GMT" - ], - "Content-Length": [ - "188" - ], - "Content-Type": [ - "application/json" + "Tue, 17 May 2022 03:51:37 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, - "ResponseBody": "{\r\n \"id\": \"efa1c767-e9ca-42c8-b806-9072648bdef6\",\r\n \"name\": \"efa1c767-e9ca-42c8-b806-9072648bdef6\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-23T21:59:38.4997089Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", - "StatusCode": 200 + "ResponseBody": "", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG3cdeb8e4/providers/Microsoft.RecoveryServices/vaults/PSTestRSV3cdeb8e4/backupOperations/efa1c767-e9ca-42c8-b806-9072648bdef6?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHM2NkZWI4ZTQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YzY2RlYjhlNC9iYWNrdXBPcGVyYXRpb25zL2VmYTFjNzY3LWU5Y2EtNDJjOC1iODA2LTkwNzI2NDhiZGVmNj9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGae69e07b/providers/Microsoft.RecoveryServices/vaults/PSTestRSVae69e07b/backupJobs/Azure/operationResults/61b56b9d-5740-49e4-8e69-a9b6889c2a45?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYWU2OWUwN2IvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZhZTY5ZTA3Yi9iYWNrdXBKb2JzL0F6dXJlL29wZXJhdGlvblJlc3VsdHMvNjFiNTZiOWQtNTc0MC00OWU0LThlNjktYTliNjg4OWMyYTQ1P2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5785443b-f12e-4f17-b1ea-899d8b5143d2" + "e3eb2bac-793e-460d-a3e4-77768869630a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -5096,63 +5001,109 @@ "nosniff" ], "x-ms-request-id": [ - "0d0c9ddd-374f-4ec5-9eee-51c5c9b9f211" + "28b9d8c1-2552-4fbc-ba71-314723fa710a" ], "x-ms-client-request-id": [ - "5785443b-f12e-4f17-b1ea-899d8b5143d2", - "5785443b-f12e-4f17-b1ea-899d8b5143d2" + "e3eb2bac-793e-460d-a3e4-77768869630a", + "e3eb2bac-793e-460d-a3e4-77768869630a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Server": [ - "Microsoft-IIS/10.0" - ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "141" + "145" ], "x-ms-correlation-request-id": [ - "0d0c9ddd-374f-4ec5-9eee-51c5c9b9f211" + "28b9d8c1-2552-4fbc-ba71-314723fa710a" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T215949Z:0d0c9ddd-374f-4ec5-9eee-51c5c9b9f211" + "JIOINDIAWEST:20220517T035143Z:28b9d8c1-2552-4fbc-ba71-314723fa710a" ], "Date": [ - "Wed, 23 Feb 2022 21:59:49 GMT" + "Tue, 17 May 2022 03:51:43 GMT" + ] + }, + "ResponseBody": "", + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGae69e07b/providers/Microsoft.RecoveryServices/vaults/PSTestRSVae69e07b/backupJobs/Azure/operationResults/61b56b9d-5740-49e4-8e69-a9b6889c2a45?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYWU2OWUwN2IvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZhZTY5ZTA3Yi9iYWNrdXBKb2JzL0F6dXJlL29wZXJhdGlvblJlc3VsdHMvNjFiNTZiOWQtNTc0MC00OWU0LThlNjktYTliNjg4OWMyYTQ1P2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e3eb2bac-793e-460d-a3e4-77768869630a" ], - "Content-Length": [ - "188" + "Accept-Language": [ + "en-US" ], - "Content-Type": [ - "application/json" + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" ], - "Expires": [ - "-1" + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "cf0697d1-149e-41d6-b598-205efbbb6280" + ], + "x-ms-client-request-id": [ + "e3eb2bac-793e-460d-a3e4-77768869630a", + "e3eb2bac-793e-460d-a3e4-77768869630a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "144" + ], + "x-ms-correlation-request-id": [ + "cf0697d1-149e-41d6-b598-205efbbb6280" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220517T035144Z:cf0697d1-149e-41d6-b598-205efbbb6280" + ], + "Date": [ + "Tue, 17 May 2022 03:51:44 GMT" ] }, - "ResponseBody": "{\r\n \"id\": \"efa1c767-e9ca-42c8-b806-9072648bdef6\",\r\n \"name\": \"efa1c767-e9ca-42c8-b806-9072648bdef6\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-23T21:59:38.4997089Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", - "StatusCode": 200 + "ResponseBody": "", + "StatusCode": 204 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG3cdeb8e4/providers/Microsoft.RecoveryServices/vaults/PSTestRSV3cdeb8e4/backupOperations/efa1c767-e9ca-42c8-b806-9072648bdef6?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHM2NkZWI4ZTQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YzY2RlYjhlNC9iYWNrdXBPcGVyYXRpb25zL2VmYTFjNzY3LWU5Y2EtNDJjOC1iODA2LTkwNzI2NDhiZGVmNj9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGae69e07b/providers/Microsoft.RecoveryServices/vaults?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYWU2OWUwN2IvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cz9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5785443b-f12e-4f17-b1ea-899d8b5143d2" + "a1100a5f-6e5a-491d-a8a9-134454beb86a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesClient/4.3.2.0" ] }, "ResponseHeaders": { @@ -5166,11 +5117,10 @@ "nosniff" ], "x-ms-request-id": [ - "ff597e15-af4e-42a9-89e6-0ba547570a1d" + "24f8357d-8a43-4677-bbc8-09896044229c" ], "x-ms-client-request-id": [ - "5785443b-f12e-4f17-b1ea-899d8b5143d2", - "5785443b-f12e-4f17-b1ea-899d8b5143d2" + "a1100a5f-6e5a-491d-a8a9-134454beb86a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5178,23 +5128,20 @@ "Server": [ "Microsoft-IIS/10.0" ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "140" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" ], "x-ms-correlation-request-id": [ - "ff597e15-af4e-42a9-89e6-0ba547570a1d" + "24f8357d-8a43-4677-bbc8-09896044229c" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T220000Z:ff597e15-af4e-42a9-89e6-0ba547570a1d" + "JIOINDIAWEST:20220517T035146Z:24f8357d-8a43-4677-bbc8-09896044229c" ], "Date": [ - "Wed, 23 Feb 2022 22:00:00 GMT" + "Tue, 17 May 2022 03:51:45 GMT" ], "Content-Length": [ - "188" + "529" ], "Content-Type": [ "application/json" @@ -5203,26 +5150,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"efa1c767-e9ca-42c8-b806-9072648bdef6\",\r\n \"name\": \"efa1c767-e9ca-42c8-b806-9072648bdef6\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-23T21:59:38.4997089Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"PSTestRSVae69e07b\",\r\n \"etag\": \"W/\\\"datetime'2022-05-17T03%3A50%3A28.552663Z'\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateEndpointStateForBackup\": \"None\",\r\n \"privateEndpointStateForSiteRecovery\": \"None\",\r\n \"networkSettings\": {\r\n \"publicNetworkAccess\": \"Enabled\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGae69e07b/providers/Microsoft.RecoveryServices/vaults/PSTestRSVae69e07b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG3cdeb8e4/providers/Microsoft.RecoveryServices/vaults/PSTestRSV3cdeb8e4/backupOperations/efa1c767-e9ca-42c8-b806-9072648bdef6?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHM2NkZWI4ZTQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YzY2RlYjhlNC9iYWNrdXBPcGVyYXRpb25zL2VmYTFjNzY3LWU5Y2EtNDJjOC1iODA2LTkwNzI2NDhiZGVmNj9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGae69e07b/providers/Microsoft.RecoveryServices/vaults/PSTestRSVae69e07b/backupProtectionContainers?$filter=backupManagementType%20eq%20'AzureIaasVM'%20and%20status%20eq%20'Registered'&api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYWU2OWUwN2IvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZhZTY5ZTA3Yi9iYWNrdXBQcm90ZWN0aW9uQ29udGFpbmVycz8kZmlsdGVyPWJhY2t1cE1hbmFnZW1lbnRUeXBlJTIwZXElMjAnQXp1cmVJYWFzVk0nJTIwYW5kJTIwc3RhdHVzJTIwZXElMjAnUmVnaXN0ZXJlZCcmYXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5785443b-f12e-4f17-b1ea-899d8b5143d2" + "4571b1dc-ea90-4e5d-b848-e6307baa042d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -5236,11 +5183,11 @@ "nosniff" ], "x-ms-request-id": [ - "206d4355-21a2-41be-8fa8-e15d90e63cd6" + "ec5aa7cc-eab8-47fb-b6c7-cb6331833399" ], "x-ms-client-request-id": [ - "5785443b-f12e-4f17-b1ea-899d8b5143d2", - "5785443b-f12e-4f17-b1ea-899d8b5143d2" + "4571b1dc-ea90-4e5d-b848-e6307baa042d", + "4571b1dc-ea90-4e5d-b848-e6307baa042d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5252,19 +5199,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "139" + "144" ], "x-ms-correlation-request-id": [ - "206d4355-21a2-41be-8fa8-e15d90e63cd6" + "ec5aa7cc-eab8-47fb-b6c7-cb6331833399" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T220011Z:206d4355-21a2-41be-8fa8-e15d90e63cd6" + "JIOINDIAWEST:20220517T035146Z:ec5aa7cc-eab8-47fb-b6c7-cb6331833399" ], "Date": [ - "Wed, 23 Feb 2022 22:00:10 GMT" + "Tue, 17 May 2022 03:51:46 GMT" ], "Content-Length": [ - "188" + "914" ], "Content-Type": [ "application/json" @@ -5273,26 +5220,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"efa1c767-e9ca-42c8-b806-9072648bdef6\",\r\n \"name\": \"efa1c767-e9ca-42c8-b806-9072648bdef6\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-23T21:59:38.4997089Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGae69e07b/providers/Microsoft.RecoveryServices/vaults/PSTestRSVae69e07b/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrgae69e07b;pstestvmae69e0\",\r\n \"name\": \"IaasVMContainer;iaasvmcontainerv2;pstestrgae69e07b;pstestvmae69e0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers\",\r\n \"properties\": {\r\n \"virtualMachineId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGae69e07b/providers/Microsoft.Compute/virtualMachines/PSTestVMae69e0\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"resourceGroup\": \"PSTestRGae69e07b\",\r\n \"friendlyName\": \"PSTestVMae69e0\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG3cdeb8e4/providers/Microsoft.RecoveryServices/vaults/PSTestRSV3cdeb8e4/backupOperations/efa1c767-e9ca-42c8-b806-9072648bdef6?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHM2NkZWI4ZTQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YzY2RlYjhlNC9iYWNrdXBPcGVyYXRpb25zL2VmYTFjNzY3LWU5Y2EtNDJjOC1iODA2LTkwNzI2NDhiZGVmNj9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGae69e07b/providers/Microsoft.RecoveryServices/vaults/PSTestRSVae69e07b/backupFabrics/Azure/protectionContainers/IaasVMContainer%3Biaasvmcontainerv2%3Bpstestrgae69e07b%3Bpstestvmae69e0/protectedItems/VM%3Biaasvmcontainerv2%3Bpstestrgae69e07b%3Bpstestvmae69e0/recoveryPoints?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYWU2OWUwN2IvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZhZTY5ZTA3Yi9iYWNrdXBGYWJyaWNzL0F6dXJlL3Byb3RlY3Rpb25Db250YWluZXJzL0lhYXNWTUNvbnRhaW5lciUzQmlhYXN2bWNvbnRhaW5lcnYyJTNCcHN0ZXN0cmdhZTY5ZTA3YiUzQnBzdGVzdHZtYWU2OWUwL3Byb3RlY3RlZEl0ZW1zL1ZNJTNCaWFhc3ZtY29udGFpbmVydjIlM0Jwc3Rlc3RyZ2FlNjllMDdiJTNCcHN0ZXN0dm1hZTY5ZTAvcmVjb3ZlcnlQb2ludHM/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5785443b-f12e-4f17-b1ea-899d8b5143d2" + "c36bb0f7-f47b-4f48-901d-faac990ed8fe" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -5306,11 +5253,11 @@ "nosniff" ], "x-ms-request-id": [ - "bf635ef9-2940-4287-b89b-63c3c33ddb69" + "b993668b-ac4b-4f71-aba2-9ece4b09212a" ], "x-ms-client-request-id": [ - "5785443b-f12e-4f17-b1ea-899d8b5143d2", - "5785443b-f12e-4f17-b1ea-899d8b5143d2" + "c36bb0f7-f47b-4f48-901d-faac990ed8fe", + "c36bb0f7-f47b-4f48-901d-faac990ed8fe" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5322,19 +5269,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "138" + "148" ], "x-ms-correlation-request-id": [ - "bf635ef9-2940-4287-b89b-63c3c33ddb69" + "b993668b-ac4b-4f71-aba2-9ece4b09212a" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T220021Z:bf635ef9-2940-4287-b89b-63c3c33ddb69" + "JIOINDIAWEST:20220517T035147Z:b993668b-ac4b-4f71-aba2-9ece4b09212a" ], "Date": [ - "Wed, 23 Feb 2022 22:00:21 GMT" + "Tue, 17 May 2022 03:51:47 GMT" ], "Content-Length": [ - "188" + "12" ], "Content-Type": [ "application/json" @@ -5343,26 +5290,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"efa1c767-e9ca-42c8-b806-9072648bdef6\",\r\n \"name\": \"efa1c767-e9ca-42c8-b806-9072648bdef6\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-23T21:59:38.4997089Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"value\": []\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG3cdeb8e4/providers/Microsoft.RecoveryServices/vaults/PSTestRSV3cdeb8e4/backupOperations/efa1c767-e9ca-42c8-b806-9072648bdef6?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHM2NkZWI4ZTQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YzY2RlYjhlNC9iYWNrdXBPcGVyYXRpb25zL2VmYTFjNzY3LWU5Y2EtNDJjOC1iODA2LTkwNzI2NDhiZGVmNj9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", - "RequestMethod": "GET", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGae69e07b/providers/Microsoft.RecoveryServices/vaults/PSTestRSVae69e07b/backupFabrics/Azure/protectionContainers/IaasVMContainer%3Biaasvmcontainerv2%3Bpstestrgae69e07b%3Bpstestvmae69e0/protectedItems/VM%3Biaasvmcontainerv2%3Bpstestrgae69e07b%3Bpstestvmae69e0?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYWU2OWUwN2IvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZhZTY5ZTA3Yi9iYWNrdXBGYWJyaWNzL0F6dXJlL3Byb3RlY3Rpb25Db250YWluZXJzL0lhYXNWTUNvbnRhaW5lciUzQmlhYXN2bWNvbnRhaW5lcnYyJTNCcHN0ZXN0cmdhZTY5ZTA3YiUzQnBzdGVzdHZtYWU2OWUwL3Byb3RlY3RlZEl0ZW1zL1ZNJTNCaWFhc3ZtY29udGFpbmVydjIlM0Jwc3Rlc3RyZ2FlNjllMDdiJTNCcHN0ZXN0dm1hZTY5ZTA/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5785443b-f12e-4f17-b1ea-899d8b5143d2" + "c36bb0f7-f47b-4f48-901d-faac990ed8fe" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -5372,67 +5319,70 @@ "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGae69e07b/providers/Microsoft.RecoveryServices/vaults/PSTestRSVae69e07b/backupOperationResults/4b6400c0-ae56-4db5-ba56-edfabcaa7495?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGae69e07b/providers/Microsoft.RecoveryServices/vaults/PSTestRSVae69e07b/backupOperations/4b6400c0-ae56-4db5-ba56-edfabcaa7495?api-version=2022-02-01" + ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "5b6950a5-29a9-4f0c-9e96-1bc51db1f56e" + "60fa1860-7817-4b3c-89a2-88504ecca92a" ], "x-ms-client-request-id": [ - "5785443b-f12e-4f17-b1ea-899d8b5143d2", - "5785443b-f12e-4f17-b1ea-899d8b5143d2" + "c36bb0f7-f47b-4f48-901d-faac990ed8fe", + "c36bb0f7-f47b-4f48-901d-faac990ed8fe" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Server": [ - "Microsoft-IIS/10.0" - ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "137" + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14998" ], "x-ms-correlation-request-id": [ - "5b6950a5-29a9-4f0c-9e96-1bc51db1f56e" + "60fa1860-7817-4b3c-89a2-88504ecca92a" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T220032Z:5b6950a5-29a9-4f0c-9e96-1bc51db1f56e" + "JIOINDIAWEST:20220517T035148Z:60fa1860-7817-4b3c-89a2-88504ecca92a" ], "Date": [ - "Wed, 23 Feb 2022 22:00:31 GMT" - ], - "Content-Length": [ - "188" - ], - "Content-Type": [ - "application/json" + "Tue, 17 May 2022 03:51:48 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, - "ResponseBody": "{\r\n \"id\": \"efa1c767-e9ca-42c8-b806-9072648bdef6\",\r\n \"name\": \"efa1c767-e9ca-42c8-b806-9072648bdef6\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-23T21:59:38.4997089Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", - "StatusCode": 200 + "ResponseBody": "", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG3cdeb8e4/providers/Microsoft.RecoveryServices/vaults/PSTestRSV3cdeb8e4/backupOperations/efa1c767-e9ca-42c8-b806-9072648bdef6?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHM2NkZWI4ZTQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YzY2RlYjhlNC9iYWNrdXBPcGVyYXRpb25zL2VmYTFjNzY3LWU5Y2EtNDJjOC1iODA2LTkwNzI2NDhiZGVmNj9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGae69e07b/providers/Microsoft.RecoveryServices/vaults/PSTestRSVae69e07b/backupOperations/4b6400c0-ae56-4db5-ba56-edfabcaa7495?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYWU2OWUwN2IvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZhZTY5ZTA3Yi9iYWNrdXBPcGVyYXRpb25zLzRiNjQwMGMwLWFlNTYtNGRiNS1iYTU2LWVkZmFiY2FhNzQ5NT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5785443b-f12e-4f17-b1ea-899d8b5143d2" + "c36bb0f7-f47b-4f48-901d-faac990ed8fe" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -5446,11 +5396,11 @@ "nosniff" ], "x-ms-request-id": [ - "1fe8595c-2db0-4b1c-8002-0ea43d91713b" + "0302f5a6-3220-4b66-9b6d-5cd089a5ef4b" ], "x-ms-client-request-id": [ - "5785443b-f12e-4f17-b1ea-899d8b5143d2", - "5785443b-f12e-4f17-b1ea-899d8b5143d2" + "c36bb0f7-f47b-4f48-901d-faac990ed8fe", + "c36bb0f7-f47b-4f48-901d-faac990ed8fe" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5462,16 +5412,16 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "136" + "101" ], "x-ms-correlation-request-id": [ - "1fe8595c-2db0-4b1c-8002-0ea43d91713b" + "0302f5a6-3220-4b66-9b6d-5cd089a5ef4b" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T220053Z:1fe8595c-2db0-4b1c-8002-0ea43d91713b" + "JIOINDIAWEST:20220517T035149Z:0302f5a6-3220-4b66-9b6d-5cd089a5ef4b" ], "Date": [ - "Wed, 23 Feb 2022 22:00:53 GMT" + "Tue, 17 May 2022 03:51:48 GMT" ], "Content-Length": [ "188" @@ -5483,26 +5433,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"efa1c767-e9ca-42c8-b806-9072648bdef6\",\r\n \"name\": \"efa1c767-e9ca-42c8-b806-9072648bdef6\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-23T21:59:38.4997089Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"4b6400c0-ae56-4db5-ba56-edfabcaa7495\",\r\n \"name\": \"4b6400c0-ae56-4db5-ba56-edfabcaa7495\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T03:51:48.6314993Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG3cdeb8e4/providers/Microsoft.RecoveryServices/vaults/PSTestRSV3cdeb8e4/backupOperations/efa1c767-e9ca-42c8-b806-9072648bdef6?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHM2NkZWI4ZTQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YzY2RlYjhlNC9iYWNrdXBPcGVyYXRpb25zL2VmYTFjNzY3LWU5Y2EtNDJjOC1iODA2LTkwNzI2NDhiZGVmNj9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGae69e07b/providers/Microsoft.RecoveryServices/vaults/PSTestRSVae69e07b/backupOperations/4b6400c0-ae56-4db5-ba56-edfabcaa7495?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYWU2OWUwN2IvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZhZTY5ZTA3Yi9iYWNrdXBPcGVyYXRpb25zLzRiNjQwMGMwLWFlNTYtNGRiNS1iYTU2LWVkZmFiY2FhNzQ5NT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5785443b-f12e-4f17-b1ea-899d8b5143d2" + "c36bb0f7-f47b-4f48-901d-faac990ed8fe" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -5516,11 +5466,11 @@ "nosniff" ], "x-ms-request-id": [ - "0c550a43-5d4e-4714-a8ad-2fac2197a106" + "74d88cb0-2172-43fe-a6cc-88d8b93472a5" ], "x-ms-client-request-id": [ - "5785443b-f12e-4f17-b1ea-899d8b5143d2", - "5785443b-f12e-4f17-b1ea-899d8b5143d2" + "c36bb0f7-f47b-4f48-901d-faac990ed8fe", + "c36bb0f7-f47b-4f48-901d-faac990ed8fe" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5532,16 +5482,16 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "135" + "100" ], "x-ms-correlation-request-id": [ - "0c550a43-5d4e-4714-a8ad-2fac2197a106" + "74d88cb0-2172-43fe-a6cc-88d8b93472a5" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T220104Z:0c550a43-5d4e-4714-a8ad-2fac2197a106" + "JIOINDIAWEST:20220517T035154Z:74d88cb0-2172-43fe-a6cc-88d8b93472a5" ], "Date": [ - "Wed, 23 Feb 2022 22:01:04 GMT" + "Tue, 17 May 2022 03:51:54 GMT" ], "Content-Length": [ "188" @@ -5553,26 +5503,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"efa1c767-e9ca-42c8-b806-9072648bdef6\",\r\n \"name\": \"efa1c767-e9ca-42c8-b806-9072648bdef6\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-23T21:59:38.4997089Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"4b6400c0-ae56-4db5-ba56-edfabcaa7495\",\r\n \"name\": \"4b6400c0-ae56-4db5-ba56-edfabcaa7495\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T03:51:48.6314993Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG3cdeb8e4/providers/Microsoft.RecoveryServices/vaults/PSTestRSV3cdeb8e4/backupOperations/efa1c767-e9ca-42c8-b806-9072648bdef6?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHM2NkZWI4ZTQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YzY2RlYjhlNC9iYWNrdXBPcGVyYXRpb25zL2VmYTFjNzY3LWU5Y2EtNDJjOC1iODA2LTkwNzI2NDhiZGVmNj9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGae69e07b/providers/Microsoft.RecoveryServices/vaults/PSTestRSVae69e07b/backupOperations/4b6400c0-ae56-4db5-ba56-edfabcaa7495?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYWU2OWUwN2IvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZhZTY5ZTA3Yi9iYWNrdXBPcGVyYXRpb25zLzRiNjQwMGMwLWFlNTYtNGRiNS1iYTU2LWVkZmFiY2FhNzQ5NT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5785443b-f12e-4f17-b1ea-899d8b5143d2" + "c36bb0f7-f47b-4f48-901d-faac990ed8fe" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -5586,11 +5536,11 @@ "nosniff" ], "x-ms-request-id": [ - "ea86850d-02a8-4ad4-b375-56a67aabcc9a" + "f8af62bc-c982-47cc-8b16-f86946a2f287" ], "x-ms-client-request-id": [ - "5785443b-f12e-4f17-b1ea-899d8b5143d2", - "5785443b-f12e-4f17-b1ea-899d8b5143d2" + "c36bb0f7-f47b-4f48-901d-faac990ed8fe", + "c36bb0f7-f47b-4f48-901d-faac990ed8fe" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5602,16 +5552,16 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "134" + "99" ], "x-ms-correlation-request-id": [ - "ea86850d-02a8-4ad4-b375-56a67aabcc9a" + "f8af62bc-c982-47cc-8b16-f86946a2f287" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T220119Z:ea86850d-02a8-4ad4-b375-56a67aabcc9a" + "JIOINDIAWEST:20220517T035200Z:f8af62bc-c982-47cc-8b16-f86946a2f287" ], "Date": [ - "Wed, 23 Feb 2022 22:01:18 GMT" + "Tue, 17 May 2022 03:51:59 GMT" ], "Content-Length": [ "188" @@ -5623,26 +5573,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"efa1c767-e9ca-42c8-b806-9072648bdef6\",\r\n \"name\": \"efa1c767-e9ca-42c8-b806-9072648bdef6\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-23T21:59:38.4997089Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"4b6400c0-ae56-4db5-ba56-edfabcaa7495\",\r\n \"name\": \"4b6400c0-ae56-4db5-ba56-edfabcaa7495\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T03:51:48.6314993Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG3cdeb8e4/providers/Microsoft.RecoveryServices/vaults/PSTestRSV3cdeb8e4/backupOperations/efa1c767-e9ca-42c8-b806-9072648bdef6?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHM2NkZWI4ZTQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YzY2RlYjhlNC9iYWNrdXBPcGVyYXRpb25zL2VmYTFjNzY3LWU5Y2EtNDJjOC1iODA2LTkwNzI2NDhiZGVmNj9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGae69e07b/providers/Microsoft.RecoveryServices/vaults/PSTestRSVae69e07b/backupOperations/4b6400c0-ae56-4db5-ba56-edfabcaa7495?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYWU2OWUwN2IvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZhZTY5ZTA3Yi9iYWNrdXBPcGVyYXRpb25zLzRiNjQwMGMwLWFlNTYtNGRiNS1iYTU2LWVkZmFiY2FhNzQ5NT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5785443b-f12e-4f17-b1ea-899d8b5143d2" + "c36bb0f7-f47b-4f48-901d-faac990ed8fe" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -5656,11 +5606,11 @@ "nosniff" ], "x-ms-request-id": [ - "ad8da639-261a-4b18-9e33-17ae4fa40397" + "c454150a-89dc-4982-8ba6-4f6e513c2c03" ], "x-ms-client-request-id": [ - "5785443b-f12e-4f17-b1ea-899d8b5143d2", - "5785443b-f12e-4f17-b1ea-899d8b5143d2" + "c36bb0f7-f47b-4f48-901d-faac990ed8fe", + "c36bb0f7-f47b-4f48-901d-faac990ed8fe" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5672,16 +5622,16 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "133" + "98" ], "x-ms-correlation-request-id": [ - "ad8da639-261a-4b18-9e33-17ae4fa40397" + "c454150a-89dc-4982-8ba6-4f6e513c2c03" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T220130Z:ad8da639-261a-4b18-9e33-17ae4fa40397" + "JIOINDIAWEST:20220517T035205Z:c454150a-89dc-4982-8ba6-4f6e513c2c03" ], "Date": [ - "Wed, 23 Feb 2022 22:01:29 GMT" + "Tue, 17 May 2022 03:52:04 GMT" ], "Content-Length": [ "188" @@ -5693,26 +5643,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"efa1c767-e9ca-42c8-b806-9072648bdef6\",\r\n \"name\": \"efa1c767-e9ca-42c8-b806-9072648bdef6\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-23T21:59:38.4997089Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"4b6400c0-ae56-4db5-ba56-edfabcaa7495\",\r\n \"name\": \"4b6400c0-ae56-4db5-ba56-edfabcaa7495\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T03:51:48.6314993Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG3cdeb8e4/providers/Microsoft.RecoveryServices/vaults/PSTestRSV3cdeb8e4/backupOperations/efa1c767-e9ca-42c8-b806-9072648bdef6?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHM2NkZWI4ZTQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YzY2RlYjhlNC9iYWNrdXBPcGVyYXRpb25zL2VmYTFjNzY3LWU5Y2EtNDJjOC1iODA2LTkwNzI2NDhiZGVmNj9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGae69e07b/providers/Microsoft.RecoveryServices/vaults/PSTestRSVae69e07b/backupOperations/4b6400c0-ae56-4db5-ba56-edfabcaa7495?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYWU2OWUwN2IvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZhZTY5ZTA3Yi9iYWNrdXBPcGVyYXRpb25zLzRiNjQwMGMwLWFlNTYtNGRiNS1iYTU2LWVkZmFiY2FhNzQ5NT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5785443b-f12e-4f17-b1ea-899d8b5143d2" + "c36bb0f7-f47b-4f48-901d-faac990ed8fe" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -5726,11 +5676,11 @@ "nosniff" ], "x-ms-request-id": [ - "80c6fc4b-98c9-4052-9a93-78e2650195aa" + "5ded2d4f-3c28-494c-ae29-d5541d97d21a" ], "x-ms-client-request-id": [ - "5785443b-f12e-4f17-b1ea-899d8b5143d2", - "5785443b-f12e-4f17-b1ea-899d8b5143d2" + "c36bb0f7-f47b-4f48-901d-faac990ed8fe", + "c36bb0f7-f47b-4f48-901d-faac990ed8fe" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5742,19 +5692,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "132" + "97" ], "x-ms-correlation-request-id": [ - "80c6fc4b-98c9-4052-9a93-78e2650195aa" + "5ded2d4f-3c28-494c-ae29-d5541d97d21a" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T220140Z:80c6fc4b-98c9-4052-9a93-78e2650195aa" + "JIOINDIAWEST:20220517T035211Z:5ded2d4f-3c28-494c-ae29-d5541d97d21a" ], "Date": [ - "Wed, 23 Feb 2022 22:01:40 GMT" + "Tue, 17 May 2022 03:52:10 GMT" ], "Content-Length": [ - "304" + "188" ], "Content-Type": [ "application/json" @@ -5763,26 +5713,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"efa1c767-e9ca-42c8-b806-9072648bdef6\",\r\n \"name\": \"efa1c767-e9ca-42c8-b806-9072648bdef6\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-02-23T21:59:38.4997089Z\",\r\n \"endTime\": \"2022-02-23T21:59:38.4997089Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"402a07d4-4f38-43fb-8fee-35d0e00d4e9f\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"4b6400c0-ae56-4db5-ba56-edfabcaa7495\",\r\n \"name\": \"4b6400c0-ae56-4db5-ba56-edfabcaa7495\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T03:51:48.6314993Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG3cdeb8e4/providers/Microsoft.RecoveryServices/vaults/PSTestRSV3cdeb8e4/backupOperations/efa1c767-e9ca-42c8-b806-9072648bdef6?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHM2NkZWI4ZTQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YzY2RlYjhlNC9iYWNrdXBPcGVyYXRpb25zL2VmYTFjNzY3LWU5Y2EtNDJjOC1iODA2LTkwNzI2NDhiZGVmNj9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGae69e07b/providers/Microsoft.RecoveryServices/vaults/PSTestRSVae69e07b/backupOperations/4b6400c0-ae56-4db5-ba56-edfabcaa7495?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYWU2OWUwN2IvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZhZTY5ZTA3Yi9iYWNrdXBPcGVyYXRpb25zLzRiNjQwMGMwLWFlNTYtNGRiNS1iYTU2LWVkZmFiY2FhNzQ5NT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5785443b-f12e-4f17-b1ea-899d8b5143d2" + "c36bb0f7-f47b-4f48-901d-faac990ed8fe" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -5796,11 +5746,11 @@ "nosniff" ], "x-ms-request-id": [ - "c79e75f7-afd3-4bbb-87bb-224af497d129" + "e8f7f291-6b67-43d3-a4f4-641aae6cfe37" ], "x-ms-client-request-id": [ - "5785443b-f12e-4f17-b1ea-899d8b5143d2", - "5785443b-f12e-4f17-b1ea-899d8b5143d2" + "c36bb0f7-f47b-4f48-901d-faac990ed8fe", + "c36bb0f7-f47b-4f48-901d-faac990ed8fe" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5812,19 +5762,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "131" + "96" ], "x-ms-correlation-request-id": [ - "c79e75f7-afd3-4bbb-87bb-224af497d129" + "e8f7f291-6b67-43d3-a4f4-641aae6cfe37" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T220141Z:c79e75f7-afd3-4bbb-87bb-224af497d129" + "JIOINDIAWEST:20220517T035216Z:e8f7f291-6b67-43d3-a4f4-641aae6cfe37" ], "Date": [ - "Wed, 23 Feb 2022 22:01:40 GMT" + "Tue, 17 May 2022 03:52:16 GMT" ], "Content-Length": [ - "304" + "188" ], "Content-Type": [ "application/json" @@ -5833,26 +5783,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"efa1c767-e9ca-42c8-b806-9072648bdef6\",\r\n \"name\": \"efa1c767-e9ca-42c8-b806-9072648bdef6\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-02-23T21:59:38.4997089Z\",\r\n \"endTime\": \"2022-02-23T21:59:38.4997089Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"402a07d4-4f38-43fb-8fee-35d0e00d4e9f\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"4b6400c0-ae56-4db5-ba56-edfabcaa7495\",\r\n \"name\": \"4b6400c0-ae56-4db5-ba56-edfabcaa7495\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T03:51:48.6314993Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG3cdeb8e4/providers/Microsoft.RecoveryServices/vaults/PSTestRSV3cdeb8e4/backupJobs/402a07d4-4f38-43fb-8fee-35d0e00d4e9f?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHM2NkZWI4ZTQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YzY2RlYjhlNC9iYWNrdXBKb2JzLzQwMmEwN2Q0LTRmMzgtNDNmYi04ZmVlLTM1ZDBlMDBkNGU5Zj9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGae69e07b/providers/Microsoft.RecoveryServices/vaults/PSTestRSVae69e07b/backupOperations/4b6400c0-ae56-4db5-ba56-edfabcaa7495?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYWU2OWUwN2IvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZhZTY5ZTA3Yi9iYWNrdXBPcGVyYXRpb25zLzRiNjQwMGMwLWFlNTYtNGRiNS1iYTU2LWVkZmFiY2FhNzQ5NT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5785443b-f12e-4f17-b1ea-899d8b5143d2" + "c36bb0f7-f47b-4f48-901d-faac990ed8fe" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -5862,40 +5812,39 @@ "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-IIS/10.0" - ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "058fb71a-3e0f-4c70-ae1e-6c1c1cbb8fe5" + "8f97785f-8ed7-4ee6-b922-e7e7b274af85" ], "x-ms-client-request-id": [ - "5785443b-f12e-4f17-b1ea-899d8b5143d2", - "5785443b-f12e-4f17-b1ea-899d8b5143d2" - ], - "X-Powered-By": [ - "ASP.NET" + "c36bb0f7-f47b-4f48-901d-faac990ed8fe", + "c36bb0f7-f47b-4f48-901d-faac990ed8fe" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "146" + "95" ], "x-ms-correlation-request-id": [ - "058fb71a-3e0f-4c70-ae1e-6c1c1cbb8fe5" + "8f97785f-8ed7-4ee6-b922-e7e7b274af85" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T220141Z:058fb71a-3e0f-4c70-ae1e-6c1c1cbb8fe5" + "JIOINDIAWEST:20220517T035222Z:8f97785f-8ed7-4ee6-b922-e7e7b274af85" ], "Date": [ - "Wed, 23 Feb 2022 22:01:41 GMT" + "Tue, 17 May 2022 03:52:21 GMT" ], "Content-Length": [ - "845" + "188" ], "Content-Type": [ "application/json" @@ -5904,26 +5853,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG3cdeb8e4/providers/Microsoft.RecoveryServices/vaults/PSTestRSV3cdeb8e4/backupJobs/402a07d4-4f38-43fb-8fee-35d0e00d4e9f\",\r\n \"name\": \"402a07d4-4f38-43fb-8fee-35d0e00d4e9f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg3cdeb8e4;pstestvm3cdeb0\",\r\n \"duration\": \"PT1M51.5201895S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"VM Name\": \"PSTestVM3cdeb0\",\r\n \"Number of Recovery Points\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"PSTestVM3cdeb0\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"DeleteBackupData\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-02-23T21:59:38.4997089Z\",\r\n \"endTime\": \"2022-02-23T22:01:30.0198984Z\",\r\n \"activityId\": \"5785443b-f12e-4f17-b1ea-899d8b5143d2\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"4b6400c0-ae56-4db5-ba56-edfabcaa7495\",\r\n \"name\": \"4b6400c0-ae56-4db5-ba56-edfabcaa7495\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T03:51:48.6314993Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG3cdeb8e4/providers/Microsoft.RecoveryServices/vaults/PSTestRSV3cdeb8e4?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHM2NkZWI4ZTQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YzY2RlYjhlND9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", - "RequestMethod": "DELETE", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGae69e07b/providers/Microsoft.RecoveryServices/vaults/PSTestRSVae69e07b/backupOperations/4b6400c0-ae56-4db5-ba56-edfabcaa7495?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYWU2OWUwN2IvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZhZTY5ZTA3Yi9iYWNrdXBPcGVyYXRpb25zLzRiNjQwMGMwLWFlNTYtNGRiNS1iYTU2LWVkZmFiY2FhNzQ5NT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "eb6e9494-50dd-4320-87c8-fc8b24e8de88" + "c36bb0f7-f47b-4f48-901d-faac990ed8fe" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesClient/4.3.2.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -5937,53 +5886,63 @@ "nosniff" ], "x-ms-request-id": [ - "c1df2e5b-0857-49ad-8b8a-3c4eca879ef7" + "81f49cd7-65a6-4586-8bbe-770d9409c1f4" ], "x-ms-client-request-id": [ - "eb6e9494-50dd-4320-87c8-fc8b24e8de88" + "c36bb0f7-f47b-4f48-901d-faac990ed8fe", + "c36bb0f7-f47b-4f48-901d-faac990ed8fe" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "9" + "94" ], "x-ms-correlation-request-id": [ - "c1df2e5b-0857-49ad-8b8a-3c4eca879ef7" + "81f49cd7-65a6-4586-8bbe-770d9409c1f4" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T220152Z:c1df2e5b-0857-49ad-8b8a-3c4eca879ef7" + "JIOINDIAWEST:20220517T035227Z:81f49cd7-65a6-4586-8bbe-770d9409c1f4" ], "Date": [ - "Wed, 23 Feb 2022 22:01:52 GMT" + "Tue, 17 May 2022 03:52:27 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, - "ResponseBody": "", + "ResponseBody": "{\r\n \"id\": \"4b6400c0-ae56-4db5-ba56-edfabcaa7495\",\r\n \"name\": \"4b6400c0-ae56-4db5-ba56-edfabcaa7495\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T03:51:48.6314993Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourcegroups/PSTestRG3cdeb8e4?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlZ3JvdXBzL1BTVGVzdFJHM2NkZWI4ZTQ/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "DELETE", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGae69e07b/providers/Microsoft.RecoveryServices/vaults/PSTestRSVae69e07b/backupOperations/4b6400c0-ae56-4db5-ba56-edfabcaa7495?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYWU2OWUwN2IvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZhZTY5ZTA3Yi9iYWNrdXBPcGVyYXRpb25zLzRiNjQwMGMwLWFlNTYtNGRiNS1iYTU2LWVkZmFiY2FhNzQ5NT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d2fa6d71-3571-42f5-887a-74cf9be60346" + "c36bb0f7-f47b-4f48-901d-faac990ed8fe" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -5993,54 +5952,557 @@ "Pragma": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzNDREVCOEU0LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-deletes": [ - "14999" + "X-Content-Type-Options": [ + "nosniff" ], "x-ms-request-id": [ - "85088d48-c40e-43d1-b672-2665e21a0589" + "1d66d6f7-4508-49d5-83c5-f955071a8888" + ], + "x-ms-client-request-id": [ + "c36bb0f7-f47b-4f48-901d-faac990ed8fe", + "c36bb0f7-f47b-4f48-901d-faac990ed8fe" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "93" + ], + "x-ms-correlation-request-id": [ + "1d66d6f7-4508-49d5-83c5-f955071a8888" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220517T035233Z:1d66d6f7-4508-49d5-83c5-f955071a8888" + ], + "Date": [ + "Tue, 17 May 2022 03:52:32 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"4b6400c0-ae56-4db5-ba56-edfabcaa7495\",\r\n \"name\": \"4b6400c0-ae56-4db5-ba56-edfabcaa7495\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T03:51:48.6314993Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGae69e07b/providers/Microsoft.RecoveryServices/vaults/PSTestRSVae69e07b/backupOperations/4b6400c0-ae56-4db5-ba56-edfabcaa7495?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYWU2OWUwN2IvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZhZTY5ZTA3Yi9iYWNrdXBPcGVyYXRpb25zLzRiNjQwMGMwLWFlNTYtNGRiNS1iYTU2LWVkZmFiY2FhNzQ5NT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c36bb0f7-f47b-4f48-901d-faac990ed8fe" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "4e40c791-42e4-49df-830c-153ebaa2ad9a" + ], + "x-ms-client-request-id": [ + "c36bb0f7-f47b-4f48-901d-faac990ed8fe", + "c36bb0f7-f47b-4f48-901d-faac990ed8fe" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "92" + ], + "x-ms-correlation-request-id": [ + "4e40c791-42e4-49df-830c-153ebaa2ad9a" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220517T035238Z:4e40c791-42e4-49df-830c-153ebaa2ad9a" + ], + "Date": [ + "Tue, 17 May 2022 03:52:37 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"4b6400c0-ae56-4db5-ba56-edfabcaa7495\",\r\n \"name\": \"4b6400c0-ae56-4db5-ba56-edfabcaa7495\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T03:51:48.6314993Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGae69e07b/providers/Microsoft.RecoveryServices/vaults/PSTestRSVae69e07b/backupOperations/4b6400c0-ae56-4db5-ba56-edfabcaa7495?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYWU2OWUwN2IvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZhZTY5ZTA3Yi9iYWNrdXBPcGVyYXRpb25zLzRiNjQwMGMwLWFlNTYtNGRiNS1iYTU2LWVkZmFiY2FhNzQ5NT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c36bb0f7-f47b-4f48-901d-faac990ed8fe" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "9aca469a-11fe-4c17-af7f-9d48c2ce9eb6" + ], + "x-ms-client-request-id": [ + "c36bb0f7-f47b-4f48-901d-faac990ed8fe", + "c36bb0f7-f47b-4f48-901d-faac990ed8fe" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "91" + ], + "x-ms-correlation-request-id": [ + "9aca469a-11fe-4c17-af7f-9d48c2ce9eb6" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220517T035244Z:9aca469a-11fe-4c17-af7f-9d48c2ce9eb6" + ], + "Date": [ + "Tue, 17 May 2022 03:52:44 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"4b6400c0-ae56-4db5-ba56-edfabcaa7495\",\r\n \"name\": \"4b6400c0-ae56-4db5-ba56-edfabcaa7495\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T03:51:48.6314993Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGae69e07b/providers/Microsoft.RecoveryServices/vaults/PSTestRSVae69e07b/backupOperations/4b6400c0-ae56-4db5-ba56-edfabcaa7495?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYWU2OWUwN2IvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZhZTY5ZTA3Yi9iYWNrdXBPcGVyYXRpb25zLzRiNjQwMGMwLWFlNTYtNGRiNS1iYTU2LWVkZmFiY2FhNzQ5NT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c36bb0f7-f47b-4f48-901d-faac990ed8fe" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "b8c532a2-907c-41cf-b3e0-a247c5331798" + ], + "x-ms-client-request-id": [ + "c36bb0f7-f47b-4f48-901d-faac990ed8fe", + "c36bb0f7-f47b-4f48-901d-faac990ed8fe" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "90" + ], + "x-ms-correlation-request-id": [ + "b8c532a2-907c-41cf-b3e0-a247c5331798" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220517T035249Z:b8c532a2-907c-41cf-b3e0-a247c5331798" + ], + "Date": [ + "Tue, 17 May 2022 03:52:49 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"4b6400c0-ae56-4db5-ba56-edfabcaa7495\",\r\n \"name\": \"4b6400c0-ae56-4db5-ba56-edfabcaa7495\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T03:51:48.6314993Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGae69e07b/providers/Microsoft.RecoveryServices/vaults/PSTestRSVae69e07b/backupOperations/4b6400c0-ae56-4db5-ba56-edfabcaa7495?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYWU2OWUwN2IvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZhZTY5ZTA3Yi9iYWNrdXBPcGVyYXRpb25zLzRiNjQwMGMwLWFlNTYtNGRiNS1iYTU2LWVkZmFiY2FhNzQ5NT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c36bb0f7-f47b-4f48-901d-faac990ed8fe" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "0b73b4c1-dcb6-4bd9-acca-4bb55b51b2d9" + ], + "x-ms-client-request-id": [ + "c36bb0f7-f47b-4f48-901d-faac990ed8fe", + "c36bb0f7-f47b-4f48-901d-faac990ed8fe" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "89" + ], + "x-ms-correlation-request-id": [ + "0b73b4c1-dcb6-4bd9-acca-4bb55b51b2d9" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220517T035254Z:0b73b4c1-dcb6-4bd9-acca-4bb55b51b2d9" + ], + "Date": [ + "Tue, 17 May 2022 03:52:54 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"4b6400c0-ae56-4db5-ba56-edfabcaa7495\",\r\n \"name\": \"4b6400c0-ae56-4db5-ba56-edfabcaa7495\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T03:51:48.6314993Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGae69e07b/providers/Microsoft.RecoveryServices/vaults/PSTestRSVae69e07b/backupOperations/4b6400c0-ae56-4db5-ba56-edfabcaa7495?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYWU2OWUwN2IvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZhZTY5ZTA3Yi9iYWNrdXBPcGVyYXRpb25zLzRiNjQwMGMwLWFlNTYtNGRiNS1iYTU2LWVkZmFiY2FhNzQ5NT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c36bb0f7-f47b-4f48-901d-faac990ed8fe" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "931197b6-3948-4da1-b552-15b88ca5e4e3" + ], + "x-ms-client-request-id": [ + "c36bb0f7-f47b-4f48-901d-faac990ed8fe", + "c36bb0f7-f47b-4f48-901d-faac990ed8fe" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "88" ], "x-ms-correlation-request-id": [ - "85088d48-c40e-43d1-b672-2665e21a0589" + "931197b6-3948-4da1-b552-15b88ca5e4e3" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220517T035300Z:931197b6-3948-4da1-b552-15b88ca5e4e3" + ], + "Date": [ + "Tue, 17 May 2022 03:53:00 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"4b6400c0-ae56-4db5-ba56-edfabcaa7495\",\r\n \"name\": \"4b6400c0-ae56-4db5-ba56-edfabcaa7495\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T03:51:48.6314993Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGae69e07b/providers/Microsoft.RecoveryServices/vaults/PSTestRSVae69e07b/backupOperations/4b6400c0-ae56-4db5-ba56-edfabcaa7495?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYWU2OWUwN2IvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZhZTY5ZTA3Yi9iYWNrdXBPcGVyYXRpb25zLzRiNjQwMGMwLWFlNTYtNGRiNS1iYTU2LWVkZmFiY2FhNzQ5NT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c36bb0f7-f47b-4f48-901d-faac990ed8fe" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "7e148233-3d7b-4980-92b7-b13328bf4645" + ], + "x-ms-client-request-id": [ + "c36bb0f7-f47b-4f48-901d-faac990ed8fe", + "c36bb0f7-f47b-4f48-901d-faac990ed8fe" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "87" + ], + "x-ms-correlation-request-id": [ + "7e148233-3d7b-4980-92b7-b13328bf4645" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220517T035305Z:7e148233-3d7b-4980-92b7-b13328bf4645" + ], + "Date": [ + "Tue, 17 May 2022 03:53:05 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"4b6400c0-ae56-4db5-ba56-edfabcaa7495\",\r\n \"name\": \"4b6400c0-ae56-4db5-ba56-edfabcaa7495\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T03:51:48.6314993Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGae69e07b/providers/Microsoft.RecoveryServices/vaults/PSTestRSVae69e07b/backupOperations/4b6400c0-ae56-4db5-ba56-edfabcaa7495?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYWU2OWUwN2IvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZhZTY5ZTA3Yi9iYWNrdXBPcGVyYXRpb25zLzRiNjQwMGMwLWFlNTYtNGRiNS1iYTU2LWVkZmFiY2FhNzQ5NT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c36bb0f7-f47b-4f48-901d-faac990ed8fe" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" ], - "x-ms-routing-request-id": [ - "CENTRALUS:20220223T220159Z:85088d48-c40e-43d1-b672-2665e21a0589" + "x-ms-request-id": [ + "53e6978d-b936-4684-ac49-eba6e1ccddfd" + ], + "x-ms-client-request-id": [ + "c36bb0f7-f47b-4f48-901d-faac990ed8fe", + "c36bb0f7-f47b-4f48-901d-faac990ed8fe" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ - "nosniff" + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "86" + ], + "x-ms-correlation-request-id": [ + "53e6978d-b936-4684-ac49-eba6e1ccddfd" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220517T035311Z:53e6978d-b936-4684-ac49-eba6e1ccddfd" ], "Date": [ - "Wed, 23 Feb 2022 22:01:59 GMT" + "Tue, 17 May 2022 03:53:11 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, - "ResponseBody": "", - "StatusCode": 202 + "ResponseBody": "{\r\n \"id\": \"4b6400c0-ae56-4db5-ba56-edfabcaa7495\",\r\n \"name\": \"4b6400c0-ae56-4db5-ba56-edfabcaa7495\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T03:51:48.6314993Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzNDREVCOEU0LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSek5EUkVWQ09FVTBMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGae69e07b/providers/Microsoft.RecoveryServices/vaults/PSTestRSVae69e07b/backupOperations/4b6400c0-ae56-4db5-ba56-edfabcaa7495?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYWU2OWUwN2IvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZhZTY5ZTA3Yi9iYWNrdXBPcGVyYXRpb25zLzRiNjQwMGMwLWFlNTYtNGRiNS1iYTU2LWVkZmFiY2FhNzQ5NT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "c36bb0f7-f47b-4f48-901d-faac990ed8fe" + ], + "Accept-Language": [ + "en-US" + ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -6050,54 +6512,67 @@ "Pragma": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzNDREVCOEU0LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" + "X-Content-Type-Options": [ + "nosniff" ], - "Retry-After": [ - "15" + "x-ms-request-id": [ + "a5037fc2-1679-4628-8a33-d70aa71b9699" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "x-ms-client-request-id": [ + "c36bb0f7-f47b-4f48-901d-faac990ed8fe", + "c36bb0f7-f47b-4f48-901d-faac990ed8fe" ], - "x-ms-request-id": [ - "4701121e-e1f8-4b16-b832-1f63ba9dbc66" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "85" ], "x-ms-correlation-request-id": [ - "4701121e-e1f8-4b16-b832-1f63ba9dbc66" + "a5037fc2-1679-4628-8a33-d70aa71b9699" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T220215Z:4701121e-e1f8-4b16-b832-1f63ba9dbc66" + "JIOINDIAWEST:20220517T035316Z:a5037fc2-1679-4628-8a33-d70aa71b9699" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "Date": [ + "Tue, 17 May 2022 03:53:16 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Content-Length": [ + "188" ], - "Date": [ - "Wed, 23 Feb 2022 22:02:14 GMT" + "Content-Type": [ + "application/json" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, - "ResponseBody": "", - "StatusCode": 202 + "ResponseBody": "{\r\n \"id\": \"4b6400c0-ae56-4db5-ba56-edfabcaa7495\",\r\n \"name\": \"4b6400c0-ae56-4db5-ba56-edfabcaa7495\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T03:51:48.6314993Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzNDREVCOEU0LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSek5EUkVWQ09FVTBMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGae69e07b/providers/Microsoft.RecoveryServices/vaults/PSTestRSVae69e07b/backupOperations/4b6400c0-ae56-4db5-ba56-edfabcaa7495?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYWU2OWUwN2IvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZhZTY5ZTA3Yi9iYWNrdXBPcGVyYXRpb25zLzRiNjQwMGMwLWFlNTYtNGRiNS1iYTU2LWVkZmFiY2FhNzQ5NT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "c36bb0f7-f47b-4f48-901d-faac990ed8fe" + ], + "Accept-Language": [ + "en-US" + ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -6107,54 +6582,67 @@ "Pragma": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzNDREVCOEU0LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" + "X-Content-Type-Options": [ + "nosniff" ], - "Retry-After": [ - "15" + "x-ms-request-id": [ + "b3fd9ad9-1096-4213-aa90-b83995d5dc51" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "x-ms-client-request-id": [ + "c36bb0f7-f47b-4f48-901d-faac990ed8fe", + "c36bb0f7-f47b-4f48-901d-faac990ed8fe" ], - "x-ms-request-id": [ - "126f0e84-4cb1-4c07-a34d-2643f98063c0" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "84" ], "x-ms-correlation-request-id": [ - "126f0e84-4cb1-4c07-a34d-2643f98063c0" + "b3fd9ad9-1096-4213-aa90-b83995d5dc51" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T220230Z:126f0e84-4cb1-4c07-a34d-2643f98063c0" + "JIOINDIAWEST:20220517T035322Z:b3fd9ad9-1096-4213-aa90-b83995d5dc51" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "Date": [ + "Tue, 17 May 2022 03:53:22 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Content-Length": [ + "188" ], - "Date": [ - "Wed, 23 Feb 2022 22:02:29 GMT" + "Content-Type": [ + "application/json" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, - "ResponseBody": "", - "StatusCode": 202 + "ResponseBody": "{\r\n \"id\": \"4b6400c0-ae56-4db5-ba56-edfabcaa7495\",\r\n \"name\": \"4b6400c0-ae56-4db5-ba56-edfabcaa7495\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T03:51:48.6314993Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzNDREVCOEU0LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSek5EUkVWQ09FVTBMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGae69e07b/providers/Microsoft.RecoveryServices/vaults/PSTestRSVae69e07b/backupOperations/4b6400c0-ae56-4db5-ba56-edfabcaa7495?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYWU2OWUwN2IvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZhZTY5ZTA3Yi9iYWNrdXBPcGVyYXRpb25zLzRiNjQwMGMwLWFlNTYtNGRiNS1iYTU2LWVkZmFiY2FhNzQ5NT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "c36bb0f7-f47b-4f48-901d-faac990ed8fe" + ], + "Accept-Language": [ + "en-US" + ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -6164,54 +6652,67 @@ "Pragma": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzNDREVCOEU0LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" + "X-Content-Type-Options": [ + "nosniff" ], - "Retry-After": [ - "15" + "x-ms-request-id": [ + "5a02ef37-11af-461a-8fd8-98915b42388a" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "x-ms-client-request-id": [ + "c36bb0f7-f47b-4f48-901d-faac990ed8fe", + "c36bb0f7-f47b-4f48-901d-faac990ed8fe" ], - "x-ms-request-id": [ - "296399f1-cb47-47b5-ada9-ee160f3ae368" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "83" ], "x-ms-correlation-request-id": [ - "296399f1-cb47-47b5-ada9-ee160f3ae368" + "5a02ef37-11af-461a-8fd8-98915b42388a" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T220246Z:296399f1-cb47-47b5-ada9-ee160f3ae368" + "JIOINDIAWEST:20220517T035327Z:5a02ef37-11af-461a-8fd8-98915b42388a" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "Date": [ + "Tue, 17 May 2022 03:53:27 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Content-Length": [ + "188" ], - "Date": [ - "Wed, 23 Feb 2022 22:02:45 GMT" + "Content-Type": [ + "application/json" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, - "ResponseBody": "", - "StatusCode": 202 + "ResponseBody": "{\r\n \"id\": \"4b6400c0-ae56-4db5-ba56-edfabcaa7495\",\r\n \"name\": \"4b6400c0-ae56-4db5-ba56-edfabcaa7495\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T03:51:48.6314993Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzNDREVCOEU0LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSek5EUkVWQ09FVTBMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGae69e07b/providers/Microsoft.RecoveryServices/vaults/PSTestRSVae69e07b/backupOperations/4b6400c0-ae56-4db5-ba56-edfabcaa7495?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYWU2OWUwN2IvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZhZTY5ZTA3Yi9iYWNrdXBPcGVyYXRpb25zLzRiNjQwMGMwLWFlNTYtNGRiNS1iYTU2LWVkZmFiY2FhNzQ5NT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "c36bb0f7-f47b-4f48-901d-faac990ed8fe" + ], + "Accept-Language": [ + "en-US" + ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -6221,111 +6722,207 @@ "Pragma": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzNDREVCOEU0LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" + "X-Content-Type-Options": [ + "nosniff" ], - "Retry-After": [ - "15" + "x-ms-request-id": [ + "674198b4-8b63-4b7d-a199-6a8e5cd0780b" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "x-ms-client-request-id": [ + "c36bb0f7-f47b-4f48-901d-faac990ed8fe", + "c36bb0f7-f47b-4f48-901d-faac990ed8fe" ], - "x-ms-request-id": [ - "c531ad1a-f707-4af2-817a-f15ae25152dd" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "82" ], "x-ms-correlation-request-id": [ - "c531ad1a-f707-4af2-817a-f15ae25152dd" + "674198b4-8b63-4b7d-a199-6a8e5cd0780b" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T220301Z:c531ad1a-f707-4af2-817a-f15ae25152dd" + "JIOINDIAWEST:20220517T035333Z:674198b4-8b63-4b7d-a199-6a8e5cd0780b" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "Date": [ + "Tue, 17 May 2022 03:53:32 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"4b6400c0-ae56-4db5-ba56-edfabcaa7495\",\r\n \"name\": \"4b6400c0-ae56-4db5-ba56-edfabcaa7495\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T03:51:48.6314993Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGae69e07b/providers/Microsoft.RecoveryServices/vaults/PSTestRSVae69e07b/backupOperations/4b6400c0-ae56-4db5-ba56-edfabcaa7495?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYWU2OWUwN2IvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZhZTY5ZTA3Yi9iYWNrdXBPcGVyYXRpb25zLzRiNjQwMGMwLWFlNTYtNGRiNS1iYTU2LWVkZmFiY2FhNzQ5NT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c36bb0f7-f47b-4f48-901d-faac990ed8fe" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" ], "X-Content-Type-Options": [ "nosniff" ], + "x-ms-request-id": [ + "bfbecf8f-1b6b-4f35-81c9-20384e0703d0" + ], + "x-ms-client-request-id": [ + "c36bb0f7-f47b-4f48-901d-faac990ed8fe", + "c36bb0f7-f47b-4f48-901d-faac990ed8fe" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "81" + ], + "x-ms-correlation-request-id": [ + "bfbecf8f-1b6b-4f35-81c9-20384e0703d0" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220517T035338Z:bfbecf8f-1b6b-4f35-81c9-20384e0703d0" + ], "Date": [ - "Wed, 23 Feb 2022 22:03:01 GMT" + "Tue, 17 May 2022 03:53:38 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, - "ResponseBody": "", - "StatusCode": 202 + "ResponseBody": "{\r\n \"id\": \"4b6400c0-ae56-4db5-ba56-edfabcaa7495\",\r\n \"name\": \"4b6400c0-ae56-4db5-ba56-edfabcaa7495\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T03:51:48.6314993Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzNDREVCOEU0LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSek5EUkVWQ09FVTBMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGae69e07b/providers/Microsoft.RecoveryServices/vaults/PSTestRSVae69e07b/backupOperations/4b6400c0-ae56-4db5-ba56-edfabcaa7495?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYWU2OWUwN2IvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZhZTY5ZTA3Yi9iYWNrdXBPcGVyYXRpb25zLzRiNjQwMGMwLWFlNTYtNGRiNS1iYTU2LWVkZmFiY2FhNzQ5NT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "c36bb0f7-f47b-4f48-901d-faac990ed8fe" + ], + "Accept-Language": [ + "en-US" + ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Pragma": [ - "no-cache" + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "0a131201-09fe-4abb-92a0-fa9ee405b3bb" + ], + "x-ms-client-request-id": [ + "c36bb0f7-f47b-4f48-901d-faac990ed8fe", + "c36bb0f7-f47b-4f48-901d-faac990ed8fe" ], - "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzNDREVCOEU0LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "Retry-After": [ - "15" + "Server": [ + "Microsoft-IIS/10.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "X-Powered-By": [ + "ASP.NET" ], - "x-ms-request-id": [ - "c3739500-0ef9-4968-93f3-6adf7bae601b" + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "80" ], "x-ms-correlation-request-id": [ - "c3739500-0ef9-4968-93f3-6adf7bae601b" + "0a131201-09fe-4abb-92a0-fa9ee405b3bb" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T220317Z:c3739500-0ef9-4968-93f3-6adf7bae601b" + "JIOINDIAWEST:20220517T035344Z:0a131201-09fe-4abb-92a0-fa9ee405b3bb" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "Date": [ + "Tue, 17 May 2022 03:53:44 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Content-Length": [ + "188" ], - "Date": [ - "Wed, 23 Feb 2022 22:03:17 GMT" + "Content-Type": [ + "application/json" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, - "ResponseBody": "", - "StatusCode": 202 + "ResponseBody": "{\r\n \"id\": \"4b6400c0-ae56-4db5-ba56-edfabcaa7495\",\r\n \"name\": \"4b6400c0-ae56-4db5-ba56-edfabcaa7495\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T03:51:48.6314993Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzNDREVCOEU0LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSek5EUkVWQ09FVTBMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGae69e07b/providers/Microsoft.RecoveryServices/vaults/PSTestRSVae69e07b/backupOperations/4b6400c0-ae56-4db5-ba56-edfabcaa7495?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYWU2OWUwN2IvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZhZTY5ZTA3Yi9iYWNrdXBPcGVyYXRpb25zLzRiNjQwMGMwLWFlNTYtNGRiNS1iYTU2LWVkZmFiY2FhNzQ5NT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "c36bb0f7-f47b-4f48-901d-faac990ed8fe" + ], + "Accept-Language": [ + "en-US" + ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -6335,54 +6932,67 @@ "Pragma": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzNDREVCOEU0LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" + "X-Content-Type-Options": [ + "nosniff" ], - "Retry-After": [ - "15" + "x-ms-request-id": [ + "e8a3d19a-e332-428a-9778-f2b396cc1588" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "x-ms-client-request-id": [ + "c36bb0f7-f47b-4f48-901d-faac990ed8fe", + "c36bb0f7-f47b-4f48-901d-faac990ed8fe" ], - "x-ms-request-id": [ - "6827ec00-ce10-4ef2-b5f7-5872fd47a404" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "79" ], "x-ms-correlation-request-id": [ - "6827ec00-ce10-4ef2-b5f7-5872fd47a404" + "e8a3d19a-e332-428a-9778-f2b396cc1588" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T220332Z:6827ec00-ce10-4ef2-b5f7-5872fd47a404" + "JIOINDIAWEST:20220517T035349Z:e8a3d19a-e332-428a-9778-f2b396cc1588" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "Date": [ + "Tue, 17 May 2022 03:53:48 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Content-Length": [ + "188" ], - "Date": [ - "Wed, 23 Feb 2022 22:03:32 GMT" + "Content-Type": [ + "application/json" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, - "ResponseBody": "", - "StatusCode": 202 + "ResponseBody": "{\r\n \"id\": \"4b6400c0-ae56-4db5-ba56-edfabcaa7495\",\r\n \"name\": \"4b6400c0-ae56-4db5-ba56-edfabcaa7495\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T03:51:48.6314993Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzNDREVCOEU0LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSek5EUkVWQ09FVTBMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGae69e07b/providers/Microsoft.RecoveryServices/vaults/PSTestRSVae69e07b/backupOperations/4b6400c0-ae56-4db5-ba56-edfabcaa7495?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYWU2OWUwN2IvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZhZTY5ZTA3Yi9iYWNrdXBPcGVyYXRpb25zLzRiNjQwMGMwLWFlNTYtNGRiNS1iYTU2LWVkZmFiY2FhNzQ5NT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "c36bb0f7-f47b-4f48-901d-faac990ed8fe" + ], + "Accept-Language": [ + "en-US" + ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -6392,54 +7002,67 @@ "Pragma": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzNDREVCOEU0LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" + "X-Content-Type-Options": [ + "nosniff" ], - "Retry-After": [ - "15" + "x-ms-request-id": [ + "4023cc4a-0c6f-47e0-91d3-29fd27a13fa1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "x-ms-client-request-id": [ + "c36bb0f7-f47b-4f48-901d-faac990ed8fe", + "c36bb0f7-f47b-4f48-901d-faac990ed8fe" ], - "x-ms-request-id": [ - "b9ec5171-0305-4de7-ae3f-2b0c1ca4142d" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "78" ], "x-ms-correlation-request-id": [ - "b9ec5171-0305-4de7-ae3f-2b0c1ca4142d" + "4023cc4a-0c6f-47e0-91d3-29fd27a13fa1" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T220348Z:b9ec5171-0305-4de7-ae3f-2b0c1ca4142d" + "JIOINDIAWEST:20220517T035355Z:4023cc4a-0c6f-47e0-91d3-29fd27a13fa1" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "Date": [ + "Tue, 17 May 2022 03:53:54 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Content-Length": [ + "304" ], - "Date": [ - "Wed, 23 Feb 2022 22:03:47 GMT" + "Content-Type": [ + "application/json" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, - "ResponseBody": "", - "StatusCode": 202 + "ResponseBody": "{\r\n \"id\": \"4b6400c0-ae56-4db5-ba56-edfabcaa7495\",\r\n \"name\": \"4b6400c0-ae56-4db5-ba56-edfabcaa7495\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-05-17T03:51:48.6314993Z\",\r\n \"endTime\": \"2022-05-17T03:51:48.6314993Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"a02dd0cd-4b6f-4647-90e2-9028428b5257\"\r\n }\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzNDREVCOEU0LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSek5EUkVWQ09FVTBMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGae69e07b/providers/Microsoft.RecoveryServices/vaults/PSTestRSVae69e07b/backupOperations/4b6400c0-ae56-4db5-ba56-edfabcaa7495?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYWU2OWUwN2IvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZhZTY5ZTA3Yi9iYWNrdXBPcGVyYXRpb25zLzRiNjQwMGMwLWFlNTYtNGRiNS1iYTU2LWVkZmFiY2FhNzQ5NT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "c36bb0f7-f47b-4f48-901d-faac990ed8fe" + ], + "Accept-Language": [ + "en-US" + ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -6449,54 +7072,67 @@ "Pragma": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzNDREVCOEU0LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" + "X-Content-Type-Options": [ + "nosniff" ], - "Retry-After": [ - "15" + "x-ms-request-id": [ + "7f3f2b53-7f93-464e-a100-97a904e63fd0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "x-ms-client-request-id": [ + "c36bb0f7-f47b-4f48-901d-faac990ed8fe", + "c36bb0f7-f47b-4f48-901d-faac990ed8fe" ], - "x-ms-request-id": [ - "5eefd400-a316-45de-92c9-8a812cecf20b" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "77" ], "x-ms-correlation-request-id": [ - "5eefd400-a316-45de-92c9-8a812cecf20b" + "7f3f2b53-7f93-464e-a100-97a904e63fd0" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T220403Z:5eefd400-a316-45de-92c9-8a812cecf20b" + "JIOINDIAWEST:20220517T035355Z:7f3f2b53-7f93-464e-a100-97a904e63fd0" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "Date": [ + "Tue, 17 May 2022 03:53:55 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Content-Length": [ + "304" ], - "Date": [ - "Wed, 23 Feb 2022 22:04:03 GMT" + "Content-Type": [ + "application/json" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, - "ResponseBody": "", - "StatusCode": 202 + "ResponseBody": "{\r\n \"id\": \"4b6400c0-ae56-4db5-ba56-edfabcaa7495\",\r\n \"name\": \"4b6400c0-ae56-4db5-ba56-edfabcaa7495\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-05-17T03:51:48.6314993Z\",\r\n \"endTime\": \"2022-05-17T03:51:48.6314993Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"a02dd0cd-4b6f-4647-90e2-9028428b5257\"\r\n }\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzNDREVCOEU0LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSek5EUkVWQ09FVTBMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGae69e07b/providers/Microsoft.RecoveryServices/vaults/PSTestRSVae69e07b/backupJobs/a02dd0cd-4b6f-4647-90e2-9028428b5257?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYWU2OWUwN2IvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZhZTY5ZTA3Yi9iYWNrdXBKb2JzL2EwMmRkMGNkLTRiNmYtNDY0Ny05MGUyLTkwMjg0MjhiNTI1Nz9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "c36bb0f7-f47b-4f48-901d-faac990ed8fe" + ], + "Accept-Language": [ + "en-US" + ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -6506,54 +7142,68 @@ "Pragma": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzNDREVCOEU0LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" + "Server": [ + "Microsoft-IIS/10.0", + "Microsoft-IIS/10.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "X-Content-Type-Options": [ + "nosniff" ], "x-ms-request-id": [ - "053b6166-708a-4209-b4f3-e7de4de85946" + "7582a2bc-8d05-43df-99c5-16329d7d1f11" ], - "x-ms-correlation-request-id": [ - "053b6166-708a-4209-b4f3-e7de4de85946" + "x-ms-client-request-id": [ + "c36bb0f7-f47b-4f48-901d-faac990ed8fe", + "c36bb0f7-f47b-4f48-901d-faac990ed8fe" ], - "x-ms-routing-request-id": [ - "CENTRALUS:20220223T220419Z:053b6166-708a-4209-b4f3-e7de4de85946" + "X-Powered-By": [ + "ASP.NET" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ - "nosniff" + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "142" + ], + "x-ms-correlation-request-id": [ + "7582a2bc-8d05-43df-99c5-16329d7d1f11" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220517T035356Z:7582a2bc-8d05-43df-99c5-16329d7d1f11" ], "Date": [ - "Wed, 23 Feb 2022 22:04:18 GMT" + "Tue, 17 May 2022 03:53:55 GMT" + ], + "Content-Length": [ + "844" + ], + "Content-Type": [ + "application/json" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, - "ResponseBody": "", - "StatusCode": 202 + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGae69e07b/providers/Microsoft.RecoveryServices/vaults/PSTestRSVae69e07b/backupJobs/a02dd0cd-4b6f-4647-90e2-9028428b5257\",\r\n \"name\": \"a02dd0cd-4b6f-4647-90e2-9028428b5257\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgae69e07b;pstestvmae69e0\",\r\n \"duration\": \"PT2M1.9556805S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"VM Name\": \"PSTestVMae69e0\",\r\n \"Number of Recovery Points\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"PSTestVMae69e0\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"DeleteBackupData\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-05-17T03:51:48.6314993Z\",\r\n \"endTime\": \"2022-05-17T03:53:50.5871798Z\",\r\n \"activityId\": \"c36bb0f7-f47b-4f48-901d-faac990ed8fe\"\r\n }\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzNDREVCOEU0LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSek5EUkVWQ09FVTBMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", - "RequestMethod": "GET", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGae69e07b/providers/Microsoft.RecoveryServices/vaults/PSTestRSVae69e07b?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYWU2OWUwN2IvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZhZTY5ZTA3Yj9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", + "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "07448d15-6255-4248-bbf1-3a0276b44ddb" + ], + "Accept-Language": [ + "en-US" + ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesClient/4.3.2.0" ] }, "ResponseHeaders": { @@ -6563,32 +7213,29 @@ "Pragma": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzNDREVCOEU0LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "X-Content-Type-Options": [ + "nosniff" ], "x-ms-request-id": [ - "7e2e2df4-e8bf-4f06-a60e-c1b8c1d9fe9a" - ], - "x-ms-correlation-request-id": [ - "7e2e2df4-e8bf-4f06-a60e-c1b8c1d9fe9a" + "46315064-20bb-4ed5-bd89-695314f9c1ae" ], - "x-ms-routing-request-id": [ - "CENTRALUS:20220223T220434Z:7e2e2df4-e8bf-4f06-a60e-c1b8c1d9fe9a" + "x-ms-client-request-id": [ + "07448d15-6255-4248-bbf1-3a0276b44ddb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ - "nosniff" + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "9" + ], + "x-ms-correlation-request-id": [ + "46315064-20bb-4ed5-bd89-695314f9c1ae" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220517T035404Z:46315064-20bb-4ed5-bd89-695314f9c1ae" ], "Date": [ - "Wed, 23 Feb 2022 22:04:33 GMT" + "Tue, 17 May 2022 03:54:03 GMT" ], "Expires": [ "-1" @@ -6598,19 +7245,25 @@ ] }, "ResponseBody": "", - "StatusCode": 202 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzNDREVCOEU0LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSek5EUkVWQ09FVTBMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", - "RequestMethod": "GET", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourcegroups/PSTestRGae69e07b?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlZ3JvdXBzL1BTVGVzdFJHYWU2OWUwN2I/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "e35a3670-6134-4bf2-a736-d344a70d2fc3" + ], + "Accept-Language": [ + "en-US" + ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" ] }, "ResponseHeaders": { @@ -6621,22 +7274,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzNDREVCOEU0LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0FFNjlFMDdCLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" ], "Retry-After": [ "15" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" ], "x-ms-request-id": [ - "f169a1fd-76aa-47e8-b93a-594fbcd0825d" + "6c9cb5e7-7231-48ac-b88d-1927f88237e3" ], "x-ms-correlation-request-id": [ - "f169a1fd-76aa-47e8-b93a-594fbcd0825d" + "6c9cb5e7-7231-48ac-b88d-1927f88237e3" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T220450Z:f169a1fd-76aa-47e8-b93a-594fbcd0825d" + "WESTINDIA:20220517T035407Z:6c9cb5e7-7231-48ac-b88d-1927f88237e3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6645,7 +7298,7 @@ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 22:04:49 GMT" + "Tue, 17 May 2022 03:54:06 GMT" ], "Expires": [ "-1" @@ -6658,16 +7311,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzNDREVCOEU0LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSek5EUkVWQ09FVTBMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0FFNjlFMDdCLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSMEZGTmpsRk1EZENMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" ] }, "ResponseHeaders": { @@ -6678,22 +7331,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzNDREVCOEU0LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0FFNjlFMDdCLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "11999" ], "x-ms-request-id": [ - "42d21fa2-3761-43e7-91fa-a73f4e15a0be" + "d6295a15-d34b-4644-bf94-b9d0bfbde9ab" ], "x-ms-correlation-request-id": [ - "42d21fa2-3761-43e7-91fa-a73f4e15a0be" + "d6295a15-d34b-4644-bf94-b9d0bfbde9ab" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T220505Z:42d21fa2-3761-43e7-91fa-a73f4e15a0be" + "WESTINDIA:20220517T035422Z:d6295a15-d34b-4644-bf94-b9d0bfbde9ab" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6702,7 +7355,7 @@ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 22:05:05 GMT" + "Tue, 17 May 2022 03:54:21 GMT" ], "Expires": [ "-1" @@ -6715,16 +7368,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzNDREVCOEU0LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSek5EUkVWQ09FVTBMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0FFNjlFMDdCLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSMEZGTmpsRk1EZENMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" ] }, "ResponseHeaders": { @@ -6735,22 +7388,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzNDREVCOEU0LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0FFNjlFMDdCLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "11998" ], "x-ms-request-id": [ - "f0a7d329-af18-46bd-b144-e458ffb9120a" + "84ceae48-55ab-4fd4-a88d-c4b96e081911" ], "x-ms-correlation-request-id": [ - "f0a7d329-af18-46bd-b144-e458ffb9120a" + "84ceae48-55ab-4fd4-a88d-c4b96e081911" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T220521Z:f0a7d329-af18-46bd-b144-e458ffb9120a" + "WESTINDIA:20220517T035437Z:84ceae48-55ab-4fd4-a88d-c4b96e081911" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6759,7 +7412,7 @@ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 22:05:20 GMT" + "Tue, 17 May 2022 03:54:36 GMT" ], "Expires": [ "-1" @@ -6772,16 +7425,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzNDREVCOEU0LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSek5EUkVWQ09FVTBMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0FFNjlFMDdCLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSMEZGTmpsRk1EZENMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" ] }, "ResponseHeaders": { @@ -6792,22 +7445,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzNDREVCOEU0LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0FFNjlFMDdCLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" + "11997" ], "x-ms-request-id": [ - "82f7024b-6900-40a4-ab90-f4e54fc311af" + "2e9e9a38-5179-456d-97d6-4304009f885d" ], "x-ms-correlation-request-id": [ - "82f7024b-6900-40a4-ab90-f4e54fc311af" + "2e9e9a38-5179-456d-97d6-4304009f885d" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T220536Z:82f7024b-6900-40a4-ab90-f4e54fc311af" + "WESTINDIA:20220517T035452Z:2e9e9a38-5179-456d-97d6-4304009f885d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6816,7 +7469,7 @@ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 22:05:36 GMT" + "Tue, 17 May 2022 03:54:52 GMT" ], "Expires": [ "-1" @@ -6829,16 +7482,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzNDREVCOEU0LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSek5EUkVWQ09FVTBMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0FFNjlFMDdCLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSMEZGTmpsRk1EZENMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" ] }, "ResponseHeaders": { @@ -6849,22 +7502,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzNDREVCOEU0LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0FFNjlFMDdCLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" + "11996" ], "x-ms-request-id": [ - "a69996f9-fdb7-4496-8208-f64e70923243" + "4cfbd52d-31c8-4b4d-81fc-008f2cd7fb81" ], "x-ms-correlation-request-id": [ - "a69996f9-fdb7-4496-8208-f64e70923243" + "4cfbd52d-31c8-4b4d-81fc-008f2cd7fb81" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T220552Z:a69996f9-fdb7-4496-8208-f64e70923243" + "WESTINDIA:20220517T035507Z:4cfbd52d-31c8-4b4d-81fc-008f2cd7fb81" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6873,7 +7526,7 @@ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 22:05:51 GMT" + "Tue, 17 May 2022 03:55:07 GMT" ], "Expires": [ "-1" @@ -6886,16 +7539,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzNDREVCOEU0LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSek5EUkVWQ09FVTBMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0FFNjlFMDdCLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSMEZGTmpsRk1EZENMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" ] }, "ResponseHeaders": { @@ -6906,22 +7559,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzNDREVCOEU0LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0FFNjlFMDdCLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11984" + "11995" ], "x-ms-request-id": [ - "d813e9da-7ee3-4af1-97b9-03dbeb8ca15d" + "e7d184ca-75b7-4788-861c-d74bbe7fd454" ], "x-ms-correlation-request-id": [ - "d813e9da-7ee3-4af1-97b9-03dbeb8ca15d" + "e7d184ca-75b7-4788-861c-d74bbe7fd454" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T220607Z:d813e9da-7ee3-4af1-97b9-03dbeb8ca15d" + "WESTINDIA:20220517T035522Z:e7d184ca-75b7-4788-861c-d74bbe7fd454" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6930,7 +7583,7 @@ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 22:06:06 GMT" + "Tue, 17 May 2022 03:55:22 GMT" ], "Expires": [ "-1" @@ -6943,16 +7596,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzNDREVCOEU0LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSek5EUkVWQ09FVTBMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0FFNjlFMDdCLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSMEZGTmpsRk1EZENMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" ] }, "ResponseHeaders": { @@ -6963,22 +7616,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzNDREVCOEU0LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0FFNjlFMDdCLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11983" + "11994" ], "x-ms-request-id": [ - "b99f1277-662b-4f1b-8054-2fea932d7306" + "01977dfd-50fe-4583-b469-fd39c2c55207" ], "x-ms-correlation-request-id": [ - "b99f1277-662b-4f1b-8054-2fea932d7306" + "01977dfd-50fe-4583-b469-fd39c2c55207" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T220623Z:b99f1277-662b-4f1b-8054-2fea932d7306" + "WESTINDIA:20220517T035538Z:01977dfd-50fe-4583-b469-fd39c2c55207" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6987,7 +7640,7 @@ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 22:06:22 GMT" + "Tue, 17 May 2022 03:55:37 GMT" ], "Expires": [ "-1" @@ -7000,16 +7653,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzNDREVCOEU0LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSek5EUkVWQ09FVTBMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0FFNjlFMDdCLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSMEZGTmpsRk1EZENMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" ] }, "ResponseHeaders": { @@ -7020,22 +7673,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzNDREVCOEU0LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0FFNjlFMDdCLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11982" + "11993" ], "x-ms-request-id": [ - "cebf9aed-e49b-47b2-9c8a-89fea62cfe78" + "60cbbdf0-d75f-4d91-924d-458ebf1e245a" ], "x-ms-correlation-request-id": [ - "cebf9aed-e49b-47b2-9c8a-89fea62cfe78" + "60cbbdf0-d75f-4d91-924d-458ebf1e245a" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T220638Z:cebf9aed-e49b-47b2-9c8a-89fea62cfe78" + "WESTINDIA:20220517T035553Z:60cbbdf0-d75f-4d91-924d-458ebf1e245a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -7044,7 +7697,7 @@ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 22:06:37 GMT" + "Tue, 17 May 2022 03:55:53 GMT" ], "Expires": [ "-1" @@ -7057,16 +7710,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzNDREVCOEU0LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSek5EUkVWQ09FVTBMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0FFNjlFMDdCLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSMEZGTmpsRk1EZENMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" ] }, "ResponseHeaders": { @@ -7077,22 +7730,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzNDREVCOEU0LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0FFNjlFMDdCLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11981" + "11992" ], "x-ms-request-id": [ - "90b2ce1c-153f-47c6-8624-f6daf35abcec" + "62e3bd72-39f7-45cf-91a8-a4eb9a85cd79" ], "x-ms-correlation-request-id": [ - "90b2ce1c-153f-47c6-8624-f6daf35abcec" + "62e3bd72-39f7-45cf-91a8-a4eb9a85cd79" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T220654Z:90b2ce1c-153f-47c6-8624-f6daf35abcec" + "WESTINDIA:20220517T035608Z:62e3bd72-39f7-45cf-91a8-a4eb9a85cd79" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -7101,7 +7754,7 @@ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 22:06:54 GMT" + "Tue, 17 May 2022 03:56:08 GMT" ], "Expires": [ "-1" @@ -7114,16 +7767,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzNDREVCOEU0LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSek5EUkVWQ09FVTBMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0FFNjlFMDdCLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSMEZGTmpsRk1EZENMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" ] }, "ResponseHeaders": { @@ -7134,16 +7787,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11980" + "11991" ], "x-ms-request-id": [ - "f088f092-9c94-4d82-a143-9b1738e3203b" + "1a2b87e7-e1e0-4de5-a66e-f872d5180b4e" ], "x-ms-correlation-request-id": [ - "f088f092-9c94-4d82-a143-9b1738e3203b" + "1a2b87e7-e1e0-4de5-a66e-f872d5180b4e" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T220710Z:f088f092-9c94-4d82-a143-9b1738e3203b" + "WESTINDIA:20220517T035623Z:1a2b87e7-e1e0-4de5-a66e-f872d5180b4e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -7152,7 +7805,7 @@ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 22:07:09 GMT" + "Tue, 17 May 2022 03:56:22 GMT" ], "Expires": [ "-1" @@ -7165,16 +7818,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzNDREVCOEU0LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSek5EUkVWQ09FVTBMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0FFNjlFMDdCLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSMEZGTmpsRk1EZENMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" ] }, "ResponseHeaders": { @@ -7185,16 +7838,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11979" + "11990" ], "x-ms-request-id": [ - "94f25f54-f849-43ff-825b-b39130daeefc" + "2c40fc3a-45df-4c2c-a5e8-4edded025875" ], "x-ms-correlation-request-id": [ - "94f25f54-f849-43ff-825b-b39130daeefc" + "2c40fc3a-45df-4c2c-a5e8-4edded025875" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T220710Z:94f25f54-f849-43ff-825b-b39130daeefc" + "WESTINDIA:20220517T035623Z:2c40fc3a-45df-4c2c-a5e8-4edded025875" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -7203,7 +7856,7 @@ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 22:07:10 GMT" + "Tue, 17 May 2022 03:56:23 GMT" ], "Expires": [ "-1" @@ -7218,7 +7871,7 @@ ], "Names": {}, "Variables": { - "SubscriptionId": "e37510d7-33b6-4676-886f-ee75bcc01871", - "NamingSuffix": "3cdeb8e4-1995-43fa-99ad-100292564602" + "SubscriptionId": "da364f0f-307b-41c9-9d47-b7413ec45535", + "NamingSuffix": "ae69e07b-59ce-43f5-a4c0-7ce6e68dc7b1" } } \ No newline at end of file diff --git a/src/RecoveryServices/RecoveryServices.Backup.Test/SessionRecords/Microsoft.Azure.Commands.RecoveryServices.Backup.Test.ScenarioTests.JobTests/TestAzureVMGetJobs.json b/src/RecoveryServices/RecoveryServices.Backup.Test/SessionRecords/Microsoft.Azure.Commands.RecoveryServices.Backup.Test.ScenarioTests.JobTests/TestAzureVMGetJobs.json index 8874d1796fbf..fedfcd24ffa1 100644 --- a/src/RecoveryServices/RecoveryServices.Backup.Test/SessionRecords/Microsoft.Azure.Commands.RecoveryServices.Backup.Test.ScenarioTests.JobTests/TestAzureVMGetJobs.json +++ b/src/RecoveryServices/RecoveryServices.Backup.Test/SessionRecords/Microsoft.Azure.Commands.RecoveryServices.Backup.Test.ScenarioTests.JobTests/TestAzureVMGetJobs.json @@ -1,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourcegroups/PSTestRG1584e273?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlZ3JvdXBzL1BTVGVzdFJHMTU4NGUyNzM/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourcegroups/PSTestRGd78c9636?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlZ3JvdXBzL1BTVGVzdFJHZDc4Yzk2MzY/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "45882276-ea78-443c-b330-fdb2d180b567" + "ca422190-26a9-48be-986e-2bfd5e96384b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" ] }, "ResponseHeaders": { @@ -30,16 +30,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11984" ], "x-ms-request-id": [ - "c366cf85-5ff6-4b40-9ad5-cd8b3e1c29bd" + "fa41b588-b659-4bd4-a17d-33f0a50eba5a" ], "x-ms-correlation-request-id": [ - "c366cf85-5ff6-4b40-9ad5-cd8b3e1c29bd" + "fa41b588-b659-4bd4-a17d-33f0a50eba5a" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T220724Z:c366cf85-5ff6-4b40-9ad5-cd8b3e1c29bd" + "JIOINDIAWEST:20220517T042852Z:fa41b588-b659-4bd4-a17d-33f0a50eba5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -48,7 +48,7 @@ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 22:07:24 GMT" + "Tue, 17 May 2022 04:28:51 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -60,26 +60,26 @@ "108" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'PSTestRG1584e273' could not be found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'PSTestRGd78c9636' could not be found.\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourcegroups/PSTestRG1584e273?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlZ3JvdXBzL1BTVGVzdFJHMTU4NGUyNzM/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourcegroups/PSTestRGd78c9636?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlZ3JvdXBzL1BTVGVzdFJHZDc4Yzk2MzY/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "317667d8-1581-49ad-ad27-a4e529d5a72f" + "37353b8a-8c1e-4b33-891b-d5cc58c658d0" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" ] }, "ResponseHeaders": { @@ -93,13 +93,13 @@ "11999" ], "x-ms-request-id": [ - "b777ab10-98fb-4736-b66f-8638bf6edb8e" + "35e68588-b30a-475e-a961-aebbdad2e493" ], "x-ms-correlation-request-id": [ - "b777ab10-98fb-4736-b66f-8638bf6edb8e" + "35e68588-b30a-475e-a961-aebbdad2e493" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T222121Z:b777ab10-98fb-4736-b66f-8638bf6edb8e" + "JIOINDIAWEST:20220517T044033Z:35e68588-b30a-475e-a961-aebbdad2e493" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -108,7 +108,7 @@ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 22:21:21 GMT" + "Tue, 17 May 2022 04:40:33 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -120,26 +120,26 @@ "192" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273\",\r\n \"name\": \"PSTestRG1584e273\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636\",\r\n \"name\": \"PSTestRGd78c9636\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourcegroups/PSTestRG1584e273?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlZ3JvdXBzL1BTVGVzdFJHMTU4NGUyNzM/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourcegroups/PSTestRGd78c9636?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlZ3JvdXBzL1BTVGVzdFJHZDc4Yzk2MzY/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"southeastasia\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "a264f275-2096-480c-8b4b-d5d8e6c22b7f" + "b57d0cff-578b-4e64-84e6-aff8d61feb31" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" ], "Content-Type": [ "application/json; charset=utf-8" @@ -156,16 +156,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1195" ], "x-ms-request-id": [ - "e98c7034-f6af-4704-ad9a-bbc157eeecc0" + "289ee619-1e6c-4535-bb74-2e0a2d53f6b8" ], "x-ms-correlation-request-id": [ - "e98c7034-f6af-4704-ad9a-bbc157eeecc0" + "289ee619-1e6c-4535-bb74-2e0a2d53f6b8" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T220728Z:e98c7034-f6af-4704-ad9a-bbc157eeecc0" + "JIOINDIAWEST:20220517T042854Z:289ee619-1e6c-4535-bb74-2e0a2d53f6b8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -174,7 +174,7 @@ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 22:07:27 GMT" + "Tue, 17 May 2022 04:28:54 GMT" ], "Content-Length": [ "192" @@ -186,26 +186,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273\",\r\n \"name\": \"PSTestRG1584e273\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636\",\r\n \"name\": \"PSTestRGd78c9636\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.Compute/virtualMachines/PSTestVM1584e1?api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMTU4NGUyNzMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy9QU1Rlc3RWTTE1ODRlMT9hcGktdmVyc2lvbj0yMDIxLTExLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.Compute/virtualMachines/PSTestVMd78c91?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZDc4Yzk2MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy9QU1Rlc3RWTWQ3OGM5MT9hcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0db41049-8537-4646-9bf4-0f84d1326089" + "216ef36a-39b5-47a3-8270-9c5ea9d94712" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ] }, "ResponseHeaders": { @@ -219,13 +219,13 @@ "gateway" ], "x-ms-request-id": [ - "216cedfd-9552-4c56-9a6a-a6f22a188285" + "d16ba81b-53ae-4e96-ab49-604b21585012" ], "x-ms-correlation-request-id": [ - "216cedfd-9552-4c56-9a6a-a6f22a188285" + "d16ba81b-53ae-4e96-ab49-604b21585012" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T220731Z:216cedfd-9552-4c56-9a6a-a6f22a188285" + "WESTINDIA:20220517T042854Z:d16ba81b-53ae-4e96-ab49-604b21585012" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -234,7 +234,7 @@ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 22:07:31 GMT" + "Tue, 17 May 2022 04:28:54 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -246,23 +246,23 @@ "236" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Compute/virtualMachines/PSTestVM1584e1' under resource group 'PSTestRG1584e273' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Compute/virtualMachines/PSTestVMd78c91' under resource group 'PSTestRGd78c9636' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.Compute/virtualMachines/PSTestVM1584e1?api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMTU4NGUyNzMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy9QU1Rlc3RWTTE1ODRlMT9hcGktdmVyc2lvbj0yMDIxLTExLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.Compute/virtualMachines/PSTestVMd78c91?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZDc4Yzk2MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy9QU1Rlc3RWTWQ3OGM5MT9hcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cce11031-ff01-4885-955b-f8b9a6ad528e" + "a9c3bcd8-c6f6-4731-8b36-2ba988f1544b" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ] }, "ResponseHeaders": { @@ -273,13 +273,13 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/LowCostGet3Min;3997,Microsoft.Compute/LowCostGet30Min;31973" + "Microsoft.Compute/LowCostGet3Min;3988,Microsoft.Compute/LowCostGet30Min;31870" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "80fd220d-1e5c-41c5-b83a-0dd3c5975951" + "44f1bf2e-3c18-4759-979c-6940141c079a" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -289,19 +289,19 @@ "11995" ], "x-ms-correlation-request-id": [ - "f2c83e1b-bfed-46e8-a0b7-76d0d38f4e1e" + "17cd96d1-3b38-41d4-afe2-707f153156e2" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T221009Z:f2c83e1b-bfed-46e8-a0b7-76d0d38f4e1e" + "WESTINDIA:20220517T043113Z:17cd96d1-3b38-41d4-afe2-707f153156e2" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 22:10:09 GMT" + "Tue, 17 May 2022 04:31:13 GMT" ], "Content-Length": [ - "2265" + "2192" ], "Content-Type": [ "application/json; charset=utf-8" @@ -310,26 +310,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"PSTestVM1584e1\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.Compute/virtualMachines/PSTestVM1584e1\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"Purpose\": \"PSTest\",\r\n \"DeleteBy\": \"06-2022\",\r\n \"AutoShutDown\": \"No\",\r\n \"Owner\": \"sarath\",\r\n \"MabUsed\": \"Yes\",\r\n \"azsecpack\": \"nonprod\",\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": \"true\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"5e6f29a3-ed2e-47cb-8b2f-942ba41e9e76\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D1_v2\"\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.4946.220202\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"PSTestVM1584e1_OsDisk_1_c7557c54440a4429905bf4c6b059cee1\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.Compute/disks/PSTestVM1584e1_OsDisk_1_c7557c54440a4429905bf4c6b059cee1\"\r\n },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"PSTestVM1584e1\",\r\n \"adminUsername\": \"demouser\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"AutomaticByOS\",\r\n \"assessmentMode\": \"ImageDefault\"\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.Network/networkInterfaces/PSTestNIC1584e1\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"timeCreated\": \"2022-02-23T17:08:16.3172232-05:00\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"PSTestVMd78c91\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.Compute/virtualMachines/PSTestVMd78c91\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"Purpose\": \"PSTest\",\r\n \"MabUsed\": \"Yes\",\r\n \"DeleteBy\": \"06-2022\",\r\n \"AutoShutDown\": \"No\",\r\n \"Owner\": \"sarath\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"063e0b3e-4ccf-4cfd-be9c-51407d7e13e9\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D1_v2\"\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.5125.220505\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"PSTestVMd78c91_OsDisk_1_af3e32850ac9483ab3f6b4358baedb30\",\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/PSTestRGd78c9636/providers/Microsoft.Compute/disks/PSTestVMd78c91_OsDisk_1_af3e32850ac9483ab3f6b4358baedb30\"\r\n },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"PSTestVMd78c91\",\r\n \"adminUsername\": \"demouser\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"AutomaticByOS\",\r\n \"assessmentMode\": \"ImageDefault\"\r\n },\r\n \"enableVMAgentPlatformUpdates\": false\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/PSTestRGd78c9636/providers/Microsoft.Network/networkInterfaces/PSTestNICd78c91\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"timeCreated\": \"2022-05-17T09:59:22.0412+05:30\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.Compute/virtualMachines/PSTestVM1584e1?api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMTU4NGUyNzMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy9QU1Rlc3RWTTE1ODRlMT9hcGktdmVyc2lvbj0yMDIxLTExLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.Compute/virtualMachines/PSTestVMd78c91?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZDc4Yzk2MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy9QU1Rlc3RWTWQ3OGM5MT9hcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "80b6301e-4f19-485c-81b9-6773eed9d9a4" + "1ecccabc-bf8d-4ca0-a85c-9ca6c46d6bc4" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ] }, "ResponseHeaders": { @@ -340,35 +340,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/LowCostGet3Min;3997,Microsoft.Compute/LowCostGet30Min;31969" + "Microsoft.Compute/LowCostGet3Min;3982,Microsoft.Compute/LowCostGet30Min;31856" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b3b597f6-cfbe-492a-99de-f9677caae3e7" + "e2bdd7e7-40d0-408b-b0f2-934e3a28a123" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11983" + "11985" ], "x-ms-correlation-request-id": [ - "daedad21-8aba-4bcd-b211-feedb5a8fa82" + "61e42a60-ccd9-4b42-9269-c955062cf228" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T221351Z:daedad21-8aba-4bcd-b211-feedb5a8fa82" + "WESTINDIA:20220517T043348Z:61e42a60-ccd9-4b42-9269-c955062cf228" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 22:13:50 GMT" + "Tue, 17 May 2022 04:33:48 GMT" ], "Content-Length": [ - "2828" + "2755" ], "Content-Type": [ "application/json; charset=utf-8" @@ -377,26 +377,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"PSTestVM1584e1\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.Compute/virtualMachines/PSTestVM1584e1\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"Purpose\": \"PSTest\",\r\n \"DeleteBy\": \"06-2022\",\r\n \"AutoShutDown\": \"No\",\r\n \"Owner\": \"sarath\",\r\n \"MabUsed\": \"Yes\",\r\n \"azsecpack\": \"nonprod\",\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": \"true\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"5e6f29a3-ed2e-47cb-8b2f-942ba41e9e76\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D1_v2\"\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.4946.220202\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"PSTestVM1584e1_OsDisk_1_c7557c54440a4429905bf4c6b059cee1\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.Compute/disks/PSTestVM1584e1_OsDisk_1_c7557c54440a4429905bf4c6b059cee1\"\r\n },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"PSTestVM1584e1\",\r\n \"adminUsername\": \"demouser\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"AutomaticByOS\",\r\n \"assessmentMode\": \"ImageDefault\"\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.Network/networkInterfaces/PSTestNIC1584e1\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"timeCreated\": \"2022-02-23T17:08:16.3172232-05:00\"\r\n },\r\n \"resources\": [\r\n {\r\n \"name\": \"BGInfo\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.Compute/virtualMachines/PSTestVM1584e1/extensions/BGInfo\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"southeastasia\",\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}", + "ResponseBody": "{\r\n \"name\": \"PSTestVMd78c91\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.Compute/virtualMachines/PSTestVMd78c91\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"Purpose\": \"PSTest\",\r\n \"MabUsed\": \"Yes\",\r\n \"DeleteBy\": \"06-2022\",\r\n \"AutoShutDown\": \"No\",\r\n \"Owner\": \"sarath\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"063e0b3e-4ccf-4cfd-be9c-51407d7e13e9\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D1_v2\"\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.5125.220505\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"PSTestVMd78c91_OsDisk_1_af3e32850ac9483ab3f6b4358baedb30\",\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/PSTestRGd78c9636/providers/Microsoft.Compute/disks/PSTestVMd78c91_OsDisk_1_af3e32850ac9483ab3f6b4358baedb30\"\r\n },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"PSTestVMd78c91\",\r\n \"adminUsername\": \"demouser\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"AutomaticByOS\",\r\n \"assessmentMode\": \"ImageDefault\"\r\n },\r\n \"enableVMAgentPlatformUpdates\": false\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/PSTestRGd78c9636/providers/Microsoft.Network/networkInterfaces/PSTestNICd78c91\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"timeCreated\": \"2022-05-17T09:59:22.0412+05:30\"\r\n },\r\n \"resources\": [\r\n {\r\n \"name\": \"BGInfo\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.Compute/virtualMachines/PSTestVMd78c91/extensions/BGInfo\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"BGInfo\",\r\n \"typeHandlerVersion\": \"2.2\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.Network/virtualNetworks/PSTestVNET1584e1?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMTU4NGUyNzMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy9QU1Rlc3RWTkVUMTU4NGUxP2FwaS12ZXJzaW9uPTIwMjEtMDUtMDE=", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.Network/virtualNetworks/PSTestVNETd78c91?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZDc4Yzk2MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy9QU1Rlc3RWTkVUZDc4YzkxP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "142f86e0-22a3-4523-90de-2d9a9454b90e" + "74523904-3f7e-4631-b068-ca4dad907e11" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ] }, "ResponseHeaders": { @@ -410,13 +410,13 @@ "gateway" ], "x-ms-request-id": [ - "e319ffbe-05cd-417a-bd82-ca478b7e6d11" + "5875a0e5-308a-423e-beab-b9aefe20fe91" ], "x-ms-correlation-request-id": [ - "e319ffbe-05cd-417a-bd82-ca478b7e6d11" + "5875a0e5-308a-423e-beab-b9aefe20fe91" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T220734Z:e319ffbe-05cd-417a-bd82-ca478b7e6d11" + "WESTINDIA:20220517T042855Z:5875a0e5-308a-423e-beab-b9aefe20fe91" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -425,7 +425,7 @@ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 22:07:34 GMT" + "Tue, 17 May 2022 04:28:55 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -437,23 +437,23 @@ "238" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/virtualNetworks/PSTestVNET1584e1' under resource group 'PSTestRG1584e273' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/virtualNetworks/PSTestVNETd78c91' under resource group 'PSTestRGd78c9636' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.Network/virtualNetworks/PSTestVNET1584e1?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMTU4NGUyNzMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy9QU1Rlc3RWTkVUMTU4NGUxP2FwaS12ZXJzaW9uPTIwMjEtMDUtMDE=", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.Network/virtualNetworks/PSTestVNETd78c91?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZDc4Yzk2MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy9QU1Rlc3RWTkVUZDc4YzkxP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "142f86e0-22a3-4523-90de-2d9a9454b90e" + "74523904-3f7e-4631-b068-ca4dad907e11" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ] }, "ResponseHeaders": { @@ -464,16 +464,16 @@ "no-cache" ], "ETag": [ - "W/\"a2168ec2-bfad-42ba-bb7f-8386c5b4a530\"" + "W/\"d82912ea-7971-4c90-8ce0-fe2b0637480f\"" ], "x-ms-request-id": [ - "c522a148-2ff8-4067-a5b0-f511b682f087" + "c2f6bdea-3f9a-4b86-90dc-7e37200cd645" ], "x-ms-correlation-request-id": [ - "46c9f698-b90b-4d50-9b27-a00659d0d14f" + "68ec15ba-c52a-46fc-908d-a31d4208604a" ], "x-ms-arm-service-request-id": [ - "dc9eaf23-8b28-4b08-a1aa-863237c18e94" + "60e1d417-dd65-49e2-bc30-0df3fee5d664" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -486,13 +486,13 @@ "11997" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T220747Z:46c9f698-b90b-4d50-9b27-a00659d0d14f" + "WESTINDIA:20220517T042903Z:68ec15ba-c52a-46fc-908d-a31d4208604a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 22:07:47 GMT" + "Tue, 17 May 2022 04:29:03 GMT" ], "Content-Length": [ "1315" @@ -504,26 +504,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"PSTestVNET1584e1\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.Network/virtualNetworks/PSTestVNET1584e1\",\r\n \"etag\": \"W/\\\"a2168ec2-bfad-42ba-bb7f-8386c5b4a530\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"714fe1f3-cff0-4fd8-92a9-f63cdaf5dd64\",\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\": \"PSTestSNC1584e1\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.Network/virtualNetworks/PSTestVNET1584e1/subnets/PSTestSNC1584e1\",\r\n \"etag\": \"W/\\\"a2168ec2-bfad-42ba-bb7f-8386c5b4a530\\\"\",\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 },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"PSTestVNETd78c91\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.Network/virtualNetworks/PSTestVNETd78c91\",\r\n \"etag\": \"W/\\\"d82912ea-7971-4c90-8ce0-fe2b0637480f\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"24a5eff4-4ebe-47ab-9377-058f2e9c8797\",\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\": \"PSTestSNCd78c91\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.Network/virtualNetworks/PSTestVNETd78c91/subnets/PSTestSNCd78c91\",\r\n \"etag\": \"W/\\\"d82912ea-7971-4c90-8ce0-fe2b0637480f\\\"\",\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 },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.Network/virtualNetworks/PSTestVNET1584e1?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMTU4NGUyNzMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy9QU1Rlc3RWTkVUMTU4NGUxP2FwaS12ZXJzaW9uPTIwMjEtMDUtMDE=", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.Network/virtualNetworks/PSTestVNETd78c91?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZDc4Yzk2MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy9QU1Rlc3RWTkVUZDc4YzkxP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "142f86e0-22a3-4523-90de-2d9a9454b90e" + "74523904-3f7e-4631-b068-ca4dad907e11" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ] }, "ResponseHeaders": { @@ -534,16 +534,16 @@ "no-cache" ], "ETag": [ - "W/\"a2168ec2-bfad-42ba-bb7f-8386c5b4a530\"" + "W/\"d82912ea-7971-4c90-8ce0-fe2b0637480f\"" ], "x-ms-request-id": [ - "3afd9816-0a15-481e-b1da-f149e4cebd24" + "269da075-0f30-4213-a03c-6cd5c9973ca9" ], "x-ms-correlation-request-id": [ - "06e90467-75e1-449e-8ce5-4aeb2b0f14ca" + "8865be7a-eafd-403e-b833-08a4c9f43d66" ], "x-ms-arm-service-request-id": [ - "9f93ea77-09a5-4bb5-83db-cd008285e9ac" + "740b238e-e247-4f8a-bbc9-768b9fda22d1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -556,13 +556,13 @@ "11996" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T220748Z:06e90467-75e1-449e-8ce5-4aeb2b0f14ca" + "WESTINDIA:20220517T042903Z:8865be7a-eafd-403e-b833-08a4c9f43d66" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 22:07:47 GMT" + "Tue, 17 May 2022 04:29:03 GMT" ], "Content-Length": [ "1315" @@ -574,26 +574,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"PSTestVNET1584e1\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.Network/virtualNetworks/PSTestVNET1584e1\",\r\n \"etag\": \"W/\\\"a2168ec2-bfad-42ba-bb7f-8386c5b4a530\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"714fe1f3-cff0-4fd8-92a9-f63cdaf5dd64\",\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\": \"PSTestSNC1584e1\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.Network/virtualNetworks/PSTestVNET1584e1/subnets/PSTestSNC1584e1\",\r\n \"etag\": \"W/\\\"a2168ec2-bfad-42ba-bb7f-8386c5b4a530\\\"\",\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 },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"PSTestVNETd78c91\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.Network/virtualNetworks/PSTestVNETd78c91\",\r\n \"etag\": \"W/\\\"d82912ea-7971-4c90-8ce0-fe2b0637480f\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"24a5eff4-4ebe-47ab-9377-058f2e9c8797\",\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\": \"PSTestSNCd78c91\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.Network/virtualNetworks/PSTestVNETd78c91/subnets/PSTestSNCd78c91\",\r\n \"etag\": \"W/\\\"d82912ea-7971-4c90-8ce0-fe2b0637480f\\\"\",\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 },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.Network/virtualNetworks/PSTestVNET1584e1?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMTU4NGUyNzMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy9QU1Rlc3RWTkVUMTU4NGUxP2FwaS12ZXJzaW9uPTIwMjEtMDUtMDE=", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.Network/virtualNetworks/PSTestVNETd78c91?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZDc4Yzk2MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy9QU1Rlc3RWTkVUZDc4YzkxP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=", "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 \"applicationGatewayIpConfigurations\": []\r\n },\r\n \"name\": \"PSTestSNC1584e1\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"ipAllocations\": []\r\n },\r\n \"location\": \"southeastasia\"\r\n}", + "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 \"applicationGatewayIpConfigurations\": []\r\n },\r\n \"name\": \"PSTestSNCd78c91\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"ipAllocations\": []\r\n },\r\n \"location\": \"southeastasia\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "142f86e0-22a3-4523-90de-2d9a9454b90e" + "74523904-3f7e-4631-b068-ca4dad907e11" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -613,19 +613,19 @@ "3" ], "x-ms-request-id": [ - "43842c4b-cc2d-4d96-9e41-c004339b5e87" + "6d9a6e6c-a5c5-40d4-9ae8-d85541b1e10b" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Network/locations/southeastasia/operations/43842c4b-cc2d-4d96-9e41-c004339b5e87?api-version=2021-05-01" + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Network/locations/southeastasia/operations/6d9a6e6c-a5c5-40d4-9ae8-d85541b1e10b?api-version=2021-08-01" ], "x-ms-correlation-request-id": [ - "30e9fc41-e185-4201-8688-4530f64a3bb5" + "80ee5969-65c2-435e-ac2f-cbc857b3f47a" ], "Azure-AsyncNotification": [ "Enabled" ], "x-ms-arm-service-request-id": [ - "714872f9-d28c-4275-a12c-231121ddef4d" + "636aa946-73e6-46b2-83c1-dbf3059cc992" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -638,13 +638,13 @@ "1199" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T220743Z:30e9fc41-e185-4201-8688-4530f64a3bb5" + "WESTINDIA:20220517T042859Z:80ee5969-65c2-435e-ac2f-cbc857b3f47a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 22:07:43 GMT" + "Tue, 17 May 2022 04:28:59 GMT" ], "Content-Length": [ "1313" @@ -656,23 +656,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"PSTestVNET1584e1\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.Network/virtualNetworks/PSTestVNET1584e1\",\r\n \"etag\": \"W/\\\"fa9ac75a-b826-46fa-9e06-c8f2aa25b29e\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"714fe1f3-cff0-4fd8-92a9-f63cdaf5dd64\",\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\": \"PSTestSNC1584e1\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.Network/virtualNetworks/PSTestVNET1584e1/subnets/PSTestSNC1584e1\",\r\n \"etag\": \"W/\\\"fa9ac75a-b826-46fa-9e06-c8f2aa25b29e\\\"\",\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 },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"PSTestVNETd78c91\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.Network/virtualNetworks/PSTestVNETd78c91\",\r\n \"etag\": \"W/\\\"85971be1-302b-403d-98c5-9840819b3073\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"24a5eff4-4ebe-47ab-9377-058f2e9c8797\",\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\": \"PSTestSNCd78c91\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.Network/virtualNetworks/PSTestVNETd78c91/subnets/PSTestSNCd78c91\",\r\n \"etag\": \"W/\\\"85971be1-302b-403d-98c5-9840819b3073\\\"\",\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 },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Network/locations/southeastasia/operations/43842c4b-cc2d-4d96-9e41-c004339b5e87?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzQzODQyYzRiLWNjMmQtNGQ5Ni05ZTQxLWMwMDQzMzliNWU4Nz9hcGktdmVyc2lvbj0yMDIxLTA1LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Network/locations/southeastasia/operations/6d9a6e6c-a5c5-40d4-9ae8-d85541b1e10b?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzZkOWE2ZTZjLWE1YzUtNDBkNC05YWU4LWQ4NTU0MWIxZTEwYj9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "142f86e0-22a3-4523-90de-2d9a9454b90e" + "74523904-3f7e-4631-b068-ca4dad907e11" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ] }, "ResponseHeaders": { @@ -683,13 +683,13 @@ "no-cache" ], "x-ms-request-id": [ - "db41a7bf-c15e-4f41-a93b-fa7e306ea4e1" + "93ab3874-65fc-4c0a-8cce-5b984bdd71ba" ], "x-ms-correlation-request-id": [ - "b8894421-18e2-4d0b-9cf7-82983e2bdc9a" + "fe0f2153-f0df-48da-af05-d6bb920ca49e" ], "x-ms-arm-service-request-id": [ - "24b19ef1-576c-4a1b-b90a-c5edcf0c540d" + "b00011c7-c645-4240-8f0e-779b1f2cc125" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -702,13 +702,13 @@ "11998" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T220747Z:b8894421-18e2-4d0b-9cf7-82983e2bdc9a" + "WESTINDIA:20220517T042902Z:fe0f2153-f0df-48da-af05-d6bb920ca49e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 22:07:46 GMT" + "Tue, 17 May 2022 04:29:02 GMT" ], "Content-Length": [ "29" @@ -724,22 +724,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.Network/publicIPAddresses/pstestpublicdns1584e1?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMTU4NGUyNzMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BzdGVzdHB1YmxpY2RuczE1ODRlMT9hcGktdmVyc2lvbj0yMDIxLTA1LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.Network/publicIPAddresses/pstestpublicdnsd78c91?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZDc4Yzk2MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BzdGVzdHB1YmxpY2Ruc2Q3OGM5MT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f2faca04-524d-45a4-b2b7-f6642af2af79" + "1f4f12f1-1da2-416e-b7a1-6abbe7bb412f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ] }, "ResponseHeaders": { @@ -753,13 +753,13 @@ "gateway" ], "x-ms-request-id": [ - "b6601ab6-e63d-4e3a-b90c-89e8032a4fbf" + "c1cc2997-fef4-451f-95cc-c86404b22854" ], "x-ms-correlation-request-id": [ - "b6601ab6-e63d-4e3a-b90c-89e8032a4fbf" + "c1cc2997-fef4-451f-95cc-c86404b22854" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T220748Z:b6601ab6-e63d-4e3a-b90c-89e8032a4fbf" + "WESTINDIA:20220517T042903Z:c1cc2997-fef4-451f-95cc-c86404b22854" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -768,7 +768,7 @@ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 22:07:47 GMT" + "Tue, 17 May 2022 04:29:03 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -780,23 +780,23 @@ "245" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/publicIPAddresses/pstestpublicdns1584e1' under resource group 'PSTestRG1584e273' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/publicIPAddresses/pstestpublicdnsd78c91' under resource group 'PSTestRGd78c9636' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.Network/publicIPAddresses/pstestpublicdns1584e1?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMTU4NGUyNzMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BzdGVzdHB1YmxpY2RuczE1ODRlMT9hcGktdmVyc2lvbj0yMDIxLTA1LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.Network/publicIPAddresses/pstestpublicdnsd78c91?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZDc4Yzk2MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BzdGVzdHB1YmxpY2Ruc2Q3OGM5MT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f2faca04-524d-45a4-b2b7-f6642af2af79" + "1f4f12f1-1da2-416e-b7a1-6abbe7bb412f" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ] }, "ResponseHeaders": { @@ -807,16 +807,16 @@ "no-cache" ], "ETag": [ - "W/\"0ceacb64-fe0e-4c08-bb9b-81a5bc9b88af\"" + "W/\"166ad25a-e860-445f-8b8c-94eada4acca5\"" ], "x-ms-request-id": [ - "70956dfe-fbcc-411c-89ac-6169d7f7a5ca" + "8c00c34b-07a9-4705-a62e-92a90857bf00" ], "x-ms-correlation-request-id": [ - "ae9db7aa-254f-4983-914e-11f0a25fda9a" + "21fff983-38b3-4e3a-b753-22f5b14765c8" ], "x-ms-arm-service-request-id": [ - "ef9b05db-b88d-4608-b2b0-73ed2b1a0a9a" + "9a7c409e-7f59-46d7-8267-3d04e4c8d856" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -829,16 +829,16 @@ "11993" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T220754Z:ae9db7aa-254f-4983-914e-11f0a25fda9a" + "WESTINDIA:20220517T042906Z:21fff983-38b3-4e3a-b753-22f5b14765c8" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 22:07:53 GMT" + "Tue, 17 May 2022 04:29:06 GMT" ], "Content-Length": [ - "699" + "698" ], "Content-Type": [ "application/json; charset=utf-8" @@ -847,26 +847,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"pstestpublicdns1584e1\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.Network/publicIPAddresses/pstestpublicdns1584e1\",\r\n \"etag\": \"W/\\\"0ceacb64-fe0e-4c08-bb9b-81a5bc9b88af\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"ab5ac8e3-df18-4fcd-9e85-056b867b96c3\",\r\n \"ipAddress\": \"20.212.218.108\",\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 \"tier\": \"Regional\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"pstestpublicdnsd78c91\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.Network/publicIPAddresses/pstestpublicdnsd78c91\",\r\n \"etag\": \"W/\\\"166ad25a-e860-445f-8b8c-94eada4acca5\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"7d78c279-1fe3-498d-b08d-bc57885f8726\",\r\n \"ipAddress\": \"52.230.10.182\",\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 \"tier\": \"Regional\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.Network/publicIPAddresses/pstestpublicdns1584e1?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMTU4NGUyNzMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BzdGVzdHB1YmxpY2RuczE1ODRlMT9hcGktdmVyc2lvbj0yMDIxLTA1LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.Network/publicIPAddresses/pstestpublicdnsd78c91?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZDc4Yzk2MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BzdGVzdHB1YmxpY2Ruc2Q3OGM5MT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f2faca04-524d-45a4-b2b7-f6642af2af79" + "1f4f12f1-1da2-416e-b7a1-6abbe7bb412f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ] }, "ResponseHeaders": { @@ -877,16 +877,16 @@ "no-cache" ], "ETag": [ - "W/\"0ceacb64-fe0e-4c08-bb9b-81a5bc9b88af\"" + "W/\"166ad25a-e860-445f-8b8c-94eada4acca5\"" ], "x-ms-request-id": [ - "6b5089df-e38c-4626-820a-84cb7d16801f" + "3b561772-b968-4b4a-bd5a-239995644772" ], "x-ms-correlation-request-id": [ - "17e8780a-d55b-46fe-a697-211c73a7b96f" + "02f7e6d2-fbea-4c8b-a756-23624a1598d5" ], "x-ms-arm-service-request-id": [ - "570d4fb5-32b7-4a52-a854-34ca86412a54" + "e2e35477-0fce-4f0c-9bcd-acb215e87850" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -899,16 +899,16 @@ "11992" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T220754Z:17e8780a-d55b-46fe-a697-211c73a7b96f" + "WESTINDIA:20220517T042907Z:02f7e6d2-fbea-4c8b-a756-23624a1598d5" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 22:07:54 GMT" + "Tue, 17 May 2022 04:29:06 GMT" ], "Content-Length": [ - "699" + "698" ], "Content-Type": [ "application/json; charset=utf-8" @@ -917,26 +917,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"pstestpublicdns1584e1\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.Network/publicIPAddresses/pstestpublicdns1584e1\",\r\n \"etag\": \"W/\\\"0ceacb64-fe0e-4c08-bb9b-81a5bc9b88af\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"ab5ac8e3-df18-4fcd-9e85-056b867b96c3\",\r\n \"ipAddress\": \"20.212.218.108\",\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 \"tier\": \"Regional\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"pstestpublicdnsd78c91\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.Network/publicIPAddresses/pstestpublicdnsd78c91\",\r\n \"etag\": \"W/\\\"166ad25a-e860-445f-8b8c-94eada4acca5\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"7d78c279-1fe3-498d-b08d-bc57885f8726\",\r\n \"ipAddress\": \"52.230.10.182\",\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 \"tier\": \"Regional\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.Network/publicIPAddresses/pstestpublicdns1584e1?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMTU4NGUyNzMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BzdGVzdHB1YmxpY2RuczE1ODRlMT9hcGktdmVyc2lvbj0yMDIxLTA1LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.Network/publicIPAddresses/pstestpublicdnsd78c91?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZDc4Yzk2MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BzdGVzdHB1YmxpY2Ruc2Q3OGM5MT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "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\": \"southeastasia\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "f2faca04-524d-45a4-b2b7-f6642af2af79" + "1f4f12f1-1da2-416e-b7a1-6abbe7bb412f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -956,19 +956,19 @@ "1" ], "x-ms-request-id": [ - "1ea9a139-e29d-4e0f-b85e-18ad9e170814" + "c565cb94-c9cb-462c-a883-5ec73777850a" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Network/locations/southeastasia/operations/1ea9a139-e29d-4e0f-b85e-18ad9e170814?api-version=2021-05-01" + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Network/locations/southeastasia/operations/c565cb94-c9cb-462c-a883-5ec73777850a?api-version=2021-08-01" ], "x-ms-correlation-request-id": [ - "aa69b1f5-b98a-4f69-af54-317da2838a71" + "a2eba851-18ae-4112-af1e-2586d95d2c6e" ], "Azure-AsyncNotification": [ "Enabled" ], "x-ms-arm-service-request-id": [ - "6d0c7b9e-e187-4e23-8eb7-6fbc025ec5f6" + "0cb207af-50b4-4a5d-b413-58aadbf7769e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -981,13 +981,13 @@ "1198" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T220752Z:aa69b1f5-b98a-4f69-af54-317da2838a71" + "WESTINDIA:20220517T042905Z:a2eba851-18ae-4112-af1e-2586d95d2c6e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 22:07:52 GMT" + "Tue, 17 May 2022 04:29:05 GMT" ], "Content-Length": [ "662" @@ -999,23 +999,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"pstestpublicdns1584e1\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.Network/publicIPAddresses/pstestpublicdns1584e1\",\r\n \"etag\": \"W/\\\"dbcd3adb-ed98-42d3-814a-6363c3492d3c\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"ab5ac8e3-df18-4fcd-9e85-056b867b96c3\",\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 \"tier\": \"Regional\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"pstestpublicdnsd78c91\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.Network/publicIPAddresses/pstestpublicdnsd78c91\",\r\n \"etag\": \"W/\\\"432146c0-6da9-4aa5-963d-02a16a484c43\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"7d78c279-1fe3-498d-b08d-bc57885f8726\",\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 \"tier\": \"Regional\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Network/locations/southeastasia/operations/1ea9a139-e29d-4e0f-b85e-18ad9e170814?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzFlYTlhMTM5LWUyOWQtNGUwZi1iODVlLTE4YWQ5ZTE3MDgxND9hcGktdmVyc2lvbj0yMDIxLTA1LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Network/locations/southeastasia/operations/c565cb94-c9cb-462c-a883-5ec73777850a?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2M1NjVjYjk0LWM5Y2ItNDYyYy1hODgzLTVlYzczNzc3ODUwYT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f2faca04-524d-45a4-b2b7-f6642af2af79" + "1f4f12f1-1da2-416e-b7a1-6abbe7bb412f" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ] }, "ResponseHeaders": { @@ -1026,13 +1026,13 @@ "no-cache" ], "x-ms-request-id": [ - "00b60edc-c14b-4e02-9462-85e14b63c28c" + "1d3ec34d-8b11-49fd-89e2-d023bb82d9a5" ], "x-ms-correlation-request-id": [ - "104960f2-d9ce-43b4-b2bd-c88294b6a78f" + "1fd74391-231b-4557-83a0-647ec2d0952a" ], "x-ms-arm-service-request-id": [ - "ee481539-3a9f-42fb-a5fd-0aca31319c74" + "5f8c7c1b-dc0e-49b3-918a-11aa19c73cec" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1045,13 +1045,13 @@ "11994" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T220754Z:104960f2-d9ce-43b4-b2bd-c88294b6a78f" + "WESTINDIA:20220517T042906Z:1fd74391-231b-4557-83a0-647ec2d0952a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 22:07:53 GMT" + "Tue, 17 May 2022 04:29:06 GMT" ], "Content-Length": [ "29" @@ -1067,22 +1067,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG1584e1?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMTU4NGUyNzMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtTZWN1cml0eUdyb3Vwcy9QU1Rlc3ROU0cxNTg0ZTE/YXBpLXZlcnNpb249MjAyMS0wNS0wMQ==", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGd78c91?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZDc4Yzk2MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtTZWN1cml0eUdyb3Vwcy9QU1Rlc3ROU0dkNzhjOTE/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8d4d475c-d08c-49f4-872a-9106738119bf" + "fb4b3e0b-b0bf-4e4a-96b6-5da3be39a85b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ] }, "ResponseHeaders": { @@ -1096,13 +1096,13 @@ "gateway" ], "x-ms-request-id": [ - "f27c15e0-ff70-4867-ba4e-e5fea2b310fa" + "6bfd223e-3cad-4d61-abcf-4853e5e3e384" ], "x-ms-correlation-request-id": [ - "f27c15e0-ff70-4867-ba4e-e5fea2b310fa" + "6bfd223e-3cad-4d61-abcf-4853e5e3e384" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T220755Z:f27c15e0-ff70-4867-ba4e-e5fea2b310fa" + "WESTINDIA:20220517T042907Z:6bfd223e-3cad-4d61-abcf-4853e5e3e384" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1111,7 +1111,7 @@ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 22:07:54 GMT" + "Tue, 17 May 2022 04:29:07 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1123,23 +1123,23 @@ "243" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/networkSecurityGroups/PSTestNSG1584e1' under resource group 'PSTestRG1584e273' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/networkSecurityGroups/PSTestNSGd78c91' under resource group 'PSTestRGd78c9636' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG1584e1?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMTU4NGUyNzMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtTZWN1cml0eUdyb3Vwcy9QU1Rlc3ROU0cxNTg0ZTE/YXBpLXZlcnNpb249MjAyMS0wNS0wMQ==", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGd78c91?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZDc4Yzk2MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtTZWN1cml0eUdyb3Vwcy9QU1Rlc3ROU0dkNzhjOTE/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8d4d475c-d08c-49f4-872a-9106738119bf" + "fb4b3e0b-b0bf-4e4a-96b6-5da3be39a85b" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ] }, "ResponseHeaders": { @@ -1150,16 +1150,16 @@ "no-cache" ], "ETag": [ - "W/\"bda5dc70-f19b-44d8-beb7-0e6b5b67c046\"" + "W/\"a7dcccc4-437f-4c18-93e0-5a8379596711\"" ], "x-ms-request-id": [ - "72920130-9396-4187-96d7-74bb51618313" + "7bab84ba-97ab-4302-9ee9-4eda33636dd4" ], "x-ms-correlation-request-id": [ - "9c27de02-6152-4de5-9720-2e6c4cbbb1cb" + "848c6eb6-4540-422b-9d17-86a38d365651" ], "x-ms-arm-service-request-id": [ - "840240b4-5d65-4cae-adc3-bdad25ae90e0" + "52aeca3b-48f8-466b-b3ca-d14d28d1a0cb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1172,13 +1172,13 @@ "11989" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T220803Z:9c27de02-6152-4de5-9720-2e6c4cbbb1cb" + "WESTINDIA:20220517T042912Z:848c6eb6-4540-422b-9d17-86a38d365651" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 22:08:02 GMT" + "Tue, 17 May 2022 04:29:12 GMT" ], "Content-Length": [ "8475" @@ -1190,26 +1190,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"PSTestNSG1584e1\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG1584e1\",\r\n \"etag\": \"W/\\\"bda5dc70-f19b-44d8-beb7-0e6b5b67c046\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"a1db11d2-0d1c-4971-ba96-d713936d301c\",\r\n \"securityRules\": [\r\n {\r\n \"name\": \"PSTestNSGRuleRDP1584e1\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG1584e1/securityRules/PSTestNSGRuleRDP1584e1\",\r\n \"etag\": \"W/\\\"bda5dc70-f19b-44d8-beb7-0e6b5b67c046\\\"\",\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\": \"PSTestNSGRuleWeb1584e1\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG1584e1/securityRules/PSTestNSGRuleWeb1584e1\",\r\n \"etag\": \"W/\\\"bda5dc70-f19b-44d8-beb7-0e6b5b67c046\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG1584e1/defaultSecurityRules/AllowVnetInBound\",\r\n \"etag\": \"W/\\\"bda5dc70-f19b-44d8-beb7-0e6b5b67c046\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG1584e1/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\r\n \"etag\": \"W/\\\"bda5dc70-f19b-44d8-beb7-0e6b5b67c046\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG1584e1/defaultSecurityRules/DenyAllInBound\",\r\n \"etag\": \"W/\\\"bda5dc70-f19b-44d8-beb7-0e6b5b67c046\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG1584e1/defaultSecurityRules/AllowVnetOutBound\",\r\n \"etag\": \"W/\\\"bda5dc70-f19b-44d8-beb7-0e6b5b67c046\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG1584e1/defaultSecurityRules/AllowInternetOutBound\",\r\n \"etag\": \"W/\\\"bda5dc70-f19b-44d8-beb7-0e6b5b67c046\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG1584e1/defaultSecurityRules/DenyAllOutBound\",\r\n \"etag\": \"W/\\\"bda5dc70-f19b-44d8-beb7-0e6b5b67c046\\\"\",\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}", + "ResponseBody": "{\r\n \"name\": \"PSTestNSGd78c91\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGd78c91\",\r\n \"etag\": \"W/\\\"a7dcccc4-437f-4c18-93e0-5a8379596711\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"b4ab16ae-70ba-471b-b69c-56154f5352c3\",\r\n \"securityRules\": [\r\n {\r\n \"name\": \"PSTestNSGRuleRDPd78c91\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGd78c91/securityRules/PSTestNSGRuleRDPd78c91\",\r\n \"etag\": \"W/\\\"a7dcccc4-437f-4c18-93e0-5a8379596711\\\"\",\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\": \"PSTestNSGRuleWebd78c91\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGd78c91/securityRules/PSTestNSGRuleWebd78c91\",\r\n \"etag\": \"W/\\\"a7dcccc4-437f-4c18-93e0-5a8379596711\\\"\",\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/PSTestRGd78c9636/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGd78c91/defaultSecurityRules/AllowVnetInBound\",\r\n \"etag\": \"W/\\\"a7dcccc4-437f-4c18-93e0-5a8379596711\\\"\",\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/PSTestRGd78c9636/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGd78c91/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\r\n \"etag\": \"W/\\\"a7dcccc4-437f-4c18-93e0-5a8379596711\\\"\",\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/PSTestRGd78c9636/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGd78c91/defaultSecurityRules/DenyAllInBound\",\r\n \"etag\": \"W/\\\"a7dcccc4-437f-4c18-93e0-5a8379596711\\\"\",\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/PSTestRGd78c9636/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGd78c91/defaultSecurityRules/AllowVnetOutBound\",\r\n \"etag\": \"W/\\\"a7dcccc4-437f-4c18-93e0-5a8379596711\\\"\",\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/PSTestRGd78c9636/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGd78c91/defaultSecurityRules/AllowInternetOutBound\",\r\n \"etag\": \"W/\\\"a7dcccc4-437f-4c18-93e0-5a8379596711\\\"\",\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/PSTestRGd78c9636/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGd78c91/defaultSecurityRules/DenyAllOutBound\",\r\n \"etag\": \"W/\\\"a7dcccc4-437f-4c18-93e0-5a8379596711\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG1584e1?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMTU4NGUyNzMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtTZWN1cml0eUdyb3Vwcy9QU1Rlc3ROU0cxNTg0ZTE/YXBpLXZlcnNpb249MjAyMS0wNS0wMQ==", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGd78c91?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZDc4Yzk2MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtTZWN1cml0eUdyb3Vwcy9QU1Rlc3ROU0dkNzhjOTE/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8d4d475c-d08c-49f4-872a-9106738119bf" + "fb4b3e0b-b0bf-4e4a-96b6-5da3be39a85b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ] }, "ResponseHeaders": { @@ -1220,16 +1220,16 @@ "no-cache" ], "ETag": [ - "W/\"bda5dc70-f19b-44d8-beb7-0e6b5b67c046\"" + "W/\"a7dcccc4-437f-4c18-93e0-5a8379596711\"" ], "x-ms-request-id": [ - "a6a3130f-be08-4759-b076-baa222dd1a8a" + "c23b19df-98fd-4aa8-bdae-5ccdfd4b104c" ], "x-ms-correlation-request-id": [ - "990bbda2-4f59-4e5f-a338-4f43c640a994" + "e69d7fd0-2734-4c6d-b0ce-edf87cc4e0f0" ], "x-ms-arm-service-request-id": [ - "8edb1b13-67d7-460a-8660-a86bab0d0d5e" + "d463c0bb-47c5-4c13-aab1-3e563d90e0f7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1242,13 +1242,13 @@ "11988" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T220803Z:990bbda2-4f59-4e5f-a338-4f43c640a994" + "WESTINDIA:20220517T042912Z:e69d7fd0-2734-4c6d-b0ce-edf87cc4e0f0" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 22:08:02 GMT" + "Tue, 17 May 2022 04:29:12 GMT" ], "Content-Length": [ "8475" @@ -1260,26 +1260,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"PSTestNSG1584e1\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG1584e1\",\r\n \"etag\": \"W/\\\"bda5dc70-f19b-44d8-beb7-0e6b5b67c046\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"a1db11d2-0d1c-4971-ba96-d713936d301c\",\r\n \"securityRules\": [\r\n {\r\n \"name\": \"PSTestNSGRuleRDP1584e1\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG1584e1/securityRules/PSTestNSGRuleRDP1584e1\",\r\n \"etag\": \"W/\\\"bda5dc70-f19b-44d8-beb7-0e6b5b67c046\\\"\",\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\": \"PSTestNSGRuleWeb1584e1\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG1584e1/securityRules/PSTestNSGRuleWeb1584e1\",\r\n \"etag\": \"W/\\\"bda5dc70-f19b-44d8-beb7-0e6b5b67c046\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG1584e1/defaultSecurityRules/AllowVnetInBound\",\r\n \"etag\": \"W/\\\"bda5dc70-f19b-44d8-beb7-0e6b5b67c046\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG1584e1/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\r\n \"etag\": \"W/\\\"bda5dc70-f19b-44d8-beb7-0e6b5b67c046\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG1584e1/defaultSecurityRules/DenyAllInBound\",\r\n \"etag\": \"W/\\\"bda5dc70-f19b-44d8-beb7-0e6b5b67c046\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG1584e1/defaultSecurityRules/AllowVnetOutBound\",\r\n \"etag\": \"W/\\\"bda5dc70-f19b-44d8-beb7-0e6b5b67c046\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG1584e1/defaultSecurityRules/AllowInternetOutBound\",\r\n \"etag\": \"W/\\\"bda5dc70-f19b-44d8-beb7-0e6b5b67c046\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG1584e1/defaultSecurityRules/DenyAllOutBound\",\r\n \"etag\": \"W/\\\"bda5dc70-f19b-44d8-beb7-0e6b5b67c046\\\"\",\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}", + "ResponseBody": "{\r\n \"name\": \"PSTestNSGd78c91\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGd78c91\",\r\n \"etag\": \"W/\\\"a7dcccc4-437f-4c18-93e0-5a8379596711\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"b4ab16ae-70ba-471b-b69c-56154f5352c3\",\r\n \"securityRules\": [\r\n {\r\n \"name\": \"PSTestNSGRuleRDPd78c91\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGd78c91/securityRules/PSTestNSGRuleRDPd78c91\",\r\n \"etag\": \"W/\\\"a7dcccc4-437f-4c18-93e0-5a8379596711\\\"\",\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\": \"PSTestNSGRuleWebd78c91\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGd78c91/securityRules/PSTestNSGRuleWebd78c91\",\r\n \"etag\": \"W/\\\"a7dcccc4-437f-4c18-93e0-5a8379596711\\\"\",\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/PSTestRGd78c9636/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGd78c91/defaultSecurityRules/AllowVnetInBound\",\r\n \"etag\": \"W/\\\"a7dcccc4-437f-4c18-93e0-5a8379596711\\\"\",\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/PSTestRGd78c9636/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGd78c91/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\r\n \"etag\": \"W/\\\"a7dcccc4-437f-4c18-93e0-5a8379596711\\\"\",\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/PSTestRGd78c9636/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGd78c91/defaultSecurityRules/DenyAllInBound\",\r\n \"etag\": \"W/\\\"a7dcccc4-437f-4c18-93e0-5a8379596711\\\"\",\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/PSTestRGd78c9636/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGd78c91/defaultSecurityRules/AllowVnetOutBound\",\r\n \"etag\": \"W/\\\"a7dcccc4-437f-4c18-93e0-5a8379596711\\\"\",\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/PSTestRGd78c9636/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGd78c91/defaultSecurityRules/AllowInternetOutBound\",\r\n \"etag\": \"W/\\\"a7dcccc4-437f-4c18-93e0-5a8379596711\\\"\",\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/PSTestRGd78c9636/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGd78c91/defaultSecurityRules/DenyAllOutBound\",\r\n \"etag\": \"W/\\\"a7dcccc4-437f-4c18-93e0-5a8379596711\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG1584e1?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMTU4NGUyNzMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtTZWN1cml0eUdyb3Vwcy9QU1Rlc3ROU0cxNTg0ZTE/YXBpLXZlcnNpb249MjAyMS0wNS0wMQ==", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGd78c91?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZDc4Yzk2MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtTZWN1cml0eUdyb3Vwcy9QU1Rlc3ROU0dkNzhjOTE/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==", "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\": \"PSTestNSGRuleRDP1584e1\"\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\": \"PSTestNSGRuleWeb1584e1\"\r\n }\r\n ]\r\n },\r\n \"location\": \"southeastasia\"\r\n}", + "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\": \"PSTestNSGRuleRDPd78c91\"\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\": \"PSTestNSGRuleWebd78c91\"\r\n }\r\n ]\r\n },\r\n \"location\": \"southeastasia\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "8d4d475c-d08c-49f4-872a-9106738119bf" + "fb4b3e0b-b0bf-4e4a-96b6-5da3be39a85b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1299,19 +1299,19 @@ "3" ], "x-ms-request-id": [ - "927000f5-c582-49da-996f-6b0a1bf8d061" + "1970ef77-2114-40e9-a014-204d4b94db1d" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Network/locations/southeastasia/operations/927000f5-c582-49da-996f-6b0a1bf8d061?api-version=2021-05-01" + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Network/locations/southeastasia/operations/1970ef77-2114-40e9-a014-204d4b94db1d?api-version=2021-08-01" ], "x-ms-correlation-request-id": [ - "addb5307-3050-4077-85ad-2118cf2c9162" + "d521e85a-8261-4a22-b42b-1e22431105f7" ], "Azure-AsyncNotification": [ "Enabled" ], "x-ms-arm-service-request-id": [ - "472a1ec9-3b6f-4c53-8bc3-6f57c0805238" + "9dda0e0d-da11-4611-b055-a201164eabd5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1324,13 +1324,13 @@ "1197" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T220759Z:addb5307-3050-4077-85ad-2118cf2c9162" + "WESTINDIA:20220517T042909Z:d521e85a-8261-4a22-b42b-1e22431105f7" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 22:07:58 GMT" + "Tue, 17 May 2022 04:29:08 GMT" ], "Content-Length": [ "8466" @@ -1342,23 +1342,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"PSTestNSG1584e1\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG1584e1\",\r\n \"etag\": \"W/\\\"2c0246b5-16be-4aee-afff-454293442769\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"a1db11d2-0d1c-4971-ba96-d713936d301c\",\r\n \"securityRules\": [\r\n {\r\n \"name\": \"PSTestNSGRuleRDP1584e1\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG1584e1/securityRules/PSTestNSGRuleRDP1584e1\",\r\n \"etag\": \"W/\\\"2c0246b5-16be-4aee-afff-454293442769\\\"\",\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\": \"PSTestNSGRuleWeb1584e1\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG1584e1/securityRules/PSTestNSGRuleWeb1584e1\",\r\n \"etag\": \"W/\\\"2c0246b5-16be-4aee-afff-454293442769\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG1584e1/defaultSecurityRules/AllowVnetInBound\",\r\n \"etag\": \"W/\\\"2c0246b5-16be-4aee-afff-454293442769\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG1584e1/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\r\n \"etag\": \"W/\\\"2c0246b5-16be-4aee-afff-454293442769\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG1584e1/defaultSecurityRules/DenyAllInBound\",\r\n \"etag\": \"W/\\\"2c0246b5-16be-4aee-afff-454293442769\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG1584e1/defaultSecurityRules/AllowVnetOutBound\",\r\n \"etag\": \"W/\\\"2c0246b5-16be-4aee-afff-454293442769\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG1584e1/defaultSecurityRules/AllowInternetOutBound\",\r\n \"etag\": \"W/\\\"2c0246b5-16be-4aee-afff-454293442769\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG1584e1/defaultSecurityRules/DenyAllOutBound\",\r\n \"etag\": \"W/\\\"2c0246b5-16be-4aee-afff-454293442769\\\"\",\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}", + "ResponseBody": "{\r\n \"name\": \"PSTestNSGd78c91\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGd78c91\",\r\n \"etag\": \"W/\\\"97418148-8953-4101-8db3-cb64fda5a8da\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"b4ab16ae-70ba-471b-b69c-56154f5352c3\",\r\n \"securityRules\": [\r\n {\r\n \"name\": \"PSTestNSGRuleRDPd78c91\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGd78c91/securityRules/PSTestNSGRuleRDPd78c91\",\r\n \"etag\": \"W/\\\"97418148-8953-4101-8db3-cb64fda5a8da\\\"\",\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\": \"PSTestNSGRuleWebd78c91\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGd78c91/securityRules/PSTestNSGRuleWebd78c91\",\r\n \"etag\": \"W/\\\"97418148-8953-4101-8db3-cb64fda5a8da\\\"\",\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/PSTestRGd78c9636/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGd78c91/defaultSecurityRules/AllowVnetInBound\",\r\n \"etag\": \"W/\\\"97418148-8953-4101-8db3-cb64fda5a8da\\\"\",\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/PSTestRGd78c9636/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGd78c91/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\r\n \"etag\": \"W/\\\"97418148-8953-4101-8db3-cb64fda5a8da\\\"\",\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/PSTestRGd78c9636/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGd78c91/defaultSecurityRules/DenyAllInBound\",\r\n \"etag\": \"W/\\\"97418148-8953-4101-8db3-cb64fda5a8da\\\"\",\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/PSTestRGd78c9636/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGd78c91/defaultSecurityRules/AllowVnetOutBound\",\r\n \"etag\": \"W/\\\"97418148-8953-4101-8db3-cb64fda5a8da\\\"\",\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/PSTestRGd78c9636/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGd78c91/defaultSecurityRules/AllowInternetOutBound\",\r\n \"etag\": \"W/\\\"97418148-8953-4101-8db3-cb64fda5a8da\\\"\",\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/PSTestRGd78c9636/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGd78c91/defaultSecurityRules/DenyAllOutBound\",\r\n \"etag\": \"W/\\\"97418148-8953-4101-8db3-cb64fda5a8da\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Network/locations/southeastasia/operations/927000f5-c582-49da-996f-6b0a1bf8d061?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzkyNzAwMGY1LWM1ODItNDlkYS05OTZmLTZiMGExYmY4ZDA2MT9hcGktdmVyc2lvbj0yMDIxLTA1LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Network/locations/southeastasia/operations/1970ef77-2114-40e9-a014-204d4b94db1d?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzE5NzBlZjc3LTIxMTQtNDBlOS1hMDE0LTIwNGQ0Yjk0ZGIxZD9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8d4d475c-d08c-49f4-872a-9106738119bf" + "fb4b3e0b-b0bf-4e4a-96b6-5da3be39a85b" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ] }, "ResponseHeaders": { @@ -1369,13 +1369,13 @@ "no-cache" ], "x-ms-request-id": [ - "5795dbdc-276a-4dcc-a6f7-259ce395b2a7" + "7c2e7793-f675-4716-a966-21ae4eb2ec7c" ], "x-ms-correlation-request-id": [ - "0646fec6-0dbb-4af6-8c66-dbee37832b59" + "13fc6758-83dc-47ec-9b54-eb43b40902fb" ], "x-ms-arm-service-request-id": [ - "0c78a0a7-06f5-4cf8-8193-83b1c59d9b72" + "fc000542-d2ce-48c6-b6e8-05c5875553c4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1388,13 +1388,13 @@ "11990" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T220802Z:0646fec6-0dbb-4af6-8c66-dbee37832b59" + "WESTINDIA:20220517T042912Z:13fc6758-83dc-47ec-9b54-eb43b40902fb" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 22:08:01 GMT" + "Tue, 17 May 2022 04:29:11 GMT" ], "Content-Length": [ "29" @@ -1410,22 +1410,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.Network/networkInterfaces/PSTestNIC1584e1?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMTU4NGUyNzMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL1BTVGVzdE5JQzE1ODRlMT9hcGktdmVyc2lvbj0yMDIxLTA1LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.Network/networkInterfaces/PSTestNICd78c91?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZDc4Yzk2MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL1BTVGVzdE5JQ2Q3OGM5MT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "891b7238-8e52-4c40-8dcf-7ae7c3054dda" + "6990add2-f55c-46c9-89fd-53af8c3c4ca0" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ] }, "ResponseHeaders": { @@ -1439,13 +1439,13 @@ "gateway" ], "x-ms-request-id": [ - "c4ab2cc1-fb00-4212-a676-27e369f9ff4e" + "ffa07b69-4235-438d-a06d-cfadc5ac26bf" ], "x-ms-correlation-request-id": [ - "c4ab2cc1-fb00-4212-a676-27e369f9ff4e" + "ffa07b69-4235-438d-a06d-cfadc5ac26bf" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T220803Z:c4ab2cc1-fb00-4212-a676-27e369f9ff4e" + "WESTINDIA:20220517T042913Z:ffa07b69-4235-438d-a06d-cfadc5ac26bf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1454,7 +1454,7 @@ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 22:08:02 GMT" + "Tue, 17 May 2022 04:29:12 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1466,23 +1466,23 @@ "239" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/networkInterfaces/PSTestNIC1584e1' under resource group 'PSTestRG1584e273' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/networkInterfaces/PSTestNICd78c91' under resource group 'PSTestRGd78c9636' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.Network/networkInterfaces/PSTestNIC1584e1?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMTU4NGUyNzMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL1BTVGVzdE5JQzE1ODRlMT9hcGktdmVyc2lvbj0yMDIxLTA1LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.Network/networkInterfaces/PSTestNICd78c91?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZDc4Yzk2MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL1BTVGVzdE5JQ2Q3OGM5MT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "891b7238-8e52-4c40-8dcf-7ae7c3054dda" + "6990add2-f55c-46c9-89fd-53af8c3c4ca0" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ] }, "ResponseHeaders": { @@ -1493,16 +1493,16 @@ "no-cache" ], "ETag": [ - "W/\"f49f6e6c-2249-4134-a6ce-bb83945c479b\"" + "W/\"37c0d9f9-effb-4f8a-ac8b-7eb91d5c61fd\"" ], "x-ms-request-id": [ - "a1d667ab-7b22-48b9-a5e8-e192bc61feef" + "594508a5-550f-444c-9874-a18b335d7ab0" ], "x-ms-correlation-request-id": [ - "251c0816-dcc3-4ab6-aa01-3745179f7050" + "2a1ba7e4-fbe3-4349-84eb-2cc77a2eb899" ], "x-ms-arm-service-request-id": [ - "6b7966fc-a6b9-49d7-8c48-a4f0f530e9ad" + "e5171c4d-bb1d-4ad8-94f3-c43b9efa7191" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1515,16 +1515,16 @@ "11986" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T220808Z:251c0816-dcc3-4ab6-aa01-3745179f7050" + "WESTINDIA:20220517T042915Z:2a1ba7e4-fbe3-4349-84eb-2cc77a2eb899" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 22:08:07 GMT" + "Tue, 17 May 2022 04:29:14 GMT" ], "Content-Length": [ - "2143" + "2165" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1533,26 +1533,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"PSTestNIC1584e1\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.Network/networkInterfaces/PSTestNIC1584e1\",\r\n \"etag\": \"W/\\\"f49f6e6c-2249-4134-a6ce-bb83945c479b\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"5f9c3ad1-72bf-4533-8e77-cde4cfbf0661\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.Network/networkInterfaces/PSTestNIC1584e1/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"f49f6e6c-2249-4134-a6ce-bb83945c479b\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.Network/publicIPAddresses/pstestpublicdns1584e1\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.Network/virtualNetworks/PSTestVNET1584e1/subnets/PSTestSNC1584e1\"\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\": \"4pqu42pqz5me5evj4y4nv3o3me.ix.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"vnetEncryptionSupported\": false,\r\n \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG1584e1\"\r\n },\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": [],\r\n \"nicType\": \"Standard\"\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"PSTestNICd78c91\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.Network/networkInterfaces/PSTestNICd78c91\",\r\n \"etag\": \"W/\\\"37c0d9f9-effb-4f8a-ac8b-7eb91d5c61fd\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"cb457d2e-5050-454a-b242-201d29af89a7\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.Network/networkInterfaces/PSTestNICd78c91/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"37c0d9f9-effb-4f8a-ac8b-7eb91d5c61fd\\\"\",\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/PSTestRGd78c9636/providers/Microsoft.Network/publicIPAddresses/pstestpublicdnsd78c91\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.Network/virtualNetworks/PSTestVNETd78c91/subnets/PSTestSNCd78c91\"\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\": \"4tx0kjf4j0vupe1xawhs3hehsh.ix.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"vnetEncryptionSupported\": false,\r\n \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGd78c91\"\r\n },\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": [],\r\n \"nicType\": \"Standard\"\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"kind\": \"Regular\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.Network/networkInterfaces/PSTestNIC1584e1?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMTU4NGUyNzMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL1BTVGVzdE5JQzE1ODRlMT9hcGktdmVyc2lvbj0yMDIxLTA1LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.Network/networkInterfaces/PSTestNICd78c91?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZDc4Yzk2MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL1BTVGVzdE5JQ2Q3OGM5MT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "891b7238-8e52-4c40-8dcf-7ae7c3054dda" + "6990add2-f55c-46c9-89fd-53af8c3c4ca0" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ] }, "ResponseHeaders": { @@ -1563,16 +1563,16 @@ "no-cache" ], "ETag": [ - "W/\"f49f6e6c-2249-4134-a6ce-bb83945c479b\"" + "W/\"37c0d9f9-effb-4f8a-ac8b-7eb91d5c61fd\"" ], "x-ms-request-id": [ - "41252be4-cf82-4f1b-943f-9a5b2267fae3" + "c734d9f1-d070-4f93-b240-010553f2db3c" ], "x-ms-correlation-request-id": [ - "13cd5f24-1925-4201-95d8-28134e129f13" + "79449baf-c080-4c1a-bb30-83bae5ab7019" ], "x-ms-arm-service-request-id": [ - "6943dedb-5dbd-4845-a629-d2954562ac01" + "f0c2d514-ae59-436b-8833-146d30892c6b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1585,16 +1585,16 @@ "11985" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T220808Z:13cd5f24-1925-4201-95d8-28134e129f13" + "WESTINDIA:20220517T042915Z:79449baf-c080-4c1a-bb30-83bae5ab7019" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 22:08:07 GMT" + "Tue, 17 May 2022 04:29:15 GMT" ], "Content-Length": [ - "2143" + "2165" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1603,26 +1603,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"PSTestNIC1584e1\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.Network/networkInterfaces/PSTestNIC1584e1\",\r\n \"etag\": \"W/\\\"f49f6e6c-2249-4134-a6ce-bb83945c479b\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"5f9c3ad1-72bf-4533-8e77-cde4cfbf0661\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.Network/networkInterfaces/PSTestNIC1584e1/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"f49f6e6c-2249-4134-a6ce-bb83945c479b\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.Network/publicIPAddresses/pstestpublicdns1584e1\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.Network/virtualNetworks/PSTestVNET1584e1/subnets/PSTestSNC1584e1\"\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\": \"4pqu42pqz5me5evj4y4nv3o3me.ix.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"vnetEncryptionSupported\": false,\r\n \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG1584e1\"\r\n },\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": [],\r\n \"nicType\": \"Standard\"\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"PSTestNICd78c91\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.Network/networkInterfaces/PSTestNICd78c91\",\r\n \"etag\": \"W/\\\"37c0d9f9-effb-4f8a-ac8b-7eb91d5c61fd\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"cb457d2e-5050-454a-b242-201d29af89a7\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.Network/networkInterfaces/PSTestNICd78c91/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"37c0d9f9-effb-4f8a-ac8b-7eb91d5c61fd\\\"\",\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/PSTestRGd78c9636/providers/Microsoft.Network/publicIPAddresses/pstestpublicdnsd78c91\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.Network/virtualNetworks/PSTestVNETd78c91/subnets/PSTestSNCd78c91\"\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\": \"4tx0kjf4j0vupe1xawhs3hehsh.ix.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"vnetEncryptionSupported\": false,\r\n \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGd78c91\"\r\n },\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": [],\r\n \"nicType\": \"Standard\"\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"kind\": \"Regular\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.Network/networkInterfaces/PSTestNIC1584e1?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMTU4NGUyNzMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL1BTVGVzdE5JQzE1ODRlMT9hcGktdmVyc2lvbj0yMDIxLTA1LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.Network/networkInterfaces/PSTestNICd78c91?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZDc4Yzk2MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL1BTVGVzdE5JQ2Q3OGM5MT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"networkSecurityGroup\": {\r\n \"properties\": {\r\n \"securityRules\": []\r\n },\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG1584e1\",\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 \"applicationGatewayIpConfigurations\": []\r\n },\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.Network/virtualNetworks/PSTestVNET1584e1/subnets/PSTestSNC1584e1\"\r\n },\r\n \"primary\": true,\r\n \"publicIPAddress\": {\r\n \"properties\": {\r\n \"ipTags\": []\r\n },\r\n \"zones\": [],\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.Network/publicIPAddresses/pstestpublicdns1584e1\",\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\": \"southeastasia\"\r\n}", + "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/PSTestRGd78c9636/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGd78c91\",\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 \"applicationGatewayIpConfigurations\": []\r\n },\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.Network/virtualNetworks/PSTestVNETd78c91/subnets/PSTestSNCd78c91\"\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/PSTestRGd78c9636/providers/Microsoft.Network/publicIPAddresses/pstestpublicdnsd78c91\",\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\": \"southeastasia\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "891b7238-8e52-4c40-8dcf-7ae7c3054dda" + "6990add2-f55c-46c9-89fd-53af8c3c4ca0" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1639,19 +1639,19 @@ "no-cache" ], "x-ms-request-id": [ - "bfcfaf24-fb0a-489d-b96a-9c4e081afb30" + "2f1125d9-df41-480f-b302-a21fd60603ed" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Network/locations/southeastasia/operations/bfcfaf24-fb0a-489d-b96a-9c4e081afb30?api-version=2021-05-01" + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Network/locations/southeastasia/operations/2f1125d9-df41-480f-b302-a21fd60603ed?api-version=2021-08-01" ], "x-ms-correlation-request-id": [ - "d180fbe0-ddfe-488b-b2a8-5c3fd29d76f8" + "d1710298-821e-4383-bacf-663d5a0e028a" ], "Azure-AsyncNotification": [ "Enabled" ], "x-ms-arm-service-request-id": [ - "fa9b4a3a-84a6-4f8b-8892-54af79d2a5fe" + "82c864ba-7bdd-4aaa-9df9-f2e557d95718" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1664,16 +1664,16 @@ "1196" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T220808Z:d180fbe0-ddfe-488b-b2a8-5c3fd29d76f8" + "WESTINDIA:20220517T042915Z:d1710298-821e-4383-bacf-663d5a0e028a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 22:08:07 GMT" + "Tue, 17 May 2022 04:29:14 GMT" ], "Content-Length": [ - "2143" + "2165" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1682,26 +1682,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"PSTestNIC1584e1\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.Network/networkInterfaces/PSTestNIC1584e1\",\r\n \"etag\": \"W/\\\"f49f6e6c-2249-4134-a6ce-bb83945c479b\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"5f9c3ad1-72bf-4533-8e77-cde4cfbf0661\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.Network/networkInterfaces/PSTestNIC1584e1/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"f49f6e6c-2249-4134-a6ce-bb83945c479b\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.Network/publicIPAddresses/pstestpublicdns1584e1\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.Network/virtualNetworks/PSTestVNET1584e1/subnets/PSTestSNC1584e1\"\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\": \"4pqu42pqz5me5evj4y4nv3o3me.ix.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"vnetEncryptionSupported\": false,\r\n \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG1584e1\"\r\n },\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": [],\r\n \"nicType\": \"Standard\"\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"PSTestNICd78c91\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.Network/networkInterfaces/PSTestNICd78c91\",\r\n \"etag\": \"W/\\\"37c0d9f9-effb-4f8a-ac8b-7eb91d5c61fd\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"cb457d2e-5050-454a-b242-201d29af89a7\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.Network/networkInterfaces/PSTestNICd78c91/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"37c0d9f9-effb-4f8a-ac8b-7eb91d5c61fd\\\"\",\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/PSTestRGd78c9636/providers/Microsoft.Network/publicIPAddresses/pstestpublicdnsd78c91\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.Network/virtualNetworks/PSTestVNETd78c91/subnets/PSTestSNCd78c91\"\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\": \"4tx0kjf4j0vupe1xawhs3hehsh.ix.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"vnetEncryptionSupported\": false,\r\n \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGd78c91\"\r\n },\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": [],\r\n \"nicType\": \"Standard\"\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"kind\": \"Regular\"\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Storage/checkNameAvailability?api-version=2021-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9jaGVja05hbWVBdmFpbGFiaWxpdHk/YXBpLXZlcnNpb249MjAyMS0wMi0wMQ==", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Storage/checkNameAvailability?api-version=2021-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9jaGVja05hbWVBdmFpbGFiaWxpdHk/YXBpLXZlcnNpb249MjAyMS0wMi0wMQ==", "RequestMethod": "POST", - "RequestBody": "{\r\n \"name\": \"tespstestpste022317080\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n}", + "RequestBody": "{\r\n \"name\": \"tespstestpste051709590\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "cce11031-ff01-4885-955b-f8b9a6ad528e" + "a9c3bcd8-c6f6-4731-8b36-2ba988f1544b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.PowerShell.Cmdlets.Compute.Helpers.Storage.StorageManagementClient/4.23.0" + "Microsoft.Azure.PowerShell.Cmdlets.Compute.Helpers.Storage.StorageManagementClient/4.26.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1718,7 +1718,7 @@ "no-cache" ], "x-ms-request-id": [ - "e8aba10f-954d-419b-9d15-5e05e977b2ff" + "9c21f360-1376-4d1d-a708-95996eaf0c4a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1730,16 +1730,16 @@ "11999" ], "x-ms-correlation-request-id": [ - "e56f9762-47d1-446b-8176-7bc9b6dbd5be" + "1ac7397f-81f2-4622-8b14-16526182e18b" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T220809Z:e56f9762-47d1-446b-8176-7bc9b6dbd5be" + "JIOINDIAWEST:20220517T042917Z:1ac7397f-81f2-4622-8b14-16526182e18b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 22:08:08 GMT" + "Tue, 17 May 2022 04:29:17 GMT" ], "Content-Length": [ "22" @@ -1755,22 +1755,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Storage/checkNameAvailability?api-version=2021-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9jaGVja05hbWVBdmFpbGFiaWxpdHk/YXBpLXZlcnNpb249MjAyMS0wMi0wMQ==", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Storage/checkNameAvailability?api-version=2021-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9jaGVja05hbWVBdmFpbGFiaWxpdHk/YXBpLXZlcnNpb249MjAyMS0wMi0wMQ==", "RequestMethod": "POST", - "RequestBody": "{\r\n \"name\": \"tespstestpste022317150\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n}", + "RequestBody": "{\r\n \"name\": \"tespstestpste051710050\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "b28069be-e680-4cf1-a94f-23a1bb01530d" + "4e90d890-8d9e-447e-bc81-85c31ae3178c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.PowerShell.Cmdlets.Compute.Helpers.Storage.StorageManagementClient/4.23.0" + "Microsoft.Azure.PowerShell.Cmdlets.Compute.Helpers.Storage.StorageManagementClient/4.26.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1787,7 +1787,7 @@ "no-cache" ], "x-ms-request-id": [ - "75d7856a-d581-4b83-9b49-b19ef255577f" + "b2f1cff5-9d65-4540-96f2-d649487306ab" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1796,19 +1796,19 @@ "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11983" ], "x-ms-correlation-request-id": [ - "3513540c-b250-4142-9c8c-b0476d4e5c97" + "e74f0051-c3c5-4ad6-ad0c-b199dcb51c6f" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T221544Z:3513540c-b250-4142-9c8c-b0476d4e5c97" + "JIOINDIAWEST:20220517T043523Z:e74f0051-c3c5-4ad6-ad0c-b199dcb51c6f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 22:15:44 GMT" + "Tue, 17 May 2022 04:35:23 GMT" ], "Content-Length": [ "22" @@ -1824,22 +1824,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.Compute/virtualMachines/PSTestVM1584e1?api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMTU4NGUyNzMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy9QU1Rlc3RWTTE1ODRlMT9hcGktdmVyc2lvbj0yMDIxLTExLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.Compute/virtualMachines/PSTestVMd78c91?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZDc4Yzk2MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy9QU1Rlc3RWTWQ3OGM5MT9hcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D1_v2\"\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\": \"PSTestVM1584e1\",\r\n \"adminUsername\": \"demouser\",\r\n \"adminPassword\": \"1584e273-c68Aa.\",\r\n \"windowsConfiguration\": {}\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.Network/networkInterfaces/PSTestNIC1584e1\"\r\n }\r\n ]\r\n }\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"Purpose\": \"PSTest\",\r\n \"DeleteBy\": \"06-2022\",\r\n \"AutoShutDown\": \"No\",\r\n \"Owner\": \"sarath\",\r\n \"MabUsed\": \"Yes\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D1_v2\"\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\": \"PSTestVMd78c91\",\r\n \"adminUsername\": \"demouser\",\r\n \"adminPassword\": \"d78c9636-c2eAa.\",\r\n \"windowsConfiguration\": {}\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.Network/networkInterfaces/PSTestNICd78c91\"\r\n }\r\n ]\r\n }\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"Purpose\": \"PSTest\",\r\n \"MabUsed\": \"Yes\",\r\n \"DeleteBy\": \"06-2022\",\r\n \"AutoShutDown\": \"No\",\r\n \"Owner\": \"sarath\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "cce11031-ff01-4885-955b-f8b9a6ad528e" + "a9c3bcd8-c6f6-4731-8b36-2ba988f1544b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1859,19 +1859,19 @@ "10" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/southeastasia/operations/2210013b-b3d8-4e0c-b62a-8b5db1a88f33?p=34dc709c-01b2-42c4-84a2-256a9734610d&api-version=2021-11-01" + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Compute/locations/southeastasia/operations/b9ff47ff-9b6a-4c4a-992f-7b16436f5b0f?p=e484ceca-6435-4a7f-b125-3d82e6b12014&api-version=2021-11-01" ], "Azure-AsyncNotification": [ "Enabled" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/PutVM3Min;239,Microsoft.Compute/PutVM30Min;1198" + "Microsoft.Compute/PutVM3Min;239,Microsoft.Compute/PutVM30Min;1197" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "2210013b-b3d8-4e0c-b62a-8b5db1a88f33" + "b9ff47ff-9b6a-4c4a-992f-7b16436f5b0f" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -1881,19 +1881,19 @@ "1199" ], "x-ms-correlation-request-id": [ - "141bc1e2-fa17-47cd-af05-d35588c329b7" + "1c0dacd2-b715-4a31-b9fa-2d46743ce35a" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T220818Z:141bc1e2-fa17-47cd-af05-d35588c329b7" + "WESTINDIA:20220517T042922Z:1c0dacd2-b715-4a31-b9fa-2d46743ce35a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 22:08:18 GMT" + "Tue, 17 May 2022 04:29:22 GMT" ], "Content-Length": [ - "1992" + "1919" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1902,23 +1902,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"PSTestVM1584e1\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.Compute/virtualMachines/PSTestVM1584e1\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"Purpose\": \"PSTest\",\r\n \"DeleteBy\": \"06-2022\",\r\n \"AutoShutDown\": \"No\",\r\n \"Owner\": \"sarath\",\r\n \"MabUsed\": \"Yes\",\r\n \"azsecpack\": \"nonprod\",\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": \"true\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"5e6f29a3-ed2e-47cb-8b2f-942ba41e9e76\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D1_v2\"\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.4946.220202\"\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 \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"PSTestVM1584e1\",\r\n \"adminUsername\": \"demouser\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"AutomaticByOS\",\r\n \"assessmentMode\": \"ImageDefault\"\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.Network/networkInterfaces/PSTestNIC1584e1\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\",\r\n \"timeCreated\": \"2022-02-23T17:08:16.3172232-05:00\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"PSTestVMd78c91\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.Compute/virtualMachines/PSTestVMd78c91\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"Purpose\": \"PSTest\",\r\n \"MabUsed\": \"Yes\",\r\n \"DeleteBy\": \"06-2022\",\r\n \"AutoShutDown\": \"No\",\r\n \"Owner\": \"sarath\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"063e0b3e-4ccf-4cfd-be9c-51407d7e13e9\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D1_v2\"\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.5125.220505\"\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 \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"PSTestVMd78c91\",\r\n \"adminUsername\": \"demouser\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"AutomaticByOS\",\r\n \"assessmentMode\": \"ImageDefault\"\r\n },\r\n \"enableVMAgentPlatformUpdates\": false\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/PSTestRGd78c9636/providers/Microsoft.Network/networkInterfaces/PSTestNICd78c91\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\",\r\n \"timeCreated\": \"2022-05-17T09:59:22.0412+05:30\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/southeastasia/operations/2210013b-b3d8-4e0c-b62a-8b5db1a88f33?p=34dc709c-01b2-42c4-84a2-256a9734610d&api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzIyMTAwMTNiLWIzZDgtNGUwYy1iNjJhLThiNWRiMWE4OGYzMz9wPTM0ZGM3MDljLTAxYjItNDJjNC04NGEyLTI1NmE5NzM0NjEwZCZhcGktdmVyc2lvbj0yMDIxLTExLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Compute/locations/southeastasia/operations/b9ff47ff-9b6a-4c4a-992f-7b16436f5b0f?p=e484ceca-6435-4a7f-b125-3d82e6b12014&api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2I5ZmY0N2ZmLTliNmEtNGM0YS05OTJmLTdiMTY0MzZmNWIwZj9wPWU0ODRjZWNhLTY0MzUtNGE3Zi1iMTI1LTNkODJlNmIxMjAxNCZhcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cce11031-ff01-4885-955b-f8b9a6ad528e" + "a9c3bcd8-c6f6-4731-8b36-2ba988f1544b" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ] }, "ResponseHeaders": { @@ -1932,13 +1932,13 @@ "50" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperation3Min;14999,Microsoft.Compute/GetOperation30Min;29970" + "Microsoft.Compute/GetOperation3Min;14998,Microsoft.Compute/GetOperation30Min;29970" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "782bdcfc-8d3e-4a90-8709-4d2488869673" + "67b5c870-80ef-456f-b7ab-765843244e9b" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -1948,16 +1948,16 @@ "11998" ], "x-ms-correlation-request-id": [ - "73a2ec1b-d582-4760-8509-650026eccce5" + "19901f1c-850b-4ec1-a6ff-cbb695bd2822" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T220828Z:73a2ec1b-d582-4760-8509-650026eccce5" + "WESTINDIA:20220517T042933Z:19901f1c-850b-4ec1-a6ff-cbb695bd2822" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 22:08:28 GMT" + "Tue, 17 May 2022 04:29:32 GMT" ], "Content-Length": [ "134" @@ -1969,23 +1969,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-02-23T17:08:15.9578493-05:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"2210013b-b3d8-4e0c-b62a-8b5db1a88f33\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2022-05-17T09:59:19.7131247+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b9ff47ff-9b6a-4c4a-992f-7b16436f5b0f\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/southeastasia/operations/2210013b-b3d8-4e0c-b62a-8b5db1a88f33?p=34dc709c-01b2-42c4-84a2-256a9734610d&api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzIyMTAwMTNiLWIzZDgtNGUwYy1iNjJhLThiNWRiMWE4OGYzMz9wPTM0ZGM3MDljLTAxYjItNDJjNC04NGEyLTI1NmE5NzM0NjEwZCZhcGktdmVyc2lvbj0yMDIxLTExLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Compute/locations/southeastasia/operations/b9ff47ff-9b6a-4c4a-992f-7b16436f5b0f?p=e484ceca-6435-4a7f-b125-3d82e6b12014&api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2I5ZmY0N2ZmLTliNmEtNGM0YS05OTJmLTdiMTY0MzZmNWIwZj9wPWU0ODRjZWNhLTY0MzUtNGE3Zi1iMTI1LTNkODJlNmIxMjAxNCZhcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cce11031-ff01-4885-955b-f8b9a6ad528e" + "a9c3bcd8-c6f6-4731-8b36-2ba988f1544b" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ] }, "ResponseHeaders": { @@ -1996,13 +1996,13 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperation3Min;14998,Microsoft.Compute/GetOperation30Min;29969" + "Microsoft.Compute/GetOperation3Min;14997,Microsoft.Compute/GetOperation30Min;29970" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e09013c8-262b-49be-84de-73ef642d4369" + "f2b50ec6-8c04-4d04-9bfd-1fb60bda2009" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -2012,16 +2012,16 @@ "11997" ], "x-ms-correlation-request-id": [ - "b6bd7704-4a46-41c3-8794-4c6b46a5adec" + "d109b90d-099a-444e-8ffa-0dc5c4a507d1" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T220918Z:b6bd7704-4a46-41c3-8794-4c6b46a5adec" + "WESTINDIA:20220517T043023Z:d109b90d-099a-444e-8ffa-0dc5c4a507d1" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 22:09:18 GMT" + "Tue, 17 May 2022 04:30:23 GMT" ], "Content-Length": [ "134" @@ -2033,23 +2033,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-02-23T17:08:15.9578493-05:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"2210013b-b3d8-4e0c-b62a-8b5db1a88f33\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2022-05-17T09:59:19.7131247+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b9ff47ff-9b6a-4c4a-992f-7b16436f5b0f\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/southeastasia/operations/2210013b-b3d8-4e0c-b62a-8b5db1a88f33?p=34dc709c-01b2-42c4-84a2-256a9734610d&api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzIyMTAwMTNiLWIzZDgtNGUwYy1iNjJhLThiNWRiMWE4OGYzMz9wPTM0ZGM3MDljLTAxYjItNDJjNC04NGEyLTI1NmE5NzM0NjEwZCZhcGktdmVyc2lvbj0yMDIxLTExLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Compute/locations/southeastasia/operations/b9ff47ff-9b6a-4c4a-992f-7b16436f5b0f?p=e484ceca-6435-4a7f-b125-3d82e6b12014&api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2I5ZmY0N2ZmLTliNmEtNGM0YS05OTJmLTdiMTY0MzZmNWIwZj9wPWU0ODRjZWNhLTY0MzUtNGE3Zi1iMTI1LTNkODJlNmIxMjAxNCZhcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cce11031-ff01-4885-955b-f8b9a6ad528e" + "a9c3bcd8-c6f6-4731-8b36-2ba988f1544b" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ] }, "ResponseHeaders": { @@ -2060,13 +2060,13 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperation3Min;14997,Microsoft.Compute/GetOperation30Min;29969" + "Microsoft.Compute/GetOperation3Min;14996,Microsoft.Compute/GetOperation30Min;29969" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "2e3dd923-8fcb-4242-9eed-815e71eb92ba" + "e368abbe-1bd4-4b5f-9075-0bad86728fee" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -2076,19 +2076,19 @@ "11996" ], "x-ms-correlation-request-id": [ - "30b0b742-96c6-4237-9599-884db87e955a" + "a2b2bc48-3208-4329-a4a4-970e9f57dc60" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T221009Z:30b0b742-96c6-4237-9599-884db87e955a" + "WESTINDIA:20220517T043113Z:a2b2bc48-3208-4329-a4a4-970e9f57dc60" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 22:10:08 GMT" + "Tue, 17 May 2022 04:31:13 GMT" ], "Content-Length": [ - "183" + "184" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2097,26 +2097,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-02-23T17:08:15.9578493-05:00\",\r\n \"endTime\": \"2022-02-23T17:09:55.209342-05:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"2210013b-b3d8-4e0c-b62a-8b5db1a88f33\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2022-05-17T09:59:19.7131247+05:30\",\r\n \"endTime\": \"2022-05-17T10:00:54.0871817+05:30\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"b9ff47ff-9b6a-4c4a-992f-7b16436f5b0f\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/southeastasia/publishers?api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9wdWJsaXNoZXJzP2FwaS12ZXJzaW9uPTIwMjEtMTEtMDE=", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Compute/locations/southeastasia/publishers?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9wdWJsaXNoZXJzP2FwaS12ZXJzaW9uPTIwMjEtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cce11031-ff01-4885-955b-f8b9a6ad528e" + "a9c3bcd8-c6f6-4731-8b36-2ba988f1544b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ] }, "ResponseHeaders": { @@ -2130,10 +2130,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "8d76ef5d-2d17-4297-8566-4612360b9f5a_132792867042483732" + "8d76ef5d-2d17-4297-8566-4612360b9f5a_132927459943306577" ], "x-ms-request-id": [ - "1fe09c9d-2f70-4ce1-b8ef-0f8d41a32d31" + "9b6f753d-d0a5-4ed4-8e5e-f704fc084a2e" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -2143,19 +2143,19 @@ "11994" ], "x-ms-correlation-request-id": [ - "1ffb3611-aa37-48bb-925e-a210370ae4a2" + "2853642e-e4af-4fbb-bb50-754a13f15e5b" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T221012Z:1ffb3611-aa37-48bb-925e-a210370ae4a2" + "WESTINDIA:20220517T043114Z:2853642e-e4af-4fbb-bb50-754a13f15e5b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 22:10:12 GMT" + "Tue, 17 May 2022 04:31:14 GMT" ], "Content-Length": [ - "420268" + "429382" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2164,26 +2164,26 @@ "-1" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"128technology\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/128technology\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1580863854728\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1580863854728\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1583411303229\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1583411303229\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1583465680865\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1583465680865\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1585118004523\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1585118004523\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1597644262255\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1597644262255\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1598955805825\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1598955805825\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1601633765871\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1601633765871\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1602067018799\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1602067018799\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1604579683207\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1604579683207\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1615257339685\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1615257339685\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1615278064010\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1615278064010\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1615455873642\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1615455873642\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1624590941808\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1624590941808\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1e\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1e\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"2021ai\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/2021ai\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"247commercelimited1611063941652\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/247commercelimited1611063941652\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"3cx-pbx\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/3cx-pbx\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"42crunch1580391915541\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/42crunch1580391915541\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"4psa\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/4psa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"5nine-software-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/5nine-software-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"7isolutions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/7isolutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"a10networks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/a10networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"a10networks1596136698788\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/a10networks1596136698788\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"abiquo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/abiquo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"abzoobainc1598420455082\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/abzoobainc1598420455082\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"accedian\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/accedian\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"accelario1579101623356\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/accelario1579101623356\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"accellion\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/accellion\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"accessdata-group\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/accessdata-group\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"accops\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/accops\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aciworldwide\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aciworldwide\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Acronis\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Acronis\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Acronis.Backup\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Acronis.Backup\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"actian-corp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/actian-corp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"actian_matrix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/actian_matrix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"actifio\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/actifio\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"actiphy\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/actiphy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"actiphyinc1627974506603\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/actiphyinc1627974506603\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"activecountermeasuresinc1631039410073\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/activecountermeasuresinc1631039410073\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"activeeon\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/activeeon\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"activeops\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/activeops\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"adastracorporation-4028356\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/adastracorporation-4028356\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"adgs\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/adgs\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"advantech\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/advantech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"advantech-webaccess\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/advantech-webaccess\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"advantys\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/advantys\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aelf\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aelf\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aerospike\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aerospike\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"affinio\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/affinio\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"affirmednetworks1607630812999\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/affirmednetworks1607630812999\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ageniumscale1591804889317\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ageniumscale1591804889317\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aggregion-ltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aggregion-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"agiledialogssl1603791911858\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/agiledialogssl1603791911858\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"agolo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/agolo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ahnlabinc1584495174865\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ahnlabinc1584495174865\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ahnlabinc1584495467593\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ahnlabinc1584495467593\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"airalabrus\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/airalabrus\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aiscaler-cache-control-ddos-and-url-rewriting-\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aiscaler-cache-control-ddos-and-url-rewriting-\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aisundowninc1618516322959\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aisundowninc1618516322959\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"akamai-technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/akamai-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"akumina\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/akumina\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"akumo-software\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/akumo-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"al-tamamunitedtradingcontractingcompany\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/al-tamamunitedtradingcontractingcompany\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"alachisoft\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/alachisoft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"alertlogic\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/alertlogic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"AlertLogic.Extension\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/AlertLogic.Extension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"algolyticstechnologies1606475101268\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/algolyticstechnologies1606475101268\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"alicetrix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/alicetrix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"alienvault\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/alienvault\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"alldigital-brevity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/alldigital-brevity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"almalinux\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/almalinux\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"almalinuxosfoundation1628089859865\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/almalinuxosfoundation1628089859865\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"altair-engineering-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/altair-engineering-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"altamira-corporation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/altamira-corporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"alteryx\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/alteryx\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"altova\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/altova\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"amergint1593131356777\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/amergint1593131356777\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ansys\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ansys\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"antmedia\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/antmedia\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aod\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aod\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"apigee\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/apigee\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"appcara\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appcara\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"appcelerator\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appcelerator\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"appex-networks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appex-networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"appistry\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appistry\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"appiyo_technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appiyo_technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"appmint_inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appmint_inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"apps-4-rent\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/apps-4-rent\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"appscale-marketplace\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appscale-marketplace\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"appsurifyinc1606933045773\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appsurifyinc1606933045773\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aquaforest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aquaforest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aquantyinc1598537176913\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aquantyinc1598537176913\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aquaveollc1633710529908\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aquaveollc1633710529908\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"arabesque-group\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/arabesque-group\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"arangodb\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/arangodb\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aras\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aras\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"arcblock\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/arcblock\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"arcesb\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/arcesb\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"arcontechsolutionsprivatelimited1623841797810\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/arcontechsolutionsprivatelimited1623841797810\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"arcserveusallc-marketing\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/arcserveusallc-marketing\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"arista-networks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/arista-networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ariwontollc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ariwontollc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"array_networks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/array_networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"artificial-intelligence-techniques-sl\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/artificial-intelligence-techniques-sl\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"arubanetworks-4922182\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/arubanetworks-4922182\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"asdivertissementinc1617837708654\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/asdivertissementinc1617837708654\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"asigra\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/asigra\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aspentechnologyhq-1353108\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aspentechnologyhq-1353108\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"astadia-1148316\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/astadia-1148316\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"asterasoftware1581022936015\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/asterasoftware1581022936015\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"asyscosoftwarebv\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/asyscosoftwarebv\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ataccama\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ataccama\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"athinfosystems1641442221349\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/athinfosystems1641442221349\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"atlgaming\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/atlgaming\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"atmosera\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/atmosera\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"atomicorp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/atomicorp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"atomizedinc1587939464368\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/atomizedinc1587939464368\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"attunity_cloudbeam\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/attunity_cloudbeam\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"audiocodes\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/audiocodes\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"auraportal\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/auraportal\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"auriq-systems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/auriq-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"automateio1592914387888\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/automateio1592914387888\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"automationanywhere\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/automationanywhere\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"avanseus\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/avanseus\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"avepoint\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/avepoint\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aveva1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aveva1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"avi-networks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/avi-networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aviatrix-systems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aviatrix-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"awingu\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/awingu\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"axedrasag1590581171549\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/axedrasag1590581171549\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"axsguardablenv\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/axsguardablenv\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"axshco\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/axshco\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"axway\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/axway\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"axxana\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/axxana\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"azhpc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/azhpc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"azul\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/azul\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"azure-dockit\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/azure-dockit\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"azurecyclecloud\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/azurecyclecloud\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"AzureDatabricks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/AzureDatabricks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"azureopenshift\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/azureopenshift\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"AzureRT.PIR.Synthetics.ProdTest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/AzureRT.PIR.Synthetics.ProdTest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"AzureRT.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/AzureRT.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"azuretesting\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/azuretesting\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"azuretesting2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/azuretesting2\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"azuretesting3\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/azuretesting3\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"AzureTools1type\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/AzureTools1type\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"baas-techbureau\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/baas-techbureau\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"baffle-io\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/baffle-io\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"balabit\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/balabit\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"barracudanetworks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/barracudanetworks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"basho\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/basho\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"batch\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/batch\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bayware\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bayware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bdy\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bdy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"belindaczsro1588885355210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/belindaczsro1588885355210\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bellsoft1582871421940\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bellsoft1582871421940\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"betsol\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/betsol\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"beyondtrust\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/beyondtrust\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bi-builders-as\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bi-builders-as\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"big-id\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/big-id\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"biolibinc1622552350258\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/biolibinc1622552350258\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bissantechnology1583581147809\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bissantechnology1583581147809\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bitdefendercybersecurity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bitdefendercybersecurity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Bitnami\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Bitnami\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bizagi\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bizagi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bizaptyltd1626489237351\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bizaptyltd1626489237351\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bizdataloome\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bizdataloome\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"biztalk360\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/biztalk360\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"black-duck-software\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/black-duck-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"blackbird\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/blackbird\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"blackmagicdesignincorporated1596492193249\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/blackmagicdesignincorporated1596492193249\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"blk-technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/blk-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"blockapps\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/blockapps\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"blockchain-foundry\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/blockchain-foundry\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"blockstack\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/blockstack\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bloombase\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bloombase\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bluecat\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bluecat\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bluejeansnetwork1638333611902\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bluejeansnetwork1638333611902\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"blueprismlimited-4827145\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/blueprismlimited-4827145\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bluesyntaxconsulting1617654548594\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bluesyntaxconsulting1617654548594\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bluetalon\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bluetalon\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bmc.ctm\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bmc.ctm\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bmcctm.test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bmcctm.test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"boardpacpvtltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/boardpacpvtltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bocada\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bocada\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"boemskats\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/boemskats\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"botanalytics\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/botanalytics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bowspritconsultingopcprivatelimited1596291408582\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bowspritconsultingopcprivatelimited1596291408582\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bravura-software-llc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bravura-software-llc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Brianjac.Symantec.CloudWorkloadProtection\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Brianjac.Symantec.CloudWorkloadProtection\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bricatainc1584472632111\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bricatainc1584472632111\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bright-computing\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bright-computing\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"brightcomputing\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/brightcomputing\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"brocade_communications\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/brocade_communications\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"brutale\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/brutale\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bryte\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bryte\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bssw\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bssw\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bt-americas-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bt-americas-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"buddhalabs\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/buddhalabs\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cadosecurityltd1626856705534\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cadosecurityltd1626856705534\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"calculated_systems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/calculated_systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"caloudi_corp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/caloudi_corp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"canadiancentreforcybersecurity1610638436359\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/canadiancentreforcybersecurity1610638436359\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Canonical\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Canonical\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"canonical-test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/canonical-test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"carto\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/carto\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cask\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cask\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"castaigroupinc1595243474856\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/castaigroupinc1595243474856\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"catechnologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/catechnologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"catonetworksltd1641478570665\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/catonetworksltd1641478570665\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cautelalabs\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cautelalabs\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cavirin\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cavirin\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cayosoftinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cayosoftinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cdatasoftware\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cdatasoftware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cds\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cds\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"celum-gmbh\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/celum-gmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"center-for-internet-security-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/center-for-internet-security-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"centeritysystems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/centeritysystems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"centrixeltd1594135951373\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/centrixeltd1594135951373\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"centrocomputerspa1584528117084\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/centrocomputerspa1584528117084\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"certifiedsecuritysolutionsinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/certifiedsecuritysolutionsinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"certivox\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/certivox\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cfd-direct\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cfd-direct\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"chain\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/chain\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"checkpoint\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/checkpoint\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"chef-software\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/chef-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Chef.Bootstrap.WindowsAzure\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Chef.Bootstrap.WindowsAzure\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"chunghwatelecom1587573688842\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/chunghwatelecom1587573688842\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cinchy\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cinchy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cinegy-gmbh\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cinegy-gmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"circleci\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/circleci\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cires21\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cires21\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cirruswaveinc1579234787943\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cirruswaveinc1579234787943\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cisco\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cisco\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"citrix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/citrix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Citrix.ADC\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Citrix.ADC\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"clapsodeughaftungsbeschrnkt1626333173563\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/clapsodeughaftungsbeschrnkt1626333173563\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"clear-linux-project\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/clear-linux-project\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"clone-systems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/clone-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"clouber\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/clouber\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloud-checkr\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloud-checkr\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloud-cruiser\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloud-cruiser\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloud-infrastructure-services\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloud-infrastructure-services\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudaccelinc1628754426775\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudaccelinc1628754426775\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudbees\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudbees\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudbees-enterprise-jenkins\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudbees-enterprise-jenkins\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudbolt-software\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudbolt-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudboltsoftware1639523402532\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudboltsoftware1639523402532\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudboost\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudboost\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudcover\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudcover\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudenablers-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudenablers-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudentity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudentity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudera\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudera\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudflare\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudflare\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudhouse\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudhouse\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudinfo-4919088\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudinfo-4919088\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudknox\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudknox\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudlanes\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudlanes\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudlink\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudlink\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"CloudLinkEMC.SecureVM\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/CloudLinkEMC.SecureVM\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudmavensolutions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudmavensolutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudneeti\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudneeti\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudplan-gmbh\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudplan-gmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudsecurity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudsecurity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudsoft\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudsoft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudwhizsolutions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudwhizsolutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudwrxsconsultingltd1631029702055\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudwrxsconsultingltd1631029702055\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"clustrix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/clustrix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cncf-upstream\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cncf-upstream\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"codaintelligence1606495376525\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/codaintelligence1606495376525\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"codelathe\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/codelathe\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"codenvy\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/codenvy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"codetwo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/codetwo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cognexcorporation1613759804979\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cognexcorporation1613759804979\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cognitive-scale\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cognitive-scale\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cognizant\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cognizant\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cognosys\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cognosys\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cohesity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cohesity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cohesitydev1592001764720\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cohesitydev1592001764720\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cohesive\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cohesive\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"coin-sciences-ltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/coin-sciences-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"collabcloudlimited\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/collabcloudlimited\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"collibranv1619508098620\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/collibranv1619508098620\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"commscopeinc1632135151062\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/commscopeinc1632135151062\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"commvault\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/commvault\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"compellon\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/compellon\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"composable\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/composable\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"comunity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/comunity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"concentrationheatandmomentumlimited1616154387047\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/concentrationheatandmomentumlimited1616154387047\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Confer\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Confer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"confluentinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/confluentinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"conflux\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/conflux\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"connecting-software\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/connecting-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"consensys\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/consensys\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"containeraider\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/containeraider\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"contiamogmbh\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/contiamogmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"controlcase\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/controlcase\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"controlplane\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/controlplane\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"controlplanecorporation1609967567639\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/controlplanecorporation1609967567639\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"convertigo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/convertigo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"corda\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/corda\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"core-stack\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/core-stack\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"corent-technology-pvt\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/corent-technology-pvt\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"CoreOS\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/CoreOS\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"couchbase\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/couchbase\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cpanel\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cpanel\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"credativ\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/credativ\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cristiesoftwareltd1599488127561\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cristiesoftwareltd1599488127561\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"crunchyard\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/crunchyard\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"crunchyardltd1623835391104\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/crunchyardltd1623835391104\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cryptocom1585727786636\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cryptocom1585727786636\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cryptosense1605170011574\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cryptosense1605170011574\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cryptzone\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cryptzone\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ctm.bmc.com\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ctm.bmc.com\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cubebackup\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cubebackup\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cyberark\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cyberark\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cybernetica-as\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cybernetica-as\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cyxtera\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cyxtera\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"d4t4_solutions-1164305\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/d4t4_solutions-1164305\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"daceitdbasensetrafficpulse1579892024934\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/daceitdbasensetrafficpulse1579892024934\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"danielsol.AzureTools1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/danielsol.AzureTools1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Dans.Windows.App\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Dans.Windows.App\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Dans3.Windows.App\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Dans3.Windows.App\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dataart\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dataart\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"databricks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/databricks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datacore\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datacore\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Datadog.Agent\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Datadog.Agent\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datadynamicsinc1581991927942\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datadynamicsinc1581991927942\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dataguiseinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dataguiseinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dataiku\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dataiku\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datalayer\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datalayer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datanomers1584919038987\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datanomers1584919038987\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datanova\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datanova\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datapredsa\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datapredsa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dataroadtechnologiesllc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dataroadtechnologiesllc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datasciencedojo1586563145740\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datasciencedojo1586563145740\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datastax\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datastax\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datasunrise\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datasunrise\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datavirtualitygmbh\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datavirtualitygmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datometry\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datometry\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dbs-h\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dbs-h\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ddn-whamcloud-5345716\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ddn-whamcloud-5345716\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Debian\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Debian\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dece-4446019\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dece-4446019\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"decisosalesbv\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/decisosalesbv\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"deepcognitioninc1593512758156\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/deepcognitioninc1593512758156\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"deepsiginc1581610210151\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/deepsiginc1581610210151\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"deepsurfacesecurityinc1632943333445\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/deepsurfacesecurityinc1632943333445\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dellemc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dellemc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dell_software\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dell_software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"delphix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/delphix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"deltapathlimited1592886319362\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/deltapathlimited1592886319362\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"denodo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/denodo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"denyall\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/denyall\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"derdack\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/derdack\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"desktopstudioag1580294245574\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/desktopstudioag1580294245574\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"devfactory\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/devfactory\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"device42inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/device42inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"deviceauthorityinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/deviceauthorityinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"devolutionsinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/devolutionsinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"devopsgroup-uk\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/devopsgroup-uk\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"df-portal-user\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/df-portal-user\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dgsecure\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dgsecure\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Dh2ico\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Dh2ico\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dh2icompany\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dh2icompany\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dhi\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dhi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"diagramics\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/diagramics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dicomsystems1584107398321\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dicomsystems1584107398321\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"diehl-metering\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/diehl-metering\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"digisitesystems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/digisitesystems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"digitaldefenseinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/digitaldefenseinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"digitaloffice\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/digitaloffice\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"digitamizeinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/digitamizeinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"digitate\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/digitate\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"diladele\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/diladele\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dimensionalmechanics-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dimensionalmechanics-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"diqa\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/diqa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"diyatech\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/diyatech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"diyotta\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/diyotta\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"djiindustrialincus\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/djiindustrialincus\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"docker\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/docker\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dome9\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dome9\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dorabot\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dorabot\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dremiocorporation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dremiocorporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"drizti\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/drizti\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"drone\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/drone\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dsi\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dsi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dundas\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dundas\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dyadic_security\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dyadic_security\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dynatrace\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dynatrace\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dynatrace.ruxit\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dynatrace.ruxit\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"e-magicinc1587696283171\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/e-magicinc1587696283171\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"eastwind-networks-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/eastwind-networks-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"easysoftwaresro1593005637384\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/easysoftwaresro1593005637384\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ebesllc1637780200500\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ebesllc1637780200500\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ecessa\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ecessa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"edevtech\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/edevtech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"edgelesssystems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/edgelesssystems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"edgenetworks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/edgenetworks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"edispheresoftwareprivatelimited1606199736428\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/edispheresoftwareprivatelimited1606199736428\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"education4sight\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/education4sight\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"eecservicesfzllc1604836615706\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/eecservicesfzllc1604836615706\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"egnyte\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/egnyte\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"egress1589289169584\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/egress1589289169584\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"eikonasystemsgmbh1601729310063\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/eikonasystemsgmbh1601729310063\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Elastic\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Elastic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"elasticbox\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/elasticbox\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"elecard\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/elecard\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"electric-cloud\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/electric-cloud\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"elevateiot\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/elevateiot\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"eleven01\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/eleven01\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"elfiqnetworks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/elfiqnetworks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"emercoin\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/emercoin\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"energisme1601990637842\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/energisme1601990637842\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"enforongo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/enforongo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"engineering-ingegneriainformatica-spa1626786889850\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/engineering-ingegneriainformatica-spa1626786889850\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"engysltd1624364546407\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/engysltd1624364546407\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"enterprise-ethereum-alliance\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/enterprise-ethereum-alliance\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"enterprisedb-corp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/enterprisedb-corp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"enterpriseworx-it\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/enterpriseworx-it\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"epicgames\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/epicgames\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"epicgamesinc1633466121071\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/epicgamesinc1633466121071\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"eproe\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/eproe\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"equalum\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/equalum\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"equilibrium\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/equilibrium\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"equinix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/equinix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ergoninformatikag1581586464404\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ergoninformatikag1581586464404\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"esdenera\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/esdenera\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ESET\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ESET\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"esetresearch1579795941720\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/esetresearch1579795941720\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"esri\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/esri\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"esyon\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/esyon\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ethereum\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ethereum\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"eurolinuxspzoo1620639373013\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/eurolinuxspzoo1620639373013\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"eventtracker\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/eventtracker\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"evertzmicrosystemsltd1586877923009\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/evertzmicrosystemsltd1586877923009\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"evostream-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/evostream-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"exact\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/exact\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"exasol\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/exasol\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"excelero1608461290726\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/excelero1608461290726\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"exivity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/exivity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"exonar\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/exonar\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"f5-networks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/f5-networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"falainapteltd1604661424876\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/falainapteltd1604661424876\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"falconstorsoftware\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/falconstorsoftware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fatalsecurity1604924013537\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fatalsecurity1604924013537\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fatpipe-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fatpipe-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fenestrae-1035066\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fenestrae-1035066\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fidesys\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fidesys\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"filecatalyst\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/filecatalyst\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"filemagellc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/filemagellc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fiorano\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fiorano\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fireeye\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fireeye\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"firehost\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/firehost\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"firemon\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/firemon\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"firstderivativesplc1596469572732\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/firstderivativesplc1596469572732\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"flashgrid-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/flashgrid-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"flexbby\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/flexbby\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"flexbby-5255860\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/flexbby-5255860\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"flexify-io\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/flexify-io\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"flexxibleit\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/flexxibleit\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"flowmon\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/flowmon\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"flynet\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/flynet\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"foghorn-systems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/foghorn-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"forcepoint-llc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/forcepoint-llc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"forescout\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/forescout\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"foreseetiab1613650409016\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/foreseetiab1613650409016\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"formpipesoftwareab\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/formpipesoftwareab\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"forscene\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/forscene\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fortanix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fortanix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fortinet\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fortinet\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fortycloud\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fortycloud\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"forumsystems1599756394904\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/forumsystems1599756394904\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fotopiatechnologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fotopiatechnologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"foxiteuropegmbh1585901066320\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/foxiteuropegmbh1585901066320\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"franzinc1593030725310\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/franzinc1593030725310\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fujitsu_fast\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fujitsu_fast\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fw\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fw\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"g2kgroupgmbh-4821943\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/g2kgroupgmbh-4821943\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gapteq\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gapteq\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gatlingcorp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gatlingcorp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gbs\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gbs\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gemalto-safenet\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gemalto-safenet\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Gemalto.SafeNet.ProtectV\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Gemalto.SafeNet.ProtectV\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"genuagmbhdevid1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/genuagmbhdevid1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"genua_gmbh\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/genua_gmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"genymobile\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/genymobile\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gigamon-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gigamon-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"GitHub\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/GitHub\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gitlab\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gitlab\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gitlabinc1586447921813\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gitlabinc1586447921813\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gladinet-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gladinet-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"glantoninc1591876792991\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/glantoninc1591876792991\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"globalidsinc1596800540598\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/globalidsinc1596800540598\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"globalscape\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/globalscape\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"globalsolutions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/globalsolutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gluwareinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gluwareinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"graphistry\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/graphistry\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"graphitegtc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/graphitegtc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"great-software-laboratory-private-limited\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/great-software-laboratory-private-limited\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"greensql\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/greensql\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"greycorbelsolutions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/greycorbelsolutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gridgain\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gridgain\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"guardicore\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/guardicore\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gxchainfoundationltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gxchainfoundationltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"h2o-ai\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/h2o-ai\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hackerbay\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hackerbay\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hackershub\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hackershub\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"haivision\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/haivision\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"haivisionsystemsinc1580780591922\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/haivisionsystemsinc1580780591922\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"haltdoscompvtltd1587136166019\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/haltdoscompvtltd1587136166019\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hanu\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hanu\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"haproxy-technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/haproxy-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"harmanconnectedservicesinc1594928575643\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/harmanconnectedservicesinc1594928575643\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"harpaitalia\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/harpaitalia\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hashhub\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hashhub\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hcl-technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hcl-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"heimdall-data\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/heimdall-data\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"help-systems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/help-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"helpyio\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/helpyio\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"heretechnologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/heretechnologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hewlett-packard\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hewlett-packard\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hillstone-networks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hillstone-networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hitachi-solutions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hitachi-solutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hitachivantara\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hitachivantara\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"holo-industrie40softwaregmbh1600957636008\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/holo-industrie40softwaregmbh1600957636008\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hortonworks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hortonworks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hpe\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hpe\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"HPE.Security.ApplicationDefender\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/HPE.Security.ApplicationDefender\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"huawei\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/huawei\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hubstor-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hubstor-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hush-hush\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hush-hush\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hvr\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hvr\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hyperglance\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hyperglance\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hypergrid\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hypergrid\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hystaxinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hystaxinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hytrust\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hytrust\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"i-exceed-technology\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/i-exceed-technology\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iaansys\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iaansys\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ibm\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ibm\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ibm-alliance-global-1560886\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ibm-alliance-global-1560886\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ibm-alliance-usa-ny-armonk-hq-ibmstorage-6201192\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ibm-alliance-usa-ny-armonk-hq-ibmstorage-6201192\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ibm-usa-ny-armonk-hq-6275750-ibmcloud-aiops\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ibm-usa-ny-armonk-hq-6275750-ibmcloud-aiops\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iboss\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iboss\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iconics\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iconics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iconsulting-spa\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iconsulting-spa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"icubeconsultancyservicesinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/icubeconsultancyservicesinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iguazio-5069960\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iguazio-5069960\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ikan\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ikan\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iliimbiliimveyazlmsistemlerisanvetica1617000555584\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iliimbiliimveyazlmsistemlerisanvetica1617000555584\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"illuminainc1586452220102\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/illuminainc1586452220102\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"image-technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/image-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"imaginecommunications\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/imaginecommunications\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"imperva\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/imperva\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"impetustechnologiesinc1591959591877\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/impetustechnologiesinc1591959591877\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"imprivatainc1580479939967\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/imprivatainc1580479939967\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"incorta\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/incorta\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"incredibuild\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/incredibuild\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"indexima1594300233028\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/indexima1594300233028\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"industry-weapon\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/industry-weapon\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"industryweapon1587162781833\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/industryweapon1587162781833\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"inenprocesosyplataformasdetisderldecv1615482385424\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/inenprocesosyplataformasdetisderldecv1615482385424\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"inergybv1637141413454\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/inergybv1637141413454\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"infinitesoftwarecorporation1579223971125\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/infinitesoftwarecorporation1579223971125\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"infiotinc1614034091460\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/infiotinc1614034091460\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"influxdata\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/influxdata\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"infoblox\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/infoblox\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"infogix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/infogix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"infolibrarian\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/infolibrarian\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"informatica\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/informatica\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"informationbuilders\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/informationbuilders\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"informationtechnologies_ltd_1179601\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/informationtechnologies_ltd_1179601\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"infotecsinternetsecuritysoftwaregmbh1636129257584\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/infotecsinternetsecuritysoftwaregmbh1636129257584\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"infront-consulting-group-ltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/infront-consulting-group-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"infscapeughaftungsbeschrnkt\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/infscapeughaftungsbeschrnkt\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ingenieurstudiohollaus1579587745438\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ingenieurstudiohollaus1579587745438\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ingrammicro\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ingrammicro\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"innomindssoftware\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/innomindssoftware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"innosepgmbh1618331344164\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/innosepgmbh1618331344164\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"innovatorartificialtechsrl1619180685551\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/innovatorartificialtechsrl1619180685551\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"innovtech\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/innovtech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"instight-technology\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/instight-technology\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"integration-objects\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/integration-objects\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"intel-bigdl\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/intel-bigdl\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"intel-fpga\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/intel-fpga\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"intellicus-technologies-pvt-ltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/intellicus-technologies-pvt-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"intelligent-plant-ltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/intelligent-plant-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"internationaltrustmachinescorporation1582190033865\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/internationaltrustmachinescorporation1582190033865\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"internet20inc1635882446190\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/internet20inc1635882446190\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"intersystems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/intersystems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"intigua\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/intigua\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"intigua1638692632641\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/intigua1638692632641\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"introspecioltd1629872641188\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/introspecioltd1629872641188\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iofabric\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iofabric\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ipinfusion1590066770520\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ipinfusion1590066770520\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ipswitch\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ipswitch\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iqsol\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iqsol\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iquate\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iquate\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iquest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iquest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"irion\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/irion\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ishlangu-load-balancer-adc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ishlangu-load-balancer-adc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"issp-corporation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/issp-corporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"isvtestukbigcat\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/isvtestukbigcat\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"isvtestuklegacy\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/isvtestuklegacy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"it4bizdoo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/it4bizdoo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"itelios\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/itelios\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"itrsgroupltd1620310702149\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/itrsgroupltd1620310702149\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ivanti-inc-pcs\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ivanti-inc-pcs\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ivix1595238749040\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ivix1595238749040\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iwnamespace\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iwnamespace\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"izenda\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/izenda\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"jamcracker\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/jamcracker\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"javlinltd1579185328273\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/javlinltd1579185328273\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"jedox\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/jedox\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"jelastic\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/jelastic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"jetnexus\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/jetnexus\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"jetware-srl\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/jetware-srl\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"jfrog\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/jfrog\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"jm-technology-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/jm-technology-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"jogetinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/jogetinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"juniper-networks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/juniper-networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"justanalytics\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/justanalytics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kaazing\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kaazing\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kadenallc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kadenallc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kali-linux\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kali-linux\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kalkitech\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kalkitech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kaminarioinc1588672951794\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kaminarioinc1588672951794\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Kaspersky.Lab\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Kaspersky.Lab\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"KasperskyLab.SecurityAgent\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/KasperskyLab.SecurityAgent\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kaspersky_lab\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kaspersky_lab\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kazendi\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kazendi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kelverion\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kelverion\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kemptech\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kemptech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kepion\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kepion\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"KevlarExtensions.M365Security.SecureOS\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/KevlarExtensions.M365Security.SecureOS\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"KevlarExtensions.M365SecurityHostIDS\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/KevlarExtensions.M365SecurityHostIDS\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"KevlarExtensions.M365SecurityInventory\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/KevlarExtensions.M365SecurityInventory\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"KevlarExtensions.M365SecurityInventory.NameChangeTest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/KevlarExtensions.M365SecurityInventory.NameChangeTest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"KevlarExtensions.M365SecurityODL\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/KevlarExtensions.M365SecurityODL\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"KevlarExtensions.M365SecurityTLSExtension\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/KevlarExtensions.M365SecurityTLSExtension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kinetica\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kinetica\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kinvolk\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kinvolk\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"knime\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/knime\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kobalt\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kobalt\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kognillc1600118221163\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kognillc1600118221163\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kognitivsparkinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kognitivsparkinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"konginc1581527938760\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/konginc1581527938760\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"konsys-ltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/konsys-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"koverseinc1588716263110\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/koverseinc1588716263110\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kryonsystems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kryonsystems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"krypc-technologies-pvt-ltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/krypc-technologies-pvt-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kyligence\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kyligence\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kyvos-insights-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kyvos-insights-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lab3solutions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lab3solutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lancom-systems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lancom-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lansa\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lansa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lastline\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lastline\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"leap-orbit\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/leap-orbit\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lenovosoftware1604394104439\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lenovosoftware1604394104439\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"leostream-corporation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/leostream-corporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lepide-software\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lepide-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"levacloudllc1602151818089\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/levacloudllc1602151818089\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"libelleag\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/libelleag\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"liberatii\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/liberatii\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"libraesva\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/libraesva\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"liebsoft\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/liebsoft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lightning-analyticsinc1582000647396\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lightning-analyticsinc1582000647396\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"linuxbasedsystemsdesignltd1580878904727\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/linuxbasedsystemsdesignltd1580878904727\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"liquid-files\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/liquid-files\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"liquidware\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/liquidware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"literatu\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/literatu\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"litespeedtechnologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/litespeedtechnologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"litespeed_technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/litespeed_technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"litionenergiegmbh1580128829115\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/litionenergiegmbh1580128829115\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"litmusautomation1582760223280\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/litmusautomation1582760223280\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"llcitpro\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/llcitpro\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lnw-softgmbh\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lnw-softgmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"loadbalancer\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/loadbalancer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"logicflowag1638535407949\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/logicflowag1638535407949\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"logsign\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/logsign\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"logstarecorp1635838645101\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/logstarecorp1635838645101\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"logtrust\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/logtrust\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"logzio\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/logzio\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"looker\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/looker\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lotus_beta_analytics\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lotus_beta_analytics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lti-lt-infotech\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lti-lt-infotech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"luminate-security\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/luminate-security\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"M365Security.KevlarExtensions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/M365Security.KevlarExtensions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"M365SecurityInventory\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/M365SecurityInventory\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"machinesense\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/machinesense\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"madhavajay1632269232059\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/madhavajay1632269232059\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"maidenhead-bridge\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/maidenhead-bridge\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"manageengine\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/manageengine\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mapd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mapd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mapr-technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mapr-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"marand\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/marand\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"marketplace-rdfe-caps\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/marketplace-rdfe-caps\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"marklogic\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/marklogic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"massiveanalytic-\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/massiveanalytic-\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mathworks-deployment\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mathworks-deployment\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mathworks-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mathworks-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"matillion\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/matillion\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mavinglobal\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mavinglobal\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"McAfee.EndpointSecurity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/McAfee.EndpointSecurity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"McAfee.EndpointSecurity.test3\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/McAfee.EndpointSecurity.test3\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"meanio\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/meanio\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"media3-adobe\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/media3-adobe\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"media3-technologies-llc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/media3-technologies-llc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mediatekinc1586141563888\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mediatekinc1586141563888\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mendix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mendix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"merlynnintelligencetechnologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/merlynnintelligencetechnologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"meshifyappinc1622759451429\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/meshifyappinc1622759451429\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"messagesolution\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/messagesolution\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"metaswitch\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/metaswitch\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mettainnovations-4900054\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mettainnovations-4900054\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mfe_azure\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mfe_azure\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mfiles\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mfiles\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mico\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mico\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"micro-focus\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/micro-focus\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microlinkpcukltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microlinkpcukltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microolap\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microolap\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-ads\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-ads\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-agci-gaming\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-agci-gaming\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-aks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-aks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-avere\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-avere\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-azure-batch\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-azure-batch\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-azure-compute\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-azure-compute\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-azure-hdinsight\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-azure-hdinsight\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-crypto\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-crypto\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-dsvm\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-dsvm\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-hyperv\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-hyperv\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-minecraft\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-minecraft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AdminCenter\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AdminCenter\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AKS\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AKS\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.ActiveDirectory\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.ActiveDirectory\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.ActiveDirectory.LinuxSSH\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.ActiveDirectory.LinuxSSH\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Applications\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Applications\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Automation.HybridWorker\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Automation.HybridWorker\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Automation.HybridWorker.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Automation.HybridWorker.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.AzureDefenderForServers\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.AzureDefenderForServers\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.AzureDefenderForSQL\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.AzureDefenderForSQL\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Backup.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Backup.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Backup.Test.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Backup.Test.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.ChangeTracking\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.ChangeTracking\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.ChangeTracking.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.ChangeTracking.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.ChangeTrackingAndInventory\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.ChangeTrackingAndInventory\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Chaos\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Chaos\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Compute.Security\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Compute.Security\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.ContainerUpstream\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.ContainerUpstream\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.DefenderForServers.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.DefenderForServers.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.DefenderForServers.Test2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.DefenderForServers.Test2\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Diagnostics\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Diagnostics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Diagnostics.Build.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Diagnostics.Build.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Diagnostics.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Diagnostics.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test012be407-61ea-4e45-a2c3-71a45999ca21-20191228083800\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test012be407-61ea-4e45-a2c3-71a45999ca21-20191228083800\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test01971384-3044-413b-8b1c-33b5d461bf23-20200107051823\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test01971384-3044-413b-8b1c-33b5d461bf23-20200107051823\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test0225ec7d-b36c-4ac8-82f0-aa4fafaf10a9-20200111051346\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test0225ec7d-b36c-4ac8-82f0-aa4fafaf10a9-20200111051346\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test025e16a1-328d-45a2-b7e3-71f7e4cde046-20191229064028\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test025e16a1-328d-45a2-b7e3-71f7e4cde046-20191229064028\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test02d1f941-5607-4757-8df7-fd8c5631ab45-20200103083810\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test02d1f941-5607-4757-8df7-fd8c5631ab45-20200103083810\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test039abd7f-360c-42a1-ad5d-77527c519286-20191002233412\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test039abd7f-360c-42a1-ad5d-77527c519286-20191002233412\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test04a0f157-c6fb-4595-b6ca-6c82a2338063-20200108101451\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test04a0f157-c6fb-4595-b6ca-6c82a2338063-20200108101451\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test0737f33e-63e0-4ba9-b04b-b93a1de4e997-20200106083639\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test0737f33e-63e0-4ba9-b04b-b93a1de4e997-20200106083639\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test0a44d7be-63fa-418d-a7b6-89a44dd21894-20200107052935\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test0a44d7be-63fa-418d-a7b6-89a44dd21894-20200107052935\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test0d01b487-7f79-4d87-b330-5c025068db45-20191004190331\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test0d01b487-7f79-4d87-b330-5c025068db45-20191004190331\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test0d643748-e6fe-41ad-b4d3-89a289a0cee0-20191003055620\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test0d643748-e6fe-41ad-b4d3-89a289a0cee0-20191003055620\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test0df83c51-5bb9-43f8-8ae9-bc896ea64f78-20200110220221\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test0df83c51-5bb9-43f8-8ae9-bc896ea64f78-20200110220221\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test0f02c246-7e65-4010-9367-ca4530c3897e-20191004190223\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test0f02c246-7e65-4010-9367-ca4530c3897e-20191004190223\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test157494ec-e788-43b0-8d26-a17e39ee07cc-20191002011945\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test157494ec-e788-43b0-8d26-a17e39ee07cc-20191002011945\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test1661d154-b623-4507-8a56-3a89812c456c-20200111083940\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test1661d154-b623-4507-8a56-3a89812c456c-20200111083940\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test17bbd860-f21d-40ab-9026-16e05f2907f0-20200106083451\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test17bbd860-f21d-40ab-9026-16e05f2907f0-20200106083451\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test194e2333-13cd-43e3-b0a4-c8cdcf1a3600-20200110211106\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test194e2333-13cd-43e3-b0a4-c8cdcf1a3600-20200110211106\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test1bc26b19-b8d8-41f9-a26d-818f277bdf93-20200101113139\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test1bc26b19-b8d8-41f9-a26d-818f277bdf93-20200101113139\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test1c840053-9213-4f2a-8f2e-9bf2297908bd-20200108101424\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test1c840053-9213-4f2a-8f2e-9bf2297908bd-20200108101424\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test1d7bba72-69f1-43cd-a38c-41ce0b5f4bae-20200109050041\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test1d7bba72-69f1-43cd-a38c-41ce0b5f4bae-20200109050041\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test1f7a8078-50e7-4a3a-91eb-d178fd4c403b-20191002233353\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test1f7a8078-50e7-4a3a-91eb-d178fd4c403b-20191002233353\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test1fef1fdc-57ba-46a8-a879-475ba7d45a7a-20200106083509\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test1fef1fdc-57ba-46a8-a879-475ba7d45a7a-20200106083509\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test21332f15-f78d-4d31-afac-79b9dc989432-20191231175840\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test21332f15-f78d-4d31-afac-79b9dc989432-20191231175840\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test22f10717-6939-4003-a9ce-38effd8b77d6-20191007191355\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test22f10717-6939-4003-a9ce-38effd8b77d6-20191007191355\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test2334e6e3-bb72-4241-a36f-c2429d69bc0b-20200106050834\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test2334e6e3-bb72-4241-a36f-c2429d69bc0b-20200106050834\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test24fa9eb5-1c59-4425-b61c-30fd638c2a45-20191003203802\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test24fa9eb5-1c59-4425-b61c-30fd638c2a45-20191003203802\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test2521a545-ed61-4a15-bed1-aba7ce1d81ee-20200106050804\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test2521a545-ed61-4a15-bed1-aba7ce1d81ee-20200106050804\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test25c6fe61-1282-43c2-867b-b5039219989c-20200105081851\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test25c6fe61-1282-43c2-867b-b5039219989c-20200105081851\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test27515c8c-6773-4f92-afb0-35691cc6e3b6-20200103083821\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test27515c8c-6773-4f92-afb0-35691cc6e3b6-20200103083821\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test28012680-48e7-4903-877f-2f29464e63d5-20191229033424\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test28012680-48e7-4903-877f-2f29464e63d5-20191229033424\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test29a7a529-d293-4728-9d7f-257ed996e64f-20200108081759\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test29a7a529-d293-4728-9d7f-257ed996e64f-20200108081759\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test2a5f2d2c-b8e3-46c2-850d-a1641c024fe7-20200107084228\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test2a5f2d2c-b8e3-46c2-850d-a1641c024fe7-20200107084228\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test2ce856af-ab17-48f2-ba3e-bcd9af091061-20200110013246\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test2ce856af-ab17-48f2-ba3e-bcd9af091061-20200110013246\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test2e012e83-6361-4365-963f-6ced8a08e91c-20200110211254\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test2e012e83-6361-4365-963f-6ced8a08e91c-20200110211254\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test2ecf67b2-fb63-4461-b6a6-7026c4fb1168-20191002214026\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test2ecf67b2-fb63-4461-b6a6-7026c4fb1168-20191002214026\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test2ede6564-c7cc-44cb-a1a8-902505c9829d-20191003020742\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test2ede6564-c7cc-44cb-a1a8-902505c9829d-20191003020742\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test2f4ebc17-e27e-48d9-9cc3-ff933c21884e-20200106092410\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test2f4ebc17-e27e-48d9-9cc3-ff933c21884e-20200106092410\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test349ee02c-af9b-4663-a963-823b40eefed8-20200108083612\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test349ee02c-af9b-4663-a963-823b40eefed8-20200108083612\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test34cf6b13-b78e-478b-b596-8b661629371d-20191007195455\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test34cf6b13-b78e-478b-b596-8b661629371d-20191007195455\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test36cc5b60-2b23-4a04-bf95-f7865e1141cf-20200110085718\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test36cc5b60-2b23-4a04-bf95-f7865e1141cf-20200110085718\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3712fca9-5cdd-4609-be69-b02aedc5c55c-20200107084115\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3712fca9-5cdd-4609-be69-b02aedc5c55c-20200107084115\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3772d042-92e2-4bcb-99b7-8a6a119cc088-20191231182808\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3772d042-92e2-4bcb-99b7-8a6a119cc088-20191231182808\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test37a6dd64-d44d-465e-85bc-3bc38be90350-20200104083535\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test37a6dd64-d44d-465e-85bc-3bc38be90350-20200104083535\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test381074d5-7156-472b-801a-b35f8fef4cc6-20200105050612\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test381074d5-7156-472b-801a-b35f8fef4cc6-20200105050612\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3877a44d-4c48-40db-80eb-227272d5acd6-20200110103540\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3877a44d-4c48-40db-80eb-227272d5acd6-20200110103540\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test38ecd28e-7018-4672-840c-3044a5e7a6b5-20200111084208\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test38ecd28e-7018-4672-840c-3044a5e7a6b5-20200111084208\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test395a0b49-442a-450c-8a1f-65b0aa3bcf47-20200105083839\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test395a0b49-442a-450c-8a1f-65b0aa3bcf47-20200105083839\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3971b300-edff-44a8-b61b-7f9b7460a8d6-20191003002234\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3971b300-edff-44a8-b61b-7f9b7460a8d6-20191003002234\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3adeec20-7458-4b3d-af26-0b6bc2aae3eb-20200103083751\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3adeec20-7458-4b3d-af26-0b6bc2aae3eb-20200103083751\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3b20dd96-f3e4-4798-998d-8c433c2449a7-20200108083635\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3b20dd96-f3e4-4798-998d-8c433c2449a7-20200108083635\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3ce2fd4a-8b5a-4c7e-b08d-3e48fc0f45e7-20200104083825\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3ce2fd4a-8b5a-4c7e-b08d-3e48fc0f45e7-20200104083825\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3d499ca7-cc8d-41cc-a6dc-ffb1a4ac4942-20200107053004\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3d499ca7-cc8d-41cc-a6dc-ffb1a4ac4942-20200107053004\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3db7240e-5e42-4d6d-b024-cc9fce3c828b-20200105083520\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3db7240e-5e42-4d6d-b024-cc9fce3c828b-20200105083520\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3f6b7341-635f-48d5-a36d-be5dfe3002c4-20200105050937\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3f6b7341-635f-48d5-a36d-be5dfe3002c4-20200105050937\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3fc26934-ede2-4482-ad5e-f66f6135d4a6-20191228055558\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3fc26934-ede2-4482-ad5e-f66f6135d4a6-20191228055558\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test406d077c-6017-4062-bc96-f809147a2331-20200106050748\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test406d077c-6017-4062-bc96-f809147a2331-20200106050748\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test4302336c-e039-4e70-bcb6-9275f6089e4a-20200108144821\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test4302336c-e039-4e70-bcb6-9275f6089e4a-20200108144821\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test453a087e-8435-46db-970a-4ee633cc4c4a-20200102083458\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test453a087e-8435-46db-970a-4ee633cc4c4a-20200102083458\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test46b73afa-2259-4aff-81e1-a58bf24b59aa-20191229033459\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test46b73afa-2259-4aff-81e1-a58bf24b59aa-20191229033459\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test4a3399ee-82ea-46aa-9e3a-5434b588e3b6-20191228013518\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test4a3399ee-82ea-46aa-9e3a-5434b588e3b6-20191228013518\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test4eb7a185-527b-4b9f-93a8-7f1cec9d062e-20191231151207\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test4eb7a185-527b-4b9f-93a8-7f1cec9d062e-20191231151207\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test520a0915-f9f0-4da4-9fa1-1b74fc1470aa-20200102083505\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test520a0915-f9f0-4da4-9fa1-1b74fc1470aa-20200102083505\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test5397960f-023b-4979-9a8b-800d049045a4-20191007195417\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test5397960f-023b-4979-9a8b-800d049045a4-20191007195417\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test55a36387-8a3f-4159-9884-29b97539a253-20200109080443\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test55a36387-8a3f-4159-9884-29b97539a253-20200109080443\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test5645f186-4ee5-4209-af37-423660e3318c-20191231175947\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test5645f186-4ee5-4209-af37-423660e3318c-20191231175947\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test58b4461d-4d2d-4395-b6d2-ab83d4d8c62f-20200111001002\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test58b4461d-4d2d-4395-b6d2-ab83d4d8c62f-20200111001002\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test5b0bf447-d98d-429d-8334-c032d197c743-20191003203846\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test5b0bf447-d98d-429d-8334-c032d197c743-20191003203846\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test5bc90367-1ea2-400b-a40c-321081bae3f3-20200108145035\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test5bc90367-1ea2-400b-a40c-321081bae3f3-20200108145035\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test5bd0562f-e939-456f-a6ee-c848d1aba616-20200101151641\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test5bd0562f-e939-456f-a6ee-c848d1aba616-20200101151641\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test5e4efe90-916c-4c96-802c-1508a5b6da78-20191231151150\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test5e4efe90-916c-4c96-802c-1508a5b6da78-20191231151150\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test5f8f0c10-cc3c-45ec-a068-fb1c7edfa0d9-20200101145958\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test5f8f0c10-cc3c-45ec-a068-fb1c7edfa0d9-20200101145958\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test60a000b7-286c-4b2b-9137-bbc088736419-20200108144920\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test60a000b7-286c-4b2b-9137-bbc088736419-20200108144920\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test6192a01b-ba47-4d08-904a-71647a49a112-20191008041625\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test6192a01b-ba47-4d08-904a-71647a49a112-20191008041625\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test62835538-89c6-4f66-9034-f7a4b176c615-20191007234245\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test62835538-89c6-4f66-9034-f7a4b176c615-20191007234245\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test651e4ad2-ee4a-462e-a506-b56b1969f5d0-20200110230749\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test651e4ad2-ee4a-462e-a506-b56b1969f5d0-20200110230749\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test691d94e5-c40c-4568-94b0-09b08aea42b1-20200106050808\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test691d94e5-c40c-4568-94b0-09b08aea42b1-20200106050808\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test6aa3643c-011a-4180-877f-cad955a8e664-20191007234642\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test6aa3643c-011a-4180-877f-cad955a8e664-20191007234642\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test6cfb469b-8478-468f-9bb5-691affd32abb-20200107083803\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test6cfb469b-8478-468f-9bb5-691affd32abb-20200107083803\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test6d36b6b2-7956-4e62-91c1-c33792fd4bb1-20200110123203\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test6d36b6b2-7956-4e62-91c1-c33792fd4bb1-20200110123203\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test6e28168e-a9c8-4c0a-8b40-60c2a1502d43-20200108052802\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test6e28168e-a9c8-4c0a-8b40-60c2a1502d43-20200108052802\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test6eb763ac-7fbe-4e44-bee7-aad035ee2a7d-20200110084429\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test6eb763ac-7fbe-4e44-bee7-aad035ee2a7d-20200110084429\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test6efec253-f625-46f0-9d74-324f69e963d8-20200107070514\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test6efec253-f625-46f0-9d74-324f69e963d8-20200107070514\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test70fa7e4c-3122-4ff7-aec6-fe75ab660a01-20200108105900\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test70fa7e4c-3122-4ff7-aec6-fe75ab660a01-20200108105900\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test710a5fbf-06c7-46ac-b96d-a29d2586422f-20200108083639\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test710a5fbf-06c7-46ac-b96d-a29d2586422f-20200108083639\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test71d72489-67c6-45e2-b1e6-a19546efc823-20200105112903\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test71d72489-67c6-45e2-b1e6-a19546efc823-20200105112903\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test721fccf1-2b3e-44b6-908f-51b910e88b09-20200111104931\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test721fccf1-2b3e-44b6-908f-51b910e88b09-20200111104931\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test742d0189-9e41-4f1b-8ad3-31c05d34903b-20200111103247\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test742d0189-9e41-4f1b-8ad3-31c05d34903b-20200111103247\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test7836a97c-f56e-48d0-8b5d-61e79aeb3226-20200111071656\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7836a97c-f56e-48d0-8b5d-61e79aeb3226-20200111071656\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test78666b2e-25c8-4a48-931a-3131a0317d73-20191002194352\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test78666b2e-25c8-4a48-931a-3131a0317d73-20191002194352\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test79f13508-fcbd-47b9-988f-1c21ef5e7f2e-20191002015429\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test79f13508-fcbd-47b9-988f-1c21ef5e7f2e-20191002015429\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test79fb90ce-4691-4212-99a7-6e4069bd5984-20191007234256\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test79fb90ce-4691-4212-99a7-6e4069bd5984-20191007234256\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test7a8cf687-6a21-4181-ba98-902fee717bd3-20200104103216\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7a8cf687-6a21-4181-ba98-902fee717bd3-20200104103216\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test7aabf813-6644-483a-b9e0-ba6f8973ba1f-20191002232822\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7aabf813-6644-483a-b9e0-ba6f8973ba1f-20191002232822\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test7c96c10a-0c8f-4ab0-83fd-1ad66a362e33-20191229033458\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7c96c10a-0c8f-4ab0-83fd-1ad66a362e33-20191229033458\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test7e79b6ff-2559-44fe-b3ba-afaa68d63636-20200108112116\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7e79b6ff-2559-44fe-b3ba-afaa68d63636-20200108112116\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test7ea372f7-ea7e-4b9e-bbad-4f35c1567aa2-20200108052736\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7ea372f7-ea7e-4b9e-bbad-4f35c1567aa2-20200108052736\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test7fac3d04-98a5-4fc4-904e-9ea3b86eadc2-20200106050751\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7fac3d04-98a5-4fc4-904e-9ea3b86eadc2-20200106050751\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test7fe20dd6-9ed9-4126-bb1d-031c01ac4550-20200101114504\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7fe20dd6-9ed9-4126-bb1d-031c01ac4550-20200101114504\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test7ff974d9-c841-4249-b05b-bbf663cb4605-20200106084104\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7ff974d9-c841-4249-b05b-bbf663cb4605-20200106084104\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test815bd4d5-fc24-4a47-be20-063c4809902c-20200109050508\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test815bd4d5-fc24-4a47-be20-063c4809902c-20200109050508\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test817654d0-2109-4d95-9284-8c8a9d960d08-20200108053758\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test817654d0-2109-4d95-9284-8c8a9d960d08-20200108053758\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test821ca3b6-dd05-4e80-b3d8-74ba03b2609b-20191231151151\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test821ca3b6-dd05-4e80-b3d8-74ba03b2609b-20191231151151\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test8285dc3e-637d-4d46-9695-adc39cbe7d2f-20200108144457\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test8285dc3e-637d-4d46-9695-adc39cbe7d2f-20200108144457\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test828aae03-9239-4938-a303-c23c42311878-20200102083419\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test828aae03-9239-4938-a303-c23c42311878-20200102083419\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test84afd814-5098-49ab-af99-e50350b5898b-20200110211134\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test84afd814-5098-49ab-af99-e50350b5898b-20200110211134\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test85b08563-b15f-4202-a0bc-f2bc2df2c71a-20200107053335\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test85b08563-b15f-4202-a0bc-f2bc2df2c71a-20200107053335\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test88aac268-c087-4481-b78e-99b920784a33-20200101084853\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test88aac268-c087-4481-b78e-99b920784a33-20200101084853\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test88dbd442-a8cc-4874-81a0-d3192c61df62-20191001224544\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test88dbd442-a8cc-4874-81a0-d3192c61df62-20191001224544\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test894dfb75-a00f-4f0c-894c-cae1c9846ad3-20200105051803\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test894dfb75-a00f-4f0c-894c-cae1c9846ad3-20200105051803\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test8d09bf4d-ee63-4ab1-a986-a4b802418403-20200111051447\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test8d09bf4d-ee63-4ab1-a986-a4b802418403-20200111051447\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test8d4d652b-4f05-4e99-93dd-78b9a36b5c78-20191003203755\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test8d4d652b-4f05-4e99-93dd-78b9a36b5c78-20191003203755\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test8de64739-43d8-4f84-af65-fdb3d0885288-20200108053543\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test8de64739-43d8-4f84-af65-fdb3d0885288-20200108053543\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test8e324c65-a51d-4eeb-9ec8-d5f8662dc041-20191228165107\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test8e324c65-a51d-4eeb-9ec8-d5f8662dc041-20191228165107\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test8e564580-8e53-4300-85f1-bf7f31dd37ff-20200107013348\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test8e564580-8e53-4300-85f1-bf7f31dd37ff-20200107013348\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test8f458ca7-8898-4d58-b93d-bfb0c3da028c-20200109050310\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test8f458ca7-8898-4d58-b93d-bfb0c3da028c-20200109050310\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test901cd6ca-5565-4552-a3de-d204d01935c0-20200108083706\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test901cd6ca-5565-4552-a3de-d204d01935c0-20200108083706\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test907b39e5-4008-4b55-93a0-18e9697b9cf3-20200108053817\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test907b39e5-4008-4b55-93a0-18e9697b9cf3-20200108053817\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test90c2be7c-d7ec-4abf-9fad-fef90fc3ef4d-20191004022234\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test90c2be7c-d7ec-4abf-9fad-fef90fc3ef4d-20191004022234\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test922db678-6ee8-43d5-86ff-6a86e132d332-20200107085231\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test922db678-6ee8-43d5-86ff-6a86e132d332-20200107085231\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test93b88aec-5277-4b1b-910c-7008e972ce91-20200107013304\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test93b88aec-5277-4b1b-910c-7008e972ce91-20200107013304\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test95a9104b-6cba-42d8-82ff-cc37e5ac44db-20200108081723\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test95a9104b-6cba-42d8-82ff-cc37e5ac44db-20200108081723\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test96da1605-19e0-46eb-9ce0-53e840f5e2cb-20200101111729\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test96da1605-19e0-46eb-9ce0-53e840f5e2cb-20200101111729\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test996066b2-7d29-400f-929b-e343a21046f7-20191231151212\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test996066b2-7d29-400f-929b-e343a21046f7-20191231151212\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test99663fff-ed21-4a91-9687-1a6da2abb033-20200106084508\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test99663fff-ed21-4a91-9687-1a6da2abb033-20200106084508\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test9eb5efa5-c3c1-4c13-80a6-11f5eba67372-20200108144852\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test9eb5efa5-c3c1-4c13-80a6-11f5eba67372-20200108144852\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testa3791896-b1fc-491e-ba0d-aefcd8d9e52a-20200105083503\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testa3791896-b1fc-491e-ba0d-aefcd8d9e52a-20200105083503\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testa37ff709-a078-45a0-8187-41733df8e101-20200109050003\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testa37ff709-a078-45a0-8187-41733df8e101-20200109050003\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testa4c5fe4e-936e-4be1-a612-a331aff54a8c-20200111105055\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testa4c5fe4e-936e-4be1-a612-a331aff54a8c-20200111105055\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testa59bce1d-e32c-423d-a86e-945d4aeb98b4-20200107051821\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testa59bce1d-e32c-423d-a86e-945d4aeb98b4-20200107051821\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testa604c059-8279-4f4d-a354-eec27222a06c-20200111051514\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testa604c059-8279-4f4d-a354-eec27222a06c-20200111051514\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testa71fefb1-0d9c-4fb3-8d3d-5dcd12d72b77-20200103103221\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testa71fefb1-0d9c-4fb3-8d3d-5dcd12d72b77-20200103103221\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testa748013d-c5a6-44f9-88eb-43167207c742-20200111051402\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testa748013d-c5a6-44f9-88eb-43167207c742-20200111051402\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testaab67022-4f2b-420d-a06a-2c4045110cdf-20191229033144\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testaab67022-4f2b-420d-a06a-2c4045110cdf-20191229033144\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testacab9541-280f-4491-9f49-ac57653f0a07-20200105083839\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testacab9541-280f-4491-9f49-ac57653f0a07-20200105083839\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testad298437-0349-4cc7-88a9-d8aabcba9df1-20191002233431\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testad298437-0349-4cc7-88a9-d8aabcba9df1-20191002233431\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testadd68286-f9e0-4ab1-a526-d8f3cf0f054e-20200105084128\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testadd68286-f9e0-4ab1-a526-d8f3cf0f054e-20200105084128\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testade4c52b-18f5-4b67-8e93-945358ce4f7d-20191007234259\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testade4c52b-18f5-4b67-8e93-945358ce4f7d-20191007234259\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testae421c1d-0211-4ef2-b372-564ce8ad484a-20200110104035\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testae421c1d-0211-4ef2-b372-564ce8ad484a-20200110104035\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testafbbd8bf-aec5-48bf-8fea-73fa15ccc315-20191001224727\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testafbbd8bf-aec5-48bf-8fea-73fa15ccc315-20191001224727\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testb15148bf-78d2-42d4-ad08-b3ad8fb4b122-20200101084759\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testb15148bf-78d2-42d4-ad08-b3ad8fb4b122-20200101084759\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testb4237708-3688-40ea-85a2-275c05f4d100-20191228083519\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testb4237708-3688-40ea-85a2-275c05f4d100-20191228083519\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testb799a18f-be45-4c5c-8438-163ac2e1f1e7-20191004190529\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testb799a18f-be45-4c5c-8438-163ac2e1f1e7-20191004190529\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testb7cee88a-e5ac-4af4-99c8-7247020b00c3-20200105051201\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testb7cee88a-e5ac-4af4-99c8-7247020b00c3-20200105051201\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testb7df0d9a-27c0-4ca5-b692-08dd90387b98-20200111083443\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testb7df0d9a-27c0-4ca5-b692-08dd90387b98-20200111083443\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testbbf6bf32-4bd0-4381-b8f7-2658f585df4d-20191003203846\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testbbf6bf32-4bd0-4381-b8f7-2658f585df4d-20191003203846\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testbeea1376-166a-4b1a-8923-c907cc9737d9-20200107013336\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testbeea1376-166a-4b1a-8923-c907cc9737d9-20200107013336\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testbf9154e9-6166-48c2-86fe-1f331be606d7-20200107051823\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testbf9154e9-6166-48c2-86fe-1f331be606d7-20200107051823\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc0d7c3c5-23b8-489c-a5e0-ae87c681b696-20200101083539\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc0d7c3c5-23b8-489c-a5e0-ae87c681b696-20200101083539\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc193f31a-5186-4e93-84f6-0e4ab87b73c1-20200107052937\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc193f31a-5186-4e93-84f6-0e4ab87b73c1-20200107052937\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc1c7e8dc-fa8c-47d9-8305-de6d1451b939-20200101085248\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc1c7e8dc-fa8c-47d9-8305-de6d1451b939-20200101085248\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc1d0c917-e2ae-430c-a2ca-383fb0fda046-20191007235839\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc1d0c917-e2ae-430c-a2ca-383fb0fda046-20191007235839\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc23a3fbb-6e95-4c0d-94fc-c8ab14dddf1c-20191231151117\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc23a3fbb-6e95-4c0d-94fc-c8ab14dddf1c-20191231151117\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc2697630-6247-411a-94b3-c2974ad8cbee-20191007195417\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc2697630-6247-411a-94b3-c2974ad8cbee-20191007195417\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc466b80f-670f-4383-89b8-44e0d509fa20-20191002000516\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc466b80f-670f-4383-89b8-44e0d509fa20-20191002000516\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc5c8d9bd-75fa-4db3-9f34-5d7b7098584c-20191003203851\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc5c8d9bd-75fa-4db3-9f34-5d7b7098584c-20191003203851\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc8b6d14b-a5db-48e0-bfad-a2818d432bea-20200104083443\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc8b6d14b-a5db-48e0-bfad-a2818d432bea-20200104083443\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc933efa8-c553-4b93-884f-b7221d9ca789-20191228083750\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc933efa8-c553-4b93-884f-b7221d9ca789-20191228083750\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testcbe8ab80-46ef-49b1-a7bb-4e3d6e50e49f-20200104050811\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testcbe8ab80-46ef-49b1-a7bb-4e3d6e50e49f-20200104050811\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testccc0b5e6-9b0d-451a-8ac4-6f4af293b913-20200106092645\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testccc0b5e6-9b0d-451a-8ac4-6f4af293b913-20200106092645\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testcec64786-04b1-487c-80ec-050da646fb1c-20191005123412\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testcec64786-04b1-487c-80ec-050da646fb1c-20191005123412\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testd104a52f-eba2-401d-8e7f-a841c90f7712-20191228083553\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testd104a52f-eba2-401d-8e7f-a841c90f7712-20191228083553\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testd724cea4-0d3c-4539-b2ff-be08fb23a67e-20200107083714\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testd724cea4-0d3c-4539-b2ff-be08fb23a67e-20200107083714\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testd8e60bac-27ff-4fba-90b8-732c9c5ff91c-20191228083751\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testd8e60bac-27ff-4fba-90b8-732c9c5ff91c-20191228083751\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testd99db4a5-7683-4584-89ad-fefd711de284-20191004190210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testd99db4a5-7683-4584-89ad-fefd711de284-20191004190210\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testd9b4309a-67bc-4cd8-ac47-094cb20ca6aa-20200101090202\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testd9b4309a-67bc-4cd8-ac47-094cb20ca6aa-20200101090202\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testda3320e0-28f2-4146-a002-e06296362711-20191004190115\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testda3320e0-28f2-4146-a002-e06296362711-20191004190115\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testda714121-3240-4253-90c3-48c43f115c90-20200102083419\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testda714121-3240-4253-90c3-48c43f115c90-20200102083419\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testdb357558-60b4-4ee3-9ec3-ba22c5d827fb-20191004020617\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testdb357558-60b4-4ee3-9ec3-ba22c5d827fb-20191004020617\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testdc7230e9-df6d-4edd-a57c-ef7e0432c463-20191002011345\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testdc7230e9-df6d-4edd-a57c-ef7e0432c463-20191002011345\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testdccb59de-436f-4935-bed6-2e677dcaf36a-20200109111802\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testdccb59de-436f-4935-bed6-2e677dcaf36a-20200109111802\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testde985b23-9333-4f6e-a5e8-82025a38b2af-20200102083510\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testde985b23-9333-4f6e-a5e8-82025a38b2af-20200102083510\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Teste271da3e-cbcb-4ee7-8770-f297f414451f-20191003015540\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Teste271da3e-cbcb-4ee7-8770-f297f414451f-20191003015540\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Teste4070edd-aec0-455d-8a79-aecdb7170b6d-20191007234642\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Teste4070edd-aec0-455d-8a79-aecdb7170b6d-20191007234642\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Teste42f351a-4da0-4f0d-93e9-ef1d98e06659-20200108083633\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Teste42f351a-4da0-4f0d-93e9-ef1d98e06659-20200108083633\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Teste66ca23c-f4bf-4eb3-8418-139364d19e7d-20200107062643\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Teste66ca23c-f4bf-4eb3-8418-139364d19e7d-20200107062643\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Teste78b1ab2-1380-48ab-9923-0276cdb7198b-20191001224742\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Teste78b1ab2-1380-48ab-9923-0276cdb7198b-20191001224742\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Teste8607e14-b4f8-472a-bd5b-893b8d9612e6-20200112045941\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Teste8607e14-b4f8-472a-bd5b-893b8d9612e6-20200112045941\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Teste980b80e-3add-42c0-bc98-a84020b2d128-20200108101640\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Teste980b80e-3add-42c0-bc98-a84020b2d128-20200108101640\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Tested79dba9-2d38-4ea9-a01c-56e94b30ca7a-20191007195447\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Tested79dba9-2d38-4ea9-a01c-56e94b30ca7a-20191007195447\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testee9dcf5f-f7c4-4192-a8f4-28e9bc7d0f7c-20191001225005\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testee9dcf5f-f7c4-4192-a8f4-28e9bc7d0f7c-20191001225005\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testefbb340a-b68b-4200-872b-d05e7d29f92d-20191007195432\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testefbb340a-b68b-4200-872b-d05e7d29f92d-20191007195432\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testf1fc0559-6740-48dd-9501-2b933c731d52-20200103083458\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testf1fc0559-6740-48dd-9501-2b933c731d52-20200103083458\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testf41dfc97-bb51-4fba-86ca-a6f2695c415a-20200107050834\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testf41dfc97-bb51-4fba-86ca-a6f2695c415a-20200107050834\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testf5784447-83ed-4c00-8764-ea0f932aafa2-20200106085748\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testf5784447-83ed-4c00-8764-ea0f932aafa2-20200106085748\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testf6128ef6-c13c-420e-8088-0710888ce88b-20200109050003\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testf6128ef6-c13c-420e-8088-0710888ce88b-20200109050003\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testf863ab2c-ada9-4646-84c7-1f83a82375d7-20191229033226\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testf863ab2c-ada9-4646-84c7-1f83a82375d7-20191229033226\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testfac552a7-418f-4baa-8f51-d199ceff5c68-20200103050817\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testfac552a7-418f-4baa-8f51-d199ceff5c68-20200103050817\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testfb7be054-5c15-494f-822c-b64f9a36e2f3-20200105051753\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testfb7be054-5c15-494f-822c-b64f9a36e2f3-20200105051753\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testfc5c7585-6c9a-4aa4-a7c4-1223a94e00c7-20200104083552\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testfc5c7585-6c9a-4aa4-a7c4-1223a94e00c7-20200104083552\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.FileServer.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.FileServer.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Geneva\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Geneva\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.KeyVault\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.KeyVault\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.KeyVault.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.KeyVault.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.LabServices\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.LabServices\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.LabServices.test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.LabServices.test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.Agent\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.Agent\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.Dev\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.Dev\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.Dev.INT\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.Dev.INT\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.Dev.SCALE\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.Dev.SCALE\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.Dev.TEST\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.Dev.TEST\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.GuestHealth\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.GuestHealth\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.DEV\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.DEV\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.INT\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.INT\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.SCALE\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.SCALE\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.TEST\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.TEST\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.INT.Dev\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.INT.Dev\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.SCALE.Dev\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.SCALE.Dev\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.TEST.Dev\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.TEST.Dev\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.WorkloadInsights.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.WorkloadInsights.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.WorkloadInsightsTest.newnamespace\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.WorkloadInsightsTest.newnamespace\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.Workloads\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.Workloads\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.Workloads.Dev\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.Workloads.Dev\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitoring.DependencyAgent\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitoring.DependencyAgent\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitoring.DependencyAgent.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitoring.DependencyAgent.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Networking.DNS\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Networking.DNS\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Networking.SDN\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Networking.SDN\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.NetworkWatcher\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.NetworkWatcher\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.NetworkWatcher.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.NetworkWatcher.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.OpenSSH\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.OpenSSH\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Performance.Diagnostics\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Performance.Diagnostics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Performance.Diagnostics.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Performance.Diagnostics.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.RecoveryServices\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.RecoveryServices.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices.SiteRecovery\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.RecoveryServices.SiteRecovery\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices.SiteRecovery2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.RecoveryServices.SiteRecovery2\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices.WorkloadBackup\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.RecoveryServices.WorkloadBackup\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices.WorkloadBackup.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.RecoveryServices.WorkloadBackup.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.AntimalwareSignature\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.AntimalwareSignature\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.AntimalwareSignature.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.AntimalwareSignature.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.Dsms\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.Dsms\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.Dsms.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.Dsms.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.LinuxAttestation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.LinuxAttestation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.LinuxTestAttestation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.LinuxTestAttestation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.Monitoring\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.Monitoring\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.Monitoring.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.Monitoring.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.Monitoring.Testing\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.Monitoring.Testing\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.TestWindowsAttestation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.TestWindowsAttestation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.WindowsAttestation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.WindowsAttestation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.WinTestAttestation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.WinTestAttestation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Sentinel.DnsExtension.Dev\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Sentinel.DnsExtension.Dev\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.ServiceFabric.MC\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.ServiceFabric.MC\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.ServiceFabric.MC.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.ServiceFabric.MC.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.SiteRecovery.Stage\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.SiteRecovery.Stage\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.SiteRecovery.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.SiteRecovery.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.SiteRecovery2.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.SiteRecovery2.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Test.Identity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Test.Identity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WindowsFabric.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WindowsFabric.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.ReleasePipeTest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.ReleasePipeTest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.ReleasePipeTest.INT\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.ReleasePipeTest.INT\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.ReleasePipeTest.TEST\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.ReleasePipeTest.TEST\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test2\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test3\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test3\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test4\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test4\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test5\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test5\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test5.INT\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test5.INT\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test5.TEST\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test5.TEST\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.VincentTest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.VincentTest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.VincentTest2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.VincentTest2\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.VincentTest3\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.VincentTest3\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.VincentTest4\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.VincentTest4\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.TestTest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.TestTest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.TestTest.INT\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.TestTest.INT\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.TestTest.TEST\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.TestTest.TEST\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Windows.ReleasePipeTest.INT\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Windows.ReleasePipeTest.INT\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Windows.ReleasePipeTest.TEST\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Windows.ReleasePipeTest.TEST\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoring\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoring.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoringTest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoringTest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureData\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureData\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureData.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureData.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.Canary\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights.Canary\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.Corp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights.Corp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.Linux.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights.Linux.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.LinuxTest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights.LinuxTest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.Meya0206\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights.Meya0206\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.MeyaCorp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights.MeyaCorp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.Testing\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights.Testing\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureSecurity.JITAccess\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureSecurity.JITAccess\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.CloudBackup.Workload.Extension\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.CloudBackup.Workload.Extension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.CloudBackup.Workload.Extension.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.CloudBackup.Workload.Extension.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Compute\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Compute.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Compute.TestSar\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute.TestSar\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.CPlat.Core\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.CPlat.Core\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.CPlat.Core.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.CPlat.Core.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Dcsswe.Extensions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Dcsswe.Extensions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.EnterpriseCloud.Monitoring\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.EnterpriseCloud.Monitoring.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.EnterpriseCloud.Monitoring.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Golive.Extensions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Golive.Extensions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.GuestConfig.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.GuestConfig.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.GuestConfiguration\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.GuestConfiguration\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.GuestConfiguration.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.GuestConfiguration.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.GuestConfiguration.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.GuestConfiguration.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.HpcCompute\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.HpcCompute\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.HpcCompute.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.HpcCompute.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.HpcPack\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.HpcPack\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Interceptor\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Interceptor\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.M365\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.M365\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.M365SecurityConfiguration.Kevlar.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.M365SecurityConfiguration.Kevlar.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.ManagedIdentity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.ManagedIdentity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.ManagedServices\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.ManagedServices\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.ManagedServices.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.ManagedServices.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.MonitoringAgent.Extension\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.MonitoringAgent.Extension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Network\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Network\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.OSTCExtensions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.OSTCExtensions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.OSTCExtensions.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.OSTCExtensions.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.OSTCExtensions.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.OSTCExtensions.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.OSTCExtensions.Testing\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.OSTCExtensions.Testing\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Powershell\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Powershell\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Powershell.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Powershell.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Powershell.Test01\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Powershell.Test01\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.SecurityManagement.Kevlar\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.SecurityManagement.Kevlar\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Sentinel.AzureMonitorAgentExtensions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Sentinel.AzureMonitorAgentExtensions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.SoftwareUpdateManagement\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.SoftwareUpdateManagement\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.SoftwareUpdateManagement.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.SoftwareUpdateManagement.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.SqlServer.Managability.IaaS.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.SqlServer.Managability.IaaS.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.SqlServer.Management\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.SqlServer.Management\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.SqlServer.Management.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.SqlServer.Management.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.SystemCenter\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.SystemCenter\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.SystemCenter.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.SystemCenter.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Test.Azure.Workloads\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Test.Azure.Workloads\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.TestSqlServer.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.TestSqlServer.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.ETWTraceListenerService\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.Azure.ETWTraceListenerService\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.RemoteDebug\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.Azure.RemoteDebug\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.RemoteDebug.Json\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.Azure.RemoteDebug.Json\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.ServiceProfiler\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.ServiceProfiler\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.Services\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.Services\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.WindowsAzure.DevTest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.WindowsAzure.DevTest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.WindowsAzure.DevTest.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.WindowsAzure.DevTest.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.WindowsAzure.RemoteDebug\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.WindowsAzure.RemoteDebug\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.WindowsAzure.Test.RemoteDebug\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.WindowsAzure.Test.RemoteDebug\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Windows.Azure.Extensions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Windows.Azure.Extensions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Windows.AzureRemoteApp.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Windows.AzureRemoteApp.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Windows.RemoteDesktop\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Windows.RemoteDesktop\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.WindowsAdminCenter\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.WindowsAdminCenter\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.WindowsAdminCenter.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.WindowsAdminCenter.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.WindowsAzure.Compute\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.WindowsAzure.Compute\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.WindowsAzure.Compute.test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.WindowsAzure.Compute.test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.WVD\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.WVD\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoftagciuk\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoftagciuk\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoftazurecituswarp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoftazurecituswarp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftAzureSiteRecovery\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftAzureSiteRecovery\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftBizTalkServer\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftBizTalkServer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftCBLMariner\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftCBLMariner\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoftcmotest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoftcmotest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoftcorporation1602274591143\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoftcorporation1602274591143\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoftcorporation1620407702632\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoftcorporation1620407702632\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftDynamicsAX\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftDynamicsAX\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftDynamicsGP\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftDynamicsGP\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftDynamicsNAV\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftDynamicsNAV\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoftfarmbeats\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoftfarmbeats\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftHybridCloudStorage\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftHybridCloudStorage\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftOSTC\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftOSTC\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftPowerBI\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftPowerBI\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftRServer\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftRServer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftSharePoint\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftSharePoint\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftSQLServer\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftSQLServer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftTestLinuxPPS\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftTestLinuxPPS\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftVisualStudio\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftVisualStudio\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftWindowsDesktop\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsDesktop\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftWindowsServer\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsServer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftWindowsServerHPCPack\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsServerHPCPack\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft_iot_edge\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft_iot_edge\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft_javaeeonazure_test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft_javaeeonazure_test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microstrategy\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microstrategy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"midasolutions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/midasolutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"middleware\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/middleware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"midfin\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/midfin\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"midvision\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/midvision\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mihupcommunicationspvtltd1599046998010\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mihupcommunicationspvtltd1599046998010\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mindcti\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mindcti\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"minio\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/minio\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"miraclelinux\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/miraclelinux\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"miracl_linux\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/miracl_linux\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"miri-infotech-pvt-ltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/miri-infotech-pvt-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mistio1601460379393\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mistio1601460379393\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mobilab\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mobilab\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"modern-systems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/modern-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"modexblockchaindatabase\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/modexblockchaindatabase\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"monetdbsolutions1611751313758\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/monetdbsolutions1611751313758\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"monitorapp1579029852605\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/monitorapp1579029852605\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"monitorcomputersystemsltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/monitorcomputersystemsltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"moogsoft\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/moogsoft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"morpheus-data\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/morpheus-data\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"moviemasher\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/moviemasher\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mriisoftllc1579457820427\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mriisoftllc1579457820427\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"msopentech\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/msopentech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mtnfog\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mtnfog\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"multisoft-ab\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/multisoft-ab\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mvp-systems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mvp-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mwg_azure\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mwg_azure\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mxhero\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mxhero\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"my-com\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/my-com\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"myarchinc1614657280935\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/myarchinc1614657280935\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"narrativescience\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/narrativescience\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nasuni\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nasuni\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nasunicorporation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nasunicorporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"navicloudrsoftwarepteltd1601967280369\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/navicloudrsoftwarepteltd1601967280369\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ncache\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ncache\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ncbi\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ncbi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ncomputingglobalinc1604353053068\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ncomputingglobalinc1604353053068\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ndl\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ndl\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nebbiolo-technologies-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nebbiolo-technologies-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nec-technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nec-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nefelinetworks1591201080882\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nefelinetworks1591201080882\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"neo4j\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/neo4j\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"neos\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/neos\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"neowaybusinesssolutions-4956350\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/neowaybusinesssolutions-4956350\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netapp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netapp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netatwork\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netatwork\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netfoundryinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netfoundryinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netgate\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netgate\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netikus-net-ltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netikus-net-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netiq\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netiq\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netka\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netka\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netmail\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netmail\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netscout\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netscout\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netspi\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netspi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netsweeper\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netsweeper\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"networksexchangetechnologyltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/networksexchangetechnologyltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netwrix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netwrix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netx\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netx\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"neusoft-neteye\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/neusoft-neteye\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"newnetcommunicationtechnologies1589991852134\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/newnetcommunicationtechnologies1589991852134\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"NewRelic.Infrastructure.Extensions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/NewRelic.Infrastructure.Extensions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"newtglobalconsultingllc1581492268566\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/newtglobalconsultingllc1581492268566\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nextronic-5290868\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nextronic-5290868\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nginxinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nginxinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nice-it-management-solutions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nice-it-management-solutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nicepeopleatwork\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nicepeopleatwork\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nilespartnersinc1617691698386\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nilespartnersinc1617691698386\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"niolabs-5229713\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/niolabs-5229713\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nirvatosoftwarepvtltd1601368706606\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nirvatosoftwarepvtltd1601368706606\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nodejsapi\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nodejsapi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"noianetworklimited1584098036197\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/noianetworklimited1584098036197\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nokiaofamericacorporation1591716055441\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nokiaofamericacorporation1591716055441\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"noobaa\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/noobaa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"norcominformationtechnologygmbhcokgaa\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/norcominformationtechnologygmbhcokgaa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"noricumcloudsolutions1600524477681\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/noricumcloudsolutions1600524477681\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"norsync\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/norsync\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"northbridge-secure\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/northbridge-secure\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nozominetworks1582208017986\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nozominetworks1582208017986\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nri\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nri\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ntegralinc1586961136942\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ntegralinc1586961136942\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ntt-data-intellilink-corporation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ntt-data-intellilink-corporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nttdata\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nttdata\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nttltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nttltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nuco-networks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nuco-networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"numbersbelieve\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/numbersbelieve\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"numtrallcpublisher\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/numtrallcpublisher\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nuxeo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nuxeo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nvidia\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nvidia\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"o2mc-real-time-data-platform\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/o2mc-real-time-data-platform\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"objectivity-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/objectivity-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"objectivity1595351622261\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/objectivity1595351622261\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"oceanblue-cloud\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/oceanblue-cloud\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"OctopusDeploy.Tentacle\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/OctopusDeploy.Tentacle\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"odix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/odix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"odysseuscomputationalsolutions1630242118741\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/odysseuscomputationalsolutions1630242118741\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"odysseyconsultantsltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/odysseyconsultantsltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"officeatwork-ag\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/officeatwork-ag\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"omega-software\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/omega-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"onapsis\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/onapsis\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"oncore_cloud_services-4944214\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/oncore_cloud_services-4944214\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"onexgroup\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/onexgroup\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"onspecta\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/onspecta\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ontology\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ontology\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"onyx-point-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/onyx-point-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"op5\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/op5\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"open-connect-systems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/open-connect-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"opencell\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/opencell\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"openlinkswcom-pago\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/openlinkswcom-pago\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"OpenLogic\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/OpenLogic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"openrefactoryinc1620140917523\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/openrefactoryinc1620140917523\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"openshotstudiosllc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/openshotstudiosllc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"opentext\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/opentext\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"openvpn\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/openvpn\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"opslogix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/opslogix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"opswatinc1619007967290\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/opswatinc1619007967290\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"optimitiveslu1618320281443\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/optimitiveslu1618320281443\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"option3\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/option3\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Oracle\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Oracle\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"oraylis\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/oraylis\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"oraylisbi\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/oraylisbi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"orbs-network\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/orbs-network\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"oriana\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/oriana\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"orientdb\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/orientdb\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"oroinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/oroinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"osirium-ltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/osirium-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"osisoft\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/osisoft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"osnexus\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/osnexus\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"outpost24\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/outpost24\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"outsystems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/outsystems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ovaledge1618392232783\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ovaledge1618392232783\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pachyderminc1585170006545\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pachyderminc1585170006545\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pacteratechnologiesinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pacteratechnologiesinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"paladionnetworkspvtltd1606120508449\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/paladionnetworkspvtltd1606120508449\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"paloaltonetworks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/paloaltonetworks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"panopta\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/panopta\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"panorama-necto\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/panorama-necto\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"panzura-file-system\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/panzura-file-system\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"parabole\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/parabole\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"paralaxiomtechnologiesprivatelimited1596433357886\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/paralaxiomtechnologiesprivatelimited1596433357886\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"parallels\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/parallels\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"parasoft\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/parasoft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"parkersoftwarelimited1609786657569\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/parkersoftwarelimited1609786657569\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"parsec-for-teams\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/parsec-for-teams\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pasifikciptamandiri\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pasifikciptamandiri\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"passlogy\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/passlogy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"paxata\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/paxata\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pcman\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pcman\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"peer-software-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/peer-software-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"penta-security-systems-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/penta-security-systems-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"percona\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/percona\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"perforce\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/perforce\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"periscope-tech-4791746\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/periscope-tech-4791746\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"piolinkinc1582849368309\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/piolinkinc1582849368309\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pivotal\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pivotal\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pixitmedia1591611150480\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pixitmedia1591611150480\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"plesk\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/plesk\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pmsoftwareinternational1603102514882\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pmsoftwareinternational1603102514882\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pnop\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pnop\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"polarityioinc1628691850891\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/polarityioinc1628691850891\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"portalarchitects\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/portalarchitects\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"portsysinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/portsysinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"postgres-pro\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/postgres-pro\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"powerbireach\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/powerbireach\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"prakshepprivatelimited1619949827900\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/prakshepprivatelimited1619949827900\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"prestashop\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/prestashop\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"prestige_informatique-1090178\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/prestige_informatique-1090178\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"prime-strategy\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/prime-strategy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"primekey\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/primekey\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"primestrategynewyorkinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/primestrategynewyorkinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pro-vision\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pro-vision\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"process-one\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/process-one\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"processgold\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/processgold\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"procomputers\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/procomputers\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"procomputerssrl1594239153814\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/procomputerssrl1594239153814\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"profecia\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/profecia\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Profiler.AgentOrchestrationRefactor.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Profiler.AgentOrchestrationRefactor.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Profiler.Master.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Profiler.Master.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"profisee\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/profisee\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"progelspa\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/progelspa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"progresssoftwarecorporation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/progresssoftwarecorporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"proliongmbh1628175060372\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/proliongmbh1628175060372\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"protegrityusainc1627404648458\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/protegrityusainc1627404648458\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"protiviti\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/protiviti\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"proventeq\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/proventeq\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ptc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ptc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ptsecurity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ptsecurity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pulse-secure\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pulse-secure\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pulsesecuretechnologies1638179500151\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pulsesecuretechnologies1638179500151\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"puppet\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/puppet\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"puppeteersoy1601024480557\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/puppeteersoy1601024480557\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"PuppetLabs\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/PuppetLabs\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"PuppetLabs.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/PuppetLabs.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"purestorageinc1578960262525\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/purestorageinc1578960262525\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pydio\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pydio\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pyramidanalytics\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pyramidanalytics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"qlik\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/qlik\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"qnapsystemsinc1601352084032\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/qnapsystemsinc1601352084032\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"qore-technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/qore-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"qs-solutions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/qs-solutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Qualys\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Qualys\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Qualys.LinuxAgent.GrayLabel\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Qualys.LinuxAgent.GrayLabel\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Qualys.WindowsAgent.GrayLabel\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Qualys.WindowsAgent.GrayLabel\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"qualysguard\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/qualysguard\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"quasardb\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/quasardb\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"qubole-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/qubole-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"quest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/quest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"racknap\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/racknap\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rackwareinc1619403669255\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rackwareinc1619403669255\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"radiant-logic\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/radiant-logic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"radware\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/radware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"raincode\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/raincode\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rancher\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rancher\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rapid7\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rapid7\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Rapid7.InsightPlatform\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Rapid7.InsightPlatform\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rapidminer\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rapidminer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"raynetgmbh\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/raynetgmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"readymind\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/readymind\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"realm\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/realm\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"reblaze\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/reblaze\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"RedHat\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/RedHat\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"redhat-rhel\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/redhat-rhel\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"redpoint-global\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/redpoint-global\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"refactr\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/refactr\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"refinitiv\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/refinitiv\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"refinitiv-4807503\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/refinitiv-4807503\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"relevance-lab\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/relevance-lab\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"remotelearner\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/remotelearner\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"res\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/res\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"resco\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/resco\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"resemblesystems1582780358300\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/resemblesystems1582780358300\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"responder-corp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/responder-corp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"revolution-analytics\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/revolution-analytics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rhcsolutions1586957910818\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rhcsolutions1586957910818\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ribboncommunications\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ribboncommunications\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"RightScaleLinux\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/RightScaleLinux\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"RightScaleWindowsServer\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/RightScaleWindowsServer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rimo3\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rimo3\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ringsoftwareresearchanddevelopmentinc1578946072257\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ringsoftwareresearchanddevelopmentinc1578946072257\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"riverbed\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/riverbed\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"RiverbedTechnology\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/RiverbedTechnology\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rmgtechnologiesinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rmgtechnologiesinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rocketml\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rocketml\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rocketsoftware\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rocketsoftware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rohdeschwarzcybersecuritygmbh\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rohdeschwarzcybersecuritygmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rohdeschwarzcybersecuritysas\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rohdeschwarzcybersecuritysas\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"roktech\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/roktech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rsa-security-llc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rsa-security-llc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rsk-labs\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rsk-labs\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rstudio-5237862\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rstudio-5237862\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rtts\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rtts\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rubrik-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rubrik-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"runecastsolutionslimited1614186396822\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/runecastsolutionslimited1614186396822\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"s2ix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/s2ix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"saama\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/saama\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"saasame-limited\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/saasame-limited\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"safesoftwareinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/safesoftwareinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"safeticatechnologiessro\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/safeticatechnologiessro\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"safetica_technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/safetica_technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"safetoopen1585013318137\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/safetoopen1585013318137\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"saltsecurity1583264186232\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/saltsecurity1583264186232\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"saltsecurity1583264669848\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/saltsecurity1583264669848\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"saltstack\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/saltstack\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"samsung-sds\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/samsung-sds\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"samsungelectronics1632860607983\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/samsungelectronics1632860607983\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"samsungsds-cello\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/samsungsds-cello\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"samsungsds_sdbe\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/samsungsds_sdbe\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sandhatatechnologieslimited1615753438737\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sandhatatechnologieslimited1615753438737\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sap\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sap\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sapphiretechnologieslimited1611758579346\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sapphiretechnologieslimited1611758579346\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sas-institute-560503\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sas-institute-560503\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"scaidata\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/scaidata\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"scalearc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/scalearc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"scalegrid\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/scalegrid\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"scality\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/scality\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"schrockeninc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/schrockeninc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sci\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sci\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sciencelogicinc1622565452194\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sciencelogicinc1622565452194\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"scientiamobile\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/scientiamobile\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"scontainug1595751515785\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/scontainug1595751515785\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"scubaanalytics\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/scubaanalytics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"scylladb1631195365807\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/scylladb1631195365807\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"seaqserviciossas1579029207572\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/seaqserviciossas1579029207572\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"searchbloxsoftwareinc1594309037050\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/searchbloxsoftwareinc1594309037050\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"secureworks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/secureworks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"securityonionsolutions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/securityonionsolutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"securityonionsolutionsllc1624649205155\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/securityonionsolutionsllc1624649205155\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"securosis\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/securosis\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"seequentltd1585781751395\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/seequentltd1585781751395\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"semarchy\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/semarchy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"semperis\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/semperis\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"senhasegura\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/senhasegura\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"SentinelOne.LinuxExtension\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/SentinelOne.LinuxExtension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"SentinelOne.WindowsExtension\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/SentinelOne.WindowsExtension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"SentinelOne.WindowsExtension.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/SentinelOne.WindowsExtension.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sentriumsl\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sentriumsl\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sentryone\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sentryone\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sepiosystems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sepiosystems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"seppmailag\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/seppmailag\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"seraumo1620002807288\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/seraumo1620002807288\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"service-control-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/service-control-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sesamesoftwareinc1622125191447\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sesamesoftwareinc1622125191447\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"shadow-soft\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/shadow-soft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"shareshiftneeraj.test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/shareshiftneeraj.test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sightapps\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sightapps\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"signal-sciences\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/signal-sciences\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"silk\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/silk\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"silver-peak-systems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/silver-peak-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"simmachinesinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/simmachinesinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"simontelephonics\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/simontelephonics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"simpledatalabsinc1635791235920\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/simpledatalabsinc1635791235920\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"simplifierag\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/simplifierag\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"simpligov\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/simpligov\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sinefa\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sinefa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sinequa\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sinequa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sinequa1588262295885\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sinequa1588262295885\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"singapore-telecommunications-limited\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/singapore-telecommunications-limited\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sios_datakeeper\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sios_datakeeper\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"siportalinc1581539156321\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/siportalinc1581539156321\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sisenseltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sisenseltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Site24x7\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Site24x7\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sktelecom\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sktelecom\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"skyarc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/skyarc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"skyboxsecurity1585187406404\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/skyboxsecurity1585187406404\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"skylarkcloud\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/skylarkcloud\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"smartbearsoftware\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/smartbearsoftware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"smartmessage-autoflow\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/smartmessage-autoflow\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"snaplogic\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/snaplogic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"snapt-adc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/snapt-adc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"snips\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/snips\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"soasta\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/soasta\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"softnas\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/softnas\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"softwarecentralas1642687699196\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/softwarecentralas1642687699196\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"softwarehut\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/softwarehut\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"softwebsolutions-4518310\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/softwebsolutions-4518310\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"soha\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/soha\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"solanolabs\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/solanolabs\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"solar-security\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/solar-security\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"solarwinds\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/solarwinds\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"solvedevops1643693563360\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/solvedevops1643693563360\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sonicwall-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sonicwall-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sophos\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sophos\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sourcegearllc1616101262784\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sourcegearllc1616101262784\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"south-river-technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/south-river-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"southrivertech1586314123192\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/southrivertech1586314123192\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"spacecurve\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/spacecurve\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"spaceliftinc1625499025476\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/spaceliftinc1625499025476\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"spagobi\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/spagobi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sparklinglogic\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sparklinglogic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"spectralcorelimited1619779004178\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/spectralcorelimited1619779004178\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"spektra\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/spektra\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sphere3d\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sphere3d\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"spideroakinc1588278690933\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/spideroakinc1588278690933\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"spirentcommunications1594084187199\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/spirentcommunications1594084187199\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"splunk\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/splunk\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sproutenetworks1593456311717\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sproutenetworks1593456311717\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sqlstream\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sqlstream\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"squadratechnologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/squadratechnologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"squaredup\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/squaredup\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"src-solution\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/src-solution\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stackato-platform-as-a-service\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stackato-platform-as-a-service\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Stackify.LinuxAgent.Extension\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Stackify.LinuxAgent.Extension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stackstorm\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stackstorm\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"startekfingerprintmatch\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/startekfingerprintmatch\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"startisolucoesemtecnologialtda1635263523201\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/startisolucoesemtecnologialtda1635263523201\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"starwind\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/starwind\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"StatusMonitor2.Diagnostics.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/StatusMonitor2.Diagnostics.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"StatusReport.Diagnostics.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/StatusReport.Diagnostics.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stealthbits\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stealthbits\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"steelhive\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/steelhive\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stonebondtechnologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stonebondtechnologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stonefly\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stonefly\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"storage_made_easy\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/storage_made_easy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stormshield\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stormshield\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"storone1594045543980\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/storone1594045543980\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"storreduce\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/storreduce\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"storwarespzoo1611743234900\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/storwarespzoo1611743234900\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"strangebee1595948424730\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/strangebee1595948424730\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"strataidentity1608323708170\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/strataidentity1608323708170\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stratis-group-ltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stratis-group-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stratodesk1611152769936\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stratodesk1611152769936\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stratumn\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stratumn\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"streamsets\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/streamsets\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"striim\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/striim\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stromasys\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stromasys\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"strongboxitllc1594816423884\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/strongboxitllc1594816423884\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"su\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/su\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"subscription.test.krsh\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/subscription.test.krsh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sumologic\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sumologic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sunatogmbh\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sunatogmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sunday\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sunday\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"SUSE\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/SUSE\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"swoopanalytics\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/swoopanalytics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sycom-technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sycom-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sycompatechnologycompanyinc1588192103892\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sycompatechnologycompanyinc1588192103892\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.CloudWorkloadProtection\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.CloudWorkloadProtection\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.CloudWorkloadProtection.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.CloudWorkloadProtection.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.CloudWorkloadProtection.TestOnStage\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.CloudWorkloadProtection.TestOnStage\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.QA\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.QA\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.staging\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.staging\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.test.ru2.latest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.test.ru2.latest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.test.ru2final\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.test.ru2final\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.test.ru2latest1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.test.ru2latest1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.test.ru4mp1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.test.ru4mp1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.test.ru4mp1.latest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.test.ru4mp1.latest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.test.ru4mp1final\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.test.ru4mp1final\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"symanteccorporation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/symanteccorporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"symantectest1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/symantectest1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"synack-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/synack-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"syncfusion\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/syncfusion\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"syncfusionbigdataplatfor\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/syncfusionbigdataplatfor\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"synechron-technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/synechron-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"synergixinc1585256339250\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/synergixinc1585256339250\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"synnexcorp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/synnexcorp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"syscomcomputerengineeringco1583913200141\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/syscomcomputerengineeringco1583913200141\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"syte\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/syte\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tableau\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tableau\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tactic\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tactic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"talari-networks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/talari-networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"talena-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/talena-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"talend\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/talend\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"talon\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/talon\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tamrinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tamrinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"targit\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/targit\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tata_communications\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tata_communications\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tavanttechnologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tavanttechnologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tavendo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tavendo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"te-systems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/te-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"techdivision\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/techdivision\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"techlatest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/techlatest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"technicheltd1606969724100\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/technicheltd1606969724100\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tecknolab\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tecknolab\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"telepat\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/telepat\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"teloscorporation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/teloscorporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tempered-networks-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tempered-networks-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tenable\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tenable\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tensormakecorpdbaoneclickai1608247756082\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tensormakecorpdbaoneclickai1608247756082\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"teradata\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/teradata\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Teradici\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Teradici\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"teramindinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/teramindinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.Gemalto.SafeNet.ProtectV\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.Gemalto.SafeNet.ProtectV\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.Gemalto.SafeNet.ProtectV.Azure\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.Gemalto.SafeNet.ProtectV.Azure\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.HP.AppDefender\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.HP.AppDefender\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.Microsoft.VisualStudio.Services\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.Microsoft.VisualStudio.Services\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.NJHP.AppDefender\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.NJHP.AppDefender\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.SqlServer.Managability\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.SqlServer.Managability\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.SqlServer.Management\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.SqlServer.Management\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.SqlServer.Management.corext\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.SqlServer.Management.corext\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test1.NJHP.AppDefender\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test1.NJHP.AppDefender\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test3.Microsoft.VisualStudio.Services\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test3.Microsoft.VisualStudio.Services\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"testable1603721901088\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/testable1603721901088\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"testpro\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/testpro\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"test_test_mix3pptest0011614206850774\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/test_test_mix3pptest0011614206850774\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"test_test_mneela1628617140187\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/test_test_mneela1628617140187\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"test_test_pmc2pc1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/test_test_pmc2pc1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thales-vormetric\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thales-vormetric\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thalesdiscplusainc1596561677238\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thalesdiscplusainc1596561677238\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thedatavaluefactoryltd1589348815922\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thedatavaluefactoryltd1589348815922\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thefreebsdfoundation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thefreebsdfoundation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thehdfgroup1616725197741\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thehdfgroup1616725197741\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"theumag1596442827072\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/theumag1596442827072\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"things-board\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/things-board\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thingscareinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thingscareinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thinprintgmbh\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thinprintgmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thorntechnologiesllc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thorntechnologiesllc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thoughtspot-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thoughtspot-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"threatintelligenceptyltd1586824172898\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/threatintelligenceptyltd1586824172898\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tibco-software\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tibco-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tidal-migrations\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tidal-migrations\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tidalmediainc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tidalmediainc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tig\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tig\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tiger-technology\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tiger-technology\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tigergraph\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tigergraph\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"timextender\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/timextender\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tmaxsoft\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tmaxsoft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tmaxsoft1608612658335\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tmaxsoft1608612658335\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tomsawyersoftwarecorp1613579206342\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tomsawyersoftwarecorp1613579206342\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"topicus\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/topicus\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"torusware\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/torusware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"totemo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/totemo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"townsend-security\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/townsend-security\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"transcendinformationinc1609918445926\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/transcendinformationinc1609918445926\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"transientxinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/transientxinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"transvault\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/transvault\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"trendmicro\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/trendmicro\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"TrendMicro.DeepSecurity.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/TrendMicro.DeepSecurity.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"TrendMicro.PortalProtect\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/TrendMicro.PortalProtect\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tresorit\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tresorit\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"trifacta\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/trifacta\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tripleblindinc1615730179432\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tripleblindinc1615730179432\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tripwire-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tripwire-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"truata1612259728221\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/truata1612259728221\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"truestack\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/truestack\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tryonsolutionsinc1596650621083\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tryonsolutionsinc1596650621083\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tsa-public-service\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tsa-public-service\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tunnelbiz\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tunnelbiz\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"turbonet\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/turbonet\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"turbonet1581982683964\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/turbonet1581982683964\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"twistlock\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/twistlock\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"typesafe\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/typesafe\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ubeeko\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ubeeko\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ubercloud\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ubercloud\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"uipath-5054924\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/uipath-5054924\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ulex\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ulex\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"unifi-software\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/unifi-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"unifiedstreaming1598872291606\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/unifiedstreaming1598872291606\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"uniprint-net\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/uniprint-net\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"unitrends\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/unitrends\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"unnisoft\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/unnisoft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"unravel-data\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/unravel-data\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"unscramblsingaporepteltd-4999260\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/unscramblsingaporepteltd-4999260\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"untangle\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/untangle\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"upsolver1594188634150\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/upsolver1594188634150\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"usp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/usp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"valohai\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/valohai\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"valtix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/valtix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"varmournetworks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/varmournetworks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"varnish\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/varnish\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vatacommunicationsinc1581644208717\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vatacommunicationsinc1581644208717\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vaultive-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vaultive-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vbot\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vbot\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vcinityinc1587684340545\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vcinityinc1587684340545\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vectraaiinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vectraaiinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"veeam\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/veeam\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"velocitydb-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/velocitydb-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"velocloud\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/velocloud\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vembutechnologiespvtltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vembutechnologiespvtltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vemn\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vemn\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"veritas\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/veritas\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"versanetworks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/versanetworks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"versasec\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/versasec\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vidispine\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vidispine\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vidizmo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vidizmo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vigyanlabs-innovations-pvt-ltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vigyanlabs-innovations-pvt-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vigyanlabsinc1581413676614\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vigyanlabsinc1581413676614\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"viptela\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/viptela\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vircom\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vircom\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"virtamovecorp1615909247913\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/virtamovecorp1615909247913\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"virtualpulsesro1607008728942\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/virtualpulsesro1607008728942\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"virtuozzointernationalgmbh1626704951469\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/virtuozzointernationalgmbh1626704951469\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"visualknowledgeshare1591795776234\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/visualknowledgeshare1591795776234\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"visualsoft-center\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/visualsoft-center\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vizixiotplatformretail001\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vizixiotplatformretail001\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vmlabinc1613642184700\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vmlabinc1613642184700\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vmturbo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vmturbo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vmware-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vmware-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vnomicinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vnomicinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"voiceelements\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/voiceelements\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"voleatechgmbh1636966911943\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/voleatechgmbh1636966911943\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"volterraedgeservices\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/volterraedgeservices\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Vormetric\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Vormetric\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vscconsultingptyltd1608535888097\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vscconsultingptyltd1608535888097\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vte\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vte\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vu-llc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vu-llc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vyulabsinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vyulabsinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"WAD2AI.Diagnostics.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/WAD2AI.Diagnostics.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"WAD2EventHub.Diagnostics.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/WAD2EventHub.Diagnostics.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wallarm\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wallarm\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wallix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wallix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wandisco\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wandisco\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wanos\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wanos\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wanpath-dba-myworkdrive\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wanpath-dba-myworkdrive\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wardy-it-solutions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wardy-it-solutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"warewolf-esb\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/warewolf-esb\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"watchguard-technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/watchguard-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"webaloinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/webaloinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"websense-apmailpe\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/websense-apmailpe\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"websoft9inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/websoft9inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wedoitllc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wedoitllc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"westernoceansoftwaresprivatelimited\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/westernoceansoftwaresprivatelimited\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wherescapesoftware\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wherescapesoftware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"winmagic_securedoc_cloudvm\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/winmagic_securedoc_cloudvm\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wintellisys-inc-4561600\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wintellisys-inc-4561600\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"witfooinc1590167223060\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/witfooinc1590167223060\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wmspanel\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wmspanel\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wood1595864497589\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wood1595864497589\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"workshare-technology\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/workshare-technology\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"world-programming\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/world-programming\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"worxogo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/worxogo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wowza\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wowza\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"xcontentptyltd-1329748\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/xcontentptyltd-1329748\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"xendata-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/xendata-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"xfinityinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/xfinityinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"xilinx\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/xilinx\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"xoriantcorporationazxteam1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/xoriantcorporationazxteam1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"xoriantsolutionspvtltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/xoriantsolutionspvtltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"xtremedata\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/xtremedata\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"xyzrd-group-ou\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/xyzrd-group-ou\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"yellowfin\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/yellowfin\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"yellowfininternationalptyltd1616363974066\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/yellowfininternationalptyltd1616363974066\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"yokogawarentalleasecorporation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/yokogawarentalleasecorporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"your-shop-online\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/your-shop-online\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"z1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/z1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"z4it-aps\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/z4it-aps\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zabbix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zabbix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zend\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zend\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zenterasystemsinc1605292453288\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zenterasystemsinc1605292453288\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zerodown_software\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zerodown_software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zerto\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zerto\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zettalane_systems-5254599\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zettalane_systems-5254599\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zevenet\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zevenet\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zilliz\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zilliz\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zoomdata\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zoomdata\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zscaler\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zscaler\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zscaler1579058425289\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zscaler1579058425289\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zultysinc1596831546163\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zultysinc1596831546163\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"128technology\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/128technology\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1580863854728\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1580863854728\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1583411303229\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1583411303229\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1583465680865\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1583465680865\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1585118004523\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1585118004523\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1592878437854\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1592878437854\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1597644262255\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1597644262255\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1598955805825\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1598955805825\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1601633765871\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1601633765871\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1602067018799\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1602067018799\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1604579683207\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1604579683207\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1615257339685\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1615257339685\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1615278064010\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1615278064010\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1615455873642\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1615455873642\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1624590941808\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1624590941808\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1640334196980\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1640334196980\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1e\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1e\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"2021ai\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/2021ai\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"247commercelimited1611063941652\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/247commercelimited1611063941652\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"3cx-pbx\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/3cx-pbx\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"42crunch1580391915541\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/42crunch1580391915541\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"4psa\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/4psa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"5nine-software-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/5nine-software-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"6124903\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/6124903\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"7isolutions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/7isolutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"a10networks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/a10networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"a10networks1596136698788\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/a10networks1596136698788\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"abiquo\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/abiquo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"abzoobainc1598420455082\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/abzoobainc1598420455082\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"accedian\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/accedian\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"accelario1579101623356\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/accelario1579101623356\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"accellion\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/accellion\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"accessdata-group\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/accessdata-group\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"accops\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/accops\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aciworldwide\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aciworldwide\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Acronis\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Acronis\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Acronis.Backup\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Acronis.Backup\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"actian-corp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/actian-corp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"actian_matrix\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/actian_matrix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"actifio\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/actifio\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"actiphy\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/actiphy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"actiphyinc1627974506603\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/actiphyinc1627974506603\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"activecountermeasuresinc1631039410073\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/activecountermeasuresinc1631039410073\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"activeeon\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/activeeon\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"activeops\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/activeops\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"adastracorporation-4028356\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/adastracorporation-4028356\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"adgs\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/adgs\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"advantech\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/advantech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"advantech-webaccess\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/advantech-webaccess\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"advantys\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/advantys\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aelf\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aelf\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aerospike\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aerospike\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"affinio\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/affinio\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"affirmednetworks1607630812999\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/affirmednetworks1607630812999\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ageniumscale1591804889317\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ageniumscale1591804889317\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aggregion-ltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aggregion-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"agiledialogssl1603791911858\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/agiledialogssl1603791911858\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"agolo\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/agolo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ahnlabinc1584495174865\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ahnlabinc1584495174865\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ahnlabinc1584495467593\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ahnlabinc1584495467593\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"airalabrus\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/airalabrus\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aiscaler-cache-control-ddos-and-url-rewriting-\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aiscaler-cache-control-ddos-and-url-rewriting-\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aisundowninc1618516322959\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aisundowninc1618516322959\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"akamai-technologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/akamai-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"akumina\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/akumina\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"akumo-software\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/akumo-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"al-tamamunitedtradingcontractingcompany\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/al-tamamunitedtradingcontractingcompany\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"alachisoft\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/alachisoft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"alertlogic\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/alertlogic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"AlertLogic.Extension\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/AlertLogic.Extension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"algolyticstechnologies1606475101268\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/algolyticstechnologies1606475101268\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"alicetrix\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/alicetrix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"alienvault\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/alienvault\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"alldigital-brevity\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/alldigital-brevity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"almalinux\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/almalinux\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"almalinuxosfoundation1628089859865\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/almalinuxosfoundation1628089859865\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"altair-engineering-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/altair-engineering-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"altamira-corporation\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/altamira-corporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"alteryx\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/alteryx\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"altova\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/altova\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"amergint1593131356777\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/amergint1593131356777\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"anjanadatasl1583402861145\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/anjanadatasl1583402861145\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ansys\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ansys\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"antmedia\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/antmedia\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aod\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aod\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"apigee\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/apigee\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"appcara\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appcara\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"appcelerator\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appcelerator\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"appex-networks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appex-networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"appistry\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appistry\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"appiyo_technologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appiyo_technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"appmint_inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appmint_inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"apps-4-rent\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/apps-4-rent\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"appscale-marketplace\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appscale-marketplace\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"appsurifyinc1606933045773\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appsurifyinc1606933045773\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aquaforest\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aquaforest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aquantyinc1598537176913\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aquantyinc1598537176913\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aquaveollc1633710529908\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aquaveollc1633710529908\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"arabesque-group\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/arabesque-group\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"arangodb\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/arangodb\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aras\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aras\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"arcblock\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/arcblock\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"arcesb\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/arcesb\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"arcontechsolutionsprivatelimited1623841797810\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/arcontechsolutionsprivatelimited1623841797810\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"arcserveusallc-marketing\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/arcserveusallc-marketing\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"arista-networks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/arista-networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ariwontollc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ariwontollc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"array_networks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/array_networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"artificial-intelligence-techniques-sl\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/artificial-intelligence-techniques-sl\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"arubanetworks-4922182\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/arubanetworks-4922182\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"asdivertissementinc1617837708654\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/asdivertissementinc1617837708654\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"asigra\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/asigra\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aspentechnologyhq-1353108\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aspentechnologyhq-1353108\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"astadia-1148316\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/astadia-1148316\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"asterasoftware1581022936015\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/asterasoftware1581022936015\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"asyscosoftwarebv\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/asyscosoftwarebv\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ataccama\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ataccama\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"athinfosystems1641442221349\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/athinfosystems1641442221349\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"athinfosystems1648710938250\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/athinfosystems1648710938250\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"atlgaming\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/atlgaming\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"atmosera\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/atmosera\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"atomicorp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/atomicorp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"atomizedinc1587939464368\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/atomizedinc1587939464368\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"attunity_cloudbeam\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/attunity_cloudbeam\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"audiocodes\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/audiocodes\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"auraportal\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/auraportal\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"auriq-systems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/auriq-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"automateio1592914387888\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/automateio1592914387888\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"automationanywhere\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/automationanywhere\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"avanseus\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/avanseus\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"avepoint\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/avepoint\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aveva1\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aveva1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"avi-networks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/avi-networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aviatrix-systems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aviatrix-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"awingu\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/awingu\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"axedrasag1590581171549\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/axedrasag1590581171549\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"axsguardablenv\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/axsguardablenv\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"axshco\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/axshco\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"axway\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/axway\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"axxana\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/axxana\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"azhpc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/azhpc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"azul\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/azul\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"azure-dockit\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/azure-dockit\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"azurecyclecloud\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/azurecyclecloud\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"AzureDatabricks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/AzureDatabricks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"azureopenshift\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/azureopenshift\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"AzureRT.PIR.Synthetics.ProdTest\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/AzureRT.PIR.Synthetics.ProdTest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"AzureRT.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/AzureRT.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"azuretesting\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/azuretesting\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"azuretesting2\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/azuretesting2\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"azuretesting3\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/azuretesting3\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"AzureTools1type\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/AzureTools1type\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"baas-techbureau\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/baas-techbureau\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"baffle-io\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/baffle-io\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"balabit\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/balabit\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"barracudanetworks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/barracudanetworks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"basho\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/basho\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"batch\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/batch\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bayware\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bayware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bdy\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bdy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"belindaczsro1588885355210\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/belindaczsro1588885355210\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bellsoft1582871421940\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bellsoft1582871421940\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"betsol\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/betsol\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"beyondtrust\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/beyondtrust\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bi-builders-as\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bi-builders-as\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"big-id\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/big-id\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"biolibinc1622552350258\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/biolibinc1622552350258\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bissantechnology1583581147809\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bissantechnology1583581147809\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bitdefendercybersecurity\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bitdefendercybersecurity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Bitnami\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Bitnami\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bizagi\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bizagi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bizaptyltd1626489237351\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bizaptyltd1626489237351\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bizdataloome\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bizdataloome\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"biztalk360\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/biztalk360\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"black-duck-software\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/black-duck-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"blackbird\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/blackbird\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"blackmagicdesignincorporated1596492193249\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/blackmagicdesignincorporated1596492193249\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"blk-technologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/blk-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"blockapps\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/blockapps\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"blockchain-foundry\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/blockchain-foundry\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"blockstack\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/blockstack\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bloombase\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bloombase\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bluecat\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bluecat\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bluejeansnetwork1638333611902\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bluejeansnetwork1638333611902\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"blueprismlimited-4827145\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/blueprismlimited-4827145\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bluesyntaxconsulting1617654548594\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bluesyntaxconsulting1617654548594\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bluetalon\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bluetalon\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bmc.ctm\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bmc.ctm\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bmcctm.test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bmcctm.test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"boardpacpvtltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/boardpacpvtltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bocada\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bocada\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"boemskats\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/boemskats\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"botanalytics\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/botanalytics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bowspritconsultingopcprivatelimited1596291408582\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bowspritconsultingopcprivatelimited1596291408582\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bravura-software-llc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bravura-software-llc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Brianjac.Symantec.CloudWorkloadProtection\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Brianjac.Symantec.CloudWorkloadProtection\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bricatainc1584472632111\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bricatainc1584472632111\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bright-computing\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bright-computing\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"brightcomputing\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/brightcomputing\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"brocade_communications\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/brocade_communications\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"brutale\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/brutale\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bryte\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bryte\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bssw\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bssw\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bt-americas-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bt-americas-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"buddhalabs\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/buddhalabs\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cadosecurityltd1626856705534\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cadosecurityltd1626856705534\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"calculated_systems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/calculated_systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"caloudi_corp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/caloudi_corp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"canadiancentreforcybersecurity1610638436359\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/canadiancentreforcybersecurity1610638436359\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Canonical\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Canonical\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"canonical-test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/canonical-test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"carto\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/carto\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cask\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cask\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"castaigroupinc1595243474856\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/castaigroupinc1595243474856\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"catechnologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/catechnologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"catonetworksltd1641478570665\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/catonetworksltd1641478570665\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cautelalabs\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cautelalabs\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cavirin\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cavirin\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cayosoftinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cayosoftinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cdatasoftware\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cdatasoftware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cds\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cds\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"celum-gmbh\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/celum-gmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"center-for-internet-security-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/center-for-internet-security-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"centeritysystems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/centeritysystems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"centrixeltd1594135951373\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/centrixeltd1594135951373\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"centrocomputerspa1584528117084\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/centrocomputerspa1584528117084\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"certifiedsecuritysolutionsinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/certifiedsecuritysolutionsinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"certivox\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/certivox\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cfd-direct\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cfd-direct\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"chain\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/chain\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"checkpoint\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/checkpoint\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"chef-software\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/chef-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Chef.Bootstrap.WindowsAzure\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Chef.Bootstrap.WindowsAzure\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"chunghwatelecom1587573688842\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/chunghwatelecom1587573688842\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cinchy\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cinchy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cinegy-gmbh\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cinegy-gmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ciphertechsinc1646670709341\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ciphertechsinc1646670709341\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"circleci\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/circleci\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cires21\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cires21\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cirruswaveinc1579234787943\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cirruswaveinc1579234787943\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cisco\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cisco\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"citrix\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/citrix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Citrix.ADC\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Citrix.ADC\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"clapsodeughaftungsbeschrnkt1626333173563\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/clapsodeughaftungsbeschrnkt1626333173563\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"clear-linux-project\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/clear-linux-project\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"clone-systems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/clone-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"clouber\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/clouber\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloud-checkr\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloud-checkr\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloud-cruiser\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloud-cruiser\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloud-infrastructure-services\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloud-infrastructure-services\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudaccelinc1628754426775\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudaccelinc1628754426775\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudbees\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudbees\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudbees-enterprise-jenkins\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudbees-enterprise-jenkins\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudbolt-software\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudbolt-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudboltsoftware1639523402532\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudboltsoftware1639523402532\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudboost\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudboost\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudcover\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudcover\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudenablers-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudenablers-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudentity\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudentity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudera\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudera\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudflare\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudflare\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudhouse\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudhouse\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudinfo-4919088\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudinfo-4919088\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudknox\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudknox\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudlanes\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudlanes\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudlink\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudlink\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"CloudLinkEMC.SecureVM\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/CloudLinkEMC.SecureVM\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudmavensolutions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudmavensolutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudneeti\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudneeti\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudplan-gmbh\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudplan-gmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudsecurity\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudsecurity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudsoft\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudsoft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudwhizsolutions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudwhizsolutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudwrxsconsultingltd1631029702055\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudwrxsconsultingltd1631029702055\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"clustrix\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/clustrix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cncf-upstream\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cncf-upstream\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"codaintelligence1606495376525\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/codaintelligence1606495376525\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"codelathe\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/codelathe\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"codenvy\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/codenvy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"codetwo\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/codetwo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cognexcorporation1613759804979\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cognexcorporation1613759804979\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cognexcorporation1647410785838\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cognexcorporation1647410785838\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cognitive-scale\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cognitive-scale\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cognizant\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cognizant\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cognosys\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cognosys\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cohesity\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cohesity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cohesitydev1592001764720\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cohesitydev1592001764720\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cohesive\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cohesive\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"coin-sciences-ltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/coin-sciences-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"collabcloudlimited\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/collabcloudlimited\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"collibranv1619508098620\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/collibranv1619508098620\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"commscopeinc1632135151062\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/commscopeinc1632135151062\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"commvault\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/commvault\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"compellon\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/compellon\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"composable\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/composable\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"comunity\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/comunity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"concentrationheatandmomentumlimited1616154387047\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/concentrationheatandmomentumlimited1616154387047\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Confer\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Confer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"confluentinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/confluentinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"conflux\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/conflux\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"connecting-software\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/connecting-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"consensys\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/consensys\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"containeraider\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/containeraider\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"contiamogmbh\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/contiamogmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"controlcase\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/controlcase\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"controlplane\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/controlplane\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"controlplanecorporation1609967567639\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/controlplanecorporation1609967567639\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"convertigo\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/convertigo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"corda\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/corda\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"core-stack\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/core-stack\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"corent-technology-pvt\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/corent-technology-pvt\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"CoreOS\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/CoreOS\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"couchbase\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/couchbase\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cpanel\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cpanel\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"credativ\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/credativ\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cristiesoftwareltd1599488127561\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cristiesoftwareltd1599488127561\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"crunchyard\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/crunchyard\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"crunchyardltd1623835391104\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/crunchyardltd1623835391104\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cryptocom1585727786636\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cryptocom1585727786636\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cryptosense1605170011574\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cryptosense1605170011574\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cryptzone\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cryptzone\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ctm.bmc.com\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ctm.bmc.com\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ctrliqinc1648673227698\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ctrliqinc1648673227698\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cubebackup\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cubebackup\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cyberark\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cyberark\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cybernetica-as\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cybernetica-as\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cygnalabscorp1646065782458\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cygnalabscorp1646065782458\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cyxtera\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cyxtera\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"d4t4_solutions-1164305\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/d4t4_solutions-1164305\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"daceitdbasensetrafficpulse1579892024934\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/daceitdbasensetrafficpulse1579892024934\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"danielsol.AzureTools1\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/danielsol.AzureTools1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Dans.Windows.App\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Dans.Windows.App\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Dans3.Windows.App\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Dans3.Windows.App\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dataart\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dataart\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"databricks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/databricks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datacore\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datacore\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Datadog.Agent\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Datadog.Agent\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datadynamicsinc1581991927942\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datadynamicsinc1581991927942\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datagapsinc1585348463636\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datagapsinc1585348463636\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dataguiseinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dataguiseinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dataiku\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dataiku\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datalayer\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datalayer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datanomers1584919038987\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datanomers1584919038987\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datanova\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datanova\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datapredsa\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datapredsa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dataroadtechnologiesllc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dataroadtechnologiesllc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datasciencedojo1586563145740\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datasciencedojo1586563145740\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datastax\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datastax\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datasunrise\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datasunrise\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datavirtualitygmbh\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datavirtualitygmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datometry\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datometry\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dbs-h\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dbs-h\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ddn-whamcloud-5345716\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ddn-whamcloud-5345716\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Debian\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Debian\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dece-4446019\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dece-4446019\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"decisosalesbv\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/decisosalesbv\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"deepcognitioninc1593512758156\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/deepcognitioninc1593512758156\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"deepsiginc1581610210151\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/deepsiginc1581610210151\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"deepsurfacesecurityinc1632943333445\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/deepsurfacesecurityinc1632943333445\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dellemc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dellemc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dell_software\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dell_software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"delphix\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/delphix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"deltapathlimited1592886319362\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/deltapathlimited1592886319362\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"denodo\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/denodo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"denyall\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/denyall\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"derdack\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/derdack\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"deskpro1650546806675\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/deskpro1650546806675\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"desktopstudioag1580294245574\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/desktopstudioag1580294245574\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"devfactory\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/devfactory\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"device42inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/device42inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"deviceauthorityinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/deviceauthorityinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"devolutionsinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/devolutionsinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"devopsgroup-uk\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/devopsgroup-uk\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"df-portal-user\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/df-portal-user\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dgsecure\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dgsecure\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Dh2ico\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Dh2ico\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dh2icompany\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dh2icompany\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dhi\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dhi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"diagramics\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/diagramics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dicomsystems1584107398321\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dicomsystems1584107398321\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"diehl-metering\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/diehl-metering\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"digisitesystems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/digisitesystems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"digitaldefenseinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/digitaldefenseinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"digitaloffice\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/digitaloffice\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"digitamizeinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/digitamizeinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"digitate\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/digitate\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"diladele\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/diladele\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dimensionalmechanics-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dimensionalmechanics-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"diqa\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/diqa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"diyatech\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/diyatech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"diyotta\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/diyotta\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"djiindustrialincus\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/djiindustrialincus\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"docker\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/docker\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dome9\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dome9\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dorabot\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dorabot\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dremiocorporation\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dremiocorporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"drizti\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/drizti\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"drone\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/drone\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dsi\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dsi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dundas\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dundas\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dyadic_security\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dyadic_security\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dynatrace\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dynatrace\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dynatrace.ruxit\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dynatrace.ruxit\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"e-magicinc1587696283171\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/e-magicinc1587696283171\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"eastwind-networks-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/eastwind-networks-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"easysoftwaresro1593005637384\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/easysoftwaresro1593005637384\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ebesllc1637780200500\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ebesllc1637780200500\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ecessa\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ecessa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"edevtech\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/edevtech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"edgelesssystems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/edgelesssystems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"edgenetworks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/edgenetworks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"edispheresoftwareprivatelimited1606199736428\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/edispheresoftwareprivatelimited1606199736428\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"education4sight\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/education4sight\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"eecservicesfzllc1604836615706\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/eecservicesfzllc1604836615706\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"egnyte\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/egnyte\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"egress1589289169584\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/egress1589289169584\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"eikonasystemsgmbh1601729310063\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/eikonasystemsgmbh1601729310063\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Elastic\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Elastic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"elasticbox\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/elasticbox\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"elecard\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/elecard\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"electric-cloud\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/electric-cloud\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"elevateiot\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/elevateiot\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"eleven01\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/eleven01\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"elfiqnetworks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/elfiqnetworks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"emercoin\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/emercoin\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"energisme1601990637842\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/energisme1601990637842\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"enforongo\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/enforongo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"engineering-ingegneriainformatica-spa1626786889850\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/engineering-ingegneriainformatica-spa1626786889850\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"engysltd1624364546407\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/engysltd1624364546407\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"enterprise-ethereum-alliance\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/enterprise-ethereum-alliance\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"enterprisedb-corp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/enterprisedb-corp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"enterpriseworx-it\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/enterpriseworx-it\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"epicgames\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/epicgames\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"epicgamesinc1633466121071\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/epicgamesinc1633466121071\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"eproe\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/eproe\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"equalum\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/equalum\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"equilibrium\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/equilibrium\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"equinix\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/equinix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ergoninformatikag1581586464404\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ergoninformatikag1581586464404\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"esdenera\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/esdenera\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ESET\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ESET\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"esetresearch1579795941720\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/esetresearch1579795941720\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"esri\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/esri\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"esyon\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/esyon\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ethereum\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ethereum\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"eurolinuxspzoo1620639373013\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/eurolinuxspzoo1620639373013\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"eventtracker\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/eventtracker\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"evertzmicrosystemsltd1586877923009\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/evertzmicrosystemsltd1586877923009\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"evostream-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/evostream-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"exact\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/exact\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"exasol\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/exasol\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"excelero1608461290726\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/excelero1608461290726\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"exivity\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/exivity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"exonar\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/exonar\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"f5-networks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/f5-networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"falainapteltd1604661424876\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/falainapteltd1604661424876\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"falconstorsoftware\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/falconstorsoftware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fatalsecurity1604924013537\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fatalsecurity1604924013537\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fatpipe-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fatpipe-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fenestrae-1035066\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fenestrae-1035066\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fidesys\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fidesys\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"filecatalyst\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/filecatalyst\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"filemagellc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/filemagellc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fiorano\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fiorano\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fireeye\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fireeye\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"firehost\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/firehost\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"firemon\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/firemon\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"firstderivativesplc1596469572732\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/firstderivativesplc1596469572732\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"flashgrid-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/flashgrid-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"flexbby\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/flexbby\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"flexbby-5255860\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/flexbby-5255860\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"flexify-io\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/flexify-io\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"flexxibleit\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/flexxibleit\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"flowmon\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/flowmon\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"flynet\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/flynet\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"foghorn-systems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/foghorn-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"forcepoint-llc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/forcepoint-llc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"forescout\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/forescout\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"foreseetiab1613650409016\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/foreseetiab1613650409016\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"formpipesoftwareab\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/formpipesoftwareab\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"forscene\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/forscene\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fortanix\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fortanix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fortinet\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fortinet\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fortycloud\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fortycloud\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"forumsystems1599756394904\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/forumsystems1599756394904\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fotopiatechnologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fotopiatechnologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"foxiteuropegmbh1585901066320\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/foxiteuropegmbh1585901066320\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"franzinc1593030725310\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/franzinc1593030725310\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fujitsu_fast\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fujitsu_fast\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fw\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fw\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"g2kgroupgmbh-4821943\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/g2kgroupgmbh-4821943\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gapteq\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gapteq\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gatlingcorp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gatlingcorp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gbs\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gbs\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gemalto-safenet\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gemalto-safenet\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Gemalto.SafeNet.ProtectV\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Gemalto.SafeNet.ProtectV\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"genesistechnologyinc1604912285911\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/genesistechnologyinc1604912285911\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"genuagmbhdevid1\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/genuagmbhdevid1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"genua_gmbh\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/genua_gmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"genymobile\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/genymobile\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gigamon-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gigamon-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"GitHub\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/GitHub\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gitlab\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gitlab\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gitlabinc1586447921813\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gitlabinc1586447921813\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gladinet-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gladinet-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"glantoninc1591876792991\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/glantoninc1591876792991\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"globalidsinc1596800540598\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/globalidsinc1596800540598\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"globalscape\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/globalscape\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"globalsolutions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/globalsolutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gluwareinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gluwareinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"graphistry\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/graphistry\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"graphitegtc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/graphitegtc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"great-software-laboratory-private-limited\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/great-software-laboratory-private-limited\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"greensql\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/greensql\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"greycorbelsolutions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/greycorbelsolutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gridgain\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gridgain\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"guardicore\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/guardicore\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gxchainfoundationltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gxchainfoundationltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"h2o-ai\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/h2o-ai\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hackerbay\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hackerbay\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hackershub\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hackershub\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"haivision\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/haivision\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"haivisionsystemsinc1580780591922\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/haivisionsystemsinc1580780591922\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"haltdoscompvtltd1587136166019\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/haltdoscompvtltd1587136166019\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hammerspace\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hammerspace\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hanu\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hanu\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"haproxy-technologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/haproxy-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"harmanconnectedservicesinc1594928575643\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/harmanconnectedservicesinc1594928575643\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"harpaitalia\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/harpaitalia\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hashhub\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hashhub\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hcl-technologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hcl-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"heimdall-data\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/heimdall-data\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"help-systems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/help-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"helpyio\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/helpyio\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"heretechnologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/heretechnologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hewlett-packard\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hewlett-packard\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hillstone-networks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hillstone-networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hitachi-solutions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hitachi-solutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hitachivantara\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hitachivantara\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"holo-industrie40softwaregmbh1600957636008\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/holo-industrie40softwaregmbh1600957636008\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hortonworks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hortonworks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hpe\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hpe\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"HPE.Security.ApplicationDefender\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/HPE.Security.ApplicationDefender\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"huawei\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/huawei\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hubstor-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hubstor-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hush-hush\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hush-hush\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hvr\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hvr\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hyperglance\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hyperglance\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hypergrid\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hypergrid\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hystaxinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hystaxinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hytrust\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hytrust\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"i-exceed-technology\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/i-exceed-technology\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iaansys\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iaansys\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ibm\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ibm\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ibm-alliance-global-1560886\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ibm-alliance-global-1560886\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ibm-alliance-usa-ny-armonk-hq-ibmstorage-6201192\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ibm-alliance-usa-ny-armonk-hq-ibmstorage-6201192\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ibm-usa-ny-armonk-hq-6275750-ibmcloud-aiops\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ibm-usa-ny-armonk-hq-6275750-ibmcloud-aiops\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iboss\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iboss\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iconics\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iconics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iconsulting-spa\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iconsulting-spa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"icubeconsultancyservicesinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/icubeconsultancyservicesinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iguazio-5069960\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iguazio-5069960\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ikan\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ikan\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iliimbiliimveyazlmsistemlerisanvetica1617000555584\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iliimbiliimveyazlmsistemlerisanvetica1617000555584\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"illuminainc1586452220102\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/illuminainc1586452220102\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"image-technologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/image-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"imaginecommunications\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/imaginecommunications\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"imperva\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/imperva\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"impetustechnologiesinc1591959591877\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/impetustechnologiesinc1591959591877\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"imprivatainc1580479939967\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/imprivatainc1580479939967\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"incorta\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/incorta\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"incredibuild\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/incredibuild\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"indexima1594300233028\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/indexima1594300233028\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"industry-weapon\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/industry-weapon\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"industryweapon1587162781833\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/industryweapon1587162781833\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"inenprocesosyplataformasdetisderldecv1615482385424\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/inenprocesosyplataformasdetisderldecv1615482385424\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"inergybv1637141413454\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/inergybv1637141413454\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"infinitesoftwarecorporation1579223971125\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/infinitesoftwarecorporation1579223971125\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"infiotinc1614034091460\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/infiotinc1614034091460\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"influxdata\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/influxdata\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"infoblox\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/infoblox\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"infogix\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/infogix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"infolibrarian\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/infolibrarian\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"informatica\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/informatica\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"informationbuilders\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/informationbuilders\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"informationtechnologies_ltd_1179601\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/informationtechnologies_ltd_1179601\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"infotecsinternetsecuritysoftwaregmbh1636129257584\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/infotecsinternetsecuritysoftwaregmbh1636129257584\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"infront-consulting-group-ltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/infront-consulting-group-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"infscapeughaftungsbeschrnkt\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/infscapeughaftungsbeschrnkt\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ingenieurstudiohollaus1579587745438\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ingenieurstudiohollaus1579587745438\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ingrammicro\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ingrammicro\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"innomindssoftware\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/innomindssoftware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"innosepgmbh1618331344164\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/innosepgmbh1618331344164\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"innovatorartificialtechsrl1619180685551\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/innovatorartificialtechsrl1619180685551\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"innovtech\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/innovtech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"instight-technology\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/instight-technology\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"integration-objects\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/integration-objects\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"intel-bigdl\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/intel-bigdl\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"intel-fpga\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/intel-fpga\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"intellicus-technologies-pvt-ltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/intellicus-technologies-pvt-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"intelligent-plant-ltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/intelligent-plant-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"intel_corporation\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/intel_corporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"internationaltrustmachinescorporation1582190033865\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/internationaltrustmachinescorporation1582190033865\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"internet20inc1635882446190\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/internet20inc1635882446190\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"intersystems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/intersystems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"intigua\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/intigua\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"intigua1638692632641\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/intigua1638692632641\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"introspecioltd1629872641188\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/introspecioltd1629872641188\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iofabric\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iofabric\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ipinfusion1590066770520\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ipinfusion1590066770520\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ipswitch\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ipswitch\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iqsol\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iqsol\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iquate\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iquate\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iquest\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iquest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"irion\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/irion\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ishlangu-load-balancer-adc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ishlangu-load-balancer-adc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"issp-corporation\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/issp-corporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"isvtestukbigcat\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/isvtestukbigcat\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"isvtestuklegacy\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/isvtestuklegacy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"it4bizdoo\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/it4bizdoo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"itelios\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/itelios\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"itrsgroupltd1620310702149\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/itrsgroupltd1620310702149\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ivanti-inc-pcs\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ivanti-inc-pcs\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ivanti-nzta\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ivanti-nzta\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ivix1595238749040\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ivix1595238749040\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iwnamespace\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iwnamespace\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"izenda\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/izenda\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"jamcracker\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/jamcracker\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"javlinltd1579185328273\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/javlinltd1579185328273\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"jedox\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/jedox\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"jelastic\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/jelastic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"jetnexus\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/jetnexus\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"jetware-srl\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/jetware-srl\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"jfrog\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/jfrog\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"jm-technology-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/jm-technology-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"jogetinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/jogetinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"johnsnowlabsinc1646051154808\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/johnsnowlabsinc1646051154808\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"juniper-networks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/juniper-networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"justanalytics\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/justanalytics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kaazing\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kaazing\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kadenallc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kadenallc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kali-linux\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kali-linux\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kalkitech\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kalkitech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kaminarioinc1588672951794\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kaminarioinc1588672951794\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Kaspersky.Lab\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Kaspersky.Lab\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"KasperskyLab.SecurityAgent\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/KasperskyLab.SecurityAgent\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kaspersky_lab\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kaspersky_lab\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kazendi\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kazendi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kelverion\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kelverion\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kemptech\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kemptech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kepion\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kepion\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"KevlarExtensions.M365Security.SecureOS\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/KevlarExtensions.M365Security.SecureOS\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"KevlarExtensions.M365SecurityHostIDS\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/KevlarExtensions.M365SecurityHostIDS\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"KevlarExtensions.M365SecurityInventory\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/KevlarExtensions.M365SecurityInventory\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"KevlarExtensions.M365SecurityInventory.NameChangeTest\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/KevlarExtensions.M365SecurityInventory.NameChangeTest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"KevlarExtensions.M365SecurityODL\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/KevlarExtensions.M365SecurityODL\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"KevlarExtensions.M365SecurityTLSExtension\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/KevlarExtensions.M365SecurityTLSExtension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kinetica\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kinetica\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kinvolk\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kinvolk\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"knime\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/knime\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kobalt\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kobalt\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kognillc1600118221163\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kognillc1600118221163\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kognitivsparkinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kognitivsparkinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"konginc1581527938760\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/konginc1581527938760\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"konsys-ltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/konsys-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"koverseinc1588716263110\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/koverseinc1588716263110\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kryonsystems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kryonsystems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"krypc-technologies-pvt-ltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/krypc-technologies-pvt-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kyligence\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kyligence\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kyvos-insights-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kyvos-insights-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lab3solutions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lab3solutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lancom-systems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lancom-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lansa\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lansa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lastline\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lastline\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"launchnodesltd1644561451121\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/launchnodesltd1644561451121\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"leap-orbit\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/leap-orbit\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lenovosoftware1604394104439\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lenovosoftware1604394104439\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"leostream-corporation\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/leostream-corporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lepide-software\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lepide-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"levacloudllc1602151818089\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/levacloudllc1602151818089\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"libelleag\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/libelleag\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"liberatii\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/liberatii\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"libraesva\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/libraesva\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"liebsoft\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/liebsoft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lightning-analyticsinc1582000647396\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lightning-analyticsinc1582000647396\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"linuxbasedsystemsdesignltd1580878904727\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/linuxbasedsystemsdesignltd1580878904727\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"liquid-files\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/liquid-files\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"liquidware\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/liquidware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"literatu\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/literatu\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"litespeedtechnologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/litespeedtechnologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"litespeed_technologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/litespeed_technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"litionenergiegmbh1580128829115\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/litionenergiegmbh1580128829115\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"litmusautomation1582760223280\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/litmusautomation1582760223280\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"llcitpro\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/llcitpro\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lnw-softgmbh\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lnw-softgmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"loadbalancer\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/loadbalancer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"logicflowag1638535407949\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/logicflowag1638535407949\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"logsign\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/logsign\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"logstarecorp1635838645101\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/logstarecorp1635838645101\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"logtrust\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/logtrust\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"logzio\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/logzio\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"looker\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/looker\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lotus_beta_analytics\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lotus_beta_analytics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lti-lt-infotech\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lti-lt-infotech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"luminate-security\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/luminate-security\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"M365Security.KevlarExtensions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/M365Security.KevlarExtensions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"M365SecurityInventory\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/M365SecurityInventory\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"machinesense\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/machinesense\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"madhavajay1632269232059\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/madhavajay1632269232059\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"maidenhead-bridge\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/maidenhead-bridge\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"manageengine\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/manageengine\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mapd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mapd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"maplelabsinc1623932715330\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/maplelabsinc1623932715330\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mapr-technologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mapr-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"marand\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/marand\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"marketplace-rdfe-caps\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/marketplace-rdfe-caps\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"marklogic\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/marklogic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"massiveanalytic-\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/massiveanalytic-\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mathworks-deployment\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mathworks-deployment\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mathworks-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mathworks-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"matillion\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/matillion\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mavinglobal\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mavinglobal\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"McAfee.EndpointSecurity\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/McAfee.EndpointSecurity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"McAfee.EndpointSecurity.test3\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/McAfee.EndpointSecurity.test3\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"meanio\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/meanio\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"media3-adobe\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/media3-adobe\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"media3-technologies-llc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/media3-technologies-llc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mediatekinc1586141563888\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mediatekinc1586141563888\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mendix\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mendix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"merlynnintelligencetechnologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/merlynnintelligencetechnologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"meshifyappinc1622759451429\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/meshifyappinc1622759451429\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"messagesolution\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/messagesolution\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"metaswitch\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/metaswitch\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mettainnovations-4900054\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mettainnovations-4900054\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mfe_azure\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mfe_azure\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mfiles\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mfiles\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mico\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mico\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"micro-focus\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/micro-focus\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microlinkpcukltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microlinkpcukltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microolap\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microolap\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsecpteltd1634010681688\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsecpteltd1634010681688\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-ads\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-ads\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-agci-gaming\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-agci-gaming\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-aks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-aks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-avere\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-avere\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-azure-batch\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-azure-batch\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-azure-compute\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-azure-compute\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-azure-hdinsight\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-azure-hdinsight\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-crypto\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-crypto\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-dsvm\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-dsvm\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-hyperv\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-hyperv\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-minecraft\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-minecraft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AdminCenter\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AdminCenter\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AKS\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AKS\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.ActiveDirectory\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.ActiveDirectory\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.ActiveDirectory.LinuxSSH\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.ActiveDirectory.LinuxSSH\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Applications\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Applications\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Automation.HybridWorker\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Automation.HybridWorker\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Automation.HybridWorker.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Automation.HybridWorker.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.AzureDefenderForServers\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.AzureDefenderForServers\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.AzureDefenderForSQL\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.AzureDefenderForSQL\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.AzureHybridBenefit\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.AzureHybridBenefit\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Backup.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Backup.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Backup.Test.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Backup.Test.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Batch\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Batch\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.ChangeTracking\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.ChangeTracking\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.ChangeTracking.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.ChangeTracking.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.ChangeTrackingAndInventory\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.ChangeTrackingAndInventory\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Chaos\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Chaos\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Compute.Security\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Compute.Security\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.ContainerUpstream\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.ContainerUpstream\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.DefenderForServers.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.DefenderForServers.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.DefenderForServers.Test2\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.DefenderForServers.Test2\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Diagnostics\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Diagnostics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Diagnostics.Build.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Diagnostics.Build.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Diagnostics.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Diagnostics.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test012be407-61ea-4e45-a2c3-71a45999ca21-20191228083800\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test01971384-3044-413b-8b1c-33b5d461bf23-20200107051823\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test0225ec7d-b36c-4ac8-82f0-aa4fafaf10a9-20200111051346\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test025e16a1-328d-45a2-b7e3-71f7e4cde046-20191229064028\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test02d1f941-5607-4757-8df7-fd8c5631ab45-20200103083810\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test039abd7f-360c-42a1-ad5d-77527c519286-20191002233412\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test04a0f157-c6fb-4595-b6ca-6c82a2338063-20200108101451\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test0737f33e-63e0-4ba9-b04b-b93a1de4e997-20200106083639\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test0a44d7be-63fa-418d-a7b6-89a44dd21894-20200107052935\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test0d01b487-7f79-4d87-b330-5c025068db45-20191004190331\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test0d643748-e6fe-41ad-b4d3-89a289a0cee0-20191003055620\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test0df83c51-5bb9-43f8-8ae9-bc896ea64f78-20200110220221\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test0f02c246-7e65-4010-9367-ca4530c3897e-20191004190223\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test157494ec-e788-43b0-8d26-a17e39ee07cc-20191002011945\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test1661d154-b623-4507-8a56-3a89812c456c-20200111083940\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test17bbd860-f21d-40ab-9026-16e05f2907f0-20200106083451\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test194e2333-13cd-43e3-b0a4-c8cdcf1a3600-20200110211106\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test1bc26b19-b8d8-41f9-a26d-818f277bdf93-20200101113139\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test1c840053-9213-4f2a-8f2e-9bf2297908bd-20200108101424\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test1d7bba72-69f1-43cd-a38c-41ce0b5f4bae-20200109050041\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test1f7a8078-50e7-4a3a-91eb-d178fd4c403b-20191002233353\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test1fef1fdc-57ba-46a8-a879-475ba7d45a7a-20200106083509\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test21332f15-f78d-4d31-afac-79b9dc989432-20191231175840\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test22f10717-6939-4003-a9ce-38effd8b77d6-20191007191355\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test2334e6e3-bb72-4241-a36f-c2429d69bc0b-20200106050834\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test24fa9eb5-1c59-4425-b61c-30fd638c2a45-20191003203802\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test2521a545-ed61-4a15-bed1-aba7ce1d81ee-20200106050804\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test25c6fe61-1282-43c2-867b-b5039219989c-20200105081851\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test27515c8c-6773-4f92-afb0-35691cc6e3b6-20200103083821\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test28012680-48e7-4903-877f-2f29464e63d5-20191229033424\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test29a7a529-d293-4728-9d7f-257ed996e64f-20200108081759\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test2a5f2d2c-b8e3-46c2-850d-a1641c024fe7-20200107084228\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test2ce856af-ab17-48f2-ba3e-bcd9af091061-20200110013246\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test2e012e83-6361-4365-963f-6ced8a08e91c-20200110211254\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test2ecf67b2-fb63-4461-b6a6-7026c4fb1168-20191002214026\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test2ede6564-c7cc-44cb-a1a8-902505c9829d-20191003020742\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test2f4ebc17-e27e-48d9-9cc3-ff933c21884e-20200106092410\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test349ee02c-af9b-4663-a963-823b40eefed8-20200108083612\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test34cf6b13-b78e-478b-b596-8b661629371d-20191007195455\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test36cc5b60-2b23-4a04-bf95-f7865e1141cf-20200110085718\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3712fca9-5cdd-4609-be69-b02aedc5c55c-20200107084115\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3772d042-92e2-4bcb-99b7-8a6a119cc088-20191231182808\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test37a6dd64-d44d-465e-85bc-3bc38be90350-20200104083535\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test381074d5-7156-472b-801a-b35f8fef4cc6-20200105050612\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3877a44d-4c48-40db-80eb-227272d5acd6-20200110103540\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test38ecd28e-7018-4672-840c-3044a5e7a6b5-20200111084208\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test395a0b49-442a-450c-8a1f-65b0aa3bcf47-20200105083839\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3971b300-edff-44a8-b61b-7f9b7460a8d6-20191003002234\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3adeec20-7458-4b3d-af26-0b6bc2aae3eb-20200103083751\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3b20dd96-f3e4-4798-998d-8c433c2449a7-20200108083635\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3ce2fd4a-8b5a-4c7e-b08d-3e48fc0f45e7-20200104083825\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3d499ca7-cc8d-41cc-a6dc-ffb1a4ac4942-20200107053004\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3db7240e-5e42-4d6d-b024-cc9fce3c828b-20200105083520\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3f6b7341-635f-48d5-a36d-be5dfe3002c4-20200105050937\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3fc26934-ede2-4482-ad5e-f66f6135d4a6-20191228055558\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test406d077c-6017-4062-bc96-f809147a2331-20200106050748\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test4302336c-e039-4e70-bcb6-9275f6089e4a-20200108144821\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test453a087e-8435-46db-970a-4ee633cc4c4a-20200102083458\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test46b73afa-2259-4aff-81e1-a58bf24b59aa-20191229033459\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test4a3399ee-82ea-46aa-9e3a-5434b588e3b6-20191228013518\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test4eb7a185-527b-4b9f-93a8-7f1cec9d062e-20191231151207\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test520a0915-f9f0-4da4-9fa1-1b74fc1470aa-20200102083505\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test5397960f-023b-4979-9a8b-800d049045a4-20191007195417\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test55a36387-8a3f-4159-9884-29b97539a253-20200109080443\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test5645f186-4ee5-4209-af37-423660e3318c-20191231175947\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test58b4461d-4d2d-4395-b6d2-ab83d4d8c62f-20200111001002\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test5b0bf447-d98d-429d-8334-c032d197c743-20191003203846\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test5bc90367-1ea2-400b-a40c-321081bae3f3-20200108145035\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test5bd0562f-e939-456f-a6ee-c848d1aba616-20200101151641\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test5e4efe90-916c-4c96-802c-1508a5b6da78-20191231151150\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test5f8f0c10-cc3c-45ec-a068-fb1c7edfa0d9-20200101145958\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test60a000b7-286c-4b2b-9137-bbc088736419-20200108144920\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test6192a01b-ba47-4d08-904a-71647a49a112-20191008041625\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test62835538-89c6-4f66-9034-f7a4b176c615-20191007234245\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test651e4ad2-ee4a-462e-a506-b56b1969f5d0-20200110230749\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test691d94e5-c40c-4568-94b0-09b08aea42b1-20200106050808\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test6aa3643c-011a-4180-877f-cad955a8e664-20191007234642\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test6cfb469b-8478-468f-9bb5-691affd32abb-20200107083803\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test6d36b6b2-7956-4e62-91c1-c33792fd4bb1-20200110123203\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test6e28168e-a9c8-4c0a-8b40-60c2a1502d43-20200108052802\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test6eb763ac-7fbe-4e44-bee7-aad035ee2a7d-20200110084429\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test6efec253-f625-46f0-9d74-324f69e963d8-20200107070514\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test70fa7e4c-3122-4ff7-aec6-fe75ab660a01-20200108105900\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test710a5fbf-06c7-46ac-b96d-a29d2586422f-20200108083639\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test71d72489-67c6-45e2-b1e6-a19546efc823-20200105112903\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test721fccf1-2b3e-44b6-908f-51b910e88b09-20200111104931\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test742d0189-9e41-4f1b-8ad3-31c05d34903b-20200111103247\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7836a97c-f56e-48d0-8b5d-61e79aeb3226-20200111071656\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test78666b2e-25c8-4a48-931a-3131a0317d73-20191002194352\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test79f13508-fcbd-47b9-988f-1c21ef5e7f2e-20191002015429\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test79fb90ce-4691-4212-99a7-6e4069bd5984-20191007234256\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7a8cf687-6a21-4181-ba98-902fee717bd3-20200104103216\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7aabf813-6644-483a-b9e0-ba6f8973ba1f-20191002232822\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7c96c10a-0c8f-4ab0-83fd-1ad66a362e33-20191229033458\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7e79b6ff-2559-44fe-b3ba-afaa68d63636-20200108112116\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7ea372f7-ea7e-4b9e-bbad-4f35c1567aa2-20200108052736\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7fac3d04-98a5-4fc4-904e-9ea3b86eadc2-20200106050751\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7fe20dd6-9ed9-4126-bb1d-031c01ac4550-20200101114504\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7ff974d9-c841-4249-b05b-bbf663cb4605-20200106084104\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test815bd4d5-fc24-4a47-be20-063c4809902c-20200109050508\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test817654d0-2109-4d95-9284-8c8a9d960d08-20200108053758\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test821ca3b6-dd05-4e80-b3d8-74ba03b2609b-20191231151151\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test8285dc3e-637d-4d46-9695-adc39cbe7d2f-20200108144457\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test828aae03-9239-4938-a303-c23c42311878-20200102083419\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test84afd814-5098-49ab-af99-e50350b5898b-20200110211134\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test85b08563-b15f-4202-a0bc-f2bc2df2c71a-20200107053335\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test88aac268-c087-4481-b78e-99b920784a33-20200101084853\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test88dbd442-a8cc-4874-81a0-d3192c61df62-20191001224544\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test894dfb75-a00f-4f0c-894c-cae1c9846ad3-20200105051803\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test8d09bf4d-ee63-4ab1-a986-a4b802418403-20200111051447\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test8d4d652b-4f05-4e99-93dd-78b9a36b5c78-20191003203755\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test8de64739-43d8-4f84-af65-fdb3d0885288-20200108053543\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test8e324c65-a51d-4eeb-9ec8-d5f8662dc041-20191228165107\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test8e564580-8e53-4300-85f1-bf7f31dd37ff-20200107013348\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test8f458ca7-8898-4d58-b93d-bfb0c3da028c-20200109050310\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test901cd6ca-5565-4552-a3de-d204d01935c0-20200108083706\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test907b39e5-4008-4b55-93a0-18e9697b9cf3-20200108053817\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test90c2be7c-d7ec-4abf-9fad-fef90fc3ef4d-20191004022234\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test922db678-6ee8-43d5-86ff-6a86e132d332-20200107085231\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test93b88aec-5277-4b1b-910c-7008e972ce91-20200107013304\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test95a9104b-6cba-42d8-82ff-cc37e5ac44db-20200108081723\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test96da1605-19e0-46eb-9ce0-53e840f5e2cb-20200101111729\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test996066b2-7d29-400f-929b-e343a21046f7-20191231151212\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test99663fff-ed21-4a91-9687-1a6da2abb033-20200106084508\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test9eb5efa5-c3c1-4c13-80a6-11f5eba67372-20200108144852\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testa3791896-b1fc-491e-ba0d-aefcd8d9e52a-20200105083503\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testa37ff709-a078-45a0-8187-41733df8e101-20200109050003\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testa4c5fe4e-936e-4be1-a612-a331aff54a8c-20200111105055\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testa59bce1d-e32c-423d-a86e-945d4aeb98b4-20200107051821\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testa604c059-8279-4f4d-a354-eec27222a06c-20200111051514\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testa71fefb1-0d9c-4fb3-8d3d-5dcd12d72b77-20200103103221\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testa748013d-c5a6-44f9-88eb-43167207c742-20200111051402\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testaab67022-4f2b-420d-a06a-2c4045110cdf-20191229033144\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testacab9541-280f-4491-9f49-ac57653f0a07-20200105083839\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testad298437-0349-4cc7-88a9-d8aabcba9df1-20191002233431\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testadd68286-f9e0-4ab1-a526-d8f3cf0f054e-20200105084128\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testade4c52b-18f5-4b67-8e93-945358ce4f7d-20191007234259\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testae421c1d-0211-4ef2-b372-564ce8ad484a-20200110104035\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testafbbd8bf-aec5-48bf-8fea-73fa15ccc315-20191001224727\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testb15148bf-78d2-42d4-ad08-b3ad8fb4b122-20200101084759\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testb4237708-3688-40ea-85a2-275c05f4d100-20191228083519\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testb799a18f-be45-4c5c-8438-163ac2e1f1e7-20191004190529\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testb7cee88a-e5ac-4af4-99c8-7247020b00c3-20200105051201\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testb7df0d9a-27c0-4ca5-b692-08dd90387b98-20200111083443\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testbbf6bf32-4bd0-4381-b8f7-2658f585df4d-20191003203846\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testbeea1376-166a-4b1a-8923-c907cc9737d9-20200107013336\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testbf9154e9-6166-48c2-86fe-1f331be606d7-20200107051823\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc0d7c3c5-23b8-489c-a5e0-ae87c681b696-20200101083539\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc193f31a-5186-4e93-84f6-0e4ab87b73c1-20200107052937\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc1c7e8dc-fa8c-47d9-8305-de6d1451b939-20200101085248\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc1d0c917-e2ae-430c-a2ca-383fb0fda046-20191007235839\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc23a3fbb-6e95-4c0d-94fc-c8ab14dddf1c-20191231151117\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc2697630-6247-411a-94b3-c2974ad8cbee-20191007195417\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc466b80f-670f-4383-89b8-44e0d509fa20-20191002000516\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc5c8d9bd-75fa-4db3-9f34-5d7b7098584c-20191003203851\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc8b6d14b-a5db-48e0-bfad-a2818d432bea-20200104083443\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc933efa8-c553-4b93-884f-b7221d9ca789-20191228083750\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testcbe8ab80-46ef-49b1-a7bb-4e3d6e50e49f-20200104050811\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testccc0b5e6-9b0d-451a-8ac4-6f4af293b913-20200106092645\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testcec64786-04b1-487c-80ec-050da646fb1c-20191005123412\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testd104a52f-eba2-401d-8e7f-a841c90f7712-20191228083553\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testd724cea4-0d3c-4539-b2ff-be08fb23a67e-20200107083714\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testd8e60bac-27ff-4fba-90b8-732c9c5ff91c-20191228083751\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testd99db4a5-7683-4584-89ad-fefd711de284-20191004190210\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testd9b4309a-67bc-4cd8-ac47-094cb20ca6aa-20200101090202\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testda3320e0-28f2-4146-a002-e06296362711-20191004190115\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testda714121-3240-4253-90c3-48c43f115c90-20200102083419\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testdb357558-60b4-4ee3-9ec3-ba22c5d827fb-20191004020617\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testdc7230e9-df6d-4edd-a57c-ef7e0432c463-20191002011345\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testdccb59de-436f-4935-bed6-2e677dcaf36a-20200109111802\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testde985b23-9333-4f6e-a5e8-82025a38b2af-20200102083510\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Teste271da3e-cbcb-4ee7-8770-f297f414451f-20191003015540\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Teste4070edd-aec0-455d-8a79-aecdb7170b6d-20191007234642\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Teste42f351a-4da0-4f0d-93e9-ef1d98e06659-20200108083633\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Teste66ca23c-f4bf-4eb3-8418-139364d19e7d-20200107062643\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Teste78b1ab2-1380-48ab-9923-0276cdb7198b-20191001224742\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Teste8607e14-b4f8-472a-bd5b-893b8d9612e6-20200112045941\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Teste980b80e-3add-42c0-bc98-a84020b2d128-20200108101640\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Tested79dba9-2d38-4ea9-a01c-56e94b30ca7a-20191007195447\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testee9dcf5f-f7c4-4192-a8f4-28e9bc7d0f7c-20191001225005\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testefbb340a-b68b-4200-872b-d05e7d29f92d-20191007195432\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testf1fc0559-6740-48dd-9501-2b933c731d52-20200103083458\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testf41dfc97-bb51-4fba-86ca-a6f2695c415a-20200107050834\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testf5784447-83ed-4c00-8764-ea0f932aafa2-20200106085748\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testf6128ef6-c13c-420e-8088-0710888ce88b-20200109050003\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testf863ab2c-ada9-4646-84c7-1f83a82375d7-20191229033226\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testfac552a7-418f-4baa-8f51-d199ceff5c68-20200103050817\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testfb7be054-5c15-494f-822c-b64f9a36e2f3-20200105051753\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testfc5c7585-6c9a-4aa4-a7c4-1223a94e00c7-20200104083552\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.FileServer.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.FileServer.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.FleetDiagnostics\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.FleetDiagnostics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.FleetDiagnostics.Dev\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.FleetDiagnostics.Dev\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Geneva\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Geneva\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.KeyVault\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.KeyVault\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.KeyVault.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.KeyVault.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.LabServices\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.LabServices\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.LabServices.test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.LabServices.test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.Agent\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.Agent\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.Dev\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.Dev\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.Dev.INT\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.Dev.INT\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.Dev.SCALE\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.Dev.SCALE\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.Dev.TEST\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.Dev.TEST\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.GuestHealth\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.GuestHealth\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.DEV\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.DEV\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.INT\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.INT\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.SCALE\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.SCALE\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.TEST\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.TEST\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.INT.Dev\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.INT.Dev\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.SCALE.Dev\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.SCALE.Dev\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.TEST.Dev\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.TEST.Dev\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.WorkloadInsights.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.WorkloadInsights.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.WorkloadInsightsTest.newnamespace\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.WorkloadInsightsTest.newnamespace\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.Workloads\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.Workloads\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.Workloads.Dev\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.Workloads.Dev\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitoring.DependencyAgent\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitoring.DependencyAgent\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitoring.DependencyAgent.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitoring.DependencyAgent.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Networking.DNS\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Networking.DNS\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Networking.SDN\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Networking.SDN\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.NetworkWatcher\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.NetworkWatcher\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.NetworkWatcher.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.NetworkWatcher.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.OpenSSH\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.OpenSSH\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Performance.Diagnostics\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Performance.Diagnostics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Performance.Diagnostics.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Performance.Diagnostics.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.RecoveryServices\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.RecoveryServices.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices.SiteRecovery\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.RecoveryServices.SiteRecovery\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices.SiteRecovery2\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.RecoveryServices.SiteRecovery2\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices.WorkloadBackup\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.RecoveryServices.WorkloadBackup\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices.WorkloadBackup.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.RecoveryServices.WorkloadBackup.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.AntimalwareSignature\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.AntimalwareSignature\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.AntimalwareSignature.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.AntimalwareSignature.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.Dsms\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.Dsms\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.Dsms.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.Dsms.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.LinuxAttestation\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.LinuxAttestation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.LinuxTestAttestation\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.LinuxTestAttestation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.Monitoring\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.Monitoring\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.Monitoring.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.Monitoring.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.Monitoring.Testing\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.Monitoring.Testing\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.TestWindowsAttestation\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.TestWindowsAttestation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.WindowsAttestation\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.WindowsAttestation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.WinTestAttestation\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.WinTestAttestation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Sentinel.DnsExtension.Dev\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Sentinel.DnsExtension.Dev\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.ServiceFabric.MC\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.ServiceFabric.MC\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.ServiceFabric.MC.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.ServiceFabric.MC.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.SiteRecovery.Stage\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.SiteRecovery.Stage\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.SiteRecovery.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.SiteRecovery.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.SiteRecovery2.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.SiteRecovery2.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Test.Identity\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Test.Identity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WindowsFabric.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WindowsFabric.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.ReleasePipeTest\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.ReleasePipeTest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.ReleasePipeTest.INT\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.ReleasePipeTest.INT\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.ReleasePipeTest.TEST\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.ReleasePipeTest.TEST\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test1\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test2\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test2\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test3\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test3\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test4\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test4\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test5\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test5\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test5.INT\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test5.INT\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test5.TEST\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test5.TEST\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.VincentTest\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.VincentTest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.VincentTest2\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.VincentTest2\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.VincentTest3\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.VincentTest3\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.VincentTest4\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.VincentTest4\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.TestTest\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.TestTest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.TestTest.INT\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.TestTest.INT\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.TestTest.TEST\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.TestTest.TEST\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Windows.ReleasePipeTest.INT\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Windows.ReleasePipeTest.INT\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Windows.ReleasePipeTest.TEST\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Windows.ReleasePipeTest.TEST\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoring\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoring.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoringTest\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoringTest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureData\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureData\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureData.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureData.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.Canary\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights.Canary\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.Corp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights.Corp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.Linux.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights.Linux.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.LinuxTest\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights.LinuxTest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.Meya0206\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights.Meya0206\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.MeyaCorp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights.MeyaCorp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.Testing\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights.Testing\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureSecurity.JITAccess\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureSecurity.JITAccess\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.CloudBackup.Workload.Extension\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.CloudBackup.Workload.Extension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.CloudBackup.Workload.Extension.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.CloudBackup.Workload.Extension.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Compute\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Compute.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Compute.TestSar\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute.TestSar\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.CPlat.Core\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.CPlat.Core\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.CPlat.Core.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.CPlat.Core.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Dcsswe.Extensions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Dcsswe.Extensions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.EnterpriseCloud.Monitoring\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.EnterpriseCloud.Monitoring.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.EnterpriseCloud.Monitoring.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Golive.Extensions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Golive.Extensions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.GuestConfig.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.GuestConfig.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.GuestConfiguration\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.GuestConfiguration\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.GuestConfiguration.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.GuestConfiguration.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.GuestConfiguration.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.GuestConfiguration.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.HpcCompute\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.HpcCompute\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.HpcCompute.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.HpcCompute.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.HpcPack\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.HpcPack\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Interceptor\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Interceptor\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.M365\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.M365\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.M365SecurityConfiguration.Kevlar.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.M365SecurityConfiguration.Kevlar.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.ManagedIdentity\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.ManagedIdentity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.ManagedServices\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.ManagedServices\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.ManagedServices.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.ManagedServices.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.MonitoringAgent.Extension\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.MonitoringAgent.Extension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Network\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Network\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.OSTCExtensions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.OSTCExtensions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.OSTCExtensions.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.OSTCExtensions.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.OSTCExtensions.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.OSTCExtensions.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.OSTCExtensions.Testing\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.OSTCExtensions.Testing\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Powershell\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Powershell\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Powershell.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Powershell.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Powershell.Test01\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Powershell.Test01\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.SecurityManagement.Kevlar\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.SecurityManagement.Kevlar\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Sentinel.AzureMonitorAgentExtensions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Sentinel.AzureMonitorAgentExtensions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.SoftwareUpdateManagement\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.SoftwareUpdateManagement\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.SoftwareUpdateManagement.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.SoftwareUpdateManagement.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.SqlServer.Managability.IaaS.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.SqlServer.Managability.IaaS.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.SqlServer.Management\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.SqlServer.Management\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.SqlServer.Management.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.SqlServer.Management.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.SystemCenter\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.SystemCenter\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.SystemCenter.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.SystemCenter.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Test.Azure.Workloads\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Test.Azure.Workloads\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.TestSqlServer.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.TestSqlServer.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.ETWTraceListenerService\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.Azure.ETWTraceListenerService\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.RemoteDebug\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.Azure.RemoteDebug\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.RemoteDebug.Json\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.Azure.RemoteDebug.Json\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.ServiceProfiler\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.ServiceProfiler\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.Services\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.Services\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.WindowsAzure.DevTest\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.WindowsAzure.DevTest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.WindowsAzure.DevTest.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.WindowsAzure.DevTest.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.WindowsAzure.RemoteDebug\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.WindowsAzure.RemoteDebug\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.WindowsAzure.Test.RemoteDebug\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.WindowsAzure.Test.RemoteDebug\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Windows.Azure.Extensions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Windows.Azure.Extensions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Windows.AzureRemoteApp.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Windows.AzureRemoteApp.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Windows.RemoteDesktop\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Windows.RemoteDesktop\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.WindowsAdminCenter\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.WindowsAdminCenter\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.WindowsAdminCenter.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.WindowsAdminCenter.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.WindowsAzure.Compute\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.WindowsAzure.Compute\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.WindowsAzure.Compute.test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.WindowsAzure.Compute.test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.WVD\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.WVD\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoftagciuk\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoftagciuk\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoftazurecituswarp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoftazurecituswarp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftAzureSiteRecovery\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftAzureSiteRecovery\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftBizTalkServer\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftBizTalkServer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftCBLMariner\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftCBLMariner\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoftcmotest\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoftcmotest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoftcorporation1602274591143\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoftcorporation1602274591143\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoftcorporation1620407702632\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoftcorporation1620407702632\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftDynamicsAX\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftDynamicsAX\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftDynamicsGP\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftDynamicsGP\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftDynamicsNAV\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftDynamicsNAV\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoftfarmbeats\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoftfarmbeats\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftHybridCloudStorage\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftHybridCloudStorage\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftOSTC\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftOSTC\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftPowerBI\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftPowerBI\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftRServer\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftRServer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftSharePoint\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftSharePoint\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftSQLServer\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftSQLServer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftTestLinuxPPS\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftTestLinuxPPS\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftVisualStudio\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftVisualStudio\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftWindowsDesktop\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsDesktop\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftWindowsServer\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsServer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftWindowsServerHPCPack\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsServerHPCPack\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft_iot_edge\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft_iot_edge\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft_javaeeonazure_test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft_javaeeonazure_test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microstrategy\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microstrategy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"midasolutions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/midasolutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"middleware\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/middleware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"midfin\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/midfin\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"midvision\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/midvision\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mihupcommunicationspvtltd1599046998010\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mihupcommunicationspvtltd1599046998010\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mindcti\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mindcti\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"minio\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/minio\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"miraclelinux\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/miraclelinux\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"miracl_linux\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/miracl_linux\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"miri-infotech-pvt-ltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/miri-infotech-pvt-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mistio1601460379393\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mistio1601460379393\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mobilab\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mobilab\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"modern-systems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/modern-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"modexblockchaindatabase\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/modexblockchaindatabase\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"monetdbsolutions1611751313758\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/monetdbsolutions1611751313758\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"monitorapp1579029852605\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/monitorapp1579029852605\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"monitorcomputersystemsltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/monitorcomputersystemsltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"moogsoft\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/moogsoft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"morpheus-data\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/morpheus-data\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"moviemasher\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/moviemasher\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mriisoftllc1579457820427\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mriisoftllc1579457820427\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"msopentech\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/msopentech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mtnfog\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mtnfog\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"multima1643619641681\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/multima1643619641681\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"multisoft-ab\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/multisoft-ab\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mvp-systems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mvp-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mwg_azure\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mwg_azure\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mxhero\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mxhero\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"my-com\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/my-com\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"myarchinc1614657280935\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/myarchinc1614657280935\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"narrativescience\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/narrativescience\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nasuni\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nasuni\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nasunicorporation\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nasunicorporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"navicloudrsoftwarepteltd1601967280369\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/navicloudrsoftwarepteltd1601967280369\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ncache\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ncache\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ncbi\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ncbi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ncomputingglobalinc1604353053068\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ncomputingglobalinc1604353053068\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ndl\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ndl\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ndstriyelotomasyonsistemlerisanvetica1623147454601\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ndstriyelotomasyonsistemlerisanvetica1623147454601\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nebbiolo-technologies-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nebbiolo-technologies-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nec-technologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nec-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nefelinetworks1591201080882\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nefelinetworks1591201080882\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"neo4j\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/neo4j\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"neos\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/neos\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"neowaybusinesssolutions-4956350\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/neowaybusinesssolutions-4956350\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netapp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netapp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netatwork\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netatwork\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netfoundryinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netfoundryinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netgate\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netgate\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netikus-net-ltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netikus-net-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netiq\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netiq\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netka\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netka\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netmail\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netmail\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netscout\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netscout\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netspi\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netspi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netsweeper\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netsweeper\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"networksexchangetechnologyltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/networksexchangetechnologyltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netwrix\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netwrix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netx\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netx\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"neusoft-neteye\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/neusoft-neteye\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"newegginc1646343565758\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/newegginc1646343565758\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"newnetcommunicationtechnologies1589991852134\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/newnetcommunicationtechnologies1589991852134\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"NewRelic.Infrastructure.Extensions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/NewRelic.Infrastructure.Extensions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"newtglobalconsultingllc1581492268566\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/newtglobalconsultingllc1581492268566\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nextronic-5290868\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nextronic-5290868\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nginxinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nginxinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nice-it-management-solutions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nice-it-management-solutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nicepeopleatwork\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nicepeopleatwork\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nilespartnersinc1617691698386\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nilespartnersinc1617691698386\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"niolabs-5229713\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/niolabs-5229713\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nirvatosoftwarepvtltd1601368706606\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nirvatosoftwarepvtltd1601368706606\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nodejsapi\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nodejsapi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"noianetworklimited1584098036197\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/noianetworklimited1584098036197\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nokiaofamericacorporation1591716055441\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nokiaofamericacorporation1591716055441\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"noobaa\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/noobaa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"norcominformationtechnologygmbhcokgaa\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/norcominformationtechnologygmbhcokgaa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"noricumcloudsolutions1600524477681\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/noricumcloudsolutions1600524477681\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"norsync\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/norsync\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"northbridge-secure\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/northbridge-secure\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nozominetworks1582208017986\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nozominetworks1582208017986\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nri\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nri\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ntegralinc1586961136942\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ntegralinc1586961136942\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ntt-data-intellilink-corporation\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ntt-data-intellilink-corporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nttdata\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nttdata\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nttltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nttltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nuco-networks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nuco-networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"numbersbelieve\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/numbersbelieve\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"numtrallcpublisher\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/numtrallcpublisher\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nuxeo\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nuxeo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nvidia\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nvidia\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"o2mc-real-time-data-platform\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/o2mc-real-time-data-platform\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"objectivity-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/objectivity-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"objectivity1595351622261\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/objectivity1595351622261\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"oceanblue-cloud\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/oceanblue-cloud\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"OctopusDeploy.Tentacle\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/OctopusDeploy.Tentacle\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"odix\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/odix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"odysseuscomputationalsolutions1630242118741\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/odysseuscomputationalsolutions1630242118741\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"odysseyconsultantsltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/odysseyconsultantsltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"officeatwork-ag\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/officeatwork-ag\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"omega-software\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/omega-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"onapsis\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/onapsis\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"oncore_cloud_services-4944214\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/oncore_cloud_services-4944214\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"onexgroup\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/onexgroup\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"onspecta\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/onspecta\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ontology\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ontology\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"onyx-point-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/onyx-point-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"op5\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/op5\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"open-connect-systems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/open-connect-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"opencell\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/opencell\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"openlinkswcom-pago\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/openlinkswcom-pago\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"OpenLogic\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/OpenLogic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"openrefactoryinc1620140917523\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/openrefactoryinc1620140917523\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"openshotstudiosllc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/openshotstudiosllc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"opentext\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/opentext\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"openvpn\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/openvpn\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"opslogix\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/opslogix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"opswatinc1619007967290\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/opswatinc1619007967290\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"optimitiveslu1618320281443\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/optimitiveslu1618320281443\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"option3\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/option3\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Oracle\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Oracle\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"oraylis\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/oraylis\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"oraylisbi\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/oraylisbi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"orbs-network\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/orbs-network\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"oriana\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/oriana\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"orientdb\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/orientdb\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"oroinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/oroinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"osirium-ltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/osirium-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"osisoft\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/osisoft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"osnexus\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/osnexus\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"outpost24\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/outpost24\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"outsystems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/outsystems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ovaledge1618392232783\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ovaledge1618392232783\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pachyderminc1585170006545\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pachyderminc1585170006545\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pacteratechnologiesinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pacteratechnologiesinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"paladionnetworkspvtltd1606120508449\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/paladionnetworkspvtltd1606120508449\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"paloaltonetworks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/paloaltonetworks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"panopta\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/panopta\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"panorama-necto\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/panorama-necto\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"panzura-file-system\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/panzura-file-system\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"parabole\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/parabole\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"paralaxiomtechnologiesprivatelimited1596433357886\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/paralaxiomtechnologiesprivatelimited1596433357886\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"parallels\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/parallels\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"parasoft\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/parasoft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"parkersoftwarelimited1609786657569\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/parkersoftwarelimited1609786657569\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"parsec-for-teams\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/parsec-for-teams\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pasifikciptamandiri\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pasifikciptamandiri\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"passlogy\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/passlogy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"paxata\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/paxata\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pcman\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pcman\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"peer-software-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/peer-software-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"penta-security-systems-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/penta-security-systems-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"percona\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/percona\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"perforce\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/perforce\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"periscope-tech-4791746\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/periscope-tech-4791746\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"piolinkinc1582849368309\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/piolinkinc1582849368309\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pivotal\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pivotal\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pixitmedia1591611150480\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pixitmedia1591611150480\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"plesk\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/plesk\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pmsoftwareinternational1603102514882\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pmsoftwareinternational1603102514882\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pnop\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pnop\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"polarityioinc1628691850891\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/polarityioinc1628691850891\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"portalarchitects\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/portalarchitects\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"portsysinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/portsysinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"postgres-pro\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/postgres-pro\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"powerbireach\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/powerbireach\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"prakshepprivatelimited1619949827900\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/prakshepprivatelimited1619949827900\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"prasselsrl1645470739547\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/prasselsrl1645470739547\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"prestashop\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/prestashop\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"prestige_informatique-1090178\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/prestige_informatique-1090178\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"prime-strategy\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/prime-strategy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"primekey\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/primekey\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"primestrategynewyorkinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/primestrategynewyorkinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pro-vision\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pro-vision\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"probityinc1581611299345\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/probityinc1581611299345\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"process-one\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/process-one\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"processgold\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/processgold\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"procomputers\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/procomputers\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"procomputerssrl1594239153814\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/procomputerssrl1594239153814\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"profecia\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/profecia\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Profiler.AgentOrchestrationRefactor.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Profiler.AgentOrchestrationRefactor.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Profiler.Master.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Profiler.Master.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"profisee\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/profisee\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"progelspa\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/progelspa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"progresssoftwarecorporation\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/progresssoftwarecorporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"proliongmbh1628175060372\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/proliongmbh1628175060372\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"protegrityusainc1627404648458\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/protegrityusainc1627404648458\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"protiviti\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/protiviti\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"proventeq\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/proventeq\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ptc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ptc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ptsecurity\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ptsecurity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pulse-secure\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pulse-secure\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pulsesecuretechnologies1638179500151\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pulsesecuretechnologies1638179500151\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"puppet\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/puppet\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"puppeteersoy1601024480557\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/puppeteersoy1601024480557\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"PuppetLabs\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/PuppetLabs\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"PuppetLabs.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/PuppetLabs.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"purestorageinc1578960262525\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/purestorageinc1578960262525\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pydio\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pydio\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pyramidanalytics\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pyramidanalytics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"qlik\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/qlik\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"qnapsystemsinc1601352084032\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/qnapsystemsinc1601352084032\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"qore-technologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/qore-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"qs-solutions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/qs-solutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Qualys\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Qualys\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Qualys.LinuxAgent.GrayLabel\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Qualys.LinuxAgent.GrayLabel\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Qualys.WindowsAgent.GrayLabel\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Qualys.WindowsAgent.GrayLabel\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"qualysguard\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/qualysguard\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"quasardb\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/quasardb\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"qubole-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/qubole-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"quest\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/quest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"racknap\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/racknap\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rackwareinc1619403669255\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rackwareinc1619403669255\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"radiant-logic\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/radiant-logic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"radware\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/radware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"raincode\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/raincode\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rancher\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rancher\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rapid7\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rapid7\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Rapid7.InsightPlatform\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Rapid7.InsightPlatform\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rapidminer\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rapidminer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"raynetgmbh\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/raynetgmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"readymind\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/readymind\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"realm\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/realm\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"reblaze\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/reblaze\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"RedHat\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/RedHat\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"redhat-rhel\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/redhat-rhel\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"redpoint-global\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/redpoint-global\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"refactr\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/refactr\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"refinitiv\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/refinitiv\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"refinitiv-4807503\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/refinitiv-4807503\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"relevance-lab\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/relevance-lab\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"remotelearner\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/remotelearner\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"res\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/res\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"resco\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/resco\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"researchgraphptyltd1598252602128\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/researchgraphptyltd1598252602128\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"resemblesystems1582780358300\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/resemblesystems1582780358300\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"responder-corp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/responder-corp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"revolution-analytics\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/revolution-analytics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rhcsolutions1586957910818\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rhcsolutions1586957910818\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ribboncommunications\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ribboncommunications\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"RightScaleLinux\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/RightScaleLinux\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"RightScaleWindowsServer\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/RightScaleWindowsServer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rimo3\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rimo3\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ringsoftwareresearchanddevelopmentinc1578946072257\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ringsoftwareresearchanddevelopmentinc1578946072257\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"riverbed\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/riverbed\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"RiverbedTechnology\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/RiverbedTechnology\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rmgtechnologiesinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rmgtechnologiesinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rocketml\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rocketml\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rocketsoftware\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rocketsoftware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rohdeschwarzcybersecuritygmbh\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rohdeschwarzcybersecuritygmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rohdeschwarzcybersecuritysas\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rohdeschwarzcybersecuritysas\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"roktech\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/roktech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rsa-security-llc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rsa-security-llc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rsk-labs\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rsk-labs\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rstudio-5237862\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rstudio-5237862\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rtts\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rtts\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rubrik-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rubrik-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"runecastsolutionslimited1614186396822\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/runecastsolutionslimited1614186396822\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"s2ix\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/s2ix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"saama\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/saama\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"saasame-limited\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/saasame-limited\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"safesoftwareinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/safesoftwareinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"safeticatechnologiessro\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/safeticatechnologiessro\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"safetica_technologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/safetica_technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"safetoopen1585013318137\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/safetoopen1585013318137\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"saltsecurity1583264186232\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/saltsecurity1583264186232\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"saltsecurity1583264669848\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/saltsecurity1583264669848\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"saltstack\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/saltstack\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"samsung-sds\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/samsung-sds\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"samsungelectronics1632860607983\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/samsungelectronics1632860607983\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"samsungsds-cello\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/samsungsds-cello\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"samsungsds_sdbe\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/samsungsds_sdbe\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sandhatatechnologieslimited1615753438737\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sandhatatechnologieslimited1615753438737\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sap\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sap\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sapphiretechnologieslimited1611758579346\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sapphiretechnologieslimited1611758579346\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sas-institute-560503\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sas-institute-560503\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"scaidata\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/scaidata\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"scalearc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/scalearc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"scalegrid\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/scalegrid\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"scality\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/scality\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"schrockeninc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/schrockeninc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sci\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sci\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sciencelogicinc1622565452194\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sciencelogicinc1622565452194\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"scientiamobile\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/scientiamobile\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"scontainug1595751515785\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/scontainug1595751515785\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"scubaanalytics\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/scubaanalytics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"scylladb1631195365807\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/scylladb1631195365807\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"seaqserviciossas1579029207572\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/seaqserviciossas1579029207572\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"searchbloxsoftwareinc1594309037050\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/searchbloxsoftwareinc1594309037050\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"secureworks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/secureworks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"securityonionsolutions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/securityonionsolutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"securityonionsolutionsllc1624649205155\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/securityonionsolutionsllc1624649205155\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"securosis\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/securosis\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"seequentltd1585781751395\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/seequentltd1585781751395\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"semarchy\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/semarchy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"semperis\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/semperis\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"senhasegura\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/senhasegura\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"SentinelOne.LinuxExtension\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/SentinelOne.LinuxExtension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"SentinelOne.LinuxExtension.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/SentinelOne.LinuxExtension.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"SentinelOne.WindowsExtension\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/SentinelOne.WindowsExtension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"SentinelOne.WindowsExtension.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/SentinelOne.WindowsExtension.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sentriumsl\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sentriumsl\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sentry51llc1616686725591\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sentry51llc1616686725591\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sentryone\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sentryone\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sepiosystems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sepiosystems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"seppmailag\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/seppmailag\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"seraumo1620002807288\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/seraumo1620002807288\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"service-control-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/service-control-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sesamesoftwareinc1622125191447\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sesamesoftwareinc1622125191447\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"shadow-soft\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/shadow-soft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"shareshiftneeraj.test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/shareshiftneeraj.test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sightapps\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sightapps\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"signal-sciences\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/signal-sciences\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"silk\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/silk\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"silver-peak-systems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/silver-peak-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"simmachinesinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/simmachinesinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"simontelephonics\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/simontelephonics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"simpledatalabsinc1635791235920\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/simpledatalabsinc1635791235920\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"simplifierag\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/simplifierag\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"simpligov\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/simpligov\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sinefa\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sinefa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sinequa\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sinequa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sinequa1588262295885\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sinequa1588262295885\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"singapore-telecommunications-limited\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/singapore-telecommunications-limited\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sios_datakeeper\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sios_datakeeper\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"siportalinc1581539156321\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/siportalinc1581539156321\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sisenseltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sisenseltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Site24x7\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Site24x7\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sktelecom\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sktelecom\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"skyarc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/skyarc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"skyboxsecurity1585187406404\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/skyboxsecurity1585187406404\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"skylarkcloud\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/skylarkcloud\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"smartbearsoftware\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/smartbearsoftware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"smartmessage-autoflow\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/smartmessage-autoflow\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"snaplogic\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/snaplogic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"snapt-adc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/snapt-adc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"snips\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/snips\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"soasta\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/soasta\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"softnas\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/softnas\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"softwarecentralas1642687699196\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/softwarecentralas1642687699196\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"softwarehut\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/softwarehut\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"softwebsolutions-4518310\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/softwebsolutions-4518310\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"soha\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/soha\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"solanolabs\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/solanolabs\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"solar-security\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/solar-security\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"solarwinds\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/solarwinds\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"solvedevops1643693563360\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/solvedevops1643693563360\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sonicwall-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sonicwall-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sophos\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sophos\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sourcegearllc1616101262784\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sourcegearllc1616101262784\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"south-river-technologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/south-river-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"southrivertech1586314123192\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/southrivertech1586314123192\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"spacecurve\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/spacecurve\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"spaceliftinc1625499025476\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/spaceliftinc1625499025476\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"spagobi\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/spagobi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sparklinglogic\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sparklinglogic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"spectralcorelimited1619779004178\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/spectralcorelimited1619779004178\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"spektra\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/spektra\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sphere3d\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sphere3d\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"spideroakinc1588278690933\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/spideroakinc1588278690933\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"spirentcommunications1594084187199\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/spirentcommunications1594084187199\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"splunk\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/splunk\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sproutenetworks1593456311717\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sproutenetworks1593456311717\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sqlstream\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sqlstream\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"squadratechnologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/squadratechnologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"squaredup\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/squaredup\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"src-solution\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/src-solution\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ssh2appsltd1621588462715\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ssh2appsltd1621588462715\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stackato-platform-as-a-service\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stackato-platform-as-a-service\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Stackify.LinuxAgent.Extension\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Stackify.LinuxAgent.Extension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stackstorm\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stackstorm\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"startekfingerprintmatch\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/startekfingerprintmatch\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"startisolucoesemtecnologialtda1635263523201\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/startisolucoesemtecnologialtda1635263523201\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"starwind\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/starwind\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"StatusMonitor2.Diagnostics.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/StatusMonitor2.Diagnostics.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"StatusReport.Diagnostics.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/StatusReport.Diagnostics.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stealthbits\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stealthbits\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"steelhive\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/steelhive\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stonebondtechnologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stonebondtechnologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stonefly\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stonefly\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"storage_made_easy\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/storage_made_easy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stormshield\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stormshield\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"storone1594045543980\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/storone1594045543980\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"storreduce\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/storreduce\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"storwarespzoo1611743234900\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/storwarespzoo1611743234900\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"strangebee1595948424730\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/strangebee1595948424730\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"strataidentity1608323708170\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/strataidentity1608323708170\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stratis-group-ltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stratis-group-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stratodesk1611152769936\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stratodesk1611152769936\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stratumn\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stratumn\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"streamsets\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/streamsets\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"striim\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/striim\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stromasys\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stromasys\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"strongboxitllc1594816423884\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/strongboxitllc1594816423884\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"su\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/su\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"subscription.test.krsh\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/subscription.test.krsh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sumologic\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sumologic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sunatogmbh\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sunatogmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sunday\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sunday\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"SUSE\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/SUSE\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"SUSE.AzureHybridBenefit\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/SUSE.AzureHybridBenefit\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"swoopanalytics\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/swoopanalytics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sycom-technologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sycom-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sycompatechnologycompanyinc1588192103892\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sycompatechnologycompanyinc1588192103892\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.CloudWorkloadProtection\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.CloudWorkloadProtection\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.CloudWorkloadProtection.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.CloudWorkloadProtection.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.CloudWorkloadProtection.TestOnStage\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.CloudWorkloadProtection.TestOnStage\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.QA\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.QA\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.staging\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.staging\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.test.ru2.latest\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.test.ru2.latest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.test.ru2final\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.test.ru2final\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.test.ru2latest1\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.test.ru2latest1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.test.ru4mp1\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.test.ru4mp1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.test.ru4mp1.latest\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.test.ru4mp1.latest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.test.ru4mp1final\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.test.ru4mp1final\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"symanteccorporation\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/symanteccorporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"symantectest1\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/symantectest1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"synack-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/synack-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"syncfusion\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/syncfusion\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"syncfusionbigdataplatfor\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/syncfusionbigdataplatfor\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"synechron-technologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/synechron-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"synergixinc1585256339250\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/synergixinc1585256339250\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"synnexcorp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/synnexcorp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"syscomcomputerengineeringco1583913200141\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/syscomcomputerengineeringco1583913200141\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"syte\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/syte\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tableau\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tableau\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tactic\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tactic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"talari-networks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/talari-networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"talena-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/talena-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"talend\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/talend\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"talon\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/talon\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tamrinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tamrinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"taniuminc1646329360287\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/taniuminc1646329360287\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"targit\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/targit\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tata_communications\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tata_communications\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tavanttechnologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tavanttechnologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tavendo\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tavendo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"te-systems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/te-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"techdivision\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/techdivision\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"techlatest\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/techlatest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"technicheltd1606969724100\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/technicheltd1606969724100\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tecknolab\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tecknolab\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"telepat\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/telepat\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"teloscorporation\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/teloscorporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tempered-networks-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tempered-networks-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tenable\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tenable\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tensormakecorpdbaoneclickai1608247756082\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tensormakecorpdbaoneclickai1608247756082\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tenthlineinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tenthlineinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"teradata\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/teradata\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Teradici\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Teradici\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"teramindinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/teramindinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.Gemalto.SafeNet.ProtectV\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.Gemalto.SafeNet.ProtectV\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.Gemalto.SafeNet.ProtectV.Azure\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.Gemalto.SafeNet.ProtectV.Azure\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.HP.AppDefender\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.HP.AppDefender\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.Microsoft.VisualStudio.Services\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.Microsoft.VisualStudio.Services\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.NJHP.AppDefender\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.NJHP.AppDefender\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.SqlServer.Managability\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.SqlServer.Managability\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.SqlServer.Management\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.SqlServer.Management\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.SqlServer.Management.corext\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.SqlServer.Management.corext\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test1.NJHP.AppDefender\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test1.NJHP.AppDefender\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test3.Microsoft.VisualStudio.Services\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test3.Microsoft.VisualStudio.Services\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"testable1603721901088\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/testable1603721901088\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"testpro\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/testpro\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"test_test_mix3pptest0011614206850774\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/test_test_mix3pptest0011614206850774\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"test_test_mneela1628617140187\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/test_test_mneela1628617140187\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"test_test_pmc2pc1\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/test_test_pmc2pc1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thales-vormetric\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thales-vormetric\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thalesdiscplusainc1596561677238\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thalesdiscplusainc1596561677238\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thedatavaluefactoryltd1589348815922\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thedatavaluefactoryltd1589348815922\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thefreebsdfoundation\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thefreebsdfoundation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thehdfgroup1616725197741\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thehdfgroup1616725197741\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"theumag1596442827072\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/theumag1596442827072\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"things-board\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/things-board\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thingscareinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thingscareinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thinprintgmbh\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thinprintgmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thorntechnologiesllc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thorntechnologiesllc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thoughtspot-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thoughtspot-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"threatintelligenceptyltd1586824172898\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/threatintelligenceptyltd1586824172898\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tibco-software\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tibco-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tidal-migrations\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tidal-migrations\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tidalmediainc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tidalmediainc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tig\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tig\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tiger-technology\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tiger-technology\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tigergraph\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tigergraph\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"timextender\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/timextender\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tmaxsoft\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tmaxsoft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tmaxsoft1608612658335\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tmaxsoft1608612658335\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tomsawyersoftwarecorp1613579206342\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tomsawyersoftwarecorp1613579206342\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"topicus\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/topicus\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"torusware\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/torusware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"totemo\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/totemo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"townsend-security\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/townsend-security\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"transcendinformationinc1609918445926\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/transcendinformationinc1609918445926\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"transientxinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/transientxinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"transvault\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/transvault\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"trendmicro\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/trendmicro\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"TrendMicro.DeepSecurity.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/TrendMicro.DeepSecurity.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"TrendMicro.PortalProtect\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/TrendMicro.PortalProtect\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tresorit\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tresorit\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"trifacta\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/trifacta\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tripleblindinc1615730179432\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tripleblindinc1615730179432\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tripwire-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tripwire-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"truata1612259728221\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/truata1612259728221\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"truestack\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/truestack\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tryonsolutionsinc1596650621083\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tryonsolutionsinc1596650621083\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tsa-public-service\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tsa-public-service\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tunnelbiz\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tunnelbiz\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"turbonet\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/turbonet\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"turbonet1581982683964\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/turbonet1581982683964\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"twistlock\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/twistlock\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"typesafe\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/typesafe\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ubeeko\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ubeeko\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ubercloud\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ubercloud\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"uipath-5054924\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/uipath-5054924\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ulex\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ulex\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"unifi-software\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/unifi-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"unifiedstreaming1598872291606\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/unifiedstreaming1598872291606\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"uniprint-net\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/uniprint-net\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"unitrends\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/unitrends\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"unnisoft\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/unnisoft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"unravel-data\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/unravel-data\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"unscramblsingaporepteltd-4999260\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/unscramblsingaporepteltd-4999260\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"untangle\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/untangle\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"upsolver1594188634150\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/upsolver1594188634150\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"usp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/usp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"valohai\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/valohai\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"valtix\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/valtix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"varmournetworks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/varmournetworks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"varnish\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/varnish\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vastdata1650451243415\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vastdata1650451243415\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vatacommunicationsinc1581644208717\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vatacommunicationsinc1581644208717\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vaultive-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vaultive-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vbot\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vbot\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vcinityinc1587684340545\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vcinityinc1587684340545\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vectraaiinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vectraaiinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"veeam\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/veeam\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"velocitydb-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/velocitydb-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"velocloud\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/velocloud\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vembutechnologiespvtltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vembutechnologiespvtltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vemn\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vemn\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"veritas\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/veritas\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"versanetworks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/versanetworks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"versasec\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/versasec\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vidispine\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vidispine\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vidizmo\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vidizmo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vigyanlabs-innovations-pvt-ltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vigyanlabs-innovations-pvt-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vigyanlabsinc1581413676614\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vigyanlabsinc1581413676614\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"viptela\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/viptela\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vircom\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vircom\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"virtamovecorp1615909247913\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/virtamovecorp1615909247913\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"virtualpulsesro1607008728942\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/virtualpulsesro1607008728942\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"virtuozzointernationalgmbh1626704951469\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/virtuozzointernationalgmbh1626704951469\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"visualknowledgeshare1591795776234\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/visualknowledgeshare1591795776234\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"visualsoft-center\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/visualsoft-center\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vizixiotplatformretail001\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vizixiotplatformretail001\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vmlabinc1613642184700\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vmlabinc1613642184700\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vmturbo\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vmturbo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vmware-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vmware-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vnomicinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vnomicinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"voiceelements\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/voiceelements\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"voleatechgmbh1636966911943\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/voleatechgmbh1636966911943\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"volterraedgeservices\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/volterraedgeservices\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Vormetric\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Vormetric\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vscconsultingptyltd1608535888097\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vscconsultingptyltd1608535888097\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vte\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vte\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vu-llc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vu-llc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vunetsystemsprivatelimited1646716402131\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vunetsystemsprivatelimited1646716402131\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vyulabsinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vyulabsinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"WAD2AI.Diagnostics.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/WAD2AI.Diagnostics.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"WAD2EventHub.Diagnostics.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/WAD2EventHub.Diagnostics.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wallarm\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wallarm\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wallix\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wallix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wandisco\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wandisco\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wanos\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wanos\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wanpath-dba-myworkdrive\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wanpath-dba-myworkdrive\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wardy-it-solutions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wardy-it-solutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"warewolf-esb\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/warewolf-esb\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"watchguard-technologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/watchguard-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"webaloinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/webaloinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"websense-apmailpe\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/websense-apmailpe\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"websoft9inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/websoft9inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wedoitllc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wedoitllc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"westernoceansoftwaresprivatelimited\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/westernoceansoftwaresprivatelimited\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wherescapesoftware\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wherescapesoftware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"winmagic_securedoc_cloudvm\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/winmagic_securedoc_cloudvm\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wintellisys-inc-4561600\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wintellisys-inc-4561600\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"witfooinc1590167223060\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/witfooinc1590167223060\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wmspanel\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wmspanel\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wood1595864497589\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wood1595864497589\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"workshare-technology\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/workshare-technology\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"world-programming\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/world-programming\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"worxogo\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/worxogo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wowza\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wowza\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"xcontentptyltd-1329748\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/xcontentptyltd-1329748\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"xendata-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/xendata-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"xfinityinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/xfinityinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"xilinx\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/xilinx\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"xoriantcorporationazxteam1\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/xoriantcorporationazxteam1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"xoriantsolutionspvtltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/xoriantsolutionspvtltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"xtremedata\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/xtremedata\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"xyzrd-group-ou\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/xyzrd-group-ou\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"yaseensmarket1645449809728\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/yaseensmarket1645449809728\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"yellowfin\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/yellowfin\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"yellowfininternationalptyltd1616363974066\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/yellowfininternationalptyltd1616363974066\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"yokogawarentalleasecorporation\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/yokogawarentalleasecorporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"your-shop-online\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/your-shop-online\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"z1\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/z1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"z4it-aps\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/z4it-aps\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zabbix\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zabbix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zend\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zend\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zenterasystemsinc1605292453288\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zenterasystemsinc1605292453288\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zerodown_software\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zerodown_software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zerto\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zerto\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zettalane_systems-5254599\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zettalane_systems-5254599\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zevenet\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zevenet\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zilliz\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zilliz\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zoomdata\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zoomdata\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zscaler\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zscaler\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zscaler1579058425289\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zscaler1579058425289\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zultysinc1596831546163\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zultysinc1596831546163\"\r\n }\r\n]", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/southeastasia/publishers?api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9wdWJsaXNoZXJzP2FwaS12ZXJzaW9uPTIwMjEtMTEtMDE=", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Compute/locations/southeastasia/publishers?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9wdWJsaXNoZXJzP2FwaS12ZXJzaW9uPTIwMjEtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b28069be-e680-4cf1-a94f-23a1bb01530d" + "4e90d890-8d9e-447e-bc81-85c31ae3178c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ] }, "ResponseHeaders": { @@ -2197,32 +2197,32 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "8d76ef5d-2d17-4297-8566-4612360b9f5a_132792867042483732" + "8d76ef5d-2d17-4297-8566-4612360b9f5a_132927459943306577" ], "x-ms-request-id": [ - "a567ec3f-912e-4de3-89cc-e92001ba922f" + "4c548171-75a8-4fdb-9540-57dff9584390" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11977" + "11979" ], "x-ms-correlation-request-id": [ - "7496e994-7595-4ade-8baf-8a31005742b4" + "794fbdf6-8af9-4070-af56-1934e98a4a0d" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T221745Z:7496e994-7595-4ade-8baf-8a31005742b4" + "WESTINDIA:20220517T043717Z:794fbdf6-8af9-4070-af56-1934e98a4a0d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 22:17:45 GMT" + "Tue, 17 May 2022 04:37:17 GMT" ], "Content-Length": [ - "420268" + "429382" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2231,26 +2231,26 @@ "-1" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"128technology\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/128technology\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1580863854728\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1580863854728\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1583411303229\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1583411303229\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1583465680865\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1583465680865\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1585118004523\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1585118004523\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1597644262255\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1597644262255\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1598955805825\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1598955805825\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1601633765871\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1601633765871\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1602067018799\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1602067018799\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1604579683207\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1604579683207\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1615257339685\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1615257339685\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1615278064010\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1615278064010\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1615455873642\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1615455873642\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1624590941808\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1624590941808\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1e\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1e\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"2021ai\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/2021ai\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"247commercelimited1611063941652\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/247commercelimited1611063941652\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"3cx-pbx\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/3cx-pbx\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"42crunch1580391915541\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/42crunch1580391915541\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"4psa\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/4psa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"5nine-software-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/5nine-software-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"7isolutions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/7isolutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"a10networks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/a10networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"a10networks1596136698788\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/a10networks1596136698788\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"abiquo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/abiquo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"abzoobainc1598420455082\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/abzoobainc1598420455082\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"accedian\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/accedian\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"accelario1579101623356\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/accelario1579101623356\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"accellion\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/accellion\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"accessdata-group\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/accessdata-group\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"accops\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/accops\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aciworldwide\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aciworldwide\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Acronis\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Acronis\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Acronis.Backup\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Acronis.Backup\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"actian-corp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/actian-corp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"actian_matrix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/actian_matrix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"actifio\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/actifio\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"actiphy\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/actiphy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"actiphyinc1627974506603\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/actiphyinc1627974506603\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"activecountermeasuresinc1631039410073\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/activecountermeasuresinc1631039410073\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"activeeon\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/activeeon\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"activeops\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/activeops\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"adastracorporation-4028356\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/adastracorporation-4028356\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"adgs\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/adgs\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"advantech\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/advantech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"advantech-webaccess\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/advantech-webaccess\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"advantys\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/advantys\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aelf\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aelf\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aerospike\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aerospike\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"affinio\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/affinio\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"affirmednetworks1607630812999\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/affirmednetworks1607630812999\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ageniumscale1591804889317\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ageniumscale1591804889317\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aggregion-ltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aggregion-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"agiledialogssl1603791911858\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/agiledialogssl1603791911858\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"agolo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/agolo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ahnlabinc1584495174865\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ahnlabinc1584495174865\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ahnlabinc1584495467593\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ahnlabinc1584495467593\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"airalabrus\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/airalabrus\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aiscaler-cache-control-ddos-and-url-rewriting-\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aiscaler-cache-control-ddos-and-url-rewriting-\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aisundowninc1618516322959\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aisundowninc1618516322959\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"akamai-technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/akamai-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"akumina\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/akumina\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"akumo-software\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/akumo-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"al-tamamunitedtradingcontractingcompany\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/al-tamamunitedtradingcontractingcompany\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"alachisoft\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/alachisoft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"alertlogic\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/alertlogic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"AlertLogic.Extension\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/AlertLogic.Extension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"algolyticstechnologies1606475101268\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/algolyticstechnologies1606475101268\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"alicetrix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/alicetrix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"alienvault\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/alienvault\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"alldigital-brevity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/alldigital-brevity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"almalinux\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/almalinux\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"almalinuxosfoundation1628089859865\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/almalinuxosfoundation1628089859865\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"altair-engineering-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/altair-engineering-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"altamira-corporation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/altamira-corporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"alteryx\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/alteryx\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"altova\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/altova\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"amergint1593131356777\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/amergint1593131356777\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ansys\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ansys\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"antmedia\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/antmedia\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aod\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aod\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"apigee\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/apigee\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"appcara\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appcara\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"appcelerator\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appcelerator\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"appex-networks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appex-networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"appistry\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appistry\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"appiyo_technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appiyo_technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"appmint_inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appmint_inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"apps-4-rent\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/apps-4-rent\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"appscale-marketplace\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appscale-marketplace\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"appsurifyinc1606933045773\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appsurifyinc1606933045773\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aquaforest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aquaforest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aquantyinc1598537176913\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aquantyinc1598537176913\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aquaveollc1633710529908\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aquaveollc1633710529908\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"arabesque-group\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/arabesque-group\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"arangodb\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/arangodb\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aras\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aras\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"arcblock\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/arcblock\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"arcesb\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/arcesb\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"arcontechsolutionsprivatelimited1623841797810\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/arcontechsolutionsprivatelimited1623841797810\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"arcserveusallc-marketing\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/arcserveusallc-marketing\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"arista-networks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/arista-networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ariwontollc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ariwontollc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"array_networks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/array_networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"artificial-intelligence-techniques-sl\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/artificial-intelligence-techniques-sl\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"arubanetworks-4922182\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/arubanetworks-4922182\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"asdivertissementinc1617837708654\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/asdivertissementinc1617837708654\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"asigra\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/asigra\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aspentechnologyhq-1353108\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aspentechnologyhq-1353108\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"astadia-1148316\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/astadia-1148316\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"asterasoftware1581022936015\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/asterasoftware1581022936015\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"asyscosoftwarebv\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/asyscosoftwarebv\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ataccama\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ataccama\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"athinfosystems1641442221349\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/athinfosystems1641442221349\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"atlgaming\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/atlgaming\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"atmosera\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/atmosera\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"atomicorp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/atomicorp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"atomizedinc1587939464368\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/atomizedinc1587939464368\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"attunity_cloudbeam\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/attunity_cloudbeam\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"audiocodes\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/audiocodes\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"auraportal\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/auraportal\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"auriq-systems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/auriq-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"automateio1592914387888\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/automateio1592914387888\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"automationanywhere\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/automationanywhere\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"avanseus\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/avanseus\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"avepoint\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/avepoint\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aveva1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aveva1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"avi-networks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/avi-networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aviatrix-systems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aviatrix-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"awingu\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/awingu\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"axedrasag1590581171549\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/axedrasag1590581171549\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"axsguardablenv\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/axsguardablenv\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"axshco\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/axshco\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"axway\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/axway\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"axxana\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/axxana\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"azhpc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/azhpc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"azul\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/azul\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"azure-dockit\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/azure-dockit\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"azurecyclecloud\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/azurecyclecloud\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"AzureDatabricks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/AzureDatabricks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"azureopenshift\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/azureopenshift\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"AzureRT.PIR.Synthetics.ProdTest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/AzureRT.PIR.Synthetics.ProdTest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"AzureRT.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/AzureRT.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"azuretesting\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/azuretesting\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"azuretesting2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/azuretesting2\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"azuretesting3\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/azuretesting3\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"AzureTools1type\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/AzureTools1type\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"baas-techbureau\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/baas-techbureau\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"baffle-io\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/baffle-io\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"balabit\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/balabit\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"barracudanetworks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/barracudanetworks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"basho\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/basho\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"batch\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/batch\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bayware\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bayware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bdy\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bdy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"belindaczsro1588885355210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/belindaczsro1588885355210\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bellsoft1582871421940\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bellsoft1582871421940\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"betsol\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/betsol\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"beyondtrust\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/beyondtrust\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bi-builders-as\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bi-builders-as\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"big-id\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/big-id\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"biolibinc1622552350258\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/biolibinc1622552350258\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bissantechnology1583581147809\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bissantechnology1583581147809\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bitdefendercybersecurity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bitdefendercybersecurity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Bitnami\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Bitnami\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bizagi\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bizagi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bizaptyltd1626489237351\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bizaptyltd1626489237351\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bizdataloome\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bizdataloome\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"biztalk360\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/biztalk360\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"black-duck-software\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/black-duck-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"blackbird\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/blackbird\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"blackmagicdesignincorporated1596492193249\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/blackmagicdesignincorporated1596492193249\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"blk-technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/blk-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"blockapps\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/blockapps\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"blockchain-foundry\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/blockchain-foundry\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"blockstack\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/blockstack\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bloombase\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bloombase\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bluecat\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bluecat\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bluejeansnetwork1638333611902\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bluejeansnetwork1638333611902\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"blueprismlimited-4827145\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/blueprismlimited-4827145\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bluesyntaxconsulting1617654548594\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bluesyntaxconsulting1617654548594\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bluetalon\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bluetalon\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bmc.ctm\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bmc.ctm\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bmcctm.test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bmcctm.test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"boardpacpvtltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/boardpacpvtltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bocada\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bocada\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"boemskats\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/boemskats\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"botanalytics\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/botanalytics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bowspritconsultingopcprivatelimited1596291408582\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bowspritconsultingopcprivatelimited1596291408582\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bravura-software-llc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bravura-software-llc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Brianjac.Symantec.CloudWorkloadProtection\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Brianjac.Symantec.CloudWorkloadProtection\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bricatainc1584472632111\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bricatainc1584472632111\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bright-computing\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bright-computing\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"brightcomputing\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/brightcomputing\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"brocade_communications\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/brocade_communications\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"brutale\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/brutale\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bryte\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bryte\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bssw\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bssw\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bt-americas-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bt-americas-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"buddhalabs\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/buddhalabs\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cadosecurityltd1626856705534\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cadosecurityltd1626856705534\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"calculated_systems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/calculated_systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"caloudi_corp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/caloudi_corp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"canadiancentreforcybersecurity1610638436359\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/canadiancentreforcybersecurity1610638436359\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Canonical\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Canonical\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"canonical-test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/canonical-test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"carto\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/carto\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cask\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cask\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"castaigroupinc1595243474856\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/castaigroupinc1595243474856\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"catechnologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/catechnologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"catonetworksltd1641478570665\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/catonetworksltd1641478570665\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cautelalabs\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cautelalabs\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cavirin\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cavirin\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cayosoftinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cayosoftinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cdatasoftware\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cdatasoftware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cds\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cds\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"celum-gmbh\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/celum-gmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"center-for-internet-security-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/center-for-internet-security-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"centeritysystems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/centeritysystems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"centrixeltd1594135951373\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/centrixeltd1594135951373\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"centrocomputerspa1584528117084\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/centrocomputerspa1584528117084\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"certifiedsecuritysolutionsinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/certifiedsecuritysolutionsinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"certivox\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/certivox\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cfd-direct\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cfd-direct\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"chain\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/chain\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"checkpoint\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/checkpoint\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"chef-software\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/chef-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Chef.Bootstrap.WindowsAzure\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Chef.Bootstrap.WindowsAzure\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"chunghwatelecom1587573688842\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/chunghwatelecom1587573688842\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cinchy\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cinchy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cinegy-gmbh\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cinegy-gmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"circleci\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/circleci\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cires21\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cires21\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cirruswaveinc1579234787943\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cirruswaveinc1579234787943\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cisco\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cisco\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"citrix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/citrix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Citrix.ADC\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Citrix.ADC\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"clapsodeughaftungsbeschrnkt1626333173563\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/clapsodeughaftungsbeschrnkt1626333173563\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"clear-linux-project\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/clear-linux-project\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"clone-systems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/clone-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"clouber\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/clouber\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloud-checkr\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloud-checkr\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloud-cruiser\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloud-cruiser\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloud-infrastructure-services\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloud-infrastructure-services\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudaccelinc1628754426775\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudaccelinc1628754426775\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudbees\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudbees\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudbees-enterprise-jenkins\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudbees-enterprise-jenkins\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudbolt-software\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudbolt-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudboltsoftware1639523402532\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudboltsoftware1639523402532\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudboost\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudboost\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudcover\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudcover\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudenablers-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudenablers-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudentity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudentity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudera\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudera\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudflare\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudflare\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudhouse\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudhouse\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudinfo-4919088\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudinfo-4919088\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudknox\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudknox\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudlanes\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudlanes\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudlink\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudlink\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"CloudLinkEMC.SecureVM\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/CloudLinkEMC.SecureVM\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudmavensolutions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudmavensolutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudneeti\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudneeti\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudplan-gmbh\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudplan-gmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudsecurity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudsecurity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudsoft\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudsoft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudwhizsolutions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudwhizsolutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudwrxsconsultingltd1631029702055\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudwrxsconsultingltd1631029702055\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"clustrix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/clustrix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cncf-upstream\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cncf-upstream\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"codaintelligence1606495376525\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/codaintelligence1606495376525\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"codelathe\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/codelathe\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"codenvy\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/codenvy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"codetwo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/codetwo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cognexcorporation1613759804979\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cognexcorporation1613759804979\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cognitive-scale\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cognitive-scale\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cognizant\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cognizant\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cognosys\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cognosys\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cohesity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cohesity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cohesitydev1592001764720\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cohesitydev1592001764720\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cohesive\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cohesive\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"coin-sciences-ltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/coin-sciences-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"collabcloudlimited\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/collabcloudlimited\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"collibranv1619508098620\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/collibranv1619508098620\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"commscopeinc1632135151062\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/commscopeinc1632135151062\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"commvault\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/commvault\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"compellon\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/compellon\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"composable\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/composable\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"comunity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/comunity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"concentrationheatandmomentumlimited1616154387047\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/concentrationheatandmomentumlimited1616154387047\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Confer\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Confer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"confluentinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/confluentinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"conflux\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/conflux\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"connecting-software\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/connecting-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"consensys\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/consensys\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"containeraider\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/containeraider\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"contiamogmbh\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/contiamogmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"controlcase\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/controlcase\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"controlplane\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/controlplane\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"controlplanecorporation1609967567639\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/controlplanecorporation1609967567639\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"convertigo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/convertigo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"corda\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/corda\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"core-stack\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/core-stack\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"corent-technology-pvt\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/corent-technology-pvt\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"CoreOS\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/CoreOS\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"couchbase\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/couchbase\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cpanel\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cpanel\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"credativ\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/credativ\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cristiesoftwareltd1599488127561\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cristiesoftwareltd1599488127561\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"crunchyard\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/crunchyard\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"crunchyardltd1623835391104\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/crunchyardltd1623835391104\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cryptocom1585727786636\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cryptocom1585727786636\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cryptosense1605170011574\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cryptosense1605170011574\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cryptzone\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cryptzone\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ctm.bmc.com\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ctm.bmc.com\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cubebackup\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cubebackup\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cyberark\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cyberark\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cybernetica-as\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cybernetica-as\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cyxtera\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cyxtera\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"d4t4_solutions-1164305\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/d4t4_solutions-1164305\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"daceitdbasensetrafficpulse1579892024934\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/daceitdbasensetrafficpulse1579892024934\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"danielsol.AzureTools1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/danielsol.AzureTools1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Dans.Windows.App\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Dans.Windows.App\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Dans3.Windows.App\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Dans3.Windows.App\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dataart\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dataart\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"databricks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/databricks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datacore\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datacore\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Datadog.Agent\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Datadog.Agent\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datadynamicsinc1581991927942\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datadynamicsinc1581991927942\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dataguiseinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dataguiseinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dataiku\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dataiku\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datalayer\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datalayer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datanomers1584919038987\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datanomers1584919038987\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datanova\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datanova\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datapredsa\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datapredsa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dataroadtechnologiesllc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dataroadtechnologiesllc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datasciencedojo1586563145740\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datasciencedojo1586563145740\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datastax\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datastax\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datasunrise\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datasunrise\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datavirtualitygmbh\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datavirtualitygmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datometry\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datometry\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dbs-h\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dbs-h\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ddn-whamcloud-5345716\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ddn-whamcloud-5345716\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Debian\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Debian\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dece-4446019\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dece-4446019\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"decisosalesbv\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/decisosalesbv\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"deepcognitioninc1593512758156\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/deepcognitioninc1593512758156\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"deepsiginc1581610210151\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/deepsiginc1581610210151\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"deepsurfacesecurityinc1632943333445\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/deepsurfacesecurityinc1632943333445\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dellemc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dellemc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dell_software\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dell_software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"delphix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/delphix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"deltapathlimited1592886319362\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/deltapathlimited1592886319362\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"denodo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/denodo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"denyall\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/denyall\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"derdack\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/derdack\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"desktopstudioag1580294245574\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/desktopstudioag1580294245574\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"devfactory\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/devfactory\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"device42inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/device42inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"deviceauthorityinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/deviceauthorityinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"devolutionsinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/devolutionsinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"devopsgroup-uk\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/devopsgroup-uk\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"df-portal-user\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/df-portal-user\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dgsecure\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dgsecure\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Dh2ico\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Dh2ico\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dh2icompany\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dh2icompany\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dhi\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dhi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"diagramics\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/diagramics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dicomsystems1584107398321\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dicomsystems1584107398321\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"diehl-metering\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/diehl-metering\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"digisitesystems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/digisitesystems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"digitaldefenseinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/digitaldefenseinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"digitaloffice\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/digitaloffice\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"digitamizeinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/digitamizeinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"digitate\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/digitate\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"diladele\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/diladele\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dimensionalmechanics-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dimensionalmechanics-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"diqa\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/diqa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"diyatech\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/diyatech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"diyotta\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/diyotta\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"djiindustrialincus\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/djiindustrialincus\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"docker\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/docker\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dome9\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dome9\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dorabot\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dorabot\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dremiocorporation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dremiocorporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"drizti\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/drizti\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"drone\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/drone\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dsi\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dsi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dundas\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dundas\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dyadic_security\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dyadic_security\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dynatrace\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dynatrace\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dynatrace.ruxit\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dynatrace.ruxit\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"e-magicinc1587696283171\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/e-magicinc1587696283171\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"eastwind-networks-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/eastwind-networks-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"easysoftwaresro1593005637384\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/easysoftwaresro1593005637384\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ebesllc1637780200500\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ebesllc1637780200500\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ecessa\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ecessa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"edevtech\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/edevtech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"edgelesssystems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/edgelesssystems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"edgenetworks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/edgenetworks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"edispheresoftwareprivatelimited1606199736428\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/edispheresoftwareprivatelimited1606199736428\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"education4sight\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/education4sight\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"eecservicesfzllc1604836615706\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/eecservicesfzllc1604836615706\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"egnyte\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/egnyte\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"egress1589289169584\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/egress1589289169584\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"eikonasystemsgmbh1601729310063\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/eikonasystemsgmbh1601729310063\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Elastic\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Elastic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"elasticbox\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/elasticbox\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"elecard\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/elecard\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"electric-cloud\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/electric-cloud\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"elevateiot\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/elevateiot\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"eleven01\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/eleven01\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"elfiqnetworks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/elfiqnetworks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"emercoin\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/emercoin\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"energisme1601990637842\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/energisme1601990637842\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"enforongo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/enforongo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"engineering-ingegneriainformatica-spa1626786889850\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/engineering-ingegneriainformatica-spa1626786889850\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"engysltd1624364546407\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/engysltd1624364546407\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"enterprise-ethereum-alliance\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/enterprise-ethereum-alliance\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"enterprisedb-corp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/enterprisedb-corp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"enterpriseworx-it\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/enterpriseworx-it\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"epicgames\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/epicgames\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"epicgamesinc1633466121071\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/epicgamesinc1633466121071\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"eproe\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/eproe\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"equalum\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/equalum\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"equilibrium\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/equilibrium\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"equinix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/equinix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ergoninformatikag1581586464404\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ergoninformatikag1581586464404\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"esdenera\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/esdenera\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ESET\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ESET\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"esetresearch1579795941720\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/esetresearch1579795941720\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"esri\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/esri\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"esyon\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/esyon\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ethereum\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ethereum\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"eurolinuxspzoo1620639373013\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/eurolinuxspzoo1620639373013\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"eventtracker\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/eventtracker\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"evertzmicrosystemsltd1586877923009\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/evertzmicrosystemsltd1586877923009\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"evostream-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/evostream-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"exact\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/exact\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"exasol\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/exasol\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"excelero1608461290726\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/excelero1608461290726\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"exivity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/exivity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"exonar\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/exonar\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"f5-networks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/f5-networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"falainapteltd1604661424876\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/falainapteltd1604661424876\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"falconstorsoftware\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/falconstorsoftware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fatalsecurity1604924013537\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fatalsecurity1604924013537\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fatpipe-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fatpipe-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fenestrae-1035066\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fenestrae-1035066\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fidesys\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fidesys\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"filecatalyst\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/filecatalyst\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"filemagellc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/filemagellc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fiorano\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fiorano\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fireeye\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fireeye\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"firehost\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/firehost\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"firemon\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/firemon\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"firstderivativesplc1596469572732\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/firstderivativesplc1596469572732\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"flashgrid-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/flashgrid-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"flexbby\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/flexbby\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"flexbby-5255860\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/flexbby-5255860\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"flexify-io\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/flexify-io\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"flexxibleit\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/flexxibleit\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"flowmon\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/flowmon\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"flynet\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/flynet\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"foghorn-systems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/foghorn-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"forcepoint-llc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/forcepoint-llc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"forescout\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/forescout\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"foreseetiab1613650409016\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/foreseetiab1613650409016\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"formpipesoftwareab\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/formpipesoftwareab\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"forscene\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/forscene\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fortanix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fortanix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fortinet\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fortinet\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fortycloud\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fortycloud\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"forumsystems1599756394904\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/forumsystems1599756394904\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fotopiatechnologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fotopiatechnologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"foxiteuropegmbh1585901066320\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/foxiteuropegmbh1585901066320\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"franzinc1593030725310\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/franzinc1593030725310\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fujitsu_fast\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fujitsu_fast\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fw\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fw\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"g2kgroupgmbh-4821943\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/g2kgroupgmbh-4821943\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gapteq\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gapteq\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gatlingcorp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gatlingcorp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gbs\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gbs\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gemalto-safenet\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gemalto-safenet\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Gemalto.SafeNet.ProtectV\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Gemalto.SafeNet.ProtectV\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"genuagmbhdevid1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/genuagmbhdevid1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"genua_gmbh\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/genua_gmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"genymobile\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/genymobile\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gigamon-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gigamon-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"GitHub\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/GitHub\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gitlab\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gitlab\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gitlabinc1586447921813\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gitlabinc1586447921813\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gladinet-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gladinet-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"glantoninc1591876792991\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/glantoninc1591876792991\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"globalidsinc1596800540598\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/globalidsinc1596800540598\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"globalscape\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/globalscape\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"globalsolutions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/globalsolutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gluwareinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gluwareinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"graphistry\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/graphistry\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"graphitegtc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/graphitegtc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"great-software-laboratory-private-limited\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/great-software-laboratory-private-limited\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"greensql\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/greensql\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"greycorbelsolutions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/greycorbelsolutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gridgain\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gridgain\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"guardicore\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/guardicore\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gxchainfoundationltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gxchainfoundationltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"h2o-ai\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/h2o-ai\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hackerbay\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hackerbay\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hackershub\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hackershub\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"haivision\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/haivision\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"haivisionsystemsinc1580780591922\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/haivisionsystemsinc1580780591922\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"haltdoscompvtltd1587136166019\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/haltdoscompvtltd1587136166019\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hanu\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hanu\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"haproxy-technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/haproxy-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"harmanconnectedservicesinc1594928575643\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/harmanconnectedservicesinc1594928575643\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"harpaitalia\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/harpaitalia\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hashhub\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hashhub\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hcl-technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hcl-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"heimdall-data\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/heimdall-data\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"help-systems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/help-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"helpyio\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/helpyio\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"heretechnologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/heretechnologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hewlett-packard\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hewlett-packard\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hillstone-networks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hillstone-networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hitachi-solutions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hitachi-solutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hitachivantara\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hitachivantara\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"holo-industrie40softwaregmbh1600957636008\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/holo-industrie40softwaregmbh1600957636008\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hortonworks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hortonworks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hpe\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hpe\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"HPE.Security.ApplicationDefender\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/HPE.Security.ApplicationDefender\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"huawei\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/huawei\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hubstor-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hubstor-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hush-hush\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hush-hush\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hvr\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hvr\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hyperglance\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hyperglance\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hypergrid\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hypergrid\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hystaxinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hystaxinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hytrust\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hytrust\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"i-exceed-technology\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/i-exceed-technology\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iaansys\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iaansys\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ibm\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ibm\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ibm-alliance-global-1560886\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ibm-alliance-global-1560886\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ibm-alliance-usa-ny-armonk-hq-ibmstorage-6201192\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ibm-alliance-usa-ny-armonk-hq-ibmstorage-6201192\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ibm-usa-ny-armonk-hq-6275750-ibmcloud-aiops\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ibm-usa-ny-armonk-hq-6275750-ibmcloud-aiops\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iboss\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iboss\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iconics\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iconics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iconsulting-spa\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iconsulting-spa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"icubeconsultancyservicesinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/icubeconsultancyservicesinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iguazio-5069960\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iguazio-5069960\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ikan\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ikan\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iliimbiliimveyazlmsistemlerisanvetica1617000555584\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iliimbiliimveyazlmsistemlerisanvetica1617000555584\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"illuminainc1586452220102\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/illuminainc1586452220102\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"image-technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/image-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"imaginecommunications\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/imaginecommunications\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"imperva\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/imperva\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"impetustechnologiesinc1591959591877\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/impetustechnologiesinc1591959591877\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"imprivatainc1580479939967\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/imprivatainc1580479939967\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"incorta\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/incorta\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"incredibuild\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/incredibuild\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"indexima1594300233028\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/indexima1594300233028\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"industry-weapon\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/industry-weapon\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"industryweapon1587162781833\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/industryweapon1587162781833\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"inenprocesosyplataformasdetisderldecv1615482385424\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/inenprocesosyplataformasdetisderldecv1615482385424\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"inergybv1637141413454\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/inergybv1637141413454\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"infinitesoftwarecorporation1579223971125\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/infinitesoftwarecorporation1579223971125\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"infiotinc1614034091460\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/infiotinc1614034091460\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"influxdata\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/influxdata\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"infoblox\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/infoblox\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"infogix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/infogix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"infolibrarian\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/infolibrarian\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"informatica\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/informatica\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"informationbuilders\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/informationbuilders\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"informationtechnologies_ltd_1179601\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/informationtechnologies_ltd_1179601\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"infotecsinternetsecuritysoftwaregmbh1636129257584\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/infotecsinternetsecuritysoftwaregmbh1636129257584\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"infront-consulting-group-ltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/infront-consulting-group-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"infscapeughaftungsbeschrnkt\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/infscapeughaftungsbeschrnkt\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ingenieurstudiohollaus1579587745438\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ingenieurstudiohollaus1579587745438\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ingrammicro\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ingrammicro\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"innomindssoftware\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/innomindssoftware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"innosepgmbh1618331344164\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/innosepgmbh1618331344164\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"innovatorartificialtechsrl1619180685551\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/innovatorartificialtechsrl1619180685551\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"innovtech\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/innovtech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"instight-technology\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/instight-technology\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"integration-objects\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/integration-objects\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"intel-bigdl\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/intel-bigdl\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"intel-fpga\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/intel-fpga\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"intellicus-technologies-pvt-ltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/intellicus-technologies-pvt-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"intelligent-plant-ltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/intelligent-plant-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"internationaltrustmachinescorporation1582190033865\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/internationaltrustmachinescorporation1582190033865\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"internet20inc1635882446190\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/internet20inc1635882446190\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"intersystems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/intersystems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"intigua\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/intigua\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"intigua1638692632641\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/intigua1638692632641\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"introspecioltd1629872641188\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/introspecioltd1629872641188\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iofabric\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iofabric\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ipinfusion1590066770520\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ipinfusion1590066770520\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ipswitch\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ipswitch\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iqsol\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iqsol\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iquate\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iquate\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iquest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iquest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"irion\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/irion\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ishlangu-load-balancer-adc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ishlangu-load-balancer-adc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"issp-corporation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/issp-corporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"isvtestukbigcat\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/isvtestukbigcat\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"isvtestuklegacy\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/isvtestuklegacy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"it4bizdoo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/it4bizdoo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"itelios\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/itelios\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"itrsgroupltd1620310702149\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/itrsgroupltd1620310702149\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ivanti-inc-pcs\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ivanti-inc-pcs\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ivix1595238749040\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ivix1595238749040\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iwnamespace\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iwnamespace\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"izenda\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/izenda\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"jamcracker\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/jamcracker\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"javlinltd1579185328273\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/javlinltd1579185328273\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"jedox\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/jedox\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"jelastic\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/jelastic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"jetnexus\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/jetnexus\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"jetware-srl\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/jetware-srl\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"jfrog\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/jfrog\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"jm-technology-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/jm-technology-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"jogetinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/jogetinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"juniper-networks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/juniper-networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"justanalytics\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/justanalytics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kaazing\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kaazing\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kadenallc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kadenallc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kali-linux\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kali-linux\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kalkitech\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kalkitech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kaminarioinc1588672951794\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kaminarioinc1588672951794\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Kaspersky.Lab\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Kaspersky.Lab\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"KasperskyLab.SecurityAgent\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/KasperskyLab.SecurityAgent\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kaspersky_lab\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kaspersky_lab\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kazendi\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kazendi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kelverion\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kelverion\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kemptech\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kemptech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kepion\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kepion\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"KevlarExtensions.M365Security.SecureOS\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/KevlarExtensions.M365Security.SecureOS\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"KevlarExtensions.M365SecurityHostIDS\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/KevlarExtensions.M365SecurityHostIDS\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"KevlarExtensions.M365SecurityInventory\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/KevlarExtensions.M365SecurityInventory\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"KevlarExtensions.M365SecurityInventory.NameChangeTest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/KevlarExtensions.M365SecurityInventory.NameChangeTest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"KevlarExtensions.M365SecurityODL\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/KevlarExtensions.M365SecurityODL\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"KevlarExtensions.M365SecurityTLSExtension\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/KevlarExtensions.M365SecurityTLSExtension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kinetica\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kinetica\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kinvolk\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kinvolk\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"knime\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/knime\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kobalt\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kobalt\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kognillc1600118221163\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kognillc1600118221163\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kognitivsparkinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kognitivsparkinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"konginc1581527938760\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/konginc1581527938760\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"konsys-ltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/konsys-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"koverseinc1588716263110\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/koverseinc1588716263110\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kryonsystems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kryonsystems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"krypc-technologies-pvt-ltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/krypc-technologies-pvt-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kyligence\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kyligence\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kyvos-insights-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kyvos-insights-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lab3solutions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lab3solutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lancom-systems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lancom-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lansa\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lansa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lastline\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lastline\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"leap-orbit\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/leap-orbit\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lenovosoftware1604394104439\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lenovosoftware1604394104439\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"leostream-corporation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/leostream-corporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lepide-software\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lepide-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"levacloudllc1602151818089\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/levacloudllc1602151818089\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"libelleag\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/libelleag\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"liberatii\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/liberatii\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"libraesva\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/libraesva\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"liebsoft\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/liebsoft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lightning-analyticsinc1582000647396\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lightning-analyticsinc1582000647396\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"linuxbasedsystemsdesignltd1580878904727\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/linuxbasedsystemsdesignltd1580878904727\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"liquid-files\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/liquid-files\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"liquidware\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/liquidware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"literatu\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/literatu\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"litespeedtechnologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/litespeedtechnologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"litespeed_technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/litespeed_technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"litionenergiegmbh1580128829115\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/litionenergiegmbh1580128829115\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"litmusautomation1582760223280\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/litmusautomation1582760223280\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"llcitpro\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/llcitpro\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lnw-softgmbh\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lnw-softgmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"loadbalancer\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/loadbalancer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"logicflowag1638535407949\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/logicflowag1638535407949\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"logsign\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/logsign\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"logstarecorp1635838645101\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/logstarecorp1635838645101\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"logtrust\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/logtrust\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"logzio\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/logzio\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"looker\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/looker\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lotus_beta_analytics\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lotus_beta_analytics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lti-lt-infotech\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lti-lt-infotech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"luminate-security\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/luminate-security\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"M365Security.KevlarExtensions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/M365Security.KevlarExtensions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"M365SecurityInventory\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/M365SecurityInventory\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"machinesense\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/machinesense\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"madhavajay1632269232059\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/madhavajay1632269232059\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"maidenhead-bridge\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/maidenhead-bridge\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"manageengine\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/manageengine\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mapd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mapd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mapr-technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mapr-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"marand\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/marand\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"marketplace-rdfe-caps\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/marketplace-rdfe-caps\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"marklogic\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/marklogic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"massiveanalytic-\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/massiveanalytic-\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mathworks-deployment\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mathworks-deployment\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mathworks-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mathworks-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"matillion\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/matillion\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mavinglobal\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mavinglobal\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"McAfee.EndpointSecurity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/McAfee.EndpointSecurity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"McAfee.EndpointSecurity.test3\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/McAfee.EndpointSecurity.test3\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"meanio\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/meanio\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"media3-adobe\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/media3-adobe\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"media3-technologies-llc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/media3-technologies-llc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mediatekinc1586141563888\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mediatekinc1586141563888\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mendix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mendix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"merlynnintelligencetechnologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/merlynnintelligencetechnologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"meshifyappinc1622759451429\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/meshifyappinc1622759451429\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"messagesolution\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/messagesolution\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"metaswitch\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/metaswitch\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mettainnovations-4900054\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mettainnovations-4900054\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mfe_azure\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mfe_azure\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mfiles\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mfiles\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mico\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mico\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"micro-focus\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/micro-focus\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microlinkpcukltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microlinkpcukltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microolap\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microolap\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-ads\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-ads\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-agci-gaming\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-agci-gaming\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-aks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-aks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-avere\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-avere\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-azure-batch\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-azure-batch\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-azure-compute\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-azure-compute\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-azure-hdinsight\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-azure-hdinsight\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-crypto\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-crypto\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-dsvm\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-dsvm\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-hyperv\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-hyperv\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-minecraft\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-minecraft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AdminCenter\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AdminCenter\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AKS\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AKS\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.ActiveDirectory\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.ActiveDirectory\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.ActiveDirectory.LinuxSSH\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.ActiveDirectory.LinuxSSH\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Applications\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Applications\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Automation.HybridWorker\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Automation.HybridWorker\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Automation.HybridWorker.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Automation.HybridWorker.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.AzureDefenderForServers\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.AzureDefenderForServers\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.AzureDefenderForSQL\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.AzureDefenderForSQL\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Backup.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Backup.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Backup.Test.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Backup.Test.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.ChangeTracking\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.ChangeTracking\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.ChangeTracking.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.ChangeTracking.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.ChangeTrackingAndInventory\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.ChangeTrackingAndInventory\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Chaos\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Chaos\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Compute.Security\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Compute.Security\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.ContainerUpstream\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.ContainerUpstream\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.DefenderForServers.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.DefenderForServers.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.DefenderForServers.Test2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.DefenderForServers.Test2\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Diagnostics\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Diagnostics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Diagnostics.Build.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Diagnostics.Build.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Diagnostics.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Diagnostics.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test012be407-61ea-4e45-a2c3-71a45999ca21-20191228083800\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test012be407-61ea-4e45-a2c3-71a45999ca21-20191228083800\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test01971384-3044-413b-8b1c-33b5d461bf23-20200107051823\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test01971384-3044-413b-8b1c-33b5d461bf23-20200107051823\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test0225ec7d-b36c-4ac8-82f0-aa4fafaf10a9-20200111051346\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test0225ec7d-b36c-4ac8-82f0-aa4fafaf10a9-20200111051346\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test025e16a1-328d-45a2-b7e3-71f7e4cde046-20191229064028\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test025e16a1-328d-45a2-b7e3-71f7e4cde046-20191229064028\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test02d1f941-5607-4757-8df7-fd8c5631ab45-20200103083810\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test02d1f941-5607-4757-8df7-fd8c5631ab45-20200103083810\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test039abd7f-360c-42a1-ad5d-77527c519286-20191002233412\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test039abd7f-360c-42a1-ad5d-77527c519286-20191002233412\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test04a0f157-c6fb-4595-b6ca-6c82a2338063-20200108101451\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test04a0f157-c6fb-4595-b6ca-6c82a2338063-20200108101451\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test0737f33e-63e0-4ba9-b04b-b93a1de4e997-20200106083639\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test0737f33e-63e0-4ba9-b04b-b93a1de4e997-20200106083639\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test0a44d7be-63fa-418d-a7b6-89a44dd21894-20200107052935\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test0a44d7be-63fa-418d-a7b6-89a44dd21894-20200107052935\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test0d01b487-7f79-4d87-b330-5c025068db45-20191004190331\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test0d01b487-7f79-4d87-b330-5c025068db45-20191004190331\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test0d643748-e6fe-41ad-b4d3-89a289a0cee0-20191003055620\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test0d643748-e6fe-41ad-b4d3-89a289a0cee0-20191003055620\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test0df83c51-5bb9-43f8-8ae9-bc896ea64f78-20200110220221\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test0df83c51-5bb9-43f8-8ae9-bc896ea64f78-20200110220221\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test0f02c246-7e65-4010-9367-ca4530c3897e-20191004190223\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test0f02c246-7e65-4010-9367-ca4530c3897e-20191004190223\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test157494ec-e788-43b0-8d26-a17e39ee07cc-20191002011945\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test157494ec-e788-43b0-8d26-a17e39ee07cc-20191002011945\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test1661d154-b623-4507-8a56-3a89812c456c-20200111083940\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test1661d154-b623-4507-8a56-3a89812c456c-20200111083940\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test17bbd860-f21d-40ab-9026-16e05f2907f0-20200106083451\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test17bbd860-f21d-40ab-9026-16e05f2907f0-20200106083451\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test194e2333-13cd-43e3-b0a4-c8cdcf1a3600-20200110211106\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test194e2333-13cd-43e3-b0a4-c8cdcf1a3600-20200110211106\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test1bc26b19-b8d8-41f9-a26d-818f277bdf93-20200101113139\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test1bc26b19-b8d8-41f9-a26d-818f277bdf93-20200101113139\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test1c840053-9213-4f2a-8f2e-9bf2297908bd-20200108101424\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test1c840053-9213-4f2a-8f2e-9bf2297908bd-20200108101424\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test1d7bba72-69f1-43cd-a38c-41ce0b5f4bae-20200109050041\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test1d7bba72-69f1-43cd-a38c-41ce0b5f4bae-20200109050041\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test1f7a8078-50e7-4a3a-91eb-d178fd4c403b-20191002233353\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test1f7a8078-50e7-4a3a-91eb-d178fd4c403b-20191002233353\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test1fef1fdc-57ba-46a8-a879-475ba7d45a7a-20200106083509\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test1fef1fdc-57ba-46a8-a879-475ba7d45a7a-20200106083509\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test21332f15-f78d-4d31-afac-79b9dc989432-20191231175840\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test21332f15-f78d-4d31-afac-79b9dc989432-20191231175840\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test22f10717-6939-4003-a9ce-38effd8b77d6-20191007191355\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test22f10717-6939-4003-a9ce-38effd8b77d6-20191007191355\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test2334e6e3-bb72-4241-a36f-c2429d69bc0b-20200106050834\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test2334e6e3-bb72-4241-a36f-c2429d69bc0b-20200106050834\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test24fa9eb5-1c59-4425-b61c-30fd638c2a45-20191003203802\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test24fa9eb5-1c59-4425-b61c-30fd638c2a45-20191003203802\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test2521a545-ed61-4a15-bed1-aba7ce1d81ee-20200106050804\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test2521a545-ed61-4a15-bed1-aba7ce1d81ee-20200106050804\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test25c6fe61-1282-43c2-867b-b5039219989c-20200105081851\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test25c6fe61-1282-43c2-867b-b5039219989c-20200105081851\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test27515c8c-6773-4f92-afb0-35691cc6e3b6-20200103083821\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test27515c8c-6773-4f92-afb0-35691cc6e3b6-20200103083821\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test28012680-48e7-4903-877f-2f29464e63d5-20191229033424\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test28012680-48e7-4903-877f-2f29464e63d5-20191229033424\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test29a7a529-d293-4728-9d7f-257ed996e64f-20200108081759\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test29a7a529-d293-4728-9d7f-257ed996e64f-20200108081759\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test2a5f2d2c-b8e3-46c2-850d-a1641c024fe7-20200107084228\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test2a5f2d2c-b8e3-46c2-850d-a1641c024fe7-20200107084228\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test2ce856af-ab17-48f2-ba3e-bcd9af091061-20200110013246\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test2ce856af-ab17-48f2-ba3e-bcd9af091061-20200110013246\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test2e012e83-6361-4365-963f-6ced8a08e91c-20200110211254\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test2e012e83-6361-4365-963f-6ced8a08e91c-20200110211254\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test2ecf67b2-fb63-4461-b6a6-7026c4fb1168-20191002214026\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test2ecf67b2-fb63-4461-b6a6-7026c4fb1168-20191002214026\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test2ede6564-c7cc-44cb-a1a8-902505c9829d-20191003020742\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test2ede6564-c7cc-44cb-a1a8-902505c9829d-20191003020742\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test2f4ebc17-e27e-48d9-9cc3-ff933c21884e-20200106092410\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test2f4ebc17-e27e-48d9-9cc3-ff933c21884e-20200106092410\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test349ee02c-af9b-4663-a963-823b40eefed8-20200108083612\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test349ee02c-af9b-4663-a963-823b40eefed8-20200108083612\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test34cf6b13-b78e-478b-b596-8b661629371d-20191007195455\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test34cf6b13-b78e-478b-b596-8b661629371d-20191007195455\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test36cc5b60-2b23-4a04-bf95-f7865e1141cf-20200110085718\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test36cc5b60-2b23-4a04-bf95-f7865e1141cf-20200110085718\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3712fca9-5cdd-4609-be69-b02aedc5c55c-20200107084115\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3712fca9-5cdd-4609-be69-b02aedc5c55c-20200107084115\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3772d042-92e2-4bcb-99b7-8a6a119cc088-20191231182808\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3772d042-92e2-4bcb-99b7-8a6a119cc088-20191231182808\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test37a6dd64-d44d-465e-85bc-3bc38be90350-20200104083535\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test37a6dd64-d44d-465e-85bc-3bc38be90350-20200104083535\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test381074d5-7156-472b-801a-b35f8fef4cc6-20200105050612\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test381074d5-7156-472b-801a-b35f8fef4cc6-20200105050612\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3877a44d-4c48-40db-80eb-227272d5acd6-20200110103540\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3877a44d-4c48-40db-80eb-227272d5acd6-20200110103540\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test38ecd28e-7018-4672-840c-3044a5e7a6b5-20200111084208\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test38ecd28e-7018-4672-840c-3044a5e7a6b5-20200111084208\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test395a0b49-442a-450c-8a1f-65b0aa3bcf47-20200105083839\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test395a0b49-442a-450c-8a1f-65b0aa3bcf47-20200105083839\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3971b300-edff-44a8-b61b-7f9b7460a8d6-20191003002234\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3971b300-edff-44a8-b61b-7f9b7460a8d6-20191003002234\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3adeec20-7458-4b3d-af26-0b6bc2aae3eb-20200103083751\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3adeec20-7458-4b3d-af26-0b6bc2aae3eb-20200103083751\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3b20dd96-f3e4-4798-998d-8c433c2449a7-20200108083635\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3b20dd96-f3e4-4798-998d-8c433c2449a7-20200108083635\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3ce2fd4a-8b5a-4c7e-b08d-3e48fc0f45e7-20200104083825\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3ce2fd4a-8b5a-4c7e-b08d-3e48fc0f45e7-20200104083825\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3d499ca7-cc8d-41cc-a6dc-ffb1a4ac4942-20200107053004\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3d499ca7-cc8d-41cc-a6dc-ffb1a4ac4942-20200107053004\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3db7240e-5e42-4d6d-b024-cc9fce3c828b-20200105083520\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3db7240e-5e42-4d6d-b024-cc9fce3c828b-20200105083520\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3f6b7341-635f-48d5-a36d-be5dfe3002c4-20200105050937\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3f6b7341-635f-48d5-a36d-be5dfe3002c4-20200105050937\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3fc26934-ede2-4482-ad5e-f66f6135d4a6-20191228055558\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3fc26934-ede2-4482-ad5e-f66f6135d4a6-20191228055558\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test406d077c-6017-4062-bc96-f809147a2331-20200106050748\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test406d077c-6017-4062-bc96-f809147a2331-20200106050748\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test4302336c-e039-4e70-bcb6-9275f6089e4a-20200108144821\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test4302336c-e039-4e70-bcb6-9275f6089e4a-20200108144821\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test453a087e-8435-46db-970a-4ee633cc4c4a-20200102083458\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test453a087e-8435-46db-970a-4ee633cc4c4a-20200102083458\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test46b73afa-2259-4aff-81e1-a58bf24b59aa-20191229033459\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test46b73afa-2259-4aff-81e1-a58bf24b59aa-20191229033459\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test4a3399ee-82ea-46aa-9e3a-5434b588e3b6-20191228013518\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test4a3399ee-82ea-46aa-9e3a-5434b588e3b6-20191228013518\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test4eb7a185-527b-4b9f-93a8-7f1cec9d062e-20191231151207\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test4eb7a185-527b-4b9f-93a8-7f1cec9d062e-20191231151207\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test520a0915-f9f0-4da4-9fa1-1b74fc1470aa-20200102083505\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test520a0915-f9f0-4da4-9fa1-1b74fc1470aa-20200102083505\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test5397960f-023b-4979-9a8b-800d049045a4-20191007195417\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test5397960f-023b-4979-9a8b-800d049045a4-20191007195417\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test55a36387-8a3f-4159-9884-29b97539a253-20200109080443\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test55a36387-8a3f-4159-9884-29b97539a253-20200109080443\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test5645f186-4ee5-4209-af37-423660e3318c-20191231175947\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test5645f186-4ee5-4209-af37-423660e3318c-20191231175947\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test58b4461d-4d2d-4395-b6d2-ab83d4d8c62f-20200111001002\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test58b4461d-4d2d-4395-b6d2-ab83d4d8c62f-20200111001002\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test5b0bf447-d98d-429d-8334-c032d197c743-20191003203846\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test5b0bf447-d98d-429d-8334-c032d197c743-20191003203846\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test5bc90367-1ea2-400b-a40c-321081bae3f3-20200108145035\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test5bc90367-1ea2-400b-a40c-321081bae3f3-20200108145035\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test5bd0562f-e939-456f-a6ee-c848d1aba616-20200101151641\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test5bd0562f-e939-456f-a6ee-c848d1aba616-20200101151641\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test5e4efe90-916c-4c96-802c-1508a5b6da78-20191231151150\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test5e4efe90-916c-4c96-802c-1508a5b6da78-20191231151150\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test5f8f0c10-cc3c-45ec-a068-fb1c7edfa0d9-20200101145958\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test5f8f0c10-cc3c-45ec-a068-fb1c7edfa0d9-20200101145958\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test60a000b7-286c-4b2b-9137-bbc088736419-20200108144920\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test60a000b7-286c-4b2b-9137-bbc088736419-20200108144920\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test6192a01b-ba47-4d08-904a-71647a49a112-20191008041625\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test6192a01b-ba47-4d08-904a-71647a49a112-20191008041625\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test62835538-89c6-4f66-9034-f7a4b176c615-20191007234245\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test62835538-89c6-4f66-9034-f7a4b176c615-20191007234245\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test651e4ad2-ee4a-462e-a506-b56b1969f5d0-20200110230749\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test651e4ad2-ee4a-462e-a506-b56b1969f5d0-20200110230749\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test691d94e5-c40c-4568-94b0-09b08aea42b1-20200106050808\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test691d94e5-c40c-4568-94b0-09b08aea42b1-20200106050808\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test6aa3643c-011a-4180-877f-cad955a8e664-20191007234642\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test6aa3643c-011a-4180-877f-cad955a8e664-20191007234642\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test6cfb469b-8478-468f-9bb5-691affd32abb-20200107083803\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test6cfb469b-8478-468f-9bb5-691affd32abb-20200107083803\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test6d36b6b2-7956-4e62-91c1-c33792fd4bb1-20200110123203\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test6d36b6b2-7956-4e62-91c1-c33792fd4bb1-20200110123203\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test6e28168e-a9c8-4c0a-8b40-60c2a1502d43-20200108052802\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test6e28168e-a9c8-4c0a-8b40-60c2a1502d43-20200108052802\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test6eb763ac-7fbe-4e44-bee7-aad035ee2a7d-20200110084429\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test6eb763ac-7fbe-4e44-bee7-aad035ee2a7d-20200110084429\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test6efec253-f625-46f0-9d74-324f69e963d8-20200107070514\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test6efec253-f625-46f0-9d74-324f69e963d8-20200107070514\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test70fa7e4c-3122-4ff7-aec6-fe75ab660a01-20200108105900\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test70fa7e4c-3122-4ff7-aec6-fe75ab660a01-20200108105900\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test710a5fbf-06c7-46ac-b96d-a29d2586422f-20200108083639\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test710a5fbf-06c7-46ac-b96d-a29d2586422f-20200108083639\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test71d72489-67c6-45e2-b1e6-a19546efc823-20200105112903\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test71d72489-67c6-45e2-b1e6-a19546efc823-20200105112903\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test721fccf1-2b3e-44b6-908f-51b910e88b09-20200111104931\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test721fccf1-2b3e-44b6-908f-51b910e88b09-20200111104931\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test742d0189-9e41-4f1b-8ad3-31c05d34903b-20200111103247\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test742d0189-9e41-4f1b-8ad3-31c05d34903b-20200111103247\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test7836a97c-f56e-48d0-8b5d-61e79aeb3226-20200111071656\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7836a97c-f56e-48d0-8b5d-61e79aeb3226-20200111071656\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test78666b2e-25c8-4a48-931a-3131a0317d73-20191002194352\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test78666b2e-25c8-4a48-931a-3131a0317d73-20191002194352\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test79f13508-fcbd-47b9-988f-1c21ef5e7f2e-20191002015429\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test79f13508-fcbd-47b9-988f-1c21ef5e7f2e-20191002015429\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test79fb90ce-4691-4212-99a7-6e4069bd5984-20191007234256\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test79fb90ce-4691-4212-99a7-6e4069bd5984-20191007234256\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test7a8cf687-6a21-4181-ba98-902fee717bd3-20200104103216\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7a8cf687-6a21-4181-ba98-902fee717bd3-20200104103216\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test7aabf813-6644-483a-b9e0-ba6f8973ba1f-20191002232822\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7aabf813-6644-483a-b9e0-ba6f8973ba1f-20191002232822\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test7c96c10a-0c8f-4ab0-83fd-1ad66a362e33-20191229033458\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7c96c10a-0c8f-4ab0-83fd-1ad66a362e33-20191229033458\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test7e79b6ff-2559-44fe-b3ba-afaa68d63636-20200108112116\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7e79b6ff-2559-44fe-b3ba-afaa68d63636-20200108112116\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test7ea372f7-ea7e-4b9e-bbad-4f35c1567aa2-20200108052736\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7ea372f7-ea7e-4b9e-bbad-4f35c1567aa2-20200108052736\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test7fac3d04-98a5-4fc4-904e-9ea3b86eadc2-20200106050751\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7fac3d04-98a5-4fc4-904e-9ea3b86eadc2-20200106050751\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test7fe20dd6-9ed9-4126-bb1d-031c01ac4550-20200101114504\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7fe20dd6-9ed9-4126-bb1d-031c01ac4550-20200101114504\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test7ff974d9-c841-4249-b05b-bbf663cb4605-20200106084104\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7ff974d9-c841-4249-b05b-bbf663cb4605-20200106084104\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test815bd4d5-fc24-4a47-be20-063c4809902c-20200109050508\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test815bd4d5-fc24-4a47-be20-063c4809902c-20200109050508\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test817654d0-2109-4d95-9284-8c8a9d960d08-20200108053758\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test817654d0-2109-4d95-9284-8c8a9d960d08-20200108053758\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test821ca3b6-dd05-4e80-b3d8-74ba03b2609b-20191231151151\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test821ca3b6-dd05-4e80-b3d8-74ba03b2609b-20191231151151\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test8285dc3e-637d-4d46-9695-adc39cbe7d2f-20200108144457\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test8285dc3e-637d-4d46-9695-adc39cbe7d2f-20200108144457\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test828aae03-9239-4938-a303-c23c42311878-20200102083419\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test828aae03-9239-4938-a303-c23c42311878-20200102083419\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test84afd814-5098-49ab-af99-e50350b5898b-20200110211134\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test84afd814-5098-49ab-af99-e50350b5898b-20200110211134\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test85b08563-b15f-4202-a0bc-f2bc2df2c71a-20200107053335\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test85b08563-b15f-4202-a0bc-f2bc2df2c71a-20200107053335\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test88aac268-c087-4481-b78e-99b920784a33-20200101084853\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test88aac268-c087-4481-b78e-99b920784a33-20200101084853\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test88dbd442-a8cc-4874-81a0-d3192c61df62-20191001224544\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test88dbd442-a8cc-4874-81a0-d3192c61df62-20191001224544\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test894dfb75-a00f-4f0c-894c-cae1c9846ad3-20200105051803\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test894dfb75-a00f-4f0c-894c-cae1c9846ad3-20200105051803\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test8d09bf4d-ee63-4ab1-a986-a4b802418403-20200111051447\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test8d09bf4d-ee63-4ab1-a986-a4b802418403-20200111051447\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test8d4d652b-4f05-4e99-93dd-78b9a36b5c78-20191003203755\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test8d4d652b-4f05-4e99-93dd-78b9a36b5c78-20191003203755\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test8de64739-43d8-4f84-af65-fdb3d0885288-20200108053543\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test8de64739-43d8-4f84-af65-fdb3d0885288-20200108053543\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test8e324c65-a51d-4eeb-9ec8-d5f8662dc041-20191228165107\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test8e324c65-a51d-4eeb-9ec8-d5f8662dc041-20191228165107\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test8e564580-8e53-4300-85f1-bf7f31dd37ff-20200107013348\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test8e564580-8e53-4300-85f1-bf7f31dd37ff-20200107013348\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test8f458ca7-8898-4d58-b93d-bfb0c3da028c-20200109050310\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test8f458ca7-8898-4d58-b93d-bfb0c3da028c-20200109050310\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test901cd6ca-5565-4552-a3de-d204d01935c0-20200108083706\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test901cd6ca-5565-4552-a3de-d204d01935c0-20200108083706\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test907b39e5-4008-4b55-93a0-18e9697b9cf3-20200108053817\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test907b39e5-4008-4b55-93a0-18e9697b9cf3-20200108053817\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test90c2be7c-d7ec-4abf-9fad-fef90fc3ef4d-20191004022234\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test90c2be7c-d7ec-4abf-9fad-fef90fc3ef4d-20191004022234\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test922db678-6ee8-43d5-86ff-6a86e132d332-20200107085231\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test922db678-6ee8-43d5-86ff-6a86e132d332-20200107085231\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test93b88aec-5277-4b1b-910c-7008e972ce91-20200107013304\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test93b88aec-5277-4b1b-910c-7008e972ce91-20200107013304\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test95a9104b-6cba-42d8-82ff-cc37e5ac44db-20200108081723\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test95a9104b-6cba-42d8-82ff-cc37e5ac44db-20200108081723\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test96da1605-19e0-46eb-9ce0-53e840f5e2cb-20200101111729\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test96da1605-19e0-46eb-9ce0-53e840f5e2cb-20200101111729\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test996066b2-7d29-400f-929b-e343a21046f7-20191231151212\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test996066b2-7d29-400f-929b-e343a21046f7-20191231151212\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test99663fff-ed21-4a91-9687-1a6da2abb033-20200106084508\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test99663fff-ed21-4a91-9687-1a6da2abb033-20200106084508\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test9eb5efa5-c3c1-4c13-80a6-11f5eba67372-20200108144852\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test9eb5efa5-c3c1-4c13-80a6-11f5eba67372-20200108144852\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testa3791896-b1fc-491e-ba0d-aefcd8d9e52a-20200105083503\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testa3791896-b1fc-491e-ba0d-aefcd8d9e52a-20200105083503\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testa37ff709-a078-45a0-8187-41733df8e101-20200109050003\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testa37ff709-a078-45a0-8187-41733df8e101-20200109050003\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testa4c5fe4e-936e-4be1-a612-a331aff54a8c-20200111105055\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testa4c5fe4e-936e-4be1-a612-a331aff54a8c-20200111105055\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testa59bce1d-e32c-423d-a86e-945d4aeb98b4-20200107051821\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testa59bce1d-e32c-423d-a86e-945d4aeb98b4-20200107051821\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testa604c059-8279-4f4d-a354-eec27222a06c-20200111051514\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testa604c059-8279-4f4d-a354-eec27222a06c-20200111051514\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testa71fefb1-0d9c-4fb3-8d3d-5dcd12d72b77-20200103103221\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testa71fefb1-0d9c-4fb3-8d3d-5dcd12d72b77-20200103103221\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testa748013d-c5a6-44f9-88eb-43167207c742-20200111051402\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testa748013d-c5a6-44f9-88eb-43167207c742-20200111051402\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testaab67022-4f2b-420d-a06a-2c4045110cdf-20191229033144\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testaab67022-4f2b-420d-a06a-2c4045110cdf-20191229033144\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testacab9541-280f-4491-9f49-ac57653f0a07-20200105083839\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testacab9541-280f-4491-9f49-ac57653f0a07-20200105083839\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testad298437-0349-4cc7-88a9-d8aabcba9df1-20191002233431\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testad298437-0349-4cc7-88a9-d8aabcba9df1-20191002233431\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testadd68286-f9e0-4ab1-a526-d8f3cf0f054e-20200105084128\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testadd68286-f9e0-4ab1-a526-d8f3cf0f054e-20200105084128\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testade4c52b-18f5-4b67-8e93-945358ce4f7d-20191007234259\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testade4c52b-18f5-4b67-8e93-945358ce4f7d-20191007234259\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testae421c1d-0211-4ef2-b372-564ce8ad484a-20200110104035\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testae421c1d-0211-4ef2-b372-564ce8ad484a-20200110104035\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testafbbd8bf-aec5-48bf-8fea-73fa15ccc315-20191001224727\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testafbbd8bf-aec5-48bf-8fea-73fa15ccc315-20191001224727\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testb15148bf-78d2-42d4-ad08-b3ad8fb4b122-20200101084759\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testb15148bf-78d2-42d4-ad08-b3ad8fb4b122-20200101084759\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testb4237708-3688-40ea-85a2-275c05f4d100-20191228083519\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testb4237708-3688-40ea-85a2-275c05f4d100-20191228083519\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testb799a18f-be45-4c5c-8438-163ac2e1f1e7-20191004190529\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testb799a18f-be45-4c5c-8438-163ac2e1f1e7-20191004190529\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testb7cee88a-e5ac-4af4-99c8-7247020b00c3-20200105051201\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testb7cee88a-e5ac-4af4-99c8-7247020b00c3-20200105051201\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testb7df0d9a-27c0-4ca5-b692-08dd90387b98-20200111083443\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testb7df0d9a-27c0-4ca5-b692-08dd90387b98-20200111083443\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testbbf6bf32-4bd0-4381-b8f7-2658f585df4d-20191003203846\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testbbf6bf32-4bd0-4381-b8f7-2658f585df4d-20191003203846\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testbeea1376-166a-4b1a-8923-c907cc9737d9-20200107013336\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testbeea1376-166a-4b1a-8923-c907cc9737d9-20200107013336\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testbf9154e9-6166-48c2-86fe-1f331be606d7-20200107051823\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testbf9154e9-6166-48c2-86fe-1f331be606d7-20200107051823\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc0d7c3c5-23b8-489c-a5e0-ae87c681b696-20200101083539\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc0d7c3c5-23b8-489c-a5e0-ae87c681b696-20200101083539\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc193f31a-5186-4e93-84f6-0e4ab87b73c1-20200107052937\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc193f31a-5186-4e93-84f6-0e4ab87b73c1-20200107052937\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc1c7e8dc-fa8c-47d9-8305-de6d1451b939-20200101085248\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc1c7e8dc-fa8c-47d9-8305-de6d1451b939-20200101085248\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc1d0c917-e2ae-430c-a2ca-383fb0fda046-20191007235839\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc1d0c917-e2ae-430c-a2ca-383fb0fda046-20191007235839\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc23a3fbb-6e95-4c0d-94fc-c8ab14dddf1c-20191231151117\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc23a3fbb-6e95-4c0d-94fc-c8ab14dddf1c-20191231151117\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc2697630-6247-411a-94b3-c2974ad8cbee-20191007195417\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc2697630-6247-411a-94b3-c2974ad8cbee-20191007195417\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc466b80f-670f-4383-89b8-44e0d509fa20-20191002000516\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc466b80f-670f-4383-89b8-44e0d509fa20-20191002000516\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc5c8d9bd-75fa-4db3-9f34-5d7b7098584c-20191003203851\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc5c8d9bd-75fa-4db3-9f34-5d7b7098584c-20191003203851\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc8b6d14b-a5db-48e0-bfad-a2818d432bea-20200104083443\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc8b6d14b-a5db-48e0-bfad-a2818d432bea-20200104083443\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc933efa8-c553-4b93-884f-b7221d9ca789-20191228083750\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc933efa8-c553-4b93-884f-b7221d9ca789-20191228083750\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testcbe8ab80-46ef-49b1-a7bb-4e3d6e50e49f-20200104050811\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testcbe8ab80-46ef-49b1-a7bb-4e3d6e50e49f-20200104050811\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testccc0b5e6-9b0d-451a-8ac4-6f4af293b913-20200106092645\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testccc0b5e6-9b0d-451a-8ac4-6f4af293b913-20200106092645\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testcec64786-04b1-487c-80ec-050da646fb1c-20191005123412\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testcec64786-04b1-487c-80ec-050da646fb1c-20191005123412\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testd104a52f-eba2-401d-8e7f-a841c90f7712-20191228083553\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testd104a52f-eba2-401d-8e7f-a841c90f7712-20191228083553\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testd724cea4-0d3c-4539-b2ff-be08fb23a67e-20200107083714\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testd724cea4-0d3c-4539-b2ff-be08fb23a67e-20200107083714\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testd8e60bac-27ff-4fba-90b8-732c9c5ff91c-20191228083751\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testd8e60bac-27ff-4fba-90b8-732c9c5ff91c-20191228083751\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testd99db4a5-7683-4584-89ad-fefd711de284-20191004190210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testd99db4a5-7683-4584-89ad-fefd711de284-20191004190210\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testd9b4309a-67bc-4cd8-ac47-094cb20ca6aa-20200101090202\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testd9b4309a-67bc-4cd8-ac47-094cb20ca6aa-20200101090202\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testda3320e0-28f2-4146-a002-e06296362711-20191004190115\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testda3320e0-28f2-4146-a002-e06296362711-20191004190115\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testda714121-3240-4253-90c3-48c43f115c90-20200102083419\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testda714121-3240-4253-90c3-48c43f115c90-20200102083419\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testdb357558-60b4-4ee3-9ec3-ba22c5d827fb-20191004020617\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testdb357558-60b4-4ee3-9ec3-ba22c5d827fb-20191004020617\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testdc7230e9-df6d-4edd-a57c-ef7e0432c463-20191002011345\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testdc7230e9-df6d-4edd-a57c-ef7e0432c463-20191002011345\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testdccb59de-436f-4935-bed6-2e677dcaf36a-20200109111802\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testdccb59de-436f-4935-bed6-2e677dcaf36a-20200109111802\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testde985b23-9333-4f6e-a5e8-82025a38b2af-20200102083510\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testde985b23-9333-4f6e-a5e8-82025a38b2af-20200102083510\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Teste271da3e-cbcb-4ee7-8770-f297f414451f-20191003015540\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Teste271da3e-cbcb-4ee7-8770-f297f414451f-20191003015540\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Teste4070edd-aec0-455d-8a79-aecdb7170b6d-20191007234642\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Teste4070edd-aec0-455d-8a79-aecdb7170b6d-20191007234642\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Teste42f351a-4da0-4f0d-93e9-ef1d98e06659-20200108083633\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Teste42f351a-4da0-4f0d-93e9-ef1d98e06659-20200108083633\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Teste66ca23c-f4bf-4eb3-8418-139364d19e7d-20200107062643\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Teste66ca23c-f4bf-4eb3-8418-139364d19e7d-20200107062643\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Teste78b1ab2-1380-48ab-9923-0276cdb7198b-20191001224742\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Teste78b1ab2-1380-48ab-9923-0276cdb7198b-20191001224742\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Teste8607e14-b4f8-472a-bd5b-893b8d9612e6-20200112045941\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Teste8607e14-b4f8-472a-bd5b-893b8d9612e6-20200112045941\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Teste980b80e-3add-42c0-bc98-a84020b2d128-20200108101640\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Teste980b80e-3add-42c0-bc98-a84020b2d128-20200108101640\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Tested79dba9-2d38-4ea9-a01c-56e94b30ca7a-20191007195447\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Tested79dba9-2d38-4ea9-a01c-56e94b30ca7a-20191007195447\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testee9dcf5f-f7c4-4192-a8f4-28e9bc7d0f7c-20191001225005\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testee9dcf5f-f7c4-4192-a8f4-28e9bc7d0f7c-20191001225005\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testefbb340a-b68b-4200-872b-d05e7d29f92d-20191007195432\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testefbb340a-b68b-4200-872b-d05e7d29f92d-20191007195432\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testf1fc0559-6740-48dd-9501-2b933c731d52-20200103083458\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testf1fc0559-6740-48dd-9501-2b933c731d52-20200103083458\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testf41dfc97-bb51-4fba-86ca-a6f2695c415a-20200107050834\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testf41dfc97-bb51-4fba-86ca-a6f2695c415a-20200107050834\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testf5784447-83ed-4c00-8764-ea0f932aafa2-20200106085748\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testf5784447-83ed-4c00-8764-ea0f932aafa2-20200106085748\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testf6128ef6-c13c-420e-8088-0710888ce88b-20200109050003\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testf6128ef6-c13c-420e-8088-0710888ce88b-20200109050003\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testf863ab2c-ada9-4646-84c7-1f83a82375d7-20191229033226\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testf863ab2c-ada9-4646-84c7-1f83a82375d7-20191229033226\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testfac552a7-418f-4baa-8f51-d199ceff5c68-20200103050817\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testfac552a7-418f-4baa-8f51-d199ceff5c68-20200103050817\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testfb7be054-5c15-494f-822c-b64f9a36e2f3-20200105051753\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testfb7be054-5c15-494f-822c-b64f9a36e2f3-20200105051753\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testfc5c7585-6c9a-4aa4-a7c4-1223a94e00c7-20200104083552\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testfc5c7585-6c9a-4aa4-a7c4-1223a94e00c7-20200104083552\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.FileServer.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.FileServer.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Geneva\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Geneva\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.KeyVault\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.KeyVault\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.KeyVault.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.KeyVault.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.LabServices\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.LabServices\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.LabServices.test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.LabServices.test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.Agent\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.Agent\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.Dev\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.Dev\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.Dev.INT\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.Dev.INT\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.Dev.SCALE\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.Dev.SCALE\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.Dev.TEST\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.Dev.TEST\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.GuestHealth\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.GuestHealth\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.DEV\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.DEV\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.INT\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.INT\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.SCALE\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.SCALE\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.TEST\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.TEST\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.INT.Dev\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.INT.Dev\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.SCALE.Dev\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.SCALE.Dev\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.TEST.Dev\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.TEST.Dev\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.WorkloadInsights.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.WorkloadInsights.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.WorkloadInsightsTest.newnamespace\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.WorkloadInsightsTest.newnamespace\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.Workloads\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.Workloads\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.Workloads.Dev\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.Workloads.Dev\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitoring.DependencyAgent\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitoring.DependencyAgent\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitoring.DependencyAgent.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitoring.DependencyAgent.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Networking.DNS\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Networking.DNS\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Networking.SDN\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Networking.SDN\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.NetworkWatcher\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.NetworkWatcher\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.NetworkWatcher.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.NetworkWatcher.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.OpenSSH\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.OpenSSH\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Performance.Diagnostics\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Performance.Diagnostics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Performance.Diagnostics.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Performance.Diagnostics.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.RecoveryServices\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.RecoveryServices.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices.SiteRecovery\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.RecoveryServices.SiteRecovery\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices.SiteRecovery2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.RecoveryServices.SiteRecovery2\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices.WorkloadBackup\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.RecoveryServices.WorkloadBackup\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices.WorkloadBackup.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.RecoveryServices.WorkloadBackup.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.AntimalwareSignature\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.AntimalwareSignature\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.AntimalwareSignature.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.AntimalwareSignature.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.Dsms\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.Dsms\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.Dsms.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.Dsms.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.LinuxAttestation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.LinuxAttestation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.LinuxTestAttestation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.LinuxTestAttestation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.Monitoring\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.Monitoring\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.Monitoring.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.Monitoring.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.Monitoring.Testing\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.Monitoring.Testing\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.TestWindowsAttestation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.TestWindowsAttestation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.WindowsAttestation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.WindowsAttestation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.WinTestAttestation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.WinTestAttestation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Sentinel.DnsExtension.Dev\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Sentinel.DnsExtension.Dev\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.ServiceFabric.MC\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.ServiceFabric.MC\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.ServiceFabric.MC.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.ServiceFabric.MC.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.SiteRecovery.Stage\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.SiteRecovery.Stage\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.SiteRecovery.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.SiteRecovery.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.SiteRecovery2.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.SiteRecovery2.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Test.Identity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Test.Identity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WindowsFabric.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WindowsFabric.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.ReleasePipeTest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.ReleasePipeTest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.ReleasePipeTest.INT\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.ReleasePipeTest.INT\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.ReleasePipeTest.TEST\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.ReleasePipeTest.TEST\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test2\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test3\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test3\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test4\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test4\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test5\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test5\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test5.INT\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test5.INT\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test5.TEST\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test5.TEST\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.VincentTest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.VincentTest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.VincentTest2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.VincentTest2\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.VincentTest3\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.VincentTest3\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.VincentTest4\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.VincentTest4\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.TestTest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.TestTest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.TestTest.INT\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.TestTest.INT\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.TestTest.TEST\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.TestTest.TEST\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Windows.ReleasePipeTest.INT\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Windows.ReleasePipeTest.INT\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Windows.ReleasePipeTest.TEST\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Windows.ReleasePipeTest.TEST\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoring\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoring.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoringTest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoringTest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureData\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureData\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureData.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureData.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.Canary\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights.Canary\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.Corp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights.Corp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.Linux.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights.Linux.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.LinuxTest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights.LinuxTest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.Meya0206\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights.Meya0206\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.MeyaCorp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights.MeyaCorp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.Testing\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights.Testing\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureSecurity.JITAccess\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureSecurity.JITAccess\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.CloudBackup.Workload.Extension\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.CloudBackup.Workload.Extension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.CloudBackup.Workload.Extension.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.CloudBackup.Workload.Extension.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Compute\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Compute.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Compute.TestSar\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute.TestSar\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.CPlat.Core\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.CPlat.Core\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.CPlat.Core.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.CPlat.Core.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Dcsswe.Extensions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Dcsswe.Extensions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.EnterpriseCloud.Monitoring\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.EnterpriseCloud.Monitoring.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.EnterpriseCloud.Monitoring.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Golive.Extensions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Golive.Extensions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.GuestConfig.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.GuestConfig.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.GuestConfiguration\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.GuestConfiguration\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.GuestConfiguration.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.GuestConfiguration.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.GuestConfiguration.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.GuestConfiguration.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.HpcCompute\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.HpcCompute\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.HpcCompute.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.HpcCompute.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.HpcPack\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.HpcPack\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Interceptor\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Interceptor\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.M365\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.M365\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.M365SecurityConfiguration.Kevlar.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.M365SecurityConfiguration.Kevlar.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.ManagedIdentity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.ManagedIdentity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.ManagedServices\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.ManagedServices\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.ManagedServices.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.ManagedServices.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.MonitoringAgent.Extension\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.MonitoringAgent.Extension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Network\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Network\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.OSTCExtensions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.OSTCExtensions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.OSTCExtensions.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.OSTCExtensions.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.OSTCExtensions.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.OSTCExtensions.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.OSTCExtensions.Testing\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.OSTCExtensions.Testing\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Powershell\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Powershell\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Powershell.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Powershell.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Powershell.Test01\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Powershell.Test01\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.SecurityManagement.Kevlar\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.SecurityManagement.Kevlar\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Sentinel.AzureMonitorAgentExtensions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Sentinel.AzureMonitorAgentExtensions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.SoftwareUpdateManagement\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.SoftwareUpdateManagement\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.SoftwareUpdateManagement.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.SoftwareUpdateManagement.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.SqlServer.Managability.IaaS.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.SqlServer.Managability.IaaS.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.SqlServer.Management\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.SqlServer.Management\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.SqlServer.Management.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.SqlServer.Management.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.SystemCenter\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.SystemCenter\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.SystemCenter.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.SystemCenter.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Test.Azure.Workloads\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Test.Azure.Workloads\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.TestSqlServer.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.TestSqlServer.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.ETWTraceListenerService\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.Azure.ETWTraceListenerService\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.RemoteDebug\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.Azure.RemoteDebug\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.RemoteDebug.Json\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.Azure.RemoteDebug.Json\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.ServiceProfiler\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.ServiceProfiler\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.Services\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.Services\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.WindowsAzure.DevTest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.WindowsAzure.DevTest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.WindowsAzure.DevTest.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.WindowsAzure.DevTest.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.WindowsAzure.RemoteDebug\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.WindowsAzure.RemoteDebug\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.WindowsAzure.Test.RemoteDebug\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.WindowsAzure.Test.RemoteDebug\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Windows.Azure.Extensions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Windows.Azure.Extensions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Windows.AzureRemoteApp.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Windows.AzureRemoteApp.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Windows.RemoteDesktop\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Windows.RemoteDesktop\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.WindowsAdminCenter\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.WindowsAdminCenter\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.WindowsAdminCenter.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.WindowsAdminCenter.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.WindowsAzure.Compute\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.WindowsAzure.Compute\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.WindowsAzure.Compute.test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.WindowsAzure.Compute.test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.WVD\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.WVD\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoftagciuk\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoftagciuk\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoftazurecituswarp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoftazurecituswarp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftAzureSiteRecovery\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftAzureSiteRecovery\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftBizTalkServer\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftBizTalkServer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftCBLMariner\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftCBLMariner\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoftcmotest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoftcmotest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoftcorporation1602274591143\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoftcorporation1602274591143\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoftcorporation1620407702632\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoftcorporation1620407702632\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftDynamicsAX\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftDynamicsAX\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftDynamicsGP\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftDynamicsGP\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftDynamicsNAV\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftDynamicsNAV\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoftfarmbeats\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoftfarmbeats\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftHybridCloudStorage\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftHybridCloudStorage\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftOSTC\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftOSTC\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftPowerBI\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftPowerBI\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftRServer\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftRServer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftSharePoint\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftSharePoint\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftSQLServer\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftSQLServer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftTestLinuxPPS\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftTestLinuxPPS\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftVisualStudio\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftVisualStudio\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftWindowsDesktop\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsDesktop\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftWindowsServer\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsServer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftWindowsServerHPCPack\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsServerHPCPack\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft_iot_edge\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft_iot_edge\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft_javaeeonazure_test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft_javaeeonazure_test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microstrategy\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microstrategy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"midasolutions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/midasolutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"middleware\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/middleware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"midfin\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/midfin\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"midvision\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/midvision\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mihupcommunicationspvtltd1599046998010\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mihupcommunicationspvtltd1599046998010\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mindcti\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mindcti\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"minio\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/minio\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"miraclelinux\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/miraclelinux\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"miracl_linux\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/miracl_linux\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"miri-infotech-pvt-ltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/miri-infotech-pvt-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mistio1601460379393\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mistio1601460379393\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mobilab\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mobilab\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"modern-systems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/modern-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"modexblockchaindatabase\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/modexblockchaindatabase\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"monetdbsolutions1611751313758\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/monetdbsolutions1611751313758\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"monitorapp1579029852605\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/monitorapp1579029852605\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"monitorcomputersystemsltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/monitorcomputersystemsltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"moogsoft\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/moogsoft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"morpheus-data\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/morpheus-data\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"moviemasher\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/moviemasher\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mriisoftllc1579457820427\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mriisoftllc1579457820427\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"msopentech\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/msopentech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mtnfog\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mtnfog\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"multisoft-ab\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/multisoft-ab\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mvp-systems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mvp-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mwg_azure\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mwg_azure\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mxhero\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mxhero\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"my-com\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/my-com\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"myarchinc1614657280935\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/myarchinc1614657280935\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"narrativescience\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/narrativescience\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nasuni\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nasuni\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nasunicorporation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nasunicorporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"navicloudrsoftwarepteltd1601967280369\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/navicloudrsoftwarepteltd1601967280369\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ncache\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ncache\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ncbi\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ncbi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ncomputingglobalinc1604353053068\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ncomputingglobalinc1604353053068\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ndl\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ndl\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nebbiolo-technologies-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nebbiolo-technologies-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nec-technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nec-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nefelinetworks1591201080882\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nefelinetworks1591201080882\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"neo4j\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/neo4j\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"neos\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/neos\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"neowaybusinesssolutions-4956350\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/neowaybusinesssolutions-4956350\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netapp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netapp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netatwork\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netatwork\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netfoundryinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netfoundryinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netgate\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netgate\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netikus-net-ltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netikus-net-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netiq\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netiq\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netka\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netka\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netmail\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netmail\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netscout\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netscout\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netspi\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netspi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netsweeper\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netsweeper\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"networksexchangetechnologyltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/networksexchangetechnologyltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netwrix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netwrix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netx\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netx\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"neusoft-neteye\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/neusoft-neteye\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"newnetcommunicationtechnologies1589991852134\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/newnetcommunicationtechnologies1589991852134\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"NewRelic.Infrastructure.Extensions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/NewRelic.Infrastructure.Extensions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"newtglobalconsultingllc1581492268566\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/newtglobalconsultingllc1581492268566\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nextronic-5290868\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nextronic-5290868\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nginxinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nginxinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nice-it-management-solutions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nice-it-management-solutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nicepeopleatwork\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nicepeopleatwork\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nilespartnersinc1617691698386\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nilespartnersinc1617691698386\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"niolabs-5229713\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/niolabs-5229713\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nirvatosoftwarepvtltd1601368706606\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nirvatosoftwarepvtltd1601368706606\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nodejsapi\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nodejsapi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"noianetworklimited1584098036197\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/noianetworklimited1584098036197\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nokiaofamericacorporation1591716055441\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nokiaofamericacorporation1591716055441\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"noobaa\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/noobaa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"norcominformationtechnologygmbhcokgaa\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/norcominformationtechnologygmbhcokgaa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"noricumcloudsolutions1600524477681\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/noricumcloudsolutions1600524477681\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"norsync\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/norsync\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"northbridge-secure\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/northbridge-secure\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nozominetworks1582208017986\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nozominetworks1582208017986\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nri\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nri\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ntegralinc1586961136942\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ntegralinc1586961136942\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ntt-data-intellilink-corporation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ntt-data-intellilink-corporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nttdata\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nttdata\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nttltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nttltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nuco-networks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nuco-networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"numbersbelieve\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/numbersbelieve\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"numtrallcpublisher\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/numtrallcpublisher\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nuxeo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nuxeo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nvidia\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nvidia\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"o2mc-real-time-data-platform\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/o2mc-real-time-data-platform\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"objectivity-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/objectivity-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"objectivity1595351622261\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/objectivity1595351622261\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"oceanblue-cloud\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/oceanblue-cloud\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"OctopusDeploy.Tentacle\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/OctopusDeploy.Tentacle\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"odix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/odix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"odysseuscomputationalsolutions1630242118741\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/odysseuscomputationalsolutions1630242118741\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"odysseyconsultantsltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/odysseyconsultantsltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"officeatwork-ag\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/officeatwork-ag\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"omega-software\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/omega-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"onapsis\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/onapsis\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"oncore_cloud_services-4944214\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/oncore_cloud_services-4944214\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"onexgroup\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/onexgroup\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"onspecta\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/onspecta\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ontology\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ontology\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"onyx-point-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/onyx-point-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"op5\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/op5\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"open-connect-systems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/open-connect-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"opencell\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/opencell\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"openlinkswcom-pago\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/openlinkswcom-pago\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"OpenLogic\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/OpenLogic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"openrefactoryinc1620140917523\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/openrefactoryinc1620140917523\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"openshotstudiosllc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/openshotstudiosllc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"opentext\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/opentext\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"openvpn\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/openvpn\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"opslogix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/opslogix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"opswatinc1619007967290\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/opswatinc1619007967290\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"optimitiveslu1618320281443\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/optimitiveslu1618320281443\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"option3\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/option3\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Oracle\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Oracle\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"oraylis\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/oraylis\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"oraylisbi\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/oraylisbi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"orbs-network\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/orbs-network\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"oriana\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/oriana\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"orientdb\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/orientdb\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"oroinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/oroinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"osirium-ltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/osirium-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"osisoft\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/osisoft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"osnexus\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/osnexus\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"outpost24\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/outpost24\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"outsystems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/outsystems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ovaledge1618392232783\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ovaledge1618392232783\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pachyderminc1585170006545\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pachyderminc1585170006545\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pacteratechnologiesinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pacteratechnologiesinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"paladionnetworkspvtltd1606120508449\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/paladionnetworkspvtltd1606120508449\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"paloaltonetworks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/paloaltonetworks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"panopta\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/panopta\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"panorama-necto\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/panorama-necto\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"panzura-file-system\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/panzura-file-system\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"parabole\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/parabole\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"paralaxiomtechnologiesprivatelimited1596433357886\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/paralaxiomtechnologiesprivatelimited1596433357886\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"parallels\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/parallels\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"parasoft\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/parasoft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"parkersoftwarelimited1609786657569\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/parkersoftwarelimited1609786657569\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"parsec-for-teams\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/parsec-for-teams\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pasifikciptamandiri\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pasifikciptamandiri\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"passlogy\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/passlogy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"paxata\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/paxata\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pcman\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pcman\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"peer-software-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/peer-software-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"penta-security-systems-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/penta-security-systems-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"percona\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/percona\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"perforce\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/perforce\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"periscope-tech-4791746\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/periscope-tech-4791746\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"piolinkinc1582849368309\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/piolinkinc1582849368309\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pivotal\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pivotal\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pixitmedia1591611150480\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pixitmedia1591611150480\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"plesk\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/plesk\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pmsoftwareinternational1603102514882\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pmsoftwareinternational1603102514882\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pnop\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pnop\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"polarityioinc1628691850891\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/polarityioinc1628691850891\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"portalarchitects\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/portalarchitects\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"portsysinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/portsysinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"postgres-pro\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/postgres-pro\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"powerbireach\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/powerbireach\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"prakshepprivatelimited1619949827900\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/prakshepprivatelimited1619949827900\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"prestashop\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/prestashop\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"prestige_informatique-1090178\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/prestige_informatique-1090178\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"prime-strategy\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/prime-strategy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"primekey\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/primekey\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"primestrategynewyorkinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/primestrategynewyorkinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pro-vision\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pro-vision\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"process-one\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/process-one\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"processgold\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/processgold\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"procomputers\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/procomputers\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"procomputerssrl1594239153814\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/procomputerssrl1594239153814\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"profecia\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/profecia\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Profiler.AgentOrchestrationRefactor.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Profiler.AgentOrchestrationRefactor.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Profiler.Master.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Profiler.Master.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"profisee\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/profisee\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"progelspa\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/progelspa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"progresssoftwarecorporation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/progresssoftwarecorporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"proliongmbh1628175060372\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/proliongmbh1628175060372\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"protegrityusainc1627404648458\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/protegrityusainc1627404648458\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"protiviti\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/protiviti\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"proventeq\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/proventeq\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ptc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ptc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ptsecurity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ptsecurity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pulse-secure\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pulse-secure\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pulsesecuretechnologies1638179500151\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pulsesecuretechnologies1638179500151\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"puppet\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/puppet\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"puppeteersoy1601024480557\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/puppeteersoy1601024480557\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"PuppetLabs\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/PuppetLabs\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"PuppetLabs.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/PuppetLabs.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"purestorageinc1578960262525\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/purestorageinc1578960262525\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pydio\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pydio\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pyramidanalytics\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pyramidanalytics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"qlik\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/qlik\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"qnapsystemsinc1601352084032\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/qnapsystemsinc1601352084032\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"qore-technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/qore-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"qs-solutions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/qs-solutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Qualys\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Qualys\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Qualys.LinuxAgent.GrayLabel\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Qualys.LinuxAgent.GrayLabel\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Qualys.WindowsAgent.GrayLabel\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Qualys.WindowsAgent.GrayLabel\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"qualysguard\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/qualysguard\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"quasardb\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/quasardb\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"qubole-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/qubole-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"quest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/quest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"racknap\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/racknap\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rackwareinc1619403669255\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rackwareinc1619403669255\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"radiant-logic\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/radiant-logic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"radware\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/radware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"raincode\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/raincode\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rancher\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rancher\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rapid7\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rapid7\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Rapid7.InsightPlatform\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Rapid7.InsightPlatform\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rapidminer\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rapidminer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"raynetgmbh\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/raynetgmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"readymind\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/readymind\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"realm\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/realm\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"reblaze\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/reblaze\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"RedHat\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/RedHat\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"redhat-rhel\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/redhat-rhel\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"redpoint-global\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/redpoint-global\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"refactr\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/refactr\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"refinitiv\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/refinitiv\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"refinitiv-4807503\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/refinitiv-4807503\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"relevance-lab\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/relevance-lab\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"remotelearner\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/remotelearner\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"res\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/res\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"resco\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/resco\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"resemblesystems1582780358300\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/resemblesystems1582780358300\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"responder-corp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/responder-corp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"revolution-analytics\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/revolution-analytics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rhcsolutions1586957910818\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rhcsolutions1586957910818\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ribboncommunications\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ribboncommunications\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"RightScaleLinux\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/RightScaleLinux\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"RightScaleWindowsServer\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/RightScaleWindowsServer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rimo3\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rimo3\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ringsoftwareresearchanddevelopmentinc1578946072257\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ringsoftwareresearchanddevelopmentinc1578946072257\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"riverbed\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/riverbed\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"RiverbedTechnology\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/RiverbedTechnology\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rmgtechnologiesinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rmgtechnologiesinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rocketml\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rocketml\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rocketsoftware\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rocketsoftware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rohdeschwarzcybersecuritygmbh\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rohdeschwarzcybersecuritygmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rohdeschwarzcybersecuritysas\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rohdeschwarzcybersecuritysas\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"roktech\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/roktech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rsa-security-llc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rsa-security-llc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rsk-labs\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rsk-labs\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rstudio-5237862\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rstudio-5237862\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rtts\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rtts\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rubrik-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rubrik-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"runecastsolutionslimited1614186396822\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/runecastsolutionslimited1614186396822\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"s2ix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/s2ix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"saama\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/saama\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"saasame-limited\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/saasame-limited\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"safesoftwareinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/safesoftwareinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"safeticatechnologiessro\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/safeticatechnologiessro\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"safetica_technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/safetica_technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"safetoopen1585013318137\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/safetoopen1585013318137\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"saltsecurity1583264186232\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/saltsecurity1583264186232\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"saltsecurity1583264669848\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/saltsecurity1583264669848\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"saltstack\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/saltstack\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"samsung-sds\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/samsung-sds\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"samsungelectronics1632860607983\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/samsungelectronics1632860607983\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"samsungsds-cello\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/samsungsds-cello\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"samsungsds_sdbe\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/samsungsds_sdbe\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sandhatatechnologieslimited1615753438737\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sandhatatechnologieslimited1615753438737\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sap\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sap\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sapphiretechnologieslimited1611758579346\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sapphiretechnologieslimited1611758579346\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sas-institute-560503\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sas-institute-560503\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"scaidata\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/scaidata\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"scalearc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/scalearc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"scalegrid\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/scalegrid\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"scality\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/scality\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"schrockeninc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/schrockeninc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sci\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sci\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sciencelogicinc1622565452194\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sciencelogicinc1622565452194\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"scientiamobile\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/scientiamobile\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"scontainug1595751515785\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/scontainug1595751515785\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"scubaanalytics\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/scubaanalytics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"scylladb1631195365807\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/scylladb1631195365807\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"seaqserviciossas1579029207572\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/seaqserviciossas1579029207572\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"searchbloxsoftwareinc1594309037050\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/searchbloxsoftwareinc1594309037050\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"secureworks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/secureworks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"securityonionsolutions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/securityonionsolutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"securityonionsolutionsllc1624649205155\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/securityonionsolutionsllc1624649205155\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"securosis\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/securosis\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"seequentltd1585781751395\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/seequentltd1585781751395\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"semarchy\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/semarchy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"semperis\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/semperis\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"senhasegura\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/senhasegura\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"SentinelOne.LinuxExtension\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/SentinelOne.LinuxExtension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"SentinelOne.WindowsExtension\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/SentinelOne.WindowsExtension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"SentinelOne.WindowsExtension.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/SentinelOne.WindowsExtension.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sentriumsl\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sentriumsl\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sentryone\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sentryone\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sepiosystems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sepiosystems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"seppmailag\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/seppmailag\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"seraumo1620002807288\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/seraumo1620002807288\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"service-control-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/service-control-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sesamesoftwareinc1622125191447\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sesamesoftwareinc1622125191447\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"shadow-soft\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/shadow-soft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"shareshiftneeraj.test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/shareshiftneeraj.test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sightapps\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sightapps\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"signal-sciences\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/signal-sciences\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"silk\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/silk\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"silver-peak-systems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/silver-peak-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"simmachinesinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/simmachinesinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"simontelephonics\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/simontelephonics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"simpledatalabsinc1635791235920\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/simpledatalabsinc1635791235920\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"simplifierag\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/simplifierag\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"simpligov\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/simpligov\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sinefa\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sinefa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sinequa\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sinequa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sinequa1588262295885\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sinequa1588262295885\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"singapore-telecommunications-limited\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/singapore-telecommunications-limited\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sios_datakeeper\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sios_datakeeper\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"siportalinc1581539156321\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/siportalinc1581539156321\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sisenseltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sisenseltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Site24x7\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Site24x7\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sktelecom\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sktelecom\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"skyarc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/skyarc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"skyboxsecurity1585187406404\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/skyboxsecurity1585187406404\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"skylarkcloud\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/skylarkcloud\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"smartbearsoftware\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/smartbearsoftware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"smartmessage-autoflow\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/smartmessage-autoflow\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"snaplogic\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/snaplogic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"snapt-adc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/snapt-adc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"snips\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/snips\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"soasta\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/soasta\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"softnas\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/softnas\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"softwarecentralas1642687699196\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/softwarecentralas1642687699196\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"softwarehut\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/softwarehut\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"softwebsolutions-4518310\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/softwebsolutions-4518310\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"soha\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/soha\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"solanolabs\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/solanolabs\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"solar-security\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/solar-security\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"solarwinds\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/solarwinds\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"solvedevops1643693563360\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/solvedevops1643693563360\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sonicwall-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sonicwall-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sophos\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sophos\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sourcegearllc1616101262784\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sourcegearllc1616101262784\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"south-river-technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/south-river-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"southrivertech1586314123192\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/southrivertech1586314123192\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"spacecurve\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/spacecurve\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"spaceliftinc1625499025476\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/spaceliftinc1625499025476\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"spagobi\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/spagobi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sparklinglogic\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sparklinglogic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"spectralcorelimited1619779004178\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/spectralcorelimited1619779004178\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"spektra\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/spektra\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sphere3d\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sphere3d\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"spideroakinc1588278690933\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/spideroakinc1588278690933\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"spirentcommunications1594084187199\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/spirentcommunications1594084187199\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"splunk\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/splunk\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sproutenetworks1593456311717\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sproutenetworks1593456311717\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sqlstream\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sqlstream\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"squadratechnologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/squadratechnologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"squaredup\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/squaredup\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"src-solution\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/src-solution\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stackato-platform-as-a-service\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stackato-platform-as-a-service\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Stackify.LinuxAgent.Extension\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Stackify.LinuxAgent.Extension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stackstorm\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stackstorm\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"startekfingerprintmatch\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/startekfingerprintmatch\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"startisolucoesemtecnologialtda1635263523201\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/startisolucoesemtecnologialtda1635263523201\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"starwind\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/starwind\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"StatusMonitor2.Diagnostics.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/StatusMonitor2.Diagnostics.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"StatusReport.Diagnostics.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/StatusReport.Diagnostics.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stealthbits\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stealthbits\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"steelhive\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/steelhive\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stonebondtechnologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stonebondtechnologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stonefly\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stonefly\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"storage_made_easy\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/storage_made_easy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stormshield\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stormshield\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"storone1594045543980\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/storone1594045543980\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"storreduce\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/storreduce\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"storwarespzoo1611743234900\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/storwarespzoo1611743234900\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"strangebee1595948424730\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/strangebee1595948424730\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"strataidentity1608323708170\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/strataidentity1608323708170\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stratis-group-ltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stratis-group-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stratodesk1611152769936\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stratodesk1611152769936\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stratumn\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stratumn\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"streamsets\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/streamsets\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"striim\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/striim\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stromasys\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stromasys\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"strongboxitllc1594816423884\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/strongboxitllc1594816423884\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"su\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/su\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"subscription.test.krsh\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/subscription.test.krsh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sumologic\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sumologic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sunatogmbh\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sunatogmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sunday\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sunday\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"SUSE\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/SUSE\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"swoopanalytics\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/swoopanalytics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sycom-technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sycom-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sycompatechnologycompanyinc1588192103892\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sycompatechnologycompanyinc1588192103892\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.CloudWorkloadProtection\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.CloudWorkloadProtection\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.CloudWorkloadProtection.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.CloudWorkloadProtection.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.CloudWorkloadProtection.TestOnStage\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.CloudWorkloadProtection.TestOnStage\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.QA\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.QA\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.staging\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.staging\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.test.ru2.latest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.test.ru2.latest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.test.ru2final\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.test.ru2final\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.test.ru2latest1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.test.ru2latest1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.test.ru4mp1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.test.ru4mp1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.test.ru4mp1.latest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.test.ru4mp1.latest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.test.ru4mp1final\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.test.ru4mp1final\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"symanteccorporation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/symanteccorporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"symantectest1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/symantectest1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"synack-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/synack-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"syncfusion\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/syncfusion\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"syncfusionbigdataplatfor\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/syncfusionbigdataplatfor\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"synechron-technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/synechron-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"synergixinc1585256339250\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/synergixinc1585256339250\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"synnexcorp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/synnexcorp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"syscomcomputerengineeringco1583913200141\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/syscomcomputerengineeringco1583913200141\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"syte\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/syte\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tableau\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tableau\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tactic\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tactic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"talari-networks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/talari-networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"talena-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/talena-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"talend\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/talend\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"talon\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/talon\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tamrinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tamrinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"targit\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/targit\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tata_communications\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tata_communications\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tavanttechnologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tavanttechnologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tavendo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tavendo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"te-systems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/te-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"techdivision\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/techdivision\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"techlatest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/techlatest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"technicheltd1606969724100\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/technicheltd1606969724100\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tecknolab\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tecknolab\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"telepat\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/telepat\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"teloscorporation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/teloscorporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tempered-networks-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tempered-networks-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tenable\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tenable\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tensormakecorpdbaoneclickai1608247756082\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tensormakecorpdbaoneclickai1608247756082\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"teradata\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/teradata\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Teradici\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Teradici\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"teramindinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/teramindinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.Gemalto.SafeNet.ProtectV\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.Gemalto.SafeNet.ProtectV\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.Gemalto.SafeNet.ProtectV.Azure\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.Gemalto.SafeNet.ProtectV.Azure\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.HP.AppDefender\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.HP.AppDefender\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.Microsoft.VisualStudio.Services\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.Microsoft.VisualStudio.Services\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.NJHP.AppDefender\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.NJHP.AppDefender\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.SqlServer.Managability\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.SqlServer.Managability\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.SqlServer.Management\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.SqlServer.Management\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.SqlServer.Management.corext\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.SqlServer.Management.corext\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test1.NJHP.AppDefender\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test1.NJHP.AppDefender\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test3.Microsoft.VisualStudio.Services\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test3.Microsoft.VisualStudio.Services\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"testable1603721901088\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/testable1603721901088\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"testpro\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/testpro\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"test_test_mix3pptest0011614206850774\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/test_test_mix3pptest0011614206850774\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"test_test_mneela1628617140187\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/test_test_mneela1628617140187\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"test_test_pmc2pc1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/test_test_pmc2pc1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thales-vormetric\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thales-vormetric\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thalesdiscplusainc1596561677238\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thalesdiscplusainc1596561677238\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thedatavaluefactoryltd1589348815922\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thedatavaluefactoryltd1589348815922\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thefreebsdfoundation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thefreebsdfoundation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thehdfgroup1616725197741\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thehdfgroup1616725197741\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"theumag1596442827072\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/theumag1596442827072\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"things-board\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/things-board\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thingscareinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thingscareinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thinprintgmbh\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thinprintgmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thorntechnologiesllc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thorntechnologiesllc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thoughtspot-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thoughtspot-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"threatintelligenceptyltd1586824172898\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/threatintelligenceptyltd1586824172898\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tibco-software\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tibco-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tidal-migrations\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tidal-migrations\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tidalmediainc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tidalmediainc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tig\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tig\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tiger-technology\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tiger-technology\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tigergraph\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tigergraph\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"timextender\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/timextender\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tmaxsoft\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tmaxsoft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tmaxsoft1608612658335\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tmaxsoft1608612658335\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tomsawyersoftwarecorp1613579206342\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tomsawyersoftwarecorp1613579206342\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"topicus\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/topicus\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"torusware\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/torusware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"totemo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/totemo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"townsend-security\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/townsend-security\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"transcendinformationinc1609918445926\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/transcendinformationinc1609918445926\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"transientxinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/transientxinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"transvault\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/transvault\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"trendmicro\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/trendmicro\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"TrendMicro.DeepSecurity.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/TrendMicro.DeepSecurity.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"TrendMicro.PortalProtect\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/TrendMicro.PortalProtect\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tresorit\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tresorit\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"trifacta\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/trifacta\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tripleblindinc1615730179432\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tripleblindinc1615730179432\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tripwire-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tripwire-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"truata1612259728221\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/truata1612259728221\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"truestack\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/truestack\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tryonsolutionsinc1596650621083\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tryonsolutionsinc1596650621083\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tsa-public-service\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tsa-public-service\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tunnelbiz\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tunnelbiz\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"turbonet\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/turbonet\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"turbonet1581982683964\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/turbonet1581982683964\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"twistlock\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/twistlock\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"typesafe\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/typesafe\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ubeeko\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ubeeko\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ubercloud\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ubercloud\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"uipath-5054924\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/uipath-5054924\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ulex\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ulex\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"unifi-software\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/unifi-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"unifiedstreaming1598872291606\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/unifiedstreaming1598872291606\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"uniprint-net\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/uniprint-net\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"unitrends\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/unitrends\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"unnisoft\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/unnisoft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"unravel-data\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/unravel-data\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"unscramblsingaporepteltd-4999260\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/unscramblsingaporepteltd-4999260\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"untangle\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/untangle\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"upsolver1594188634150\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/upsolver1594188634150\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"usp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/usp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"valohai\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/valohai\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"valtix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/valtix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"varmournetworks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/varmournetworks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"varnish\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/varnish\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vatacommunicationsinc1581644208717\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vatacommunicationsinc1581644208717\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vaultive-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vaultive-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vbot\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vbot\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vcinityinc1587684340545\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vcinityinc1587684340545\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vectraaiinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vectraaiinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"veeam\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/veeam\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"velocitydb-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/velocitydb-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"velocloud\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/velocloud\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vembutechnologiespvtltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vembutechnologiespvtltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vemn\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vemn\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"veritas\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/veritas\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"versanetworks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/versanetworks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"versasec\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/versasec\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vidispine\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vidispine\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vidizmo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vidizmo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vigyanlabs-innovations-pvt-ltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vigyanlabs-innovations-pvt-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vigyanlabsinc1581413676614\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vigyanlabsinc1581413676614\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"viptela\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/viptela\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vircom\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vircom\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"virtamovecorp1615909247913\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/virtamovecorp1615909247913\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"virtualpulsesro1607008728942\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/virtualpulsesro1607008728942\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"virtuozzointernationalgmbh1626704951469\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/virtuozzointernationalgmbh1626704951469\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"visualknowledgeshare1591795776234\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/visualknowledgeshare1591795776234\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"visualsoft-center\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/visualsoft-center\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vizixiotplatformretail001\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vizixiotplatformretail001\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vmlabinc1613642184700\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vmlabinc1613642184700\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vmturbo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vmturbo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vmware-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vmware-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vnomicinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vnomicinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"voiceelements\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/voiceelements\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"voleatechgmbh1636966911943\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/voleatechgmbh1636966911943\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"volterraedgeservices\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/volterraedgeservices\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Vormetric\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Vormetric\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vscconsultingptyltd1608535888097\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vscconsultingptyltd1608535888097\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vte\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vte\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vu-llc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vu-llc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vyulabsinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vyulabsinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"WAD2AI.Diagnostics.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/WAD2AI.Diagnostics.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"WAD2EventHub.Diagnostics.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/WAD2EventHub.Diagnostics.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wallarm\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wallarm\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wallix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wallix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wandisco\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wandisco\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wanos\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wanos\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wanpath-dba-myworkdrive\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wanpath-dba-myworkdrive\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wardy-it-solutions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wardy-it-solutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"warewolf-esb\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/warewolf-esb\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"watchguard-technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/watchguard-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"webaloinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/webaloinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"websense-apmailpe\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/websense-apmailpe\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"websoft9inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/websoft9inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wedoitllc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wedoitllc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"westernoceansoftwaresprivatelimited\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/westernoceansoftwaresprivatelimited\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wherescapesoftware\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wherescapesoftware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"winmagic_securedoc_cloudvm\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/winmagic_securedoc_cloudvm\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wintellisys-inc-4561600\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wintellisys-inc-4561600\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"witfooinc1590167223060\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/witfooinc1590167223060\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wmspanel\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wmspanel\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wood1595864497589\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wood1595864497589\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"workshare-technology\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/workshare-technology\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"world-programming\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/world-programming\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"worxogo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/worxogo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wowza\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wowza\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"xcontentptyltd-1329748\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/xcontentptyltd-1329748\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"xendata-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/xendata-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"xfinityinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/xfinityinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"xilinx\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/xilinx\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"xoriantcorporationazxteam1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/xoriantcorporationazxteam1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"xoriantsolutionspvtltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/xoriantsolutionspvtltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"xtremedata\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/xtremedata\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"xyzrd-group-ou\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/xyzrd-group-ou\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"yellowfin\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/yellowfin\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"yellowfininternationalptyltd1616363974066\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/yellowfininternationalptyltd1616363974066\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"yokogawarentalleasecorporation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/yokogawarentalleasecorporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"your-shop-online\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/your-shop-online\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"z1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/z1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"z4it-aps\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/z4it-aps\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zabbix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zabbix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zend\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zend\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zenterasystemsinc1605292453288\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zenterasystemsinc1605292453288\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zerodown_software\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zerodown_software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zerto\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zerto\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zettalane_systems-5254599\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zettalane_systems-5254599\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zevenet\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zevenet\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zilliz\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zilliz\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zoomdata\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zoomdata\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zscaler\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zscaler\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zscaler1579058425289\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zscaler1579058425289\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zultysinc1596831546163\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zultysinc1596831546163\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"128technology\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/128technology\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1580863854728\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1580863854728\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1583411303229\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1583411303229\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1583465680865\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1583465680865\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1585118004523\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1585118004523\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1592878437854\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1592878437854\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1597644262255\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1597644262255\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1598955805825\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1598955805825\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1601633765871\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1601633765871\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1602067018799\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1602067018799\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1604579683207\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1604579683207\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1615257339685\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1615257339685\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1615278064010\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1615278064010\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1615455873642\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1615455873642\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1624590941808\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1624590941808\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1640334196980\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1640334196980\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1e\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1e\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"2021ai\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/2021ai\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"247commercelimited1611063941652\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/247commercelimited1611063941652\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"3cx-pbx\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/3cx-pbx\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"42crunch1580391915541\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/42crunch1580391915541\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"4psa\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/4psa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"5nine-software-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/5nine-software-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"6124903\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/6124903\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"7isolutions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/7isolutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"a10networks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/a10networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"a10networks1596136698788\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/a10networks1596136698788\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"abiquo\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/abiquo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"abzoobainc1598420455082\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/abzoobainc1598420455082\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"accedian\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/accedian\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"accelario1579101623356\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/accelario1579101623356\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"accellion\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/accellion\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"accessdata-group\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/accessdata-group\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"accops\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/accops\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aciworldwide\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aciworldwide\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Acronis\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Acronis\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Acronis.Backup\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Acronis.Backup\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"actian-corp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/actian-corp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"actian_matrix\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/actian_matrix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"actifio\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/actifio\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"actiphy\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/actiphy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"actiphyinc1627974506603\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/actiphyinc1627974506603\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"activecountermeasuresinc1631039410073\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/activecountermeasuresinc1631039410073\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"activeeon\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/activeeon\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"activeops\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/activeops\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"adastracorporation-4028356\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/adastracorporation-4028356\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"adgs\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/adgs\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"advantech\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/advantech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"advantech-webaccess\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/advantech-webaccess\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"advantys\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/advantys\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aelf\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aelf\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aerospike\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aerospike\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"affinio\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/affinio\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"affirmednetworks1607630812999\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/affirmednetworks1607630812999\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ageniumscale1591804889317\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ageniumscale1591804889317\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aggregion-ltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aggregion-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"agiledialogssl1603791911858\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/agiledialogssl1603791911858\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"agolo\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/agolo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ahnlabinc1584495174865\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ahnlabinc1584495174865\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ahnlabinc1584495467593\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ahnlabinc1584495467593\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"airalabrus\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/airalabrus\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aiscaler-cache-control-ddos-and-url-rewriting-\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aiscaler-cache-control-ddos-and-url-rewriting-\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aisundowninc1618516322959\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aisundowninc1618516322959\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"akamai-technologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/akamai-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"akumina\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/akumina\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"akumo-software\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/akumo-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"al-tamamunitedtradingcontractingcompany\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/al-tamamunitedtradingcontractingcompany\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"alachisoft\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/alachisoft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"alertlogic\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/alertlogic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"AlertLogic.Extension\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/AlertLogic.Extension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"algolyticstechnologies1606475101268\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/algolyticstechnologies1606475101268\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"alicetrix\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/alicetrix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"alienvault\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/alienvault\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"alldigital-brevity\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/alldigital-brevity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"almalinux\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/almalinux\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"almalinuxosfoundation1628089859865\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/almalinuxosfoundation1628089859865\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"altair-engineering-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/altair-engineering-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"altamira-corporation\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/altamira-corporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"alteryx\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/alteryx\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"altova\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/altova\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"amergint1593131356777\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/amergint1593131356777\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"anjanadatasl1583402861145\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/anjanadatasl1583402861145\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ansys\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ansys\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"antmedia\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/antmedia\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aod\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aod\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"apigee\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/apigee\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"appcara\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appcara\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"appcelerator\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appcelerator\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"appex-networks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appex-networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"appistry\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appistry\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"appiyo_technologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appiyo_technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"appmint_inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appmint_inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"apps-4-rent\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/apps-4-rent\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"appscale-marketplace\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appscale-marketplace\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"appsurifyinc1606933045773\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appsurifyinc1606933045773\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aquaforest\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aquaforest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aquantyinc1598537176913\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aquantyinc1598537176913\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aquaveollc1633710529908\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aquaveollc1633710529908\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"arabesque-group\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/arabesque-group\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"arangodb\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/arangodb\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aras\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aras\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"arcblock\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/arcblock\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"arcesb\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/arcesb\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"arcontechsolutionsprivatelimited1623841797810\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/arcontechsolutionsprivatelimited1623841797810\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"arcserveusallc-marketing\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/arcserveusallc-marketing\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"arista-networks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/arista-networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ariwontollc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ariwontollc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"array_networks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/array_networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"artificial-intelligence-techniques-sl\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/artificial-intelligence-techniques-sl\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"arubanetworks-4922182\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/arubanetworks-4922182\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"asdivertissementinc1617837708654\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/asdivertissementinc1617837708654\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"asigra\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/asigra\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aspentechnologyhq-1353108\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aspentechnologyhq-1353108\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"astadia-1148316\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/astadia-1148316\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"asterasoftware1581022936015\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/asterasoftware1581022936015\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"asyscosoftwarebv\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/asyscosoftwarebv\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ataccama\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ataccama\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"athinfosystems1641442221349\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/athinfosystems1641442221349\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"athinfosystems1648710938250\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/athinfosystems1648710938250\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"atlgaming\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/atlgaming\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"atmosera\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/atmosera\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"atomicorp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/atomicorp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"atomizedinc1587939464368\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/atomizedinc1587939464368\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"attunity_cloudbeam\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/attunity_cloudbeam\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"audiocodes\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/audiocodes\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"auraportal\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/auraportal\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"auriq-systems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/auriq-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"automateio1592914387888\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/automateio1592914387888\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"automationanywhere\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/automationanywhere\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"avanseus\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/avanseus\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"avepoint\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/avepoint\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aveva1\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aveva1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"avi-networks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/avi-networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aviatrix-systems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aviatrix-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"awingu\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/awingu\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"axedrasag1590581171549\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/axedrasag1590581171549\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"axsguardablenv\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/axsguardablenv\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"axshco\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/axshco\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"axway\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/axway\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"axxana\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/axxana\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"azhpc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/azhpc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"azul\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/azul\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"azure-dockit\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/azure-dockit\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"azurecyclecloud\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/azurecyclecloud\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"AzureDatabricks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/AzureDatabricks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"azureopenshift\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/azureopenshift\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"AzureRT.PIR.Synthetics.ProdTest\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/AzureRT.PIR.Synthetics.ProdTest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"AzureRT.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/AzureRT.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"azuretesting\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/azuretesting\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"azuretesting2\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/azuretesting2\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"azuretesting3\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/azuretesting3\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"AzureTools1type\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/AzureTools1type\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"baas-techbureau\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/baas-techbureau\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"baffle-io\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/baffle-io\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"balabit\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/balabit\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"barracudanetworks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/barracudanetworks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"basho\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/basho\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"batch\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/batch\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bayware\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bayware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bdy\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bdy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"belindaczsro1588885355210\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/belindaczsro1588885355210\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bellsoft1582871421940\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bellsoft1582871421940\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"betsol\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/betsol\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"beyondtrust\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/beyondtrust\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bi-builders-as\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bi-builders-as\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"big-id\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/big-id\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"biolibinc1622552350258\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/biolibinc1622552350258\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bissantechnology1583581147809\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bissantechnology1583581147809\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bitdefendercybersecurity\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bitdefendercybersecurity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Bitnami\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Bitnami\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bizagi\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bizagi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bizaptyltd1626489237351\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bizaptyltd1626489237351\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bizdataloome\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bizdataloome\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"biztalk360\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/biztalk360\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"black-duck-software\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/black-duck-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"blackbird\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/blackbird\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"blackmagicdesignincorporated1596492193249\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/blackmagicdesignincorporated1596492193249\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"blk-technologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/blk-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"blockapps\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/blockapps\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"blockchain-foundry\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/blockchain-foundry\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"blockstack\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/blockstack\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bloombase\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bloombase\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bluecat\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bluecat\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bluejeansnetwork1638333611902\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bluejeansnetwork1638333611902\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"blueprismlimited-4827145\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/blueprismlimited-4827145\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bluesyntaxconsulting1617654548594\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bluesyntaxconsulting1617654548594\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bluetalon\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bluetalon\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bmc.ctm\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bmc.ctm\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bmcctm.test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bmcctm.test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"boardpacpvtltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/boardpacpvtltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bocada\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bocada\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"boemskats\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/boemskats\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"botanalytics\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/botanalytics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bowspritconsultingopcprivatelimited1596291408582\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bowspritconsultingopcprivatelimited1596291408582\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bravura-software-llc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bravura-software-llc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Brianjac.Symantec.CloudWorkloadProtection\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Brianjac.Symantec.CloudWorkloadProtection\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bricatainc1584472632111\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bricatainc1584472632111\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bright-computing\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bright-computing\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"brightcomputing\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/brightcomputing\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"brocade_communications\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/brocade_communications\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"brutale\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/brutale\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bryte\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bryte\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bssw\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bssw\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bt-americas-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bt-americas-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"buddhalabs\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/buddhalabs\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cadosecurityltd1626856705534\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cadosecurityltd1626856705534\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"calculated_systems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/calculated_systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"caloudi_corp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/caloudi_corp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"canadiancentreforcybersecurity1610638436359\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/canadiancentreforcybersecurity1610638436359\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Canonical\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Canonical\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"canonical-test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/canonical-test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"carto\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/carto\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cask\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cask\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"castaigroupinc1595243474856\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/castaigroupinc1595243474856\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"catechnologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/catechnologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"catonetworksltd1641478570665\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/catonetworksltd1641478570665\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cautelalabs\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cautelalabs\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cavirin\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cavirin\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cayosoftinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cayosoftinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cdatasoftware\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cdatasoftware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cds\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cds\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"celum-gmbh\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/celum-gmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"center-for-internet-security-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/center-for-internet-security-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"centeritysystems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/centeritysystems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"centrixeltd1594135951373\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/centrixeltd1594135951373\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"centrocomputerspa1584528117084\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/centrocomputerspa1584528117084\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"certifiedsecuritysolutionsinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/certifiedsecuritysolutionsinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"certivox\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/certivox\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cfd-direct\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cfd-direct\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"chain\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/chain\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"checkpoint\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/checkpoint\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"chef-software\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/chef-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Chef.Bootstrap.WindowsAzure\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Chef.Bootstrap.WindowsAzure\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"chunghwatelecom1587573688842\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/chunghwatelecom1587573688842\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cinchy\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cinchy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cinegy-gmbh\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cinegy-gmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ciphertechsinc1646670709341\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ciphertechsinc1646670709341\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"circleci\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/circleci\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cires21\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cires21\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cirruswaveinc1579234787943\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cirruswaveinc1579234787943\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cisco\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cisco\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"citrix\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/citrix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Citrix.ADC\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Citrix.ADC\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"clapsodeughaftungsbeschrnkt1626333173563\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/clapsodeughaftungsbeschrnkt1626333173563\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"clear-linux-project\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/clear-linux-project\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"clone-systems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/clone-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"clouber\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/clouber\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloud-checkr\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloud-checkr\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloud-cruiser\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloud-cruiser\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloud-infrastructure-services\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloud-infrastructure-services\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudaccelinc1628754426775\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudaccelinc1628754426775\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudbees\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudbees\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudbees-enterprise-jenkins\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudbees-enterprise-jenkins\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudbolt-software\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudbolt-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudboltsoftware1639523402532\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudboltsoftware1639523402532\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudboost\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudboost\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudcover\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudcover\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudenablers-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudenablers-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudentity\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudentity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudera\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudera\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudflare\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudflare\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudhouse\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudhouse\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudinfo-4919088\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudinfo-4919088\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudknox\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudknox\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudlanes\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudlanes\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudlink\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudlink\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"CloudLinkEMC.SecureVM\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/CloudLinkEMC.SecureVM\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudmavensolutions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudmavensolutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudneeti\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudneeti\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudplan-gmbh\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudplan-gmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudsecurity\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudsecurity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudsoft\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudsoft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudwhizsolutions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudwhizsolutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudwrxsconsultingltd1631029702055\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudwrxsconsultingltd1631029702055\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"clustrix\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/clustrix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cncf-upstream\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cncf-upstream\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"codaintelligence1606495376525\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/codaintelligence1606495376525\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"codelathe\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/codelathe\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"codenvy\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/codenvy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"codetwo\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/codetwo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cognexcorporation1613759804979\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cognexcorporation1613759804979\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cognexcorporation1647410785838\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cognexcorporation1647410785838\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cognitive-scale\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cognitive-scale\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cognizant\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cognizant\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cognosys\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cognosys\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cohesity\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cohesity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cohesitydev1592001764720\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cohesitydev1592001764720\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cohesive\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cohesive\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"coin-sciences-ltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/coin-sciences-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"collabcloudlimited\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/collabcloudlimited\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"collibranv1619508098620\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/collibranv1619508098620\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"commscopeinc1632135151062\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/commscopeinc1632135151062\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"commvault\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/commvault\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"compellon\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/compellon\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"composable\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/composable\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"comunity\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/comunity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"concentrationheatandmomentumlimited1616154387047\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/concentrationheatandmomentumlimited1616154387047\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Confer\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Confer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"confluentinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/confluentinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"conflux\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/conflux\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"connecting-software\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/connecting-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"consensys\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/consensys\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"containeraider\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/containeraider\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"contiamogmbh\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/contiamogmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"controlcase\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/controlcase\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"controlplane\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/controlplane\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"controlplanecorporation1609967567639\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/controlplanecorporation1609967567639\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"convertigo\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/convertigo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"corda\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/corda\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"core-stack\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/core-stack\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"corent-technology-pvt\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/corent-technology-pvt\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"CoreOS\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/CoreOS\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"couchbase\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/couchbase\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cpanel\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cpanel\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"credativ\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/credativ\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cristiesoftwareltd1599488127561\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cristiesoftwareltd1599488127561\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"crunchyard\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/crunchyard\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"crunchyardltd1623835391104\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/crunchyardltd1623835391104\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cryptocom1585727786636\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cryptocom1585727786636\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cryptosense1605170011574\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cryptosense1605170011574\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cryptzone\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cryptzone\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ctm.bmc.com\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ctm.bmc.com\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ctrliqinc1648673227698\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ctrliqinc1648673227698\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cubebackup\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cubebackup\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cyberark\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cyberark\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cybernetica-as\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cybernetica-as\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cygnalabscorp1646065782458\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cygnalabscorp1646065782458\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cyxtera\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cyxtera\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"d4t4_solutions-1164305\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/d4t4_solutions-1164305\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"daceitdbasensetrafficpulse1579892024934\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/daceitdbasensetrafficpulse1579892024934\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"danielsol.AzureTools1\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/danielsol.AzureTools1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Dans.Windows.App\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Dans.Windows.App\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Dans3.Windows.App\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Dans3.Windows.App\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dataart\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dataart\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"databricks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/databricks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datacore\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datacore\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Datadog.Agent\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Datadog.Agent\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datadynamicsinc1581991927942\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datadynamicsinc1581991927942\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datagapsinc1585348463636\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datagapsinc1585348463636\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dataguiseinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dataguiseinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dataiku\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dataiku\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datalayer\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datalayer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datanomers1584919038987\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datanomers1584919038987\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datanova\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datanova\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datapredsa\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datapredsa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dataroadtechnologiesllc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dataroadtechnologiesllc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datasciencedojo1586563145740\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datasciencedojo1586563145740\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datastax\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datastax\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datasunrise\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datasunrise\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datavirtualitygmbh\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datavirtualitygmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datometry\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datometry\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dbs-h\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dbs-h\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ddn-whamcloud-5345716\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ddn-whamcloud-5345716\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Debian\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Debian\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dece-4446019\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dece-4446019\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"decisosalesbv\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/decisosalesbv\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"deepcognitioninc1593512758156\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/deepcognitioninc1593512758156\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"deepsiginc1581610210151\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/deepsiginc1581610210151\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"deepsurfacesecurityinc1632943333445\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/deepsurfacesecurityinc1632943333445\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dellemc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dellemc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dell_software\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dell_software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"delphix\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/delphix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"deltapathlimited1592886319362\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/deltapathlimited1592886319362\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"denodo\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/denodo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"denyall\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/denyall\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"derdack\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/derdack\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"deskpro1650546806675\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/deskpro1650546806675\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"desktopstudioag1580294245574\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/desktopstudioag1580294245574\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"devfactory\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/devfactory\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"device42inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/device42inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"deviceauthorityinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/deviceauthorityinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"devolutionsinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/devolutionsinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"devopsgroup-uk\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/devopsgroup-uk\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"df-portal-user\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/df-portal-user\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dgsecure\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dgsecure\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Dh2ico\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Dh2ico\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dh2icompany\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dh2icompany\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dhi\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dhi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"diagramics\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/diagramics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dicomsystems1584107398321\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dicomsystems1584107398321\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"diehl-metering\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/diehl-metering\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"digisitesystems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/digisitesystems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"digitaldefenseinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/digitaldefenseinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"digitaloffice\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/digitaloffice\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"digitamizeinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/digitamizeinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"digitate\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/digitate\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"diladele\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/diladele\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dimensionalmechanics-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dimensionalmechanics-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"diqa\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/diqa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"diyatech\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/diyatech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"diyotta\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/diyotta\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"djiindustrialincus\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/djiindustrialincus\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"docker\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/docker\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dome9\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dome9\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dorabot\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dorabot\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dremiocorporation\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dremiocorporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"drizti\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/drizti\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"drone\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/drone\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dsi\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dsi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dundas\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dundas\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dyadic_security\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dyadic_security\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dynatrace\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dynatrace\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dynatrace.ruxit\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dynatrace.ruxit\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"e-magicinc1587696283171\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/e-magicinc1587696283171\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"eastwind-networks-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/eastwind-networks-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"easysoftwaresro1593005637384\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/easysoftwaresro1593005637384\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ebesllc1637780200500\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ebesllc1637780200500\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ecessa\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ecessa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"edevtech\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/edevtech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"edgelesssystems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/edgelesssystems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"edgenetworks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/edgenetworks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"edispheresoftwareprivatelimited1606199736428\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/edispheresoftwareprivatelimited1606199736428\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"education4sight\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/education4sight\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"eecservicesfzllc1604836615706\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/eecservicesfzllc1604836615706\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"egnyte\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/egnyte\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"egress1589289169584\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/egress1589289169584\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"eikonasystemsgmbh1601729310063\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/eikonasystemsgmbh1601729310063\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Elastic\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Elastic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"elasticbox\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/elasticbox\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"elecard\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/elecard\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"electric-cloud\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/electric-cloud\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"elevateiot\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/elevateiot\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"eleven01\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/eleven01\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"elfiqnetworks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/elfiqnetworks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"emercoin\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/emercoin\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"energisme1601990637842\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/energisme1601990637842\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"enforongo\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/enforongo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"engineering-ingegneriainformatica-spa1626786889850\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/engineering-ingegneriainformatica-spa1626786889850\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"engysltd1624364546407\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/engysltd1624364546407\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"enterprise-ethereum-alliance\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/enterprise-ethereum-alliance\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"enterprisedb-corp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/enterprisedb-corp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"enterpriseworx-it\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/enterpriseworx-it\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"epicgames\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/epicgames\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"epicgamesinc1633466121071\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/epicgamesinc1633466121071\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"eproe\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/eproe\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"equalum\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/equalum\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"equilibrium\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/equilibrium\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"equinix\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/equinix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ergoninformatikag1581586464404\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ergoninformatikag1581586464404\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"esdenera\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/esdenera\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ESET\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ESET\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"esetresearch1579795941720\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/esetresearch1579795941720\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"esri\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/esri\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"esyon\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/esyon\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ethereum\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ethereum\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"eurolinuxspzoo1620639373013\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/eurolinuxspzoo1620639373013\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"eventtracker\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/eventtracker\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"evertzmicrosystemsltd1586877923009\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/evertzmicrosystemsltd1586877923009\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"evostream-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/evostream-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"exact\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/exact\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"exasol\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/exasol\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"excelero1608461290726\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/excelero1608461290726\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"exivity\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/exivity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"exonar\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/exonar\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"f5-networks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/f5-networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"falainapteltd1604661424876\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/falainapteltd1604661424876\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"falconstorsoftware\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/falconstorsoftware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fatalsecurity1604924013537\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fatalsecurity1604924013537\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fatpipe-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fatpipe-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fenestrae-1035066\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fenestrae-1035066\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fidesys\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fidesys\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"filecatalyst\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/filecatalyst\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"filemagellc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/filemagellc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fiorano\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fiorano\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fireeye\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fireeye\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"firehost\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/firehost\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"firemon\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/firemon\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"firstderivativesplc1596469572732\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/firstderivativesplc1596469572732\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"flashgrid-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/flashgrid-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"flexbby\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/flexbby\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"flexbby-5255860\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/flexbby-5255860\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"flexify-io\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/flexify-io\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"flexxibleit\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/flexxibleit\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"flowmon\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/flowmon\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"flynet\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/flynet\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"foghorn-systems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/foghorn-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"forcepoint-llc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/forcepoint-llc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"forescout\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/forescout\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"foreseetiab1613650409016\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/foreseetiab1613650409016\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"formpipesoftwareab\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/formpipesoftwareab\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"forscene\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/forscene\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fortanix\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fortanix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fortinet\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fortinet\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fortycloud\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fortycloud\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"forumsystems1599756394904\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/forumsystems1599756394904\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fotopiatechnologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fotopiatechnologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"foxiteuropegmbh1585901066320\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/foxiteuropegmbh1585901066320\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"franzinc1593030725310\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/franzinc1593030725310\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fujitsu_fast\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fujitsu_fast\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fw\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fw\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"g2kgroupgmbh-4821943\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/g2kgroupgmbh-4821943\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gapteq\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gapteq\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gatlingcorp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gatlingcorp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gbs\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gbs\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gemalto-safenet\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gemalto-safenet\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Gemalto.SafeNet.ProtectV\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Gemalto.SafeNet.ProtectV\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"genesistechnologyinc1604912285911\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/genesistechnologyinc1604912285911\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"genuagmbhdevid1\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/genuagmbhdevid1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"genua_gmbh\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/genua_gmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"genymobile\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/genymobile\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gigamon-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gigamon-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"GitHub\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/GitHub\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gitlab\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gitlab\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gitlabinc1586447921813\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gitlabinc1586447921813\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gladinet-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gladinet-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"glantoninc1591876792991\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/glantoninc1591876792991\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"globalidsinc1596800540598\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/globalidsinc1596800540598\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"globalscape\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/globalscape\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"globalsolutions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/globalsolutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gluwareinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gluwareinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"graphistry\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/graphistry\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"graphitegtc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/graphitegtc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"great-software-laboratory-private-limited\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/great-software-laboratory-private-limited\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"greensql\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/greensql\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"greycorbelsolutions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/greycorbelsolutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gridgain\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gridgain\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"guardicore\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/guardicore\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gxchainfoundationltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gxchainfoundationltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"h2o-ai\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/h2o-ai\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hackerbay\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hackerbay\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hackershub\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hackershub\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"haivision\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/haivision\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"haivisionsystemsinc1580780591922\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/haivisionsystemsinc1580780591922\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"haltdoscompvtltd1587136166019\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/haltdoscompvtltd1587136166019\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hammerspace\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hammerspace\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hanu\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hanu\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"haproxy-technologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/haproxy-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"harmanconnectedservicesinc1594928575643\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/harmanconnectedservicesinc1594928575643\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"harpaitalia\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/harpaitalia\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hashhub\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hashhub\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hcl-technologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hcl-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"heimdall-data\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/heimdall-data\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"help-systems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/help-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"helpyio\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/helpyio\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"heretechnologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/heretechnologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hewlett-packard\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hewlett-packard\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hillstone-networks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hillstone-networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hitachi-solutions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hitachi-solutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hitachivantara\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hitachivantara\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"holo-industrie40softwaregmbh1600957636008\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/holo-industrie40softwaregmbh1600957636008\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hortonworks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hortonworks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hpe\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hpe\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"HPE.Security.ApplicationDefender\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/HPE.Security.ApplicationDefender\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"huawei\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/huawei\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hubstor-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hubstor-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hush-hush\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hush-hush\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hvr\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hvr\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hyperglance\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hyperglance\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hypergrid\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hypergrid\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hystaxinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hystaxinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hytrust\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hytrust\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"i-exceed-technology\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/i-exceed-technology\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iaansys\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iaansys\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ibm\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ibm\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ibm-alliance-global-1560886\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ibm-alliance-global-1560886\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ibm-alliance-usa-ny-armonk-hq-ibmstorage-6201192\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ibm-alliance-usa-ny-armonk-hq-ibmstorage-6201192\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ibm-usa-ny-armonk-hq-6275750-ibmcloud-aiops\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ibm-usa-ny-armonk-hq-6275750-ibmcloud-aiops\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iboss\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iboss\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iconics\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iconics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iconsulting-spa\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iconsulting-spa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"icubeconsultancyservicesinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/icubeconsultancyservicesinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iguazio-5069960\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iguazio-5069960\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ikan\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ikan\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iliimbiliimveyazlmsistemlerisanvetica1617000555584\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iliimbiliimveyazlmsistemlerisanvetica1617000555584\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"illuminainc1586452220102\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/illuminainc1586452220102\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"image-technologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/image-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"imaginecommunications\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/imaginecommunications\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"imperva\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/imperva\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"impetustechnologiesinc1591959591877\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/impetustechnologiesinc1591959591877\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"imprivatainc1580479939967\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/imprivatainc1580479939967\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"incorta\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/incorta\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"incredibuild\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/incredibuild\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"indexima1594300233028\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/indexima1594300233028\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"industry-weapon\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/industry-weapon\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"industryweapon1587162781833\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/industryweapon1587162781833\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"inenprocesosyplataformasdetisderldecv1615482385424\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/inenprocesosyplataformasdetisderldecv1615482385424\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"inergybv1637141413454\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/inergybv1637141413454\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"infinitesoftwarecorporation1579223971125\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/infinitesoftwarecorporation1579223971125\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"infiotinc1614034091460\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/infiotinc1614034091460\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"influxdata\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/influxdata\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"infoblox\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/infoblox\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"infogix\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/infogix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"infolibrarian\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/infolibrarian\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"informatica\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/informatica\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"informationbuilders\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/informationbuilders\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"informationtechnologies_ltd_1179601\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/informationtechnologies_ltd_1179601\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"infotecsinternetsecuritysoftwaregmbh1636129257584\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/infotecsinternetsecuritysoftwaregmbh1636129257584\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"infront-consulting-group-ltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/infront-consulting-group-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"infscapeughaftungsbeschrnkt\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/infscapeughaftungsbeschrnkt\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ingenieurstudiohollaus1579587745438\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ingenieurstudiohollaus1579587745438\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ingrammicro\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ingrammicro\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"innomindssoftware\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/innomindssoftware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"innosepgmbh1618331344164\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/innosepgmbh1618331344164\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"innovatorartificialtechsrl1619180685551\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/innovatorartificialtechsrl1619180685551\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"innovtech\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/innovtech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"instight-technology\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/instight-technology\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"integration-objects\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/integration-objects\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"intel-bigdl\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/intel-bigdl\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"intel-fpga\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/intel-fpga\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"intellicus-technologies-pvt-ltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/intellicus-technologies-pvt-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"intelligent-plant-ltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/intelligent-plant-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"intel_corporation\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/intel_corporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"internationaltrustmachinescorporation1582190033865\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/internationaltrustmachinescorporation1582190033865\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"internet20inc1635882446190\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/internet20inc1635882446190\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"intersystems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/intersystems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"intigua\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/intigua\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"intigua1638692632641\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/intigua1638692632641\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"introspecioltd1629872641188\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/introspecioltd1629872641188\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iofabric\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iofabric\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ipinfusion1590066770520\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ipinfusion1590066770520\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ipswitch\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ipswitch\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iqsol\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iqsol\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iquate\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iquate\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iquest\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iquest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"irion\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/irion\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ishlangu-load-balancer-adc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ishlangu-load-balancer-adc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"issp-corporation\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/issp-corporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"isvtestukbigcat\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/isvtestukbigcat\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"isvtestuklegacy\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/isvtestuklegacy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"it4bizdoo\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/it4bizdoo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"itelios\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/itelios\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"itrsgroupltd1620310702149\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/itrsgroupltd1620310702149\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ivanti-inc-pcs\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ivanti-inc-pcs\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ivanti-nzta\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ivanti-nzta\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ivix1595238749040\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ivix1595238749040\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iwnamespace\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iwnamespace\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"izenda\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/izenda\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"jamcracker\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/jamcracker\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"javlinltd1579185328273\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/javlinltd1579185328273\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"jedox\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/jedox\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"jelastic\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/jelastic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"jetnexus\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/jetnexus\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"jetware-srl\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/jetware-srl\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"jfrog\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/jfrog\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"jm-technology-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/jm-technology-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"jogetinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/jogetinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"johnsnowlabsinc1646051154808\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/johnsnowlabsinc1646051154808\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"juniper-networks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/juniper-networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"justanalytics\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/justanalytics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kaazing\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kaazing\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kadenallc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kadenallc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kali-linux\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kali-linux\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kalkitech\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kalkitech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kaminarioinc1588672951794\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kaminarioinc1588672951794\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Kaspersky.Lab\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Kaspersky.Lab\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"KasperskyLab.SecurityAgent\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/KasperskyLab.SecurityAgent\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kaspersky_lab\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kaspersky_lab\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kazendi\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kazendi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kelverion\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kelverion\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kemptech\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kemptech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kepion\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kepion\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"KevlarExtensions.M365Security.SecureOS\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/KevlarExtensions.M365Security.SecureOS\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"KevlarExtensions.M365SecurityHostIDS\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/KevlarExtensions.M365SecurityHostIDS\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"KevlarExtensions.M365SecurityInventory\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/KevlarExtensions.M365SecurityInventory\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"KevlarExtensions.M365SecurityInventory.NameChangeTest\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/KevlarExtensions.M365SecurityInventory.NameChangeTest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"KevlarExtensions.M365SecurityODL\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/KevlarExtensions.M365SecurityODL\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"KevlarExtensions.M365SecurityTLSExtension\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/KevlarExtensions.M365SecurityTLSExtension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kinetica\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kinetica\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kinvolk\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kinvolk\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"knime\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/knime\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kobalt\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kobalt\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kognillc1600118221163\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kognillc1600118221163\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kognitivsparkinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kognitivsparkinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"konginc1581527938760\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/konginc1581527938760\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"konsys-ltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/konsys-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"koverseinc1588716263110\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/koverseinc1588716263110\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kryonsystems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kryonsystems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"krypc-technologies-pvt-ltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/krypc-technologies-pvt-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kyligence\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kyligence\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kyvos-insights-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kyvos-insights-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lab3solutions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lab3solutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lancom-systems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lancom-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lansa\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lansa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lastline\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lastline\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"launchnodesltd1644561451121\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/launchnodesltd1644561451121\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"leap-orbit\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/leap-orbit\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lenovosoftware1604394104439\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lenovosoftware1604394104439\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"leostream-corporation\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/leostream-corporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lepide-software\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lepide-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"levacloudllc1602151818089\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/levacloudllc1602151818089\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"libelleag\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/libelleag\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"liberatii\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/liberatii\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"libraesva\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/libraesva\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"liebsoft\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/liebsoft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lightning-analyticsinc1582000647396\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lightning-analyticsinc1582000647396\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"linuxbasedsystemsdesignltd1580878904727\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/linuxbasedsystemsdesignltd1580878904727\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"liquid-files\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/liquid-files\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"liquidware\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/liquidware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"literatu\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/literatu\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"litespeedtechnologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/litespeedtechnologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"litespeed_technologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/litespeed_technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"litionenergiegmbh1580128829115\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/litionenergiegmbh1580128829115\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"litmusautomation1582760223280\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/litmusautomation1582760223280\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"llcitpro\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/llcitpro\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lnw-softgmbh\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lnw-softgmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"loadbalancer\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/loadbalancer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"logicflowag1638535407949\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/logicflowag1638535407949\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"logsign\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/logsign\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"logstarecorp1635838645101\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/logstarecorp1635838645101\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"logtrust\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/logtrust\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"logzio\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/logzio\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"looker\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/looker\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lotus_beta_analytics\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lotus_beta_analytics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lti-lt-infotech\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lti-lt-infotech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"luminate-security\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/luminate-security\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"M365Security.KevlarExtensions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/M365Security.KevlarExtensions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"M365SecurityInventory\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/M365SecurityInventory\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"machinesense\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/machinesense\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"madhavajay1632269232059\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/madhavajay1632269232059\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"maidenhead-bridge\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/maidenhead-bridge\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"manageengine\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/manageengine\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mapd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mapd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"maplelabsinc1623932715330\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/maplelabsinc1623932715330\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mapr-technologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mapr-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"marand\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/marand\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"marketplace-rdfe-caps\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/marketplace-rdfe-caps\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"marklogic\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/marklogic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"massiveanalytic-\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/massiveanalytic-\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mathworks-deployment\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mathworks-deployment\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mathworks-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mathworks-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"matillion\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/matillion\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mavinglobal\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mavinglobal\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"McAfee.EndpointSecurity\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/McAfee.EndpointSecurity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"McAfee.EndpointSecurity.test3\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/McAfee.EndpointSecurity.test3\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"meanio\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/meanio\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"media3-adobe\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/media3-adobe\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"media3-technologies-llc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/media3-technologies-llc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mediatekinc1586141563888\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mediatekinc1586141563888\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mendix\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mendix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"merlynnintelligencetechnologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/merlynnintelligencetechnologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"meshifyappinc1622759451429\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/meshifyappinc1622759451429\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"messagesolution\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/messagesolution\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"metaswitch\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/metaswitch\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mettainnovations-4900054\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mettainnovations-4900054\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mfe_azure\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mfe_azure\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mfiles\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mfiles\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mico\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mico\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"micro-focus\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/micro-focus\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microlinkpcukltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microlinkpcukltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microolap\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microolap\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsecpteltd1634010681688\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsecpteltd1634010681688\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-ads\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-ads\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-agci-gaming\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-agci-gaming\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-aks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-aks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-avere\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-avere\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-azure-batch\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-azure-batch\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-azure-compute\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-azure-compute\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-azure-hdinsight\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-azure-hdinsight\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-crypto\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-crypto\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-dsvm\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-dsvm\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-hyperv\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-hyperv\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-minecraft\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-minecraft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AdminCenter\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AdminCenter\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AKS\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AKS\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.ActiveDirectory\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.ActiveDirectory\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.ActiveDirectory.LinuxSSH\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.ActiveDirectory.LinuxSSH\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Applications\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Applications\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Automation.HybridWorker\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Automation.HybridWorker\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Automation.HybridWorker.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Automation.HybridWorker.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.AzureDefenderForServers\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.AzureDefenderForServers\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.AzureDefenderForSQL\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.AzureDefenderForSQL\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.AzureHybridBenefit\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.AzureHybridBenefit\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Backup.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Backup.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Backup.Test.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Backup.Test.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Batch\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Batch\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.ChangeTracking\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.ChangeTracking\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.ChangeTracking.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.ChangeTracking.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.ChangeTrackingAndInventory\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.ChangeTrackingAndInventory\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Chaos\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Chaos\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Compute.Security\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Compute.Security\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.ContainerUpstream\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.ContainerUpstream\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.DefenderForServers.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.DefenderForServers.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.DefenderForServers.Test2\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.DefenderForServers.Test2\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Diagnostics\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Diagnostics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Diagnostics.Build.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Diagnostics.Build.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Diagnostics.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Diagnostics.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test012be407-61ea-4e45-a2c3-71a45999ca21-20191228083800\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test01971384-3044-413b-8b1c-33b5d461bf23-20200107051823\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test0225ec7d-b36c-4ac8-82f0-aa4fafaf10a9-20200111051346\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test025e16a1-328d-45a2-b7e3-71f7e4cde046-20191229064028\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test02d1f941-5607-4757-8df7-fd8c5631ab45-20200103083810\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test039abd7f-360c-42a1-ad5d-77527c519286-20191002233412\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test04a0f157-c6fb-4595-b6ca-6c82a2338063-20200108101451\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test0737f33e-63e0-4ba9-b04b-b93a1de4e997-20200106083639\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test0a44d7be-63fa-418d-a7b6-89a44dd21894-20200107052935\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test0d01b487-7f79-4d87-b330-5c025068db45-20191004190331\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test0d643748-e6fe-41ad-b4d3-89a289a0cee0-20191003055620\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test0df83c51-5bb9-43f8-8ae9-bc896ea64f78-20200110220221\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test0f02c246-7e65-4010-9367-ca4530c3897e-20191004190223\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test157494ec-e788-43b0-8d26-a17e39ee07cc-20191002011945\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test1661d154-b623-4507-8a56-3a89812c456c-20200111083940\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test17bbd860-f21d-40ab-9026-16e05f2907f0-20200106083451\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test194e2333-13cd-43e3-b0a4-c8cdcf1a3600-20200110211106\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test1bc26b19-b8d8-41f9-a26d-818f277bdf93-20200101113139\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test1c840053-9213-4f2a-8f2e-9bf2297908bd-20200108101424\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test1d7bba72-69f1-43cd-a38c-41ce0b5f4bae-20200109050041\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test1f7a8078-50e7-4a3a-91eb-d178fd4c403b-20191002233353\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test1fef1fdc-57ba-46a8-a879-475ba7d45a7a-20200106083509\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test21332f15-f78d-4d31-afac-79b9dc989432-20191231175840\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test22f10717-6939-4003-a9ce-38effd8b77d6-20191007191355\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test2334e6e3-bb72-4241-a36f-c2429d69bc0b-20200106050834\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test24fa9eb5-1c59-4425-b61c-30fd638c2a45-20191003203802\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test2521a545-ed61-4a15-bed1-aba7ce1d81ee-20200106050804\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test25c6fe61-1282-43c2-867b-b5039219989c-20200105081851\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test27515c8c-6773-4f92-afb0-35691cc6e3b6-20200103083821\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test28012680-48e7-4903-877f-2f29464e63d5-20191229033424\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test29a7a529-d293-4728-9d7f-257ed996e64f-20200108081759\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test2a5f2d2c-b8e3-46c2-850d-a1641c024fe7-20200107084228\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test2ce856af-ab17-48f2-ba3e-bcd9af091061-20200110013246\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test2e012e83-6361-4365-963f-6ced8a08e91c-20200110211254\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test2ecf67b2-fb63-4461-b6a6-7026c4fb1168-20191002214026\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test2ede6564-c7cc-44cb-a1a8-902505c9829d-20191003020742\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test2f4ebc17-e27e-48d9-9cc3-ff933c21884e-20200106092410\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test349ee02c-af9b-4663-a963-823b40eefed8-20200108083612\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test34cf6b13-b78e-478b-b596-8b661629371d-20191007195455\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test36cc5b60-2b23-4a04-bf95-f7865e1141cf-20200110085718\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3712fca9-5cdd-4609-be69-b02aedc5c55c-20200107084115\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3772d042-92e2-4bcb-99b7-8a6a119cc088-20191231182808\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test37a6dd64-d44d-465e-85bc-3bc38be90350-20200104083535\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test381074d5-7156-472b-801a-b35f8fef4cc6-20200105050612\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3877a44d-4c48-40db-80eb-227272d5acd6-20200110103540\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test38ecd28e-7018-4672-840c-3044a5e7a6b5-20200111084208\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test395a0b49-442a-450c-8a1f-65b0aa3bcf47-20200105083839\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3971b300-edff-44a8-b61b-7f9b7460a8d6-20191003002234\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3adeec20-7458-4b3d-af26-0b6bc2aae3eb-20200103083751\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3b20dd96-f3e4-4798-998d-8c433c2449a7-20200108083635\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3ce2fd4a-8b5a-4c7e-b08d-3e48fc0f45e7-20200104083825\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3d499ca7-cc8d-41cc-a6dc-ffb1a4ac4942-20200107053004\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3db7240e-5e42-4d6d-b024-cc9fce3c828b-20200105083520\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3f6b7341-635f-48d5-a36d-be5dfe3002c4-20200105050937\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3fc26934-ede2-4482-ad5e-f66f6135d4a6-20191228055558\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test406d077c-6017-4062-bc96-f809147a2331-20200106050748\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test4302336c-e039-4e70-bcb6-9275f6089e4a-20200108144821\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test453a087e-8435-46db-970a-4ee633cc4c4a-20200102083458\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test46b73afa-2259-4aff-81e1-a58bf24b59aa-20191229033459\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test4a3399ee-82ea-46aa-9e3a-5434b588e3b6-20191228013518\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test4eb7a185-527b-4b9f-93a8-7f1cec9d062e-20191231151207\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test520a0915-f9f0-4da4-9fa1-1b74fc1470aa-20200102083505\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test5397960f-023b-4979-9a8b-800d049045a4-20191007195417\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test55a36387-8a3f-4159-9884-29b97539a253-20200109080443\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test5645f186-4ee5-4209-af37-423660e3318c-20191231175947\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test58b4461d-4d2d-4395-b6d2-ab83d4d8c62f-20200111001002\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test5b0bf447-d98d-429d-8334-c032d197c743-20191003203846\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test5bc90367-1ea2-400b-a40c-321081bae3f3-20200108145035\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test5bd0562f-e939-456f-a6ee-c848d1aba616-20200101151641\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test5e4efe90-916c-4c96-802c-1508a5b6da78-20191231151150\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test5f8f0c10-cc3c-45ec-a068-fb1c7edfa0d9-20200101145958\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test60a000b7-286c-4b2b-9137-bbc088736419-20200108144920\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test6192a01b-ba47-4d08-904a-71647a49a112-20191008041625\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test62835538-89c6-4f66-9034-f7a4b176c615-20191007234245\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test651e4ad2-ee4a-462e-a506-b56b1969f5d0-20200110230749\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test691d94e5-c40c-4568-94b0-09b08aea42b1-20200106050808\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test6aa3643c-011a-4180-877f-cad955a8e664-20191007234642\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test6cfb469b-8478-468f-9bb5-691affd32abb-20200107083803\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test6d36b6b2-7956-4e62-91c1-c33792fd4bb1-20200110123203\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test6e28168e-a9c8-4c0a-8b40-60c2a1502d43-20200108052802\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test6eb763ac-7fbe-4e44-bee7-aad035ee2a7d-20200110084429\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test6efec253-f625-46f0-9d74-324f69e963d8-20200107070514\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test70fa7e4c-3122-4ff7-aec6-fe75ab660a01-20200108105900\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test710a5fbf-06c7-46ac-b96d-a29d2586422f-20200108083639\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test71d72489-67c6-45e2-b1e6-a19546efc823-20200105112903\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test721fccf1-2b3e-44b6-908f-51b910e88b09-20200111104931\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test742d0189-9e41-4f1b-8ad3-31c05d34903b-20200111103247\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7836a97c-f56e-48d0-8b5d-61e79aeb3226-20200111071656\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test78666b2e-25c8-4a48-931a-3131a0317d73-20191002194352\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test79f13508-fcbd-47b9-988f-1c21ef5e7f2e-20191002015429\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test79fb90ce-4691-4212-99a7-6e4069bd5984-20191007234256\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7a8cf687-6a21-4181-ba98-902fee717bd3-20200104103216\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7aabf813-6644-483a-b9e0-ba6f8973ba1f-20191002232822\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7c96c10a-0c8f-4ab0-83fd-1ad66a362e33-20191229033458\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7e79b6ff-2559-44fe-b3ba-afaa68d63636-20200108112116\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7ea372f7-ea7e-4b9e-bbad-4f35c1567aa2-20200108052736\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7fac3d04-98a5-4fc4-904e-9ea3b86eadc2-20200106050751\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7fe20dd6-9ed9-4126-bb1d-031c01ac4550-20200101114504\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7ff974d9-c841-4249-b05b-bbf663cb4605-20200106084104\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test815bd4d5-fc24-4a47-be20-063c4809902c-20200109050508\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test817654d0-2109-4d95-9284-8c8a9d960d08-20200108053758\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test821ca3b6-dd05-4e80-b3d8-74ba03b2609b-20191231151151\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test8285dc3e-637d-4d46-9695-adc39cbe7d2f-20200108144457\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test828aae03-9239-4938-a303-c23c42311878-20200102083419\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test84afd814-5098-49ab-af99-e50350b5898b-20200110211134\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test85b08563-b15f-4202-a0bc-f2bc2df2c71a-20200107053335\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test88aac268-c087-4481-b78e-99b920784a33-20200101084853\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test88dbd442-a8cc-4874-81a0-d3192c61df62-20191001224544\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test894dfb75-a00f-4f0c-894c-cae1c9846ad3-20200105051803\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test8d09bf4d-ee63-4ab1-a986-a4b802418403-20200111051447\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test8d4d652b-4f05-4e99-93dd-78b9a36b5c78-20191003203755\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test8de64739-43d8-4f84-af65-fdb3d0885288-20200108053543\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test8e324c65-a51d-4eeb-9ec8-d5f8662dc041-20191228165107\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test8e564580-8e53-4300-85f1-bf7f31dd37ff-20200107013348\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test8f458ca7-8898-4d58-b93d-bfb0c3da028c-20200109050310\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test901cd6ca-5565-4552-a3de-d204d01935c0-20200108083706\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test907b39e5-4008-4b55-93a0-18e9697b9cf3-20200108053817\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test90c2be7c-d7ec-4abf-9fad-fef90fc3ef4d-20191004022234\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test922db678-6ee8-43d5-86ff-6a86e132d332-20200107085231\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test93b88aec-5277-4b1b-910c-7008e972ce91-20200107013304\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test95a9104b-6cba-42d8-82ff-cc37e5ac44db-20200108081723\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test96da1605-19e0-46eb-9ce0-53e840f5e2cb-20200101111729\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test996066b2-7d29-400f-929b-e343a21046f7-20191231151212\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test99663fff-ed21-4a91-9687-1a6da2abb033-20200106084508\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test9eb5efa5-c3c1-4c13-80a6-11f5eba67372-20200108144852\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testa3791896-b1fc-491e-ba0d-aefcd8d9e52a-20200105083503\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testa37ff709-a078-45a0-8187-41733df8e101-20200109050003\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testa4c5fe4e-936e-4be1-a612-a331aff54a8c-20200111105055\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testa59bce1d-e32c-423d-a86e-945d4aeb98b4-20200107051821\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testa604c059-8279-4f4d-a354-eec27222a06c-20200111051514\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testa71fefb1-0d9c-4fb3-8d3d-5dcd12d72b77-20200103103221\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testa748013d-c5a6-44f9-88eb-43167207c742-20200111051402\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testaab67022-4f2b-420d-a06a-2c4045110cdf-20191229033144\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testacab9541-280f-4491-9f49-ac57653f0a07-20200105083839\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testad298437-0349-4cc7-88a9-d8aabcba9df1-20191002233431\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testadd68286-f9e0-4ab1-a526-d8f3cf0f054e-20200105084128\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testade4c52b-18f5-4b67-8e93-945358ce4f7d-20191007234259\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testae421c1d-0211-4ef2-b372-564ce8ad484a-20200110104035\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testafbbd8bf-aec5-48bf-8fea-73fa15ccc315-20191001224727\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testb15148bf-78d2-42d4-ad08-b3ad8fb4b122-20200101084759\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testb4237708-3688-40ea-85a2-275c05f4d100-20191228083519\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testb799a18f-be45-4c5c-8438-163ac2e1f1e7-20191004190529\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testb7cee88a-e5ac-4af4-99c8-7247020b00c3-20200105051201\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testb7df0d9a-27c0-4ca5-b692-08dd90387b98-20200111083443\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testbbf6bf32-4bd0-4381-b8f7-2658f585df4d-20191003203846\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testbeea1376-166a-4b1a-8923-c907cc9737d9-20200107013336\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testbf9154e9-6166-48c2-86fe-1f331be606d7-20200107051823\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc0d7c3c5-23b8-489c-a5e0-ae87c681b696-20200101083539\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc193f31a-5186-4e93-84f6-0e4ab87b73c1-20200107052937\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc1c7e8dc-fa8c-47d9-8305-de6d1451b939-20200101085248\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc1d0c917-e2ae-430c-a2ca-383fb0fda046-20191007235839\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc23a3fbb-6e95-4c0d-94fc-c8ab14dddf1c-20191231151117\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc2697630-6247-411a-94b3-c2974ad8cbee-20191007195417\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc466b80f-670f-4383-89b8-44e0d509fa20-20191002000516\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc5c8d9bd-75fa-4db3-9f34-5d7b7098584c-20191003203851\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc8b6d14b-a5db-48e0-bfad-a2818d432bea-20200104083443\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc933efa8-c553-4b93-884f-b7221d9ca789-20191228083750\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testcbe8ab80-46ef-49b1-a7bb-4e3d6e50e49f-20200104050811\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testccc0b5e6-9b0d-451a-8ac4-6f4af293b913-20200106092645\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testcec64786-04b1-487c-80ec-050da646fb1c-20191005123412\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testd104a52f-eba2-401d-8e7f-a841c90f7712-20191228083553\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testd724cea4-0d3c-4539-b2ff-be08fb23a67e-20200107083714\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testd8e60bac-27ff-4fba-90b8-732c9c5ff91c-20191228083751\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testd99db4a5-7683-4584-89ad-fefd711de284-20191004190210\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testd9b4309a-67bc-4cd8-ac47-094cb20ca6aa-20200101090202\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testda3320e0-28f2-4146-a002-e06296362711-20191004190115\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testda714121-3240-4253-90c3-48c43f115c90-20200102083419\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testdb357558-60b4-4ee3-9ec3-ba22c5d827fb-20191004020617\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testdc7230e9-df6d-4edd-a57c-ef7e0432c463-20191002011345\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testdccb59de-436f-4935-bed6-2e677dcaf36a-20200109111802\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testde985b23-9333-4f6e-a5e8-82025a38b2af-20200102083510\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Teste271da3e-cbcb-4ee7-8770-f297f414451f-20191003015540\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Teste4070edd-aec0-455d-8a79-aecdb7170b6d-20191007234642\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Teste42f351a-4da0-4f0d-93e9-ef1d98e06659-20200108083633\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Teste66ca23c-f4bf-4eb3-8418-139364d19e7d-20200107062643\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Teste78b1ab2-1380-48ab-9923-0276cdb7198b-20191001224742\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Teste8607e14-b4f8-472a-bd5b-893b8d9612e6-20200112045941\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Teste980b80e-3add-42c0-bc98-a84020b2d128-20200108101640\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Tested79dba9-2d38-4ea9-a01c-56e94b30ca7a-20191007195447\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testee9dcf5f-f7c4-4192-a8f4-28e9bc7d0f7c-20191001225005\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testefbb340a-b68b-4200-872b-d05e7d29f92d-20191007195432\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testf1fc0559-6740-48dd-9501-2b933c731d52-20200103083458\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testf41dfc97-bb51-4fba-86ca-a6f2695c415a-20200107050834\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testf5784447-83ed-4c00-8764-ea0f932aafa2-20200106085748\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testf6128ef6-c13c-420e-8088-0710888ce88b-20200109050003\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testf863ab2c-ada9-4646-84c7-1f83a82375d7-20191229033226\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testfac552a7-418f-4baa-8f51-d199ceff5c68-20200103050817\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testfb7be054-5c15-494f-822c-b64f9a36e2f3-20200105051753\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testfc5c7585-6c9a-4aa4-a7c4-1223a94e00c7-20200104083552\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.FileServer.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.FileServer.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.FleetDiagnostics\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.FleetDiagnostics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.FleetDiagnostics.Dev\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.FleetDiagnostics.Dev\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Geneva\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Geneva\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.KeyVault\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.KeyVault\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.KeyVault.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.KeyVault.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.LabServices\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.LabServices\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.LabServices.test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.LabServices.test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.Agent\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.Agent\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.Dev\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.Dev\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.Dev.INT\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.Dev.INT\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.Dev.SCALE\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.Dev.SCALE\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.Dev.TEST\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.Dev.TEST\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.GuestHealth\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.GuestHealth\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.DEV\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.DEV\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.INT\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.INT\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.SCALE\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.SCALE\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.TEST\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.TEST\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.INT.Dev\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.INT.Dev\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.SCALE.Dev\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.SCALE.Dev\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.TEST.Dev\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.TEST.Dev\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.WorkloadInsights.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.WorkloadInsights.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.WorkloadInsightsTest.newnamespace\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.WorkloadInsightsTest.newnamespace\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.Workloads\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.Workloads\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.Workloads.Dev\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.Workloads.Dev\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitoring.DependencyAgent\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitoring.DependencyAgent\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitoring.DependencyAgent.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitoring.DependencyAgent.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Networking.DNS\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Networking.DNS\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Networking.SDN\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Networking.SDN\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.NetworkWatcher\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.NetworkWatcher\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.NetworkWatcher.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.NetworkWatcher.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.OpenSSH\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.OpenSSH\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Performance.Diagnostics\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Performance.Diagnostics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Performance.Diagnostics.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Performance.Diagnostics.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.RecoveryServices\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.RecoveryServices.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices.SiteRecovery\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.RecoveryServices.SiteRecovery\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices.SiteRecovery2\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.RecoveryServices.SiteRecovery2\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices.WorkloadBackup\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.RecoveryServices.WorkloadBackup\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices.WorkloadBackup.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.RecoveryServices.WorkloadBackup.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.AntimalwareSignature\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.AntimalwareSignature\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.AntimalwareSignature.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.AntimalwareSignature.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.Dsms\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.Dsms\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.Dsms.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.Dsms.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.LinuxAttestation\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.LinuxAttestation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.LinuxTestAttestation\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.LinuxTestAttestation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.Monitoring\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.Monitoring\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.Monitoring.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.Monitoring.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.Monitoring.Testing\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.Monitoring.Testing\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.TestWindowsAttestation\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.TestWindowsAttestation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.WindowsAttestation\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.WindowsAttestation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.WinTestAttestation\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.WinTestAttestation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Sentinel.DnsExtension.Dev\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Sentinel.DnsExtension.Dev\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.ServiceFabric.MC\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.ServiceFabric.MC\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.ServiceFabric.MC.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.ServiceFabric.MC.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.SiteRecovery.Stage\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.SiteRecovery.Stage\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.SiteRecovery.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.SiteRecovery.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.SiteRecovery2.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.SiteRecovery2.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Test.Identity\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Test.Identity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WindowsFabric.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WindowsFabric.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.ReleasePipeTest\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.ReleasePipeTest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.ReleasePipeTest.INT\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.ReleasePipeTest.INT\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.ReleasePipeTest.TEST\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.ReleasePipeTest.TEST\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test1\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test2\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test2\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test3\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test3\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test4\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test4\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test5\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test5\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test5.INT\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test5.INT\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test5.TEST\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test5.TEST\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.VincentTest\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.VincentTest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.VincentTest2\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.VincentTest2\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.VincentTest3\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.VincentTest3\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.VincentTest4\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.VincentTest4\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.TestTest\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.TestTest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.TestTest.INT\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.TestTest.INT\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.TestTest.TEST\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.TestTest.TEST\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Windows.ReleasePipeTest.INT\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Windows.ReleasePipeTest.INT\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Windows.ReleasePipeTest.TEST\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Windows.ReleasePipeTest.TEST\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoring\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoring.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoringTest\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoringTest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureData\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureData\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureData.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureData.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.Canary\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights.Canary\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.Corp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights.Corp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.Linux.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights.Linux.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.LinuxTest\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights.LinuxTest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.Meya0206\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights.Meya0206\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.MeyaCorp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights.MeyaCorp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.Testing\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights.Testing\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureSecurity.JITAccess\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureSecurity.JITAccess\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.CloudBackup.Workload.Extension\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.CloudBackup.Workload.Extension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.CloudBackup.Workload.Extension.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.CloudBackup.Workload.Extension.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Compute\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Compute.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Compute.TestSar\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute.TestSar\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.CPlat.Core\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.CPlat.Core\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.CPlat.Core.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.CPlat.Core.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Dcsswe.Extensions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Dcsswe.Extensions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.EnterpriseCloud.Monitoring\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.EnterpriseCloud.Monitoring.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.EnterpriseCloud.Monitoring.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Golive.Extensions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Golive.Extensions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.GuestConfig.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.GuestConfig.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.GuestConfiguration\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.GuestConfiguration\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.GuestConfiguration.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.GuestConfiguration.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.GuestConfiguration.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.GuestConfiguration.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.HpcCompute\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.HpcCompute\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.HpcCompute.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.HpcCompute.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.HpcPack\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.HpcPack\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Interceptor\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Interceptor\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.M365\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.M365\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.M365SecurityConfiguration.Kevlar.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.M365SecurityConfiguration.Kevlar.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.ManagedIdentity\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.ManagedIdentity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.ManagedServices\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.ManagedServices\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.ManagedServices.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.ManagedServices.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.MonitoringAgent.Extension\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.MonitoringAgent.Extension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Network\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Network\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.OSTCExtensions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.OSTCExtensions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.OSTCExtensions.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.OSTCExtensions.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.OSTCExtensions.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.OSTCExtensions.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.OSTCExtensions.Testing\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.OSTCExtensions.Testing\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Powershell\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Powershell\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Powershell.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Powershell.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Powershell.Test01\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Powershell.Test01\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.SecurityManagement.Kevlar\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.SecurityManagement.Kevlar\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Sentinel.AzureMonitorAgentExtensions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Sentinel.AzureMonitorAgentExtensions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.SoftwareUpdateManagement\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.SoftwareUpdateManagement\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.SoftwareUpdateManagement.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.SoftwareUpdateManagement.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.SqlServer.Managability.IaaS.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.SqlServer.Managability.IaaS.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.SqlServer.Management\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.SqlServer.Management\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.SqlServer.Management.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.SqlServer.Management.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.SystemCenter\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.SystemCenter\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.SystemCenter.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.SystemCenter.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Test.Azure.Workloads\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Test.Azure.Workloads\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.TestSqlServer.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.TestSqlServer.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.ETWTraceListenerService\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.Azure.ETWTraceListenerService\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.RemoteDebug\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.Azure.RemoteDebug\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.RemoteDebug.Json\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.Azure.RemoteDebug.Json\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.ServiceProfiler\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.ServiceProfiler\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.Services\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.Services\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.WindowsAzure.DevTest\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.WindowsAzure.DevTest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.WindowsAzure.DevTest.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.WindowsAzure.DevTest.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.WindowsAzure.RemoteDebug\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.WindowsAzure.RemoteDebug\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.WindowsAzure.Test.RemoteDebug\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.WindowsAzure.Test.RemoteDebug\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Windows.Azure.Extensions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Windows.Azure.Extensions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Windows.AzureRemoteApp.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Windows.AzureRemoteApp.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Windows.RemoteDesktop\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Windows.RemoteDesktop\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.WindowsAdminCenter\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.WindowsAdminCenter\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.WindowsAdminCenter.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.WindowsAdminCenter.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.WindowsAzure.Compute\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.WindowsAzure.Compute\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.WindowsAzure.Compute.test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.WindowsAzure.Compute.test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.WVD\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.WVD\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoftagciuk\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoftagciuk\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoftazurecituswarp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoftazurecituswarp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftAzureSiteRecovery\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftAzureSiteRecovery\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftBizTalkServer\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftBizTalkServer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftCBLMariner\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftCBLMariner\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoftcmotest\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoftcmotest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoftcorporation1602274591143\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoftcorporation1602274591143\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoftcorporation1620407702632\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoftcorporation1620407702632\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftDynamicsAX\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftDynamicsAX\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftDynamicsGP\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftDynamicsGP\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftDynamicsNAV\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftDynamicsNAV\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoftfarmbeats\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoftfarmbeats\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftHybridCloudStorage\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftHybridCloudStorage\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftOSTC\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftOSTC\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftPowerBI\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftPowerBI\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftRServer\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftRServer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftSharePoint\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftSharePoint\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftSQLServer\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftSQLServer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftTestLinuxPPS\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftTestLinuxPPS\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftVisualStudio\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftVisualStudio\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftWindowsDesktop\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsDesktop\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftWindowsServer\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsServer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftWindowsServerHPCPack\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsServerHPCPack\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft_iot_edge\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft_iot_edge\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft_javaeeonazure_test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft_javaeeonazure_test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microstrategy\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microstrategy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"midasolutions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/midasolutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"middleware\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/middleware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"midfin\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/midfin\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"midvision\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/midvision\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mihupcommunicationspvtltd1599046998010\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mihupcommunicationspvtltd1599046998010\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mindcti\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mindcti\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"minio\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/minio\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"miraclelinux\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/miraclelinux\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"miracl_linux\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/miracl_linux\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"miri-infotech-pvt-ltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/miri-infotech-pvt-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mistio1601460379393\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mistio1601460379393\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mobilab\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mobilab\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"modern-systems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/modern-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"modexblockchaindatabase\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/modexblockchaindatabase\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"monetdbsolutions1611751313758\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/monetdbsolutions1611751313758\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"monitorapp1579029852605\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/monitorapp1579029852605\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"monitorcomputersystemsltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/monitorcomputersystemsltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"moogsoft\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/moogsoft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"morpheus-data\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/morpheus-data\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"moviemasher\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/moviemasher\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mriisoftllc1579457820427\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mriisoftllc1579457820427\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"msopentech\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/msopentech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mtnfog\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mtnfog\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"multima1643619641681\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/multima1643619641681\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"multisoft-ab\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/multisoft-ab\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mvp-systems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mvp-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mwg_azure\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mwg_azure\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mxhero\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mxhero\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"my-com\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/my-com\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"myarchinc1614657280935\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/myarchinc1614657280935\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"narrativescience\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/narrativescience\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nasuni\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nasuni\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nasunicorporation\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nasunicorporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"navicloudrsoftwarepteltd1601967280369\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/navicloudrsoftwarepteltd1601967280369\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ncache\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ncache\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ncbi\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ncbi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ncomputingglobalinc1604353053068\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ncomputingglobalinc1604353053068\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ndl\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ndl\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ndstriyelotomasyonsistemlerisanvetica1623147454601\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ndstriyelotomasyonsistemlerisanvetica1623147454601\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nebbiolo-technologies-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nebbiolo-technologies-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nec-technologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nec-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nefelinetworks1591201080882\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nefelinetworks1591201080882\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"neo4j\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/neo4j\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"neos\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/neos\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"neowaybusinesssolutions-4956350\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/neowaybusinesssolutions-4956350\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netapp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netapp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netatwork\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netatwork\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netfoundryinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netfoundryinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netgate\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netgate\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netikus-net-ltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netikus-net-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netiq\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netiq\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netka\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netka\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netmail\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netmail\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netscout\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netscout\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netspi\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netspi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netsweeper\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netsweeper\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"networksexchangetechnologyltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/networksexchangetechnologyltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netwrix\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netwrix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netx\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netx\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"neusoft-neteye\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/neusoft-neteye\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"newegginc1646343565758\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/newegginc1646343565758\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"newnetcommunicationtechnologies1589991852134\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/newnetcommunicationtechnologies1589991852134\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"NewRelic.Infrastructure.Extensions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/NewRelic.Infrastructure.Extensions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"newtglobalconsultingllc1581492268566\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/newtglobalconsultingllc1581492268566\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nextronic-5290868\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nextronic-5290868\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nginxinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nginxinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nice-it-management-solutions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nice-it-management-solutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nicepeopleatwork\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nicepeopleatwork\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nilespartnersinc1617691698386\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nilespartnersinc1617691698386\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"niolabs-5229713\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/niolabs-5229713\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nirvatosoftwarepvtltd1601368706606\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nirvatosoftwarepvtltd1601368706606\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nodejsapi\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nodejsapi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"noianetworklimited1584098036197\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/noianetworklimited1584098036197\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nokiaofamericacorporation1591716055441\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nokiaofamericacorporation1591716055441\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"noobaa\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/noobaa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"norcominformationtechnologygmbhcokgaa\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/norcominformationtechnologygmbhcokgaa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"noricumcloudsolutions1600524477681\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/noricumcloudsolutions1600524477681\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"norsync\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/norsync\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"northbridge-secure\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/northbridge-secure\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nozominetworks1582208017986\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nozominetworks1582208017986\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nri\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nri\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ntegralinc1586961136942\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ntegralinc1586961136942\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ntt-data-intellilink-corporation\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ntt-data-intellilink-corporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nttdata\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nttdata\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nttltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nttltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nuco-networks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nuco-networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"numbersbelieve\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/numbersbelieve\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"numtrallcpublisher\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/numtrallcpublisher\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nuxeo\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nuxeo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nvidia\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nvidia\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"o2mc-real-time-data-platform\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/o2mc-real-time-data-platform\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"objectivity-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/objectivity-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"objectivity1595351622261\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/objectivity1595351622261\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"oceanblue-cloud\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/oceanblue-cloud\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"OctopusDeploy.Tentacle\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/OctopusDeploy.Tentacle\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"odix\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/odix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"odysseuscomputationalsolutions1630242118741\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/odysseuscomputationalsolutions1630242118741\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"odysseyconsultantsltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/odysseyconsultantsltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"officeatwork-ag\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/officeatwork-ag\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"omega-software\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/omega-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"onapsis\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/onapsis\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"oncore_cloud_services-4944214\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/oncore_cloud_services-4944214\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"onexgroup\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/onexgroup\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"onspecta\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/onspecta\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ontology\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ontology\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"onyx-point-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/onyx-point-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"op5\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/op5\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"open-connect-systems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/open-connect-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"opencell\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/opencell\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"openlinkswcom-pago\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/openlinkswcom-pago\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"OpenLogic\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/OpenLogic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"openrefactoryinc1620140917523\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/openrefactoryinc1620140917523\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"openshotstudiosllc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/openshotstudiosllc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"opentext\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/opentext\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"openvpn\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/openvpn\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"opslogix\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/opslogix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"opswatinc1619007967290\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/opswatinc1619007967290\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"optimitiveslu1618320281443\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/optimitiveslu1618320281443\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"option3\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/option3\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Oracle\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Oracle\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"oraylis\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/oraylis\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"oraylisbi\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/oraylisbi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"orbs-network\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/orbs-network\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"oriana\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/oriana\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"orientdb\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/orientdb\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"oroinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/oroinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"osirium-ltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/osirium-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"osisoft\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/osisoft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"osnexus\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/osnexus\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"outpost24\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/outpost24\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"outsystems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/outsystems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ovaledge1618392232783\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ovaledge1618392232783\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pachyderminc1585170006545\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pachyderminc1585170006545\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pacteratechnologiesinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pacteratechnologiesinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"paladionnetworkspvtltd1606120508449\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/paladionnetworkspvtltd1606120508449\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"paloaltonetworks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/paloaltonetworks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"panopta\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/panopta\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"panorama-necto\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/panorama-necto\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"panzura-file-system\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/panzura-file-system\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"parabole\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/parabole\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"paralaxiomtechnologiesprivatelimited1596433357886\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/paralaxiomtechnologiesprivatelimited1596433357886\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"parallels\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/parallels\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"parasoft\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/parasoft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"parkersoftwarelimited1609786657569\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/parkersoftwarelimited1609786657569\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"parsec-for-teams\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/parsec-for-teams\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pasifikciptamandiri\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pasifikciptamandiri\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"passlogy\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/passlogy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"paxata\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/paxata\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pcman\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pcman\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"peer-software-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/peer-software-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"penta-security-systems-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/penta-security-systems-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"percona\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/percona\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"perforce\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/perforce\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"periscope-tech-4791746\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/periscope-tech-4791746\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"piolinkinc1582849368309\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/piolinkinc1582849368309\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pivotal\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pivotal\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pixitmedia1591611150480\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pixitmedia1591611150480\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"plesk\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/plesk\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pmsoftwareinternational1603102514882\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pmsoftwareinternational1603102514882\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pnop\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pnop\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"polarityioinc1628691850891\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/polarityioinc1628691850891\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"portalarchitects\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/portalarchitects\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"portsysinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/portsysinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"postgres-pro\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/postgres-pro\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"powerbireach\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/powerbireach\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"prakshepprivatelimited1619949827900\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/prakshepprivatelimited1619949827900\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"prasselsrl1645470739547\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/prasselsrl1645470739547\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"prestashop\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/prestashop\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"prestige_informatique-1090178\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/prestige_informatique-1090178\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"prime-strategy\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/prime-strategy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"primekey\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/primekey\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"primestrategynewyorkinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/primestrategynewyorkinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pro-vision\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pro-vision\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"probityinc1581611299345\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/probityinc1581611299345\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"process-one\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/process-one\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"processgold\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/processgold\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"procomputers\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/procomputers\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"procomputerssrl1594239153814\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/procomputerssrl1594239153814\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"profecia\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/profecia\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Profiler.AgentOrchestrationRefactor.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Profiler.AgentOrchestrationRefactor.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Profiler.Master.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Profiler.Master.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"profisee\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/profisee\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"progelspa\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/progelspa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"progresssoftwarecorporation\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/progresssoftwarecorporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"proliongmbh1628175060372\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/proliongmbh1628175060372\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"protegrityusainc1627404648458\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/protegrityusainc1627404648458\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"protiviti\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/protiviti\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"proventeq\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/proventeq\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ptc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ptc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ptsecurity\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ptsecurity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pulse-secure\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pulse-secure\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pulsesecuretechnologies1638179500151\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pulsesecuretechnologies1638179500151\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"puppet\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/puppet\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"puppeteersoy1601024480557\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/puppeteersoy1601024480557\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"PuppetLabs\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/PuppetLabs\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"PuppetLabs.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/PuppetLabs.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"purestorageinc1578960262525\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/purestorageinc1578960262525\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pydio\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pydio\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pyramidanalytics\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pyramidanalytics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"qlik\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/qlik\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"qnapsystemsinc1601352084032\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/qnapsystemsinc1601352084032\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"qore-technologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/qore-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"qs-solutions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/qs-solutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Qualys\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Qualys\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Qualys.LinuxAgent.GrayLabel\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Qualys.LinuxAgent.GrayLabel\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Qualys.WindowsAgent.GrayLabel\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Qualys.WindowsAgent.GrayLabel\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"qualysguard\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/qualysguard\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"quasardb\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/quasardb\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"qubole-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/qubole-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"quest\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/quest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"racknap\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/racknap\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rackwareinc1619403669255\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rackwareinc1619403669255\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"radiant-logic\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/radiant-logic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"radware\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/radware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"raincode\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/raincode\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rancher\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rancher\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rapid7\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rapid7\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Rapid7.InsightPlatform\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Rapid7.InsightPlatform\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rapidminer\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rapidminer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"raynetgmbh\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/raynetgmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"readymind\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/readymind\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"realm\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/realm\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"reblaze\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/reblaze\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"RedHat\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/RedHat\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"redhat-rhel\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/redhat-rhel\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"redpoint-global\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/redpoint-global\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"refactr\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/refactr\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"refinitiv\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/refinitiv\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"refinitiv-4807503\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/refinitiv-4807503\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"relevance-lab\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/relevance-lab\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"remotelearner\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/remotelearner\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"res\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/res\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"resco\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/resco\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"researchgraphptyltd1598252602128\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/researchgraphptyltd1598252602128\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"resemblesystems1582780358300\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/resemblesystems1582780358300\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"responder-corp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/responder-corp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"revolution-analytics\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/revolution-analytics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rhcsolutions1586957910818\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rhcsolutions1586957910818\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ribboncommunications\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ribboncommunications\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"RightScaleLinux\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/RightScaleLinux\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"RightScaleWindowsServer\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/RightScaleWindowsServer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rimo3\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rimo3\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ringsoftwareresearchanddevelopmentinc1578946072257\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ringsoftwareresearchanddevelopmentinc1578946072257\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"riverbed\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/riverbed\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"RiverbedTechnology\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/RiverbedTechnology\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rmgtechnologiesinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rmgtechnologiesinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rocketml\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rocketml\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rocketsoftware\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rocketsoftware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rohdeschwarzcybersecuritygmbh\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rohdeschwarzcybersecuritygmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rohdeschwarzcybersecuritysas\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rohdeschwarzcybersecuritysas\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"roktech\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/roktech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rsa-security-llc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rsa-security-llc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rsk-labs\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rsk-labs\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rstudio-5237862\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rstudio-5237862\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rtts\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rtts\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rubrik-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rubrik-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"runecastsolutionslimited1614186396822\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/runecastsolutionslimited1614186396822\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"s2ix\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/s2ix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"saama\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/saama\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"saasame-limited\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/saasame-limited\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"safesoftwareinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/safesoftwareinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"safeticatechnologiessro\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/safeticatechnologiessro\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"safetica_technologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/safetica_technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"safetoopen1585013318137\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/safetoopen1585013318137\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"saltsecurity1583264186232\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/saltsecurity1583264186232\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"saltsecurity1583264669848\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/saltsecurity1583264669848\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"saltstack\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/saltstack\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"samsung-sds\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/samsung-sds\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"samsungelectronics1632860607983\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/samsungelectronics1632860607983\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"samsungsds-cello\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/samsungsds-cello\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"samsungsds_sdbe\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/samsungsds_sdbe\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sandhatatechnologieslimited1615753438737\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sandhatatechnologieslimited1615753438737\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sap\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sap\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sapphiretechnologieslimited1611758579346\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sapphiretechnologieslimited1611758579346\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sas-institute-560503\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sas-institute-560503\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"scaidata\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/scaidata\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"scalearc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/scalearc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"scalegrid\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/scalegrid\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"scality\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/scality\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"schrockeninc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/schrockeninc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sci\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sci\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sciencelogicinc1622565452194\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sciencelogicinc1622565452194\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"scientiamobile\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/scientiamobile\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"scontainug1595751515785\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/scontainug1595751515785\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"scubaanalytics\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/scubaanalytics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"scylladb1631195365807\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/scylladb1631195365807\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"seaqserviciossas1579029207572\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/seaqserviciossas1579029207572\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"searchbloxsoftwareinc1594309037050\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/searchbloxsoftwareinc1594309037050\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"secureworks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/secureworks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"securityonionsolutions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/securityonionsolutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"securityonionsolutionsllc1624649205155\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/securityonionsolutionsllc1624649205155\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"securosis\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/securosis\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"seequentltd1585781751395\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/seequentltd1585781751395\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"semarchy\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/semarchy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"semperis\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/semperis\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"senhasegura\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/senhasegura\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"SentinelOne.LinuxExtension\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/SentinelOne.LinuxExtension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"SentinelOne.LinuxExtension.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/SentinelOne.LinuxExtension.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"SentinelOne.WindowsExtension\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/SentinelOne.WindowsExtension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"SentinelOne.WindowsExtension.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/SentinelOne.WindowsExtension.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sentriumsl\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sentriumsl\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sentry51llc1616686725591\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sentry51llc1616686725591\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sentryone\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sentryone\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sepiosystems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sepiosystems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"seppmailag\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/seppmailag\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"seraumo1620002807288\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/seraumo1620002807288\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"service-control-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/service-control-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sesamesoftwareinc1622125191447\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sesamesoftwareinc1622125191447\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"shadow-soft\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/shadow-soft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"shareshiftneeraj.test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/shareshiftneeraj.test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sightapps\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sightapps\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"signal-sciences\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/signal-sciences\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"silk\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/silk\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"silver-peak-systems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/silver-peak-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"simmachinesinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/simmachinesinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"simontelephonics\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/simontelephonics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"simpledatalabsinc1635791235920\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/simpledatalabsinc1635791235920\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"simplifierag\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/simplifierag\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"simpligov\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/simpligov\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sinefa\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sinefa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sinequa\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sinequa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sinequa1588262295885\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sinequa1588262295885\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"singapore-telecommunications-limited\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/singapore-telecommunications-limited\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sios_datakeeper\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sios_datakeeper\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"siportalinc1581539156321\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/siportalinc1581539156321\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sisenseltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sisenseltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Site24x7\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Site24x7\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sktelecom\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sktelecom\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"skyarc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/skyarc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"skyboxsecurity1585187406404\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/skyboxsecurity1585187406404\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"skylarkcloud\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/skylarkcloud\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"smartbearsoftware\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/smartbearsoftware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"smartmessage-autoflow\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/smartmessage-autoflow\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"snaplogic\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/snaplogic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"snapt-adc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/snapt-adc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"snips\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/snips\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"soasta\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/soasta\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"softnas\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/softnas\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"softwarecentralas1642687699196\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/softwarecentralas1642687699196\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"softwarehut\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/softwarehut\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"softwebsolutions-4518310\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/softwebsolutions-4518310\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"soha\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/soha\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"solanolabs\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/solanolabs\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"solar-security\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/solar-security\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"solarwinds\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/solarwinds\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"solvedevops1643693563360\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/solvedevops1643693563360\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sonicwall-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sonicwall-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sophos\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sophos\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sourcegearllc1616101262784\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sourcegearllc1616101262784\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"south-river-technologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/south-river-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"southrivertech1586314123192\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/southrivertech1586314123192\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"spacecurve\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/spacecurve\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"spaceliftinc1625499025476\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/spaceliftinc1625499025476\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"spagobi\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/spagobi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sparklinglogic\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sparklinglogic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"spectralcorelimited1619779004178\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/spectralcorelimited1619779004178\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"spektra\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/spektra\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sphere3d\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sphere3d\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"spideroakinc1588278690933\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/spideroakinc1588278690933\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"spirentcommunications1594084187199\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/spirentcommunications1594084187199\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"splunk\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/splunk\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sproutenetworks1593456311717\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sproutenetworks1593456311717\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sqlstream\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sqlstream\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"squadratechnologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/squadratechnologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"squaredup\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/squaredup\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"src-solution\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/src-solution\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ssh2appsltd1621588462715\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ssh2appsltd1621588462715\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stackato-platform-as-a-service\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stackato-platform-as-a-service\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Stackify.LinuxAgent.Extension\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Stackify.LinuxAgent.Extension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stackstorm\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stackstorm\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"startekfingerprintmatch\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/startekfingerprintmatch\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"startisolucoesemtecnologialtda1635263523201\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/startisolucoesemtecnologialtda1635263523201\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"starwind\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/starwind\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"StatusMonitor2.Diagnostics.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/StatusMonitor2.Diagnostics.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"StatusReport.Diagnostics.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/StatusReport.Diagnostics.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stealthbits\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stealthbits\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"steelhive\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/steelhive\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stonebondtechnologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stonebondtechnologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stonefly\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stonefly\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"storage_made_easy\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/storage_made_easy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stormshield\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stormshield\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"storone1594045543980\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/storone1594045543980\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"storreduce\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/storreduce\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"storwarespzoo1611743234900\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/storwarespzoo1611743234900\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"strangebee1595948424730\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/strangebee1595948424730\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"strataidentity1608323708170\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/strataidentity1608323708170\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stratis-group-ltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stratis-group-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stratodesk1611152769936\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stratodesk1611152769936\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stratumn\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stratumn\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"streamsets\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/streamsets\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"striim\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/striim\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stromasys\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stromasys\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"strongboxitllc1594816423884\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/strongboxitllc1594816423884\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"su\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/su\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"subscription.test.krsh\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/subscription.test.krsh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sumologic\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sumologic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sunatogmbh\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sunatogmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sunday\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sunday\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"SUSE\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/SUSE\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"SUSE.AzureHybridBenefit\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/SUSE.AzureHybridBenefit\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"swoopanalytics\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/swoopanalytics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sycom-technologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sycom-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sycompatechnologycompanyinc1588192103892\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sycompatechnologycompanyinc1588192103892\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.CloudWorkloadProtection\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.CloudWorkloadProtection\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.CloudWorkloadProtection.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.CloudWorkloadProtection.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.CloudWorkloadProtection.TestOnStage\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.CloudWorkloadProtection.TestOnStage\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.QA\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.QA\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.staging\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.staging\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.test.ru2.latest\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.test.ru2.latest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.test.ru2final\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.test.ru2final\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.test.ru2latest1\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.test.ru2latest1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.test.ru4mp1\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.test.ru4mp1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.test.ru4mp1.latest\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.test.ru4mp1.latest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.test.ru4mp1final\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.test.ru4mp1final\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"symanteccorporation\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/symanteccorporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"symantectest1\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/symantectest1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"synack-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/synack-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"syncfusion\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/syncfusion\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"syncfusionbigdataplatfor\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/syncfusionbigdataplatfor\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"synechron-technologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/synechron-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"synergixinc1585256339250\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/synergixinc1585256339250\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"synnexcorp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/synnexcorp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"syscomcomputerengineeringco1583913200141\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/syscomcomputerengineeringco1583913200141\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"syte\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/syte\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tableau\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tableau\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tactic\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tactic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"talari-networks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/talari-networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"talena-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/talena-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"talend\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/talend\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"talon\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/talon\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tamrinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tamrinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"taniuminc1646329360287\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/taniuminc1646329360287\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"targit\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/targit\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tata_communications\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tata_communications\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tavanttechnologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tavanttechnologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tavendo\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tavendo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"te-systems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/te-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"techdivision\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/techdivision\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"techlatest\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/techlatest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"technicheltd1606969724100\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/technicheltd1606969724100\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tecknolab\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tecknolab\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"telepat\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/telepat\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"teloscorporation\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/teloscorporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tempered-networks-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tempered-networks-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tenable\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tenable\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tensormakecorpdbaoneclickai1608247756082\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tensormakecorpdbaoneclickai1608247756082\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tenthlineinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tenthlineinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"teradata\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/teradata\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Teradici\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Teradici\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"teramindinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/teramindinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.Gemalto.SafeNet.ProtectV\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.Gemalto.SafeNet.ProtectV\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.Gemalto.SafeNet.ProtectV.Azure\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.Gemalto.SafeNet.ProtectV.Azure\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.HP.AppDefender\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.HP.AppDefender\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.Microsoft.VisualStudio.Services\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.Microsoft.VisualStudio.Services\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.NJHP.AppDefender\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.NJHP.AppDefender\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.SqlServer.Managability\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.SqlServer.Managability\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.SqlServer.Management\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.SqlServer.Management\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.SqlServer.Management.corext\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.SqlServer.Management.corext\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test1.NJHP.AppDefender\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test1.NJHP.AppDefender\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test3.Microsoft.VisualStudio.Services\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test3.Microsoft.VisualStudio.Services\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"testable1603721901088\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/testable1603721901088\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"testpro\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/testpro\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"test_test_mix3pptest0011614206850774\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/test_test_mix3pptest0011614206850774\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"test_test_mneela1628617140187\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/test_test_mneela1628617140187\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"test_test_pmc2pc1\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/test_test_pmc2pc1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thales-vormetric\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thales-vormetric\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thalesdiscplusainc1596561677238\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thalesdiscplusainc1596561677238\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thedatavaluefactoryltd1589348815922\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thedatavaluefactoryltd1589348815922\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thefreebsdfoundation\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thefreebsdfoundation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thehdfgroup1616725197741\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thehdfgroup1616725197741\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"theumag1596442827072\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/theumag1596442827072\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"things-board\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/things-board\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thingscareinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thingscareinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thinprintgmbh\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thinprintgmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thorntechnologiesllc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thorntechnologiesllc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thoughtspot-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thoughtspot-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"threatintelligenceptyltd1586824172898\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/threatintelligenceptyltd1586824172898\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tibco-software\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tibco-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tidal-migrations\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tidal-migrations\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tidalmediainc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tidalmediainc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tig\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tig\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tiger-technology\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tiger-technology\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tigergraph\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tigergraph\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"timextender\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/timextender\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tmaxsoft\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tmaxsoft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tmaxsoft1608612658335\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tmaxsoft1608612658335\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tomsawyersoftwarecorp1613579206342\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tomsawyersoftwarecorp1613579206342\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"topicus\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/topicus\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"torusware\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/torusware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"totemo\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/totemo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"townsend-security\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/townsend-security\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"transcendinformationinc1609918445926\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/transcendinformationinc1609918445926\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"transientxinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/transientxinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"transvault\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/transvault\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"trendmicro\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/trendmicro\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"TrendMicro.DeepSecurity.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/TrendMicro.DeepSecurity.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"TrendMicro.PortalProtect\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/TrendMicro.PortalProtect\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tresorit\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tresorit\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"trifacta\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/trifacta\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tripleblindinc1615730179432\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tripleblindinc1615730179432\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tripwire-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tripwire-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"truata1612259728221\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/truata1612259728221\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"truestack\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/truestack\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tryonsolutionsinc1596650621083\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tryonsolutionsinc1596650621083\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tsa-public-service\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tsa-public-service\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tunnelbiz\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tunnelbiz\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"turbonet\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/turbonet\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"turbonet1581982683964\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/turbonet1581982683964\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"twistlock\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/twistlock\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"typesafe\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/typesafe\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ubeeko\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ubeeko\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ubercloud\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ubercloud\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"uipath-5054924\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/uipath-5054924\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ulex\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ulex\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"unifi-software\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/unifi-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"unifiedstreaming1598872291606\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/unifiedstreaming1598872291606\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"uniprint-net\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/uniprint-net\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"unitrends\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/unitrends\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"unnisoft\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/unnisoft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"unravel-data\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/unravel-data\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"unscramblsingaporepteltd-4999260\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/unscramblsingaporepteltd-4999260\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"untangle\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/untangle\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"upsolver1594188634150\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/upsolver1594188634150\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"usp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/usp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"valohai\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/valohai\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"valtix\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/valtix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"varmournetworks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/varmournetworks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"varnish\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/varnish\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vastdata1650451243415\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vastdata1650451243415\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vatacommunicationsinc1581644208717\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vatacommunicationsinc1581644208717\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vaultive-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vaultive-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vbot\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vbot\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vcinityinc1587684340545\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vcinityinc1587684340545\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vectraaiinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vectraaiinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"veeam\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/veeam\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"velocitydb-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/velocitydb-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"velocloud\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/velocloud\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vembutechnologiespvtltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vembutechnologiespvtltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vemn\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vemn\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"veritas\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/veritas\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"versanetworks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/versanetworks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"versasec\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/versasec\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vidispine\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vidispine\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vidizmo\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vidizmo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vigyanlabs-innovations-pvt-ltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vigyanlabs-innovations-pvt-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vigyanlabsinc1581413676614\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vigyanlabsinc1581413676614\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"viptela\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/viptela\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vircom\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vircom\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"virtamovecorp1615909247913\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/virtamovecorp1615909247913\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"virtualpulsesro1607008728942\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/virtualpulsesro1607008728942\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"virtuozzointernationalgmbh1626704951469\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/virtuozzointernationalgmbh1626704951469\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"visualknowledgeshare1591795776234\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/visualknowledgeshare1591795776234\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"visualsoft-center\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/visualsoft-center\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vizixiotplatformretail001\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vizixiotplatformretail001\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vmlabinc1613642184700\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vmlabinc1613642184700\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vmturbo\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vmturbo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vmware-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vmware-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vnomicinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vnomicinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"voiceelements\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/voiceelements\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"voleatechgmbh1636966911943\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/voleatechgmbh1636966911943\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"volterraedgeservices\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/volterraedgeservices\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Vormetric\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Vormetric\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vscconsultingptyltd1608535888097\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vscconsultingptyltd1608535888097\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vte\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vte\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vu-llc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vu-llc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vunetsystemsprivatelimited1646716402131\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vunetsystemsprivatelimited1646716402131\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vyulabsinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vyulabsinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"WAD2AI.Diagnostics.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/WAD2AI.Diagnostics.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"WAD2EventHub.Diagnostics.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/WAD2EventHub.Diagnostics.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wallarm\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wallarm\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wallix\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wallix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wandisco\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wandisco\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wanos\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wanos\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wanpath-dba-myworkdrive\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wanpath-dba-myworkdrive\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wardy-it-solutions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wardy-it-solutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"warewolf-esb\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/warewolf-esb\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"watchguard-technologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/watchguard-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"webaloinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/webaloinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"websense-apmailpe\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/websense-apmailpe\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"websoft9inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/websoft9inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wedoitllc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wedoitllc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"westernoceansoftwaresprivatelimited\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/westernoceansoftwaresprivatelimited\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wherescapesoftware\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wherescapesoftware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"winmagic_securedoc_cloudvm\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/winmagic_securedoc_cloudvm\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wintellisys-inc-4561600\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wintellisys-inc-4561600\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"witfooinc1590167223060\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/witfooinc1590167223060\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wmspanel\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wmspanel\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wood1595864497589\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wood1595864497589\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"workshare-technology\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/workshare-technology\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"world-programming\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/world-programming\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"worxogo\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/worxogo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wowza\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wowza\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"xcontentptyltd-1329748\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/xcontentptyltd-1329748\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"xendata-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/xendata-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"xfinityinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/xfinityinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"xilinx\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/xilinx\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"xoriantcorporationazxteam1\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/xoriantcorporationazxteam1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"xoriantsolutionspvtltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/xoriantsolutionspvtltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"xtremedata\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/xtremedata\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"xyzrd-group-ou\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/xyzrd-group-ou\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"yaseensmarket1645449809728\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/yaseensmarket1645449809728\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"yellowfin\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/yellowfin\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"yellowfininternationalptyltd1616363974066\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/yellowfininternationalptyltd1616363974066\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"yokogawarentalleasecorporation\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/yokogawarentalleasecorporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"your-shop-online\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/your-shop-online\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"z1\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/z1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"z4it-aps\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/z4it-aps\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zabbix\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zabbix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zend\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zend\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zenterasystemsinc1605292453288\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zenterasystemsinc1605292453288\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zerodown_software\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zerodown_software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zerto\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zerto\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zettalane_systems-5254599\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zettalane_systems-5254599\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zevenet\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zevenet\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zilliz\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zilliz\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zoomdata\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zoomdata\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zscaler\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zscaler\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zscaler1579058425289\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zscaler1579058425289\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zultysinc1596831546163\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zultysinc1596831546163\"\r\n }\r\n]", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/southeastasia/publishers/Microsoft.Compute/artifacttypes/vmextension/types?api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9wdWJsaXNoZXJzL01pY3Jvc29mdC5Db21wdXRlL2FydGlmYWN0dHlwZXMvdm1leHRlbnNpb24vdHlwZXM/YXBpLXZlcnNpb249MjAyMS0xMS0wMQ==", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Compute/locations/southeastasia/publishers/Microsoft.Compute/artifacttypes/vmextension/types?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9wdWJsaXNoZXJzL01pY3Jvc29mdC5Db21wdXRlL2FydGlmYWN0dHlwZXMvdm1leHRlbnNpb24vdHlwZXM/YXBpLXZlcnNpb249MjAyMS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cce11031-ff01-4885-955b-f8b9a6ad528e" + "a9c3bcd8-c6f6-4731-8b36-2ba988f1544b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ] }, "ResponseHeaders": { @@ -2261,16 +2261,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/ListVMExtensionTypes3Min;17999,Microsoft.Compute/ListVMExtensionTypes30Min;22498" + "Microsoft.Compute/ListVMExtensionTypes3Min;17999,Microsoft.Compute/ListVMExtensionTypes30Min;22497" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "1f3ad383-bb66-4279-b2a8-fbbcd093a7e3_132678318374571324" + "1f3ad383-bb66-4279-b2a8-fbbcd093a7e3_132836337789816871" ], "x-ms-request-id": [ - "f711b65e-98a6-487f-aa41-aa31aadce5fe" + "df2447cf-98c9-4e5a-aa14-62f14488eb35" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -2280,16 +2280,16 @@ "11993" ], "x-ms-correlation-request-id": [ - "e31b6524-1286-48e3-bc82-8ba9cf93eb00" + "f88eb6c3-483f-4d4f-becc-11dbd2f4bd45" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T221013Z:e31b6524-1286-48e3-bc82-8ba9cf93eb00" + "WESTINDIA:20220517T043115Z:f88eb6c3-483f-4d4f-becc-11dbd2f4bd45" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 22:10:13 GMT" + "Tue, 17 May 2022 04:31:15 GMT" ], "Content-Length": [ "1089" @@ -2301,26 +2301,26 @@ "-1" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"BGInfo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"CustomScriptExtension\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"JsonADDomainExtension\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/JsonADDomainExtension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"VMAccessAgent\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/VMAccessAgent\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"BGInfo\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"CustomScriptExtension\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"JsonADDomainExtension\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/JsonADDomainExtension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"VMAccessAgent\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/VMAccessAgent\"\r\n }\r\n]", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/southeastasia/publishers/Microsoft.Compute/artifacttypes/vmextension/types?api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9wdWJsaXNoZXJzL01pY3Jvc29mdC5Db21wdXRlL2FydGlmYWN0dHlwZXMvdm1leHRlbnNpb24vdHlwZXM/YXBpLXZlcnNpb249MjAyMS0xMS0wMQ==", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Compute/locations/southeastasia/publishers/Microsoft.Compute/artifacttypes/vmextension/types?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9wdWJsaXNoZXJzL01pY3Jvc29mdC5Db21wdXRlL2FydGlmYWN0dHlwZXMvdm1leHRlbnNpb24vdHlwZXM/YXBpLXZlcnNpb249MjAyMS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b28069be-e680-4cf1-a94f-23a1bb01530d" + "4e90d890-8d9e-447e-bc81-85c31ae3178c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ] }, "ResponseHeaders": { @@ -2337,29 +2337,29 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "1f3ad383-bb66-4279-b2a8-fbbcd093a7e3_132678318374571324" + "1f3ad383-bb66-4279-b2a8-fbbcd093a7e3_132836337789816871" ], "x-ms-request-id": [ - "30d7c9ce-0023-4fee-83e2-1f6f295c7d30" + "077b03c4-3dc4-4687-a9f6-9612d564fe60" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11976" + "11978" ], "x-ms-correlation-request-id": [ - "ff8d0d6f-3d4e-4802-a1e2-90bba55e3d84" + "4ba1d43c-f077-470c-8487-0ff6d3b3d6bc" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T221746Z:ff8d0d6f-3d4e-4802-a1e2-90bba55e3d84" + "WESTINDIA:20220517T043718Z:4ba1d43c-f077-470c-8487-0ff6d3b3d6bc" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 22:17:46 GMT" + "Tue, 17 May 2022 04:37:17 GMT" ], "Content-Length": [ "1089" @@ -2371,26 +2371,26 @@ "-1" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"BGInfo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"CustomScriptExtension\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"JsonADDomainExtension\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/JsonADDomainExtension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"VMAccessAgent\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/VMAccessAgent\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"BGInfo\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"CustomScriptExtension\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"JsonADDomainExtension\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/JsonADDomainExtension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"VMAccessAgent\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/VMAccessAgent\"\r\n }\r\n]", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/southeastasia/publishers/Microsoft.Compute/artifacttypes/vmextension/types/BGInfo/versions?api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9wdWJsaXNoZXJzL01pY3Jvc29mdC5Db21wdXRlL2FydGlmYWN0dHlwZXMvdm1leHRlbnNpb24vdHlwZXMvQkdJbmZvL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMjEtMTEtMDE=", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Compute/locations/southeastasia/publishers/Microsoft.Compute/artifacttypes/vmextension/types/BGInfo/versions?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9wdWJsaXNoZXJzL01pY3Jvc29mdC5Db21wdXRlL2FydGlmYWN0dHlwZXMvdm1leHRlbnNpb24vdHlwZXMvQkdJbmZvL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMjEtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cce11031-ff01-4885-955b-f8b9a6ad528e" + "a9c3bcd8-c6f6-4731-8b36-2ba988f1544b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ] }, "ResponseHeaders": { @@ -2407,10 +2407,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "1f3ad383-bb66-4279-b2a8-fbbcd093a7e3_132678318374571324" + "1f3ad383-bb66-4279-b2a8-fbbcd093a7e3_132836337789816871" ], "x-ms-request-id": [ - "5e7e5125-c373-4d13-ac3b-bbca08ceae0e" + "913ec788-117c-473e-bb27-ea27dffe1c91" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -2420,19 +2420,19 @@ "11992" ], "x-ms-correlation-request-id": [ - "e3404395-1c97-4598-8dc6-35f0bc653dd7" + "e9e09117-7fde-44b9-acad-3e1dd739b375" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T221013Z:e3404395-1c97-4598-8dc6-35f0bc653dd7" + "WESTINDIA:20220517T043115Z:e9e09117-7fde-44b9-acad-3e1dd739b375" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 22:10:13 GMT" + "Tue, 17 May 2022 04:31:15 GMT" ], "Content-Length": [ - "1589" + "1856" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2441,26 +2441,26 @@ "-1" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1.0\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo/Versions/1.0\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1.0.1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo/Versions/1.0.1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1.1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo/Versions/1.1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1.2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo/Versions/1.2\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1.2.2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo/Versions/1.2.2\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"2.1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo/Versions/2.1\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1.0\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo/Versions/1.0\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1.0.1\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo/Versions/1.0.1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1.1\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo/Versions/1.1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1.2\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo/Versions/1.2\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1.2.2\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo/Versions/1.2.2\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"2.1\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo/Versions/2.1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"2.2.2\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo/Versions/2.2.2\"\r\n }\r\n]", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/southeastasia/publishers/Microsoft.Compute/artifacttypes/vmextension/types/BGInfo/versions?api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9wdWJsaXNoZXJzL01pY3Jvc29mdC5Db21wdXRlL2FydGlmYWN0dHlwZXMvdm1leHRlbnNpb24vdHlwZXMvQkdJbmZvL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMjEtMTEtMDE=", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Compute/locations/southeastasia/publishers/Microsoft.Compute/artifacttypes/vmextension/types/BGInfo/versions?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9wdWJsaXNoZXJzL01pY3Jvc29mdC5Db21wdXRlL2FydGlmYWN0dHlwZXMvdm1leHRlbnNpb24vdHlwZXMvQkdJbmZvL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMjEtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b28069be-e680-4cf1-a94f-23a1bb01530d" + "4e90d890-8d9e-447e-bc81-85c31ae3178c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ] }, "ResponseHeaders": { @@ -2471,38 +2471,38 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/ListVMExtensions3Min;9999,Microsoft.Compute/ListVMExtensions30Min;21990" + "Microsoft.Compute/ListVMExtensions3Min;9999,Microsoft.Compute/ListVMExtensions30Min;21993" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "1f3ad383-bb66-4279-b2a8-fbbcd093a7e3_132678318374571324" + "1f3ad383-bb66-4279-b2a8-fbbcd093a7e3_132836337789816871" ], "x-ms-request-id": [ - "ddb35c37-b67c-45a6-8f96-a61f79fc3324" + "a6ec21ff-4932-4ff2-bf90-979ed68c020b" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11975" + "11977" ], "x-ms-correlation-request-id": [ - "a2c46b4c-3873-4bb8-a91e-854df9ed1549" + "1b291807-8f67-4dd4-ab3c-fb8cf60f1c9d" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T221746Z:a2c46b4c-3873-4bb8-a91e-854df9ed1549" + "WESTINDIA:20220517T043718Z:1b291807-8f67-4dd4-ab3c-fb8cf60f1c9d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 22:17:46 GMT" + "Tue, 17 May 2022 04:37:17 GMT" ], "Content-Length": [ - "1589" + "1856" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2511,26 +2511,26 @@ "-1" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1.0\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo/Versions/1.0\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1.0.1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo/Versions/1.0.1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1.1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo/Versions/1.1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1.2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo/Versions/1.2\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1.2.2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo/Versions/1.2.2\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"2.1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo/Versions/2.1\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1.0\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo/Versions/1.0\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1.0.1\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo/Versions/1.0.1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1.1\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo/Versions/1.1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1.2\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo/Versions/1.2\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1.2.2\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo/Versions/1.2.2\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"2.1\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo/Versions/2.1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"2.2.2\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo/Versions/2.2.2\"\r\n }\r\n]", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.Compute/virtualMachines/PSTestVM1584e1/extensions/BGInfo?api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMTU4NGUyNzMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy9QU1Rlc3RWTTE1ODRlMS9leHRlbnNpb25zL0JHSW5mbz9hcGktdmVyc2lvbj0yMDIxLTExLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.Compute/virtualMachines/PSTestVMd78c91/extensions/BGInfo?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZDc4Yzk2MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy9QU1Rlc3RWTWQ3OGM5MS9leHRlbnNpb25zL0JHSW5mbz9hcGktdmVyc2lvbj0yMDIxLTExLTAx", "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\": \"southeastasia\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"BGInfo\",\r\n \"typeHandlerVersion\": \"2.2\",\r\n \"autoUpgradeMinorVersion\": true\r\n },\r\n \"location\": \"southeastasia\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "cce11031-ff01-4885-955b-f8b9a6ad528e" + "a9c3bcd8-c6f6-4731-8b36-2ba988f1544b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2547,19 +2547,19 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/southeastasia/operations/8238f0af-b92c-463b-b68e-6b20c0ac85d7?p=34dc709c-01b2-42c4-84a2-256a9734610d&api-version=2021-11-01" + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Compute/locations/southeastasia/operations/b1aa7d65-4519-4656-bc43-34f01bfb9a89?p=e484ceca-6435-4a7f-b125-3d82e6b12014&api-version=2021-11-01" ], "Azure-AsyncNotification": [ "Enabled" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/UpdateVM3Min;239,Microsoft.Compute/UpdateVM30Min;1196" + "Microsoft.Compute/UpdateVM3Min;239,Microsoft.Compute/UpdateVM30Min;1197" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "8238f0af-b92c-463b-b68e-6b20c0ac85d7" + "b1aa7d65-4519-4656-bc43-34f01bfb9a89" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -2569,16 +2569,16 @@ "1198" ], "x-ms-correlation-request-id": [ - "6485846f-5d57-4f7c-a40b-c8faa821c708" + "ffc7fd82-147c-4aa3-bbed-bdeb48896690" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T221017Z:6485846f-5d57-4f7c-a40b-c8faa821c708" + "WESTINDIA:20220517T043117Z:ffc7fd82-147c-4aa3-bbed-bdeb48896690" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 22:10:17 GMT" + "Tue, 17 May 2022 04:31:17 GMT" ], "Content-Length": [ "484" @@ -2590,23 +2590,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"BGInfo\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.Compute/virtualMachines/PSTestVM1584e1/extensions/BGInfo\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"southeastasia\",\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}", + "ResponseBody": "{\r\n \"name\": \"BGInfo\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.Compute/virtualMachines/PSTestVMd78c91/extensions/BGInfo\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Creating\",\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"BGInfo\",\r\n \"typeHandlerVersion\": \"2.2\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/southeastasia/operations/8238f0af-b92c-463b-b68e-6b20c0ac85d7?p=34dc709c-01b2-42c4-84a2-256a9734610d&api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzgyMzhmMGFmLWI5MmMtNDYzYi1iNjhlLTZiMjBjMGFjODVkNz9wPTM0ZGM3MDljLTAxYjItNDJjNC04NGEyLTI1NmE5NzM0NjEwZCZhcGktdmVyc2lvbj0yMDIxLTExLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Compute/locations/southeastasia/operations/b1aa7d65-4519-4656-bc43-34f01bfb9a89?p=e484ceca-6435-4a7f-b125-3d82e6b12014&api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2IxYWE3ZDY1LTQ1MTktNDY1Ni1iYzQzLTM0ZjAxYmZiOWE4OT9wPWU0ODRjZWNhLTY0MzUtNGE3Zi1iMTI1LTNkODJlNmIxMjAxNCZhcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cce11031-ff01-4885-955b-f8b9a6ad528e" + "a9c3bcd8-c6f6-4731-8b36-2ba988f1544b" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ] }, "ResponseHeaders": { @@ -2623,7 +2623,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a2414021-54ff-4ddf-8cae-b4074d7bcb06" + "54415542-84b0-476f-8d52-d7ccdc56f4d0" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -2633,19 +2633,19 @@ "11991" ], "x-ms-correlation-request-id": [ - "b67b754b-3ee4-444b-bbd0-4ed80f311eb2" + "4b6f92d5-e0c0-4167-bef8-409f5289ba05" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T221048Z:b67b754b-3ee4-444b-bbd0-4ed80f311eb2" + "WESTINDIA:20220517T043147Z:4b6f92d5-e0c0-4167-bef8-409f5289ba05" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 22:10:47 GMT" + "Tue, 17 May 2022 04:31:47 GMT" ], "Content-Length": [ - "133" + "134" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2654,23 +2654,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-02-23T17:10:16.615622-05:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"8238f0af-b92c-463b-b68e-6b20c0ac85d7\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2022-05-17T10:01:17.0557086+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b1aa7d65-4519-4656-bc43-34f01bfb9a89\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/southeastasia/operations/8238f0af-b92c-463b-b68e-6b20c0ac85d7?p=34dc709c-01b2-42c4-84a2-256a9734610d&api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzgyMzhmMGFmLWI5MmMtNDYzYi1iNjhlLTZiMjBjMGFjODVkNz9wPTM0ZGM3MDljLTAxYjItNDJjNC04NGEyLTI1NmE5NzM0NjEwZCZhcGktdmVyc2lvbj0yMDIxLTExLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Compute/locations/southeastasia/operations/b1aa7d65-4519-4656-bc43-34f01bfb9a89?p=e484ceca-6435-4a7f-b125-3d82e6b12014&api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2IxYWE3ZDY1LTQ1MTktNDY1Ni1iYzQzLTM0ZjAxYmZiOWE4OT9wPWU0ODRjZWNhLTY0MzUtNGE3Zi1iMTI1LTNkODJlNmIxMjAxNCZhcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cce11031-ff01-4885-955b-f8b9a6ad528e" + "a9c3bcd8-c6f6-4731-8b36-2ba988f1544b" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ] }, "ResponseHeaders": { @@ -2681,13 +2681,13 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperation3Min;14995,Microsoft.Compute/GetOperation30Min;29966" + "Microsoft.Compute/GetOperation3Min;14994,Microsoft.Compute/GetOperation30Min;29966" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "1b3351ea-1df5-4720-959d-9c2c929c5a0f" + "d656ea54-b8fe-440b-b2c9-7f6a3cfd39b7" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -2697,19 +2697,19 @@ "11990" ], "x-ms-correlation-request-id": [ - "2fb240ee-ae3a-40bf-99e3-ab371bc70740" + "aa4c5236-3b74-4c35-a54e-517ded2a4822" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T221118Z:2fb240ee-ae3a-40bf-99e3-ab371bc70740" + "WESTINDIA:20220517T043218Z:aa4c5236-3b74-4c35-a54e-517ded2a4822" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 22:11:18 GMT" + "Tue, 17 May 2022 04:32:17 GMT" ], "Content-Length": [ - "133" + "134" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2718,23 +2718,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-02-23T17:10:16.615622-05:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"8238f0af-b92c-463b-b68e-6b20c0ac85d7\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2022-05-17T10:01:17.0557086+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b1aa7d65-4519-4656-bc43-34f01bfb9a89\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/southeastasia/operations/8238f0af-b92c-463b-b68e-6b20c0ac85d7?p=34dc709c-01b2-42c4-84a2-256a9734610d&api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzgyMzhmMGFmLWI5MmMtNDYzYi1iNjhlLTZiMjBjMGFjODVkNz9wPTM0ZGM3MDljLTAxYjItNDJjNC04NGEyLTI1NmE5NzM0NjEwZCZhcGktdmVyc2lvbj0yMDIxLTExLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Compute/locations/southeastasia/operations/b1aa7d65-4519-4656-bc43-34f01bfb9a89?p=e484ceca-6435-4a7f-b125-3d82e6b12014&api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2IxYWE3ZDY1LTQ1MTktNDY1Ni1iYzQzLTM0ZjAxYmZiOWE4OT9wPWU0ODRjZWNhLTY0MzUtNGE3Zi1iMTI1LTNkODJlNmIxMjAxNCZhcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cce11031-ff01-4885-955b-f8b9a6ad528e" + "a9c3bcd8-c6f6-4731-8b36-2ba988f1544b" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ] }, "ResponseHeaders": { @@ -2751,7 +2751,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "5a31dc86-ce69-4289-ab08-644e48a94ea5" + "e172ffa2-c1d1-47cb-8fda-0a1fc5a5d6c5" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -2761,19 +2761,19 @@ "11989" ], "x-ms-correlation-request-id": [ - "37b17030-27ea-41e8-8a8b-7891193ce4bf" + "577e0bc7-dac0-4148-8770-1eeaaec0d502" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T221149Z:37b17030-27ea-41e8-8a8b-7891193ce4bf" + "WESTINDIA:20220517T043248Z:577e0bc7-dac0-4148-8770-1eeaaec0d502" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 22:11:48 GMT" + "Tue, 17 May 2022 04:32:47 GMT" ], "Content-Length": [ - "133" + "134" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2782,23 +2782,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-02-23T17:10:16.615622-05:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"8238f0af-b92c-463b-b68e-6b20c0ac85d7\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2022-05-17T10:01:17.0557086+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b1aa7d65-4519-4656-bc43-34f01bfb9a89\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/southeastasia/operations/8238f0af-b92c-463b-b68e-6b20c0ac85d7?p=34dc709c-01b2-42c4-84a2-256a9734610d&api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzgyMzhmMGFmLWI5MmMtNDYzYi1iNjhlLTZiMjBjMGFjODVkNz9wPTM0ZGM3MDljLTAxYjItNDJjNC04NGEyLTI1NmE5NzM0NjEwZCZhcGktdmVyc2lvbj0yMDIxLTExLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Compute/locations/southeastasia/operations/b1aa7d65-4519-4656-bc43-34f01bfb9a89?p=e484ceca-6435-4a7f-b125-3d82e6b12014&api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2IxYWE3ZDY1LTQ1MTktNDY1Ni1iYzQzLTM0ZjAxYmZiOWE4OT9wPWU0ODRjZWNhLTY0MzUtNGE3Zi1iMTI1LTNkODJlNmIxMjAxNCZhcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cce11031-ff01-4885-955b-f8b9a6ad528e" + "a9c3bcd8-c6f6-4731-8b36-2ba988f1544b" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ] }, "ResponseHeaders": { @@ -2809,13 +2809,13 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperation3Min;14993,Microsoft.Compute/GetOperation30Min;29963" + "Microsoft.Compute/GetOperation3Min;14994,Microsoft.Compute/GetOperation30Min;29964" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "12757f6e-5607-4f72-bd8a-bc04f5ab98ae" + "008a6750-b178-4a0e-b4cf-4d7f3ec7888c" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -2825,19 +2825,19 @@ "11988" ], "x-ms-correlation-request-id": [ - "46086e48-b371-42ab-a67b-ec4d4ed3d9ee" + "5fbe90f8-94d4-4c7f-84a7-f1e68c1ac0bd" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T221219Z:46086e48-b371-42ab-a67b-ec4d4ed3d9ee" + "WESTINDIA:20220517T043318Z:5fbe90f8-94d4-4c7f-84a7-f1e68c1ac0bd" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 22:12:18 GMT" + "Tue, 17 May 2022 04:33:18 GMT" ], "Content-Length": [ - "133" + "134" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2846,23 +2846,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-02-23T17:10:16.615622-05:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"8238f0af-b92c-463b-b68e-6b20c0ac85d7\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2022-05-17T10:01:17.0557086+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b1aa7d65-4519-4656-bc43-34f01bfb9a89\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/southeastasia/operations/8238f0af-b92c-463b-b68e-6b20c0ac85d7?p=34dc709c-01b2-42c4-84a2-256a9734610d&api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzgyMzhmMGFmLWI5MmMtNDYzYi1iNjhlLTZiMjBjMGFjODVkNz9wPTM0ZGM3MDljLTAxYjItNDJjNC04NGEyLTI1NmE5NzM0NjEwZCZhcGktdmVyc2lvbj0yMDIxLTExLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Compute/locations/southeastasia/operations/b1aa7d65-4519-4656-bc43-34f01bfb9a89?p=e484ceca-6435-4a7f-b125-3d82e6b12014&api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2IxYWE3ZDY1LTQ1MTktNDY1Ni1iYzQzLTM0ZjAxYmZiOWE4OT9wPWU0ODRjZWNhLTY0MzUtNGE3Zi1iMTI1LTNkODJlNmIxMjAxNCZhcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cce11031-ff01-4885-955b-f8b9a6ad528e" + "a9c3bcd8-c6f6-4731-8b36-2ba988f1544b" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ] }, "ResponseHeaders": { @@ -2879,7 +2879,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "2f39858d-5a15-436d-a125-afebcfa85853" + "8f3492b7-34b9-484a-a668-329ca7da7515" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -2889,19 +2889,19 @@ "11987" ], "x-ms-correlation-request-id": [ - "1572ea2e-0775-481a-b619-2f6647670cf1" + "f7ac42ce-edb9-40ae-9a7a-68a2b243443b" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T221249Z:1572ea2e-0775-481a-b619-2f6647670cf1" + "WESTINDIA:20220517T043348Z:f7ac42ce-edb9-40ae-9a7a-68a2b243443b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 22:12:49 GMT" + "Tue, 17 May 2022 04:33:47 GMT" ], "Content-Length": [ - "133" + "184" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2910,23 +2910,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-02-23T17:10:16.615622-05:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"8238f0af-b92c-463b-b68e-6b20c0ac85d7\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2022-05-17T10:01:17.0557086+05:30\",\r\n \"endTime\": \"2022-05-17T10:03:26.8825361+05:30\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"b1aa7d65-4519-4656-bc43-34f01bfb9a89\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/southeastasia/operations/8238f0af-b92c-463b-b68e-6b20c0ac85d7?p=34dc709c-01b2-42c4-84a2-256a9734610d&api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzgyMzhmMGFmLWI5MmMtNDYzYi1iNjhlLTZiMjBjMGFjODVkNz9wPTM0ZGM3MDljLTAxYjItNDJjNC04NGEyLTI1NmE5NzM0NjEwZCZhcGktdmVyc2lvbj0yMDIxLTExLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.Compute/virtualMachines/PSTestVMd78c91/extensions/BGInfo?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZDc4Yzk2MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy9QU1Rlc3RWTWQ3OGM5MS9leHRlbnNpb25zL0JHSW5mbz9hcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cce11031-ff01-4885-955b-f8b9a6ad528e" + "a9c3bcd8-c6f6-4731-8b36-2ba988f1544b" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ] }, "ResponseHeaders": { @@ -2937,13 +2937,13 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperation3Min;14993,Microsoft.Compute/GetOperation30Min;29961" + "Microsoft.Compute/LowCostGet3Min;3983,Microsoft.Compute/LowCostGet30Min;31857" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "609b4d75-11ad-4e2b-8b83-665ea91331c4" + "6c897a0b-32ce-4243-9c7f-0da2e98c195e" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -2953,19 +2953,19 @@ "11986" ], "x-ms-correlation-request-id": [ - "b78a6fee-af1f-4f8d-9260-c67604885238" + "7af35755-a5fa-4338-9bf6-4d390a75e226" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T221319Z:b78a6fee-af1f-4f8d-9260-c67604885238" + "WESTINDIA:20220517T043348Z:7af35755-a5fa-4338-9bf6-4d390a75e226" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 22:13:19 GMT" + "Tue, 17 May 2022 04:33:47 GMT" ], "Content-Length": [ - "133" + "485" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2974,23 +2974,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-02-23T17:10:16.615622-05:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"8238f0af-b92c-463b-b68e-6b20c0ac85d7\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"BGInfo\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.Compute/virtualMachines/PSTestVMd78c91/extensions/BGInfo\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"BGInfo\",\r\n \"typeHandlerVersion\": \"2.2\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/southeastasia/operations/8238f0af-b92c-463b-b68e-6b20c0ac85d7?p=34dc709c-01b2-42c4-84a2-256a9734610d&api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzgyMzhmMGFmLWI5MmMtNDYzYi1iNjhlLTZiMjBjMGFjODVkNz9wPTM0ZGM3MDljLTAxYjItNDJjNC04NGEyLTI1NmE5NzM0NjEwZCZhcGktdmVyc2lvbj0yMDIxLTExLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.RecoveryServices/vaults/PSTestRSVd78c9636?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZDc4Yzk2MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZkNzhjOTYzNj9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cce11031-ff01-4885-955b-f8b9a6ad528e" + "e5545a82-bf82-43b6-a9c4-bc481b2f7cd0" + ], + "Accept-Language": [ + "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" + "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesClient/4.3.2.0" ] }, "ResponseHeaders": { @@ -3000,61 +3003,129 @@ "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperation3Min;14993,Microsoft.Compute/GetOperation30Min;29960" + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "790333bc-58f3-4cbd-aec9-c4463d6b99fd" + ], + "x-ms-correlation-request-id": [ + "790333bc-58f3-4cbd-aec9-c4463d6b99fd" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220517T043349Z:790333bc-58f3-4cbd-aec9-c4463d6b99fd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 17 May 2022 04:33:49 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "239" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.RecoveryServices/vaults/PSTestRSVd78c9636' under resource group 'PSTestRGd78c9636' 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/PSTestRGd78c9636/providers/Microsoft.RecoveryServices/vaults/PSTestRSVd78c9636?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZDc4Yzk2MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZkNzhjOTYzNj9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"southeastasia\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6323aba9-2399-4800-98e7-5410de5515ed" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesClient/4.3.2.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": [ - "93ad423a-0759-4a00-b0e7-f742476c5310" + "a181eb78-0a9e-4af1-aa3e-928c9a78972a" + ], + "x-ms-client-request-id": [ + "6323aba9-2399-4800-98e7-5410de5515ed" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "Microsoft-IIS/10.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "209" ], "x-ms-correlation-request-id": [ - "07cd25a0-a538-455b-9233-2a8162a80859" + "a181eb78-0a9e-4af1-aa3e-928c9a78972a" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T221350Z:07cd25a0-a538-455b-9233-2a8162a80859" - ], - "X-Content-Type-Options": [ - "nosniff" + "WESTINDIA:20220517T043355Z:a181eb78-0a9e-4af1-aa3e-928c9a78972a" ], "Date": [ - "Wed, 23 Feb 2022 22:13:49 GMT" + "Tue, 17 May 2022 04:33:54 GMT" ], "Content-Length": [ - "182" + "518" ], "Content-Type": [ - "application/json; charset=utf-8" + "application/json" ], "Expires": [ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-02-23T17:10:16.615622-05:00\",\r\n \"endTime\": \"2022-02-23T17:13:25.946169-05:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"8238f0af-b92c-463b-b68e-6b20c0ac85d7\"\r\n}", - "StatusCode": 200 + "ResponseBody": "{\r\n \"location\": \"southeastasia\",\r\n \"name\": \"PSTestRSVd78c9636\",\r\n \"etag\": \"W/\\\"datetime'2022-05-17T04%3A33%3A54.3379422Z'\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateEndpointStateForBackup\": \"None\",\r\n \"privateEndpointStateForSiteRecovery\": \"None\",\r\n \"networkSettings\": {\r\n \"publicNetworkAccess\": \"Enabled\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.RecoveryServices/vaults/PSTestRSVd78c9636\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n }\r\n}", + "StatusCode": 201 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.Compute/virtualMachines/PSTestVM1584e1/extensions/BGInfo?api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMTU4NGUyNzMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy9QU1Rlc3RWTTE1ODRlMS9leHRlbnNpb25zL0JHSW5mbz9hcGktdmVyc2lvbj0yMDIxLTExLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.RecoveryServices/vaults/PSTestRSVd78c9636/backupconfig/vaultconfig?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZDc4Yzk2MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZkNzhjOTYzNi9iYWNrdXBjb25maWcvdmF1bHRjb25maWc/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cce11031-ff01-4885-955b-f8b9a6ad528e" + "da56349d-e9c0-4217-8d5e-a216871e5120" + ], + "Accept-Language": [ + "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -3064,64 +3135,66 @@ "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/LowCostGet3Min;3998,Microsoft.Compute/LowCostGet30Min;31970" + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ - "e086c747-b3df-4890-908a-23f283023904" + "x-ms-client-request-id": [ + "da56349d-e9c0-4217-8d5e-a216871e5120" ], "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "Microsoft-IIS/10.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11984" + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "149" ], "x-ms-correlation-request-id": [ - "4f1cce8d-e9bf-4aec-8e40-b82853b33a53" + "8c759ed5-4890-4478-8d7d-e752904d1683" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T221350Z:4f1cce8d-e9bf-4aec-8e40-b82853b33a53" - ], - "X-Content-Type-Options": [ - "nosniff" + "WESTINDIA:20220517T043356Z:8c759ed5-4890-4478-8d7d-e752904d1683" ], "Date": [ - "Wed, 23 Feb 2022 22:13:50 GMT" + "Tue, 17 May 2022 04:33:56 GMT" ], "Content-Length": [ - "485" + "380" ], "Content-Type": [ - "application/json; charset=utf-8" + "application/json" ], "Expires": [ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"BGInfo\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.Compute/virtualMachines/PSTestVM1584e1/extensions/BGInfo\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"southeastasia\",\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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.RecoveryServices/vaults/PSTestRSVd78c9636/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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.RecoveryServices/vaults/PSTestRSV1584e273?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMTU4NGUyNzMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YxNTg0ZTI3Mz9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.RecoveryServices/vaults/PSTestRSVd78c9636/backupResourceGuardProxies?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZDc4Yzk2MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZkNzhjOTYzNi9iYWNrdXBSZXNvdXJjZUd1YXJkUHJveGllcz9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "87f7ec9d-9d16-4555-baae-3f2ba746a9af" + "da56349d-e9c0-4217-8d5e-a216871e5120" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesClient/4.3.2.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -3131,63 +3204,67 @@ "Pragma": [ "no-cache" ], - "x-ms-failure-cause": [ - "gateway" + "X-Content-Type-Options": [ + "nosniff" ], "x-ms-request-id": [ - "69b2591a-ec18-42e4-9c9a-5882ee0bf2ed" - ], - "x-ms-correlation-request-id": [ - "69b2591a-ec18-42e4-9c9a-5882ee0bf2ed" + "6e3f2c5e-00e3-48b7-8758-13d462f0c2dd" ], - "x-ms-routing-request-id": [ - "CENTRALUS:20220223T221353Z:69b2591a-ec18-42e4-9c9a-5882ee0bf2ed" + "x-ms-client-request-id": [ + "da56349d-e9c0-4217-8d5e-a216871e5120", + "da56349d-e9c0-4217-8d5e-a216871e5120" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ - "nosniff" + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11969" + ], + "x-ms-correlation-request-id": [ + "6e3f2c5e-00e3-48b7-8758-13d462f0c2dd" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220517T043357Z:6e3f2c5e-00e3-48b7-8758-13d462f0c2dd" ], "Date": [ - "Wed, 23 Feb 2022 22:13:53 GMT" + "Tue, 17 May 2022 04:33:57 GMT" + ], + "Content-Length": [ + "12" ], "Content-Type": [ - "application/json; charset=utf-8" + "application/json" ], "Expires": [ "-1" - ], - "Content-Length": [ - "239" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.RecoveryServices/vaults/PSTestRSV1584e273' under resource group 'PSTestRG1584e273' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", - "StatusCode": 404 + "ResponseBody": "{\r\n \"value\": []\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.RecoveryServices/vaults/PSTestRSV1584e273?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMTU4NGUyNzMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YxNTg0ZTI3Mz9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"southeastasia\"\r\n}", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.RecoveryServices/vaults/PSTestRSVd78c9636/backupResourceGuardProxies?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZDc4Yzk2MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZkNzhjOTYzNi9iYWNrdXBSZXNvdXJjZUd1YXJkUHJveGllcz9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "10e03fb3-b96e-4207-b328-724d273463b8" + "c52fb9d5-92d4-4a3e-a2f1-48fc858932f7" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesClient/4.3.2.0" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "98" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -3201,10 +3278,11 @@ "nosniff" ], "x-ms-request-id": [ - "8bbe4ad8-1a61-404d-b02d-1e047f64aba2" + "29112f2e-e6b9-4248-afed-adb8fa10e850" ], "x-ms-client-request-id": [ - "10e03fb3-b96e-4207-b328-724d273463b8" + "c52fb9d5-92d4-4a3e-a2f1-48fc858932f7", + "c52fb9d5-92d4-4a3e-a2f1-48fc858932f7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3212,20 +3290,23 @@ "Server": [ "Microsoft-IIS/10.0" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "209" + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" ], "x-ms-correlation-request-id": [ - "8bbe4ad8-1a61-404d-b02d-1e047f64aba2" + "29112f2e-e6b9-4248-afed-adb8fa10e850" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T221404Z:8bbe4ad8-1a61-404d-b02d-1e047f64aba2" + "WESTINDIA:20220517T044035Z:29112f2e-e6b9-4248-afed-adb8fa10e850" ], "Date": [ - "Wed, 23 Feb 2022 22:14:03 GMT" + "Tue, 17 May 2022 04:40:35 GMT" ], "Content-Length": [ - "466" + "12" ], "Content-Type": [ "application/json" @@ -3234,26 +3315,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"location\": \"southeastasia\",\r\n \"name\": \"PSTestRSV1584e273\",\r\n \"etag\": \"W/\\\"datetime'2022-02-23T22%3A14%3A03.0031667Z'\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateEndpointStateForBackup\": \"None\",\r\n \"privateEndpointStateForSiteRecovery\": \"None\"\r\n },\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.RecoveryServices/vaults/PSTestRSV1584e273\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n }\r\n}", - "StatusCode": 201 + "ResponseBody": "{\r\n \"value\": []\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.RecoveryServices/vaults/PSTestRSV1584e273/backupconfig/vaultconfig?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMTU4NGUyNzMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YxNTg0ZTI3My9iYWNrdXBjb25maWcvdmF1bHRjb25maWc/YXBpLXZlcnNpb249MjAyMS0xMC0wMQ==", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.RecoveryServices/vaults/PSTestRSVd78c9636/backupResourceGuardProxies?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZDc4Yzk2MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZkNzhjOTYzNi9iYWNrdXBSZXNvdXJjZUd1YXJkUHJveGllcz9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0de2d875-71e9-41b3-b0bb-453b41ec83b1" + "e812749e-cfbf-4113-9518-6a8784bbadca" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -3267,11 +3348,11 @@ "nosniff" ], "x-ms-request-id": [ - "134bb497-4eed-4e73-aad5-cfa8b7e09ed3" + "1f453df9-352e-4685-813a-22f0c54d886b" ], "x-ms-client-request-id": [ - "0de2d875-71e9-41b3-b0bb-453b41ec83b1", - "0de2d875-71e9-41b3-b0bb-453b41ec83b1" + "e812749e-cfbf-4113-9518-6a8784bbadca", + "e812749e-cfbf-4113-9518-6a8784bbadca" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3282,20 +3363,20 @@ "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "149" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" ], "x-ms-correlation-request-id": [ - "134bb497-4eed-4e73-aad5-cfa8b7e09ed3" + "1f453df9-352e-4685-813a-22f0c54d886b" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T221423Z:134bb497-4eed-4e73-aad5-cfa8b7e09ed3" + "WESTINDIA:20220517T044233Z:1f453df9-352e-4685-813a-22f0c54d886b" ], "Date": [ - "Wed, 23 Feb 2022 22:14:23 GMT" + "Tue, 17 May 2022 04:42:32 GMT" ], "Content-Length": [ - "380" + "12" ], "Content-Type": [ "application/json" @@ -3304,26 +3385,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.RecoveryServices/vaults/PSTestRSV1584e273/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}", + "ResponseBody": "{\r\n \"value\": []\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.RecoveryServices/vaults/PSTestRSV1584e273/backupconfig/vaultconfig?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMTU4NGUyNzMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YxNTg0ZTI3My9iYWNrdXBjb25maWcvdmF1bHRjb25maWc/YXBpLXZlcnNpb249MjAyMS0xMC0wMQ==", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.RecoveryServices/vaults/PSTestRSVd78c9636/backupconfig/vaultconfig?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZDc4Yzk2MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZkNzhjOTYzNi9iYWNrdXBjb25maWcvdmF1bHRjb25maWc/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "PATCH", "RequestBody": "{\r\n \"properties\": {\r\n \"enhancedSecurityState\": \"Enabled\",\r\n \"softDeleteFeatureState\": \"Disabled\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "0de2d875-71e9-41b3-b0bb-453b41ec83b1" + "da56349d-e9c0-4217-8d5e-a216871e5120" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3343,11 +3424,11 @@ "nosniff" ], "x-ms-request-id": [ - "52b82313-4c91-4b4f-abd7-52f070a0fdce" + "cbae81bc-ef62-4d3e-a513-4964a267fc47" ], "x-ms-client-request-id": [ - "0de2d875-71e9-41b3-b0bb-453b41ec83b1", - "0de2d875-71e9-41b3-b0bb-453b41ec83b1" + "da56349d-e9c0-4217-8d5e-a216871e5120", + "da56349d-e9c0-4217-8d5e-a216871e5120" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3359,16 +3440,16 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1192" ], "x-ms-correlation-request-id": [ - "52b82313-4c91-4b4f-abd7-52f070a0fdce" + "cbae81bc-ef62-4d3e-a513-4964a267fc47" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T221425Z:52b82313-4c91-4b4f-abd7-52f070a0fdce" + "WESTINDIA:20220517T043358Z:cbae81bc-ef62-4d3e-a513-4964a267fc47" ], "Date": [ - "Wed, 23 Feb 2022 22:14:24 GMT" + "Tue, 17 May 2022 04:33:58 GMT" ], "Content-Length": [ "381" @@ -3380,26 +3461,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.RecoveryServices/vaults/PSTestRSV1584e273/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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.RecoveryServices/vaults/PSTestRSVd78c9636/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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.RecoveryServices/vaults/PSTestRSV1584e273/backupProtectionContainers?$filter=friendlyName%20eq%20'PSTestVM1584e1'%20and%20backupManagementType%20eq%20'AzureIaasVM'%20and%20status%20eq%20'Registered'&api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMTU4NGUyNzMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YxNTg0ZTI3My9iYWNrdXBQcm90ZWN0aW9uQ29udGFpbmVycz8kZmlsdGVyPWZyaWVuZGx5TmFtZSUyMGVxJTIwJ1BTVGVzdFZNMTU4NGUxJyUyMGFuZCUyMGJhY2t1cE1hbmFnZW1lbnRUeXBlJTIwZXElMjAnQXp1cmVJYWFzVk0nJTIwYW5kJTIwc3RhdHVzJTIwZXElMjAnUmVnaXN0ZXJlZCcmYXBpLXZlcnNpb249MjAyMS0xMC0wMQ==", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.RecoveryServices/vaults/PSTestRSVd78c9636/backupProtectionContainers?$filter=friendlyName%20eq%20'PSTestVMd78c91'%20and%20backupManagementType%20eq%20'AzureIaasVM'%20and%20status%20eq%20'Registered'&api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZDc4Yzk2MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZkNzhjOTYzNi9iYWNrdXBQcm90ZWN0aW9uQ29udGFpbmVycz8kZmlsdGVyPWZyaWVuZGx5TmFtZSUyMGVxJTIwJ1BTVGVzdFZNZDc4YzkxJyUyMGFuZCUyMGJhY2t1cE1hbmFnZW1lbnRUeXBlJTIwZXElMjAnQXp1cmVJYWFzVk0nJTIwYW5kJTIwc3RhdHVzJTIwZXElMjAnUmVnaXN0ZXJlZCcmYXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "80701f52-c3c6-4153-b1ea-8bb1a7fbae39" + "020fb68e-f42b-4d0c-a444-0291d91a3049" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -3413,11 +3494,11 @@ "nosniff" ], "x-ms-request-id": [ - "dc1e3382-670b-43f9-8807-839e67ac17d9" + "d4aeb4d0-4cbb-44a2-908a-baf635837e24" ], "x-ms-client-request-id": [ - "80701f52-c3c6-4153-b1ea-8bb1a7fbae39", - "80701f52-c3c6-4153-b1ea-8bb1a7fbae39" + "020fb68e-f42b-4d0c-a444-0291d91a3049", + "020fb68e-f42b-4d0c-a444-0291d91a3049" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3432,13 +3513,13 @@ "149" ], "x-ms-correlation-request-id": [ - "dc1e3382-670b-43f9-8807-839e67ac17d9" + "d4aeb4d0-4cbb-44a2-908a-baf635837e24" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T221430Z:dc1e3382-670b-43f9-8807-839e67ac17d9" + "WESTINDIA:20220517T043403Z:d4aeb4d0-4cbb-44a2-908a-baf635837e24" ], "Date": [ - "Wed, 23 Feb 2022 22:14:30 GMT" + "Tue, 17 May 2022 04:34:03 GMT" ], "Content-Length": [ "12" @@ -3454,22 +3535,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.RecoveryServices/vaults/PSTestRSV1584e273/backupProtectionContainers?$filter=friendlyName%20eq%20'PSTestVM1584e1'%20and%20backupManagementType%20eq%20'AzureIaasVM'%20and%20status%20eq%20'Registered'&api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMTU4NGUyNzMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YxNTg0ZTI3My9iYWNrdXBQcm90ZWN0aW9uQ29udGFpbmVycz8kZmlsdGVyPWZyaWVuZGx5TmFtZSUyMGVxJTIwJ1BTVGVzdFZNMTU4NGUxJyUyMGFuZCUyMGJhY2t1cE1hbmFnZW1lbnRUeXBlJTIwZXElMjAnQXp1cmVJYWFzVk0nJTIwYW5kJTIwc3RhdHVzJTIwZXElMjAnUmVnaXN0ZXJlZCcmYXBpLXZlcnNpb249MjAyMS0xMC0wMQ==", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.RecoveryServices/vaults/PSTestRSVd78c9636/backupProtectionContainers?$filter=friendlyName%20eq%20'PSTestVMd78c91'%20and%20backupManagementType%20eq%20'AzureIaasVM'%20and%20status%20eq%20'Registered'&api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZDc4Yzk2MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZkNzhjOTYzNi9iYWNrdXBQcm90ZWN0aW9uQ29udGFpbmVycz8kZmlsdGVyPWZyaWVuZGx5TmFtZSUyMGVxJTIwJ1BTVGVzdFZNZDc4YzkxJyUyMGFuZCUyMGJhY2t1cE1hbmFnZW1lbnRUeXBlJTIwZXElMjAnQXp1cmVJYWFzVk0nJTIwYW5kJTIwc3RhdHVzJTIwZXElMjAnUmVnaXN0ZXJlZCcmYXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6cc369d4-d481-4dab-bbbd-545c405956fe" + "2490144f-6780-4fa9-8f3b-0276b48957ca" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -3483,11 +3564,11 @@ "nosniff" ], "x-ms-request-id": [ - "805bd134-ec33-45c7-a75c-1887bb6e424d" + "728e2f29-4dbf-4eb2-b7fd-e2092ee38b56" ], "x-ms-client-request-id": [ - "6cc369d4-d481-4dab-bbbd-545c405956fe", - "6cc369d4-d481-4dab-bbbd-545c405956fe" + "2490144f-6780-4fa9-8f3b-0276b48957ca", + "2490144f-6780-4fa9-8f3b-0276b48957ca" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3502,13 +3583,13 @@ "148" ], "x-ms-correlation-request-id": [ - "805bd134-ec33-45c7-a75c-1887bb6e424d" + "728e2f29-4dbf-4eb2-b7fd-e2092ee38b56" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T221507Z:805bd134-ec33-45c7-a75c-1887bb6e424d" + "WESTINDIA:20220517T043501Z:728e2f29-4dbf-4eb2-b7fd-e2092ee38b56" ], "Date": [ - "Wed, 23 Feb 2022 22:15:07 GMT" + "Tue, 17 May 2022 04:35:01 GMT" ], "Content-Length": [ "914" @@ -3520,26 +3601,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.RecoveryServices/vaults/PSTestRSV1584e273/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrg1584e273;pstestvm1584e1\",\r\n \"name\": \"IaasVMContainer;iaasvmcontainerv2;pstestrg1584e273;pstestvm1584e1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers\",\r\n \"properties\": {\r\n \"virtualMachineId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.Compute/virtualMachines/PSTestVM1584e1\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"resourceGroup\": \"PSTestRG1584e273\",\r\n \"friendlyName\": \"PSTestVM1584e1\",\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.RecoveryServices/vaults/PSTestRSVd78c9636/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrgd78c9636;pstestvmd78c91\",\r\n \"name\": \"IaasVMContainer;iaasvmcontainerv2;pstestrgd78c9636;pstestvmd78c91\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers\",\r\n \"properties\": {\r\n \"virtualMachineId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.Compute/virtualMachines/PSTestVMd78c91\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"resourceGroup\": \"PSTestRGd78c9636\",\r\n \"friendlyName\": \"PSTestVMd78c91\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.RecoveryServices/vaults/PSTestRSV1584e273/backupPolicies/DefaultPolicy?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMTU4NGUyNzMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YxNTg0ZTI3My9iYWNrdXBQb2xpY2llcy9EZWZhdWx0UG9saWN5P2FwaS12ZXJzaW9uPTIwMjEtMTAtMDE=", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.RecoveryServices/vaults/PSTestRSVd78c9636/backupPolicies/DefaultPolicy?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZDc4Yzk2MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZkNzhjOTYzNi9iYWNrdXBQb2xpY2llcy9EZWZhdWx0UG9saWN5P2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "17a7efce-7558-4622-b924-6178b10b9adf" + "f37a04e2-a03f-4300-bed2-6ec502ac0f82" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -3553,11 +3634,11 @@ "nosniff" ], "x-ms-request-id": [ - "8957b029-22d4-4d44-9aa8-90a61da5a6ae" + "8808d557-ac1b-4b52-b42a-f1c2e33580eb" ], "x-ms-client-request-id": [ - "17a7efce-7558-4622-b924-6178b10b9adf", - "17a7efce-7558-4622-b924-6178b10b9adf" + "f37a04e2-a03f-4300-bed2-6ec502ac0f82", + "f37a04e2-a03f-4300-bed2-6ec502ac0f82" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3572,13 +3653,13 @@ "149" ], "x-ms-correlation-request-id": [ - "8957b029-22d4-4d44-9aa8-90a61da5a6ae" + "8808d557-ac1b-4b52-b42a-f1c2e33580eb" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T221431Z:8957b029-22d4-4d44-9aa8-90a61da5a6ae" + "WESTINDIA:20220517T043404Z:8808d557-ac1b-4b52-b42a-f1c2e33580eb" ], "Date": [ - "Wed, 23 Feb 2022 22:14:30 GMT" + "Tue, 17 May 2022 04:34:03 GMT" ], "Content-Length": [ "762" @@ -3590,26 +3671,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.RecoveryServices/vaults/PSTestRSV1584e273/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 \"2022-02-24T08:00:00Z\"\r\n ],\r\n \"scheduleWeeklyFrequency\": 0\r\n },\r\n \"retentionPolicy\": {\r\n \"retentionPolicyType\": \"LongTermRetentionPolicy\",\r\n \"dailySchedule\": {\r\n \"retentionTimes\": [\r\n \"2022-02-24T08:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 30,\r\n \"durationType\": \"Days\"\r\n }\r\n }\r\n },\r\n \"instantRpRetentionRangeInDays\": 2,\r\n \"timeZone\": \"UTC\",\r\n \"protectedItemsCount\": 0\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.RecoveryServices/vaults/PSTestRSVd78c9636/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 \"2022-05-17T14: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 \"2022-05-17T14:30:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 30,\r\n \"durationType\": \"Days\"\r\n }\r\n }\r\n },\r\n \"instantRpRetentionRangeInDays\": 2,\r\n \"timeZone\": \"UTC\",\r\n \"protectedItemsCount\": 0\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.RecoveryServices/vaults/PSTestRSV1584e273/backupPolicies/DefaultPolicy?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMTU4NGUyNzMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YxNTg0ZTI3My9iYWNrdXBQb2xpY2llcy9EZWZhdWx0UG9saWN5P2FwaS12ZXJzaW9uPTIwMjEtMTAtMDE=", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.RecoveryServices/vaults/PSTestRSVd78c9636/backupPolicies/DefaultPolicy?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZDc4Yzk2MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZkNzhjOTYzNi9iYWNrdXBQb2xpY2llcy9EZWZhdWx0UG9saWN5P2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8069e756-76af-4e47-bb03-061fff861adf" + "7f25f54e-54fd-4645-9c30-36b55f6d6b67" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -3623,11 +3704,11 @@ "nosniff" ], "x-ms-request-id": [ - "df975d19-3360-4359-adba-6fcb3ce846de" + "69953464-e0df-4390-80fa-101fe55f1f95" ], "x-ms-client-request-id": [ - "8069e756-76af-4e47-bb03-061fff861adf", - "8069e756-76af-4e47-bb03-061fff861adf" + "7f25f54e-54fd-4645-9c30-36b55f6d6b67", + "7f25f54e-54fd-4645-9c30-36b55f6d6b67" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3642,13 +3723,13 @@ "149" ], "x-ms-correlation-request-id": [ - "df975d19-3360-4359-adba-6fcb3ce846de" + "69953464-e0df-4390-80fa-101fe55f1f95" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T222018Z:df975d19-3360-4359-adba-6fcb3ce846de" + "WESTINDIA:20220517T043928Z:69953464-e0df-4390-80fa-101fe55f1f95" ], "Date": [ - "Wed, 23 Feb 2022 22:20:18 GMT" + "Tue, 17 May 2022 04:39:28 GMT" ], "Content-Length": [ "762" @@ -3660,26 +3741,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.RecoveryServices/vaults/PSTestRSV1584e273/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 \"2022-02-24T08:00:00Z\"\r\n ],\r\n \"scheduleWeeklyFrequency\": 0\r\n },\r\n \"retentionPolicy\": {\r\n \"retentionPolicyType\": \"LongTermRetentionPolicy\",\r\n \"dailySchedule\": {\r\n \"retentionTimes\": [\r\n \"2022-02-24T08:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 30,\r\n \"durationType\": \"Days\"\r\n }\r\n }\r\n },\r\n \"instantRpRetentionRangeInDays\": 2,\r\n \"timeZone\": \"UTC\",\r\n \"protectedItemsCount\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.RecoveryServices/vaults/PSTestRSVd78c9636/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 \"2022-05-17T14: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 \"2022-05-17T14:30:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 30,\r\n \"durationType\": \"Days\"\r\n }\r\n }\r\n },\r\n \"instantRpRetentionRangeInDays\": 2,\r\n \"timeZone\": \"UTC\",\r\n \"protectedItemsCount\": 1\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.RecoveryServices/vaults/PSTestRSV1584e273/backupProtectableItems?$filter=backupManagementType%20eq%20'AzureIaasVM'&api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMTU4NGUyNzMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YxNTg0ZTI3My9iYWNrdXBQcm90ZWN0YWJsZUl0ZW1zPyRmaWx0ZXI9YmFja3VwTWFuYWdlbWVudFR5cGUlMjBlcSUyMCdBenVyZUlhYXNWTScmYXBpLXZlcnNpb249MjAyMS0xMC0wMQ==", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.RecoveryServices/vaults/PSTestRSVd78c9636/backupProtectableItems?$filter=backupManagementType%20eq%20'AzureIaasVM'&api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZDc4Yzk2MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZkNzhjOTYzNi9iYWNrdXBQcm90ZWN0YWJsZUl0ZW1zPyRmaWx0ZXI9YmFja3VwTWFuYWdlbWVudFR5cGUlMjBlcSUyMCdBenVyZUlhYXNWTScmYXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "55355398-b1ec-47dd-8417-4726ea4a5da4" + "716852de-fe05-4012-b659-d3c2944cd351" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -3693,11 +3774,11 @@ "nosniff" ], "x-ms-request-id": [ - "17f45bf8-456b-4612-b9eb-ac10a049a363" + "23300413-0094-4a62-8a05-4ffaab63ab4a" ], "x-ms-client-request-id": [ - "55355398-b1ec-47dd-8417-4726ea4a5da4", - "55355398-b1ec-47dd-8417-4726ea4a5da4" + "716852de-fe05-4012-b659-d3c2944cd351", + "716852de-fe05-4012-b659-d3c2944cd351" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3712,16 +3793,16 @@ "149" ], "x-ms-correlation-request-id": [ - "17f45bf8-456b-4612-b9eb-ac10a049a363" + "23300413-0094-4a62-8a05-4ffaab63ab4a" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T221432Z:17f45bf8-456b-4612-b9eb-ac10a049a363" + "WESTINDIA:20220517T043404Z:23300413-0094-4a62-8a05-4ffaab63ab4a" ], "Date": [ - "Wed, 23 Feb 2022 22:14:31 GMT" + "Tue, 17 May 2022 04:34:04 GMT" ], "Content-Length": [ - "905" + "7033" ], "Content-Type": [ "application/json" @@ -3730,26 +3811,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.RecoveryServices/vaults/PSTestRSV1584e273/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrg1584e273;pstestvm1584e1/protectableItems/vm;iaasvmcontainerv2;pstestrg1584e273;pstestvm1584e1\",\r\n \"name\": \"iaasvmcontainerv2;pstestrg1584e273;pstestvm1584e1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems\",\r\n \"properties\": {\r\n \"virtualMachineId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.Compute/virtualMachines/PSTestVM1584e1\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"resourceGroup\": \"PSTestRG1584e273\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"protectableItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"friendlyName\": \"PSTestVM1584e1\",\r\n \"protectionState\": \"NotProtected\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.RecoveryServices/vaults/PSTestRSVd78c9636/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;akneema;akneema-hana-vm/protectableItems/vm;iaasvmcontainerv2;akneema;akneema-hana-vm\",\r\n \"name\": \"iaasvmcontainerv2;akneema;akneema-hana-vm\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems\",\r\n \"properties\": {\r\n \"virtualMachineId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/akneema/providers/Microsoft.Compute/virtualMachines/akneema-hana-vm\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"resourceGroup\": \"akneema\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"protectableItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"friendlyName\": \"akneema-hana-vm\",\r\n \"protectionState\": \"NotProtected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.RecoveryServices/vaults/PSTestRSVd78c9636/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;containerautoprotection;shrja-2019/protectableItems/vm;iaasvmcontainerv2;containerautoprotection;shrja-2019\",\r\n \"name\": \"iaasvmcontainerv2;containerautoprotection;shrja-2019\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems\",\r\n \"properties\": {\r\n \"virtualMachineId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/ContainerAutoProtection/providers/Microsoft.Compute/virtualMachines/shrja-2019\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"resourceGroup\": \"ContainerAutoProtection\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"protectableItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"friendlyName\": \"shrja-2019\",\r\n \"protectionState\": \"NotProtected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.RecoveryServices/vaults/PSTestRSVd78c9636/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrgd78c9636;pstestvmd78c91/protectableItems/vm;iaasvmcontainerv2;pstestrgd78c9636;pstestvmd78c91\",\r\n \"name\": \"iaasvmcontainerv2;pstestrgd78c9636;pstestvmd78c91\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems\",\r\n \"properties\": {\r\n \"virtualMachineId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.Compute/virtualMachines/PSTestVMd78c91\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"resourceGroup\": \"PSTestRGd78c9636\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"protectableItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"friendlyName\": \"PSTestVMd78c91\",\r\n \"protectionState\": \"NotProtected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.RecoveryServices/vaults/PSTestRSVd78c9636/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestwlrg1bca8;pstestwlvm1bca8/protectableItems/vm;iaasvmcontainerv2;pstestwlrg1bca8;pstestwlvm1bca8\",\r\n \"name\": \"iaasvmcontainerv2;pstestwlrg1bca8;pstestwlvm1bca8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems\",\r\n \"properties\": {\r\n \"virtualMachineId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/pstestwlRG1bca8/providers/Microsoft.Compute/virtualMachines/pstestwlvm1bca8\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"resourceGroup\": \"pstestwlRG1bca8\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"protectableItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"friendlyName\": \"pstestwlvm1bca8\",\r\n \"protectionState\": \"NotProtected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.RecoveryServices/vaults/PSTestRSVd78c9636/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;shrja2008_group;shrja2008/protectableItems/vm;iaasvmcontainerv2;shrja2008_group;shrja2008\",\r\n \"name\": \"iaasvmcontainerv2;shrja2008_group;shrja2008\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems\",\r\n \"properties\": {\r\n \"virtualMachineId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/shrja2008_group/providers/Microsoft.Compute/virtualMachines/shrja2008\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"resourceGroup\": \"shrja2008_group\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"protectableItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"friendlyName\": \"shrja2008\",\r\n \"protectionState\": \"NotProtected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.RecoveryServices/vaults/PSTestRSVd78c9636/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;shswain-rg-donotuse;dsdsdsad/protectableItems/vm;iaasvmcontainerv2;shswain-rg-donotuse;dsdsdsad\",\r\n \"name\": \"iaasvmcontainerv2;shswain-rg-donotuse;dsdsdsad\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems\",\r\n \"properties\": {\r\n \"virtualMachineId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/shswain-rg-donotuse/providers/Microsoft.Compute/virtualMachines/dsdsdsad\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"resourceGroup\": \"shswain-rg-donotuse\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"protectableItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"friendlyName\": \"dsdsdsad\",\r\n \"protectionState\": \"NotProtected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.RecoveryServices/vaults/PSTestRSVd78c9636/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;shswain-rg-donotuse;iumjjkuui/protectableItems/vm;iaasvmcontainerv2;shswain-rg-donotuse;iumjjkuui\",\r\n \"name\": \"iaasvmcontainerv2;shswain-rg-donotuse;iumjjkuui\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems\",\r\n \"properties\": {\r\n \"virtualMachineId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/shswain-rg-donotuse/providers/Microsoft.Compute/virtualMachines/iumjjkuui\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"resourceGroup\": \"shswain-rg-donotuse\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"protectableItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"friendlyName\": \"iumjjkuui\",\r\n \"protectionState\": \"NotProtected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.RecoveryServices/vaults/PSTestRSVd78c9636/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;sisi-rsv;sisi-mercury/protectableItems/vm;iaasvmcontainerv2;sisi-rsv;sisi-mercury\",\r\n \"name\": \"iaasvmcontainerv2;sisi-rsv;sisi-mercury\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems\",\r\n \"properties\": {\r\n \"virtualMachineId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/sisi-RSV/providers/Microsoft.Compute/virtualMachines/sisi-mercury\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"resourceGroup\": \"sisi-RSV\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"protectableItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"friendlyName\": \"sisi-mercury\",\r\n \"protectionState\": \"NotProtected\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.RecoveryServices/vaults/PSTestRSV1584e273/backupProtectableItems?$filter=backupManagementType%20eq%20'AzureIaasVM'&api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMTU4NGUyNzMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YxNTg0ZTI3My9iYWNrdXBQcm90ZWN0YWJsZUl0ZW1zPyRmaWx0ZXI9YmFja3VwTWFuYWdlbWVudFR5cGUlMjBlcSUyMCdBenVyZUlhYXNWTScmYXBpLXZlcnNpb249MjAyMS0xMC0wMQ==", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.RecoveryServices/vaults/PSTestRSVd78c9636/backupProtectableItems?$filter=backupManagementType%20eq%20'AzureIaasVM'&api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZDc4Yzk2MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZkNzhjOTYzNi9iYWNrdXBQcm90ZWN0YWJsZUl0ZW1zPyRmaWx0ZXI9YmFja3VwTWFuYWdlbWVudFR5cGUlMjBlcSUyMCdBenVyZUlhYXNWTScmYXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f91fc061-ddb1-4aba-b2a4-aa3e14f5e43f" + "e64c6597-2358-455a-877b-fcfa09fbdbf9" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -3763,11 +3844,11 @@ "nosniff" ], "x-ms-request-id": [ - "e6970549-8505-436b-b76d-91766ed1984a" + "67a96694-38d1-478c-9f31-56a88592c7a8" ], "x-ms-client-request-id": [ - "f91fc061-ddb1-4aba-b2a4-aa3e14f5e43f", - "f91fc061-ddb1-4aba-b2a4-aa3e14f5e43f" + "e64c6597-2358-455a-877b-fcfa09fbdbf9", + "e64c6597-2358-455a-877b-fcfa09fbdbf9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3782,16 +3863,16 @@ "149" ], "x-ms-correlation-request-id": [ - "e6970549-8505-436b-b76d-91766ed1984a" + "67a96694-38d1-478c-9f31-56a88592c7a8" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T222019Z:e6970549-8505-436b-b76d-91766ed1984a" + "WESTINDIA:20220517T043929Z:67a96694-38d1-478c-9f31-56a88592c7a8" ], "Date": [ - "Wed, 23 Feb 2022 22:20:18 GMT" + "Tue, 17 May 2022 04:39:28 GMT" ], "Content-Length": [ - "12" + "6139" ], "Content-Type": [ "application/json" @@ -3800,26 +3881,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.RecoveryServices/vaults/PSTestRSVd78c9636/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;akneema;akneema-hana-vm/protectableItems/vm;iaasvmcontainerv2;akneema;akneema-hana-vm\",\r\n \"name\": \"iaasvmcontainerv2;akneema;akneema-hana-vm\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems\",\r\n \"properties\": {\r\n \"virtualMachineId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/akneema/providers/Microsoft.Compute/virtualMachines/akneema-hana-vm\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"resourceGroup\": \"akneema\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"protectableItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"friendlyName\": \"akneema-hana-vm\",\r\n \"protectionState\": \"NotProtected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.RecoveryServices/vaults/PSTestRSVd78c9636/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;containerautoprotection;shrja-2019/protectableItems/vm;iaasvmcontainerv2;containerautoprotection;shrja-2019\",\r\n \"name\": \"iaasvmcontainerv2;containerautoprotection;shrja-2019\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems\",\r\n \"properties\": {\r\n \"virtualMachineId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/ContainerAutoProtection/providers/Microsoft.Compute/virtualMachines/shrja-2019\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"resourceGroup\": \"ContainerAutoProtection\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"protectableItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"friendlyName\": \"shrja-2019\",\r\n \"protectionState\": \"NotProtected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.RecoveryServices/vaults/PSTestRSVd78c9636/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestwlrg1bca8;pstestwlvm1bca8/protectableItems/vm;iaasvmcontainerv2;pstestwlrg1bca8;pstestwlvm1bca8\",\r\n \"name\": \"iaasvmcontainerv2;pstestwlrg1bca8;pstestwlvm1bca8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems\",\r\n \"properties\": {\r\n \"virtualMachineId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/pstestwlRG1bca8/providers/Microsoft.Compute/virtualMachines/pstestwlvm1bca8\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"resourceGroup\": \"pstestwlRG1bca8\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"protectableItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"friendlyName\": \"pstestwlvm1bca8\",\r\n \"protectionState\": \"NotProtected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.RecoveryServices/vaults/PSTestRSVd78c9636/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;shrja2008_group;shrja2008/protectableItems/vm;iaasvmcontainerv2;shrja2008_group;shrja2008\",\r\n \"name\": \"iaasvmcontainerv2;shrja2008_group;shrja2008\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems\",\r\n \"properties\": {\r\n \"virtualMachineId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/shrja2008_group/providers/Microsoft.Compute/virtualMachines/shrja2008\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"resourceGroup\": \"shrja2008_group\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"protectableItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"friendlyName\": \"shrja2008\",\r\n \"protectionState\": \"NotProtected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.RecoveryServices/vaults/PSTestRSVd78c9636/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;shswain-rg-donotuse;dsdsdsad/protectableItems/vm;iaasvmcontainerv2;shswain-rg-donotuse;dsdsdsad\",\r\n \"name\": \"iaasvmcontainerv2;shswain-rg-donotuse;dsdsdsad\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems\",\r\n \"properties\": {\r\n \"virtualMachineId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/shswain-rg-donotuse/providers/Microsoft.Compute/virtualMachines/dsdsdsad\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"resourceGroup\": \"shswain-rg-donotuse\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"protectableItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"friendlyName\": \"dsdsdsad\",\r\n \"protectionState\": \"NotProtected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.RecoveryServices/vaults/PSTestRSVd78c9636/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;shswain-rg-donotuse;iumjjkuui/protectableItems/vm;iaasvmcontainerv2;shswain-rg-donotuse;iumjjkuui\",\r\n \"name\": \"iaasvmcontainerv2;shswain-rg-donotuse;iumjjkuui\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems\",\r\n \"properties\": {\r\n \"virtualMachineId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/shswain-rg-donotuse/providers/Microsoft.Compute/virtualMachines/iumjjkuui\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"resourceGroup\": \"shswain-rg-donotuse\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"protectableItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"friendlyName\": \"iumjjkuui\",\r\n \"protectionState\": \"NotProtected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.RecoveryServices/vaults/PSTestRSVd78c9636/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;sisi-rsv;sisi-mercury/protectableItems/vm;iaasvmcontainerv2;sisi-rsv;sisi-mercury\",\r\n \"name\": \"iaasvmcontainerv2;sisi-rsv;sisi-mercury\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems\",\r\n \"properties\": {\r\n \"virtualMachineId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/sisi-RSV/providers/Microsoft.Compute/virtualMachines/sisi-mercury\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"resourceGroup\": \"sisi-RSV\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"protectableItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"friendlyName\": \"sisi-mercury\",\r\n \"protectionState\": \"NotProtected\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.RecoveryServices/vaults/PSTestRSV1584e273/backupProtectableItems?$filter=backupManagementType%20eq%20'AzureIaasVM'&api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMTU4NGUyNzMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YxNTg0ZTI3My9iYWNrdXBQcm90ZWN0YWJsZUl0ZW1zPyRmaWx0ZXI9YmFja3VwTWFuYWdlbWVudFR5cGUlMjBlcSUyMCdBenVyZUlhYXNWTScmYXBpLXZlcnNpb249MjAyMS0xMC0wMQ==", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.RecoveryServices/vaults/PSTestRSVd78c9636/backupProtectableItems?$filter=backupManagementType%20eq%20'AzureIaasVM'&api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZDc4Yzk2MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZkNzhjOTYzNi9iYWNrdXBQcm90ZWN0YWJsZUl0ZW1zPyRmaWx0ZXI9YmFja3VwTWFuYWdlbWVudFR5cGUlMjBlcSUyMCdBenVyZUlhYXNWTScmYXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f91fc061-ddb1-4aba-b2a4-aa3e14f5e43f" + "e64c6597-2358-455a-877b-fcfa09fbdbf9" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -3833,11 +3914,11 @@ "nosniff" ], "x-ms-request-id": [ - "b5ea6595-98d4-479c-b67f-84edf7080ee0" + "23868d50-b086-4a51-92df-224bf1a9e538" ], "x-ms-client-request-id": [ - "f91fc061-ddb1-4aba-b2a4-aa3e14f5e43f", - "f91fc061-ddb1-4aba-b2a4-aa3e14f5e43f" + "e64c6597-2358-455a-877b-fcfa09fbdbf9", + "e64c6597-2358-455a-877b-fcfa09fbdbf9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3852,16 +3933,16 @@ "148" ], "x-ms-correlation-request-id": [ - "b5ea6595-98d4-479c-b67f-84edf7080ee0" + "23868d50-b086-4a51-92df-224bf1a9e538" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T222032Z:b5ea6595-98d4-479c-b67f-84edf7080ee0" + "WESTINDIA:20220517T043942Z:23868d50-b086-4a51-92df-224bf1a9e538" ], "Date": [ - "Wed, 23 Feb 2022 22:20:32 GMT" + "Tue, 17 May 2022 04:39:42 GMT" ], "Content-Length": [ - "905" + "7033" ], "Content-Type": [ "application/json" @@ -3870,26 +3951,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.RecoveryServices/vaults/PSTestRSV1584e273/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrg1584e273;pstestvm1584e2/protectableItems/vm;iaasvmcontainerv2;pstestrg1584e273;pstestvm1584e2\",\r\n \"name\": \"iaasvmcontainerv2;pstestrg1584e273;pstestvm1584e2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems\",\r\n \"properties\": {\r\n \"virtualMachineId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.Compute/virtualMachines/PSTestVM1584e2\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"resourceGroup\": \"PSTestRG1584e273\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"protectableItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"friendlyName\": \"PSTestVM1584e2\",\r\n \"protectionState\": \"NotProtected\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.RecoveryServices/vaults/PSTestRSVd78c9636/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;akneema;akneema-hana-vm/protectableItems/vm;iaasvmcontainerv2;akneema;akneema-hana-vm\",\r\n \"name\": \"iaasvmcontainerv2;akneema;akneema-hana-vm\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems\",\r\n \"properties\": {\r\n \"virtualMachineId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/akneema/providers/Microsoft.Compute/virtualMachines/akneema-hana-vm\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"resourceGroup\": \"akneema\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"protectableItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"friendlyName\": \"akneema-hana-vm\",\r\n \"protectionState\": \"NotProtected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.RecoveryServices/vaults/PSTestRSVd78c9636/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;containerautoprotection;shrja-2019/protectableItems/vm;iaasvmcontainerv2;containerautoprotection;shrja-2019\",\r\n \"name\": \"iaasvmcontainerv2;containerautoprotection;shrja-2019\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems\",\r\n \"properties\": {\r\n \"virtualMachineId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/ContainerAutoProtection/providers/Microsoft.Compute/virtualMachines/shrja-2019\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"resourceGroup\": \"ContainerAutoProtection\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"protectableItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"friendlyName\": \"shrja-2019\",\r\n \"protectionState\": \"NotProtected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.RecoveryServices/vaults/PSTestRSVd78c9636/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrgd78c9636;pstestvmd78c92/protectableItems/vm;iaasvmcontainerv2;pstestrgd78c9636;pstestvmd78c92\",\r\n \"name\": \"iaasvmcontainerv2;pstestrgd78c9636;pstestvmd78c92\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems\",\r\n \"properties\": {\r\n \"virtualMachineId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.Compute/virtualMachines/PSTestVMd78c92\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"resourceGroup\": \"PSTestRGd78c9636\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"protectableItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"friendlyName\": \"PSTestVMd78c92\",\r\n \"protectionState\": \"NotProtected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.RecoveryServices/vaults/PSTestRSVd78c9636/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestwlrg1bca8;pstestwlvm1bca8/protectableItems/vm;iaasvmcontainerv2;pstestwlrg1bca8;pstestwlvm1bca8\",\r\n \"name\": \"iaasvmcontainerv2;pstestwlrg1bca8;pstestwlvm1bca8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems\",\r\n \"properties\": {\r\n \"virtualMachineId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/pstestwlRG1bca8/providers/Microsoft.Compute/virtualMachines/pstestwlvm1bca8\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"resourceGroup\": \"pstestwlRG1bca8\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"protectableItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"friendlyName\": \"pstestwlvm1bca8\",\r\n \"protectionState\": \"NotProtected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.RecoveryServices/vaults/PSTestRSVd78c9636/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;shrja2008_group;shrja2008/protectableItems/vm;iaasvmcontainerv2;shrja2008_group;shrja2008\",\r\n \"name\": \"iaasvmcontainerv2;shrja2008_group;shrja2008\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems\",\r\n \"properties\": {\r\n \"virtualMachineId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/shrja2008_group/providers/Microsoft.Compute/virtualMachines/shrja2008\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"resourceGroup\": \"shrja2008_group\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"protectableItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"friendlyName\": \"shrja2008\",\r\n \"protectionState\": \"NotProtected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.RecoveryServices/vaults/PSTestRSVd78c9636/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;shswain-rg-donotuse;dsdsdsad/protectableItems/vm;iaasvmcontainerv2;shswain-rg-donotuse;dsdsdsad\",\r\n \"name\": \"iaasvmcontainerv2;shswain-rg-donotuse;dsdsdsad\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems\",\r\n \"properties\": {\r\n \"virtualMachineId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/shswain-rg-donotuse/providers/Microsoft.Compute/virtualMachines/dsdsdsad\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"resourceGroup\": \"shswain-rg-donotuse\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"protectableItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"friendlyName\": \"dsdsdsad\",\r\n \"protectionState\": \"NotProtected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.RecoveryServices/vaults/PSTestRSVd78c9636/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;shswain-rg-donotuse;iumjjkuui/protectableItems/vm;iaasvmcontainerv2;shswain-rg-donotuse;iumjjkuui\",\r\n \"name\": \"iaasvmcontainerv2;shswain-rg-donotuse;iumjjkuui\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems\",\r\n \"properties\": {\r\n \"virtualMachineId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/shswain-rg-donotuse/providers/Microsoft.Compute/virtualMachines/iumjjkuui\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"resourceGroup\": \"shswain-rg-donotuse\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"protectableItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"friendlyName\": \"iumjjkuui\",\r\n \"protectionState\": \"NotProtected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.RecoveryServices/vaults/PSTestRSVd78c9636/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;sisi-rsv;sisi-mercury/protectableItems/vm;iaasvmcontainerv2;sisi-rsv;sisi-mercury\",\r\n \"name\": \"iaasvmcontainerv2;sisi-rsv;sisi-mercury\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems\",\r\n \"properties\": {\r\n \"virtualMachineId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/sisi-RSV/providers/Microsoft.Compute/virtualMachines/sisi-mercury\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"resourceGroup\": \"sisi-RSV\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"protectableItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"friendlyName\": \"sisi-mercury\",\r\n \"protectionState\": \"NotProtected\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.RecoveryServices/vaults/PSTestRSV1584e273/backupFabrics/Azure/protectionContainers/IaasVMContainer%3Biaasvmcontainerv2%3Bpstestrg1584e273%3Bpstestvm1584e1/protectedItems/vm%3Biaasvmcontainerv2%3Bpstestrg1584e273%3Bpstestvm1584e1?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMTU4NGUyNzMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YxNTg0ZTI3My9iYWNrdXBGYWJyaWNzL0F6dXJlL3Byb3RlY3Rpb25Db250YWluZXJzL0lhYXNWTUNvbnRhaW5lciUzQmlhYXN2bWNvbnRhaW5lcnYyJTNCcHN0ZXN0cmcxNTg0ZTI3MyUzQnBzdGVzdHZtMTU4NGUxL3Byb3RlY3RlZEl0ZW1zL3ZtJTNCaWFhc3ZtY29udGFpbmVydjIlM0Jwc3Rlc3RyZzE1ODRlMjczJTNCcHN0ZXN0dm0xNTg0ZTE/YXBpLXZlcnNpb249MjAyMS0xMC0wMQ==", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.RecoveryServices/vaults/PSTestRSVd78c9636/backupFabrics/Azure/protectionContainers/IaasVMContainer%3Biaasvmcontainerv2%3Bpstestrgd78c9636%3Bpstestvmd78c91/protectedItems/vm%3Biaasvmcontainerv2%3Bpstestrgd78c9636%3Bpstestvmd78c91?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZDc4Yzk2MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZkNzhjOTYzNi9iYWNrdXBGYWJyaWNzL0F6dXJlL3Byb3RlY3Rpb25Db250YWluZXJzL0lhYXNWTUNvbnRhaW5lciUzQmlhYXN2bWNvbnRhaW5lcnYyJTNCcHN0ZXN0cmdkNzhjOTYzNiUzQnBzdGVzdHZtZDc4YzkxL3Byb3RlY3RlZEl0ZW1zL3ZtJTNCaWFhc3ZtY29udGFpbmVydjIlM0Jwc3Rlc3RyZ2Q3OGM5NjM2JTNCcHN0ZXN0dm1kNzhjOTE/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"protectedItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"sourceResourceId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.Compute/virtualMachines/PSTestVM1584e1\",\r\n \"policyId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.RecoveryServices/vaults/PSTestRSV1584e273/backupPolicies/DefaultPolicy\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"protectedItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"sourceResourceId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.Compute/virtualMachines/PSTestVMd78c91\",\r\n \"policyId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.RecoveryServices/vaults/PSTestRSVd78c9636/backupPolicies/DefaultPolicy\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "55355398-b1ec-47dd-8417-4726ea4a5da4" + "716852de-fe05-4012-b659-d3c2944cd351" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3906,23 +3987,23 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.RecoveryServices/vaults/PSTestRSV1584e273/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrg1584e273;pstestvm1584e1/protectedItems/vm;iaasvmcontainerv2;pstestrg1584e273;pstestvm1584e1/operationResults/a148323f-3a21-418e-84af-542a0b90d63f?api-version=2021-10-01" + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.RecoveryServices/vaults/PSTestRSVd78c9636/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrgd78c9636;pstestvmd78c91/protectedItems/vm;iaasvmcontainerv2;pstestrgd78c9636;pstestvmd78c91/operationResults/859a2e86-3ddc-47ea-891c-069431999c74?api-version=2022-02-01" ], "Retry-After": [ "60" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.RecoveryServices/vaults/PSTestRSV1584e273/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrg1584e273;pstestvm1584e1/protectedItems/vm;iaasvmcontainerv2;pstestrg1584e273;pstestvm1584e1/operationsStatus/a148323f-3a21-418e-84af-542a0b90d63f?api-version=2021-10-01" + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.RecoveryServices/vaults/PSTestRSVd78c9636/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrgd78c9636;pstestvmd78c91/protectedItems/vm;iaasvmcontainerv2;pstestrgd78c9636;pstestvmd78c91/operationsStatus/859a2e86-3ddc-47ea-891c-069431999c74?api-version=2022-02-01" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "21dc1382-3162-420e-b8b4-c70db2b17598" + "7f110f3e-7b0b-4e75-9100-e1cceb5d9b42" ], "x-ms-client-request-id": [ - "55355398-b1ec-47dd-8417-4726ea4a5da4", - "55355398-b1ec-47dd-8417-4726ea4a5da4" + "716852de-fe05-4012-b659-d3c2944cd351", + "716852de-fe05-4012-b659-d3c2944cd351" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3931,16 +4012,16 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1191" ], "x-ms-correlation-request-id": [ - "21dc1382-3162-420e-b8b4-c70db2b17598" + "7f110f3e-7b0b-4e75-9100-e1cceb5d9b42" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T221433Z:21dc1382-3162-420e-b8b4-c70db2b17598" + "WESTINDIA:20220517T043405Z:7f110f3e-7b0b-4e75-9100-e1cceb5d9b42" ], "Date": [ - "Wed, 23 Feb 2022 22:14:32 GMT" + "Tue, 17 May 2022 04:34:05 GMT" ], "Expires": [ "-1" @@ -3953,22 +4034,22 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.RecoveryServices/vaults/PSTestRSV1584e273/backupOperations/a148323f-3a21-418e-84af-542a0b90d63f?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMTU4NGUyNzMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YxNTg0ZTI3My9iYWNrdXBPcGVyYXRpb25zL2ExNDgzMjNmLTNhMjEtNDE4ZS04NGFmLTU0MmEwYjkwZDYzZj9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.RecoveryServices/vaults/PSTestRSVd78c9636/backupOperations/859a2e86-3ddc-47ea-891c-069431999c74?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZDc4Yzk2MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZkNzhjOTYzNi9iYWNrdXBPcGVyYXRpb25zLzg1OWEyZTg2LTNkZGMtNDdlYS04OTFjLTA2OTQzMTk5OWM3ND9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "55355398-b1ec-47dd-8417-4726ea4a5da4" + "716852de-fe05-4012-b659-d3c2944cd351" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -3982,11 +4063,11 @@ "nosniff" ], "x-ms-request-id": [ - "e42d6190-19d2-45fe-a731-597cf8fc241e" + "ce052603-098e-42d7-bbe5-773a3bbaa1a7" ], "x-ms-client-request-id": [ - "55355398-b1ec-47dd-8417-4726ea4a5da4", - "55355398-b1ec-47dd-8417-4726ea4a5da4" + "716852de-fe05-4012-b659-d3c2944cd351", + "716852de-fe05-4012-b659-d3c2944cd351" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4001,16 +4082,16 @@ "149" ], "x-ms-correlation-request-id": [ - "e42d6190-19d2-45fe-a731-597cf8fc241e" + "ce052603-098e-42d7-bbe5-773a3bbaa1a7" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T221433Z:e42d6190-19d2-45fe-a731-597cf8fc241e" + "WESTINDIA:20220517T043406Z:ce052603-098e-42d7-bbe5-773a3bbaa1a7" ], "Date": [ - "Wed, 23 Feb 2022 22:14:33 GMT" + "Tue, 17 May 2022 04:34:05 GMT" ], "Content-Length": [ - "188" + "187" ], "Content-Type": [ "application/json" @@ -4019,26 +4100,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"a148323f-3a21-418e-84af-542a0b90d63f\",\r\n \"name\": \"a148323f-3a21-418e-84af-542a0b90d63f\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-23T22:14:32.8984173Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"859a2e86-3ddc-47ea-891c-069431999c74\",\r\n \"name\": \"859a2e86-3ddc-47ea-891c-069431999c74\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T04:34:05.573523Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.RecoveryServices/vaults/PSTestRSV1584e273/backupOperations/a148323f-3a21-418e-84af-542a0b90d63f?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMTU4NGUyNzMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YxNTg0ZTI3My9iYWNrdXBPcGVyYXRpb25zL2ExNDgzMjNmLTNhMjEtNDE4ZS04NGFmLTU0MmEwYjkwZDYzZj9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.RecoveryServices/vaults/PSTestRSVd78c9636/backupOperations/859a2e86-3ddc-47ea-891c-069431999c74?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZDc4Yzk2MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZkNzhjOTYzNi9iYWNrdXBPcGVyYXRpb25zLzg1OWEyZTg2LTNkZGMtNDdlYS04OTFjLTA2OTQzMTk5OWM3ND9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "55355398-b1ec-47dd-8417-4726ea4a5da4" + "716852de-fe05-4012-b659-d3c2944cd351" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -4052,11 +4133,11 @@ "nosniff" ], "x-ms-request-id": [ - "6f83a967-45c3-4e4e-8dba-51865843d6c0" + "8845106a-9787-401c-ae42-268e71479d07" ], "x-ms-client-request-id": [ - "55355398-b1ec-47dd-8417-4726ea4a5da4", - "55355398-b1ec-47dd-8417-4726ea4a5da4" + "716852de-fe05-4012-b659-d3c2944cd351", + "716852de-fe05-4012-b659-d3c2944cd351" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4071,16 +4152,16 @@ "148" ], "x-ms-correlation-request-id": [ - "6f83a967-45c3-4e4e-8dba-51865843d6c0" + "8845106a-9787-401c-ae42-268e71479d07" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T221444Z:6f83a967-45c3-4e4e-8dba-51865843d6c0" + "WESTINDIA:20220517T043411Z:8845106a-9787-401c-ae42-268e71479d07" ], "Date": [ - "Wed, 23 Feb 2022 22:14:43 GMT" + "Tue, 17 May 2022 04:34:11 GMT" ], "Content-Length": [ - "188" + "187" ], "Content-Type": [ "application/json" @@ -4089,26 +4170,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"a148323f-3a21-418e-84af-542a0b90d63f\",\r\n \"name\": \"a148323f-3a21-418e-84af-542a0b90d63f\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-23T22:14:32.8984173Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"859a2e86-3ddc-47ea-891c-069431999c74\",\r\n \"name\": \"859a2e86-3ddc-47ea-891c-069431999c74\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T04:34:05.573523Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.RecoveryServices/vaults/PSTestRSV1584e273/backupOperations/a148323f-3a21-418e-84af-542a0b90d63f?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMTU4NGUyNzMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YxNTg0ZTI3My9iYWNrdXBPcGVyYXRpb25zL2ExNDgzMjNmLTNhMjEtNDE4ZS04NGFmLTU0MmEwYjkwZDYzZj9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.RecoveryServices/vaults/PSTestRSVd78c9636/backupOperations/859a2e86-3ddc-47ea-891c-069431999c74?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZDc4Yzk2MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZkNzhjOTYzNi9iYWNrdXBPcGVyYXRpb25zLzg1OWEyZTg2LTNkZGMtNDdlYS04OTFjLTA2OTQzMTk5OWM3ND9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "55355398-b1ec-47dd-8417-4726ea4a5da4" + "716852de-fe05-4012-b659-d3c2944cd351" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -4122,11 +4203,11 @@ "nosniff" ], "x-ms-request-id": [ - "56fca33b-ee0f-46e6-8e10-be3930a62f2e" + "f2aaf007-a8db-4686-b94a-6303f3b559ca" ], "x-ms-client-request-id": [ - "55355398-b1ec-47dd-8417-4726ea4a5da4", - "55355398-b1ec-47dd-8417-4726ea4a5da4" + "716852de-fe05-4012-b659-d3c2944cd351", + "716852de-fe05-4012-b659-d3c2944cd351" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4141,16 +4222,16 @@ "147" ], "x-ms-correlation-request-id": [ - "56fca33b-ee0f-46e6-8e10-be3930a62f2e" + "f2aaf007-a8db-4686-b94a-6303f3b559ca" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T221454Z:56fca33b-ee0f-46e6-8e10-be3930a62f2e" + "WESTINDIA:20220517T043417Z:f2aaf007-a8db-4686-b94a-6303f3b559ca" ], "Date": [ - "Wed, 23 Feb 2022 22:14:53 GMT" + "Tue, 17 May 2022 04:34:16 GMT" ], "Content-Length": [ - "188" + "187" ], "Content-Type": [ "application/json" @@ -4159,26 +4240,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"a148323f-3a21-418e-84af-542a0b90d63f\",\r\n \"name\": \"a148323f-3a21-418e-84af-542a0b90d63f\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-23T22:14:32.8984173Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"859a2e86-3ddc-47ea-891c-069431999c74\",\r\n \"name\": \"859a2e86-3ddc-47ea-891c-069431999c74\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T04:34:05.573523Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.RecoveryServices/vaults/PSTestRSV1584e273/backupOperations/a148323f-3a21-418e-84af-542a0b90d63f?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMTU4NGUyNzMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YxNTg0ZTI3My9iYWNrdXBPcGVyYXRpb25zL2ExNDgzMjNmLTNhMjEtNDE4ZS04NGFmLTU0MmEwYjkwZDYzZj9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.RecoveryServices/vaults/PSTestRSVd78c9636/backupOperations/859a2e86-3ddc-47ea-891c-069431999c74?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZDc4Yzk2MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZkNzhjOTYzNi9iYWNrdXBPcGVyYXRpb25zLzg1OWEyZTg2LTNkZGMtNDdlYS04OTFjLTA2OTQzMTk5OWM3ND9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "55355398-b1ec-47dd-8417-4726ea4a5da4" + "716852de-fe05-4012-b659-d3c2944cd351" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -4192,11 +4273,11 @@ "nosniff" ], "x-ms-request-id": [ - "61d7bd16-2cb6-415b-b15c-fae53e8f3c5b" + "31db834b-781c-4492-b2f9-3a3dd4a1e278" ], "x-ms-client-request-id": [ - "55355398-b1ec-47dd-8417-4726ea4a5da4", - "55355398-b1ec-47dd-8417-4726ea4a5da4" + "716852de-fe05-4012-b659-d3c2944cd351", + "716852de-fe05-4012-b659-d3c2944cd351" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4211,16 +4292,16 @@ "146" ], "x-ms-correlation-request-id": [ - "61d7bd16-2cb6-415b-b15c-fae53e8f3c5b" + "31db834b-781c-4492-b2f9-3a3dd4a1e278" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T221505Z:61d7bd16-2cb6-415b-b15c-fae53e8f3c5b" + "WESTINDIA:20220517T043422Z:31db834b-781c-4492-b2f9-3a3dd4a1e278" ], "Date": [ - "Wed, 23 Feb 2022 22:15:05 GMT" + "Tue, 17 May 2022 04:34:21 GMT" ], "Content-Length": [ - "304" + "187" ], "Content-Type": [ "application/json" @@ -4229,26 +4310,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"a148323f-3a21-418e-84af-542a0b90d63f\",\r\n \"name\": \"a148323f-3a21-418e-84af-542a0b90d63f\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-02-23T22:14:32.8984173Z\",\r\n \"endTime\": \"2022-02-23T22:14:32.8984173Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"ee47eff8-290d-42e0-8dfd-a42b1321658d\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"859a2e86-3ddc-47ea-891c-069431999c74\",\r\n \"name\": \"859a2e86-3ddc-47ea-891c-069431999c74\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T04:34:05.573523Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.RecoveryServices/vaults/PSTestRSV1584e273/backupOperations/a148323f-3a21-418e-84af-542a0b90d63f?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMTU4NGUyNzMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YxNTg0ZTI3My9iYWNrdXBPcGVyYXRpb25zL2ExNDgzMjNmLTNhMjEtNDE4ZS04NGFmLTU0MmEwYjkwZDYzZj9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.RecoveryServices/vaults/PSTestRSVd78c9636/backupOperations/859a2e86-3ddc-47ea-891c-069431999c74?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZDc4Yzk2MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZkNzhjOTYzNi9iYWNrdXBPcGVyYXRpb25zLzg1OWEyZTg2LTNkZGMtNDdlYS04OTFjLTA2OTQzMTk5OWM3ND9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "55355398-b1ec-47dd-8417-4726ea4a5da4" + "716852de-fe05-4012-b659-d3c2944cd351" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -4262,11 +4343,11 @@ "nosniff" ], "x-ms-request-id": [ - "b77aaace-9045-4224-bebb-da819f91cc1e" + "cbce5e59-86e5-4edf-a958-24ca5ce5c4cb" ], "x-ms-client-request-id": [ - "55355398-b1ec-47dd-8417-4726ea4a5da4", - "55355398-b1ec-47dd-8417-4726ea4a5da4" + "716852de-fe05-4012-b659-d3c2944cd351", + "716852de-fe05-4012-b659-d3c2944cd351" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4281,16 +4362,16 @@ "145" ], "x-ms-correlation-request-id": [ - "b77aaace-9045-4224-bebb-da819f91cc1e" + "cbce5e59-86e5-4edf-a958-24ca5ce5c4cb" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T221506Z:b77aaace-9045-4224-bebb-da819f91cc1e" + "WESTINDIA:20220517T043427Z:cbce5e59-86e5-4edf-a958-24ca5ce5c4cb" ], "Date": [ - "Wed, 23 Feb 2022 22:15:06 GMT" + "Tue, 17 May 2022 04:34:27 GMT" ], "Content-Length": [ - "304" + "187" ], "Content-Type": [ "application/json" @@ -4299,26 +4380,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"a148323f-3a21-418e-84af-542a0b90d63f\",\r\n \"name\": \"a148323f-3a21-418e-84af-542a0b90d63f\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-02-23T22:14:32.8984173Z\",\r\n \"endTime\": \"2022-02-23T22:14:32.8984173Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"ee47eff8-290d-42e0-8dfd-a42b1321658d\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"859a2e86-3ddc-47ea-891c-069431999c74\",\r\n \"name\": \"859a2e86-3ddc-47ea-891c-069431999c74\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T04:34:05.573523Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.RecoveryServices/vaults/PSTestRSV1584e273/backupJobs/ee47eff8-290d-42e0-8dfd-a42b1321658d?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMTU4NGUyNzMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YxNTg0ZTI3My9iYWNrdXBKb2JzL2VlNDdlZmY4LTI5MGQtNDJlMC04ZGZkLWE0MmIxMzIxNjU4ZD9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.RecoveryServices/vaults/PSTestRSVd78c9636/backupOperations/859a2e86-3ddc-47ea-891c-069431999c74?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZDc4Yzk2MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZkNzhjOTYzNi9iYWNrdXBPcGVyYXRpb25zLzg1OWEyZTg2LTNkZGMtNDdlYS04OTFjLTA2OTQzMTk5OWM3ND9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "55355398-b1ec-47dd-8417-4726ea4a5da4" + "716852de-fe05-4012-b659-d3c2944cd351" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -4328,40 +4409,39 @@ "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-IIS/10.0" - ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "9a369cad-5cd7-4288-b9c4-fcd20257cdeb" + "2d482b7f-d108-44a9-971d-5e3d09384186" ], "x-ms-client-request-id": [ - "55355398-b1ec-47dd-8417-4726ea4a5da4", - "55355398-b1ec-47dd-8417-4726ea4a5da4" - ], - "X-Powered-By": [ - "ASP.NET" + "716852de-fe05-4012-b659-d3c2944cd351", + "716852de-fe05-4012-b659-d3c2944cd351" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "149" + "144" ], "x-ms-correlation-request-id": [ - "9a369cad-5cd7-4288-b9c4-fcd20257cdeb" + "2d482b7f-d108-44a9-971d-5e3d09384186" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T221506Z:9a369cad-5cd7-4288-b9c4-fcd20257cdeb" + "WESTINDIA:20220517T043433Z:2d482b7f-d108-44a9-971d-5e3d09384186" ], "Date": [ - "Wed, 23 Feb 2022 22:15:06 GMT" + "Tue, 17 May 2022 04:34:32 GMT" ], "Content-Length": [ - "840" + "187" ], "Content-Type": [ "application/json" @@ -4370,26 +4450,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.RecoveryServices/vaults/PSTestRSV1584e273/backupJobs/ee47eff8-290d-42e0-8dfd-a42b1321658d\",\r\n \"name\": \"ee47eff8-290d-42e0-8dfd-a42b1321658d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg1584e273;pstestvm1584e1\",\r\n \"duration\": \"PT31.0458523S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm1584e1\",\r\n \"Policy Name\": \"DefaultPolicy\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm1584e1\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"ConfigureBackup\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-02-23T22:14:32.8984173Z\",\r\n \"endTime\": \"2022-02-23T22:15:03.9442696Z\",\r\n \"activityId\": \"55355398-b1ec-47dd-8417-4726ea4a5da4\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"859a2e86-3ddc-47ea-891c-069431999c74\",\r\n \"name\": \"859a2e86-3ddc-47ea-891c-069431999c74\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T04:34:05.573523Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.RecoveryServices/vaults/PSTestRSV1584e273/backupJobs/ee47eff8-290d-42e0-8dfd-a42b1321658d?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMTU4NGUyNzMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YxNTg0ZTI3My9iYWNrdXBKb2JzL2VlNDdlZmY4LTI5MGQtNDJlMC04ZGZkLWE0MmIxMzIxNjU4ZD9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.RecoveryServices/vaults/PSTestRSVd78c9636/backupOperations/859a2e86-3ddc-47ea-891c-069431999c74?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZDc4Yzk2MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZkNzhjOTYzNi9iYWNrdXBPcGVyYXRpb25zLzg1OWEyZTg2LTNkZGMtNDdlYS04OTFjLTA2OTQzMTk5OWM3ND9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1ba9e174-d92d-4945-bd15-223bf4eefeb7" + "716852de-fe05-4012-b659-d3c2944cd351" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -4399,40 +4479,39 @@ "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-IIS/10.0" - ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "22ca2fe0-ec60-4372-9d4b-e5ecb72aba2d" + "c71672a7-b6ca-4bf6-a270-390938ba6b61" ], "x-ms-client-request-id": [ - "1ba9e174-d92d-4945-bd15-223bf4eefeb7", - "1ba9e174-d92d-4945-bd15-223bf4eefeb7" - ], - "X-Powered-By": [ - "ASP.NET" + "716852de-fe05-4012-b659-d3c2944cd351", + "716852de-fe05-4012-b659-d3c2944cd351" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "145" + "143" ], "x-ms-correlation-request-id": [ - "22ca2fe0-ec60-4372-9d4b-e5ecb72aba2d" + "c71672a7-b6ca-4bf6-a270-390938ba6b61" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T222119Z:22ca2fe0-ec60-4372-9d4b-e5ecb72aba2d" + "WESTINDIA:20220517T043438Z:c71672a7-b6ca-4bf6-a270-390938ba6b61" ], "Date": [ - "Wed, 23 Feb 2022 22:21:18 GMT" + "Tue, 17 May 2022 04:34:37 GMT" ], "Content-Length": [ - "840" + "187" ], "Content-Type": [ "application/json" @@ -4441,26 +4520,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.RecoveryServices/vaults/PSTestRSV1584e273/backupJobs/ee47eff8-290d-42e0-8dfd-a42b1321658d\",\r\n \"name\": \"ee47eff8-290d-42e0-8dfd-a42b1321658d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg1584e273;pstestvm1584e1\",\r\n \"duration\": \"PT31.0458523S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm1584e1\",\r\n \"Policy Name\": \"DefaultPolicy\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm1584e1\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"ConfigureBackup\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-02-23T22:14:32.8984173Z\",\r\n \"endTime\": \"2022-02-23T22:15:03.9442696Z\",\r\n \"activityId\": \"55355398-b1ec-47dd-8417-4726ea4a5da4\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"859a2e86-3ddc-47ea-891c-069431999c74\",\r\n \"name\": \"859a2e86-3ddc-47ea-891c-069431999c74\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T04:34:05.573523Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.RecoveryServices/vaults/PSTestRSV1584e273/backupJobs/ee47eff8-290d-42e0-8dfd-a42b1321658d?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMTU4NGUyNzMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YxNTg0ZTI3My9iYWNrdXBKb2JzL2VlNDdlZmY4LTI5MGQtNDJlMC04ZGZkLWE0MmIxMzIxNjU4ZD9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.RecoveryServices/vaults/PSTestRSVd78c9636/backupOperations/859a2e86-3ddc-47ea-891c-069431999c74?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZDc4Yzk2MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZkNzhjOTYzNi9iYWNrdXBPcGVyYXRpb25zLzg1OWEyZTg2LTNkZGMtNDdlYS04OTFjLTA2OTQzMTk5OWM3ND9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "94e35b4c-4d4f-4154-a153-acd39101ec55" + "716852de-fe05-4012-b659-d3c2944cd351" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -4470,40 +4549,39 @@ "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-IIS/10.0" - ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "3a1594f0-a4b2-4745-9f7b-909a52353973" + "c04a50a1-3155-4f33-a33c-11c02dd680d6" ], "x-ms-client-request-id": [ - "94e35b4c-4d4f-4154-a153-acd39101ec55", - "94e35b4c-4d4f-4154-a153-acd39101ec55" - ], - "X-Powered-By": [ - "ASP.NET" + "716852de-fe05-4012-b659-d3c2944cd351", + "716852de-fe05-4012-b659-d3c2944cd351" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "144" + "142" ], "x-ms-correlation-request-id": [ - "3a1594f0-a4b2-4745-9f7b-909a52353973" + "c04a50a1-3155-4f33-a33c-11c02dd680d6" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T222119Z:3a1594f0-a4b2-4745-9f7b-909a52353973" + "WESTINDIA:20220517T043444Z:c04a50a1-3155-4f33-a33c-11c02dd680d6" ], "Date": [ - "Wed, 23 Feb 2022 22:21:18 GMT" + "Tue, 17 May 2022 04:34:43 GMT" ], "Content-Length": [ - "840" + "187" ], "Content-Type": [ "application/json" @@ -4512,26 +4590,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.RecoveryServices/vaults/PSTestRSV1584e273/backupJobs/ee47eff8-290d-42e0-8dfd-a42b1321658d\",\r\n \"name\": \"ee47eff8-290d-42e0-8dfd-a42b1321658d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg1584e273;pstestvm1584e1\",\r\n \"duration\": \"PT31.0458523S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm1584e1\",\r\n \"Policy Name\": \"DefaultPolicy\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm1584e1\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"ConfigureBackup\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-02-23T22:14:32.8984173Z\",\r\n \"endTime\": \"2022-02-23T22:15:03.9442696Z\",\r\n \"activityId\": \"55355398-b1ec-47dd-8417-4726ea4a5da4\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"859a2e86-3ddc-47ea-891c-069431999c74\",\r\n \"name\": \"859a2e86-3ddc-47ea-891c-069431999c74\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T04:34:05.573523Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.RecoveryServices/vaults/PSTestRSV1584e273/backupProtectedItems?$filter=backupManagementType%20eq%20'AzureIaasVM'%20and%20itemType%20eq%20'VM'&api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMTU4NGUyNzMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YxNTg0ZTI3My9iYWNrdXBQcm90ZWN0ZWRJdGVtcz8kZmlsdGVyPWJhY2t1cE1hbmFnZW1lbnRUeXBlJTIwZXElMjAnQXp1cmVJYWFzVk0nJTIwYW5kJTIwaXRlbVR5cGUlMjBlcSUyMCdWTScmYXBpLXZlcnNpb249MjAyMS0xMC0wMQ==", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.RecoveryServices/vaults/PSTestRSVd78c9636/backupOperations/859a2e86-3ddc-47ea-891c-069431999c74?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZDc4Yzk2MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZkNzhjOTYzNi9iYWNrdXBPcGVyYXRpb25zLzg1OWEyZTg2LTNkZGMtNDdlYS04OTFjLTA2OTQzMTk5OWM3ND9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "971901a9-701b-4656-961e-59b7777e193b" + "716852de-fe05-4012-b659-d3c2944cd351" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -4545,11 +4623,11 @@ "nosniff" ], "x-ms-request-id": [ - "62c10b4a-7418-48c9-89eb-bb83d08aee39" + "45c85d0c-219d-4385-b2f7-242a32537fac" ], "x-ms-client-request-id": [ - "971901a9-701b-4656-961e-59b7777e193b", - "971901a9-701b-4656-961e-59b7777e193b" + "716852de-fe05-4012-b659-d3c2944cd351", + "716852de-fe05-4012-b659-d3c2944cd351" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4561,19 +4639,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "149" + "141" ], "x-ms-correlation-request-id": [ - "62c10b4a-7418-48c9-89eb-bb83d08aee39" + "45c85d0c-219d-4385-b2f7-242a32537fac" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T221508Z:62c10b4a-7418-48c9-89eb-bb83d08aee39" + "WESTINDIA:20220517T043449Z:45c85d0c-219d-4385-b2f7-242a32537fac" ], "Date": [ - "Wed, 23 Feb 2022 22:15:08 GMT" + "Tue, 17 May 2022 04:34:49 GMT" ], "Content-Length": [ - "1496" + "187" ], "Content-Type": [ "application/json" @@ -4582,26 +4660,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.RecoveryServices/vaults/PSTestRSV1584e273/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrg1584e273;pstestvm1584e1/protectedItems/VM;iaasvmcontainerv2;pstestrg1584e273;pstestvm1584e1\",\r\n \"name\": \"VM;iaasvmcontainerv2;pstestrg1584e273;pstestvm1584e1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems\",\r\n \"properties\": {\r\n \"kpisHealths\": {},\r\n \"friendlyName\": \"PSTestVM1584e1\",\r\n \"virtualMachineId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.Compute/virtualMachines/PSTestVM1584e1\",\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\": \"228700423876500\",\r\n \"protectedItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"workloadType\": \"VM\",\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg1584e273;pstestvm1584e1\",\r\n \"sourceResourceId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.Compute/virtualMachines/PSTestVM1584e1\",\r\n \"policyId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.RecoveryServices/vaults/PSTestRSV1584e273/backupPolicies/DefaultPolicy\",\r\n \"policyName\": \"DefaultPolicy\",\r\n \"isArchiveEnabled\": false\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"859a2e86-3ddc-47ea-891c-069431999c74\",\r\n \"name\": \"859a2e86-3ddc-47ea-891c-069431999c74\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T04:34:05.573523Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.RecoveryServices/vaults/PSTestRSV1584e273/backupProtectedItems?$filter=backupManagementType%20eq%20'AzureIaasVM'%20and%20itemType%20eq%20'VM'&api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMTU4NGUyNzMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YxNTg0ZTI3My9iYWNrdXBQcm90ZWN0ZWRJdGVtcz8kZmlsdGVyPWJhY2t1cE1hbmFnZW1lbnRUeXBlJTIwZXElMjAnQXp1cmVJYWFzVk0nJTIwYW5kJTIwaXRlbVR5cGUlMjBlcSUyMCdWTScmYXBpLXZlcnNpb249MjAyMS0xMC0wMQ==", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.RecoveryServices/vaults/PSTestRSVd78c9636/backupOperations/859a2e86-3ddc-47ea-891c-069431999c74?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZDc4Yzk2MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZkNzhjOTYzNi9iYWNrdXBPcGVyYXRpb25zLzg1OWEyZTg2LTNkZGMtNDdlYS04OTFjLTA2OTQzMTk5OWM3ND9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6ac93916-c45d-427d-b255-e349a81d5fba" + "716852de-fe05-4012-b659-d3c2944cd351" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -4615,11 +4693,11 @@ "nosniff" ], "x-ms-request-id": [ - "ca0deadb-76a1-40bd-a595-c5e78537cc6c" + "71f32353-ea56-41c2-963a-3a57db199737" ], "x-ms-client-request-id": [ - "6ac93916-c45d-427d-b255-e349a81d5fba", - "6ac93916-c45d-427d-b255-e349a81d5fba" + "716852de-fe05-4012-b659-d3c2944cd351", + "716852de-fe05-4012-b659-d3c2944cd351" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4631,19 +4709,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "149" + "140" ], "x-ms-correlation-request-id": [ - "ca0deadb-76a1-40bd-a595-c5e78537cc6c" + "71f32353-ea56-41c2-963a-3a57db199737" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T222116Z:ca0deadb-76a1-40bd-a595-c5e78537cc6c" + "WESTINDIA:20220517T043455Z:71f32353-ea56-41c2-963a-3a57db199737" ], "Date": [ - "Wed, 23 Feb 2022 22:21:15 GMT" + "Tue, 17 May 2022 04:34:54 GMT" ], "Content-Length": [ - "2981" + "187" ], "Content-Type": [ "application/json" @@ -4652,26 +4730,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.RecoveryServices/vaults/PSTestRSV1584e273/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrg1584e273;pstestvm1584e1/protectedItems/VM;iaasvmcontainerv2;pstestrg1584e273;pstestvm1584e1\",\r\n \"name\": \"VM;iaasvmcontainerv2;pstestrg1584e273;pstestvm1584e1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems\",\r\n \"properties\": {\r\n \"kpisHealths\": {},\r\n \"friendlyName\": \"PSTestVM1584e1\",\r\n \"virtualMachineId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.Compute/virtualMachines/PSTestVM1584e1\",\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\": \"228700423876500\",\r\n \"protectedItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"workloadType\": \"VM\",\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg1584e273;pstestvm1584e1\",\r\n \"sourceResourceId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.Compute/virtualMachines/PSTestVM1584e1\",\r\n \"policyId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.RecoveryServices/vaults/PSTestRSV1584e273/backupPolicies/DefaultPolicy\",\r\n \"policyName\": \"DefaultPolicy\",\r\n \"isArchiveEnabled\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.RecoveryServices/vaults/PSTestRSV1584e273/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrg1584e273;pstestvm1584e2/protectedItems/VM;iaasvmcontainerv2;pstestrg1584e273;pstestvm1584e2\",\r\n \"name\": \"VM;iaasvmcontainerv2;pstestrg1584e273;pstestvm1584e2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems\",\r\n \"properties\": {\r\n \"kpisHealths\": {},\r\n \"friendlyName\": \"PSTestVM1584e2\",\r\n \"virtualMachineId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.Compute/virtualMachines/PSTestVM1584e2\",\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\": \"228700060556071\",\r\n \"protectedItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"workloadType\": \"VM\",\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg1584e273;pstestvm1584e2\",\r\n \"sourceResourceId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.Compute/virtualMachines/PSTestVM1584e2\",\r\n \"policyId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.RecoveryServices/vaults/PSTestRSV1584e273/backupPolicies/DefaultPolicy\",\r\n \"policyName\": \"DefaultPolicy\",\r\n \"isArchiveEnabled\": false\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"859a2e86-3ddc-47ea-891c-069431999c74\",\r\n \"name\": \"859a2e86-3ddc-47ea-891c-069431999c74\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T04:34:05.573523Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.RecoveryServices/vaults/PSTestRSV1584e273/backupProtectedItems?$filter=backupManagementType%20eq%20'AzureIaasVM'%20and%20itemType%20eq%20'VM'&api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMTU4NGUyNzMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YxNTg0ZTI3My9iYWNrdXBQcm90ZWN0ZWRJdGVtcz8kZmlsdGVyPWJhY2t1cE1hbmFnZW1lbnRUeXBlJTIwZXElMjAnQXp1cmVJYWFzVk0nJTIwYW5kJTIwaXRlbVR5cGUlMjBlcSUyMCdWTScmYXBpLXZlcnNpb249MjAyMS0xMC0wMQ==", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.RecoveryServices/vaults/PSTestRSVd78c9636/backupOperations/859a2e86-3ddc-47ea-891c-069431999c74?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZDc4Yzk2MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZkNzhjOTYzNi9iYWNrdXBPcGVyYXRpb25zLzg1OWEyZTg2LTNkZGMtNDdlYS04OTFjLTA2OTQzMTk5OWM3ND9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a722eb91-2a13-47fe-ad58-10b8825bd821" + "716852de-fe05-4012-b659-d3c2944cd351" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -4685,11 +4763,11 @@ "nosniff" ], "x-ms-request-id": [ - "d4dbce73-25f8-436f-8f06-7cbfab394f4c" + "fc9dd885-78d7-456e-816c-1d7d7c3f75de" ], "x-ms-client-request-id": [ - "a722eb91-2a13-47fe-ad58-10b8825bd821", - "a722eb91-2a13-47fe-ad58-10b8825bd821" + "716852de-fe05-4012-b659-d3c2944cd351", + "716852de-fe05-4012-b659-d3c2944cd351" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4701,19 +4779,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "148" + "139" ], "x-ms-correlation-request-id": [ - "d4dbce73-25f8-436f-8f06-7cbfab394f4c" + "fc9dd885-78d7-456e-816c-1d7d7c3f75de" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T222126Z:d4dbce73-25f8-436f-8f06-7cbfab394f4c" + "WESTINDIA:20220517T043500Z:fc9dd885-78d7-456e-816c-1d7d7c3f75de" ], "Date": [ - "Wed, 23 Feb 2022 22:21:25 GMT" + "Tue, 17 May 2022 04:35:00 GMT" ], "Content-Length": [ - "2981" + "302" ], "Content-Type": [ "application/json" @@ -4722,26 +4800,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.RecoveryServices/vaults/PSTestRSV1584e273/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrg1584e273;pstestvm1584e1/protectedItems/VM;iaasvmcontainerv2;pstestrg1584e273;pstestvm1584e1\",\r\n \"name\": \"VM;iaasvmcontainerv2;pstestrg1584e273;pstestvm1584e1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems\",\r\n \"properties\": {\r\n \"kpisHealths\": {},\r\n \"friendlyName\": \"PSTestVM1584e1\",\r\n \"virtualMachineId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.Compute/virtualMachines/PSTestVM1584e1\",\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\": \"228700423876500\",\r\n \"protectedItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"workloadType\": \"VM\",\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg1584e273;pstestvm1584e1\",\r\n \"sourceResourceId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.Compute/virtualMachines/PSTestVM1584e1\",\r\n \"policyId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.RecoveryServices/vaults/PSTestRSV1584e273/backupPolicies/DefaultPolicy\",\r\n \"policyName\": \"DefaultPolicy\",\r\n \"isArchiveEnabled\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.RecoveryServices/vaults/PSTestRSV1584e273/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrg1584e273;pstestvm1584e2/protectedItems/VM;iaasvmcontainerv2;pstestrg1584e273;pstestvm1584e2\",\r\n \"name\": \"VM;iaasvmcontainerv2;pstestrg1584e273;pstestvm1584e2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems\",\r\n \"properties\": {\r\n \"kpisHealths\": {},\r\n \"friendlyName\": \"PSTestVM1584e2\",\r\n \"virtualMachineId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.Compute/virtualMachines/PSTestVM1584e2\",\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\": \"228700060556071\",\r\n \"protectedItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"workloadType\": \"VM\",\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg1584e273;pstestvm1584e2\",\r\n \"sourceResourceId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.Compute/virtualMachines/PSTestVM1584e2\",\r\n \"policyId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.RecoveryServices/vaults/PSTestRSV1584e273/backupPolicies/DefaultPolicy\",\r\n \"policyName\": \"DefaultPolicy\",\r\n \"isArchiveEnabled\": false\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"859a2e86-3ddc-47ea-891c-069431999c74\",\r\n \"name\": \"859a2e86-3ddc-47ea-891c-069431999c74\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-05-17T04:34:05.573523Z\",\r\n \"endTime\": \"2022-05-17T04:34:05.573523Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"9df9ed30-d3bd-47b4-bd83-916736041451\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.RecoveryServices/vaults/PSTestRSV1584e273/backupProtectedItems?$filter=backupManagementType%20eq%20'AzureIaasVM'%20and%20itemType%20eq%20'VM'&api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMTU4NGUyNzMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YxNTg0ZTI3My9iYWNrdXBQcm90ZWN0ZWRJdGVtcz8kZmlsdGVyPWJhY2t1cE1hbmFnZW1lbnRUeXBlJTIwZXElMjAnQXp1cmVJYWFzVk0nJTIwYW5kJTIwaXRlbVR5cGUlMjBlcSUyMCdWTScmYXBpLXZlcnNpb249MjAyMS0xMC0wMQ==", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.RecoveryServices/vaults/PSTestRSVd78c9636/backupOperations/859a2e86-3ddc-47ea-891c-069431999c74?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZDc4Yzk2MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZkNzhjOTYzNi9iYWNrdXBPcGVyYXRpb25zLzg1OWEyZTg2LTNkZGMtNDdlYS04OTFjLTA2OTQzMTk5OWM3ND9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "166fa534-25ed-4b68-9cb1-f5e5cbb80193" + "716852de-fe05-4012-b659-d3c2944cd351" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -4755,11 +4833,11 @@ "nosniff" ], "x-ms-request-id": [ - "5c34ae15-ad23-453c-a55c-08574b5f80c5" + "72c405c2-599a-40bb-a3fd-51b8639da0dc" ], "x-ms-client-request-id": [ - "166fa534-25ed-4b68-9cb1-f5e5cbb80193", - "166fa534-25ed-4b68-9cb1-f5e5cbb80193" + "716852de-fe05-4012-b659-d3c2944cd351", + "716852de-fe05-4012-b659-d3c2944cd351" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4771,19 +4849,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "147" + "138" ], "x-ms-correlation-request-id": [ - "5c34ae15-ad23-453c-a55c-08574b5f80c5" + "72c405c2-599a-40bb-a3fd-51b8639da0dc" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T222330Z:5c34ae15-ad23-453c-a55c-08574b5f80c5" + "WESTINDIA:20220517T043501Z:72c405c2-599a-40bb-a3fd-51b8639da0dc" ], "Date": [ - "Wed, 23 Feb 2022 22:23:30 GMT" + "Tue, 17 May 2022 04:35:00 GMT" ], "Content-Length": [ - "1496" + "302" ], "Content-Type": [ "application/json" @@ -4792,26 +4870,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.RecoveryServices/vaults/PSTestRSV1584e273/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrg1584e273;pstestvm1584e2/protectedItems/VM;iaasvmcontainerv2;pstestrg1584e273;pstestvm1584e2\",\r\n \"name\": \"VM;iaasvmcontainerv2;pstestrg1584e273;pstestvm1584e2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems\",\r\n \"properties\": {\r\n \"kpisHealths\": {},\r\n \"friendlyName\": \"PSTestVM1584e2\",\r\n \"virtualMachineId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.Compute/virtualMachines/PSTestVM1584e2\",\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\": \"228700060556071\",\r\n \"protectedItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"workloadType\": \"VM\",\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg1584e273;pstestvm1584e2\",\r\n \"sourceResourceId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.Compute/virtualMachines/PSTestVM1584e2\",\r\n \"policyId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.RecoveryServices/vaults/PSTestRSV1584e273/backupPolicies/DefaultPolicy\",\r\n \"policyName\": \"DefaultPolicy\",\r\n \"isArchiveEnabled\": false\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"859a2e86-3ddc-47ea-891c-069431999c74\",\r\n \"name\": \"859a2e86-3ddc-47ea-891c-069431999c74\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-05-17T04:34:05.573523Z\",\r\n \"endTime\": \"2022-05-17T04:34:05.573523Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"9df9ed30-d3bd-47b4-bd83-916736041451\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.RecoveryServices/vaults/PSTestRSV1584e273/backupFabrics/Azure/protectionContainers/IaasVMContainer%3Biaasvmcontainerv2%3Bpstestrg1584e273%3Bpstestvm1584e1/protectedItems/VM%3Biaasvmcontainerv2%3Bpstestrg1584e273%3Bpstestvm1584e1?$filter=expand%20eq%20'extendedinfo'&api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMTU4NGUyNzMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YxNTg0ZTI3My9iYWNrdXBGYWJyaWNzL0F6dXJlL3Byb3RlY3Rpb25Db250YWluZXJzL0lhYXNWTUNvbnRhaW5lciUzQmlhYXN2bWNvbnRhaW5lcnYyJTNCcHN0ZXN0cmcxNTg0ZTI3MyUzQnBzdGVzdHZtMTU4NGUxL3Byb3RlY3RlZEl0ZW1zL1ZNJTNCaWFhc3ZtY29udGFpbmVydjIlM0Jwc3Rlc3RyZzE1ODRlMjczJTNCcHN0ZXN0dm0xNTg0ZTE/JGZpbHRlcj1leHBhbmQlMjBlcSUyMCdleHRlbmRlZGluZm8nJmFwaS12ZXJzaW9uPTIwMjEtMTAtMDE=", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.RecoveryServices/vaults/PSTestRSVd78c9636/backupJobs/9df9ed30-d3bd-47b4-bd83-916736041451?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZDc4Yzk2MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZkNzhjOTYzNi9iYWNrdXBKb2JzLzlkZjllZDMwLWQzYmQtNDdiNC1iZDgzLTkxNjczNjA0MTQ1MT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "971901a9-701b-4656-961e-59b7777e193b" + "716852de-fe05-4012-b659-d3c2944cd351" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -4821,39 +4899,40 @@ "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-IIS/10.0", + "Microsoft-IIS/10.0" + ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "6862bf56-9f78-488f-a4d9-ad220ded64b1" + "81ce06e3-faff-4a60-9c08-8cf9a477c803" ], "x-ms-client-request-id": [ - "971901a9-701b-4656-961e-59b7777e193b", - "971901a9-701b-4656-961e-59b7777e193b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-IIS/10.0" + "716852de-fe05-4012-b659-d3c2944cd351", + "716852de-fe05-4012-b659-d3c2944cd351" ], "X-Powered-By": [ "ASP.NET" ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "149" ], "x-ms-correlation-request-id": [ - "6862bf56-9f78-488f-a4d9-ad220ded64b1" + "81ce06e3-faff-4a60-9c08-8cf9a477c803" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T221509Z:6862bf56-9f78-488f-a4d9-ad220ded64b1" + "WESTINDIA:20220517T043501Z:81ce06e3-faff-4a60-9c08-8cf9a477c803" ], "Date": [ - "Wed, 23 Feb 2022 22:15:09 GMT" + "Tue, 17 May 2022 04:35:01 GMT" ], "Content-Length": [ - "1551" + "839" ], "Content-Type": [ "application/json" @@ -4862,26 +4941,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.RecoveryServices/vaults/PSTestRSV1584e273/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrg1584e273;pstestvm1584e1/protectedItems/VM;iaasvmcontainerv2;pstestrg1584e273;pstestvm1584e1\",\r\n \"name\": \"VM;iaasvmcontainerv2;pstestrg1584e273;pstestvm1584e1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems\",\r\n \"properties\": {\r\n \"kpisHealths\": {},\r\n \"friendlyName\": \"PSTestVM1584e1\",\r\n \"virtualMachineId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.Compute/virtualMachines/PSTestVM1584e1\",\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\": \"228700423876500\",\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;pstestrg1584e273;pstestvm1584e1\",\r\n \"sourceResourceId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.Compute/virtualMachines/PSTestVM1584e1\",\r\n \"policyId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.RecoveryServices/vaults/PSTestRSV1584e273/backupPolicies/DefaultPolicy\",\r\n \"policyName\": \"DefaultPolicy\",\r\n \"isArchiveEnabled\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.RecoveryServices/vaults/PSTestRSVd78c9636/backupJobs/9df9ed30-d3bd-47b4-bd83-916736041451\",\r\n \"name\": \"9df9ed30-d3bd-47b4-bd83-916736041451\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgd78c9636;pstestvmd78c91\",\r\n \"duration\": \"PT51.5377427S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvmd78c91\",\r\n \"Policy Name\": \"DefaultPolicy\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvmd78c91\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"ConfigureBackup\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-05-17T04:34:05.573523Z\",\r\n \"endTime\": \"2022-05-17T04:34:57.1112657Z\",\r\n \"activityId\": \"716852de-fe05-4012-b659-d3c2944cd351\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.RecoveryServices/vaults/PSTestRSV1584e273/backupJobs?$filter=operation%20eq%20''%20and%20startTime%20eq%20'2022-02-22%2010:15:10%20PM'%20and%20endTime%20eq%20'2022-02-23%2010:15:10%20PM'&api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMTU4NGUyNzMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YxNTg0ZTI3My9iYWNrdXBKb2JzPyRmaWx0ZXI9b3BlcmF0aW9uJTIwZXElMjAnJyUyMGFuZCUyMHN0YXJ0VGltZSUyMGVxJTIwJzIwMjItMDItMjIlMjAxMDoxNToxMCUyMFBNJyUyMGFuZCUyMGVuZFRpbWUlMjBlcSUyMCcyMDIyLTAyLTIzJTIwMTA6MTU6MTAlMjBQTScmYXBpLXZlcnNpb249MjAyMS0xMC0wMQ==", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.RecoveryServices/vaults/PSTestRSVd78c9636/backupJobs/9df9ed30-d3bd-47b4-bd83-916736041451?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZDc4Yzk2MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZkNzhjOTYzNi9iYWNrdXBKb2JzLzlkZjllZDMwLWQzYmQtNDdiNC1iZDgzLTkxNjczNjA0MTQ1MT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "02df556a-43ce-405e-9b09-160dd09ff471" + "bf16bd48-5c32-477e-a1b9-ca4539ede417" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -4899,11 +4978,11 @@ "nosniff" ], "x-ms-request-id": [ - "0c7e202f-5d7d-48ac-9ca6-a09a5e7bf521" + "76dfa821-4072-4f29-a5b0-7d1ca732a7a9" ], "x-ms-client-request-id": [ - "02df556a-43ce-405e-9b09-160dd09ff471", - "02df556a-43ce-405e-9b09-160dd09ff471" + "bf16bd48-5c32-477e-a1b9-ca4539ede417", + "bf16bd48-5c32-477e-a1b9-ca4539ede417" ], "X-Powered-By": [ "ASP.NET" @@ -4912,19 +4991,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "148" + "145" ], "x-ms-correlation-request-id": [ - "0c7e202f-5d7d-48ac-9ca6-a09a5e7bf521" + "76dfa821-4072-4f29-a5b0-7d1ca732a7a9" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T221509Z:0c7e202f-5d7d-48ac-9ca6-a09a5e7bf521" + "WESTINDIA:20220517T044031Z:76dfa821-4072-4f29-a5b0-7d1ca732a7a9" ], "Date": [ - "Wed, 23 Feb 2022 22:15:09 GMT" + "Tue, 17 May 2022 04:40:31 GMT" ], "Content-Length": [ - "747" + "839" ], "Content-Type": [ "application/json" @@ -4933,26 +5012,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.RecoveryServices/vaults/PSTestRSV1584e273/backupJobs/ee47eff8-290d-42e0-8dfd-a42b1321658d\",\r\n \"name\": \"ee47eff8-290d-42e0-8dfd-a42b1321658d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg1584e273;pstestvm1584e1\",\r\n \"duration\": \"PT31.0458523S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"entityFriendlyName\": \"pstestvm1584e1\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"ConfigureBackup\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-02-23T22:14:32.8984173Z\",\r\n \"endTime\": \"2022-02-23T22:15:03.9442696Z\",\r\n \"activityId\": \"55355398-b1ec-47dd-8417-4726ea4a5da4\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.RecoveryServices/vaults/PSTestRSVd78c9636/backupJobs/9df9ed30-d3bd-47b4-bd83-916736041451\",\r\n \"name\": \"9df9ed30-d3bd-47b4-bd83-916736041451\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgd78c9636;pstestvmd78c91\",\r\n \"duration\": \"PT51.5377427S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvmd78c91\",\r\n \"Policy Name\": \"DefaultPolicy\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvmd78c91\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"ConfigureBackup\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-05-17T04:34:05.573523Z\",\r\n \"endTime\": \"2022-05-17T04:34:57.1112657Z\",\r\n \"activityId\": \"716852de-fe05-4012-b659-d3c2944cd351\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.Compute/virtualMachines/PSTestVM1584e2?api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMTU4NGUyNzMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy9QU1Rlc3RWTTE1ODRlMj9hcGktdmVyc2lvbj0yMDIxLTExLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.RecoveryServices/vaults/PSTestRSVd78c9636/backupJobs/9df9ed30-d3bd-47b4-bd83-916736041451?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZDc4Yzk2MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZkNzhjOTYzNi9iYWNrdXBKb2JzLzlkZjllZDMwLWQzYmQtNDdiNC1iZDgzLTkxNjczNjA0MTQ1MT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "55291f72-c3d6-45ed-9f34-c326710fc8d5" + "f463924f-08e3-42de-a584-a647823c9948" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -4962,54 +5041,68 @@ "Pragma": [ "no-cache" ], - "x-ms-failure-cause": [ - "gateway" + "Server": [ + "Microsoft-IIS/10.0", + "Microsoft-IIS/10.0" + ], + "X-Content-Type-Options": [ + "nosniff" ], "x-ms-request-id": [ - "cf52d1ce-3302-4aea-b019-7fbef19b4d88" + "f92f3ac8-f30b-4a49-82db-379935ba6c5a" ], - "x-ms-correlation-request-id": [ - "cf52d1ce-3302-4aea-b019-7fbef19b4d88" + "x-ms-client-request-id": [ + "f463924f-08e3-42de-a584-a647823c9948", + "f463924f-08e3-42de-a584-a647823c9948" ], - "x-ms-routing-request-id": [ - "CENTRALUS:20220223T221510Z:cf52d1ce-3302-4aea-b019-7fbef19b4d88" + "X-Powered-By": [ + "ASP.NET" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ - "nosniff" + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "144" + ], + "x-ms-correlation-request-id": [ + "f92f3ac8-f30b-4a49-82db-379935ba6c5a" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220517T044031Z:f92f3ac8-f30b-4a49-82db-379935ba6c5a" ], "Date": [ - "Wed, 23 Feb 2022 22:15:09 GMT" + "Tue, 17 May 2022 04:40:31 GMT" + ], + "Content-Length": [ + "839" ], "Content-Type": [ - "application/json; charset=utf-8" + "application/json" ], "Expires": [ "-1" - ], - "Content-Length": [ - "236" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Compute/virtualMachines/PSTestVM1584e2' under resource group 'PSTestRG1584e273' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", - "StatusCode": 404 + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.RecoveryServices/vaults/PSTestRSVd78c9636/backupJobs/9df9ed30-d3bd-47b4-bd83-916736041451\",\r\n \"name\": \"9df9ed30-d3bd-47b4-bd83-916736041451\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgd78c9636;pstestvmd78c91\",\r\n \"duration\": \"PT51.5377427S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvmd78c91\",\r\n \"Policy Name\": \"DefaultPolicy\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvmd78c91\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"ConfigureBackup\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-05-17T04:34:05.573523Z\",\r\n \"endTime\": \"2022-05-17T04:34:57.1112657Z\",\r\n \"activityId\": \"716852de-fe05-4012-b659-d3c2944cd351\"\r\n }\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.Compute/virtualMachines/PSTestVM1584e2?api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMTU4NGUyNzMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy9QU1Rlc3RWTTE1ODRlMj9hcGktdmVyc2lvbj0yMDIxLTExLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.RecoveryServices/vaults/PSTestRSVd78c9636/backupProtectedItems?$filter=backupManagementType%20eq%20'AzureIaasVM'%20and%20itemType%20eq%20'VM'&api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZDc4Yzk2MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZkNzhjOTYzNi9iYWNrdXBQcm90ZWN0ZWRJdGVtcz8kZmlsdGVyPWJhY2t1cE1hbmFnZW1lbnRUeXBlJTIwZXElMjAnQXp1cmVJYWFzVk0nJTIwYW5kJTIwaXRlbVR5cGUlMjBlcSUyMCdWTScmYXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b28069be-e680-4cf1-a94f-23a1bb01530d" + "2434dcc0-dc44-4b0a-978e-5e1d11ea88e0" + ], + "Accept-Language": [ + "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -5019,64 +5112,67 @@ "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/LowCostGet3Min;3996,Microsoft.Compute/LowCostGet30Min;31965" + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "23b9ad4b-d66d-48f3-a05d-288463ee7eac" + ], + "x-ms-client-request-id": [ + "2434dcc0-dc44-4b0a-978e-5e1d11ea88e0", + "2434dcc0-dc44-4b0a-978e-5e1d11ea88e0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ - "ca8373a3-9381-4eff-806d-4a23839c6422" - ], "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "Microsoft-IIS/10.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11978" + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "149" ], "x-ms-correlation-request-id": [ - "c2a9279f-d15b-4bb8-9967-ec47a293a869" + "23b9ad4b-d66d-48f3-a05d-288463ee7eac" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T221743Z:c2a9279f-d15b-4bb8-9967-ec47a293a869" - ], - "X-Content-Type-Options": [ - "nosniff" + "WESTINDIA:20220517T043502Z:23b9ad4b-d66d-48f3-a05d-288463ee7eac" ], "Date": [ - "Wed, 23 Feb 2022 22:17:43 GMT" + "Tue, 17 May 2022 04:35:02 GMT" ], "Content-Length": [ - "2265" + "1491" ], "Content-Type": [ - "application/json; charset=utf-8" + "application/json" ], "Expires": [ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"PSTestVM1584e2\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.Compute/virtualMachines/PSTestVM1584e2\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"Purpose\": \"PSTest\",\r\n \"DeleteBy\": \"06-2022\",\r\n \"AutoShutDown\": \"No\",\r\n \"Owner\": \"sarath\",\r\n \"MabUsed\": \"Yes\",\r\n \"azsecpack\": \"nonprod\",\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": \"true\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"2fe5bb96-70d1-4dd3-a4f3-3529001e8ecd\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D1_v2\"\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.4946.220202\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"PSTestVM1584e2_OsDisk_1_5ba1ecd239524fb4bec5a92d14e0d272\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.Compute/disks/PSTestVM1584e2_OsDisk_1_5ba1ecd239524fb4bec5a92d14e0d272\"\r\n },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"PSTestVM1584e2\",\r\n \"adminUsername\": \"demouser\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"AutomaticByOS\",\r\n \"assessmentMode\": \"ImageDefault\"\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.Network/networkInterfaces/PSTestNIC1584e2\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"timeCreated\": \"2022-02-23T17:15:49.5259156-05:00\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.RecoveryServices/vaults/PSTestRSVd78c9636/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrgd78c9636;pstestvmd78c91/protectedItems/VM;iaasvmcontainerv2;pstestrgd78c9636;pstestvmd78c91\",\r\n \"name\": \"VM;iaasvmcontainerv2;pstestrgd78c9636;pstestvmd78c91\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems\",\r\n \"properties\": {\r\n \"kpisHealths\": {},\r\n \"friendlyName\": \"PSTestVMd78c91\",\r\n \"virtualMachineId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.Compute/virtualMachines/PSTestVMd78c91\",\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\": \"1235280941\",\r\n \"protectedItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"workloadType\": \"VM\",\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgd78c9636;pstestvmd78c91\",\r\n \"sourceResourceId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.Compute/virtualMachines/PSTestVMd78c91\",\r\n \"policyId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.RecoveryServices/vaults/PSTestRSVd78c9636/backupPolicies/DefaultPolicy\",\r\n \"policyName\": \"DefaultPolicy\",\r\n \"isArchiveEnabled\": false\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.Compute/virtualMachines/PSTestVM1584e2?api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMTU4NGUyNzMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy9QU1Rlc3RWTTE1ODRlMj9hcGktdmVyc2lvbj0yMDIxLTExLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.RecoveryServices/vaults/PSTestRSVd78c9636/backupProtectedItems?$filter=backupManagementType%20eq%20'AzureIaasVM'%20and%20itemType%20eq%20'VM'&api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZDc4Yzk2MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZkNzhjOTYzNi9iYWNrdXBQcm90ZWN0ZWRJdGVtcz8kZmlsdGVyPWJhY2t1cE1hbmFnZW1lbnRUeXBlJTIwZXElMjAnQXp1cmVJYWFzVk0nJTIwYW5kJTIwaXRlbVR5cGUlMjBlcSUyMCdWTScmYXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cc1eff54-db4c-43ec-a6b1-6d996d7a3047" + "dd18da8b-6140-4efe-a6a9-10692bbab86a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -5086,64 +5182,67 @@ "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/LowCostGet3Min;3993,Microsoft.Compute/LowCostGet30Min;31960" + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "1832adde-9dd4-4d2d-8d84-14c46f829eab" + ], + "x-ms-client-request-id": [ + "dd18da8b-6140-4efe-a6a9-10692bbab86a", + "dd18da8b-6140-4efe-a6a9-10692bbab86a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ - "cd6b38b0-4413-4110-a68e-ce629d6c6194" - ], "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "Microsoft-IIS/10.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11969" + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "149" ], "x-ms-correlation-request-id": [ - "296116b5-49ea-496e-9042-1b99bfcc1d20" + "1832adde-9dd4-4d2d-8d84-14c46f829eab" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T221953Z:296116b5-49ea-496e-9042-1b99bfcc1d20" - ], - "X-Content-Type-Options": [ - "nosniff" + "WESTINDIA:20220517T044029Z:1832adde-9dd4-4d2d-8d84-14c46f829eab" ], "Date": [ - "Wed, 23 Feb 2022 22:19:52 GMT" + "Tue, 17 May 2022 04:40:29 GMT" ], "Content-Length": [ - "2828" + "2970" ], "Content-Type": [ - "application/json; charset=utf-8" + "application/json" ], "Expires": [ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"PSTestVM1584e2\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.Compute/virtualMachines/PSTestVM1584e2\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"Purpose\": \"PSTest\",\r\n \"DeleteBy\": \"06-2022\",\r\n \"AutoShutDown\": \"No\",\r\n \"Owner\": \"sarath\",\r\n \"MabUsed\": \"Yes\",\r\n \"azsecpack\": \"nonprod\",\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": \"true\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"2fe5bb96-70d1-4dd3-a4f3-3529001e8ecd\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D1_v2\"\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.4946.220202\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"PSTestVM1584e2_OsDisk_1_5ba1ecd239524fb4bec5a92d14e0d272\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.Compute/disks/PSTestVM1584e2_OsDisk_1_5ba1ecd239524fb4bec5a92d14e0d272\"\r\n },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"PSTestVM1584e2\",\r\n \"adminUsername\": \"demouser\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"AutomaticByOS\",\r\n \"assessmentMode\": \"ImageDefault\"\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.Network/networkInterfaces/PSTestNIC1584e2\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"timeCreated\": \"2022-02-23T17:15:49.5259156-05:00\"\r\n },\r\n \"resources\": [\r\n {\r\n \"name\": \"BGInfo\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.Compute/virtualMachines/PSTestVM1584e2/extensions/BGInfo\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"southeastasia\",\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.RecoveryServices/vaults/PSTestRSVd78c9636/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrgd78c9636;pstestvmd78c91/protectedItems/VM;iaasvmcontainerv2;pstestrgd78c9636;pstestvmd78c91\",\r\n \"name\": \"VM;iaasvmcontainerv2;pstestrgd78c9636;pstestvmd78c91\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems\",\r\n \"properties\": {\r\n \"kpisHealths\": {},\r\n \"friendlyName\": \"PSTestVMd78c91\",\r\n \"virtualMachineId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.Compute/virtualMachines/PSTestVMd78c91\",\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\": \"1235280941\",\r\n \"protectedItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"workloadType\": \"VM\",\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgd78c9636;pstestvmd78c91\",\r\n \"sourceResourceId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.Compute/virtualMachines/PSTestVMd78c91\",\r\n \"policyId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.RecoveryServices/vaults/PSTestRSVd78c9636/backupPolicies/DefaultPolicy\",\r\n \"policyName\": \"DefaultPolicy\",\r\n \"isArchiveEnabled\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.RecoveryServices/vaults/PSTestRSVd78c9636/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrgd78c9636;pstestvmd78c92/protectedItems/VM;iaasvmcontainerv2;pstestrgd78c9636;pstestvmd78c92\",\r\n \"name\": \"VM;iaasvmcontainerv2;pstestrgd78c9636;pstestvmd78c92\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems\",\r\n \"properties\": {\r\n \"kpisHealths\": {},\r\n \"friendlyName\": \"PSTestVMd78c92\",\r\n \"virtualMachineId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.Compute/virtualMachines/PSTestVMd78c92\",\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\": \"297353200\",\r\n \"protectedItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"workloadType\": \"VM\",\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgd78c9636;pstestvmd78c92\",\r\n \"sourceResourceId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.Compute/virtualMachines/PSTestVMd78c92\",\r\n \"policyId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.RecoveryServices/vaults/PSTestRSVd78c9636/backupPolicies/DefaultPolicy\",\r\n \"policyName\": \"DefaultPolicy\",\r\n \"isArchiveEnabled\": false\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.Network/virtualNetworks/PSTestVNET1584e2?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMTU4NGUyNzMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy9QU1Rlc3RWTkVUMTU4NGUyP2FwaS12ZXJzaW9uPTIwMjEtMDUtMDE=", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.RecoveryServices/vaults/PSTestRSVd78c9636/backupProtectedItems?$filter=backupManagementType%20eq%20'AzureIaasVM'%20and%20itemType%20eq%20'VM'&api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZDc4Yzk2MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZkNzhjOTYzNi9iYWNrdXBQcm90ZWN0ZWRJdGVtcz8kZmlsdGVyPWJhY2t1cE1hbmFnZW1lbnRUeXBlJTIwZXElMjAnQXp1cmVJYWFzVk0nJTIwYW5kJTIwaXRlbVR5cGUlMjBlcSUyMCdWTScmYXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d457ae1a-a04e-456b-8a7a-14d3d2ddf788" + "73acd191-97eb-4bef-8dcf-74b88a7504a3" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -5153,54 +5252,67 @@ "Pragma": [ "no-cache" ], - "x-ms-failure-cause": [ - "gateway" + "X-Content-Type-Options": [ + "nosniff" ], "x-ms-request-id": [ - "d0c3f169-2e14-47a9-ab9f-5b1d6ee87dd2" - ], - "x-ms-correlation-request-id": [ - "d0c3f169-2e14-47a9-ab9f-5b1d6ee87dd2" + "f9fbaada-b09e-4768-a26c-eb6e3f35ef0e" ], - "x-ms-routing-request-id": [ - "CENTRALUS:20220223T221511Z:d0c3f169-2e14-47a9-ab9f-5b1d6ee87dd2" + "x-ms-client-request-id": [ + "73acd191-97eb-4bef-8dcf-74b88a7504a3", + "73acd191-97eb-4bef-8dcf-74b88a7504a3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ - "nosniff" + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "148" + ], + "x-ms-correlation-request-id": [ + "f9fbaada-b09e-4768-a26c-eb6e3f35ef0e" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220517T044034Z:f9fbaada-b09e-4768-a26c-eb6e3f35ef0e" ], "Date": [ - "Wed, 23 Feb 2022 22:15:11 GMT" + "Tue, 17 May 2022 04:40:34 GMT" + ], + "Content-Length": [ + "2970" ], "Content-Type": [ - "application/json; charset=utf-8" + "application/json" ], "Expires": [ "-1" - ], - "Content-Length": [ - "238" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/virtualNetworks/PSTestVNET1584e2' under resource group 'PSTestRG1584e273' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", - "StatusCode": 404 + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.RecoveryServices/vaults/PSTestRSVd78c9636/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrgd78c9636;pstestvmd78c91/protectedItems/VM;iaasvmcontainerv2;pstestrgd78c9636;pstestvmd78c91\",\r\n \"name\": \"VM;iaasvmcontainerv2;pstestrgd78c9636;pstestvmd78c91\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems\",\r\n \"properties\": {\r\n \"kpisHealths\": {},\r\n \"friendlyName\": \"PSTestVMd78c91\",\r\n \"virtualMachineId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.Compute/virtualMachines/PSTestVMd78c91\",\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\": \"1235280941\",\r\n \"protectedItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"workloadType\": \"VM\",\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgd78c9636;pstestvmd78c91\",\r\n \"sourceResourceId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.Compute/virtualMachines/PSTestVMd78c91\",\r\n \"policyId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.RecoveryServices/vaults/PSTestRSVd78c9636/backupPolicies/DefaultPolicy\",\r\n \"policyName\": \"DefaultPolicy\",\r\n \"isArchiveEnabled\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.RecoveryServices/vaults/PSTestRSVd78c9636/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrgd78c9636;pstestvmd78c92/protectedItems/VM;iaasvmcontainerv2;pstestrgd78c9636;pstestvmd78c92\",\r\n \"name\": \"VM;iaasvmcontainerv2;pstestrgd78c9636;pstestvmd78c92\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems\",\r\n \"properties\": {\r\n \"kpisHealths\": {},\r\n \"friendlyName\": \"PSTestVMd78c92\",\r\n \"virtualMachineId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.Compute/virtualMachines/PSTestVMd78c92\",\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\": \"297353200\",\r\n \"protectedItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"workloadType\": \"VM\",\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgd78c9636;pstestvmd78c92\",\r\n \"sourceResourceId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.Compute/virtualMachines/PSTestVMd78c92\",\r\n \"policyId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.RecoveryServices/vaults/PSTestRSVd78c9636/backupPolicies/DefaultPolicy\",\r\n \"policyName\": \"DefaultPolicy\",\r\n \"isArchiveEnabled\": false\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.Network/virtualNetworks/PSTestVNET1584e2?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMTU4NGUyNzMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy9QU1Rlc3RWTkVUMTU4NGUyP2FwaS12ZXJzaW9uPTIwMjEtMDUtMDE=", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.RecoveryServices/vaults/PSTestRSVd78c9636/backupProtectedItems?$filter=backupManagementType%20eq%20'AzureIaasVM'%20and%20itemType%20eq%20'VM'&api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZDc4Yzk2MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZkNzhjOTYzNi9iYWNrdXBQcm90ZWN0ZWRJdGVtcz8kZmlsdGVyPWJhY2t1cE1hbmFnZW1lbnRUeXBlJTIwZXElMjAnQXp1cmVJYWFzVk0nJTIwYW5kJTIwaXRlbVR5cGUlMjBlcSUyMCdWTScmYXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d457ae1a-a04e-456b-8a7a-14d3d2ddf788" + "e8c6abac-ce59-4eb9-801e-5a6cb9d6a42b" + ], + "Accept-Language": [ + "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -5210,67 +5322,67 @@ "Pragma": [ "no-cache" ], - "ETag": [ - "W/\"0bf5bfb9-9dff-44fd-b4dc-6684a551427c\"" + "X-Content-Type-Options": [ + "nosniff" ], "x-ms-request-id": [ - "875b935c-3288-4c87-8aef-140c7d320e79" + "02724b08-a516-4344-a77b-83febd041048" ], - "x-ms-correlation-request-id": [ - "00f60635-277e-445b-aba2-02a249178d21" - ], - "x-ms-arm-service-request-id": [ - "d41956cd-403f-4305-be9a-a066b58b5107" + "x-ms-client-request-id": [ + "e8c6abac-ce59-4eb9-801e-5a6cb9d6a42b", + "e8c6abac-ce59-4eb9-801e-5a6cb9d6a42b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "Microsoft-IIS/10.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "X-Powered-By": [ + "ASP.NET" ], - "x-ms-routing-request-id": [ - "CENTRALUS:20220223T221524Z:00f60635-277e-445b-aba2-02a249178d21" + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "147" ], - "X-Content-Type-Options": [ - "nosniff" + "x-ms-correlation-request-id": [ + "02724b08-a516-4344-a77b-83febd041048" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220517T044232Z:02724b08-a516-4344-a77b-83febd041048" ], "Date": [ - "Wed, 23 Feb 2022 22:15:24 GMT" + "Tue, 17 May 2022 04:42:32 GMT" ], "Content-Length": [ - "1315" + "1490" ], "Content-Type": [ - "application/json; charset=utf-8" + "application/json" ], "Expires": [ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"PSTestVNET1584e2\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.Network/virtualNetworks/PSTestVNET1584e2\",\r\n \"etag\": \"W/\\\"0bf5bfb9-9dff-44fd-b4dc-6684a551427c\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"210ccfa9-44bb-4172-adbc-a27dd9b8f7d8\",\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\": \"PSTestSNC1584e2\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.Network/virtualNetworks/PSTestVNET1584e2/subnets/PSTestSNC1584e2\",\r\n \"etag\": \"W/\\\"0bf5bfb9-9dff-44fd-b4dc-6684a551427c\\\"\",\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 },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.RecoveryServices/vaults/PSTestRSVd78c9636/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrgd78c9636;pstestvmd78c92/protectedItems/VM;iaasvmcontainerv2;pstestrgd78c9636;pstestvmd78c92\",\r\n \"name\": \"VM;iaasvmcontainerv2;pstestrgd78c9636;pstestvmd78c92\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems\",\r\n \"properties\": {\r\n \"kpisHealths\": {},\r\n \"friendlyName\": \"PSTestVMd78c92\",\r\n \"virtualMachineId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.Compute/virtualMachines/PSTestVMd78c92\",\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\": \"297353200\",\r\n \"protectedItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"workloadType\": \"VM\",\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgd78c9636;pstestvmd78c92\",\r\n \"sourceResourceId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.Compute/virtualMachines/PSTestVMd78c92\",\r\n \"policyId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.RecoveryServices/vaults/PSTestRSVd78c9636/backupPolicies/DefaultPolicy\",\r\n \"policyName\": \"DefaultPolicy\",\r\n \"isArchiveEnabled\": false\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.Network/virtualNetworks/PSTestVNET1584e2?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMTU4NGUyNzMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy9QU1Rlc3RWTkVUMTU4NGUyP2FwaS12ZXJzaW9uPTIwMjEtMDUtMDE=", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.RecoveryServices/vaults/PSTestRSVd78c9636/backupFabrics/Azure/protectionContainers/IaasVMContainer%3Biaasvmcontainerv2%3Bpstestrgd78c9636%3Bpstestvmd78c91/protectedItems/VM%3Biaasvmcontainerv2%3Bpstestrgd78c9636%3Bpstestvmd78c91?$filter=expand%20eq%20'extendedinfo'&api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZDc4Yzk2MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZkNzhjOTYzNi9iYWNrdXBGYWJyaWNzL0F6dXJlL3Byb3RlY3Rpb25Db250YWluZXJzL0lhYXNWTUNvbnRhaW5lciUzQmlhYXN2bWNvbnRhaW5lcnYyJTNCcHN0ZXN0cmdkNzhjOTYzNiUzQnBzdGVzdHZtZDc4YzkxL3Byb3RlY3RlZEl0ZW1zL1ZNJTNCaWFhc3ZtY29udGFpbmVydjIlM0Jwc3Rlc3RyZ2Q3OGM5NjM2JTNCcHN0ZXN0dm1kNzhjOTE/JGZpbHRlcj1leHBhbmQlMjBlcSUyMCdleHRlbmRlZGluZm8nJmFwaS12ZXJzaW9uPTIwMjItMDItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d457ae1a-a04e-456b-8a7a-14d3d2ddf788" + "2434dcc0-dc44-4b0a-978e-5e1d11ea88e0" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -5280,73 +5392,67 @@ "Pragma": [ "no-cache" ], - "ETag": [ - "W/\"0bf5bfb9-9dff-44fd-b4dc-6684a551427c\"" + "X-Content-Type-Options": [ + "nosniff" ], "x-ms-request-id": [ - "e22fb047-aaa6-4635-bd8c-48056c27b73f" - ], - "x-ms-correlation-request-id": [ - "e806e17a-8bf9-4dad-8cb5-909d0bbf5292" + "0e00acef-7826-4870-a08f-4c1fecbbb1ca" ], - "x-ms-arm-service-request-id": [ - "a7a202b4-9efb-4401-bd4c-cd4abbc4bb59" + "x-ms-client-request-id": [ + "2434dcc0-dc44-4b0a-978e-5e1d11ea88e0", + "2434dcc0-dc44-4b0a-978e-5e1d11ea88e0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "Microsoft-IIS/10.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "X-Powered-By": [ + "ASP.NET" ], - "x-ms-routing-request-id": [ - "CENTRALUS:20220223T221525Z:e806e17a-8bf9-4dad-8cb5-909d0bbf5292" + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "149" ], - "X-Content-Type-Options": [ - "nosniff" + "x-ms-correlation-request-id": [ + "0e00acef-7826-4870-a08f-4c1fecbbb1ca" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220517T043502Z:0e00acef-7826-4870-a08f-4c1fecbbb1ca" ], "Date": [ - "Wed, 23 Feb 2022 22:15:24 GMT" + "Tue, 17 May 2022 04:35:02 GMT" ], "Content-Length": [ - "1315" + "1546" ], "Content-Type": [ - "application/json; charset=utf-8" + "application/json" ], "Expires": [ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"PSTestVNET1584e2\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.Network/virtualNetworks/PSTestVNET1584e2\",\r\n \"etag\": \"W/\\\"0bf5bfb9-9dff-44fd-b4dc-6684a551427c\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"210ccfa9-44bb-4172-adbc-a27dd9b8f7d8\",\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\": \"PSTestSNC1584e2\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.Network/virtualNetworks/PSTestVNET1584e2/subnets/PSTestSNC1584e2\",\r\n \"etag\": \"W/\\\"0bf5bfb9-9dff-44fd-b4dc-6684a551427c\\\"\",\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 },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.RecoveryServices/vaults/PSTestRSVd78c9636/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrgd78c9636;pstestvmd78c91/protectedItems/VM;iaasvmcontainerv2;pstestrgd78c9636;pstestvmd78c91\",\r\n \"name\": \"VM;iaasvmcontainerv2;pstestrgd78c9636;pstestvmd78c91\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems\",\r\n \"properties\": {\r\n \"kpisHealths\": {},\r\n \"friendlyName\": \"PSTestVMd78c91\",\r\n \"virtualMachineId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.Compute/virtualMachines/PSTestVMd78c91\",\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\": \"1235280941\",\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;pstestrgd78c9636;pstestvmd78c91\",\r\n \"sourceResourceId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.Compute/virtualMachines/PSTestVMd78c91\",\r\n \"policyId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.RecoveryServices/vaults/PSTestRSVd78c9636/backupPolicies/DefaultPolicy\",\r\n \"policyName\": \"DefaultPolicy\",\r\n \"isArchiveEnabled\": false\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.Network/virtualNetworks/PSTestVNET1584e2?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMTU4NGUyNzMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy9QU1Rlc3RWTkVUMTU4NGUyP2FwaS12ZXJzaW9uPTIwMjEtMDUtMDE=", - "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 \"applicationGatewayIpConfigurations\": []\r\n },\r\n \"name\": \"PSTestSNC1584e2\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"ipAllocations\": []\r\n },\r\n \"location\": \"southeastasia\"\r\n}", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.RecoveryServices/vaults/PSTestRSVd78c9636/backupJobs?$filter=operation%20eq%20''%20and%20startTime%20eq%20'2022-05-16%2004:35:03%20AM'%20and%20endTime%20eq%20'2022-05-17%2004:35:03%20AM'&api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZDc4Yzk2MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZkNzhjOTYzNi9iYWNrdXBKb2JzPyRmaWx0ZXI9b3BlcmF0aW9uJTIwZXElMjAnJyUyMGFuZCUyMHN0YXJ0VGltZSUyMGVxJTIwJzIwMjItMDUtMTYlMjAwNDozNTowMyUyMEFNJyUyMGFuZCUyMGVuZFRpbWUlMjBlcSUyMCcyMDIyLTA1LTE3JTIwMDQ6MzU6MDMlMjBBTScmYXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d457ae1a-a04e-456b-8a7a-14d3d2ddf788" + "f345f112-5c92-4864-997c-c07763f3cdaf" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "752" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -5356,70 +5462,68 @@ "Pragma": [ "no-cache" ], - "Retry-After": [ - "3" - ], - "x-ms-request-id": [ - "15e01051-8e01-449c-aebe-6c4e82caef43" + "Server": [ + "Microsoft-IIS/10.0", + "Microsoft-IIS/10.0" ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Network/locations/southeastasia/operations/15e01051-8e01-449c-aebe-6c4e82caef43?api-version=2021-05-01" + "X-Content-Type-Options": [ + "nosniff" ], - "x-ms-correlation-request-id": [ - "bd2faca2-322d-4b2f-9398-b867ae7450d9" + "x-ms-request-id": [ + "32d9257f-9c7d-4b70-a4b8-a494717cc9c8" ], - "Azure-AsyncNotification": [ - "Enabled" + "x-ms-client-request-id": [ + "f345f112-5c92-4864-997c-c07763f3cdaf", + "f345f112-5c92-4864-997c-c07763f3cdaf" ], - "x-ms-arm-service-request-id": [ - "2c692dbe-2e46-49e3-8099-779d9590696c" + "X-Powered-By": [ + "ASP.NET" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "148" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "x-ms-correlation-request-id": [ + "32d9257f-9c7d-4b70-a4b8-a494717cc9c8" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T221521Z:bd2faca2-322d-4b2f-9398-b867ae7450d9" - ], - "X-Content-Type-Options": [ - "nosniff" + "WESTINDIA:20220517T043503Z:32d9257f-9c7d-4b70-a4b8-a494717cc9c8" ], "Date": [ - "Wed, 23 Feb 2022 22:15:20 GMT" + "Tue, 17 May 2022 04:35:02 GMT" ], "Content-Length": [ - "1313" + "746" ], "Content-Type": [ - "application/json; charset=utf-8" + "application/json" ], "Expires": [ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"PSTestVNET1584e2\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.Network/virtualNetworks/PSTestVNET1584e2\",\r\n \"etag\": \"W/\\\"7602057a-1aff-4f88-a2c6-4ed09ccdc901\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"210ccfa9-44bb-4172-adbc-a27dd9b8f7d8\",\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\": \"PSTestSNC1584e2\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.Network/virtualNetworks/PSTestVNET1584e2/subnets/PSTestSNC1584e2\",\r\n \"etag\": \"W/\\\"7602057a-1aff-4f88-a2c6-4ed09ccdc901\\\"\",\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 },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n }\r\n}", - "StatusCode": 201 + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.RecoveryServices/vaults/PSTestRSVd78c9636/backupJobs/9df9ed30-d3bd-47b4-bd83-916736041451\",\r\n \"name\": \"9df9ed30-d3bd-47b4-bd83-916736041451\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgd78c9636;pstestvmd78c91\",\r\n \"duration\": \"PT51.5377427S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"entityFriendlyName\": \"pstestvmd78c91\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"ConfigureBackup\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-05-17T04:34:05.573523Z\",\r\n \"endTime\": \"2022-05-17T04:34:57.1112657Z\",\r\n \"activityId\": \"716852de-fe05-4012-b659-d3c2944cd351\"\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Network/locations/southeastasia/operations/15e01051-8e01-449c-aebe-6c4e82caef43?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzE1ZTAxMDUxLThlMDEtNDQ5Yy1hZWJlLTZjNGU4MmNhZWY0Mz9hcGktdmVyc2lvbj0yMDIxLTA1LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.Compute/virtualMachines/PSTestVMd78c92?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZDc4Yzk2MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy9QU1Rlc3RWTWQ3OGM5Mj9hcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d457ae1a-a04e-456b-8a7a-14d3d2ddf788" + "da9f75a4-4765-4986-aed3-8e60af169d34" + ], + "Accept-Language": [ + "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ] }, "ResponseHeaders": { @@ -5429,36 +5533,93 @@ "Pragma": [ "no-cache" ], + "x-ms-failure-cause": [ + "gateway" + ], "x-ms-request-id": [ - "c07aa70e-521f-403a-9e5a-ea45517d8de3" + "58e724bb-37b6-459f-967d-15a246dd33ea" ], "x-ms-correlation-request-id": [ - "ff385768-dbff-47d1-8d53-89ded5e79fd5" + "58e724bb-37b6-459f-967d-15a246dd33ea" ], - "x-ms-arm-service-request-id": [ - "9a3295bf-8d58-4d0d-b97c-7d1303595b3a" + "x-ms-routing-request-id": [ + "WESTINDIA:20220517T043503Z:58e724bb-37b6-459f-967d-15a246dd33ea" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 17 May 2022 04:35:02 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "236" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Compute/virtualMachines/PSTestVMd78c92' under resource group 'PSTestRGd78c9636' 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/PSTestRGd78c9636/providers/Microsoft.Compute/virtualMachines/PSTestVMd78c92?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZDc4Yzk2MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy9QU1Rlc3RWTWQ3OGM5Mj9hcGktdmVyc2lvbj0yMDIxLTExLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4e90d890-8d9e-447e-bc81-85c31ae3178c" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/LowCostGet3Min;3987,Microsoft.Compute/LowCostGet30Min;31853" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ + "a20f1d4e-17cf-48fb-8992-a70ecfc93dce" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11980" + ], + "x-ms-correlation-request-id": [ + "140e7cc4-eae7-4c77-98a8-3f2e82d37846" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T221524Z:ff385768-dbff-47d1-8d53-89ded5e79fd5" + "WESTINDIA:20220517T043716Z:140e7cc4-eae7-4c77-98a8-3f2e82d37846" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 22:15:24 GMT" + "Tue, 17 May 2022 04:37:16 GMT" ], "Content-Length": [ - "29" + "2195" ], "Content-Type": [ "application/json; charset=utf-8" @@ -5467,26 +5628,93 @@ "-1" ] }, - "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"PSTestVMd78c92\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.Compute/virtualMachines/PSTestVMd78c92\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"Purpose\": \"PSTest\",\r\n \"MabUsed\": \"Yes\",\r\n \"DeleteBy\": \"06-2022\",\r\n \"AutoShutDown\": \"No\",\r\n \"Owner\": \"sarath\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"6b5efffb-5275-491e-a389-ac5c870a2bde\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D1_v2\"\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.5125.220505\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"PSTestVMd78c92_OsDisk_1_d689d913f360482098de9d7f69485532\",\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/PSTestRGd78c9636/providers/Microsoft.Compute/disks/PSTestVMd78c92_OsDisk_1_d689d913f360482098de9d7f69485532\"\r\n },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"PSTestVMd78c92\",\r\n \"adminUsername\": \"demouser\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"AutomaticByOS\",\r\n \"assessmentMode\": \"ImageDefault\"\r\n },\r\n \"enableVMAgentPlatformUpdates\": false\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/PSTestRGd78c9636/providers/Microsoft.Network/networkInterfaces/PSTestNICd78c92\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"timeCreated\": \"2022-05-17T10:05:25.5220349+05:30\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.Compute/virtualMachines/PSTestVMd78c92?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZDc4Yzk2MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy9QU1Rlc3RWTWQ3OGM5Mj9hcGktdmVyc2lvbj0yMDIxLTExLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a001a610-0da2-41d6-9b9e-e5ddbbb0ecda" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/LowCostGet3Min;3981,Microsoft.Compute/LowCostGet30Min;31843" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "06920d8d-282f-48e5-9734-8b893ead70c8" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11971" + ], + "x-ms-correlation-request-id": [ + "6d0a254d-6c7e-4728-9a69-fc4dcd2a1478" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220517T043921Z:6d0a254d-6c7e-4728-9a69-fc4dcd2a1478" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 17 May 2022 04:39:20 GMT" + ], + "Content-Length": [ + "2758" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"PSTestVMd78c92\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.Compute/virtualMachines/PSTestVMd78c92\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"Purpose\": \"PSTest\",\r\n \"MabUsed\": \"Yes\",\r\n \"DeleteBy\": \"06-2022\",\r\n \"AutoShutDown\": \"No\",\r\n \"Owner\": \"sarath\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"6b5efffb-5275-491e-a389-ac5c870a2bde\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D1_v2\"\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.5125.220505\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"PSTestVMd78c92_OsDisk_1_d689d913f360482098de9d7f69485532\",\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/PSTestRGd78c9636/providers/Microsoft.Compute/disks/PSTestVMd78c92_OsDisk_1_d689d913f360482098de9d7f69485532\"\r\n },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"PSTestVMd78c92\",\r\n \"adminUsername\": \"demouser\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"AutomaticByOS\",\r\n \"assessmentMode\": \"ImageDefault\"\r\n },\r\n \"enableVMAgentPlatformUpdates\": false\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/PSTestRGd78c9636/providers/Microsoft.Network/networkInterfaces/PSTestNICd78c92\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"timeCreated\": \"2022-05-17T10:05:25.5220349+05:30\"\r\n },\r\n \"resources\": [\r\n {\r\n \"name\": \"BGInfo\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.Compute/virtualMachines/PSTestVMd78c92/extensions/BGInfo\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"BGInfo\",\r\n \"typeHandlerVersion\": \"2.2\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.Network/publicIPAddresses/pstestpublicdns1584e2?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMTU4NGUyNzMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BzdGVzdHB1YmxpY2RuczE1ODRlMj9hcGktdmVyc2lvbj0yMDIxLTA1LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.Network/virtualNetworks/PSTestVNETd78c92?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZDc4Yzk2MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy9QU1Rlc3RWTkVUZDc4YzkyP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1d0b9145-d5ce-41b5-916d-8d4ba089aacb" + "50d1f482-df1f-4952-84aa-669017972a20" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ] }, "ResponseHeaders": { @@ -5500,13 +5728,13 @@ "gateway" ], "x-ms-request-id": [ - "68bf1d6c-f63b-46cc-92d2-81a79a76b547" + "947512cc-6148-4eaa-99a4-9d77a8550185" ], "x-ms-correlation-request-id": [ - "68bf1d6c-f63b-46cc-92d2-81a79a76b547" + "947512cc-6148-4eaa-99a4-9d77a8550185" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T221525Z:68bf1d6c-f63b-46cc-92d2-81a79a76b547" + "WESTINDIA:20220517T043503Z:947512cc-6148-4eaa-99a4-9d77a8550185" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5515,7 +5743,7 @@ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 22:15:24 GMT" + "Tue, 17 May 2022 04:35:03 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -5524,26 +5752,26 @@ "-1" ], "Content-Length": [ - "245" + "238" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/publicIPAddresses/pstestpublicdns1584e2' under resource group 'PSTestRG1584e273' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/virtualNetworks/PSTestVNETd78c92' under resource group 'PSTestRGd78c9636' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.Network/publicIPAddresses/pstestpublicdns1584e2?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMTU4NGUyNzMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BzdGVzdHB1YmxpY2RuczE1ODRlMj9hcGktdmVyc2lvbj0yMDIxLTA1LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.Network/virtualNetworks/PSTestVNETd78c92?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZDc4Yzk2MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy9QU1Rlc3RWTkVUZDc4YzkyP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1d0b9145-d5ce-41b5-916d-8d4ba089aacb" + "50d1f482-df1f-4952-84aa-669017972a20" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ] }, "ResponseHeaders": { @@ -5554,16 +5782,16 @@ "no-cache" ], "ETag": [ - "W/\"5ecb0c6f-9a23-42a4-bae7-5e7712bfb9f1\"" + "W/\"03a38659-06d5-40e7-97ee-addb7ce8488f\"" ], "x-ms-request-id": [ - "8c49e89a-303a-4aa8-af10-f76db29ce191" + "7344016c-24df-4fed-bbb8-ad8118a8992d" ], "x-ms-correlation-request-id": [ - "aa84d89c-44e8-4e7a-8d3b-12654955fbec" + "1e14307d-8069-469a-9479-5573ead9cd67" ], "x-ms-arm-service-request-id": [ - "fc354bc2-d22c-4b78-ac5f-1c7ad9ece9a5" + "0163f765-599f-4094-81c7-3b12223a84d8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5573,19 +5801,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11997" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T221530Z:aa84d89c-44e8-4e7a-8d3b-12654955fbec" + "WESTINDIA:20220517T043510Z:1e14307d-8069-469a-9479-5573ead9cd67" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 22:15:30 GMT" + "Tue, 17 May 2022 04:35:09 GMT" ], "Content-Length": [ - "698" + "1315" ], "Content-Type": [ "application/json; charset=utf-8" @@ -5594,26 +5822,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"pstestpublicdns1584e2\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.Network/publicIPAddresses/pstestpublicdns1584e2\",\r\n \"etag\": \"W/\\\"5ecb0c6f-9a23-42a4-bae7-5e7712bfb9f1\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"dac85f94-13df-4447-9cb3-2f589b67a0b8\",\r\n \"ipAddress\": \"20.212.146.10\",\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 \"tier\": \"Regional\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"PSTestVNETd78c92\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.Network/virtualNetworks/PSTestVNETd78c92\",\r\n \"etag\": \"W/\\\"03a38659-06d5-40e7-97ee-addb7ce8488f\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"f7a5a047-c5b0-4c2e-9128-c8df60ae3818\",\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\": \"PSTestSNCd78c92\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.Network/virtualNetworks/PSTestVNETd78c92/subnets/PSTestSNCd78c92\",\r\n \"etag\": \"W/\\\"03a38659-06d5-40e7-97ee-addb7ce8488f\\\"\",\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 },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.Network/publicIPAddresses/pstestpublicdns1584e2?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMTU4NGUyNzMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BzdGVzdHB1YmxpY2RuczE1ODRlMj9hcGktdmVyc2lvbj0yMDIxLTA1LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.Network/virtualNetworks/PSTestVNETd78c92?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZDc4Yzk2MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy9QU1Rlc3RWTkVUZDc4YzkyP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1d0b9145-d5ce-41b5-916d-8d4ba089aacb" + "50d1f482-df1f-4952-84aa-669017972a20" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ] }, "ResponseHeaders": { @@ -5624,16 +5852,16 @@ "no-cache" ], "ETag": [ - "W/\"5ecb0c6f-9a23-42a4-bae7-5e7712bfb9f1\"" + "W/\"03a38659-06d5-40e7-97ee-addb7ce8488f\"" ], "x-ms-request-id": [ - "6cecb348-9a28-408f-ad18-be7f2ce3939b" + "8545c988-81fc-484b-912c-dec72907b0d7" ], "x-ms-correlation-request-id": [ - "ebc29c37-6fd8-4783-8d93-e634f6df4635" + "1e2a4f1c-3c4a-4115-83d2-d5f6acf3510d" ], "x-ms-arm-service-request-id": [ - "b44e0aa9-1017-4648-81cc-d665f5b0eeca" + "07f393de-571f-4df9-9277-ae9db194975c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5643,19 +5871,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11996" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T221531Z:ebc29c37-6fd8-4783-8d93-e634f6df4635" + "WESTINDIA:20220517T043510Z:1e2a4f1c-3c4a-4115-83d2-d5f6acf3510d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 22:15:30 GMT" + "Tue, 17 May 2022 04:35:10 GMT" ], "Content-Length": [ - "698" + "1315" ], "Content-Type": [ "application/json; charset=utf-8" @@ -5664,32 +5892,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"pstestpublicdns1584e2\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.Network/publicIPAddresses/pstestpublicdns1584e2\",\r\n \"etag\": \"W/\\\"5ecb0c6f-9a23-42a4-bae7-5e7712bfb9f1\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"dac85f94-13df-4447-9cb3-2f589b67a0b8\",\r\n \"ipAddress\": \"20.212.146.10\",\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 \"tier\": \"Regional\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"PSTestVNETd78c92\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.Network/virtualNetworks/PSTestVNETd78c92\",\r\n \"etag\": \"W/\\\"03a38659-06d5-40e7-97ee-addb7ce8488f\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"f7a5a047-c5b0-4c2e-9128-c8df60ae3818\",\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\": \"PSTestSNCd78c92\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.Network/virtualNetworks/PSTestVNETd78c92/subnets/PSTestSNCd78c92\",\r\n \"etag\": \"W/\\\"03a38659-06d5-40e7-97ee-addb7ce8488f\\\"\",\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 },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.Network/publicIPAddresses/pstestpublicdns1584e2?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMTU4NGUyNzMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BzdGVzdHB1YmxpY2RuczE1ODRlMj9hcGktdmVyc2lvbj0yMDIxLTA1LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.Network/virtualNetworks/PSTestVNETd78c92?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZDc4Yzk2MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy9QU1Rlc3RWTkVUZDc4YzkyP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=", "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\": \"southeastasia\"\r\n}", + "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 \"applicationGatewayIpConfigurations\": []\r\n },\r\n \"name\": \"PSTestSNCd78c92\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"ipAllocations\": []\r\n },\r\n \"location\": \"southeastasia\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "1d0b9145-d5ce-41b5-916d-8d4ba089aacb" + "50d1f482-df1f-4952-84aa-669017972a20" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "169" + "752" ] }, "ResponseHeaders": { @@ -5700,22 +5928,22 @@ "no-cache" ], "Retry-After": [ - "1" + "3" ], "x-ms-request-id": [ - "380fd08a-e566-4924-9f86-d124bf57bf03" + "06ec9237-b201-4f24-a360-4605e8f91c5d" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Network/locations/southeastasia/operations/380fd08a-e566-4924-9f86-d124bf57bf03?api-version=2021-05-01" + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Network/locations/southeastasia/operations/06ec9237-b201-4f24-a360-4605e8f91c5d?api-version=2021-08-01" ], "x-ms-correlation-request-id": [ - "0710c5b9-9865-4db5-8b24-a0285d590ffe" + "a6d04a81-9f0d-4290-a193-25dc18865e5e" ], "Azure-AsyncNotification": [ "Enabled" ], "x-ms-arm-service-request-id": [ - "30ed9677-f6ad-4611-8c05-012bd50b1909" + "c7a40d54-8240-4224-909d-a7e3e08394f7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5725,19 +5953,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1199" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T221529Z:0710c5b9-9865-4db5-8b24-a0285d590ffe" + "WESTINDIA:20220517T043506Z:a6d04a81-9f0d-4290-a193-25dc18865e5e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 22:15:28 GMT" + "Tue, 17 May 2022 04:35:06 GMT" ], "Content-Length": [ - "662" + "1313" ], "Content-Type": [ "application/json; charset=utf-8" @@ -5746,23 +5974,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"pstestpublicdns1584e2\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.Network/publicIPAddresses/pstestpublicdns1584e2\",\r\n \"etag\": \"W/\\\"5269e427-8a4b-4c6b-8b93-e863f19f03b6\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"dac85f94-13df-4447-9cb3-2f589b67a0b8\",\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 \"tier\": \"Regional\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"PSTestVNETd78c92\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.Network/virtualNetworks/PSTestVNETd78c92\",\r\n \"etag\": \"W/\\\"d24d8611-e066-4dd9-a3cb-d45060ac5778\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"f7a5a047-c5b0-4c2e-9128-c8df60ae3818\",\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\": \"PSTestSNCd78c92\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.Network/virtualNetworks/PSTestVNETd78c92/subnets/PSTestSNCd78c92\",\r\n \"etag\": \"W/\\\"d24d8611-e066-4dd9-a3cb-d45060ac5778\\\"\",\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 },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Network/locations/southeastasia/operations/380fd08a-e566-4924-9f86-d124bf57bf03?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzM4MGZkMDhhLWU1NjYtNDkyNC05Zjg2LWQxMjRiZjU3YmYwMz9hcGktdmVyc2lvbj0yMDIxLTA1LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Network/locations/southeastasia/operations/06ec9237-b201-4f24-a360-4605e8f91c5d?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzA2ZWM5MjM3LWIyMDEtNGYyNC1hMzYwLTQ2MDVlOGY5MWM1ZD9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1d0b9145-d5ce-41b5-916d-8d4ba089aacb" + "50d1f482-df1f-4952-84aa-669017972a20" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ] }, "ResponseHeaders": { @@ -5773,13 +6001,13 @@ "no-cache" ], "x-ms-request-id": [ - "3e2e8ea5-0dba-4c4a-bdfb-11ef28dec341" + "212de300-b016-49b1-88b4-772e60260524" ], "x-ms-correlation-request-id": [ - "15552162-8860-4736-932d-8ea5f430b670" + "8b69fee2-b53a-4945-9132-c7541092b5b3" ], "x-ms-arm-service-request-id": [ - "a00c0293-be5d-4767-b6b8-e707f42ece27" + "2dc24f61-fe1c-4711-8bd3-33c2593e21e0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5789,16 +6017,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11998" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T221530Z:15552162-8860-4736-932d-8ea5f430b670" + "WESTINDIA:20220517T043509Z:8b69fee2-b53a-4945-9132-c7541092b5b3" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 22:15:29 GMT" + "Tue, 17 May 2022 04:35:09 GMT" ], "Content-Length": [ "29" @@ -5814,22 +6042,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG1584e2?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMTU4NGUyNzMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtTZWN1cml0eUdyb3Vwcy9QU1Rlc3ROU0cxNTg0ZTI/YXBpLXZlcnNpb249MjAyMS0wNS0wMQ==", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.Network/publicIPAddresses/pstestpublicdnsd78c92?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZDc4Yzk2MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BzdGVzdHB1YmxpY2Ruc2Q3OGM5Mj9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6adb4e19-250e-4c5f-b2a7-7a96fef6a1d4" + "a730e3ab-e01e-4c64-a199-42ab81281b71" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ] }, "ResponseHeaders": { @@ -5843,13 +6071,13 @@ "gateway" ], "x-ms-request-id": [ - "f550ec45-443a-4edc-8efb-eb67b046723f" + "26180c56-5545-4e9b-9797-72b2fe4aedd9" ], "x-ms-correlation-request-id": [ - "f550ec45-443a-4edc-8efb-eb67b046723f" + "26180c56-5545-4e9b-9797-72b2fe4aedd9" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T221531Z:f550ec45-443a-4edc-8efb-eb67b046723f" + "WESTINDIA:20220517T043510Z:26180c56-5545-4e9b-9797-72b2fe4aedd9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5858,7 +6086,7 @@ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 22:15:30 GMT" + "Tue, 17 May 2022 04:35:10 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -5867,26 +6095,26 @@ "-1" ], "Content-Length": [ - "243" + "245" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/networkSecurityGroups/PSTestNSG1584e2' under resource group 'PSTestRG1584e273' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/publicIPAddresses/pstestpublicdnsd78c92' under resource group 'PSTestRGd78c9636' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG1584e2?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMTU4NGUyNzMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtTZWN1cml0eUdyb3Vwcy9QU1Rlc3ROU0cxNTg0ZTI/YXBpLXZlcnNpb249MjAyMS0wNS0wMQ==", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.Network/publicIPAddresses/pstestpublicdnsd78c92?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZDc4Yzk2MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BzdGVzdHB1YmxpY2Ruc2Q3OGM5Mj9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6adb4e19-250e-4c5f-b2a7-7a96fef6a1d4" + "a730e3ab-e01e-4c64-a199-42ab81281b71" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ] }, "ResponseHeaders": { @@ -5897,16 +6125,16 @@ "no-cache" ], "ETag": [ - "W/\"a6c21f0e-b6df-4ef8-a587-3adad1042d68\"" + "W/\"1d5d4fad-2dbb-499f-8cbb-9b7acd84a41b\"" ], "x-ms-request-id": [ - "1d81e963-a692-4f1c-b021-1db781198713" + "fa0f9de7-dd2b-45ae-b588-e692e68eeb6a" ], "x-ms-correlation-request-id": [ - "3f474edd-102c-4f43-8e01-63eb8c3337fc" + "4f6ffdff-686e-440d-87b0-f39482675230" ], "x-ms-arm-service-request-id": [ - "df09280c-44dc-49de-9b9d-7afa95f4a7d7" + "cf3af785-b050-491a-8866-6a732982e8f3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5916,19 +6144,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11993" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T221539Z:3f474edd-102c-4f43-8e01-63eb8c3337fc" + "WESTINDIA:20220517T043513Z:4f6ffdff-686e-440d-87b0-f39482675230" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 22:15:38 GMT" + "Tue, 17 May 2022 04:35:12 GMT" ], "Content-Length": [ - "8475" + "698" ], "Content-Type": [ "application/json; charset=utf-8" @@ -5937,26 +6165,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"PSTestNSG1584e2\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG1584e2\",\r\n \"etag\": \"W/\\\"a6c21f0e-b6df-4ef8-a587-3adad1042d68\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"eaad731b-6517-44a4-90da-df7097ef4a78\",\r\n \"securityRules\": [\r\n {\r\n \"name\": \"PSTestNSGRuleRDP1584e2\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG1584e2/securityRules/PSTestNSGRuleRDP1584e2\",\r\n \"etag\": \"W/\\\"a6c21f0e-b6df-4ef8-a587-3adad1042d68\\\"\",\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\": \"PSTestNSGRuleWeb1584e2\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG1584e2/securityRules/PSTestNSGRuleWeb1584e2\",\r\n \"etag\": \"W/\\\"a6c21f0e-b6df-4ef8-a587-3adad1042d68\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG1584e2/defaultSecurityRules/AllowVnetInBound\",\r\n \"etag\": \"W/\\\"a6c21f0e-b6df-4ef8-a587-3adad1042d68\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG1584e2/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\r\n \"etag\": \"W/\\\"a6c21f0e-b6df-4ef8-a587-3adad1042d68\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG1584e2/defaultSecurityRules/DenyAllInBound\",\r\n \"etag\": \"W/\\\"a6c21f0e-b6df-4ef8-a587-3adad1042d68\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG1584e2/defaultSecurityRules/AllowVnetOutBound\",\r\n \"etag\": \"W/\\\"a6c21f0e-b6df-4ef8-a587-3adad1042d68\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG1584e2/defaultSecurityRules/AllowInternetOutBound\",\r\n \"etag\": \"W/\\\"a6c21f0e-b6df-4ef8-a587-3adad1042d68\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG1584e2/defaultSecurityRules/DenyAllOutBound\",\r\n \"etag\": \"W/\\\"a6c21f0e-b6df-4ef8-a587-3adad1042d68\\\"\",\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}", + "ResponseBody": "{\r\n \"name\": \"pstestpublicdnsd78c92\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.Network/publicIPAddresses/pstestpublicdnsd78c92\",\r\n \"etag\": \"W/\\\"1d5d4fad-2dbb-499f-8cbb-9b7acd84a41b\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"06661435-9969-46c8-9a30-fdfd38aa00d1\",\r\n \"ipAddress\": \"20.212.190.51\",\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 \"tier\": \"Regional\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG1584e2?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMTU4NGUyNzMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtTZWN1cml0eUdyb3Vwcy9QU1Rlc3ROU0cxNTg0ZTI/YXBpLXZlcnNpb249MjAyMS0wNS0wMQ==", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.Network/publicIPAddresses/pstestpublicdnsd78c92?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZDc4Yzk2MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BzdGVzdHB1YmxpY2Ruc2Q3OGM5Mj9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6adb4e19-250e-4c5f-b2a7-7a96fef6a1d4" + "a730e3ab-e01e-4c64-a199-42ab81281b71" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ] }, "ResponseHeaders": { @@ -5967,16 +6195,16 @@ "no-cache" ], "ETag": [ - "W/\"a6c21f0e-b6df-4ef8-a587-3adad1042d68\"" + "W/\"1d5d4fad-2dbb-499f-8cbb-9b7acd84a41b\"" ], "x-ms-request-id": [ - "eccd5083-1116-4584-8c1c-2fab8bb43416" + "63e5914d-c6ef-4596-b9a7-dcc8e45c4902" ], "x-ms-correlation-request-id": [ - "725c0a03-8c37-4f4c-a24e-f25f789438be" + "64921459-345d-4e07-b533-1e85a53cf756" ], "x-ms-arm-service-request-id": [ - "08e399be-82b9-4973-ad36-f80d93c458a3" + "dc2626b0-171f-44ba-8c5f-17688794d774" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5986,19 +6214,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "11992" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T221539Z:725c0a03-8c37-4f4c-a24e-f25f789438be" + "WESTINDIA:20220517T043513Z:64921459-345d-4e07-b533-1e85a53cf756" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 22:15:38 GMT" + "Tue, 17 May 2022 04:35:13 GMT" ], "Content-Length": [ - "8475" + "698" ], "Content-Type": [ "application/json; charset=utf-8" @@ -6007,32 +6235,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"PSTestNSG1584e2\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG1584e2\",\r\n \"etag\": \"W/\\\"a6c21f0e-b6df-4ef8-a587-3adad1042d68\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"eaad731b-6517-44a4-90da-df7097ef4a78\",\r\n \"securityRules\": [\r\n {\r\n \"name\": \"PSTestNSGRuleRDP1584e2\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG1584e2/securityRules/PSTestNSGRuleRDP1584e2\",\r\n \"etag\": \"W/\\\"a6c21f0e-b6df-4ef8-a587-3adad1042d68\\\"\",\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\": \"PSTestNSGRuleWeb1584e2\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG1584e2/securityRules/PSTestNSGRuleWeb1584e2\",\r\n \"etag\": \"W/\\\"a6c21f0e-b6df-4ef8-a587-3adad1042d68\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG1584e2/defaultSecurityRules/AllowVnetInBound\",\r\n \"etag\": \"W/\\\"a6c21f0e-b6df-4ef8-a587-3adad1042d68\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG1584e2/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\r\n \"etag\": \"W/\\\"a6c21f0e-b6df-4ef8-a587-3adad1042d68\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG1584e2/defaultSecurityRules/DenyAllInBound\",\r\n \"etag\": \"W/\\\"a6c21f0e-b6df-4ef8-a587-3adad1042d68\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG1584e2/defaultSecurityRules/AllowVnetOutBound\",\r\n \"etag\": \"W/\\\"a6c21f0e-b6df-4ef8-a587-3adad1042d68\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG1584e2/defaultSecurityRules/AllowInternetOutBound\",\r\n \"etag\": \"W/\\\"a6c21f0e-b6df-4ef8-a587-3adad1042d68\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG1584e2/defaultSecurityRules/DenyAllOutBound\",\r\n \"etag\": \"W/\\\"a6c21f0e-b6df-4ef8-a587-3adad1042d68\\\"\",\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}", + "ResponseBody": "{\r\n \"name\": \"pstestpublicdnsd78c92\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.Network/publicIPAddresses/pstestpublicdnsd78c92\",\r\n \"etag\": \"W/\\\"1d5d4fad-2dbb-499f-8cbb-9b7acd84a41b\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"06661435-9969-46c8-9a30-fdfd38aa00d1\",\r\n \"ipAddress\": \"20.212.190.51\",\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 \"tier\": \"Regional\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG1584e2?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMTU4NGUyNzMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtTZWN1cml0eUdyb3Vwcy9QU1Rlc3ROU0cxNTg0ZTI/YXBpLXZlcnNpb249MjAyMS0wNS0wMQ==", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.Network/publicIPAddresses/pstestpublicdnsd78c92?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZDc4Yzk2MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BzdGVzdHB1YmxpY2Ruc2Q3OGM5Mj9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "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\": \"PSTestNSGRuleRDP1584e2\"\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\": \"PSTestNSGRuleWeb1584e2\"\r\n }\r\n ]\r\n },\r\n \"location\": \"southeastasia\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Static\",\r\n \"ipTags\": [],\r\n \"idleTimeoutInMinutes\": 4\r\n },\r\n \"zones\": [],\r\n \"location\": \"southeastasia\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "6adb4e19-250e-4c5f-b2a7-7a96fef6a1d4" + "a730e3ab-e01e-4c64-a199-42ab81281b71" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "852" + "169" ] }, "ResponseHeaders": { @@ -6043,22 +6271,22 @@ "no-cache" ], "Retry-After": [ - "3" + "1" ], "x-ms-request-id": [ - "8f21321b-4185-4fc4-bd6c-6b00123dd28b" + "8ea2c7fb-d03d-4317-b74b-d9eafec9489f" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Network/locations/southeastasia/operations/8f21321b-4185-4fc4-bd6c-6b00123dd28b?api-version=2021-05-01" + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Network/locations/southeastasia/operations/8ea2c7fb-d03d-4317-b74b-d9eafec9489f?api-version=2021-08-01" ], "x-ms-correlation-request-id": [ - "0cb8bce5-c48f-424d-869b-e84c89035b9b" + "6f2226ef-1fa5-45fe-bcc8-1361af07d7c2" ], "Azure-AsyncNotification": [ "Enabled" ], "x-ms-arm-service-request-id": [ - "efb67b4f-c272-47dc-96cb-9f8a45e75c69" + "095f3dbc-1d90-4318-9a74-ff85c0c3b82e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6068,19 +6296,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1198" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T221535Z:0cb8bce5-c48f-424d-869b-e84c89035b9b" + "WESTINDIA:20220517T043511Z:6f2226ef-1fa5-45fe-bcc8-1361af07d7c2" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 22:15:34 GMT" + "Tue, 17 May 2022 04:35:11 GMT" ], "Content-Length": [ - "8466" + "662" ], "Content-Type": [ "application/json; charset=utf-8" @@ -6089,23 +6317,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"PSTestNSG1584e2\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG1584e2\",\r\n \"etag\": \"W/\\\"47868dbf-4c69-4b9b-b967-a63c2d7b7617\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"eaad731b-6517-44a4-90da-df7097ef4a78\",\r\n \"securityRules\": [\r\n {\r\n \"name\": \"PSTestNSGRuleRDP1584e2\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG1584e2/securityRules/PSTestNSGRuleRDP1584e2\",\r\n \"etag\": \"W/\\\"47868dbf-4c69-4b9b-b967-a63c2d7b7617\\\"\",\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\": \"PSTestNSGRuleWeb1584e2\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG1584e2/securityRules/PSTestNSGRuleWeb1584e2\",\r\n \"etag\": \"W/\\\"47868dbf-4c69-4b9b-b967-a63c2d7b7617\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG1584e2/defaultSecurityRules/AllowVnetInBound\",\r\n \"etag\": \"W/\\\"47868dbf-4c69-4b9b-b967-a63c2d7b7617\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG1584e2/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\r\n \"etag\": \"W/\\\"47868dbf-4c69-4b9b-b967-a63c2d7b7617\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG1584e2/defaultSecurityRules/DenyAllInBound\",\r\n \"etag\": \"W/\\\"47868dbf-4c69-4b9b-b967-a63c2d7b7617\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG1584e2/defaultSecurityRules/AllowVnetOutBound\",\r\n \"etag\": \"W/\\\"47868dbf-4c69-4b9b-b967-a63c2d7b7617\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG1584e2/defaultSecurityRules/AllowInternetOutBound\",\r\n \"etag\": \"W/\\\"47868dbf-4c69-4b9b-b967-a63c2d7b7617\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG1584e2/defaultSecurityRules/DenyAllOutBound\",\r\n \"etag\": \"W/\\\"47868dbf-4c69-4b9b-b967-a63c2d7b7617\\\"\",\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}", + "ResponseBody": "{\r\n \"name\": \"pstestpublicdnsd78c92\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.Network/publicIPAddresses/pstestpublicdnsd78c92\",\r\n \"etag\": \"W/\\\"993d81ba-88bf-494d-99ed-0d376e18e72d\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"06661435-9969-46c8-9a30-fdfd38aa00d1\",\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 \"tier\": \"Regional\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Network/locations/southeastasia/operations/8f21321b-4185-4fc4-bd6c-6b00123dd28b?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzhmMjEzMjFiLTQxODUtNGZjNC1iZDZjLTZiMDAxMjNkZDI4Yj9hcGktdmVyc2lvbj0yMDIxLTA1LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Network/locations/southeastasia/operations/8ea2c7fb-d03d-4317-b74b-d9eafec9489f?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzhlYTJjN2ZiLWQwM2QtNDMxNy1iNzRiLWQ5ZWFmZWM5NDg5Zj9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6adb4e19-250e-4c5f-b2a7-7a96fef6a1d4" + "a730e3ab-e01e-4c64-a199-42ab81281b71" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ] }, "ResponseHeaders": { @@ -6116,13 +6344,13 @@ "no-cache" ], "x-ms-request-id": [ - "232e257a-99ec-4873-9d42-7d26b21d00e4" + "437468f2-8d44-428b-a0a4-03583400e23f" ], "x-ms-correlation-request-id": [ - "4249fd78-85b2-4d6f-b658-f9f8e7f00a9b" + "78e05db3-97f3-4419-9926-6b818d6983e6" ], "x-ms-arm-service-request-id": [ - "6e2ef1ad-b68c-440f-b497-406c7e5b2464" + "888ec6e1-b458-48ef-a2ea-c9229cc32cf0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6132,16 +6360,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11994" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T221538Z:4249fd78-85b2-4d6f-b658-f9f8e7f00a9b" + "WESTINDIA:20220517T043513Z:78e05db3-97f3-4419-9926-6b818d6983e6" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 22:15:38 GMT" + "Tue, 17 May 2022 04:35:12 GMT" ], "Content-Length": [ "29" @@ -6157,22 +6385,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.Network/networkInterfaces/PSTestNIC1584e2?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMTU4NGUyNzMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL1BTVGVzdE5JQzE1ODRlMj9hcGktdmVyc2lvbj0yMDIxLTA1LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGd78c92?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZDc4Yzk2MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtTZWN1cml0eUdyb3Vwcy9QU1Rlc3ROU0dkNzhjOTI/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9d7cc7e1-be66-4e75-85d8-1418672075fa" + "1f1a8b72-4aee-4691-837c-3fd166079b14" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ] }, "ResponseHeaders": { @@ -6186,13 +6414,13 @@ "gateway" ], "x-ms-request-id": [ - "e5fc5466-f425-4bd8-9c4f-85a17a7d57fb" + "df88688a-8e94-4d2e-9351-a3da25ed7462" ], "x-ms-correlation-request-id": [ - "e5fc5466-f425-4bd8-9c4f-85a17a7d57fb" + "df88688a-8e94-4d2e-9351-a3da25ed7462" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T221539Z:e5fc5466-f425-4bd8-9c4f-85a17a7d57fb" + "WESTINDIA:20220517T043513Z:df88688a-8e94-4d2e-9351-a3da25ed7462" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6201,7 +6429,7 @@ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 22:15:39 GMT" + "Tue, 17 May 2022 04:35:13 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -6210,26 +6438,26 @@ "-1" ], "Content-Length": [ - "239" + "243" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/networkInterfaces/PSTestNIC1584e2' under resource group 'PSTestRG1584e273' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/networkSecurityGroups/PSTestNSGd78c92' under resource group 'PSTestRGd78c9636' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.Network/networkInterfaces/PSTestNIC1584e2?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMTU4NGUyNzMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL1BTVGVzdE5JQzE1ODRlMj9hcGktdmVyc2lvbj0yMDIxLTA1LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGd78c92?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZDc4Yzk2MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtTZWN1cml0eUdyb3Vwcy9QU1Rlc3ROU0dkNzhjOTI/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9d7cc7e1-be66-4e75-85d8-1418672075fa" + "1f1a8b72-4aee-4691-837c-3fd166079b14" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ] }, "ResponseHeaders": { @@ -6240,16 +6468,16 @@ "no-cache" ], "ETag": [ - "W/\"1f6dc363-f290-4724-aa2e-948d2fc735a8\"" + "W/\"c2b1823f-0625-471e-a76b-98f8439ccc2c\"" ], "x-ms-request-id": [ - "ab311f5a-7471-4009-95a5-e35f86ec715a" + "da8eb843-b8f5-4c11-a9eb-e92929c0b7f7" ], "x-ms-correlation-request-id": [ - "366e9173-3f13-44d3-a172-dcb4c21a6621" + "a8e3e2d3-428c-4500-8f71-a5cea2e3f67c" ], "x-ms-arm-service-request-id": [ - "24949ba2-0732-481a-a33f-22bce912c60f" + "2c448124-d7e4-4b4e-8c43-1dfdcf2dc8c7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6259,19 +6487,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" + "11989" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T221543Z:366e9173-3f13-44d3-a172-dcb4c21a6621" + "WESTINDIA:20220517T043518Z:a8e3e2d3-428c-4500-8f71-a5cea2e3f67c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 22:15:42 GMT" + "Tue, 17 May 2022 04:35:18 GMT" ], "Content-Length": [ - "2143" + "8475" ], "Content-Type": [ "application/json; charset=utf-8" @@ -6280,26 +6508,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"PSTestNIC1584e2\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.Network/networkInterfaces/PSTestNIC1584e2\",\r\n \"etag\": \"W/\\\"1f6dc363-f290-4724-aa2e-948d2fc735a8\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"7cc2e045-e3c4-46b6-b30a-d9cb49a9a9c2\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.Network/networkInterfaces/PSTestNIC1584e2/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"1f6dc363-f290-4724-aa2e-948d2fc735a8\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.Network/publicIPAddresses/pstestpublicdns1584e2\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.Network/virtualNetworks/PSTestVNET1584e2/subnets/PSTestSNC1584e2\"\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\": \"vhhqyin1irzedln2uj43tohx1a.ix.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"vnetEncryptionSupported\": false,\r\n \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG1584e2\"\r\n },\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": [],\r\n \"nicType\": \"Standard\"\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"PSTestNSGd78c92\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGd78c92\",\r\n \"etag\": \"W/\\\"c2b1823f-0625-471e-a76b-98f8439ccc2c\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"54ed95d2-b4c3-4c94-8842-8654044f27b9\",\r\n \"securityRules\": [\r\n {\r\n \"name\": \"PSTestNSGRuleRDPd78c92\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGd78c92/securityRules/PSTestNSGRuleRDPd78c92\",\r\n \"etag\": \"W/\\\"c2b1823f-0625-471e-a76b-98f8439ccc2c\\\"\",\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\": \"PSTestNSGRuleWebd78c92\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGd78c92/securityRules/PSTestNSGRuleWebd78c92\",\r\n \"etag\": \"W/\\\"c2b1823f-0625-471e-a76b-98f8439ccc2c\\\"\",\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/PSTestRGd78c9636/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGd78c92/defaultSecurityRules/AllowVnetInBound\",\r\n \"etag\": \"W/\\\"c2b1823f-0625-471e-a76b-98f8439ccc2c\\\"\",\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/PSTestRGd78c9636/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGd78c92/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\r\n \"etag\": \"W/\\\"c2b1823f-0625-471e-a76b-98f8439ccc2c\\\"\",\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/PSTestRGd78c9636/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGd78c92/defaultSecurityRules/DenyAllInBound\",\r\n \"etag\": \"W/\\\"c2b1823f-0625-471e-a76b-98f8439ccc2c\\\"\",\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/PSTestRGd78c9636/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGd78c92/defaultSecurityRules/AllowVnetOutBound\",\r\n \"etag\": \"W/\\\"c2b1823f-0625-471e-a76b-98f8439ccc2c\\\"\",\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/PSTestRGd78c9636/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGd78c92/defaultSecurityRules/AllowInternetOutBound\",\r\n \"etag\": \"W/\\\"c2b1823f-0625-471e-a76b-98f8439ccc2c\\\"\",\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/PSTestRGd78c9636/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGd78c92/defaultSecurityRules/DenyAllOutBound\",\r\n \"etag\": \"W/\\\"c2b1823f-0625-471e-a76b-98f8439ccc2c\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.Network/networkInterfaces/PSTestNIC1584e2?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMTU4NGUyNzMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL1BTVGVzdE5JQzE1ODRlMj9hcGktdmVyc2lvbj0yMDIxLTA1LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGd78c92?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZDc4Yzk2MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtTZWN1cml0eUdyb3Vwcy9QU1Rlc3ROU0dkNzhjOTI/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9d7cc7e1-be66-4e75-85d8-1418672075fa" + "1f1a8b72-4aee-4691-837c-3fd166079b14" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ] }, "ResponseHeaders": { @@ -6310,16 +6538,16 @@ "no-cache" ], "ETag": [ - "W/\"1f6dc363-f290-4724-aa2e-948d2fc735a8\"" + "W/\"c2b1823f-0625-471e-a76b-98f8439ccc2c\"" ], "x-ms-request-id": [ - "1cc4b7d8-9450-43b5-a499-b421a9f0acdc" + "b470aeef-16b6-4aa4-b79e-61fa2bb66a9c" ], "x-ms-correlation-request-id": [ - "4209166b-c371-418f-9839-166cdafaef8a" + "9b252830-094a-4320-9b80-a075a2695bf1" ], "x-ms-arm-service-request-id": [ - "3f7e700a-97d9-4cdd-badb-cc50056c08ed" + "341ffb4e-9998-4f55-b1af-6bc8711342c6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6329,19 +6557,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" + "11988" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T221543Z:4209166b-c371-418f-9839-166cdafaef8a" + "WESTINDIA:20220517T043519Z:9b252830-094a-4320-9b80-a075a2695bf1" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 22:15:43 GMT" + "Tue, 17 May 2022 04:35:18 GMT" ], "Content-Length": [ - "2143" + "8475" ], "Content-Type": [ "application/json; charset=utf-8" @@ -6350,32 +6578,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"PSTestNIC1584e2\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.Network/networkInterfaces/PSTestNIC1584e2\",\r\n \"etag\": \"W/\\\"1f6dc363-f290-4724-aa2e-948d2fc735a8\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"7cc2e045-e3c4-46b6-b30a-d9cb49a9a9c2\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.Network/networkInterfaces/PSTestNIC1584e2/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"1f6dc363-f290-4724-aa2e-948d2fc735a8\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.Network/publicIPAddresses/pstestpublicdns1584e2\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.Network/virtualNetworks/PSTestVNET1584e2/subnets/PSTestSNC1584e2\"\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\": \"vhhqyin1irzedln2uj43tohx1a.ix.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"vnetEncryptionSupported\": false,\r\n \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG1584e2\"\r\n },\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": [],\r\n \"nicType\": \"Standard\"\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"PSTestNSGd78c92\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGd78c92\",\r\n \"etag\": \"W/\\\"c2b1823f-0625-471e-a76b-98f8439ccc2c\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"54ed95d2-b4c3-4c94-8842-8654044f27b9\",\r\n \"securityRules\": [\r\n {\r\n \"name\": \"PSTestNSGRuleRDPd78c92\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGd78c92/securityRules/PSTestNSGRuleRDPd78c92\",\r\n \"etag\": \"W/\\\"c2b1823f-0625-471e-a76b-98f8439ccc2c\\\"\",\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\": \"PSTestNSGRuleWebd78c92\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGd78c92/securityRules/PSTestNSGRuleWebd78c92\",\r\n \"etag\": \"W/\\\"c2b1823f-0625-471e-a76b-98f8439ccc2c\\\"\",\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/PSTestRGd78c9636/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGd78c92/defaultSecurityRules/AllowVnetInBound\",\r\n \"etag\": \"W/\\\"c2b1823f-0625-471e-a76b-98f8439ccc2c\\\"\",\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/PSTestRGd78c9636/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGd78c92/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\r\n \"etag\": \"W/\\\"c2b1823f-0625-471e-a76b-98f8439ccc2c\\\"\",\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/PSTestRGd78c9636/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGd78c92/defaultSecurityRules/DenyAllInBound\",\r\n \"etag\": \"W/\\\"c2b1823f-0625-471e-a76b-98f8439ccc2c\\\"\",\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/PSTestRGd78c9636/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGd78c92/defaultSecurityRules/AllowVnetOutBound\",\r\n \"etag\": \"W/\\\"c2b1823f-0625-471e-a76b-98f8439ccc2c\\\"\",\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/PSTestRGd78c9636/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGd78c92/defaultSecurityRules/AllowInternetOutBound\",\r\n \"etag\": \"W/\\\"c2b1823f-0625-471e-a76b-98f8439ccc2c\\\"\",\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/PSTestRGd78c9636/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGd78c92/defaultSecurityRules/DenyAllOutBound\",\r\n \"etag\": \"W/\\\"c2b1823f-0625-471e-a76b-98f8439ccc2c\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.Network/networkInterfaces/PSTestNIC1584e2?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMTU4NGUyNzMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL1BTVGVzdE5JQzE1ODRlMj9hcGktdmVyc2lvbj0yMDIxLTA1LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGd78c92?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZDc4Yzk2MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtTZWN1cml0eUdyb3Vwcy9QU1Rlc3ROU0dkNzhjOTI/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"networkSecurityGroup\": {\r\n \"properties\": {\r\n \"securityRules\": []\r\n },\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG1584e2\",\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 \"applicationGatewayIpConfigurations\": []\r\n },\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.Network/virtualNetworks/PSTestVNET1584e2/subnets/PSTestSNC1584e2\"\r\n },\r\n \"primary\": true,\r\n \"publicIPAddress\": {\r\n \"properties\": {\r\n \"ipTags\": []\r\n },\r\n \"zones\": [],\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.Network/publicIPAddresses/pstestpublicdns1584e2\",\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\": \"southeastasia\"\r\n}", + "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\": \"PSTestNSGRuleRDPd78c92\"\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\": \"PSTestNSGRuleWebd78c92\"\r\n }\r\n ]\r\n },\r\n \"location\": \"southeastasia\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "9d7cc7e1-be66-4e75-85d8-1418672075fa" + "1f1a8b72-4aee-4691-837c-3fd166079b14" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "1671" + "852" ] }, "ResponseHeaders": { @@ -6385,20 +6613,23 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "3" + ], "x-ms-request-id": [ - "478ae48c-7119-43ed-a035-11333995d5be" + "3abdf6ef-5f20-43e2-8a6d-c6a424f7e681" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Network/locations/southeastasia/operations/478ae48c-7119-43ed-a035-11333995d5be?api-version=2021-05-01" + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Network/locations/southeastasia/operations/3abdf6ef-5f20-43e2-8a6d-c6a424f7e681?api-version=2021-08-01" ], "x-ms-correlation-request-id": [ - "aaa8746b-0b13-4110-beb8-cefbb9f68f14" + "61b52581-c95d-4322-8baa-a29b8b3091d3" ], "Azure-AsyncNotification": [ "Enabled" ], "x-ms-arm-service-request-id": [ - "9eaf3a36-82bf-4869-b32d-b0f5c260e42e" + "83a4ddf9-8a6e-421b-953b-15cfc668c4b5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6408,19 +6639,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1197" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T221543Z:aaa8746b-0b13-4110-beb8-cefbb9f68f14" + "WESTINDIA:20220517T043515Z:61b52581-c95d-4322-8baa-a29b8b3091d3" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 22:15:42 GMT" + "Tue, 17 May 2022 04:35:15 GMT" ], "Content-Length": [ - "2143" + "8466" ], "Content-Type": [ "application/json; charset=utf-8" @@ -6429,32 +6660,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"PSTestNIC1584e2\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.Network/networkInterfaces/PSTestNIC1584e2\",\r\n \"etag\": \"W/\\\"1f6dc363-f290-4724-aa2e-948d2fc735a8\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"7cc2e045-e3c4-46b6-b30a-d9cb49a9a9c2\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.Network/networkInterfaces/PSTestNIC1584e2/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"1f6dc363-f290-4724-aa2e-948d2fc735a8\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.Network/publicIPAddresses/pstestpublicdns1584e2\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.Network/virtualNetworks/PSTestVNET1584e2/subnets/PSTestSNC1584e2\"\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\": \"vhhqyin1irzedln2uj43tohx1a.ix.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"vnetEncryptionSupported\": false,\r\n \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG1584e2\"\r\n },\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": [],\r\n \"nicType\": \"Standard\"\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"PSTestNSGd78c92\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGd78c92\",\r\n \"etag\": \"W/\\\"7ba7ad68-5a6d-4517-b1b1-05035a7a38b8\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"54ed95d2-b4c3-4c94-8842-8654044f27b9\",\r\n \"securityRules\": [\r\n {\r\n \"name\": \"PSTestNSGRuleRDPd78c92\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGd78c92/securityRules/PSTestNSGRuleRDPd78c92\",\r\n \"etag\": \"W/\\\"7ba7ad68-5a6d-4517-b1b1-05035a7a38b8\\\"\",\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\": \"PSTestNSGRuleWebd78c92\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGd78c92/securityRules/PSTestNSGRuleWebd78c92\",\r\n \"etag\": \"W/\\\"7ba7ad68-5a6d-4517-b1b1-05035a7a38b8\\\"\",\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/PSTestRGd78c9636/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGd78c92/defaultSecurityRules/AllowVnetInBound\",\r\n \"etag\": \"W/\\\"7ba7ad68-5a6d-4517-b1b1-05035a7a38b8\\\"\",\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/PSTestRGd78c9636/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGd78c92/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\r\n \"etag\": \"W/\\\"7ba7ad68-5a6d-4517-b1b1-05035a7a38b8\\\"\",\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/PSTestRGd78c9636/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGd78c92/defaultSecurityRules/DenyAllInBound\",\r\n \"etag\": \"W/\\\"7ba7ad68-5a6d-4517-b1b1-05035a7a38b8\\\"\",\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/PSTestRGd78c9636/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGd78c92/defaultSecurityRules/AllowVnetOutBound\",\r\n \"etag\": \"W/\\\"7ba7ad68-5a6d-4517-b1b1-05035a7a38b8\\\"\",\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/PSTestRGd78c9636/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGd78c92/defaultSecurityRules/AllowInternetOutBound\",\r\n \"etag\": \"W/\\\"7ba7ad68-5a6d-4517-b1b1-05035a7a38b8\\\"\",\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/PSTestRGd78c9636/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGd78c92/defaultSecurityRules/DenyAllOutBound\",\r\n \"etag\": \"W/\\\"7ba7ad68-5a6d-4517-b1b1-05035a7a38b8\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.Compute/virtualMachines/PSTestVM1584e2?api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMTU4NGUyNzMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy9QU1Rlc3RWTTE1ODRlMj9hcGktdmVyc2lvbj0yMDIxLTExLTAx", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D1_v2\"\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\": \"PSTestVM1584e2\",\r\n \"adminUsername\": \"demouser\",\r\n \"adminPassword\": \"1584e273-c68Aa.\",\r\n \"windowsConfiguration\": {}\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.Network/networkInterfaces/PSTestNIC1584e2\"\r\n }\r\n ]\r\n }\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"Purpose\": \"PSTest\",\r\n \"DeleteBy\": \"06-2022\",\r\n \"AutoShutDown\": \"No\",\r\n \"Owner\": \"sarath\",\r\n \"MabUsed\": \"Yes\"\r\n }\r\n}", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Network/locations/southeastasia/operations/3abdf6ef-5f20-43e2-8a6d-c6a424f7e681?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzNhYmRmNmVmLTVmMjAtNDNlMi04YTZkLWM2YTQyNGY3ZTY4MT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b28069be-e680-4cf1-a94f-23a1bb01530d" - ], - "Accept-Language": [ - "en-US" + "1f1a8b72-4aee-4691-837c-3fd166079b14" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "930" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ] }, "ResponseHeaders": { @@ -6464,45 +6686,36 @@ "Pragma": [ "no-cache" ], - "Retry-After": [ - "10" - ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/southeastasia/operations/3ddeabcb-1684-4d71-9a41-c42207a5005d?p=34dc709c-01b2-42c4-84a2-256a9734610d&api-version=2021-11-01" + "x-ms-request-id": [ + "6f149364-eda1-4dea-b028-cf79ca1f2b18" ], - "Azure-AsyncNotification": [ - "Enabled" + "x-ms-correlation-request-id": [ + "4941c4f8-c533-40b9-a731-0cac1d465d0e" ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/PutVM3Min;239,Microsoft.Compute/PutVM30Min;1197" + "x-ms-arm-service-request-id": [ + "a429b6b8-00a7-40c0-a967-6f9c3e167deb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ - "3ddeabcb-1684-4d71-9a41-c42207a5005d" - ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" - ], - "x-ms-correlation-request-id": [ - "3bb95796-3786-4c19-aa67-918226881267" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11990" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T221552Z:3bb95796-3786-4c19-aa67-918226881267" + "WESTINDIA:20220517T043518Z:4941c4f8-c533-40b9-a731-0cac1d465d0e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 22:15:51 GMT" + "Tue, 17 May 2022 04:35:18 GMT" ], "Content-Length": [ - "1992" + "29" ], "Content-Type": [ "application/json; charset=utf-8" @@ -6511,23 +6724,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"PSTestVM1584e2\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.Compute/virtualMachines/PSTestVM1584e2\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"Purpose\": \"PSTest\",\r\n \"DeleteBy\": \"06-2022\",\r\n \"AutoShutDown\": \"No\",\r\n \"Owner\": \"sarath\",\r\n \"MabUsed\": \"Yes\",\r\n \"azsecpack\": \"nonprod\",\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": \"true\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"2fe5bb96-70d1-4dd3-a4f3-3529001e8ecd\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D1_v2\"\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.4946.220202\"\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 \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"PSTestVM1584e2\",\r\n \"adminUsername\": \"demouser\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"AutomaticByOS\",\r\n \"assessmentMode\": \"ImageDefault\"\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.Network/networkInterfaces/PSTestNIC1584e2\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\",\r\n \"timeCreated\": \"2022-02-23T17:15:49.5259156-05:00\"\r\n }\r\n}", - "StatusCode": 201 + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/southeastasia/operations/3ddeabcb-1684-4d71-9a41-c42207a5005d?p=34dc709c-01b2-42c4-84a2-256a9734610d&api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzNkZGVhYmNiLTE2ODQtNGQ3MS05YTQxLWM0MjIwN2E1MDA1ZD9wPTM0ZGM3MDljLTAxYjItNDJjNC04NGEyLTI1NmE5NzM0NjEwZCZhcGktdmVyc2lvbj0yMDIxLTExLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.Network/networkInterfaces/PSTestNICd78c92?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZDc4Yzk2MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL1BTVGVzdE5JQ2Q3OGM5Mj9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b28069be-e680-4cf1-a94f-23a1bb01530d" + "35d63d51-47b3-4bfb-bb8e-706eb166cff5" + ], + "Accept-Language": [ + "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ] }, "ResponseHeaders": { @@ -6537,64 +6753,54 @@ "Pragma": [ "no-cache" ], - "Retry-After": [ - "50" - ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperation3Min;14997,Microsoft.Compute/GetOperation30Min;29961" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-failure-cause": [ + "gateway" ], "x-ms-request-id": [ - "f37c4ec5-bf8d-48f7-9f1d-2364681daf0b" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11981" + "e94639eb-38a6-4668-bced-dd4b8a396fa8" ], "x-ms-correlation-request-id": [ - "d603ceb0-2a2b-40c4-bd31-1903ddaea97d" + "e94639eb-38a6-4668-bced-dd4b8a396fa8" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T221602Z:d603ceb0-2a2b-40c4-bd31-1903ddaea97d" + "WESTINDIA:20220517T043519Z:e94639eb-38a6-4668-bced-dd4b8a396fa8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 22:16:02 GMT" - ], - "Content-Length": [ - "133" + "Tue, 17 May 2022 04:35:18 GMT" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" + ], + "Content-Length": [ + "239" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-02-23T17:15:49.182159-05:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"3ddeabcb-1684-4d71-9a41-c42207a5005d\"\r\n}", - "StatusCode": 200 + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/networkInterfaces/PSTestNICd78c92' under resource group 'PSTestRGd78c9636' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "StatusCode": 404 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/southeastasia/operations/3ddeabcb-1684-4d71-9a41-c42207a5005d?p=34dc709c-01b2-42c4-84a2-256a9734610d&api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzNkZGVhYmNiLTE2ODQtNGQ3MS05YTQxLWM0MjIwN2E1MDA1ZD9wPTM0ZGM3MDljLTAxYjItNDJjNC04NGEyLTI1NmE5NzM0NjEwZCZhcGktdmVyc2lvbj0yMDIxLTExLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.Network/networkInterfaces/PSTestNICd78c92?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZDc4Yzk2MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL1BTVGVzdE5JQ2Q3OGM5Mj9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b28069be-e680-4cf1-a94f-23a1bb01530d" + "35d63d51-47b3-4bfb-bb8e-706eb166cff5" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ] }, "ResponseHeaders": { @@ -6604,36 +6810,39 @@ "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperation3Min;14997,Microsoft.Compute/GetOperation30Min;29960" + "ETag": [ + "W/\"25944a5e-f8ae-4fea-9735-3e7ea1333168\"" + ], + "x-ms-request-id": [ + "c93358ef-5d25-457e-9720-c972c962273e" + ], + "x-ms-correlation-request-id": [ + "7a4cbb44-95d4-43d5-8641-62d29f0f78fc" + ], + "x-ms-arm-service-request-id": [ + "c5dbd867-48cf-4d6f-92d9-6b708cca3817" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ - "bc9d735d-7a89-47b2-843c-1d8a220bdc42" - ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11980" - ], - "x-ms-correlation-request-id": [ - "eaf8b1f2-05d4-4a1b-aa1f-18a76ad8b0e3" + "11986" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T221652Z:eaf8b1f2-05d4-4a1b-aa1f-18a76ad8b0e3" + "WESTINDIA:20220517T043521Z:7a4cbb44-95d4-43d5-8641-62d29f0f78fc" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 22:16:51 GMT" + "Tue, 17 May 2022 04:35:20 GMT" ], "Content-Length": [ - "133" + "2165" ], "Content-Type": [ "application/json; charset=utf-8" @@ -6642,23 +6851,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-02-23T17:15:49.182159-05:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"3ddeabcb-1684-4d71-9a41-c42207a5005d\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"PSTestNICd78c92\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.Network/networkInterfaces/PSTestNICd78c92\",\r\n \"etag\": \"W/\\\"25944a5e-f8ae-4fea-9735-3e7ea1333168\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"a0dd4bd5-cb4e-4fea-8550-4ebbb5da0882\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.Network/networkInterfaces/PSTestNICd78c92/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"25944a5e-f8ae-4fea-9735-3e7ea1333168\\\"\",\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/PSTestRGd78c9636/providers/Microsoft.Network/publicIPAddresses/pstestpublicdnsd78c92\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.Network/virtualNetworks/PSTestVNETd78c92/subnets/PSTestSNCd78c92\"\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\": \"i4qkl33qyuxezejizdpwblryda.ix.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"vnetEncryptionSupported\": false,\r\n \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGd78c92\"\r\n },\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": [],\r\n \"nicType\": \"Standard\"\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"kind\": \"Regular\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/southeastasia/operations/3ddeabcb-1684-4d71-9a41-c42207a5005d?p=34dc709c-01b2-42c4-84a2-256a9734610d&api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzNkZGVhYmNiLTE2ODQtNGQ3MS05YTQxLWM0MjIwN2E1MDA1ZD9wPTM0ZGM3MDljLTAxYjItNDJjNC04NGEyLTI1NmE5NzM0NjEwZCZhcGktdmVyc2lvbj0yMDIxLTExLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.Network/networkInterfaces/PSTestNICd78c92?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZDc4Yzk2MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL1BTVGVzdE5JQ2Q3OGM5Mj9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b28069be-e680-4cf1-a94f-23a1bb01530d" + "35d63d51-47b3-4bfb-bb8e-706eb166cff5" + ], + "Accept-Language": [ + "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ] }, "ResponseHeaders": { @@ -6668,36 +6880,118 @@ "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperation3Min;14997,Microsoft.Compute/GetOperation30Min;29959" + "ETag": [ + "W/\"25944a5e-f8ae-4fea-9735-3e7ea1333168\"" + ], + "x-ms-request-id": [ + "4393dec3-8467-4bfc-99b2-67e32f90bda8" + ], + "x-ms-correlation-request-id": [ + "74173476-427e-4dc0-a06a-b3622c0cf3e2" + ], + "x-ms-arm-service-request-id": [ + "e1d8a736-3e0d-452a-90df-5bc236e8b100" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ - "4a61cdd9-1268-4b91-a4c1-b8367ba404d6" - ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11979" + "11985" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220517T043521Z:74173476-427e-4dc0-a06a-b3622c0cf3e2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 17 May 2022 04:35:20 GMT" + ], + "Content-Length": [ + "2165" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"PSTestNICd78c92\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.Network/networkInterfaces/PSTestNICd78c92\",\r\n \"etag\": \"W/\\\"25944a5e-f8ae-4fea-9735-3e7ea1333168\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"a0dd4bd5-cb4e-4fea-8550-4ebbb5da0882\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.Network/networkInterfaces/PSTestNICd78c92/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"25944a5e-f8ae-4fea-9735-3e7ea1333168\\\"\",\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/PSTestRGd78c9636/providers/Microsoft.Network/publicIPAddresses/pstestpublicdnsd78c92\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.Network/virtualNetworks/PSTestVNETd78c92/subnets/PSTestSNCd78c92\"\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\": \"i4qkl33qyuxezejizdpwblryda.ix.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"vnetEncryptionSupported\": false,\r\n \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGd78c92\"\r\n },\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": [],\r\n \"nicType\": \"Standard\"\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"kind\": \"Regular\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.Network/networkInterfaces/PSTestNICd78c92?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZDc4Yzk2MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL1BTVGVzdE5JQ2Q3OGM5Mj9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", + "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/PSTestRGd78c9636/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGd78c92\",\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 \"applicationGatewayIpConfigurations\": []\r\n },\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.Network/virtualNetworks/PSTestVNETd78c92/subnets/PSTestSNCd78c92\"\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/PSTestRGd78c9636/providers/Microsoft.Network/publicIPAddresses/pstestpublicdnsd78c92\",\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\": \"southeastasia\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "35d63d51-47b3-4bfb-bb8e-706eb166cff5" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "1671" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "70ebafb8-ec98-490b-911c-48c270390921" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Network/locations/southeastasia/operations/70ebafb8-ec98-490b-911c-48c270390921?api-version=2021-08-01" ], "x-ms-correlation-request-id": [ - "a945f356-3018-4a10-8859-ef79bebfb3c7" + "cf0107e4-4e8a-4d84-a40e-d895bd8cc1d1" + ], + "Azure-AsyncNotification": [ + "Enabled" + ], + "x-ms-arm-service-request-id": [ + "67ef19f2-2bf2-4882-ba91-c338f3b9d88f" + ], + "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": [ - "CENTRALUS:20220223T221743Z:a945f356-3018-4a10-8859-ef79bebfb3c7" + "WESTINDIA:20220517T043520Z:cf0107e4-4e8a-4d84-a40e-d895bd8cc1d1" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 22:17:42 GMT" + "Tue, 17 May 2022 04:35:20 GMT" ], "Content-Length": [ - "183" + "2165" ], "Content-Type": [ "application/json; charset=utf-8" @@ -6706,32 +7000,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-02-23T17:15:49.182159-05:00\",\r\n \"endTime\": \"2022-02-23T17:17:13.7613572-05:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"3ddeabcb-1684-4d71-9a41-c42207a5005d\"\r\n}", - "StatusCode": 200 + "ResponseBody": "{\r\n \"name\": \"PSTestNICd78c92\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.Network/networkInterfaces/PSTestNICd78c92\",\r\n \"etag\": \"W/\\\"25944a5e-f8ae-4fea-9735-3e7ea1333168\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"a0dd4bd5-cb4e-4fea-8550-4ebbb5da0882\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.Network/networkInterfaces/PSTestNICd78c92/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"25944a5e-f8ae-4fea-9735-3e7ea1333168\\\"\",\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/PSTestRGd78c9636/providers/Microsoft.Network/publicIPAddresses/pstestpublicdnsd78c92\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.Network/virtualNetworks/PSTestVNETd78c92/subnets/PSTestSNCd78c92\"\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\": \"i4qkl33qyuxezejizdpwblryda.ix.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"vnetEncryptionSupported\": false,\r\n \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGd78c92\"\r\n },\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": [],\r\n \"nicType\": \"Standard\"\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"kind\": \"Regular\"\r\n}", + "StatusCode": 201 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.Compute/virtualMachines/PSTestVM1584e2/extensions/BGInfo?api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMTU4NGUyNzMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy9QU1Rlc3RWTTE1ODRlMi9leHRlbnNpb25zL0JHSW5mbz9hcGktdmVyc2lvbj0yMDIxLTExLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.Compute/virtualMachines/PSTestVMd78c92?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZDc4Yzk2MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy9QU1Rlc3RWTWQ3OGM5Mj9hcGktdmVyc2lvbj0yMDIxLTExLTAx", "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\": \"southeastasia\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D1_v2\"\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\": \"PSTestVMd78c92\",\r\n \"adminUsername\": \"demouser\",\r\n \"adminPassword\": \"d78c9636-c2eAa.\",\r\n \"windowsConfiguration\": {}\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.Network/networkInterfaces/PSTestNICd78c92\"\r\n }\r\n ]\r\n }\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"Purpose\": \"PSTest\",\r\n \"MabUsed\": \"Yes\",\r\n \"DeleteBy\": \"06-2022\",\r\n \"AutoShutDown\": \"No\",\r\n \"Owner\": \"sarath\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "b28069be-e680-4cf1-a94f-23a1bb01530d" + "4e90d890-8d9e-447e-bc81-85c31ae3178c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "193" + "930" ] }, "ResponseHeaders": { @@ -6741,42 +7035,45 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "10" + ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/southeastasia/operations/5318da78-c7a5-4a2b-b4c5-b9aef93eb12e?p=34dc709c-01b2-42c4-84a2-256a9734610d&api-version=2021-11-01" + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Compute/locations/southeastasia/operations/65b821b4-ff6e-4ccf-ac0a-5bdaf9206a24?p=e484ceca-6435-4a7f-b125-3d82e6b12014&api-version=2021-11-01" ], "Azure-AsyncNotification": [ "Enabled" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/UpdateVM3Min;239,Microsoft.Compute/UpdateVM30Min;1195" + "Microsoft.Compute/PutVM3Min;239,Microsoft.Compute/PutVM30Min;1197" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "5318da78-c7a5-4a2b-b4c5-b9aef93eb12e" + "65b821b4-ff6e-4ccf-ac0a-5bdaf9206a24" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1197" ], "x-ms-correlation-request-id": [ - "aa4e0427-cc62-47ea-82ea-3080717853bc" + "93ac8997-dfa4-44c2-9bfa-adf48c017f21" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T221751Z:aa4e0427-cc62-47ea-82ea-3080717853bc" + "WESTINDIA:20220517T043526Z:93ac8997-dfa4-44c2-9bfa-adf48c017f21" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 22:17:50 GMT" + "Tue, 17 May 2022 04:35:25 GMT" ], "Content-Length": [ - "484" + "1922" ], "Content-Type": [ "application/json; charset=utf-8" @@ -6785,23 +7082,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"BGInfo\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.Compute/virtualMachines/PSTestVM1584e2/extensions/BGInfo\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"southeastasia\",\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}", + "ResponseBody": "{\r\n \"name\": \"PSTestVMd78c92\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.Compute/virtualMachines/PSTestVMd78c92\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"Purpose\": \"PSTest\",\r\n \"MabUsed\": \"Yes\",\r\n \"DeleteBy\": \"06-2022\",\r\n \"AutoShutDown\": \"No\",\r\n \"Owner\": \"sarath\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"6b5efffb-5275-491e-a389-ac5c870a2bde\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D1_v2\"\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.5125.220505\"\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 \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"PSTestVMd78c92\",\r\n \"adminUsername\": \"demouser\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"AutomaticByOS\",\r\n \"assessmentMode\": \"ImageDefault\"\r\n },\r\n \"enableVMAgentPlatformUpdates\": false\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/PSTestRGd78c9636/providers/Microsoft.Network/networkInterfaces/PSTestNICd78c92\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\",\r\n \"timeCreated\": \"2022-05-17T10:05:25.5220349+05:30\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/southeastasia/operations/5318da78-c7a5-4a2b-b4c5-b9aef93eb12e?p=34dc709c-01b2-42c4-84a2-256a9734610d&api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzUzMThkYTc4LWM3YTUtNGEyYi1iNGM1LWI5YWVmOTNlYjEyZT9wPTM0ZGM3MDljLTAxYjItNDJjNC04NGEyLTI1NmE5NzM0NjEwZCZhcGktdmVyc2lvbj0yMDIxLTExLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Compute/locations/southeastasia/operations/65b821b4-ff6e-4ccf-ac0a-5bdaf9206a24?p=e484ceca-6435-4a7f-b125-3d82e6b12014&api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzY1YjgyMWI0LWZmNmUtNGNjZi1hYzBhLTViZGFmOTIwNmEyND9wPWU0ODRjZWNhLTY0MzUtNGE3Zi1iMTI1LTNkODJlNmIxMjAxNCZhcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b28069be-e680-4cf1-a94f-23a1bb01530d" + "4e90d890-8d9e-447e-bc81-85c31ae3178c" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ] }, "ResponseHeaders": { @@ -6811,33 +7108,36 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "50" + ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperation3Min;14995,Microsoft.Compute/GetOperation30Min;29957" + "Microsoft.Compute/GetOperation3Min;14995,Microsoft.Compute/GetOperation30Min;29969" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e0104d8f-4666-479a-b3c9-5f372c016f1d" + "3939b798-1541-4662-8fe8-45a302de23b6" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11974" + "11983" ], "x-ms-correlation-request-id": [ - "17902564-12ec-4fa3-b479-d206e461a8dd" + "36010574-551b-4e72-b46d-3d211122a433" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T221821Z:17902564-12ec-4fa3-b479-d206e461a8dd" + "WESTINDIA:20220517T043536Z:36010574-551b-4e72-b46d-3d211122a433" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 22:18:20 GMT" + "Tue, 17 May 2022 04:35:36 GMT" ], "Content-Length": [ "134" @@ -6849,23 +7149,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-02-23T17:17:49.8712338-05:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"5318da78-c7a5-4a2b-b4c5-b9aef93eb12e\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2022-05-17T10:05:24.9594903+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"65b821b4-ff6e-4ccf-ac0a-5bdaf9206a24\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/southeastasia/operations/5318da78-c7a5-4a2b-b4c5-b9aef93eb12e?p=34dc709c-01b2-42c4-84a2-256a9734610d&api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzUzMThkYTc4LWM3YTUtNGEyYi1iNGM1LWI5YWVmOTNlYjEyZT9wPTM0ZGM3MDljLTAxYjItNDJjNC04NGEyLTI1NmE5NzM0NjEwZCZhcGktdmVyc2lvbj0yMDIxLTExLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Compute/locations/southeastasia/operations/65b821b4-ff6e-4ccf-ac0a-5bdaf9206a24?p=e484ceca-6435-4a7f-b125-3d82e6b12014&api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzY1YjgyMWI0LWZmNmUtNGNjZi1hYzBhLTViZGFmOTIwNmEyND9wPWU0ODRjZWNhLTY0MzUtNGE3Zi1iMTI1LTNkODJlNmIxMjAxNCZhcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b28069be-e680-4cf1-a94f-23a1bb01530d" + "4e90d890-8d9e-447e-bc81-85c31ae3178c" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ] }, "ResponseHeaders": { @@ -6876,32 +7176,32 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperation3Min;14994,Microsoft.Compute/GetOperation30Min;29956" + "Microsoft.Compute/GetOperation3Min;14996,Microsoft.Compute/GetOperation30Min;29968" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c58d9e87-9ae0-44b8-a9bc-a3499b3e96a4" + "8e96fe77-1fe0-484b-91b9-adaa4a11c630" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11973" + "11982" ], "x-ms-correlation-request-id": [ - "6f330687-1f83-4102-b485-2fca86a8be6b" + "0065d09b-3905-4e12-8920-a7b5dbc2db0b" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T221851Z:6f330687-1f83-4102-b485-2fca86a8be6b" + "WESTINDIA:20220517T043626Z:0065d09b-3905-4e12-8920-a7b5dbc2db0b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 22:18:50 GMT" + "Tue, 17 May 2022 04:36:25 GMT" ], "Content-Length": [ "134" @@ -6913,23 +7213,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-02-23T17:17:49.8712338-05:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"5318da78-c7a5-4a2b-b4c5-b9aef93eb12e\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2022-05-17T10:05:24.9594903+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"65b821b4-ff6e-4ccf-ac0a-5bdaf9206a24\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/southeastasia/operations/5318da78-c7a5-4a2b-b4c5-b9aef93eb12e?p=34dc709c-01b2-42c4-84a2-256a9734610d&api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzUzMThkYTc4LWM3YTUtNGEyYi1iNGM1LWI5YWVmOTNlYjEyZT9wPTM0ZGM3MDljLTAxYjItNDJjNC04NGEyLTI1NmE5NzM0NjEwZCZhcGktdmVyc2lvbj0yMDIxLTExLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Compute/locations/southeastasia/operations/65b821b4-ff6e-4ccf-ac0a-5bdaf9206a24?p=e484ceca-6435-4a7f-b125-3d82e6b12014&api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzY1YjgyMWI0LWZmNmUtNGNjZi1hYzBhLTViZGFmOTIwNmEyND9wPWU0ODRjZWNhLTY0MzUtNGE3Zi1iMTI1LTNkODJlNmIxMjAxNCZhcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b28069be-e680-4cf1-a94f-23a1bb01530d" + "4e90d890-8d9e-447e-bc81-85c31ae3178c" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ] }, "ResponseHeaders": { @@ -6940,32 +7240,175 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperation3Min;14994,Microsoft.Compute/GetOperation30Min;29955" + "Microsoft.Compute/GetOperation3Min;14996,Microsoft.Compute/GetOperation30Min;29967" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "08c58e39-521a-48e8-8893-8a9eebef1023" + "5b1cb870-e8cb-4562-8f50-dfe53f25e46e" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11972" + "11981" + ], + "x-ms-correlation-request-id": [ + "eba94df8-8bfd-41ba-af28-5fc1b28ac848" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220517T043716Z:eba94df8-8bfd-41ba-af28-5fc1b28ac848" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 17 May 2022 04:37:15 GMT" + ], + "Content-Length": [ + "184" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2022-05-17T10:05:24.9594903+05:30\",\r\n \"endTime\": \"2022-05-17T10:07:02.5367029+05:30\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"65b821b4-ff6e-4ccf-ac0a-5bdaf9206a24\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.Compute/virtualMachines/PSTestVMd78c92/extensions/BGInfo?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZDc4Yzk2MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy9QU1Rlc3RWTWQ3OGM5Mi9leHRlbnNpb25zL0JHSW5mbz9hcGktdmVyc2lvbj0yMDIxLTExLTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"BGInfo\",\r\n \"typeHandlerVersion\": \"2.2\",\r\n \"autoUpgradeMinorVersion\": true\r\n },\r\n \"location\": \"southeastasia\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4e90d890-8d9e-447e-bc81-85c31ae3178c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.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/southeastasia/operations/db2f0833-eb7d-4b74-8824-31eb0c2436b7?p=e484ceca-6435-4a7f-b125-3d82e6b12014&api-version=2021-11-01" + ], + "Azure-AsyncNotification": [ + "Enabled" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/UpdateVM3Min;239,Microsoft.Compute/UpdateVM30Min;1197" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "db2f0833-eb7d-4b74-8824-31eb0c2436b7" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" + ], + "x-ms-correlation-request-id": [ + "5113aee9-a06f-4bac-b8c9-97b950c238c3" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220517T043720Z:5113aee9-a06f-4bac-b8c9-97b950c238c3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 17 May 2022 04:37:19 GMT" + ], + "Content-Length": [ + "484" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"BGInfo\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.Compute/virtualMachines/PSTestVMd78c92/extensions/BGInfo\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Creating\",\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"BGInfo\",\r\n \"typeHandlerVersion\": \"2.2\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Compute/locations/southeastasia/operations/db2f0833-eb7d-4b74-8824-31eb0c2436b7?p=e484ceca-6435-4a7f-b125-3d82e6b12014&api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2RiMmYwODMzLWViN2QtNGI3NC04ODI0LTMxZWIwYzI0MzZiNz9wPWU0ODRjZWNhLTY0MzUtNGE3Zi1iMTI1LTNkODJlNmIxMjAxNCZhcGktdmVyc2lvbj0yMDIxLTExLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4e90d890-8d9e-447e-bc81-85c31ae3178c" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperation3Min;14994,Microsoft.Compute/GetOperation30Min;29965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "06e44929-cabe-4ef6-9283-5203ecfcf9f3" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11976" ], "x-ms-correlation-request-id": [ - "eaec771b-6bc4-4c7e-bac5-7c0c1c723cc6" + "54ebf74a-d838-4a6d-aa7f-b41b87ed52e3" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T221922Z:eaec771b-6bc4-4c7e-bac5-7c0c1c723cc6" + "WESTINDIA:20220517T043750Z:54ebf74a-d838-4a6d-aa7f-b41b87ed52e3" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 22:19:21 GMT" + "Tue, 17 May 2022 04:37:49 GMT" ], "Content-Length": [ "134" @@ -6977,23 +7420,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-02-23T17:17:49.8712338-05:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"5318da78-c7a5-4a2b-b4c5-b9aef93eb12e\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2022-05-17T10:07:19.3959749+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"db2f0833-eb7d-4b74-8824-31eb0c2436b7\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/southeastasia/operations/5318da78-c7a5-4a2b-b4c5-b9aef93eb12e?p=34dc709c-01b2-42c4-84a2-256a9734610d&api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzUzMThkYTc4LWM3YTUtNGEyYi1iNGM1LWI5YWVmOTNlYjEyZT9wPTM0ZGM3MDljLTAxYjItNDJjNC04NGEyLTI1NmE5NzM0NjEwZCZhcGktdmVyc2lvbj0yMDIxLTExLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Compute/locations/southeastasia/operations/db2f0833-eb7d-4b74-8824-31eb0c2436b7?p=e484ceca-6435-4a7f-b125-3d82e6b12014&api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2RiMmYwODMzLWViN2QtNGI3NC04ODI0LTMxZWIwYzI0MzZiNz9wPWU0ODRjZWNhLTY0MzUtNGE3Zi1iMTI1LTNkODJlNmIxMjAxNCZhcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b28069be-e680-4cf1-a94f-23a1bb01530d" + "4e90d890-8d9e-447e-bc81-85c31ae3178c" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ] }, "ResponseHeaders": { @@ -7004,35 +7447,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperation3Min;14993,Microsoft.Compute/GetOperation30Min;29953" + "Microsoft.Compute/GetOperation3Min;14994,Microsoft.Compute/GetOperation30Min;29964" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "80956785-65b1-4bb6-9c03-96bbe0d7f449" + "780b7545-f7a2-4e79-a4bc-7cb59d990b36" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11971" + "11975" ], "x-ms-correlation-request-id": [ - "f6eb3e55-544f-4fcf-b49d-2eacc74d5b2a" + "106811d8-3811-4fda-9141-68f0fcf930aa" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T221952Z:f6eb3e55-544f-4fcf-b49d-2eacc74d5b2a" + "WESTINDIA:20220517T043820Z:106811d8-3811-4fda-9141-68f0fcf930aa" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 22:19:51 GMT" + "Tue, 17 May 2022 04:38:19 GMT" ], "Content-Length": [ - "184" + "134" ], "Content-Type": [ "application/json; charset=utf-8" @@ -7041,23 +7484,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-02-23T17:17:49.8712338-05:00\",\r\n \"endTime\": \"2022-02-23T17:19:26.5599006-05:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"5318da78-c7a5-4a2b-b4c5-b9aef93eb12e\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2022-05-17T10:07:19.3959749+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"db2f0833-eb7d-4b74-8824-31eb0c2436b7\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.Compute/virtualMachines/PSTestVM1584e2/extensions/BGInfo?api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMTU4NGUyNzMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy9QU1Rlc3RWTTE1ODRlMi9leHRlbnNpb25zL0JHSW5mbz9hcGktdmVyc2lvbj0yMDIxLTExLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Compute/locations/southeastasia/operations/db2f0833-eb7d-4b74-8824-31eb0c2436b7?p=e484ceca-6435-4a7f-b125-3d82e6b12014&api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2RiMmYwODMzLWViN2QtNGI3NC04ODI0LTMxZWIwYzI0MzZiNz9wPWU0ODRjZWNhLTY0MzUtNGE3Zi1iMTI1LTNkODJlNmIxMjAxNCZhcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b28069be-e680-4cf1-a94f-23a1bb01530d" + "4e90d890-8d9e-447e-bc81-85c31ae3178c" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ] }, "ResponseHeaders": { @@ -7067,64 +7510,2213 @@ "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/LowCostGet3Min;3994,Microsoft.Compute/LowCostGet30Min;31961" + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperation3Min;14994,Microsoft.Compute/GetOperation30Min;29963" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "c78f371b-77e4-4ea6-aa0e-abbae7eb4b73" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11974" + ], + "x-ms-correlation-request-id": [ + "164f64fd-bd74-429d-a4ac-a7219a5d4d9d" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220517T043850Z:164f64fd-bd74-429d-a4ac-a7219a5d4d9d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 17 May 2022 04:38:50 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2022-05-17T10:07:19.3959749+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"db2f0833-eb7d-4b74-8824-31eb0c2436b7\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Compute/locations/southeastasia/operations/db2f0833-eb7d-4b74-8824-31eb0c2436b7?p=e484ceca-6435-4a7f-b125-3d82e6b12014&api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2RiMmYwODMzLWViN2QtNGI3NC04ODI0LTMxZWIwYzI0MzZiNz9wPWU0ODRjZWNhLTY0MzUtNGE3Zi1iMTI1LTNkODJlNmIxMjAxNCZhcGktdmVyc2lvbj0yMDIxLTExLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4e90d890-8d9e-447e-bc81-85c31ae3178c" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperation3Min;14993,Microsoft.Compute/GetOperation30Min;29961" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "3cbedd61-0c2d-44f4-a32f-7831fda5c509" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11973" + ], + "x-ms-correlation-request-id": [ + "182cdbd2-5f1d-4656-a451-84ca6a79bc15" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220517T043920Z:182cdbd2-5f1d-4656-a451-84ca6a79bc15" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 17 May 2022 04:39:20 GMT" + ], + "Content-Length": [ + "183" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2022-05-17T10:07:19.3959749+05:30\",\r\n \"endTime\": \"2022-05-17T10:09:16.019734+05:30\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"db2f0833-eb7d-4b74-8824-31eb0c2436b7\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.Compute/virtualMachines/PSTestVMd78c92/extensions/BGInfo?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZDc4Yzk2MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy9QU1Rlc3RWTWQ3OGM5Mi9leHRlbnNpb25zL0JHSW5mbz9hcGktdmVyc2lvbj0yMDIxLTExLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4e90d890-8d9e-447e-bc81-85c31ae3178c" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/LowCostGet3Min;3982,Microsoft.Compute/LowCostGet30Min;31844" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "ca0bbfad-7dac-4a3e-8175-463683e33121" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11972" + ], + "x-ms-correlation-request-id": [ + "c06b41e2-4671-4841-8aa2-8f4e335f6ba1" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220517T043920Z:c06b41e2-4671-4841-8aa2-8f4e335f6ba1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 17 May 2022 04:39:20 GMT" + ], + "Content-Length": [ + "485" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"BGInfo\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.Compute/virtualMachines/PSTestVMd78c92/extensions/BGInfo\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"BGInfo\",\r\n \"typeHandlerVersion\": \"2.2\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.RecoveryServices/vaults/PSTestRSVd78c9636/backupProtectionContainers?$filter=friendlyName%20eq%20'PSTestVMd78c92'%20and%20backupManagementType%20eq%20'AzureIaasVM'%20and%20status%20eq%20'Registered'&api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZDc4Yzk2MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZkNzhjOTYzNi9iYWNrdXBQcm90ZWN0aW9uQ29udGFpbmVycz8kZmlsdGVyPWZyaWVuZGx5TmFtZSUyMGVxJTIwJ1BTVGVzdFZNZDc4YzkyJyUyMGFuZCUyMGJhY2t1cE1hbmFnZW1lbnRUeXBlJTIwZXElMjAnQXp1cmVJYWFzVk0nJTIwYW5kJTIwc3RhdHVzJTIwZXElMjAnUmVnaXN0ZXJlZCcmYXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "dcfc07ec-29c1-4825-adbe-9998aca8e52d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "1f5a9ac3-0e69-482e-b2cd-8ba385d41fff" + ], + "x-ms-client-request-id": [ + "dcfc07ec-29c1-4825-adbe-9998aca8e52d", + "dcfc07ec-29c1-4825-adbe-9998aca8e52d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "149" + ], + "x-ms-correlation-request-id": [ + "1f5a9ac3-0e69-482e-b2cd-8ba385d41fff" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220517T043928Z:1f5a9ac3-0e69-482e-b2cd-8ba385d41fff" + ], + "Date": [ + "Tue, 17 May 2022 04:39:27 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/PSTestRGd78c9636/providers/Microsoft.RecoveryServices/vaults/PSTestRSVd78c9636/backupProtectionContainers?$filter=friendlyName%20eq%20'PSTestVMd78c92'%20and%20backupManagementType%20eq%20'AzureIaasVM'%20and%20status%20eq%20'Registered'&api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZDc4Yzk2MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZkNzhjOTYzNi9iYWNrdXBQcm90ZWN0aW9uQ29udGFpbmVycz8kZmlsdGVyPWZyaWVuZGx5TmFtZSUyMGVxJTIwJ1BTVGVzdFZNZDc4YzkyJyUyMGFuZCUyMGJhY2t1cE1hbmFnZW1lbnRUeXBlJTIwZXElMjAnQXp1cmVJYWFzVk0nJTIwYW5kJTIwc3RhdHVzJTIwZXElMjAnUmVnaXN0ZXJlZCcmYXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3d7b69e0-fa2a-40ba-a187-f8bcac24509d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "a079ee1d-af0d-4cbe-8dd7-ba77b361904e" + ], + "x-ms-client-request-id": [ + "3d7b69e0-fa2a-40ba-a187-f8bcac24509d", + "3d7b69e0-fa2a-40ba-a187-f8bcac24509d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "148" + ], + "x-ms-correlation-request-id": [ + "a079ee1d-af0d-4cbe-8dd7-ba77b361904e" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220517T044028Z:a079ee1d-af0d-4cbe-8dd7-ba77b361904e" + ], + "Date": [ + "Tue, 17 May 2022 04:40:28 GMT" + ], + "Content-Length": [ + "914" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.RecoveryServices/vaults/PSTestRSVd78c9636/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrgd78c9636;pstestvmd78c92\",\r\n \"name\": \"IaasVMContainer;iaasvmcontainerv2;pstestrgd78c9636;pstestvmd78c92\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers\",\r\n \"properties\": {\r\n \"virtualMachineId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.Compute/virtualMachines/PSTestVMd78c92\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"resourceGroup\": \"PSTestRGd78c9636\",\r\n \"friendlyName\": \"PSTestVMd78c92\",\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/PSTestRGd78c9636/providers/Microsoft.RecoveryServices/vaults/PSTestRSVd78c9636/backupFabrics/Azure/refreshContainers?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZDc4Yzk2MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZkNzhjOTYzNi9iYWNrdXBGYWJyaWNzL0F6dXJlL3JlZnJlc2hDb250YWluZXJzP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e64c6597-2358-455a-877b-fcfa09fbdbf9" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.RecoveryServices/vaults/PSTestRSVd78c9636/backupFabrics/Azure/operationResults/3555a3e9-8ec8-4c89-aafd-327ad42f9f6b?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.RecoveryServices/vaults/PSTestRSVd78c9636/backupFabrics/Azure/operationsStatus/3555a3e9-8ec8-4c89-aafd-327ad42f9f6b?api-version=2019-05-13-preview" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "95b48e09-5f37-47a2-89b1-4c8da692af3d" + ], + "x-ms-client-request-id": [ + "e64c6597-2358-455a-877b-fcfa09fbdbf9", + "e64c6597-2358-455a-877b-fcfa09fbdbf9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "95b48e09-5f37-47a2-89b1-4c8da692af3d" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220517T043930Z:95b48e09-5f37-47a2-89b1-4c8da692af3d" + ], + "Date": [ + "Tue, 17 May 2022 04:39:29 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.RecoveryServices/vaults/PSTestRSVd78c9636/backupFabrics/Azure/operationResults/3555a3e9-8ec8-4c89-aafd-327ad42f9f6b?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZDc4Yzk2MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZkNzhjOTYzNi9iYWNrdXBGYWJyaWNzL0F6dXJlL29wZXJhdGlvblJlc3VsdHMvMzU1NWEzZTktOGVjOC00Yzg5LWFhZmQtMzI3YWQ0MmY5ZjZiP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e64c6597-2358-455a-877b-fcfa09fbdbf9" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.RecoveryServices/vaults/PSTestRSVd78c9636/backupFabrics/Azure/operationResults/3555a3e9-8ec8-4c89-aafd-327ad42f9f6b?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "2bd6c30e-82e5-4305-9e4a-f939f0b1e516" + ], + "x-ms-client-request-id": [ + "e64c6597-2358-455a-877b-fcfa09fbdbf9", + "e64c6597-2358-455a-877b-fcfa09fbdbf9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "149" + ], + "x-ms-correlation-request-id": [ + "2bd6c30e-82e5-4305-9e4a-f939f0b1e516" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220517T043930Z:2bd6c30e-82e5-4305-9e4a-f939f0b1e516" + ], + "Date": [ + "Tue, 17 May 2022 04:39:30 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.RecoveryServices/vaults/PSTestRSVd78c9636/backupFabrics/Azure/operationResults/3555a3e9-8ec8-4c89-aafd-327ad42f9f6b?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZDc4Yzk2MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZkNzhjOTYzNi9iYWNrdXBGYWJyaWNzL0F6dXJlL29wZXJhdGlvblJlc3VsdHMvMzU1NWEzZTktOGVjOC00Yzg5LWFhZmQtMzI3YWQ0MmY5ZjZiP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e64c6597-2358-455a-877b-fcfa09fbdbf9" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.RecoveryServices/vaults/PSTestRSVd78c9636/backupFabrics/Azure/operationResults/3555a3e9-8ec8-4c89-aafd-327ad42f9f6b?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "a89bcb46-cba2-40e5-93cd-909daad43930" + ], + "x-ms-client-request-id": [ + "e64c6597-2358-455a-877b-fcfa09fbdbf9", + "e64c6597-2358-455a-877b-fcfa09fbdbf9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "148" + ], + "x-ms-correlation-request-id": [ + "a89bcb46-cba2-40e5-93cd-909daad43930" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220517T043936Z:a89bcb46-cba2-40e5-93cd-909daad43930" + ], + "Date": [ + "Tue, 17 May 2022 04:39:35 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.RecoveryServices/vaults/PSTestRSVd78c9636/backupFabrics/Azure/operationResults/3555a3e9-8ec8-4c89-aafd-327ad42f9f6b?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZDc4Yzk2MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZkNzhjOTYzNi9iYWNrdXBGYWJyaWNzL0F6dXJlL29wZXJhdGlvblJlc3VsdHMvMzU1NWEzZTktOGVjOC00Yzg5LWFhZmQtMzI3YWQ0MmY5ZjZiP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e64c6597-2358-455a-877b-fcfa09fbdbf9" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "1d472cca-d646-4926-8b64-027241fbd468" + ], + "x-ms-client-request-id": [ + "e64c6597-2358-455a-877b-fcfa09fbdbf9", + "e64c6597-2358-455a-877b-fcfa09fbdbf9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "147" + ], + "x-ms-correlation-request-id": [ + "1d472cca-d646-4926-8b64-027241fbd468" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220517T043941Z:1d472cca-d646-4926-8b64-027241fbd468" + ], + "Date": [ + "Tue, 17 May 2022 04:39:41 GMT" + ] + }, + "ResponseBody": "", + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.RecoveryServices/vaults/PSTestRSVd78c9636/backupFabrics/Azure/operationResults/3555a3e9-8ec8-4c89-aafd-327ad42f9f6b?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZDc4Yzk2MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZkNzhjOTYzNi9iYWNrdXBGYWJyaWNzL0F6dXJlL29wZXJhdGlvblJlc3VsdHMvMzU1NWEzZTktOGVjOC00Yzg5LWFhZmQtMzI3YWQ0MmY5ZjZiP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e64c6597-2358-455a-877b-fcfa09fbdbf9" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "96f45504-71e3-47c5-8f7b-251ed250d41b" + ], + "x-ms-client-request-id": [ + "e64c6597-2358-455a-877b-fcfa09fbdbf9", + "e64c6597-2358-455a-877b-fcfa09fbdbf9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "146" + ], + "x-ms-correlation-request-id": [ + "96f45504-71e3-47c5-8f7b-251ed250d41b" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220517T043942Z:96f45504-71e3-47c5-8f7b-251ed250d41b" + ], + "Date": [ + "Tue, 17 May 2022 04:39:41 GMT" + ] + }, + "ResponseBody": "", + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.RecoveryServices/vaults/PSTestRSVd78c9636/backupFabrics/Azure/protectionContainers/IaasVMContainer%3Biaasvmcontainerv2%3Bpstestrgd78c9636%3Bpstestvmd78c92/protectedItems/vm%3Biaasvmcontainerv2%3Bpstestrgd78c9636%3Bpstestvmd78c92?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZDc4Yzk2MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZkNzhjOTYzNi9iYWNrdXBGYWJyaWNzL0F6dXJlL3Byb3RlY3Rpb25Db250YWluZXJzL0lhYXNWTUNvbnRhaW5lciUzQmlhYXN2bWNvbnRhaW5lcnYyJTNCcHN0ZXN0cmdkNzhjOTYzNiUzQnBzdGVzdHZtZDc4YzkyL3Byb3RlY3RlZEl0ZW1zL3ZtJTNCaWFhc3ZtY29udGFpbmVydjIlM0Jwc3Rlc3RyZ2Q3OGM5NjM2JTNCcHN0ZXN0dm1kNzhjOTI/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"protectedItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"sourceResourceId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.Compute/virtualMachines/PSTestVMd78c92\",\r\n \"policyId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.RecoveryServices/vaults/PSTestRSVd78c9636/backupPolicies/DefaultPolicy\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e64c6597-2358-455a-877b-fcfa09fbdbf9" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "456" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.RecoveryServices/vaults/PSTestRSVd78c9636/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrgd78c9636;pstestvmd78c92/protectedItems/vm;iaasvmcontainerv2;pstestrgd78c9636;pstestvmd78c92/operationResults/c4cdd0d4-f4fc-41b6-bfe6-7bb328f5f11f?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.RecoveryServices/vaults/PSTestRSVd78c9636/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrgd78c9636;pstestvmd78c92/protectedItems/vm;iaasvmcontainerv2;pstestrgd78c9636;pstestvmd78c92/operationsStatus/c4cdd0d4-f4fc-41b6-bfe6-7bb328f5f11f?api-version=2022-02-01" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "b6885f47-e0e4-4843-a845-5aaf1f048b85" + ], + "x-ms-client-request-id": [ + "e64c6597-2358-455a-877b-fcfa09fbdbf9", + "e64c6597-2358-455a-877b-fcfa09fbdbf9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "b6885f47-e0e4-4843-a845-5aaf1f048b85" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220517T043943Z:b6885f47-e0e4-4843-a845-5aaf1f048b85" + ], + "Date": [ + "Tue, 17 May 2022 04:39:43 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.RecoveryServices/vaults/PSTestRSVd78c9636/backupOperations/c4cdd0d4-f4fc-41b6-bfe6-7bb328f5f11f?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZDc4Yzk2MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZkNzhjOTYzNi9iYWNrdXBPcGVyYXRpb25zL2M0Y2RkMGQ0LWY0ZmMtNDFiNi1iZmU2LTdiYjMyOGY1ZjExZj9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e64c6597-2358-455a-877b-fcfa09fbdbf9" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "362933c1-5d16-469b-ad01-ec840168d39b" + ], + "x-ms-client-request-id": [ + "e64c6597-2358-455a-877b-fcfa09fbdbf9", + "e64c6597-2358-455a-877b-fcfa09fbdbf9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "149" + ], + "x-ms-correlation-request-id": [ + "362933c1-5d16-469b-ad01-ec840168d39b" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220517T043944Z:362933c1-5d16-469b-ad01-ec840168d39b" + ], + "Date": [ + "Tue, 17 May 2022 04:39:43 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"c4cdd0d4-f4fc-41b6-bfe6-7bb328f5f11f\",\r\n \"name\": \"c4cdd0d4-f4fc-41b6-bfe6-7bb328f5f11f\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T04:39:43.4052189Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.RecoveryServices/vaults/PSTestRSVd78c9636/backupOperations/c4cdd0d4-f4fc-41b6-bfe6-7bb328f5f11f?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZDc4Yzk2MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZkNzhjOTYzNi9iYWNrdXBPcGVyYXRpb25zL2M0Y2RkMGQ0LWY0ZmMtNDFiNi1iZmU2LTdiYjMyOGY1ZjExZj9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e64c6597-2358-455a-877b-fcfa09fbdbf9" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "cad639ff-f077-4131-a72d-616dac79d29e" + ], + "x-ms-client-request-id": [ + "e64c6597-2358-455a-877b-fcfa09fbdbf9", + "e64c6597-2358-455a-877b-fcfa09fbdbf9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "148" + ], + "x-ms-correlation-request-id": [ + "cad639ff-f077-4131-a72d-616dac79d29e" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220517T043949Z:cad639ff-f077-4131-a72d-616dac79d29e" + ], + "Date": [ + "Tue, 17 May 2022 04:39:49 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"c4cdd0d4-f4fc-41b6-bfe6-7bb328f5f11f\",\r\n \"name\": \"c4cdd0d4-f4fc-41b6-bfe6-7bb328f5f11f\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T04:39:43.4052189Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.RecoveryServices/vaults/PSTestRSVd78c9636/backupOperations/c4cdd0d4-f4fc-41b6-bfe6-7bb328f5f11f?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZDc4Yzk2MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZkNzhjOTYzNi9iYWNrdXBPcGVyYXRpb25zL2M0Y2RkMGQ0LWY0ZmMtNDFiNi1iZmU2LTdiYjMyOGY1ZjExZj9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e64c6597-2358-455a-877b-fcfa09fbdbf9" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "47163bdb-cb46-40ea-bffa-90ddc9b60697" + ], + "x-ms-client-request-id": [ + "e64c6597-2358-455a-877b-fcfa09fbdbf9", + "e64c6597-2358-455a-877b-fcfa09fbdbf9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "147" + ], + "x-ms-correlation-request-id": [ + "47163bdb-cb46-40ea-bffa-90ddc9b60697" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220517T043954Z:47163bdb-cb46-40ea-bffa-90ddc9b60697" + ], + "Date": [ + "Tue, 17 May 2022 04:39:54 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"c4cdd0d4-f4fc-41b6-bfe6-7bb328f5f11f\",\r\n \"name\": \"c4cdd0d4-f4fc-41b6-bfe6-7bb328f5f11f\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T04:39:43.4052189Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.RecoveryServices/vaults/PSTestRSVd78c9636/backupOperations/c4cdd0d4-f4fc-41b6-bfe6-7bb328f5f11f?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZDc4Yzk2MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZkNzhjOTYzNi9iYWNrdXBPcGVyYXRpb25zL2M0Y2RkMGQ0LWY0ZmMtNDFiNi1iZmU2LTdiYjMyOGY1ZjExZj9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e64c6597-2358-455a-877b-fcfa09fbdbf9" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "10c64518-1f3b-423f-beec-d29b8fb31c0d" + ], + "x-ms-client-request-id": [ + "e64c6597-2358-455a-877b-fcfa09fbdbf9", + "e64c6597-2358-455a-877b-fcfa09fbdbf9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "146" + ], + "x-ms-correlation-request-id": [ + "10c64518-1f3b-423f-beec-d29b8fb31c0d" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220517T044000Z:10c64518-1f3b-423f-beec-d29b8fb31c0d" + ], + "Date": [ + "Tue, 17 May 2022 04:39:59 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"c4cdd0d4-f4fc-41b6-bfe6-7bb328f5f11f\",\r\n \"name\": \"c4cdd0d4-f4fc-41b6-bfe6-7bb328f5f11f\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T04:39:43.4052189Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.RecoveryServices/vaults/PSTestRSVd78c9636/backupOperations/c4cdd0d4-f4fc-41b6-bfe6-7bb328f5f11f?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZDc4Yzk2MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZkNzhjOTYzNi9iYWNrdXBPcGVyYXRpb25zL2M0Y2RkMGQ0LWY0ZmMtNDFiNi1iZmU2LTdiYjMyOGY1ZjExZj9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e64c6597-2358-455a-877b-fcfa09fbdbf9" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "02691824-f23d-4c49-b9d1-4a97530d2bec" + ], + "x-ms-client-request-id": [ + "e64c6597-2358-455a-877b-fcfa09fbdbf9", + "e64c6597-2358-455a-877b-fcfa09fbdbf9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "145" + ], + "x-ms-correlation-request-id": [ + "02691824-f23d-4c49-b9d1-4a97530d2bec" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220517T044005Z:02691824-f23d-4c49-b9d1-4a97530d2bec" + ], + "Date": [ + "Tue, 17 May 2022 04:40:04 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"c4cdd0d4-f4fc-41b6-bfe6-7bb328f5f11f\",\r\n \"name\": \"c4cdd0d4-f4fc-41b6-bfe6-7bb328f5f11f\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T04:39:43.4052189Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.RecoveryServices/vaults/PSTestRSVd78c9636/backupOperations/c4cdd0d4-f4fc-41b6-bfe6-7bb328f5f11f?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZDc4Yzk2MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZkNzhjOTYzNi9iYWNrdXBPcGVyYXRpb25zL2M0Y2RkMGQ0LWY0ZmMtNDFiNi1iZmU2LTdiYjMyOGY1ZjExZj9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e64c6597-2358-455a-877b-fcfa09fbdbf9" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "032c61b6-1f4f-4818-99a7-7f734534586e" + ], + "x-ms-client-request-id": [ + "e64c6597-2358-455a-877b-fcfa09fbdbf9", + "e64c6597-2358-455a-877b-fcfa09fbdbf9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "144" + ], + "x-ms-correlation-request-id": [ + "032c61b6-1f4f-4818-99a7-7f734534586e" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220517T044011Z:032c61b6-1f4f-4818-99a7-7f734534586e" + ], + "Date": [ + "Tue, 17 May 2022 04:40:11 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"c4cdd0d4-f4fc-41b6-bfe6-7bb328f5f11f\",\r\n \"name\": \"c4cdd0d4-f4fc-41b6-bfe6-7bb328f5f11f\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T04:39:43.4052189Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.RecoveryServices/vaults/PSTestRSVd78c9636/backupOperations/c4cdd0d4-f4fc-41b6-bfe6-7bb328f5f11f?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZDc4Yzk2MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZkNzhjOTYzNi9iYWNrdXBPcGVyYXRpb25zL2M0Y2RkMGQ0LWY0ZmMtNDFiNi1iZmU2LTdiYjMyOGY1ZjExZj9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e64c6597-2358-455a-877b-fcfa09fbdbf9" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "a7e39e23-df49-4609-a8fe-de64c7255f8a" + ], + "x-ms-client-request-id": [ + "e64c6597-2358-455a-877b-fcfa09fbdbf9", + "e64c6597-2358-455a-877b-fcfa09fbdbf9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "143" + ], + "x-ms-correlation-request-id": [ + "a7e39e23-df49-4609-a8fe-de64c7255f8a" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220517T044016Z:a7e39e23-df49-4609-a8fe-de64c7255f8a" + ], + "Date": [ + "Tue, 17 May 2022 04:40:16 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"c4cdd0d4-f4fc-41b6-bfe6-7bb328f5f11f\",\r\n \"name\": \"c4cdd0d4-f4fc-41b6-bfe6-7bb328f5f11f\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T04:39:43.4052189Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.RecoveryServices/vaults/PSTestRSVd78c9636/backupOperations/c4cdd0d4-f4fc-41b6-bfe6-7bb328f5f11f?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZDc4Yzk2MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZkNzhjOTYzNi9iYWNrdXBPcGVyYXRpb25zL2M0Y2RkMGQ0LWY0ZmMtNDFiNi1iZmU2LTdiYjMyOGY1ZjExZj9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e64c6597-2358-455a-877b-fcfa09fbdbf9" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "c2184367-8d84-4432-81a0-8af58e0ecc13" + ], + "x-ms-client-request-id": [ + "e64c6597-2358-455a-877b-fcfa09fbdbf9", + "e64c6597-2358-455a-877b-fcfa09fbdbf9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "142" + ], + "x-ms-correlation-request-id": [ + "c2184367-8d84-4432-81a0-8af58e0ecc13" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220517T044021Z:c2184367-8d84-4432-81a0-8af58e0ecc13" + ], + "Date": [ + "Tue, 17 May 2022 04:40:21 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"c4cdd0d4-f4fc-41b6-bfe6-7bb328f5f11f\",\r\n \"name\": \"c4cdd0d4-f4fc-41b6-bfe6-7bb328f5f11f\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T04:39:43.4052189Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.RecoveryServices/vaults/PSTestRSVd78c9636/backupOperations/c4cdd0d4-f4fc-41b6-bfe6-7bb328f5f11f?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZDc4Yzk2MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZkNzhjOTYzNi9iYWNrdXBPcGVyYXRpb25zL2M0Y2RkMGQ0LWY0ZmMtNDFiNi1iZmU2LTdiYjMyOGY1ZjExZj9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e64c6597-2358-455a-877b-fcfa09fbdbf9" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "2e3ec01a-1bdf-44be-918e-d8fc26810225" + ], + "x-ms-client-request-id": [ + "e64c6597-2358-455a-877b-fcfa09fbdbf9", + "e64c6597-2358-455a-877b-fcfa09fbdbf9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "141" + ], + "x-ms-correlation-request-id": [ + "2e3ec01a-1bdf-44be-918e-d8fc26810225" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220517T044027Z:2e3ec01a-1bdf-44be-918e-d8fc26810225" + ], + "Date": [ + "Tue, 17 May 2022 04:40:26 GMT" + ], + "Content-Length": [ + "304" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"c4cdd0d4-f4fc-41b6-bfe6-7bb328f5f11f\",\r\n \"name\": \"c4cdd0d4-f4fc-41b6-bfe6-7bb328f5f11f\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-05-17T04:39:43.4052189Z\",\r\n \"endTime\": \"2022-05-17T04:39:43.4052189Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"3c8b6452-06e1-4a64-9686-1adf92f335a2\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.RecoveryServices/vaults/PSTestRSVd78c9636/backupOperations/c4cdd0d4-f4fc-41b6-bfe6-7bb328f5f11f?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZDc4Yzk2MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZkNzhjOTYzNi9iYWNrdXBPcGVyYXRpb25zL2M0Y2RkMGQ0LWY0ZmMtNDFiNi1iZmU2LTdiYjMyOGY1ZjExZj9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e64c6597-2358-455a-877b-fcfa09fbdbf9" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "fd7d8037-344c-4173-a4f3-81201a21e46f" + ], + "x-ms-client-request-id": [ + "e64c6597-2358-455a-877b-fcfa09fbdbf9", + "e64c6597-2358-455a-877b-fcfa09fbdbf9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "140" + ], + "x-ms-correlation-request-id": [ + "fd7d8037-344c-4173-a4f3-81201a21e46f" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220517T044027Z:fd7d8037-344c-4173-a4f3-81201a21e46f" + ], + "Date": [ + "Tue, 17 May 2022 04:40:26 GMT" + ], + "Content-Length": [ + "304" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"c4cdd0d4-f4fc-41b6-bfe6-7bb328f5f11f\",\r\n \"name\": \"c4cdd0d4-f4fc-41b6-bfe6-7bb328f5f11f\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-05-17T04:39:43.4052189Z\",\r\n \"endTime\": \"2022-05-17T04:39:43.4052189Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"3c8b6452-06e1-4a64-9686-1adf92f335a2\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.RecoveryServices/vaults/PSTestRSVd78c9636/backupJobs/3c8b6452-06e1-4a64-9686-1adf92f335a2?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZDc4Yzk2MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZkNzhjOTYzNi9iYWNrdXBKb2JzLzNjOGI2NDUyLTA2ZTEtNGE2NC05Njg2LTFhZGY5MmYzMzVhMj9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e64c6597-2358-455a-877b-fcfa09fbdbf9" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.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": [ + "54afab43-2a8c-4569-9315-1738eb12875f" + ], + "x-ms-client-request-id": [ + "e64c6597-2358-455a-877b-fcfa09fbdbf9", + "e64c6597-2358-455a-877b-fcfa09fbdbf9" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "149" + ], + "x-ms-correlation-request-id": [ + "54afab43-2a8c-4569-9315-1738eb12875f" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220517T044028Z:54afab43-2a8c-4569-9315-1738eb12875f" + ], + "Date": [ + "Tue, 17 May 2022 04:40:28 GMT" + ], + "Content-Length": [ + "840" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.RecoveryServices/vaults/PSTestRSVd78c9636/backupJobs/3c8b6452-06e1-4a64-9686-1adf92f335a2\",\r\n \"name\": \"3c8b6452-06e1-4a64-9686-1adf92f335a2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgd78c9636;pstestvmd78c92\",\r\n \"duration\": \"PT41.1855054S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvmd78c92\",\r\n \"Policy Name\": \"DefaultPolicy\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvmd78c92\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"ConfigureBackup\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-05-17T04:39:43.4052189Z\",\r\n \"endTime\": \"2022-05-17T04:40:24.5907243Z\",\r\n \"activityId\": \"e64c6597-2358-455a-877b-fcfa09fbdbf9\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.RecoveryServices/vaults/PSTestRSVd78c9636/backupJobs/3c8b6452-06e1-4a64-9686-1adf92f335a2?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZDc4Yzk2MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZkNzhjOTYzNi9iYWNrdXBKb2JzLzNjOGI2NDUyLTA2ZTEtNGE2NC05Njg2LTFhZGY5MmYzMzVhMj9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f4862b02-4971-45de-8b0d-8fe03f520b0a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.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": [ + "578f9143-4b43-4c36-a814-d38f4cb7f3a3" + ], + "x-ms-client-request-id": [ + "f4862b02-4971-45de-8b0d-8fe03f520b0a", + "f4862b02-4971-45de-8b0d-8fe03f520b0a" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "147" + ], + "x-ms-correlation-request-id": [ + "578f9143-4b43-4c36-a814-d38f4cb7f3a3" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220517T044030Z:578f9143-4b43-4c36-a814-d38f4cb7f3a3" + ], + "Date": [ + "Tue, 17 May 2022 04:40:30 GMT" + ], + "Content-Length": [ + "840" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.RecoveryServices/vaults/PSTestRSVd78c9636/backupJobs/3c8b6452-06e1-4a64-9686-1adf92f335a2\",\r\n \"name\": \"3c8b6452-06e1-4a64-9686-1adf92f335a2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgd78c9636;pstestvmd78c92\",\r\n \"duration\": \"PT41.1855054S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvmd78c92\",\r\n \"Policy Name\": \"DefaultPolicy\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvmd78c92\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"ConfigureBackup\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-05-17T04:39:43.4052189Z\",\r\n \"endTime\": \"2022-05-17T04:40:24.5907243Z\",\r\n \"activityId\": \"e64c6597-2358-455a-877b-fcfa09fbdbf9\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.RecoveryServices/vaults/PSTestRSVd78c9636/backupJobs/3c8b6452-06e1-4a64-9686-1adf92f335a2?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZDc4Yzk2MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZkNzhjOTYzNi9iYWNrdXBKb2JzLzNjOGI2NDUyLTA2ZTEtNGE2NC05Njg2LTFhZGY5MmYzMzVhMj9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5db6e98c-5795-41f1-8386-aff0411171e4" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.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": [ + "5f5cb4ac-6a2c-4e64-b97c-02ff16839367" + ], + "x-ms-client-request-id": [ + "5db6e98c-5795-41f1-8386-aff0411171e4", + "5db6e98c-5795-41f1-8386-aff0411171e4" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "146" + ], + "x-ms-correlation-request-id": [ + "5f5cb4ac-6a2c-4e64-b97c-02ff16839367" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220517T044030Z:5f5cb4ac-6a2c-4e64-b97c-02ff16839367" + ], + "Date": [ + "Tue, 17 May 2022 04:40:30 GMT" + ], + "Content-Length": [ + "840" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.RecoveryServices/vaults/PSTestRSVd78c9636/backupJobs/3c8b6452-06e1-4a64-9686-1adf92f335a2\",\r\n \"name\": \"3c8b6452-06e1-4a64-9686-1adf92f335a2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgd78c9636;pstestvmd78c92\",\r\n \"duration\": \"PT41.1855054S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvmd78c92\",\r\n \"Policy Name\": \"DefaultPolicy\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvmd78c92\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"ConfigureBackup\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-05-17T04:39:43.4052189Z\",\r\n \"endTime\": \"2022-05-17T04:40:24.5907243Z\",\r\n \"activityId\": \"e64c6597-2358-455a-877b-fcfa09fbdbf9\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.RecoveryServices/vaults/PSTestRSVd78c9636/backupFabrics/Azure/protectionContainers/IaasVMContainer%3Biaasvmcontainerv2%3Bpstestrgd78c9636%3Bpstestvmd78c92/protectedItems/VM%3Biaasvmcontainerv2%3Bpstestrgd78c9636%3Bpstestvmd78c92?$filter=expand%20eq%20'extendedinfo'&api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZDc4Yzk2MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZkNzhjOTYzNi9iYWNrdXBGYWJyaWNzL0F6dXJlL3Byb3RlY3Rpb25Db250YWluZXJzL0lhYXNWTUNvbnRhaW5lciUzQmlhYXN2bWNvbnRhaW5lcnYyJTNCcHN0ZXN0cmdkNzhjOTYzNiUzQnBzdGVzdHZtZDc4YzkyL3Byb3RlY3RlZEl0ZW1zL1ZNJTNCaWFhc3ZtY29udGFpbmVydjIlM0Jwc3Rlc3RyZ2Q3OGM5NjM2JTNCcHN0ZXN0dm1kNzhjOTI/JGZpbHRlcj1leHBhbmQlMjBlcSUyMCdleHRlbmRlZGluZm8nJmFwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "dd18da8b-6140-4efe-a6a9-10692bbab86a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "4a4f7baf-9d01-43c9-96c1-873b8ebcf5ed" + ], + "x-ms-client-request-id": [ + "dd18da8b-6140-4efe-a6a9-10692bbab86a", + "dd18da8b-6140-4efe-a6a9-10692bbab86a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "149" + ], + "x-ms-correlation-request-id": [ + "4a4f7baf-9d01-43c9-96c1-873b8ebcf5ed" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220517T044029Z:4a4f7baf-9d01-43c9-96c1-873b8ebcf5ed" + ], + "Date": [ + "Tue, 17 May 2022 04:40:29 GMT" + ], + "Content-Length": [ + "1545" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.RecoveryServices/vaults/PSTestRSVd78c9636/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrgd78c9636;pstestvmd78c92/protectedItems/VM;iaasvmcontainerv2;pstestrgd78c9636;pstestvmd78c92\",\r\n \"name\": \"VM;iaasvmcontainerv2;pstestrgd78c9636;pstestvmd78c92\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems\",\r\n \"properties\": {\r\n \"kpisHealths\": {},\r\n \"friendlyName\": \"PSTestVMd78c92\",\r\n \"virtualMachineId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.Compute/virtualMachines/PSTestVMd78c92\",\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\": \"297353200\",\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;pstestrgd78c9636;pstestvmd78c92\",\r\n \"sourceResourceId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.Compute/virtualMachines/PSTestVMd78c92\",\r\n \"policyId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.RecoveryServices/vaults/PSTestRSVd78c9636/backupPolicies/DefaultPolicy\",\r\n \"policyName\": \"DefaultPolicy\",\r\n \"isArchiveEnabled\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.RecoveryServices/vaults/PSTestRSVd78c9636/backupJobs?$filter=operation%20eq%20''%20and%20startTime%20eq%20'2022-05-16%2004:35:03%20AM'%20and%20endTime%20eq%20'2022-05-17%2004:40:30%20AM'&api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZDc4Yzk2MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZkNzhjOTYzNi9iYWNrdXBKb2JzPyRmaWx0ZXI9b3BlcmF0aW9uJTIwZXElMjAnJyUyMGFuZCUyMHN0YXJ0VGltZSUyMGVxJTIwJzIwMjItMDUtMTYlMjAwNDozNTowMyUyMEFNJyUyMGFuZCUyMGVuZFRpbWUlMjBlcSUyMCcyMDIyLTA1LTE3JTIwMDQ6NDA6MzAlMjBBTScmYXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d8942e93-0893-442f-af29-5953183fb068" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.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": [ + "e179b8a6-0569-4738-bc41-280603fd2b2a" + ], + "x-ms-client-request-id": [ + "d8942e93-0893-442f-af29-5953183fb068", + "d8942e93-0893-442f-af29-5953183fb068" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "148" + ], + "x-ms-correlation-request-id": [ + "e179b8a6-0569-4738-bc41-280603fd2b2a" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220517T044029Z:e179b8a6-0569-4738-bc41-280603fd2b2a" + ], + "Date": [ + "Tue, 17 May 2022 04:40:29 GMT" + ], + "Content-Length": [ + "1482" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.RecoveryServices/vaults/PSTestRSVd78c9636/backupJobs/3c8b6452-06e1-4a64-9686-1adf92f335a2\",\r\n \"name\": \"3c8b6452-06e1-4a64-9686-1adf92f335a2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgd78c9636;pstestvmd78c92\",\r\n \"duration\": \"PT41.1855054S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"entityFriendlyName\": \"pstestvmd78c92\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"ConfigureBackup\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-05-17T04:39:43.4052189Z\",\r\n \"endTime\": \"2022-05-17T04:40:24.5907243Z\",\r\n \"activityId\": \"e64c6597-2358-455a-877b-fcfa09fbdbf9\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.RecoveryServices/vaults/PSTestRSVd78c9636/backupJobs/9df9ed30-d3bd-47b4-bd83-916736041451\",\r\n \"name\": \"9df9ed30-d3bd-47b4-bd83-916736041451\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgd78c9636;pstestvmd78c91\",\r\n \"duration\": \"PT51.5377427S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"entityFriendlyName\": \"pstestvmd78c91\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"ConfigureBackup\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-05-17T04:34:05.573523Z\",\r\n \"endTime\": \"2022-05-17T04:34:57.1112657Z\",\r\n \"activityId\": \"716852de-fe05-4012-b659-d3c2944cd351\"\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.RecoveryServices/vaults/PSTestRSVd78c9636/backupJobs?$filter=status%20eq%20'Completed'%20and%20operation%20eq%20''%20and%20startTime%20eq%20'2022-05-16%2004:35:03%20AM'%20and%20endTime%20eq%20'2022-05-17%2004:40:30%20AM'&api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZDc4Yzk2MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZkNzhjOTYzNi9iYWNrdXBKb2JzPyRmaWx0ZXI9c3RhdHVzJTIwZXElMjAnQ29tcGxldGVkJyUyMGFuZCUyMG9wZXJhdGlvbiUyMGVxJTIwJyclMjBhbmQlMjBzdGFydFRpbWUlMjBlcSUyMCcyMDIyLTA1LTE2JTIwMDQ6MzU6MDMlMjBBTSclMjBhbmQlMjBlbmRUaW1lJTIwZXElMjAnMjAyMi0wNS0xNyUyMDA0OjQwOjMwJTIwQU0nJmFwaS12ZXJzaW9uPTIwMjItMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9570cbfb-2a3b-442c-a782-690b7daf8d54" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.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": [ + "15148166-37e6-4739-b673-d09d5f3b56bd" + ], + "x-ms-client-request-id": [ + "9570cbfb-2a3b-442c-a782-690b7daf8d54", + "9570cbfb-2a3b-442c-a782-690b7daf8d54" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "143" + ], + "x-ms-correlation-request-id": [ + "15148166-37e6-4739-b673-d09d5f3b56bd" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220517T044032Z:15148166-37e6-4739-b673-d09d5f3b56bd" + ], + "Date": [ + "Tue, 17 May 2022 04:40:31 GMT" + ], + "Content-Length": [ + "1482" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.RecoveryServices/vaults/PSTestRSVd78c9636/backupJobs/3c8b6452-06e1-4a64-9686-1adf92f335a2\",\r\n \"name\": \"3c8b6452-06e1-4a64-9686-1adf92f335a2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgd78c9636;pstestvmd78c92\",\r\n \"duration\": \"PT41.1855054S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"entityFriendlyName\": \"pstestvmd78c92\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"ConfigureBackup\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-05-17T04:39:43.4052189Z\",\r\n \"endTime\": \"2022-05-17T04:40:24.5907243Z\",\r\n \"activityId\": \"e64c6597-2358-455a-877b-fcfa09fbdbf9\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.RecoveryServices/vaults/PSTestRSVd78c9636/backupJobs/9df9ed30-d3bd-47b4-bd83-916736041451\",\r\n \"name\": \"9df9ed30-d3bd-47b4-bd83-916736041451\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgd78c9636;pstestvmd78c91\",\r\n \"duration\": \"PT51.5377427S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"entityFriendlyName\": \"pstestvmd78c91\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"ConfigureBackup\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-05-17T04:34:05.573523Z\",\r\n \"endTime\": \"2022-05-17T04:34:57.1112657Z\",\r\n \"activityId\": \"716852de-fe05-4012-b659-d3c2944cd351\"\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.RecoveryServices/vaults/PSTestRSVd78c9636/backupJobs?$filter=operation%20eq%20'ConfigureBackup'%20and%20startTime%20eq%20'2022-05-16%2004:35:03%20AM'%20and%20endTime%20eq%20'2022-05-17%2004:40:30%20AM'&api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZDc4Yzk2MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZkNzhjOTYzNi9iYWNrdXBKb2JzPyRmaWx0ZXI9b3BlcmF0aW9uJTIwZXElMjAnQ29uZmlndXJlQmFja3VwJyUyMGFuZCUyMHN0YXJ0VGltZSUyMGVxJTIwJzIwMjItMDUtMTYlMjAwNDozNTowMyUyMEFNJyUyMGFuZCUyMGVuZFRpbWUlMjBlcSUyMCcyMDIyLTA1LTE3JTIwMDQ6NDA6MzAlMjBBTScmYXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "320eed29-fc92-4b77-9df1-25c863fadb78" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.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": [ + "3f58a7be-86f8-4abe-aa3e-56785ab5d9a9" + ], + "x-ms-client-request-id": [ + "320eed29-fc92-4b77-9df1-25c863fadb78", + "320eed29-fc92-4b77-9df1-25c863fadb78" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "142" + ], + "x-ms-correlation-request-id": [ + "3f58a7be-86f8-4abe-aa3e-56785ab5d9a9" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220517T044032Z:3f58a7be-86f8-4abe-aa3e-56785ab5d9a9" + ], + "Date": [ + "Tue, 17 May 2022 04:40:32 GMT" + ], + "Content-Length": [ + "1482" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.RecoveryServices/vaults/PSTestRSVd78c9636/backupJobs/3c8b6452-06e1-4a64-9686-1adf92f335a2\",\r\n \"name\": \"3c8b6452-06e1-4a64-9686-1adf92f335a2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgd78c9636;pstestvmd78c92\",\r\n \"duration\": \"PT41.1855054S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"entityFriendlyName\": \"pstestvmd78c92\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"ConfigureBackup\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-05-17T04:39:43.4052189Z\",\r\n \"endTime\": \"2022-05-17T04:40:24.5907243Z\",\r\n \"activityId\": \"e64c6597-2358-455a-877b-fcfa09fbdbf9\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.RecoveryServices/vaults/PSTestRSVd78c9636/backupJobs/9df9ed30-d3bd-47b4-bd83-916736041451\",\r\n \"name\": \"9df9ed30-d3bd-47b4-bd83-916736041451\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgd78c9636;pstestvmd78c91\",\r\n \"duration\": \"PT51.5377427S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"entityFriendlyName\": \"pstestvmd78c91\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"ConfigureBackup\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-05-17T04:34:05.573523Z\",\r\n \"endTime\": \"2022-05-17T04:34:57.1112657Z\",\r\n \"activityId\": \"716852de-fe05-4012-b659-d3c2944cd351\"\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.RecoveryServices/vaults/PSTestRSVd78c9636/backupJobs?$filter=backupManagementType%20eq%20'AzureIaasVM'%20and%20operation%20eq%20''%20and%20startTime%20eq%20'2022-05-16%2004:35:03%20AM'%20and%20endTime%20eq%20'2022-05-17%2004:40:30%20AM'&api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZDc4Yzk2MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZkNzhjOTYzNi9iYWNrdXBKb2JzPyRmaWx0ZXI9YmFja3VwTWFuYWdlbWVudFR5cGUlMjBlcSUyMCdBenVyZUlhYXNWTSclMjBhbmQlMjBvcGVyYXRpb24lMjBlcSUyMCcnJTIwYW5kJTIwc3RhcnRUaW1lJTIwZXElMjAnMjAyMi0wNS0xNiUyMDA0OjM1OjAzJTIwQU0nJTIwYW5kJTIwZW5kVGltZSUyMGVxJTIwJzIwMjItMDUtMTclMjAwNDo0MDozMCUyMEFNJyZhcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "35d0d037-5a99-41e1-b5d5-5ef7a6dfa33d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.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": [ + "f4f1a7b8-6b38-4b67-b4e2-6ec994215a50" + ], + "x-ms-client-request-id": [ + "35d0d037-5a99-41e1-b5d5-5ef7a6dfa33d", + "35d0d037-5a99-41e1-b5d5-5ef7a6dfa33d" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "141" + ], + "x-ms-correlation-request-id": [ + "f4f1a7b8-6b38-4b67-b4e2-6ec994215a50" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220517T044032Z:f4f1a7b8-6b38-4b67-b4e2-6ec994215a50" + ], + "Date": [ + "Tue, 17 May 2022 04:40:32 GMT" + ], + "Content-Length": [ + "1482" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.RecoveryServices/vaults/PSTestRSVd78c9636/backupJobs/3c8b6452-06e1-4a64-9686-1adf92f335a2\",\r\n \"name\": \"3c8b6452-06e1-4a64-9686-1adf92f335a2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgd78c9636;pstestvmd78c92\",\r\n \"duration\": \"PT41.1855054S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"entityFriendlyName\": \"pstestvmd78c92\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"ConfigureBackup\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-05-17T04:39:43.4052189Z\",\r\n \"endTime\": \"2022-05-17T04:40:24.5907243Z\",\r\n \"activityId\": \"e64c6597-2358-455a-877b-fcfa09fbdbf9\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.RecoveryServices/vaults/PSTestRSVd78c9636/backupJobs/9df9ed30-d3bd-47b4-bd83-916736041451\",\r\n \"name\": \"9df9ed30-d3bd-47b4-bd83-916736041451\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgd78c9636;pstestvmd78c91\",\r\n \"duration\": \"PT51.5377427S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"entityFriendlyName\": \"pstestvmd78c91\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"ConfigureBackup\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-05-17T04:34:05.573523Z\",\r\n \"endTime\": \"2022-05-17T04:34:57.1112657Z\",\r\n \"activityId\": \"716852de-fe05-4012-b659-d3c2944cd351\"\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.RecoveryServices/vaults?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZDc4Yzk2MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cz9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4681fc0e-d06a-4d8a-881e-f9e805c09314" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesClient/4.3.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "42e26b9c-39b9-4e62-a95e-d42147691eb8" + ], + "x-ms-client-request-id": [ + "4681fc0e-d06a-4d8a-881e-f9e805c09314" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-correlation-request-id": [ + "42e26b9c-39b9-4e62-a95e-d42147691eb8" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220517T044033Z:42e26b9c-39b9-4e62-a95e-d42147691eb8" + ], + "Date": [ + "Tue, 17 May 2022 04:40:33 GMT" + ], + "Content-Length": [ + "530" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"PSTestRSVd78c9636\",\r\n \"etag\": \"W/\\\"datetime'2022-05-17T04%3A33%3A54.3809279Z'\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateEndpointStateForBackup\": \"None\",\r\n \"privateEndpointStateForSiteRecovery\": \"None\",\r\n \"networkSettings\": {\r\n \"publicNetworkAccess\": \"Enabled\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.RecoveryServices/vaults/PSTestRSVd78c9636\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.RecoveryServices/vaults/PSTestRSVd78c9636/backupProtectionContainers?$filter=backupManagementType%20eq%20'AzureIaasVM'%20and%20status%20eq%20'Registered'&api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZDc4Yzk2MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZkNzhjOTYzNi9iYWNrdXBQcm90ZWN0aW9uQ29udGFpbmVycz8kZmlsdGVyPWJhY2t1cE1hbmFnZW1lbnRUeXBlJTIwZXElMjAnQXp1cmVJYWFzVk0nJTIwYW5kJTIwc3RhdHVzJTIwZXElMjAnUmVnaXN0ZXJlZCcmYXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6080b202-fe3f-4ced-b035-b4187ce7ea8b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "121e6e56-a4ae-42f5-b620-4046291fd62e" + ], + "x-ms-client-request-id": [ + "6080b202-fe3f-4ced-b035-b4187ce7ea8b", + "6080b202-fe3f-4ced-b035-b4187ce7ea8b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "147" + ], + "x-ms-correlation-request-id": [ + "121e6e56-a4ae-42f5-b620-4046291fd62e" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220517T044034Z:121e6e56-a4ae-42f5-b620-4046291fd62e" + ], + "Date": [ + "Tue, 17 May 2022 04:40:34 GMT" + ], + "Content-Length": [ + "1817" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.RecoveryServices/vaults/PSTestRSVd78c9636/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrgd78c9636;pstestvmd78c91\",\r\n \"name\": \"IaasVMContainer;iaasvmcontainerv2;pstestrgd78c9636;pstestvmd78c91\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers\",\r\n \"properties\": {\r\n \"virtualMachineId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.Compute/virtualMachines/PSTestVMd78c91\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"resourceGroup\": \"PSTestRGd78c9636\",\r\n \"friendlyName\": \"PSTestVMd78c91\",\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 \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.RecoveryServices/vaults/PSTestRSVd78c9636/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrgd78c9636;pstestvmd78c92\",\r\n \"name\": \"IaasVMContainer;iaasvmcontainerv2;pstestrgd78c9636;pstestvmd78c92\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers\",\r\n \"properties\": {\r\n \"virtualMachineId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.Compute/virtualMachines/PSTestVMd78c92\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"resourceGroup\": \"PSTestRGd78c9636\",\r\n \"friendlyName\": \"PSTestVMd78c92\",\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/PSTestRGd78c9636/providers/Microsoft.RecoveryServices/vaults/PSTestRSVd78c9636/backupFabrics/Azure/protectionContainers/IaasVMContainer%3Biaasvmcontainerv2%3Bpstestrgd78c9636%3Bpstestvmd78c91/protectedItems/VM%3Biaasvmcontainerv2%3Bpstestrgd78c9636%3Bpstestvmd78c91/recoveryPoints?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZDc4Yzk2MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZkNzhjOTYzNi9iYWNrdXBGYWJyaWNzL0F6dXJlL3Byb3RlY3Rpb25Db250YWluZXJzL0lhYXNWTUNvbnRhaW5lciUzQmlhYXN2bWNvbnRhaW5lcnYyJTNCcHN0ZXN0cmdkNzhjOTYzNiUzQnBzdGVzdHZtZDc4YzkxL3Byb3RlY3RlZEl0ZW1zL1ZNJTNCaWFhc3ZtY29udGFpbmVydjIlM0Jwc3Rlc3RyZ2Q3OGM5NjM2JTNCcHN0ZXN0dm1kNzhjOTEvcmVjb3ZlcnlQb2ludHM/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c52fb9d5-92d4-4a3e-a2f1-48fc858932f7" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "13773897-8fc3-4888-959d-217cd6dde652" + ], + "x-ms-client-request-id": [ + "c52fb9d5-92d4-4a3e-a2f1-48fc858932f7", + "c52fb9d5-92d4-4a3e-a2f1-48fc858932f7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ - "e8130822-e4d4-46cb-a8f1-a3e54f6602a7" - ], "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "Microsoft-IIS/10.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11970" + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "149" ], "x-ms-correlation-request-id": [ - "a09ea23f-3e7c-4f6e-8102-e050aebb2e5b" + "13773897-8fc3-4888-959d-217cd6dde652" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T221952Z:a09ea23f-3e7c-4f6e-8102-e050aebb2e5b" - ], - "X-Content-Type-Options": [ - "nosniff" + "WESTINDIA:20220517T044035Z:13773897-8fc3-4888-959d-217cd6dde652" ], "Date": [ - "Wed, 23 Feb 2022 22:19:52 GMT" + "Tue, 17 May 2022 04:40:35 GMT" ], "Content-Length": [ - "485" + "12" ], "Content-Type": [ - "application/json; charset=utf-8" + "application/json" ], "Expires": [ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"BGInfo\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.Compute/virtualMachines/PSTestVM1584e2/extensions/BGInfo\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"southeastasia\",\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}", + "ResponseBody": "{\r\n \"value\": []\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.RecoveryServices/vaults/PSTestRSV1584e273/backupProtectionContainers?$filter=friendlyName%20eq%20'PSTestVM1584e2'%20and%20backupManagementType%20eq%20'AzureIaasVM'%20and%20status%20eq%20'Registered'&api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMTU4NGUyNzMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YxNTg0ZTI3My9iYWNrdXBQcm90ZWN0aW9uQ29udGFpbmVycz8kZmlsdGVyPWZyaWVuZGx5TmFtZSUyMGVxJTIwJ1BTVGVzdFZNMTU4NGUyJyUyMGFuZCUyMGJhY2t1cE1hbmFnZW1lbnRUeXBlJTIwZXElMjAnQXp1cmVJYWFzVk0nJTIwYW5kJTIwc3RhdHVzJTIwZXElMjAnUmVnaXN0ZXJlZCcmYXBpLXZlcnNpb249MjAyMS0xMC0wMQ==", - "RequestMethod": "GET", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.RecoveryServices/vaults/PSTestRSVd78c9636/backupFabrics/Azure/protectionContainers/IaasVMContainer%3Biaasvmcontainerv2%3Bpstestrgd78c9636%3Bpstestvmd78c91/protectedItems/VM%3Biaasvmcontainerv2%3Bpstestrgd78c9636%3Bpstestvmd78c91?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZDc4Yzk2MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZkNzhjOTYzNi9iYWNrdXBGYWJyaWNzL0F6dXJlL3Byb3RlY3Rpb25Db250YWluZXJzL0lhYXNWTUNvbnRhaW5lciUzQmlhYXN2bWNvbnRhaW5lcnYyJTNCcHN0ZXN0cmdkNzhjOTYzNiUzQnBzdGVzdHZtZDc4YzkxL3Byb3RlY3RlZEl0ZW1zL1ZNJTNCaWFhc3ZtY29udGFpbmVydjIlM0Jwc3Rlc3RyZ2Q3OGM5NjM2JTNCcHN0ZXN0dm1kNzhjOTE/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "18fcff9a-5a36-40a4-bd01-7238c2365caf" + "c52fb9d5-92d4-4a3e-a2f1-48fc858932f7" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -7134,67 +9726,70 @@ "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.RecoveryServices/vaults/PSTestRSVd78c9636/backupOperationResults/0ead3ee0-20e2-4b6a-a06a-54a5bbe12deb?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.RecoveryServices/vaults/PSTestRSVd78c9636/backupOperations/0ead3ee0-20e2-4b6a-a06a-54a5bbe12deb?api-version=2022-02-01" + ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "e0d7739d-5048-45bf-a1db-5ab92a7efd37" + "47b83802-f629-4c98-a941-c3c541e9a783" ], "x-ms-client-request-id": [ - "18fcff9a-5a36-40a4-bd01-7238c2365caf", - "18fcff9a-5a36-40a4-bd01-7238c2365caf" + "c52fb9d5-92d4-4a3e-a2f1-48fc858932f7", + "c52fb9d5-92d4-4a3e-a2f1-48fc858932f7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Server": [ - "Microsoft-IIS/10.0" - ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "149" + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" ], "x-ms-correlation-request-id": [ - "e0d7739d-5048-45bf-a1db-5ab92a7efd37" + "47b83802-f629-4c98-a941-c3c541e9a783" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T222017Z:e0d7739d-5048-45bf-a1db-5ab92a7efd37" + "WESTINDIA:20220517T044036Z:47b83802-f629-4c98-a941-c3c541e9a783" ], "Date": [ - "Wed, 23 Feb 2022 22:20:17 GMT" - ], - "Content-Length": [ - "12" - ], - "Content-Type": [ - "application/json" + "Tue, 17 May 2022 04:40:36 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, - "ResponseBody": "{\r\n \"value\": []\r\n}", - "StatusCode": 200 + "ResponseBody": "", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.RecoveryServices/vaults/PSTestRSV1584e273/backupProtectionContainers?$filter=friendlyName%20eq%20'PSTestVM1584e2'%20and%20backupManagementType%20eq%20'AzureIaasVM'%20and%20status%20eq%20'Registered'&api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMTU4NGUyNzMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YxNTg0ZTI3My9iYWNrdXBQcm90ZWN0aW9uQ29udGFpbmVycz8kZmlsdGVyPWZyaWVuZGx5TmFtZSUyMGVxJTIwJ1BTVGVzdFZNMTU4NGUyJyUyMGFuZCUyMGJhY2t1cE1hbmFnZW1lbnRUeXBlJTIwZXElMjAnQXp1cmVJYWFzVk0nJTIwYW5kJTIwc3RhdHVzJTIwZXElMjAnUmVnaXN0ZXJlZCcmYXBpLXZlcnNpb249MjAyMS0xMC0wMQ==", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.RecoveryServices/vaults/PSTestRSVd78c9636/backupOperations/0ead3ee0-20e2-4b6a-a06a-54a5bbe12deb?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZDc4Yzk2MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZkNzhjOTYzNi9iYWNrdXBPcGVyYXRpb25zLzBlYWQzZWUwLTIwZTItNGI2YS1hMDZhLTU0YTViYmUxMmRlYj9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3afc4a8c-0fab-447e-af24-1a5f203f4aaa" + "c52fb9d5-92d4-4a3e-a2f1-48fc858932f7" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -7208,11 +9803,11 @@ "nosniff" ], "x-ms-request-id": [ - "cf9df9e2-8793-495a-96dc-5fa32fca49dd" + "1e84b7a4-a83b-484a-8d7c-9b5fc19a4a69" ], "x-ms-client-request-id": [ - "3afc4a8c-0fab-447e-af24-1a5f203f4aaa", - "3afc4a8c-0fab-447e-af24-1a5f203f4aaa" + "c52fb9d5-92d4-4a3e-a2f1-48fc858932f7", + "c52fb9d5-92d4-4a3e-a2f1-48fc858932f7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -7224,19 +9819,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "148" + "139" ], "x-ms-correlation-request-id": [ - "cf9df9e2-8793-495a-96dc-5fa32fca49dd" + "1e84b7a4-a83b-484a-8d7c-9b5fc19a4a69" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T222115Z:cf9df9e2-8793-495a-96dc-5fa32fca49dd" + "WESTINDIA:20220517T044037Z:1e84b7a4-a83b-484a-8d7c-9b5fc19a4a69" ], "Date": [ - "Wed, 23 Feb 2022 22:21:14 GMT" + "Tue, 17 May 2022 04:40:36 GMT" ], "Content-Length": [ - "914" + "188" ], "Content-Type": [ "application/json" @@ -7245,26 +9840,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.RecoveryServices/vaults/PSTestRSV1584e273/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrg1584e273;pstestvm1584e2\",\r\n \"name\": \"IaasVMContainer;iaasvmcontainerv2;pstestrg1584e273;pstestvm1584e2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers\",\r\n \"properties\": {\r\n \"virtualMachineId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.Compute/virtualMachines/PSTestVM1584e2\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"resourceGroup\": \"PSTestRG1584e273\",\r\n \"friendlyName\": \"PSTestVM1584e2\",\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}", + "ResponseBody": "{\r\n \"id\": \"0ead3ee0-20e2-4b6a-a06a-54a5bbe12deb\",\r\n \"name\": \"0ead3ee0-20e2-4b6a-a06a-54a5bbe12deb\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T04:40:36.6101359Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.RecoveryServices/vaults/PSTestRSV1584e273/backupFabrics/Azure/refreshContainers?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMTU4NGUyNzMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YxNTg0ZTI3My9iYWNrdXBGYWJyaWNzL0F6dXJlL3JlZnJlc2hDb250YWluZXJzP2FwaS12ZXJzaW9uPTIwMjEtMTAtMDE=", - "RequestMethod": "POST", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.RecoveryServices/vaults/PSTestRSVd78c9636/backupOperations/0ead3ee0-20e2-4b6a-a06a-54a5bbe12deb?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZDc4Yzk2MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZkNzhjOTYzNi9iYWNrdXBPcGVyYXRpb25zLzBlYWQzZWUwLTIwZTItNGI2YS1hMDZhLTU0YTViYmUxMmRlYj9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f91fc061-ddb1-4aba-b2a4-aa3e14f5e43f" + "c52fb9d5-92d4-4a3e-a2f1-48fc858932f7" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -7274,70 +9869,67 @@ "Pragma": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.RecoveryServices/vaults/PSTestRSV1584e273/backupFabrics/Azure/operationResults/3ad93382-8ff3-40b6-b99c-6725cd182c9c?api-version=2021-10-01" - ], - "Retry-After": [ - "60" - ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.RecoveryServices/vaults/PSTestRSV1584e273/backupFabrics/Azure/operationsStatus/3ad93382-8ff3-40b6-b99c-6725cd182c9c?api-version=2019-05-13-preview" - ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "0637fae9-507f-4c19-ae53-9f6263bf03e9" + "e273d6a3-cb55-492c-898e-58cca5c1d871" ], "x-ms-client-request-id": [ - "f91fc061-ddb1-4aba-b2a4-aa3e14f5e43f", - "f91fc061-ddb1-4aba-b2a4-aa3e14f5e43f" + "c52fb9d5-92d4-4a3e-a2f1-48fc858932f7", + "c52fb9d5-92d4-4a3e-a2f1-48fc858932f7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-IIS/10.0" + ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "138" ], "x-ms-correlation-request-id": [ - "0637fae9-507f-4c19-ae53-9f6263bf03e9" + "e273d6a3-cb55-492c-898e-58cca5c1d871" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T222020Z:0637fae9-507f-4c19-ae53-9f6263bf03e9" + "WESTINDIA:20220517T044042Z:e273d6a3-cb55-492c-898e-58cca5c1d871" ], "Date": [ - "Wed, 23 Feb 2022 22:20:19 GMT" + "Tue, 17 May 2022 04:40:42 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, - "ResponseBody": "", - "StatusCode": 202 + "ResponseBody": "{\r\n \"id\": \"0ead3ee0-20e2-4b6a-a06a-54a5bbe12deb\",\r\n \"name\": \"0ead3ee0-20e2-4b6a-a06a-54a5bbe12deb\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T04:40:36.6101359Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.RecoveryServices/vaults/PSTestRSV1584e273/backupFabrics/Azure/operationResults/3ad93382-8ff3-40b6-b99c-6725cd182c9c?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMTU4NGUyNzMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YxNTg0ZTI3My9iYWNrdXBGYWJyaWNzL0F6dXJlL29wZXJhdGlvblJlc3VsdHMvM2FkOTMzODItOGZmMy00MGI2LWI5OWMtNjcyNWNkMTgyYzljP2FwaS12ZXJzaW9uPTIwMjEtMTAtMDE=", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.RecoveryServices/vaults/PSTestRSVd78c9636/backupOperations/0ead3ee0-20e2-4b6a-a06a-54a5bbe12deb?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZDc4Yzk2MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZkNzhjOTYzNi9iYWNrdXBPcGVyYXRpb25zLzBlYWQzZWUwLTIwZTItNGI2YS1hMDZhLTU0YTViYmUxMmRlYj9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f91fc061-ddb1-4aba-b2a4-aa3e14f5e43f" + "c52fb9d5-92d4-4a3e-a2f1-48fc858932f7" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -7347,67 +9939,67 @@ "Pragma": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.RecoveryServices/vaults/PSTestRSV1584e273/backupFabrics/Azure/operationResults/3ad93382-8ff3-40b6-b99c-6725cd182c9c?api-version=2021-10-01" - ], - "Retry-After": [ - "60" - ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "ee91f9d1-9546-4bb9-8536-72a934eb517f" + "7056a319-2cf4-4896-9fa7-f3fc08d245ab" ], "x-ms-client-request-id": [ - "f91fc061-ddb1-4aba-b2a4-aa3e14f5e43f", - "f91fc061-ddb1-4aba-b2a4-aa3e14f5e43f" + "c52fb9d5-92d4-4a3e-a2f1-48fc858932f7", + "c52fb9d5-92d4-4a3e-a2f1-48fc858932f7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-IIS/10.0" + ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "149" + "137" ], "x-ms-correlation-request-id": [ - "ee91f9d1-9546-4bb9-8536-72a934eb517f" + "7056a319-2cf4-4896-9fa7-f3fc08d245ab" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T222021Z:ee91f9d1-9546-4bb9-8536-72a934eb517f" + "WESTINDIA:20220517T044048Z:7056a319-2cf4-4896-9fa7-f3fc08d245ab" ], "Date": [ - "Wed, 23 Feb 2022 22:20:20 GMT" + "Tue, 17 May 2022 04:40:47 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, - "ResponseBody": "", - "StatusCode": 202 + "ResponseBody": "{\r\n \"id\": \"0ead3ee0-20e2-4b6a-a06a-54a5bbe12deb\",\r\n \"name\": \"0ead3ee0-20e2-4b6a-a06a-54a5bbe12deb\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T04:40:36.6101359Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.RecoveryServices/vaults/PSTestRSV1584e273/backupFabrics/Azure/operationResults/3ad93382-8ff3-40b6-b99c-6725cd182c9c?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMTU4NGUyNzMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YxNTg0ZTI3My9iYWNrdXBGYWJyaWNzL0F6dXJlL29wZXJhdGlvblJlc3VsdHMvM2FkOTMzODItOGZmMy00MGI2LWI5OWMtNjcyNWNkMTgyYzljP2FwaS12ZXJzaW9uPTIwMjEtMTAtMDE=", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.RecoveryServices/vaults/PSTestRSVd78c9636/backupOperations/0ead3ee0-20e2-4b6a-a06a-54a5bbe12deb?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZDc4Yzk2MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZkNzhjOTYzNi9iYWNrdXBPcGVyYXRpb25zLzBlYWQzZWUwLTIwZTItNGI2YS1hMDZhLTU0YTViYmUxMmRlYj9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f91fc061-ddb1-4aba-b2a4-aa3e14f5e43f" + "c52fb9d5-92d4-4a3e-a2f1-48fc858932f7" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -7421,54 +10013,63 @@ "nosniff" ], "x-ms-request-id": [ - "94a0b24a-57fa-4bdf-b730-a1549d189aca" + "77c6bdc6-0635-4c62-af35-ccf6a2f79daa" ], "x-ms-client-request-id": [ - "f91fc061-ddb1-4aba-b2a4-aa3e14f5e43f", - "f91fc061-ddb1-4aba-b2a4-aa3e14f5e43f" + "c52fb9d5-92d4-4a3e-a2f1-48fc858932f7", + "c52fb9d5-92d4-4a3e-a2f1-48fc858932f7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-IIS/10.0" + ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "148" + "136" ], "x-ms-correlation-request-id": [ - "94a0b24a-57fa-4bdf-b730-a1549d189aca" + "77c6bdc6-0635-4c62-af35-ccf6a2f79daa" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T222031Z:94a0b24a-57fa-4bdf-b730-a1549d189aca" + "WESTINDIA:20220517T044053Z:77c6bdc6-0635-4c62-af35-ccf6a2f79daa" ], "Date": [ - "Wed, 23 Feb 2022 22:20:31 GMT" + "Tue, 17 May 2022 04:40:52 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" ], "Expires": [ "-1" ] }, - "ResponseBody": "", - "StatusCode": 204 + "ResponseBody": "{\r\n \"id\": \"0ead3ee0-20e2-4b6a-a06a-54a5bbe12deb\",\r\n \"name\": \"0ead3ee0-20e2-4b6a-a06a-54a5bbe12deb\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T04:40:36.6101359Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.RecoveryServices/vaults/PSTestRSV1584e273/backupFabrics/Azure/operationResults/3ad93382-8ff3-40b6-b99c-6725cd182c9c?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMTU4NGUyNzMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YxNTg0ZTI3My9iYWNrdXBGYWJyaWNzL0F6dXJlL29wZXJhdGlvblJlc3VsdHMvM2FkOTMzODItOGZmMy00MGI2LWI5OWMtNjcyNWNkMTgyYzljP2FwaS12ZXJzaW9uPTIwMjEtMTAtMDE=", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.RecoveryServices/vaults/PSTestRSVd78c9636/backupOperations/0ead3ee0-20e2-4b6a-a06a-54a5bbe12deb?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZDc4Yzk2MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZkNzhjOTYzNi9iYWNrdXBPcGVyYXRpb25zLzBlYWQzZWUwLTIwZTItNGI2YS1hMDZhLTU0YTViYmUxMmRlYj9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f91fc061-ddb1-4aba-b2a4-aa3e14f5e43f" + "c52fb9d5-92d4-4a3e-a2f1-48fc858932f7" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -7482,60 +10083,63 @@ "nosniff" ], "x-ms-request-id": [ - "871492b5-44d9-45da-8f6a-0b4cb273bc23" + "9308a3a9-642e-4e16-81cd-1fba61e2c2c7" ], "x-ms-client-request-id": [ - "f91fc061-ddb1-4aba-b2a4-aa3e14f5e43f", - "f91fc061-ddb1-4aba-b2a4-aa3e14f5e43f" + "c52fb9d5-92d4-4a3e-a2f1-48fc858932f7", + "c52fb9d5-92d4-4a3e-a2f1-48fc858932f7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-IIS/10.0" + ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "147" + "135" ], "x-ms-correlation-request-id": [ - "871492b5-44d9-45da-8f6a-0b4cb273bc23" + "9308a3a9-642e-4e16-81cd-1fba61e2c2c7" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T222032Z:871492b5-44d9-45da-8f6a-0b4cb273bc23" + "WESTINDIA:20220517T044058Z:9308a3a9-642e-4e16-81cd-1fba61e2c2c7" ], "Date": [ - "Wed, 23 Feb 2022 22:20:31 GMT" + "Tue, 17 May 2022 04:40:58 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" ], "Expires": [ "-1" ] }, - "ResponseBody": "", - "StatusCode": 204 + "ResponseBody": "{\r\n \"id\": \"0ead3ee0-20e2-4b6a-a06a-54a5bbe12deb\",\r\n \"name\": \"0ead3ee0-20e2-4b6a-a06a-54a5bbe12deb\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T04:40:36.6101359Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.RecoveryServices/vaults/PSTestRSV1584e273/backupFabrics/Azure/protectionContainers/IaasVMContainer%3Biaasvmcontainerv2%3Bpstestrg1584e273%3Bpstestvm1584e2/protectedItems/vm%3Biaasvmcontainerv2%3Bpstestrg1584e273%3Bpstestvm1584e2?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMTU4NGUyNzMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YxNTg0ZTI3My9iYWNrdXBGYWJyaWNzL0F6dXJlL3Byb3RlY3Rpb25Db250YWluZXJzL0lhYXNWTUNvbnRhaW5lciUzQmlhYXN2bWNvbnRhaW5lcnYyJTNCcHN0ZXN0cmcxNTg0ZTI3MyUzQnBzdGVzdHZtMTU4NGUyL3Byb3RlY3RlZEl0ZW1zL3ZtJTNCaWFhc3ZtY29udGFpbmVydjIlM0Jwc3Rlc3RyZzE1ODRlMjczJTNCcHN0ZXN0dm0xNTg0ZTI/YXBpLXZlcnNpb249MjAyMS0xMC0wMQ==", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"protectedItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"sourceResourceId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.Compute/virtualMachines/PSTestVM1584e2\",\r\n \"policyId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.RecoveryServices/vaults/PSTestRSV1584e273/backupPolicies/DefaultPolicy\"\r\n }\r\n}", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.RecoveryServices/vaults/PSTestRSVd78c9636/backupOperations/0ead3ee0-20e2-4b6a-a06a-54a5bbe12deb?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZDc4Yzk2MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZkNzhjOTYzNi9iYWNrdXBPcGVyYXRpb25zLzBlYWQzZWUwLTIwZTItNGI2YS1hMDZhLTU0YTViYmUxMmRlYj9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f91fc061-ddb1-4aba-b2a4-aa3e14f5e43f" + "c52fb9d5-92d4-4a3e-a2f1-48fc858932f7" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "456" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -7545,70 +10149,67 @@ "Pragma": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.RecoveryServices/vaults/PSTestRSV1584e273/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrg1584e273;pstestvm1584e2/protectedItems/vm;iaasvmcontainerv2;pstestrg1584e273;pstestvm1584e2/operationResults/f3c3e5dd-c3e8-444e-a0a4-86bbe093e54d?api-version=2021-10-01" - ], - "Retry-After": [ - "60" - ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.RecoveryServices/vaults/PSTestRSV1584e273/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrg1584e273;pstestvm1584e2/protectedItems/vm;iaasvmcontainerv2;pstestrg1584e273;pstestvm1584e2/operationsStatus/f3c3e5dd-c3e8-444e-a0a4-86bbe093e54d?api-version=2021-10-01" - ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "f6271cb0-a525-4c42-aa12-ce8903e2bf5f" + "8a0e3e8d-a505-4c61-81e1-9ec666895f72" ], "x-ms-client-request-id": [ - "f91fc061-ddb1-4aba-b2a4-aa3e14f5e43f", - "f91fc061-ddb1-4aba-b2a4-aa3e14f5e43f" + "c52fb9d5-92d4-4a3e-a2f1-48fc858932f7", + "c52fb9d5-92d4-4a3e-a2f1-48fc858932f7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-IIS/10.0" + ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "134" ], "x-ms-correlation-request-id": [ - "f6271cb0-a525-4c42-aa12-ce8903e2bf5f" + "8a0e3e8d-a505-4c61-81e1-9ec666895f72" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T222034Z:f6271cb0-a525-4c42-aa12-ce8903e2bf5f" + "WESTINDIA:20220517T044104Z:8a0e3e8d-a505-4c61-81e1-9ec666895f72" ], "Date": [ - "Wed, 23 Feb 2022 22:20:33 GMT" + "Tue, 17 May 2022 04:41:04 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, - "ResponseBody": "", - "StatusCode": 202 + "ResponseBody": "{\r\n \"id\": \"0ead3ee0-20e2-4b6a-a06a-54a5bbe12deb\",\r\n \"name\": \"0ead3ee0-20e2-4b6a-a06a-54a5bbe12deb\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T04:40:36.6101359Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.RecoveryServices/vaults/PSTestRSV1584e273/backupOperations/f3c3e5dd-c3e8-444e-a0a4-86bbe093e54d?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMTU4NGUyNzMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YxNTg0ZTI3My9iYWNrdXBPcGVyYXRpb25zL2YzYzNlNWRkLWMzZTgtNDQ0ZS1hMGE0LTg2YmJlMDkzZTU0ZD9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.RecoveryServices/vaults/PSTestRSVd78c9636/backupOperations/0ead3ee0-20e2-4b6a-a06a-54a5bbe12deb?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZDc4Yzk2MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZkNzhjOTYzNi9iYWNrdXBPcGVyYXRpb25zLzBlYWQzZWUwLTIwZTItNGI2YS1hMDZhLTU0YTViYmUxMmRlYj9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f91fc061-ddb1-4aba-b2a4-aa3e14f5e43f" + "c52fb9d5-92d4-4a3e-a2f1-48fc858932f7" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -7622,11 +10223,11 @@ "nosniff" ], "x-ms-request-id": [ - "572de581-f8c0-4a2e-93e5-2d94d6fbf9cd" + "08e6a051-9638-4380-b754-514c8ce2f169" ], "x-ms-client-request-id": [ - "f91fc061-ddb1-4aba-b2a4-aa3e14f5e43f", - "f91fc061-ddb1-4aba-b2a4-aa3e14f5e43f" + "c52fb9d5-92d4-4a3e-a2f1-48fc858932f7", + "c52fb9d5-92d4-4a3e-a2f1-48fc858932f7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -7638,19 +10239,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "149" + "133" ], "x-ms-correlation-request-id": [ - "572de581-f8c0-4a2e-93e5-2d94d6fbf9cd" + "08e6a051-9638-4380-b754-514c8ce2f169" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T222035Z:572de581-f8c0-4a2e-93e5-2d94d6fbf9cd" + "WESTINDIA:20220517T044109Z:08e6a051-9638-4380-b754-514c8ce2f169" ], "Date": [ - "Wed, 23 Feb 2022 22:20:34 GMT" + "Tue, 17 May 2022 04:41:09 GMT" ], "Content-Length": [ - "187" + "188" ], "Content-Type": [ "application/json" @@ -7659,26 +10260,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"f3c3e5dd-c3e8-444e-a0a4-86bbe093e54d\",\r\n \"name\": \"f3c3e5dd-c3e8-444e-a0a4-86bbe093e54d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-23T22:20:34.236804Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"0ead3ee0-20e2-4b6a-a06a-54a5bbe12deb\",\r\n \"name\": \"0ead3ee0-20e2-4b6a-a06a-54a5bbe12deb\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T04:40:36.6101359Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.RecoveryServices/vaults/PSTestRSV1584e273/backupOperations/f3c3e5dd-c3e8-444e-a0a4-86bbe093e54d?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMTU4NGUyNzMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YxNTg0ZTI3My9iYWNrdXBPcGVyYXRpb25zL2YzYzNlNWRkLWMzZTgtNDQ0ZS1hMGE0LTg2YmJlMDkzZTU0ZD9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.RecoveryServices/vaults/PSTestRSVd78c9636/backupOperations/0ead3ee0-20e2-4b6a-a06a-54a5bbe12deb?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZDc4Yzk2MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZkNzhjOTYzNi9iYWNrdXBPcGVyYXRpb25zLzBlYWQzZWUwLTIwZTItNGI2YS1hMDZhLTU0YTViYmUxMmRlYj9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f91fc061-ddb1-4aba-b2a4-aa3e14f5e43f" + "c52fb9d5-92d4-4a3e-a2f1-48fc858932f7" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -7692,11 +10293,11 @@ "nosniff" ], "x-ms-request-id": [ - "4563ae1b-6aa8-4463-a108-40909e72532f" + "e3bab5b2-e0c3-4ec4-b1b2-e86c45aadc40" ], "x-ms-client-request-id": [ - "f91fc061-ddb1-4aba-b2a4-aa3e14f5e43f", - "f91fc061-ddb1-4aba-b2a4-aa3e14f5e43f" + "c52fb9d5-92d4-4a3e-a2f1-48fc858932f7", + "c52fb9d5-92d4-4a3e-a2f1-48fc858932f7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -7708,19 +10309,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "148" + "132" ], "x-ms-correlation-request-id": [ - "4563ae1b-6aa8-4463-a108-40909e72532f" + "e3bab5b2-e0c3-4ec4-b1b2-e86c45aadc40" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T222052Z:4563ae1b-6aa8-4463-a108-40909e72532f" + "WESTINDIA:20220517T044115Z:e3bab5b2-e0c3-4ec4-b1b2-e86c45aadc40" ], "Date": [ - "Wed, 23 Feb 2022 22:20:51 GMT" + "Tue, 17 May 2022 04:41:14 GMT" ], "Content-Length": [ - "187" + "188" ], "Content-Type": [ "application/json" @@ -7729,26 +10330,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"f3c3e5dd-c3e8-444e-a0a4-86bbe093e54d\",\r\n \"name\": \"f3c3e5dd-c3e8-444e-a0a4-86bbe093e54d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-23T22:20:34.236804Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"0ead3ee0-20e2-4b6a-a06a-54a5bbe12deb\",\r\n \"name\": \"0ead3ee0-20e2-4b6a-a06a-54a5bbe12deb\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T04:40:36.6101359Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.RecoveryServices/vaults/PSTestRSV1584e273/backupOperations/f3c3e5dd-c3e8-444e-a0a4-86bbe093e54d?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMTU4NGUyNzMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YxNTg0ZTI3My9iYWNrdXBPcGVyYXRpb25zL2YzYzNlNWRkLWMzZTgtNDQ0ZS1hMGE0LTg2YmJlMDkzZTU0ZD9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.RecoveryServices/vaults/PSTestRSVd78c9636/backupOperations/0ead3ee0-20e2-4b6a-a06a-54a5bbe12deb?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZDc4Yzk2MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZkNzhjOTYzNi9iYWNrdXBPcGVyYXRpb25zLzBlYWQzZWUwLTIwZTItNGI2YS1hMDZhLTU0YTViYmUxMmRlYj9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f91fc061-ddb1-4aba-b2a4-aa3e14f5e43f" + "c52fb9d5-92d4-4a3e-a2f1-48fc858932f7" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -7762,11 +10363,11 @@ "nosniff" ], "x-ms-request-id": [ - "d9af5d18-d4ec-4005-90db-54dfd8c3d1af" + "e72b51b6-fb07-409e-a929-57e24051f853" ], "x-ms-client-request-id": [ - "f91fc061-ddb1-4aba-b2a4-aa3e14f5e43f", - "f91fc061-ddb1-4aba-b2a4-aa3e14f5e43f" + "c52fb9d5-92d4-4a3e-a2f1-48fc858932f7", + "c52fb9d5-92d4-4a3e-a2f1-48fc858932f7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -7778,19 +10379,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "147" + "131" ], "x-ms-correlation-request-id": [ - "d9af5d18-d4ec-4005-90db-54dfd8c3d1af" + "e72b51b6-fb07-409e-a929-57e24051f853" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T222102Z:d9af5d18-d4ec-4005-90db-54dfd8c3d1af" + "WESTINDIA:20220517T044120Z:e72b51b6-fb07-409e-a929-57e24051f853" ], "Date": [ - "Wed, 23 Feb 2022 22:21:01 GMT" + "Tue, 17 May 2022 04:41:19 GMT" ], "Content-Length": [ - "187" + "188" ], "Content-Type": [ "application/json" @@ -7799,26 +10400,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"f3c3e5dd-c3e8-444e-a0a4-86bbe093e54d\",\r\n \"name\": \"f3c3e5dd-c3e8-444e-a0a4-86bbe093e54d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-23T22:20:34.236804Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"0ead3ee0-20e2-4b6a-a06a-54a5bbe12deb\",\r\n \"name\": \"0ead3ee0-20e2-4b6a-a06a-54a5bbe12deb\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T04:40:36.6101359Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.RecoveryServices/vaults/PSTestRSV1584e273/backupOperations/f3c3e5dd-c3e8-444e-a0a4-86bbe093e54d?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMTU4NGUyNzMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YxNTg0ZTI3My9iYWNrdXBPcGVyYXRpb25zL2YzYzNlNWRkLWMzZTgtNDQ0ZS1hMGE0LTg2YmJlMDkzZTU0ZD9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.RecoveryServices/vaults/PSTestRSVd78c9636/backupOperations/0ead3ee0-20e2-4b6a-a06a-54a5bbe12deb?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZDc4Yzk2MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZkNzhjOTYzNi9iYWNrdXBPcGVyYXRpb25zLzBlYWQzZWUwLTIwZTItNGI2YS1hMDZhLTU0YTViYmUxMmRlYj9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f91fc061-ddb1-4aba-b2a4-aa3e14f5e43f" + "c52fb9d5-92d4-4a3e-a2f1-48fc858932f7" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -7832,11 +10433,11 @@ "nosniff" ], "x-ms-request-id": [ - "67866a46-f132-46cb-8573-9c97e45ea707" + "e908ac7b-5bd3-44e2-9e49-9070dfb09f58" ], "x-ms-client-request-id": [ - "f91fc061-ddb1-4aba-b2a4-aa3e14f5e43f", - "f91fc061-ddb1-4aba-b2a4-aa3e14f5e43f" + "c52fb9d5-92d4-4a3e-a2f1-48fc858932f7", + "c52fb9d5-92d4-4a3e-a2f1-48fc858932f7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -7848,19 +10449,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "146" + "130" ], "x-ms-correlation-request-id": [ - "67866a46-f132-46cb-8573-9c97e45ea707" + "e908ac7b-5bd3-44e2-9e49-9070dfb09f58" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T222113Z:67866a46-f132-46cb-8573-9c97e45ea707" + "WESTINDIA:20220517T044126Z:e908ac7b-5bd3-44e2-9e49-9070dfb09f58" ], "Date": [ - "Wed, 23 Feb 2022 22:21:12 GMT" + "Tue, 17 May 2022 04:41:25 GMT" ], "Content-Length": [ - "302" + "188" ], "Content-Type": [ "application/json" @@ -7869,26 +10470,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"f3c3e5dd-c3e8-444e-a0a4-86bbe093e54d\",\r\n \"name\": \"f3c3e5dd-c3e8-444e-a0a4-86bbe093e54d\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-02-23T22:20:34.236804Z\",\r\n \"endTime\": \"2022-02-23T22:20:34.236804Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"83e1870f-cd17-469b-9f62-4ca6cd887df2\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"0ead3ee0-20e2-4b6a-a06a-54a5bbe12deb\",\r\n \"name\": \"0ead3ee0-20e2-4b6a-a06a-54a5bbe12deb\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T04:40:36.6101359Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.RecoveryServices/vaults/PSTestRSV1584e273/backupOperations/f3c3e5dd-c3e8-444e-a0a4-86bbe093e54d?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMTU4NGUyNzMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YxNTg0ZTI3My9iYWNrdXBPcGVyYXRpb25zL2YzYzNlNWRkLWMzZTgtNDQ0ZS1hMGE0LTg2YmJlMDkzZTU0ZD9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.RecoveryServices/vaults/PSTestRSVd78c9636/backupOperations/0ead3ee0-20e2-4b6a-a06a-54a5bbe12deb?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZDc4Yzk2MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZkNzhjOTYzNi9iYWNrdXBPcGVyYXRpb25zLzBlYWQzZWUwLTIwZTItNGI2YS1hMDZhLTU0YTViYmUxMmRlYj9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f91fc061-ddb1-4aba-b2a4-aa3e14f5e43f" + "c52fb9d5-92d4-4a3e-a2f1-48fc858932f7" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -7902,11 +10503,11 @@ "nosniff" ], "x-ms-request-id": [ - "d72e0762-9207-406f-8bbe-6516483d3c9d" + "da9026ab-3768-4b0e-97a6-a40b8ec695d6" ], "x-ms-client-request-id": [ - "f91fc061-ddb1-4aba-b2a4-aa3e14f5e43f", - "f91fc061-ddb1-4aba-b2a4-aa3e14f5e43f" + "c52fb9d5-92d4-4a3e-a2f1-48fc858932f7", + "c52fb9d5-92d4-4a3e-a2f1-48fc858932f7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -7918,19 +10519,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "145" + "129" ], "x-ms-correlation-request-id": [ - "d72e0762-9207-406f-8bbe-6516483d3c9d" + "da9026ab-3768-4b0e-97a6-a40b8ec695d6" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T222114Z:d72e0762-9207-406f-8bbe-6516483d3c9d" + "WESTINDIA:20220517T044131Z:da9026ab-3768-4b0e-97a6-a40b8ec695d6" ], "Date": [ - "Wed, 23 Feb 2022 22:21:13 GMT" + "Tue, 17 May 2022 04:41:30 GMT" ], "Content-Length": [ - "302" + "188" ], "Content-Type": [ "application/json" @@ -7939,26 +10540,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"f3c3e5dd-c3e8-444e-a0a4-86bbe093e54d\",\r\n \"name\": \"f3c3e5dd-c3e8-444e-a0a4-86bbe093e54d\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-02-23T22:20:34.236804Z\",\r\n \"endTime\": \"2022-02-23T22:20:34.236804Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"83e1870f-cd17-469b-9f62-4ca6cd887df2\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"0ead3ee0-20e2-4b6a-a06a-54a5bbe12deb\",\r\n \"name\": \"0ead3ee0-20e2-4b6a-a06a-54a5bbe12deb\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T04:40:36.6101359Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.RecoveryServices/vaults/PSTestRSV1584e273/backupJobs/83e1870f-cd17-469b-9f62-4ca6cd887df2?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMTU4NGUyNzMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YxNTg0ZTI3My9iYWNrdXBKb2JzLzgzZTE4NzBmLWNkMTctNDY5Yi05ZjYyLTRjYTZjZDg4N2RmMj9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.RecoveryServices/vaults/PSTestRSVd78c9636/backupOperations/0ead3ee0-20e2-4b6a-a06a-54a5bbe12deb?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZDc4Yzk2MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZkNzhjOTYzNi9iYWNrdXBPcGVyYXRpb25zLzBlYWQzZWUwLTIwZTItNGI2YS1hMDZhLTU0YTViYmUxMmRlYj9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f91fc061-ddb1-4aba-b2a4-aa3e14f5e43f" + "c52fb9d5-92d4-4a3e-a2f1-48fc858932f7" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -7968,40 +10569,39 @@ "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-IIS/10.0" - ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "a8c9f5db-5ee0-47b7-8b09-f8d7739fd40d" + "897b852e-08b5-42f1-b366-feb446615792" ], "x-ms-client-request-id": [ - "f91fc061-ddb1-4aba-b2a4-aa3e14f5e43f", - "f91fc061-ddb1-4aba-b2a4-aa3e14f5e43f" - ], - "X-Powered-By": [ - "ASP.NET" + "c52fb9d5-92d4-4a3e-a2f1-48fc858932f7", + "c52fb9d5-92d4-4a3e-a2f1-48fc858932f7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "149" + "128" ], "x-ms-correlation-request-id": [ - "a8c9f5db-5ee0-47b7-8b09-f8d7739fd40d" + "897b852e-08b5-42f1-b366-feb446615792" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T222114Z:a8c9f5db-5ee0-47b7-8b09-f8d7739fd40d" + "WESTINDIA:20220517T044136Z:897b852e-08b5-42f1-b366-feb446615792" ], "Date": [ - "Wed, 23 Feb 2022 22:21:14 GMT" + "Tue, 17 May 2022 04:41:36 GMT" ], "Content-Length": [ - "839" + "188" ], "Content-Type": [ "application/json" @@ -8010,26 +10610,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.RecoveryServices/vaults/PSTestRSV1584e273/backupJobs/83e1870f-cd17-469b-9f62-4ca6cd887df2\",\r\n \"name\": \"83e1870f-cd17-469b-9f62-4ca6cd887df2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg1584e273;pstestvm1584e2\",\r\n \"duration\": \"PT30.8627511S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm1584e2\",\r\n \"Policy Name\": \"DefaultPolicy\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm1584e2\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"ConfigureBackup\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-02-23T22:20:34.236804Z\",\r\n \"endTime\": \"2022-02-23T22:21:05.0995551Z\",\r\n \"activityId\": \"f91fc061-ddb1-4aba-b2a4-aa3e14f5e43f\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"0ead3ee0-20e2-4b6a-a06a-54a5bbe12deb\",\r\n \"name\": \"0ead3ee0-20e2-4b6a-a06a-54a5bbe12deb\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T04:40:36.6101359Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.RecoveryServices/vaults/PSTestRSV1584e273/backupJobs/83e1870f-cd17-469b-9f62-4ca6cd887df2?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMTU4NGUyNzMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YxNTg0ZTI3My9iYWNrdXBKb2JzLzgzZTE4NzBmLWNkMTctNDY5Yi05ZjYyLTRjYTZjZDg4N2RmMj9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.RecoveryServices/vaults/PSTestRSVd78c9636/backupOperations/0ead3ee0-20e2-4b6a-a06a-54a5bbe12deb?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZDc4Yzk2MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZkNzhjOTYzNi9iYWNrdXBPcGVyYXRpb25zLzBlYWQzZWUwLTIwZTItNGI2YS1hMDZhLTU0YTViYmUxMmRlYj9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "95fe79f0-73e3-4196-a0b0-038e47ca5624" + "c52fb9d5-92d4-4a3e-a2f1-48fc858932f7" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -8039,40 +10639,39 @@ "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-IIS/10.0" - ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "808ce89a-02bc-4cef-b3fd-aad01d1d1572" + "ab468c00-d032-418f-8272-fe8087d8e378" ], "x-ms-client-request-id": [ - "95fe79f0-73e3-4196-a0b0-038e47ca5624", - "95fe79f0-73e3-4196-a0b0-038e47ca5624" - ], - "X-Powered-By": [ - "ASP.NET" + "c52fb9d5-92d4-4a3e-a2f1-48fc858932f7", + "c52fb9d5-92d4-4a3e-a2f1-48fc858932f7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "147" + "127" ], "x-ms-correlation-request-id": [ - "808ce89a-02bc-4cef-b3fd-aad01d1d1572" + "ab468c00-d032-418f-8272-fe8087d8e378" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T222117Z:808ce89a-02bc-4cef-b3fd-aad01d1d1572" + "WESTINDIA:20220517T044142Z:ab468c00-d032-418f-8272-fe8087d8e378" ], "Date": [ - "Wed, 23 Feb 2022 22:21:17 GMT" + "Tue, 17 May 2022 04:41:41 GMT" ], "Content-Length": [ - "839" + "188" ], "Content-Type": [ "application/json" @@ -8081,26 +10680,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.RecoveryServices/vaults/PSTestRSV1584e273/backupJobs/83e1870f-cd17-469b-9f62-4ca6cd887df2\",\r\n \"name\": \"83e1870f-cd17-469b-9f62-4ca6cd887df2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg1584e273;pstestvm1584e2\",\r\n \"duration\": \"PT30.8627511S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm1584e2\",\r\n \"Policy Name\": \"DefaultPolicy\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm1584e2\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"ConfigureBackup\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-02-23T22:20:34.236804Z\",\r\n \"endTime\": \"2022-02-23T22:21:05.0995551Z\",\r\n \"activityId\": \"f91fc061-ddb1-4aba-b2a4-aa3e14f5e43f\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"0ead3ee0-20e2-4b6a-a06a-54a5bbe12deb\",\r\n \"name\": \"0ead3ee0-20e2-4b6a-a06a-54a5bbe12deb\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T04:40:36.6101359Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.RecoveryServices/vaults/PSTestRSV1584e273/backupJobs/83e1870f-cd17-469b-9f62-4ca6cd887df2?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMTU4NGUyNzMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YxNTg0ZTI3My9iYWNrdXBKb2JzLzgzZTE4NzBmLWNkMTctNDY5Yi05ZjYyLTRjYTZjZDg4N2RmMj9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.RecoveryServices/vaults/PSTestRSVd78c9636/backupOperations/0ead3ee0-20e2-4b6a-a06a-54a5bbe12deb?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZDc4Yzk2MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZkNzhjOTYzNi9iYWNrdXBPcGVyYXRpb25zLzBlYWQzZWUwLTIwZTItNGI2YS1hMDZhLTU0YTViYmUxMmRlYj9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "13e88ba7-27e5-4865-b7d7-621702406d0f" + "c52fb9d5-92d4-4a3e-a2f1-48fc858932f7" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -8110,40 +10709,39 @@ "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-IIS/10.0" - ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "70f6ae28-3445-4928-8230-b38134b585f7" + "93432bb9-d34c-4726-b1a4-4a31a02cec2a" ], "x-ms-client-request-id": [ - "13e88ba7-27e5-4865-b7d7-621702406d0f", - "13e88ba7-27e5-4865-b7d7-621702406d0f" - ], - "X-Powered-By": [ - "ASP.NET" + "c52fb9d5-92d4-4a3e-a2f1-48fc858932f7", + "c52fb9d5-92d4-4a3e-a2f1-48fc858932f7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "146" + "126" ], "x-ms-correlation-request-id": [ - "70f6ae28-3445-4928-8230-b38134b585f7" + "93432bb9-d34c-4726-b1a4-4a31a02cec2a" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T222118Z:70f6ae28-3445-4928-8230-b38134b585f7" + "WESTINDIA:20220517T044147Z:93432bb9-d34c-4726-b1a4-4a31a02cec2a" ], "Date": [ - "Wed, 23 Feb 2022 22:21:17 GMT" + "Tue, 17 May 2022 04:41:47 GMT" ], "Content-Length": [ - "839" + "188" ], "Content-Type": [ "application/json" @@ -8152,26 +10750,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.RecoveryServices/vaults/PSTestRSV1584e273/backupJobs/83e1870f-cd17-469b-9f62-4ca6cd887df2\",\r\n \"name\": \"83e1870f-cd17-469b-9f62-4ca6cd887df2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg1584e273;pstestvm1584e2\",\r\n \"duration\": \"PT30.8627511S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm1584e2\",\r\n \"Policy Name\": \"DefaultPolicy\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm1584e2\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"ConfigureBackup\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-02-23T22:20:34.236804Z\",\r\n \"endTime\": \"2022-02-23T22:21:05.0995551Z\",\r\n \"activityId\": \"f91fc061-ddb1-4aba-b2a4-aa3e14f5e43f\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"0ead3ee0-20e2-4b6a-a06a-54a5bbe12deb\",\r\n \"name\": \"0ead3ee0-20e2-4b6a-a06a-54a5bbe12deb\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T04:40:36.6101359Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.RecoveryServices/vaults/PSTestRSV1584e273/backupFabrics/Azure/protectionContainers/IaasVMContainer%3Biaasvmcontainerv2%3Bpstestrg1584e273%3Bpstestvm1584e2/protectedItems/VM%3Biaasvmcontainerv2%3Bpstestrg1584e273%3Bpstestvm1584e2?$filter=expand%20eq%20'extendedinfo'&api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMTU4NGUyNzMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YxNTg0ZTI3My9iYWNrdXBGYWJyaWNzL0F6dXJlL3Byb3RlY3Rpb25Db250YWluZXJzL0lhYXNWTUNvbnRhaW5lciUzQmlhYXN2bWNvbnRhaW5lcnYyJTNCcHN0ZXN0cmcxNTg0ZTI3MyUzQnBzdGVzdHZtMTU4NGUyL3Byb3RlY3RlZEl0ZW1zL1ZNJTNCaWFhc3ZtY29udGFpbmVydjIlM0Jwc3Rlc3RyZzE1ODRlMjczJTNCcHN0ZXN0dm0xNTg0ZTI/JGZpbHRlcj1leHBhbmQlMjBlcSUyMCdleHRlbmRlZGluZm8nJmFwaS12ZXJzaW9uPTIwMjEtMTAtMDE=", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.RecoveryServices/vaults/PSTestRSVd78c9636/backupOperations/0ead3ee0-20e2-4b6a-a06a-54a5bbe12deb?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZDc4Yzk2MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZkNzhjOTYzNi9iYWNrdXBPcGVyYXRpb25zLzBlYWQzZWUwLTIwZTItNGI2YS1hMDZhLTU0YTViYmUxMmRlYj9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6ac93916-c45d-427d-b255-e349a81d5fba" + "c52fb9d5-92d4-4a3e-a2f1-48fc858932f7" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -8185,11 +10783,11 @@ "nosniff" ], "x-ms-request-id": [ - "1bcac71e-4e8f-47e2-bcf4-6101d8b3ff29" + "1493911e-dddc-4977-b893-db3ba69ef7dd" ], "x-ms-client-request-id": [ - "6ac93916-c45d-427d-b255-e349a81d5fba", - "6ac93916-c45d-427d-b255-e349a81d5fba" + "c52fb9d5-92d4-4a3e-a2f1-48fc858932f7", + "c52fb9d5-92d4-4a3e-a2f1-48fc858932f7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -8201,19 +10799,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "149" + "125" ], "x-ms-correlation-request-id": [ - "1bcac71e-4e8f-47e2-bcf4-6101d8b3ff29" + "1493911e-dddc-4977-b893-db3ba69ef7dd" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T222116Z:1bcac71e-4e8f-47e2-bcf4-6101d8b3ff29" + "WESTINDIA:20220517T044153Z:1493911e-dddc-4977-b893-db3ba69ef7dd" ], "Date": [ - "Wed, 23 Feb 2022 22:21:15 GMT" + "Tue, 17 May 2022 04:41:52 GMT" ], "Content-Length": [ - "1551" + "188" ], "Content-Type": [ "application/json" @@ -8222,26 +10820,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.RecoveryServices/vaults/PSTestRSV1584e273/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrg1584e273;pstestvm1584e2/protectedItems/VM;iaasvmcontainerv2;pstestrg1584e273;pstestvm1584e2\",\r\n \"name\": \"VM;iaasvmcontainerv2;pstestrg1584e273;pstestvm1584e2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems\",\r\n \"properties\": {\r\n \"kpisHealths\": {},\r\n \"friendlyName\": \"PSTestVM1584e2\",\r\n \"virtualMachineId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.Compute/virtualMachines/PSTestVM1584e2\",\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\": \"228700060556071\",\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;pstestrg1584e273;pstestvm1584e2\",\r\n \"sourceResourceId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.Compute/virtualMachines/PSTestVM1584e2\",\r\n \"policyId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.RecoveryServices/vaults/PSTestRSV1584e273/backupPolicies/DefaultPolicy\",\r\n \"policyName\": \"DefaultPolicy\",\r\n \"isArchiveEnabled\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"0ead3ee0-20e2-4b6a-a06a-54a5bbe12deb\",\r\n \"name\": \"0ead3ee0-20e2-4b6a-a06a-54a5bbe12deb\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T04:40:36.6101359Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.RecoveryServices/vaults/PSTestRSV1584e273/backupJobs?$filter=operation%20eq%20''%20and%20startTime%20eq%20'2022-02-22%2010:15:10%20PM'%20and%20endTime%20eq%20'2022-02-23%2010:21:18%20PM'&api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMTU4NGUyNzMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YxNTg0ZTI3My9iYWNrdXBKb2JzPyRmaWx0ZXI9b3BlcmF0aW9uJTIwZXElMjAnJyUyMGFuZCUyMHN0YXJ0VGltZSUyMGVxJTIwJzIwMjItMDItMjIlMjAxMDoxNToxMCUyMFBNJyUyMGFuZCUyMGVuZFRpbWUlMjBlcSUyMCcyMDIyLTAyLTIzJTIwMTA6MjE6MTglMjBQTScmYXBpLXZlcnNpb249MjAyMS0xMC0wMQ==", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.RecoveryServices/vaults/PSTestRSVd78c9636/backupOperations/0ead3ee0-20e2-4b6a-a06a-54a5bbe12deb?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZDc4Yzk2MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZkNzhjOTYzNi9iYWNrdXBPcGVyYXRpb25zLzBlYWQzZWUwLTIwZTItNGI2YS1hMDZhLTU0YTViYmUxMmRlYj9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a03acf63-c5f0-4ccc-93b7-1d3fe30c2293" + "c52fb9d5-92d4-4a3e-a2f1-48fc858932f7" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -8251,40 +10849,39 @@ "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-IIS/10.0" - ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "efa61445-0a97-4862-8ea7-f815f9a355de" + "fbcb1d4e-cc36-4a48-b48d-ff292deb54af" ], "x-ms-client-request-id": [ - "a03acf63-c5f0-4ccc-93b7-1d3fe30c2293", - "a03acf63-c5f0-4ccc-93b7-1d3fe30c2293" - ], - "X-Powered-By": [ - "ASP.NET" + "c52fb9d5-92d4-4a3e-a2f1-48fc858932f7", + "c52fb9d5-92d4-4a3e-a2f1-48fc858932f7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "148" + "124" ], "x-ms-correlation-request-id": [ - "efa61445-0a97-4862-8ea7-f815f9a355de" + "fbcb1d4e-cc36-4a48-b48d-ff292deb54af" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T222117Z:efa61445-0a97-4862-8ea7-f815f9a355de" + "WESTINDIA:20220517T044158Z:fbcb1d4e-cc36-4a48-b48d-ff292deb54af" ], "Date": [ - "Wed, 23 Feb 2022 22:21:16 GMT" + "Tue, 17 May 2022 04:41:57 GMT" ], "Content-Length": [ - "1482" + "188" ], "Content-Type": [ "application/json" @@ -8293,26 +10890,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.RecoveryServices/vaults/PSTestRSV1584e273/backupJobs/83e1870f-cd17-469b-9f62-4ca6cd887df2\",\r\n \"name\": \"83e1870f-cd17-469b-9f62-4ca6cd887df2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg1584e273;pstestvm1584e2\",\r\n \"duration\": \"PT30.8627511S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"entityFriendlyName\": \"pstestvm1584e2\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"ConfigureBackup\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-02-23T22:20:34.236804Z\",\r\n \"endTime\": \"2022-02-23T22:21:05.0995551Z\",\r\n \"activityId\": \"f91fc061-ddb1-4aba-b2a4-aa3e14f5e43f\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.RecoveryServices/vaults/PSTestRSV1584e273/backupJobs/ee47eff8-290d-42e0-8dfd-a42b1321658d\",\r\n \"name\": \"ee47eff8-290d-42e0-8dfd-a42b1321658d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg1584e273;pstestvm1584e1\",\r\n \"duration\": \"PT31.0458523S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"entityFriendlyName\": \"pstestvm1584e1\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"ConfigureBackup\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-02-23T22:14:32.8984173Z\",\r\n \"endTime\": \"2022-02-23T22:15:03.9442696Z\",\r\n \"activityId\": \"55355398-b1ec-47dd-8417-4726ea4a5da4\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"0ead3ee0-20e2-4b6a-a06a-54a5bbe12deb\",\r\n \"name\": \"0ead3ee0-20e2-4b6a-a06a-54a5bbe12deb\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T04:40:36.6101359Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.RecoveryServices/vaults/PSTestRSV1584e273/backupJobs?$filter=status%20eq%20'Completed'%20and%20operation%20eq%20''%20and%20startTime%20eq%20'2022-02-22%2010:15:10%20PM'%20and%20endTime%20eq%20'2022-02-23%2010:21:18%20PM'&api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMTU4NGUyNzMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YxNTg0ZTI3My9iYWNrdXBKb2JzPyRmaWx0ZXI9c3RhdHVzJTIwZXElMjAnQ29tcGxldGVkJyUyMGFuZCUyMG9wZXJhdGlvbiUyMGVxJTIwJyclMjBhbmQlMjBzdGFydFRpbWUlMjBlcSUyMCcyMDIyLTAyLTIyJTIwMTA6MTU6MTAlMjBQTSclMjBhbmQlMjBlbmRUaW1lJTIwZXElMjAnMjAyMi0wMi0yMyUyMDEwOjIxOjE4JTIwUE0nJmFwaS12ZXJzaW9uPTIwMjEtMTAtMDE=", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.RecoveryServices/vaults/PSTestRSVd78c9636/backupOperations/0ead3ee0-20e2-4b6a-a06a-54a5bbe12deb?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZDc4Yzk2MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZkNzhjOTYzNi9iYWNrdXBPcGVyYXRpb25zLzBlYWQzZWUwLTIwZTItNGI2YS1hMDZhLTU0YTViYmUxMmRlYj9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f676de90-4717-4c04-9020-4229ca713ae4" + "c52fb9d5-92d4-4a3e-a2f1-48fc858932f7" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -8322,40 +10919,39 @@ "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-IIS/10.0" - ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "40449ea3-0069-4f88-8a0a-447b5671ca90" + "45126164-b41b-4239-9178-b3102f82e633" ], "x-ms-client-request-id": [ - "f676de90-4717-4c04-9020-4229ca713ae4", - "f676de90-4717-4c04-9020-4229ca713ae4" - ], - "X-Powered-By": [ - "ASP.NET" + "c52fb9d5-92d4-4a3e-a2f1-48fc858932f7", + "c52fb9d5-92d4-4a3e-a2f1-48fc858932f7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "143" + "123" ], "x-ms-correlation-request-id": [ - "40449ea3-0069-4f88-8a0a-447b5671ca90" + "45126164-b41b-4239-9178-b3102f82e633" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T222120Z:40449ea3-0069-4f88-8a0a-447b5671ca90" + "WESTINDIA:20220517T044203Z:45126164-b41b-4239-9178-b3102f82e633" ], "Date": [ - "Wed, 23 Feb 2022 22:21:19 GMT" + "Tue, 17 May 2022 04:42:03 GMT" ], "Content-Length": [ - "1482" + "188" ], "Content-Type": [ "application/json" @@ -8364,26 +10960,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.RecoveryServices/vaults/PSTestRSV1584e273/backupJobs/83e1870f-cd17-469b-9f62-4ca6cd887df2\",\r\n \"name\": \"83e1870f-cd17-469b-9f62-4ca6cd887df2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg1584e273;pstestvm1584e2\",\r\n \"duration\": \"PT30.8627511S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"entityFriendlyName\": \"pstestvm1584e2\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"ConfigureBackup\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-02-23T22:20:34.236804Z\",\r\n \"endTime\": \"2022-02-23T22:21:05.0995551Z\",\r\n \"activityId\": \"f91fc061-ddb1-4aba-b2a4-aa3e14f5e43f\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.RecoveryServices/vaults/PSTestRSV1584e273/backupJobs/ee47eff8-290d-42e0-8dfd-a42b1321658d\",\r\n \"name\": \"ee47eff8-290d-42e0-8dfd-a42b1321658d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg1584e273;pstestvm1584e1\",\r\n \"duration\": \"PT31.0458523S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"entityFriendlyName\": \"pstestvm1584e1\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"ConfigureBackup\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-02-23T22:14:32.8984173Z\",\r\n \"endTime\": \"2022-02-23T22:15:03.9442696Z\",\r\n \"activityId\": \"55355398-b1ec-47dd-8417-4726ea4a5da4\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"0ead3ee0-20e2-4b6a-a06a-54a5bbe12deb\",\r\n \"name\": \"0ead3ee0-20e2-4b6a-a06a-54a5bbe12deb\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T04:40:36.6101359Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.RecoveryServices/vaults/PSTestRSV1584e273/backupJobs?$filter=operation%20eq%20'ConfigureBackup'%20and%20startTime%20eq%20'2022-02-22%2010:15:10%20PM'%20and%20endTime%20eq%20'2022-02-23%2010:21:18%20PM'&api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMTU4NGUyNzMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YxNTg0ZTI3My9iYWNrdXBKb2JzPyRmaWx0ZXI9b3BlcmF0aW9uJTIwZXElMjAnQ29uZmlndXJlQmFja3VwJyUyMGFuZCUyMHN0YXJ0VGltZSUyMGVxJTIwJzIwMjItMDItMjIlMjAxMDoxNToxMCUyMFBNJyUyMGFuZCUyMGVuZFRpbWUlMjBlcSUyMCcyMDIyLTAyLTIzJTIwMTA6MjE6MTglMjBQTScmYXBpLXZlcnNpb249MjAyMS0xMC0wMQ==", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.RecoveryServices/vaults/PSTestRSVd78c9636/backupOperations/0ead3ee0-20e2-4b6a-a06a-54a5bbe12deb?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZDc4Yzk2MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZkNzhjOTYzNi9iYWNrdXBPcGVyYXRpb25zLzBlYWQzZWUwLTIwZTItNGI2YS1hMDZhLTU0YTViYmUxMmRlYj9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1056239c-082b-472f-bbfd-f9aa83579805" + "c52fb9d5-92d4-4a3e-a2f1-48fc858932f7" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -8393,40 +10989,39 @@ "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-IIS/10.0" - ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "1cae6797-e03a-4966-9c9d-10658a1d982a" + "57d762bb-5acb-41da-8503-614e239721c9" ], "x-ms-client-request-id": [ - "1056239c-082b-472f-bbfd-f9aa83579805", - "1056239c-082b-472f-bbfd-f9aa83579805" - ], - "X-Powered-By": [ - "ASP.NET" + "c52fb9d5-92d4-4a3e-a2f1-48fc858932f7", + "c52fb9d5-92d4-4a3e-a2f1-48fc858932f7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "142" + "122" ], "x-ms-correlation-request-id": [ - "1cae6797-e03a-4966-9c9d-10658a1d982a" + "57d762bb-5acb-41da-8503-614e239721c9" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T222120Z:1cae6797-e03a-4966-9c9d-10658a1d982a" + "WESTINDIA:20220517T044209Z:57d762bb-5acb-41da-8503-614e239721c9" ], "Date": [ - "Wed, 23 Feb 2022 22:21:20 GMT" + "Tue, 17 May 2022 04:42:08 GMT" ], "Content-Length": [ - "1482" + "188" ], "Content-Type": [ "application/json" @@ -8435,26 +11030,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.RecoveryServices/vaults/PSTestRSV1584e273/backupJobs/83e1870f-cd17-469b-9f62-4ca6cd887df2\",\r\n \"name\": \"83e1870f-cd17-469b-9f62-4ca6cd887df2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg1584e273;pstestvm1584e2\",\r\n \"duration\": \"PT30.8627511S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"entityFriendlyName\": \"pstestvm1584e2\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"ConfigureBackup\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-02-23T22:20:34.236804Z\",\r\n \"endTime\": \"2022-02-23T22:21:05.0995551Z\",\r\n \"activityId\": \"f91fc061-ddb1-4aba-b2a4-aa3e14f5e43f\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.RecoveryServices/vaults/PSTestRSV1584e273/backupJobs/ee47eff8-290d-42e0-8dfd-a42b1321658d\",\r\n \"name\": \"ee47eff8-290d-42e0-8dfd-a42b1321658d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg1584e273;pstestvm1584e1\",\r\n \"duration\": \"PT31.0458523S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"entityFriendlyName\": \"pstestvm1584e1\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"ConfigureBackup\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-02-23T22:14:32.8984173Z\",\r\n \"endTime\": \"2022-02-23T22:15:03.9442696Z\",\r\n \"activityId\": \"55355398-b1ec-47dd-8417-4726ea4a5da4\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"0ead3ee0-20e2-4b6a-a06a-54a5bbe12deb\",\r\n \"name\": \"0ead3ee0-20e2-4b6a-a06a-54a5bbe12deb\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T04:40:36.6101359Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.RecoveryServices/vaults/PSTestRSV1584e273/backupJobs?$filter=backupManagementType%20eq%20'AzureIaasVM'%20and%20operation%20eq%20''%20and%20startTime%20eq%20'2022-02-22%2010:15:10%20PM'%20and%20endTime%20eq%20'2022-02-23%2010:21:18%20PM'&api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMTU4NGUyNzMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YxNTg0ZTI3My9iYWNrdXBKb2JzPyRmaWx0ZXI9YmFja3VwTWFuYWdlbWVudFR5cGUlMjBlcSUyMCdBenVyZUlhYXNWTSclMjBhbmQlMjBvcGVyYXRpb24lMjBlcSUyMCcnJTIwYW5kJTIwc3RhcnRUaW1lJTIwZXElMjAnMjAyMi0wMi0yMiUyMDEwOjE1OjEwJTIwUE0nJTIwYW5kJTIwZW5kVGltZSUyMGVxJTIwJzIwMjItMDItMjMlMjAxMDoyMToxOCUyMFBNJyZhcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.RecoveryServices/vaults/PSTestRSVd78c9636/backupOperations/0ead3ee0-20e2-4b6a-a06a-54a5bbe12deb?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZDc4Yzk2MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZkNzhjOTYzNi9iYWNrdXBPcGVyYXRpb25zLzBlYWQzZWUwLTIwZTItNGI2YS1hMDZhLTU0YTViYmUxMmRlYj9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bfc287d9-b2aa-4cd3-a8b7-613e5fd34d42" + "c52fb9d5-92d4-4a3e-a2f1-48fc858932f7" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -8464,40 +11059,39 @@ "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-IIS/10.0" - ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "6ca76642-554b-495b-87c7-b69aa8c0359b" + "d6c440bb-4cc6-43fb-a7fb-5fa8dfc71691" ], "x-ms-client-request-id": [ - "bfc287d9-b2aa-4cd3-a8b7-613e5fd34d42", - "bfc287d9-b2aa-4cd3-a8b7-613e5fd34d42" - ], - "X-Powered-By": [ - "ASP.NET" + "c52fb9d5-92d4-4a3e-a2f1-48fc858932f7", + "c52fb9d5-92d4-4a3e-a2f1-48fc858932f7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "141" + "121" ], "x-ms-correlation-request-id": [ - "6ca76642-554b-495b-87c7-b69aa8c0359b" + "d6c440bb-4cc6-43fb-a7fb-5fa8dfc71691" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T222121Z:6ca76642-554b-495b-87c7-b69aa8c0359b" + "WESTINDIA:20220517T044214Z:d6c440bb-4cc6-43fb-a7fb-5fa8dfc71691" ], "Date": [ - "Wed, 23 Feb 2022 22:21:20 GMT" + "Tue, 17 May 2022 04:42:13 GMT" ], "Content-Length": [ - "1482" + "188" ], "Content-Type": [ "application/json" @@ -8506,26 +11100,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.RecoveryServices/vaults/PSTestRSV1584e273/backupJobs/83e1870f-cd17-469b-9f62-4ca6cd887df2\",\r\n \"name\": \"83e1870f-cd17-469b-9f62-4ca6cd887df2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg1584e273;pstestvm1584e2\",\r\n \"duration\": \"PT30.8627511S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"entityFriendlyName\": \"pstestvm1584e2\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"ConfigureBackup\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-02-23T22:20:34.236804Z\",\r\n \"endTime\": \"2022-02-23T22:21:05.0995551Z\",\r\n \"activityId\": \"f91fc061-ddb1-4aba-b2a4-aa3e14f5e43f\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.RecoveryServices/vaults/PSTestRSV1584e273/backupJobs/ee47eff8-290d-42e0-8dfd-a42b1321658d\",\r\n \"name\": \"ee47eff8-290d-42e0-8dfd-a42b1321658d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg1584e273;pstestvm1584e1\",\r\n \"duration\": \"PT31.0458523S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"entityFriendlyName\": \"pstestvm1584e1\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"ConfigureBackup\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-02-23T22:14:32.8984173Z\",\r\n \"endTime\": \"2022-02-23T22:15:03.9442696Z\",\r\n \"activityId\": \"55355398-b1ec-47dd-8417-4726ea4a5da4\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"0ead3ee0-20e2-4b6a-a06a-54a5bbe12deb\",\r\n \"name\": \"0ead3ee0-20e2-4b6a-a06a-54a5bbe12deb\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T04:40:36.6101359Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.RecoveryServices/vaults?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMTU4NGUyNzMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cz9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.RecoveryServices/vaults/PSTestRSVd78c9636/backupOperations/0ead3ee0-20e2-4b6a-a06a-54a5bbe12deb?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZDc4Yzk2MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZkNzhjOTYzNi9iYWNrdXBPcGVyYXRpb25zLzBlYWQzZWUwLTIwZTItNGI2YS1hMDZhLTU0YTViYmUxMmRlYj9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e368fe63-a139-48f2-940c-d06345e240e8" + "c52fb9d5-92d4-4a3e-a2f1-48fc858932f7" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesClient/4.3.2.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -8539,10 +11133,11 @@ "nosniff" ], "x-ms-request-id": [ - "fdeeffcf-f8b8-44dd-a424-33766d167f33" + "a99de71b-23d4-43c1-b181-821947baf47c" ], "x-ms-client-request-id": [ - "e368fe63-a139-48f2-940c-d06345e240e8" + "c52fb9d5-92d4-4a3e-a2f1-48fc858932f7", + "c52fb9d5-92d4-4a3e-a2f1-48fc858932f7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -8550,20 +11145,23 @@ "Server": [ "Microsoft-IIS/10.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "120" ], "x-ms-correlation-request-id": [ - "fdeeffcf-f8b8-44dd-a424-33766d167f33" + "a99de71b-23d4-43c1-b181-821947baf47c" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T222125Z:fdeeffcf-f8b8-44dd-a424-33766d167f33" + "WESTINDIA:20220517T044220Z:a99de71b-23d4-43c1-b181-821947baf47c" ], "Date": [ - "Wed, 23 Feb 2022 22:21:24 GMT" + "Tue, 17 May 2022 04:42:19 GMT" ], "Content-Length": [ - "478" + "188" ], "Content-Type": [ "application/json" @@ -8572,26 +11170,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"PSTestRSV1584e273\",\r\n \"etag\": \"W/\\\"datetime'2022-02-23T22%3A14%3A03.0031667Z'\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateEndpointStateForBackup\": \"None\",\r\n \"privateEndpointStateForSiteRecovery\": \"None\"\r\n },\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.RecoveryServices/vaults/PSTestRSV1584e273\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"0ead3ee0-20e2-4b6a-a06a-54a5bbe12deb\",\r\n \"name\": \"0ead3ee0-20e2-4b6a-a06a-54a5bbe12deb\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T04:40:36.6101359Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.RecoveryServices/vaults/PSTestRSV1584e273/backupProtectionContainers?$filter=backupManagementType%20eq%20'AzureIaasVM'%20and%20status%20eq%20'Registered'&api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMTU4NGUyNzMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YxNTg0ZTI3My9iYWNrdXBQcm90ZWN0aW9uQ29udGFpbmVycz8kZmlsdGVyPWJhY2t1cE1hbmFnZW1lbnRUeXBlJTIwZXElMjAnQXp1cmVJYWFzVk0nJTIwYW5kJTIwc3RhdHVzJTIwZXElMjAnUmVnaXN0ZXJlZCcmYXBpLXZlcnNpb249MjAyMS0xMC0wMQ==", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.RecoveryServices/vaults/PSTestRSVd78c9636/backupOperations/0ead3ee0-20e2-4b6a-a06a-54a5bbe12deb?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZDc4Yzk2MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZkNzhjOTYzNi9iYWNrdXBPcGVyYXRpb25zLzBlYWQzZWUwLTIwZTItNGI2YS1hMDZhLTU0YTViYmUxMmRlYj9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3f66db2b-eff4-4525-8a72-0d193c60529c" + "c52fb9d5-92d4-4a3e-a2f1-48fc858932f7" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -8605,11 +11203,11 @@ "nosniff" ], "x-ms-request-id": [ - "e0e409b1-e3fb-4481-8025-8b7e3648241f" + "a1f51cd9-c14f-48cc-b82f-de61d3720afd" ], "x-ms-client-request-id": [ - "3f66db2b-eff4-4525-8a72-0d193c60529c", - "3f66db2b-eff4-4525-8a72-0d193c60529c" + "c52fb9d5-92d4-4a3e-a2f1-48fc858932f7", + "c52fb9d5-92d4-4a3e-a2f1-48fc858932f7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -8621,19 +11219,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "147" + "119" ], "x-ms-correlation-request-id": [ - "e0e409b1-e3fb-4481-8025-8b7e3648241f" + "a1f51cd9-c14f-48cc-b82f-de61d3720afd" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T222125Z:e0e409b1-e3fb-4481-8025-8b7e3648241f" + "WESTINDIA:20220517T044225Z:a1f51cd9-c14f-48cc-b82f-de61d3720afd" ], "Date": [ - "Wed, 23 Feb 2022 22:21:24 GMT" + "Tue, 17 May 2022 04:42:24 GMT" ], "Content-Length": [ - "1817" + "188" ], "Content-Type": [ "application/json" @@ -8642,26 +11240,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.RecoveryServices/vaults/PSTestRSV1584e273/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrg1584e273;pstestvm1584e1\",\r\n \"name\": \"IaasVMContainer;iaasvmcontainerv2;pstestrg1584e273;pstestvm1584e1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers\",\r\n \"properties\": {\r\n \"virtualMachineId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.Compute/virtualMachines/PSTestVM1584e1\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"resourceGroup\": \"PSTestRG1584e273\",\r\n \"friendlyName\": \"PSTestVM1584e1\",\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 \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.RecoveryServices/vaults/PSTestRSV1584e273/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrg1584e273;pstestvm1584e2\",\r\n \"name\": \"IaasVMContainer;iaasvmcontainerv2;pstestrg1584e273;pstestvm1584e2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers\",\r\n \"properties\": {\r\n \"virtualMachineId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.Compute/virtualMachines/PSTestVM1584e2\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"resourceGroup\": \"PSTestRG1584e273\",\r\n \"friendlyName\": \"PSTestVM1584e2\",\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}", + "ResponseBody": "{\r\n \"id\": \"0ead3ee0-20e2-4b6a-a06a-54a5bbe12deb\",\r\n \"name\": \"0ead3ee0-20e2-4b6a-a06a-54a5bbe12deb\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T04:40:36.6101359Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.RecoveryServices/vaults/PSTestRSV1584e273/backupFabrics/Azure/protectionContainers/IaasVMContainer%3Biaasvmcontainerv2%3Bpstestrg1584e273%3Bpstestvm1584e1/protectedItems/VM%3Biaasvmcontainerv2%3Bpstestrg1584e273%3Bpstestvm1584e1/recoveryPoints?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMTU4NGUyNzMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YxNTg0ZTI3My9iYWNrdXBGYWJyaWNzL0F6dXJlL3Byb3RlY3Rpb25Db250YWluZXJzL0lhYXNWTUNvbnRhaW5lciUzQmlhYXN2bWNvbnRhaW5lcnYyJTNCcHN0ZXN0cmcxNTg0ZTI3MyUzQnBzdGVzdHZtMTU4NGUxL3Byb3RlY3RlZEl0ZW1zL1ZNJTNCaWFhc3ZtY29udGFpbmVydjIlM0Jwc3Rlc3RyZzE1ODRlMjczJTNCcHN0ZXN0dm0xNTg0ZTEvcmVjb3ZlcnlQb2ludHM/YXBpLXZlcnNpb249MjAyMS0xMC0wMQ==", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.RecoveryServices/vaults/PSTestRSVd78c9636/backupOperations/0ead3ee0-20e2-4b6a-a06a-54a5bbe12deb?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZDc4Yzk2MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZkNzhjOTYzNi9iYWNrdXBPcGVyYXRpb25zLzBlYWQzZWUwLTIwZTItNGI2YS1hMDZhLTU0YTViYmUxMmRlYj9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7f80ea71-a607-49bc-a084-126123fdfe1d" + "c52fb9d5-92d4-4a3e-a2f1-48fc858932f7" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -8675,11 +11273,11 @@ "nosniff" ], "x-ms-request-id": [ - "65ae6b0e-15d8-49a7-88b8-42cd48fbb410" + "5d52f26a-0961-4e21-84e5-ed8847dbd46c" ], "x-ms-client-request-id": [ - "7f80ea71-a607-49bc-a084-126123fdfe1d", - "7f80ea71-a607-49bc-a084-126123fdfe1d" + "c52fb9d5-92d4-4a3e-a2f1-48fc858932f7", + "c52fb9d5-92d4-4a3e-a2f1-48fc858932f7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -8691,19 +11289,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "149" + "118" ], "x-ms-correlation-request-id": [ - "65ae6b0e-15d8-49a7-88b8-42cd48fbb410" + "5d52f26a-0961-4e21-84e5-ed8847dbd46c" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T222126Z:65ae6b0e-15d8-49a7-88b8-42cd48fbb410" + "WESTINDIA:20220517T044230Z:5d52f26a-0961-4e21-84e5-ed8847dbd46c" ], "Date": [ - "Wed, 23 Feb 2022 22:21:26 GMT" + "Tue, 17 May 2022 04:42:30 GMT" ], "Content-Length": [ - "12" + "304" ], "Content-Type": [ "application/json" @@ -8712,26 +11310,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseBody": "{\r\n \"id\": \"0ead3ee0-20e2-4b6a-a06a-54a5bbe12deb\",\r\n \"name\": \"0ead3ee0-20e2-4b6a-a06a-54a5bbe12deb\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-05-17T04:40:36.6101359Z\",\r\n \"endTime\": \"2022-05-17T04:40:36.6101359Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"5f3dfc04-dea0-4343-8769-a7dae872ac4b\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.RecoveryServices/vaults/PSTestRSV1584e273/backupFabrics/Azure/protectionContainers/IaasVMContainer%3Biaasvmcontainerv2%3Bpstestrg1584e273%3Bpstestvm1584e1/protectedItems/VM%3Biaasvmcontainerv2%3Bpstestrg1584e273%3Bpstestvm1584e1?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMTU4NGUyNzMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YxNTg0ZTI3My9iYWNrdXBGYWJyaWNzL0F6dXJlL3Byb3RlY3Rpb25Db250YWluZXJzL0lhYXNWTUNvbnRhaW5lciUzQmlhYXN2bWNvbnRhaW5lcnYyJTNCcHN0ZXN0cmcxNTg0ZTI3MyUzQnBzdGVzdHZtMTU4NGUxL3Byb3RlY3RlZEl0ZW1zL1ZNJTNCaWFhc3ZtY29udGFpbmVydjIlM0Jwc3Rlc3RyZzE1ODRlMjczJTNCcHN0ZXN0dm0xNTg0ZTE/YXBpLXZlcnNpb249MjAyMS0xMC0wMQ==", - "RequestMethod": "DELETE", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.RecoveryServices/vaults/PSTestRSVd78c9636/backupOperations/0ead3ee0-20e2-4b6a-a06a-54a5bbe12deb?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZDc4Yzk2MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZkNzhjOTYzNi9iYWNrdXBPcGVyYXRpb25zLzBlYWQzZWUwLTIwZTItNGI2YS1hMDZhLTU0YTViYmUxMmRlYj9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7f80ea71-a607-49bc-a084-126123fdfe1d" + "c52fb9d5-92d4-4a3e-a2f1-48fc858932f7" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -8741,70 +11339,67 @@ "Pragma": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.RecoveryServices/vaults/PSTestRSV1584e273/backupOperationResults/6659f8ba-7a3e-4f6b-8a00-6f07df32af79?api-version=2021-10-01" - ], - "Retry-After": [ - "60" - ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.RecoveryServices/vaults/PSTestRSV1584e273/backupOperations/6659f8ba-7a3e-4f6b-8a00-6f07df32af79?api-version=2021-10-01" - ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "3ebb4bc2-10f8-4b1c-b01d-66d0629b6c6c" + "3c039885-3563-47f8-a575-c9fbe0ee0bd1" ], "x-ms-client-request-id": [ - "7f80ea71-a607-49bc-a084-126123fdfe1d", - "7f80ea71-a607-49bc-a084-126123fdfe1d" + "c52fb9d5-92d4-4a3e-a2f1-48fc858932f7", + "c52fb9d5-92d4-4a3e-a2f1-48fc858932f7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-IIS/10.0" + ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ - "14999" + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "117" ], "x-ms-correlation-request-id": [ - "3ebb4bc2-10f8-4b1c-b01d-66d0629b6c6c" + "3c039885-3563-47f8-a575-c9fbe0ee0bd1" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T222127Z:3ebb4bc2-10f8-4b1c-b01d-66d0629b6c6c" + "WESTINDIA:20220517T044231Z:3c039885-3563-47f8-a575-c9fbe0ee0bd1" ], "Date": [ - "Wed, 23 Feb 2022 22:21:26 GMT" + "Tue, 17 May 2022 04:42:31 GMT" + ], + "Content-Length": [ + "304" + ], + "Content-Type": [ + "application/json" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, - "ResponseBody": "", - "StatusCode": 202 + "ResponseBody": "{\r\n \"id\": \"0ead3ee0-20e2-4b6a-a06a-54a5bbe12deb\",\r\n \"name\": \"0ead3ee0-20e2-4b6a-a06a-54a5bbe12deb\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-05-17T04:40:36.6101359Z\",\r\n \"endTime\": \"2022-05-17T04:40:36.6101359Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"5f3dfc04-dea0-4343-8769-a7dae872ac4b\"\r\n }\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.RecoveryServices/vaults/PSTestRSV1584e273/backupOperations/6659f8ba-7a3e-4f6b-8a00-6f07df32af79?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMTU4NGUyNzMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YxNTg0ZTI3My9iYWNrdXBPcGVyYXRpb25zLzY2NTlmOGJhLTdhM2UtNGY2Yi04YTAwLTZmMDdkZjMyYWY3OT9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.RecoveryServices/vaults/PSTestRSVd78c9636/backupJobs/5f3dfc04-dea0-4343-8769-a7dae872ac4b?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZDc4Yzk2MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZkNzhjOTYzNi9iYWNrdXBKb2JzLzVmM2RmYzA0LWRlYTAtNDM0My04NzY5LWE3ZGFlODcyYWM0Yj9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7f80ea71-a607-49bc-a084-126123fdfe1d" + "c52fb9d5-92d4-4a3e-a2f1-48fc858932f7" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -8814,39 +11409,40 @@ "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-IIS/10.0", + "Microsoft-IIS/10.0" + ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "c6ea3b9f-4741-4cbe-a369-11aba3baf831" + "d4319389-e1a1-49df-b844-ecd993e4e578" ], "x-ms-client-request-id": [ - "7f80ea71-a607-49bc-a084-126123fdfe1d", - "7f80ea71-a607-49bc-a084-126123fdfe1d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-IIS/10.0" + "c52fb9d5-92d4-4a3e-a2f1-48fc858932f7", + "c52fb9d5-92d4-4a3e-a2f1-48fc858932f7" ], "X-Powered-By": [ "ASP.NET" ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "144" + "140" ], "x-ms-correlation-request-id": [ - "c6ea3b9f-4741-4cbe-a369-11aba3baf831" + "d4319389-e1a1-49df-b844-ecd993e4e578" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T222128Z:c6ea3b9f-4741-4cbe-a369-11aba3baf831" + "WESTINDIA:20220517T044231Z:d4319389-e1a1-49df-b844-ecd993e4e578" ], "Date": [ - "Wed, 23 Feb 2022 22:21:27 GMT" + "Tue, 17 May 2022 04:42:31 GMT" ], "Content-Length": [ - "188" + "844" ], "Content-Type": [ "application/json" @@ -8855,26 +11451,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"6659f8ba-7a3e-4f6b-8a00-6f07df32af79\",\r\n \"name\": \"6659f8ba-7a3e-4f6b-8a00-6f07df32af79\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-23T22:21:27.5483475Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.RecoveryServices/vaults/PSTestRSVd78c9636/backupJobs/5f3dfc04-dea0-4343-8769-a7dae872ac4b\",\r\n \"name\": \"5f3dfc04-dea0-4343-8769-a7dae872ac4b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgd78c9636;pstestvmd78c91\",\r\n \"duration\": \"PT1M51.3873181S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"VM Name\": \"PSTestVMd78c91\",\r\n \"Number of Recovery Points\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"PSTestVMd78c91\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"DeleteBackupData\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-05-17T04:40:36.6101359Z\",\r\n \"endTime\": \"2022-05-17T04:42:27.997454Z\",\r\n \"activityId\": \"c52fb9d5-92d4-4a3e-a2f1-48fc858932f7\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.RecoveryServices/vaults/PSTestRSV1584e273/backupOperations/6659f8ba-7a3e-4f6b-8a00-6f07df32af79?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMTU4NGUyNzMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YxNTg0ZTI3My9iYWNrdXBPcGVyYXRpb25zLzY2NTlmOGJhLTdhM2UtNGY2Yi04YTAwLTZmMDdkZjMyYWY3OT9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.RecoveryServices/vaults/PSTestRSVd78c9636/backupFabrics/Azure/protectionContainers/IaasVMContainer%3Biaasvmcontainerv2%3Bpstestrgd78c9636%3Bpstestvmd78c92/protectedItems/VM%3Biaasvmcontainerv2%3Bpstestrgd78c9636%3Bpstestvmd78c92/recoveryPoints?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZDc4Yzk2MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZkNzhjOTYzNi9iYWNrdXBGYWJyaWNzL0F6dXJlL3Byb3RlY3Rpb25Db250YWluZXJzL0lhYXNWTUNvbnRhaW5lciUzQmlhYXN2bWNvbnRhaW5lcnYyJTNCcHN0ZXN0cmdkNzhjOTYzNiUzQnBzdGVzdHZtZDc4YzkyL3Byb3RlY3RlZEl0ZW1zL1ZNJTNCaWFhc3ZtY29udGFpbmVydjIlM0Jwc3Rlc3RyZ2Q3OGM5NjM2JTNCcHN0ZXN0dm1kNzhjOTIvcmVjb3ZlcnlQb2ludHM/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7f80ea71-a607-49bc-a084-126123fdfe1d" + "e812749e-cfbf-4113-9518-6a8784bbadca" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -8888,11 +11484,11 @@ "nosniff" ], "x-ms-request-id": [ - "9eaef21e-7fcb-409a-b7ca-a26f469e1d14" + "64ecd370-ab30-4068-b0ba-ea253a0df6d3" ], "x-ms-client-request-id": [ - "7f80ea71-a607-49bc-a084-126123fdfe1d", - "7f80ea71-a607-49bc-a084-126123fdfe1d" + "e812749e-cfbf-4113-9518-6a8784bbadca", + "e812749e-cfbf-4113-9518-6a8784bbadca" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -8904,19 +11500,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "143" + "148" ], "x-ms-correlation-request-id": [ - "9eaef21e-7fcb-409a-b7ca-a26f469e1d14" + "64ecd370-ab30-4068-b0ba-ea253a0df6d3" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T222139Z:9eaef21e-7fcb-409a-b7ca-a26f469e1d14" + "WESTINDIA:20220517T044232Z:64ecd370-ab30-4068-b0ba-ea253a0df6d3" ], "Date": [ - "Wed, 23 Feb 2022 22:21:38 GMT" + "Tue, 17 May 2022 04:42:32 GMT" ], "Content-Length": [ - "188" + "12" ], "Content-Type": [ "application/json" @@ -8925,26 +11521,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"6659f8ba-7a3e-4f6b-8a00-6f07df32af79\",\r\n \"name\": \"6659f8ba-7a3e-4f6b-8a00-6f07df32af79\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-23T22:21:27.5483475Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"value\": []\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.RecoveryServices/vaults/PSTestRSV1584e273/backupOperations/6659f8ba-7a3e-4f6b-8a00-6f07df32af79?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMTU4NGUyNzMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YxNTg0ZTI3My9iYWNrdXBPcGVyYXRpb25zLzY2NTlmOGJhLTdhM2UtNGY2Yi04YTAwLTZmMDdkZjMyYWY3OT9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", - "RequestMethod": "GET", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.RecoveryServices/vaults/PSTestRSVd78c9636/backupFabrics/Azure/protectionContainers/IaasVMContainer%3Biaasvmcontainerv2%3Bpstestrgd78c9636%3Bpstestvmd78c92/protectedItems/VM%3Biaasvmcontainerv2%3Bpstestrgd78c9636%3Bpstestvmd78c92?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZDc4Yzk2MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZkNzhjOTYzNi9iYWNrdXBGYWJyaWNzL0F6dXJlL3Byb3RlY3Rpb25Db250YWluZXJzL0lhYXNWTUNvbnRhaW5lciUzQmlhYXN2bWNvbnRhaW5lcnYyJTNCcHN0ZXN0cmdkNzhjOTYzNiUzQnBzdGVzdHZtZDc4YzkyL3Byb3RlY3RlZEl0ZW1zL1ZNJTNCaWFhc3ZtY29udGFpbmVydjIlM0Jwc3Rlc3RyZ2Q3OGM5NjM2JTNCcHN0ZXN0dm1kNzhjOTI/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7f80ea71-a607-49bc-a084-126123fdfe1d" + "e812749e-cfbf-4113-9518-6a8784bbadca" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -8954,67 +11550,70 @@ "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.RecoveryServices/vaults/PSTestRSVd78c9636/backupOperationResults/98d50cbb-5447-4778-aeca-f775543bac09?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.RecoveryServices/vaults/PSTestRSVd78c9636/backupOperations/98d50cbb-5447-4778-aeca-f775543bac09?api-version=2022-02-01" + ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "44c9080f-8183-4fb7-893f-4875b6f4f38f" + "9aae8a7a-a01d-45ef-b01f-181c02715bf1" ], "x-ms-client-request-id": [ - "7f80ea71-a607-49bc-a084-126123fdfe1d", - "7f80ea71-a607-49bc-a084-126123fdfe1d" + "e812749e-cfbf-4113-9518-6a8784bbadca", + "e812749e-cfbf-4113-9518-6a8784bbadca" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Server": [ - "Microsoft-IIS/10.0" - ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "142" + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14998" ], "x-ms-correlation-request-id": [ - "44c9080f-8183-4fb7-893f-4875b6f4f38f" + "9aae8a7a-a01d-45ef-b01f-181c02715bf1" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T222150Z:44c9080f-8183-4fb7-893f-4875b6f4f38f" + "WESTINDIA:20220517T044233Z:9aae8a7a-a01d-45ef-b01f-181c02715bf1" ], "Date": [ - "Wed, 23 Feb 2022 22:21:50 GMT" - ], - "Content-Length": [ - "188" - ], - "Content-Type": [ - "application/json" + "Tue, 17 May 2022 04:42:33 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, - "ResponseBody": "{\r\n \"id\": \"6659f8ba-7a3e-4f6b-8a00-6f07df32af79\",\r\n \"name\": \"6659f8ba-7a3e-4f6b-8a00-6f07df32af79\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-23T22:21:27.5483475Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", - "StatusCode": 200 + "ResponseBody": "", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.RecoveryServices/vaults/PSTestRSV1584e273/backupOperations/6659f8ba-7a3e-4f6b-8a00-6f07df32af79?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMTU4NGUyNzMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YxNTg0ZTI3My9iYWNrdXBPcGVyYXRpb25zLzY2NTlmOGJhLTdhM2UtNGY2Yi04YTAwLTZmMDdkZjMyYWY3OT9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.RecoveryServices/vaults/PSTestRSVd78c9636/backupOperations/98d50cbb-5447-4778-aeca-f775543bac09?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZDc4Yzk2MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZkNzhjOTYzNi9iYWNrdXBPcGVyYXRpb25zLzk4ZDUwY2JiLTU0NDctNDc3OC1hZWNhLWY3NzU1NDNiYWMwOT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7f80ea71-a607-49bc-a084-126123fdfe1d" + "e812749e-cfbf-4113-9518-6a8784bbadca" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -9028,11 +11627,11 @@ "nosniff" ], "x-ms-request-id": [ - "7fb03185-386a-4970-a13b-5e13d998636d" + "41e01d69-1777-47e6-98dd-b0114c7c6511" ], "x-ms-client-request-id": [ - "7f80ea71-a607-49bc-a084-126123fdfe1d", - "7f80ea71-a607-49bc-a084-126123fdfe1d" + "e812749e-cfbf-4113-9518-6a8784bbadca", + "e812749e-cfbf-4113-9518-6a8784bbadca" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -9044,16 +11643,16 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "141" + "116" ], "x-ms-correlation-request-id": [ - "7fb03185-386a-4970-a13b-5e13d998636d" + "41e01d69-1777-47e6-98dd-b0114c7c6511" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T222201Z:7fb03185-386a-4970-a13b-5e13d998636d" + "WESTINDIA:20220517T044234Z:41e01d69-1777-47e6-98dd-b0114c7c6511" ], "Date": [ - "Wed, 23 Feb 2022 22:22:01 GMT" + "Tue, 17 May 2022 04:42:34 GMT" ], "Content-Length": [ "188" @@ -9065,26 +11664,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"6659f8ba-7a3e-4f6b-8a00-6f07df32af79\",\r\n \"name\": \"6659f8ba-7a3e-4f6b-8a00-6f07df32af79\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-23T22:21:27.5483475Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"98d50cbb-5447-4778-aeca-f775543bac09\",\r\n \"name\": \"98d50cbb-5447-4778-aeca-f775543bac09\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T04:42:33.6314297Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.RecoveryServices/vaults/PSTestRSV1584e273/backupOperations/6659f8ba-7a3e-4f6b-8a00-6f07df32af79?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMTU4NGUyNzMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YxNTg0ZTI3My9iYWNrdXBPcGVyYXRpb25zLzY2NTlmOGJhLTdhM2UtNGY2Yi04YTAwLTZmMDdkZjMyYWY3OT9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.RecoveryServices/vaults/PSTestRSVd78c9636/backupOperations/98d50cbb-5447-4778-aeca-f775543bac09?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZDc4Yzk2MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZkNzhjOTYzNi9iYWNrdXBPcGVyYXRpb25zLzk4ZDUwY2JiLTU0NDctNDc3OC1hZWNhLWY3NzU1NDNiYWMwOT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7f80ea71-a607-49bc-a084-126123fdfe1d" + "e812749e-cfbf-4113-9518-6a8784bbadca" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -9098,11 +11697,11 @@ "nosniff" ], "x-ms-request-id": [ - "a90b3866-9cfb-4e34-a047-c57d9c7c66b7" + "5246658d-baaa-4e0f-ba01-cf059ba8f8f3" ], "x-ms-client-request-id": [ - "7f80ea71-a607-49bc-a084-126123fdfe1d", - "7f80ea71-a607-49bc-a084-126123fdfe1d" + "e812749e-cfbf-4113-9518-6a8784bbadca", + "e812749e-cfbf-4113-9518-6a8784bbadca" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -9114,16 +11713,16 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "140" + "115" ], "x-ms-correlation-request-id": [ - "a90b3866-9cfb-4e34-a047-c57d9c7c66b7" + "5246658d-baaa-4e0f-ba01-cf059ba8f8f3" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T222212Z:a90b3866-9cfb-4e34-a047-c57d9c7c66b7" + "WESTINDIA:20220517T044239Z:5246658d-baaa-4e0f-ba01-cf059ba8f8f3" ], "Date": [ - "Wed, 23 Feb 2022 22:22:11 GMT" + "Tue, 17 May 2022 04:42:39 GMT" ], "Content-Length": [ "188" @@ -9135,26 +11734,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"6659f8ba-7a3e-4f6b-8a00-6f07df32af79\",\r\n \"name\": \"6659f8ba-7a3e-4f6b-8a00-6f07df32af79\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-23T22:21:27.5483475Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"98d50cbb-5447-4778-aeca-f775543bac09\",\r\n \"name\": \"98d50cbb-5447-4778-aeca-f775543bac09\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T04:42:33.6314297Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.RecoveryServices/vaults/PSTestRSV1584e273/backupOperations/6659f8ba-7a3e-4f6b-8a00-6f07df32af79?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMTU4NGUyNzMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YxNTg0ZTI3My9iYWNrdXBPcGVyYXRpb25zLzY2NTlmOGJhLTdhM2UtNGY2Yi04YTAwLTZmMDdkZjMyYWY3OT9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.RecoveryServices/vaults/PSTestRSVd78c9636/backupOperations/98d50cbb-5447-4778-aeca-f775543bac09?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZDc4Yzk2MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZkNzhjOTYzNi9iYWNrdXBPcGVyYXRpb25zLzk4ZDUwY2JiLTU0NDctNDc3OC1hZWNhLWY3NzU1NDNiYWMwOT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7f80ea71-a607-49bc-a084-126123fdfe1d" + "e812749e-cfbf-4113-9518-6a8784bbadca" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -9168,11 +11767,11 @@ "nosniff" ], "x-ms-request-id": [ - "54906064-3950-4a2d-80ad-904588895c01" + "082a6c2f-2276-4683-a22b-892d31ed117c" ], "x-ms-client-request-id": [ - "7f80ea71-a607-49bc-a084-126123fdfe1d", - "7f80ea71-a607-49bc-a084-126123fdfe1d" + "e812749e-cfbf-4113-9518-6a8784bbadca", + "e812749e-cfbf-4113-9518-6a8784bbadca" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -9184,16 +11783,16 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "139" + "114" ], "x-ms-correlation-request-id": [ - "54906064-3950-4a2d-80ad-904588895c01" + "082a6c2f-2276-4683-a22b-892d31ed117c" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T222222Z:54906064-3950-4a2d-80ad-904588895c01" + "WESTINDIA:20220517T044245Z:082a6c2f-2276-4683-a22b-892d31ed117c" ], "Date": [ - "Wed, 23 Feb 2022 22:22:22 GMT" + "Tue, 17 May 2022 04:42:44 GMT" ], "Content-Length": [ "188" @@ -9205,26 +11804,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"6659f8ba-7a3e-4f6b-8a00-6f07df32af79\",\r\n \"name\": \"6659f8ba-7a3e-4f6b-8a00-6f07df32af79\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-23T22:21:27.5483475Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"98d50cbb-5447-4778-aeca-f775543bac09\",\r\n \"name\": \"98d50cbb-5447-4778-aeca-f775543bac09\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T04:42:33.6314297Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.RecoveryServices/vaults/PSTestRSV1584e273/backupOperations/6659f8ba-7a3e-4f6b-8a00-6f07df32af79?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMTU4NGUyNzMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YxNTg0ZTI3My9iYWNrdXBPcGVyYXRpb25zLzY2NTlmOGJhLTdhM2UtNGY2Yi04YTAwLTZmMDdkZjMyYWY3OT9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.RecoveryServices/vaults/PSTestRSVd78c9636/backupOperations/98d50cbb-5447-4778-aeca-f775543bac09?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZDc4Yzk2MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZkNzhjOTYzNi9iYWNrdXBPcGVyYXRpb25zLzk4ZDUwY2JiLTU0NDctNDc3OC1hZWNhLWY3NzU1NDNiYWMwOT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7f80ea71-a607-49bc-a084-126123fdfe1d" + "e812749e-cfbf-4113-9518-6a8784bbadca" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -9238,11 +11837,11 @@ "nosniff" ], "x-ms-request-id": [ - "40a2ba4f-d7b6-4d72-88a1-3cfb93c1f9eb" + "b5b6d7f3-e6fe-4260-8a06-2cdab550772c" ], "x-ms-client-request-id": [ - "7f80ea71-a607-49bc-a084-126123fdfe1d", - "7f80ea71-a607-49bc-a084-126123fdfe1d" + "e812749e-cfbf-4113-9518-6a8784bbadca", + "e812749e-cfbf-4113-9518-6a8784bbadca" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -9254,16 +11853,16 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "138" + "113" ], "x-ms-correlation-request-id": [ - "40a2ba4f-d7b6-4d72-88a1-3cfb93c1f9eb" + "b5b6d7f3-e6fe-4260-8a06-2cdab550772c" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T222233Z:40a2ba4f-d7b6-4d72-88a1-3cfb93c1f9eb" + "WESTINDIA:20220517T044250Z:b5b6d7f3-e6fe-4260-8a06-2cdab550772c" ], "Date": [ - "Wed, 23 Feb 2022 22:22:32 GMT" + "Tue, 17 May 2022 04:42:50 GMT" ], "Content-Length": [ "188" @@ -9275,26 +11874,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"6659f8ba-7a3e-4f6b-8a00-6f07df32af79\",\r\n \"name\": \"6659f8ba-7a3e-4f6b-8a00-6f07df32af79\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-23T22:21:27.5483475Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"98d50cbb-5447-4778-aeca-f775543bac09\",\r\n \"name\": \"98d50cbb-5447-4778-aeca-f775543bac09\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T04:42:33.6314297Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.RecoveryServices/vaults/PSTestRSV1584e273/backupOperations/6659f8ba-7a3e-4f6b-8a00-6f07df32af79?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMTU4NGUyNzMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YxNTg0ZTI3My9iYWNrdXBPcGVyYXRpb25zLzY2NTlmOGJhLTdhM2UtNGY2Yi04YTAwLTZmMDdkZjMyYWY3OT9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.RecoveryServices/vaults/PSTestRSVd78c9636/backupOperations/98d50cbb-5447-4778-aeca-f775543bac09?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZDc4Yzk2MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZkNzhjOTYzNi9iYWNrdXBPcGVyYXRpb25zLzk4ZDUwY2JiLTU0NDctNDc3OC1hZWNhLWY3NzU1NDNiYWMwOT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7f80ea71-a607-49bc-a084-126123fdfe1d" + "e812749e-cfbf-4113-9518-6a8784bbadca" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -9308,11 +11907,11 @@ "nosniff" ], "x-ms-request-id": [ - "50964523-a558-41e3-9ece-a88b3b9099a7" + "8d7e3b00-eb2b-4b9e-9a76-8b3cae9dbee9" ], "x-ms-client-request-id": [ - "7f80ea71-a607-49bc-a084-126123fdfe1d", - "7f80ea71-a607-49bc-a084-126123fdfe1d" + "e812749e-cfbf-4113-9518-6a8784bbadca", + "e812749e-cfbf-4113-9518-6a8784bbadca" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -9324,16 +11923,16 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "137" + "112" ], "x-ms-correlation-request-id": [ - "50964523-a558-41e3-9ece-a88b3b9099a7" + "8d7e3b00-eb2b-4b9e-9a76-8b3cae9dbee9" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T222244Z:50964523-a558-41e3-9ece-a88b3b9099a7" + "WESTINDIA:20220517T044256Z:8d7e3b00-eb2b-4b9e-9a76-8b3cae9dbee9" ], "Date": [ - "Wed, 23 Feb 2022 22:22:43 GMT" + "Tue, 17 May 2022 04:42:55 GMT" ], "Content-Length": [ "188" @@ -9345,26 +11944,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"6659f8ba-7a3e-4f6b-8a00-6f07df32af79\",\r\n \"name\": \"6659f8ba-7a3e-4f6b-8a00-6f07df32af79\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-23T22:21:27.5483475Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"98d50cbb-5447-4778-aeca-f775543bac09\",\r\n \"name\": \"98d50cbb-5447-4778-aeca-f775543bac09\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T04:42:33.6314297Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.RecoveryServices/vaults/PSTestRSV1584e273/backupOperations/6659f8ba-7a3e-4f6b-8a00-6f07df32af79?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMTU4NGUyNzMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YxNTg0ZTI3My9iYWNrdXBPcGVyYXRpb25zLzY2NTlmOGJhLTdhM2UtNGY2Yi04YTAwLTZmMDdkZjMyYWY3OT9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.RecoveryServices/vaults/PSTestRSVd78c9636/backupOperations/98d50cbb-5447-4778-aeca-f775543bac09?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZDc4Yzk2MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZkNzhjOTYzNi9iYWNrdXBPcGVyYXRpb25zLzk4ZDUwY2JiLTU0NDctNDc3OC1hZWNhLWY3NzU1NDNiYWMwOT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7f80ea71-a607-49bc-a084-126123fdfe1d" + "e812749e-cfbf-4113-9518-6a8784bbadca" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -9378,11 +11977,11 @@ "nosniff" ], "x-ms-request-id": [ - "90e8af28-b23f-4349-9df5-a826a5f649b0" + "8983f347-6499-4887-a10e-442856e4181f" ], "x-ms-client-request-id": [ - "7f80ea71-a607-49bc-a084-126123fdfe1d", - "7f80ea71-a607-49bc-a084-126123fdfe1d" + "e812749e-cfbf-4113-9518-6a8784bbadca", + "e812749e-cfbf-4113-9518-6a8784bbadca" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -9394,16 +11993,16 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "136" + "111" ], "x-ms-correlation-request-id": [ - "90e8af28-b23f-4349-9df5-a826a5f649b0" + "8983f347-6499-4887-a10e-442856e4181f" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T222254Z:90e8af28-b23f-4349-9df5-a826a5f649b0" + "WESTINDIA:20220517T044301Z:8983f347-6499-4887-a10e-442856e4181f" ], "Date": [ - "Wed, 23 Feb 2022 22:22:54 GMT" + "Tue, 17 May 2022 04:43:00 GMT" ], "Content-Length": [ "188" @@ -9415,26 +12014,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"6659f8ba-7a3e-4f6b-8a00-6f07df32af79\",\r\n \"name\": \"6659f8ba-7a3e-4f6b-8a00-6f07df32af79\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-23T22:21:27.5483475Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"98d50cbb-5447-4778-aeca-f775543bac09\",\r\n \"name\": \"98d50cbb-5447-4778-aeca-f775543bac09\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T04:42:33.6314297Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.RecoveryServices/vaults/PSTestRSV1584e273/backupOperations/6659f8ba-7a3e-4f6b-8a00-6f07df32af79?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMTU4NGUyNzMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YxNTg0ZTI3My9iYWNrdXBPcGVyYXRpb25zLzY2NTlmOGJhLTdhM2UtNGY2Yi04YTAwLTZmMDdkZjMyYWY3OT9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.RecoveryServices/vaults/PSTestRSVd78c9636/backupOperations/98d50cbb-5447-4778-aeca-f775543bac09?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZDc4Yzk2MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZkNzhjOTYzNi9iYWNrdXBPcGVyYXRpb25zLzk4ZDUwY2JiLTU0NDctNDc3OC1hZWNhLWY3NzU1NDNiYWMwOT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7f80ea71-a607-49bc-a084-126123fdfe1d" + "e812749e-cfbf-4113-9518-6a8784bbadca" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -9448,11 +12047,11 @@ "nosniff" ], "x-ms-request-id": [ - "f5706b15-f18b-4676-af9c-6f84e139c0aa" + "a589a004-443b-40ce-a8c2-80e8f8bd5270" ], "x-ms-client-request-id": [ - "7f80ea71-a607-49bc-a084-126123fdfe1d", - "7f80ea71-a607-49bc-a084-126123fdfe1d" + "e812749e-cfbf-4113-9518-6a8784bbadca", + "e812749e-cfbf-4113-9518-6a8784bbadca" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -9464,16 +12063,16 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "135" + "110" ], "x-ms-correlation-request-id": [ - "f5706b15-f18b-4676-af9c-6f84e139c0aa" + "a589a004-443b-40ce-a8c2-80e8f8bd5270" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T222306Z:f5706b15-f18b-4676-af9c-6f84e139c0aa" + "WESTINDIA:20220517T044306Z:a589a004-443b-40ce-a8c2-80e8f8bd5270" ], "Date": [ - "Wed, 23 Feb 2022 22:23:06 GMT" + "Tue, 17 May 2022 04:43:06 GMT" ], "Content-Length": [ "188" @@ -9485,26 +12084,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"6659f8ba-7a3e-4f6b-8a00-6f07df32af79\",\r\n \"name\": \"6659f8ba-7a3e-4f6b-8a00-6f07df32af79\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-23T22:21:27.5483475Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"98d50cbb-5447-4778-aeca-f775543bac09\",\r\n \"name\": \"98d50cbb-5447-4778-aeca-f775543bac09\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T04:42:33.6314297Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.RecoveryServices/vaults/PSTestRSV1584e273/backupOperations/6659f8ba-7a3e-4f6b-8a00-6f07df32af79?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMTU4NGUyNzMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YxNTg0ZTI3My9iYWNrdXBPcGVyYXRpb25zLzY2NTlmOGJhLTdhM2UtNGY2Yi04YTAwLTZmMDdkZjMyYWY3OT9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.RecoveryServices/vaults/PSTestRSVd78c9636/backupOperations/98d50cbb-5447-4778-aeca-f775543bac09?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZDc4Yzk2MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZkNzhjOTYzNi9iYWNrdXBPcGVyYXRpb25zLzk4ZDUwY2JiLTU0NDctNDc3OC1hZWNhLWY3NzU1NDNiYWMwOT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7f80ea71-a607-49bc-a084-126123fdfe1d" + "e812749e-cfbf-4113-9518-6a8784bbadca" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -9518,11 +12117,11 @@ "nosniff" ], "x-ms-request-id": [ - "45dd1c3c-5cc4-45f0-834d-b26e98cf2663" + "d735f868-e8ad-421a-9c3e-cd87d707aa54" ], "x-ms-client-request-id": [ - "7f80ea71-a607-49bc-a084-126123fdfe1d", - "7f80ea71-a607-49bc-a084-126123fdfe1d" + "e812749e-cfbf-4113-9518-6a8784bbadca", + "e812749e-cfbf-4113-9518-6a8784bbadca" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -9534,16 +12133,16 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "134" + "109" ], "x-ms-correlation-request-id": [ - "45dd1c3c-5cc4-45f0-834d-b26e98cf2663" + "d735f868-e8ad-421a-9c3e-cd87d707aa54" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T222317Z:45dd1c3c-5cc4-45f0-834d-b26e98cf2663" + "WESTINDIA:20220517T044312Z:d735f868-e8ad-421a-9c3e-cd87d707aa54" ], "Date": [ - "Wed, 23 Feb 2022 22:23:16 GMT" + "Tue, 17 May 2022 04:43:11 GMT" ], "Content-Length": [ "188" @@ -9555,26 +12154,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"6659f8ba-7a3e-4f6b-8a00-6f07df32af79\",\r\n \"name\": \"6659f8ba-7a3e-4f6b-8a00-6f07df32af79\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-23T22:21:27.5483475Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"98d50cbb-5447-4778-aeca-f775543bac09\",\r\n \"name\": \"98d50cbb-5447-4778-aeca-f775543bac09\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T04:42:33.6314297Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.RecoveryServices/vaults/PSTestRSV1584e273/backupOperations/6659f8ba-7a3e-4f6b-8a00-6f07df32af79?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMTU4NGUyNzMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YxNTg0ZTI3My9iYWNrdXBPcGVyYXRpb25zLzY2NTlmOGJhLTdhM2UtNGY2Yi04YTAwLTZmMDdkZjMyYWY3OT9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.RecoveryServices/vaults/PSTestRSVd78c9636/backupOperations/98d50cbb-5447-4778-aeca-f775543bac09?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZDc4Yzk2MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZkNzhjOTYzNi9iYWNrdXBPcGVyYXRpb25zLzk4ZDUwY2JiLTU0NDctNDc3OC1hZWNhLWY3NzU1NDNiYWMwOT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7f80ea71-a607-49bc-a084-126123fdfe1d" + "e812749e-cfbf-4113-9518-6a8784bbadca" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -9588,11 +12187,11 @@ "nosniff" ], "x-ms-request-id": [ - "d45bab50-5dc7-498b-9eef-9bf255391e77" + "298037f7-ffa9-4492-a90a-dec4041f6f1f" ], "x-ms-client-request-id": [ - "7f80ea71-a607-49bc-a084-126123fdfe1d", - "7f80ea71-a607-49bc-a084-126123fdfe1d" + "e812749e-cfbf-4113-9518-6a8784bbadca", + "e812749e-cfbf-4113-9518-6a8784bbadca" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -9604,19 +12203,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "133" + "108" ], "x-ms-correlation-request-id": [ - "d45bab50-5dc7-498b-9eef-9bf255391e77" + "298037f7-ffa9-4492-a90a-dec4041f6f1f" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T222328Z:d45bab50-5dc7-498b-9eef-9bf255391e77" + "WESTINDIA:20220517T044317Z:298037f7-ffa9-4492-a90a-dec4041f6f1f" ], "Date": [ - "Wed, 23 Feb 2022 22:23:28 GMT" + "Tue, 17 May 2022 04:43:16 GMT" ], "Content-Length": [ - "304" + "188" ], "Content-Type": [ "application/json" @@ -9625,26 +12224,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"6659f8ba-7a3e-4f6b-8a00-6f07df32af79\",\r\n \"name\": \"6659f8ba-7a3e-4f6b-8a00-6f07df32af79\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-02-23T22:21:27.5483475Z\",\r\n \"endTime\": \"2022-02-23T22:21:27.5483475Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"07f78dcb-f38a-405d-b02a-931ebd62171d\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"98d50cbb-5447-4778-aeca-f775543bac09\",\r\n \"name\": \"98d50cbb-5447-4778-aeca-f775543bac09\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T04:42:33.6314297Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.RecoveryServices/vaults/PSTestRSV1584e273/backupOperations/6659f8ba-7a3e-4f6b-8a00-6f07df32af79?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMTU4NGUyNzMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YxNTg0ZTI3My9iYWNrdXBPcGVyYXRpb25zLzY2NTlmOGJhLTdhM2UtNGY2Yi04YTAwLTZmMDdkZjMyYWY3OT9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.RecoveryServices/vaults/PSTestRSVd78c9636/backupOperations/98d50cbb-5447-4778-aeca-f775543bac09?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZDc4Yzk2MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZkNzhjOTYzNi9iYWNrdXBPcGVyYXRpb25zLzk4ZDUwY2JiLTU0NDctNDc3OC1hZWNhLWY3NzU1NDNiYWMwOT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7f80ea71-a607-49bc-a084-126123fdfe1d" + "e812749e-cfbf-4113-9518-6a8784bbadca" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -9658,11 +12257,11 @@ "nosniff" ], "x-ms-request-id": [ - "c72989f8-e41c-43b2-98a1-50cc0f08a1a8" + "9ceef4d8-8e0a-4940-bccd-35ea12cf9680" ], "x-ms-client-request-id": [ - "7f80ea71-a607-49bc-a084-126123fdfe1d", - "7f80ea71-a607-49bc-a084-126123fdfe1d" + "e812749e-cfbf-4113-9518-6a8784bbadca", + "e812749e-cfbf-4113-9518-6a8784bbadca" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -9674,19 +12273,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "132" + "107" ], "x-ms-correlation-request-id": [ - "c72989f8-e41c-43b2-98a1-50cc0f08a1a8" + "9ceef4d8-8e0a-4940-bccd-35ea12cf9680" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T222328Z:c72989f8-e41c-43b2-98a1-50cc0f08a1a8" + "WESTINDIA:20220517T044323Z:9ceef4d8-8e0a-4940-bccd-35ea12cf9680" ], "Date": [ - "Wed, 23 Feb 2022 22:23:28 GMT" + "Tue, 17 May 2022 04:43:23 GMT" ], "Content-Length": [ - "304" + "188" ], "Content-Type": [ "application/json" @@ -9695,26 +12294,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"6659f8ba-7a3e-4f6b-8a00-6f07df32af79\",\r\n \"name\": \"6659f8ba-7a3e-4f6b-8a00-6f07df32af79\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-02-23T22:21:27.5483475Z\",\r\n \"endTime\": \"2022-02-23T22:21:27.5483475Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"07f78dcb-f38a-405d-b02a-931ebd62171d\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"98d50cbb-5447-4778-aeca-f775543bac09\",\r\n \"name\": \"98d50cbb-5447-4778-aeca-f775543bac09\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T04:42:33.6314297Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.RecoveryServices/vaults/PSTestRSV1584e273/backupJobs/07f78dcb-f38a-405d-b02a-931ebd62171d?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMTU4NGUyNzMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YxNTg0ZTI3My9iYWNrdXBKb2JzLzA3Zjc4ZGNiLWYzOGEtNDA1ZC1iMDJhLTkzMWViZDYyMTcxZD9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.RecoveryServices/vaults/PSTestRSVd78c9636/backupOperations/98d50cbb-5447-4778-aeca-f775543bac09?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZDc4Yzk2MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZkNzhjOTYzNi9iYWNrdXBPcGVyYXRpb25zLzk4ZDUwY2JiLTU0NDctNDc3OC1hZWNhLWY3NzU1NDNiYWMwOT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7f80ea71-a607-49bc-a084-126123fdfe1d" + "e812749e-cfbf-4113-9518-6a8784bbadca" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -9724,40 +12323,39 @@ "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-IIS/10.0" - ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "ec66fae2-a289-4f79-b103-946e755387f2" + "6b51f950-7e76-40e8-bd8c-1fa32ad01404" ], "x-ms-client-request-id": [ - "7f80ea71-a607-49bc-a084-126123fdfe1d", - "7f80ea71-a607-49bc-a084-126123fdfe1d" - ], - "X-Powered-By": [ - "ASP.NET" + "e812749e-cfbf-4113-9518-6a8784bbadca", + "e812749e-cfbf-4113-9518-6a8784bbadca" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "140" + "106" ], "x-ms-correlation-request-id": [ - "ec66fae2-a289-4f79-b103-946e755387f2" + "6b51f950-7e76-40e8-bd8c-1fa32ad01404" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T222329Z:ec66fae2-a289-4f79-b103-946e755387f2" + "WESTINDIA:20220517T044328Z:6b51f950-7e76-40e8-bd8c-1fa32ad01404" ], "Date": [ - "Wed, 23 Feb 2022 22:23:29 GMT" + "Tue, 17 May 2022 04:43:28 GMT" ], "Content-Length": [ - "845" + "188" ], "Content-Type": [ "application/json" @@ -9766,26 +12364,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.RecoveryServices/vaults/PSTestRSV1584e273/backupJobs/07f78dcb-f38a-405d-b02a-931ebd62171d\",\r\n \"name\": \"07f78dcb-f38a-405d-b02a-931ebd62171d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg1584e273;pstestvm1584e1\",\r\n \"duration\": \"PT1M51.4139346S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"VM Name\": \"PSTestVM1584e1\",\r\n \"Number of Recovery Points\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"PSTestVM1584e1\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"DeleteBackupData\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-02-23T22:21:27.5483475Z\",\r\n \"endTime\": \"2022-02-23T22:23:18.9622821Z\",\r\n \"activityId\": \"7f80ea71-a607-49bc-a084-126123fdfe1d\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"98d50cbb-5447-4778-aeca-f775543bac09\",\r\n \"name\": \"98d50cbb-5447-4778-aeca-f775543bac09\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T04:42:33.6314297Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.RecoveryServices/vaults/PSTestRSV1584e273/backupFabrics/Azure/protectionContainers/IaasVMContainer%3Biaasvmcontainerv2%3Bpstestrg1584e273%3Bpstestvm1584e2/protectedItems/VM%3Biaasvmcontainerv2%3Bpstestrg1584e273%3Bpstestvm1584e2/recoveryPoints?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMTU4NGUyNzMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YxNTg0ZTI3My9iYWNrdXBGYWJyaWNzL0F6dXJlL3Byb3RlY3Rpb25Db250YWluZXJzL0lhYXNWTUNvbnRhaW5lciUzQmlhYXN2bWNvbnRhaW5lcnYyJTNCcHN0ZXN0cmcxNTg0ZTI3MyUzQnBzdGVzdHZtMTU4NGUyL3Byb3RlY3RlZEl0ZW1zL1ZNJTNCaWFhc3ZtY29udGFpbmVydjIlM0Jwc3Rlc3RyZzE1ODRlMjczJTNCcHN0ZXN0dm0xNTg0ZTIvcmVjb3ZlcnlQb2ludHM/YXBpLXZlcnNpb249MjAyMS0xMC0wMQ==", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.RecoveryServices/vaults/PSTestRSVd78c9636/backupOperations/98d50cbb-5447-4778-aeca-f775543bac09?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZDc4Yzk2MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZkNzhjOTYzNi9iYWNrdXBPcGVyYXRpb25zLzk4ZDUwY2JiLTU0NDctNDc3OC1hZWNhLWY3NzU1NDNiYWMwOT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4a9f9689-9e19-4012-86aa-6212bf8eb727" + "e812749e-cfbf-4113-9518-6a8784bbadca" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -9799,11 +12397,11 @@ "nosniff" ], "x-ms-request-id": [ - "01e288b2-cc8c-4965-bb05-2258e86133ee" + "b62f6364-df54-4e53-8e17-724fad8edfe5" ], "x-ms-client-request-id": [ - "4a9f9689-9e19-4012-86aa-6212bf8eb727", - "4a9f9689-9e19-4012-86aa-6212bf8eb727" + "e812749e-cfbf-4113-9518-6a8784bbadca", + "e812749e-cfbf-4113-9518-6a8784bbadca" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -9815,19 +12413,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "148" + "105" ], "x-ms-correlation-request-id": [ - "01e288b2-cc8c-4965-bb05-2258e86133ee" + "b62f6364-df54-4e53-8e17-724fad8edfe5" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T222330Z:01e288b2-cc8c-4965-bb05-2258e86133ee" + "WESTINDIA:20220517T044334Z:b62f6364-df54-4e53-8e17-724fad8edfe5" ], "Date": [ - "Wed, 23 Feb 2022 22:23:30 GMT" + "Tue, 17 May 2022 04:43:33 GMT" ], "Content-Length": [ - "12" + "188" ], "Content-Type": [ "application/json" @@ -9836,26 +12434,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseBody": "{\r\n \"id\": \"98d50cbb-5447-4778-aeca-f775543bac09\",\r\n \"name\": \"98d50cbb-5447-4778-aeca-f775543bac09\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T04:42:33.6314297Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.RecoveryServices/vaults/PSTestRSV1584e273/backupFabrics/Azure/protectionContainers/IaasVMContainer%3Biaasvmcontainerv2%3Bpstestrg1584e273%3Bpstestvm1584e2/protectedItems/VM%3Biaasvmcontainerv2%3Bpstestrg1584e273%3Bpstestvm1584e2?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMTU4NGUyNzMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YxNTg0ZTI3My9iYWNrdXBGYWJyaWNzL0F6dXJlL3Byb3RlY3Rpb25Db250YWluZXJzL0lhYXNWTUNvbnRhaW5lciUzQmlhYXN2bWNvbnRhaW5lcnYyJTNCcHN0ZXN0cmcxNTg0ZTI3MyUzQnBzdGVzdHZtMTU4NGUyL3Byb3RlY3RlZEl0ZW1zL1ZNJTNCaWFhc3ZtY29udGFpbmVydjIlM0Jwc3Rlc3RyZzE1ODRlMjczJTNCcHN0ZXN0dm0xNTg0ZTI/YXBpLXZlcnNpb249MjAyMS0xMC0wMQ==", - "RequestMethod": "DELETE", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.RecoveryServices/vaults/PSTestRSVd78c9636/backupOperations/98d50cbb-5447-4778-aeca-f775543bac09?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZDc4Yzk2MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZkNzhjOTYzNi9iYWNrdXBPcGVyYXRpb25zLzk4ZDUwY2JiLTU0NDctNDc3OC1hZWNhLWY3NzU1NDNiYWMwOT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4a9f9689-9e19-4012-86aa-6212bf8eb727" + "e812749e-cfbf-4113-9518-6a8784bbadca" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -9865,70 +12463,67 @@ "Pragma": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.RecoveryServices/vaults/PSTestRSV1584e273/backupOperationResults/3713d460-9d28-448c-ab60-554039c35f07?api-version=2021-10-01" - ], - "Retry-After": [ - "60" - ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.RecoveryServices/vaults/PSTestRSV1584e273/backupOperations/3713d460-9d28-448c-ab60-554039c35f07?api-version=2021-10-01" - ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "080e5b2a-8f48-4494-8259-82403bd420bc" + "22e1a18e-8760-4f25-9c87-6dd3e1605905" ], "x-ms-client-request-id": [ - "4a9f9689-9e19-4012-86aa-6212bf8eb727", - "4a9f9689-9e19-4012-86aa-6212bf8eb727" + "e812749e-cfbf-4113-9518-6a8784bbadca", + "e812749e-cfbf-4113-9518-6a8784bbadca" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "104" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ - "14998" - ], "x-ms-correlation-request-id": [ - "080e5b2a-8f48-4494-8259-82403bd420bc" + "22e1a18e-8760-4f25-9c87-6dd3e1605905" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T222331Z:080e5b2a-8f48-4494-8259-82403bd420bc" + "WESTINDIA:20220517T044339Z:22e1a18e-8760-4f25-9c87-6dd3e1605905" ], "Date": [ - "Wed, 23 Feb 2022 22:23:31 GMT" + "Tue, 17 May 2022 04:43:39 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, - "ResponseBody": "", - "StatusCode": 202 + "ResponseBody": "{\r\n \"id\": \"98d50cbb-5447-4778-aeca-f775543bac09\",\r\n \"name\": \"98d50cbb-5447-4778-aeca-f775543bac09\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T04:42:33.6314297Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.RecoveryServices/vaults/PSTestRSV1584e273/backupOperations/3713d460-9d28-448c-ab60-554039c35f07?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMTU4NGUyNzMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YxNTg0ZTI3My9iYWNrdXBPcGVyYXRpb25zLzM3MTNkNDYwLTlkMjgtNDQ4Yy1hYjYwLTU1NDAzOWMzNWYwNz9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.RecoveryServices/vaults/PSTestRSVd78c9636/backupOperations/98d50cbb-5447-4778-aeca-f775543bac09?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZDc4Yzk2MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZkNzhjOTYzNi9iYWNrdXBPcGVyYXRpb25zLzk4ZDUwY2JiLTU0NDctNDc3OC1hZWNhLWY3NzU1NDNiYWMwOT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4a9f9689-9e19-4012-86aa-6212bf8eb727" + "e812749e-cfbf-4113-9518-6a8784bbadca" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -9942,11 +12537,11 @@ "nosniff" ], "x-ms-request-id": [ - "b1f2a0ed-e088-4a7b-b8da-86991be6f13d" + "441247b0-22c4-46b1-ba42-ec07a9fd0767" ], "x-ms-client-request-id": [ - "4a9f9689-9e19-4012-86aa-6212bf8eb727", - "4a9f9689-9e19-4012-86aa-6212bf8eb727" + "e812749e-cfbf-4113-9518-6a8784bbadca", + "e812749e-cfbf-4113-9518-6a8784bbadca" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -9958,16 +12553,16 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "131" + "103" ], "x-ms-correlation-request-id": [ - "b1f2a0ed-e088-4a7b-b8da-86991be6f13d" + "441247b0-22c4-46b1-ba42-ec07a9fd0767" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T222332Z:b1f2a0ed-e088-4a7b-b8da-86991be6f13d" + "WESTINDIA:20220517T044345Z:441247b0-22c4-46b1-ba42-ec07a9fd0767" ], "Date": [ - "Wed, 23 Feb 2022 22:23:31 GMT" + "Tue, 17 May 2022 04:43:44 GMT" ], "Content-Length": [ "188" @@ -9979,26 +12574,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"3713d460-9d28-448c-ab60-554039c35f07\",\r\n \"name\": \"3713d460-9d28-448c-ab60-554039c35f07\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-23T22:23:31.1867555Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"98d50cbb-5447-4778-aeca-f775543bac09\",\r\n \"name\": \"98d50cbb-5447-4778-aeca-f775543bac09\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T04:42:33.6314297Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.RecoveryServices/vaults/PSTestRSV1584e273/backupOperations/3713d460-9d28-448c-ab60-554039c35f07?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMTU4NGUyNzMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YxNTg0ZTI3My9iYWNrdXBPcGVyYXRpb25zLzM3MTNkNDYwLTlkMjgtNDQ4Yy1hYjYwLTU1NDAzOWMzNWYwNz9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.RecoveryServices/vaults/PSTestRSVd78c9636/backupOperations/98d50cbb-5447-4778-aeca-f775543bac09?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZDc4Yzk2MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZkNzhjOTYzNi9iYWNrdXBPcGVyYXRpb25zLzk4ZDUwY2JiLTU0NDctNDc3OC1hZWNhLWY3NzU1NDNiYWMwOT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4a9f9689-9e19-4012-86aa-6212bf8eb727" + "e812749e-cfbf-4113-9518-6a8784bbadca" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -10012,11 +12607,11 @@ "nosniff" ], "x-ms-request-id": [ - "d43680cd-fc4f-445a-b142-2846282a5f72" + "b3b2f2dd-ed03-483d-b1c3-61bfa4840a48" ], "x-ms-client-request-id": [ - "4a9f9689-9e19-4012-86aa-6212bf8eb727", - "4a9f9689-9e19-4012-86aa-6212bf8eb727" + "e812749e-cfbf-4113-9518-6a8784bbadca", + "e812749e-cfbf-4113-9518-6a8784bbadca" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -10028,16 +12623,16 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "130" + "102" ], "x-ms-correlation-request-id": [ - "d43680cd-fc4f-445a-b142-2846282a5f72" + "b3b2f2dd-ed03-483d-b1c3-61bfa4840a48" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T222407Z:d43680cd-fc4f-445a-b142-2846282a5f72" + "WESTINDIA:20220517T044350Z:b3b2f2dd-ed03-483d-b1c3-61bfa4840a48" ], "Date": [ - "Wed, 23 Feb 2022 22:24:07 GMT" + "Tue, 17 May 2022 04:43:50 GMT" ], "Content-Length": [ "188" @@ -10049,26 +12644,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"3713d460-9d28-448c-ab60-554039c35f07\",\r\n \"name\": \"3713d460-9d28-448c-ab60-554039c35f07\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-23T22:23:31.1867555Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"98d50cbb-5447-4778-aeca-f775543bac09\",\r\n \"name\": \"98d50cbb-5447-4778-aeca-f775543bac09\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T04:42:33.6314297Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.RecoveryServices/vaults/PSTestRSV1584e273/backupOperations/3713d460-9d28-448c-ab60-554039c35f07?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMTU4NGUyNzMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YxNTg0ZTI3My9iYWNrdXBPcGVyYXRpb25zLzM3MTNkNDYwLTlkMjgtNDQ4Yy1hYjYwLTU1NDAzOWMzNWYwNz9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.RecoveryServices/vaults/PSTestRSVd78c9636/backupOperations/98d50cbb-5447-4778-aeca-f775543bac09?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZDc4Yzk2MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZkNzhjOTYzNi9iYWNrdXBPcGVyYXRpb25zLzk4ZDUwY2JiLTU0NDctNDc3OC1hZWNhLWY3NzU1NDNiYWMwOT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4a9f9689-9e19-4012-86aa-6212bf8eb727" + "e812749e-cfbf-4113-9518-6a8784bbadca" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -10082,11 +12677,11 @@ "nosniff" ], "x-ms-request-id": [ - "29c5f590-12c2-4080-9840-1ecef780e834" + "b76c40ba-377e-474d-ae99-430512fdad9f" ], "x-ms-client-request-id": [ - "4a9f9689-9e19-4012-86aa-6212bf8eb727", - "4a9f9689-9e19-4012-86aa-6212bf8eb727" + "e812749e-cfbf-4113-9518-6a8784bbadca", + "e812749e-cfbf-4113-9518-6a8784bbadca" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -10098,16 +12693,16 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "129" + "101" ], "x-ms-correlation-request-id": [ - "29c5f590-12c2-4080-9840-1ecef780e834" + "b76c40ba-377e-474d-ae99-430512fdad9f" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T222426Z:29c5f590-12c2-4080-9840-1ecef780e834" + "WESTINDIA:20220517T044356Z:b76c40ba-377e-474d-ae99-430512fdad9f" ], "Date": [ - "Wed, 23 Feb 2022 22:24:26 GMT" + "Tue, 17 May 2022 04:43:55 GMT" ], "Content-Length": [ "188" @@ -10119,26 +12714,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"3713d460-9d28-448c-ab60-554039c35f07\",\r\n \"name\": \"3713d460-9d28-448c-ab60-554039c35f07\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-23T22:23:31.1867555Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"98d50cbb-5447-4778-aeca-f775543bac09\",\r\n \"name\": \"98d50cbb-5447-4778-aeca-f775543bac09\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T04:42:33.6314297Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.RecoveryServices/vaults/PSTestRSV1584e273/backupOperations/3713d460-9d28-448c-ab60-554039c35f07?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMTU4NGUyNzMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YxNTg0ZTI3My9iYWNrdXBPcGVyYXRpb25zLzM3MTNkNDYwLTlkMjgtNDQ4Yy1hYjYwLTU1NDAzOWMzNWYwNz9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.RecoveryServices/vaults/PSTestRSVd78c9636/backupOperations/98d50cbb-5447-4778-aeca-f775543bac09?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZDc4Yzk2MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZkNzhjOTYzNi9iYWNrdXBPcGVyYXRpb25zLzk4ZDUwY2JiLTU0NDctNDc3OC1hZWNhLWY3NzU1NDNiYWMwOT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4a9f9689-9e19-4012-86aa-6212bf8eb727" + "e812749e-cfbf-4113-9518-6a8784bbadca" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -10152,11 +12747,11 @@ "nosniff" ], "x-ms-request-id": [ - "c75e3de9-d628-476b-9924-1859fc17f8bf" + "a7697f91-621b-49cd-93b8-9307a7563afb" ], "x-ms-client-request-id": [ - "4a9f9689-9e19-4012-86aa-6212bf8eb727", - "4a9f9689-9e19-4012-86aa-6212bf8eb727" + "e812749e-cfbf-4113-9518-6a8784bbadca", + "e812749e-cfbf-4113-9518-6a8784bbadca" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -10168,16 +12763,16 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "128" + "100" ], "x-ms-correlation-request-id": [ - "c75e3de9-d628-476b-9924-1859fc17f8bf" + "a7697f91-621b-49cd-93b8-9307a7563afb" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T222437Z:c75e3de9-d628-476b-9924-1859fc17f8bf" + "WESTINDIA:20220517T044401Z:a7697f91-621b-49cd-93b8-9307a7563afb" ], "Date": [ - "Wed, 23 Feb 2022 22:24:36 GMT" + "Tue, 17 May 2022 04:44:00 GMT" ], "Content-Length": [ "188" @@ -10189,26 +12784,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"3713d460-9d28-448c-ab60-554039c35f07\",\r\n \"name\": \"3713d460-9d28-448c-ab60-554039c35f07\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-23T22:23:31.1867555Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"98d50cbb-5447-4778-aeca-f775543bac09\",\r\n \"name\": \"98d50cbb-5447-4778-aeca-f775543bac09\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T04:42:33.6314297Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.RecoveryServices/vaults/PSTestRSV1584e273/backupOperations/3713d460-9d28-448c-ab60-554039c35f07?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMTU4NGUyNzMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YxNTg0ZTI3My9iYWNrdXBPcGVyYXRpb25zLzM3MTNkNDYwLTlkMjgtNDQ4Yy1hYjYwLTU1NDAzOWMzNWYwNz9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.RecoveryServices/vaults/PSTestRSVd78c9636/backupOperations/98d50cbb-5447-4778-aeca-f775543bac09?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZDc4Yzk2MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZkNzhjOTYzNi9iYWNrdXBPcGVyYXRpb25zLzk4ZDUwY2JiLTU0NDctNDc3OC1hZWNhLWY3NzU1NDNiYWMwOT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4a9f9689-9e19-4012-86aa-6212bf8eb727" + "e812749e-cfbf-4113-9518-6a8784bbadca" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -10222,11 +12817,11 @@ "nosniff" ], "x-ms-request-id": [ - "6be74b07-0213-4a06-a921-f7bf3fece796" + "c0bb9b36-1991-4aea-bf1e-0dd998b3ef6b" ], "x-ms-client-request-id": [ - "4a9f9689-9e19-4012-86aa-6212bf8eb727", - "4a9f9689-9e19-4012-86aa-6212bf8eb727" + "e812749e-cfbf-4113-9518-6a8784bbadca", + "e812749e-cfbf-4113-9518-6a8784bbadca" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -10238,16 +12833,16 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "127" + "99" ], "x-ms-correlation-request-id": [ - "6be74b07-0213-4a06-a921-f7bf3fece796" + "c0bb9b36-1991-4aea-bf1e-0dd998b3ef6b" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T222448Z:6be74b07-0213-4a06-a921-f7bf3fece796" + "WESTINDIA:20220517T044407Z:c0bb9b36-1991-4aea-bf1e-0dd998b3ef6b" ], "Date": [ - "Wed, 23 Feb 2022 22:24:48 GMT" + "Tue, 17 May 2022 04:44:07 GMT" ], "Content-Length": [ "188" @@ -10259,26 +12854,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"3713d460-9d28-448c-ab60-554039c35f07\",\r\n \"name\": \"3713d460-9d28-448c-ab60-554039c35f07\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-23T22:23:31.1867555Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"98d50cbb-5447-4778-aeca-f775543bac09\",\r\n \"name\": \"98d50cbb-5447-4778-aeca-f775543bac09\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T04:42:33.6314297Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.RecoveryServices/vaults/PSTestRSV1584e273/backupOperations/3713d460-9d28-448c-ab60-554039c35f07?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMTU4NGUyNzMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YxNTg0ZTI3My9iYWNrdXBPcGVyYXRpb25zLzM3MTNkNDYwLTlkMjgtNDQ4Yy1hYjYwLTU1NDAzOWMzNWYwNz9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.RecoveryServices/vaults/PSTestRSVd78c9636/backupOperations/98d50cbb-5447-4778-aeca-f775543bac09?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZDc4Yzk2MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZkNzhjOTYzNi9iYWNrdXBPcGVyYXRpb25zLzk4ZDUwY2JiLTU0NDctNDc3OC1hZWNhLWY3NzU1NDNiYWMwOT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4a9f9689-9e19-4012-86aa-6212bf8eb727" + "e812749e-cfbf-4113-9518-6a8784bbadca" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -10292,11 +12887,11 @@ "nosniff" ], "x-ms-request-id": [ - "d0486cfb-ebb9-4d3b-8dd8-173950f58dc2" + "92993e79-ec24-44b5-be01-75ce966d11f7" ], "x-ms-client-request-id": [ - "4a9f9689-9e19-4012-86aa-6212bf8eb727", - "4a9f9689-9e19-4012-86aa-6212bf8eb727" + "e812749e-cfbf-4113-9518-6a8784bbadca", + "e812749e-cfbf-4113-9518-6a8784bbadca" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -10308,16 +12903,16 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "126" + "98" ], "x-ms-correlation-request-id": [ - "d0486cfb-ebb9-4d3b-8dd8-173950f58dc2" + "92993e79-ec24-44b5-be01-75ce966d11f7" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T222459Z:d0486cfb-ebb9-4d3b-8dd8-173950f58dc2" + "WESTINDIA:20220517T044412Z:92993e79-ec24-44b5-be01-75ce966d11f7" ], "Date": [ - "Wed, 23 Feb 2022 22:24:58 GMT" + "Tue, 17 May 2022 04:44:12 GMT" ], "Content-Length": [ "188" @@ -10329,26 +12924,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"3713d460-9d28-448c-ab60-554039c35f07\",\r\n \"name\": \"3713d460-9d28-448c-ab60-554039c35f07\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-23T22:23:31.1867555Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"98d50cbb-5447-4778-aeca-f775543bac09\",\r\n \"name\": \"98d50cbb-5447-4778-aeca-f775543bac09\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T04:42:33.6314297Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.RecoveryServices/vaults/PSTestRSV1584e273/backupOperations/3713d460-9d28-448c-ab60-554039c35f07?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMTU4NGUyNzMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YxNTg0ZTI3My9iYWNrdXBPcGVyYXRpb25zLzM3MTNkNDYwLTlkMjgtNDQ4Yy1hYjYwLTU1NDAzOWMzNWYwNz9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.RecoveryServices/vaults/PSTestRSVd78c9636/backupOperations/98d50cbb-5447-4778-aeca-f775543bac09?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZDc4Yzk2MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZkNzhjOTYzNi9iYWNrdXBPcGVyYXRpb25zLzk4ZDUwY2JiLTU0NDctNDc3OC1hZWNhLWY3NzU1NDNiYWMwOT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4a9f9689-9e19-4012-86aa-6212bf8eb727" + "e812749e-cfbf-4113-9518-6a8784bbadca" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -10362,32 +12957,32 @@ "nosniff" ], "x-ms-request-id": [ - "57fa0371-6d75-47fc-a527-90414a881e40" + "e9904bb1-5430-4575-bf69-54cfe33a4693" ], "x-ms-client-request-id": [ - "4a9f9689-9e19-4012-86aa-6212bf8eb727", - "4a9f9689-9e19-4012-86aa-6212bf8eb727" + "e812749e-cfbf-4113-9518-6a8784bbadca", + "e812749e-cfbf-4113-9518-6a8784bbadca" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "125" - ], "Server": [ "Microsoft-IIS/10.0" ], "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "97" + ], "x-ms-correlation-request-id": [ - "57fa0371-6d75-47fc-a527-90414a881e40" + "e9904bb1-5430-4575-bf69-54cfe33a4693" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T222510Z:57fa0371-6d75-47fc-a527-90414a881e40" + "WESTINDIA:20220517T044417Z:e9904bb1-5430-4575-bf69-54cfe33a4693" ], "Date": [ - "Wed, 23 Feb 2022 22:25:09 GMT" + "Tue, 17 May 2022 04:44:17 GMT" ], "Content-Length": [ "188" @@ -10399,26 +12994,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"3713d460-9d28-448c-ab60-554039c35f07\",\r\n \"name\": \"3713d460-9d28-448c-ab60-554039c35f07\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-23T22:23:31.1867555Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"98d50cbb-5447-4778-aeca-f775543bac09\",\r\n \"name\": \"98d50cbb-5447-4778-aeca-f775543bac09\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T04:42:33.6314297Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.RecoveryServices/vaults/PSTestRSV1584e273/backupOperations/3713d460-9d28-448c-ab60-554039c35f07?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMTU4NGUyNzMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YxNTg0ZTI3My9iYWNrdXBPcGVyYXRpb25zLzM3MTNkNDYwLTlkMjgtNDQ4Yy1hYjYwLTU1NDAzOWMzNWYwNz9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.RecoveryServices/vaults/PSTestRSVd78c9636/backupOperations/98d50cbb-5447-4778-aeca-f775543bac09?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZDc4Yzk2MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZkNzhjOTYzNi9iYWNrdXBPcGVyYXRpb25zLzk4ZDUwY2JiLTU0NDctNDc3OC1hZWNhLWY3NzU1NDNiYWMwOT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4a9f9689-9e19-4012-86aa-6212bf8eb727" + "e812749e-cfbf-4113-9518-6a8784bbadca" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -10432,11 +13027,11 @@ "nosniff" ], "x-ms-request-id": [ - "94ab91de-7aaf-40d4-8cc4-128a3450c916" + "f77a0118-71e4-4583-bbcf-aca9557931d5" ], "x-ms-client-request-id": [ - "4a9f9689-9e19-4012-86aa-6212bf8eb727", - "4a9f9689-9e19-4012-86aa-6212bf8eb727" + "e812749e-cfbf-4113-9518-6a8784bbadca", + "e812749e-cfbf-4113-9518-6a8784bbadca" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -10448,16 +13043,16 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "124" + "96" ], "x-ms-correlation-request-id": [ - "94ab91de-7aaf-40d4-8cc4-128a3450c916" + "f77a0118-71e4-4583-bbcf-aca9557931d5" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T222521Z:94ab91de-7aaf-40d4-8cc4-128a3450c916" + "WESTINDIA:20220517T044423Z:f77a0118-71e4-4583-bbcf-aca9557931d5" ], "Date": [ - "Wed, 23 Feb 2022 22:25:20 GMT" + "Tue, 17 May 2022 04:44:23 GMT" ], "Content-Length": [ "188" @@ -10469,26 +13064,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"3713d460-9d28-448c-ab60-554039c35f07\",\r\n \"name\": \"3713d460-9d28-448c-ab60-554039c35f07\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-23T22:23:31.1867555Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"98d50cbb-5447-4778-aeca-f775543bac09\",\r\n \"name\": \"98d50cbb-5447-4778-aeca-f775543bac09\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-17T04:42:33.6314297Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.RecoveryServices/vaults/PSTestRSV1584e273/backupOperations/3713d460-9d28-448c-ab60-554039c35f07?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMTU4NGUyNzMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YxNTg0ZTI3My9iYWNrdXBPcGVyYXRpb25zLzM3MTNkNDYwLTlkMjgtNDQ4Yy1hYjYwLTU1NDAzOWMzNWYwNz9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.RecoveryServices/vaults/PSTestRSVd78c9636/backupOperations/98d50cbb-5447-4778-aeca-f775543bac09?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZDc4Yzk2MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZkNzhjOTYzNi9iYWNrdXBPcGVyYXRpb25zLzk4ZDUwY2JiLTU0NDctNDc3OC1hZWNhLWY3NzU1NDNiYWMwOT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4a9f9689-9e19-4012-86aa-6212bf8eb727" + "e812749e-cfbf-4113-9518-6a8784bbadca" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -10502,11 +13097,11 @@ "nosniff" ], "x-ms-request-id": [ - "df0900dc-29dc-4fa7-aee3-1c04b8a29f4b" + "7b94771c-3e0b-4379-b283-804290d1c9dd" ], "x-ms-client-request-id": [ - "4a9f9689-9e19-4012-86aa-6212bf8eb727", - "4a9f9689-9e19-4012-86aa-6212bf8eb727" + "e812749e-cfbf-4113-9518-6a8784bbadca", + "e812749e-cfbf-4113-9518-6a8784bbadca" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -10518,16 +13113,16 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "123" + "95" ], "x-ms-correlation-request-id": [ - "df0900dc-29dc-4fa7-aee3-1c04b8a29f4b" + "7b94771c-3e0b-4379-b283-804290d1c9dd" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T222532Z:df0900dc-29dc-4fa7-aee3-1c04b8a29f4b" + "WESTINDIA:20220517T044428Z:7b94771c-3e0b-4379-b283-804290d1c9dd" ], "Date": [ - "Wed, 23 Feb 2022 22:25:32 GMT" + "Tue, 17 May 2022 04:44:28 GMT" ], "Content-Length": [ "304" @@ -10539,26 +13134,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"3713d460-9d28-448c-ab60-554039c35f07\",\r\n \"name\": \"3713d460-9d28-448c-ab60-554039c35f07\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-02-23T22:23:31.1867555Z\",\r\n \"endTime\": \"2022-02-23T22:23:31.1867555Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"aa28f4f4-0915-490d-b272-ca42493f9b34\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"98d50cbb-5447-4778-aeca-f775543bac09\",\r\n \"name\": \"98d50cbb-5447-4778-aeca-f775543bac09\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-05-17T04:42:33.6314297Z\",\r\n \"endTime\": \"2022-05-17T04:42:33.6314297Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"0477a20c-e800-4eb5-b31d-11c05283e624\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.RecoveryServices/vaults/PSTestRSV1584e273/backupOperations/3713d460-9d28-448c-ab60-554039c35f07?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMTU4NGUyNzMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YxNTg0ZTI3My9iYWNrdXBPcGVyYXRpb25zLzM3MTNkNDYwLTlkMjgtNDQ4Yy1hYjYwLTU1NDAzOWMzNWYwNz9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.RecoveryServices/vaults/PSTestRSVd78c9636/backupOperations/98d50cbb-5447-4778-aeca-f775543bac09?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZDc4Yzk2MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZkNzhjOTYzNi9iYWNrdXBPcGVyYXRpb25zLzk4ZDUwY2JiLTU0NDctNDc3OC1hZWNhLWY3NzU1NDNiYWMwOT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4a9f9689-9e19-4012-86aa-6212bf8eb727" + "e812749e-cfbf-4113-9518-6a8784bbadca" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -10572,11 +13167,11 @@ "nosniff" ], "x-ms-request-id": [ - "6e5c2d76-1647-4fd1-b29f-ba619d4f55ba" + "2a21e372-82b7-47f7-8050-c2a067db0d7c" ], "x-ms-client-request-id": [ - "4a9f9689-9e19-4012-86aa-6212bf8eb727", - "4a9f9689-9e19-4012-86aa-6212bf8eb727" + "e812749e-cfbf-4113-9518-6a8784bbadca", + "e812749e-cfbf-4113-9518-6a8784bbadca" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -10588,16 +13183,16 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "122" + "94" ], "x-ms-correlation-request-id": [ - "6e5c2d76-1647-4fd1-b29f-ba619d4f55ba" + "2a21e372-82b7-47f7-8050-c2a067db0d7c" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T222534Z:6e5c2d76-1647-4fd1-b29f-ba619d4f55ba" + "WESTINDIA:20220517T044429Z:2a21e372-82b7-47f7-8050-c2a067db0d7c" ], "Date": [ - "Wed, 23 Feb 2022 22:25:34 GMT" + "Tue, 17 May 2022 04:44:28 GMT" ], "Content-Length": [ "304" @@ -10609,26 +13204,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"3713d460-9d28-448c-ab60-554039c35f07\",\r\n \"name\": \"3713d460-9d28-448c-ab60-554039c35f07\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-02-23T22:23:31.1867555Z\",\r\n \"endTime\": \"2022-02-23T22:23:31.1867555Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"aa28f4f4-0915-490d-b272-ca42493f9b34\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"98d50cbb-5447-4778-aeca-f775543bac09\",\r\n \"name\": \"98d50cbb-5447-4778-aeca-f775543bac09\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-05-17T04:42:33.6314297Z\",\r\n \"endTime\": \"2022-05-17T04:42:33.6314297Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"0477a20c-e800-4eb5-b31d-11c05283e624\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.RecoveryServices/vaults/PSTestRSV1584e273/backupJobs/aa28f4f4-0915-490d-b272-ca42493f9b34?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMTU4NGUyNzMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YxNTg0ZTI3My9iYWNrdXBKb2JzL2FhMjhmNGY0LTA5MTUtNDkwZC1iMjcyLWNhNDI0OTNmOWIzND9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.RecoveryServices/vaults/PSTestRSVd78c9636/backupJobs/0477a20c-e800-4eb5-b31d-11c05283e624?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZDc4Yzk2MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZkNzhjOTYzNi9iYWNrdXBKb2JzLzA0NzdhMjBjLWU4MDAtNGViNS1iMzFkLTExYzA1MjgzZTYyND9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4a9f9689-9e19-4012-86aa-6212bf8eb727" + "e812749e-cfbf-4113-9518-6a8784bbadca" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -10646,11 +13241,11 @@ "nosniff" ], "x-ms-request-id": [ - "bc729407-2adc-4524-b6bb-345d13172f55" + "cad37719-a6d5-4e1f-8e81-f43982eaeac9" ], "x-ms-client-request-id": [ - "4a9f9689-9e19-4012-86aa-6212bf8eb727", - "4a9f9689-9e19-4012-86aa-6212bf8eb727" + "e812749e-cfbf-4113-9518-6a8784bbadca", + "e812749e-cfbf-4113-9518-6a8784bbadca" ], "X-Powered-By": [ "ASP.NET" @@ -10662,13 +13257,13 @@ "139" ], "x-ms-correlation-request-id": [ - "bc729407-2adc-4524-b6bb-345d13172f55" + "cad37719-a6d5-4e1f-8e81-f43982eaeac9" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T222535Z:bc729407-2adc-4524-b6bb-345d13172f55" + "WESTINDIA:20220517T044429Z:cad37719-a6d5-4e1f-8e81-f43982eaeac9" ], "Date": [ - "Wed, 23 Feb 2022 22:25:35 GMT" + "Tue, 17 May 2022 04:44:29 GMT" ], "Content-Length": [ "845" @@ -10680,23 +13275,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.RecoveryServices/vaults/PSTestRSV1584e273/backupJobs/aa28f4f4-0915-490d-b272-ca42493f9b34\",\r\n \"name\": \"aa28f4f4-0915-490d-b272-ca42493f9b34\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg1584e273;pstestvm1584e2\",\r\n \"duration\": \"PT1M51.4188928S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"VM Name\": \"PSTestVM1584e2\",\r\n \"Number of Recovery Points\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"PSTestVM1584e2\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"DeleteBackupData\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-02-23T22:23:31.1867555Z\",\r\n \"endTime\": \"2022-02-23T22:25:22.6056483Z\",\r\n \"activityId\": \"4a9f9689-9e19-4012-86aa-6212bf8eb727\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.RecoveryServices/vaults/PSTestRSVd78c9636/backupJobs/0477a20c-e800-4eb5-b31d-11c05283e624\",\r\n \"name\": \"0477a20c-e800-4eb5-b31d-11c05283e624\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgd78c9636;pstestvmd78c92\",\r\n \"duration\": \"PT1M51.3801627S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"VM Name\": \"PSTestVMd78c92\",\r\n \"Number of Recovery Points\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"PSTestVMd78c92\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"DeleteBackupData\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-05-17T04:42:33.6314297Z\",\r\n \"endTime\": \"2022-05-17T04:44:25.0115924Z\",\r\n \"activityId\": \"e812749e-cfbf-4113-9518-6a8784bbadca\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRG1584e273/providers/Microsoft.RecoveryServices/vaults/PSTestRSV1584e273?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMTU4NGUyNzMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YxNTg0ZTI3Mz9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRGd78c9636/providers/Microsoft.RecoveryServices/vaults/PSTestRSVd78c9636?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZDc4Yzk2MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZkNzhjOTYzNj9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "89ebfb1a-b9ea-4ce4-a115-bab307da77ea" + "1bc47d69-8878-409f-9831-1d2aac23b012" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesClient/4.3.2.0" @@ -10713,10 +13308,10 @@ "nosniff" ], "x-ms-request-id": [ - "c163da94-da36-4f96-bcfa-1b225e3087cb" + "492aaa03-0383-4b42-8dda-3c44666006ef" ], "x-ms-client-request-id": [ - "89ebfb1a-b9ea-4ce4-a115-bab307da77ea" + "1bc47d69-8878-409f-9831-1d2aac23b012" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -10725,13 +13320,13 @@ "9" ], "x-ms-correlation-request-id": [ - "c163da94-da36-4f96-bcfa-1b225e3087cb" + "492aaa03-0383-4b42-8dda-3c44666006ef" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T222548Z:c163da94-da36-4f96-bcfa-1b225e3087cb" + "WESTINDIA:20220517T044434Z:492aaa03-0383-4b42-8dda-3c44666006ef" ], "Date": [ - "Wed, 23 Feb 2022 22:25:48 GMT" + "Tue, 17 May 2022 04:44:34 GMT" ], "Expires": [ "-1" @@ -10744,22 +13339,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourcegroups/PSTestRG1584e273?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlZ3JvdXBzL1BTVGVzdFJHMTU4NGUyNzM/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourcegroups/PSTestRGd78c9636?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlZ3JvdXBzL1BTVGVzdFJHZDc4Yzk2MzY/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0861a25c-e16a-46ed-99f8-551a3711fd24" + "3574c9e1-89d7-4db0-8118-c8d9dfee1cd4" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" ] }, "ResponseHeaders": { @@ -10770,7 +13365,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzE1ODRFMjczLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0Q3OEM5NjM2LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -10779,13 +13374,13 @@ "14999" ], "x-ms-request-id": [ - "f5a60cd8-1f2f-4531-b868-894ddb3bd6a0" + "268f6d7d-83da-4a47-b0a4-bacd8f00e158" ], "x-ms-correlation-request-id": [ - "f5a60cd8-1f2f-4531-b868-894ddb3bd6a0" + "268f6d7d-83da-4a47-b0a4-bacd8f00e158" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T222554Z:f5a60cd8-1f2f-4531-b868-894ddb3bd6a0" + "WESTINDIA:20220517T044437Z:268f6d7d-83da-4a47-b0a4-bacd8f00e158" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -10794,7 +13389,7 @@ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 22:25:53 GMT" + "Tue, 17 May 2022 04:44:36 GMT" ], "Expires": [ "-1" @@ -10807,16 +13402,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzE1ODRFMjczLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekUxT0RSRk1qY3pMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0Q3OEM5NjM2LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSMFEzT0VNNU5qTTJMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" ] }, "ResponseHeaders": { @@ -10827,22 +13422,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzE1ODRFMjczLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0Q3OEM5NjM2LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11997" ], "x-ms-request-id": [ - "5fe88e1a-4075-4c24-812d-028ce18487fd" + "8c4f301c-b594-47f0-8918-bca69214cb51" ], "x-ms-correlation-request-id": [ - "5fe88e1a-4075-4c24-812d-028ce18487fd" + "8c4f301c-b594-47f0-8918-bca69214cb51" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T222609Z:5fe88e1a-4075-4c24-812d-028ce18487fd" + "WESTINDIA:20220517T044452Z:8c4f301c-b594-47f0-8918-bca69214cb51" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -10851,7 +13446,7 @@ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 22:26:09 GMT" + "Tue, 17 May 2022 04:44:51 GMT" ], "Expires": [ "-1" @@ -10864,16 +13459,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzE1ODRFMjczLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekUxT0RSRk1qY3pMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0Q3OEM5NjM2LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSMFEzT0VNNU5qTTJMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" ] }, "ResponseHeaders": { @@ -10884,22 +13479,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzE1ODRFMjczLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0Q3OEM5NjM2LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11996" ], "x-ms-request-id": [ - "b43b2687-baf2-4bb0-b2bb-8e40aa9c5b9d" + "5c7eb5b6-7eb3-433a-80bf-8dfd72e75aad" ], "x-ms-correlation-request-id": [ - "b43b2687-baf2-4bb0-b2bb-8e40aa9c5b9d" + "5c7eb5b6-7eb3-433a-80bf-8dfd72e75aad" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T222625Z:b43b2687-baf2-4bb0-b2bb-8e40aa9c5b9d" + "WESTINDIA:20220517T044507Z:5c7eb5b6-7eb3-433a-80bf-8dfd72e75aad" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -10908,7 +13503,7 @@ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 22:26:24 GMT" + "Tue, 17 May 2022 04:45:07 GMT" ], "Expires": [ "-1" @@ -10921,16 +13516,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzE1ODRFMjczLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekUxT0RSRk1qY3pMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0Q3OEM5NjM2LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSMFEzT0VNNU5qTTJMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" ] }, "ResponseHeaders": { @@ -10941,22 +13536,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzE1ODRFMjczLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0Q3OEM5NjM2LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11995" ], "x-ms-request-id": [ - "21052efa-f32f-4ba3-8ad1-166f5703cd62" + "0ce69dfb-cedb-4b3e-91d8-42e2119e81b6" ], "x-ms-correlation-request-id": [ - "21052efa-f32f-4ba3-8ad1-166f5703cd62" + "0ce69dfb-cedb-4b3e-91d8-42e2119e81b6" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T222640Z:21052efa-f32f-4ba3-8ad1-166f5703cd62" + "WESTINDIA:20220517T044522Z:0ce69dfb-cedb-4b3e-91d8-42e2119e81b6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -10965,7 +13560,7 @@ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 22:26:39 GMT" + "Tue, 17 May 2022 04:45:22 GMT" ], "Expires": [ "-1" @@ -10978,16 +13573,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzE1ODRFMjczLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekUxT0RSRk1qY3pMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0Q3OEM5NjM2LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSMFEzT0VNNU5qTTJMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" ] }, "ResponseHeaders": { @@ -10998,22 +13593,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzE1ODRFMjczLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0Q3OEM5NjM2LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11994" ], "x-ms-request-id": [ - "201b602e-3ff1-490f-a605-485e96cd6fb3" + "fdfe6600-b8ee-4d4d-9413-04530fd70985" ], "x-ms-correlation-request-id": [ - "201b602e-3ff1-490f-a605-485e96cd6fb3" + "fdfe6600-b8ee-4d4d-9413-04530fd70985" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T222656Z:201b602e-3ff1-490f-a605-485e96cd6fb3" + "WESTINDIA:20220517T044537Z:fdfe6600-b8ee-4d4d-9413-04530fd70985" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -11022,7 +13617,7 @@ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 22:26:55 GMT" + "Tue, 17 May 2022 04:45:37 GMT" ], "Expires": [ "-1" @@ -11035,16 +13630,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzE1ODRFMjczLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekUxT0RSRk1qY3pMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0Q3OEM5NjM2LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSMFEzT0VNNU5qTTJMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" ] }, "ResponseHeaders": { @@ -11055,22 +13650,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzE1ODRFMjczLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0Q3OEM5NjM2LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11993" ], "x-ms-request-id": [ - "f5b23024-572d-489e-b88b-d2980636b95b" + "d31179dd-5a87-493a-a989-8ef5b31f2fd7" ], "x-ms-correlation-request-id": [ - "f5b23024-572d-489e-b88b-d2980636b95b" + "d31179dd-5a87-493a-a989-8ef5b31f2fd7" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T222711Z:f5b23024-572d-489e-b88b-d2980636b95b" + "WESTINDIA:20220517T044553Z:d31179dd-5a87-493a-a989-8ef5b31f2fd7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -11079,7 +13674,7 @@ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 22:27:11 GMT" + "Tue, 17 May 2022 04:45:52 GMT" ], "Expires": [ "-1" @@ -11092,16 +13687,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzE1ODRFMjczLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekUxT0RSRk1qY3pMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0Q3OEM5NjM2LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSMFEzT0VNNU5qTTJMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" ] }, "ResponseHeaders": { @@ -11112,22 +13707,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzE1ODRFMjczLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0Q3OEM5NjM2LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11992" ], "x-ms-request-id": [ - "bbd0c9c7-5fb2-48da-9b2a-26bb0764a9ab" + "558cba40-51d9-4df4-b27d-7ce9d6129767" ], "x-ms-correlation-request-id": [ - "bbd0c9c7-5fb2-48da-9b2a-26bb0764a9ab" + "558cba40-51d9-4df4-b27d-7ce9d6129767" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T222727Z:bbd0c9c7-5fb2-48da-9b2a-26bb0764a9ab" + "WESTINDIA:20220517T044608Z:558cba40-51d9-4df4-b27d-7ce9d6129767" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -11136,7 +13731,7 @@ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 22:27:26 GMT" + "Tue, 17 May 2022 04:46:08 GMT" ], "Expires": [ "-1" @@ -11149,16 +13744,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzE1ODRFMjczLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekUxT0RSRk1qY3pMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0Q3OEM5NjM2LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSMFEzT0VNNU5qTTJMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" ] }, "ResponseHeaders": { @@ -11169,22 +13764,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzE1ODRFMjczLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0Q3OEM5NjM2LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11991" ], "x-ms-request-id": [ - "38bed5dc-d671-4de4-8535-03a88b7eacc4" + "a5335683-cc46-4f6b-b553-029781c36bdf" ], "x-ms-correlation-request-id": [ - "38bed5dc-d671-4de4-8535-03a88b7eacc4" + "a5335683-cc46-4f6b-b553-029781c36bdf" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T222742Z:38bed5dc-d671-4de4-8535-03a88b7eacc4" + "WESTINDIA:20220517T044623Z:a5335683-cc46-4f6b-b553-029781c36bdf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -11193,7 +13788,7 @@ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 22:27:42 GMT" + "Tue, 17 May 2022 04:46:22 GMT" ], "Expires": [ "-1" @@ -11206,16 +13801,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzE1ODRFMjczLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekUxT0RSRk1qY3pMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0Q3OEM5NjM2LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSMFEzT0VNNU5qTTJMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" ] }, "ResponseHeaders": { @@ -11226,22 +13821,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzE1ODRFMjczLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0Q3OEM5NjM2LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11990" ], "x-ms-request-id": [ - "7ea6a3bc-37ea-48e9-a847-6daef1d50db0" + "0dd5b7b1-782c-491f-a72b-f2260cfe3083" ], "x-ms-correlation-request-id": [ - "7ea6a3bc-37ea-48e9-a847-6daef1d50db0" + "0dd5b7b1-782c-491f-a72b-f2260cfe3083" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T222758Z:7ea6a3bc-37ea-48e9-a847-6daef1d50db0" + "WESTINDIA:20220517T044638Z:0dd5b7b1-782c-491f-a72b-f2260cfe3083" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -11250,7 +13845,7 @@ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 22:27:57 GMT" + "Tue, 17 May 2022 04:46:37 GMT" ], "Expires": [ "-1" @@ -11263,16 +13858,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzE1ODRFMjczLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekUxT0RSRk1qY3pMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0Q3OEM5NjM2LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSMFEzT0VNNU5qTTJMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" ] }, "ResponseHeaders": { @@ -11283,22 +13878,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzE1ODRFMjczLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0Q3OEM5NjM2LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11989" ], "x-ms-request-id": [ - "bc50ae74-0da8-440c-b85c-c01819a7fb71" + "dfbbf7cd-1ccd-47e8-875d-965cd13f6662" ], "x-ms-correlation-request-id": [ - "bc50ae74-0da8-440c-b85c-c01819a7fb71" + "dfbbf7cd-1ccd-47e8-875d-965cd13f6662" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T222813Z:bc50ae74-0da8-440c-b85c-c01819a7fb71" + "WESTINDIA:20220517T044653Z:dfbbf7cd-1ccd-47e8-875d-965cd13f6662" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -11307,7 +13902,7 @@ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 22:28:12 GMT" + "Tue, 17 May 2022 04:46:53 GMT" ], "Expires": [ "-1" @@ -11320,16 +13915,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzE1ODRFMjczLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekUxT0RSRk1qY3pMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0Q3OEM5NjM2LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSMFEzT0VNNU5qTTJMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" ] }, "ResponseHeaders": { @@ -11340,22 +13935,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzE1ODRFMjczLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0Q3OEM5NjM2LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11988" ], "x-ms-request-id": [ - "c7c8a09b-a026-49c2-bf9d-efad1699a610" + "b99c9f0c-ac04-4289-8dd8-b04058778d26" ], "x-ms-correlation-request-id": [ - "c7c8a09b-a026-49c2-bf9d-efad1699a610" + "b99c9f0c-ac04-4289-8dd8-b04058778d26" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T222829Z:c7c8a09b-a026-49c2-bf9d-efad1699a610" + "WESTINDIA:20220517T044709Z:b99c9f0c-ac04-4289-8dd8-b04058778d26" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -11364,7 +13959,7 @@ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 22:28:29 GMT" + "Tue, 17 May 2022 04:47:08 GMT" ], "Expires": [ "-1" @@ -11377,16 +13972,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzE1ODRFMjczLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekUxT0RSRk1qY3pMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0Q3OEM5NjM2LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSMFEzT0VNNU5qTTJMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" ] }, "ResponseHeaders": { @@ -11397,22 +13992,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzE1ODRFMjczLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0Q3OEM5NjM2LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11987" ], "x-ms-request-id": [ - "a6f77d20-959a-4d54-9613-47b2618d0afc" + "a5bdfc5b-5a40-4774-b60e-0d2b203a3f01" ], "x-ms-correlation-request-id": [ - "a6f77d20-959a-4d54-9613-47b2618d0afc" + "a5bdfc5b-5a40-4774-b60e-0d2b203a3f01" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T222844Z:a6f77d20-959a-4d54-9613-47b2618d0afc" + "WESTINDIA:20220517T044724Z:a5bdfc5b-5a40-4774-b60e-0d2b203a3f01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -11421,7 +14016,7 @@ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 22:28:44 GMT" + "Tue, 17 May 2022 04:47:23 GMT" ], "Expires": [ "-1" @@ -11434,16 +14029,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzE1ODRFMjczLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekUxT0RSRk1qY3pMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0Q3OEM5NjM2LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSMFEzT0VNNU5qTTJMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" ] }, "ResponseHeaders": { @@ -11454,22 +14049,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzE1ODRFMjczLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0Q3OEM5NjM2LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "11986" ], "x-ms-request-id": [ - "402fad98-d61f-4402-b02a-de38ca39ff4e" + "ccf6d54a-279a-4582-b3b4-8353c0c24b04" ], "x-ms-correlation-request-id": [ - "402fad98-d61f-4402-b02a-de38ca39ff4e" + "ccf6d54a-279a-4582-b3b4-8353c0c24b04" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T222900Z:402fad98-d61f-4402-b02a-de38ca39ff4e" + "WESTINDIA:20220517T044739Z:ccf6d54a-279a-4582-b3b4-8353c0c24b04" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -11478,7 +14073,7 @@ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 22:28:59 GMT" + "Tue, 17 May 2022 04:47:39 GMT" ], "Expires": [ "-1" @@ -11491,16 +14086,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzE1ODRFMjczLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekUxT0RSRk1qY3pMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0Q3OEM5NjM2LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSMFEzT0VNNU5qTTJMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" ] }, "ResponseHeaders": { @@ -11511,22 +14106,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzE1ODRFMjczLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0Q3OEM5NjM2LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "11985" ], "x-ms-request-id": [ - "45fcd861-7638-4cfb-8b7a-503b4d3ef0de" + "52477c74-81ce-4b4f-9f95-48a00000e137" ], "x-ms-correlation-request-id": [ - "45fcd861-7638-4cfb-8b7a-503b4d3ef0de" + "52477c74-81ce-4b4f-9f95-48a00000e137" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T222915Z:45fcd861-7638-4cfb-8b7a-503b4d3ef0de" + "WESTINDIA:20220517T044754Z:52477c74-81ce-4b4f-9f95-48a00000e137" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -11535,7 +14130,7 @@ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 22:29:15 GMT" + "Tue, 17 May 2022 04:47:54 GMT" ], "Expires": [ "-1" @@ -11548,16 +14143,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzE1ODRFMjczLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekUxT0RSRk1qY3pMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0Q3OEM5NjM2LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSMFEzT0VNNU5qTTJMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" ] }, "ResponseHeaders": { @@ -11568,22 +14163,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzE1ODRFMjczLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0Q3OEM5NjM2LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" + "11984" ], "x-ms-request-id": [ - "6beb1c2a-3f4a-46cd-b6c3-0e4075c33781" + "4c6065fc-4fc8-4f4e-8925-a726ac23a896" ], "x-ms-correlation-request-id": [ - "6beb1c2a-3f4a-46cd-b6c3-0e4075c33781" + "4c6065fc-4fc8-4f4e-8925-a726ac23a896" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T222931Z:6beb1c2a-3f4a-46cd-b6c3-0e4075c33781" + "WESTINDIA:20220517T044809Z:4c6065fc-4fc8-4f4e-8925-a726ac23a896" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -11592,7 +14187,7 @@ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 22:29:30 GMT" + "Tue, 17 May 2022 04:48:09 GMT" ], "Expires": [ "-1" @@ -11605,16 +14200,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzE1ODRFMjczLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekUxT0RSRk1qY3pMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0Q3OEM5NjM2LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSMFEzT0VNNU5qTTJMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" ] }, "ResponseHeaders": { @@ -11625,22 +14220,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzE1ODRFMjczLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0Q3OEM5NjM2LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" + "11983" ], "x-ms-request-id": [ - "85d818d5-bdd7-4044-95e2-1fe0d9594779" + "c7f2f9a1-d6a7-4139-96c0-b7744774e8e9" ], "x-ms-correlation-request-id": [ - "85d818d5-bdd7-4044-95e2-1fe0d9594779" + "c7f2f9a1-d6a7-4139-96c0-b7744774e8e9" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T222946Z:85d818d5-bdd7-4044-95e2-1fe0d9594779" + "WESTINDIA:20220517T044825Z:c7f2f9a1-d6a7-4139-96c0-b7744774e8e9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -11649,7 +14244,7 @@ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 22:29:45 GMT" + "Tue, 17 May 2022 04:48:25 GMT" ], "Expires": [ "-1" @@ -11662,16 +14257,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzE1ODRFMjczLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekUxT0RSRk1qY3pMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0Q3OEM5NjM2LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSMFEzT0VNNU5qTTJMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" ] }, "ResponseHeaders": { @@ -11682,16 +14277,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11984" + "11982" ], "x-ms-request-id": [ - "315f9978-8ed9-44a6-853a-5b06ca399f50" + "6ae9cdb5-d9f9-43e8-add9-eab1467b5a62" ], "x-ms-correlation-request-id": [ - "315f9978-8ed9-44a6-853a-5b06ca399f50" + "6ae9cdb5-d9f9-43e8-add9-eab1467b5a62" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T223002Z:315f9978-8ed9-44a6-853a-5b06ca399f50" + "WESTINDIA:20220517T044840Z:6ae9cdb5-d9f9-43e8-add9-eab1467b5a62" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -11700,7 +14295,7 @@ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 22:30:01 GMT" + "Tue, 17 May 2022 04:48:39 GMT" ], "Expires": [ "-1" @@ -11713,16 +14308,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzE1ODRFMjczLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekUxT0RSRk1qY3pMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0Q3OEM5NjM2LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSMFEzT0VNNU5qTTJMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" ] }, "ResponseHeaders": { @@ -11733,16 +14328,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11983" + "11981" ], "x-ms-request-id": [ - "bfa79992-d2c8-4c3a-a773-ede78fc7763f" + "d3dc5704-1022-44b4-846d-b3409898abae" ], "x-ms-correlation-request-id": [ - "bfa79992-d2c8-4c3a-a773-ede78fc7763f" + "d3dc5704-1022-44b4-846d-b3409898abae" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T223002Z:bfa79992-d2c8-4c3a-a773-ede78fc7763f" + "WESTINDIA:20220517T044840Z:d3dc5704-1022-44b4-846d-b3409898abae" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -11751,7 +14346,7 @@ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 22:30:01 GMT" + "Tue, 17 May 2022 04:48:40 GMT" ], "Expires": [ "-1" @@ -11766,10 +14361,10 @@ ], "Names": {}, "Variables": { - "SubscriptionId": "e37510d7-33b6-4676-886f-ee75bcc01871", - "NamingSuffix": "1584e273-c680-47e5-9138-a95a450247c5", - "StartDate1": "2022-02-22 22:15:10Z", - "EndDate1": "2022-02-23 22:15:10Z", - "EndDate2": "2022-02-23 22:21:18Z" + "SubscriptionId": "da364f0f-307b-41c9-9d47-b7413ec45535", + "NamingSuffix": "d78c9636-c2e4-4115-aa73-38ec7e19c7c4", + "StartDate1": "2022-05-16 04:35:03Z", + "EndDate1": "2022-05-17 04:35:03Z", + "EndDate2": "2022-05-17 04:40:30Z" } } \ No newline at end of file diff --git a/src/RecoveryServices/RecoveryServices.Backup.Test/SessionRecords/Microsoft.Azure.Commands.RecoveryServices.Backup.Test.ScenarioTests.JobTests/TestAzureVMGetJobsTimeFilter.json b/src/RecoveryServices/RecoveryServices.Backup.Test/SessionRecords/Microsoft.Azure.Commands.RecoveryServices.Backup.Test.ScenarioTests.JobTests/TestAzureVMGetJobsTimeFilter.json index 80de2f8ec48f..2822e12ef992 100644 --- a/src/RecoveryServices/RecoveryServices.Backup.Test/SessionRecords/Microsoft.Azure.Commands.RecoveryServices.Backup.Test.ScenarioTests.JobTests/TestAzureVMGetJobsTimeFilter.json +++ b/src/RecoveryServices/RecoveryServices.Backup.Test/SessionRecords/Microsoft.Azure.Commands.RecoveryServices.Backup.Test.ScenarioTests.JobTests/TestAzureVMGetJobsTimeFilter.json @@ -1,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourcegroups/PSTestRGf3c6e251?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlZ3JvdXBzL1BTVGVzdFJHZjNjNmUyNTE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourcegroups/PSTestRG972e6a32?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlZ3JvdXBzL1BTVGVzdFJHOTcyZTZhMzI/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6703c628-f870-4243-8615-d2ab4bc5c74c" + "0d4c2e5c-7d67-4ae9-8f28-0a05f37974b0" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" ] }, "ResponseHeaders": { @@ -33,13 +33,13 @@ "11999" ], "x-ms-request-id": [ - "4e419290-f2d6-41a2-adb0-d68ca70183a0" + "6b05d7f4-8478-44d1-98c5-d780885a727b" ], "x-ms-correlation-request-id": [ - "4e419290-f2d6-41a2-adb0-d68ca70183a0" + "6b05d7f4-8478-44d1-98c5-d780885a727b" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T200318Z:4e419290-f2d6-41a2-adb0-d68ca70183a0" + "JIOINDIAWEST:20220516T190036Z:6b05d7f4-8478-44d1-98c5-d780885a727b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -48,7 +48,7 @@ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 20:03:18 GMT" + "Mon, 16 May 2022 19:00:35 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -60,26 +60,26 @@ "108" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'PSTestRGf3c6e251' could not be found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'PSTestRG972e6a32' could not be found.\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourcegroups/PSTestRGf3c6e251?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlZ3JvdXBzL1BTVGVzdFJHZjNjNmUyNTE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourcegroups/PSTestRG972e6a32?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlZ3JvdXBzL1BTVGVzdFJHOTcyZTZhMzI/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9fc1bb89-50ee-4239-b851-cb37aa7ef82e" + "91793fc5-d4b9-4627-a926-fd1de5434e00" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" ] }, "ResponseHeaders": { @@ -93,13 +93,13 @@ "11999" ], "x-ms-request-id": [ - "85885fe0-7fb8-403e-bd3c-8803c91f89be" + "a186046b-de48-491a-8522-e3499ba05393" ], "x-ms-correlation-request-id": [ - "85885fe0-7fb8-403e-bd3c-8803c91f89be" + "a186046b-de48-491a-8522-e3499ba05393" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T201640Z:85885fe0-7fb8-403e-bd3c-8803c91f89be" + "WESTINDIA:20220516T191146Z:a186046b-de48-491a-8522-e3499ba05393" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -108,7 +108,7 @@ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 20:16:40 GMT" + "Mon, 16 May 2022 19:11:46 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -120,26 +120,26 @@ "192" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251\",\r\n \"name\": \"PSTestRGf3c6e251\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32\",\r\n \"name\": \"PSTestRG972e6a32\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourcegroups/PSTestRGf3c6e251?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlZ3JvdXBzL1BTVGVzdFJHZjNjNmUyNTE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourcegroups/PSTestRG972e6a32?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlZ3JvdXBzL1BTVGVzdFJHOTcyZTZhMzI/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"southeastasia\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "a7d4de04-1c83-4066-93e8-d686bd041054" + "0320bce1-14e9-4821-83c0-3932407d058b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" ], "Content-Type": [ "application/json; charset=utf-8" @@ -159,13 +159,13 @@ "1199" ], "x-ms-request-id": [ - "ad94de56-7496-4cd4-a9a3-3dff95193905" + "3a5bbc88-addb-4e3b-b47d-49d5f46db02b" ], "x-ms-correlation-request-id": [ - "ad94de56-7496-4cd4-a9a3-3dff95193905" + "3a5bbc88-addb-4e3b-b47d-49d5f46db02b" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T200322Z:ad94de56-7496-4cd4-a9a3-3dff95193905" + "JIOINDIAWEST:20220516T190038Z:3a5bbc88-addb-4e3b-b47d-49d5f46db02b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -174,7 +174,7 @@ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 20:03:22 GMT" + "Mon, 16 May 2022 19:00:37 GMT" ], "Content-Length": [ "192" @@ -186,26 +186,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251\",\r\n \"name\": \"PSTestRGf3c6e251\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32\",\r\n \"name\": \"PSTestRG972e6a32\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.Compute/virtualMachines/PSTestVMf3c6e1?api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZjNjNmUyNTEvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy9QU1Rlc3RWTWYzYzZlMT9hcGktdmVyc2lvbj0yMDIxLTExLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.Compute/virtualMachines/PSTestVM972e61?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTcyZTZhMzIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy9QU1Rlc3RWTTk3MmU2MT9hcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3c0e51f2-f545-4545-af2f-0c25426b18ed" + "2567104e-7c16-4aa8-a0bb-6ded9d4ae3d7" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ] }, "ResponseHeaders": { @@ -219,13 +219,13 @@ "gateway" ], "x-ms-request-id": [ - "f7214806-12ed-4bbc-a242-ce3c7b2aec3a" + "58eec387-a3cb-41be-bee2-6521686ffdfe" ], "x-ms-correlation-request-id": [ - "f7214806-12ed-4bbc-a242-ce3c7b2aec3a" + "58eec387-a3cb-41be-bee2-6521686ffdfe" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T200323Z:f7214806-12ed-4bbc-a242-ce3c7b2aec3a" + "JIOINDIAWEST:20220516T190040Z:58eec387-a3cb-41be-bee2-6521686ffdfe" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -234,7 +234,7 @@ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 20:03:22 GMT" + "Mon, 16 May 2022 19:00:39 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -246,23 +246,23 @@ "236" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Compute/virtualMachines/PSTestVMf3c6e1' under resource group 'PSTestRGf3c6e251' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Compute/virtualMachines/PSTestVM972e61' under resource group 'PSTestRG972e6a32' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.Compute/virtualMachines/PSTestVMf3c6e1?api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZjNjNmUyNTEvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy9QU1Rlc3RWTWYzYzZlMT9hcGktdmVyc2lvbj0yMDIxLTExLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.Compute/virtualMachines/PSTestVM972e61?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTcyZTZhMzIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy9QU1Rlc3RWTTk3MmU2MT9hcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "97820b56-d5e2-4232-877d-8da467319bd4" + "1a42f5a5-3016-4c53-830a-5b1f50b0f886" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ] }, "ResponseHeaders": { @@ -273,35 +273,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/LowCostGet3Min;3998,Microsoft.Compute/LowCostGet30Min;31984" + "Microsoft.Compute/LowCostGet3Min;3992,Microsoft.Compute/LowCostGet30Min;31963" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "3abe54c9-0c0c-49fb-a7c8-45d19656a963" + "0c12bf72-0869-4759-803b-cb4c91ee75d7" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11995" ], "x-ms-correlation-request-id": [ - "24be36ad-78e0-46c6-be6a-ec31b52883ce" + "678a364b-a8c1-41bd-9fc4-8f5604a0bf06" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T200652Z:24be36ad-78e0-46c6-be6a-ec31b52883ce" + "JIOINDIAWEST:20220516T190311Z:678a364b-a8c1-41bd-9fc4-8f5604a0bf06" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 20:06:51 GMT" + "Mon, 16 May 2022 19:03:11 GMT" ], "Content-Length": [ - "2265" + "2195" ], "Content-Type": [ "application/json; charset=utf-8" @@ -310,26 +310,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"PSTestVMf3c6e1\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.Compute/virtualMachines/PSTestVMf3c6e1\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"Purpose\": \"PSTest\",\r\n \"MabUsed\": \"Yes\",\r\n \"AutoShutDown\": \"No\",\r\n \"Owner\": \"sarath\",\r\n \"DeleteBy\": \"06-2022\",\r\n \"azsecpack\": \"nonprod\",\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": \"true\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"c1024c6b-5efc-4d8d-9ad5-2db69f13abc6\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D1_v2\"\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.4946.220202\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"PSTestVMf3c6e1_OsDisk_1_71bd2298c6e345818cff992302a02e35\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.Compute/disks/PSTestVMf3c6e1_OsDisk_1_71bd2298c6e345818cff992302a02e35\"\r\n },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"PSTestVMf3c6e1\",\r\n \"adminUsername\": \"demouser\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"AutomaticByOS\",\r\n \"assessmentMode\": \"ImageDefault\"\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.Network/networkInterfaces/PSTestNICf3c6e1\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"timeCreated\": \"2022-02-23T15:04:09.2168712-05:00\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"PSTestVM972e61\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.Compute/virtualMachines/PSTestVM972e61\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MabUsed\": \"Yes\",\r\n \"Owner\": \"sarath\",\r\n \"AutoShutDown\": \"No\",\r\n \"Purpose\": \"PSTest\",\r\n \"DeleteBy\": \"06-2022\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"8fae66e1-e23b-45f2-a9d6-5d5561ddf51d\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D1_v2\"\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.5125.220505\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"PSTestVM972e61_OsDisk_1_db7a67994ca3491cacd1017bbd5d4c47\",\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/PSTestRG972e6a32/providers/Microsoft.Compute/disks/PSTestVM972e61_OsDisk_1_db7a67994ca3491cacd1017bbd5d4c47\"\r\n },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"PSTestVM972e61\",\r\n \"adminUsername\": \"demouser\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"AutomaticByOS\",\r\n \"assessmentMode\": \"ImageDefault\"\r\n },\r\n \"enableVMAgentPlatformUpdates\": false\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/PSTestRG972e6a32/providers/Microsoft.Network/networkInterfaces/PSTestNIC972e61\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"timeCreated\": \"2022-05-17T00:31:19.4596641+05:30\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.Compute/virtualMachines/PSTestVMf3c6e1?api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZjNjNmUyNTEvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy9QU1Rlc3RWTWYzYzZlMT9hcGktdmVyc2lvbj0yMDIxLTExLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.Compute/virtualMachines/PSTestVM972e61?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTcyZTZhMzIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy9QU1Rlc3RWTTk3MmU2MT9hcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "30846b23-73f6-402a-be1a-330edcd028ba" + "07a25315-4de6-4a34-9f67-7d90c4a2ccec" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ] }, "ResponseHeaders": { @@ -340,35 +340,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/LowCostGet3Min;3994,Microsoft.Compute/LowCostGet30Min;31980" + "Microsoft.Compute/LowCostGet3Min;3988,Microsoft.Compute/LowCostGet30Min;31957" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "7b57d5f2-edd2-4637-9990-8523363439f4" + "3a3c837d-7f41-40c7-af28-84448ef6ff19" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" + "11985" ], "x-ms-correlation-request-id": [ - "73624c06-2b58-465c-959f-44c33e19b582" + "e19a4867-106e-43ff-aa54-83f577319482" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T200833Z:73624c06-2b58-465c-959f-44c33e19b582" + "JIOINDIAWEST:20220516T190547Z:e19a4867-106e-43ff-aa54-83f577319482" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 20:08:32 GMT" + "Mon, 16 May 2022 19:05:47 GMT" ], "Content-Length": [ - "2828" + "2758" ], "Content-Type": [ "application/json; charset=utf-8" @@ -377,26 +377,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"PSTestVMf3c6e1\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.Compute/virtualMachines/PSTestVMf3c6e1\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"Purpose\": \"PSTest\",\r\n \"MabUsed\": \"Yes\",\r\n \"AutoShutDown\": \"No\",\r\n \"Owner\": \"sarath\",\r\n \"DeleteBy\": \"06-2022\",\r\n \"azsecpack\": \"nonprod\",\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": \"true\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"c1024c6b-5efc-4d8d-9ad5-2db69f13abc6\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D1_v2\"\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.4946.220202\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"PSTestVMf3c6e1_OsDisk_1_71bd2298c6e345818cff992302a02e35\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.Compute/disks/PSTestVMf3c6e1_OsDisk_1_71bd2298c6e345818cff992302a02e35\"\r\n },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"PSTestVMf3c6e1\",\r\n \"adminUsername\": \"demouser\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"AutomaticByOS\",\r\n \"assessmentMode\": \"ImageDefault\"\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.Network/networkInterfaces/PSTestNICf3c6e1\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"timeCreated\": \"2022-02-23T15:04:09.2168712-05:00\"\r\n },\r\n \"resources\": [\r\n {\r\n \"name\": \"BGInfo\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.Compute/virtualMachines/PSTestVMf3c6e1/extensions/BGInfo\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"southeastasia\",\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}", + "ResponseBody": "{\r\n \"name\": \"PSTestVM972e61\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.Compute/virtualMachines/PSTestVM972e61\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MabUsed\": \"Yes\",\r\n \"Owner\": \"sarath\",\r\n \"AutoShutDown\": \"No\",\r\n \"Purpose\": \"PSTest\",\r\n \"DeleteBy\": \"06-2022\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"8fae66e1-e23b-45f2-a9d6-5d5561ddf51d\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D1_v2\"\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.5125.220505\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"PSTestVM972e61_OsDisk_1_db7a67994ca3491cacd1017bbd5d4c47\",\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/PSTestRG972e6a32/providers/Microsoft.Compute/disks/PSTestVM972e61_OsDisk_1_db7a67994ca3491cacd1017bbd5d4c47\"\r\n },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"PSTestVM972e61\",\r\n \"adminUsername\": \"demouser\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"AutomaticByOS\",\r\n \"assessmentMode\": \"ImageDefault\"\r\n },\r\n \"enableVMAgentPlatformUpdates\": false\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/PSTestRG972e6a32/providers/Microsoft.Network/networkInterfaces/PSTestNIC972e61\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"timeCreated\": \"2022-05-17T00:31:19.4596641+05:30\"\r\n },\r\n \"resources\": [\r\n {\r\n \"name\": \"BGInfo\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.Compute/virtualMachines/PSTestVM972e61/extensions/BGInfo\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"BGInfo\",\r\n \"typeHandlerVersion\": \"2.2\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.Network/virtualNetworks/PSTestVNETf3c6e1?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZjNjNmUyNTEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy9QU1Rlc3RWTkVUZjNjNmUxP2FwaS12ZXJzaW9uPTIwMjEtMDUtMDE=", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.Network/virtualNetworks/PSTestVNET972e61?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTcyZTZhMzIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy9QU1Rlc3RWTkVUOTcyZTYxP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "13c32011-f8cb-4d46-9d31-318645a386ad" + "ec67241f-47db-4c3a-9ba2-8e98e0b8c5e4" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ] }, "ResponseHeaders": { @@ -410,13 +410,13 @@ "gateway" ], "x-ms-request-id": [ - "6fa381de-b95f-4e82-a351-40f20de2d261" + "45ada5f0-c4f1-4288-8aa8-825b8babd3b1" ], "x-ms-correlation-request-id": [ - "6fa381de-b95f-4e82-a351-40f20de2d261" + "45ada5f0-c4f1-4288-8aa8-825b8babd3b1" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T200326Z:6fa381de-b95f-4e82-a351-40f20de2d261" + "JIOINDIAWEST:20220516T190042Z:45ada5f0-c4f1-4288-8aa8-825b8babd3b1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -425,7 +425,7 @@ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 20:03:25 GMT" + "Mon, 16 May 2022 19:00:42 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -437,23 +437,23 @@ "238" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/virtualNetworks/PSTestVNETf3c6e1' under resource group 'PSTestRGf3c6e251' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/virtualNetworks/PSTestVNET972e61' under resource group 'PSTestRG972e6a32' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.Network/virtualNetworks/PSTestVNETf3c6e1?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZjNjNmUyNTEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy9QU1Rlc3RWTkVUZjNjNmUxP2FwaS12ZXJzaW9uPTIwMjEtMDUtMDE=", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.Network/virtualNetworks/PSTestVNET972e61?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTcyZTZhMzIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy9QU1Rlc3RWTkVUOTcyZTYxP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "13c32011-f8cb-4d46-9d31-318645a386ad" + "ec67241f-47db-4c3a-9ba2-8e98e0b8c5e4" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ] }, "ResponseHeaders": { @@ -464,16 +464,16 @@ "no-cache" ], "ETag": [ - "W/\"fbcc8bf1-e19f-4f0a-af68-4bd0c164dca4\"" + "W/\"435318c8-9282-40ef-a67d-4771d480c436\"" ], "x-ms-request-id": [ - "63b39873-9da6-46f8-8548-c4043cddeab8" + "8159185e-b898-488b-a832-e92e19fe606a" ], "x-ms-correlation-request-id": [ - "142457f7-20f1-46bd-9fac-f6f388f23121" + "0b1c23fa-687f-47ba-bb90-1f5e47d35298" ], "x-ms-arm-service-request-id": [ - "392eeadf-c912-487c-a55c-ff37dbb1a5e7" + "530025af-0efd-4351-9a6e-4b5d71831540" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -483,16 +483,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11997" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T200339Z:142457f7-20f1-46bd-9fac-f6f388f23121" + "JIOINDIAWEST:20220516T190049Z:0b1c23fa-687f-47ba-bb90-1f5e47d35298" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 20:03:38 GMT" + "Mon, 16 May 2022 19:00:49 GMT" ], "Content-Length": [ "1315" @@ -504,26 +504,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"PSTestVNETf3c6e1\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.Network/virtualNetworks/PSTestVNETf3c6e1\",\r\n \"etag\": \"W/\\\"fbcc8bf1-e19f-4f0a-af68-4bd0c164dca4\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"f8c67032-a157-404f-909d-1216668310e0\",\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\": \"PSTestSNCf3c6e1\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.Network/virtualNetworks/PSTestVNETf3c6e1/subnets/PSTestSNCf3c6e1\",\r\n \"etag\": \"W/\\\"fbcc8bf1-e19f-4f0a-af68-4bd0c164dca4\\\"\",\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 },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"PSTestVNET972e61\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.Network/virtualNetworks/PSTestVNET972e61\",\r\n \"etag\": \"W/\\\"435318c8-9282-40ef-a67d-4771d480c436\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"6b1c1234-4e9b-49a1-a288-64dfffb6e875\",\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\": \"PSTestSNC972e61\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.Network/virtualNetworks/PSTestVNET972e61/subnets/PSTestSNC972e61\",\r\n \"etag\": \"W/\\\"435318c8-9282-40ef-a67d-4771d480c436\\\"\",\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 },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.Network/virtualNetworks/PSTestVNETf3c6e1?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZjNjNmUyNTEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy9QU1Rlc3RWTkVUZjNjNmUxP2FwaS12ZXJzaW9uPTIwMjEtMDUtMDE=", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.Network/virtualNetworks/PSTestVNET972e61?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTcyZTZhMzIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy9QU1Rlc3RWTkVUOTcyZTYxP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "13c32011-f8cb-4d46-9d31-318645a386ad" + "ec67241f-47db-4c3a-9ba2-8e98e0b8c5e4" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ] }, "ResponseHeaders": { @@ -534,16 +534,16 @@ "no-cache" ], "ETag": [ - "W/\"fbcc8bf1-e19f-4f0a-af68-4bd0c164dca4\"" + "W/\"435318c8-9282-40ef-a67d-4771d480c436\"" ], "x-ms-request-id": [ - "5f8b4ec1-1e9f-42e4-bf24-2d12bc3c273d" + "9e9d6d21-c414-4f42-85db-4d429a81d2e5" ], "x-ms-correlation-request-id": [ - "8af8a3d2-ab19-4f1a-8ebf-6218694fc133" + "a961aac0-909e-4c9a-86b2-5c48a9a542ec" ], "x-ms-arm-service-request-id": [ - "bc684241-b43b-46d3-9b4e-be2340ac94f0" + "9ecfba9c-0134-4bc8-9578-3c6311373c3a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -553,16 +553,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11996" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T200339Z:8af8a3d2-ab19-4f1a-8ebf-6218694fc133" + "JIOINDIAWEST:20220516T190050Z:a961aac0-909e-4c9a-86b2-5c48a9a542ec" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 20:03:39 GMT" + "Mon, 16 May 2022 19:00:49 GMT" ], "Content-Length": [ "1315" @@ -574,26 +574,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"PSTestVNETf3c6e1\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.Network/virtualNetworks/PSTestVNETf3c6e1\",\r\n \"etag\": \"W/\\\"fbcc8bf1-e19f-4f0a-af68-4bd0c164dca4\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"f8c67032-a157-404f-909d-1216668310e0\",\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\": \"PSTestSNCf3c6e1\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.Network/virtualNetworks/PSTestVNETf3c6e1/subnets/PSTestSNCf3c6e1\",\r\n \"etag\": \"W/\\\"fbcc8bf1-e19f-4f0a-af68-4bd0c164dca4\\\"\",\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 },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"PSTestVNET972e61\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.Network/virtualNetworks/PSTestVNET972e61\",\r\n \"etag\": \"W/\\\"435318c8-9282-40ef-a67d-4771d480c436\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"6b1c1234-4e9b-49a1-a288-64dfffb6e875\",\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\": \"PSTestSNC972e61\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.Network/virtualNetworks/PSTestVNET972e61/subnets/PSTestSNC972e61\",\r\n \"etag\": \"W/\\\"435318c8-9282-40ef-a67d-4771d480c436\\\"\",\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 },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.Network/virtualNetworks/PSTestVNETf3c6e1?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZjNjNmUyNTEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy9QU1Rlc3RWTkVUZjNjNmUxP2FwaS12ZXJzaW9uPTIwMjEtMDUtMDE=", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.Network/virtualNetworks/PSTestVNET972e61?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTcyZTZhMzIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy9QU1Rlc3RWTkVUOTcyZTYxP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=", "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 \"applicationGatewayIpConfigurations\": []\r\n },\r\n \"name\": \"PSTestSNCf3c6e1\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"ipAllocations\": []\r\n },\r\n \"location\": \"southeastasia\"\r\n}", + "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 \"applicationGatewayIpConfigurations\": []\r\n },\r\n \"name\": \"PSTestSNC972e61\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"ipAllocations\": []\r\n },\r\n \"location\": \"southeastasia\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "13c32011-f8cb-4d46-9d31-318645a386ad" + "ec67241f-47db-4c3a-9ba2-8e98e0b8c5e4" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -613,19 +613,19 @@ "3" ], "x-ms-request-id": [ - "2e8ee5d3-61a2-4db5-8ad8-a566d11674fd" + "963b7be4-b4c8-47dc-82c2-5d96ba94732d" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Network/locations/southeastasia/operations/2e8ee5d3-61a2-4db5-8ad8-a566d11674fd?api-version=2021-05-01" + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Network/locations/southeastasia/operations/963b7be4-b4c8-47dc-82c2-5d96ba94732d?api-version=2021-08-01" ], "x-ms-correlation-request-id": [ - "6f01856f-7204-4548-b879-d2bdc27afcfd" + "a4a65dc7-f228-4caa-8310-df339397f254" ], "Azure-AsyncNotification": [ "Enabled" ], "x-ms-arm-service-request-id": [ - "f44aef1b-f594-4dc7-8356-ac915899d900" + "3c60932b-6024-4e66-82bd-e201068d202d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -638,13 +638,13 @@ "1199" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T200335Z:6f01856f-7204-4548-b879-d2bdc27afcfd" + "JIOINDIAWEST:20220516T190046Z:a4a65dc7-f228-4caa-8310-df339397f254" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 20:03:35 GMT" + "Mon, 16 May 2022 19:00:46 GMT" ], "Content-Length": [ "1313" @@ -656,23 +656,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"PSTestVNETf3c6e1\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.Network/virtualNetworks/PSTestVNETf3c6e1\",\r\n \"etag\": \"W/\\\"9aee9584-c1a9-4aa4-8612-64abd392fad8\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"f8c67032-a157-404f-909d-1216668310e0\",\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\": \"PSTestSNCf3c6e1\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.Network/virtualNetworks/PSTestVNETf3c6e1/subnets/PSTestSNCf3c6e1\",\r\n \"etag\": \"W/\\\"9aee9584-c1a9-4aa4-8612-64abd392fad8\\\"\",\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 },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"PSTestVNET972e61\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.Network/virtualNetworks/PSTestVNET972e61\",\r\n \"etag\": \"W/\\\"210f6131-9f6f-40f5-bee9-72ca91062943\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"6b1c1234-4e9b-49a1-a288-64dfffb6e875\",\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\": \"PSTestSNC972e61\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.Network/virtualNetworks/PSTestVNET972e61/subnets/PSTestSNC972e61\",\r\n \"etag\": \"W/\\\"210f6131-9f6f-40f5-bee9-72ca91062943\\\"\",\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 },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Network/locations/southeastasia/operations/2e8ee5d3-61a2-4db5-8ad8-a566d11674fd?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzJlOGVlNWQzLTYxYTItNGRiNS04YWQ4LWE1NjZkMTE2NzRmZD9hcGktdmVyc2lvbj0yMDIxLTA1LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Network/locations/southeastasia/operations/963b7be4-b4c8-47dc-82c2-5d96ba94732d?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzk2M2I3YmU0LWI0YzgtNDdkYy04MmMyLTVkOTZiYTk0NzMyZD9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "13c32011-f8cb-4d46-9d31-318645a386ad" + "ec67241f-47db-4c3a-9ba2-8e98e0b8c5e4" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ] }, "ResponseHeaders": { @@ -683,13 +683,13 @@ "no-cache" ], "x-ms-request-id": [ - "402aae02-1cd6-497f-b573-8dfc2b5fc634" + "0d6719c8-5c1a-457f-9146-f4c55932c112" ], "x-ms-correlation-request-id": [ - "32df7510-665e-46e8-b654-8e34dcef2855" + "d12c576f-31bd-446b-ab5e-f333e72eda24" ], "x-ms-arm-service-request-id": [ - "9ab18971-c268-4a3b-9b62-0860b208998f" + "51fabd8e-ceb4-4bf0-bc0b-a885c690b32d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -699,16 +699,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11998" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T200338Z:32df7510-665e-46e8-b654-8e34dcef2855" + "JIOINDIAWEST:20220516T190049Z:d12c576f-31bd-446b-ab5e-f333e72eda24" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 20:03:38 GMT" + "Mon, 16 May 2022 19:00:49 GMT" ], "Content-Length": [ "29" @@ -724,22 +724,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.Network/publicIPAddresses/pstestpublicdnsf3c6e1?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZjNjNmUyNTEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BzdGVzdHB1YmxpY2Ruc2YzYzZlMT9hcGktdmVyc2lvbj0yMDIxLTA1LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.Network/publicIPAddresses/pstestpublicdns972e61?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTcyZTZhMzIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BzdGVzdHB1YmxpY2Ruczk3MmU2MT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2ceb94a6-be9e-4a6b-ba4d-b9ea8f96a07e" + "f3076846-5598-44f7-82f2-4ed79b54f398" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ] }, "ResponseHeaders": { @@ -753,13 +753,13 @@ "gateway" ], "x-ms-request-id": [ - "65bcacdf-d6a3-4897-aecc-15e4c40d5960" + "ae874245-a0df-4284-9792-d79bbcb2c43f" ], "x-ms-correlation-request-id": [ - "65bcacdf-d6a3-4897-aecc-15e4c40d5960" + "ae874245-a0df-4284-9792-d79bbcb2c43f" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T200339Z:65bcacdf-d6a3-4897-aecc-15e4c40d5960" + "JIOINDIAWEST:20220516T190050Z:ae874245-a0df-4284-9792-d79bbcb2c43f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -768,7 +768,7 @@ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 20:03:39 GMT" + "Mon, 16 May 2022 19:00:50 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -780,23 +780,23 @@ "245" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/publicIPAddresses/pstestpublicdnsf3c6e1' under resource group 'PSTestRGf3c6e251' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/publicIPAddresses/pstestpublicdns972e61' under resource group 'PSTestRG972e6a32' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.Network/publicIPAddresses/pstestpublicdnsf3c6e1?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZjNjNmUyNTEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BzdGVzdHB1YmxpY2Ruc2YzYzZlMT9hcGktdmVyc2lvbj0yMDIxLTA1LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.Network/publicIPAddresses/pstestpublicdns972e61?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTcyZTZhMzIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BzdGVzdHB1YmxpY2Ruczk3MmU2MT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2ceb94a6-be9e-4a6b-ba4d-b9ea8f96a07e" + "f3076846-5598-44f7-82f2-4ed79b54f398" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ] }, "ResponseHeaders": { @@ -807,16 +807,16 @@ "no-cache" ], "ETag": [ - "W/\"12b6121c-50fc-4e14-a3e7-3432566ea51e\"" + "W/\"96548db3-30ea-4218-afcd-167829a6f79c\"" ], "x-ms-request-id": [ - "5894c92c-cecc-4d72-82e7-265ad9204335" + "21a84e84-5815-40e9-a099-cca921f5a731" ], "x-ms-correlation-request-id": [ - "898b9736-3c01-41b1-9589-41076d97f00a" + "af346cce-0f4f-4d9a-8232-b6cee16b5593" ], "x-ms-arm-service-request-id": [ - "8dc226ff-eb7c-40cf-994c-f65413ae465a" + "4297a351-9b09-40c1-8cd9-18164051ce3b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -826,19 +826,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11989" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T200346Z:898b9736-3c01-41b1-9589-41076d97f00a" + "JIOINDIAWEST:20220516T190103Z:af346cce-0f4f-4d9a-8232-b6cee16b5593" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 20:03:45 GMT" + "Mon, 16 May 2022 19:01:03 GMT" ], "Content-Length": [ - "699" + "698" ], "Content-Type": [ "application/json; charset=utf-8" @@ -847,26 +847,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"pstestpublicdnsf3c6e1\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.Network/publicIPAddresses/pstestpublicdnsf3c6e1\",\r\n \"etag\": \"W/\\\"12b6121c-50fc-4e14-a3e7-3432566ea51e\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"736d0600-d193-43bf-86f1-36941e3a4482\",\r\n \"ipAddress\": \"20.205.189.133\",\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 \"tier\": \"Regional\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"pstestpublicdns972e61\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.Network/publicIPAddresses/pstestpublicdns972e61\",\r\n \"etag\": \"W/\\\"96548db3-30ea-4218-afcd-167829a6f79c\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"a7c708d2-576f-48d5-b0fb-0ade24564b39\",\r\n \"ipAddress\": \"20.24.142.119\",\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 \"tier\": \"Regional\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.Network/publicIPAddresses/pstestpublicdnsf3c6e1?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZjNjNmUyNTEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BzdGVzdHB1YmxpY2Ruc2YzYzZlMT9hcGktdmVyc2lvbj0yMDIxLTA1LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.Network/publicIPAddresses/pstestpublicdns972e61?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTcyZTZhMzIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BzdGVzdHB1YmxpY2Ruczk3MmU2MT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2ceb94a6-be9e-4a6b-ba4d-b9ea8f96a07e" + "f3076846-5598-44f7-82f2-4ed79b54f398" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ] }, "ResponseHeaders": { @@ -877,16 +877,16 @@ "no-cache" ], "ETag": [ - "W/\"12b6121c-50fc-4e14-a3e7-3432566ea51e\"" + "W/\"96548db3-30ea-4218-afcd-167829a6f79c\"" ], "x-ms-request-id": [ - "fbd02c73-cf04-44e0-bdcb-82765aee2998" + "463112d4-a130-44f3-bc43-f8eb6833511e" ], "x-ms-correlation-request-id": [ - "7db2e199-11fb-4080-9511-ea7f36edfa1a" + "4a020d0f-4ef0-403c-abee-0c3188b047bf" ], "x-ms-arm-service-request-id": [ - "8f845df5-0c3d-441f-9296-eb3d55112eb9" + "1a215eb4-8157-47ff-8617-2c07e0d2d222" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -896,19 +896,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11988" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T200346Z:7db2e199-11fb-4080-9511-ea7f36edfa1a" + "JIOINDIAWEST:20220516T190104Z:4a020d0f-4ef0-403c-abee-0c3188b047bf" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 20:03:45 GMT" + "Mon, 16 May 2022 19:01:03 GMT" ], "Content-Length": [ - "699" + "698" ], "Content-Type": [ "application/json; charset=utf-8" @@ -917,26 +917,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"pstestpublicdnsf3c6e1\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.Network/publicIPAddresses/pstestpublicdnsf3c6e1\",\r\n \"etag\": \"W/\\\"12b6121c-50fc-4e14-a3e7-3432566ea51e\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"736d0600-d193-43bf-86f1-36941e3a4482\",\r\n \"ipAddress\": \"20.205.189.133\",\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 \"tier\": \"Regional\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"pstestpublicdns972e61\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.Network/publicIPAddresses/pstestpublicdns972e61\",\r\n \"etag\": \"W/\\\"96548db3-30ea-4218-afcd-167829a6f79c\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"a7c708d2-576f-48d5-b0fb-0ade24564b39\",\r\n \"ipAddress\": \"20.24.142.119\",\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 \"tier\": \"Regional\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.Network/publicIPAddresses/pstestpublicdnsf3c6e1?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZjNjNmUyNTEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BzdGVzdHB1YmxpY2Ruc2YzYzZlMT9hcGktdmVyc2lvbj0yMDIxLTA1LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.Network/publicIPAddresses/pstestpublicdns972e61?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTcyZTZhMzIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BzdGVzdHB1YmxpY2Ruczk3MmU2MT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "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\": \"southeastasia\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "2ceb94a6-be9e-4a6b-ba4d-b9ea8f96a07e" + "f3076846-5598-44f7-82f2-4ed79b54f398" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -956,19 +956,19 @@ "1" ], "x-ms-request-id": [ - "66a8dabb-5dc4-46da-ae18-762824c604cd" + "0102f65b-2346-4ace-86a3-58c260861152" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Network/locations/southeastasia/operations/66a8dabb-5dc4-46da-ae18-762824c604cd?api-version=2021-05-01" + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Network/locations/southeastasia/operations/0102f65b-2346-4ace-86a3-58c260861152?api-version=2021-08-01" ], "x-ms-correlation-request-id": [ - "8575045b-da9a-4343-958b-1e41b03092e0" + "a87906dd-6e80-43a3-bd39-432b4e125b4d" ], "Azure-AsyncNotification": [ "Enabled" ], "x-ms-arm-service-request-id": [ - "98399513-5c1f-459d-bd23-c56d4048e3b3" + "7dbd5253-4d8a-4c52-ba9e-3740a0315cf0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -981,13 +981,13 @@ "1198" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T200344Z:8575045b-da9a-4343-958b-1e41b03092e0" + "JIOINDIAWEST:20220516T190053Z:a87906dd-6e80-43a3-bd39-432b4e125b4d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 20:03:44 GMT" + "Mon, 16 May 2022 19:00:52 GMT" ], "Content-Length": [ "662" @@ -999,23 +999,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"pstestpublicdnsf3c6e1\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.Network/publicIPAddresses/pstestpublicdnsf3c6e1\",\r\n \"etag\": \"W/\\\"dfe56211-3cfb-4552-b6c8-86568c13b254\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"736d0600-d193-43bf-86f1-36941e3a4482\",\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 \"tier\": \"Regional\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"pstestpublicdns972e61\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.Network/publicIPAddresses/pstestpublicdns972e61\",\r\n \"etag\": \"W/\\\"ee32af01-14f6-482f-9e9a-7328b6512ae7\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"a7c708d2-576f-48d5-b0fb-0ade24564b39\",\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 \"tier\": \"Regional\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Network/locations/southeastasia/operations/66a8dabb-5dc4-46da-ae18-762824c604cd?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzY2YThkYWJiLTVkYzQtNDZkYS1hZTE4LTc2MjgyNGM2MDRjZD9hcGktdmVyc2lvbj0yMDIxLTA1LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Network/locations/southeastasia/operations/0102f65b-2346-4ace-86a3-58c260861152?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzAxMDJmNjViLTIzNDYtNGFjZS04NmEzLTU4YzI2MDg2MTE1Mj9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2ceb94a6-be9e-4a6b-ba4d-b9ea8f96a07e" + "f3076846-5598-44f7-82f2-4ed79b54f398" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ] }, "ResponseHeaders": { @@ -1025,14 +1025,151 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "2" + ], "x-ms-request-id": [ - "84ebd898-78a4-444d-b87c-09aaeed731fc" + "ee0d3c8f-5676-4a20-a9e2-d0d783968dff" ], "x-ms-correlation-request-id": [ - "ed810d22-b5d2-4ba9-a492-b7aadfaa00de" + "eb6f57ef-b34c-4c95-a1d3-8e1d2b746830" ], "x-ms-arm-service-request-id": [ - "95b6a96c-d4af-44e3-959d-faabfb7b2cfd" + "b754abe4-15cb-45e3-8978-7d1f71e80512" + ], + "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": [ + "JIOINDIAWEST:20220516T190054Z:eb6f57ef-b34c-4c95-a1d3-8e1d2b746830" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 16 May 2022 19:00:54 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Network/locations/southeastasia/operations/0102f65b-2346-4ace-86a3-58c260861152?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzAxMDJmNjViLTIzNDYtNGFjZS04NmEzLTU4YzI2MDg2MTE1Mj9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f3076846-5598-44f7-82f2-4ed79b54f398" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "2" + ], + "x-ms-request-id": [ + "2f476d2c-1f58-44bd-bc39-50d012e1b77e" + ], + "x-ms-correlation-request-id": [ + "871843ee-dc34-4328-806a-1cfe0905aa05" + ], + "x-ms-arm-service-request-id": [ + "a2024e36-743a-4802-9538-044c50c4d0e3" + ], + "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": [ + "JIOINDIAWEST:20220516T190056Z:871843ee-dc34-4328-806a-1cfe0905aa05" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 16 May 2022 19:00:56 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Network/locations/southeastasia/operations/0102f65b-2346-4ace-86a3-58c260861152?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzAxMDJmNjViLTIzNDYtNGFjZS04NmEzLTU4YzI2MDg2MTE1Mj9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f3076846-5598-44f7-82f2-4ed79b54f398" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "2" + ], + "x-ms-request-id": [ + "f5a4a503-d2e5-4e22-80a2-5f689dd1429a" + ], + "x-ms-correlation-request-id": [ + "a0c9fb78-cab7-481a-829d-744cbfa882e2" + ], + "x-ms-arm-service-request-id": [ + "1fcef6f2-4628-4c2b-b161-cf71e1ace9cc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1045,13 +1182,144 @@ "11992" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T200346Z:ed810d22-b5d2-4ba9-a492-b7aadfaa00de" + "JIOINDIAWEST:20220516T190059Z:a0c9fb78-cab7-481a-829d-744cbfa882e2" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 20:03:45 GMT" + "Mon, 16 May 2022 19:00:58 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Network/locations/southeastasia/operations/0102f65b-2346-4ace-86a3-58c260861152?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzAxMDJmNjViLTIzNDYtNGFjZS04NmEzLTU4YzI2MDg2MTE1Mj9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f3076846-5598-44f7-82f2-4ed79b54f398" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "2" + ], + "x-ms-request-id": [ + "47caf0c3-69b2-41d2-8c37-bd5d120040d7" + ], + "x-ms-correlation-request-id": [ + "5e6aa5d2-4c5d-4439-8f74-121da46460a6" + ], + "x-ms-arm-service-request-id": [ + "15725ae6-8bb1-44de-bb78-70275a57bbdc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11991" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T190101Z:5e6aa5d2-4c5d-4439-8f74-121da46460a6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 16 May 2022 19:01:00 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Network/locations/southeastasia/operations/0102f65b-2346-4ace-86a3-58c260861152?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzAxMDJmNjViLTIzNDYtNGFjZS04NmEzLTU4YzI2MDg2MTE1Mj9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f3076846-5598-44f7-82f2-4ed79b54f398" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "50234548-42f6-41cd-a065-25a9f66147df" + ], + "x-ms-correlation-request-id": [ + "4acc6fc8-db65-4b08-860c-f7424bef3ec4" + ], + "x-ms-arm-service-request-id": [ + "641fe161-e4dc-4d71-ad2e-1201ad134558" + ], + "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": [ + "JIOINDIAWEST:20220516T190103Z:4acc6fc8-db65-4b08-860c-f7424bef3ec4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 16 May 2022 19:01:03 GMT" ], "Content-Length": [ "29" @@ -1067,22 +1335,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGf3c6e1?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZjNjNmUyNTEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtTZWN1cml0eUdyb3Vwcy9QU1Rlc3ROU0dmM2M2ZTE/YXBpLXZlcnNpb249MjAyMS0wNS0wMQ==", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG972e61?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTcyZTZhMzIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtTZWN1cml0eUdyb3Vwcy9QU1Rlc3ROU0c5NzJlNjE/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7d278c38-19e6-4561-b302-3ea9dacdf810" + "e3955aa6-5894-4d0c-be14-b7c9120e6b4d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ] }, "ResponseHeaders": { @@ -1096,13 +1364,13 @@ "gateway" ], "x-ms-request-id": [ - "e2b277a5-fec7-4458-9aab-4ef24d65eab8" + "79769b73-f4db-49eb-85b0-341a4eb27e4d" ], "x-ms-correlation-request-id": [ - "e2b277a5-fec7-4458-9aab-4ef24d65eab8" + "79769b73-f4db-49eb-85b0-341a4eb27e4d" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T200347Z:e2b277a5-fec7-4458-9aab-4ef24d65eab8" + "JIOINDIAWEST:20220516T190104Z:79769b73-f4db-49eb-85b0-341a4eb27e4d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1111,7 +1379,7 @@ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 20:03:46 GMT" + "Mon, 16 May 2022 19:01:03 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1123,23 +1391,23 @@ "243" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/networkSecurityGroups/PSTestNSGf3c6e1' under resource group 'PSTestRGf3c6e251' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/networkSecurityGroups/PSTestNSG972e61' under resource group 'PSTestRG972e6a32' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGf3c6e1?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZjNjNmUyNTEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtTZWN1cml0eUdyb3Vwcy9QU1Rlc3ROU0dmM2M2ZTE/YXBpLXZlcnNpb249MjAyMS0wNS0wMQ==", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG972e61?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTcyZTZhMzIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtTZWN1cml0eUdyb3Vwcy9QU1Rlc3ROU0c5NzJlNjE/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7d278c38-19e6-4561-b302-3ea9dacdf810" + "e3955aa6-5894-4d0c-be14-b7c9120e6b4d" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ] }, "ResponseHeaders": { @@ -1150,16 +1418,16 @@ "no-cache" ], "ETag": [ - "W/\"d1547606-8707-4ed7-8fd7-a41bf4495b2d\"" + "W/\"8f7f4134-98bc-4aa1-870a-ced6a9918a67\"" ], "x-ms-request-id": [ - "041b378e-fe0c-4775-b44f-3fcf0d7a5f25" + "34bdd3b0-77b2-4664-8b18-3b581bb97886" ], "x-ms-correlation-request-id": [ - "8d665406-0bd3-4192-beec-65d94e14fe04" + "9395c881-d826-4b3f-80b1-9e31e9a296e6" ], "x-ms-arm-service-request-id": [ - "443aaafb-5d99-47cb-9fd0-a1b297592642" + "90b1e07f-cc8d-4de0-a5f0-0b9f8777f187" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1169,16 +1437,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "11985" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T200354Z:8d665406-0bd3-4192-beec-65d94e14fe04" + "JIOINDIAWEST:20220516T190109Z:9395c881-d826-4b3f-80b1-9e31e9a296e6" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 20:03:54 GMT" + "Mon, 16 May 2022 19:01:09 GMT" ], "Content-Length": [ "8475" @@ -1190,26 +1458,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"PSTestNSGf3c6e1\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGf3c6e1\",\r\n \"etag\": \"W/\\\"d1547606-8707-4ed7-8fd7-a41bf4495b2d\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"3c71a393-2ffd-46ad-a507-72fc5ec65e6d\",\r\n \"securityRules\": [\r\n {\r\n \"name\": \"PSTestNSGRuleRDPf3c6e1\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGf3c6e1/securityRules/PSTestNSGRuleRDPf3c6e1\",\r\n \"etag\": \"W/\\\"d1547606-8707-4ed7-8fd7-a41bf4495b2d\\\"\",\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\": \"PSTestNSGRuleWebf3c6e1\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGf3c6e1/securityRules/PSTestNSGRuleWebf3c6e1\",\r\n \"etag\": \"W/\\\"d1547606-8707-4ed7-8fd7-a41bf4495b2d\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGf3c6e1/defaultSecurityRules/AllowVnetInBound\",\r\n \"etag\": \"W/\\\"d1547606-8707-4ed7-8fd7-a41bf4495b2d\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGf3c6e1/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\r\n \"etag\": \"W/\\\"d1547606-8707-4ed7-8fd7-a41bf4495b2d\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGf3c6e1/defaultSecurityRules/DenyAllInBound\",\r\n \"etag\": \"W/\\\"d1547606-8707-4ed7-8fd7-a41bf4495b2d\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGf3c6e1/defaultSecurityRules/AllowVnetOutBound\",\r\n \"etag\": \"W/\\\"d1547606-8707-4ed7-8fd7-a41bf4495b2d\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGf3c6e1/defaultSecurityRules/AllowInternetOutBound\",\r\n \"etag\": \"W/\\\"d1547606-8707-4ed7-8fd7-a41bf4495b2d\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGf3c6e1/defaultSecurityRules/DenyAllOutBound\",\r\n \"etag\": \"W/\\\"d1547606-8707-4ed7-8fd7-a41bf4495b2d\\\"\",\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}", + "ResponseBody": "{\r\n \"name\": \"PSTestNSG972e61\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG972e61\",\r\n \"etag\": \"W/\\\"8f7f4134-98bc-4aa1-870a-ced6a9918a67\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"31146c47-1624-4591-9742-b85d95480fc3\",\r\n \"securityRules\": [\r\n {\r\n \"name\": \"PSTestNSGRuleRDP972e61\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG972e61/securityRules/PSTestNSGRuleRDP972e61\",\r\n \"etag\": \"W/\\\"8f7f4134-98bc-4aa1-870a-ced6a9918a67\\\"\",\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\": \"PSTestNSGRuleWeb972e61\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG972e61/securityRules/PSTestNSGRuleWeb972e61\",\r\n \"etag\": \"W/\\\"8f7f4134-98bc-4aa1-870a-ced6a9918a67\\\"\",\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/PSTestRG972e6a32/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG972e61/defaultSecurityRules/AllowVnetInBound\",\r\n \"etag\": \"W/\\\"8f7f4134-98bc-4aa1-870a-ced6a9918a67\\\"\",\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/PSTestRG972e6a32/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG972e61/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\r\n \"etag\": \"W/\\\"8f7f4134-98bc-4aa1-870a-ced6a9918a67\\\"\",\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/PSTestRG972e6a32/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG972e61/defaultSecurityRules/DenyAllInBound\",\r\n \"etag\": \"W/\\\"8f7f4134-98bc-4aa1-870a-ced6a9918a67\\\"\",\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/PSTestRG972e6a32/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG972e61/defaultSecurityRules/AllowVnetOutBound\",\r\n \"etag\": \"W/\\\"8f7f4134-98bc-4aa1-870a-ced6a9918a67\\\"\",\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/PSTestRG972e6a32/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG972e61/defaultSecurityRules/AllowInternetOutBound\",\r\n \"etag\": \"W/\\\"8f7f4134-98bc-4aa1-870a-ced6a9918a67\\\"\",\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/PSTestRG972e6a32/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG972e61/defaultSecurityRules/DenyAllOutBound\",\r\n \"etag\": \"W/\\\"8f7f4134-98bc-4aa1-870a-ced6a9918a67\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGf3c6e1?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZjNjNmUyNTEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtTZWN1cml0eUdyb3Vwcy9QU1Rlc3ROU0dmM2M2ZTE/YXBpLXZlcnNpb249MjAyMS0wNS0wMQ==", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG972e61?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTcyZTZhMzIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtTZWN1cml0eUdyb3Vwcy9QU1Rlc3ROU0c5NzJlNjE/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7d278c38-19e6-4561-b302-3ea9dacdf810" + "e3955aa6-5894-4d0c-be14-b7c9120e6b4d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ] }, "ResponseHeaders": { @@ -1220,16 +1488,16 @@ "no-cache" ], "ETag": [ - "W/\"d1547606-8707-4ed7-8fd7-a41bf4495b2d\"" + "W/\"8f7f4134-98bc-4aa1-870a-ced6a9918a67\"" ], "x-ms-request-id": [ - "28ac2010-4ea4-4576-8540-6a27496c3dae" + "ea513314-ba9e-4928-941e-5576ce76ae1d" ], "x-ms-correlation-request-id": [ - "b9f42349-e135-4398-9465-b5d54dd929d1" + "f0e856a2-0120-40f6-ac15-a8834f42cfae" ], "x-ms-arm-service-request-id": [ - "b539df1b-fba2-46ce-a4c9-c00550ed1762" + "b9a2c66f-a29b-4350-9c7f-cb05ef3bd23f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1239,16 +1507,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" + "11984" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T200355Z:b9f42349-e135-4398-9465-b5d54dd929d1" + "JIOINDIAWEST:20220516T190110Z:f0e856a2-0120-40f6-ac15-a8834f42cfae" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 20:03:54 GMT" + "Mon, 16 May 2022 19:01:09 GMT" ], "Content-Length": [ "8475" @@ -1260,26 +1528,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"PSTestNSGf3c6e1\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGf3c6e1\",\r\n \"etag\": \"W/\\\"d1547606-8707-4ed7-8fd7-a41bf4495b2d\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"3c71a393-2ffd-46ad-a507-72fc5ec65e6d\",\r\n \"securityRules\": [\r\n {\r\n \"name\": \"PSTestNSGRuleRDPf3c6e1\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGf3c6e1/securityRules/PSTestNSGRuleRDPf3c6e1\",\r\n \"etag\": \"W/\\\"d1547606-8707-4ed7-8fd7-a41bf4495b2d\\\"\",\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\": \"PSTestNSGRuleWebf3c6e1\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGf3c6e1/securityRules/PSTestNSGRuleWebf3c6e1\",\r\n \"etag\": \"W/\\\"d1547606-8707-4ed7-8fd7-a41bf4495b2d\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGf3c6e1/defaultSecurityRules/AllowVnetInBound\",\r\n \"etag\": \"W/\\\"d1547606-8707-4ed7-8fd7-a41bf4495b2d\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGf3c6e1/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\r\n \"etag\": \"W/\\\"d1547606-8707-4ed7-8fd7-a41bf4495b2d\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGf3c6e1/defaultSecurityRules/DenyAllInBound\",\r\n \"etag\": \"W/\\\"d1547606-8707-4ed7-8fd7-a41bf4495b2d\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGf3c6e1/defaultSecurityRules/AllowVnetOutBound\",\r\n \"etag\": \"W/\\\"d1547606-8707-4ed7-8fd7-a41bf4495b2d\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGf3c6e1/defaultSecurityRules/AllowInternetOutBound\",\r\n \"etag\": \"W/\\\"d1547606-8707-4ed7-8fd7-a41bf4495b2d\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGf3c6e1/defaultSecurityRules/DenyAllOutBound\",\r\n \"etag\": \"W/\\\"d1547606-8707-4ed7-8fd7-a41bf4495b2d\\\"\",\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}", + "ResponseBody": "{\r\n \"name\": \"PSTestNSG972e61\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG972e61\",\r\n \"etag\": \"W/\\\"8f7f4134-98bc-4aa1-870a-ced6a9918a67\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"31146c47-1624-4591-9742-b85d95480fc3\",\r\n \"securityRules\": [\r\n {\r\n \"name\": \"PSTestNSGRuleRDP972e61\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG972e61/securityRules/PSTestNSGRuleRDP972e61\",\r\n \"etag\": \"W/\\\"8f7f4134-98bc-4aa1-870a-ced6a9918a67\\\"\",\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\": \"PSTestNSGRuleWeb972e61\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG972e61/securityRules/PSTestNSGRuleWeb972e61\",\r\n \"etag\": \"W/\\\"8f7f4134-98bc-4aa1-870a-ced6a9918a67\\\"\",\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/PSTestRG972e6a32/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG972e61/defaultSecurityRules/AllowVnetInBound\",\r\n \"etag\": \"W/\\\"8f7f4134-98bc-4aa1-870a-ced6a9918a67\\\"\",\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/PSTestRG972e6a32/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG972e61/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\r\n \"etag\": \"W/\\\"8f7f4134-98bc-4aa1-870a-ced6a9918a67\\\"\",\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/PSTestRG972e6a32/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG972e61/defaultSecurityRules/DenyAllInBound\",\r\n \"etag\": \"W/\\\"8f7f4134-98bc-4aa1-870a-ced6a9918a67\\\"\",\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/PSTestRG972e6a32/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG972e61/defaultSecurityRules/AllowVnetOutBound\",\r\n \"etag\": \"W/\\\"8f7f4134-98bc-4aa1-870a-ced6a9918a67\\\"\",\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/PSTestRG972e6a32/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG972e61/defaultSecurityRules/AllowInternetOutBound\",\r\n \"etag\": \"W/\\\"8f7f4134-98bc-4aa1-870a-ced6a9918a67\\\"\",\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/PSTestRG972e6a32/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG972e61/defaultSecurityRules/DenyAllOutBound\",\r\n \"etag\": \"W/\\\"8f7f4134-98bc-4aa1-870a-ced6a9918a67\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGf3c6e1?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZjNjNmUyNTEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtTZWN1cml0eUdyb3Vwcy9QU1Rlc3ROU0dmM2M2ZTE/YXBpLXZlcnNpb249MjAyMS0wNS0wMQ==", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG972e61?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTcyZTZhMzIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtTZWN1cml0eUdyb3Vwcy9QU1Rlc3ROU0c5NzJlNjE/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==", "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\": \"PSTestNSGRuleRDPf3c6e1\"\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\": \"PSTestNSGRuleWebf3c6e1\"\r\n }\r\n ]\r\n },\r\n \"location\": \"southeastasia\"\r\n}", + "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\": \"PSTestNSGRuleRDP972e61\"\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\": \"PSTestNSGRuleWeb972e61\"\r\n }\r\n ]\r\n },\r\n \"location\": \"southeastasia\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "7d278c38-19e6-4561-b302-3ea9dacdf810" + "e3955aa6-5894-4d0c-be14-b7c9120e6b4d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1299,19 +1567,19 @@ "3" ], "x-ms-request-id": [ - "ebacefa7-0fd9-474f-99e4-8728913b0a65" + "38101633-4113-4ce0-9976-984f21837d3f" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Network/locations/southeastasia/operations/ebacefa7-0fd9-474f-99e4-8728913b0a65?api-version=2021-05-01" + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Network/locations/southeastasia/operations/38101633-4113-4ce0-9976-984f21837d3f?api-version=2021-08-01" ], "x-ms-correlation-request-id": [ - "d4674e9f-9fe4-4f02-a6b0-48e7d4cbe12f" + "35459a69-095a-4cbd-ab13-f0782b770fc1" ], "Azure-AsyncNotification": [ "Enabled" ], "x-ms-arm-service-request-id": [ - "6e61ee1d-e5fa-43cc-bb98-39d46cb1c5fd" + "7b04d4ff-a10e-4dcf-af29-c5616ce79b87" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1324,13 +1592,13 @@ "1197" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T200351Z:d4674e9f-9fe4-4f02-a6b0-48e7d4cbe12f" + "JIOINDIAWEST:20220516T190106Z:35459a69-095a-4cbd-ab13-f0782b770fc1" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 20:03:50 GMT" + "Mon, 16 May 2022 19:01:05 GMT" ], "Content-Length": [ "8466" @@ -1342,23 +1610,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"PSTestNSGf3c6e1\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGf3c6e1\",\r\n \"etag\": \"W/\\\"b008a29f-99d0-426e-9dc2-662049c58015\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"3c71a393-2ffd-46ad-a507-72fc5ec65e6d\",\r\n \"securityRules\": [\r\n {\r\n \"name\": \"PSTestNSGRuleRDPf3c6e1\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGf3c6e1/securityRules/PSTestNSGRuleRDPf3c6e1\",\r\n \"etag\": \"W/\\\"b008a29f-99d0-426e-9dc2-662049c58015\\\"\",\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\": \"PSTestNSGRuleWebf3c6e1\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGf3c6e1/securityRules/PSTestNSGRuleWebf3c6e1\",\r\n \"etag\": \"W/\\\"b008a29f-99d0-426e-9dc2-662049c58015\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGf3c6e1/defaultSecurityRules/AllowVnetInBound\",\r\n \"etag\": \"W/\\\"b008a29f-99d0-426e-9dc2-662049c58015\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGf3c6e1/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\r\n \"etag\": \"W/\\\"b008a29f-99d0-426e-9dc2-662049c58015\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGf3c6e1/defaultSecurityRules/DenyAllInBound\",\r\n \"etag\": \"W/\\\"b008a29f-99d0-426e-9dc2-662049c58015\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGf3c6e1/defaultSecurityRules/AllowVnetOutBound\",\r\n \"etag\": \"W/\\\"b008a29f-99d0-426e-9dc2-662049c58015\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGf3c6e1/defaultSecurityRules/AllowInternetOutBound\",\r\n \"etag\": \"W/\\\"b008a29f-99d0-426e-9dc2-662049c58015\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGf3c6e1/defaultSecurityRules/DenyAllOutBound\",\r\n \"etag\": \"W/\\\"b008a29f-99d0-426e-9dc2-662049c58015\\\"\",\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}", + "ResponseBody": "{\r\n \"name\": \"PSTestNSG972e61\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG972e61\",\r\n \"etag\": \"W/\\\"2a6b39ff-6f30-4bd9-ae67-43c2c7026775\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"31146c47-1624-4591-9742-b85d95480fc3\",\r\n \"securityRules\": [\r\n {\r\n \"name\": \"PSTestNSGRuleRDP972e61\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG972e61/securityRules/PSTestNSGRuleRDP972e61\",\r\n \"etag\": \"W/\\\"2a6b39ff-6f30-4bd9-ae67-43c2c7026775\\\"\",\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\": \"PSTestNSGRuleWeb972e61\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG972e61/securityRules/PSTestNSGRuleWeb972e61\",\r\n \"etag\": \"W/\\\"2a6b39ff-6f30-4bd9-ae67-43c2c7026775\\\"\",\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/PSTestRG972e6a32/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG972e61/defaultSecurityRules/AllowVnetInBound\",\r\n \"etag\": \"W/\\\"2a6b39ff-6f30-4bd9-ae67-43c2c7026775\\\"\",\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/PSTestRG972e6a32/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG972e61/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\r\n \"etag\": \"W/\\\"2a6b39ff-6f30-4bd9-ae67-43c2c7026775\\\"\",\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/PSTestRG972e6a32/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG972e61/defaultSecurityRules/DenyAllInBound\",\r\n \"etag\": \"W/\\\"2a6b39ff-6f30-4bd9-ae67-43c2c7026775\\\"\",\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/PSTestRG972e6a32/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG972e61/defaultSecurityRules/AllowVnetOutBound\",\r\n \"etag\": \"W/\\\"2a6b39ff-6f30-4bd9-ae67-43c2c7026775\\\"\",\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/PSTestRG972e6a32/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG972e61/defaultSecurityRules/AllowInternetOutBound\",\r\n \"etag\": \"W/\\\"2a6b39ff-6f30-4bd9-ae67-43c2c7026775\\\"\",\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/PSTestRG972e6a32/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG972e61/defaultSecurityRules/DenyAllOutBound\",\r\n \"etag\": \"W/\\\"2a6b39ff-6f30-4bd9-ae67-43c2c7026775\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Network/locations/southeastasia/operations/ebacefa7-0fd9-474f-99e4-8728913b0a65?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2ViYWNlZmE3LTBmZDktNDc0Zi05OWU0LTg3Mjg5MTNiMGE2NT9hcGktdmVyc2lvbj0yMDIxLTA1LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Network/locations/southeastasia/operations/38101633-4113-4ce0-9976-984f21837d3f?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzM4MTAxNjMzLTQxMTMtNGNlMC05OTc2LTk4NGYyMTgzN2QzZj9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7d278c38-19e6-4561-b302-3ea9dacdf810" + "e3955aa6-5894-4d0c-be14-b7c9120e6b4d" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ] }, "ResponseHeaders": { @@ -1369,13 +1637,13 @@ "no-cache" ], "x-ms-request-id": [ - "1a229b68-05f9-4937-8602-039a0306c93d" + "385762d6-837e-45da-8515-a9abed582937" ], "x-ms-correlation-request-id": [ - "56e58e9d-991e-4756-bf0c-0caec974205b" + "639e6e5f-5535-41c6-80dc-996ec716a3ce" ], "x-ms-arm-service-request-id": [ - "2520c9e7-88c4-4bf9-b297-6aa601a3aaff" + "d21be97d-7e4b-49c9-8b81-dccc1242f9c7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1385,16 +1653,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "11986" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T200354Z:56e58e9d-991e-4756-bf0c-0caec974205b" + "JIOINDIAWEST:20220516T190109Z:639e6e5f-5535-41c6-80dc-996ec716a3ce" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 20:03:53 GMT" + "Mon, 16 May 2022 19:01:09 GMT" ], "Content-Length": [ "29" @@ -1410,22 +1678,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.Network/networkInterfaces/PSTestNICf3c6e1?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZjNjNmUyNTEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL1BTVGVzdE5JQ2YzYzZlMT9hcGktdmVyc2lvbj0yMDIxLTA1LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.Network/networkInterfaces/PSTestNIC972e61?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTcyZTZhMzIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL1BTVGVzdE5JQzk3MmU2MT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e14a6d3e-e41a-4d1d-a23b-717eb85e5129" + "bd475058-d33d-4b5e-bb62-aa1504a91b62" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ] }, "ResponseHeaders": { @@ -1439,13 +1707,13 @@ "gateway" ], "x-ms-request-id": [ - "479bd374-37ea-4681-91dd-30ae11f1f565" + "a1cce175-f34b-45da-bab1-d020c34b9ab5" ], "x-ms-correlation-request-id": [ - "479bd374-37ea-4681-91dd-30ae11f1f565" + "a1cce175-f34b-45da-bab1-d020c34b9ab5" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T200355Z:479bd374-37ea-4681-91dd-30ae11f1f565" + "JIOINDIAWEST:20220516T190110Z:a1cce175-f34b-45da-bab1-d020c34b9ab5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1454,7 +1722,7 @@ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 20:03:54 GMT" + "Mon, 16 May 2022 19:01:10 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1466,23 +1734,23 @@ "239" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/networkInterfaces/PSTestNICf3c6e1' under resource group 'PSTestRGf3c6e251' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/networkInterfaces/PSTestNIC972e61' under resource group 'PSTestRG972e6a32' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.Network/networkInterfaces/PSTestNICf3c6e1?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZjNjNmUyNTEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL1BTVGVzdE5JQ2YzYzZlMT9hcGktdmVyc2lvbj0yMDIxLTA1LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.Network/networkInterfaces/PSTestNIC972e61?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTcyZTZhMzIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL1BTVGVzdE5JQzk3MmU2MT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e14a6d3e-e41a-4d1d-a23b-717eb85e5129" + "bd475058-d33d-4b5e-bb62-aa1504a91b62" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ] }, "ResponseHeaders": { @@ -1493,16 +1761,16 @@ "no-cache" ], "ETag": [ - "W/\"8e283b0f-abc3-49f9-a46d-3dfc320871b6\"" + "W/\"1b19238a-3016-4132-affd-16e31d1ecb33\"" ], "x-ms-request-id": [ - "39d51486-10b8-4872-ae68-051d5940752d" + "aae42337-78a3-4699-a447-4a79ee374ca8" ], "x-ms-correlation-request-id": [ - "4b3a3899-7ae3-4659-888d-82aa30bfc84e" + "695a8780-29d7-46fe-8d1b-dc46fb4c3dba" ], "x-ms-arm-service-request-id": [ - "0615fcd2-2cd9-4826-9241-005c7f419bd1" + "5e02e00d-dd70-4aed-a367-e5ffb61ca790" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1512,19 +1780,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11984" + "11982" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T200359Z:4b3a3899-7ae3-4659-888d-82aa30bfc84e" + "JIOINDIAWEST:20220516T190112Z:695a8780-29d7-46fe-8d1b-dc46fb4c3dba" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 20:03:59 GMT" + "Mon, 16 May 2022 19:01:12 GMT" ], "Content-Length": [ - "2143" + "2165" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1533,26 +1801,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"PSTestNICf3c6e1\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.Network/networkInterfaces/PSTestNICf3c6e1\",\r\n \"etag\": \"W/\\\"8e283b0f-abc3-49f9-a46d-3dfc320871b6\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"f34d48e5-0eaa-44b7-95ed-b0d7bd5499b1\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.Network/networkInterfaces/PSTestNICf3c6e1/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"8e283b0f-abc3-49f9-a46d-3dfc320871b6\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.Network/publicIPAddresses/pstestpublicdnsf3c6e1\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.Network/virtualNetworks/PSTestVNETf3c6e1/subnets/PSTestSNCf3c6e1\"\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\": \"gjymn4cxufhubee3cilgnayq2a.ix.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"vnetEncryptionSupported\": false,\r\n \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGf3c6e1\"\r\n },\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": [],\r\n \"nicType\": \"Standard\"\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"PSTestNIC972e61\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.Network/networkInterfaces/PSTestNIC972e61\",\r\n \"etag\": \"W/\\\"1b19238a-3016-4132-affd-16e31d1ecb33\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"e6395441-dc14-47ed-97d0-e9ba80f26e92\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.Network/networkInterfaces/PSTestNIC972e61/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"1b19238a-3016-4132-affd-16e31d1ecb33\\\"\",\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/PSTestRG972e6a32/providers/Microsoft.Network/publicIPAddresses/pstestpublicdns972e61\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.Network/virtualNetworks/PSTestVNET972e61/subnets/PSTestSNC972e61\"\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\": \"gqjby021j0qutiuimtp55nxiof.ix.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"vnetEncryptionSupported\": false,\r\n \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG972e61\"\r\n },\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": [],\r\n \"nicType\": \"Standard\"\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"kind\": \"Regular\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.Network/networkInterfaces/PSTestNICf3c6e1?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZjNjNmUyNTEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL1BTVGVzdE5JQ2YzYzZlMT9hcGktdmVyc2lvbj0yMDIxLTA1LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.Network/networkInterfaces/PSTestNIC972e61?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTcyZTZhMzIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL1BTVGVzdE5JQzk3MmU2MT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e14a6d3e-e41a-4d1d-a23b-717eb85e5129" + "bd475058-d33d-4b5e-bb62-aa1504a91b62" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ] }, "ResponseHeaders": { @@ -1563,16 +1831,16 @@ "no-cache" ], "ETag": [ - "W/\"8e283b0f-abc3-49f9-a46d-3dfc320871b6\"" + "W/\"1b19238a-3016-4132-affd-16e31d1ecb33\"" ], "x-ms-request-id": [ - "a9b1ef54-d11a-47f7-8c8a-146007a03e0c" + "a94bbeef-8e0b-4ff0-88f2-f30494cd951e" ], "x-ms-correlation-request-id": [ - "520d714f-757e-47e1-9117-24f90603fcec" + "b4073e81-b5d3-4a31-b7c5-1edc8eb917dd" ], "x-ms-arm-service-request-id": [ - "609f38e5-f7e1-4da1-a844-53d6e88bd46e" + "5fc81bc7-ba10-42d6-82e2-a7f818327fdf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1582,19 +1850,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11983" + "11981" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T200400Z:520d714f-757e-47e1-9117-24f90603fcec" + "JIOINDIAWEST:20220516T190113Z:b4073e81-b5d3-4a31-b7c5-1edc8eb917dd" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 20:03:59 GMT" + "Mon, 16 May 2022 19:01:12 GMT" ], "Content-Length": [ - "2143" + "2165" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1603,26 +1871,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"PSTestNICf3c6e1\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.Network/networkInterfaces/PSTestNICf3c6e1\",\r\n \"etag\": \"W/\\\"8e283b0f-abc3-49f9-a46d-3dfc320871b6\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"f34d48e5-0eaa-44b7-95ed-b0d7bd5499b1\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.Network/networkInterfaces/PSTestNICf3c6e1/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"8e283b0f-abc3-49f9-a46d-3dfc320871b6\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.Network/publicIPAddresses/pstestpublicdnsf3c6e1\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.Network/virtualNetworks/PSTestVNETf3c6e1/subnets/PSTestSNCf3c6e1\"\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\": \"gjymn4cxufhubee3cilgnayq2a.ix.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"vnetEncryptionSupported\": false,\r\n \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGf3c6e1\"\r\n },\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": [],\r\n \"nicType\": \"Standard\"\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"PSTestNIC972e61\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.Network/networkInterfaces/PSTestNIC972e61\",\r\n \"etag\": \"W/\\\"1b19238a-3016-4132-affd-16e31d1ecb33\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"e6395441-dc14-47ed-97d0-e9ba80f26e92\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.Network/networkInterfaces/PSTestNIC972e61/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"1b19238a-3016-4132-affd-16e31d1ecb33\\\"\",\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/PSTestRG972e6a32/providers/Microsoft.Network/publicIPAddresses/pstestpublicdns972e61\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.Network/virtualNetworks/PSTestVNET972e61/subnets/PSTestSNC972e61\"\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\": \"gqjby021j0qutiuimtp55nxiof.ix.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"vnetEncryptionSupported\": false,\r\n \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG972e61\"\r\n },\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": [],\r\n \"nicType\": \"Standard\"\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"kind\": \"Regular\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.Network/networkInterfaces/PSTestNICf3c6e1?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZjNjNmUyNTEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL1BTVGVzdE5JQ2YzYzZlMT9hcGktdmVyc2lvbj0yMDIxLTA1LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.Network/networkInterfaces/PSTestNIC972e61?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTcyZTZhMzIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL1BTVGVzdE5JQzk3MmU2MT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"networkSecurityGroup\": {\r\n \"properties\": {\r\n \"securityRules\": []\r\n },\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGf3c6e1\",\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 \"applicationGatewayIpConfigurations\": []\r\n },\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.Network/virtualNetworks/PSTestVNETf3c6e1/subnets/PSTestSNCf3c6e1\"\r\n },\r\n \"primary\": true,\r\n \"publicIPAddress\": {\r\n \"properties\": {\r\n \"ipTags\": []\r\n },\r\n \"zones\": [],\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.Network/publicIPAddresses/pstestpublicdnsf3c6e1\",\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\": \"southeastasia\"\r\n}", + "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/PSTestRG972e6a32/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG972e61\",\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 \"applicationGatewayIpConfigurations\": []\r\n },\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.Network/virtualNetworks/PSTestVNET972e61/subnets/PSTestSNC972e61\"\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/PSTestRG972e6a32/providers/Microsoft.Network/publicIPAddresses/pstestpublicdns972e61\",\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\": \"southeastasia\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "e14a6d3e-e41a-4d1d-a23b-717eb85e5129" + "bd475058-d33d-4b5e-bb62-aa1504a91b62" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1639,19 +1907,19 @@ "no-cache" ], "x-ms-request-id": [ - "0075424e-a39e-4e4d-b903-944e87aff769" + "a2a56bb0-12ad-4b1a-9744-a17481622068" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Network/locations/southeastasia/operations/0075424e-a39e-4e4d-b903-944e87aff769?api-version=2021-05-01" + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Network/locations/southeastasia/operations/a2a56bb0-12ad-4b1a-9744-a17481622068?api-version=2021-08-01" ], "x-ms-correlation-request-id": [ - "02aedb9a-b06b-403c-834d-da8d16ed7bd5" + "b9de1851-72c0-4f01-8f9d-0d8943e0e5e6" ], "Azure-AsyncNotification": [ "Enabled" ], "x-ms-arm-service-request-id": [ - "b3399f47-3340-4504-937c-90005fe4bccd" + "3362619c-80bd-4309-9cfa-5e186f1f9296" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1664,16 +1932,16 @@ "1196" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T200359Z:02aedb9a-b06b-403c-834d-da8d16ed7bd5" + "JIOINDIAWEST:20220516T190112Z:b9de1851-72c0-4f01-8f9d-0d8943e0e5e6" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 20:03:58 GMT" + "Mon, 16 May 2022 19:01:12 GMT" ], "Content-Length": [ - "2143" + "2165" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1682,26 +1950,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"PSTestNICf3c6e1\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.Network/networkInterfaces/PSTestNICf3c6e1\",\r\n \"etag\": \"W/\\\"8e283b0f-abc3-49f9-a46d-3dfc320871b6\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"f34d48e5-0eaa-44b7-95ed-b0d7bd5499b1\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.Network/networkInterfaces/PSTestNICf3c6e1/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"8e283b0f-abc3-49f9-a46d-3dfc320871b6\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.Network/publicIPAddresses/pstestpublicdnsf3c6e1\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.Network/virtualNetworks/PSTestVNETf3c6e1/subnets/PSTestSNCf3c6e1\"\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\": \"gjymn4cxufhubee3cilgnayq2a.ix.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"vnetEncryptionSupported\": false,\r\n \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGf3c6e1\"\r\n },\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": [],\r\n \"nicType\": \"Standard\"\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"PSTestNIC972e61\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.Network/networkInterfaces/PSTestNIC972e61\",\r\n \"etag\": \"W/\\\"1b19238a-3016-4132-affd-16e31d1ecb33\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"e6395441-dc14-47ed-97d0-e9ba80f26e92\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.Network/networkInterfaces/PSTestNIC972e61/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"1b19238a-3016-4132-affd-16e31d1ecb33\\\"\",\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/PSTestRG972e6a32/providers/Microsoft.Network/publicIPAddresses/pstestpublicdns972e61\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.Network/virtualNetworks/PSTestVNET972e61/subnets/PSTestSNC972e61\"\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\": \"gqjby021j0qutiuimtp55nxiof.ix.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"vnetEncryptionSupported\": false,\r\n \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG972e61\"\r\n },\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": [],\r\n \"nicType\": \"Standard\"\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"kind\": \"Regular\"\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Storage/checkNameAvailability?api-version=2021-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9jaGVja05hbWVBdmFpbGFiaWxpdHk/YXBpLXZlcnNpb249MjAyMS0wMi0wMQ==", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Storage/checkNameAvailability?api-version=2021-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9jaGVja05hbWVBdmFpbGFiaWxpdHk/YXBpLXZlcnNpb249MjAyMS0wMi0wMQ==", "RequestMethod": "POST", - "RequestBody": "{\r\n \"name\": \"tespstestpste022315040\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n}", + "RequestBody": "{\r\n \"name\": \"tespstestpste051700310\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "97820b56-d5e2-4232-877d-8da467319bd4" + "1a42f5a5-3016-4c53-830a-5b1f50b0f886" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.PowerShell.Cmdlets.Compute.Helpers.Storage.StorageManagementClient/4.23.0" + "Microsoft.Azure.PowerShell.Cmdlets.Compute.Helpers.Storage.StorageManagementClient/4.26.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1718,7 +1986,7 @@ "no-cache" ], "x-ms-request-id": [ - "19851746-2b11-4de4-b3b2-6476b4747261" + "24deef68-6532-406d-9f38-1b09b251d9fc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1730,16 +1998,16 @@ "11999" ], "x-ms-correlation-request-id": [ - "4c9f9a27-2cbb-4fae-bcd5-27dd68fbb299" + "29553626-faf2-4914-aad3-805bcf4247ab" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T200401Z:4c9f9a27-2cbb-4fae-bcd5-27dd68fbb299" + "JIOINDIAWEST:20220516T190115Z:29553626-faf2-4914-aad3-805bcf4247ab" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 20:04:00 GMT" + "Mon, 16 May 2022 19:01:14 GMT" ], "Content-Length": [ "22" @@ -1755,22 +2023,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Storage/checkNameAvailability?api-version=2021-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9jaGVja05hbWVBdmFpbGFiaWxpdHk/YXBpLXZlcnNpb249MjAyMS0wMi0wMQ==", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Storage/checkNameAvailability?api-version=2021-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9jaGVja05hbWVBdmFpbGFiaWxpdHk/YXBpLXZlcnNpb249MjAyMS0wMi0wMQ==", "RequestMethod": "POST", - "RequestBody": "{\r\n \"name\": \"tespstestpste022315090\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n}", + "RequestBody": "{\r\n \"name\": \"tespstestpste051700360\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "14f7369d-8f09-42c5-aa21-4b4a95ef5acc" + "efa92f6f-637d-4c39-8ede-9c5b75621fd8" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.PowerShell.Cmdlets.Compute.Helpers.Storage.StorageManagementClient/4.23.0" + "Microsoft.Azure.PowerShell.Cmdlets.Compute.Helpers.Storage.StorageManagementClient/4.26.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1787,7 +2055,7 @@ "no-cache" ], "x-ms-request-id": [ - "31f40462-be46-468e-9508-7c0e85aafc20" + "94fc98b0-bac7-479a-9abd-3697e066f806" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1799,16 +2067,16 @@ "11999" ], "x-ms-correlation-request-id": [ - "80b3daa5-512b-41f0-853f-c36d46a443f7" + "6586baef-7c5f-469e-8976-b67e9db091f3" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T200908Z:80b3daa5-512b-41f0-853f-c36d46a443f7" + "WESTINDIA:20220516T190611Z:6586baef-7c5f-469e-8976-b67e9db091f3" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 20:09:07 GMT" + "Mon, 16 May 2022 19:06:11 GMT" ], "Content-Length": [ "22" @@ -1824,22 +2092,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.Compute/virtualMachines/PSTestVMf3c6e1?api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZjNjNmUyNTEvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy9QU1Rlc3RWTWYzYzZlMT9hcGktdmVyc2lvbj0yMDIxLTExLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.Compute/virtualMachines/PSTestVM972e61?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTcyZTZhMzIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy9QU1Rlc3RWTTk3MmU2MT9hcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D1_v2\"\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\": \"PSTestVMf3c6e1\",\r\n \"adminUsername\": \"demouser\",\r\n \"adminPassword\": \"f3c6e251-583Aa.\",\r\n \"windowsConfiguration\": {}\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.Network/networkInterfaces/PSTestNICf3c6e1\"\r\n }\r\n ]\r\n }\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"Purpose\": \"PSTest\",\r\n \"MabUsed\": \"Yes\",\r\n \"AutoShutDown\": \"No\",\r\n \"Owner\": \"sarath\",\r\n \"DeleteBy\": \"06-2022\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D1_v2\"\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\": \"PSTestVM972e61\",\r\n \"adminUsername\": \"demouser\",\r\n \"adminPassword\": \"972e6a32-8f0Aa.\",\r\n \"windowsConfiguration\": {}\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.Network/networkInterfaces/PSTestNIC972e61\"\r\n }\r\n ]\r\n }\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MabUsed\": \"Yes\",\r\n \"Owner\": \"sarath\",\r\n \"AutoShutDown\": \"No\",\r\n \"Purpose\": \"PSTest\",\r\n \"DeleteBy\": \"06-2022\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "97820b56-d5e2-4232-877d-8da467319bd4" + "1a42f5a5-3016-4c53-830a-5b1f50b0f886" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1859,19 +2127,19 @@ "10" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/southeastasia/operations/cae4aa99-0c36-4f8f-ab3b-58918e4ee58b?p=34dc709c-01b2-42c4-84a2-256a9734610d&api-version=2021-11-01" + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Compute/locations/southeastasia/operations/3689f325-08da-4f9c-bdeb-d45843f5123e?p=e484ceca-6435-4a7f-b125-3d82e6b12014&api-version=2021-11-01" ], "Azure-AsyncNotification": [ "Enabled" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/PutVM3Min;239,Microsoft.Compute/PutVM30Min;1198" + "Microsoft.Compute/PutVM3Min;239,Microsoft.Compute/PutVM30Min;1199" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "cae4aa99-0c36-4f8f-ab3b-58918e4ee58b" + "3689f325-08da-4f9c-bdeb-d45843f5123e" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -1881,19 +2149,19 @@ "1199" ], "x-ms-correlation-request-id": [ - "4bb7deda-5faa-4aca-9478-67bedf799b93" + "5279379d-bdbb-45da-9e44-ee1a1b9d62cb" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T200411Z:4bb7deda-5faa-4aca-9478-67bedf799b93" + "JIOINDIAWEST:20220516T190120Z:5279379d-bdbb-45da-9e44-ee1a1b9d62cb" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 20:04:11 GMT" + "Mon, 16 May 2022 19:01:20 GMT" ], "Content-Length": [ - "1992" + "1922" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1902,23 +2170,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"PSTestVMf3c6e1\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.Compute/virtualMachines/PSTestVMf3c6e1\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"Purpose\": \"PSTest\",\r\n \"MabUsed\": \"Yes\",\r\n \"AutoShutDown\": \"No\",\r\n \"Owner\": \"sarath\",\r\n \"DeleteBy\": \"06-2022\",\r\n \"azsecpack\": \"nonprod\",\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": \"true\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"c1024c6b-5efc-4d8d-9ad5-2db69f13abc6\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D1_v2\"\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.4946.220202\"\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 \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"PSTestVMf3c6e1\",\r\n \"adminUsername\": \"demouser\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"AutomaticByOS\",\r\n \"assessmentMode\": \"ImageDefault\"\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.Network/networkInterfaces/PSTestNICf3c6e1\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\",\r\n \"timeCreated\": \"2022-02-23T15:04:09.2168712-05:00\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"PSTestVM972e61\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.Compute/virtualMachines/PSTestVM972e61\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MabUsed\": \"Yes\",\r\n \"Owner\": \"sarath\",\r\n \"AutoShutDown\": \"No\",\r\n \"Purpose\": \"PSTest\",\r\n \"DeleteBy\": \"06-2022\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"8fae66e1-e23b-45f2-a9d6-5d5561ddf51d\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D1_v2\"\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.5125.220505\"\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 \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"PSTestVM972e61\",\r\n \"adminUsername\": \"demouser\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"AutomaticByOS\",\r\n \"assessmentMode\": \"ImageDefault\"\r\n },\r\n \"enableVMAgentPlatformUpdates\": false\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/PSTestRG972e6a32/providers/Microsoft.Network/networkInterfaces/PSTestNIC972e61\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\",\r\n \"timeCreated\": \"2022-05-17T00:31:19.4596641+05:30\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/southeastasia/operations/cae4aa99-0c36-4f8f-ab3b-58918e4ee58b?p=34dc709c-01b2-42c4-84a2-256a9734610d&api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2NhZTRhYTk5LTBjMzYtNGY4Zi1hYjNiLTU4OTE4ZTRlZTU4Yj9wPTM0ZGM3MDljLTAxYjItNDJjNC04NGEyLTI1NmE5NzM0NjEwZCZhcGktdmVyc2lvbj0yMDIxLTExLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Compute/locations/southeastasia/operations/3689f325-08da-4f9c-bdeb-d45843f5123e?p=e484ceca-6435-4a7f-b125-3d82e6b12014&api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzM2ODlmMzI1LTA4ZGEtNGY5Yy1iZGViLWQ0NTg0M2Y1MTIzZT9wPWU0ODRjZWNhLTY0MzUtNGE3Zi1iMTI1LTNkODJlNmIxMjAxNCZhcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "97820b56-d5e2-4232-877d-8da467319bd4" + "1a42f5a5-3016-4c53-830a-5b1f50b0f886" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ] }, "ResponseHeaders": { @@ -1932,13 +2200,13 @@ "50" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperation3Min;14999,Microsoft.Compute/GetOperation30Min;29980" + "Microsoft.Compute/GetOperation3Min;14999,Microsoft.Compute/GetOperation30Min;29993" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "1562f9e7-ecbc-435b-a78c-90c96e7e16ee" + "005e54ce-2a49-4a24-b776-6d757caf619e" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -1948,16 +2216,16 @@ "11998" ], "x-ms-correlation-request-id": [ - "e08f6dcf-0acd-43e6-a7c7-8ed16b3a17e8" + "3c17cc1e-cebe-44c6-b936-0dbf46df2f5b" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T200421Z:e08f6dcf-0acd-43e6-a7c7-8ed16b3a17e8" + "JIOINDIAWEST:20220516T190130Z:3c17cc1e-cebe-44c6-b936-0dbf46df2f5b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 20:04:21 GMT" + "Mon, 16 May 2022 19:01:30 GMT" ], "Content-Length": [ "134" @@ -1969,23 +2237,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-02-23T15:04:08.8418751-05:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"cae4aa99-0c36-4f8f-ab3b-58918e4ee58b\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2022-05-17T00:31:18.6940255+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"3689f325-08da-4f9c-bdeb-d45843f5123e\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/southeastasia/operations/cae4aa99-0c36-4f8f-ab3b-58918e4ee58b?p=34dc709c-01b2-42c4-84a2-256a9734610d&api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2NhZTRhYTk5LTBjMzYtNGY4Zi1hYjNiLTU4OTE4ZTRlZTU4Yj9wPTM0ZGM3MDljLTAxYjItNDJjNC04NGEyLTI1NmE5NzM0NjEwZCZhcGktdmVyc2lvbj0yMDIxLTExLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Compute/locations/southeastasia/operations/3689f325-08da-4f9c-bdeb-d45843f5123e?p=e484ceca-6435-4a7f-b125-3d82e6b12014&api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzM2ODlmMzI1LTA4ZGEtNGY5Yy1iZGViLWQ0NTg0M2Y1MTIzZT9wPWU0ODRjZWNhLTY0MzUtNGE3Zi1iMTI1LTNkODJlNmIxMjAxNCZhcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "97820b56-d5e2-4232-877d-8da467319bd4" + "1a42f5a5-3016-4c53-830a-5b1f50b0f886" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ] }, "ResponseHeaders": { @@ -1996,13 +2264,13 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperation3Min;14998,Microsoft.Compute/GetOperation30Min;29988" + "Microsoft.Compute/GetOperation3Min;14996,Microsoft.Compute/GetOperation30Min;29990" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "7d3b9375-77a1-49a9-ba11-8848f4c305f8" + "bc2d8232-a542-4bce-b69e-05290c347280" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -2012,16 +2280,16 @@ "11997" ], "x-ms-correlation-request-id": [ - "db949025-9479-41de-bd87-133a732ea7f8" + "6c6c46d4-80b1-4dfd-90d9-b96ff8a059f6" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T200511Z:db949025-9479-41de-bd87-133a732ea7f8" + "JIOINDIAWEST:20220516T190220Z:6c6c46d4-80b1-4dfd-90d9-b96ff8a059f6" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 20:05:11 GMT" + "Mon, 16 May 2022 19:02:20 GMT" ], "Content-Length": [ "134" @@ -2033,23 +2301,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-02-23T15:04:08.8418751-05:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"cae4aa99-0c36-4f8f-ab3b-58918e4ee58b\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2022-05-17T00:31:18.6940255+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"3689f325-08da-4f9c-bdeb-d45843f5123e\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/southeastasia/operations/cae4aa99-0c36-4f8f-ab3b-58918e4ee58b?p=34dc709c-01b2-42c4-84a2-256a9734610d&api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2NhZTRhYTk5LTBjMzYtNGY4Zi1hYjNiLTU4OTE4ZTRlZTU4Yj9wPTM0ZGM3MDljLTAxYjItNDJjNC04NGEyLTI1NmE5NzM0NjEwZCZhcGktdmVyc2lvbj0yMDIxLTExLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Compute/locations/southeastasia/operations/3689f325-08da-4f9c-bdeb-d45843f5123e?p=e484ceca-6435-4a7f-b125-3d82e6b12014&api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzM2ODlmMzI1LTA4ZGEtNGY5Yy1iZGViLWQ0NTg0M2Y1MTIzZT9wPWU0ODRjZWNhLTY0MzUtNGE3Zi1iMTI1LTNkODJlNmIxMjAxNCZhcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "97820b56-d5e2-4232-877d-8da467319bd4" + "1a42f5a5-3016-4c53-830a-5b1f50b0f886" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ] }, "ResponseHeaders": { @@ -2060,13 +2328,13 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperation3Min;14997,Microsoft.Compute/GetOperation30Min;29987" + "Microsoft.Compute/GetOperation3Min;14995,Microsoft.Compute/GetOperation30Min;29989" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "feff96d6-95c6-4fa6-bdb4-17b2dc19f59f" + "570da517-9742-4209-ac5f-a56fa85e0289" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -2076,19 +2344,19 @@ "11996" ], "x-ms-correlation-request-id": [ - "2032bf36-c81a-452f-ac50-f4f96423feb0" + "56c43e99-93f5-47e9-918d-d0d7d2cb0c59" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T200602Z:2032bf36-c81a-452f-ac50-f4f96423feb0" + "JIOINDIAWEST:20220516T190311Z:56c43e99-93f5-47e9-918d-d0d7d2cb0c59" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 20:06:01 GMT" + "Mon, 16 May 2022 19:03:11 GMT" ], "Content-Length": [ - "134" + "184" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2097,23 +2365,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-02-23T15:04:08.8418751-05:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"cae4aa99-0c36-4f8f-ab3b-58918e4ee58b\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2022-05-17T00:31:18.6940255+05:30\",\r\n \"endTime\": \"2022-05-17T00:32:42.8810911+05:30\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"3689f325-08da-4f9c-bdeb-d45843f5123e\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/southeastasia/operations/cae4aa99-0c36-4f8f-ab3b-58918e4ee58b?p=34dc709c-01b2-42c4-84a2-256a9734610d&api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2NhZTRhYTk5LTBjMzYtNGY4Zi1hYjNiLTU4OTE4ZTRlZTU4Yj9wPTM0ZGM3MDljLTAxYjItNDJjNC04NGEyLTI1NmE5NzM0NjEwZCZhcGktdmVyc2lvbj0yMDIxLTExLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Compute/locations/southeastasia/publishers?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9wdWJsaXNoZXJzP2FwaS12ZXJzaW9uPTIwMjEtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "97820b56-d5e2-4232-877d-8da467319bd4" + "1a42f5a5-3016-4c53-830a-5b1f50b0f886" + ], + "Accept-Language": [ + "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ] }, "ResponseHeaders": { @@ -2123,36 +2394,36 @@ "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperation3Min;14995,Microsoft.Compute/GetOperation30Min;29985" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "8d76ef5d-2d17-4297-8566-4612360b9f5a_132927459943306577" + ], "x-ms-request-id": [ - "c8590d7a-3dab-4a38-a5cb-baf19cb69fa6" + "526e899d-89b6-499f-9f98-226b62e6e50c" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11994" ], "x-ms-correlation-request-id": [ - "0bc7f03d-7e09-42a5-b582-3b8537bed756" + "d0e43422-6b89-494a-aaf5-9d44323efedf" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T200652Z:0bc7f03d-7e09-42a5-b582-3b8537bed756" + "JIOINDIAWEST:20220516T190312Z:d0e43422-6b89-494a-aaf5-9d44323efedf" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 20:06:51 GMT" + "Mon, 16 May 2022 19:03:12 GMT" ], "Content-Length": [ - "184" + "429382" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2161,26 +2432,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-02-23T15:04:08.8418751-05:00\",\r\n \"endTime\": \"2022-02-23T15:06:14.1079435-05:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"cae4aa99-0c36-4f8f-ab3b-58918e4ee58b\"\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"128technology\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/128technology\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1580863854728\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1580863854728\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1583411303229\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1583411303229\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1583465680865\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1583465680865\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1585118004523\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1585118004523\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1592878437854\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1592878437854\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1597644262255\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1597644262255\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1598955805825\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1598955805825\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1601633765871\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1601633765871\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1602067018799\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1602067018799\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1604579683207\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1604579683207\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1615257339685\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1615257339685\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1615278064010\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1615278064010\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1615455873642\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1615455873642\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1624590941808\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1624590941808\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1640334196980\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1640334196980\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1e\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1e\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"2021ai\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/2021ai\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"247commercelimited1611063941652\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/247commercelimited1611063941652\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"3cx-pbx\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/3cx-pbx\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"42crunch1580391915541\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/42crunch1580391915541\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"4psa\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/4psa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"5nine-software-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/5nine-software-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"6124903\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/6124903\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"7isolutions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/7isolutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"a10networks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/a10networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"a10networks1596136698788\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/a10networks1596136698788\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"abiquo\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/abiquo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"abzoobainc1598420455082\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/abzoobainc1598420455082\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"accedian\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/accedian\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"accelario1579101623356\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/accelario1579101623356\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"accellion\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/accellion\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"accessdata-group\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/accessdata-group\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"accops\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/accops\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aciworldwide\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aciworldwide\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Acronis\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Acronis\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Acronis.Backup\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Acronis.Backup\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"actian-corp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/actian-corp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"actian_matrix\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/actian_matrix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"actifio\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/actifio\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"actiphy\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/actiphy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"actiphyinc1627974506603\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/actiphyinc1627974506603\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"activecountermeasuresinc1631039410073\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/activecountermeasuresinc1631039410073\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"activeeon\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/activeeon\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"activeops\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/activeops\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"adastracorporation-4028356\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/adastracorporation-4028356\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"adgs\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/adgs\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"advantech\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/advantech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"advantech-webaccess\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/advantech-webaccess\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"advantys\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/advantys\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aelf\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aelf\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aerospike\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aerospike\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"affinio\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/affinio\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"affirmednetworks1607630812999\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/affirmednetworks1607630812999\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ageniumscale1591804889317\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ageniumscale1591804889317\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aggregion-ltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aggregion-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"agiledialogssl1603791911858\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/agiledialogssl1603791911858\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"agolo\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/agolo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ahnlabinc1584495174865\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ahnlabinc1584495174865\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ahnlabinc1584495467593\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ahnlabinc1584495467593\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"airalabrus\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/airalabrus\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aiscaler-cache-control-ddos-and-url-rewriting-\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aiscaler-cache-control-ddos-and-url-rewriting-\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aisundowninc1618516322959\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aisundowninc1618516322959\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"akamai-technologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/akamai-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"akumina\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/akumina\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"akumo-software\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/akumo-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"al-tamamunitedtradingcontractingcompany\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/al-tamamunitedtradingcontractingcompany\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"alachisoft\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/alachisoft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"alertlogic\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/alertlogic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"AlertLogic.Extension\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/AlertLogic.Extension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"algolyticstechnologies1606475101268\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/algolyticstechnologies1606475101268\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"alicetrix\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/alicetrix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"alienvault\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/alienvault\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"alldigital-brevity\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/alldigital-brevity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"almalinux\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/almalinux\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"almalinuxosfoundation1628089859865\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/almalinuxosfoundation1628089859865\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"altair-engineering-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/altair-engineering-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"altamira-corporation\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/altamira-corporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"alteryx\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/alteryx\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"altova\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/altova\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"amergint1593131356777\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/amergint1593131356777\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"anjanadatasl1583402861145\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/anjanadatasl1583402861145\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ansys\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ansys\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"antmedia\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/antmedia\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aod\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aod\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"apigee\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/apigee\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"appcara\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appcara\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"appcelerator\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appcelerator\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"appex-networks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appex-networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"appistry\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appistry\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"appiyo_technologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appiyo_technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"appmint_inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appmint_inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"apps-4-rent\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/apps-4-rent\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"appscale-marketplace\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appscale-marketplace\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"appsurifyinc1606933045773\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appsurifyinc1606933045773\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aquaforest\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aquaforest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aquantyinc1598537176913\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aquantyinc1598537176913\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aquaveollc1633710529908\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aquaveollc1633710529908\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"arabesque-group\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/arabesque-group\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"arangodb\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/arangodb\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aras\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aras\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"arcblock\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/arcblock\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"arcesb\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/arcesb\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"arcontechsolutionsprivatelimited1623841797810\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/arcontechsolutionsprivatelimited1623841797810\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"arcserveusallc-marketing\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/arcserveusallc-marketing\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"arista-networks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/arista-networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ariwontollc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ariwontollc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"array_networks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/array_networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"artificial-intelligence-techniques-sl\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/artificial-intelligence-techniques-sl\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"arubanetworks-4922182\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/arubanetworks-4922182\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"asdivertissementinc1617837708654\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/asdivertissementinc1617837708654\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"asigra\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/asigra\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aspentechnologyhq-1353108\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aspentechnologyhq-1353108\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"astadia-1148316\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/astadia-1148316\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"asterasoftware1581022936015\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/asterasoftware1581022936015\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"asyscosoftwarebv\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/asyscosoftwarebv\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ataccama\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ataccama\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"athinfosystems1641442221349\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/athinfosystems1641442221349\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"athinfosystems1648710938250\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/athinfosystems1648710938250\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"atlgaming\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/atlgaming\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"atmosera\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/atmosera\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"atomicorp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/atomicorp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"atomizedinc1587939464368\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/atomizedinc1587939464368\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"attunity_cloudbeam\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/attunity_cloudbeam\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"audiocodes\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/audiocodes\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"auraportal\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/auraportal\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"auriq-systems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/auriq-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"automateio1592914387888\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/automateio1592914387888\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"automationanywhere\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/automationanywhere\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"avanseus\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/avanseus\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"avepoint\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/avepoint\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aveva1\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aveva1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"avi-networks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/avi-networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aviatrix-systems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aviatrix-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"awingu\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/awingu\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"axedrasag1590581171549\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/axedrasag1590581171549\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"axsguardablenv\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/axsguardablenv\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"axshco\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/axshco\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"axway\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/axway\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"axxana\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/axxana\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"azhpc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/azhpc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"azul\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/azul\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"azure-dockit\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/azure-dockit\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"azurecyclecloud\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/azurecyclecloud\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"AzureDatabricks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/AzureDatabricks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"azureopenshift\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/azureopenshift\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"AzureRT.PIR.Synthetics.ProdTest\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/AzureRT.PIR.Synthetics.ProdTest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"AzureRT.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/AzureRT.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"azuretesting\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/azuretesting\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"azuretesting2\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/azuretesting2\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"azuretesting3\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/azuretesting3\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"AzureTools1type\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/AzureTools1type\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"baas-techbureau\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/baas-techbureau\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"baffle-io\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/baffle-io\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"balabit\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/balabit\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"barracudanetworks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/barracudanetworks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"basho\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/basho\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"batch\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/batch\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bayware\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bayware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bdy\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bdy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"belindaczsro1588885355210\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/belindaczsro1588885355210\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bellsoft1582871421940\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bellsoft1582871421940\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"betsol\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/betsol\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"beyondtrust\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/beyondtrust\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bi-builders-as\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bi-builders-as\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"big-id\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/big-id\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"biolibinc1622552350258\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/biolibinc1622552350258\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bissantechnology1583581147809\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bissantechnology1583581147809\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bitdefendercybersecurity\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bitdefendercybersecurity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Bitnami\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Bitnami\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bizagi\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bizagi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bizaptyltd1626489237351\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bizaptyltd1626489237351\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bizdataloome\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bizdataloome\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"biztalk360\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/biztalk360\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"black-duck-software\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/black-duck-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"blackbird\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/blackbird\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"blackmagicdesignincorporated1596492193249\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/blackmagicdesignincorporated1596492193249\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"blk-technologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/blk-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"blockapps\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/blockapps\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"blockchain-foundry\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/blockchain-foundry\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"blockstack\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/blockstack\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bloombase\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bloombase\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bluecat\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bluecat\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bluejeansnetwork1638333611902\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bluejeansnetwork1638333611902\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"blueprismlimited-4827145\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/blueprismlimited-4827145\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bluesyntaxconsulting1617654548594\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bluesyntaxconsulting1617654548594\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bluetalon\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bluetalon\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bmc.ctm\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bmc.ctm\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bmcctm.test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bmcctm.test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"boardpacpvtltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/boardpacpvtltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bocada\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bocada\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"boemskats\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/boemskats\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"botanalytics\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/botanalytics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bowspritconsultingopcprivatelimited1596291408582\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bowspritconsultingopcprivatelimited1596291408582\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bravura-software-llc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bravura-software-llc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Brianjac.Symantec.CloudWorkloadProtection\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Brianjac.Symantec.CloudWorkloadProtection\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bricatainc1584472632111\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bricatainc1584472632111\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bright-computing\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bright-computing\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"brightcomputing\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/brightcomputing\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"brocade_communications\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/brocade_communications\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"brutale\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/brutale\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bryte\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bryte\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bssw\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bssw\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bt-americas-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bt-americas-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"buddhalabs\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/buddhalabs\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cadosecurityltd1626856705534\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cadosecurityltd1626856705534\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"calculated_systems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/calculated_systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"caloudi_corp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/caloudi_corp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"canadiancentreforcybersecurity1610638436359\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/canadiancentreforcybersecurity1610638436359\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Canonical\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Canonical\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"canonical-test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/canonical-test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"carto\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/carto\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cask\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cask\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"castaigroupinc1595243474856\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/castaigroupinc1595243474856\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"catechnologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/catechnologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"catonetworksltd1641478570665\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/catonetworksltd1641478570665\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cautelalabs\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cautelalabs\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cavirin\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cavirin\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cayosoftinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cayosoftinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cdatasoftware\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cdatasoftware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cds\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cds\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"celum-gmbh\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/celum-gmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"center-for-internet-security-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/center-for-internet-security-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"centeritysystems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/centeritysystems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"centrixeltd1594135951373\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/centrixeltd1594135951373\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"centrocomputerspa1584528117084\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/centrocomputerspa1584528117084\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"certifiedsecuritysolutionsinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/certifiedsecuritysolutionsinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"certivox\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/certivox\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cfd-direct\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cfd-direct\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"chain\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/chain\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"checkpoint\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/checkpoint\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"chef-software\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/chef-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Chef.Bootstrap.WindowsAzure\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Chef.Bootstrap.WindowsAzure\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"chunghwatelecom1587573688842\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/chunghwatelecom1587573688842\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cinchy\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cinchy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cinegy-gmbh\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cinegy-gmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ciphertechsinc1646670709341\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ciphertechsinc1646670709341\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"circleci\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/circleci\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cires21\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cires21\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cirruswaveinc1579234787943\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cirruswaveinc1579234787943\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cisco\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cisco\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"citrix\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/citrix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Citrix.ADC\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Citrix.ADC\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"clapsodeughaftungsbeschrnkt1626333173563\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/clapsodeughaftungsbeschrnkt1626333173563\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"clear-linux-project\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/clear-linux-project\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"clone-systems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/clone-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"clouber\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/clouber\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloud-checkr\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloud-checkr\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloud-cruiser\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloud-cruiser\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloud-infrastructure-services\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloud-infrastructure-services\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudaccelinc1628754426775\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudaccelinc1628754426775\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudbees\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudbees\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudbees-enterprise-jenkins\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudbees-enterprise-jenkins\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudbolt-software\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudbolt-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudboltsoftware1639523402532\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudboltsoftware1639523402532\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudboost\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudboost\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudcover\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudcover\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudenablers-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudenablers-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudentity\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudentity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudera\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudera\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudflare\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudflare\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudhouse\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudhouse\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudinfo-4919088\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudinfo-4919088\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudknox\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudknox\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudlanes\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudlanes\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudlink\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudlink\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"CloudLinkEMC.SecureVM\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/CloudLinkEMC.SecureVM\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudmavensolutions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudmavensolutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudneeti\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudneeti\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudplan-gmbh\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudplan-gmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudsecurity\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudsecurity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudsoft\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudsoft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudwhizsolutions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudwhizsolutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudwrxsconsultingltd1631029702055\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudwrxsconsultingltd1631029702055\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"clustrix\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/clustrix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cncf-upstream\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cncf-upstream\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"codaintelligence1606495376525\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/codaintelligence1606495376525\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"codelathe\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/codelathe\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"codenvy\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/codenvy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"codetwo\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/codetwo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cognexcorporation1613759804979\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cognexcorporation1613759804979\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cognexcorporation1647410785838\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cognexcorporation1647410785838\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cognitive-scale\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cognitive-scale\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cognizant\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cognizant\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cognosys\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cognosys\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cohesity\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cohesity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cohesitydev1592001764720\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cohesitydev1592001764720\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cohesive\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cohesive\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"coin-sciences-ltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/coin-sciences-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"collabcloudlimited\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/collabcloudlimited\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"collibranv1619508098620\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/collibranv1619508098620\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"commscopeinc1632135151062\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/commscopeinc1632135151062\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"commvault\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/commvault\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"compellon\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/compellon\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"composable\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/composable\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"comunity\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/comunity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"concentrationheatandmomentumlimited1616154387047\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/concentrationheatandmomentumlimited1616154387047\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Confer\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Confer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"confluentinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/confluentinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"conflux\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/conflux\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"connecting-software\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/connecting-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"consensys\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/consensys\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"containeraider\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/containeraider\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"contiamogmbh\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/contiamogmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"controlcase\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/controlcase\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"controlplane\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/controlplane\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"controlplanecorporation1609967567639\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/controlplanecorporation1609967567639\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"convertigo\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/convertigo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"corda\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/corda\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"core-stack\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/core-stack\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"corent-technology-pvt\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/corent-technology-pvt\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"CoreOS\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/CoreOS\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"couchbase\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/couchbase\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cpanel\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cpanel\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"credativ\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/credativ\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cristiesoftwareltd1599488127561\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cristiesoftwareltd1599488127561\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"crunchyard\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/crunchyard\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"crunchyardltd1623835391104\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/crunchyardltd1623835391104\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cryptocom1585727786636\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cryptocom1585727786636\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cryptosense1605170011574\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cryptosense1605170011574\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cryptzone\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cryptzone\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ctm.bmc.com\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ctm.bmc.com\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ctrliqinc1648673227698\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ctrliqinc1648673227698\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cubebackup\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cubebackup\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cyberark\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cyberark\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cybernetica-as\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cybernetica-as\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cygnalabscorp1646065782458\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cygnalabscorp1646065782458\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cyxtera\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cyxtera\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"d4t4_solutions-1164305\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/d4t4_solutions-1164305\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"daceitdbasensetrafficpulse1579892024934\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/daceitdbasensetrafficpulse1579892024934\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"danielsol.AzureTools1\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/danielsol.AzureTools1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Dans.Windows.App\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Dans.Windows.App\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Dans3.Windows.App\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Dans3.Windows.App\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dataart\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dataart\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"databricks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/databricks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datacore\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datacore\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Datadog.Agent\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Datadog.Agent\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datadynamicsinc1581991927942\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datadynamicsinc1581991927942\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datagapsinc1585348463636\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datagapsinc1585348463636\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dataguiseinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dataguiseinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dataiku\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dataiku\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datalayer\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datalayer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datanomers1584919038987\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datanomers1584919038987\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datanova\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datanova\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datapredsa\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datapredsa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dataroadtechnologiesllc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dataroadtechnologiesllc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datasciencedojo1586563145740\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datasciencedojo1586563145740\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datastax\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datastax\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datasunrise\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datasunrise\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datavirtualitygmbh\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datavirtualitygmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datometry\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datometry\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dbs-h\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dbs-h\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ddn-whamcloud-5345716\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ddn-whamcloud-5345716\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Debian\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Debian\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dece-4446019\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dece-4446019\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"decisosalesbv\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/decisosalesbv\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"deepcognitioninc1593512758156\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/deepcognitioninc1593512758156\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"deepsiginc1581610210151\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/deepsiginc1581610210151\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"deepsurfacesecurityinc1632943333445\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/deepsurfacesecurityinc1632943333445\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dellemc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dellemc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dell_software\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dell_software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"delphix\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/delphix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"deltapathlimited1592886319362\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/deltapathlimited1592886319362\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"denodo\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/denodo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"denyall\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/denyall\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"derdack\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/derdack\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"deskpro1650546806675\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/deskpro1650546806675\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"desktopstudioag1580294245574\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/desktopstudioag1580294245574\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"devfactory\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/devfactory\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"device42inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/device42inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"deviceauthorityinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/deviceauthorityinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"devolutionsinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/devolutionsinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"devopsgroup-uk\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/devopsgroup-uk\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"df-portal-user\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/df-portal-user\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dgsecure\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dgsecure\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Dh2ico\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Dh2ico\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dh2icompany\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dh2icompany\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dhi\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dhi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"diagramics\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/diagramics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dicomsystems1584107398321\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dicomsystems1584107398321\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"diehl-metering\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/diehl-metering\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"digisitesystems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/digisitesystems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"digitaldefenseinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/digitaldefenseinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"digitaloffice\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/digitaloffice\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"digitamizeinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/digitamizeinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"digitate\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/digitate\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"diladele\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/diladele\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dimensionalmechanics-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dimensionalmechanics-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"diqa\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/diqa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"diyatech\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/diyatech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"diyotta\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/diyotta\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"djiindustrialincus\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/djiindustrialincus\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"docker\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/docker\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dome9\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dome9\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dorabot\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dorabot\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dremiocorporation\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dremiocorporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"drizti\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/drizti\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"drone\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/drone\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dsi\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dsi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dundas\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dundas\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dyadic_security\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dyadic_security\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dynatrace\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dynatrace\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dynatrace.ruxit\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dynatrace.ruxit\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"e-magicinc1587696283171\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/e-magicinc1587696283171\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"eastwind-networks-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/eastwind-networks-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"easysoftwaresro1593005637384\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/easysoftwaresro1593005637384\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ebesllc1637780200500\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ebesllc1637780200500\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ecessa\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ecessa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"edevtech\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/edevtech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"edgelesssystems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/edgelesssystems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"edgenetworks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/edgenetworks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"edispheresoftwareprivatelimited1606199736428\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/edispheresoftwareprivatelimited1606199736428\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"education4sight\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/education4sight\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"eecservicesfzllc1604836615706\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/eecservicesfzllc1604836615706\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"egnyte\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/egnyte\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"egress1589289169584\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/egress1589289169584\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"eikonasystemsgmbh1601729310063\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/eikonasystemsgmbh1601729310063\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Elastic\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Elastic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"elasticbox\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/elasticbox\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"elecard\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/elecard\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"electric-cloud\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/electric-cloud\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"elevateiot\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/elevateiot\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"eleven01\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/eleven01\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"elfiqnetworks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/elfiqnetworks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"emercoin\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/emercoin\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"energisme1601990637842\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/energisme1601990637842\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"enforongo\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/enforongo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"engineering-ingegneriainformatica-spa1626786889850\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/engineering-ingegneriainformatica-spa1626786889850\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"engysltd1624364546407\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/engysltd1624364546407\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"enterprise-ethereum-alliance\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/enterprise-ethereum-alliance\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"enterprisedb-corp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/enterprisedb-corp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"enterpriseworx-it\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/enterpriseworx-it\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"epicgames\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/epicgames\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"epicgamesinc1633466121071\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/epicgamesinc1633466121071\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"eproe\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/eproe\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"equalum\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/equalum\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"equilibrium\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/equilibrium\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"equinix\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/equinix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ergoninformatikag1581586464404\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ergoninformatikag1581586464404\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"esdenera\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/esdenera\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ESET\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ESET\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"esetresearch1579795941720\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/esetresearch1579795941720\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"esri\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/esri\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"esyon\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/esyon\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ethereum\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ethereum\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"eurolinuxspzoo1620639373013\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/eurolinuxspzoo1620639373013\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"eventtracker\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/eventtracker\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"evertzmicrosystemsltd1586877923009\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/evertzmicrosystemsltd1586877923009\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"evostream-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/evostream-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"exact\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/exact\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"exasol\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/exasol\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"excelero1608461290726\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/excelero1608461290726\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"exivity\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/exivity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"exonar\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/exonar\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"f5-networks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/f5-networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"falainapteltd1604661424876\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/falainapteltd1604661424876\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"falconstorsoftware\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/falconstorsoftware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fatalsecurity1604924013537\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fatalsecurity1604924013537\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fatpipe-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fatpipe-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fenestrae-1035066\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fenestrae-1035066\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fidesys\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fidesys\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"filecatalyst\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/filecatalyst\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"filemagellc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/filemagellc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fiorano\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fiorano\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fireeye\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fireeye\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"firehost\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/firehost\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"firemon\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/firemon\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"firstderivativesplc1596469572732\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/firstderivativesplc1596469572732\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"flashgrid-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/flashgrid-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"flexbby\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/flexbby\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"flexbby-5255860\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/flexbby-5255860\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"flexify-io\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/flexify-io\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"flexxibleit\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/flexxibleit\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"flowmon\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/flowmon\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"flynet\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/flynet\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"foghorn-systems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/foghorn-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"forcepoint-llc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/forcepoint-llc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"forescout\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/forescout\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"foreseetiab1613650409016\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/foreseetiab1613650409016\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"formpipesoftwareab\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/formpipesoftwareab\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"forscene\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/forscene\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fortanix\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fortanix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fortinet\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fortinet\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fortycloud\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fortycloud\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"forumsystems1599756394904\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/forumsystems1599756394904\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fotopiatechnologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fotopiatechnologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"foxiteuropegmbh1585901066320\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/foxiteuropegmbh1585901066320\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"franzinc1593030725310\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/franzinc1593030725310\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fujitsu_fast\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fujitsu_fast\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fw\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fw\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"g2kgroupgmbh-4821943\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/g2kgroupgmbh-4821943\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gapteq\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gapteq\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gatlingcorp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gatlingcorp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gbs\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gbs\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gemalto-safenet\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gemalto-safenet\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Gemalto.SafeNet.ProtectV\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Gemalto.SafeNet.ProtectV\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"genesistechnologyinc1604912285911\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/genesistechnologyinc1604912285911\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"genuagmbhdevid1\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/genuagmbhdevid1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"genua_gmbh\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/genua_gmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"genymobile\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/genymobile\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gigamon-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gigamon-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"GitHub\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/GitHub\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gitlab\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gitlab\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gitlabinc1586447921813\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gitlabinc1586447921813\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gladinet-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gladinet-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"glantoninc1591876792991\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/glantoninc1591876792991\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"globalidsinc1596800540598\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/globalidsinc1596800540598\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"globalscape\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/globalscape\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"globalsolutions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/globalsolutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gluwareinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gluwareinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"graphistry\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/graphistry\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"graphitegtc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/graphitegtc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"great-software-laboratory-private-limited\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/great-software-laboratory-private-limited\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"greensql\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/greensql\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"greycorbelsolutions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/greycorbelsolutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gridgain\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gridgain\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"guardicore\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/guardicore\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gxchainfoundationltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gxchainfoundationltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"h2o-ai\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/h2o-ai\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hackerbay\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hackerbay\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hackershub\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hackershub\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"haivision\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/haivision\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"haivisionsystemsinc1580780591922\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/haivisionsystemsinc1580780591922\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"haltdoscompvtltd1587136166019\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/haltdoscompvtltd1587136166019\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hammerspace\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hammerspace\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hanu\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hanu\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"haproxy-technologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/haproxy-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"harmanconnectedservicesinc1594928575643\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/harmanconnectedservicesinc1594928575643\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"harpaitalia\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/harpaitalia\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hashhub\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hashhub\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hcl-technologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hcl-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"heimdall-data\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/heimdall-data\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"help-systems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/help-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"helpyio\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/helpyio\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"heretechnologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/heretechnologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hewlett-packard\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hewlett-packard\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hillstone-networks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hillstone-networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hitachi-solutions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hitachi-solutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hitachivantara\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hitachivantara\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"holo-industrie40softwaregmbh1600957636008\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/holo-industrie40softwaregmbh1600957636008\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hortonworks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hortonworks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hpe\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hpe\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"HPE.Security.ApplicationDefender\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/HPE.Security.ApplicationDefender\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"huawei\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/huawei\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hubstor-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hubstor-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hush-hush\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hush-hush\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hvr\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hvr\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hyperglance\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hyperglance\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hypergrid\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hypergrid\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hystaxinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hystaxinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hytrust\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hytrust\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"i-exceed-technology\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/i-exceed-technology\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iaansys\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iaansys\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ibm\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ibm\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ibm-alliance-global-1560886\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ibm-alliance-global-1560886\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ibm-alliance-usa-ny-armonk-hq-ibmstorage-6201192\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ibm-alliance-usa-ny-armonk-hq-ibmstorage-6201192\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ibm-usa-ny-armonk-hq-6275750-ibmcloud-aiops\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ibm-usa-ny-armonk-hq-6275750-ibmcloud-aiops\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iboss\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iboss\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iconics\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iconics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iconsulting-spa\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iconsulting-spa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"icubeconsultancyservicesinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/icubeconsultancyservicesinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iguazio-5069960\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iguazio-5069960\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ikan\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ikan\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iliimbiliimveyazlmsistemlerisanvetica1617000555584\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iliimbiliimveyazlmsistemlerisanvetica1617000555584\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"illuminainc1586452220102\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/illuminainc1586452220102\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"image-technologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/image-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"imaginecommunications\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/imaginecommunications\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"imperva\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/imperva\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"impetustechnologiesinc1591959591877\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/impetustechnologiesinc1591959591877\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"imprivatainc1580479939967\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/imprivatainc1580479939967\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"incorta\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/incorta\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"incredibuild\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/incredibuild\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"indexima1594300233028\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/indexima1594300233028\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"industry-weapon\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/industry-weapon\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"industryweapon1587162781833\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/industryweapon1587162781833\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"inenprocesosyplataformasdetisderldecv1615482385424\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/inenprocesosyplataformasdetisderldecv1615482385424\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"inergybv1637141413454\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/inergybv1637141413454\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"infinitesoftwarecorporation1579223971125\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/infinitesoftwarecorporation1579223971125\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"infiotinc1614034091460\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/infiotinc1614034091460\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"influxdata\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/influxdata\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"infoblox\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/infoblox\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"infogix\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/infogix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"infolibrarian\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/infolibrarian\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"informatica\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/informatica\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"informationbuilders\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/informationbuilders\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"informationtechnologies_ltd_1179601\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/informationtechnologies_ltd_1179601\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"infotecsinternetsecuritysoftwaregmbh1636129257584\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/infotecsinternetsecuritysoftwaregmbh1636129257584\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"infront-consulting-group-ltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/infront-consulting-group-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"infscapeughaftungsbeschrnkt\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/infscapeughaftungsbeschrnkt\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ingenieurstudiohollaus1579587745438\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ingenieurstudiohollaus1579587745438\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ingrammicro\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ingrammicro\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"innomindssoftware\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/innomindssoftware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"innosepgmbh1618331344164\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/innosepgmbh1618331344164\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"innovatorartificialtechsrl1619180685551\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/innovatorartificialtechsrl1619180685551\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"innovtech\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/innovtech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"instight-technology\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/instight-technology\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"integration-objects\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/integration-objects\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"intel-bigdl\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/intel-bigdl\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"intel-fpga\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/intel-fpga\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"intellicus-technologies-pvt-ltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/intellicus-technologies-pvt-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"intelligent-plant-ltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/intelligent-plant-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"intel_corporation\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/intel_corporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"internationaltrustmachinescorporation1582190033865\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/internationaltrustmachinescorporation1582190033865\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"internet20inc1635882446190\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/internet20inc1635882446190\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"intersystems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/intersystems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"intigua\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/intigua\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"intigua1638692632641\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/intigua1638692632641\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"introspecioltd1629872641188\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/introspecioltd1629872641188\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iofabric\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iofabric\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ipinfusion1590066770520\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ipinfusion1590066770520\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ipswitch\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ipswitch\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iqsol\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iqsol\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iquate\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iquate\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iquest\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iquest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"irion\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/irion\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ishlangu-load-balancer-adc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ishlangu-load-balancer-adc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"issp-corporation\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/issp-corporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"isvtestukbigcat\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/isvtestukbigcat\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"isvtestuklegacy\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/isvtestuklegacy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"it4bizdoo\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/it4bizdoo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"itelios\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/itelios\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"itrsgroupltd1620310702149\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/itrsgroupltd1620310702149\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ivanti-inc-pcs\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ivanti-inc-pcs\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ivanti-nzta\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ivanti-nzta\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ivix1595238749040\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ivix1595238749040\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iwnamespace\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iwnamespace\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"izenda\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/izenda\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"jamcracker\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/jamcracker\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"javlinltd1579185328273\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/javlinltd1579185328273\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"jedox\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/jedox\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"jelastic\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/jelastic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"jetnexus\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/jetnexus\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"jetware-srl\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/jetware-srl\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"jfrog\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/jfrog\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"jm-technology-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/jm-technology-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"jogetinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/jogetinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"johnsnowlabsinc1646051154808\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/johnsnowlabsinc1646051154808\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"juniper-networks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/juniper-networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"justanalytics\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/justanalytics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kaazing\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kaazing\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kadenallc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kadenallc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kali-linux\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kali-linux\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kalkitech\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kalkitech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kaminarioinc1588672951794\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kaminarioinc1588672951794\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Kaspersky.Lab\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Kaspersky.Lab\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"KasperskyLab.SecurityAgent\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/KasperskyLab.SecurityAgent\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kaspersky_lab\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kaspersky_lab\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kazendi\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kazendi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kelverion\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kelverion\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kemptech\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kemptech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kepion\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kepion\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"KevlarExtensions.M365Security.SecureOS\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/KevlarExtensions.M365Security.SecureOS\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"KevlarExtensions.M365SecurityHostIDS\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/KevlarExtensions.M365SecurityHostIDS\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"KevlarExtensions.M365SecurityInventory\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/KevlarExtensions.M365SecurityInventory\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"KevlarExtensions.M365SecurityInventory.NameChangeTest\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/KevlarExtensions.M365SecurityInventory.NameChangeTest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"KevlarExtensions.M365SecurityODL\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/KevlarExtensions.M365SecurityODL\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"KevlarExtensions.M365SecurityTLSExtension\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/KevlarExtensions.M365SecurityTLSExtension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kinetica\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kinetica\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kinvolk\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kinvolk\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"knime\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/knime\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kobalt\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kobalt\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kognillc1600118221163\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kognillc1600118221163\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kognitivsparkinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kognitivsparkinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"konginc1581527938760\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/konginc1581527938760\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"konsys-ltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/konsys-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"koverseinc1588716263110\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/koverseinc1588716263110\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kryonsystems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kryonsystems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"krypc-technologies-pvt-ltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/krypc-technologies-pvt-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kyligence\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kyligence\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kyvos-insights-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kyvos-insights-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lab3solutions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lab3solutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lancom-systems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lancom-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lansa\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lansa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lastline\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lastline\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"launchnodesltd1644561451121\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/launchnodesltd1644561451121\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"leap-orbit\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/leap-orbit\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lenovosoftware1604394104439\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lenovosoftware1604394104439\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"leostream-corporation\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/leostream-corporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lepide-software\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lepide-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"levacloudllc1602151818089\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/levacloudllc1602151818089\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"libelleag\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/libelleag\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"liberatii\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/liberatii\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"libraesva\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/libraesva\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"liebsoft\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/liebsoft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lightning-analyticsinc1582000647396\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lightning-analyticsinc1582000647396\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"linuxbasedsystemsdesignltd1580878904727\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/linuxbasedsystemsdesignltd1580878904727\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"liquid-files\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/liquid-files\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"liquidware\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/liquidware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"literatu\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/literatu\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"litespeedtechnologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/litespeedtechnologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"litespeed_technologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/litespeed_technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"litionenergiegmbh1580128829115\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/litionenergiegmbh1580128829115\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"litmusautomation1582760223280\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/litmusautomation1582760223280\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"llcitpro\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/llcitpro\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lnw-softgmbh\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lnw-softgmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"loadbalancer\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/loadbalancer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"logicflowag1638535407949\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/logicflowag1638535407949\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"logsign\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/logsign\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"logstarecorp1635838645101\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/logstarecorp1635838645101\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"logtrust\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/logtrust\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"logzio\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/logzio\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"looker\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/looker\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lotus_beta_analytics\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lotus_beta_analytics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lti-lt-infotech\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lti-lt-infotech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"luminate-security\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/luminate-security\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"M365Security.KevlarExtensions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/M365Security.KevlarExtensions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"M365SecurityInventory\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/M365SecurityInventory\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"machinesense\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/machinesense\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"madhavajay1632269232059\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/madhavajay1632269232059\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"maidenhead-bridge\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/maidenhead-bridge\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"manageengine\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/manageengine\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mapd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mapd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"maplelabsinc1623932715330\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/maplelabsinc1623932715330\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mapr-technologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mapr-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"marand\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/marand\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"marketplace-rdfe-caps\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/marketplace-rdfe-caps\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"marklogic\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/marklogic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"massiveanalytic-\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/massiveanalytic-\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mathworks-deployment\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mathworks-deployment\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mathworks-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mathworks-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"matillion\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/matillion\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mavinglobal\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mavinglobal\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"McAfee.EndpointSecurity\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/McAfee.EndpointSecurity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"McAfee.EndpointSecurity.test3\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/McAfee.EndpointSecurity.test3\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"meanio\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/meanio\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"media3-adobe\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/media3-adobe\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"media3-technologies-llc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/media3-technologies-llc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mediatekinc1586141563888\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mediatekinc1586141563888\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mendix\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mendix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"merlynnintelligencetechnologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/merlynnintelligencetechnologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"meshifyappinc1622759451429\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/meshifyappinc1622759451429\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"messagesolution\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/messagesolution\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"metaswitch\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/metaswitch\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mettainnovations-4900054\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mettainnovations-4900054\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mfe_azure\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mfe_azure\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mfiles\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mfiles\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mico\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mico\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"micro-focus\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/micro-focus\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microlinkpcukltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microlinkpcukltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microolap\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microolap\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsecpteltd1634010681688\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsecpteltd1634010681688\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-ads\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-ads\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-agci-gaming\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-agci-gaming\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-aks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-aks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-avere\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-avere\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-azure-batch\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-azure-batch\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-azure-compute\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-azure-compute\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-azure-hdinsight\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-azure-hdinsight\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-crypto\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-crypto\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-dsvm\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-dsvm\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-hyperv\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-hyperv\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-minecraft\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-minecraft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AdminCenter\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AdminCenter\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AKS\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AKS\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.ActiveDirectory\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.ActiveDirectory\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.ActiveDirectory.LinuxSSH\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.ActiveDirectory.LinuxSSH\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Applications\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Applications\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Automation.HybridWorker\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Automation.HybridWorker\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Automation.HybridWorker.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Automation.HybridWorker.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.AzureDefenderForServers\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.AzureDefenderForServers\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.AzureDefenderForSQL\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.AzureDefenderForSQL\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.AzureHybridBenefit\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.AzureHybridBenefit\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Backup.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Backup.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Backup.Test.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Backup.Test.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Batch\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Batch\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.ChangeTracking\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.ChangeTracking\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.ChangeTracking.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.ChangeTracking.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.ChangeTrackingAndInventory\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.ChangeTrackingAndInventory\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Chaos\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Chaos\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Compute.Security\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Compute.Security\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.ContainerUpstream\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.ContainerUpstream\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.DefenderForServers.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.DefenderForServers.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.DefenderForServers.Test2\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.DefenderForServers.Test2\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Diagnostics\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Diagnostics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Diagnostics.Build.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Diagnostics.Build.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Diagnostics.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Diagnostics.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test012be407-61ea-4e45-a2c3-71a45999ca21-20191228083800\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test01971384-3044-413b-8b1c-33b5d461bf23-20200107051823\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test0225ec7d-b36c-4ac8-82f0-aa4fafaf10a9-20200111051346\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test025e16a1-328d-45a2-b7e3-71f7e4cde046-20191229064028\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test02d1f941-5607-4757-8df7-fd8c5631ab45-20200103083810\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test039abd7f-360c-42a1-ad5d-77527c519286-20191002233412\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test04a0f157-c6fb-4595-b6ca-6c82a2338063-20200108101451\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test0737f33e-63e0-4ba9-b04b-b93a1de4e997-20200106083639\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test0a44d7be-63fa-418d-a7b6-89a44dd21894-20200107052935\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test0d01b487-7f79-4d87-b330-5c025068db45-20191004190331\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test0d643748-e6fe-41ad-b4d3-89a289a0cee0-20191003055620\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test0df83c51-5bb9-43f8-8ae9-bc896ea64f78-20200110220221\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test0f02c246-7e65-4010-9367-ca4530c3897e-20191004190223\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test157494ec-e788-43b0-8d26-a17e39ee07cc-20191002011945\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test1661d154-b623-4507-8a56-3a89812c456c-20200111083940\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test17bbd860-f21d-40ab-9026-16e05f2907f0-20200106083451\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test194e2333-13cd-43e3-b0a4-c8cdcf1a3600-20200110211106\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test1bc26b19-b8d8-41f9-a26d-818f277bdf93-20200101113139\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test1c840053-9213-4f2a-8f2e-9bf2297908bd-20200108101424\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test1d7bba72-69f1-43cd-a38c-41ce0b5f4bae-20200109050041\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test1f7a8078-50e7-4a3a-91eb-d178fd4c403b-20191002233353\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test1fef1fdc-57ba-46a8-a879-475ba7d45a7a-20200106083509\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test21332f15-f78d-4d31-afac-79b9dc989432-20191231175840\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test22f10717-6939-4003-a9ce-38effd8b77d6-20191007191355\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test2334e6e3-bb72-4241-a36f-c2429d69bc0b-20200106050834\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test24fa9eb5-1c59-4425-b61c-30fd638c2a45-20191003203802\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test2521a545-ed61-4a15-bed1-aba7ce1d81ee-20200106050804\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test25c6fe61-1282-43c2-867b-b5039219989c-20200105081851\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test27515c8c-6773-4f92-afb0-35691cc6e3b6-20200103083821\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test28012680-48e7-4903-877f-2f29464e63d5-20191229033424\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test29a7a529-d293-4728-9d7f-257ed996e64f-20200108081759\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test2a5f2d2c-b8e3-46c2-850d-a1641c024fe7-20200107084228\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test2ce856af-ab17-48f2-ba3e-bcd9af091061-20200110013246\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test2e012e83-6361-4365-963f-6ced8a08e91c-20200110211254\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test2ecf67b2-fb63-4461-b6a6-7026c4fb1168-20191002214026\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test2ede6564-c7cc-44cb-a1a8-902505c9829d-20191003020742\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test2f4ebc17-e27e-48d9-9cc3-ff933c21884e-20200106092410\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test349ee02c-af9b-4663-a963-823b40eefed8-20200108083612\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test34cf6b13-b78e-478b-b596-8b661629371d-20191007195455\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test36cc5b60-2b23-4a04-bf95-f7865e1141cf-20200110085718\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3712fca9-5cdd-4609-be69-b02aedc5c55c-20200107084115\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3772d042-92e2-4bcb-99b7-8a6a119cc088-20191231182808\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test37a6dd64-d44d-465e-85bc-3bc38be90350-20200104083535\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test381074d5-7156-472b-801a-b35f8fef4cc6-20200105050612\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3877a44d-4c48-40db-80eb-227272d5acd6-20200110103540\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test38ecd28e-7018-4672-840c-3044a5e7a6b5-20200111084208\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test395a0b49-442a-450c-8a1f-65b0aa3bcf47-20200105083839\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3971b300-edff-44a8-b61b-7f9b7460a8d6-20191003002234\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3adeec20-7458-4b3d-af26-0b6bc2aae3eb-20200103083751\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3b20dd96-f3e4-4798-998d-8c433c2449a7-20200108083635\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3ce2fd4a-8b5a-4c7e-b08d-3e48fc0f45e7-20200104083825\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3d499ca7-cc8d-41cc-a6dc-ffb1a4ac4942-20200107053004\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3db7240e-5e42-4d6d-b024-cc9fce3c828b-20200105083520\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3f6b7341-635f-48d5-a36d-be5dfe3002c4-20200105050937\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3fc26934-ede2-4482-ad5e-f66f6135d4a6-20191228055558\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test406d077c-6017-4062-bc96-f809147a2331-20200106050748\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test4302336c-e039-4e70-bcb6-9275f6089e4a-20200108144821\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test453a087e-8435-46db-970a-4ee633cc4c4a-20200102083458\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test46b73afa-2259-4aff-81e1-a58bf24b59aa-20191229033459\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test4a3399ee-82ea-46aa-9e3a-5434b588e3b6-20191228013518\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test4eb7a185-527b-4b9f-93a8-7f1cec9d062e-20191231151207\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test520a0915-f9f0-4da4-9fa1-1b74fc1470aa-20200102083505\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test5397960f-023b-4979-9a8b-800d049045a4-20191007195417\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test55a36387-8a3f-4159-9884-29b97539a253-20200109080443\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test5645f186-4ee5-4209-af37-423660e3318c-20191231175947\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test58b4461d-4d2d-4395-b6d2-ab83d4d8c62f-20200111001002\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test5b0bf447-d98d-429d-8334-c032d197c743-20191003203846\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test5bc90367-1ea2-400b-a40c-321081bae3f3-20200108145035\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test5bd0562f-e939-456f-a6ee-c848d1aba616-20200101151641\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test5e4efe90-916c-4c96-802c-1508a5b6da78-20191231151150\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test5f8f0c10-cc3c-45ec-a068-fb1c7edfa0d9-20200101145958\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test60a000b7-286c-4b2b-9137-bbc088736419-20200108144920\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test6192a01b-ba47-4d08-904a-71647a49a112-20191008041625\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test62835538-89c6-4f66-9034-f7a4b176c615-20191007234245\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test651e4ad2-ee4a-462e-a506-b56b1969f5d0-20200110230749\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test691d94e5-c40c-4568-94b0-09b08aea42b1-20200106050808\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test6aa3643c-011a-4180-877f-cad955a8e664-20191007234642\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test6cfb469b-8478-468f-9bb5-691affd32abb-20200107083803\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test6d36b6b2-7956-4e62-91c1-c33792fd4bb1-20200110123203\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test6e28168e-a9c8-4c0a-8b40-60c2a1502d43-20200108052802\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test6eb763ac-7fbe-4e44-bee7-aad035ee2a7d-20200110084429\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test6efec253-f625-46f0-9d74-324f69e963d8-20200107070514\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test70fa7e4c-3122-4ff7-aec6-fe75ab660a01-20200108105900\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test710a5fbf-06c7-46ac-b96d-a29d2586422f-20200108083639\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test71d72489-67c6-45e2-b1e6-a19546efc823-20200105112903\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test721fccf1-2b3e-44b6-908f-51b910e88b09-20200111104931\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test742d0189-9e41-4f1b-8ad3-31c05d34903b-20200111103247\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7836a97c-f56e-48d0-8b5d-61e79aeb3226-20200111071656\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test78666b2e-25c8-4a48-931a-3131a0317d73-20191002194352\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test79f13508-fcbd-47b9-988f-1c21ef5e7f2e-20191002015429\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test79fb90ce-4691-4212-99a7-6e4069bd5984-20191007234256\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7a8cf687-6a21-4181-ba98-902fee717bd3-20200104103216\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7aabf813-6644-483a-b9e0-ba6f8973ba1f-20191002232822\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7c96c10a-0c8f-4ab0-83fd-1ad66a362e33-20191229033458\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7e79b6ff-2559-44fe-b3ba-afaa68d63636-20200108112116\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7ea372f7-ea7e-4b9e-bbad-4f35c1567aa2-20200108052736\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7fac3d04-98a5-4fc4-904e-9ea3b86eadc2-20200106050751\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7fe20dd6-9ed9-4126-bb1d-031c01ac4550-20200101114504\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7ff974d9-c841-4249-b05b-bbf663cb4605-20200106084104\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test815bd4d5-fc24-4a47-be20-063c4809902c-20200109050508\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test817654d0-2109-4d95-9284-8c8a9d960d08-20200108053758\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test821ca3b6-dd05-4e80-b3d8-74ba03b2609b-20191231151151\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test8285dc3e-637d-4d46-9695-adc39cbe7d2f-20200108144457\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test828aae03-9239-4938-a303-c23c42311878-20200102083419\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test84afd814-5098-49ab-af99-e50350b5898b-20200110211134\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test85b08563-b15f-4202-a0bc-f2bc2df2c71a-20200107053335\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test88aac268-c087-4481-b78e-99b920784a33-20200101084853\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test88dbd442-a8cc-4874-81a0-d3192c61df62-20191001224544\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test894dfb75-a00f-4f0c-894c-cae1c9846ad3-20200105051803\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test8d09bf4d-ee63-4ab1-a986-a4b802418403-20200111051447\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test8d4d652b-4f05-4e99-93dd-78b9a36b5c78-20191003203755\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test8de64739-43d8-4f84-af65-fdb3d0885288-20200108053543\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test8e324c65-a51d-4eeb-9ec8-d5f8662dc041-20191228165107\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test8e564580-8e53-4300-85f1-bf7f31dd37ff-20200107013348\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test8f458ca7-8898-4d58-b93d-bfb0c3da028c-20200109050310\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test901cd6ca-5565-4552-a3de-d204d01935c0-20200108083706\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test907b39e5-4008-4b55-93a0-18e9697b9cf3-20200108053817\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test90c2be7c-d7ec-4abf-9fad-fef90fc3ef4d-20191004022234\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test922db678-6ee8-43d5-86ff-6a86e132d332-20200107085231\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test93b88aec-5277-4b1b-910c-7008e972ce91-20200107013304\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test95a9104b-6cba-42d8-82ff-cc37e5ac44db-20200108081723\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test96da1605-19e0-46eb-9ce0-53e840f5e2cb-20200101111729\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test996066b2-7d29-400f-929b-e343a21046f7-20191231151212\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test99663fff-ed21-4a91-9687-1a6da2abb033-20200106084508\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test9eb5efa5-c3c1-4c13-80a6-11f5eba67372-20200108144852\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testa3791896-b1fc-491e-ba0d-aefcd8d9e52a-20200105083503\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testa37ff709-a078-45a0-8187-41733df8e101-20200109050003\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testa4c5fe4e-936e-4be1-a612-a331aff54a8c-20200111105055\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testa59bce1d-e32c-423d-a86e-945d4aeb98b4-20200107051821\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testa604c059-8279-4f4d-a354-eec27222a06c-20200111051514\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testa71fefb1-0d9c-4fb3-8d3d-5dcd12d72b77-20200103103221\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testa748013d-c5a6-44f9-88eb-43167207c742-20200111051402\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testaab67022-4f2b-420d-a06a-2c4045110cdf-20191229033144\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testacab9541-280f-4491-9f49-ac57653f0a07-20200105083839\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testad298437-0349-4cc7-88a9-d8aabcba9df1-20191002233431\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testadd68286-f9e0-4ab1-a526-d8f3cf0f054e-20200105084128\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testade4c52b-18f5-4b67-8e93-945358ce4f7d-20191007234259\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testae421c1d-0211-4ef2-b372-564ce8ad484a-20200110104035\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testafbbd8bf-aec5-48bf-8fea-73fa15ccc315-20191001224727\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testb15148bf-78d2-42d4-ad08-b3ad8fb4b122-20200101084759\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testb4237708-3688-40ea-85a2-275c05f4d100-20191228083519\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testb799a18f-be45-4c5c-8438-163ac2e1f1e7-20191004190529\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testb7cee88a-e5ac-4af4-99c8-7247020b00c3-20200105051201\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testb7df0d9a-27c0-4ca5-b692-08dd90387b98-20200111083443\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testbbf6bf32-4bd0-4381-b8f7-2658f585df4d-20191003203846\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testbeea1376-166a-4b1a-8923-c907cc9737d9-20200107013336\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testbf9154e9-6166-48c2-86fe-1f331be606d7-20200107051823\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc0d7c3c5-23b8-489c-a5e0-ae87c681b696-20200101083539\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc193f31a-5186-4e93-84f6-0e4ab87b73c1-20200107052937\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc1c7e8dc-fa8c-47d9-8305-de6d1451b939-20200101085248\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc1d0c917-e2ae-430c-a2ca-383fb0fda046-20191007235839\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc23a3fbb-6e95-4c0d-94fc-c8ab14dddf1c-20191231151117\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc2697630-6247-411a-94b3-c2974ad8cbee-20191007195417\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc466b80f-670f-4383-89b8-44e0d509fa20-20191002000516\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc5c8d9bd-75fa-4db3-9f34-5d7b7098584c-20191003203851\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc8b6d14b-a5db-48e0-bfad-a2818d432bea-20200104083443\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc933efa8-c553-4b93-884f-b7221d9ca789-20191228083750\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testcbe8ab80-46ef-49b1-a7bb-4e3d6e50e49f-20200104050811\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testccc0b5e6-9b0d-451a-8ac4-6f4af293b913-20200106092645\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testcec64786-04b1-487c-80ec-050da646fb1c-20191005123412\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testd104a52f-eba2-401d-8e7f-a841c90f7712-20191228083553\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testd724cea4-0d3c-4539-b2ff-be08fb23a67e-20200107083714\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testd8e60bac-27ff-4fba-90b8-732c9c5ff91c-20191228083751\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testd99db4a5-7683-4584-89ad-fefd711de284-20191004190210\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testd9b4309a-67bc-4cd8-ac47-094cb20ca6aa-20200101090202\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testda3320e0-28f2-4146-a002-e06296362711-20191004190115\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testda714121-3240-4253-90c3-48c43f115c90-20200102083419\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testdb357558-60b4-4ee3-9ec3-ba22c5d827fb-20191004020617\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testdc7230e9-df6d-4edd-a57c-ef7e0432c463-20191002011345\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testdccb59de-436f-4935-bed6-2e677dcaf36a-20200109111802\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testde985b23-9333-4f6e-a5e8-82025a38b2af-20200102083510\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Teste271da3e-cbcb-4ee7-8770-f297f414451f-20191003015540\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Teste4070edd-aec0-455d-8a79-aecdb7170b6d-20191007234642\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Teste42f351a-4da0-4f0d-93e9-ef1d98e06659-20200108083633\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Teste66ca23c-f4bf-4eb3-8418-139364d19e7d-20200107062643\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Teste78b1ab2-1380-48ab-9923-0276cdb7198b-20191001224742\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Teste8607e14-b4f8-472a-bd5b-893b8d9612e6-20200112045941\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Teste980b80e-3add-42c0-bc98-a84020b2d128-20200108101640\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Tested79dba9-2d38-4ea9-a01c-56e94b30ca7a-20191007195447\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testee9dcf5f-f7c4-4192-a8f4-28e9bc7d0f7c-20191001225005\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testefbb340a-b68b-4200-872b-d05e7d29f92d-20191007195432\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testf1fc0559-6740-48dd-9501-2b933c731d52-20200103083458\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testf41dfc97-bb51-4fba-86ca-a6f2695c415a-20200107050834\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testf5784447-83ed-4c00-8764-ea0f932aafa2-20200106085748\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testf6128ef6-c13c-420e-8088-0710888ce88b-20200109050003\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testf863ab2c-ada9-4646-84c7-1f83a82375d7-20191229033226\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testfac552a7-418f-4baa-8f51-d199ceff5c68-20200103050817\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testfb7be054-5c15-494f-822c-b64f9a36e2f3-20200105051753\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testfc5c7585-6c9a-4aa4-a7c4-1223a94e00c7-20200104083552\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.FileServer.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.FileServer.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.FleetDiagnostics\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.FleetDiagnostics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.FleetDiagnostics.Dev\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.FleetDiagnostics.Dev\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Geneva\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Geneva\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.KeyVault\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.KeyVault\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.KeyVault.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.KeyVault.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.LabServices\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.LabServices\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.LabServices.test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.LabServices.test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.Agent\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.Agent\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.Dev\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.Dev\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.Dev.INT\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.Dev.INT\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.Dev.SCALE\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.Dev.SCALE\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.Dev.TEST\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.Dev.TEST\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.GuestHealth\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.GuestHealth\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.DEV\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.DEV\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.INT\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.INT\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.SCALE\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.SCALE\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.TEST\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.TEST\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.INT.Dev\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.INT.Dev\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.SCALE.Dev\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.SCALE.Dev\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.TEST.Dev\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.TEST.Dev\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.WorkloadInsights.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.WorkloadInsights.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.WorkloadInsightsTest.newnamespace\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.WorkloadInsightsTest.newnamespace\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.Workloads\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.Workloads\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.Workloads.Dev\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.Workloads.Dev\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitoring.DependencyAgent\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitoring.DependencyAgent\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitoring.DependencyAgent.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitoring.DependencyAgent.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Networking.DNS\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Networking.DNS\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Networking.SDN\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Networking.SDN\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.NetworkWatcher\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.NetworkWatcher\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.NetworkWatcher.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.NetworkWatcher.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.OpenSSH\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.OpenSSH\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Performance.Diagnostics\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Performance.Diagnostics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Performance.Diagnostics.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Performance.Diagnostics.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.RecoveryServices\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.RecoveryServices.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices.SiteRecovery\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.RecoveryServices.SiteRecovery\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices.SiteRecovery2\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.RecoveryServices.SiteRecovery2\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices.WorkloadBackup\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.RecoveryServices.WorkloadBackup\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices.WorkloadBackup.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.RecoveryServices.WorkloadBackup.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.AntimalwareSignature\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.AntimalwareSignature\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.AntimalwareSignature.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.AntimalwareSignature.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.Dsms\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.Dsms\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.Dsms.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.Dsms.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.LinuxAttestation\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.LinuxAttestation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.LinuxTestAttestation\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.LinuxTestAttestation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.Monitoring\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.Monitoring\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.Monitoring.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.Monitoring.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.Monitoring.Testing\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.Monitoring.Testing\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.TestWindowsAttestation\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.TestWindowsAttestation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.WindowsAttestation\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.WindowsAttestation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.WinTestAttestation\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.WinTestAttestation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Sentinel.DnsExtension.Dev\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Sentinel.DnsExtension.Dev\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.ServiceFabric.MC\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.ServiceFabric.MC\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.ServiceFabric.MC.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.ServiceFabric.MC.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.SiteRecovery.Stage\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.SiteRecovery.Stage\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.SiteRecovery.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.SiteRecovery.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.SiteRecovery2.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.SiteRecovery2.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Test.Identity\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Test.Identity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WindowsFabric.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WindowsFabric.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.ReleasePipeTest\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.ReleasePipeTest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.ReleasePipeTest.INT\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.ReleasePipeTest.INT\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.ReleasePipeTest.TEST\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.ReleasePipeTest.TEST\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test1\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test2\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test2\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test3\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test3\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test4\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test4\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test5\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test5\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test5.INT\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test5.INT\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test5.TEST\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test5.TEST\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.VincentTest\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.VincentTest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.VincentTest2\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.VincentTest2\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.VincentTest3\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.VincentTest3\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.VincentTest4\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.VincentTest4\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.TestTest\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.TestTest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.TestTest.INT\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.TestTest.INT\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.TestTest.TEST\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.TestTest.TEST\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Windows.ReleasePipeTest.INT\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Windows.ReleasePipeTest.INT\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Windows.ReleasePipeTest.TEST\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Windows.ReleasePipeTest.TEST\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoring\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoring.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoringTest\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoringTest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureData\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureData\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureData.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureData.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.Canary\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights.Canary\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.Corp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights.Corp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.Linux.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights.Linux.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.LinuxTest\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights.LinuxTest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.Meya0206\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights.Meya0206\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.MeyaCorp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights.MeyaCorp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.Testing\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights.Testing\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureSecurity.JITAccess\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureSecurity.JITAccess\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.CloudBackup.Workload.Extension\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.CloudBackup.Workload.Extension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.CloudBackup.Workload.Extension.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.CloudBackup.Workload.Extension.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Compute\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Compute.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Compute.TestSar\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute.TestSar\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.CPlat.Core\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.CPlat.Core\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.CPlat.Core.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.CPlat.Core.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Dcsswe.Extensions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Dcsswe.Extensions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.EnterpriseCloud.Monitoring\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.EnterpriseCloud.Monitoring.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.EnterpriseCloud.Monitoring.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Golive.Extensions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Golive.Extensions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.GuestConfig.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.GuestConfig.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.GuestConfiguration\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.GuestConfiguration\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.GuestConfiguration.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.GuestConfiguration.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.GuestConfiguration.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.GuestConfiguration.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.HpcCompute\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.HpcCompute\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.HpcCompute.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.HpcCompute.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.HpcPack\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.HpcPack\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Interceptor\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Interceptor\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.M365\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.M365\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.M365SecurityConfiguration.Kevlar.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.M365SecurityConfiguration.Kevlar.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.ManagedIdentity\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.ManagedIdentity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.ManagedServices\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.ManagedServices\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.ManagedServices.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.ManagedServices.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.MonitoringAgent.Extension\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.MonitoringAgent.Extension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Network\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Network\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.OSTCExtensions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.OSTCExtensions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.OSTCExtensions.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.OSTCExtensions.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.OSTCExtensions.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.OSTCExtensions.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.OSTCExtensions.Testing\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.OSTCExtensions.Testing\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Powershell\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Powershell\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Powershell.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Powershell.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Powershell.Test01\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Powershell.Test01\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.SecurityManagement.Kevlar\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.SecurityManagement.Kevlar\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Sentinel.AzureMonitorAgentExtensions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Sentinel.AzureMonitorAgentExtensions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.SoftwareUpdateManagement\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.SoftwareUpdateManagement\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.SoftwareUpdateManagement.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.SoftwareUpdateManagement.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.SqlServer.Managability.IaaS.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.SqlServer.Managability.IaaS.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.SqlServer.Management\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.SqlServer.Management\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.SqlServer.Management.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.SqlServer.Management.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.SystemCenter\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.SystemCenter\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.SystemCenter.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.SystemCenter.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Test.Azure.Workloads\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Test.Azure.Workloads\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.TestSqlServer.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.TestSqlServer.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.ETWTraceListenerService\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.Azure.ETWTraceListenerService\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.RemoteDebug\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.Azure.RemoteDebug\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.RemoteDebug.Json\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.Azure.RemoteDebug.Json\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.ServiceProfiler\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.ServiceProfiler\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.Services\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.Services\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.WindowsAzure.DevTest\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.WindowsAzure.DevTest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.WindowsAzure.DevTest.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.WindowsAzure.DevTest.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.WindowsAzure.RemoteDebug\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.WindowsAzure.RemoteDebug\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.WindowsAzure.Test.RemoteDebug\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.WindowsAzure.Test.RemoteDebug\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Windows.Azure.Extensions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Windows.Azure.Extensions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Windows.AzureRemoteApp.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Windows.AzureRemoteApp.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Windows.RemoteDesktop\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Windows.RemoteDesktop\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.WindowsAdminCenter\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.WindowsAdminCenter\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.WindowsAdminCenter.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.WindowsAdminCenter.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.WindowsAzure.Compute\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.WindowsAzure.Compute\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.WindowsAzure.Compute.test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.WindowsAzure.Compute.test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.WVD\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.WVD\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoftagciuk\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoftagciuk\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoftazurecituswarp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoftazurecituswarp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftAzureSiteRecovery\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftAzureSiteRecovery\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftBizTalkServer\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftBizTalkServer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftCBLMariner\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftCBLMariner\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoftcmotest\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoftcmotest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoftcorporation1602274591143\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoftcorporation1602274591143\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoftcorporation1620407702632\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoftcorporation1620407702632\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftDynamicsAX\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftDynamicsAX\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftDynamicsGP\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftDynamicsGP\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftDynamicsNAV\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftDynamicsNAV\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoftfarmbeats\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoftfarmbeats\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftHybridCloudStorage\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftHybridCloudStorage\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftOSTC\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftOSTC\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftPowerBI\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftPowerBI\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftRServer\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftRServer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftSharePoint\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftSharePoint\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftSQLServer\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftSQLServer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftTestLinuxPPS\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftTestLinuxPPS\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftVisualStudio\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftVisualStudio\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftWindowsDesktop\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsDesktop\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftWindowsServer\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsServer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftWindowsServerHPCPack\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsServerHPCPack\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft_iot_edge\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft_iot_edge\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft_javaeeonazure_test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft_javaeeonazure_test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microstrategy\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microstrategy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"midasolutions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/midasolutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"middleware\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/middleware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"midfin\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/midfin\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"midvision\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/midvision\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mihupcommunicationspvtltd1599046998010\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mihupcommunicationspvtltd1599046998010\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mindcti\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mindcti\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"minio\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/minio\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"miraclelinux\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/miraclelinux\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"miracl_linux\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/miracl_linux\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"miri-infotech-pvt-ltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/miri-infotech-pvt-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mistio1601460379393\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mistio1601460379393\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mobilab\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mobilab\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"modern-systems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/modern-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"modexblockchaindatabase\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/modexblockchaindatabase\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"monetdbsolutions1611751313758\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/monetdbsolutions1611751313758\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"monitorapp1579029852605\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/monitorapp1579029852605\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"monitorcomputersystemsltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/monitorcomputersystemsltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"moogsoft\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/moogsoft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"morpheus-data\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/morpheus-data\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"moviemasher\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/moviemasher\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mriisoftllc1579457820427\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mriisoftllc1579457820427\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"msopentech\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/msopentech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mtnfog\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mtnfog\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"multima1643619641681\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/multima1643619641681\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"multisoft-ab\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/multisoft-ab\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mvp-systems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mvp-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mwg_azure\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mwg_azure\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mxhero\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mxhero\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"my-com\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/my-com\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"myarchinc1614657280935\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/myarchinc1614657280935\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"narrativescience\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/narrativescience\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nasuni\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nasuni\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nasunicorporation\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nasunicorporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"navicloudrsoftwarepteltd1601967280369\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/navicloudrsoftwarepteltd1601967280369\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ncache\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ncache\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ncbi\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ncbi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ncomputingglobalinc1604353053068\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ncomputingglobalinc1604353053068\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ndl\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ndl\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ndstriyelotomasyonsistemlerisanvetica1623147454601\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ndstriyelotomasyonsistemlerisanvetica1623147454601\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nebbiolo-technologies-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nebbiolo-technologies-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nec-technologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nec-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nefelinetworks1591201080882\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nefelinetworks1591201080882\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"neo4j\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/neo4j\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"neos\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/neos\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"neowaybusinesssolutions-4956350\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/neowaybusinesssolutions-4956350\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netapp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netapp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netatwork\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netatwork\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netfoundryinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netfoundryinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netgate\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netgate\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netikus-net-ltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netikus-net-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netiq\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netiq\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netka\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netka\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netmail\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netmail\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netscout\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netscout\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netspi\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netspi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netsweeper\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netsweeper\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"networksexchangetechnologyltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/networksexchangetechnologyltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netwrix\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netwrix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netx\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netx\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"neusoft-neteye\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/neusoft-neteye\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"newegginc1646343565758\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/newegginc1646343565758\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"newnetcommunicationtechnologies1589991852134\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/newnetcommunicationtechnologies1589991852134\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"NewRelic.Infrastructure.Extensions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/NewRelic.Infrastructure.Extensions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"newtglobalconsultingllc1581492268566\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/newtglobalconsultingllc1581492268566\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nextronic-5290868\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nextronic-5290868\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nginxinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nginxinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nice-it-management-solutions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nice-it-management-solutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nicepeopleatwork\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nicepeopleatwork\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nilespartnersinc1617691698386\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nilespartnersinc1617691698386\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"niolabs-5229713\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/niolabs-5229713\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nirvatosoftwarepvtltd1601368706606\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nirvatosoftwarepvtltd1601368706606\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nodejsapi\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nodejsapi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"noianetworklimited1584098036197\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/noianetworklimited1584098036197\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nokiaofamericacorporation1591716055441\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nokiaofamericacorporation1591716055441\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"noobaa\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/noobaa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"norcominformationtechnologygmbhcokgaa\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/norcominformationtechnologygmbhcokgaa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"noricumcloudsolutions1600524477681\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/noricumcloudsolutions1600524477681\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"norsync\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/norsync\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"northbridge-secure\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/northbridge-secure\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nozominetworks1582208017986\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nozominetworks1582208017986\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nri\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nri\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ntegralinc1586961136942\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ntegralinc1586961136942\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ntt-data-intellilink-corporation\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ntt-data-intellilink-corporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nttdata\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nttdata\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nttltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nttltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nuco-networks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nuco-networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"numbersbelieve\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/numbersbelieve\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"numtrallcpublisher\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/numtrallcpublisher\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nuxeo\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nuxeo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nvidia\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nvidia\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"o2mc-real-time-data-platform\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/o2mc-real-time-data-platform\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"objectivity-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/objectivity-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"objectivity1595351622261\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/objectivity1595351622261\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"oceanblue-cloud\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/oceanblue-cloud\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"OctopusDeploy.Tentacle\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/OctopusDeploy.Tentacle\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"odix\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/odix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"odysseuscomputationalsolutions1630242118741\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/odysseuscomputationalsolutions1630242118741\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"odysseyconsultantsltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/odysseyconsultantsltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"officeatwork-ag\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/officeatwork-ag\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"omega-software\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/omega-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"onapsis\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/onapsis\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"oncore_cloud_services-4944214\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/oncore_cloud_services-4944214\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"onexgroup\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/onexgroup\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"onspecta\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/onspecta\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ontology\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ontology\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"onyx-point-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/onyx-point-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"op5\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/op5\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"open-connect-systems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/open-connect-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"opencell\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/opencell\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"openlinkswcom-pago\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/openlinkswcom-pago\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"OpenLogic\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/OpenLogic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"openrefactoryinc1620140917523\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/openrefactoryinc1620140917523\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"openshotstudiosllc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/openshotstudiosllc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"opentext\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/opentext\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"openvpn\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/openvpn\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"opslogix\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/opslogix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"opswatinc1619007967290\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/opswatinc1619007967290\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"optimitiveslu1618320281443\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/optimitiveslu1618320281443\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"option3\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/option3\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Oracle\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Oracle\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"oraylis\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/oraylis\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"oraylisbi\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/oraylisbi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"orbs-network\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/orbs-network\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"oriana\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/oriana\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"orientdb\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/orientdb\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"oroinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/oroinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"osirium-ltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/osirium-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"osisoft\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/osisoft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"osnexus\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/osnexus\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"outpost24\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/outpost24\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"outsystems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/outsystems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ovaledge1618392232783\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ovaledge1618392232783\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pachyderminc1585170006545\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pachyderminc1585170006545\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pacteratechnologiesinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pacteratechnologiesinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"paladionnetworkspvtltd1606120508449\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/paladionnetworkspvtltd1606120508449\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"paloaltonetworks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/paloaltonetworks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"panopta\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/panopta\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"panorama-necto\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/panorama-necto\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"panzura-file-system\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/panzura-file-system\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"parabole\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/parabole\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"paralaxiomtechnologiesprivatelimited1596433357886\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/paralaxiomtechnologiesprivatelimited1596433357886\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"parallels\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/parallels\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"parasoft\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/parasoft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"parkersoftwarelimited1609786657569\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/parkersoftwarelimited1609786657569\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"parsec-for-teams\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/parsec-for-teams\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pasifikciptamandiri\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pasifikciptamandiri\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"passlogy\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/passlogy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"paxata\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/paxata\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pcman\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pcman\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"peer-software-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/peer-software-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"penta-security-systems-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/penta-security-systems-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"percona\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/percona\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"perforce\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/perforce\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"periscope-tech-4791746\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/periscope-tech-4791746\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"piolinkinc1582849368309\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/piolinkinc1582849368309\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pivotal\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pivotal\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pixitmedia1591611150480\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pixitmedia1591611150480\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"plesk\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/plesk\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pmsoftwareinternational1603102514882\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pmsoftwareinternational1603102514882\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pnop\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pnop\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"polarityioinc1628691850891\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/polarityioinc1628691850891\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"portalarchitects\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/portalarchitects\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"portsysinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/portsysinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"postgres-pro\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/postgres-pro\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"powerbireach\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/powerbireach\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"prakshepprivatelimited1619949827900\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/prakshepprivatelimited1619949827900\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"prasselsrl1645470739547\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/prasselsrl1645470739547\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"prestashop\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/prestashop\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"prestige_informatique-1090178\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/prestige_informatique-1090178\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"prime-strategy\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/prime-strategy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"primekey\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/primekey\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"primestrategynewyorkinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/primestrategynewyorkinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pro-vision\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pro-vision\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"probityinc1581611299345\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/probityinc1581611299345\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"process-one\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/process-one\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"processgold\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/processgold\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"procomputers\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/procomputers\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"procomputerssrl1594239153814\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/procomputerssrl1594239153814\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"profecia\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/profecia\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Profiler.AgentOrchestrationRefactor.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Profiler.AgentOrchestrationRefactor.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Profiler.Master.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Profiler.Master.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"profisee\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/profisee\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"progelspa\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/progelspa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"progresssoftwarecorporation\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/progresssoftwarecorporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"proliongmbh1628175060372\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/proliongmbh1628175060372\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"protegrityusainc1627404648458\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/protegrityusainc1627404648458\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"protiviti\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/protiviti\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"proventeq\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/proventeq\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ptc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ptc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ptsecurity\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ptsecurity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pulse-secure\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pulse-secure\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pulsesecuretechnologies1638179500151\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pulsesecuretechnologies1638179500151\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"puppet\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/puppet\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"puppeteersoy1601024480557\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/puppeteersoy1601024480557\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"PuppetLabs\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/PuppetLabs\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"PuppetLabs.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/PuppetLabs.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"purestorageinc1578960262525\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/purestorageinc1578960262525\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pydio\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pydio\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pyramidanalytics\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pyramidanalytics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"qlik\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/qlik\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"qnapsystemsinc1601352084032\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/qnapsystemsinc1601352084032\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"qore-technologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/qore-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"qs-solutions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/qs-solutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Qualys\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Qualys\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Qualys.LinuxAgent.GrayLabel\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Qualys.LinuxAgent.GrayLabel\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Qualys.WindowsAgent.GrayLabel\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Qualys.WindowsAgent.GrayLabel\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"qualysguard\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/qualysguard\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"quasardb\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/quasardb\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"qubole-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/qubole-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"quest\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/quest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"racknap\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/racknap\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rackwareinc1619403669255\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rackwareinc1619403669255\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"radiant-logic\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/radiant-logic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"radware\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/radware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"raincode\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/raincode\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rancher\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rancher\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rapid7\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rapid7\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Rapid7.InsightPlatform\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Rapid7.InsightPlatform\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rapidminer\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rapidminer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"raynetgmbh\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/raynetgmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"readymind\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/readymind\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"realm\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/realm\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"reblaze\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/reblaze\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"RedHat\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/RedHat\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"redhat-rhel\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/redhat-rhel\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"redpoint-global\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/redpoint-global\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"refactr\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/refactr\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"refinitiv\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/refinitiv\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"refinitiv-4807503\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/refinitiv-4807503\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"relevance-lab\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/relevance-lab\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"remotelearner\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/remotelearner\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"res\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/res\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"resco\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/resco\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"researchgraphptyltd1598252602128\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/researchgraphptyltd1598252602128\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"resemblesystems1582780358300\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/resemblesystems1582780358300\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"responder-corp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/responder-corp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"revolution-analytics\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/revolution-analytics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rhcsolutions1586957910818\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rhcsolutions1586957910818\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ribboncommunications\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ribboncommunications\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"RightScaleLinux\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/RightScaleLinux\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"RightScaleWindowsServer\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/RightScaleWindowsServer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rimo3\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rimo3\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ringsoftwareresearchanddevelopmentinc1578946072257\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ringsoftwareresearchanddevelopmentinc1578946072257\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"riverbed\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/riverbed\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"RiverbedTechnology\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/RiverbedTechnology\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rmgtechnologiesinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rmgtechnologiesinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rocketml\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rocketml\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rocketsoftware\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rocketsoftware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rohdeschwarzcybersecuritygmbh\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rohdeschwarzcybersecuritygmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rohdeschwarzcybersecuritysas\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rohdeschwarzcybersecuritysas\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"roktech\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/roktech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rsa-security-llc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rsa-security-llc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rsk-labs\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rsk-labs\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rstudio-5237862\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rstudio-5237862\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rtts\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rtts\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rubrik-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rubrik-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"runecastsolutionslimited1614186396822\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/runecastsolutionslimited1614186396822\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"s2ix\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/s2ix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"saama\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/saama\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"saasame-limited\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/saasame-limited\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"safesoftwareinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/safesoftwareinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"safeticatechnologiessro\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/safeticatechnologiessro\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"safetica_technologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/safetica_technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"safetoopen1585013318137\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/safetoopen1585013318137\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"saltsecurity1583264186232\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/saltsecurity1583264186232\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"saltsecurity1583264669848\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/saltsecurity1583264669848\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"saltstack\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/saltstack\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"samsung-sds\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/samsung-sds\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"samsungelectronics1632860607983\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/samsungelectronics1632860607983\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"samsungsds-cello\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/samsungsds-cello\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"samsungsds_sdbe\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/samsungsds_sdbe\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sandhatatechnologieslimited1615753438737\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sandhatatechnologieslimited1615753438737\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sap\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sap\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sapphiretechnologieslimited1611758579346\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sapphiretechnologieslimited1611758579346\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sas-institute-560503\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sas-institute-560503\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"scaidata\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/scaidata\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"scalearc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/scalearc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"scalegrid\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/scalegrid\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"scality\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/scality\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"schrockeninc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/schrockeninc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sci\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sci\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sciencelogicinc1622565452194\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sciencelogicinc1622565452194\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"scientiamobile\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/scientiamobile\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"scontainug1595751515785\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/scontainug1595751515785\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"scubaanalytics\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/scubaanalytics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"scylladb1631195365807\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/scylladb1631195365807\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"seaqserviciossas1579029207572\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/seaqserviciossas1579029207572\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"searchbloxsoftwareinc1594309037050\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/searchbloxsoftwareinc1594309037050\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"secureworks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/secureworks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"securityonionsolutions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/securityonionsolutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"securityonionsolutionsllc1624649205155\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/securityonionsolutionsllc1624649205155\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"securosis\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/securosis\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"seequentltd1585781751395\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/seequentltd1585781751395\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"semarchy\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/semarchy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"semperis\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/semperis\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"senhasegura\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/senhasegura\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"SentinelOne.LinuxExtension\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/SentinelOne.LinuxExtension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"SentinelOne.LinuxExtension.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/SentinelOne.LinuxExtension.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"SentinelOne.WindowsExtension\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/SentinelOne.WindowsExtension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"SentinelOne.WindowsExtension.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/SentinelOne.WindowsExtension.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sentriumsl\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sentriumsl\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sentry51llc1616686725591\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sentry51llc1616686725591\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sentryone\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sentryone\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sepiosystems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sepiosystems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"seppmailag\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/seppmailag\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"seraumo1620002807288\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/seraumo1620002807288\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"service-control-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/service-control-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sesamesoftwareinc1622125191447\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sesamesoftwareinc1622125191447\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"shadow-soft\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/shadow-soft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"shareshiftneeraj.test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/shareshiftneeraj.test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sightapps\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sightapps\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"signal-sciences\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/signal-sciences\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"silk\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/silk\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"silver-peak-systems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/silver-peak-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"simmachinesinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/simmachinesinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"simontelephonics\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/simontelephonics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"simpledatalabsinc1635791235920\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/simpledatalabsinc1635791235920\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"simplifierag\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/simplifierag\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"simpligov\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/simpligov\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sinefa\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sinefa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sinequa\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sinequa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sinequa1588262295885\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sinequa1588262295885\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"singapore-telecommunications-limited\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/singapore-telecommunications-limited\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sios_datakeeper\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sios_datakeeper\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"siportalinc1581539156321\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/siportalinc1581539156321\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sisenseltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sisenseltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Site24x7\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Site24x7\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sktelecom\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sktelecom\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"skyarc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/skyarc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"skyboxsecurity1585187406404\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/skyboxsecurity1585187406404\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"skylarkcloud\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/skylarkcloud\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"smartbearsoftware\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/smartbearsoftware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"smartmessage-autoflow\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/smartmessage-autoflow\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"snaplogic\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/snaplogic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"snapt-adc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/snapt-adc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"snips\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/snips\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"soasta\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/soasta\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"softnas\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/softnas\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"softwarecentralas1642687699196\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/softwarecentralas1642687699196\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"softwarehut\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/softwarehut\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"softwebsolutions-4518310\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/softwebsolutions-4518310\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"soha\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/soha\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"solanolabs\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/solanolabs\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"solar-security\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/solar-security\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"solarwinds\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/solarwinds\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"solvedevops1643693563360\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/solvedevops1643693563360\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sonicwall-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sonicwall-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sophos\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sophos\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sourcegearllc1616101262784\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sourcegearllc1616101262784\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"south-river-technologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/south-river-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"southrivertech1586314123192\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/southrivertech1586314123192\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"spacecurve\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/spacecurve\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"spaceliftinc1625499025476\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/spaceliftinc1625499025476\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"spagobi\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/spagobi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sparklinglogic\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sparklinglogic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"spectralcorelimited1619779004178\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/spectralcorelimited1619779004178\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"spektra\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/spektra\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sphere3d\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sphere3d\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"spideroakinc1588278690933\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/spideroakinc1588278690933\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"spirentcommunications1594084187199\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/spirentcommunications1594084187199\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"splunk\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/splunk\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sproutenetworks1593456311717\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sproutenetworks1593456311717\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sqlstream\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sqlstream\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"squadratechnologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/squadratechnologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"squaredup\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/squaredup\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"src-solution\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/src-solution\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ssh2appsltd1621588462715\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ssh2appsltd1621588462715\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stackato-platform-as-a-service\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stackato-platform-as-a-service\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Stackify.LinuxAgent.Extension\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Stackify.LinuxAgent.Extension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stackstorm\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stackstorm\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"startekfingerprintmatch\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/startekfingerprintmatch\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"startisolucoesemtecnologialtda1635263523201\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/startisolucoesemtecnologialtda1635263523201\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"starwind\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/starwind\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"StatusMonitor2.Diagnostics.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/StatusMonitor2.Diagnostics.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"StatusReport.Diagnostics.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/StatusReport.Diagnostics.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stealthbits\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stealthbits\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"steelhive\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/steelhive\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stonebondtechnologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stonebondtechnologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stonefly\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stonefly\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"storage_made_easy\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/storage_made_easy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stormshield\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stormshield\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"storone1594045543980\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/storone1594045543980\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"storreduce\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/storreduce\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"storwarespzoo1611743234900\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/storwarespzoo1611743234900\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"strangebee1595948424730\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/strangebee1595948424730\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"strataidentity1608323708170\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/strataidentity1608323708170\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stratis-group-ltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stratis-group-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stratodesk1611152769936\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stratodesk1611152769936\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stratumn\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stratumn\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"streamsets\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/streamsets\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"striim\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/striim\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stromasys\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stromasys\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"strongboxitllc1594816423884\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/strongboxitllc1594816423884\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"su\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/su\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"subscription.test.krsh\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/subscription.test.krsh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sumologic\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sumologic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sunatogmbh\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sunatogmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sunday\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sunday\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"SUSE\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/SUSE\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"SUSE.AzureHybridBenefit\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/SUSE.AzureHybridBenefit\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"swoopanalytics\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/swoopanalytics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sycom-technologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sycom-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sycompatechnologycompanyinc1588192103892\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sycompatechnologycompanyinc1588192103892\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.CloudWorkloadProtection\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.CloudWorkloadProtection\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.CloudWorkloadProtection.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.CloudWorkloadProtection.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.CloudWorkloadProtection.TestOnStage\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.CloudWorkloadProtection.TestOnStage\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.QA\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.QA\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.staging\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.staging\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.test.ru2.latest\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.test.ru2.latest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.test.ru2final\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.test.ru2final\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.test.ru2latest1\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.test.ru2latest1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.test.ru4mp1\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.test.ru4mp1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.test.ru4mp1.latest\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.test.ru4mp1.latest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.test.ru4mp1final\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.test.ru4mp1final\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"symanteccorporation\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/symanteccorporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"symantectest1\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/symantectest1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"synack-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/synack-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"syncfusion\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/syncfusion\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"syncfusionbigdataplatfor\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/syncfusionbigdataplatfor\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"synechron-technologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/synechron-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"synergixinc1585256339250\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/synergixinc1585256339250\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"synnexcorp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/synnexcorp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"syscomcomputerengineeringco1583913200141\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/syscomcomputerengineeringco1583913200141\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"syte\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/syte\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tableau\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tableau\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tactic\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tactic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"talari-networks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/talari-networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"talena-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/talena-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"talend\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/talend\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"talon\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/talon\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tamrinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tamrinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"taniuminc1646329360287\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/taniuminc1646329360287\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"targit\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/targit\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tata_communications\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tata_communications\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tavanttechnologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tavanttechnologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tavendo\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tavendo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"te-systems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/te-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"techdivision\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/techdivision\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"techlatest\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/techlatest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"technicheltd1606969724100\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/technicheltd1606969724100\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tecknolab\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tecknolab\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"telepat\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/telepat\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"teloscorporation\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/teloscorporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tempered-networks-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tempered-networks-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tenable\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tenable\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tensormakecorpdbaoneclickai1608247756082\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tensormakecorpdbaoneclickai1608247756082\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tenthlineinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tenthlineinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"teradata\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/teradata\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Teradici\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Teradici\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"teramindinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/teramindinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.Gemalto.SafeNet.ProtectV\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.Gemalto.SafeNet.ProtectV\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.Gemalto.SafeNet.ProtectV.Azure\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.Gemalto.SafeNet.ProtectV.Azure\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.HP.AppDefender\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.HP.AppDefender\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.Microsoft.VisualStudio.Services\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.Microsoft.VisualStudio.Services\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.NJHP.AppDefender\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.NJHP.AppDefender\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.SqlServer.Managability\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.SqlServer.Managability\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.SqlServer.Management\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.SqlServer.Management\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.SqlServer.Management.corext\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.SqlServer.Management.corext\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test1.NJHP.AppDefender\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test1.NJHP.AppDefender\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test3.Microsoft.VisualStudio.Services\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test3.Microsoft.VisualStudio.Services\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"testable1603721901088\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/testable1603721901088\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"testpro\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/testpro\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"test_test_mix3pptest0011614206850774\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/test_test_mix3pptest0011614206850774\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"test_test_mneela1628617140187\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/test_test_mneela1628617140187\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"test_test_pmc2pc1\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/test_test_pmc2pc1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thales-vormetric\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thales-vormetric\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thalesdiscplusainc1596561677238\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thalesdiscplusainc1596561677238\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thedatavaluefactoryltd1589348815922\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thedatavaluefactoryltd1589348815922\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thefreebsdfoundation\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thefreebsdfoundation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thehdfgroup1616725197741\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thehdfgroup1616725197741\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"theumag1596442827072\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/theumag1596442827072\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"things-board\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/things-board\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thingscareinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thingscareinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thinprintgmbh\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thinprintgmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thorntechnologiesllc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thorntechnologiesllc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thoughtspot-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thoughtspot-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"threatintelligenceptyltd1586824172898\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/threatintelligenceptyltd1586824172898\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tibco-software\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tibco-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tidal-migrations\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tidal-migrations\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tidalmediainc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tidalmediainc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tig\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tig\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tiger-technology\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tiger-technology\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tigergraph\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tigergraph\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"timextender\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/timextender\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tmaxsoft\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tmaxsoft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tmaxsoft1608612658335\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tmaxsoft1608612658335\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tomsawyersoftwarecorp1613579206342\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tomsawyersoftwarecorp1613579206342\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"topicus\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/topicus\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"torusware\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/torusware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"totemo\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/totemo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"townsend-security\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/townsend-security\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"transcendinformationinc1609918445926\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/transcendinformationinc1609918445926\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"transientxinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/transientxinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"transvault\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/transvault\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"trendmicro\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/trendmicro\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"TrendMicro.DeepSecurity.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/TrendMicro.DeepSecurity.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"TrendMicro.PortalProtect\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/TrendMicro.PortalProtect\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tresorit\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tresorit\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"trifacta\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/trifacta\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tripleblindinc1615730179432\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tripleblindinc1615730179432\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tripwire-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tripwire-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"truata1612259728221\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/truata1612259728221\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"truestack\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/truestack\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tryonsolutionsinc1596650621083\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tryonsolutionsinc1596650621083\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tsa-public-service\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tsa-public-service\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tunnelbiz\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tunnelbiz\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"turbonet\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/turbonet\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"turbonet1581982683964\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/turbonet1581982683964\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"twistlock\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/twistlock\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"typesafe\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/typesafe\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ubeeko\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ubeeko\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ubercloud\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ubercloud\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"uipath-5054924\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/uipath-5054924\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ulex\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ulex\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"unifi-software\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/unifi-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"unifiedstreaming1598872291606\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/unifiedstreaming1598872291606\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"uniprint-net\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/uniprint-net\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"unitrends\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/unitrends\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"unnisoft\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/unnisoft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"unravel-data\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/unravel-data\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"unscramblsingaporepteltd-4999260\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/unscramblsingaporepteltd-4999260\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"untangle\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/untangle\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"upsolver1594188634150\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/upsolver1594188634150\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"usp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/usp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"valohai\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/valohai\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"valtix\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/valtix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"varmournetworks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/varmournetworks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"varnish\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/varnish\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vastdata1650451243415\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vastdata1650451243415\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vatacommunicationsinc1581644208717\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vatacommunicationsinc1581644208717\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vaultive-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vaultive-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vbot\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vbot\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vcinityinc1587684340545\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vcinityinc1587684340545\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vectraaiinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vectraaiinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"veeam\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/veeam\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"velocitydb-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/velocitydb-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"velocloud\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/velocloud\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vembutechnologiespvtltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vembutechnologiespvtltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vemn\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vemn\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"veritas\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/veritas\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"versanetworks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/versanetworks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"versasec\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/versasec\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vidispine\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vidispine\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vidizmo\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vidizmo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vigyanlabs-innovations-pvt-ltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vigyanlabs-innovations-pvt-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vigyanlabsinc1581413676614\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vigyanlabsinc1581413676614\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"viptela\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/viptela\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vircom\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vircom\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"virtamovecorp1615909247913\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/virtamovecorp1615909247913\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"virtualpulsesro1607008728942\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/virtualpulsesro1607008728942\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"virtuozzointernationalgmbh1626704951469\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/virtuozzointernationalgmbh1626704951469\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"visualknowledgeshare1591795776234\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/visualknowledgeshare1591795776234\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"visualsoft-center\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/visualsoft-center\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vizixiotplatformretail001\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vizixiotplatformretail001\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vmlabinc1613642184700\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vmlabinc1613642184700\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vmturbo\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vmturbo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vmware-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vmware-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vnomicinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vnomicinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"voiceelements\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/voiceelements\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"voleatechgmbh1636966911943\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/voleatechgmbh1636966911943\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"volterraedgeservices\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/volterraedgeservices\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Vormetric\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Vormetric\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vscconsultingptyltd1608535888097\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vscconsultingptyltd1608535888097\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vte\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vte\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vu-llc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vu-llc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vunetsystemsprivatelimited1646716402131\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vunetsystemsprivatelimited1646716402131\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vyulabsinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vyulabsinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"WAD2AI.Diagnostics.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/WAD2AI.Diagnostics.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"WAD2EventHub.Diagnostics.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/WAD2EventHub.Diagnostics.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wallarm\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wallarm\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wallix\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wallix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wandisco\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wandisco\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wanos\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wanos\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wanpath-dba-myworkdrive\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wanpath-dba-myworkdrive\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wardy-it-solutions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wardy-it-solutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"warewolf-esb\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/warewolf-esb\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"watchguard-technologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/watchguard-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"webaloinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/webaloinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"websense-apmailpe\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/websense-apmailpe\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"websoft9inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/websoft9inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wedoitllc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wedoitllc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"westernoceansoftwaresprivatelimited\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/westernoceansoftwaresprivatelimited\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wherescapesoftware\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wherescapesoftware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"winmagic_securedoc_cloudvm\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/winmagic_securedoc_cloudvm\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wintellisys-inc-4561600\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wintellisys-inc-4561600\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"witfooinc1590167223060\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/witfooinc1590167223060\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wmspanel\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wmspanel\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wood1595864497589\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wood1595864497589\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"workshare-technology\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/workshare-technology\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"world-programming\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/world-programming\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"worxogo\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/worxogo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wowza\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wowza\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"xcontentptyltd-1329748\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/xcontentptyltd-1329748\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"xendata-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/xendata-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"xfinityinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/xfinityinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"xilinx\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/xilinx\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"xoriantcorporationazxteam1\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/xoriantcorporationazxteam1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"xoriantsolutionspvtltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/xoriantsolutionspvtltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"xtremedata\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/xtremedata\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"xyzrd-group-ou\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/xyzrd-group-ou\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"yaseensmarket1645449809728\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/yaseensmarket1645449809728\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"yellowfin\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/yellowfin\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"yellowfininternationalptyltd1616363974066\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/yellowfininternationalptyltd1616363974066\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"yokogawarentalleasecorporation\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/yokogawarentalleasecorporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"your-shop-online\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/your-shop-online\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"z1\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/z1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"z4it-aps\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/z4it-aps\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zabbix\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zabbix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zend\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zend\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zenterasystemsinc1605292453288\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zenterasystemsinc1605292453288\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zerodown_software\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zerodown_software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zerto\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zerto\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zettalane_systems-5254599\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zettalane_systems-5254599\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zevenet\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zevenet\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zilliz\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zilliz\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zoomdata\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zoomdata\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zscaler\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zscaler\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zscaler1579058425289\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zscaler1579058425289\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zultysinc1596831546163\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zultysinc1596831546163\"\r\n }\r\n]", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/southeastasia/publishers?api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9wdWJsaXNoZXJzP2FwaS12ZXJzaW9uPTIwMjEtMTEtMDE=", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Compute/locations/southeastasia/publishers?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9wdWJsaXNoZXJzP2FwaS12ZXJzaW9uPTIwMjEtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "97820b56-d5e2-4232-877d-8da467319bd4" + "efa92f6f-637d-4c39-8ede-9c5b75621fd8" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ] }, "ResponseHeaders": { @@ -2194,32 +2465,32 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "8d76ef5d-2d17-4297-8566-4612360b9f5a_132792867042483732" + "8d76ef5d-2d17-4297-8566-4612360b9f5a_132927459943306577" ], "x-ms-request-id": [ - "47245e75-b741-484f-a8fb-9acc2b52e25a" + "ee41c6b8-438d-4e15-aafc-eed837d725b5" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11979" ], "x-ms-correlation-request-id": [ - "7eb45e4f-3bf3-4a58-9692-6dc3bc12556f" + "e4620dff-c8c8-4614-be9f-b708fa024f7d" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T200655Z:7eb45e4f-3bf3-4a58-9692-6dc3bc12556f" + "JIOINDIAWEST:20220516T190807Z:e4620dff-c8c8-4614-be9f-b708fa024f7d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 20:06:55 GMT" + "Mon, 16 May 2022 19:08:06 GMT" ], "Content-Length": [ - "420268" + "429382" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2228,26 +2499,26 @@ "-1" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"128technology\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/128technology\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1580863854728\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1580863854728\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1583411303229\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1583411303229\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1583465680865\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1583465680865\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1585118004523\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1585118004523\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1597644262255\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1597644262255\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1598955805825\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1598955805825\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1601633765871\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1601633765871\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1602067018799\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1602067018799\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1604579683207\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1604579683207\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1615257339685\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1615257339685\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1615278064010\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1615278064010\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1615455873642\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1615455873642\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1624590941808\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1624590941808\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1e\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1e\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"2021ai\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/2021ai\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"247commercelimited1611063941652\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/247commercelimited1611063941652\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"3cx-pbx\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/3cx-pbx\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"42crunch1580391915541\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/42crunch1580391915541\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"4psa\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/4psa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"5nine-software-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/5nine-software-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"7isolutions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/7isolutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"a10networks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/a10networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"a10networks1596136698788\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/a10networks1596136698788\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"abiquo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/abiquo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"abzoobainc1598420455082\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/abzoobainc1598420455082\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"accedian\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/accedian\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"accelario1579101623356\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/accelario1579101623356\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"accellion\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/accellion\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"accessdata-group\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/accessdata-group\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"accops\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/accops\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aciworldwide\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aciworldwide\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Acronis\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Acronis\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Acronis.Backup\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Acronis.Backup\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"actian-corp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/actian-corp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"actian_matrix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/actian_matrix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"actifio\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/actifio\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"actiphy\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/actiphy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"actiphyinc1627974506603\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/actiphyinc1627974506603\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"activecountermeasuresinc1631039410073\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/activecountermeasuresinc1631039410073\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"activeeon\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/activeeon\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"activeops\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/activeops\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"adastracorporation-4028356\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/adastracorporation-4028356\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"adgs\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/adgs\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"advantech\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/advantech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"advantech-webaccess\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/advantech-webaccess\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"advantys\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/advantys\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aelf\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aelf\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aerospike\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aerospike\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"affinio\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/affinio\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"affirmednetworks1607630812999\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/affirmednetworks1607630812999\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ageniumscale1591804889317\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ageniumscale1591804889317\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aggregion-ltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aggregion-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"agiledialogssl1603791911858\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/agiledialogssl1603791911858\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"agolo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/agolo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ahnlabinc1584495174865\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ahnlabinc1584495174865\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ahnlabinc1584495467593\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ahnlabinc1584495467593\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"airalabrus\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/airalabrus\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aiscaler-cache-control-ddos-and-url-rewriting-\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aiscaler-cache-control-ddos-and-url-rewriting-\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aisundowninc1618516322959\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aisundowninc1618516322959\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"akamai-technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/akamai-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"akumina\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/akumina\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"akumo-software\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/akumo-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"al-tamamunitedtradingcontractingcompany\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/al-tamamunitedtradingcontractingcompany\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"alachisoft\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/alachisoft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"alertlogic\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/alertlogic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"AlertLogic.Extension\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/AlertLogic.Extension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"algolyticstechnologies1606475101268\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/algolyticstechnologies1606475101268\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"alicetrix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/alicetrix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"alienvault\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/alienvault\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"alldigital-brevity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/alldigital-brevity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"almalinux\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/almalinux\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"almalinuxosfoundation1628089859865\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/almalinuxosfoundation1628089859865\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"altair-engineering-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/altair-engineering-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"altamira-corporation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/altamira-corporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"alteryx\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/alteryx\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"altova\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/altova\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"amergint1593131356777\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/amergint1593131356777\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ansys\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ansys\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"antmedia\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/antmedia\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aod\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aod\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"apigee\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/apigee\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"appcara\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appcara\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"appcelerator\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appcelerator\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"appex-networks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appex-networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"appistry\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appistry\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"appiyo_technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appiyo_technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"appmint_inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appmint_inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"apps-4-rent\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/apps-4-rent\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"appscale-marketplace\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appscale-marketplace\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"appsurifyinc1606933045773\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appsurifyinc1606933045773\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aquaforest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aquaforest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aquantyinc1598537176913\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aquantyinc1598537176913\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aquaveollc1633710529908\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aquaveollc1633710529908\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"arabesque-group\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/arabesque-group\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"arangodb\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/arangodb\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aras\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aras\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"arcblock\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/arcblock\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"arcesb\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/arcesb\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"arcontechsolutionsprivatelimited1623841797810\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/arcontechsolutionsprivatelimited1623841797810\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"arcserveusallc-marketing\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/arcserveusallc-marketing\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"arista-networks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/arista-networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ariwontollc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ariwontollc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"array_networks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/array_networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"artificial-intelligence-techniques-sl\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/artificial-intelligence-techniques-sl\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"arubanetworks-4922182\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/arubanetworks-4922182\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"asdivertissementinc1617837708654\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/asdivertissementinc1617837708654\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"asigra\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/asigra\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aspentechnologyhq-1353108\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aspentechnologyhq-1353108\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"astadia-1148316\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/astadia-1148316\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"asterasoftware1581022936015\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/asterasoftware1581022936015\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"asyscosoftwarebv\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/asyscosoftwarebv\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ataccama\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ataccama\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"athinfosystems1641442221349\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/athinfosystems1641442221349\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"atlgaming\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/atlgaming\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"atmosera\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/atmosera\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"atomicorp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/atomicorp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"atomizedinc1587939464368\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/atomizedinc1587939464368\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"attunity_cloudbeam\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/attunity_cloudbeam\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"audiocodes\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/audiocodes\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"auraportal\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/auraportal\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"auriq-systems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/auriq-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"automateio1592914387888\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/automateio1592914387888\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"automationanywhere\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/automationanywhere\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"avanseus\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/avanseus\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"avepoint\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/avepoint\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aveva1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aveva1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"avi-networks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/avi-networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aviatrix-systems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aviatrix-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"awingu\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/awingu\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"axedrasag1590581171549\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/axedrasag1590581171549\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"axsguardablenv\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/axsguardablenv\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"axshco\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/axshco\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"axway\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/axway\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"axxana\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/axxana\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"azhpc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/azhpc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"azul\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/azul\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"azure-dockit\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/azure-dockit\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"azurecyclecloud\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/azurecyclecloud\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"AzureDatabricks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/AzureDatabricks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"azureopenshift\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/azureopenshift\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"AzureRT.PIR.Synthetics.ProdTest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/AzureRT.PIR.Synthetics.ProdTest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"AzureRT.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/AzureRT.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"azuretesting\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/azuretesting\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"azuretesting2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/azuretesting2\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"azuretesting3\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/azuretesting3\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"AzureTools1type\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/AzureTools1type\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"baas-techbureau\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/baas-techbureau\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"baffle-io\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/baffle-io\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"balabit\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/balabit\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"barracudanetworks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/barracudanetworks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"basho\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/basho\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"batch\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/batch\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bayware\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bayware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bdy\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bdy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"belindaczsro1588885355210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/belindaczsro1588885355210\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bellsoft1582871421940\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bellsoft1582871421940\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"betsol\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/betsol\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"beyondtrust\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/beyondtrust\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bi-builders-as\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bi-builders-as\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"big-id\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/big-id\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"biolibinc1622552350258\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/biolibinc1622552350258\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bissantechnology1583581147809\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bissantechnology1583581147809\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bitdefendercybersecurity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bitdefendercybersecurity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Bitnami\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Bitnami\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bizagi\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bizagi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bizaptyltd1626489237351\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bizaptyltd1626489237351\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bizdataloome\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bizdataloome\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"biztalk360\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/biztalk360\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"black-duck-software\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/black-duck-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"blackbird\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/blackbird\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"blackmagicdesignincorporated1596492193249\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/blackmagicdesignincorporated1596492193249\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"blk-technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/blk-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"blockapps\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/blockapps\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"blockchain-foundry\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/blockchain-foundry\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"blockstack\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/blockstack\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bloombase\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bloombase\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bluecat\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bluecat\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bluejeansnetwork1638333611902\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bluejeansnetwork1638333611902\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"blueprismlimited-4827145\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/blueprismlimited-4827145\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bluesyntaxconsulting1617654548594\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bluesyntaxconsulting1617654548594\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bluetalon\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bluetalon\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bmc.ctm\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bmc.ctm\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bmcctm.test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bmcctm.test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"boardpacpvtltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/boardpacpvtltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bocada\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bocada\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"boemskats\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/boemskats\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"botanalytics\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/botanalytics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bowspritconsultingopcprivatelimited1596291408582\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bowspritconsultingopcprivatelimited1596291408582\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bravura-software-llc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bravura-software-llc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Brianjac.Symantec.CloudWorkloadProtection\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Brianjac.Symantec.CloudWorkloadProtection\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bricatainc1584472632111\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bricatainc1584472632111\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bright-computing\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bright-computing\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"brightcomputing\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/brightcomputing\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"brocade_communications\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/brocade_communications\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"brutale\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/brutale\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bryte\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bryte\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bssw\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bssw\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bt-americas-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bt-americas-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"buddhalabs\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/buddhalabs\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cadosecurityltd1626856705534\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cadosecurityltd1626856705534\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"calculated_systems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/calculated_systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"caloudi_corp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/caloudi_corp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"canadiancentreforcybersecurity1610638436359\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/canadiancentreforcybersecurity1610638436359\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Canonical\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Canonical\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"canonical-test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/canonical-test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"carto\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/carto\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cask\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cask\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"castaigroupinc1595243474856\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/castaigroupinc1595243474856\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"catechnologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/catechnologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"catonetworksltd1641478570665\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/catonetworksltd1641478570665\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cautelalabs\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cautelalabs\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cavirin\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cavirin\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cayosoftinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cayosoftinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cdatasoftware\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cdatasoftware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cds\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cds\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"celum-gmbh\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/celum-gmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"center-for-internet-security-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/center-for-internet-security-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"centeritysystems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/centeritysystems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"centrixeltd1594135951373\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/centrixeltd1594135951373\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"centrocomputerspa1584528117084\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/centrocomputerspa1584528117084\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"certifiedsecuritysolutionsinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/certifiedsecuritysolutionsinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"certivox\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/certivox\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cfd-direct\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cfd-direct\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"chain\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/chain\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"checkpoint\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/checkpoint\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"chef-software\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/chef-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Chef.Bootstrap.WindowsAzure\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Chef.Bootstrap.WindowsAzure\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"chunghwatelecom1587573688842\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/chunghwatelecom1587573688842\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cinchy\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cinchy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cinegy-gmbh\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cinegy-gmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"circleci\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/circleci\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cires21\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cires21\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cirruswaveinc1579234787943\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cirruswaveinc1579234787943\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cisco\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cisco\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"citrix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/citrix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Citrix.ADC\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Citrix.ADC\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"clapsodeughaftungsbeschrnkt1626333173563\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/clapsodeughaftungsbeschrnkt1626333173563\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"clear-linux-project\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/clear-linux-project\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"clone-systems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/clone-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"clouber\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/clouber\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloud-checkr\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloud-checkr\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloud-cruiser\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloud-cruiser\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloud-infrastructure-services\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloud-infrastructure-services\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudaccelinc1628754426775\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudaccelinc1628754426775\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudbees\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudbees\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudbees-enterprise-jenkins\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudbees-enterprise-jenkins\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudbolt-software\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudbolt-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudboltsoftware1639523402532\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudboltsoftware1639523402532\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudboost\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudboost\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudcover\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudcover\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudenablers-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudenablers-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudentity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudentity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudera\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudera\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudflare\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudflare\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudhouse\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudhouse\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudinfo-4919088\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudinfo-4919088\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudknox\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudknox\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudlanes\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudlanes\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudlink\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudlink\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"CloudLinkEMC.SecureVM\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/CloudLinkEMC.SecureVM\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudmavensolutions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudmavensolutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudneeti\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudneeti\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudplan-gmbh\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudplan-gmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudsecurity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudsecurity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudsoft\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudsoft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudwhizsolutions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudwhizsolutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudwrxsconsultingltd1631029702055\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudwrxsconsultingltd1631029702055\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"clustrix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/clustrix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cncf-upstream\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cncf-upstream\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"codaintelligence1606495376525\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/codaintelligence1606495376525\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"codelathe\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/codelathe\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"codenvy\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/codenvy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"codetwo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/codetwo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cognexcorporation1613759804979\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cognexcorporation1613759804979\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cognitive-scale\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cognitive-scale\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cognizant\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cognizant\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cognosys\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cognosys\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cohesity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cohesity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cohesitydev1592001764720\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cohesitydev1592001764720\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cohesive\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cohesive\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"coin-sciences-ltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/coin-sciences-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"collabcloudlimited\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/collabcloudlimited\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"collibranv1619508098620\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/collibranv1619508098620\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"commscopeinc1632135151062\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/commscopeinc1632135151062\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"commvault\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/commvault\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"compellon\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/compellon\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"composable\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/composable\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"comunity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/comunity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"concentrationheatandmomentumlimited1616154387047\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/concentrationheatandmomentumlimited1616154387047\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Confer\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Confer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"confluentinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/confluentinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"conflux\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/conflux\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"connecting-software\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/connecting-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"consensys\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/consensys\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"containeraider\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/containeraider\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"contiamogmbh\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/contiamogmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"controlcase\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/controlcase\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"controlplane\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/controlplane\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"controlplanecorporation1609967567639\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/controlplanecorporation1609967567639\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"convertigo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/convertigo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"corda\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/corda\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"core-stack\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/core-stack\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"corent-technology-pvt\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/corent-technology-pvt\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"CoreOS\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/CoreOS\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"couchbase\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/couchbase\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cpanel\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cpanel\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"credativ\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/credativ\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cristiesoftwareltd1599488127561\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cristiesoftwareltd1599488127561\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"crunchyard\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/crunchyard\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"crunchyardltd1623835391104\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/crunchyardltd1623835391104\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cryptocom1585727786636\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cryptocom1585727786636\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cryptosense1605170011574\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cryptosense1605170011574\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cryptzone\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cryptzone\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ctm.bmc.com\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ctm.bmc.com\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cubebackup\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cubebackup\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cyberark\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cyberark\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cybernetica-as\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cybernetica-as\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cyxtera\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cyxtera\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"d4t4_solutions-1164305\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/d4t4_solutions-1164305\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"daceitdbasensetrafficpulse1579892024934\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/daceitdbasensetrafficpulse1579892024934\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"danielsol.AzureTools1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/danielsol.AzureTools1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Dans.Windows.App\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Dans.Windows.App\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Dans3.Windows.App\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Dans3.Windows.App\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dataart\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dataart\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"databricks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/databricks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datacore\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datacore\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Datadog.Agent\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Datadog.Agent\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datadynamicsinc1581991927942\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datadynamicsinc1581991927942\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dataguiseinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dataguiseinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dataiku\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dataiku\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datalayer\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datalayer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datanomers1584919038987\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datanomers1584919038987\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datanova\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datanova\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datapredsa\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datapredsa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dataroadtechnologiesllc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dataroadtechnologiesllc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datasciencedojo1586563145740\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datasciencedojo1586563145740\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datastax\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datastax\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datasunrise\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datasunrise\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datavirtualitygmbh\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datavirtualitygmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datometry\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datometry\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dbs-h\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dbs-h\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ddn-whamcloud-5345716\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ddn-whamcloud-5345716\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Debian\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Debian\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dece-4446019\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dece-4446019\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"decisosalesbv\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/decisosalesbv\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"deepcognitioninc1593512758156\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/deepcognitioninc1593512758156\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"deepsiginc1581610210151\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/deepsiginc1581610210151\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"deepsurfacesecurityinc1632943333445\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/deepsurfacesecurityinc1632943333445\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dellemc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dellemc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dell_software\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dell_software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"delphix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/delphix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"deltapathlimited1592886319362\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/deltapathlimited1592886319362\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"denodo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/denodo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"denyall\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/denyall\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"derdack\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/derdack\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"desktopstudioag1580294245574\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/desktopstudioag1580294245574\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"devfactory\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/devfactory\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"device42inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/device42inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"deviceauthorityinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/deviceauthorityinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"devolutionsinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/devolutionsinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"devopsgroup-uk\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/devopsgroup-uk\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"df-portal-user\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/df-portal-user\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dgsecure\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dgsecure\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Dh2ico\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Dh2ico\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dh2icompany\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dh2icompany\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dhi\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dhi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"diagramics\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/diagramics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dicomsystems1584107398321\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dicomsystems1584107398321\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"diehl-metering\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/diehl-metering\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"digisitesystems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/digisitesystems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"digitaldefenseinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/digitaldefenseinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"digitaloffice\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/digitaloffice\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"digitamizeinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/digitamizeinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"digitate\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/digitate\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"diladele\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/diladele\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dimensionalmechanics-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dimensionalmechanics-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"diqa\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/diqa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"diyatech\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/diyatech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"diyotta\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/diyotta\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"djiindustrialincus\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/djiindustrialincus\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"docker\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/docker\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dome9\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dome9\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dorabot\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dorabot\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dremiocorporation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dremiocorporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"drizti\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/drizti\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"drone\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/drone\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dsi\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dsi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dundas\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dundas\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dyadic_security\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dyadic_security\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dynatrace\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dynatrace\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dynatrace.ruxit\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dynatrace.ruxit\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"e-magicinc1587696283171\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/e-magicinc1587696283171\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"eastwind-networks-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/eastwind-networks-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"easysoftwaresro1593005637384\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/easysoftwaresro1593005637384\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ebesllc1637780200500\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ebesllc1637780200500\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ecessa\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ecessa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"edevtech\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/edevtech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"edgelesssystems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/edgelesssystems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"edgenetworks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/edgenetworks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"edispheresoftwareprivatelimited1606199736428\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/edispheresoftwareprivatelimited1606199736428\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"education4sight\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/education4sight\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"eecservicesfzllc1604836615706\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/eecservicesfzllc1604836615706\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"egnyte\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/egnyte\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"egress1589289169584\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/egress1589289169584\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"eikonasystemsgmbh1601729310063\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/eikonasystemsgmbh1601729310063\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Elastic\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Elastic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"elasticbox\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/elasticbox\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"elecard\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/elecard\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"electric-cloud\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/electric-cloud\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"elevateiot\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/elevateiot\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"eleven01\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/eleven01\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"elfiqnetworks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/elfiqnetworks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"emercoin\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/emercoin\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"energisme1601990637842\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/energisme1601990637842\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"enforongo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/enforongo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"engineering-ingegneriainformatica-spa1626786889850\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/engineering-ingegneriainformatica-spa1626786889850\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"engysltd1624364546407\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/engysltd1624364546407\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"enterprise-ethereum-alliance\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/enterprise-ethereum-alliance\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"enterprisedb-corp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/enterprisedb-corp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"enterpriseworx-it\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/enterpriseworx-it\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"epicgames\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/epicgames\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"epicgamesinc1633466121071\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/epicgamesinc1633466121071\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"eproe\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/eproe\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"equalum\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/equalum\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"equilibrium\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/equilibrium\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"equinix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/equinix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ergoninformatikag1581586464404\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ergoninformatikag1581586464404\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"esdenera\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/esdenera\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ESET\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ESET\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"esetresearch1579795941720\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/esetresearch1579795941720\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"esri\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/esri\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"esyon\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/esyon\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ethereum\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ethereum\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"eurolinuxspzoo1620639373013\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/eurolinuxspzoo1620639373013\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"eventtracker\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/eventtracker\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"evertzmicrosystemsltd1586877923009\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/evertzmicrosystemsltd1586877923009\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"evostream-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/evostream-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"exact\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/exact\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"exasol\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/exasol\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"excelero1608461290726\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/excelero1608461290726\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"exivity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/exivity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"exonar\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/exonar\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"f5-networks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/f5-networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"falainapteltd1604661424876\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/falainapteltd1604661424876\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"falconstorsoftware\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/falconstorsoftware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fatalsecurity1604924013537\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fatalsecurity1604924013537\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fatpipe-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fatpipe-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fenestrae-1035066\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fenestrae-1035066\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fidesys\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fidesys\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"filecatalyst\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/filecatalyst\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"filemagellc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/filemagellc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fiorano\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fiorano\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fireeye\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fireeye\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"firehost\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/firehost\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"firemon\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/firemon\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"firstderivativesplc1596469572732\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/firstderivativesplc1596469572732\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"flashgrid-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/flashgrid-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"flexbby\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/flexbby\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"flexbby-5255860\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/flexbby-5255860\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"flexify-io\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/flexify-io\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"flexxibleit\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/flexxibleit\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"flowmon\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/flowmon\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"flynet\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/flynet\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"foghorn-systems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/foghorn-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"forcepoint-llc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/forcepoint-llc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"forescout\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/forescout\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"foreseetiab1613650409016\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/foreseetiab1613650409016\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"formpipesoftwareab\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/formpipesoftwareab\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"forscene\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/forscene\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fortanix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fortanix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fortinet\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fortinet\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fortycloud\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fortycloud\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"forumsystems1599756394904\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/forumsystems1599756394904\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fotopiatechnologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fotopiatechnologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"foxiteuropegmbh1585901066320\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/foxiteuropegmbh1585901066320\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"franzinc1593030725310\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/franzinc1593030725310\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fujitsu_fast\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fujitsu_fast\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fw\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fw\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"g2kgroupgmbh-4821943\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/g2kgroupgmbh-4821943\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gapteq\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gapteq\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gatlingcorp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gatlingcorp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gbs\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gbs\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gemalto-safenet\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gemalto-safenet\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Gemalto.SafeNet.ProtectV\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Gemalto.SafeNet.ProtectV\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"genuagmbhdevid1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/genuagmbhdevid1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"genua_gmbh\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/genua_gmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"genymobile\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/genymobile\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gigamon-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gigamon-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"GitHub\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/GitHub\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gitlab\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gitlab\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gitlabinc1586447921813\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gitlabinc1586447921813\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gladinet-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gladinet-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"glantoninc1591876792991\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/glantoninc1591876792991\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"globalidsinc1596800540598\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/globalidsinc1596800540598\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"globalscape\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/globalscape\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"globalsolutions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/globalsolutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gluwareinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gluwareinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"graphistry\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/graphistry\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"graphitegtc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/graphitegtc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"great-software-laboratory-private-limited\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/great-software-laboratory-private-limited\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"greensql\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/greensql\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"greycorbelsolutions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/greycorbelsolutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gridgain\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gridgain\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"guardicore\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/guardicore\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gxchainfoundationltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gxchainfoundationltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"h2o-ai\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/h2o-ai\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hackerbay\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hackerbay\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hackershub\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hackershub\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"haivision\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/haivision\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"haivisionsystemsinc1580780591922\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/haivisionsystemsinc1580780591922\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"haltdoscompvtltd1587136166019\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/haltdoscompvtltd1587136166019\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hanu\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hanu\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"haproxy-technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/haproxy-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"harmanconnectedservicesinc1594928575643\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/harmanconnectedservicesinc1594928575643\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"harpaitalia\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/harpaitalia\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hashhub\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hashhub\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hcl-technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hcl-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"heimdall-data\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/heimdall-data\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"help-systems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/help-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"helpyio\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/helpyio\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"heretechnologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/heretechnologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hewlett-packard\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hewlett-packard\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hillstone-networks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hillstone-networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hitachi-solutions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hitachi-solutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hitachivantara\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hitachivantara\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"holo-industrie40softwaregmbh1600957636008\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/holo-industrie40softwaregmbh1600957636008\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hortonworks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hortonworks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hpe\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hpe\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"HPE.Security.ApplicationDefender\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/HPE.Security.ApplicationDefender\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"huawei\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/huawei\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hubstor-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hubstor-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hush-hush\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hush-hush\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hvr\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hvr\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hyperglance\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hyperglance\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hypergrid\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hypergrid\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hystaxinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hystaxinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hytrust\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hytrust\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"i-exceed-technology\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/i-exceed-technology\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iaansys\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iaansys\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ibm\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ibm\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ibm-alliance-global-1560886\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ibm-alliance-global-1560886\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ibm-alliance-usa-ny-armonk-hq-ibmstorage-6201192\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ibm-alliance-usa-ny-armonk-hq-ibmstorage-6201192\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ibm-usa-ny-armonk-hq-6275750-ibmcloud-aiops\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ibm-usa-ny-armonk-hq-6275750-ibmcloud-aiops\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iboss\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iboss\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iconics\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iconics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iconsulting-spa\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iconsulting-spa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"icubeconsultancyservicesinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/icubeconsultancyservicesinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iguazio-5069960\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iguazio-5069960\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ikan\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ikan\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iliimbiliimveyazlmsistemlerisanvetica1617000555584\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iliimbiliimveyazlmsistemlerisanvetica1617000555584\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"illuminainc1586452220102\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/illuminainc1586452220102\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"image-technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/image-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"imaginecommunications\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/imaginecommunications\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"imperva\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/imperva\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"impetustechnologiesinc1591959591877\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/impetustechnologiesinc1591959591877\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"imprivatainc1580479939967\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/imprivatainc1580479939967\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"incorta\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/incorta\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"incredibuild\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/incredibuild\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"indexima1594300233028\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/indexima1594300233028\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"industry-weapon\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/industry-weapon\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"industryweapon1587162781833\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/industryweapon1587162781833\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"inenprocesosyplataformasdetisderldecv1615482385424\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/inenprocesosyplataformasdetisderldecv1615482385424\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"inergybv1637141413454\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/inergybv1637141413454\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"infinitesoftwarecorporation1579223971125\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/infinitesoftwarecorporation1579223971125\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"infiotinc1614034091460\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/infiotinc1614034091460\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"influxdata\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/influxdata\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"infoblox\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/infoblox\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"infogix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/infogix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"infolibrarian\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/infolibrarian\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"informatica\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/informatica\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"informationbuilders\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/informationbuilders\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"informationtechnologies_ltd_1179601\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/informationtechnologies_ltd_1179601\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"infotecsinternetsecuritysoftwaregmbh1636129257584\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/infotecsinternetsecuritysoftwaregmbh1636129257584\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"infront-consulting-group-ltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/infront-consulting-group-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"infscapeughaftungsbeschrnkt\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/infscapeughaftungsbeschrnkt\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ingenieurstudiohollaus1579587745438\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ingenieurstudiohollaus1579587745438\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ingrammicro\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ingrammicro\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"innomindssoftware\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/innomindssoftware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"innosepgmbh1618331344164\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/innosepgmbh1618331344164\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"innovatorartificialtechsrl1619180685551\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/innovatorartificialtechsrl1619180685551\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"innovtech\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/innovtech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"instight-technology\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/instight-technology\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"integration-objects\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/integration-objects\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"intel-bigdl\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/intel-bigdl\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"intel-fpga\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/intel-fpga\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"intellicus-technologies-pvt-ltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/intellicus-technologies-pvt-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"intelligent-plant-ltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/intelligent-plant-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"internationaltrustmachinescorporation1582190033865\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/internationaltrustmachinescorporation1582190033865\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"internet20inc1635882446190\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/internet20inc1635882446190\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"intersystems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/intersystems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"intigua\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/intigua\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"intigua1638692632641\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/intigua1638692632641\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"introspecioltd1629872641188\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/introspecioltd1629872641188\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iofabric\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iofabric\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ipinfusion1590066770520\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ipinfusion1590066770520\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ipswitch\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ipswitch\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iqsol\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iqsol\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iquate\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iquate\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iquest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iquest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"irion\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/irion\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ishlangu-load-balancer-adc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ishlangu-load-balancer-adc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"issp-corporation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/issp-corporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"isvtestukbigcat\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/isvtestukbigcat\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"isvtestuklegacy\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/isvtestuklegacy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"it4bizdoo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/it4bizdoo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"itelios\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/itelios\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"itrsgroupltd1620310702149\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/itrsgroupltd1620310702149\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ivanti-inc-pcs\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ivanti-inc-pcs\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ivix1595238749040\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ivix1595238749040\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iwnamespace\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iwnamespace\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"izenda\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/izenda\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"jamcracker\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/jamcracker\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"javlinltd1579185328273\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/javlinltd1579185328273\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"jedox\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/jedox\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"jelastic\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/jelastic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"jetnexus\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/jetnexus\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"jetware-srl\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/jetware-srl\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"jfrog\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/jfrog\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"jm-technology-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/jm-technology-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"jogetinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/jogetinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"juniper-networks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/juniper-networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"justanalytics\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/justanalytics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kaazing\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kaazing\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kadenallc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kadenallc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kali-linux\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kali-linux\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kalkitech\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kalkitech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kaminarioinc1588672951794\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kaminarioinc1588672951794\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Kaspersky.Lab\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Kaspersky.Lab\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"KasperskyLab.SecurityAgent\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/KasperskyLab.SecurityAgent\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kaspersky_lab\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kaspersky_lab\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kazendi\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kazendi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kelverion\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kelverion\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kemptech\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kemptech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kepion\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kepion\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"KevlarExtensions.M365Security.SecureOS\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/KevlarExtensions.M365Security.SecureOS\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"KevlarExtensions.M365SecurityHostIDS\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/KevlarExtensions.M365SecurityHostIDS\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"KevlarExtensions.M365SecurityInventory\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/KevlarExtensions.M365SecurityInventory\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"KevlarExtensions.M365SecurityInventory.NameChangeTest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/KevlarExtensions.M365SecurityInventory.NameChangeTest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"KevlarExtensions.M365SecurityODL\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/KevlarExtensions.M365SecurityODL\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"KevlarExtensions.M365SecurityTLSExtension\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/KevlarExtensions.M365SecurityTLSExtension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kinetica\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kinetica\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kinvolk\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kinvolk\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"knime\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/knime\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kobalt\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kobalt\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kognillc1600118221163\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kognillc1600118221163\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kognitivsparkinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kognitivsparkinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"konginc1581527938760\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/konginc1581527938760\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"konsys-ltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/konsys-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"koverseinc1588716263110\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/koverseinc1588716263110\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kryonsystems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kryonsystems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"krypc-technologies-pvt-ltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/krypc-technologies-pvt-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kyligence\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kyligence\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kyvos-insights-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kyvos-insights-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lab3solutions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lab3solutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lancom-systems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lancom-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lansa\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lansa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lastline\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lastline\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"leap-orbit\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/leap-orbit\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lenovosoftware1604394104439\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lenovosoftware1604394104439\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"leostream-corporation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/leostream-corporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lepide-software\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lepide-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"levacloudllc1602151818089\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/levacloudllc1602151818089\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"libelleag\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/libelleag\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"liberatii\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/liberatii\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"libraesva\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/libraesva\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"liebsoft\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/liebsoft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lightning-analyticsinc1582000647396\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lightning-analyticsinc1582000647396\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"linuxbasedsystemsdesignltd1580878904727\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/linuxbasedsystemsdesignltd1580878904727\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"liquid-files\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/liquid-files\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"liquidware\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/liquidware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"literatu\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/literatu\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"litespeedtechnologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/litespeedtechnologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"litespeed_technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/litespeed_technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"litionenergiegmbh1580128829115\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/litionenergiegmbh1580128829115\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"litmusautomation1582760223280\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/litmusautomation1582760223280\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"llcitpro\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/llcitpro\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lnw-softgmbh\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lnw-softgmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"loadbalancer\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/loadbalancer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"logicflowag1638535407949\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/logicflowag1638535407949\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"logsign\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/logsign\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"logstarecorp1635838645101\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/logstarecorp1635838645101\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"logtrust\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/logtrust\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"logzio\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/logzio\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"looker\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/looker\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lotus_beta_analytics\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lotus_beta_analytics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lti-lt-infotech\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lti-lt-infotech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"luminate-security\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/luminate-security\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"M365Security.KevlarExtensions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/M365Security.KevlarExtensions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"M365SecurityInventory\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/M365SecurityInventory\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"machinesense\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/machinesense\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"madhavajay1632269232059\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/madhavajay1632269232059\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"maidenhead-bridge\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/maidenhead-bridge\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"manageengine\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/manageengine\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mapd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mapd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mapr-technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mapr-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"marand\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/marand\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"marketplace-rdfe-caps\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/marketplace-rdfe-caps\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"marklogic\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/marklogic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"massiveanalytic-\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/massiveanalytic-\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mathworks-deployment\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mathworks-deployment\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mathworks-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mathworks-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"matillion\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/matillion\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mavinglobal\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mavinglobal\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"McAfee.EndpointSecurity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/McAfee.EndpointSecurity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"McAfee.EndpointSecurity.test3\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/McAfee.EndpointSecurity.test3\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"meanio\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/meanio\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"media3-adobe\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/media3-adobe\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"media3-technologies-llc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/media3-technologies-llc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mediatekinc1586141563888\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mediatekinc1586141563888\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mendix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mendix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"merlynnintelligencetechnologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/merlynnintelligencetechnologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"meshifyappinc1622759451429\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/meshifyappinc1622759451429\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"messagesolution\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/messagesolution\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"metaswitch\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/metaswitch\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mettainnovations-4900054\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mettainnovations-4900054\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mfe_azure\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mfe_azure\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mfiles\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mfiles\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mico\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mico\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"micro-focus\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/micro-focus\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microlinkpcukltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microlinkpcukltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microolap\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microolap\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-ads\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-ads\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-agci-gaming\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-agci-gaming\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-aks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-aks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-avere\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-avere\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-azure-batch\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-azure-batch\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-azure-compute\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-azure-compute\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-azure-hdinsight\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-azure-hdinsight\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-crypto\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-crypto\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-dsvm\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-dsvm\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-hyperv\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-hyperv\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-minecraft\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-minecraft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AdminCenter\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AdminCenter\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AKS\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AKS\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.ActiveDirectory\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.ActiveDirectory\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.ActiveDirectory.LinuxSSH\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.ActiveDirectory.LinuxSSH\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Applications\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Applications\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Automation.HybridWorker\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Automation.HybridWorker\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Automation.HybridWorker.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Automation.HybridWorker.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.AzureDefenderForServers\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.AzureDefenderForServers\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.AzureDefenderForSQL\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.AzureDefenderForSQL\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Backup.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Backup.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Backup.Test.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Backup.Test.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.ChangeTracking\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.ChangeTracking\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.ChangeTracking.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.ChangeTracking.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.ChangeTrackingAndInventory\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.ChangeTrackingAndInventory\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Chaos\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Chaos\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Compute.Security\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Compute.Security\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.ContainerUpstream\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.ContainerUpstream\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.DefenderForServers.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.DefenderForServers.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.DefenderForServers.Test2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.DefenderForServers.Test2\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Diagnostics\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Diagnostics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Diagnostics.Build.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Diagnostics.Build.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Diagnostics.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Diagnostics.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test012be407-61ea-4e45-a2c3-71a45999ca21-20191228083800\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test012be407-61ea-4e45-a2c3-71a45999ca21-20191228083800\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test01971384-3044-413b-8b1c-33b5d461bf23-20200107051823\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test01971384-3044-413b-8b1c-33b5d461bf23-20200107051823\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test0225ec7d-b36c-4ac8-82f0-aa4fafaf10a9-20200111051346\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test0225ec7d-b36c-4ac8-82f0-aa4fafaf10a9-20200111051346\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test025e16a1-328d-45a2-b7e3-71f7e4cde046-20191229064028\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test025e16a1-328d-45a2-b7e3-71f7e4cde046-20191229064028\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test02d1f941-5607-4757-8df7-fd8c5631ab45-20200103083810\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test02d1f941-5607-4757-8df7-fd8c5631ab45-20200103083810\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test039abd7f-360c-42a1-ad5d-77527c519286-20191002233412\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test039abd7f-360c-42a1-ad5d-77527c519286-20191002233412\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test04a0f157-c6fb-4595-b6ca-6c82a2338063-20200108101451\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test04a0f157-c6fb-4595-b6ca-6c82a2338063-20200108101451\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test0737f33e-63e0-4ba9-b04b-b93a1de4e997-20200106083639\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test0737f33e-63e0-4ba9-b04b-b93a1de4e997-20200106083639\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test0a44d7be-63fa-418d-a7b6-89a44dd21894-20200107052935\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test0a44d7be-63fa-418d-a7b6-89a44dd21894-20200107052935\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test0d01b487-7f79-4d87-b330-5c025068db45-20191004190331\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test0d01b487-7f79-4d87-b330-5c025068db45-20191004190331\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test0d643748-e6fe-41ad-b4d3-89a289a0cee0-20191003055620\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test0d643748-e6fe-41ad-b4d3-89a289a0cee0-20191003055620\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test0df83c51-5bb9-43f8-8ae9-bc896ea64f78-20200110220221\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test0df83c51-5bb9-43f8-8ae9-bc896ea64f78-20200110220221\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test0f02c246-7e65-4010-9367-ca4530c3897e-20191004190223\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test0f02c246-7e65-4010-9367-ca4530c3897e-20191004190223\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test157494ec-e788-43b0-8d26-a17e39ee07cc-20191002011945\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test157494ec-e788-43b0-8d26-a17e39ee07cc-20191002011945\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test1661d154-b623-4507-8a56-3a89812c456c-20200111083940\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test1661d154-b623-4507-8a56-3a89812c456c-20200111083940\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test17bbd860-f21d-40ab-9026-16e05f2907f0-20200106083451\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test17bbd860-f21d-40ab-9026-16e05f2907f0-20200106083451\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test194e2333-13cd-43e3-b0a4-c8cdcf1a3600-20200110211106\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test194e2333-13cd-43e3-b0a4-c8cdcf1a3600-20200110211106\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test1bc26b19-b8d8-41f9-a26d-818f277bdf93-20200101113139\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test1bc26b19-b8d8-41f9-a26d-818f277bdf93-20200101113139\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test1c840053-9213-4f2a-8f2e-9bf2297908bd-20200108101424\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test1c840053-9213-4f2a-8f2e-9bf2297908bd-20200108101424\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test1d7bba72-69f1-43cd-a38c-41ce0b5f4bae-20200109050041\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test1d7bba72-69f1-43cd-a38c-41ce0b5f4bae-20200109050041\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test1f7a8078-50e7-4a3a-91eb-d178fd4c403b-20191002233353\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test1f7a8078-50e7-4a3a-91eb-d178fd4c403b-20191002233353\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test1fef1fdc-57ba-46a8-a879-475ba7d45a7a-20200106083509\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test1fef1fdc-57ba-46a8-a879-475ba7d45a7a-20200106083509\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test21332f15-f78d-4d31-afac-79b9dc989432-20191231175840\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test21332f15-f78d-4d31-afac-79b9dc989432-20191231175840\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test22f10717-6939-4003-a9ce-38effd8b77d6-20191007191355\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test22f10717-6939-4003-a9ce-38effd8b77d6-20191007191355\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test2334e6e3-bb72-4241-a36f-c2429d69bc0b-20200106050834\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test2334e6e3-bb72-4241-a36f-c2429d69bc0b-20200106050834\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test24fa9eb5-1c59-4425-b61c-30fd638c2a45-20191003203802\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test24fa9eb5-1c59-4425-b61c-30fd638c2a45-20191003203802\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test2521a545-ed61-4a15-bed1-aba7ce1d81ee-20200106050804\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test2521a545-ed61-4a15-bed1-aba7ce1d81ee-20200106050804\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test25c6fe61-1282-43c2-867b-b5039219989c-20200105081851\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test25c6fe61-1282-43c2-867b-b5039219989c-20200105081851\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test27515c8c-6773-4f92-afb0-35691cc6e3b6-20200103083821\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test27515c8c-6773-4f92-afb0-35691cc6e3b6-20200103083821\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test28012680-48e7-4903-877f-2f29464e63d5-20191229033424\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test28012680-48e7-4903-877f-2f29464e63d5-20191229033424\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test29a7a529-d293-4728-9d7f-257ed996e64f-20200108081759\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test29a7a529-d293-4728-9d7f-257ed996e64f-20200108081759\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test2a5f2d2c-b8e3-46c2-850d-a1641c024fe7-20200107084228\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test2a5f2d2c-b8e3-46c2-850d-a1641c024fe7-20200107084228\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test2ce856af-ab17-48f2-ba3e-bcd9af091061-20200110013246\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test2ce856af-ab17-48f2-ba3e-bcd9af091061-20200110013246\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test2e012e83-6361-4365-963f-6ced8a08e91c-20200110211254\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test2e012e83-6361-4365-963f-6ced8a08e91c-20200110211254\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test2ecf67b2-fb63-4461-b6a6-7026c4fb1168-20191002214026\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test2ecf67b2-fb63-4461-b6a6-7026c4fb1168-20191002214026\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test2ede6564-c7cc-44cb-a1a8-902505c9829d-20191003020742\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test2ede6564-c7cc-44cb-a1a8-902505c9829d-20191003020742\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test2f4ebc17-e27e-48d9-9cc3-ff933c21884e-20200106092410\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test2f4ebc17-e27e-48d9-9cc3-ff933c21884e-20200106092410\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test349ee02c-af9b-4663-a963-823b40eefed8-20200108083612\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test349ee02c-af9b-4663-a963-823b40eefed8-20200108083612\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test34cf6b13-b78e-478b-b596-8b661629371d-20191007195455\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test34cf6b13-b78e-478b-b596-8b661629371d-20191007195455\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test36cc5b60-2b23-4a04-bf95-f7865e1141cf-20200110085718\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test36cc5b60-2b23-4a04-bf95-f7865e1141cf-20200110085718\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3712fca9-5cdd-4609-be69-b02aedc5c55c-20200107084115\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3712fca9-5cdd-4609-be69-b02aedc5c55c-20200107084115\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3772d042-92e2-4bcb-99b7-8a6a119cc088-20191231182808\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3772d042-92e2-4bcb-99b7-8a6a119cc088-20191231182808\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test37a6dd64-d44d-465e-85bc-3bc38be90350-20200104083535\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test37a6dd64-d44d-465e-85bc-3bc38be90350-20200104083535\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test381074d5-7156-472b-801a-b35f8fef4cc6-20200105050612\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test381074d5-7156-472b-801a-b35f8fef4cc6-20200105050612\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3877a44d-4c48-40db-80eb-227272d5acd6-20200110103540\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3877a44d-4c48-40db-80eb-227272d5acd6-20200110103540\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test38ecd28e-7018-4672-840c-3044a5e7a6b5-20200111084208\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test38ecd28e-7018-4672-840c-3044a5e7a6b5-20200111084208\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test395a0b49-442a-450c-8a1f-65b0aa3bcf47-20200105083839\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test395a0b49-442a-450c-8a1f-65b0aa3bcf47-20200105083839\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3971b300-edff-44a8-b61b-7f9b7460a8d6-20191003002234\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3971b300-edff-44a8-b61b-7f9b7460a8d6-20191003002234\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3adeec20-7458-4b3d-af26-0b6bc2aae3eb-20200103083751\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3adeec20-7458-4b3d-af26-0b6bc2aae3eb-20200103083751\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3b20dd96-f3e4-4798-998d-8c433c2449a7-20200108083635\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3b20dd96-f3e4-4798-998d-8c433c2449a7-20200108083635\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3ce2fd4a-8b5a-4c7e-b08d-3e48fc0f45e7-20200104083825\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3ce2fd4a-8b5a-4c7e-b08d-3e48fc0f45e7-20200104083825\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3d499ca7-cc8d-41cc-a6dc-ffb1a4ac4942-20200107053004\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3d499ca7-cc8d-41cc-a6dc-ffb1a4ac4942-20200107053004\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3db7240e-5e42-4d6d-b024-cc9fce3c828b-20200105083520\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3db7240e-5e42-4d6d-b024-cc9fce3c828b-20200105083520\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3f6b7341-635f-48d5-a36d-be5dfe3002c4-20200105050937\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3f6b7341-635f-48d5-a36d-be5dfe3002c4-20200105050937\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3fc26934-ede2-4482-ad5e-f66f6135d4a6-20191228055558\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3fc26934-ede2-4482-ad5e-f66f6135d4a6-20191228055558\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test406d077c-6017-4062-bc96-f809147a2331-20200106050748\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test406d077c-6017-4062-bc96-f809147a2331-20200106050748\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test4302336c-e039-4e70-bcb6-9275f6089e4a-20200108144821\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test4302336c-e039-4e70-bcb6-9275f6089e4a-20200108144821\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test453a087e-8435-46db-970a-4ee633cc4c4a-20200102083458\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test453a087e-8435-46db-970a-4ee633cc4c4a-20200102083458\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test46b73afa-2259-4aff-81e1-a58bf24b59aa-20191229033459\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test46b73afa-2259-4aff-81e1-a58bf24b59aa-20191229033459\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test4a3399ee-82ea-46aa-9e3a-5434b588e3b6-20191228013518\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test4a3399ee-82ea-46aa-9e3a-5434b588e3b6-20191228013518\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test4eb7a185-527b-4b9f-93a8-7f1cec9d062e-20191231151207\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test4eb7a185-527b-4b9f-93a8-7f1cec9d062e-20191231151207\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test520a0915-f9f0-4da4-9fa1-1b74fc1470aa-20200102083505\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test520a0915-f9f0-4da4-9fa1-1b74fc1470aa-20200102083505\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test5397960f-023b-4979-9a8b-800d049045a4-20191007195417\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test5397960f-023b-4979-9a8b-800d049045a4-20191007195417\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test55a36387-8a3f-4159-9884-29b97539a253-20200109080443\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test55a36387-8a3f-4159-9884-29b97539a253-20200109080443\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test5645f186-4ee5-4209-af37-423660e3318c-20191231175947\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test5645f186-4ee5-4209-af37-423660e3318c-20191231175947\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test58b4461d-4d2d-4395-b6d2-ab83d4d8c62f-20200111001002\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test58b4461d-4d2d-4395-b6d2-ab83d4d8c62f-20200111001002\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test5b0bf447-d98d-429d-8334-c032d197c743-20191003203846\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test5b0bf447-d98d-429d-8334-c032d197c743-20191003203846\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test5bc90367-1ea2-400b-a40c-321081bae3f3-20200108145035\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test5bc90367-1ea2-400b-a40c-321081bae3f3-20200108145035\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test5bd0562f-e939-456f-a6ee-c848d1aba616-20200101151641\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test5bd0562f-e939-456f-a6ee-c848d1aba616-20200101151641\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test5e4efe90-916c-4c96-802c-1508a5b6da78-20191231151150\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test5e4efe90-916c-4c96-802c-1508a5b6da78-20191231151150\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test5f8f0c10-cc3c-45ec-a068-fb1c7edfa0d9-20200101145958\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test5f8f0c10-cc3c-45ec-a068-fb1c7edfa0d9-20200101145958\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test60a000b7-286c-4b2b-9137-bbc088736419-20200108144920\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test60a000b7-286c-4b2b-9137-bbc088736419-20200108144920\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test6192a01b-ba47-4d08-904a-71647a49a112-20191008041625\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test6192a01b-ba47-4d08-904a-71647a49a112-20191008041625\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test62835538-89c6-4f66-9034-f7a4b176c615-20191007234245\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test62835538-89c6-4f66-9034-f7a4b176c615-20191007234245\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test651e4ad2-ee4a-462e-a506-b56b1969f5d0-20200110230749\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test651e4ad2-ee4a-462e-a506-b56b1969f5d0-20200110230749\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test691d94e5-c40c-4568-94b0-09b08aea42b1-20200106050808\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test691d94e5-c40c-4568-94b0-09b08aea42b1-20200106050808\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test6aa3643c-011a-4180-877f-cad955a8e664-20191007234642\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test6aa3643c-011a-4180-877f-cad955a8e664-20191007234642\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test6cfb469b-8478-468f-9bb5-691affd32abb-20200107083803\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test6cfb469b-8478-468f-9bb5-691affd32abb-20200107083803\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test6d36b6b2-7956-4e62-91c1-c33792fd4bb1-20200110123203\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test6d36b6b2-7956-4e62-91c1-c33792fd4bb1-20200110123203\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test6e28168e-a9c8-4c0a-8b40-60c2a1502d43-20200108052802\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test6e28168e-a9c8-4c0a-8b40-60c2a1502d43-20200108052802\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test6eb763ac-7fbe-4e44-bee7-aad035ee2a7d-20200110084429\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test6eb763ac-7fbe-4e44-bee7-aad035ee2a7d-20200110084429\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test6efec253-f625-46f0-9d74-324f69e963d8-20200107070514\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test6efec253-f625-46f0-9d74-324f69e963d8-20200107070514\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test70fa7e4c-3122-4ff7-aec6-fe75ab660a01-20200108105900\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test70fa7e4c-3122-4ff7-aec6-fe75ab660a01-20200108105900\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test710a5fbf-06c7-46ac-b96d-a29d2586422f-20200108083639\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test710a5fbf-06c7-46ac-b96d-a29d2586422f-20200108083639\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test71d72489-67c6-45e2-b1e6-a19546efc823-20200105112903\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test71d72489-67c6-45e2-b1e6-a19546efc823-20200105112903\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test721fccf1-2b3e-44b6-908f-51b910e88b09-20200111104931\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test721fccf1-2b3e-44b6-908f-51b910e88b09-20200111104931\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test742d0189-9e41-4f1b-8ad3-31c05d34903b-20200111103247\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test742d0189-9e41-4f1b-8ad3-31c05d34903b-20200111103247\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test7836a97c-f56e-48d0-8b5d-61e79aeb3226-20200111071656\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7836a97c-f56e-48d0-8b5d-61e79aeb3226-20200111071656\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test78666b2e-25c8-4a48-931a-3131a0317d73-20191002194352\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test78666b2e-25c8-4a48-931a-3131a0317d73-20191002194352\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test79f13508-fcbd-47b9-988f-1c21ef5e7f2e-20191002015429\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test79f13508-fcbd-47b9-988f-1c21ef5e7f2e-20191002015429\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test79fb90ce-4691-4212-99a7-6e4069bd5984-20191007234256\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test79fb90ce-4691-4212-99a7-6e4069bd5984-20191007234256\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test7a8cf687-6a21-4181-ba98-902fee717bd3-20200104103216\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7a8cf687-6a21-4181-ba98-902fee717bd3-20200104103216\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test7aabf813-6644-483a-b9e0-ba6f8973ba1f-20191002232822\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7aabf813-6644-483a-b9e0-ba6f8973ba1f-20191002232822\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test7c96c10a-0c8f-4ab0-83fd-1ad66a362e33-20191229033458\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7c96c10a-0c8f-4ab0-83fd-1ad66a362e33-20191229033458\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test7e79b6ff-2559-44fe-b3ba-afaa68d63636-20200108112116\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7e79b6ff-2559-44fe-b3ba-afaa68d63636-20200108112116\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test7ea372f7-ea7e-4b9e-bbad-4f35c1567aa2-20200108052736\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7ea372f7-ea7e-4b9e-bbad-4f35c1567aa2-20200108052736\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test7fac3d04-98a5-4fc4-904e-9ea3b86eadc2-20200106050751\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7fac3d04-98a5-4fc4-904e-9ea3b86eadc2-20200106050751\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test7fe20dd6-9ed9-4126-bb1d-031c01ac4550-20200101114504\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7fe20dd6-9ed9-4126-bb1d-031c01ac4550-20200101114504\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test7ff974d9-c841-4249-b05b-bbf663cb4605-20200106084104\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7ff974d9-c841-4249-b05b-bbf663cb4605-20200106084104\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test815bd4d5-fc24-4a47-be20-063c4809902c-20200109050508\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test815bd4d5-fc24-4a47-be20-063c4809902c-20200109050508\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test817654d0-2109-4d95-9284-8c8a9d960d08-20200108053758\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test817654d0-2109-4d95-9284-8c8a9d960d08-20200108053758\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test821ca3b6-dd05-4e80-b3d8-74ba03b2609b-20191231151151\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test821ca3b6-dd05-4e80-b3d8-74ba03b2609b-20191231151151\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test8285dc3e-637d-4d46-9695-adc39cbe7d2f-20200108144457\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test8285dc3e-637d-4d46-9695-adc39cbe7d2f-20200108144457\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test828aae03-9239-4938-a303-c23c42311878-20200102083419\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test828aae03-9239-4938-a303-c23c42311878-20200102083419\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test84afd814-5098-49ab-af99-e50350b5898b-20200110211134\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test84afd814-5098-49ab-af99-e50350b5898b-20200110211134\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test85b08563-b15f-4202-a0bc-f2bc2df2c71a-20200107053335\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test85b08563-b15f-4202-a0bc-f2bc2df2c71a-20200107053335\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test88aac268-c087-4481-b78e-99b920784a33-20200101084853\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test88aac268-c087-4481-b78e-99b920784a33-20200101084853\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test88dbd442-a8cc-4874-81a0-d3192c61df62-20191001224544\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test88dbd442-a8cc-4874-81a0-d3192c61df62-20191001224544\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test894dfb75-a00f-4f0c-894c-cae1c9846ad3-20200105051803\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test894dfb75-a00f-4f0c-894c-cae1c9846ad3-20200105051803\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test8d09bf4d-ee63-4ab1-a986-a4b802418403-20200111051447\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test8d09bf4d-ee63-4ab1-a986-a4b802418403-20200111051447\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test8d4d652b-4f05-4e99-93dd-78b9a36b5c78-20191003203755\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test8d4d652b-4f05-4e99-93dd-78b9a36b5c78-20191003203755\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test8de64739-43d8-4f84-af65-fdb3d0885288-20200108053543\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test8de64739-43d8-4f84-af65-fdb3d0885288-20200108053543\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test8e324c65-a51d-4eeb-9ec8-d5f8662dc041-20191228165107\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test8e324c65-a51d-4eeb-9ec8-d5f8662dc041-20191228165107\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test8e564580-8e53-4300-85f1-bf7f31dd37ff-20200107013348\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test8e564580-8e53-4300-85f1-bf7f31dd37ff-20200107013348\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test8f458ca7-8898-4d58-b93d-bfb0c3da028c-20200109050310\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test8f458ca7-8898-4d58-b93d-bfb0c3da028c-20200109050310\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test901cd6ca-5565-4552-a3de-d204d01935c0-20200108083706\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test901cd6ca-5565-4552-a3de-d204d01935c0-20200108083706\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test907b39e5-4008-4b55-93a0-18e9697b9cf3-20200108053817\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test907b39e5-4008-4b55-93a0-18e9697b9cf3-20200108053817\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test90c2be7c-d7ec-4abf-9fad-fef90fc3ef4d-20191004022234\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test90c2be7c-d7ec-4abf-9fad-fef90fc3ef4d-20191004022234\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test922db678-6ee8-43d5-86ff-6a86e132d332-20200107085231\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test922db678-6ee8-43d5-86ff-6a86e132d332-20200107085231\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test93b88aec-5277-4b1b-910c-7008e972ce91-20200107013304\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test93b88aec-5277-4b1b-910c-7008e972ce91-20200107013304\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test95a9104b-6cba-42d8-82ff-cc37e5ac44db-20200108081723\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test95a9104b-6cba-42d8-82ff-cc37e5ac44db-20200108081723\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test96da1605-19e0-46eb-9ce0-53e840f5e2cb-20200101111729\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test96da1605-19e0-46eb-9ce0-53e840f5e2cb-20200101111729\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test996066b2-7d29-400f-929b-e343a21046f7-20191231151212\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test996066b2-7d29-400f-929b-e343a21046f7-20191231151212\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test99663fff-ed21-4a91-9687-1a6da2abb033-20200106084508\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test99663fff-ed21-4a91-9687-1a6da2abb033-20200106084508\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test9eb5efa5-c3c1-4c13-80a6-11f5eba67372-20200108144852\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test9eb5efa5-c3c1-4c13-80a6-11f5eba67372-20200108144852\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testa3791896-b1fc-491e-ba0d-aefcd8d9e52a-20200105083503\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testa3791896-b1fc-491e-ba0d-aefcd8d9e52a-20200105083503\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testa37ff709-a078-45a0-8187-41733df8e101-20200109050003\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testa37ff709-a078-45a0-8187-41733df8e101-20200109050003\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testa4c5fe4e-936e-4be1-a612-a331aff54a8c-20200111105055\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testa4c5fe4e-936e-4be1-a612-a331aff54a8c-20200111105055\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testa59bce1d-e32c-423d-a86e-945d4aeb98b4-20200107051821\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testa59bce1d-e32c-423d-a86e-945d4aeb98b4-20200107051821\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testa604c059-8279-4f4d-a354-eec27222a06c-20200111051514\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testa604c059-8279-4f4d-a354-eec27222a06c-20200111051514\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testa71fefb1-0d9c-4fb3-8d3d-5dcd12d72b77-20200103103221\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testa71fefb1-0d9c-4fb3-8d3d-5dcd12d72b77-20200103103221\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testa748013d-c5a6-44f9-88eb-43167207c742-20200111051402\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testa748013d-c5a6-44f9-88eb-43167207c742-20200111051402\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testaab67022-4f2b-420d-a06a-2c4045110cdf-20191229033144\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testaab67022-4f2b-420d-a06a-2c4045110cdf-20191229033144\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testacab9541-280f-4491-9f49-ac57653f0a07-20200105083839\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testacab9541-280f-4491-9f49-ac57653f0a07-20200105083839\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testad298437-0349-4cc7-88a9-d8aabcba9df1-20191002233431\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testad298437-0349-4cc7-88a9-d8aabcba9df1-20191002233431\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testadd68286-f9e0-4ab1-a526-d8f3cf0f054e-20200105084128\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testadd68286-f9e0-4ab1-a526-d8f3cf0f054e-20200105084128\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testade4c52b-18f5-4b67-8e93-945358ce4f7d-20191007234259\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testade4c52b-18f5-4b67-8e93-945358ce4f7d-20191007234259\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testae421c1d-0211-4ef2-b372-564ce8ad484a-20200110104035\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testae421c1d-0211-4ef2-b372-564ce8ad484a-20200110104035\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testafbbd8bf-aec5-48bf-8fea-73fa15ccc315-20191001224727\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testafbbd8bf-aec5-48bf-8fea-73fa15ccc315-20191001224727\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testb15148bf-78d2-42d4-ad08-b3ad8fb4b122-20200101084759\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testb15148bf-78d2-42d4-ad08-b3ad8fb4b122-20200101084759\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testb4237708-3688-40ea-85a2-275c05f4d100-20191228083519\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testb4237708-3688-40ea-85a2-275c05f4d100-20191228083519\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testb799a18f-be45-4c5c-8438-163ac2e1f1e7-20191004190529\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testb799a18f-be45-4c5c-8438-163ac2e1f1e7-20191004190529\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testb7cee88a-e5ac-4af4-99c8-7247020b00c3-20200105051201\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testb7cee88a-e5ac-4af4-99c8-7247020b00c3-20200105051201\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testb7df0d9a-27c0-4ca5-b692-08dd90387b98-20200111083443\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testb7df0d9a-27c0-4ca5-b692-08dd90387b98-20200111083443\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testbbf6bf32-4bd0-4381-b8f7-2658f585df4d-20191003203846\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testbbf6bf32-4bd0-4381-b8f7-2658f585df4d-20191003203846\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testbeea1376-166a-4b1a-8923-c907cc9737d9-20200107013336\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testbeea1376-166a-4b1a-8923-c907cc9737d9-20200107013336\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testbf9154e9-6166-48c2-86fe-1f331be606d7-20200107051823\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testbf9154e9-6166-48c2-86fe-1f331be606d7-20200107051823\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc0d7c3c5-23b8-489c-a5e0-ae87c681b696-20200101083539\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc0d7c3c5-23b8-489c-a5e0-ae87c681b696-20200101083539\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc193f31a-5186-4e93-84f6-0e4ab87b73c1-20200107052937\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc193f31a-5186-4e93-84f6-0e4ab87b73c1-20200107052937\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc1c7e8dc-fa8c-47d9-8305-de6d1451b939-20200101085248\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc1c7e8dc-fa8c-47d9-8305-de6d1451b939-20200101085248\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc1d0c917-e2ae-430c-a2ca-383fb0fda046-20191007235839\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc1d0c917-e2ae-430c-a2ca-383fb0fda046-20191007235839\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc23a3fbb-6e95-4c0d-94fc-c8ab14dddf1c-20191231151117\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc23a3fbb-6e95-4c0d-94fc-c8ab14dddf1c-20191231151117\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc2697630-6247-411a-94b3-c2974ad8cbee-20191007195417\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc2697630-6247-411a-94b3-c2974ad8cbee-20191007195417\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc466b80f-670f-4383-89b8-44e0d509fa20-20191002000516\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc466b80f-670f-4383-89b8-44e0d509fa20-20191002000516\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc5c8d9bd-75fa-4db3-9f34-5d7b7098584c-20191003203851\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc5c8d9bd-75fa-4db3-9f34-5d7b7098584c-20191003203851\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc8b6d14b-a5db-48e0-bfad-a2818d432bea-20200104083443\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc8b6d14b-a5db-48e0-bfad-a2818d432bea-20200104083443\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc933efa8-c553-4b93-884f-b7221d9ca789-20191228083750\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc933efa8-c553-4b93-884f-b7221d9ca789-20191228083750\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testcbe8ab80-46ef-49b1-a7bb-4e3d6e50e49f-20200104050811\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testcbe8ab80-46ef-49b1-a7bb-4e3d6e50e49f-20200104050811\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testccc0b5e6-9b0d-451a-8ac4-6f4af293b913-20200106092645\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testccc0b5e6-9b0d-451a-8ac4-6f4af293b913-20200106092645\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testcec64786-04b1-487c-80ec-050da646fb1c-20191005123412\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testcec64786-04b1-487c-80ec-050da646fb1c-20191005123412\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testd104a52f-eba2-401d-8e7f-a841c90f7712-20191228083553\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testd104a52f-eba2-401d-8e7f-a841c90f7712-20191228083553\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testd724cea4-0d3c-4539-b2ff-be08fb23a67e-20200107083714\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testd724cea4-0d3c-4539-b2ff-be08fb23a67e-20200107083714\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testd8e60bac-27ff-4fba-90b8-732c9c5ff91c-20191228083751\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testd8e60bac-27ff-4fba-90b8-732c9c5ff91c-20191228083751\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testd99db4a5-7683-4584-89ad-fefd711de284-20191004190210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testd99db4a5-7683-4584-89ad-fefd711de284-20191004190210\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testd9b4309a-67bc-4cd8-ac47-094cb20ca6aa-20200101090202\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testd9b4309a-67bc-4cd8-ac47-094cb20ca6aa-20200101090202\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testda3320e0-28f2-4146-a002-e06296362711-20191004190115\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testda3320e0-28f2-4146-a002-e06296362711-20191004190115\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testda714121-3240-4253-90c3-48c43f115c90-20200102083419\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testda714121-3240-4253-90c3-48c43f115c90-20200102083419\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testdb357558-60b4-4ee3-9ec3-ba22c5d827fb-20191004020617\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testdb357558-60b4-4ee3-9ec3-ba22c5d827fb-20191004020617\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testdc7230e9-df6d-4edd-a57c-ef7e0432c463-20191002011345\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testdc7230e9-df6d-4edd-a57c-ef7e0432c463-20191002011345\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testdccb59de-436f-4935-bed6-2e677dcaf36a-20200109111802\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testdccb59de-436f-4935-bed6-2e677dcaf36a-20200109111802\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testde985b23-9333-4f6e-a5e8-82025a38b2af-20200102083510\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testde985b23-9333-4f6e-a5e8-82025a38b2af-20200102083510\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Teste271da3e-cbcb-4ee7-8770-f297f414451f-20191003015540\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Teste271da3e-cbcb-4ee7-8770-f297f414451f-20191003015540\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Teste4070edd-aec0-455d-8a79-aecdb7170b6d-20191007234642\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Teste4070edd-aec0-455d-8a79-aecdb7170b6d-20191007234642\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Teste42f351a-4da0-4f0d-93e9-ef1d98e06659-20200108083633\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Teste42f351a-4da0-4f0d-93e9-ef1d98e06659-20200108083633\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Teste66ca23c-f4bf-4eb3-8418-139364d19e7d-20200107062643\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Teste66ca23c-f4bf-4eb3-8418-139364d19e7d-20200107062643\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Teste78b1ab2-1380-48ab-9923-0276cdb7198b-20191001224742\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Teste78b1ab2-1380-48ab-9923-0276cdb7198b-20191001224742\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Teste8607e14-b4f8-472a-bd5b-893b8d9612e6-20200112045941\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Teste8607e14-b4f8-472a-bd5b-893b8d9612e6-20200112045941\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Teste980b80e-3add-42c0-bc98-a84020b2d128-20200108101640\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Teste980b80e-3add-42c0-bc98-a84020b2d128-20200108101640\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Tested79dba9-2d38-4ea9-a01c-56e94b30ca7a-20191007195447\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Tested79dba9-2d38-4ea9-a01c-56e94b30ca7a-20191007195447\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testee9dcf5f-f7c4-4192-a8f4-28e9bc7d0f7c-20191001225005\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testee9dcf5f-f7c4-4192-a8f4-28e9bc7d0f7c-20191001225005\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testefbb340a-b68b-4200-872b-d05e7d29f92d-20191007195432\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testefbb340a-b68b-4200-872b-d05e7d29f92d-20191007195432\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testf1fc0559-6740-48dd-9501-2b933c731d52-20200103083458\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testf1fc0559-6740-48dd-9501-2b933c731d52-20200103083458\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testf41dfc97-bb51-4fba-86ca-a6f2695c415a-20200107050834\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testf41dfc97-bb51-4fba-86ca-a6f2695c415a-20200107050834\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testf5784447-83ed-4c00-8764-ea0f932aafa2-20200106085748\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testf5784447-83ed-4c00-8764-ea0f932aafa2-20200106085748\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testf6128ef6-c13c-420e-8088-0710888ce88b-20200109050003\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testf6128ef6-c13c-420e-8088-0710888ce88b-20200109050003\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testf863ab2c-ada9-4646-84c7-1f83a82375d7-20191229033226\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testf863ab2c-ada9-4646-84c7-1f83a82375d7-20191229033226\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testfac552a7-418f-4baa-8f51-d199ceff5c68-20200103050817\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testfac552a7-418f-4baa-8f51-d199ceff5c68-20200103050817\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testfb7be054-5c15-494f-822c-b64f9a36e2f3-20200105051753\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testfb7be054-5c15-494f-822c-b64f9a36e2f3-20200105051753\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testfc5c7585-6c9a-4aa4-a7c4-1223a94e00c7-20200104083552\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testfc5c7585-6c9a-4aa4-a7c4-1223a94e00c7-20200104083552\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.FileServer.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.FileServer.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Geneva\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Geneva\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.KeyVault\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.KeyVault\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.KeyVault.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.KeyVault.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.LabServices\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.LabServices\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.LabServices.test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.LabServices.test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.Agent\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.Agent\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.Dev\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.Dev\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.Dev.INT\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.Dev.INT\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.Dev.SCALE\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.Dev.SCALE\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.Dev.TEST\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.Dev.TEST\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.GuestHealth\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.GuestHealth\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.DEV\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.DEV\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.INT\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.INT\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.SCALE\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.SCALE\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.TEST\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.TEST\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.INT.Dev\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.INT.Dev\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.SCALE.Dev\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.SCALE.Dev\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.TEST.Dev\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.TEST.Dev\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.WorkloadInsights.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.WorkloadInsights.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.WorkloadInsightsTest.newnamespace\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.WorkloadInsightsTest.newnamespace\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.Workloads\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.Workloads\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.Workloads.Dev\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.Workloads.Dev\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitoring.DependencyAgent\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitoring.DependencyAgent\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitoring.DependencyAgent.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitoring.DependencyAgent.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Networking.DNS\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Networking.DNS\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Networking.SDN\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Networking.SDN\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.NetworkWatcher\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.NetworkWatcher\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.NetworkWatcher.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.NetworkWatcher.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.OpenSSH\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.OpenSSH\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Performance.Diagnostics\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Performance.Diagnostics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Performance.Diagnostics.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Performance.Diagnostics.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.RecoveryServices\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.RecoveryServices.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices.SiteRecovery\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.RecoveryServices.SiteRecovery\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices.SiteRecovery2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.RecoveryServices.SiteRecovery2\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices.WorkloadBackup\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.RecoveryServices.WorkloadBackup\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices.WorkloadBackup.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.RecoveryServices.WorkloadBackup.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.AntimalwareSignature\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.AntimalwareSignature\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.AntimalwareSignature.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.AntimalwareSignature.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.Dsms\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.Dsms\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.Dsms.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.Dsms.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.LinuxAttestation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.LinuxAttestation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.LinuxTestAttestation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.LinuxTestAttestation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.Monitoring\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.Monitoring\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.Monitoring.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.Monitoring.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.Monitoring.Testing\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.Monitoring.Testing\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.TestWindowsAttestation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.TestWindowsAttestation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.WindowsAttestation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.WindowsAttestation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.WinTestAttestation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.WinTestAttestation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Sentinel.DnsExtension.Dev\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Sentinel.DnsExtension.Dev\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.ServiceFabric.MC\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.ServiceFabric.MC\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.ServiceFabric.MC.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.ServiceFabric.MC.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.SiteRecovery.Stage\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.SiteRecovery.Stage\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.SiteRecovery.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.SiteRecovery.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.SiteRecovery2.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.SiteRecovery2.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Test.Identity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Test.Identity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WindowsFabric.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WindowsFabric.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.ReleasePipeTest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.ReleasePipeTest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.ReleasePipeTest.INT\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.ReleasePipeTest.INT\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.ReleasePipeTest.TEST\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.ReleasePipeTest.TEST\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test2\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test3\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test3\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test4\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test4\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test5\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test5\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test5.INT\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test5.INT\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test5.TEST\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test5.TEST\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.VincentTest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.VincentTest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.VincentTest2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.VincentTest2\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.VincentTest3\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.VincentTest3\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.VincentTest4\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.VincentTest4\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.TestTest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.TestTest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.TestTest.INT\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.TestTest.INT\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.TestTest.TEST\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.TestTest.TEST\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Windows.ReleasePipeTest.INT\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Windows.ReleasePipeTest.INT\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Windows.ReleasePipeTest.TEST\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Windows.ReleasePipeTest.TEST\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoring\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoring.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoringTest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoringTest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureData\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureData\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureData.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureData.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.Canary\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights.Canary\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.Corp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights.Corp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.Linux.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights.Linux.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.LinuxTest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights.LinuxTest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.Meya0206\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights.Meya0206\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.MeyaCorp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights.MeyaCorp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.Testing\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights.Testing\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureSecurity.JITAccess\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureSecurity.JITAccess\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.CloudBackup.Workload.Extension\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.CloudBackup.Workload.Extension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.CloudBackup.Workload.Extension.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.CloudBackup.Workload.Extension.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Compute\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Compute.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Compute.TestSar\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute.TestSar\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.CPlat.Core\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.CPlat.Core\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.CPlat.Core.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.CPlat.Core.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Dcsswe.Extensions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Dcsswe.Extensions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.EnterpriseCloud.Monitoring\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.EnterpriseCloud.Monitoring.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.EnterpriseCloud.Monitoring.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Golive.Extensions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Golive.Extensions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.GuestConfig.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.GuestConfig.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.GuestConfiguration\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.GuestConfiguration\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.GuestConfiguration.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.GuestConfiguration.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.GuestConfiguration.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.GuestConfiguration.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.HpcCompute\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.HpcCompute\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.HpcCompute.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.HpcCompute.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.HpcPack\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.HpcPack\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Interceptor\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Interceptor\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.M365\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.M365\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.M365SecurityConfiguration.Kevlar.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.M365SecurityConfiguration.Kevlar.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.ManagedIdentity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.ManagedIdentity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.ManagedServices\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.ManagedServices\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.ManagedServices.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.ManagedServices.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.MonitoringAgent.Extension\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.MonitoringAgent.Extension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Network\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Network\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.OSTCExtensions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.OSTCExtensions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.OSTCExtensions.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.OSTCExtensions.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.OSTCExtensions.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.OSTCExtensions.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.OSTCExtensions.Testing\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.OSTCExtensions.Testing\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Powershell\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Powershell\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Powershell.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Powershell.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Powershell.Test01\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Powershell.Test01\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.SecurityManagement.Kevlar\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.SecurityManagement.Kevlar\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Sentinel.AzureMonitorAgentExtensions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Sentinel.AzureMonitorAgentExtensions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.SoftwareUpdateManagement\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.SoftwareUpdateManagement\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.SoftwareUpdateManagement.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.SoftwareUpdateManagement.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.SqlServer.Managability.IaaS.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.SqlServer.Managability.IaaS.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.SqlServer.Management\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.SqlServer.Management\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.SqlServer.Management.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.SqlServer.Management.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.SystemCenter\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.SystemCenter\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.SystemCenter.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.SystemCenter.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Test.Azure.Workloads\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Test.Azure.Workloads\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.TestSqlServer.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.TestSqlServer.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.ETWTraceListenerService\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.Azure.ETWTraceListenerService\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.RemoteDebug\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.Azure.RemoteDebug\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.RemoteDebug.Json\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.Azure.RemoteDebug.Json\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.ServiceProfiler\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.ServiceProfiler\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.Services\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.Services\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.WindowsAzure.DevTest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.WindowsAzure.DevTest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.WindowsAzure.DevTest.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.WindowsAzure.DevTest.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.WindowsAzure.RemoteDebug\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.WindowsAzure.RemoteDebug\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.WindowsAzure.Test.RemoteDebug\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.WindowsAzure.Test.RemoteDebug\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Windows.Azure.Extensions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Windows.Azure.Extensions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Windows.AzureRemoteApp.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Windows.AzureRemoteApp.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Windows.RemoteDesktop\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Windows.RemoteDesktop\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.WindowsAdminCenter\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.WindowsAdminCenter\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.WindowsAdminCenter.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.WindowsAdminCenter.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.WindowsAzure.Compute\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.WindowsAzure.Compute\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.WindowsAzure.Compute.test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.WindowsAzure.Compute.test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.WVD\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.WVD\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoftagciuk\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoftagciuk\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoftazurecituswarp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoftazurecituswarp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftAzureSiteRecovery\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftAzureSiteRecovery\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftBizTalkServer\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftBizTalkServer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftCBLMariner\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftCBLMariner\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoftcmotest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoftcmotest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoftcorporation1602274591143\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoftcorporation1602274591143\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoftcorporation1620407702632\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoftcorporation1620407702632\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftDynamicsAX\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftDynamicsAX\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftDynamicsGP\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftDynamicsGP\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftDynamicsNAV\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftDynamicsNAV\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoftfarmbeats\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoftfarmbeats\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftHybridCloudStorage\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftHybridCloudStorage\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftOSTC\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftOSTC\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftPowerBI\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftPowerBI\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftRServer\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftRServer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftSharePoint\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftSharePoint\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftSQLServer\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftSQLServer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftTestLinuxPPS\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftTestLinuxPPS\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftVisualStudio\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftVisualStudio\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftWindowsDesktop\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsDesktop\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftWindowsServer\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsServer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftWindowsServerHPCPack\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsServerHPCPack\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft_iot_edge\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft_iot_edge\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft_javaeeonazure_test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft_javaeeonazure_test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microstrategy\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microstrategy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"midasolutions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/midasolutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"middleware\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/middleware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"midfin\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/midfin\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"midvision\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/midvision\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mihupcommunicationspvtltd1599046998010\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mihupcommunicationspvtltd1599046998010\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mindcti\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mindcti\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"minio\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/minio\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"miraclelinux\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/miraclelinux\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"miracl_linux\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/miracl_linux\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"miri-infotech-pvt-ltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/miri-infotech-pvt-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mistio1601460379393\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mistio1601460379393\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mobilab\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mobilab\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"modern-systems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/modern-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"modexblockchaindatabase\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/modexblockchaindatabase\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"monetdbsolutions1611751313758\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/monetdbsolutions1611751313758\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"monitorapp1579029852605\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/monitorapp1579029852605\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"monitorcomputersystemsltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/monitorcomputersystemsltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"moogsoft\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/moogsoft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"morpheus-data\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/morpheus-data\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"moviemasher\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/moviemasher\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mriisoftllc1579457820427\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mriisoftllc1579457820427\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"msopentech\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/msopentech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mtnfog\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mtnfog\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"multisoft-ab\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/multisoft-ab\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mvp-systems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mvp-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mwg_azure\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mwg_azure\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mxhero\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mxhero\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"my-com\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/my-com\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"myarchinc1614657280935\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/myarchinc1614657280935\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"narrativescience\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/narrativescience\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nasuni\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nasuni\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nasunicorporation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nasunicorporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"navicloudrsoftwarepteltd1601967280369\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/navicloudrsoftwarepteltd1601967280369\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ncache\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ncache\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ncbi\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ncbi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ncomputingglobalinc1604353053068\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ncomputingglobalinc1604353053068\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ndl\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ndl\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nebbiolo-technologies-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nebbiolo-technologies-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nec-technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nec-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nefelinetworks1591201080882\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nefelinetworks1591201080882\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"neo4j\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/neo4j\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"neos\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/neos\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"neowaybusinesssolutions-4956350\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/neowaybusinesssolutions-4956350\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netapp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netapp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netatwork\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netatwork\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netfoundryinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netfoundryinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netgate\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netgate\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netikus-net-ltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netikus-net-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netiq\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netiq\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netka\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netka\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netmail\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netmail\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netscout\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netscout\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netspi\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netspi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netsweeper\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netsweeper\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"networksexchangetechnologyltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/networksexchangetechnologyltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netwrix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netwrix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netx\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netx\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"neusoft-neteye\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/neusoft-neteye\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"newnetcommunicationtechnologies1589991852134\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/newnetcommunicationtechnologies1589991852134\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"NewRelic.Infrastructure.Extensions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/NewRelic.Infrastructure.Extensions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"newtglobalconsultingllc1581492268566\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/newtglobalconsultingllc1581492268566\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nextronic-5290868\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nextronic-5290868\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nginxinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nginxinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nice-it-management-solutions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nice-it-management-solutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nicepeopleatwork\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nicepeopleatwork\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nilespartnersinc1617691698386\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nilespartnersinc1617691698386\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"niolabs-5229713\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/niolabs-5229713\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nirvatosoftwarepvtltd1601368706606\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nirvatosoftwarepvtltd1601368706606\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nodejsapi\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nodejsapi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"noianetworklimited1584098036197\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/noianetworklimited1584098036197\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nokiaofamericacorporation1591716055441\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nokiaofamericacorporation1591716055441\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"noobaa\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/noobaa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"norcominformationtechnologygmbhcokgaa\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/norcominformationtechnologygmbhcokgaa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"noricumcloudsolutions1600524477681\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/noricumcloudsolutions1600524477681\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"norsync\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/norsync\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"northbridge-secure\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/northbridge-secure\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nozominetworks1582208017986\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nozominetworks1582208017986\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nri\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nri\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ntegralinc1586961136942\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ntegralinc1586961136942\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ntt-data-intellilink-corporation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ntt-data-intellilink-corporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nttdata\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nttdata\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nttltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nttltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nuco-networks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nuco-networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"numbersbelieve\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/numbersbelieve\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"numtrallcpublisher\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/numtrallcpublisher\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nuxeo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nuxeo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nvidia\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nvidia\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"o2mc-real-time-data-platform\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/o2mc-real-time-data-platform\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"objectivity-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/objectivity-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"objectivity1595351622261\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/objectivity1595351622261\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"oceanblue-cloud\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/oceanblue-cloud\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"OctopusDeploy.Tentacle\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/OctopusDeploy.Tentacle\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"odix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/odix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"odysseuscomputationalsolutions1630242118741\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/odysseuscomputationalsolutions1630242118741\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"odysseyconsultantsltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/odysseyconsultantsltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"officeatwork-ag\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/officeatwork-ag\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"omega-software\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/omega-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"onapsis\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/onapsis\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"oncore_cloud_services-4944214\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/oncore_cloud_services-4944214\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"onexgroup\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/onexgroup\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"onspecta\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/onspecta\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ontology\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ontology\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"onyx-point-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/onyx-point-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"op5\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/op5\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"open-connect-systems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/open-connect-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"opencell\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/opencell\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"openlinkswcom-pago\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/openlinkswcom-pago\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"OpenLogic\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/OpenLogic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"openrefactoryinc1620140917523\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/openrefactoryinc1620140917523\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"openshotstudiosllc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/openshotstudiosllc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"opentext\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/opentext\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"openvpn\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/openvpn\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"opslogix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/opslogix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"opswatinc1619007967290\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/opswatinc1619007967290\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"optimitiveslu1618320281443\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/optimitiveslu1618320281443\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"option3\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/option3\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Oracle\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Oracle\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"oraylis\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/oraylis\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"oraylisbi\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/oraylisbi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"orbs-network\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/orbs-network\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"oriana\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/oriana\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"orientdb\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/orientdb\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"oroinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/oroinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"osirium-ltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/osirium-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"osisoft\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/osisoft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"osnexus\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/osnexus\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"outpost24\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/outpost24\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"outsystems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/outsystems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ovaledge1618392232783\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ovaledge1618392232783\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pachyderminc1585170006545\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pachyderminc1585170006545\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pacteratechnologiesinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pacteratechnologiesinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"paladionnetworkspvtltd1606120508449\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/paladionnetworkspvtltd1606120508449\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"paloaltonetworks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/paloaltonetworks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"panopta\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/panopta\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"panorama-necto\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/panorama-necto\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"panzura-file-system\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/panzura-file-system\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"parabole\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/parabole\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"paralaxiomtechnologiesprivatelimited1596433357886\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/paralaxiomtechnologiesprivatelimited1596433357886\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"parallels\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/parallels\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"parasoft\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/parasoft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"parkersoftwarelimited1609786657569\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/parkersoftwarelimited1609786657569\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"parsec-for-teams\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/parsec-for-teams\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pasifikciptamandiri\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pasifikciptamandiri\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"passlogy\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/passlogy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"paxata\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/paxata\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pcman\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pcman\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"peer-software-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/peer-software-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"penta-security-systems-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/penta-security-systems-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"percona\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/percona\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"perforce\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/perforce\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"periscope-tech-4791746\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/periscope-tech-4791746\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"piolinkinc1582849368309\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/piolinkinc1582849368309\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pivotal\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pivotal\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pixitmedia1591611150480\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pixitmedia1591611150480\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"plesk\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/plesk\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pmsoftwareinternational1603102514882\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pmsoftwareinternational1603102514882\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pnop\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pnop\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"polarityioinc1628691850891\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/polarityioinc1628691850891\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"portalarchitects\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/portalarchitects\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"portsysinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/portsysinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"postgres-pro\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/postgres-pro\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"powerbireach\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/powerbireach\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"prakshepprivatelimited1619949827900\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/prakshepprivatelimited1619949827900\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"prestashop\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/prestashop\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"prestige_informatique-1090178\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/prestige_informatique-1090178\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"prime-strategy\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/prime-strategy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"primekey\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/primekey\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"primestrategynewyorkinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/primestrategynewyorkinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pro-vision\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pro-vision\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"process-one\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/process-one\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"processgold\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/processgold\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"procomputers\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/procomputers\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"procomputerssrl1594239153814\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/procomputerssrl1594239153814\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"profecia\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/profecia\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Profiler.AgentOrchestrationRefactor.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Profiler.AgentOrchestrationRefactor.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Profiler.Master.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Profiler.Master.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"profisee\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/profisee\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"progelspa\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/progelspa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"progresssoftwarecorporation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/progresssoftwarecorporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"proliongmbh1628175060372\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/proliongmbh1628175060372\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"protegrityusainc1627404648458\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/protegrityusainc1627404648458\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"protiviti\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/protiviti\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"proventeq\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/proventeq\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ptc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ptc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ptsecurity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ptsecurity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pulse-secure\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pulse-secure\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pulsesecuretechnologies1638179500151\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pulsesecuretechnologies1638179500151\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"puppet\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/puppet\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"puppeteersoy1601024480557\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/puppeteersoy1601024480557\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"PuppetLabs\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/PuppetLabs\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"PuppetLabs.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/PuppetLabs.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"purestorageinc1578960262525\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/purestorageinc1578960262525\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pydio\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pydio\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pyramidanalytics\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pyramidanalytics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"qlik\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/qlik\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"qnapsystemsinc1601352084032\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/qnapsystemsinc1601352084032\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"qore-technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/qore-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"qs-solutions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/qs-solutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Qualys\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Qualys\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Qualys.LinuxAgent.GrayLabel\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Qualys.LinuxAgent.GrayLabel\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Qualys.WindowsAgent.GrayLabel\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Qualys.WindowsAgent.GrayLabel\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"qualysguard\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/qualysguard\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"quasardb\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/quasardb\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"qubole-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/qubole-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"quest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/quest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"racknap\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/racknap\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rackwareinc1619403669255\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rackwareinc1619403669255\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"radiant-logic\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/radiant-logic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"radware\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/radware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"raincode\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/raincode\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rancher\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rancher\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rapid7\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rapid7\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Rapid7.InsightPlatform\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Rapid7.InsightPlatform\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rapidminer\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rapidminer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"raynetgmbh\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/raynetgmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"readymind\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/readymind\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"realm\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/realm\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"reblaze\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/reblaze\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"RedHat\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/RedHat\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"redhat-rhel\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/redhat-rhel\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"redpoint-global\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/redpoint-global\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"refactr\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/refactr\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"refinitiv\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/refinitiv\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"refinitiv-4807503\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/refinitiv-4807503\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"relevance-lab\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/relevance-lab\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"remotelearner\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/remotelearner\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"res\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/res\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"resco\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/resco\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"resemblesystems1582780358300\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/resemblesystems1582780358300\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"responder-corp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/responder-corp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"revolution-analytics\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/revolution-analytics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rhcsolutions1586957910818\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rhcsolutions1586957910818\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ribboncommunications\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ribboncommunications\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"RightScaleLinux\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/RightScaleLinux\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"RightScaleWindowsServer\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/RightScaleWindowsServer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rimo3\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rimo3\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ringsoftwareresearchanddevelopmentinc1578946072257\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ringsoftwareresearchanddevelopmentinc1578946072257\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"riverbed\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/riverbed\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"RiverbedTechnology\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/RiverbedTechnology\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rmgtechnologiesinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rmgtechnologiesinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rocketml\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rocketml\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rocketsoftware\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rocketsoftware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rohdeschwarzcybersecuritygmbh\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rohdeschwarzcybersecuritygmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rohdeschwarzcybersecuritysas\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rohdeschwarzcybersecuritysas\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"roktech\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/roktech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rsa-security-llc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rsa-security-llc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rsk-labs\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rsk-labs\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rstudio-5237862\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rstudio-5237862\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rtts\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rtts\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rubrik-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rubrik-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"runecastsolutionslimited1614186396822\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/runecastsolutionslimited1614186396822\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"s2ix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/s2ix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"saama\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/saama\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"saasame-limited\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/saasame-limited\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"safesoftwareinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/safesoftwareinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"safeticatechnologiessro\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/safeticatechnologiessro\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"safetica_technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/safetica_technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"safetoopen1585013318137\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/safetoopen1585013318137\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"saltsecurity1583264186232\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/saltsecurity1583264186232\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"saltsecurity1583264669848\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/saltsecurity1583264669848\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"saltstack\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/saltstack\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"samsung-sds\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/samsung-sds\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"samsungelectronics1632860607983\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/samsungelectronics1632860607983\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"samsungsds-cello\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/samsungsds-cello\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"samsungsds_sdbe\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/samsungsds_sdbe\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sandhatatechnologieslimited1615753438737\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sandhatatechnologieslimited1615753438737\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sap\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sap\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sapphiretechnologieslimited1611758579346\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sapphiretechnologieslimited1611758579346\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sas-institute-560503\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sas-institute-560503\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"scaidata\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/scaidata\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"scalearc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/scalearc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"scalegrid\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/scalegrid\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"scality\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/scality\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"schrockeninc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/schrockeninc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sci\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sci\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sciencelogicinc1622565452194\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sciencelogicinc1622565452194\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"scientiamobile\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/scientiamobile\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"scontainug1595751515785\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/scontainug1595751515785\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"scubaanalytics\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/scubaanalytics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"scylladb1631195365807\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/scylladb1631195365807\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"seaqserviciossas1579029207572\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/seaqserviciossas1579029207572\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"searchbloxsoftwareinc1594309037050\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/searchbloxsoftwareinc1594309037050\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"secureworks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/secureworks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"securityonionsolutions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/securityonionsolutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"securityonionsolutionsllc1624649205155\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/securityonionsolutionsllc1624649205155\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"securosis\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/securosis\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"seequentltd1585781751395\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/seequentltd1585781751395\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"semarchy\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/semarchy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"semperis\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/semperis\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"senhasegura\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/senhasegura\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"SentinelOne.LinuxExtension\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/SentinelOne.LinuxExtension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"SentinelOne.WindowsExtension\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/SentinelOne.WindowsExtension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"SentinelOne.WindowsExtension.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/SentinelOne.WindowsExtension.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sentriumsl\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sentriumsl\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sentryone\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sentryone\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sepiosystems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sepiosystems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"seppmailag\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/seppmailag\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"seraumo1620002807288\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/seraumo1620002807288\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"service-control-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/service-control-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sesamesoftwareinc1622125191447\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sesamesoftwareinc1622125191447\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"shadow-soft\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/shadow-soft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"shareshiftneeraj.test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/shareshiftneeraj.test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sightapps\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sightapps\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"signal-sciences\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/signal-sciences\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"silk\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/silk\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"silver-peak-systems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/silver-peak-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"simmachinesinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/simmachinesinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"simontelephonics\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/simontelephonics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"simpledatalabsinc1635791235920\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/simpledatalabsinc1635791235920\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"simplifierag\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/simplifierag\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"simpligov\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/simpligov\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sinefa\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sinefa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sinequa\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sinequa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sinequa1588262295885\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sinequa1588262295885\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"singapore-telecommunications-limited\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/singapore-telecommunications-limited\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sios_datakeeper\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sios_datakeeper\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"siportalinc1581539156321\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/siportalinc1581539156321\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sisenseltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sisenseltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Site24x7\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Site24x7\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sktelecom\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sktelecom\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"skyarc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/skyarc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"skyboxsecurity1585187406404\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/skyboxsecurity1585187406404\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"skylarkcloud\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/skylarkcloud\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"smartbearsoftware\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/smartbearsoftware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"smartmessage-autoflow\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/smartmessage-autoflow\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"snaplogic\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/snaplogic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"snapt-adc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/snapt-adc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"snips\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/snips\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"soasta\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/soasta\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"softnas\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/softnas\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"softwarecentralas1642687699196\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/softwarecentralas1642687699196\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"softwarehut\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/softwarehut\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"softwebsolutions-4518310\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/softwebsolutions-4518310\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"soha\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/soha\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"solanolabs\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/solanolabs\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"solar-security\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/solar-security\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"solarwinds\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/solarwinds\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"solvedevops1643693563360\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/solvedevops1643693563360\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sonicwall-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sonicwall-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sophos\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sophos\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sourcegearllc1616101262784\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sourcegearllc1616101262784\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"south-river-technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/south-river-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"southrivertech1586314123192\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/southrivertech1586314123192\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"spacecurve\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/spacecurve\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"spaceliftinc1625499025476\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/spaceliftinc1625499025476\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"spagobi\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/spagobi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sparklinglogic\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sparklinglogic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"spectralcorelimited1619779004178\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/spectralcorelimited1619779004178\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"spektra\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/spektra\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sphere3d\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sphere3d\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"spideroakinc1588278690933\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/spideroakinc1588278690933\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"spirentcommunications1594084187199\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/spirentcommunications1594084187199\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"splunk\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/splunk\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sproutenetworks1593456311717\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sproutenetworks1593456311717\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sqlstream\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sqlstream\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"squadratechnologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/squadratechnologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"squaredup\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/squaredup\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"src-solution\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/src-solution\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stackato-platform-as-a-service\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stackato-platform-as-a-service\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Stackify.LinuxAgent.Extension\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Stackify.LinuxAgent.Extension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stackstorm\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stackstorm\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"startekfingerprintmatch\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/startekfingerprintmatch\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"startisolucoesemtecnologialtda1635263523201\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/startisolucoesemtecnologialtda1635263523201\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"starwind\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/starwind\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"StatusMonitor2.Diagnostics.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/StatusMonitor2.Diagnostics.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"StatusReport.Diagnostics.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/StatusReport.Diagnostics.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stealthbits\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stealthbits\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"steelhive\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/steelhive\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stonebondtechnologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stonebondtechnologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stonefly\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stonefly\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"storage_made_easy\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/storage_made_easy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stormshield\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stormshield\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"storone1594045543980\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/storone1594045543980\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"storreduce\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/storreduce\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"storwarespzoo1611743234900\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/storwarespzoo1611743234900\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"strangebee1595948424730\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/strangebee1595948424730\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"strataidentity1608323708170\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/strataidentity1608323708170\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stratis-group-ltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stratis-group-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stratodesk1611152769936\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stratodesk1611152769936\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stratumn\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stratumn\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"streamsets\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/streamsets\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"striim\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/striim\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stromasys\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stromasys\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"strongboxitllc1594816423884\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/strongboxitllc1594816423884\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"su\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/su\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"subscription.test.krsh\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/subscription.test.krsh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sumologic\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sumologic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sunatogmbh\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sunatogmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sunday\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sunday\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"SUSE\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/SUSE\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"swoopanalytics\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/swoopanalytics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sycom-technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sycom-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sycompatechnologycompanyinc1588192103892\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sycompatechnologycompanyinc1588192103892\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.CloudWorkloadProtection\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.CloudWorkloadProtection\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.CloudWorkloadProtection.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.CloudWorkloadProtection.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.CloudWorkloadProtection.TestOnStage\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.CloudWorkloadProtection.TestOnStage\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.QA\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.QA\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.staging\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.staging\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.test.ru2.latest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.test.ru2.latest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.test.ru2final\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.test.ru2final\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.test.ru2latest1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.test.ru2latest1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.test.ru4mp1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.test.ru4mp1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.test.ru4mp1.latest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.test.ru4mp1.latest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.test.ru4mp1final\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.test.ru4mp1final\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"symanteccorporation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/symanteccorporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"symantectest1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/symantectest1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"synack-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/synack-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"syncfusion\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/syncfusion\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"syncfusionbigdataplatfor\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/syncfusionbigdataplatfor\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"synechron-technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/synechron-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"synergixinc1585256339250\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/synergixinc1585256339250\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"synnexcorp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/synnexcorp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"syscomcomputerengineeringco1583913200141\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/syscomcomputerengineeringco1583913200141\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"syte\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/syte\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tableau\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tableau\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tactic\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tactic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"talari-networks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/talari-networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"talena-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/talena-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"talend\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/talend\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"talon\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/talon\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tamrinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tamrinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"targit\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/targit\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tata_communications\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tata_communications\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tavanttechnologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tavanttechnologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tavendo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tavendo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"te-systems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/te-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"techdivision\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/techdivision\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"techlatest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/techlatest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"technicheltd1606969724100\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/technicheltd1606969724100\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tecknolab\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tecknolab\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"telepat\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/telepat\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"teloscorporation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/teloscorporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tempered-networks-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tempered-networks-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tenable\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tenable\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tensormakecorpdbaoneclickai1608247756082\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tensormakecorpdbaoneclickai1608247756082\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"teradata\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/teradata\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Teradici\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Teradici\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"teramindinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/teramindinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.Gemalto.SafeNet.ProtectV\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.Gemalto.SafeNet.ProtectV\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.Gemalto.SafeNet.ProtectV.Azure\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.Gemalto.SafeNet.ProtectV.Azure\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.HP.AppDefender\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.HP.AppDefender\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.Microsoft.VisualStudio.Services\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.Microsoft.VisualStudio.Services\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.NJHP.AppDefender\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.NJHP.AppDefender\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.SqlServer.Managability\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.SqlServer.Managability\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.SqlServer.Management\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.SqlServer.Management\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.SqlServer.Management.corext\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.SqlServer.Management.corext\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test1.NJHP.AppDefender\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test1.NJHP.AppDefender\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test3.Microsoft.VisualStudio.Services\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test3.Microsoft.VisualStudio.Services\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"testable1603721901088\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/testable1603721901088\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"testpro\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/testpro\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"test_test_mix3pptest0011614206850774\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/test_test_mix3pptest0011614206850774\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"test_test_mneela1628617140187\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/test_test_mneela1628617140187\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"test_test_pmc2pc1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/test_test_pmc2pc1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thales-vormetric\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thales-vormetric\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thalesdiscplusainc1596561677238\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thalesdiscplusainc1596561677238\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thedatavaluefactoryltd1589348815922\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thedatavaluefactoryltd1589348815922\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thefreebsdfoundation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thefreebsdfoundation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thehdfgroup1616725197741\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thehdfgroup1616725197741\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"theumag1596442827072\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/theumag1596442827072\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"things-board\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/things-board\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thingscareinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thingscareinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thinprintgmbh\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thinprintgmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thorntechnologiesllc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thorntechnologiesllc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thoughtspot-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thoughtspot-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"threatintelligenceptyltd1586824172898\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/threatintelligenceptyltd1586824172898\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tibco-software\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tibco-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tidal-migrations\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tidal-migrations\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tidalmediainc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tidalmediainc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tig\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tig\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tiger-technology\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tiger-technology\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tigergraph\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tigergraph\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"timextender\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/timextender\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tmaxsoft\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tmaxsoft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tmaxsoft1608612658335\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tmaxsoft1608612658335\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tomsawyersoftwarecorp1613579206342\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tomsawyersoftwarecorp1613579206342\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"topicus\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/topicus\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"torusware\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/torusware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"totemo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/totemo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"townsend-security\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/townsend-security\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"transcendinformationinc1609918445926\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/transcendinformationinc1609918445926\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"transientxinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/transientxinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"transvault\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/transvault\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"trendmicro\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/trendmicro\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"TrendMicro.DeepSecurity.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/TrendMicro.DeepSecurity.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"TrendMicro.PortalProtect\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/TrendMicro.PortalProtect\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tresorit\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tresorit\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"trifacta\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/trifacta\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tripleblindinc1615730179432\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tripleblindinc1615730179432\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tripwire-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tripwire-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"truata1612259728221\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/truata1612259728221\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"truestack\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/truestack\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tryonsolutionsinc1596650621083\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tryonsolutionsinc1596650621083\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tsa-public-service\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tsa-public-service\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tunnelbiz\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tunnelbiz\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"turbonet\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/turbonet\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"turbonet1581982683964\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/turbonet1581982683964\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"twistlock\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/twistlock\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"typesafe\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/typesafe\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ubeeko\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ubeeko\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ubercloud\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ubercloud\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"uipath-5054924\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/uipath-5054924\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ulex\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ulex\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"unifi-software\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/unifi-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"unifiedstreaming1598872291606\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/unifiedstreaming1598872291606\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"uniprint-net\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/uniprint-net\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"unitrends\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/unitrends\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"unnisoft\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/unnisoft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"unravel-data\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/unravel-data\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"unscramblsingaporepteltd-4999260\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/unscramblsingaporepteltd-4999260\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"untangle\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/untangle\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"upsolver1594188634150\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/upsolver1594188634150\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"usp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/usp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"valohai\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/valohai\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"valtix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/valtix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"varmournetworks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/varmournetworks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"varnish\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/varnish\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vatacommunicationsinc1581644208717\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vatacommunicationsinc1581644208717\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vaultive-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vaultive-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vbot\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vbot\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vcinityinc1587684340545\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vcinityinc1587684340545\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vectraaiinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vectraaiinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"veeam\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/veeam\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"velocitydb-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/velocitydb-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"velocloud\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/velocloud\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vembutechnologiespvtltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vembutechnologiespvtltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vemn\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vemn\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"veritas\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/veritas\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"versanetworks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/versanetworks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"versasec\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/versasec\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vidispine\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vidispine\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vidizmo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vidizmo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vigyanlabs-innovations-pvt-ltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vigyanlabs-innovations-pvt-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vigyanlabsinc1581413676614\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vigyanlabsinc1581413676614\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"viptela\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/viptela\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vircom\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vircom\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"virtamovecorp1615909247913\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/virtamovecorp1615909247913\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"virtualpulsesro1607008728942\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/virtualpulsesro1607008728942\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"virtuozzointernationalgmbh1626704951469\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/virtuozzointernationalgmbh1626704951469\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"visualknowledgeshare1591795776234\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/visualknowledgeshare1591795776234\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"visualsoft-center\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/visualsoft-center\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vizixiotplatformretail001\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vizixiotplatformretail001\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vmlabinc1613642184700\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vmlabinc1613642184700\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vmturbo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vmturbo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vmware-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vmware-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vnomicinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vnomicinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"voiceelements\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/voiceelements\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"voleatechgmbh1636966911943\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/voleatechgmbh1636966911943\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"volterraedgeservices\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/volterraedgeservices\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Vormetric\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Vormetric\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vscconsultingptyltd1608535888097\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vscconsultingptyltd1608535888097\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vte\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vte\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vu-llc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vu-llc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vyulabsinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vyulabsinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"WAD2AI.Diagnostics.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/WAD2AI.Diagnostics.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"WAD2EventHub.Diagnostics.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/WAD2EventHub.Diagnostics.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wallarm\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wallarm\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wallix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wallix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wandisco\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wandisco\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wanos\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wanos\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wanpath-dba-myworkdrive\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wanpath-dba-myworkdrive\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wardy-it-solutions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wardy-it-solutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"warewolf-esb\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/warewolf-esb\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"watchguard-technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/watchguard-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"webaloinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/webaloinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"websense-apmailpe\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/websense-apmailpe\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"websoft9inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/websoft9inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wedoitllc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wedoitllc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"westernoceansoftwaresprivatelimited\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/westernoceansoftwaresprivatelimited\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wherescapesoftware\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wherescapesoftware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"winmagic_securedoc_cloudvm\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/winmagic_securedoc_cloudvm\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wintellisys-inc-4561600\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wintellisys-inc-4561600\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"witfooinc1590167223060\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/witfooinc1590167223060\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wmspanel\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wmspanel\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wood1595864497589\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wood1595864497589\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"workshare-technology\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/workshare-technology\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"world-programming\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/world-programming\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"worxogo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/worxogo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wowza\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wowza\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"xcontentptyltd-1329748\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/xcontentptyltd-1329748\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"xendata-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/xendata-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"xfinityinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/xfinityinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"xilinx\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/xilinx\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"xoriantcorporationazxteam1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/xoriantcorporationazxteam1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"xoriantsolutionspvtltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/xoriantsolutionspvtltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"xtremedata\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/xtremedata\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"xyzrd-group-ou\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/xyzrd-group-ou\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"yellowfin\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/yellowfin\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"yellowfininternationalptyltd1616363974066\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/yellowfininternationalptyltd1616363974066\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"yokogawarentalleasecorporation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/yokogawarentalleasecorporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"your-shop-online\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/your-shop-online\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"z1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/z1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"z4it-aps\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/z4it-aps\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zabbix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zabbix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zend\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zend\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zenterasystemsinc1605292453288\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zenterasystemsinc1605292453288\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zerodown_software\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zerodown_software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zerto\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zerto\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zettalane_systems-5254599\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zettalane_systems-5254599\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zevenet\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zevenet\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zilliz\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zilliz\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zoomdata\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zoomdata\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zscaler\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zscaler\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zscaler1579058425289\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zscaler1579058425289\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zultysinc1596831546163\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zultysinc1596831546163\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"128technology\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/128technology\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1580863854728\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1580863854728\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1583411303229\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1583411303229\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1583465680865\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1583465680865\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1585118004523\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1585118004523\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1592878437854\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1592878437854\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1597644262255\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1597644262255\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1598955805825\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1598955805825\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1601633765871\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1601633765871\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1602067018799\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1602067018799\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1604579683207\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1604579683207\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1615257339685\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1615257339685\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1615278064010\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1615278064010\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1615455873642\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1615455873642\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1624590941808\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1624590941808\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1640334196980\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1640334196980\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1e\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1e\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"2021ai\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/2021ai\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"247commercelimited1611063941652\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/247commercelimited1611063941652\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"3cx-pbx\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/3cx-pbx\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"42crunch1580391915541\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/42crunch1580391915541\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"4psa\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/4psa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"5nine-software-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/5nine-software-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"6124903\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/6124903\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"7isolutions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/7isolutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"a10networks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/a10networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"a10networks1596136698788\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/a10networks1596136698788\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"abiquo\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/abiquo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"abzoobainc1598420455082\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/abzoobainc1598420455082\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"accedian\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/accedian\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"accelario1579101623356\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/accelario1579101623356\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"accellion\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/accellion\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"accessdata-group\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/accessdata-group\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"accops\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/accops\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aciworldwide\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aciworldwide\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Acronis\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Acronis\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Acronis.Backup\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Acronis.Backup\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"actian-corp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/actian-corp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"actian_matrix\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/actian_matrix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"actifio\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/actifio\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"actiphy\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/actiphy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"actiphyinc1627974506603\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/actiphyinc1627974506603\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"activecountermeasuresinc1631039410073\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/activecountermeasuresinc1631039410073\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"activeeon\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/activeeon\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"activeops\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/activeops\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"adastracorporation-4028356\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/adastracorporation-4028356\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"adgs\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/adgs\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"advantech\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/advantech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"advantech-webaccess\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/advantech-webaccess\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"advantys\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/advantys\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aelf\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aelf\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aerospike\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aerospike\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"affinio\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/affinio\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"affirmednetworks1607630812999\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/affirmednetworks1607630812999\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ageniumscale1591804889317\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ageniumscale1591804889317\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aggregion-ltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aggregion-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"agiledialogssl1603791911858\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/agiledialogssl1603791911858\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"agolo\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/agolo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ahnlabinc1584495174865\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ahnlabinc1584495174865\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ahnlabinc1584495467593\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ahnlabinc1584495467593\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"airalabrus\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/airalabrus\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aiscaler-cache-control-ddos-and-url-rewriting-\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aiscaler-cache-control-ddos-and-url-rewriting-\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aisundowninc1618516322959\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aisundowninc1618516322959\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"akamai-technologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/akamai-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"akumina\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/akumina\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"akumo-software\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/akumo-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"al-tamamunitedtradingcontractingcompany\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/al-tamamunitedtradingcontractingcompany\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"alachisoft\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/alachisoft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"alertlogic\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/alertlogic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"AlertLogic.Extension\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/AlertLogic.Extension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"algolyticstechnologies1606475101268\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/algolyticstechnologies1606475101268\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"alicetrix\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/alicetrix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"alienvault\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/alienvault\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"alldigital-brevity\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/alldigital-brevity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"almalinux\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/almalinux\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"almalinuxosfoundation1628089859865\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/almalinuxosfoundation1628089859865\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"altair-engineering-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/altair-engineering-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"altamira-corporation\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/altamira-corporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"alteryx\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/alteryx\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"altova\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/altova\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"amergint1593131356777\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/amergint1593131356777\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"anjanadatasl1583402861145\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/anjanadatasl1583402861145\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ansys\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ansys\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"antmedia\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/antmedia\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aod\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aod\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"apigee\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/apigee\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"appcara\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appcara\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"appcelerator\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appcelerator\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"appex-networks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appex-networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"appistry\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appistry\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"appiyo_technologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appiyo_technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"appmint_inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appmint_inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"apps-4-rent\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/apps-4-rent\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"appscale-marketplace\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appscale-marketplace\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"appsurifyinc1606933045773\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appsurifyinc1606933045773\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aquaforest\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aquaforest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aquantyinc1598537176913\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aquantyinc1598537176913\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aquaveollc1633710529908\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aquaveollc1633710529908\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"arabesque-group\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/arabesque-group\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"arangodb\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/arangodb\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aras\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aras\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"arcblock\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/arcblock\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"arcesb\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/arcesb\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"arcontechsolutionsprivatelimited1623841797810\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/arcontechsolutionsprivatelimited1623841797810\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"arcserveusallc-marketing\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/arcserveusallc-marketing\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"arista-networks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/arista-networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ariwontollc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ariwontollc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"array_networks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/array_networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"artificial-intelligence-techniques-sl\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/artificial-intelligence-techniques-sl\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"arubanetworks-4922182\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/arubanetworks-4922182\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"asdivertissementinc1617837708654\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/asdivertissementinc1617837708654\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"asigra\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/asigra\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aspentechnologyhq-1353108\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aspentechnologyhq-1353108\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"astadia-1148316\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/astadia-1148316\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"asterasoftware1581022936015\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/asterasoftware1581022936015\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"asyscosoftwarebv\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/asyscosoftwarebv\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ataccama\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ataccama\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"athinfosystems1641442221349\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/athinfosystems1641442221349\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"athinfosystems1648710938250\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/athinfosystems1648710938250\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"atlgaming\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/atlgaming\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"atmosera\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/atmosera\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"atomicorp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/atomicorp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"atomizedinc1587939464368\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/atomizedinc1587939464368\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"attunity_cloudbeam\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/attunity_cloudbeam\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"audiocodes\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/audiocodes\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"auraportal\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/auraportal\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"auriq-systems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/auriq-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"automateio1592914387888\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/automateio1592914387888\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"automationanywhere\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/automationanywhere\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"avanseus\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/avanseus\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"avepoint\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/avepoint\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aveva1\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aveva1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"avi-networks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/avi-networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aviatrix-systems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aviatrix-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"awingu\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/awingu\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"axedrasag1590581171549\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/axedrasag1590581171549\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"axsguardablenv\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/axsguardablenv\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"axshco\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/axshco\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"axway\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/axway\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"axxana\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/axxana\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"azhpc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/azhpc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"azul\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/azul\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"azure-dockit\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/azure-dockit\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"azurecyclecloud\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/azurecyclecloud\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"AzureDatabricks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/AzureDatabricks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"azureopenshift\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/azureopenshift\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"AzureRT.PIR.Synthetics.ProdTest\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/AzureRT.PIR.Synthetics.ProdTest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"AzureRT.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/AzureRT.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"azuretesting\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/azuretesting\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"azuretesting2\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/azuretesting2\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"azuretesting3\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/azuretesting3\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"AzureTools1type\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/AzureTools1type\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"baas-techbureau\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/baas-techbureau\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"baffle-io\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/baffle-io\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"balabit\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/balabit\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"barracudanetworks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/barracudanetworks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"basho\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/basho\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"batch\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/batch\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bayware\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bayware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bdy\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bdy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"belindaczsro1588885355210\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/belindaczsro1588885355210\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bellsoft1582871421940\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bellsoft1582871421940\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"betsol\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/betsol\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"beyondtrust\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/beyondtrust\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bi-builders-as\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bi-builders-as\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"big-id\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/big-id\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"biolibinc1622552350258\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/biolibinc1622552350258\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bissantechnology1583581147809\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bissantechnology1583581147809\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bitdefendercybersecurity\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bitdefendercybersecurity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Bitnami\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Bitnami\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bizagi\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bizagi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bizaptyltd1626489237351\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bizaptyltd1626489237351\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bizdataloome\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bizdataloome\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"biztalk360\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/biztalk360\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"black-duck-software\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/black-duck-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"blackbird\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/blackbird\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"blackmagicdesignincorporated1596492193249\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/blackmagicdesignincorporated1596492193249\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"blk-technologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/blk-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"blockapps\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/blockapps\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"blockchain-foundry\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/blockchain-foundry\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"blockstack\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/blockstack\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bloombase\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bloombase\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bluecat\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bluecat\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bluejeansnetwork1638333611902\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bluejeansnetwork1638333611902\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"blueprismlimited-4827145\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/blueprismlimited-4827145\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bluesyntaxconsulting1617654548594\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bluesyntaxconsulting1617654548594\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bluetalon\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bluetalon\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bmc.ctm\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bmc.ctm\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bmcctm.test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bmcctm.test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"boardpacpvtltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/boardpacpvtltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bocada\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bocada\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"boemskats\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/boemskats\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"botanalytics\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/botanalytics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bowspritconsultingopcprivatelimited1596291408582\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bowspritconsultingopcprivatelimited1596291408582\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bravura-software-llc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bravura-software-llc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Brianjac.Symantec.CloudWorkloadProtection\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Brianjac.Symantec.CloudWorkloadProtection\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bricatainc1584472632111\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bricatainc1584472632111\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bright-computing\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bright-computing\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"brightcomputing\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/brightcomputing\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"brocade_communications\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/brocade_communications\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"brutale\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/brutale\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bryte\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bryte\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bssw\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bssw\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bt-americas-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bt-americas-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"buddhalabs\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/buddhalabs\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cadosecurityltd1626856705534\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cadosecurityltd1626856705534\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"calculated_systems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/calculated_systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"caloudi_corp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/caloudi_corp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"canadiancentreforcybersecurity1610638436359\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/canadiancentreforcybersecurity1610638436359\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Canonical\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Canonical\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"canonical-test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/canonical-test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"carto\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/carto\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cask\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cask\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"castaigroupinc1595243474856\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/castaigroupinc1595243474856\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"catechnologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/catechnologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"catonetworksltd1641478570665\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/catonetworksltd1641478570665\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cautelalabs\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cautelalabs\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cavirin\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cavirin\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cayosoftinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cayosoftinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cdatasoftware\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cdatasoftware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cds\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cds\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"celum-gmbh\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/celum-gmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"center-for-internet-security-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/center-for-internet-security-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"centeritysystems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/centeritysystems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"centrixeltd1594135951373\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/centrixeltd1594135951373\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"centrocomputerspa1584528117084\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/centrocomputerspa1584528117084\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"certifiedsecuritysolutionsinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/certifiedsecuritysolutionsinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"certivox\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/certivox\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cfd-direct\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cfd-direct\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"chain\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/chain\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"checkpoint\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/checkpoint\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"chef-software\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/chef-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Chef.Bootstrap.WindowsAzure\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Chef.Bootstrap.WindowsAzure\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"chunghwatelecom1587573688842\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/chunghwatelecom1587573688842\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cinchy\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cinchy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cinegy-gmbh\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cinegy-gmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ciphertechsinc1646670709341\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ciphertechsinc1646670709341\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"circleci\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/circleci\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cires21\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cires21\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cirruswaveinc1579234787943\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cirruswaveinc1579234787943\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cisco\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cisco\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"citrix\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/citrix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Citrix.ADC\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Citrix.ADC\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"clapsodeughaftungsbeschrnkt1626333173563\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/clapsodeughaftungsbeschrnkt1626333173563\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"clear-linux-project\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/clear-linux-project\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"clone-systems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/clone-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"clouber\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/clouber\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloud-checkr\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloud-checkr\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloud-cruiser\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloud-cruiser\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloud-infrastructure-services\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloud-infrastructure-services\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudaccelinc1628754426775\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudaccelinc1628754426775\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudbees\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudbees\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudbees-enterprise-jenkins\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudbees-enterprise-jenkins\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudbolt-software\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudbolt-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudboltsoftware1639523402532\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudboltsoftware1639523402532\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudboost\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudboost\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudcover\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudcover\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudenablers-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudenablers-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudentity\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudentity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudera\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudera\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudflare\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudflare\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudhouse\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudhouse\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudinfo-4919088\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudinfo-4919088\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudknox\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudknox\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudlanes\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudlanes\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudlink\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudlink\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"CloudLinkEMC.SecureVM\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/CloudLinkEMC.SecureVM\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudmavensolutions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudmavensolutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudneeti\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudneeti\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudplan-gmbh\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudplan-gmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudsecurity\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudsecurity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudsoft\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudsoft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudwhizsolutions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudwhizsolutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudwrxsconsultingltd1631029702055\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudwrxsconsultingltd1631029702055\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"clustrix\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/clustrix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cncf-upstream\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cncf-upstream\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"codaintelligence1606495376525\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/codaintelligence1606495376525\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"codelathe\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/codelathe\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"codenvy\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/codenvy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"codetwo\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/codetwo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cognexcorporation1613759804979\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cognexcorporation1613759804979\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cognexcorporation1647410785838\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cognexcorporation1647410785838\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cognitive-scale\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cognitive-scale\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cognizant\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cognizant\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cognosys\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cognosys\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cohesity\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cohesity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cohesitydev1592001764720\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cohesitydev1592001764720\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cohesive\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cohesive\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"coin-sciences-ltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/coin-sciences-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"collabcloudlimited\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/collabcloudlimited\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"collibranv1619508098620\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/collibranv1619508098620\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"commscopeinc1632135151062\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/commscopeinc1632135151062\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"commvault\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/commvault\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"compellon\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/compellon\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"composable\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/composable\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"comunity\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/comunity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"concentrationheatandmomentumlimited1616154387047\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/concentrationheatandmomentumlimited1616154387047\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Confer\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Confer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"confluentinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/confluentinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"conflux\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/conflux\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"connecting-software\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/connecting-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"consensys\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/consensys\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"containeraider\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/containeraider\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"contiamogmbh\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/contiamogmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"controlcase\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/controlcase\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"controlplane\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/controlplane\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"controlplanecorporation1609967567639\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/controlplanecorporation1609967567639\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"convertigo\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/convertigo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"corda\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/corda\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"core-stack\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/core-stack\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"corent-technology-pvt\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/corent-technology-pvt\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"CoreOS\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/CoreOS\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"couchbase\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/couchbase\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cpanel\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cpanel\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"credativ\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/credativ\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cristiesoftwareltd1599488127561\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cristiesoftwareltd1599488127561\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"crunchyard\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/crunchyard\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"crunchyardltd1623835391104\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/crunchyardltd1623835391104\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cryptocom1585727786636\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cryptocom1585727786636\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cryptosense1605170011574\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cryptosense1605170011574\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cryptzone\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cryptzone\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ctm.bmc.com\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ctm.bmc.com\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ctrliqinc1648673227698\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ctrliqinc1648673227698\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cubebackup\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cubebackup\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cyberark\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cyberark\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cybernetica-as\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cybernetica-as\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cygnalabscorp1646065782458\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cygnalabscorp1646065782458\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cyxtera\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cyxtera\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"d4t4_solutions-1164305\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/d4t4_solutions-1164305\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"daceitdbasensetrafficpulse1579892024934\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/daceitdbasensetrafficpulse1579892024934\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"danielsol.AzureTools1\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/danielsol.AzureTools1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Dans.Windows.App\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Dans.Windows.App\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Dans3.Windows.App\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Dans3.Windows.App\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dataart\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dataart\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"databricks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/databricks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datacore\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datacore\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Datadog.Agent\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Datadog.Agent\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datadynamicsinc1581991927942\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datadynamicsinc1581991927942\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datagapsinc1585348463636\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datagapsinc1585348463636\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dataguiseinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dataguiseinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dataiku\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dataiku\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datalayer\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datalayer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datanomers1584919038987\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datanomers1584919038987\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datanova\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datanova\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datapredsa\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datapredsa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dataroadtechnologiesllc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dataroadtechnologiesllc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datasciencedojo1586563145740\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datasciencedojo1586563145740\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datastax\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datastax\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datasunrise\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datasunrise\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datavirtualitygmbh\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datavirtualitygmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datometry\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datometry\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dbs-h\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dbs-h\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ddn-whamcloud-5345716\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ddn-whamcloud-5345716\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Debian\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Debian\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dece-4446019\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dece-4446019\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"decisosalesbv\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/decisosalesbv\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"deepcognitioninc1593512758156\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/deepcognitioninc1593512758156\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"deepsiginc1581610210151\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/deepsiginc1581610210151\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"deepsurfacesecurityinc1632943333445\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/deepsurfacesecurityinc1632943333445\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dellemc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dellemc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dell_software\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dell_software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"delphix\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/delphix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"deltapathlimited1592886319362\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/deltapathlimited1592886319362\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"denodo\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/denodo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"denyall\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/denyall\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"derdack\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/derdack\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"deskpro1650546806675\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/deskpro1650546806675\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"desktopstudioag1580294245574\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/desktopstudioag1580294245574\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"devfactory\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/devfactory\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"device42inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/device42inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"deviceauthorityinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/deviceauthorityinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"devolutionsinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/devolutionsinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"devopsgroup-uk\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/devopsgroup-uk\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"df-portal-user\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/df-portal-user\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dgsecure\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dgsecure\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Dh2ico\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Dh2ico\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dh2icompany\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dh2icompany\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dhi\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dhi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"diagramics\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/diagramics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dicomsystems1584107398321\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dicomsystems1584107398321\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"diehl-metering\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/diehl-metering\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"digisitesystems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/digisitesystems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"digitaldefenseinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/digitaldefenseinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"digitaloffice\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/digitaloffice\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"digitamizeinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/digitamizeinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"digitate\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/digitate\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"diladele\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/diladele\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dimensionalmechanics-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dimensionalmechanics-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"diqa\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/diqa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"diyatech\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/diyatech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"diyotta\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/diyotta\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"djiindustrialincus\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/djiindustrialincus\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"docker\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/docker\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dome9\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dome9\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dorabot\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dorabot\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dremiocorporation\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dremiocorporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"drizti\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/drizti\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"drone\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/drone\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dsi\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dsi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dundas\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dundas\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dyadic_security\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dyadic_security\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dynatrace\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dynatrace\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dynatrace.ruxit\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dynatrace.ruxit\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"e-magicinc1587696283171\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/e-magicinc1587696283171\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"eastwind-networks-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/eastwind-networks-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"easysoftwaresro1593005637384\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/easysoftwaresro1593005637384\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ebesllc1637780200500\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ebesllc1637780200500\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ecessa\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ecessa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"edevtech\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/edevtech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"edgelesssystems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/edgelesssystems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"edgenetworks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/edgenetworks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"edispheresoftwareprivatelimited1606199736428\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/edispheresoftwareprivatelimited1606199736428\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"education4sight\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/education4sight\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"eecservicesfzllc1604836615706\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/eecservicesfzllc1604836615706\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"egnyte\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/egnyte\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"egress1589289169584\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/egress1589289169584\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"eikonasystemsgmbh1601729310063\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/eikonasystemsgmbh1601729310063\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Elastic\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Elastic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"elasticbox\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/elasticbox\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"elecard\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/elecard\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"electric-cloud\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/electric-cloud\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"elevateiot\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/elevateiot\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"eleven01\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/eleven01\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"elfiqnetworks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/elfiqnetworks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"emercoin\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/emercoin\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"energisme1601990637842\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/energisme1601990637842\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"enforongo\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/enforongo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"engineering-ingegneriainformatica-spa1626786889850\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/engineering-ingegneriainformatica-spa1626786889850\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"engysltd1624364546407\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/engysltd1624364546407\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"enterprise-ethereum-alliance\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/enterprise-ethereum-alliance\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"enterprisedb-corp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/enterprisedb-corp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"enterpriseworx-it\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/enterpriseworx-it\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"epicgames\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/epicgames\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"epicgamesinc1633466121071\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/epicgamesinc1633466121071\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"eproe\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/eproe\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"equalum\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/equalum\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"equilibrium\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/equilibrium\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"equinix\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/equinix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ergoninformatikag1581586464404\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ergoninformatikag1581586464404\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"esdenera\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/esdenera\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ESET\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ESET\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"esetresearch1579795941720\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/esetresearch1579795941720\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"esri\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/esri\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"esyon\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/esyon\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ethereum\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ethereum\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"eurolinuxspzoo1620639373013\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/eurolinuxspzoo1620639373013\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"eventtracker\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/eventtracker\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"evertzmicrosystemsltd1586877923009\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/evertzmicrosystemsltd1586877923009\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"evostream-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/evostream-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"exact\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/exact\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"exasol\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/exasol\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"excelero1608461290726\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/excelero1608461290726\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"exivity\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/exivity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"exonar\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/exonar\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"f5-networks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/f5-networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"falainapteltd1604661424876\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/falainapteltd1604661424876\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"falconstorsoftware\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/falconstorsoftware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fatalsecurity1604924013537\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fatalsecurity1604924013537\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fatpipe-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fatpipe-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fenestrae-1035066\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fenestrae-1035066\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fidesys\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fidesys\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"filecatalyst\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/filecatalyst\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"filemagellc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/filemagellc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fiorano\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fiorano\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fireeye\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fireeye\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"firehost\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/firehost\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"firemon\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/firemon\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"firstderivativesplc1596469572732\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/firstderivativesplc1596469572732\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"flashgrid-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/flashgrid-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"flexbby\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/flexbby\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"flexbby-5255860\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/flexbby-5255860\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"flexify-io\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/flexify-io\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"flexxibleit\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/flexxibleit\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"flowmon\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/flowmon\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"flynet\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/flynet\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"foghorn-systems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/foghorn-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"forcepoint-llc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/forcepoint-llc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"forescout\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/forescout\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"foreseetiab1613650409016\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/foreseetiab1613650409016\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"formpipesoftwareab\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/formpipesoftwareab\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"forscene\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/forscene\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fortanix\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fortanix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fortinet\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fortinet\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fortycloud\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fortycloud\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"forumsystems1599756394904\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/forumsystems1599756394904\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fotopiatechnologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fotopiatechnologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"foxiteuropegmbh1585901066320\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/foxiteuropegmbh1585901066320\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"franzinc1593030725310\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/franzinc1593030725310\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fujitsu_fast\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fujitsu_fast\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fw\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fw\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"g2kgroupgmbh-4821943\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/g2kgroupgmbh-4821943\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gapteq\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gapteq\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gatlingcorp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gatlingcorp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gbs\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gbs\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gemalto-safenet\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gemalto-safenet\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Gemalto.SafeNet.ProtectV\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Gemalto.SafeNet.ProtectV\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"genesistechnologyinc1604912285911\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/genesistechnologyinc1604912285911\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"genuagmbhdevid1\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/genuagmbhdevid1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"genua_gmbh\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/genua_gmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"genymobile\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/genymobile\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gigamon-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gigamon-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"GitHub\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/GitHub\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gitlab\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gitlab\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gitlabinc1586447921813\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gitlabinc1586447921813\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gladinet-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gladinet-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"glantoninc1591876792991\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/glantoninc1591876792991\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"globalidsinc1596800540598\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/globalidsinc1596800540598\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"globalscape\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/globalscape\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"globalsolutions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/globalsolutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gluwareinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gluwareinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"graphistry\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/graphistry\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"graphitegtc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/graphitegtc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"great-software-laboratory-private-limited\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/great-software-laboratory-private-limited\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"greensql\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/greensql\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"greycorbelsolutions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/greycorbelsolutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gridgain\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gridgain\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"guardicore\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/guardicore\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gxchainfoundationltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gxchainfoundationltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"h2o-ai\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/h2o-ai\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hackerbay\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hackerbay\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hackershub\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hackershub\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"haivision\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/haivision\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"haivisionsystemsinc1580780591922\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/haivisionsystemsinc1580780591922\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"haltdoscompvtltd1587136166019\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/haltdoscompvtltd1587136166019\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hammerspace\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hammerspace\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hanu\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hanu\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"haproxy-technologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/haproxy-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"harmanconnectedservicesinc1594928575643\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/harmanconnectedservicesinc1594928575643\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"harpaitalia\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/harpaitalia\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hashhub\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hashhub\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hcl-technologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hcl-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"heimdall-data\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/heimdall-data\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"help-systems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/help-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"helpyio\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/helpyio\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"heretechnologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/heretechnologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hewlett-packard\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hewlett-packard\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hillstone-networks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hillstone-networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hitachi-solutions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hitachi-solutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hitachivantara\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hitachivantara\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"holo-industrie40softwaregmbh1600957636008\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/holo-industrie40softwaregmbh1600957636008\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hortonworks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hortonworks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hpe\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hpe\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"HPE.Security.ApplicationDefender\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/HPE.Security.ApplicationDefender\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"huawei\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/huawei\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hubstor-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hubstor-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hush-hush\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hush-hush\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hvr\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hvr\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hyperglance\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hyperglance\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hypergrid\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hypergrid\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hystaxinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hystaxinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hytrust\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hytrust\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"i-exceed-technology\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/i-exceed-technology\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iaansys\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iaansys\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ibm\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ibm\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ibm-alliance-global-1560886\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ibm-alliance-global-1560886\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ibm-alliance-usa-ny-armonk-hq-ibmstorage-6201192\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ibm-alliance-usa-ny-armonk-hq-ibmstorage-6201192\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ibm-usa-ny-armonk-hq-6275750-ibmcloud-aiops\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ibm-usa-ny-armonk-hq-6275750-ibmcloud-aiops\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iboss\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iboss\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iconics\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iconics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iconsulting-spa\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iconsulting-spa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"icubeconsultancyservicesinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/icubeconsultancyservicesinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iguazio-5069960\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iguazio-5069960\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ikan\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ikan\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iliimbiliimveyazlmsistemlerisanvetica1617000555584\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iliimbiliimveyazlmsistemlerisanvetica1617000555584\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"illuminainc1586452220102\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/illuminainc1586452220102\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"image-technologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/image-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"imaginecommunications\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/imaginecommunications\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"imperva\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/imperva\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"impetustechnologiesinc1591959591877\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/impetustechnologiesinc1591959591877\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"imprivatainc1580479939967\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/imprivatainc1580479939967\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"incorta\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/incorta\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"incredibuild\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/incredibuild\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"indexima1594300233028\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/indexima1594300233028\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"industry-weapon\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/industry-weapon\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"industryweapon1587162781833\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/industryweapon1587162781833\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"inenprocesosyplataformasdetisderldecv1615482385424\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/inenprocesosyplataformasdetisderldecv1615482385424\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"inergybv1637141413454\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/inergybv1637141413454\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"infinitesoftwarecorporation1579223971125\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/infinitesoftwarecorporation1579223971125\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"infiotinc1614034091460\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/infiotinc1614034091460\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"influxdata\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/influxdata\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"infoblox\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/infoblox\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"infogix\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/infogix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"infolibrarian\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/infolibrarian\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"informatica\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/informatica\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"informationbuilders\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/informationbuilders\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"informationtechnologies_ltd_1179601\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/informationtechnologies_ltd_1179601\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"infotecsinternetsecuritysoftwaregmbh1636129257584\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/infotecsinternetsecuritysoftwaregmbh1636129257584\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"infront-consulting-group-ltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/infront-consulting-group-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"infscapeughaftungsbeschrnkt\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/infscapeughaftungsbeschrnkt\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ingenieurstudiohollaus1579587745438\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ingenieurstudiohollaus1579587745438\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ingrammicro\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ingrammicro\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"innomindssoftware\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/innomindssoftware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"innosepgmbh1618331344164\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/innosepgmbh1618331344164\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"innovatorartificialtechsrl1619180685551\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/innovatorartificialtechsrl1619180685551\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"innovtech\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/innovtech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"instight-technology\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/instight-technology\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"integration-objects\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/integration-objects\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"intel-bigdl\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/intel-bigdl\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"intel-fpga\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/intel-fpga\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"intellicus-technologies-pvt-ltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/intellicus-technologies-pvt-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"intelligent-plant-ltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/intelligent-plant-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"intel_corporation\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/intel_corporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"internationaltrustmachinescorporation1582190033865\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/internationaltrustmachinescorporation1582190033865\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"internet20inc1635882446190\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/internet20inc1635882446190\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"intersystems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/intersystems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"intigua\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/intigua\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"intigua1638692632641\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/intigua1638692632641\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"introspecioltd1629872641188\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/introspecioltd1629872641188\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iofabric\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iofabric\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ipinfusion1590066770520\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ipinfusion1590066770520\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ipswitch\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ipswitch\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iqsol\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iqsol\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iquate\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iquate\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iquest\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iquest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"irion\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/irion\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ishlangu-load-balancer-adc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ishlangu-load-balancer-adc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"issp-corporation\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/issp-corporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"isvtestukbigcat\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/isvtestukbigcat\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"isvtestuklegacy\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/isvtestuklegacy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"it4bizdoo\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/it4bizdoo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"itelios\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/itelios\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"itrsgroupltd1620310702149\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/itrsgroupltd1620310702149\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ivanti-inc-pcs\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ivanti-inc-pcs\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ivanti-nzta\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ivanti-nzta\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ivix1595238749040\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ivix1595238749040\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iwnamespace\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iwnamespace\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"izenda\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/izenda\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"jamcracker\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/jamcracker\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"javlinltd1579185328273\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/javlinltd1579185328273\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"jedox\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/jedox\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"jelastic\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/jelastic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"jetnexus\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/jetnexus\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"jetware-srl\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/jetware-srl\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"jfrog\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/jfrog\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"jm-technology-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/jm-technology-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"jogetinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/jogetinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"johnsnowlabsinc1646051154808\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/johnsnowlabsinc1646051154808\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"juniper-networks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/juniper-networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"justanalytics\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/justanalytics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kaazing\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kaazing\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kadenallc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kadenallc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kali-linux\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kali-linux\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kalkitech\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kalkitech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kaminarioinc1588672951794\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kaminarioinc1588672951794\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Kaspersky.Lab\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Kaspersky.Lab\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"KasperskyLab.SecurityAgent\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/KasperskyLab.SecurityAgent\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kaspersky_lab\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kaspersky_lab\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kazendi\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kazendi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kelverion\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kelverion\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kemptech\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kemptech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kepion\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kepion\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"KevlarExtensions.M365Security.SecureOS\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/KevlarExtensions.M365Security.SecureOS\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"KevlarExtensions.M365SecurityHostIDS\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/KevlarExtensions.M365SecurityHostIDS\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"KevlarExtensions.M365SecurityInventory\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/KevlarExtensions.M365SecurityInventory\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"KevlarExtensions.M365SecurityInventory.NameChangeTest\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/KevlarExtensions.M365SecurityInventory.NameChangeTest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"KevlarExtensions.M365SecurityODL\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/KevlarExtensions.M365SecurityODL\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"KevlarExtensions.M365SecurityTLSExtension\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/KevlarExtensions.M365SecurityTLSExtension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kinetica\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kinetica\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kinvolk\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kinvolk\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"knime\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/knime\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kobalt\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kobalt\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kognillc1600118221163\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kognillc1600118221163\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kognitivsparkinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kognitivsparkinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"konginc1581527938760\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/konginc1581527938760\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"konsys-ltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/konsys-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"koverseinc1588716263110\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/koverseinc1588716263110\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kryonsystems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kryonsystems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"krypc-technologies-pvt-ltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/krypc-technologies-pvt-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kyligence\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kyligence\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kyvos-insights-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kyvos-insights-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lab3solutions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lab3solutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lancom-systems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lancom-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lansa\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lansa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lastline\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lastline\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"launchnodesltd1644561451121\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/launchnodesltd1644561451121\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"leap-orbit\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/leap-orbit\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lenovosoftware1604394104439\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lenovosoftware1604394104439\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"leostream-corporation\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/leostream-corporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lepide-software\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lepide-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"levacloudllc1602151818089\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/levacloudllc1602151818089\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"libelleag\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/libelleag\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"liberatii\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/liberatii\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"libraesva\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/libraesva\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"liebsoft\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/liebsoft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lightning-analyticsinc1582000647396\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lightning-analyticsinc1582000647396\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"linuxbasedsystemsdesignltd1580878904727\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/linuxbasedsystemsdesignltd1580878904727\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"liquid-files\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/liquid-files\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"liquidware\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/liquidware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"literatu\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/literatu\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"litespeedtechnologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/litespeedtechnologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"litespeed_technologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/litespeed_technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"litionenergiegmbh1580128829115\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/litionenergiegmbh1580128829115\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"litmusautomation1582760223280\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/litmusautomation1582760223280\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"llcitpro\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/llcitpro\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lnw-softgmbh\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lnw-softgmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"loadbalancer\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/loadbalancer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"logicflowag1638535407949\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/logicflowag1638535407949\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"logsign\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/logsign\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"logstarecorp1635838645101\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/logstarecorp1635838645101\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"logtrust\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/logtrust\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"logzio\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/logzio\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"looker\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/looker\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lotus_beta_analytics\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lotus_beta_analytics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lti-lt-infotech\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lti-lt-infotech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"luminate-security\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/luminate-security\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"M365Security.KevlarExtensions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/M365Security.KevlarExtensions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"M365SecurityInventory\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/M365SecurityInventory\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"machinesense\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/machinesense\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"madhavajay1632269232059\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/madhavajay1632269232059\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"maidenhead-bridge\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/maidenhead-bridge\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"manageengine\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/manageengine\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mapd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mapd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"maplelabsinc1623932715330\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/maplelabsinc1623932715330\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mapr-technologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mapr-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"marand\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/marand\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"marketplace-rdfe-caps\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/marketplace-rdfe-caps\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"marklogic\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/marklogic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"massiveanalytic-\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/massiveanalytic-\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mathworks-deployment\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mathworks-deployment\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mathworks-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mathworks-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"matillion\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/matillion\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mavinglobal\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mavinglobal\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"McAfee.EndpointSecurity\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/McAfee.EndpointSecurity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"McAfee.EndpointSecurity.test3\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/McAfee.EndpointSecurity.test3\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"meanio\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/meanio\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"media3-adobe\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/media3-adobe\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"media3-technologies-llc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/media3-technologies-llc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mediatekinc1586141563888\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mediatekinc1586141563888\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mendix\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mendix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"merlynnintelligencetechnologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/merlynnintelligencetechnologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"meshifyappinc1622759451429\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/meshifyappinc1622759451429\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"messagesolution\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/messagesolution\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"metaswitch\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/metaswitch\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mettainnovations-4900054\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mettainnovations-4900054\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mfe_azure\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mfe_azure\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mfiles\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mfiles\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mico\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mico\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"micro-focus\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/micro-focus\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microlinkpcukltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microlinkpcukltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microolap\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microolap\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsecpteltd1634010681688\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsecpteltd1634010681688\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-ads\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-ads\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-agci-gaming\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-agci-gaming\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-aks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-aks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-avere\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-avere\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-azure-batch\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-azure-batch\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-azure-compute\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-azure-compute\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-azure-hdinsight\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-azure-hdinsight\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-crypto\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-crypto\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-dsvm\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-dsvm\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-hyperv\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-hyperv\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-minecraft\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-minecraft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AdminCenter\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AdminCenter\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AKS\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AKS\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.ActiveDirectory\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.ActiveDirectory\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.ActiveDirectory.LinuxSSH\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.ActiveDirectory.LinuxSSH\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Applications\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Applications\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Automation.HybridWorker\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Automation.HybridWorker\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Automation.HybridWorker.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Automation.HybridWorker.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.AzureDefenderForServers\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.AzureDefenderForServers\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.AzureDefenderForSQL\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.AzureDefenderForSQL\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.AzureHybridBenefit\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.AzureHybridBenefit\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Backup.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Backup.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Backup.Test.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Backup.Test.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Batch\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Batch\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.ChangeTracking\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.ChangeTracking\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.ChangeTracking.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.ChangeTracking.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.ChangeTrackingAndInventory\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.ChangeTrackingAndInventory\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Chaos\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Chaos\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Compute.Security\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Compute.Security\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.ContainerUpstream\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.ContainerUpstream\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.DefenderForServers.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.DefenderForServers.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.DefenderForServers.Test2\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.DefenderForServers.Test2\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Diagnostics\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Diagnostics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Diagnostics.Build.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Diagnostics.Build.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Diagnostics.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Diagnostics.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test012be407-61ea-4e45-a2c3-71a45999ca21-20191228083800\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test01971384-3044-413b-8b1c-33b5d461bf23-20200107051823\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test0225ec7d-b36c-4ac8-82f0-aa4fafaf10a9-20200111051346\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test025e16a1-328d-45a2-b7e3-71f7e4cde046-20191229064028\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test02d1f941-5607-4757-8df7-fd8c5631ab45-20200103083810\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test039abd7f-360c-42a1-ad5d-77527c519286-20191002233412\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test04a0f157-c6fb-4595-b6ca-6c82a2338063-20200108101451\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test0737f33e-63e0-4ba9-b04b-b93a1de4e997-20200106083639\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test0a44d7be-63fa-418d-a7b6-89a44dd21894-20200107052935\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test0d01b487-7f79-4d87-b330-5c025068db45-20191004190331\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test0d643748-e6fe-41ad-b4d3-89a289a0cee0-20191003055620\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test0df83c51-5bb9-43f8-8ae9-bc896ea64f78-20200110220221\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test0f02c246-7e65-4010-9367-ca4530c3897e-20191004190223\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test157494ec-e788-43b0-8d26-a17e39ee07cc-20191002011945\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test1661d154-b623-4507-8a56-3a89812c456c-20200111083940\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test17bbd860-f21d-40ab-9026-16e05f2907f0-20200106083451\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test194e2333-13cd-43e3-b0a4-c8cdcf1a3600-20200110211106\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test1bc26b19-b8d8-41f9-a26d-818f277bdf93-20200101113139\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test1c840053-9213-4f2a-8f2e-9bf2297908bd-20200108101424\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test1d7bba72-69f1-43cd-a38c-41ce0b5f4bae-20200109050041\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test1f7a8078-50e7-4a3a-91eb-d178fd4c403b-20191002233353\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test1fef1fdc-57ba-46a8-a879-475ba7d45a7a-20200106083509\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test21332f15-f78d-4d31-afac-79b9dc989432-20191231175840\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test22f10717-6939-4003-a9ce-38effd8b77d6-20191007191355\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test2334e6e3-bb72-4241-a36f-c2429d69bc0b-20200106050834\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test24fa9eb5-1c59-4425-b61c-30fd638c2a45-20191003203802\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test2521a545-ed61-4a15-bed1-aba7ce1d81ee-20200106050804\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test25c6fe61-1282-43c2-867b-b5039219989c-20200105081851\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test27515c8c-6773-4f92-afb0-35691cc6e3b6-20200103083821\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test28012680-48e7-4903-877f-2f29464e63d5-20191229033424\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test29a7a529-d293-4728-9d7f-257ed996e64f-20200108081759\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test2a5f2d2c-b8e3-46c2-850d-a1641c024fe7-20200107084228\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test2ce856af-ab17-48f2-ba3e-bcd9af091061-20200110013246\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test2e012e83-6361-4365-963f-6ced8a08e91c-20200110211254\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test2ecf67b2-fb63-4461-b6a6-7026c4fb1168-20191002214026\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test2ede6564-c7cc-44cb-a1a8-902505c9829d-20191003020742\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test2f4ebc17-e27e-48d9-9cc3-ff933c21884e-20200106092410\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test349ee02c-af9b-4663-a963-823b40eefed8-20200108083612\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test34cf6b13-b78e-478b-b596-8b661629371d-20191007195455\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test36cc5b60-2b23-4a04-bf95-f7865e1141cf-20200110085718\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3712fca9-5cdd-4609-be69-b02aedc5c55c-20200107084115\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3772d042-92e2-4bcb-99b7-8a6a119cc088-20191231182808\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test37a6dd64-d44d-465e-85bc-3bc38be90350-20200104083535\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test381074d5-7156-472b-801a-b35f8fef4cc6-20200105050612\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3877a44d-4c48-40db-80eb-227272d5acd6-20200110103540\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test38ecd28e-7018-4672-840c-3044a5e7a6b5-20200111084208\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test395a0b49-442a-450c-8a1f-65b0aa3bcf47-20200105083839\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3971b300-edff-44a8-b61b-7f9b7460a8d6-20191003002234\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3adeec20-7458-4b3d-af26-0b6bc2aae3eb-20200103083751\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3b20dd96-f3e4-4798-998d-8c433c2449a7-20200108083635\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3ce2fd4a-8b5a-4c7e-b08d-3e48fc0f45e7-20200104083825\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3d499ca7-cc8d-41cc-a6dc-ffb1a4ac4942-20200107053004\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3db7240e-5e42-4d6d-b024-cc9fce3c828b-20200105083520\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3f6b7341-635f-48d5-a36d-be5dfe3002c4-20200105050937\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3fc26934-ede2-4482-ad5e-f66f6135d4a6-20191228055558\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test406d077c-6017-4062-bc96-f809147a2331-20200106050748\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test4302336c-e039-4e70-bcb6-9275f6089e4a-20200108144821\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test453a087e-8435-46db-970a-4ee633cc4c4a-20200102083458\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test46b73afa-2259-4aff-81e1-a58bf24b59aa-20191229033459\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test4a3399ee-82ea-46aa-9e3a-5434b588e3b6-20191228013518\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test4eb7a185-527b-4b9f-93a8-7f1cec9d062e-20191231151207\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test520a0915-f9f0-4da4-9fa1-1b74fc1470aa-20200102083505\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test5397960f-023b-4979-9a8b-800d049045a4-20191007195417\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test55a36387-8a3f-4159-9884-29b97539a253-20200109080443\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test5645f186-4ee5-4209-af37-423660e3318c-20191231175947\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test58b4461d-4d2d-4395-b6d2-ab83d4d8c62f-20200111001002\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test5b0bf447-d98d-429d-8334-c032d197c743-20191003203846\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test5bc90367-1ea2-400b-a40c-321081bae3f3-20200108145035\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test5bd0562f-e939-456f-a6ee-c848d1aba616-20200101151641\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test5e4efe90-916c-4c96-802c-1508a5b6da78-20191231151150\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test5f8f0c10-cc3c-45ec-a068-fb1c7edfa0d9-20200101145958\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test60a000b7-286c-4b2b-9137-bbc088736419-20200108144920\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test6192a01b-ba47-4d08-904a-71647a49a112-20191008041625\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test62835538-89c6-4f66-9034-f7a4b176c615-20191007234245\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test651e4ad2-ee4a-462e-a506-b56b1969f5d0-20200110230749\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test691d94e5-c40c-4568-94b0-09b08aea42b1-20200106050808\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test6aa3643c-011a-4180-877f-cad955a8e664-20191007234642\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test6cfb469b-8478-468f-9bb5-691affd32abb-20200107083803\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test6d36b6b2-7956-4e62-91c1-c33792fd4bb1-20200110123203\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test6e28168e-a9c8-4c0a-8b40-60c2a1502d43-20200108052802\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test6eb763ac-7fbe-4e44-bee7-aad035ee2a7d-20200110084429\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test6efec253-f625-46f0-9d74-324f69e963d8-20200107070514\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test70fa7e4c-3122-4ff7-aec6-fe75ab660a01-20200108105900\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test710a5fbf-06c7-46ac-b96d-a29d2586422f-20200108083639\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test71d72489-67c6-45e2-b1e6-a19546efc823-20200105112903\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test721fccf1-2b3e-44b6-908f-51b910e88b09-20200111104931\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test742d0189-9e41-4f1b-8ad3-31c05d34903b-20200111103247\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7836a97c-f56e-48d0-8b5d-61e79aeb3226-20200111071656\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test78666b2e-25c8-4a48-931a-3131a0317d73-20191002194352\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test79f13508-fcbd-47b9-988f-1c21ef5e7f2e-20191002015429\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test79fb90ce-4691-4212-99a7-6e4069bd5984-20191007234256\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7a8cf687-6a21-4181-ba98-902fee717bd3-20200104103216\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7aabf813-6644-483a-b9e0-ba6f8973ba1f-20191002232822\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7c96c10a-0c8f-4ab0-83fd-1ad66a362e33-20191229033458\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7e79b6ff-2559-44fe-b3ba-afaa68d63636-20200108112116\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7ea372f7-ea7e-4b9e-bbad-4f35c1567aa2-20200108052736\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7fac3d04-98a5-4fc4-904e-9ea3b86eadc2-20200106050751\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7fe20dd6-9ed9-4126-bb1d-031c01ac4550-20200101114504\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7ff974d9-c841-4249-b05b-bbf663cb4605-20200106084104\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test815bd4d5-fc24-4a47-be20-063c4809902c-20200109050508\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test817654d0-2109-4d95-9284-8c8a9d960d08-20200108053758\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test821ca3b6-dd05-4e80-b3d8-74ba03b2609b-20191231151151\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test8285dc3e-637d-4d46-9695-adc39cbe7d2f-20200108144457\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test828aae03-9239-4938-a303-c23c42311878-20200102083419\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test84afd814-5098-49ab-af99-e50350b5898b-20200110211134\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test85b08563-b15f-4202-a0bc-f2bc2df2c71a-20200107053335\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test88aac268-c087-4481-b78e-99b920784a33-20200101084853\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test88dbd442-a8cc-4874-81a0-d3192c61df62-20191001224544\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test894dfb75-a00f-4f0c-894c-cae1c9846ad3-20200105051803\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test8d09bf4d-ee63-4ab1-a986-a4b802418403-20200111051447\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test8d4d652b-4f05-4e99-93dd-78b9a36b5c78-20191003203755\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test8de64739-43d8-4f84-af65-fdb3d0885288-20200108053543\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test8e324c65-a51d-4eeb-9ec8-d5f8662dc041-20191228165107\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test8e564580-8e53-4300-85f1-bf7f31dd37ff-20200107013348\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test8f458ca7-8898-4d58-b93d-bfb0c3da028c-20200109050310\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test901cd6ca-5565-4552-a3de-d204d01935c0-20200108083706\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test907b39e5-4008-4b55-93a0-18e9697b9cf3-20200108053817\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test90c2be7c-d7ec-4abf-9fad-fef90fc3ef4d-20191004022234\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test922db678-6ee8-43d5-86ff-6a86e132d332-20200107085231\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test93b88aec-5277-4b1b-910c-7008e972ce91-20200107013304\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test95a9104b-6cba-42d8-82ff-cc37e5ac44db-20200108081723\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test96da1605-19e0-46eb-9ce0-53e840f5e2cb-20200101111729\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test996066b2-7d29-400f-929b-e343a21046f7-20191231151212\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test99663fff-ed21-4a91-9687-1a6da2abb033-20200106084508\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test9eb5efa5-c3c1-4c13-80a6-11f5eba67372-20200108144852\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testa3791896-b1fc-491e-ba0d-aefcd8d9e52a-20200105083503\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testa37ff709-a078-45a0-8187-41733df8e101-20200109050003\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testa4c5fe4e-936e-4be1-a612-a331aff54a8c-20200111105055\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testa59bce1d-e32c-423d-a86e-945d4aeb98b4-20200107051821\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testa604c059-8279-4f4d-a354-eec27222a06c-20200111051514\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testa71fefb1-0d9c-4fb3-8d3d-5dcd12d72b77-20200103103221\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testa748013d-c5a6-44f9-88eb-43167207c742-20200111051402\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testaab67022-4f2b-420d-a06a-2c4045110cdf-20191229033144\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testacab9541-280f-4491-9f49-ac57653f0a07-20200105083839\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testad298437-0349-4cc7-88a9-d8aabcba9df1-20191002233431\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testadd68286-f9e0-4ab1-a526-d8f3cf0f054e-20200105084128\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testade4c52b-18f5-4b67-8e93-945358ce4f7d-20191007234259\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testae421c1d-0211-4ef2-b372-564ce8ad484a-20200110104035\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testafbbd8bf-aec5-48bf-8fea-73fa15ccc315-20191001224727\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testb15148bf-78d2-42d4-ad08-b3ad8fb4b122-20200101084759\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testb4237708-3688-40ea-85a2-275c05f4d100-20191228083519\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testb799a18f-be45-4c5c-8438-163ac2e1f1e7-20191004190529\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testb7cee88a-e5ac-4af4-99c8-7247020b00c3-20200105051201\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testb7df0d9a-27c0-4ca5-b692-08dd90387b98-20200111083443\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testbbf6bf32-4bd0-4381-b8f7-2658f585df4d-20191003203846\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testbeea1376-166a-4b1a-8923-c907cc9737d9-20200107013336\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testbf9154e9-6166-48c2-86fe-1f331be606d7-20200107051823\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc0d7c3c5-23b8-489c-a5e0-ae87c681b696-20200101083539\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc193f31a-5186-4e93-84f6-0e4ab87b73c1-20200107052937\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc1c7e8dc-fa8c-47d9-8305-de6d1451b939-20200101085248\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc1d0c917-e2ae-430c-a2ca-383fb0fda046-20191007235839\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc23a3fbb-6e95-4c0d-94fc-c8ab14dddf1c-20191231151117\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc2697630-6247-411a-94b3-c2974ad8cbee-20191007195417\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc466b80f-670f-4383-89b8-44e0d509fa20-20191002000516\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc5c8d9bd-75fa-4db3-9f34-5d7b7098584c-20191003203851\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc8b6d14b-a5db-48e0-bfad-a2818d432bea-20200104083443\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc933efa8-c553-4b93-884f-b7221d9ca789-20191228083750\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testcbe8ab80-46ef-49b1-a7bb-4e3d6e50e49f-20200104050811\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testccc0b5e6-9b0d-451a-8ac4-6f4af293b913-20200106092645\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testcec64786-04b1-487c-80ec-050da646fb1c-20191005123412\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testd104a52f-eba2-401d-8e7f-a841c90f7712-20191228083553\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testd724cea4-0d3c-4539-b2ff-be08fb23a67e-20200107083714\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testd8e60bac-27ff-4fba-90b8-732c9c5ff91c-20191228083751\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testd99db4a5-7683-4584-89ad-fefd711de284-20191004190210\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testd9b4309a-67bc-4cd8-ac47-094cb20ca6aa-20200101090202\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testda3320e0-28f2-4146-a002-e06296362711-20191004190115\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testda714121-3240-4253-90c3-48c43f115c90-20200102083419\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testdb357558-60b4-4ee3-9ec3-ba22c5d827fb-20191004020617\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testdc7230e9-df6d-4edd-a57c-ef7e0432c463-20191002011345\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testdccb59de-436f-4935-bed6-2e677dcaf36a-20200109111802\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testde985b23-9333-4f6e-a5e8-82025a38b2af-20200102083510\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Teste271da3e-cbcb-4ee7-8770-f297f414451f-20191003015540\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Teste4070edd-aec0-455d-8a79-aecdb7170b6d-20191007234642\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Teste42f351a-4da0-4f0d-93e9-ef1d98e06659-20200108083633\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Teste66ca23c-f4bf-4eb3-8418-139364d19e7d-20200107062643\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Teste78b1ab2-1380-48ab-9923-0276cdb7198b-20191001224742\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Teste8607e14-b4f8-472a-bd5b-893b8d9612e6-20200112045941\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Teste980b80e-3add-42c0-bc98-a84020b2d128-20200108101640\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Tested79dba9-2d38-4ea9-a01c-56e94b30ca7a-20191007195447\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testee9dcf5f-f7c4-4192-a8f4-28e9bc7d0f7c-20191001225005\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testefbb340a-b68b-4200-872b-d05e7d29f92d-20191007195432\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testf1fc0559-6740-48dd-9501-2b933c731d52-20200103083458\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testf41dfc97-bb51-4fba-86ca-a6f2695c415a-20200107050834\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testf5784447-83ed-4c00-8764-ea0f932aafa2-20200106085748\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testf6128ef6-c13c-420e-8088-0710888ce88b-20200109050003\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testf863ab2c-ada9-4646-84c7-1f83a82375d7-20191229033226\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testfac552a7-418f-4baa-8f51-d199ceff5c68-20200103050817\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testfb7be054-5c15-494f-822c-b64f9a36e2f3-20200105051753\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testfc5c7585-6c9a-4aa4-a7c4-1223a94e00c7-20200104083552\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.FileServer.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.FileServer.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.FleetDiagnostics\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.FleetDiagnostics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.FleetDiagnostics.Dev\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.FleetDiagnostics.Dev\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Geneva\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Geneva\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.KeyVault\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.KeyVault\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.KeyVault.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.KeyVault.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.LabServices\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.LabServices\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.LabServices.test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.LabServices.test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.Agent\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.Agent\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.Dev\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.Dev\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.Dev.INT\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.Dev.INT\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.Dev.SCALE\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.Dev.SCALE\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.Dev.TEST\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.Dev.TEST\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.GuestHealth\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.GuestHealth\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.DEV\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.DEV\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.INT\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.INT\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.SCALE\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.SCALE\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.TEST\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.TEST\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.INT.Dev\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.INT.Dev\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.SCALE.Dev\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.SCALE.Dev\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.TEST.Dev\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.TEST.Dev\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.WorkloadInsights.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.WorkloadInsights.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.WorkloadInsightsTest.newnamespace\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.WorkloadInsightsTest.newnamespace\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.Workloads\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.Workloads\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.Workloads.Dev\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.Workloads.Dev\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitoring.DependencyAgent\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitoring.DependencyAgent\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitoring.DependencyAgent.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitoring.DependencyAgent.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Networking.DNS\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Networking.DNS\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Networking.SDN\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Networking.SDN\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.NetworkWatcher\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.NetworkWatcher\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.NetworkWatcher.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.NetworkWatcher.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.OpenSSH\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.OpenSSH\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Performance.Diagnostics\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Performance.Diagnostics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Performance.Diagnostics.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Performance.Diagnostics.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.RecoveryServices\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.RecoveryServices.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices.SiteRecovery\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.RecoveryServices.SiteRecovery\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices.SiteRecovery2\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.RecoveryServices.SiteRecovery2\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices.WorkloadBackup\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.RecoveryServices.WorkloadBackup\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices.WorkloadBackup.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.RecoveryServices.WorkloadBackup.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.AntimalwareSignature\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.AntimalwareSignature\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.AntimalwareSignature.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.AntimalwareSignature.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.Dsms\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.Dsms\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.Dsms.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.Dsms.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.LinuxAttestation\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.LinuxAttestation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.LinuxTestAttestation\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.LinuxTestAttestation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.Monitoring\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.Monitoring\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.Monitoring.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.Monitoring.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.Monitoring.Testing\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.Monitoring.Testing\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.TestWindowsAttestation\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.TestWindowsAttestation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.WindowsAttestation\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.WindowsAttestation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.WinTestAttestation\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.WinTestAttestation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Sentinel.DnsExtension.Dev\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Sentinel.DnsExtension.Dev\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.ServiceFabric.MC\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.ServiceFabric.MC\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.ServiceFabric.MC.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.ServiceFabric.MC.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.SiteRecovery.Stage\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.SiteRecovery.Stage\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.SiteRecovery.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.SiteRecovery.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.SiteRecovery2.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.SiteRecovery2.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Test.Identity\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Test.Identity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WindowsFabric.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WindowsFabric.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.ReleasePipeTest\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.ReleasePipeTest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.ReleasePipeTest.INT\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.ReleasePipeTest.INT\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.ReleasePipeTest.TEST\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.ReleasePipeTest.TEST\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test1\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test2\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test2\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test3\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test3\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test4\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test4\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test5\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test5\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test5.INT\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test5.INT\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test5.TEST\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test5.TEST\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.VincentTest\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.VincentTest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.VincentTest2\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.VincentTest2\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.VincentTest3\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.VincentTest3\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.VincentTest4\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.VincentTest4\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.TestTest\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.TestTest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.TestTest.INT\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.TestTest.INT\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.TestTest.TEST\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.TestTest.TEST\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Windows.ReleasePipeTest.INT\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Windows.ReleasePipeTest.INT\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Windows.ReleasePipeTest.TEST\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Windows.ReleasePipeTest.TEST\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoring\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoring.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoringTest\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoringTest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureData\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureData\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureData.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureData.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.Canary\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights.Canary\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.Corp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights.Corp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.Linux.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights.Linux.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.LinuxTest\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights.LinuxTest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.Meya0206\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights.Meya0206\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.MeyaCorp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights.MeyaCorp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.Testing\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights.Testing\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureSecurity.JITAccess\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureSecurity.JITAccess\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.CloudBackup.Workload.Extension\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.CloudBackup.Workload.Extension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.CloudBackup.Workload.Extension.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.CloudBackup.Workload.Extension.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Compute\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Compute.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Compute.TestSar\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute.TestSar\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.CPlat.Core\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.CPlat.Core\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.CPlat.Core.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.CPlat.Core.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Dcsswe.Extensions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Dcsswe.Extensions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.EnterpriseCloud.Monitoring\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.EnterpriseCloud.Monitoring.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.EnterpriseCloud.Monitoring.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Golive.Extensions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Golive.Extensions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.GuestConfig.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.GuestConfig.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.GuestConfiguration\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.GuestConfiguration\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.GuestConfiguration.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.GuestConfiguration.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.GuestConfiguration.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.GuestConfiguration.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.HpcCompute\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.HpcCompute\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.HpcCompute.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.HpcCompute.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.HpcPack\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.HpcPack\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Interceptor\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Interceptor\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.M365\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.M365\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.M365SecurityConfiguration.Kevlar.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.M365SecurityConfiguration.Kevlar.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.ManagedIdentity\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.ManagedIdentity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.ManagedServices\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.ManagedServices\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.ManagedServices.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.ManagedServices.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.MonitoringAgent.Extension\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.MonitoringAgent.Extension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Network\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Network\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.OSTCExtensions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.OSTCExtensions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.OSTCExtensions.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.OSTCExtensions.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.OSTCExtensions.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.OSTCExtensions.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.OSTCExtensions.Testing\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.OSTCExtensions.Testing\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Powershell\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Powershell\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Powershell.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Powershell.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Powershell.Test01\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Powershell.Test01\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.SecurityManagement.Kevlar\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.SecurityManagement.Kevlar\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Sentinel.AzureMonitorAgentExtensions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Sentinel.AzureMonitorAgentExtensions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.SoftwareUpdateManagement\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.SoftwareUpdateManagement\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.SoftwareUpdateManagement.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.SoftwareUpdateManagement.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.SqlServer.Managability.IaaS.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.SqlServer.Managability.IaaS.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.SqlServer.Management\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.SqlServer.Management\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.SqlServer.Management.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.SqlServer.Management.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.SystemCenter\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.SystemCenter\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.SystemCenter.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.SystemCenter.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Test.Azure.Workloads\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Test.Azure.Workloads\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.TestSqlServer.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.TestSqlServer.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.ETWTraceListenerService\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.Azure.ETWTraceListenerService\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.RemoteDebug\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.Azure.RemoteDebug\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.RemoteDebug.Json\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.Azure.RemoteDebug.Json\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.ServiceProfiler\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.ServiceProfiler\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.Services\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.Services\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.WindowsAzure.DevTest\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.WindowsAzure.DevTest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.WindowsAzure.DevTest.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.WindowsAzure.DevTest.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.WindowsAzure.RemoteDebug\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.WindowsAzure.RemoteDebug\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.WindowsAzure.Test.RemoteDebug\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.WindowsAzure.Test.RemoteDebug\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Windows.Azure.Extensions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Windows.Azure.Extensions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Windows.AzureRemoteApp.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Windows.AzureRemoteApp.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Windows.RemoteDesktop\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Windows.RemoteDesktop\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.WindowsAdminCenter\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.WindowsAdminCenter\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.WindowsAdminCenter.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.WindowsAdminCenter.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.WindowsAzure.Compute\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.WindowsAzure.Compute\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.WindowsAzure.Compute.test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.WindowsAzure.Compute.test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.WVD\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.WVD\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoftagciuk\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoftagciuk\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoftazurecituswarp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoftazurecituswarp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftAzureSiteRecovery\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftAzureSiteRecovery\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftBizTalkServer\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftBizTalkServer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftCBLMariner\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftCBLMariner\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoftcmotest\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoftcmotest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoftcorporation1602274591143\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoftcorporation1602274591143\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoftcorporation1620407702632\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoftcorporation1620407702632\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftDynamicsAX\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftDynamicsAX\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftDynamicsGP\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftDynamicsGP\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftDynamicsNAV\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftDynamicsNAV\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoftfarmbeats\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoftfarmbeats\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftHybridCloudStorage\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftHybridCloudStorage\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftOSTC\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftOSTC\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftPowerBI\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftPowerBI\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftRServer\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftRServer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftSharePoint\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftSharePoint\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftSQLServer\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftSQLServer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftTestLinuxPPS\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftTestLinuxPPS\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftVisualStudio\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftVisualStudio\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftWindowsDesktop\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsDesktop\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftWindowsServer\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsServer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftWindowsServerHPCPack\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsServerHPCPack\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft_iot_edge\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft_iot_edge\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft_javaeeonazure_test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft_javaeeonazure_test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microstrategy\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microstrategy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"midasolutions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/midasolutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"middleware\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/middleware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"midfin\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/midfin\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"midvision\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/midvision\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mihupcommunicationspvtltd1599046998010\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mihupcommunicationspvtltd1599046998010\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mindcti\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mindcti\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"minio\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/minio\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"miraclelinux\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/miraclelinux\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"miracl_linux\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/miracl_linux\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"miri-infotech-pvt-ltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/miri-infotech-pvt-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mistio1601460379393\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mistio1601460379393\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mobilab\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mobilab\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"modern-systems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/modern-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"modexblockchaindatabase\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/modexblockchaindatabase\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"monetdbsolutions1611751313758\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/monetdbsolutions1611751313758\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"monitorapp1579029852605\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/monitorapp1579029852605\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"monitorcomputersystemsltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/monitorcomputersystemsltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"moogsoft\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/moogsoft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"morpheus-data\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/morpheus-data\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"moviemasher\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/moviemasher\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mriisoftllc1579457820427\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mriisoftllc1579457820427\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"msopentech\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/msopentech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mtnfog\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mtnfog\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"multima1643619641681\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/multima1643619641681\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"multisoft-ab\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/multisoft-ab\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mvp-systems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mvp-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mwg_azure\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mwg_azure\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mxhero\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mxhero\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"my-com\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/my-com\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"myarchinc1614657280935\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/myarchinc1614657280935\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"narrativescience\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/narrativescience\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nasuni\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nasuni\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nasunicorporation\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nasunicorporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"navicloudrsoftwarepteltd1601967280369\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/navicloudrsoftwarepteltd1601967280369\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ncache\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ncache\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ncbi\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ncbi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ncomputingglobalinc1604353053068\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ncomputingglobalinc1604353053068\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ndl\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ndl\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ndstriyelotomasyonsistemlerisanvetica1623147454601\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ndstriyelotomasyonsistemlerisanvetica1623147454601\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nebbiolo-technologies-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nebbiolo-technologies-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nec-technologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nec-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nefelinetworks1591201080882\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nefelinetworks1591201080882\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"neo4j\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/neo4j\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"neos\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/neos\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"neowaybusinesssolutions-4956350\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/neowaybusinesssolutions-4956350\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netapp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netapp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netatwork\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netatwork\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netfoundryinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netfoundryinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netgate\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netgate\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netikus-net-ltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netikus-net-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netiq\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netiq\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netka\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netka\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netmail\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netmail\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netscout\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netscout\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netspi\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netspi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netsweeper\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netsweeper\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"networksexchangetechnologyltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/networksexchangetechnologyltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netwrix\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netwrix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netx\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netx\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"neusoft-neteye\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/neusoft-neteye\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"newegginc1646343565758\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/newegginc1646343565758\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"newnetcommunicationtechnologies1589991852134\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/newnetcommunicationtechnologies1589991852134\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"NewRelic.Infrastructure.Extensions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/NewRelic.Infrastructure.Extensions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"newtglobalconsultingllc1581492268566\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/newtglobalconsultingllc1581492268566\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nextronic-5290868\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nextronic-5290868\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nginxinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nginxinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nice-it-management-solutions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nice-it-management-solutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nicepeopleatwork\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nicepeopleatwork\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nilespartnersinc1617691698386\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nilespartnersinc1617691698386\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"niolabs-5229713\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/niolabs-5229713\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nirvatosoftwarepvtltd1601368706606\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nirvatosoftwarepvtltd1601368706606\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nodejsapi\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nodejsapi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"noianetworklimited1584098036197\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/noianetworklimited1584098036197\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nokiaofamericacorporation1591716055441\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nokiaofamericacorporation1591716055441\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"noobaa\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/noobaa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"norcominformationtechnologygmbhcokgaa\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/norcominformationtechnologygmbhcokgaa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"noricumcloudsolutions1600524477681\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/noricumcloudsolutions1600524477681\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"norsync\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/norsync\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"northbridge-secure\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/northbridge-secure\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nozominetworks1582208017986\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nozominetworks1582208017986\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nri\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nri\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ntegralinc1586961136942\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ntegralinc1586961136942\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ntt-data-intellilink-corporation\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ntt-data-intellilink-corporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nttdata\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nttdata\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nttltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nttltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nuco-networks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nuco-networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"numbersbelieve\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/numbersbelieve\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"numtrallcpublisher\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/numtrallcpublisher\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nuxeo\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nuxeo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nvidia\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nvidia\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"o2mc-real-time-data-platform\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/o2mc-real-time-data-platform\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"objectivity-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/objectivity-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"objectivity1595351622261\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/objectivity1595351622261\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"oceanblue-cloud\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/oceanblue-cloud\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"OctopusDeploy.Tentacle\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/OctopusDeploy.Tentacle\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"odix\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/odix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"odysseuscomputationalsolutions1630242118741\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/odysseuscomputationalsolutions1630242118741\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"odysseyconsultantsltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/odysseyconsultantsltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"officeatwork-ag\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/officeatwork-ag\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"omega-software\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/omega-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"onapsis\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/onapsis\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"oncore_cloud_services-4944214\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/oncore_cloud_services-4944214\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"onexgroup\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/onexgroup\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"onspecta\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/onspecta\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ontology\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ontology\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"onyx-point-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/onyx-point-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"op5\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/op5\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"open-connect-systems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/open-connect-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"opencell\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/opencell\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"openlinkswcom-pago\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/openlinkswcom-pago\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"OpenLogic\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/OpenLogic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"openrefactoryinc1620140917523\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/openrefactoryinc1620140917523\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"openshotstudiosllc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/openshotstudiosllc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"opentext\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/opentext\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"openvpn\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/openvpn\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"opslogix\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/opslogix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"opswatinc1619007967290\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/opswatinc1619007967290\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"optimitiveslu1618320281443\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/optimitiveslu1618320281443\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"option3\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/option3\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Oracle\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Oracle\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"oraylis\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/oraylis\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"oraylisbi\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/oraylisbi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"orbs-network\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/orbs-network\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"oriana\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/oriana\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"orientdb\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/orientdb\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"oroinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/oroinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"osirium-ltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/osirium-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"osisoft\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/osisoft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"osnexus\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/osnexus\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"outpost24\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/outpost24\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"outsystems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/outsystems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ovaledge1618392232783\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ovaledge1618392232783\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pachyderminc1585170006545\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pachyderminc1585170006545\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pacteratechnologiesinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pacteratechnologiesinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"paladionnetworkspvtltd1606120508449\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/paladionnetworkspvtltd1606120508449\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"paloaltonetworks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/paloaltonetworks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"panopta\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/panopta\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"panorama-necto\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/panorama-necto\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"panzura-file-system\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/panzura-file-system\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"parabole\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/parabole\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"paralaxiomtechnologiesprivatelimited1596433357886\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/paralaxiomtechnologiesprivatelimited1596433357886\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"parallels\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/parallels\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"parasoft\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/parasoft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"parkersoftwarelimited1609786657569\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/parkersoftwarelimited1609786657569\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"parsec-for-teams\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/parsec-for-teams\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pasifikciptamandiri\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pasifikciptamandiri\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"passlogy\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/passlogy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"paxata\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/paxata\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pcman\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pcman\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"peer-software-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/peer-software-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"penta-security-systems-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/penta-security-systems-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"percona\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/percona\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"perforce\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/perforce\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"periscope-tech-4791746\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/periscope-tech-4791746\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"piolinkinc1582849368309\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/piolinkinc1582849368309\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pivotal\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pivotal\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pixitmedia1591611150480\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pixitmedia1591611150480\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"plesk\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/plesk\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pmsoftwareinternational1603102514882\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pmsoftwareinternational1603102514882\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pnop\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pnop\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"polarityioinc1628691850891\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/polarityioinc1628691850891\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"portalarchitects\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/portalarchitects\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"portsysinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/portsysinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"postgres-pro\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/postgres-pro\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"powerbireach\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/powerbireach\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"prakshepprivatelimited1619949827900\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/prakshepprivatelimited1619949827900\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"prasselsrl1645470739547\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/prasselsrl1645470739547\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"prestashop\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/prestashop\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"prestige_informatique-1090178\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/prestige_informatique-1090178\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"prime-strategy\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/prime-strategy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"primekey\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/primekey\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"primestrategynewyorkinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/primestrategynewyorkinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pro-vision\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pro-vision\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"probityinc1581611299345\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/probityinc1581611299345\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"process-one\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/process-one\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"processgold\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/processgold\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"procomputers\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/procomputers\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"procomputerssrl1594239153814\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/procomputerssrl1594239153814\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"profecia\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/profecia\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Profiler.AgentOrchestrationRefactor.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Profiler.AgentOrchestrationRefactor.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Profiler.Master.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Profiler.Master.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"profisee\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/profisee\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"progelspa\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/progelspa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"progresssoftwarecorporation\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/progresssoftwarecorporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"proliongmbh1628175060372\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/proliongmbh1628175060372\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"protegrityusainc1627404648458\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/protegrityusainc1627404648458\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"protiviti\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/protiviti\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"proventeq\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/proventeq\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ptc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ptc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ptsecurity\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ptsecurity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pulse-secure\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pulse-secure\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pulsesecuretechnologies1638179500151\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pulsesecuretechnologies1638179500151\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"puppet\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/puppet\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"puppeteersoy1601024480557\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/puppeteersoy1601024480557\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"PuppetLabs\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/PuppetLabs\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"PuppetLabs.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/PuppetLabs.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"purestorageinc1578960262525\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/purestorageinc1578960262525\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pydio\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pydio\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pyramidanalytics\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pyramidanalytics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"qlik\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/qlik\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"qnapsystemsinc1601352084032\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/qnapsystemsinc1601352084032\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"qore-technologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/qore-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"qs-solutions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/qs-solutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Qualys\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Qualys\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Qualys.LinuxAgent.GrayLabel\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Qualys.LinuxAgent.GrayLabel\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Qualys.WindowsAgent.GrayLabel\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Qualys.WindowsAgent.GrayLabel\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"qualysguard\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/qualysguard\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"quasardb\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/quasardb\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"qubole-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/qubole-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"quest\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/quest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"racknap\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/racknap\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rackwareinc1619403669255\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rackwareinc1619403669255\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"radiant-logic\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/radiant-logic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"radware\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/radware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"raincode\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/raincode\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rancher\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rancher\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rapid7\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rapid7\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Rapid7.InsightPlatform\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Rapid7.InsightPlatform\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rapidminer\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rapidminer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"raynetgmbh\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/raynetgmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"readymind\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/readymind\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"realm\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/realm\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"reblaze\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/reblaze\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"RedHat\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/RedHat\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"redhat-rhel\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/redhat-rhel\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"redpoint-global\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/redpoint-global\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"refactr\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/refactr\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"refinitiv\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/refinitiv\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"refinitiv-4807503\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/refinitiv-4807503\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"relevance-lab\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/relevance-lab\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"remotelearner\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/remotelearner\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"res\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/res\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"resco\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/resco\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"researchgraphptyltd1598252602128\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/researchgraphptyltd1598252602128\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"resemblesystems1582780358300\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/resemblesystems1582780358300\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"responder-corp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/responder-corp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"revolution-analytics\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/revolution-analytics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rhcsolutions1586957910818\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rhcsolutions1586957910818\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ribboncommunications\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ribboncommunications\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"RightScaleLinux\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/RightScaleLinux\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"RightScaleWindowsServer\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/RightScaleWindowsServer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rimo3\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rimo3\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ringsoftwareresearchanddevelopmentinc1578946072257\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ringsoftwareresearchanddevelopmentinc1578946072257\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"riverbed\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/riverbed\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"RiverbedTechnology\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/RiverbedTechnology\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rmgtechnologiesinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rmgtechnologiesinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rocketml\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rocketml\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rocketsoftware\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rocketsoftware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rohdeschwarzcybersecuritygmbh\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rohdeschwarzcybersecuritygmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rohdeschwarzcybersecuritysas\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rohdeschwarzcybersecuritysas\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"roktech\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/roktech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rsa-security-llc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rsa-security-llc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rsk-labs\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rsk-labs\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rstudio-5237862\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rstudio-5237862\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rtts\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rtts\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rubrik-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rubrik-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"runecastsolutionslimited1614186396822\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/runecastsolutionslimited1614186396822\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"s2ix\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/s2ix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"saama\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/saama\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"saasame-limited\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/saasame-limited\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"safesoftwareinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/safesoftwareinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"safeticatechnologiessro\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/safeticatechnologiessro\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"safetica_technologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/safetica_technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"safetoopen1585013318137\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/safetoopen1585013318137\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"saltsecurity1583264186232\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/saltsecurity1583264186232\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"saltsecurity1583264669848\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/saltsecurity1583264669848\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"saltstack\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/saltstack\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"samsung-sds\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/samsung-sds\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"samsungelectronics1632860607983\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/samsungelectronics1632860607983\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"samsungsds-cello\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/samsungsds-cello\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"samsungsds_sdbe\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/samsungsds_sdbe\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sandhatatechnologieslimited1615753438737\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sandhatatechnologieslimited1615753438737\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sap\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sap\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sapphiretechnologieslimited1611758579346\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sapphiretechnologieslimited1611758579346\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sas-institute-560503\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sas-institute-560503\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"scaidata\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/scaidata\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"scalearc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/scalearc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"scalegrid\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/scalegrid\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"scality\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/scality\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"schrockeninc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/schrockeninc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sci\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sci\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sciencelogicinc1622565452194\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sciencelogicinc1622565452194\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"scientiamobile\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/scientiamobile\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"scontainug1595751515785\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/scontainug1595751515785\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"scubaanalytics\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/scubaanalytics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"scylladb1631195365807\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/scylladb1631195365807\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"seaqserviciossas1579029207572\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/seaqserviciossas1579029207572\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"searchbloxsoftwareinc1594309037050\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/searchbloxsoftwareinc1594309037050\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"secureworks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/secureworks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"securityonionsolutions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/securityonionsolutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"securityonionsolutionsllc1624649205155\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/securityonionsolutionsllc1624649205155\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"securosis\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/securosis\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"seequentltd1585781751395\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/seequentltd1585781751395\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"semarchy\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/semarchy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"semperis\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/semperis\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"senhasegura\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/senhasegura\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"SentinelOne.LinuxExtension\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/SentinelOne.LinuxExtension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"SentinelOne.LinuxExtension.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/SentinelOne.LinuxExtension.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"SentinelOne.WindowsExtension\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/SentinelOne.WindowsExtension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"SentinelOne.WindowsExtension.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/SentinelOne.WindowsExtension.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sentriumsl\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sentriumsl\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sentry51llc1616686725591\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sentry51llc1616686725591\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sentryone\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sentryone\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sepiosystems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sepiosystems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"seppmailag\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/seppmailag\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"seraumo1620002807288\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/seraumo1620002807288\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"service-control-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/service-control-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sesamesoftwareinc1622125191447\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sesamesoftwareinc1622125191447\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"shadow-soft\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/shadow-soft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"shareshiftneeraj.test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/shareshiftneeraj.test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sightapps\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sightapps\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"signal-sciences\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/signal-sciences\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"silk\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/silk\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"silver-peak-systems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/silver-peak-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"simmachinesinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/simmachinesinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"simontelephonics\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/simontelephonics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"simpledatalabsinc1635791235920\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/simpledatalabsinc1635791235920\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"simplifierag\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/simplifierag\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"simpligov\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/simpligov\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sinefa\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sinefa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sinequa\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sinequa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sinequa1588262295885\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sinequa1588262295885\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"singapore-telecommunications-limited\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/singapore-telecommunications-limited\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sios_datakeeper\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sios_datakeeper\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"siportalinc1581539156321\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/siportalinc1581539156321\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sisenseltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sisenseltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Site24x7\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Site24x7\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sktelecom\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sktelecom\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"skyarc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/skyarc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"skyboxsecurity1585187406404\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/skyboxsecurity1585187406404\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"skylarkcloud\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/skylarkcloud\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"smartbearsoftware\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/smartbearsoftware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"smartmessage-autoflow\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/smartmessage-autoflow\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"snaplogic\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/snaplogic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"snapt-adc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/snapt-adc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"snips\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/snips\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"soasta\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/soasta\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"softnas\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/softnas\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"softwarecentralas1642687699196\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/softwarecentralas1642687699196\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"softwarehut\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/softwarehut\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"softwebsolutions-4518310\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/softwebsolutions-4518310\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"soha\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/soha\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"solanolabs\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/solanolabs\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"solar-security\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/solar-security\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"solarwinds\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/solarwinds\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"solvedevops1643693563360\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/solvedevops1643693563360\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sonicwall-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sonicwall-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sophos\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sophos\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sourcegearllc1616101262784\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sourcegearllc1616101262784\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"south-river-technologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/south-river-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"southrivertech1586314123192\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/southrivertech1586314123192\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"spacecurve\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/spacecurve\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"spaceliftinc1625499025476\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/spaceliftinc1625499025476\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"spagobi\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/spagobi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sparklinglogic\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sparklinglogic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"spectralcorelimited1619779004178\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/spectralcorelimited1619779004178\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"spektra\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/spektra\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sphere3d\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sphere3d\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"spideroakinc1588278690933\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/spideroakinc1588278690933\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"spirentcommunications1594084187199\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/spirentcommunications1594084187199\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"splunk\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/splunk\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sproutenetworks1593456311717\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sproutenetworks1593456311717\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sqlstream\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sqlstream\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"squadratechnologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/squadratechnologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"squaredup\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/squaredup\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"src-solution\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/src-solution\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ssh2appsltd1621588462715\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ssh2appsltd1621588462715\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stackato-platform-as-a-service\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stackato-platform-as-a-service\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Stackify.LinuxAgent.Extension\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Stackify.LinuxAgent.Extension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stackstorm\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stackstorm\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"startekfingerprintmatch\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/startekfingerprintmatch\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"startisolucoesemtecnologialtda1635263523201\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/startisolucoesemtecnologialtda1635263523201\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"starwind\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/starwind\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"StatusMonitor2.Diagnostics.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/StatusMonitor2.Diagnostics.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"StatusReport.Diagnostics.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/StatusReport.Diagnostics.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stealthbits\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stealthbits\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"steelhive\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/steelhive\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stonebondtechnologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stonebondtechnologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stonefly\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stonefly\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"storage_made_easy\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/storage_made_easy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stormshield\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stormshield\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"storone1594045543980\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/storone1594045543980\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"storreduce\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/storreduce\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"storwarespzoo1611743234900\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/storwarespzoo1611743234900\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"strangebee1595948424730\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/strangebee1595948424730\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"strataidentity1608323708170\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/strataidentity1608323708170\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stratis-group-ltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stratis-group-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stratodesk1611152769936\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stratodesk1611152769936\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stratumn\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stratumn\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"streamsets\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/streamsets\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"striim\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/striim\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stromasys\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stromasys\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"strongboxitllc1594816423884\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/strongboxitllc1594816423884\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"su\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/su\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"subscription.test.krsh\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/subscription.test.krsh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sumologic\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sumologic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sunatogmbh\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sunatogmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sunday\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sunday\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"SUSE\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/SUSE\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"SUSE.AzureHybridBenefit\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/SUSE.AzureHybridBenefit\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"swoopanalytics\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/swoopanalytics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sycom-technologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sycom-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sycompatechnologycompanyinc1588192103892\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sycompatechnologycompanyinc1588192103892\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.CloudWorkloadProtection\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.CloudWorkloadProtection\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.CloudWorkloadProtection.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.CloudWorkloadProtection.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.CloudWorkloadProtection.TestOnStage\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.CloudWorkloadProtection.TestOnStage\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.QA\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.QA\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.staging\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.staging\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.test.ru2.latest\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.test.ru2.latest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.test.ru2final\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.test.ru2final\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.test.ru2latest1\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.test.ru2latest1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.test.ru4mp1\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.test.ru4mp1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.test.ru4mp1.latest\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.test.ru4mp1.latest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.test.ru4mp1final\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.test.ru4mp1final\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"symanteccorporation\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/symanteccorporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"symantectest1\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/symantectest1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"synack-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/synack-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"syncfusion\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/syncfusion\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"syncfusionbigdataplatfor\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/syncfusionbigdataplatfor\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"synechron-technologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/synechron-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"synergixinc1585256339250\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/synergixinc1585256339250\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"synnexcorp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/synnexcorp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"syscomcomputerengineeringco1583913200141\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/syscomcomputerengineeringco1583913200141\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"syte\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/syte\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tableau\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tableau\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tactic\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tactic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"talari-networks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/talari-networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"talena-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/talena-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"talend\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/talend\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"talon\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/talon\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tamrinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tamrinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"taniuminc1646329360287\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/taniuminc1646329360287\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"targit\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/targit\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tata_communications\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tata_communications\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tavanttechnologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tavanttechnologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tavendo\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tavendo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"te-systems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/te-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"techdivision\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/techdivision\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"techlatest\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/techlatest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"technicheltd1606969724100\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/technicheltd1606969724100\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tecknolab\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tecknolab\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"telepat\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/telepat\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"teloscorporation\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/teloscorporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tempered-networks-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tempered-networks-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tenable\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tenable\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tensormakecorpdbaoneclickai1608247756082\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tensormakecorpdbaoneclickai1608247756082\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tenthlineinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tenthlineinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"teradata\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/teradata\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Teradici\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Teradici\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"teramindinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/teramindinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.Gemalto.SafeNet.ProtectV\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.Gemalto.SafeNet.ProtectV\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.Gemalto.SafeNet.ProtectV.Azure\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.Gemalto.SafeNet.ProtectV.Azure\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.HP.AppDefender\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.HP.AppDefender\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.Microsoft.VisualStudio.Services\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.Microsoft.VisualStudio.Services\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.NJHP.AppDefender\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.NJHP.AppDefender\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.SqlServer.Managability\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.SqlServer.Managability\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.SqlServer.Management\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.SqlServer.Management\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.SqlServer.Management.corext\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.SqlServer.Management.corext\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test1.NJHP.AppDefender\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test1.NJHP.AppDefender\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test3.Microsoft.VisualStudio.Services\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test3.Microsoft.VisualStudio.Services\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"testable1603721901088\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/testable1603721901088\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"testpro\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/testpro\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"test_test_mix3pptest0011614206850774\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/test_test_mix3pptest0011614206850774\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"test_test_mneela1628617140187\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/test_test_mneela1628617140187\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"test_test_pmc2pc1\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/test_test_pmc2pc1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thales-vormetric\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thales-vormetric\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thalesdiscplusainc1596561677238\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thalesdiscplusainc1596561677238\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thedatavaluefactoryltd1589348815922\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thedatavaluefactoryltd1589348815922\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thefreebsdfoundation\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thefreebsdfoundation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thehdfgroup1616725197741\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thehdfgroup1616725197741\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"theumag1596442827072\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/theumag1596442827072\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"things-board\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/things-board\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thingscareinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thingscareinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thinprintgmbh\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thinprintgmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thorntechnologiesllc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thorntechnologiesllc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thoughtspot-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thoughtspot-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"threatintelligenceptyltd1586824172898\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/threatintelligenceptyltd1586824172898\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tibco-software\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tibco-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tidal-migrations\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tidal-migrations\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tidalmediainc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tidalmediainc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tig\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tig\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tiger-technology\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tiger-technology\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tigergraph\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tigergraph\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"timextender\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/timextender\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tmaxsoft\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tmaxsoft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tmaxsoft1608612658335\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tmaxsoft1608612658335\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tomsawyersoftwarecorp1613579206342\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tomsawyersoftwarecorp1613579206342\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"topicus\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/topicus\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"torusware\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/torusware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"totemo\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/totemo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"townsend-security\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/townsend-security\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"transcendinformationinc1609918445926\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/transcendinformationinc1609918445926\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"transientxinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/transientxinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"transvault\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/transvault\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"trendmicro\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/trendmicro\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"TrendMicro.DeepSecurity.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/TrendMicro.DeepSecurity.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"TrendMicro.PortalProtect\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/TrendMicro.PortalProtect\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tresorit\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tresorit\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"trifacta\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/trifacta\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tripleblindinc1615730179432\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tripleblindinc1615730179432\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tripwire-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tripwire-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"truata1612259728221\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/truata1612259728221\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"truestack\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/truestack\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tryonsolutionsinc1596650621083\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tryonsolutionsinc1596650621083\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tsa-public-service\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tsa-public-service\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tunnelbiz\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tunnelbiz\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"turbonet\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/turbonet\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"turbonet1581982683964\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/turbonet1581982683964\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"twistlock\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/twistlock\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"typesafe\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/typesafe\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ubeeko\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ubeeko\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ubercloud\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ubercloud\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"uipath-5054924\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/uipath-5054924\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ulex\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ulex\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"unifi-software\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/unifi-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"unifiedstreaming1598872291606\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/unifiedstreaming1598872291606\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"uniprint-net\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/uniprint-net\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"unitrends\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/unitrends\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"unnisoft\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/unnisoft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"unravel-data\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/unravel-data\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"unscramblsingaporepteltd-4999260\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/unscramblsingaporepteltd-4999260\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"untangle\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/untangle\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"upsolver1594188634150\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/upsolver1594188634150\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"usp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/usp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"valohai\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/valohai\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"valtix\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/valtix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"varmournetworks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/varmournetworks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"varnish\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/varnish\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vastdata1650451243415\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vastdata1650451243415\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vatacommunicationsinc1581644208717\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vatacommunicationsinc1581644208717\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vaultive-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vaultive-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vbot\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vbot\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vcinityinc1587684340545\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vcinityinc1587684340545\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vectraaiinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vectraaiinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"veeam\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/veeam\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"velocitydb-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/velocitydb-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"velocloud\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/velocloud\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vembutechnologiespvtltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vembutechnologiespvtltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vemn\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vemn\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"veritas\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/veritas\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"versanetworks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/versanetworks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"versasec\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/versasec\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vidispine\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vidispine\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vidizmo\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vidizmo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vigyanlabs-innovations-pvt-ltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vigyanlabs-innovations-pvt-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vigyanlabsinc1581413676614\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vigyanlabsinc1581413676614\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"viptela\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/viptela\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vircom\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vircom\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"virtamovecorp1615909247913\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/virtamovecorp1615909247913\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"virtualpulsesro1607008728942\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/virtualpulsesro1607008728942\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"virtuozzointernationalgmbh1626704951469\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/virtuozzointernationalgmbh1626704951469\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"visualknowledgeshare1591795776234\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/visualknowledgeshare1591795776234\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"visualsoft-center\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/visualsoft-center\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vizixiotplatformretail001\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vizixiotplatformretail001\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vmlabinc1613642184700\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vmlabinc1613642184700\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vmturbo\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vmturbo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vmware-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vmware-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vnomicinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vnomicinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"voiceelements\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/voiceelements\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"voleatechgmbh1636966911943\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/voleatechgmbh1636966911943\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"volterraedgeservices\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/volterraedgeservices\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Vormetric\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Vormetric\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vscconsultingptyltd1608535888097\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vscconsultingptyltd1608535888097\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vte\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vte\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vu-llc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vu-llc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vunetsystemsprivatelimited1646716402131\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vunetsystemsprivatelimited1646716402131\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vyulabsinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vyulabsinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"WAD2AI.Diagnostics.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/WAD2AI.Diagnostics.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"WAD2EventHub.Diagnostics.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/WAD2EventHub.Diagnostics.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wallarm\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wallarm\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wallix\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wallix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wandisco\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wandisco\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wanos\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wanos\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wanpath-dba-myworkdrive\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wanpath-dba-myworkdrive\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wardy-it-solutions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wardy-it-solutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"warewolf-esb\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/warewolf-esb\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"watchguard-technologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/watchguard-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"webaloinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/webaloinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"websense-apmailpe\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/websense-apmailpe\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"websoft9inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/websoft9inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wedoitllc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wedoitllc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"westernoceansoftwaresprivatelimited\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/westernoceansoftwaresprivatelimited\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wherescapesoftware\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wherescapesoftware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"winmagic_securedoc_cloudvm\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/winmagic_securedoc_cloudvm\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wintellisys-inc-4561600\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wintellisys-inc-4561600\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"witfooinc1590167223060\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/witfooinc1590167223060\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wmspanel\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wmspanel\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wood1595864497589\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wood1595864497589\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"workshare-technology\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/workshare-technology\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"world-programming\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/world-programming\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"worxogo\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/worxogo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wowza\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wowza\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"xcontentptyltd-1329748\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/xcontentptyltd-1329748\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"xendata-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/xendata-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"xfinityinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/xfinityinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"xilinx\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/xilinx\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"xoriantcorporationazxteam1\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/xoriantcorporationazxteam1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"xoriantsolutionspvtltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/xoriantsolutionspvtltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"xtremedata\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/xtremedata\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"xyzrd-group-ou\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/xyzrd-group-ou\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"yaseensmarket1645449809728\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/yaseensmarket1645449809728\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"yellowfin\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/yellowfin\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"yellowfininternationalptyltd1616363974066\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/yellowfininternationalptyltd1616363974066\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"yokogawarentalleasecorporation\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/yokogawarentalleasecorporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"your-shop-online\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/your-shop-online\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"z1\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/z1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"z4it-aps\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/z4it-aps\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zabbix\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zabbix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zend\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zend\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zenterasystemsinc1605292453288\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zenterasystemsinc1605292453288\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zerodown_software\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zerodown_software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zerto\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zerto\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zettalane_systems-5254599\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zettalane_systems-5254599\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zevenet\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zevenet\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zilliz\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zilliz\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zoomdata\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zoomdata\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zscaler\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zscaler\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zscaler1579058425289\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zscaler1579058425289\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zultysinc1596831546163\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zultysinc1596831546163\"\r\n }\r\n]", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/southeastasia/publishers?api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9wdWJsaXNoZXJzP2FwaS12ZXJzaW9uPTIwMjEtMTEtMDE=", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Compute/locations/southeastasia/publishers/Microsoft.Compute/artifacttypes/vmextension/types?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9wdWJsaXNoZXJzL01pY3Jvc29mdC5Db21wdXRlL2FydGlmYWN0dHlwZXMvdm1leHRlbnNpb24vdHlwZXM/YXBpLXZlcnNpb249MjAyMS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "14f7369d-8f09-42c5-aa21-4b4a95ef5acc" + "1a42f5a5-3016-4c53-830a-5b1f50b0f886" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ] }, "ResponseHeaders": { @@ -2257,36 +2528,39 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMExtensionTypes3Min;17999,Microsoft.Compute/ListVMExtensionTypes30Min;22499" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "8d76ef5d-2d17-4297-8566-4612360b9f5a_132792867042483732" + "1f3ad383-bb66-4279-b2a8-fbbcd093a7e3_132836337789816871" ], "x-ms-request-id": [ - "5e59475a-cf2b-47cf-9ab2-700ef53f46db" + "03049355-c130-409c-bd79-8218ad32c098" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11979" + "11993" ], "x-ms-correlation-request-id": [ - "d1cbe456-8eb7-4c37-aaff-9e13a551bc84" + "17b03066-3c5b-40f9-987e-11de85bb92ff" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T201157Z:d1cbe456-8eb7-4c37-aaff-9e13a551bc84" + "JIOINDIAWEST:20220516T190313Z:17b03066-3c5b-40f9-987e-11de85bb92ff" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 20:11:56 GMT" + "Mon, 16 May 2022 19:03:13 GMT" ], "Content-Length": [ - "420268" + "1089" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2295,26 +2569,26 @@ "-1" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"128technology\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/128technology\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1580863854728\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1580863854728\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1583411303229\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1583411303229\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1583465680865\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1583465680865\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1585118004523\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1585118004523\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1597644262255\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1597644262255\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1598955805825\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1598955805825\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1601633765871\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1601633765871\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1602067018799\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1602067018799\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1604579683207\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1604579683207\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1615257339685\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1615257339685\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1615278064010\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1615278064010\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1615455873642\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1615455873642\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1624590941808\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1624590941808\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1e\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1e\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"2021ai\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/2021ai\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"247commercelimited1611063941652\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/247commercelimited1611063941652\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"3cx-pbx\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/3cx-pbx\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"42crunch1580391915541\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/42crunch1580391915541\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"4psa\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/4psa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"5nine-software-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/5nine-software-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"7isolutions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/7isolutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"a10networks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/a10networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"a10networks1596136698788\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/a10networks1596136698788\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"abiquo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/abiquo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"abzoobainc1598420455082\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/abzoobainc1598420455082\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"accedian\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/accedian\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"accelario1579101623356\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/accelario1579101623356\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"accellion\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/accellion\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"accessdata-group\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/accessdata-group\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"accops\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/accops\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aciworldwide\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aciworldwide\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Acronis\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Acronis\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Acronis.Backup\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Acronis.Backup\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"actian-corp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/actian-corp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"actian_matrix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/actian_matrix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"actifio\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/actifio\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"actiphy\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/actiphy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"actiphyinc1627974506603\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/actiphyinc1627974506603\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"activecountermeasuresinc1631039410073\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/activecountermeasuresinc1631039410073\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"activeeon\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/activeeon\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"activeops\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/activeops\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"adastracorporation-4028356\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/adastracorporation-4028356\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"adgs\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/adgs\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"advantech\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/advantech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"advantech-webaccess\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/advantech-webaccess\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"advantys\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/advantys\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aelf\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aelf\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aerospike\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aerospike\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"affinio\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/affinio\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"affirmednetworks1607630812999\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/affirmednetworks1607630812999\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ageniumscale1591804889317\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ageniumscale1591804889317\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aggregion-ltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aggregion-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"agiledialogssl1603791911858\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/agiledialogssl1603791911858\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"agolo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/agolo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ahnlabinc1584495174865\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ahnlabinc1584495174865\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ahnlabinc1584495467593\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ahnlabinc1584495467593\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"airalabrus\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/airalabrus\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aiscaler-cache-control-ddos-and-url-rewriting-\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aiscaler-cache-control-ddos-and-url-rewriting-\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aisundowninc1618516322959\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aisundowninc1618516322959\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"akamai-technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/akamai-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"akumina\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/akumina\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"akumo-software\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/akumo-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"al-tamamunitedtradingcontractingcompany\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/al-tamamunitedtradingcontractingcompany\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"alachisoft\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/alachisoft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"alertlogic\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/alertlogic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"AlertLogic.Extension\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/AlertLogic.Extension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"algolyticstechnologies1606475101268\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/algolyticstechnologies1606475101268\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"alicetrix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/alicetrix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"alienvault\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/alienvault\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"alldigital-brevity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/alldigital-brevity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"almalinux\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/almalinux\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"almalinuxosfoundation1628089859865\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/almalinuxosfoundation1628089859865\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"altair-engineering-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/altair-engineering-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"altamira-corporation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/altamira-corporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"alteryx\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/alteryx\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"altova\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/altova\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"amergint1593131356777\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/amergint1593131356777\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ansys\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ansys\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"antmedia\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/antmedia\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aod\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aod\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"apigee\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/apigee\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"appcara\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appcara\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"appcelerator\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appcelerator\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"appex-networks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appex-networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"appistry\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appistry\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"appiyo_technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appiyo_technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"appmint_inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appmint_inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"apps-4-rent\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/apps-4-rent\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"appscale-marketplace\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appscale-marketplace\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"appsurifyinc1606933045773\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appsurifyinc1606933045773\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aquaforest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aquaforest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aquantyinc1598537176913\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aquantyinc1598537176913\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aquaveollc1633710529908\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aquaveollc1633710529908\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"arabesque-group\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/arabesque-group\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"arangodb\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/arangodb\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aras\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aras\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"arcblock\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/arcblock\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"arcesb\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/arcesb\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"arcontechsolutionsprivatelimited1623841797810\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/arcontechsolutionsprivatelimited1623841797810\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"arcserveusallc-marketing\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/arcserveusallc-marketing\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"arista-networks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/arista-networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ariwontollc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ariwontollc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"array_networks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/array_networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"artificial-intelligence-techniques-sl\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/artificial-intelligence-techniques-sl\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"arubanetworks-4922182\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/arubanetworks-4922182\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"asdivertissementinc1617837708654\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/asdivertissementinc1617837708654\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"asigra\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/asigra\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aspentechnologyhq-1353108\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aspentechnologyhq-1353108\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"astadia-1148316\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/astadia-1148316\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"asterasoftware1581022936015\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/asterasoftware1581022936015\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"asyscosoftwarebv\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/asyscosoftwarebv\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ataccama\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ataccama\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"athinfosystems1641442221349\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/athinfosystems1641442221349\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"atlgaming\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/atlgaming\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"atmosera\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/atmosera\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"atomicorp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/atomicorp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"atomizedinc1587939464368\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/atomizedinc1587939464368\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"attunity_cloudbeam\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/attunity_cloudbeam\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"audiocodes\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/audiocodes\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"auraportal\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/auraportal\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"auriq-systems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/auriq-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"automateio1592914387888\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/automateio1592914387888\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"automationanywhere\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/automationanywhere\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"avanseus\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/avanseus\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"avepoint\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/avepoint\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aveva1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aveva1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"avi-networks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/avi-networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aviatrix-systems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aviatrix-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"awingu\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/awingu\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"axedrasag1590581171549\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/axedrasag1590581171549\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"axsguardablenv\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/axsguardablenv\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"axshco\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/axshco\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"axway\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/axway\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"axxana\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/axxana\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"azhpc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/azhpc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"azul\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/azul\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"azure-dockit\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/azure-dockit\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"azurecyclecloud\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/azurecyclecloud\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"AzureDatabricks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/AzureDatabricks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"azureopenshift\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/azureopenshift\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"AzureRT.PIR.Synthetics.ProdTest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/AzureRT.PIR.Synthetics.ProdTest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"AzureRT.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/AzureRT.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"azuretesting\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/azuretesting\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"azuretesting2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/azuretesting2\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"azuretesting3\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/azuretesting3\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"AzureTools1type\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/AzureTools1type\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"baas-techbureau\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/baas-techbureau\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"baffle-io\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/baffle-io\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"balabit\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/balabit\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"barracudanetworks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/barracudanetworks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"basho\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/basho\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"batch\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/batch\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bayware\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bayware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bdy\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bdy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"belindaczsro1588885355210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/belindaczsro1588885355210\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bellsoft1582871421940\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bellsoft1582871421940\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"betsol\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/betsol\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"beyondtrust\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/beyondtrust\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bi-builders-as\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bi-builders-as\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"big-id\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/big-id\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"biolibinc1622552350258\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/biolibinc1622552350258\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bissantechnology1583581147809\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bissantechnology1583581147809\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bitdefendercybersecurity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bitdefendercybersecurity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Bitnami\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Bitnami\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bizagi\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bizagi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bizaptyltd1626489237351\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bizaptyltd1626489237351\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bizdataloome\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bizdataloome\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"biztalk360\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/biztalk360\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"black-duck-software\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/black-duck-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"blackbird\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/blackbird\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"blackmagicdesignincorporated1596492193249\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/blackmagicdesignincorporated1596492193249\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"blk-technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/blk-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"blockapps\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/blockapps\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"blockchain-foundry\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/blockchain-foundry\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"blockstack\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/blockstack\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bloombase\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bloombase\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bluecat\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bluecat\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bluejeansnetwork1638333611902\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bluejeansnetwork1638333611902\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"blueprismlimited-4827145\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/blueprismlimited-4827145\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bluesyntaxconsulting1617654548594\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bluesyntaxconsulting1617654548594\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bluetalon\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bluetalon\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bmc.ctm\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bmc.ctm\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bmcctm.test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bmcctm.test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"boardpacpvtltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/boardpacpvtltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bocada\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bocada\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"boemskats\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/boemskats\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"botanalytics\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/botanalytics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bowspritconsultingopcprivatelimited1596291408582\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bowspritconsultingopcprivatelimited1596291408582\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bravura-software-llc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bravura-software-llc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Brianjac.Symantec.CloudWorkloadProtection\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Brianjac.Symantec.CloudWorkloadProtection\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bricatainc1584472632111\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bricatainc1584472632111\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bright-computing\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bright-computing\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"brightcomputing\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/brightcomputing\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"brocade_communications\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/brocade_communications\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"brutale\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/brutale\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bryte\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bryte\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bssw\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bssw\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bt-americas-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bt-americas-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"buddhalabs\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/buddhalabs\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cadosecurityltd1626856705534\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cadosecurityltd1626856705534\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"calculated_systems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/calculated_systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"caloudi_corp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/caloudi_corp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"canadiancentreforcybersecurity1610638436359\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/canadiancentreforcybersecurity1610638436359\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Canonical\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Canonical\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"canonical-test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/canonical-test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"carto\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/carto\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cask\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cask\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"castaigroupinc1595243474856\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/castaigroupinc1595243474856\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"catechnologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/catechnologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"catonetworksltd1641478570665\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/catonetworksltd1641478570665\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cautelalabs\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cautelalabs\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cavirin\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cavirin\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cayosoftinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cayosoftinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cdatasoftware\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cdatasoftware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cds\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cds\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"celum-gmbh\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/celum-gmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"center-for-internet-security-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/center-for-internet-security-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"centeritysystems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/centeritysystems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"centrixeltd1594135951373\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/centrixeltd1594135951373\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"centrocomputerspa1584528117084\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/centrocomputerspa1584528117084\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"certifiedsecuritysolutionsinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/certifiedsecuritysolutionsinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"certivox\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/certivox\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cfd-direct\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cfd-direct\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"chain\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/chain\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"checkpoint\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/checkpoint\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"chef-software\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/chef-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Chef.Bootstrap.WindowsAzure\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Chef.Bootstrap.WindowsAzure\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"chunghwatelecom1587573688842\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/chunghwatelecom1587573688842\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cinchy\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cinchy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cinegy-gmbh\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cinegy-gmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"circleci\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/circleci\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cires21\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cires21\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cirruswaveinc1579234787943\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cirruswaveinc1579234787943\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cisco\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cisco\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"citrix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/citrix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Citrix.ADC\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Citrix.ADC\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"clapsodeughaftungsbeschrnkt1626333173563\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/clapsodeughaftungsbeschrnkt1626333173563\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"clear-linux-project\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/clear-linux-project\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"clone-systems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/clone-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"clouber\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/clouber\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloud-checkr\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloud-checkr\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloud-cruiser\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloud-cruiser\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloud-infrastructure-services\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloud-infrastructure-services\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudaccelinc1628754426775\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudaccelinc1628754426775\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudbees\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudbees\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudbees-enterprise-jenkins\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudbees-enterprise-jenkins\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudbolt-software\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudbolt-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudboltsoftware1639523402532\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudboltsoftware1639523402532\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudboost\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudboost\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudcover\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudcover\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudenablers-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudenablers-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudentity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudentity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudera\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudera\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudflare\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudflare\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudhouse\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudhouse\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudinfo-4919088\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudinfo-4919088\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudknox\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudknox\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudlanes\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudlanes\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudlink\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudlink\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"CloudLinkEMC.SecureVM\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/CloudLinkEMC.SecureVM\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudmavensolutions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudmavensolutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudneeti\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudneeti\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudplan-gmbh\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudplan-gmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudsecurity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudsecurity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudsoft\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudsoft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudwhizsolutions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudwhizsolutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudwrxsconsultingltd1631029702055\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudwrxsconsultingltd1631029702055\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"clustrix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/clustrix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cncf-upstream\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cncf-upstream\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"codaintelligence1606495376525\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/codaintelligence1606495376525\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"codelathe\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/codelathe\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"codenvy\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/codenvy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"codetwo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/codetwo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cognexcorporation1613759804979\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cognexcorporation1613759804979\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cognitive-scale\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cognitive-scale\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cognizant\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cognizant\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cognosys\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cognosys\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cohesity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cohesity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cohesitydev1592001764720\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cohesitydev1592001764720\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cohesive\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cohesive\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"coin-sciences-ltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/coin-sciences-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"collabcloudlimited\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/collabcloudlimited\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"collibranv1619508098620\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/collibranv1619508098620\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"commscopeinc1632135151062\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/commscopeinc1632135151062\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"commvault\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/commvault\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"compellon\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/compellon\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"composable\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/composable\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"comunity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/comunity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"concentrationheatandmomentumlimited1616154387047\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/concentrationheatandmomentumlimited1616154387047\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Confer\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Confer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"confluentinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/confluentinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"conflux\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/conflux\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"connecting-software\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/connecting-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"consensys\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/consensys\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"containeraider\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/containeraider\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"contiamogmbh\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/contiamogmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"controlcase\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/controlcase\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"controlplane\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/controlplane\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"controlplanecorporation1609967567639\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/controlplanecorporation1609967567639\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"convertigo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/convertigo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"corda\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/corda\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"core-stack\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/core-stack\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"corent-technology-pvt\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/corent-technology-pvt\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"CoreOS\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/CoreOS\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"couchbase\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/couchbase\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cpanel\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cpanel\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"credativ\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/credativ\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cristiesoftwareltd1599488127561\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cristiesoftwareltd1599488127561\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"crunchyard\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/crunchyard\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"crunchyardltd1623835391104\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/crunchyardltd1623835391104\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cryptocom1585727786636\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cryptocom1585727786636\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cryptosense1605170011574\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cryptosense1605170011574\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cryptzone\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cryptzone\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ctm.bmc.com\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ctm.bmc.com\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cubebackup\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cubebackup\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cyberark\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cyberark\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cybernetica-as\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cybernetica-as\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cyxtera\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cyxtera\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"d4t4_solutions-1164305\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/d4t4_solutions-1164305\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"daceitdbasensetrafficpulse1579892024934\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/daceitdbasensetrafficpulse1579892024934\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"danielsol.AzureTools1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/danielsol.AzureTools1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Dans.Windows.App\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Dans.Windows.App\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Dans3.Windows.App\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Dans3.Windows.App\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dataart\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dataart\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"databricks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/databricks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datacore\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datacore\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Datadog.Agent\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Datadog.Agent\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datadynamicsinc1581991927942\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datadynamicsinc1581991927942\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dataguiseinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dataguiseinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dataiku\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dataiku\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datalayer\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datalayer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datanomers1584919038987\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datanomers1584919038987\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datanova\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datanova\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datapredsa\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datapredsa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dataroadtechnologiesllc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dataroadtechnologiesllc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datasciencedojo1586563145740\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datasciencedojo1586563145740\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datastax\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datastax\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datasunrise\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datasunrise\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datavirtualitygmbh\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datavirtualitygmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datometry\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datometry\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dbs-h\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dbs-h\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ddn-whamcloud-5345716\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ddn-whamcloud-5345716\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Debian\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Debian\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dece-4446019\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dece-4446019\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"decisosalesbv\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/decisosalesbv\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"deepcognitioninc1593512758156\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/deepcognitioninc1593512758156\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"deepsiginc1581610210151\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/deepsiginc1581610210151\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"deepsurfacesecurityinc1632943333445\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/deepsurfacesecurityinc1632943333445\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dellemc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dellemc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dell_software\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dell_software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"delphix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/delphix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"deltapathlimited1592886319362\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/deltapathlimited1592886319362\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"denodo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/denodo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"denyall\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/denyall\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"derdack\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/derdack\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"desktopstudioag1580294245574\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/desktopstudioag1580294245574\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"devfactory\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/devfactory\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"device42inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/device42inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"deviceauthorityinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/deviceauthorityinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"devolutionsinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/devolutionsinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"devopsgroup-uk\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/devopsgroup-uk\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"df-portal-user\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/df-portal-user\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dgsecure\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dgsecure\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Dh2ico\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Dh2ico\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dh2icompany\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dh2icompany\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dhi\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dhi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"diagramics\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/diagramics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dicomsystems1584107398321\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dicomsystems1584107398321\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"diehl-metering\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/diehl-metering\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"digisitesystems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/digisitesystems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"digitaldefenseinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/digitaldefenseinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"digitaloffice\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/digitaloffice\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"digitamizeinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/digitamizeinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"digitate\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/digitate\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"diladele\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/diladele\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dimensionalmechanics-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dimensionalmechanics-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"diqa\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/diqa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"diyatech\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/diyatech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"diyotta\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/diyotta\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"djiindustrialincus\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/djiindustrialincus\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"docker\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/docker\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dome9\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dome9\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dorabot\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dorabot\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dremiocorporation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dremiocorporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"drizti\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/drizti\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"drone\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/drone\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dsi\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dsi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dundas\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dundas\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dyadic_security\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dyadic_security\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dynatrace\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dynatrace\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dynatrace.ruxit\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dynatrace.ruxit\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"e-magicinc1587696283171\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/e-magicinc1587696283171\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"eastwind-networks-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/eastwind-networks-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"easysoftwaresro1593005637384\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/easysoftwaresro1593005637384\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ebesllc1637780200500\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ebesllc1637780200500\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ecessa\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ecessa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"edevtech\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/edevtech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"edgelesssystems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/edgelesssystems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"edgenetworks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/edgenetworks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"edispheresoftwareprivatelimited1606199736428\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/edispheresoftwareprivatelimited1606199736428\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"education4sight\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/education4sight\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"eecservicesfzllc1604836615706\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/eecservicesfzllc1604836615706\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"egnyte\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/egnyte\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"egress1589289169584\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/egress1589289169584\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"eikonasystemsgmbh1601729310063\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/eikonasystemsgmbh1601729310063\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Elastic\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Elastic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"elasticbox\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/elasticbox\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"elecard\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/elecard\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"electric-cloud\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/electric-cloud\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"elevateiot\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/elevateiot\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"eleven01\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/eleven01\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"elfiqnetworks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/elfiqnetworks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"emercoin\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/emercoin\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"energisme1601990637842\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/energisme1601990637842\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"enforongo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/enforongo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"engineering-ingegneriainformatica-spa1626786889850\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/engineering-ingegneriainformatica-spa1626786889850\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"engysltd1624364546407\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/engysltd1624364546407\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"enterprise-ethereum-alliance\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/enterprise-ethereum-alliance\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"enterprisedb-corp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/enterprisedb-corp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"enterpriseworx-it\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/enterpriseworx-it\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"epicgames\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/epicgames\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"epicgamesinc1633466121071\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/epicgamesinc1633466121071\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"eproe\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/eproe\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"equalum\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/equalum\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"equilibrium\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/equilibrium\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"equinix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/equinix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ergoninformatikag1581586464404\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ergoninformatikag1581586464404\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"esdenera\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/esdenera\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ESET\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ESET\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"esetresearch1579795941720\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/esetresearch1579795941720\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"esri\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/esri\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"esyon\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/esyon\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ethereum\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ethereum\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"eurolinuxspzoo1620639373013\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/eurolinuxspzoo1620639373013\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"eventtracker\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/eventtracker\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"evertzmicrosystemsltd1586877923009\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/evertzmicrosystemsltd1586877923009\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"evostream-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/evostream-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"exact\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/exact\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"exasol\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/exasol\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"excelero1608461290726\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/excelero1608461290726\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"exivity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/exivity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"exonar\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/exonar\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"f5-networks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/f5-networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"falainapteltd1604661424876\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/falainapteltd1604661424876\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"falconstorsoftware\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/falconstorsoftware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fatalsecurity1604924013537\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fatalsecurity1604924013537\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fatpipe-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fatpipe-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fenestrae-1035066\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fenestrae-1035066\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fidesys\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fidesys\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"filecatalyst\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/filecatalyst\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"filemagellc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/filemagellc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fiorano\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fiorano\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fireeye\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fireeye\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"firehost\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/firehost\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"firemon\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/firemon\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"firstderivativesplc1596469572732\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/firstderivativesplc1596469572732\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"flashgrid-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/flashgrid-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"flexbby\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/flexbby\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"flexbby-5255860\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/flexbby-5255860\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"flexify-io\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/flexify-io\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"flexxibleit\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/flexxibleit\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"flowmon\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/flowmon\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"flynet\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/flynet\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"foghorn-systems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/foghorn-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"forcepoint-llc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/forcepoint-llc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"forescout\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/forescout\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"foreseetiab1613650409016\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/foreseetiab1613650409016\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"formpipesoftwareab\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/formpipesoftwareab\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"forscene\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/forscene\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fortanix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fortanix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fortinet\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fortinet\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fortycloud\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fortycloud\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"forumsystems1599756394904\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/forumsystems1599756394904\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fotopiatechnologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fotopiatechnologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"foxiteuropegmbh1585901066320\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/foxiteuropegmbh1585901066320\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"franzinc1593030725310\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/franzinc1593030725310\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fujitsu_fast\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fujitsu_fast\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fw\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fw\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"g2kgroupgmbh-4821943\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/g2kgroupgmbh-4821943\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gapteq\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gapteq\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gatlingcorp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gatlingcorp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gbs\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gbs\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gemalto-safenet\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gemalto-safenet\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Gemalto.SafeNet.ProtectV\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Gemalto.SafeNet.ProtectV\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"genuagmbhdevid1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/genuagmbhdevid1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"genua_gmbh\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/genua_gmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"genymobile\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/genymobile\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gigamon-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gigamon-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"GitHub\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/GitHub\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gitlab\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gitlab\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gitlabinc1586447921813\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gitlabinc1586447921813\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gladinet-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gladinet-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"glantoninc1591876792991\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/glantoninc1591876792991\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"globalidsinc1596800540598\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/globalidsinc1596800540598\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"globalscape\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/globalscape\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"globalsolutions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/globalsolutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gluwareinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gluwareinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"graphistry\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/graphistry\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"graphitegtc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/graphitegtc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"great-software-laboratory-private-limited\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/great-software-laboratory-private-limited\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"greensql\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/greensql\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"greycorbelsolutions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/greycorbelsolutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gridgain\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gridgain\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"guardicore\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/guardicore\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gxchainfoundationltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gxchainfoundationltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"h2o-ai\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/h2o-ai\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hackerbay\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hackerbay\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hackershub\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hackershub\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"haivision\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/haivision\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"haivisionsystemsinc1580780591922\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/haivisionsystemsinc1580780591922\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"haltdoscompvtltd1587136166019\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/haltdoscompvtltd1587136166019\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hanu\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hanu\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"haproxy-technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/haproxy-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"harmanconnectedservicesinc1594928575643\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/harmanconnectedservicesinc1594928575643\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"harpaitalia\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/harpaitalia\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hashhub\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hashhub\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hcl-technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hcl-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"heimdall-data\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/heimdall-data\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"help-systems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/help-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"helpyio\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/helpyio\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"heretechnologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/heretechnologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hewlett-packard\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hewlett-packard\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hillstone-networks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hillstone-networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hitachi-solutions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hitachi-solutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hitachivantara\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hitachivantara\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"holo-industrie40softwaregmbh1600957636008\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/holo-industrie40softwaregmbh1600957636008\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hortonworks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hortonworks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hpe\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hpe\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"HPE.Security.ApplicationDefender\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/HPE.Security.ApplicationDefender\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"huawei\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/huawei\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hubstor-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hubstor-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hush-hush\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hush-hush\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hvr\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hvr\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hyperglance\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hyperglance\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hypergrid\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hypergrid\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hystaxinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hystaxinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hytrust\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hytrust\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"i-exceed-technology\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/i-exceed-technology\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iaansys\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iaansys\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ibm\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ibm\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ibm-alliance-global-1560886\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ibm-alliance-global-1560886\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ibm-alliance-usa-ny-armonk-hq-ibmstorage-6201192\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ibm-alliance-usa-ny-armonk-hq-ibmstorage-6201192\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ibm-usa-ny-armonk-hq-6275750-ibmcloud-aiops\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ibm-usa-ny-armonk-hq-6275750-ibmcloud-aiops\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iboss\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iboss\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iconics\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iconics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iconsulting-spa\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iconsulting-spa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"icubeconsultancyservicesinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/icubeconsultancyservicesinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iguazio-5069960\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iguazio-5069960\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ikan\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ikan\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iliimbiliimveyazlmsistemlerisanvetica1617000555584\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iliimbiliimveyazlmsistemlerisanvetica1617000555584\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"illuminainc1586452220102\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/illuminainc1586452220102\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"image-technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/image-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"imaginecommunications\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/imaginecommunications\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"imperva\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/imperva\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"impetustechnologiesinc1591959591877\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/impetustechnologiesinc1591959591877\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"imprivatainc1580479939967\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/imprivatainc1580479939967\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"incorta\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/incorta\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"incredibuild\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/incredibuild\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"indexima1594300233028\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/indexima1594300233028\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"industry-weapon\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/industry-weapon\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"industryweapon1587162781833\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/industryweapon1587162781833\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"inenprocesosyplataformasdetisderldecv1615482385424\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/inenprocesosyplataformasdetisderldecv1615482385424\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"inergybv1637141413454\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/inergybv1637141413454\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"infinitesoftwarecorporation1579223971125\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/infinitesoftwarecorporation1579223971125\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"infiotinc1614034091460\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/infiotinc1614034091460\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"influxdata\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/influxdata\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"infoblox\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/infoblox\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"infogix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/infogix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"infolibrarian\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/infolibrarian\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"informatica\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/informatica\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"informationbuilders\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/informationbuilders\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"informationtechnologies_ltd_1179601\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/informationtechnologies_ltd_1179601\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"infotecsinternetsecuritysoftwaregmbh1636129257584\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/infotecsinternetsecuritysoftwaregmbh1636129257584\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"infront-consulting-group-ltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/infront-consulting-group-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"infscapeughaftungsbeschrnkt\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/infscapeughaftungsbeschrnkt\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ingenieurstudiohollaus1579587745438\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ingenieurstudiohollaus1579587745438\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ingrammicro\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ingrammicro\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"innomindssoftware\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/innomindssoftware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"innosepgmbh1618331344164\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/innosepgmbh1618331344164\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"innovatorartificialtechsrl1619180685551\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/innovatorartificialtechsrl1619180685551\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"innovtech\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/innovtech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"instight-technology\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/instight-technology\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"integration-objects\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/integration-objects\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"intel-bigdl\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/intel-bigdl\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"intel-fpga\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/intel-fpga\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"intellicus-technologies-pvt-ltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/intellicus-technologies-pvt-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"intelligent-plant-ltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/intelligent-plant-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"internationaltrustmachinescorporation1582190033865\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/internationaltrustmachinescorporation1582190033865\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"internet20inc1635882446190\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/internet20inc1635882446190\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"intersystems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/intersystems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"intigua\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/intigua\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"intigua1638692632641\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/intigua1638692632641\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"introspecioltd1629872641188\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/introspecioltd1629872641188\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iofabric\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iofabric\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ipinfusion1590066770520\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ipinfusion1590066770520\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ipswitch\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ipswitch\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iqsol\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iqsol\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iquate\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iquate\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iquest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iquest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"irion\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/irion\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ishlangu-load-balancer-adc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ishlangu-load-balancer-adc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"issp-corporation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/issp-corporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"isvtestukbigcat\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/isvtestukbigcat\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"isvtestuklegacy\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/isvtestuklegacy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"it4bizdoo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/it4bizdoo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"itelios\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/itelios\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"itrsgroupltd1620310702149\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/itrsgroupltd1620310702149\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ivanti-inc-pcs\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ivanti-inc-pcs\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ivix1595238749040\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ivix1595238749040\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iwnamespace\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iwnamespace\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"izenda\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/izenda\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"jamcracker\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/jamcracker\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"javlinltd1579185328273\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/javlinltd1579185328273\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"jedox\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/jedox\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"jelastic\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/jelastic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"jetnexus\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/jetnexus\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"jetware-srl\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/jetware-srl\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"jfrog\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/jfrog\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"jm-technology-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/jm-technology-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"jogetinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/jogetinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"juniper-networks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/juniper-networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"justanalytics\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/justanalytics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kaazing\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kaazing\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kadenallc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kadenallc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kali-linux\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kali-linux\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kalkitech\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kalkitech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kaminarioinc1588672951794\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kaminarioinc1588672951794\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Kaspersky.Lab\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Kaspersky.Lab\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"KasperskyLab.SecurityAgent\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/KasperskyLab.SecurityAgent\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kaspersky_lab\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kaspersky_lab\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kazendi\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kazendi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kelverion\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kelverion\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kemptech\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kemptech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kepion\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kepion\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"KevlarExtensions.M365Security.SecureOS\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/KevlarExtensions.M365Security.SecureOS\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"KevlarExtensions.M365SecurityHostIDS\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/KevlarExtensions.M365SecurityHostIDS\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"KevlarExtensions.M365SecurityInventory\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/KevlarExtensions.M365SecurityInventory\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"KevlarExtensions.M365SecurityInventory.NameChangeTest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/KevlarExtensions.M365SecurityInventory.NameChangeTest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"KevlarExtensions.M365SecurityODL\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/KevlarExtensions.M365SecurityODL\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"KevlarExtensions.M365SecurityTLSExtension\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/KevlarExtensions.M365SecurityTLSExtension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kinetica\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kinetica\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kinvolk\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kinvolk\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"knime\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/knime\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kobalt\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kobalt\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kognillc1600118221163\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kognillc1600118221163\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kognitivsparkinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kognitivsparkinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"konginc1581527938760\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/konginc1581527938760\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"konsys-ltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/konsys-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"koverseinc1588716263110\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/koverseinc1588716263110\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kryonsystems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kryonsystems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"krypc-technologies-pvt-ltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/krypc-technologies-pvt-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kyligence\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kyligence\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kyvos-insights-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kyvos-insights-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lab3solutions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lab3solutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lancom-systems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lancom-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lansa\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lansa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lastline\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lastline\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"leap-orbit\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/leap-orbit\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lenovosoftware1604394104439\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lenovosoftware1604394104439\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"leostream-corporation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/leostream-corporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lepide-software\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lepide-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"levacloudllc1602151818089\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/levacloudllc1602151818089\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"libelleag\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/libelleag\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"liberatii\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/liberatii\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"libraesva\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/libraesva\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"liebsoft\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/liebsoft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lightning-analyticsinc1582000647396\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lightning-analyticsinc1582000647396\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"linuxbasedsystemsdesignltd1580878904727\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/linuxbasedsystemsdesignltd1580878904727\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"liquid-files\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/liquid-files\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"liquidware\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/liquidware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"literatu\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/literatu\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"litespeedtechnologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/litespeedtechnologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"litespeed_technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/litespeed_technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"litionenergiegmbh1580128829115\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/litionenergiegmbh1580128829115\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"litmusautomation1582760223280\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/litmusautomation1582760223280\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"llcitpro\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/llcitpro\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lnw-softgmbh\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lnw-softgmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"loadbalancer\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/loadbalancer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"logicflowag1638535407949\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/logicflowag1638535407949\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"logsign\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/logsign\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"logstarecorp1635838645101\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/logstarecorp1635838645101\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"logtrust\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/logtrust\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"logzio\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/logzio\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"looker\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/looker\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lotus_beta_analytics\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lotus_beta_analytics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lti-lt-infotech\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lti-lt-infotech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"luminate-security\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/luminate-security\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"M365Security.KevlarExtensions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/M365Security.KevlarExtensions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"M365SecurityInventory\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/M365SecurityInventory\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"machinesense\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/machinesense\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"madhavajay1632269232059\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/madhavajay1632269232059\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"maidenhead-bridge\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/maidenhead-bridge\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"manageengine\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/manageengine\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mapd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mapd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mapr-technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mapr-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"marand\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/marand\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"marketplace-rdfe-caps\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/marketplace-rdfe-caps\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"marklogic\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/marklogic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"massiveanalytic-\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/massiveanalytic-\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mathworks-deployment\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mathworks-deployment\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mathworks-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mathworks-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"matillion\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/matillion\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mavinglobal\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mavinglobal\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"McAfee.EndpointSecurity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/McAfee.EndpointSecurity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"McAfee.EndpointSecurity.test3\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/McAfee.EndpointSecurity.test3\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"meanio\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/meanio\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"media3-adobe\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/media3-adobe\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"media3-technologies-llc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/media3-technologies-llc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mediatekinc1586141563888\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mediatekinc1586141563888\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mendix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mendix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"merlynnintelligencetechnologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/merlynnintelligencetechnologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"meshifyappinc1622759451429\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/meshifyappinc1622759451429\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"messagesolution\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/messagesolution\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"metaswitch\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/metaswitch\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mettainnovations-4900054\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mettainnovations-4900054\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mfe_azure\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mfe_azure\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mfiles\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mfiles\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mico\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mico\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"micro-focus\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/micro-focus\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microlinkpcukltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microlinkpcukltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microolap\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microolap\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-ads\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-ads\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-agci-gaming\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-agci-gaming\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-aks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-aks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-avere\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-avere\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-azure-batch\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-azure-batch\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-azure-compute\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-azure-compute\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-azure-hdinsight\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-azure-hdinsight\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-crypto\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-crypto\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-dsvm\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-dsvm\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-hyperv\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-hyperv\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-minecraft\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-minecraft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AdminCenter\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AdminCenter\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AKS\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AKS\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.ActiveDirectory\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.ActiveDirectory\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.ActiveDirectory.LinuxSSH\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.ActiveDirectory.LinuxSSH\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Applications\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Applications\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Automation.HybridWorker\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Automation.HybridWorker\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Automation.HybridWorker.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Automation.HybridWorker.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.AzureDefenderForServers\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.AzureDefenderForServers\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.AzureDefenderForSQL\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.AzureDefenderForSQL\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Backup.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Backup.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Backup.Test.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Backup.Test.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.ChangeTracking\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.ChangeTracking\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.ChangeTracking.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.ChangeTracking.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.ChangeTrackingAndInventory\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.ChangeTrackingAndInventory\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Chaos\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Chaos\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Compute.Security\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Compute.Security\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.ContainerUpstream\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.ContainerUpstream\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.DefenderForServers.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.DefenderForServers.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.DefenderForServers.Test2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.DefenderForServers.Test2\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Diagnostics\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Diagnostics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Diagnostics.Build.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Diagnostics.Build.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Diagnostics.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Diagnostics.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test012be407-61ea-4e45-a2c3-71a45999ca21-20191228083800\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test012be407-61ea-4e45-a2c3-71a45999ca21-20191228083800\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test01971384-3044-413b-8b1c-33b5d461bf23-20200107051823\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test01971384-3044-413b-8b1c-33b5d461bf23-20200107051823\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test0225ec7d-b36c-4ac8-82f0-aa4fafaf10a9-20200111051346\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test0225ec7d-b36c-4ac8-82f0-aa4fafaf10a9-20200111051346\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test025e16a1-328d-45a2-b7e3-71f7e4cde046-20191229064028\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test025e16a1-328d-45a2-b7e3-71f7e4cde046-20191229064028\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test02d1f941-5607-4757-8df7-fd8c5631ab45-20200103083810\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test02d1f941-5607-4757-8df7-fd8c5631ab45-20200103083810\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test039abd7f-360c-42a1-ad5d-77527c519286-20191002233412\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test039abd7f-360c-42a1-ad5d-77527c519286-20191002233412\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test04a0f157-c6fb-4595-b6ca-6c82a2338063-20200108101451\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test04a0f157-c6fb-4595-b6ca-6c82a2338063-20200108101451\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test0737f33e-63e0-4ba9-b04b-b93a1de4e997-20200106083639\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test0737f33e-63e0-4ba9-b04b-b93a1de4e997-20200106083639\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test0a44d7be-63fa-418d-a7b6-89a44dd21894-20200107052935\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test0a44d7be-63fa-418d-a7b6-89a44dd21894-20200107052935\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test0d01b487-7f79-4d87-b330-5c025068db45-20191004190331\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test0d01b487-7f79-4d87-b330-5c025068db45-20191004190331\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test0d643748-e6fe-41ad-b4d3-89a289a0cee0-20191003055620\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test0d643748-e6fe-41ad-b4d3-89a289a0cee0-20191003055620\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test0df83c51-5bb9-43f8-8ae9-bc896ea64f78-20200110220221\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test0df83c51-5bb9-43f8-8ae9-bc896ea64f78-20200110220221\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test0f02c246-7e65-4010-9367-ca4530c3897e-20191004190223\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test0f02c246-7e65-4010-9367-ca4530c3897e-20191004190223\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test157494ec-e788-43b0-8d26-a17e39ee07cc-20191002011945\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test157494ec-e788-43b0-8d26-a17e39ee07cc-20191002011945\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test1661d154-b623-4507-8a56-3a89812c456c-20200111083940\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test1661d154-b623-4507-8a56-3a89812c456c-20200111083940\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test17bbd860-f21d-40ab-9026-16e05f2907f0-20200106083451\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test17bbd860-f21d-40ab-9026-16e05f2907f0-20200106083451\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test194e2333-13cd-43e3-b0a4-c8cdcf1a3600-20200110211106\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test194e2333-13cd-43e3-b0a4-c8cdcf1a3600-20200110211106\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test1bc26b19-b8d8-41f9-a26d-818f277bdf93-20200101113139\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test1bc26b19-b8d8-41f9-a26d-818f277bdf93-20200101113139\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test1c840053-9213-4f2a-8f2e-9bf2297908bd-20200108101424\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test1c840053-9213-4f2a-8f2e-9bf2297908bd-20200108101424\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test1d7bba72-69f1-43cd-a38c-41ce0b5f4bae-20200109050041\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test1d7bba72-69f1-43cd-a38c-41ce0b5f4bae-20200109050041\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test1f7a8078-50e7-4a3a-91eb-d178fd4c403b-20191002233353\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test1f7a8078-50e7-4a3a-91eb-d178fd4c403b-20191002233353\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test1fef1fdc-57ba-46a8-a879-475ba7d45a7a-20200106083509\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test1fef1fdc-57ba-46a8-a879-475ba7d45a7a-20200106083509\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test21332f15-f78d-4d31-afac-79b9dc989432-20191231175840\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test21332f15-f78d-4d31-afac-79b9dc989432-20191231175840\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test22f10717-6939-4003-a9ce-38effd8b77d6-20191007191355\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test22f10717-6939-4003-a9ce-38effd8b77d6-20191007191355\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test2334e6e3-bb72-4241-a36f-c2429d69bc0b-20200106050834\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test2334e6e3-bb72-4241-a36f-c2429d69bc0b-20200106050834\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test24fa9eb5-1c59-4425-b61c-30fd638c2a45-20191003203802\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test24fa9eb5-1c59-4425-b61c-30fd638c2a45-20191003203802\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test2521a545-ed61-4a15-bed1-aba7ce1d81ee-20200106050804\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test2521a545-ed61-4a15-bed1-aba7ce1d81ee-20200106050804\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test25c6fe61-1282-43c2-867b-b5039219989c-20200105081851\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test25c6fe61-1282-43c2-867b-b5039219989c-20200105081851\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test27515c8c-6773-4f92-afb0-35691cc6e3b6-20200103083821\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test27515c8c-6773-4f92-afb0-35691cc6e3b6-20200103083821\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test28012680-48e7-4903-877f-2f29464e63d5-20191229033424\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test28012680-48e7-4903-877f-2f29464e63d5-20191229033424\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test29a7a529-d293-4728-9d7f-257ed996e64f-20200108081759\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test29a7a529-d293-4728-9d7f-257ed996e64f-20200108081759\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test2a5f2d2c-b8e3-46c2-850d-a1641c024fe7-20200107084228\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test2a5f2d2c-b8e3-46c2-850d-a1641c024fe7-20200107084228\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test2ce856af-ab17-48f2-ba3e-bcd9af091061-20200110013246\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test2ce856af-ab17-48f2-ba3e-bcd9af091061-20200110013246\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test2e012e83-6361-4365-963f-6ced8a08e91c-20200110211254\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test2e012e83-6361-4365-963f-6ced8a08e91c-20200110211254\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test2ecf67b2-fb63-4461-b6a6-7026c4fb1168-20191002214026\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test2ecf67b2-fb63-4461-b6a6-7026c4fb1168-20191002214026\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test2ede6564-c7cc-44cb-a1a8-902505c9829d-20191003020742\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test2ede6564-c7cc-44cb-a1a8-902505c9829d-20191003020742\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test2f4ebc17-e27e-48d9-9cc3-ff933c21884e-20200106092410\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test2f4ebc17-e27e-48d9-9cc3-ff933c21884e-20200106092410\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test349ee02c-af9b-4663-a963-823b40eefed8-20200108083612\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test349ee02c-af9b-4663-a963-823b40eefed8-20200108083612\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test34cf6b13-b78e-478b-b596-8b661629371d-20191007195455\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test34cf6b13-b78e-478b-b596-8b661629371d-20191007195455\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test36cc5b60-2b23-4a04-bf95-f7865e1141cf-20200110085718\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test36cc5b60-2b23-4a04-bf95-f7865e1141cf-20200110085718\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3712fca9-5cdd-4609-be69-b02aedc5c55c-20200107084115\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3712fca9-5cdd-4609-be69-b02aedc5c55c-20200107084115\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3772d042-92e2-4bcb-99b7-8a6a119cc088-20191231182808\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3772d042-92e2-4bcb-99b7-8a6a119cc088-20191231182808\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test37a6dd64-d44d-465e-85bc-3bc38be90350-20200104083535\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test37a6dd64-d44d-465e-85bc-3bc38be90350-20200104083535\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test381074d5-7156-472b-801a-b35f8fef4cc6-20200105050612\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test381074d5-7156-472b-801a-b35f8fef4cc6-20200105050612\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3877a44d-4c48-40db-80eb-227272d5acd6-20200110103540\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3877a44d-4c48-40db-80eb-227272d5acd6-20200110103540\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test38ecd28e-7018-4672-840c-3044a5e7a6b5-20200111084208\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test38ecd28e-7018-4672-840c-3044a5e7a6b5-20200111084208\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test395a0b49-442a-450c-8a1f-65b0aa3bcf47-20200105083839\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test395a0b49-442a-450c-8a1f-65b0aa3bcf47-20200105083839\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3971b300-edff-44a8-b61b-7f9b7460a8d6-20191003002234\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3971b300-edff-44a8-b61b-7f9b7460a8d6-20191003002234\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3adeec20-7458-4b3d-af26-0b6bc2aae3eb-20200103083751\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3adeec20-7458-4b3d-af26-0b6bc2aae3eb-20200103083751\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3b20dd96-f3e4-4798-998d-8c433c2449a7-20200108083635\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3b20dd96-f3e4-4798-998d-8c433c2449a7-20200108083635\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3ce2fd4a-8b5a-4c7e-b08d-3e48fc0f45e7-20200104083825\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3ce2fd4a-8b5a-4c7e-b08d-3e48fc0f45e7-20200104083825\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3d499ca7-cc8d-41cc-a6dc-ffb1a4ac4942-20200107053004\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3d499ca7-cc8d-41cc-a6dc-ffb1a4ac4942-20200107053004\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3db7240e-5e42-4d6d-b024-cc9fce3c828b-20200105083520\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3db7240e-5e42-4d6d-b024-cc9fce3c828b-20200105083520\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3f6b7341-635f-48d5-a36d-be5dfe3002c4-20200105050937\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3f6b7341-635f-48d5-a36d-be5dfe3002c4-20200105050937\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3fc26934-ede2-4482-ad5e-f66f6135d4a6-20191228055558\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3fc26934-ede2-4482-ad5e-f66f6135d4a6-20191228055558\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test406d077c-6017-4062-bc96-f809147a2331-20200106050748\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test406d077c-6017-4062-bc96-f809147a2331-20200106050748\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test4302336c-e039-4e70-bcb6-9275f6089e4a-20200108144821\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test4302336c-e039-4e70-bcb6-9275f6089e4a-20200108144821\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test453a087e-8435-46db-970a-4ee633cc4c4a-20200102083458\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test453a087e-8435-46db-970a-4ee633cc4c4a-20200102083458\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test46b73afa-2259-4aff-81e1-a58bf24b59aa-20191229033459\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test46b73afa-2259-4aff-81e1-a58bf24b59aa-20191229033459\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test4a3399ee-82ea-46aa-9e3a-5434b588e3b6-20191228013518\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test4a3399ee-82ea-46aa-9e3a-5434b588e3b6-20191228013518\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test4eb7a185-527b-4b9f-93a8-7f1cec9d062e-20191231151207\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test4eb7a185-527b-4b9f-93a8-7f1cec9d062e-20191231151207\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test520a0915-f9f0-4da4-9fa1-1b74fc1470aa-20200102083505\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test520a0915-f9f0-4da4-9fa1-1b74fc1470aa-20200102083505\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test5397960f-023b-4979-9a8b-800d049045a4-20191007195417\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test5397960f-023b-4979-9a8b-800d049045a4-20191007195417\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test55a36387-8a3f-4159-9884-29b97539a253-20200109080443\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test55a36387-8a3f-4159-9884-29b97539a253-20200109080443\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test5645f186-4ee5-4209-af37-423660e3318c-20191231175947\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test5645f186-4ee5-4209-af37-423660e3318c-20191231175947\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test58b4461d-4d2d-4395-b6d2-ab83d4d8c62f-20200111001002\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test58b4461d-4d2d-4395-b6d2-ab83d4d8c62f-20200111001002\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test5b0bf447-d98d-429d-8334-c032d197c743-20191003203846\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test5b0bf447-d98d-429d-8334-c032d197c743-20191003203846\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test5bc90367-1ea2-400b-a40c-321081bae3f3-20200108145035\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test5bc90367-1ea2-400b-a40c-321081bae3f3-20200108145035\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test5bd0562f-e939-456f-a6ee-c848d1aba616-20200101151641\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test5bd0562f-e939-456f-a6ee-c848d1aba616-20200101151641\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test5e4efe90-916c-4c96-802c-1508a5b6da78-20191231151150\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test5e4efe90-916c-4c96-802c-1508a5b6da78-20191231151150\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test5f8f0c10-cc3c-45ec-a068-fb1c7edfa0d9-20200101145958\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test5f8f0c10-cc3c-45ec-a068-fb1c7edfa0d9-20200101145958\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test60a000b7-286c-4b2b-9137-bbc088736419-20200108144920\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test60a000b7-286c-4b2b-9137-bbc088736419-20200108144920\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test6192a01b-ba47-4d08-904a-71647a49a112-20191008041625\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test6192a01b-ba47-4d08-904a-71647a49a112-20191008041625\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test62835538-89c6-4f66-9034-f7a4b176c615-20191007234245\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test62835538-89c6-4f66-9034-f7a4b176c615-20191007234245\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test651e4ad2-ee4a-462e-a506-b56b1969f5d0-20200110230749\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test651e4ad2-ee4a-462e-a506-b56b1969f5d0-20200110230749\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test691d94e5-c40c-4568-94b0-09b08aea42b1-20200106050808\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test691d94e5-c40c-4568-94b0-09b08aea42b1-20200106050808\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test6aa3643c-011a-4180-877f-cad955a8e664-20191007234642\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test6aa3643c-011a-4180-877f-cad955a8e664-20191007234642\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test6cfb469b-8478-468f-9bb5-691affd32abb-20200107083803\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test6cfb469b-8478-468f-9bb5-691affd32abb-20200107083803\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test6d36b6b2-7956-4e62-91c1-c33792fd4bb1-20200110123203\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test6d36b6b2-7956-4e62-91c1-c33792fd4bb1-20200110123203\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test6e28168e-a9c8-4c0a-8b40-60c2a1502d43-20200108052802\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test6e28168e-a9c8-4c0a-8b40-60c2a1502d43-20200108052802\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test6eb763ac-7fbe-4e44-bee7-aad035ee2a7d-20200110084429\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test6eb763ac-7fbe-4e44-bee7-aad035ee2a7d-20200110084429\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test6efec253-f625-46f0-9d74-324f69e963d8-20200107070514\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test6efec253-f625-46f0-9d74-324f69e963d8-20200107070514\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test70fa7e4c-3122-4ff7-aec6-fe75ab660a01-20200108105900\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test70fa7e4c-3122-4ff7-aec6-fe75ab660a01-20200108105900\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test710a5fbf-06c7-46ac-b96d-a29d2586422f-20200108083639\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test710a5fbf-06c7-46ac-b96d-a29d2586422f-20200108083639\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test71d72489-67c6-45e2-b1e6-a19546efc823-20200105112903\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test71d72489-67c6-45e2-b1e6-a19546efc823-20200105112903\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test721fccf1-2b3e-44b6-908f-51b910e88b09-20200111104931\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test721fccf1-2b3e-44b6-908f-51b910e88b09-20200111104931\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test742d0189-9e41-4f1b-8ad3-31c05d34903b-20200111103247\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test742d0189-9e41-4f1b-8ad3-31c05d34903b-20200111103247\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test7836a97c-f56e-48d0-8b5d-61e79aeb3226-20200111071656\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7836a97c-f56e-48d0-8b5d-61e79aeb3226-20200111071656\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test78666b2e-25c8-4a48-931a-3131a0317d73-20191002194352\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test78666b2e-25c8-4a48-931a-3131a0317d73-20191002194352\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test79f13508-fcbd-47b9-988f-1c21ef5e7f2e-20191002015429\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test79f13508-fcbd-47b9-988f-1c21ef5e7f2e-20191002015429\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test79fb90ce-4691-4212-99a7-6e4069bd5984-20191007234256\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test79fb90ce-4691-4212-99a7-6e4069bd5984-20191007234256\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test7a8cf687-6a21-4181-ba98-902fee717bd3-20200104103216\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7a8cf687-6a21-4181-ba98-902fee717bd3-20200104103216\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test7aabf813-6644-483a-b9e0-ba6f8973ba1f-20191002232822\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7aabf813-6644-483a-b9e0-ba6f8973ba1f-20191002232822\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test7c96c10a-0c8f-4ab0-83fd-1ad66a362e33-20191229033458\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7c96c10a-0c8f-4ab0-83fd-1ad66a362e33-20191229033458\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test7e79b6ff-2559-44fe-b3ba-afaa68d63636-20200108112116\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7e79b6ff-2559-44fe-b3ba-afaa68d63636-20200108112116\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test7ea372f7-ea7e-4b9e-bbad-4f35c1567aa2-20200108052736\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7ea372f7-ea7e-4b9e-bbad-4f35c1567aa2-20200108052736\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test7fac3d04-98a5-4fc4-904e-9ea3b86eadc2-20200106050751\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7fac3d04-98a5-4fc4-904e-9ea3b86eadc2-20200106050751\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test7fe20dd6-9ed9-4126-bb1d-031c01ac4550-20200101114504\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7fe20dd6-9ed9-4126-bb1d-031c01ac4550-20200101114504\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test7ff974d9-c841-4249-b05b-bbf663cb4605-20200106084104\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7ff974d9-c841-4249-b05b-bbf663cb4605-20200106084104\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test815bd4d5-fc24-4a47-be20-063c4809902c-20200109050508\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test815bd4d5-fc24-4a47-be20-063c4809902c-20200109050508\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test817654d0-2109-4d95-9284-8c8a9d960d08-20200108053758\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test817654d0-2109-4d95-9284-8c8a9d960d08-20200108053758\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test821ca3b6-dd05-4e80-b3d8-74ba03b2609b-20191231151151\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test821ca3b6-dd05-4e80-b3d8-74ba03b2609b-20191231151151\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test8285dc3e-637d-4d46-9695-adc39cbe7d2f-20200108144457\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test8285dc3e-637d-4d46-9695-adc39cbe7d2f-20200108144457\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test828aae03-9239-4938-a303-c23c42311878-20200102083419\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test828aae03-9239-4938-a303-c23c42311878-20200102083419\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test84afd814-5098-49ab-af99-e50350b5898b-20200110211134\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test84afd814-5098-49ab-af99-e50350b5898b-20200110211134\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test85b08563-b15f-4202-a0bc-f2bc2df2c71a-20200107053335\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test85b08563-b15f-4202-a0bc-f2bc2df2c71a-20200107053335\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test88aac268-c087-4481-b78e-99b920784a33-20200101084853\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test88aac268-c087-4481-b78e-99b920784a33-20200101084853\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test88dbd442-a8cc-4874-81a0-d3192c61df62-20191001224544\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test88dbd442-a8cc-4874-81a0-d3192c61df62-20191001224544\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test894dfb75-a00f-4f0c-894c-cae1c9846ad3-20200105051803\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test894dfb75-a00f-4f0c-894c-cae1c9846ad3-20200105051803\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test8d09bf4d-ee63-4ab1-a986-a4b802418403-20200111051447\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test8d09bf4d-ee63-4ab1-a986-a4b802418403-20200111051447\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test8d4d652b-4f05-4e99-93dd-78b9a36b5c78-20191003203755\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test8d4d652b-4f05-4e99-93dd-78b9a36b5c78-20191003203755\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test8de64739-43d8-4f84-af65-fdb3d0885288-20200108053543\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test8de64739-43d8-4f84-af65-fdb3d0885288-20200108053543\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test8e324c65-a51d-4eeb-9ec8-d5f8662dc041-20191228165107\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test8e324c65-a51d-4eeb-9ec8-d5f8662dc041-20191228165107\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test8e564580-8e53-4300-85f1-bf7f31dd37ff-20200107013348\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test8e564580-8e53-4300-85f1-bf7f31dd37ff-20200107013348\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test8f458ca7-8898-4d58-b93d-bfb0c3da028c-20200109050310\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test8f458ca7-8898-4d58-b93d-bfb0c3da028c-20200109050310\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test901cd6ca-5565-4552-a3de-d204d01935c0-20200108083706\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test901cd6ca-5565-4552-a3de-d204d01935c0-20200108083706\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test907b39e5-4008-4b55-93a0-18e9697b9cf3-20200108053817\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test907b39e5-4008-4b55-93a0-18e9697b9cf3-20200108053817\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test90c2be7c-d7ec-4abf-9fad-fef90fc3ef4d-20191004022234\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test90c2be7c-d7ec-4abf-9fad-fef90fc3ef4d-20191004022234\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test922db678-6ee8-43d5-86ff-6a86e132d332-20200107085231\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test922db678-6ee8-43d5-86ff-6a86e132d332-20200107085231\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test93b88aec-5277-4b1b-910c-7008e972ce91-20200107013304\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test93b88aec-5277-4b1b-910c-7008e972ce91-20200107013304\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test95a9104b-6cba-42d8-82ff-cc37e5ac44db-20200108081723\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test95a9104b-6cba-42d8-82ff-cc37e5ac44db-20200108081723\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test96da1605-19e0-46eb-9ce0-53e840f5e2cb-20200101111729\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test96da1605-19e0-46eb-9ce0-53e840f5e2cb-20200101111729\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test996066b2-7d29-400f-929b-e343a21046f7-20191231151212\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test996066b2-7d29-400f-929b-e343a21046f7-20191231151212\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test99663fff-ed21-4a91-9687-1a6da2abb033-20200106084508\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test99663fff-ed21-4a91-9687-1a6da2abb033-20200106084508\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test9eb5efa5-c3c1-4c13-80a6-11f5eba67372-20200108144852\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test9eb5efa5-c3c1-4c13-80a6-11f5eba67372-20200108144852\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testa3791896-b1fc-491e-ba0d-aefcd8d9e52a-20200105083503\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testa3791896-b1fc-491e-ba0d-aefcd8d9e52a-20200105083503\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testa37ff709-a078-45a0-8187-41733df8e101-20200109050003\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testa37ff709-a078-45a0-8187-41733df8e101-20200109050003\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testa4c5fe4e-936e-4be1-a612-a331aff54a8c-20200111105055\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testa4c5fe4e-936e-4be1-a612-a331aff54a8c-20200111105055\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testa59bce1d-e32c-423d-a86e-945d4aeb98b4-20200107051821\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testa59bce1d-e32c-423d-a86e-945d4aeb98b4-20200107051821\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testa604c059-8279-4f4d-a354-eec27222a06c-20200111051514\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testa604c059-8279-4f4d-a354-eec27222a06c-20200111051514\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testa71fefb1-0d9c-4fb3-8d3d-5dcd12d72b77-20200103103221\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testa71fefb1-0d9c-4fb3-8d3d-5dcd12d72b77-20200103103221\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testa748013d-c5a6-44f9-88eb-43167207c742-20200111051402\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testa748013d-c5a6-44f9-88eb-43167207c742-20200111051402\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testaab67022-4f2b-420d-a06a-2c4045110cdf-20191229033144\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testaab67022-4f2b-420d-a06a-2c4045110cdf-20191229033144\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testacab9541-280f-4491-9f49-ac57653f0a07-20200105083839\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testacab9541-280f-4491-9f49-ac57653f0a07-20200105083839\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testad298437-0349-4cc7-88a9-d8aabcba9df1-20191002233431\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testad298437-0349-4cc7-88a9-d8aabcba9df1-20191002233431\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testadd68286-f9e0-4ab1-a526-d8f3cf0f054e-20200105084128\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testadd68286-f9e0-4ab1-a526-d8f3cf0f054e-20200105084128\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testade4c52b-18f5-4b67-8e93-945358ce4f7d-20191007234259\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testade4c52b-18f5-4b67-8e93-945358ce4f7d-20191007234259\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testae421c1d-0211-4ef2-b372-564ce8ad484a-20200110104035\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testae421c1d-0211-4ef2-b372-564ce8ad484a-20200110104035\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testafbbd8bf-aec5-48bf-8fea-73fa15ccc315-20191001224727\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testafbbd8bf-aec5-48bf-8fea-73fa15ccc315-20191001224727\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testb15148bf-78d2-42d4-ad08-b3ad8fb4b122-20200101084759\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testb15148bf-78d2-42d4-ad08-b3ad8fb4b122-20200101084759\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testb4237708-3688-40ea-85a2-275c05f4d100-20191228083519\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testb4237708-3688-40ea-85a2-275c05f4d100-20191228083519\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testb799a18f-be45-4c5c-8438-163ac2e1f1e7-20191004190529\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testb799a18f-be45-4c5c-8438-163ac2e1f1e7-20191004190529\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testb7cee88a-e5ac-4af4-99c8-7247020b00c3-20200105051201\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testb7cee88a-e5ac-4af4-99c8-7247020b00c3-20200105051201\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testb7df0d9a-27c0-4ca5-b692-08dd90387b98-20200111083443\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testb7df0d9a-27c0-4ca5-b692-08dd90387b98-20200111083443\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testbbf6bf32-4bd0-4381-b8f7-2658f585df4d-20191003203846\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testbbf6bf32-4bd0-4381-b8f7-2658f585df4d-20191003203846\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testbeea1376-166a-4b1a-8923-c907cc9737d9-20200107013336\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testbeea1376-166a-4b1a-8923-c907cc9737d9-20200107013336\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testbf9154e9-6166-48c2-86fe-1f331be606d7-20200107051823\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testbf9154e9-6166-48c2-86fe-1f331be606d7-20200107051823\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc0d7c3c5-23b8-489c-a5e0-ae87c681b696-20200101083539\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc0d7c3c5-23b8-489c-a5e0-ae87c681b696-20200101083539\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc193f31a-5186-4e93-84f6-0e4ab87b73c1-20200107052937\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc193f31a-5186-4e93-84f6-0e4ab87b73c1-20200107052937\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc1c7e8dc-fa8c-47d9-8305-de6d1451b939-20200101085248\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc1c7e8dc-fa8c-47d9-8305-de6d1451b939-20200101085248\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc1d0c917-e2ae-430c-a2ca-383fb0fda046-20191007235839\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc1d0c917-e2ae-430c-a2ca-383fb0fda046-20191007235839\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc23a3fbb-6e95-4c0d-94fc-c8ab14dddf1c-20191231151117\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc23a3fbb-6e95-4c0d-94fc-c8ab14dddf1c-20191231151117\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc2697630-6247-411a-94b3-c2974ad8cbee-20191007195417\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc2697630-6247-411a-94b3-c2974ad8cbee-20191007195417\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc466b80f-670f-4383-89b8-44e0d509fa20-20191002000516\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc466b80f-670f-4383-89b8-44e0d509fa20-20191002000516\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc5c8d9bd-75fa-4db3-9f34-5d7b7098584c-20191003203851\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc5c8d9bd-75fa-4db3-9f34-5d7b7098584c-20191003203851\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc8b6d14b-a5db-48e0-bfad-a2818d432bea-20200104083443\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc8b6d14b-a5db-48e0-bfad-a2818d432bea-20200104083443\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc933efa8-c553-4b93-884f-b7221d9ca789-20191228083750\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc933efa8-c553-4b93-884f-b7221d9ca789-20191228083750\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testcbe8ab80-46ef-49b1-a7bb-4e3d6e50e49f-20200104050811\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testcbe8ab80-46ef-49b1-a7bb-4e3d6e50e49f-20200104050811\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testccc0b5e6-9b0d-451a-8ac4-6f4af293b913-20200106092645\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testccc0b5e6-9b0d-451a-8ac4-6f4af293b913-20200106092645\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testcec64786-04b1-487c-80ec-050da646fb1c-20191005123412\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testcec64786-04b1-487c-80ec-050da646fb1c-20191005123412\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testd104a52f-eba2-401d-8e7f-a841c90f7712-20191228083553\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testd104a52f-eba2-401d-8e7f-a841c90f7712-20191228083553\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testd724cea4-0d3c-4539-b2ff-be08fb23a67e-20200107083714\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testd724cea4-0d3c-4539-b2ff-be08fb23a67e-20200107083714\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testd8e60bac-27ff-4fba-90b8-732c9c5ff91c-20191228083751\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testd8e60bac-27ff-4fba-90b8-732c9c5ff91c-20191228083751\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testd99db4a5-7683-4584-89ad-fefd711de284-20191004190210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testd99db4a5-7683-4584-89ad-fefd711de284-20191004190210\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testd9b4309a-67bc-4cd8-ac47-094cb20ca6aa-20200101090202\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testd9b4309a-67bc-4cd8-ac47-094cb20ca6aa-20200101090202\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testda3320e0-28f2-4146-a002-e06296362711-20191004190115\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testda3320e0-28f2-4146-a002-e06296362711-20191004190115\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testda714121-3240-4253-90c3-48c43f115c90-20200102083419\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testda714121-3240-4253-90c3-48c43f115c90-20200102083419\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testdb357558-60b4-4ee3-9ec3-ba22c5d827fb-20191004020617\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testdb357558-60b4-4ee3-9ec3-ba22c5d827fb-20191004020617\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testdc7230e9-df6d-4edd-a57c-ef7e0432c463-20191002011345\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testdc7230e9-df6d-4edd-a57c-ef7e0432c463-20191002011345\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testdccb59de-436f-4935-bed6-2e677dcaf36a-20200109111802\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testdccb59de-436f-4935-bed6-2e677dcaf36a-20200109111802\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testde985b23-9333-4f6e-a5e8-82025a38b2af-20200102083510\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testde985b23-9333-4f6e-a5e8-82025a38b2af-20200102083510\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Teste271da3e-cbcb-4ee7-8770-f297f414451f-20191003015540\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Teste271da3e-cbcb-4ee7-8770-f297f414451f-20191003015540\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Teste4070edd-aec0-455d-8a79-aecdb7170b6d-20191007234642\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Teste4070edd-aec0-455d-8a79-aecdb7170b6d-20191007234642\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Teste42f351a-4da0-4f0d-93e9-ef1d98e06659-20200108083633\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Teste42f351a-4da0-4f0d-93e9-ef1d98e06659-20200108083633\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Teste66ca23c-f4bf-4eb3-8418-139364d19e7d-20200107062643\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Teste66ca23c-f4bf-4eb3-8418-139364d19e7d-20200107062643\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Teste78b1ab2-1380-48ab-9923-0276cdb7198b-20191001224742\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Teste78b1ab2-1380-48ab-9923-0276cdb7198b-20191001224742\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Teste8607e14-b4f8-472a-bd5b-893b8d9612e6-20200112045941\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Teste8607e14-b4f8-472a-bd5b-893b8d9612e6-20200112045941\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Teste980b80e-3add-42c0-bc98-a84020b2d128-20200108101640\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Teste980b80e-3add-42c0-bc98-a84020b2d128-20200108101640\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Tested79dba9-2d38-4ea9-a01c-56e94b30ca7a-20191007195447\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Tested79dba9-2d38-4ea9-a01c-56e94b30ca7a-20191007195447\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testee9dcf5f-f7c4-4192-a8f4-28e9bc7d0f7c-20191001225005\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testee9dcf5f-f7c4-4192-a8f4-28e9bc7d0f7c-20191001225005\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testefbb340a-b68b-4200-872b-d05e7d29f92d-20191007195432\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testefbb340a-b68b-4200-872b-d05e7d29f92d-20191007195432\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testf1fc0559-6740-48dd-9501-2b933c731d52-20200103083458\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testf1fc0559-6740-48dd-9501-2b933c731d52-20200103083458\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testf41dfc97-bb51-4fba-86ca-a6f2695c415a-20200107050834\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testf41dfc97-bb51-4fba-86ca-a6f2695c415a-20200107050834\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testf5784447-83ed-4c00-8764-ea0f932aafa2-20200106085748\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testf5784447-83ed-4c00-8764-ea0f932aafa2-20200106085748\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testf6128ef6-c13c-420e-8088-0710888ce88b-20200109050003\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testf6128ef6-c13c-420e-8088-0710888ce88b-20200109050003\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testf863ab2c-ada9-4646-84c7-1f83a82375d7-20191229033226\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testf863ab2c-ada9-4646-84c7-1f83a82375d7-20191229033226\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testfac552a7-418f-4baa-8f51-d199ceff5c68-20200103050817\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testfac552a7-418f-4baa-8f51-d199ceff5c68-20200103050817\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testfb7be054-5c15-494f-822c-b64f9a36e2f3-20200105051753\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testfb7be054-5c15-494f-822c-b64f9a36e2f3-20200105051753\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testfc5c7585-6c9a-4aa4-a7c4-1223a94e00c7-20200104083552\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testfc5c7585-6c9a-4aa4-a7c4-1223a94e00c7-20200104083552\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.FileServer.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.FileServer.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Geneva\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Geneva\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.KeyVault\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.KeyVault\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.KeyVault.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.KeyVault.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.LabServices\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.LabServices\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.LabServices.test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.LabServices.test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.Agent\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.Agent\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.Dev\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.Dev\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.Dev.INT\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.Dev.INT\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.Dev.SCALE\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.Dev.SCALE\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.Dev.TEST\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.Dev.TEST\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.GuestHealth\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.GuestHealth\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.DEV\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.DEV\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.INT\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.INT\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.SCALE\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.SCALE\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.TEST\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.TEST\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.INT.Dev\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.INT.Dev\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.SCALE.Dev\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.SCALE.Dev\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.TEST.Dev\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.TEST.Dev\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.WorkloadInsights.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.WorkloadInsights.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.WorkloadInsightsTest.newnamespace\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.WorkloadInsightsTest.newnamespace\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.Workloads\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.Workloads\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.Workloads.Dev\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.Workloads.Dev\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitoring.DependencyAgent\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitoring.DependencyAgent\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitoring.DependencyAgent.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitoring.DependencyAgent.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Networking.DNS\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Networking.DNS\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Networking.SDN\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Networking.SDN\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.NetworkWatcher\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.NetworkWatcher\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.NetworkWatcher.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.NetworkWatcher.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.OpenSSH\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.OpenSSH\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Performance.Diagnostics\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Performance.Diagnostics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Performance.Diagnostics.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Performance.Diagnostics.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.RecoveryServices\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.RecoveryServices.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices.SiteRecovery\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.RecoveryServices.SiteRecovery\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices.SiteRecovery2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.RecoveryServices.SiteRecovery2\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices.WorkloadBackup\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.RecoveryServices.WorkloadBackup\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices.WorkloadBackup.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.RecoveryServices.WorkloadBackup.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.AntimalwareSignature\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.AntimalwareSignature\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.AntimalwareSignature.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.AntimalwareSignature.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.Dsms\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.Dsms\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.Dsms.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.Dsms.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.LinuxAttestation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.LinuxAttestation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.LinuxTestAttestation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.LinuxTestAttestation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.Monitoring\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.Monitoring\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.Monitoring.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.Monitoring.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.Monitoring.Testing\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.Monitoring.Testing\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.TestWindowsAttestation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.TestWindowsAttestation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.WindowsAttestation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.WindowsAttestation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.WinTestAttestation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.WinTestAttestation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Sentinel.DnsExtension.Dev\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Sentinel.DnsExtension.Dev\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.ServiceFabric.MC\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.ServiceFabric.MC\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.ServiceFabric.MC.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.ServiceFabric.MC.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.SiteRecovery.Stage\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.SiteRecovery.Stage\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.SiteRecovery.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.SiteRecovery.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.SiteRecovery2.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.SiteRecovery2.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Test.Identity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Test.Identity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WindowsFabric.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WindowsFabric.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.ReleasePipeTest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.ReleasePipeTest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.ReleasePipeTest.INT\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.ReleasePipeTest.INT\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.ReleasePipeTest.TEST\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.ReleasePipeTest.TEST\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test2\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test3\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test3\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test4\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test4\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test5\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test5\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test5.INT\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test5.INT\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test5.TEST\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test5.TEST\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.VincentTest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.VincentTest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.VincentTest2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.VincentTest2\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.VincentTest3\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.VincentTest3\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.VincentTest4\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.VincentTest4\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.TestTest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.TestTest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.TestTest.INT\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.TestTest.INT\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.TestTest.TEST\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.TestTest.TEST\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Windows.ReleasePipeTest.INT\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Windows.ReleasePipeTest.INT\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Windows.ReleasePipeTest.TEST\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Windows.ReleasePipeTest.TEST\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoring\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoring.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoringTest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoringTest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureData\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureData\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureData.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureData.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.Canary\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights.Canary\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.Corp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights.Corp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.Linux.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights.Linux.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.LinuxTest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights.LinuxTest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.Meya0206\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights.Meya0206\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.MeyaCorp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights.MeyaCorp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.Testing\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights.Testing\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureSecurity.JITAccess\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureSecurity.JITAccess\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.CloudBackup.Workload.Extension\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.CloudBackup.Workload.Extension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.CloudBackup.Workload.Extension.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.CloudBackup.Workload.Extension.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Compute\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Compute.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Compute.TestSar\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute.TestSar\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.CPlat.Core\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.CPlat.Core\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.CPlat.Core.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.CPlat.Core.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Dcsswe.Extensions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Dcsswe.Extensions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.EnterpriseCloud.Monitoring\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.EnterpriseCloud.Monitoring.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.EnterpriseCloud.Monitoring.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Golive.Extensions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Golive.Extensions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.GuestConfig.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.GuestConfig.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.GuestConfiguration\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.GuestConfiguration\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.GuestConfiguration.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.GuestConfiguration.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.GuestConfiguration.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.GuestConfiguration.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.HpcCompute\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.HpcCompute\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.HpcCompute.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.HpcCompute.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.HpcPack\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.HpcPack\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Interceptor\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Interceptor\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.M365\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.M365\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.M365SecurityConfiguration.Kevlar.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.M365SecurityConfiguration.Kevlar.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.ManagedIdentity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.ManagedIdentity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.ManagedServices\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.ManagedServices\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.ManagedServices.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.ManagedServices.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.MonitoringAgent.Extension\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.MonitoringAgent.Extension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Network\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Network\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.OSTCExtensions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.OSTCExtensions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.OSTCExtensions.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.OSTCExtensions.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.OSTCExtensions.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.OSTCExtensions.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.OSTCExtensions.Testing\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.OSTCExtensions.Testing\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Powershell\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Powershell\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Powershell.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Powershell.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Powershell.Test01\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Powershell.Test01\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.SecurityManagement.Kevlar\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.SecurityManagement.Kevlar\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Sentinel.AzureMonitorAgentExtensions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Sentinel.AzureMonitorAgentExtensions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.SoftwareUpdateManagement\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.SoftwareUpdateManagement\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.SoftwareUpdateManagement.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.SoftwareUpdateManagement.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.SqlServer.Managability.IaaS.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.SqlServer.Managability.IaaS.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.SqlServer.Management\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.SqlServer.Management\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.SqlServer.Management.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.SqlServer.Management.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.SystemCenter\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.SystemCenter\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.SystemCenter.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.SystemCenter.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Test.Azure.Workloads\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Test.Azure.Workloads\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.TestSqlServer.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.TestSqlServer.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.ETWTraceListenerService\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.Azure.ETWTraceListenerService\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.RemoteDebug\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.Azure.RemoteDebug\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.RemoteDebug.Json\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.Azure.RemoteDebug.Json\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.ServiceProfiler\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.ServiceProfiler\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.Services\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.Services\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.WindowsAzure.DevTest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.WindowsAzure.DevTest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.WindowsAzure.DevTest.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.WindowsAzure.DevTest.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.WindowsAzure.RemoteDebug\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.WindowsAzure.RemoteDebug\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.WindowsAzure.Test.RemoteDebug\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.WindowsAzure.Test.RemoteDebug\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Windows.Azure.Extensions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Windows.Azure.Extensions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Windows.AzureRemoteApp.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Windows.AzureRemoteApp.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Windows.RemoteDesktop\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Windows.RemoteDesktop\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.WindowsAdminCenter\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.WindowsAdminCenter\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.WindowsAdminCenter.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.WindowsAdminCenter.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.WindowsAzure.Compute\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.WindowsAzure.Compute\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.WindowsAzure.Compute.test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.WindowsAzure.Compute.test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.WVD\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.WVD\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoftagciuk\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoftagciuk\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoftazurecituswarp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoftazurecituswarp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftAzureSiteRecovery\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftAzureSiteRecovery\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftBizTalkServer\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftBizTalkServer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftCBLMariner\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftCBLMariner\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoftcmotest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoftcmotest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoftcorporation1602274591143\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoftcorporation1602274591143\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoftcorporation1620407702632\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoftcorporation1620407702632\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftDynamicsAX\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftDynamicsAX\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftDynamicsGP\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftDynamicsGP\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftDynamicsNAV\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftDynamicsNAV\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoftfarmbeats\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoftfarmbeats\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftHybridCloudStorage\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftHybridCloudStorage\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftOSTC\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftOSTC\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftPowerBI\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftPowerBI\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftRServer\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftRServer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftSharePoint\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftSharePoint\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftSQLServer\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftSQLServer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftTestLinuxPPS\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftTestLinuxPPS\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftVisualStudio\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftVisualStudio\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftWindowsDesktop\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsDesktop\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftWindowsServer\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsServer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftWindowsServerHPCPack\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsServerHPCPack\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft_iot_edge\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft_iot_edge\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft_javaeeonazure_test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft_javaeeonazure_test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microstrategy\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microstrategy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"midasolutions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/midasolutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"middleware\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/middleware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"midfin\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/midfin\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"midvision\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/midvision\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mihupcommunicationspvtltd1599046998010\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mihupcommunicationspvtltd1599046998010\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mindcti\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mindcti\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"minio\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/minio\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"miraclelinux\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/miraclelinux\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"miracl_linux\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/miracl_linux\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"miri-infotech-pvt-ltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/miri-infotech-pvt-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mistio1601460379393\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mistio1601460379393\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mobilab\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mobilab\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"modern-systems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/modern-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"modexblockchaindatabase\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/modexblockchaindatabase\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"monetdbsolutions1611751313758\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/monetdbsolutions1611751313758\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"monitorapp1579029852605\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/monitorapp1579029852605\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"monitorcomputersystemsltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/monitorcomputersystemsltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"moogsoft\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/moogsoft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"morpheus-data\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/morpheus-data\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"moviemasher\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/moviemasher\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mriisoftllc1579457820427\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mriisoftllc1579457820427\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"msopentech\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/msopentech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mtnfog\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mtnfog\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"multisoft-ab\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/multisoft-ab\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mvp-systems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mvp-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mwg_azure\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mwg_azure\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mxhero\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mxhero\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"my-com\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/my-com\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"myarchinc1614657280935\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/myarchinc1614657280935\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"narrativescience\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/narrativescience\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nasuni\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nasuni\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nasunicorporation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nasunicorporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"navicloudrsoftwarepteltd1601967280369\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/navicloudrsoftwarepteltd1601967280369\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ncache\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ncache\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ncbi\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ncbi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ncomputingglobalinc1604353053068\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ncomputingglobalinc1604353053068\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ndl\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ndl\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nebbiolo-technologies-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nebbiolo-technologies-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nec-technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nec-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nefelinetworks1591201080882\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nefelinetworks1591201080882\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"neo4j\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/neo4j\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"neos\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/neos\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"neowaybusinesssolutions-4956350\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/neowaybusinesssolutions-4956350\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netapp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netapp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netatwork\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netatwork\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netfoundryinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netfoundryinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netgate\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netgate\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netikus-net-ltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netikus-net-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netiq\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netiq\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netka\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netka\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netmail\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netmail\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netscout\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netscout\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netspi\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netspi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netsweeper\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netsweeper\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"networksexchangetechnologyltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/networksexchangetechnologyltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netwrix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netwrix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netx\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netx\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"neusoft-neteye\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/neusoft-neteye\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"newnetcommunicationtechnologies1589991852134\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/newnetcommunicationtechnologies1589991852134\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"NewRelic.Infrastructure.Extensions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/NewRelic.Infrastructure.Extensions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"newtglobalconsultingllc1581492268566\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/newtglobalconsultingllc1581492268566\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nextronic-5290868\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nextronic-5290868\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nginxinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nginxinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nice-it-management-solutions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nice-it-management-solutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nicepeopleatwork\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nicepeopleatwork\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nilespartnersinc1617691698386\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nilespartnersinc1617691698386\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"niolabs-5229713\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/niolabs-5229713\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nirvatosoftwarepvtltd1601368706606\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nirvatosoftwarepvtltd1601368706606\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nodejsapi\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nodejsapi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"noianetworklimited1584098036197\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/noianetworklimited1584098036197\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nokiaofamericacorporation1591716055441\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nokiaofamericacorporation1591716055441\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"noobaa\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/noobaa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"norcominformationtechnologygmbhcokgaa\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/norcominformationtechnologygmbhcokgaa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"noricumcloudsolutions1600524477681\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/noricumcloudsolutions1600524477681\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"norsync\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/norsync\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"northbridge-secure\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/northbridge-secure\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nozominetworks1582208017986\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nozominetworks1582208017986\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nri\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nri\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ntegralinc1586961136942\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ntegralinc1586961136942\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ntt-data-intellilink-corporation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ntt-data-intellilink-corporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nttdata\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nttdata\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nttltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nttltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nuco-networks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nuco-networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"numbersbelieve\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/numbersbelieve\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"numtrallcpublisher\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/numtrallcpublisher\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nuxeo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nuxeo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nvidia\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nvidia\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"o2mc-real-time-data-platform\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/o2mc-real-time-data-platform\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"objectivity-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/objectivity-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"objectivity1595351622261\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/objectivity1595351622261\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"oceanblue-cloud\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/oceanblue-cloud\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"OctopusDeploy.Tentacle\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/OctopusDeploy.Tentacle\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"odix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/odix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"odysseuscomputationalsolutions1630242118741\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/odysseuscomputationalsolutions1630242118741\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"odysseyconsultantsltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/odysseyconsultantsltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"officeatwork-ag\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/officeatwork-ag\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"omega-software\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/omega-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"onapsis\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/onapsis\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"oncore_cloud_services-4944214\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/oncore_cloud_services-4944214\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"onexgroup\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/onexgroup\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"onspecta\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/onspecta\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ontology\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ontology\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"onyx-point-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/onyx-point-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"op5\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/op5\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"open-connect-systems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/open-connect-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"opencell\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/opencell\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"openlinkswcom-pago\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/openlinkswcom-pago\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"OpenLogic\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/OpenLogic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"openrefactoryinc1620140917523\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/openrefactoryinc1620140917523\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"openshotstudiosllc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/openshotstudiosllc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"opentext\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/opentext\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"openvpn\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/openvpn\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"opslogix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/opslogix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"opswatinc1619007967290\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/opswatinc1619007967290\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"optimitiveslu1618320281443\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/optimitiveslu1618320281443\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"option3\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/option3\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Oracle\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Oracle\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"oraylis\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/oraylis\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"oraylisbi\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/oraylisbi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"orbs-network\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/orbs-network\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"oriana\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/oriana\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"orientdb\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/orientdb\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"oroinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/oroinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"osirium-ltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/osirium-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"osisoft\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/osisoft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"osnexus\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/osnexus\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"outpost24\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/outpost24\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"outsystems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/outsystems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ovaledge1618392232783\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ovaledge1618392232783\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pachyderminc1585170006545\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pachyderminc1585170006545\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pacteratechnologiesinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pacteratechnologiesinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"paladionnetworkspvtltd1606120508449\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/paladionnetworkspvtltd1606120508449\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"paloaltonetworks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/paloaltonetworks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"panopta\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/panopta\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"panorama-necto\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/panorama-necto\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"panzura-file-system\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/panzura-file-system\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"parabole\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/parabole\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"paralaxiomtechnologiesprivatelimited1596433357886\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/paralaxiomtechnologiesprivatelimited1596433357886\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"parallels\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/parallels\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"parasoft\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/parasoft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"parkersoftwarelimited1609786657569\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/parkersoftwarelimited1609786657569\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"parsec-for-teams\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/parsec-for-teams\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pasifikciptamandiri\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pasifikciptamandiri\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"passlogy\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/passlogy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"paxata\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/paxata\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pcman\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pcman\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"peer-software-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/peer-software-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"penta-security-systems-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/penta-security-systems-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"percona\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/percona\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"perforce\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/perforce\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"periscope-tech-4791746\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/periscope-tech-4791746\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"piolinkinc1582849368309\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/piolinkinc1582849368309\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pivotal\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pivotal\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pixitmedia1591611150480\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pixitmedia1591611150480\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"plesk\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/plesk\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pmsoftwareinternational1603102514882\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pmsoftwareinternational1603102514882\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pnop\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pnop\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"polarityioinc1628691850891\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/polarityioinc1628691850891\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"portalarchitects\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/portalarchitects\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"portsysinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/portsysinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"postgres-pro\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/postgres-pro\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"powerbireach\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/powerbireach\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"prakshepprivatelimited1619949827900\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/prakshepprivatelimited1619949827900\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"prestashop\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/prestashop\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"prestige_informatique-1090178\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/prestige_informatique-1090178\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"prime-strategy\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/prime-strategy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"primekey\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/primekey\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"primestrategynewyorkinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/primestrategynewyorkinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pro-vision\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pro-vision\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"process-one\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/process-one\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"processgold\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/processgold\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"procomputers\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/procomputers\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"procomputerssrl1594239153814\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/procomputerssrl1594239153814\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"profecia\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/profecia\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Profiler.AgentOrchestrationRefactor.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Profiler.AgentOrchestrationRefactor.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Profiler.Master.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Profiler.Master.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"profisee\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/profisee\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"progelspa\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/progelspa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"progresssoftwarecorporation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/progresssoftwarecorporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"proliongmbh1628175060372\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/proliongmbh1628175060372\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"protegrityusainc1627404648458\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/protegrityusainc1627404648458\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"protiviti\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/protiviti\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"proventeq\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/proventeq\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ptc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ptc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ptsecurity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ptsecurity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pulse-secure\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pulse-secure\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pulsesecuretechnologies1638179500151\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pulsesecuretechnologies1638179500151\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"puppet\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/puppet\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"puppeteersoy1601024480557\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/puppeteersoy1601024480557\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"PuppetLabs\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/PuppetLabs\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"PuppetLabs.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/PuppetLabs.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"purestorageinc1578960262525\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/purestorageinc1578960262525\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pydio\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pydio\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pyramidanalytics\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pyramidanalytics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"qlik\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/qlik\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"qnapsystemsinc1601352084032\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/qnapsystemsinc1601352084032\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"qore-technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/qore-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"qs-solutions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/qs-solutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Qualys\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Qualys\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Qualys.LinuxAgent.GrayLabel\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Qualys.LinuxAgent.GrayLabel\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Qualys.WindowsAgent.GrayLabel\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Qualys.WindowsAgent.GrayLabel\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"qualysguard\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/qualysguard\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"quasardb\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/quasardb\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"qubole-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/qubole-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"quest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/quest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"racknap\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/racknap\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rackwareinc1619403669255\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rackwareinc1619403669255\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"radiant-logic\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/radiant-logic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"radware\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/radware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"raincode\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/raincode\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rancher\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rancher\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rapid7\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rapid7\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Rapid7.InsightPlatform\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Rapid7.InsightPlatform\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rapidminer\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rapidminer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"raynetgmbh\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/raynetgmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"readymind\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/readymind\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"realm\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/realm\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"reblaze\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/reblaze\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"RedHat\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/RedHat\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"redhat-rhel\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/redhat-rhel\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"redpoint-global\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/redpoint-global\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"refactr\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/refactr\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"refinitiv\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/refinitiv\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"refinitiv-4807503\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/refinitiv-4807503\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"relevance-lab\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/relevance-lab\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"remotelearner\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/remotelearner\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"res\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/res\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"resco\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/resco\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"resemblesystems1582780358300\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/resemblesystems1582780358300\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"responder-corp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/responder-corp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"revolution-analytics\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/revolution-analytics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rhcsolutions1586957910818\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rhcsolutions1586957910818\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ribboncommunications\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ribboncommunications\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"RightScaleLinux\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/RightScaleLinux\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"RightScaleWindowsServer\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/RightScaleWindowsServer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rimo3\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rimo3\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ringsoftwareresearchanddevelopmentinc1578946072257\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ringsoftwareresearchanddevelopmentinc1578946072257\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"riverbed\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/riverbed\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"RiverbedTechnology\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/RiverbedTechnology\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rmgtechnologiesinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rmgtechnologiesinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rocketml\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rocketml\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rocketsoftware\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rocketsoftware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rohdeschwarzcybersecuritygmbh\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rohdeschwarzcybersecuritygmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rohdeschwarzcybersecuritysas\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rohdeschwarzcybersecuritysas\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"roktech\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/roktech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rsa-security-llc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rsa-security-llc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rsk-labs\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rsk-labs\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rstudio-5237862\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rstudio-5237862\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rtts\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rtts\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rubrik-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rubrik-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"runecastsolutionslimited1614186396822\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/runecastsolutionslimited1614186396822\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"s2ix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/s2ix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"saama\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/saama\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"saasame-limited\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/saasame-limited\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"safesoftwareinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/safesoftwareinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"safeticatechnologiessro\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/safeticatechnologiessro\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"safetica_technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/safetica_technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"safetoopen1585013318137\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/safetoopen1585013318137\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"saltsecurity1583264186232\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/saltsecurity1583264186232\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"saltsecurity1583264669848\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/saltsecurity1583264669848\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"saltstack\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/saltstack\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"samsung-sds\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/samsung-sds\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"samsungelectronics1632860607983\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/samsungelectronics1632860607983\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"samsungsds-cello\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/samsungsds-cello\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"samsungsds_sdbe\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/samsungsds_sdbe\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sandhatatechnologieslimited1615753438737\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sandhatatechnologieslimited1615753438737\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sap\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sap\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sapphiretechnologieslimited1611758579346\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sapphiretechnologieslimited1611758579346\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sas-institute-560503\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sas-institute-560503\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"scaidata\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/scaidata\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"scalearc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/scalearc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"scalegrid\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/scalegrid\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"scality\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/scality\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"schrockeninc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/schrockeninc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sci\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sci\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sciencelogicinc1622565452194\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sciencelogicinc1622565452194\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"scientiamobile\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/scientiamobile\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"scontainug1595751515785\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/scontainug1595751515785\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"scubaanalytics\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/scubaanalytics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"scylladb1631195365807\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/scylladb1631195365807\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"seaqserviciossas1579029207572\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/seaqserviciossas1579029207572\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"searchbloxsoftwareinc1594309037050\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/searchbloxsoftwareinc1594309037050\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"secureworks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/secureworks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"securityonionsolutions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/securityonionsolutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"securityonionsolutionsllc1624649205155\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/securityonionsolutionsllc1624649205155\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"securosis\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/securosis\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"seequentltd1585781751395\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/seequentltd1585781751395\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"semarchy\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/semarchy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"semperis\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/semperis\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"senhasegura\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/senhasegura\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"SentinelOne.LinuxExtension\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/SentinelOne.LinuxExtension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"SentinelOne.WindowsExtension\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/SentinelOne.WindowsExtension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"SentinelOne.WindowsExtension.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/SentinelOne.WindowsExtension.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sentriumsl\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sentriumsl\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sentryone\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sentryone\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sepiosystems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sepiosystems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"seppmailag\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/seppmailag\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"seraumo1620002807288\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/seraumo1620002807288\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"service-control-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/service-control-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sesamesoftwareinc1622125191447\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sesamesoftwareinc1622125191447\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"shadow-soft\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/shadow-soft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"shareshiftneeraj.test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/shareshiftneeraj.test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sightapps\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sightapps\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"signal-sciences\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/signal-sciences\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"silk\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/silk\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"silver-peak-systems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/silver-peak-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"simmachinesinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/simmachinesinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"simontelephonics\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/simontelephonics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"simpledatalabsinc1635791235920\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/simpledatalabsinc1635791235920\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"simplifierag\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/simplifierag\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"simpligov\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/simpligov\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sinefa\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sinefa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sinequa\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sinequa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sinequa1588262295885\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sinequa1588262295885\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"singapore-telecommunications-limited\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/singapore-telecommunications-limited\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sios_datakeeper\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sios_datakeeper\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"siportalinc1581539156321\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/siportalinc1581539156321\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sisenseltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sisenseltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Site24x7\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Site24x7\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sktelecom\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sktelecom\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"skyarc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/skyarc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"skyboxsecurity1585187406404\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/skyboxsecurity1585187406404\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"skylarkcloud\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/skylarkcloud\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"smartbearsoftware\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/smartbearsoftware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"smartmessage-autoflow\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/smartmessage-autoflow\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"snaplogic\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/snaplogic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"snapt-adc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/snapt-adc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"snips\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/snips\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"soasta\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/soasta\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"softnas\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/softnas\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"softwarecentralas1642687699196\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/softwarecentralas1642687699196\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"softwarehut\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/softwarehut\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"softwebsolutions-4518310\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/softwebsolutions-4518310\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"soha\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/soha\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"solanolabs\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/solanolabs\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"solar-security\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/solar-security\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"solarwinds\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/solarwinds\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"solvedevops1643693563360\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/solvedevops1643693563360\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sonicwall-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sonicwall-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sophos\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sophos\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sourcegearllc1616101262784\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sourcegearllc1616101262784\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"south-river-technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/south-river-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"southrivertech1586314123192\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/southrivertech1586314123192\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"spacecurve\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/spacecurve\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"spaceliftinc1625499025476\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/spaceliftinc1625499025476\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"spagobi\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/spagobi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sparklinglogic\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sparklinglogic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"spectralcorelimited1619779004178\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/spectralcorelimited1619779004178\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"spektra\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/spektra\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sphere3d\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sphere3d\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"spideroakinc1588278690933\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/spideroakinc1588278690933\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"spirentcommunications1594084187199\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/spirentcommunications1594084187199\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"splunk\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/splunk\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sproutenetworks1593456311717\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sproutenetworks1593456311717\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sqlstream\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sqlstream\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"squadratechnologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/squadratechnologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"squaredup\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/squaredup\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"src-solution\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/src-solution\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stackato-platform-as-a-service\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stackato-platform-as-a-service\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Stackify.LinuxAgent.Extension\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Stackify.LinuxAgent.Extension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stackstorm\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stackstorm\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"startekfingerprintmatch\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/startekfingerprintmatch\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"startisolucoesemtecnologialtda1635263523201\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/startisolucoesemtecnologialtda1635263523201\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"starwind\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/starwind\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"StatusMonitor2.Diagnostics.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/StatusMonitor2.Diagnostics.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"StatusReport.Diagnostics.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/StatusReport.Diagnostics.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stealthbits\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stealthbits\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"steelhive\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/steelhive\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stonebondtechnologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stonebondtechnologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stonefly\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stonefly\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"storage_made_easy\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/storage_made_easy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stormshield\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stormshield\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"storone1594045543980\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/storone1594045543980\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"storreduce\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/storreduce\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"storwarespzoo1611743234900\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/storwarespzoo1611743234900\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"strangebee1595948424730\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/strangebee1595948424730\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"strataidentity1608323708170\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/strataidentity1608323708170\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stratis-group-ltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stratis-group-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stratodesk1611152769936\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stratodesk1611152769936\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stratumn\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stratumn\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"streamsets\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/streamsets\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"striim\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/striim\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stromasys\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stromasys\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"strongboxitllc1594816423884\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/strongboxitllc1594816423884\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"su\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/su\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"subscription.test.krsh\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/subscription.test.krsh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sumologic\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sumologic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sunatogmbh\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sunatogmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sunday\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sunday\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"SUSE\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/SUSE\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"swoopanalytics\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/swoopanalytics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sycom-technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sycom-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sycompatechnologycompanyinc1588192103892\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sycompatechnologycompanyinc1588192103892\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.CloudWorkloadProtection\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.CloudWorkloadProtection\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.CloudWorkloadProtection.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.CloudWorkloadProtection.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.CloudWorkloadProtection.TestOnStage\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.CloudWorkloadProtection.TestOnStage\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.QA\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.QA\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.staging\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.staging\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.test.ru2.latest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.test.ru2.latest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.test.ru2final\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.test.ru2final\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.test.ru2latest1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.test.ru2latest1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.test.ru4mp1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.test.ru4mp1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.test.ru4mp1.latest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.test.ru4mp1.latest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.test.ru4mp1final\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.test.ru4mp1final\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"symanteccorporation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/symanteccorporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"symantectest1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/symantectest1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"synack-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/synack-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"syncfusion\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/syncfusion\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"syncfusionbigdataplatfor\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/syncfusionbigdataplatfor\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"synechron-technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/synechron-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"synergixinc1585256339250\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/synergixinc1585256339250\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"synnexcorp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/synnexcorp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"syscomcomputerengineeringco1583913200141\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/syscomcomputerengineeringco1583913200141\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"syte\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/syte\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tableau\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tableau\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tactic\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tactic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"talari-networks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/talari-networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"talena-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/talena-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"talend\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/talend\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"talon\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/talon\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tamrinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tamrinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"targit\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/targit\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tata_communications\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tata_communications\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tavanttechnologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tavanttechnologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tavendo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tavendo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"te-systems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/te-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"techdivision\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/techdivision\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"techlatest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/techlatest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"technicheltd1606969724100\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/technicheltd1606969724100\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tecknolab\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tecknolab\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"telepat\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/telepat\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"teloscorporation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/teloscorporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tempered-networks-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tempered-networks-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tenable\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tenable\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tensormakecorpdbaoneclickai1608247756082\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tensormakecorpdbaoneclickai1608247756082\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"teradata\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/teradata\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Teradici\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Teradici\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"teramindinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/teramindinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.Gemalto.SafeNet.ProtectV\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.Gemalto.SafeNet.ProtectV\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.Gemalto.SafeNet.ProtectV.Azure\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.Gemalto.SafeNet.ProtectV.Azure\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.HP.AppDefender\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.HP.AppDefender\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.Microsoft.VisualStudio.Services\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.Microsoft.VisualStudio.Services\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.NJHP.AppDefender\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.NJHP.AppDefender\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.SqlServer.Managability\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.SqlServer.Managability\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.SqlServer.Management\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.SqlServer.Management\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.SqlServer.Management.corext\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.SqlServer.Management.corext\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test1.NJHP.AppDefender\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test1.NJHP.AppDefender\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test3.Microsoft.VisualStudio.Services\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test3.Microsoft.VisualStudio.Services\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"testable1603721901088\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/testable1603721901088\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"testpro\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/testpro\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"test_test_mix3pptest0011614206850774\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/test_test_mix3pptest0011614206850774\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"test_test_mneela1628617140187\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/test_test_mneela1628617140187\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"test_test_pmc2pc1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/test_test_pmc2pc1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thales-vormetric\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thales-vormetric\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thalesdiscplusainc1596561677238\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thalesdiscplusainc1596561677238\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thedatavaluefactoryltd1589348815922\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thedatavaluefactoryltd1589348815922\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thefreebsdfoundation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thefreebsdfoundation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thehdfgroup1616725197741\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thehdfgroup1616725197741\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"theumag1596442827072\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/theumag1596442827072\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"things-board\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/things-board\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thingscareinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thingscareinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thinprintgmbh\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thinprintgmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thorntechnologiesllc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thorntechnologiesllc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thoughtspot-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thoughtspot-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"threatintelligenceptyltd1586824172898\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/threatintelligenceptyltd1586824172898\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tibco-software\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tibco-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tidal-migrations\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tidal-migrations\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tidalmediainc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tidalmediainc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tig\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tig\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tiger-technology\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tiger-technology\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tigergraph\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tigergraph\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"timextender\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/timextender\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tmaxsoft\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tmaxsoft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tmaxsoft1608612658335\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tmaxsoft1608612658335\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tomsawyersoftwarecorp1613579206342\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tomsawyersoftwarecorp1613579206342\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"topicus\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/topicus\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"torusware\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/torusware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"totemo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/totemo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"townsend-security\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/townsend-security\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"transcendinformationinc1609918445926\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/transcendinformationinc1609918445926\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"transientxinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/transientxinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"transvault\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/transvault\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"trendmicro\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/trendmicro\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"TrendMicro.DeepSecurity.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/TrendMicro.DeepSecurity.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"TrendMicro.PortalProtect\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/TrendMicro.PortalProtect\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tresorit\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tresorit\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"trifacta\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/trifacta\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tripleblindinc1615730179432\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tripleblindinc1615730179432\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tripwire-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tripwire-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"truata1612259728221\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/truata1612259728221\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"truestack\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/truestack\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tryonsolutionsinc1596650621083\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tryonsolutionsinc1596650621083\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tsa-public-service\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tsa-public-service\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tunnelbiz\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tunnelbiz\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"turbonet\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/turbonet\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"turbonet1581982683964\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/turbonet1581982683964\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"twistlock\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/twistlock\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"typesafe\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/typesafe\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ubeeko\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ubeeko\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ubercloud\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ubercloud\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"uipath-5054924\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/uipath-5054924\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ulex\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ulex\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"unifi-software\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/unifi-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"unifiedstreaming1598872291606\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/unifiedstreaming1598872291606\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"uniprint-net\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/uniprint-net\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"unitrends\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/unitrends\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"unnisoft\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/unnisoft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"unravel-data\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/unravel-data\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"unscramblsingaporepteltd-4999260\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/unscramblsingaporepteltd-4999260\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"untangle\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/untangle\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"upsolver1594188634150\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/upsolver1594188634150\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"usp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/usp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"valohai\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/valohai\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"valtix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/valtix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"varmournetworks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/varmournetworks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"varnish\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/varnish\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vatacommunicationsinc1581644208717\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vatacommunicationsinc1581644208717\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vaultive-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vaultive-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vbot\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vbot\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vcinityinc1587684340545\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vcinityinc1587684340545\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vectraaiinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vectraaiinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"veeam\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/veeam\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"velocitydb-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/velocitydb-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"velocloud\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/velocloud\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vembutechnologiespvtltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vembutechnologiespvtltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vemn\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vemn\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"veritas\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/veritas\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"versanetworks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/versanetworks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"versasec\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/versasec\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vidispine\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vidispine\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vidizmo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vidizmo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vigyanlabs-innovations-pvt-ltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vigyanlabs-innovations-pvt-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vigyanlabsinc1581413676614\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vigyanlabsinc1581413676614\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"viptela\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/viptela\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vircom\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vircom\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"virtamovecorp1615909247913\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/virtamovecorp1615909247913\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"virtualpulsesro1607008728942\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/virtualpulsesro1607008728942\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"virtuozzointernationalgmbh1626704951469\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/virtuozzointernationalgmbh1626704951469\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"visualknowledgeshare1591795776234\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/visualknowledgeshare1591795776234\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"visualsoft-center\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/visualsoft-center\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vizixiotplatformretail001\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vizixiotplatformretail001\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vmlabinc1613642184700\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vmlabinc1613642184700\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vmturbo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vmturbo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vmware-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vmware-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vnomicinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vnomicinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"voiceelements\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/voiceelements\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"voleatechgmbh1636966911943\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/voleatechgmbh1636966911943\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"volterraedgeservices\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/volterraedgeservices\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Vormetric\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Vormetric\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vscconsultingptyltd1608535888097\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vscconsultingptyltd1608535888097\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vte\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vte\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vu-llc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vu-llc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vyulabsinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vyulabsinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"WAD2AI.Diagnostics.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/WAD2AI.Diagnostics.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"WAD2EventHub.Diagnostics.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/WAD2EventHub.Diagnostics.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wallarm\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wallarm\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wallix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wallix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wandisco\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wandisco\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wanos\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wanos\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wanpath-dba-myworkdrive\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wanpath-dba-myworkdrive\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wardy-it-solutions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wardy-it-solutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"warewolf-esb\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/warewolf-esb\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"watchguard-technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/watchguard-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"webaloinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/webaloinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"websense-apmailpe\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/websense-apmailpe\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"websoft9inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/websoft9inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wedoitllc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wedoitllc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"westernoceansoftwaresprivatelimited\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/westernoceansoftwaresprivatelimited\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wherescapesoftware\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wherescapesoftware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"winmagic_securedoc_cloudvm\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/winmagic_securedoc_cloudvm\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wintellisys-inc-4561600\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wintellisys-inc-4561600\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"witfooinc1590167223060\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/witfooinc1590167223060\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wmspanel\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wmspanel\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wood1595864497589\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wood1595864497589\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"workshare-technology\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/workshare-technology\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"world-programming\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/world-programming\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"worxogo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/worxogo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wowza\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wowza\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"xcontentptyltd-1329748\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/xcontentptyltd-1329748\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"xendata-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/xendata-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"xfinityinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/xfinityinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"xilinx\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/xilinx\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"xoriantcorporationazxteam1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/xoriantcorporationazxteam1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"xoriantsolutionspvtltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/xoriantsolutionspvtltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"xtremedata\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/xtremedata\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"xyzrd-group-ou\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/xyzrd-group-ou\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"yellowfin\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/yellowfin\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"yellowfininternationalptyltd1616363974066\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/yellowfininternationalptyltd1616363974066\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"yokogawarentalleasecorporation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/yokogawarentalleasecorporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"your-shop-online\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/your-shop-online\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"z1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/z1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"z4it-aps\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/z4it-aps\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zabbix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zabbix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zend\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zend\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zenterasystemsinc1605292453288\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zenterasystemsinc1605292453288\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zerodown_software\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zerodown_software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zerto\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zerto\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zettalane_systems-5254599\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zettalane_systems-5254599\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zevenet\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zevenet\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zilliz\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zilliz\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zoomdata\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zoomdata\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zscaler\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zscaler\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zscaler1579058425289\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zscaler1579058425289\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zultysinc1596831546163\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zultysinc1596831546163\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"BGInfo\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"CustomScriptExtension\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"JsonADDomainExtension\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/JsonADDomainExtension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"VMAccessAgent\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/VMAccessAgent\"\r\n }\r\n]", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/southeastasia/publishers/Microsoft.Compute/artifacttypes/vmextension/types?api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9wdWJsaXNoZXJzL01pY3Jvc29mdC5Db21wdXRlL2FydGlmYWN0dHlwZXMvdm1leHRlbnNpb24vdHlwZXM/YXBpLXZlcnNpb249MjAyMS0xMS0wMQ==", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Compute/locations/southeastasia/publishers/Microsoft.Compute/artifacttypes/vmextension/types?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9wdWJsaXNoZXJzL01pY3Jvc29mdC5Db21wdXRlL2FydGlmYWN0dHlwZXMvdm1leHRlbnNpb24vdHlwZXM/YXBpLXZlcnNpb249MjAyMS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "97820b56-d5e2-4232-877d-8da467319bd4" + "efa92f6f-637d-4c39-8ede-9c5b75621fd8" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ] }, "ResponseHeaders": { @@ -2325,35 +2599,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/ListVMExtensionTypes3Min;17999,Microsoft.Compute/ListVMExtensionTypes30Min;22499" + "Microsoft.Compute/ListVMExtensionTypes3Min;17999,Microsoft.Compute/ListVMExtensionTypes30Min;22498" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "1f3ad383-bb66-4279-b2a8-fbbcd093a7e3_132678318374571324" + "1f3ad383-bb66-4279-b2a8-fbbcd093a7e3_132836337789816871" ], "x-ms-request-id": [ - "943e39ae-8fcb-4de3-b324-d6c854f7df6b" + "a9d23573-34e1-4eb6-bcfc-c82dae0aff07" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11978" ], "x-ms-correlation-request-id": [ - "bd58f01a-0ef5-42fe-8654-3266b010c587" + "0a7e4ffb-6d59-4a1c-a904-a388d0d83c73" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T200656Z:bd58f01a-0ef5-42fe-8654-3266b010c587" + "JIOINDIAWEST:20220516T190807Z:0a7e4ffb-6d59-4a1c-a904-a388d0d83c73" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 20:06:55 GMT" + "Mon, 16 May 2022 19:08:07 GMT" ], "Content-Length": [ "1089" @@ -2365,26 +2639,26 @@ "-1" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"BGInfo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"CustomScriptExtension\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"JsonADDomainExtension\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/JsonADDomainExtension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"VMAccessAgent\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/VMAccessAgent\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"BGInfo\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"CustomScriptExtension\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"JsonADDomainExtension\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/JsonADDomainExtension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"VMAccessAgent\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/VMAccessAgent\"\r\n }\r\n]", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/southeastasia/publishers/Microsoft.Compute/artifacttypes/vmextension/types?api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9wdWJsaXNoZXJzL01pY3Jvc29mdC5Db21wdXRlL2FydGlmYWN0dHlwZXMvdm1leHRlbnNpb24vdHlwZXM/YXBpLXZlcnNpb249MjAyMS0xMS0wMQ==", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Compute/locations/southeastasia/publishers/Microsoft.Compute/artifacttypes/vmextension/types/BGInfo/versions?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9wdWJsaXNoZXJzL01pY3Jvc29mdC5Db21wdXRlL2FydGlmYWN0dHlwZXMvdm1leHRlbnNpb24vdHlwZXMvQkdJbmZvL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMjEtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "14f7369d-8f09-42c5-aa21-4b4a95ef5acc" + "1a42f5a5-3016-4c53-830a-5b1f50b0f886" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ] }, "ResponseHeaders": { @@ -2395,38 +2669,38 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/ListVMExtensionTypes3Min;17999,Microsoft.Compute/ListVMExtensionTypes30Min;22498" + "Microsoft.Compute/ListVMExtensions3Min;9999,Microsoft.Compute/ListVMExtensions30Min;21999" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "1f3ad383-bb66-4279-b2a8-fbbcd093a7e3_132678318374571324" + "1f3ad383-bb66-4279-b2a8-fbbcd093a7e3_132836337789816871" ], "x-ms-request-id": [ - "4343de87-4ea1-474c-8645-6ef5efc26e0f" + "7171677e-39f2-46a1-ac57-5e48f9d19b6b" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11978" + "11992" ], "x-ms-correlation-request-id": [ - "bd4d900e-bb60-4abf-ac5d-d3a6e54b43e1" + "b3aa2ef4-b1f1-4879-ac52-2e9740b5919f" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T201157Z:bd4d900e-bb60-4abf-ac5d-d3a6e54b43e1" + "JIOINDIAWEST:20220516T190313Z:b3aa2ef4-b1f1-4879-ac52-2e9740b5919f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 20:11:56 GMT" + "Mon, 16 May 2022 19:03:13 GMT" ], "Content-Length": [ - "1089" + "1856" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2435,26 +2709,26 @@ "-1" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"BGInfo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"CustomScriptExtension\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"JsonADDomainExtension\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/JsonADDomainExtension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"VMAccessAgent\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/VMAccessAgent\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1.0\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo/Versions/1.0\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1.0.1\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo/Versions/1.0.1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1.1\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo/Versions/1.1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1.2\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo/Versions/1.2\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1.2.2\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo/Versions/1.2.2\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"2.1\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo/Versions/2.1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"2.2.2\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo/Versions/2.2.2\"\r\n }\r\n]", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/southeastasia/publishers/Microsoft.Compute/artifacttypes/vmextension/types/BGInfo/versions?api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9wdWJsaXNoZXJzL01pY3Jvc29mdC5Db21wdXRlL2FydGlmYWN0dHlwZXMvdm1leHRlbnNpb24vdHlwZXMvQkdJbmZvL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMjEtMTEtMDE=", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Compute/locations/southeastasia/publishers/Microsoft.Compute/artifacttypes/vmextension/types/BGInfo/versions?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9wdWJsaXNoZXJzL01pY3Jvc29mdC5Db21wdXRlL2FydGlmYWN0dHlwZXMvdm1leHRlbnNpb24vdHlwZXMvQkdJbmZvL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMjEtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "97820b56-d5e2-4232-877d-8da467319bd4" + "efa92f6f-637d-4c39-8ede-9c5b75621fd8" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ] }, "ResponseHeaders": { @@ -2465,38 +2739,38 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/ListVMExtensions3Min;9999,Microsoft.Compute/ListVMExtensions30Min;21997" + "Microsoft.Compute/ListVMExtensions3Min;9999,Microsoft.Compute/ListVMExtensions30Min;21996" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "1f3ad383-bb66-4279-b2a8-fbbcd093a7e3_132678318374571324" + "1f3ad383-bb66-4279-b2a8-fbbcd093a7e3_132836337789816871" ], "x-ms-request-id": [ - "a547a751-8728-4aed-97df-8b8e366b81e8" + "0bad1fe5-f029-4401-afe9-bdfa77c39b19" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11977" ], "x-ms-correlation-request-id": [ - "96a5362c-784d-4e1d-9bde-cc89e0460b2c" + "1ebc72f9-1d27-4b12-8237-6b0f73ae881a" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T200656Z:96a5362c-784d-4e1d-9bde-cc89e0460b2c" + "JIOINDIAWEST:20220516T190807Z:1ebc72f9-1d27-4b12-8237-6b0f73ae881a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 20:06:55 GMT" + "Mon, 16 May 2022 19:08:07 GMT" ], "Content-Length": [ - "1589" + "1856" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2505,26 +2779,32 @@ "-1" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1.0\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo/Versions/1.0\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1.0.1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo/Versions/1.0.1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1.1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo/Versions/1.1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1.2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo/Versions/1.2\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1.2.2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo/Versions/1.2.2\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"2.1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo/Versions/2.1\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1.0\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo/Versions/1.0\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1.0.1\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo/Versions/1.0.1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1.1\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo/Versions/1.1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1.2\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo/Versions/1.2\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1.2.2\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo/Versions/1.2.2\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"2.1\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo/Versions/2.1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"2.2.2\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo/Versions/2.2.2\"\r\n }\r\n]", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/southeastasia/publishers/Microsoft.Compute/artifacttypes/vmextension/types/BGInfo/versions?api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9wdWJsaXNoZXJzL01pY3Jvc29mdC5Db21wdXRlL2FydGlmYWN0dHlwZXMvdm1leHRlbnNpb24vdHlwZXMvQkdJbmZvL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMjEtMTEtMDE=", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.Compute/virtualMachines/PSTestVM972e61/extensions/BGInfo?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTcyZTZhMzIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy9QU1Rlc3RWTTk3MmU2MS9leHRlbnNpb25zL0JHSW5mbz9hcGktdmVyc2lvbj0yMDIxLTExLTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"BGInfo\",\r\n \"typeHandlerVersion\": \"2.2\",\r\n \"autoUpgradeMinorVersion\": true\r\n },\r\n \"location\": \"southeastasia\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "14f7369d-8f09-42c5-aa21-4b4a95ef5acc" + "1a42f5a5-3016-4c53-830a-5b1f50b0f886" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "193" ] }, "ResponseHeaders": { @@ -2534,39 +2814,42 @@ "Pragma": [ "no-cache" ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Compute/locations/southeastasia/operations/523d0546-1390-4810-bd48-fe950b73bad5?p=e484ceca-6435-4a7f-b125-3d82e6b12014&api-version=2021-11-01" + ], + "Azure-AsyncNotification": [ + "Enabled" + ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/ListVMExtensions3Min;9999,Microsoft.Compute/ListVMExtensions30Min;21996" + "Microsoft.Compute/UpdateVM3Min;239,Microsoft.Compute/UpdateVM30Min;1199" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-served-by": [ - "1f3ad383-bb66-4279-b2a8-fbbcd093a7e3_132678318374571324" - ], "x-ms-request-id": [ - "ba2508b6-e761-4f37-bdbd-3f3e5445e1d3" + "523d0546-1390-4810-bd48-fe950b73bad5" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11977" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" ], "x-ms-correlation-request-id": [ - "b7ee01e4-d745-497c-99db-1764d657cb48" + "8125f81c-2b68-4544-ac3a-e4ef13857735" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T201158Z:b7ee01e4-d745-497c-99db-1764d657cb48" + "JIOINDIAWEST:20220516T190316Z:8125f81c-2b68-4544-ac3a-e4ef13857735" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 20:11:58 GMT" + "Mon, 16 May 2022 19:03:16 GMT" ], "Content-Length": [ - "1589" + "484" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2575,32 +2858,87 @@ "-1" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1.0\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo/Versions/1.0\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1.0.1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo/Versions/1.0.1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1.1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo/Versions/1.1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1.2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo/Versions/1.2\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1.2.2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo/Versions/1.2.2\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"2.1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo/Versions/2.1\"\r\n }\r\n]", - "StatusCode": 200 + "ResponseBody": "{\r\n \"name\": \"BGInfo\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.Compute/virtualMachines/PSTestVM972e61/extensions/BGInfo\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Creating\",\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"BGInfo\",\r\n \"typeHandlerVersion\": \"2.2\"\r\n }\r\n}", + "StatusCode": 201 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.Compute/virtualMachines/PSTestVMf3c6e1/extensions/BGInfo?api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZjNjNmUyNTEvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy9QU1Rlc3RWTWYzYzZlMS9leHRlbnNpb25zL0JHSW5mbz9hcGktdmVyc2lvbj0yMDIxLTExLTAx", - "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\": \"southeastasia\"\r\n}", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Compute/locations/southeastasia/operations/523d0546-1390-4810-bd48-fe950b73bad5?p=e484ceca-6435-4a7f-b125-3d82e6b12014&api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzUyM2QwNTQ2LTEzOTAtNDgxMC1iZDQ4LWZlOTUwYjczYmFkNT9wPWU0ODRjZWNhLTY0MzUtNGE3Zi1iMTI1LTNkODJlNmIxMjAxNCZhcGktdmVyc2lvbj0yMDIxLTExLTAx", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "97820b56-d5e2-4232-877d-8da467319bd4" + "1a42f5a5-3016-4c53-830a-5b1f50b0f886" ], - "Accept-Language": [ - "en-US" + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperation3Min;14993,Microsoft.Compute/GetOperation30Min;29987" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "6a85a684-24e3-48ef-bc88-5bc0e6fa9eea" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11991" + ], + "x-ms-correlation-request-id": [ + "18e762e5-707f-4d2b-b450-04cada362257" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T190346Z:18e762e5-707f-4d2b-b450-04cada362257" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 16 May 2022 19:03:45 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2022-05-17T00:33:15.4747873+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"523d0546-1390-4810-bd48-fe950b73bad5\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Compute/locations/southeastasia/operations/523d0546-1390-4810-bd48-fe950b73bad5?p=e484ceca-6435-4a7f-b125-3d82e6b12014&api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzUyM2QwNTQ2LTEzOTAtNDgxMC1iZDQ4LWZlOTUwYjczYmFkNT9wPWU0ODRjZWNhLTY0MzUtNGE3Zi1iMTI1LTNkODJlNmIxMjAxNCZhcGktdmVyc2lvbj0yMDIxLTExLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1a42f5a5-3016-4c53-830a-5b1f50b0f886" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "193" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ] }, "ResponseHeaders": { @@ -2610,42 +2948,36 @@ "Pragma": [ "no-cache" ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/southeastasia/operations/8499505d-64a9-48d0-8ae5-b513cc18966e?p=34dc709c-01b2-42c4-84a2-256a9734610d&api-version=2021-11-01" - ], - "Azure-AsyncNotification": [ - "Enabled" - ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/UpdateVM3Min;239,Microsoft.Compute/UpdateVM30Min;1197" + "Microsoft.Compute/GetOperation3Min;14992,Microsoft.Compute/GetOperation30Min;29986" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "8499505d-64a9-48d0-8ae5-b513cc18966e" + "7c21c7cd-91e3-4cd8-94b8-c861efd16848" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11990" ], "x-ms-correlation-request-id": [ - "68fc6fbd-30dd-4f13-b7c2-f49559748374" + "e0d4f719-5a3e-45ef-8fa6-9fc684966c47" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T200701Z:68fc6fbd-30dd-4f13-b7c2-f49559748374" + "JIOINDIAWEST:20220516T190416Z:e0d4f719-5a3e-45ef-8fa6-9fc684966c47" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 20:07:00 GMT" + "Mon, 16 May 2022 19:04:16 GMT" ], "Content-Length": [ - "484" + "134" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2654,23 +2986,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"BGInfo\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.Compute/virtualMachines/PSTestVMf3c6e1/extensions/BGInfo\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"southeastasia\",\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 + "ResponseBody": "{\r\n \"startTime\": \"2022-05-17T00:33:15.4747873+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"523d0546-1390-4810-bd48-fe950b73bad5\"\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/southeastasia/operations/8499505d-64a9-48d0-8ae5-b513cc18966e?p=34dc709c-01b2-42c4-84a2-256a9734610d&api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzg0OTk1MDVkLTY0YTktNDhkMC04YWU1LWI1MTNjYzE4OTY2ZT9wPTM0ZGM3MDljLTAxYjItNDJjNC04NGEyLTI1NmE5NzM0NjEwZCZhcGktdmVyc2lvbj0yMDIxLTExLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Compute/locations/southeastasia/operations/523d0546-1390-4810-bd48-fe950b73bad5?p=e484ceca-6435-4a7f-b125-3d82e6b12014&api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzUyM2QwNTQ2LTEzOTAtNDgxMC1iZDQ4LWZlOTUwYjczYmFkNT9wPWU0ODRjZWNhLTY0MzUtNGE3Zi1iMTI1LTNkODJlNmIxMjAxNCZhcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "97820b56-d5e2-4232-877d-8da467319bd4" + "1a42f5a5-3016-4c53-830a-5b1f50b0f886" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ] }, "ResponseHeaders": { @@ -2681,32 +3013,32 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperation3Min;14995,Microsoft.Compute/GetOperation30Min;29984" + "Microsoft.Compute/GetOperation3Min;14993,Microsoft.Compute/GetOperation30Min;29985" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "9895372e-ea75-44d4-9ff2-66ea71edfea2" + "c89fe522-0c40-44fc-b311-55810520db95" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11989" ], "x-ms-correlation-request-id": [ - "5c0ffd6c-263b-45cf-888c-9140853a38e5" + "66ee335d-c82b-4d02-b045-c6048f16b454" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T200731Z:5c0ffd6c-263b-45cf-888c-9140853a38e5" + "JIOINDIAWEST:20220516T190446Z:66ee335d-c82b-4d02-b045-c6048f16b454" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 20:07:31 GMT" + "Mon, 16 May 2022 19:04:46 GMT" ], "Content-Length": [ "134" @@ -2718,23 +3050,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-02-23T15:07:00.1235293-05:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"8499505d-64a9-48d0-8ae5-b513cc18966e\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2022-05-17T00:33:15.4747873+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"523d0546-1390-4810-bd48-fe950b73bad5\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/southeastasia/operations/8499505d-64a9-48d0-8ae5-b513cc18966e?p=34dc709c-01b2-42c4-84a2-256a9734610d&api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzg0OTk1MDVkLTY0YTktNDhkMC04YWU1LWI1MTNjYzE4OTY2ZT9wPTM0ZGM3MDljLTAxYjItNDJjNC04NGEyLTI1NmE5NzM0NjEwZCZhcGktdmVyc2lvbj0yMDIxLTExLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Compute/locations/southeastasia/operations/523d0546-1390-4810-bd48-fe950b73bad5?p=e484ceca-6435-4a7f-b125-3d82e6b12014&api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzUyM2QwNTQ2LTEzOTAtNDgxMC1iZDQ4LWZlOTUwYjczYmFkNT9wPWU0ODRjZWNhLTY0MzUtNGE3Zi1iMTI1LTNkODJlNmIxMjAxNCZhcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "97820b56-d5e2-4232-877d-8da467319bd4" + "1a42f5a5-3016-4c53-830a-5b1f50b0f886" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ] }, "ResponseHeaders": { @@ -2745,32 +3077,32 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperation3Min;14995,Microsoft.Compute/GetOperation30Min;29983" + "Microsoft.Compute/GetOperation3Min;14993,Microsoft.Compute/GetOperation30Min;29983" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "1ee7e99b-e58e-4760-ae98-38a48dd42f6a" + "7fd9fea4-4c98-4ba0-8689-f41df4c464eb" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11988" ], "x-ms-correlation-request-id": [ - "dee5219d-b0e6-4292-87c5-cfe0de199a0c" + "d0a30140-f222-4184-b9a7-58fa16d3dcc7" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T200802Z:dee5219d-b0e6-4292-87c5-cfe0de199a0c" + "JIOINDIAWEST:20220516T190517Z:d0a30140-f222-4184-b9a7-58fa16d3dcc7" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 20:08:01 GMT" + "Mon, 16 May 2022 19:05:16 GMT" ], "Content-Length": [ "134" @@ -2782,23 +3114,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-02-23T15:07:00.1235293-05:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"8499505d-64a9-48d0-8ae5-b513cc18966e\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2022-05-17T00:33:15.4747873+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"523d0546-1390-4810-bd48-fe950b73bad5\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/southeastasia/operations/8499505d-64a9-48d0-8ae5-b513cc18966e?p=34dc709c-01b2-42c4-84a2-256a9734610d&api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzg0OTk1MDVkLTY0YTktNDhkMC04YWU1LWI1MTNjYzE4OTY2ZT9wPTM0ZGM3MDljLTAxYjItNDJjNC04NGEyLTI1NmE5NzM0NjEwZCZhcGktdmVyc2lvbj0yMDIxLTExLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Compute/locations/southeastasia/operations/523d0546-1390-4810-bd48-fe950b73bad5?p=e484ceca-6435-4a7f-b125-3d82e6b12014&api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzUyM2QwNTQ2LTEzOTAtNDgxMC1iZDQ4LWZlOTUwYjczYmFkNT9wPWU0ODRjZWNhLTY0MzUtNGE3Zi1iMTI1LTNkODJlNmIxMjAxNCZhcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "97820b56-d5e2-4232-877d-8da467319bd4" + "1a42f5a5-3016-4c53-830a-5b1f50b0f886" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ] }, "ResponseHeaders": { @@ -2809,32 +3141,32 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperation3Min;14993,Microsoft.Compute/GetOperation30Min;29981" + "Microsoft.Compute/GetOperation3Min;14992,Microsoft.Compute/GetOperation30Min;29982" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e12e9c55-a264-482e-8594-99c7a635cf04" + "f30f89c1-3e67-467c-b101-aff8fccfcd55" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "11987" ], "x-ms-correlation-request-id": [ - "7bcd48e6-0900-4328-9141-db0b0b8296f1" + "b08b05e9-72c6-4fae-95d4-f94204763f38" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T200832Z:7bcd48e6-0900-4328-9141-db0b0b8296f1" + "JIOINDIAWEST:20220516T190547Z:b08b05e9-72c6-4fae-95d4-f94204763f38" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 20:08:31 GMT" + "Mon, 16 May 2022 19:05:46 GMT" ], "Content-Length": [ "184" @@ -2846,23 +3178,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-02-23T15:07:00.1235293-05:00\",\r\n \"endTime\": \"2022-02-23T15:08:26.0454417-05:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"8499505d-64a9-48d0-8ae5-b513cc18966e\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2022-05-17T00:33:15.4747873+05:30\",\r\n \"endTime\": \"2022-05-17T00:35:30.7247296+05:30\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"523d0546-1390-4810-bd48-fe950b73bad5\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.Compute/virtualMachines/PSTestVMf3c6e1/extensions/BGInfo?api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZjNjNmUyNTEvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy9QU1Rlc3RWTWYzYzZlMS9leHRlbnNpb25zL0JHSW5mbz9hcGktdmVyc2lvbj0yMDIxLTExLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.Compute/virtualMachines/PSTestVM972e61/extensions/BGInfo?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTcyZTZhMzIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy9QU1Rlc3RWTTk3MmU2MS9leHRlbnNpb25zL0JHSW5mbz9hcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "97820b56-d5e2-4232-877d-8da467319bd4" + "1a42f5a5-3016-4c53-830a-5b1f50b0f886" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ] }, "ResponseHeaders": { @@ -2873,32 +3205,32 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/LowCostGet3Min;3995,Microsoft.Compute/LowCostGet30Min;31981" + "Microsoft.Compute/LowCostGet3Min;3989,Microsoft.Compute/LowCostGet30Min;31958" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "42798d96-609d-412c-9495-4de19eeff1b8" + "b7fe53d2-1955-4d6a-8992-96061001e598" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "11986" ], "x-ms-correlation-request-id": [ - "d5c8ec52-57d1-4481-813f-4fd1e996aef0" + "db839a8d-8d5b-4a0b-a61a-0cffa83976f9" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T200832Z:d5c8ec52-57d1-4481-813f-4fd1e996aef0" + "JIOINDIAWEST:20220516T190547Z:db839a8d-8d5b-4a0b-a61a-0cffa83976f9" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 20:08:31 GMT" + "Mon, 16 May 2022 19:05:47 GMT" ], "Content-Length": [ "485" @@ -2910,26 +3242,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"BGInfo\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.Compute/virtualMachines/PSTestVMf3c6e1/extensions/BGInfo\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"southeastasia\",\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}", + "ResponseBody": "{\r\n \"name\": \"BGInfo\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.Compute/virtualMachines/PSTestVM972e61/extensions/BGInfo\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"BGInfo\",\r\n \"typeHandlerVersion\": \"2.2\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.Compute/virtualMachines/PSTestVMf3c6e2?api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZjNjNmUyNTEvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy9QU1Rlc3RWTWYzYzZlMj9hcGktdmVyc2lvbj0yMDIxLTExLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.Compute/virtualMachines/PSTestVM972e62?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTcyZTZhMzIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy9QU1Rlc3RWTTk3MmU2Mj9hcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "18d0ad79-7992-4682-b1a9-89114ff883ce" + "144ec55a-4f20-4b66-a4d5-0b17cede4a32" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ] }, "ResponseHeaders": { @@ -2943,13 +3275,13 @@ "gateway" ], "x-ms-request-id": [ - "3c9acc85-8620-45d8-a102-688ecd7dc552" + "6dcc73f9-2bca-4603-b877-816adb8f1bd8" ], "x-ms-correlation-request-id": [ - "3c9acc85-8620-45d8-a102-688ecd7dc552" + "6dcc73f9-2bca-4603-b877-816adb8f1bd8" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T200833Z:3c9acc85-8620-45d8-a102-688ecd7dc552" + "JIOINDIAWEST:20220516T190548Z:6dcc73f9-2bca-4603-b877-816adb8f1bd8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2958,7 +3290,7 @@ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 20:08:32 GMT" + "Mon, 16 May 2022 19:05:47 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2970,23 +3302,23 @@ "236" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Compute/virtualMachines/PSTestVMf3c6e2' under resource group 'PSTestRGf3c6e251' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Compute/virtualMachines/PSTestVM972e62' under resource group 'PSTestRG972e6a32' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.Compute/virtualMachines/PSTestVMf3c6e2?api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZjNjNmUyNTEvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy9QU1Rlc3RWTWYzYzZlMj9hcGktdmVyc2lvbj0yMDIxLTExLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.Compute/virtualMachines/PSTestVM972e62?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTcyZTZhMzIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy9QU1Rlc3RWTTk3MmU2Mj9hcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "14f7369d-8f09-42c5-aa21-4b4a95ef5acc" + "efa92f6f-637d-4c39-8ede-9c5b75621fd8" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ] }, "ResponseHeaders": { @@ -2997,13 +3329,13 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/LowCostGet3Min;3996,Microsoft.Compute/LowCostGet30Min;31984" + "Microsoft.Compute/LowCostGet3Min;3990,Microsoft.Compute/LowCostGet30Min;31950" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "245ac3ce-9fc0-47ce-9c3f-9430c5b607e9" + "c7559b05-c9e8-4c15-8ea5-a5f8a2089a23" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -3013,19 +3345,19 @@ "11980" ], "x-ms-correlation-request-id": [ - "e8c534fd-9c88-422f-a39b-016918d4a17c" + "b270baae-7cc1-4ae6-9a30-bee42621c1a8" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T201154Z:e8c534fd-9c88-422f-a39b-016918d4a17c" + "JIOINDIAWEST:20220516T190806Z:b270baae-7cc1-4ae6-9a30-bee42621c1a8" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 20:11:53 GMT" + "Mon, 16 May 2022 19:08:05 GMT" ], "Content-Length": [ - "2265" + "2195" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3034,26 +3366,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"PSTestVMf3c6e2\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.Compute/virtualMachines/PSTestVMf3c6e2\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"Purpose\": \"PSTest\",\r\n \"MabUsed\": \"Yes\",\r\n \"AutoShutDown\": \"No\",\r\n \"Owner\": \"sarath\",\r\n \"DeleteBy\": \"06-2022\",\r\n \"azsecpack\": \"nonprod\",\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": \"true\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"2fd58399-8145-41af-9b3d-bd03ac5608a7\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D1_v2\"\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.4946.220202\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"PSTestVMf3c6e2_OsDisk_1_d09123baabba4e909f14fbdb296a3a8a\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.Compute/disks/PSTestVMf3c6e2_OsDisk_1_d09123baabba4e909f14fbdb296a3a8a\"\r\n },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"PSTestVMf3c6e2\",\r\n \"adminUsername\": \"demouser\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"AutomaticByOS\",\r\n \"assessmentMode\": \"ImageDefault\"\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.Network/networkInterfaces/PSTestNICf3c6e2\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"timeCreated\": \"2022-02-23T15:09:11.3735714-05:00\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"PSTestVM972e62\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.Compute/virtualMachines/PSTestVM972e62\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MabUsed\": \"Yes\",\r\n \"Owner\": \"sarath\",\r\n \"AutoShutDown\": \"No\",\r\n \"Purpose\": \"PSTest\",\r\n \"DeleteBy\": \"06-2022\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"cf099d00-18ce-4874-b629-9b0fdb2f18dd\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D1_v2\"\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.5125.220505\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"PSTestVM972e62_OsDisk_1_d19f7bf147b64ec8acb341ab4a5a8a41\",\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/PSTestRG972e6a32/providers/Microsoft.Compute/disks/PSTestVM972e62_OsDisk_1_d19f7bf147b64ec8acb341ab4a5a8a41\"\r\n },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"PSTestVM972e62\",\r\n \"adminUsername\": \"demouser\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"AutomaticByOS\",\r\n \"assessmentMode\": \"ImageDefault\"\r\n },\r\n \"enableVMAgentPlatformUpdates\": false\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/PSTestRG972e6a32/providers/Microsoft.Network/networkInterfaces/PSTestNIC972e62\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"timeCreated\": \"2022-05-17T00:36:14.5840405+05:30\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.Compute/virtualMachines/PSTestVMf3c6e2?api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZjNjNmUyNTEvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy9QU1Rlc3RWTWYzYzZlMj9hcGktdmVyc2lvbj0yMDIxLTExLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.Compute/virtualMachines/PSTestVM972e62?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTcyZTZhMzIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy9QU1Rlc3RWTTk3MmU2Mj9hcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "517bd875-fbca-4b20-bfca-3c978572512c" + "fbdab212-6620-4f9c-956b-b8179146937b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ] }, "ResponseHeaders": { @@ -3064,13 +3396,13 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/LowCostGet3Min;3996,Microsoft.Compute/LowCostGet30Min;31996" + "Microsoft.Compute/LowCostGet3Min;3984,Microsoft.Compute/LowCostGet30Min;31943" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "1c5612c9-f50c-469a-8a7a-4667f2913243" + "d3ed37e5-dba3-435d-9f0f-b8b9db15a1b0" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -3080,19 +3412,19 @@ "11971" ], "x-ms-correlation-request-id": [ - "03797453-293d-43e1-a62b-fd7ac8208f48" + "f3e9db04-2c2f-4f5c-9cc3-6e5ad15a4313" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T201404Z:03797453-293d-43e1-a62b-fd7ac8208f48" + "JIOINDIAWEST:20220516T191012Z:f3e9db04-2c2f-4f5c-9cc3-6e5ad15a4313" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 20:14:04 GMT" + "Mon, 16 May 2022 19:10:12 GMT" ], "Content-Length": [ - "2828" + "2758" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3101,26 +3433,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"PSTestVMf3c6e2\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.Compute/virtualMachines/PSTestVMf3c6e2\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"Purpose\": \"PSTest\",\r\n \"MabUsed\": \"Yes\",\r\n \"AutoShutDown\": \"No\",\r\n \"Owner\": \"sarath\",\r\n \"DeleteBy\": \"06-2022\",\r\n \"azsecpack\": \"nonprod\",\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": \"true\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"2fd58399-8145-41af-9b3d-bd03ac5608a7\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D1_v2\"\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.4946.220202\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"PSTestVMf3c6e2_OsDisk_1_d09123baabba4e909f14fbdb296a3a8a\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.Compute/disks/PSTestVMf3c6e2_OsDisk_1_d09123baabba4e909f14fbdb296a3a8a\"\r\n },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"PSTestVMf3c6e2\",\r\n \"adminUsername\": \"demouser\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"AutomaticByOS\",\r\n \"assessmentMode\": \"ImageDefault\"\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.Network/networkInterfaces/PSTestNICf3c6e2\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"timeCreated\": \"2022-02-23T15:09:11.3735714-05:00\"\r\n },\r\n \"resources\": [\r\n {\r\n \"name\": \"BGInfo\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.Compute/virtualMachines/PSTestVMf3c6e2/extensions/BGInfo\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"southeastasia\",\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}", + "ResponseBody": "{\r\n \"name\": \"PSTestVM972e62\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.Compute/virtualMachines/PSTestVM972e62\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MabUsed\": \"Yes\",\r\n \"Owner\": \"sarath\",\r\n \"AutoShutDown\": \"No\",\r\n \"Purpose\": \"PSTest\",\r\n \"DeleteBy\": \"06-2022\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"cf099d00-18ce-4874-b629-9b0fdb2f18dd\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D1_v2\"\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.5125.220505\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"PSTestVM972e62_OsDisk_1_d19f7bf147b64ec8acb341ab4a5a8a41\",\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/PSTestRG972e6a32/providers/Microsoft.Compute/disks/PSTestVM972e62_OsDisk_1_d19f7bf147b64ec8acb341ab4a5a8a41\"\r\n },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"PSTestVM972e62\",\r\n \"adminUsername\": \"demouser\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"AutomaticByOS\",\r\n \"assessmentMode\": \"ImageDefault\"\r\n },\r\n \"enableVMAgentPlatformUpdates\": false\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/PSTestRG972e6a32/providers/Microsoft.Network/networkInterfaces/PSTestNIC972e62\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"timeCreated\": \"2022-05-17T00:36:14.5840405+05:30\"\r\n },\r\n \"resources\": [\r\n {\r\n \"name\": \"BGInfo\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.Compute/virtualMachines/PSTestVM972e62/extensions/BGInfo\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"BGInfo\",\r\n \"typeHandlerVersion\": \"2.2\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.Network/virtualNetworks/PSTestVNETf3c6e2?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZjNjNmUyNTEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy9QU1Rlc3RWTkVUZjNjNmUyP2FwaS12ZXJzaW9uPTIwMjEtMDUtMDE=", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.Network/virtualNetworks/PSTestVNET972e62?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTcyZTZhMzIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy9QU1Rlc3RWTkVUOTcyZTYyP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "038ace65-939f-4c59-bcb7-6815e08f9bc9" + "f1a95489-3dca-4e27-9d88-2638b39f9840" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ] }, "ResponseHeaders": { @@ -3134,13 +3466,13 @@ "gateway" ], "x-ms-request-id": [ - "bafdb06b-652c-4778-9d82-5e3a471859b8" + "5a3bd437-feb5-4e3b-86bf-59c85ea2f4e7" ], "x-ms-correlation-request-id": [ - "bafdb06b-652c-4778-9d82-5e3a471859b8" + "5a3bd437-feb5-4e3b-86bf-59c85ea2f4e7" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T200836Z:bafdb06b-652c-4778-9d82-5e3a471859b8" + "WESTINDIA:20220516T190548Z:5a3bd437-feb5-4e3b-86bf-59c85ea2f4e7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3149,7 +3481,7 @@ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 20:08:36 GMT" + "Mon, 16 May 2022 19:05:48 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3161,23 +3493,23 @@ "238" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/virtualNetworks/PSTestVNETf3c6e2' under resource group 'PSTestRGf3c6e251' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/virtualNetworks/PSTestVNET972e62' under resource group 'PSTestRG972e6a32' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.Network/virtualNetworks/PSTestVNETf3c6e2?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZjNjNmUyNTEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy9QU1Rlc3RWTkVUZjNjNmUyP2FwaS12ZXJzaW9uPTIwMjEtMDUtMDE=", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.Network/virtualNetworks/PSTestVNET972e62?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTcyZTZhMzIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy9QU1Rlc3RWTkVUOTcyZTYyP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "038ace65-939f-4c59-bcb7-6815e08f9bc9" + "f1a95489-3dca-4e27-9d88-2638b39f9840" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ] }, "ResponseHeaders": { @@ -3188,16 +3520,16 @@ "no-cache" ], "ETag": [ - "W/\"aedffb70-97f8-4498-8025-8c9fca6c5edc\"" + "W/\"38a5de75-cd13-4e1b-a0b4-344fd0341856\"" ], "x-ms-request-id": [ - "2796cd27-c229-4ab0-bdec-f153018568be" + "83c1180c-5c9e-408d-b795-f1d73a9ccbf7" ], "x-ms-correlation-request-id": [ - "3dc504a1-9a12-4004-832f-763fd92ba2e2" + "9ffc1017-ca02-44b7-adc4-d0f1803e5b21" ], "x-ms-arm-service-request-id": [ - "44ebb05a-e199-4c95-8245-13a75d77d927" + "d7519612-1e43-4220-a82c-10d92c697576" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3210,13 +3542,13 @@ "11997" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T200847Z:3dc504a1-9a12-4004-832f-763fd92ba2e2" + "WESTINDIA:20220516T190556Z:9ffc1017-ca02-44b7-adc4-d0f1803e5b21" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 20:08:47 GMT" + "Mon, 16 May 2022 19:05:56 GMT" ], "Content-Length": [ "1315" @@ -3228,26 +3560,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"PSTestVNETf3c6e2\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.Network/virtualNetworks/PSTestVNETf3c6e2\",\r\n \"etag\": \"W/\\\"aedffb70-97f8-4498-8025-8c9fca6c5edc\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"0a0989d6-a5a2-4186-af93-c8fb7b10f591\",\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\": \"PSTestSNCf3c6e2\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.Network/virtualNetworks/PSTestVNETf3c6e2/subnets/PSTestSNCf3c6e2\",\r\n \"etag\": \"W/\\\"aedffb70-97f8-4498-8025-8c9fca6c5edc\\\"\",\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 },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"PSTestVNET972e62\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.Network/virtualNetworks/PSTestVNET972e62\",\r\n \"etag\": \"W/\\\"38a5de75-cd13-4e1b-a0b4-344fd0341856\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"1a83649e-e662-432b-ad9a-e383645007f8\",\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\": \"PSTestSNC972e62\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.Network/virtualNetworks/PSTestVNET972e62/subnets/PSTestSNC972e62\",\r\n \"etag\": \"W/\\\"38a5de75-cd13-4e1b-a0b4-344fd0341856\\\"\",\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 },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.Network/virtualNetworks/PSTestVNETf3c6e2?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZjNjNmUyNTEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy9QU1Rlc3RWTkVUZjNjNmUyP2FwaS12ZXJzaW9uPTIwMjEtMDUtMDE=", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.Network/virtualNetworks/PSTestVNET972e62?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTcyZTZhMzIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy9QU1Rlc3RWTkVUOTcyZTYyP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "038ace65-939f-4c59-bcb7-6815e08f9bc9" + "f1a95489-3dca-4e27-9d88-2638b39f9840" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ] }, "ResponseHeaders": { @@ -3258,16 +3590,16 @@ "no-cache" ], "ETag": [ - "W/\"aedffb70-97f8-4498-8025-8c9fca6c5edc\"" + "W/\"38a5de75-cd13-4e1b-a0b4-344fd0341856\"" ], "x-ms-request-id": [ - "8a59428e-1923-4cc2-abbc-557a9159ca2e" + "11b01194-c0e3-41e4-aaec-b1821d053fe5" ], "x-ms-correlation-request-id": [ - "c2ea51a2-92d6-4070-a5ea-77dadf21630d" + "cc003079-afac-4637-b81d-5bb76927fa0f" ], "x-ms-arm-service-request-id": [ - "f973be4c-c3ae-4d35-bb4f-62c57b9e1014" + "8b573f5d-c210-4d15-b83c-bea87f5b5e17" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3280,13 +3612,13 @@ "11996" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T200848Z:c2ea51a2-92d6-4070-a5ea-77dadf21630d" + "WESTINDIA:20220516T190556Z:cc003079-afac-4637-b81d-5bb76927fa0f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 20:08:48 GMT" + "Mon, 16 May 2022 19:05:56 GMT" ], "Content-Length": [ "1315" @@ -3298,26 +3630,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"PSTestVNETf3c6e2\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.Network/virtualNetworks/PSTestVNETf3c6e2\",\r\n \"etag\": \"W/\\\"aedffb70-97f8-4498-8025-8c9fca6c5edc\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"0a0989d6-a5a2-4186-af93-c8fb7b10f591\",\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\": \"PSTestSNCf3c6e2\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.Network/virtualNetworks/PSTestVNETf3c6e2/subnets/PSTestSNCf3c6e2\",\r\n \"etag\": \"W/\\\"aedffb70-97f8-4498-8025-8c9fca6c5edc\\\"\",\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 },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"PSTestVNET972e62\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.Network/virtualNetworks/PSTestVNET972e62\",\r\n \"etag\": \"W/\\\"38a5de75-cd13-4e1b-a0b4-344fd0341856\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"1a83649e-e662-432b-ad9a-e383645007f8\",\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\": \"PSTestSNC972e62\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.Network/virtualNetworks/PSTestVNET972e62/subnets/PSTestSNC972e62\",\r\n \"etag\": \"W/\\\"38a5de75-cd13-4e1b-a0b4-344fd0341856\\\"\",\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 },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.Network/virtualNetworks/PSTestVNETf3c6e2?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZjNjNmUyNTEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy9QU1Rlc3RWTkVUZjNjNmUyP2FwaS12ZXJzaW9uPTIwMjEtMDUtMDE=", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.Network/virtualNetworks/PSTestVNET972e62?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTcyZTZhMzIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy9QU1Rlc3RWTkVUOTcyZTYyP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=", "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 \"applicationGatewayIpConfigurations\": []\r\n },\r\n \"name\": \"PSTestSNCf3c6e2\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"ipAllocations\": []\r\n },\r\n \"location\": \"southeastasia\"\r\n}", + "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 \"applicationGatewayIpConfigurations\": []\r\n },\r\n \"name\": \"PSTestSNC972e62\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"ipAllocations\": []\r\n },\r\n \"location\": \"southeastasia\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "038ace65-939f-4c59-bcb7-6815e08f9bc9" + "f1a95489-3dca-4e27-9d88-2638b39f9840" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3337,19 +3669,19 @@ "3" ], "x-ms-request-id": [ - "1109c708-3c3b-4760-93e7-676295539a17" + "3f10d0eb-a21b-4cdc-9e6b-50095f335069" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Network/locations/southeastasia/operations/1109c708-3c3b-4760-93e7-676295539a17?api-version=2021-05-01" + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Network/locations/southeastasia/operations/3f10d0eb-a21b-4cdc-9e6b-50095f335069?api-version=2021-08-01" ], "x-ms-correlation-request-id": [ - "70b5eded-3361-4dab-a5f6-2a7d002c8c3b" + "423dcffa-f070-449d-84e8-68da7d939764" ], "Azure-AsyncNotification": [ "Enabled" ], "x-ms-arm-service-request-id": [ - "38d1d9ce-d44c-4bfc-ae99-a21924a55b4f" + "3e37675a-db8c-477d-af29-a6811c7bae96" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3362,13 +3694,13 @@ "1199" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T200844Z:70b5eded-3361-4dab-a5f6-2a7d002c8c3b" + "WESTINDIA:20220516T190553Z:423dcffa-f070-449d-84e8-68da7d939764" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 20:08:44 GMT" + "Mon, 16 May 2022 19:05:53 GMT" ], "Content-Length": [ "1313" @@ -3380,23 +3712,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"PSTestVNETf3c6e2\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.Network/virtualNetworks/PSTestVNETf3c6e2\",\r\n \"etag\": \"W/\\\"2fbb31c8-e373-4bda-9d3a-3b527579adcf\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"0a0989d6-a5a2-4186-af93-c8fb7b10f591\",\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\": \"PSTestSNCf3c6e2\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.Network/virtualNetworks/PSTestVNETf3c6e2/subnets/PSTestSNCf3c6e2\",\r\n \"etag\": \"W/\\\"2fbb31c8-e373-4bda-9d3a-3b527579adcf\\\"\",\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 },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"PSTestVNET972e62\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.Network/virtualNetworks/PSTestVNET972e62\",\r\n \"etag\": \"W/\\\"351e77d2-1b1a-4610-9593-63228a58a21e\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"1a83649e-e662-432b-ad9a-e383645007f8\",\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\": \"PSTestSNC972e62\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.Network/virtualNetworks/PSTestVNET972e62/subnets/PSTestSNC972e62\",\r\n \"etag\": \"W/\\\"351e77d2-1b1a-4610-9593-63228a58a21e\\\"\",\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 },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Network/locations/southeastasia/operations/1109c708-3c3b-4760-93e7-676295539a17?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzExMDljNzA4LTNjM2ItNDc2MC05M2U3LTY3NjI5NTUzOWExNz9hcGktdmVyc2lvbj0yMDIxLTA1LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Network/locations/southeastasia/operations/3f10d0eb-a21b-4cdc-9e6b-50095f335069?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzNmMTBkMGViLWEyMWItNGNkYy05ZTZiLTUwMDk1ZjMzNTA2OT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "038ace65-939f-4c59-bcb7-6815e08f9bc9" + "f1a95489-3dca-4e27-9d88-2638b39f9840" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ] }, "ResponseHeaders": { @@ -3407,13 +3739,13 @@ "no-cache" ], "x-ms-request-id": [ - "c85a4e8e-8f63-45d9-9b4d-f7dd229c4b89" + "be203295-a31b-4607-b939-e78fa59803a6" ], "x-ms-correlation-request-id": [ - "2b453f13-6db0-44d3-abeb-45a99ee20f8d" + "c2e1a4dc-f740-46fa-945e-6d92b7918cf6" ], "x-ms-arm-service-request-id": [ - "91767e99-534b-4ebe-ae77-9288fffc777a" + "5c6b2f5c-e370-4add-a144-8adba08fab4c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3426,13 +3758,13 @@ "11998" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T200847Z:2b453f13-6db0-44d3-abeb-45a99ee20f8d" + "WESTINDIA:20220516T190556Z:c2e1a4dc-f740-46fa-945e-6d92b7918cf6" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 20:08:47 GMT" + "Mon, 16 May 2022 19:05:56 GMT" ], "Content-Length": [ "29" @@ -3448,22 +3780,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.Network/publicIPAddresses/pstestpublicdnsf3c6e2?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZjNjNmUyNTEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BzdGVzdHB1YmxpY2Ruc2YzYzZlMj9hcGktdmVyc2lvbj0yMDIxLTA1LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.Network/publicIPAddresses/pstestpublicdns972e62?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTcyZTZhMzIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BzdGVzdHB1YmxpY2Ruczk3MmU2Mj9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3b046235-aadb-4316-8e2d-9b83d0c5da15" + "783f4d87-3ee6-44d2-9cf8-c18f313bb48a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ] }, "ResponseHeaders": { @@ -3477,13 +3809,13 @@ "gateway" ], "x-ms-request-id": [ - "c3cec96f-f138-426b-b223-2f41d66ef7c6" + "907c6015-8a66-4763-8fe7-9773b1cd683f" ], "x-ms-correlation-request-id": [ - "c3cec96f-f138-426b-b223-2f41d66ef7c6" + "907c6015-8a66-4763-8fe7-9773b1cd683f" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T200848Z:c3cec96f-f138-426b-b223-2f41d66ef7c6" + "WESTINDIA:20220516T190556Z:907c6015-8a66-4763-8fe7-9773b1cd683f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3492,7 +3824,7 @@ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 20:08:48 GMT" + "Mon, 16 May 2022 19:05:56 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3504,23 +3836,23 @@ "245" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/publicIPAddresses/pstestpublicdnsf3c6e2' under resource group 'PSTestRGf3c6e251' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/publicIPAddresses/pstestpublicdns972e62' under resource group 'PSTestRG972e6a32' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.Network/publicIPAddresses/pstestpublicdnsf3c6e2?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZjNjNmUyNTEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BzdGVzdHB1YmxpY2Ruc2YzYzZlMj9hcGktdmVyc2lvbj0yMDIxLTA1LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.Network/publicIPAddresses/pstestpublicdns972e62?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTcyZTZhMzIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BzdGVzdHB1YmxpY2Ruczk3MmU2Mj9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3b046235-aadb-4316-8e2d-9b83d0c5da15" + "783f4d87-3ee6-44d2-9cf8-c18f313bb48a" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ] }, "ResponseHeaders": { @@ -3531,16 +3863,16 @@ "no-cache" ], "ETag": [ - "W/\"e3aab5fb-2e80-439b-be6b-269471301e8f\"" + "W/\"9fdee711-e683-4ae1-9d76-9c278b7a9740\"" ], "x-ms-request-id": [ - "26eced05-7ff1-46fb-8d8a-b5b042b1572c" + "9dcda426-7037-461e-be2a-fe4a9b672ef3" ], "x-ms-correlation-request-id": [ - "30147f75-bd77-4f60-86d0-e6a8a87248fa" + "6bbb9a62-b4af-483d-9e02-3fd3f798d9c9" ], "x-ms-arm-service-request-id": [ - "d32fb50f-7b4a-4944-8b30-137a5dfb7beb" + "5efbfe8a-3d37-4b1c-8507-dc106c3380fd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3553,13 +3885,13 @@ "11993" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T200854Z:30147f75-bd77-4f60-86d0-e6a8a87248fa" + "WESTINDIA:20220516T190601Z:6bbb9a62-b4af-483d-9e02-3fd3f798d9c9" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 20:08:54 GMT" + "Mon, 16 May 2022 19:06:01 GMT" ], "Content-Length": [ "698" @@ -3571,26 +3903,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"pstestpublicdnsf3c6e2\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.Network/publicIPAddresses/pstestpublicdnsf3c6e2\",\r\n \"etag\": \"W/\\\"e3aab5fb-2e80-439b-be6b-269471301e8f\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"e576b914-947f-49d2-8f86-8c6a913d5114\",\r\n \"ipAddress\": \"20.212.80.106\",\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 \"tier\": \"Regional\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"pstestpublicdns972e62\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.Network/publicIPAddresses/pstestpublicdns972e62\",\r\n \"etag\": \"W/\\\"9fdee711-e683-4ae1-9d76-9c278b7a9740\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"26ccca51-0ee8-4663-908a-5529e2d87bda\",\r\n \"ipAddress\": \"20.212.214.46\",\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 \"tier\": \"Regional\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.Network/publicIPAddresses/pstestpublicdnsf3c6e2?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZjNjNmUyNTEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BzdGVzdHB1YmxpY2Ruc2YzYzZlMj9hcGktdmVyc2lvbj0yMDIxLTA1LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.Network/publicIPAddresses/pstestpublicdns972e62?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTcyZTZhMzIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BzdGVzdHB1YmxpY2Ruczk3MmU2Mj9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3b046235-aadb-4316-8e2d-9b83d0c5da15" + "783f4d87-3ee6-44d2-9cf8-c18f313bb48a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ] }, "ResponseHeaders": { @@ -3601,16 +3933,16 @@ "no-cache" ], "ETag": [ - "W/\"e3aab5fb-2e80-439b-be6b-269471301e8f\"" + "W/\"9fdee711-e683-4ae1-9d76-9c278b7a9740\"" ], "x-ms-request-id": [ - "8b92d664-d301-4179-8b2a-b462e24c8346" + "3421290e-83ca-4c5e-99f5-c2f1f7d3d688" ], "x-ms-correlation-request-id": [ - "60c9dec5-149a-42eb-aacd-afe40dafc0f3" + "e9a5892c-12d7-4a46-b684-f2c8ff6a36d2" ], "x-ms-arm-service-request-id": [ - "902f8b09-d303-47b3-8ef7-b586b197b03c" + "b4d3d632-40c5-464c-ab0f-c004bbabe202" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3623,13 +3955,13 @@ "11992" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T200854Z:60c9dec5-149a-42eb-aacd-afe40dafc0f3" + "WESTINDIA:20220516T190601Z:e9a5892c-12d7-4a46-b684-f2c8ff6a36d2" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 20:08:54 GMT" + "Mon, 16 May 2022 19:06:01 GMT" ], "Content-Length": [ "698" @@ -3641,26 +3973,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"pstestpublicdnsf3c6e2\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.Network/publicIPAddresses/pstestpublicdnsf3c6e2\",\r\n \"etag\": \"W/\\\"e3aab5fb-2e80-439b-be6b-269471301e8f\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"e576b914-947f-49d2-8f86-8c6a913d5114\",\r\n \"ipAddress\": \"20.212.80.106\",\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 \"tier\": \"Regional\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"pstestpublicdns972e62\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.Network/publicIPAddresses/pstestpublicdns972e62\",\r\n \"etag\": \"W/\\\"9fdee711-e683-4ae1-9d76-9c278b7a9740\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"26ccca51-0ee8-4663-908a-5529e2d87bda\",\r\n \"ipAddress\": \"20.212.214.46\",\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 \"tier\": \"Regional\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.Network/publicIPAddresses/pstestpublicdnsf3c6e2?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZjNjNmUyNTEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BzdGVzdHB1YmxpY2Ruc2YzYzZlMj9hcGktdmVyc2lvbj0yMDIxLTA1LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.Network/publicIPAddresses/pstestpublicdns972e62?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTcyZTZhMzIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BzdGVzdHB1YmxpY2Ruczk3MmU2Mj9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "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\": \"southeastasia\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "3b046235-aadb-4316-8e2d-9b83d0c5da15" + "783f4d87-3ee6-44d2-9cf8-c18f313bb48a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3680,19 +4012,19 @@ "1" ], "x-ms-request-id": [ - "940b33f6-ec7a-4a62-ac4b-32609448a0e1" + "cef1c0ff-b061-41de-b871-42bc79ac51d8" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Network/locations/southeastasia/operations/940b33f6-ec7a-4a62-ac4b-32609448a0e1?api-version=2021-05-01" + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Network/locations/southeastasia/operations/cef1c0ff-b061-41de-b871-42bc79ac51d8?api-version=2021-08-01" ], "x-ms-correlation-request-id": [ - "507b5c10-ca61-444d-84d3-cdd53f76133a" + "4d1a9de5-9ab1-4598-b100-dba0d5aec3d6" ], "Azure-AsyncNotification": [ "Enabled" ], "x-ms-arm-service-request-id": [ - "d2a39b10-779e-4ef0-af65-fb699d0afded" + "cbf83fcd-5bf8-4e25-b862-79c4ccc96ad5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3705,13 +4037,13 @@ "1198" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T200852Z:507b5c10-ca61-444d-84d3-cdd53f76133a" + "WESTINDIA:20220516T190559Z:4d1a9de5-9ab1-4598-b100-dba0d5aec3d6" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 20:08:52 GMT" + "Mon, 16 May 2022 19:05:59 GMT" ], "Content-Length": [ "662" @@ -3723,23 +4055,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"pstestpublicdnsf3c6e2\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.Network/publicIPAddresses/pstestpublicdnsf3c6e2\",\r\n \"etag\": \"W/\\\"b34d13c8-c6aa-487f-a122-7922a20c535f\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"e576b914-947f-49d2-8f86-8c6a913d5114\",\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 \"tier\": \"Regional\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"pstestpublicdns972e62\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.Network/publicIPAddresses/pstestpublicdns972e62\",\r\n \"etag\": \"W/\\\"5b37ee78-d7d4-48b0-92d3-b764bdf21c83\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"26ccca51-0ee8-4663-908a-5529e2d87bda\",\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 \"tier\": \"Regional\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Network/locations/southeastasia/operations/940b33f6-ec7a-4a62-ac4b-32609448a0e1?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzk0MGIzM2Y2LWVjN2EtNGE2Mi1hYzRiLTMyNjA5NDQ4YTBlMT9hcGktdmVyc2lvbj0yMDIxLTA1LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Network/locations/southeastasia/operations/cef1c0ff-b061-41de-b871-42bc79ac51d8?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2NlZjFjMGZmLWIwNjEtNDFkZS1iODcxLTQyYmM3OWFjNTFkOD9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3b046235-aadb-4316-8e2d-9b83d0c5da15" + "783f4d87-3ee6-44d2-9cf8-c18f313bb48a" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ] }, "ResponseHeaders": { @@ -3750,13 +4082,13 @@ "no-cache" ], "x-ms-request-id": [ - "042de140-2675-4fd6-b536-dcdfd5f202eb" + "bf20a9e9-1524-45ea-b3b4-e052bcc46038" ], "x-ms-correlation-request-id": [ - "91ba563e-4049-4308-b10c-57f18ee7208b" + "58204489-30f1-41c6-84f5-73513ac2fc88" ], "x-ms-arm-service-request-id": [ - "39738a4b-8a86-4c94-9399-4ccbf6741cab" + "850c6027-965e-4d01-b768-7d93fac949e2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3769,13 +4101,13 @@ "11994" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T200854Z:91ba563e-4049-4308-b10c-57f18ee7208b" + "WESTINDIA:20220516T190601Z:58204489-30f1-41c6-84f5-73513ac2fc88" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 20:08:53 GMT" + "Mon, 16 May 2022 19:06:00 GMT" ], "Content-Length": [ "29" @@ -3791,22 +4123,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGf3c6e2?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZjNjNmUyNTEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtTZWN1cml0eUdyb3Vwcy9QU1Rlc3ROU0dmM2M2ZTI/YXBpLXZlcnNpb249MjAyMS0wNS0wMQ==", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG972e62?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTcyZTZhMzIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtTZWN1cml0eUdyb3Vwcy9QU1Rlc3ROU0c5NzJlNjI/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "480997bc-b69b-4b1b-aaa1-52a4b8574022" + "fa83924a-83ca-45f3-962e-9d7541dbbfaf" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ] }, "ResponseHeaders": { @@ -3820,13 +4152,13 @@ "gateway" ], "x-ms-request-id": [ - "2dfe4ec8-4730-463b-afb7-54c5b9f958ab" + "c6a6a3ba-bfc8-44bd-a3c9-44291f8398d3" ], "x-ms-correlation-request-id": [ - "2dfe4ec8-4730-463b-afb7-54c5b9f958ab" + "c6a6a3ba-bfc8-44bd-a3c9-44291f8398d3" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T200854Z:2dfe4ec8-4730-463b-afb7-54c5b9f958ab" + "WESTINDIA:20220516T190601Z:c6a6a3ba-bfc8-44bd-a3c9-44291f8398d3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3835,7 +4167,7 @@ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 20:08:54 GMT" + "Mon, 16 May 2022 19:06:01 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3847,23 +4179,23 @@ "243" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/networkSecurityGroups/PSTestNSGf3c6e2' under resource group 'PSTestRGf3c6e251' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/networkSecurityGroups/PSTestNSG972e62' under resource group 'PSTestRG972e6a32' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGf3c6e2?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZjNjNmUyNTEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtTZWN1cml0eUdyb3Vwcy9QU1Rlc3ROU0dmM2M2ZTI/YXBpLXZlcnNpb249MjAyMS0wNS0wMQ==", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG972e62?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTcyZTZhMzIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtTZWN1cml0eUdyb3Vwcy9QU1Rlc3ROU0c5NzJlNjI/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "480997bc-b69b-4b1b-aaa1-52a4b8574022" + "fa83924a-83ca-45f3-962e-9d7541dbbfaf" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ] }, "ResponseHeaders": { @@ -3874,16 +4206,16 @@ "no-cache" ], "ETag": [ - "W/\"517bff1c-0747-4be5-9254-dad5c40f2f4f\"" + "W/\"d69e2deb-1e9f-4a4d-a961-4e453b40d171\"" ], "x-ms-request-id": [ - "b354eb42-46f1-4e4d-bf88-29d4d59ff233" + "62dfe9ef-9a79-48a1-b607-db4bfb5bb20d" ], "x-ms-correlation-request-id": [ - "c50a9e05-42a1-4d04-b1f9-3cf577ad6fa8" + "df20d2c6-a040-4523-86a7-fca0cfb76eed" ], "x-ms-arm-service-request-id": [ - "f175eec0-3dd0-412b-b9b7-d6ddfeccb1e8" + "96a80f54-d4ed-4917-ba16-cecc5e3b1d72" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3896,13 +4228,13 @@ "11989" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T200903Z:c50a9e05-42a1-4d04-b1f9-3cf577ad6fa8" + "WESTINDIA:20220516T190607Z:df20d2c6-a040-4523-86a7-fca0cfb76eed" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 20:09:02 GMT" + "Mon, 16 May 2022 19:06:07 GMT" ], "Content-Length": [ "8475" @@ -3914,26 +4246,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"PSTestNSGf3c6e2\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGf3c6e2\",\r\n \"etag\": \"W/\\\"517bff1c-0747-4be5-9254-dad5c40f2f4f\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"bbbec782-a75e-4cd9-8e10-3c32ef017fdf\",\r\n \"securityRules\": [\r\n {\r\n \"name\": \"PSTestNSGRuleRDPf3c6e2\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGf3c6e2/securityRules/PSTestNSGRuleRDPf3c6e2\",\r\n \"etag\": \"W/\\\"517bff1c-0747-4be5-9254-dad5c40f2f4f\\\"\",\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\": \"PSTestNSGRuleWebf3c6e2\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGf3c6e2/securityRules/PSTestNSGRuleWebf3c6e2\",\r\n \"etag\": \"W/\\\"517bff1c-0747-4be5-9254-dad5c40f2f4f\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGf3c6e2/defaultSecurityRules/AllowVnetInBound\",\r\n \"etag\": \"W/\\\"517bff1c-0747-4be5-9254-dad5c40f2f4f\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGf3c6e2/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\r\n \"etag\": \"W/\\\"517bff1c-0747-4be5-9254-dad5c40f2f4f\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGf3c6e2/defaultSecurityRules/DenyAllInBound\",\r\n \"etag\": \"W/\\\"517bff1c-0747-4be5-9254-dad5c40f2f4f\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGf3c6e2/defaultSecurityRules/AllowVnetOutBound\",\r\n \"etag\": \"W/\\\"517bff1c-0747-4be5-9254-dad5c40f2f4f\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGf3c6e2/defaultSecurityRules/AllowInternetOutBound\",\r\n \"etag\": \"W/\\\"517bff1c-0747-4be5-9254-dad5c40f2f4f\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGf3c6e2/defaultSecurityRules/DenyAllOutBound\",\r\n \"etag\": \"W/\\\"517bff1c-0747-4be5-9254-dad5c40f2f4f\\\"\",\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}", + "ResponseBody": "{\r\n \"name\": \"PSTestNSG972e62\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG972e62\",\r\n \"etag\": \"W/\\\"d69e2deb-1e9f-4a4d-a961-4e453b40d171\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"641dbecd-50c0-4036-bb62-d535dfe0bab7\",\r\n \"securityRules\": [\r\n {\r\n \"name\": \"PSTestNSGRuleRDP972e62\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG972e62/securityRules/PSTestNSGRuleRDP972e62\",\r\n \"etag\": \"W/\\\"d69e2deb-1e9f-4a4d-a961-4e453b40d171\\\"\",\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\": \"PSTestNSGRuleWeb972e62\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG972e62/securityRules/PSTestNSGRuleWeb972e62\",\r\n \"etag\": \"W/\\\"d69e2deb-1e9f-4a4d-a961-4e453b40d171\\\"\",\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/PSTestRG972e6a32/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG972e62/defaultSecurityRules/AllowVnetInBound\",\r\n \"etag\": \"W/\\\"d69e2deb-1e9f-4a4d-a961-4e453b40d171\\\"\",\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/PSTestRG972e6a32/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG972e62/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\r\n \"etag\": \"W/\\\"d69e2deb-1e9f-4a4d-a961-4e453b40d171\\\"\",\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/PSTestRG972e6a32/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG972e62/defaultSecurityRules/DenyAllInBound\",\r\n \"etag\": \"W/\\\"d69e2deb-1e9f-4a4d-a961-4e453b40d171\\\"\",\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/PSTestRG972e6a32/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG972e62/defaultSecurityRules/AllowVnetOutBound\",\r\n \"etag\": \"W/\\\"d69e2deb-1e9f-4a4d-a961-4e453b40d171\\\"\",\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/PSTestRG972e6a32/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG972e62/defaultSecurityRules/AllowInternetOutBound\",\r\n \"etag\": \"W/\\\"d69e2deb-1e9f-4a4d-a961-4e453b40d171\\\"\",\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/PSTestRG972e6a32/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG972e62/defaultSecurityRules/DenyAllOutBound\",\r\n \"etag\": \"W/\\\"d69e2deb-1e9f-4a4d-a961-4e453b40d171\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGf3c6e2?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZjNjNmUyNTEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtTZWN1cml0eUdyb3Vwcy9QU1Rlc3ROU0dmM2M2ZTI/YXBpLXZlcnNpb249MjAyMS0wNS0wMQ==", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG972e62?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTcyZTZhMzIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtTZWN1cml0eUdyb3Vwcy9QU1Rlc3ROU0c5NzJlNjI/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "480997bc-b69b-4b1b-aaa1-52a4b8574022" + "fa83924a-83ca-45f3-962e-9d7541dbbfaf" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ] }, "ResponseHeaders": { @@ -3944,16 +4276,16 @@ "no-cache" ], "ETag": [ - "W/\"517bff1c-0747-4be5-9254-dad5c40f2f4f\"" + "W/\"d69e2deb-1e9f-4a4d-a961-4e453b40d171\"" ], "x-ms-request-id": [ - "279b4021-4d8e-4d0c-8bb4-b3cb13f147bd" + "ba3625e3-ccce-47e4-9163-7bb1209c2b7c" ], "x-ms-correlation-request-id": [ - "7361a728-3788-4726-8818-8211b853baab" + "33275843-eb4e-459f-b289-d8cc007ae77d" ], "x-ms-arm-service-request-id": [ - "2bb40a3e-b234-4557-a037-a7e767baa356" + "a9cd5093-3d29-45db-8538-a153b6970c7e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3966,13 +4298,13 @@ "11988" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T200903Z:7361a728-3788-4726-8818-8211b853baab" + "WESTINDIA:20220516T190607Z:33275843-eb4e-459f-b289-d8cc007ae77d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 20:09:03 GMT" + "Mon, 16 May 2022 19:06:07 GMT" ], "Content-Length": [ "8475" @@ -3984,26 +4316,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"PSTestNSGf3c6e2\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGf3c6e2\",\r\n \"etag\": \"W/\\\"517bff1c-0747-4be5-9254-dad5c40f2f4f\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"bbbec782-a75e-4cd9-8e10-3c32ef017fdf\",\r\n \"securityRules\": [\r\n {\r\n \"name\": \"PSTestNSGRuleRDPf3c6e2\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGf3c6e2/securityRules/PSTestNSGRuleRDPf3c6e2\",\r\n \"etag\": \"W/\\\"517bff1c-0747-4be5-9254-dad5c40f2f4f\\\"\",\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\": \"PSTestNSGRuleWebf3c6e2\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGf3c6e2/securityRules/PSTestNSGRuleWebf3c6e2\",\r\n \"etag\": \"W/\\\"517bff1c-0747-4be5-9254-dad5c40f2f4f\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGf3c6e2/defaultSecurityRules/AllowVnetInBound\",\r\n \"etag\": \"W/\\\"517bff1c-0747-4be5-9254-dad5c40f2f4f\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGf3c6e2/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\r\n \"etag\": \"W/\\\"517bff1c-0747-4be5-9254-dad5c40f2f4f\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGf3c6e2/defaultSecurityRules/DenyAllInBound\",\r\n \"etag\": \"W/\\\"517bff1c-0747-4be5-9254-dad5c40f2f4f\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGf3c6e2/defaultSecurityRules/AllowVnetOutBound\",\r\n \"etag\": \"W/\\\"517bff1c-0747-4be5-9254-dad5c40f2f4f\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGf3c6e2/defaultSecurityRules/AllowInternetOutBound\",\r\n \"etag\": \"W/\\\"517bff1c-0747-4be5-9254-dad5c40f2f4f\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGf3c6e2/defaultSecurityRules/DenyAllOutBound\",\r\n \"etag\": \"W/\\\"517bff1c-0747-4be5-9254-dad5c40f2f4f\\\"\",\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}", + "ResponseBody": "{\r\n \"name\": \"PSTestNSG972e62\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG972e62\",\r\n \"etag\": \"W/\\\"d69e2deb-1e9f-4a4d-a961-4e453b40d171\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"641dbecd-50c0-4036-bb62-d535dfe0bab7\",\r\n \"securityRules\": [\r\n {\r\n \"name\": \"PSTestNSGRuleRDP972e62\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG972e62/securityRules/PSTestNSGRuleRDP972e62\",\r\n \"etag\": \"W/\\\"d69e2deb-1e9f-4a4d-a961-4e453b40d171\\\"\",\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\": \"PSTestNSGRuleWeb972e62\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG972e62/securityRules/PSTestNSGRuleWeb972e62\",\r\n \"etag\": \"W/\\\"d69e2deb-1e9f-4a4d-a961-4e453b40d171\\\"\",\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/PSTestRG972e6a32/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG972e62/defaultSecurityRules/AllowVnetInBound\",\r\n \"etag\": \"W/\\\"d69e2deb-1e9f-4a4d-a961-4e453b40d171\\\"\",\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/PSTestRG972e6a32/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG972e62/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\r\n \"etag\": \"W/\\\"d69e2deb-1e9f-4a4d-a961-4e453b40d171\\\"\",\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/PSTestRG972e6a32/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG972e62/defaultSecurityRules/DenyAllInBound\",\r\n \"etag\": \"W/\\\"d69e2deb-1e9f-4a4d-a961-4e453b40d171\\\"\",\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/PSTestRG972e6a32/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG972e62/defaultSecurityRules/AllowVnetOutBound\",\r\n \"etag\": \"W/\\\"d69e2deb-1e9f-4a4d-a961-4e453b40d171\\\"\",\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/PSTestRG972e6a32/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG972e62/defaultSecurityRules/AllowInternetOutBound\",\r\n \"etag\": \"W/\\\"d69e2deb-1e9f-4a4d-a961-4e453b40d171\\\"\",\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/PSTestRG972e6a32/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG972e62/defaultSecurityRules/DenyAllOutBound\",\r\n \"etag\": \"W/\\\"d69e2deb-1e9f-4a4d-a961-4e453b40d171\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGf3c6e2?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZjNjNmUyNTEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtTZWN1cml0eUdyb3Vwcy9QU1Rlc3ROU0dmM2M2ZTI/YXBpLXZlcnNpb249MjAyMS0wNS0wMQ==", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG972e62?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTcyZTZhMzIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtTZWN1cml0eUdyb3Vwcy9QU1Rlc3ROU0c5NzJlNjI/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==", "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\": \"PSTestNSGRuleRDPf3c6e2\"\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\": \"PSTestNSGRuleWebf3c6e2\"\r\n }\r\n ]\r\n },\r\n \"location\": \"southeastasia\"\r\n}", + "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\": \"PSTestNSGRuleRDP972e62\"\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\": \"PSTestNSGRuleWeb972e62\"\r\n }\r\n ]\r\n },\r\n \"location\": \"southeastasia\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "480997bc-b69b-4b1b-aaa1-52a4b8574022" + "fa83924a-83ca-45f3-962e-9d7541dbbfaf" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4023,19 +4355,19 @@ "3" ], "x-ms-request-id": [ - "b5bc2373-b617-47f1-829f-f6bfe17041be" + "4c18b60a-07e7-4795-bff5-c6f4896d6185" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Network/locations/southeastasia/operations/b5bc2373-b617-47f1-829f-f6bfe17041be?api-version=2021-05-01" + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Network/locations/southeastasia/operations/4c18b60a-07e7-4795-bff5-c6f4896d6185?api-version=2021-08-01" ], "x-ms-correlation-request-id": [ - "34f4310b-233b-48e5-a2b4-06223ec8ca9c" + "69e22818-ce9d-4e87-ae78-3d41a740b5a7" ], "Azure-AsyncNotification": [ "Enabled" ], "x-ms-arm-service-request-id": [ - "03f4c98d-35dc-47db-8ebf-df1b9d39e842" + "47e829e0-3917-479d-ba81-029b822ba5b4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4048,13 +4380,13 @@ "1197" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T200859Z:34f4310b-233b-48e5-a2b4-06223ec8ca9c" + "WESTINDIA:20220516T190603Z:69e22818-ce9d-4e87-ae78-3d41a740b5a7" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 20:08:59 GMT" + "Mon, 16 May 2022 19:06:03 GMT" ], "Content-Length": [ "8466" @@ -4066,23 +4398,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"PSTestNSGf3c6e2\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGf3c6e2\",\r\n \"etag\": \"W/\\\"08117987-bc64-4e79-b189-aa603ebfaf2b\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"bbbec782-a75e-4cd9-8e10-3c32ef017fdf\",\r\n \"securityRules\": [\r\n {\r\n \"name\": \"PSTestNSGRuleRDPf3c6e2\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGf3c6e2/securityRules/PSTestNSGRuleRDPf3c6e2\",\r\n \"etag\": \"W/\\\"08117987-bc64-4e79-b189-aa603ebfaf2b\\\"\",\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\": \"PSTestNSGRuleWebf3c6e2\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGf3c6e2/securityRules/PSTestNSGRuleWebf3c6e2\",\r\n \"etag\": \"W/\\\"08117987-bc64-4e79-b189-aa603ebfaf2b\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGf3c6e2/defaultSecurityRules/AllowVnetInBound\",\r\n \"etag\": \"W/\\\"08117987-bc64-4e79-b189-aa603ebfaf2b\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGf3c6e2/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\r\n \"etag\": \"W/\\\"08117987-bc64-4e79-b189-aa603ebfaf2b\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGf3c6e2/defaultSecurityRules/DenyAllInBound\",\r\n \"etag\": \"W/\\\"08117987-bc64-4e79-b189-aa603ebfaf2b\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGf3c6e2/defaultSecurityRules/AllowVnetOutBound\",\r\n \"etag\": \"W/\\\"08117987-bc64-4e79-b189-aa603ebfaf2b\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGf3c6e2/defaultSecurityRules/AllowInternetOutBound\",\r\n \"etag\": \"W/\\\"08117987-bc64-4e79-b189-aa603ebfaf2b\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGf3c6e2/defaultSecurityRules/DenyAllOutBound\",\r\n \"etag\": \"W/\\\"08117987-bc64-4e79-b189-aa603ebfaf2b\\\"\",\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}", + "ResponseBody": "{\r\n \"name\": \"PSTestNSG972e62\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG972e62\",\r\n \"etag\": \"W/\\\"42669a5a-2abd-457e-9304-a0d155738f8c\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"641dbecd-50c0-4036-bb62-d535dfe0bab7\",\r\n \"securityRules\": [\r\n {\r\n \"name\": \"PSTestNSGRuleRDP972e62\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG972e62/securityRules/PSTestNSGRuleRDP972e62\",\r\n \"etag\": \"W/\\\"42669a5a-2abd-457e-9304-a0d155738f8c\\\"\",\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\": \"PSTestNSGRuleWeb972e62\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG972e62/securityRules/PSTestNSGRuleWeb972e62\",\r\n \"etag\": \"W/\\\"42669a5a-2abd-457e-9304-a0d155738f8c\\\"\",\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/PSTestRG972e6a32/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG972e62/defaultSecurityRules/AllowVnetInBound\",\r\n \"etag\": \"W/\\\"42669a5a-2abd-457e-9304-a0d155738f8c\\\"\",\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/PSTestRG972e6a32/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG972e62/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\r\n \"etag\": \"W/\\\"42669a5a-2abd-457e-9304-a0d155738f8c\\\"\",\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/PSTestRG972e6a32/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG972e62/defaultSecurityRules/DenyAllInBound\",\r\n \"etag\": \"W/\\\"42669a5a-2abd-457e-9304-a0d155738f8c\\\"\",\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/PSTestRG972e6a32/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG972e62/defaultSecurityRules/AllowVnetOutBound\",\r\n \"etag\": \"W/\\\"42669a5a-2abd-457e-9304-a0d155738f8c\\\"\",\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/PSTestRG972e6a32/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG972e62/defaultSecurityRules/AllowInternetOutBound\",\r\n \"etag\": \"W/\\\"42669a5a-2abd-457e-9304-a0d155738f8c\\\"\",\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/PSTestRG972e6a32/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG972e62/defaultSecurityRules/DenyAllOutBound\",\r\n \"etag\": \"W/\\\"42669a5a-2abd-457e-9304-a0d155738f8c\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Network/locations/southeastasia/operations/b5bc2373-b617-47f1-829f-f6bfe17041be?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2I1YmMyMzczLWI2MTctNDdmMS04MjlmLWY2YmZlMTcwNDFiZT9hcGktdmVyc2lvbj0yMDIxLTA1LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Network/locations/southeastasia/operations/4c18b60a-07e7-4795-bff5-c6f4896d6185?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRjMThiNjBhLTA3ZTctNDc5NS1iZmY1LWM2ZjQ4OTZkNjE4NT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "480997bc-b69b-4b1b-aaa1-52a4b8574022" + "fa83924a-83ca-45f3-962e-9d7541dbbfaf" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ] }, "ResponseHeaders": { @@ -4093,13 +4425,13 @@ "no-cache" ], "x-ms-request-id": [ - "e07f8170-f097-4496-9e1a-4e766b1eb335" + "05bff63b-a21c-4d67-9a85-d966b1408a29" ], "x-ms-correlation-request-id": [ - "2183ee72-aa2a-4367-9ab8-60376f15cf5c" + "3fd8fa4b-ea26-44a6-800c-76cbe56185d3" ], "x-ms-arm-service-request-id": [ - "2bc2762f-1a4e-48e2-8642-e5876cfdf89c" + "c7714ae6-c2a3-4339-9714-fb127644d8ca" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4112,13 +4444,13 @@ "11990" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T200902Z:2183ee72-aa2a-4367-9ab8-60376f15cf5c" + "WESTINDIA:20220516T190607Z:3fd8fa4b-ea26-44a6-800c-76cbe56185d3" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 20:09:02 GMT" + "Mon, 16 May 2022 19:06:06 GMT" ], "Content-Length": [ "29" @@ -4134,22 +4466,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.Network/networkInterfaces/PSTestNICf3c6e2?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZjNjNmUyNTEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL1BTVGVzdE5JQ2YzYzZlMj9hcGktdmVyc2lvbj0yMDIxLTA1LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.Network/networkInterfaces/PSTestNIC972e62?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTcyZTZhMzIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL1BTVGVzdE5JQzk3MmU2Mj9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8143be9c-8210-4355-9ead-697b7f9fac4e" + "278286a6-ce5e-4283-9798-5e911a62ed25" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ] }, "ResponseHeaders": { @@ -4163,13 +4495,13 @@ "gateway" ], "x-ms-request-id": [ - "f40eaec1-b690-4203-abb3-c1e1397e9e58" + "6763a69e-49d0-4193-91c1-14c019c036ab" ], "x-ms-correlation-request-id": [ - "f40eaec1-b690-4203-abb3-c1e1397e9e58" + "6763a69e-49d0-4193-91c1-14c019c036ab" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T200903Z:f40eaec1-b690-4203-abb3-c1e1397e9e58" + "WESTINDIA:20220516T190608Z:6763a69e-49d0-4193-91c1-14c019c036ab" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4178,7 +4510,7 @@ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 20:09:03 GMT" + "Mon, 16 May 2022 19:06:07 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4190,23 +4522,23 @@ "239" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/networkInterfaces/PSTestNICf3c6e2' under resource group 'PSTestRGf3c6e251' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/networkInterfaces/PSTestNIC972e62' under resource group 'PSTestRG972e6a32' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.Network/networkInterfaces/PSTestNICf3c6e2?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZjNjNmUyNTEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL1BTVGVzdE5JQ2YzYzZlMj9hcGktdmVyc2lvbj0yMDIxLTA1LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.Network/networkInterfaces/PSTestNIC972e62?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTcyZTZhMzIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL1BTVGVzdE5JQzk3MmU2Mj9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8143be9c-8210-4355-9ead-697b7f9fac4e" + "278286a6-ce5e-4283-9798-5e911a62ed25" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ] }, "ResponseHeaders": { @@ -4217,16 +4549,16 @@ "no-cache" ], "ETag": [ - "W/\"cb412de5-dcc6-4cc5-8957-bf536a66d2f9\"" + "W/\"9dba3574-c499-4ae0-9e1a-27f691378e26\"" ], "x-ms-request-id": [ - "a9fb057a-2d0c-43ec-91fc-c86f82757e26" + "7c07ebb6-2ae2-46c4-8cd8-dd7002448635" ], "x-ms-correlation-request-id": [ - "d8d7718b-4958-42a9-adc5-c9a70012de12" + "03d909ae-0967-483a-b38f-b92dedde878a" ], "x-ms-arm-service-request-id": [ - "e454178e-19c1-4035-acbe-a2ff58e628a5" + "a8f7f319-ce9e-4f9e-ac56-58c0766af2fd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4239,16 +4571,16 @@ "11986" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T200907Z:d8d7718b-4958-42a9-adc5-c9a70012de12" + "WESTINDIA:20220516T190610Z:03d909ae-0967-483a-b38f-b92dedde878a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 20:09:06 GMT" + "Mon, 16 May 2022 19:06:09 GMT" ], "Content-Length": [ - "2143" + "2165" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4257,26 +4589,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"PSTestNICf3c6e2\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.Network/networkInterfaces/PSTestNICf3c6e2\",\r\n \"etag\": \"W/\\\"cb412de5-dcc6-4cc5-8957-bf536a66d2f9\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"b734233c-9ea9-4e80-88ee-a917a66dbd22\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.Network/networkInterfaces/PSTestNICf3c6e2/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"cb412de5-dcc6-4cc5-8957-bf536a66d2f9\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.Network/publicIPAddresses/pstestpublicdnsf3c6e2\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.Network/virtualNetworks/PSTestVNETf3c6e2/subnets/PSTestSNCf3c6e2\"\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\": \"00eqscvcuwdedl2tzd3xwehvsb.ix.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"vnetEncryptionSupported\": false,\r\n \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGf3c6e2\"\r\n },\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": [],\r\n \"nicType\": \"Standard\"\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"PSTestNIC972e62\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.Network/networkInterfaces/PSTestNIC972e62\",\r\n \"etag\": \"W/\\\"9dba3574-c499-4ae0-9e1a-27f691378e26\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"ef001f40-9f9d-41b7-9ed1-ec2a15a9474d\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.Network/networkInterfaces/PSTestNIC972e62/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"9dba3574-c499-4ae0-9e1a-27f691378e26\\\"\",\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/PSTestRG972e6a32/providers/Microsoft.Network/publicIPAddresses/pstestpublicdns972e62\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.Network/virtualNetworks/PSTestVNET972e62/subnets/PSTestSNC972e62\"\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\": \"tzsiggtc2yvuhlm02obwiuah5a.ix.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"vnetEncryptionSupported\": false,\r\n \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG972e62\"\r\n },\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": [],\r\n \"nicType\": \"Standard\"\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"kind\": \"Regular\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.Network/networkInterfaces/PSTestNICf3c6e2?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZjNjNmUyNTEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL1BTVGVzdE5JQ2YzYzZlMj9hcGktdmVyc2lvbj0yMDIxLTA1LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.Network/networkInterfaces/PSTestNIC972e62?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTcyZTZhMzIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL1BTVGVzdE5JQzk3MmU2Mj9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8143be9c-8210-4355-9ead-697b7f9fac4e" + "278286a6-ce5e-4283-9798-5e911a62ed25" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ] }, "ResponseHeaders": { @@ -4287,16 +4619,16 @@ "no-cache" ], "ETag": [ - "W/\"cb412de5-dcc6-4cc5-8957-bf536a66d2f9\"" + "W/\"9dba3574-c499-4ae0-9e1a-27f691378e26\"" ], "x-ms-request-id": [ - "cbaaa17f-36aa-4ed0-b2bb-d583cc5d18c6" + "a6f593b0-090c-4cac-821f-014b02cf88f0" ], "x-ms-correlation-request-id": [ - "e4bfae20-a7bf-4fee-af1a-f9a3b8fd7f72" + "13f0399d-b085-49cd-9499-e86254d6e2af" ], "x-ms-arm-service-request-id": [ - "124db960-0cc7-4a7e-8292-a1dcafa0daf2" + "d95fcd73-b1e9-465c-9930-942fcfe8e1b2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4309,16 +4641,16 @@ "11985" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T200907Z:e4bfae20-a7bf-4fee-af1a-f9a3b8fd7f72" + "WESTINDIA:20220516T190610Z:13f0399d-b085-49cd-9499-e86254d6e2af" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 20:09:07 GMT" + "Mon, 16 May 2022 19:06:09 GMT" ], "Content-Length": [ - "2143" + "2165" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4327,26 +4659,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"PSTestNICf3c6e2\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.Network/networkInterfaces/PSTestNICf3c6e2\",\r\n \"etag\": \"W/\\\"cb412de5-dcc6-4cc5-8957-bf536a66d2f9\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"b734233c-9ea9-4e80-88ee-a917a66dbd22\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.Network/networkInterfaces/PSTestNICf3c6e2/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"cb412de5-dcc6-4cc5-8957-bf536a66d2f9\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.Network/publicIPAddresses/pstestpublicdnsf3c6e2\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.Network/virtualNetworks/PSTestVNETf3c6e2/subnets/PSTestSNCf3c6e2\"\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\": \"00eqscvcuwdedl2tzd3xwehvsb.ix.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"vnetEncryptionSupported\": false,\r\n \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGf3c6e2\"\r\n },\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": [],\r\n \"nicType\": \"Standard\"\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"PSTestNIC972e62\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.Network/networkInterfaces/PSTestNIC972e62\",\r\n \"etag\": \"W/\\\"9dba3574-c499-4ae0-9e1a-27f691378e26\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"ef001f40-9f9d-41b7-9ed1-ec2a15a9474d\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.Network/networkInterfaces/PSTestNIC972e62/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"9dba3574-c499-4ae0-9e1a-27f691378e26\\\"\",\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/PSTestRG972e6a32/providers/Microsoft.Network/publicIPAddresses/pstestpublicdns972e62\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.Network/virtualNetworks/PSTestVNET972e62/subnets/PSTestSNC972e62\"\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\": \"tzsiggtc2yvuhlm02obwiuah5a.ix.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"vnetEncryptionSupported\": false,\r\n \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG972e62\"\r\n },\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": [],\r\n \"nicType\": \"Standard\"\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"kind\": \"Regular\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.Network/networkInterfaces/PSTestNICf3c6e2?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZjNjNmUyNTEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL1BTVGVzdE5JQ2YzYzZlMj9hcGktdmVyc2lvbj0yMDIxLTA1LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.Network/networkInterfaces/PSTestNIC972e62?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTcyZTZhMzIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL1BTVGVzdE5JQzk3MmU2Mj9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"networkSecurityGroup\": {\r\n \"properties\": {\r\n \"securityRules\": []\r\n },\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGf3c6e2\",\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 \"applicationGatewayIpConfigurations\": []\r\n },\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.Network/virtualNetworks/PSTestVNETf3c6e2/subnets/PSTestSNCf3c6e2\"\r\n },\r\n \"primary\": true,\r\n \"publicIPAddress\": {\r\n \"properties\": {\r\n \"ipTags\": []\r\n },\r\n \"zones\": [],\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.Network/publicIPAddresses/pstestpublicdnsf3c6e2\",\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\": \"southeastasia\"\r\n}", + "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/PSTestRG972e6a32/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG972e62\",\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 \"applicationGatewayIpConfigurations\": []\r\n },\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.Network/virtualNetworks/PSTestVNET972e62/subnets/PSTestSNC972e62\"\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/PSTestRG972e6a32/providers/Microsoft.Network/publicIPAddresses/pstestpublicdns972e62\",\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\": \"southeastasia\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "8143be9c-8210-4355-9ead-697b7f9fac4e" + "278286a6-ce5e-4283-9798-5e911a62ed25" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4363,19 +4695,19 @@ "no-cache" ], "x-ms-request-id": [ - "9fa37993-d63e-40cb-b25a-16791df3d763" + "c30fde54-d498-47b6-a4e0-6641851b3487" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Network/locations/southeastasia/operations/9fa37993-d63e-40cb-b25a-16791df3d763?api-version=2021-05-01" + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Network/locations/southeastasia/operations/c30fde54-d498-47b6-a4e0-6641851b3487?api-version=2021-08-01" ], "x-ms-correlation-request-id": [ - "b785f5be-1f7e-47c8-a1cd-10e59ad03678" + "72c3cb4b-9fa5-4b8b-8e1e-44c19989daae" ], "Azure-AsyncNotification": [ "Enabled" ], "x-ms-arm-service-request-id": [ - "a7d83e1d-0f2f-4cc4-ae2c-a36f60748751" + "6c51119e-f848-447e-9a47-87635cd02aa9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4388,16 +4720,16 @@ "1196" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T200906Z:b785f5be-1f7e-47c8-a1cd-10e59ad03678" + "WESTINDIA:20220516T190609Z:72c3cb4b-9fa5-4b8b-8e1e-44c19989daae" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 20:09:06 GMT" + "Mon, 16 May 2022 19:06:09 GMT" ], "Content-Length": [ - "2143" + "2165" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4406,26 +4738,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"PSTestNICf3c6e2\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.Network/networkInterfaces/PSTestNICf3c6e2\",\r\n \"etag\": \"W/\\\"cb412de5-dcc6-4cc5-8957-bf536a66d2f9\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"b734233c-9ea9-4e80-88ee-a917a66dbd22\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.Network/networkInterfaces/PSTestNICf3c6e2/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"cb412de5-dcc6-4cc5-8957-bf536a66d2f9\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.Network/publicIPAddresses/pstestpublicdnsf3c6e2\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.Network/virtualNetworks/PSTestVNETf3c6e2/subnets/PSTestSNCf3c6e2\"\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\": \"00eqscvcuwdedl2tzd3xwehvsb.ix.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"vnetEncryptionSupported\": false,\r\n \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGf3c6e2\"\r\n },\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": [],\r\n \"nicType\": \"Standard\"\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"PSTestNIC972e62\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.Network/networkInterfaces/PSTestNIC972e62\",\r\n \"etag\": \"W/\\\"9dba3574-c499-4ae0-9e1a-27f691378e26\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"ef001f40-9f9d-41b7-9ed1-ec2a15a9474d\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.Network/networkInterfaces/PSTestNIC972e62/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"9dba3574-c499-4ae0-9e1a-27f691378e26\\\"\",\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/PSTestRG972e6a32/providers/Microsoft.Network/publicIPAddresses/pstestpublicdns972e62\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.Network/virtualNetworks/PSTestVNET972e62/subnets/PSTestSNC972e62\"\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\": \"tzsiggtc2yvuhlm02obwiuah5a.ix.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"vnetEncryptionSupported\": false,\r\n \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG972e62\"\r\n },\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": [],\r\n \"nicType\": \"Standard\"\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"kind\": \"Regular\"\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.Compute/virtualMachines/PSTestVMf3c6e2?api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZjNjNmUyNTEvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy9QU1Rlc3RWTWYzYzZlMj9hcGktdmVyc2lvbj0yMDIxLTExLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.Compute/virtualMachines/PSTestVM972e62?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTcyZTZhMzIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy9QU1Rlc3RWTTk3MmU2Mj9hcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D1_v2\"\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\": \"PSTestVMf3c6e2\",\r\n \"adminUsername\": \"demouser\",\r\n \"adminPassword\": \"f3c6e251-583Aa.\",\r\n \"windowsConfiguration\": {}\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.Network/networkInterfaces/PSTestNICf3c6e2\"\r\n }\r\n ]\r\n }\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"Purpose\": \"PSTest\",\r\n \"MabUsed\": \"Yes\",\r\n \"AutoShutDown\": \"No\",\r\n \"Owner\": \"sarath\",\r\n \"DeleteBy\": \"06-2022\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D1_v2\"\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\": \"PSTestVM972e62\",\r\n \"adminUsername\": \"demouser\",\r\n \"adminPassword\": \"972e6a32-8f0Aa.\",\r\n \"windowsConfiguration\": {}\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.Network/networkInterfaces/PSTestNIC972e62\"\r\n }\r\n ]\r\n }\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MabUsed\": \"Yes\",\r\n \"Owner\": \"sarath\",\r\n \"AutoShutDown\": \"No\",\r\n \"Purpose\": \"PSTest\",\r\n \"DeleteBy\": \"06-2022\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "14f7369d-8f09-42c5-aa21-4b4a95ef5acc" + "efa92f6f-637d-4c39-8ede-9c5b75621fd8" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4445,7 +4777,7 @@ "10" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/southeastasia/operations/9b5ed582-f9b6-4ee4-8769-1f2c8b3f6839?p=34dc709c-01b2-42c4-84a2-256a9734610d&api-version=2021-11-01" + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Compute/locations/southeastasia/operations/1eef663c-c181-4766-a1be-ed1651ac26de?p=e484ceca-6435-4a7f-b125-3d82e6b12014&api-version=2021-11-01" ], "Azure-AsyncNotification": [ "Enabled" @@ -4457,7 +4789,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "9b5ed582-f9b6-4ee4-8769-1f2c8b3f6839" + "1eef663c-c181-4766-a1be-ed1651ac26de" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -4467,19 +4799,19 @@ "1197" ], "x-ms-correlation-request-id": [ - "db507924-7451-4f06-8bcc-2a6945804b9d" + "c8f59b24-893d-43de-a9d7-c3b826665cea" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T200913Z:db507924-7451-4f06-8bcc-2a6945804b9d" + "JIOINDIAWEST:20220516T190615Z:c8f59b24-893d-43de-a9d7-c3b826665cea" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 20:09:13 GMT" + "Mon, 16 May 2022 19:06:14 GMT" ], "Content-Length": [ - "1992" + "1922" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4488,23 +4820,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"PSTestVMf3c6e2\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.Compute/virtualMachines/PSTestVMf3c6e2\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"Purpose\": \"PSTest\",\r\n \"MabUsed\": \"Yes\",\r\n \"AutoShutDown\": \"No\",\r\n \"Owner\": \"sarath\",\r\n \"DeleteBy\": \"06-2022\",\r\n \"azsecpack\": \"nonprod\",\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": \"true\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"2fd58399-8145-41af-9b3d-bd03ac5608a7\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D1_v2\"\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.4946.220202\"\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 \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"PSTestVMf3c6e2\",\r\n \"adminUsername\": \"demouser\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"AutomaticByOS\",\r\n \"assessmentMode\": \"ImageDefault\"\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.Network/networkInterfaces/PSTestNICf3c6e2\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\",\r\n \"timeCreated\": \"2022-02-23T15:09:11.3735714-05:00\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"PSTestVM972e62\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.Compute/virtualMachines/PSTestVM972e62\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MabUsed\": \"Yes\",\r\n \"Owner\": \"sarath\",\r\n \"AutoShutDown\": \"No\",\r\n \"Purpose\": \"PSTest\",\r\n \"DeleteBy\": \"06-2022\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"cf099d00-18ce-4874-b629-9b0fdb2f18dd\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D1_v2\"\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.5125.220505\"\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 \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"PSTestVM972e62\",\r\n \"adminUsername\": \"demouser\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"AutomaticByOS\",\r\n \"assessmentMode\": \"ImageDefault\"\r\n },\r\n \"enableVMAgentPlatformUpdates\": false\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/PSTestRG972e6a32/providers/Microsoft.Network/networkInterfaces/PSTestNIC972e62\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\",\r\n \"timeCreated\": \"2022-05-17T00:36:14.5840405+05:30\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/southeastasia/operations/9b5ed582-f9b6-4ee4-8769-1f2c8b3f6839?p=34dc709c-01b2-42c4-84a2-256a9734610d&api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzliNWVkNTgyLWY5YjYtNGVlNC04NzY5LTFmMmM4YjNmNjgzOT9wPTM0ZGM3MDljLTAxYjItNDJjNC04NGEyLTI1NmE5NzM0NjEwZCZhcGktdmVyc2lvbj0yMDIxLTExLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Compute/locations/southeastasia/operations/1eef663c-c181-4766-a1be-ed1651ac26de?p=e484ceca-6435-4a7f-b125-3d82e6b12014&api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzFlZWY2NjNjLWMxODEtNDc2Ni1hMWJlLWVkMTY1MWFjMjZkZT9wPWU0ODRjZWNhLTY0MzUtNGE3Zi1iMTI1LTNkODJlNmIxMjAxNCZhcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "14f7369d-8f09-42c5-aa21-4b4a95ef5acc" + "efa92f6f-637d-4c39-8ede-9c5b75621fd8" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ] }, "ResponseHeaders": { @@ -4518,32 +4850,32 @@ "50" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperation3Min;14993,Microsoft.Compute/GetOperation30Min;29979" + "Microsoft.Compute/GetOperation3Min;14993,Microsoft.Compute/GetOperation30Min;29981" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "81c46dc5-50be-4795-b95d-b71b53cdc333" + "3a0bb679-b603-4985-bbef-ca3a8e5612e6" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11984" + "11983" ], "x-ms-correlation-request-id": [ - "4be10e2c-41ce-4a94-8057-c0ac7c7b7780" + "ef45ddd8-8465-4d96-8dbd-dbac05b1a3cd" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T200923Z:4be10e2c-41ce-4a94-8057-c0ac7c7b7780" + "JIOINDIAWEST:20220516T190625Z:ef45ddd8-8465-4d96-8dbd-dbac05b1a3cd" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 20:09:23 GMT" + "Mon, 16 May 2022 19:06:25 GMT" ], "Content-Length": [ "134" @@ -4555,23 +4887,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-02-23T15:09:10.9673136-05:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"9b5ed582-f9b6-4ee4-8769-1f2c8b3f6839\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2022-05-17T00:36:13.8028029+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"1eef663c-c181-4766-a1be-ed1651ac26de\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/southeastasia/operations/9b5ed582-f9b6-4ee4-8769-1f2c8b3f6839?p=34dc709c-01b2-42c4-84a2-256a9734610d&api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzliNWVkNTgyLWY5YjYtNGVlNC04NzY5LTFmMmM4YjNmNjgzOT9wPTM0ZGM3MDljLTAxYjItNDJjNC04NGEyLTI1NmE5NzM0NjEwZCZhcGktdmVyc2lvbj0yMDIxLTExLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Compute/locations/southeastasia/operations/1eef663c-c181-4766-a1be-ed1651ac26de?p=e484ceca-6435-4a7f-b125-3d82e6b12014&api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzFlZWY2NjNjLWMxODEtNDc2Ni1hMWJlLWVkMTY1MWFjMjZkZT9wPWU0ODRjZWNhLTY0MzUtNGE3Zi1iMTI1LTNkODJlNmIxMjAxNCZhcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "14f7369d-8f09-42c5-aa21-4b4a95ef5acc" + "efa92f6f-637d-4c39-8ede-9c5b75621fd8" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ] }, "ResponseHeaders": { @@ -4582,32 +4914,32 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperation3Min;14993,Microsoft.Compute/GetOperation30Min;29988" + "Microsoft.Compute/GetOperation3Min;14994,Microsoft.Compute/GetOperation30Min;29980" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "297d5a76-64fa-458a-9593-00c2e37a21eb" + "af29efc6-4472-421e-99a7-20ee22498b1a" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11983" + "11982" ], "x-ms-correlation-request-id": [ - "f1af91ae-196f-465f-9587-82c46e08a3b7" + "fba7f2ad-66bc-4407-bf9d-4583f90df726" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T201013Z:f1af91ae-196f-465f-9587-82c46e08a3b7" + "JIOINDIAWEST:20220516T190716Z:fba7f2ad-66bc-4407-bf9d-4583f90df726" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 20:10:13 GMT" + "Mon, 16 May 2022 19:07:15 GMT" ], "Content-Length": [ "134" @@ -4619,23 +4951,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-02-23T15:09:10.9673136-05:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"9b5ed582-f9b6-4ee4-8769-1f2c8b3f6839\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2022-05-17T00:36:13.8028029+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"1eef663c-c181-4766-a1be-ed1651ac26de\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/southeastasia/operations/9b5ed582-f9b6-4ee4-8769-1f2c8b3f6839?p=34dc709c-01b2-42c4-84a2-256a9734610d&api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzliNWVkNTgyLWY5YjYtNGVlNC04NzY5LTFmMmM4YjNmNjgzOT9wPTM0ZGM3MDljLTAxYjItNDJjNC04NGEyLTI1NmE5NzM0NjEwZCZhcGktdmVyc2lvbj0yMDIxLTExLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Compute/locations/southeastasia/operations/1eef663c-c181-4766-a1be-ed1651ac26de?p=e484ceca-6435-4a7f-b125-3d82e6b12014&api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzFlZWY2NjNjLWMxODEtNDc2Ni1hMWJlLWVkMTY1MWFjMjZkZT9wPWU0ODRjZWNhLTY0MzUtNGE3Zi1iMTI1LTNkODJlNmIxMjAxNCZhcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "14f7369d-8f09-42c5-aa21-4b4a95ef5acc" + "efa92f6f-637d-4c39-8ede-9c5b75621fd8" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ] }, "ResponseHeaders": { @@ -4646,35 +4978,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperation3Min;14995,Microsoft.Compute/GetOperation30Min;29987" + "Microsoft.Compute/GetOperation3Min;14995,Microsoft.Compute/GetOperation30Min;29978" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "82b42b9c-1946-490c-8e96-763fb1a39fe1" + "28ecf0f6-d487-4e78-bc71-5e77c3eb8d27" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11982" + "11981" ], "x-ms-correlation-request-id": [ - "702ad350-14cf-4826-997d-423db4118c5d" + "79bb57c5-6cf7-42cf-8e88-d6dcf8ed6a2b" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T201104Z:702ad350-14cf-4826-997d-423db4118c5d" + "JIOINDIAWEST:20220516T190806Z:79bb57c5-6cf7-42cf-8e88-d6dcf8ed6a2b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 20:11:03 GMT" + "Mon, 16 May 2022 19:08:05 GMT" ], "Content-Length": [ - "134" + "184" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4683,23 +5015,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-02-23T15:09:10.9673136-05:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"9b5ed582-f9b6-4ee4-8769-1f2c8b3f6839\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2022-05-17T00:36:13.8028029+05:30\",\r\n \"endTime\": \"2022-05-17T00:37:22.0840317+05:30\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"1eef663c-c181-4766-a1be-ed1651ac26de\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/southeastasia/operations/9b5ed582-f9b6-4ee4-8769-1f2c8b3f6839?p=34dc709c-01b2-42c4-84a2-256a9734610d&api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzliNWVkNTgyLWY5YjYtNGVlNC04NzY5LTFmMmM4YjNmNjgzOT9wPTM0ZGM3MDljLTAxYjItNDJjNC04NGEyLTI1NmE5NzM0NjEwZCZhcGktdmVyc2lvbj0yMDIxLTExLTAx", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.Compute/virtualMachines/PSTestVM972e62/extensions/BGInfo?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTcyZTZhMzIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy9QU1Rlc3RWTTk3MmU2Mi9leHRlbnNpb25zL0JHSW5mbz9hcGktdmVyc2lvbj0yMDIxLTExLTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"BGInfo\",\r\n \"typeHandlerVersion\": \"2.2\",\r\n \"autoUpgradeMinorVersion\": true\r\n },\r\n \"location\": \"southeastasia\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "14f7369d-8f09-42c5-aa21-4b4a95ef5acc" + "efa92f6f-637d-4c39-8ede-9c5b75621fd8" + ], + "Accept-Language": [ + "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "193" ] }, "ResponseHeaders": { @@ -4709,36 +5050,42 @@ "Pragma": [ "no-cache" ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Compute/locations/southeastasia/operations/c3459a36-3bb8-4078-8147-96ee1306363a?p=e484ceca-6435-4a7f-b125-3d82e6b12014&api-version=2021-11-01" + ], + "Azure-AsyncNotification": [ + "Enabled" + ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperation3Min;14994,Microsoft.Compute/GetOperation30Min;29985" + "Microsoft.Compute/UpdateVM3Min;239,Microsoft.Compute/UpdateVM30Min;1198" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "8a5893f4-7761-497c-b8eb-747bae84efad" + "c3459a36-3bb8-4078-8147-96ee1306363a" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11981" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" ], "x-ms-correlation-request-id": [ - "82b7f2b7-618e-404c-9118-41919d5ee3b7" + "24c482e7-ad47-4991-9fa5-746d6f47c88f" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T201154Z:82b7f2b7-618e-404c-9118-41919d5ee3b7" + "JIOINDIAWEST:20220516T190811Z:24c482e7-ad47-4991-9fa5-746d6f47c88f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 20:11:53 GMT" + "Mon, 16 May 2022 19:08:10 GMT" ], "Content-Length": [ - "184" + "484" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4747,32 +5094,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-02-23T15:09:10.9673136-05:00\",\r\n \"endTime\": \"2022-02-23T15:11:09.1079815-05:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"9b5ed582-f9b6-4ee4-8769-1f2c8b3f6839\"\r\n}", - "StatusCode": 200 + "ResponseBody": "{\r\n \"name\": \"BGInfo\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.Compute/virtualMachines/PSTestVM972e62/extensions/BGInfo\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Creating\",\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"BGInfo\",\r\n \"typeHandlerVersion\": \"2.2\"\r\n }\r\n}", + "StatusCode": 201 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.Compute/virtualMachines/PSTestVMf3c6e2/extensions/BGInfo?api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZjNjNmUyNTEvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy9QU1Rlc3RWTWYzYzZlMi9leHRlbnNpb25zL0JHSW5mbz9hcGktdmVyc2lvbj0yMDIxLTExLTAx", - "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\": \"southeastasia\"\r\n}", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Compute/locations/southeastasia/operations/c3459a36-3bb8-4078-8147-96ee1306363a?p=e484ceca-6435-4a7f-b125-3d82e6b12014&api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2MzNDU5YTM2LTNiYjgtNDA3OC04MTQ3LTk2ZWUxMzA2MzYzYT9wPWU0ODRjZWNhLTY0MzUtNGE3Zi1iMTI1LTNkODJlNmIxMjAxNCZhcGktdmVyc2lvbj0yMDIxLTExLTAx", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "14f7369d-8f09-42c5-aa21-4b4a95ef5acc" - ], - "Accept-Language": [ - "en-US" + "efa92f6f-637d-4c39-8ede-9c5b75621fd8" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "193" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ] }, "ResponseHeaders": { @@ -4782,42 +5120,36 @@ "Pragma": [ "no-cache" ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/southeastasia/operations/438aa8ce-a975-4283-b96d-0b5ffc3897f5?p=34dc709c-01b2-42c4-84a2-256a9734610d&api-version=2021-11-01" - ], - "Azure-AsyncNotification": [ - "Enabled" - ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/UpdateVM3Min;239,Microsoft.Compute/UpdateVM30Min;1198" + "Microsoft.Compute/GetOperation3Min;14994,Microsoft.Compute/GetOperation30Min;29976" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "438aa8ce-a975-4283-b96d-0b5ffc3897f5" + "3e94fe35-f889-43e0-b7c8-6c760fd791ad" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11976" ], "x-ms-correlation-request-id": [ - "e56c6046-3c00-40cd-b119-201f8a550e7c" + "54440442-a589-476c-bc5d-3eae1bd676ec" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T201202Z:e56c6046-3c00-40cd-b119-201f8a550e7c" + "JIOINDIAWEST:20220516T190841Z:54440442-a589-476c-bc5d-3eae1bd676ec" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 20:12:02 GMT" + "Mon, 16 May 2022 19:08:41 GMT" ], "Content-Length": [ - "484" + "134" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4826,23 +5158,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"BGInfo\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.Compute/virtualMachines/PSTestVMf3c6e2/extensions/BGInfo\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"southeastasia\",\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 + "ResponseBody": "{\r\n \"startTime\": \"2022-05-17T00:38:10.2871648+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"c3459a36-3bb8-4078-8147-96ee1306363a\"\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/southeastasia/operations/438aa8ce-a975-4283-b96d-0b5ffc3897f5?p=34dc709c-01b2-42c4-84a2-256a9734610d&api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzQzOGFhOGNlLWE5NzUtNDI4My1iOTZkLTBiNWZmYzM4OTdmNT9wPTM0ZGM3MDljLTAxYjItNDJjNC04NGEyLTI1NmE5NzM0NjEwZCZhcGktdmVyc2lvbj0yMDIxLTExLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Compute/locations/southeastasia/operations/c3459a36-3bb8-4078-8147-96ee1306363a?p=e484ceca-6435-4a7f-b125-3d82e6b12014&api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2MzNDU5YTM2LTNiYjgtNDA3OC04MTQ3LTk2ZWUxMzA2MzYzYT9wPWU0ODRjZWNhLTY0MzUtNGE3Zi1iMTI1LTNkODJlNmIxMjAxNCZhcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "14f7369d-8f09-42c5-aa21-4b4a95ef5acc" + "efa92f6f-637d-4c39-8ede-9c5b75621fd8" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ] }, "ResponseHeaders": { @@ -4853,32 +5185,32 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperation3Min;14999,Microsoft.Compute/GetOperation30Min;29999" + "Microsoft.Compute/GetOperation3Min;14994,Microsoft.Compute/GetOperation30Min;29975" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f5bfe6ff-47a2-4779-9c7d-093e5ddec7ec" + "a7ed9812-1d1b-4d3c-bcd4-eea57229e2cd" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11976" + "11975" ], "x-ms-correlation-request-id": [ - "8030b03d-dd80-4d1b-8096-566015630724" + "ab914726-b91a-4830-a6f2-c1ee212653c1" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T201232Z:8030b03d-dd80-4d1b-8096-566015630724" + "JIOINDIAWEST:20220516T190911Z:ab914726-b91a-4830-a6f2-c1ee212653c1" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 20:12:32 GMT" + "Mon, 16 May 2022 19:09:10 GMT" ], "Content-Length": [ "134" @@ -4890,23 +5222,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-02-23T15:12:01.1080501-05:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"438aa8ce-a975-4283-b96d-0b5ffc3897f5\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2022-05-17T00:38:10.2871648+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"c3459a36-3bb8-4078-8147-96ee1306363a\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/southeastasia/operations/438aa8ce-a975-4283-b96d-0b5ffc3897f5?p=34dc709c-01b2-42c4-84a2-256a9734610d&api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzQzOGFhOGNlLWE5NzUtNDI4My1iOTZkLTBiNWZmYzM4OTdmNT9wPTM0ZGM3MDljLTAxYjItNDJjNC04NGEyLTI1NmE5NzM0NjEwZCZhcGktdmVyc2lvbj0yMDIxLTExLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Compute/locations/southeastasia/operations/c3459a36-3bb8-4078-8147-96ee1306363a?p=e484ceca-6435-4a7f-b125-3d82e6b12014&api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2MzNDU5YTM2LTNiYjgtNDA3OC04MTQ3LTk2ZWUxMzA2MzYzYT9wPWU0ODRjZWNhLTY0MzUtNGE3Zi1iMTI1LTNkODJlNmIxMjAxNCZhcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "14f7369d-8f09-42c5-aa21-4b4a95ef5acc" + "efa92f6f-637d-4c39-8ede-9c5b75621fd8" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ] }, "ResponseHeaders": { @@ -4917,32 +5249,32 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperation3Min;14998,Microsoft.Compute/GetOperation30Min;29998" + "Microsoft.Compute/GetOperation3Min;14993,Microsoft.Compute/GetOperation30Min;29974" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f9984ca0-d41c-4d29-ae25-a8ea5da23e6f" + "bce1e4fd-cdc1-4270-ba2b-cfcf710fedd0" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11975" + "11974" ], "x-ms-correlation-request-id": [ - "09763b98-c4a6-4156-a1e4-80a4efd5a857" + "9ff5cf2d-ccf1-429e-986c-513e96eb94f6" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T201303Z:09763b98-c4a6-4156-a1e4-80a4efd5a857" + "JIOINDIAWEST:20220516T190941Z:9ff5cf2d-ccf1-429e-986c-513e96eb94f6" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 20:13:02 GMT" + "Mon, 16 May 2022 19:09:40 GMT" ], "Content-Length": [ "134" @@ -4954,23 +5286,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-02-23T15:12:01.1080501-05:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"438aa8ce-a975-4283-b96d-0b5ffc3897f5\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2022-05-17T00:38:10.2871648+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"c3459a36-3bb8-4078-8147-96ee1306363a\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/southeastasia/operations/438aa8ce-a975-4283-b96d-0b5ffc3897f5?p=34dc709c-01b2-42c4-84a2-256a9734610d&api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzQzOGFhOGNlLWE5NzUtNDI4My1iOTZkLTBiNWZmYzM4OTdmNT9wPTM0ZGM3MDljLTAxYjItNDJjNC04NGEyLTI1NmE5NzM0NjEwZCZhcGktdmVyc2lvbj0yMDIxLTExLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Compute/locations/southeastasia/operations/c3459a36-3bb8-4078-8147-96ee1306363a?p=e484ceca-6435-4a7f-b125-3d82e6b12014&api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2MzNDU5YTM2LTNiYjgtNDA3OC04MTQ3LTk2ZWUxMzA2MzYzYT9wPWU0ODRjZWNhLTY0MzUtNGE3Zi1iMTI1LTNkODJlNmIxMjAxNCZhcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "14f7369d-8f09-42c5-aa21-4b4a95ef5acc" + "efa92f6f-637d-4c39-8ede-9c5b75621fd8" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ] }, "ResponseHeaders": { @@ -4981,35 +5313,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperation3Min;14997,Microsoft.Compute/GetOperation30Min;29997" + "Microsoft.Compute/GetOperation3Min;14993,Microsoft.Compute/GetOperation30Min;29972" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "55e77963-0390-47bb-9c18-1ae48c8557ce" + "5242ef90-f84c-417e-8f2f-443ae317c52a" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11974" + "11973" ], "x-ms-correlation-request-id": [ - "42ef9b6c-5f37-403e-a751-6b2055027c22" + "b49de660-ea07-4946-bfbb-8424af9e0d6c" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T201333Z:42ef9b6c-5f37-403e-a751-6b2055027c22" + "JIOINDIAWEST:20220516T191011Z:b49de660-ea07-4946-bfbb-8424af9e0d6c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 20:13:32 GMT" + "Mon, 16 May 2022 19:10:11 GMT" ], "Content-Length": [ - "134" + "184" ], "Content-Type": [ "application/json; charset=utf-8" @@ -5018,23 +5350,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-02-23T15:12:01.1080501-05:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"438aa8ce-a975-4283-b96d-0b5ffc3897f5\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2022-05-17T00:38:10.2871648+05:30\",\r\n \"endTime\": \"2022-05-17T00:39:47.0371011+05:30\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"c3459a36-3bb8-4078-8147-96ee1306363a\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/southeastasia/operations/438aa8ce-a975-4283-b96d-0b5ffc3897f5?p=34dc709c-01b2-42c4-84a2-256a9734610d&api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzQzOGFhOGNlLWE5NzUtNDI4My1iOTZkLTBiNWZmYzM4OTdmNT9wPTM0ZGM3MDljLTAxYjItNDJjNC04NGEyLTI1NmE5NzM0NjEwZCZhcGktdmVyc2lvbj0yMDIxLTExLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.Compute/virtualMachines/PSTestVM972e62/extensions/BGInfo?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTcyZTZhMzIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy9QU1Rlc3RWTTk3MmU2Mi9leHRlbnNpb25zL0JHSW5mbz9hcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "14f7369d-8f09-42c5-aa21-4b4a95ef5acc" + "efa92f6f-637d-4c39-8ede-9c5b75621fd8" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ] }, "ResponseHeaders": { @@ -5045,35 +5377,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperation3Min;14995,Microsoft.Compute/GetOperation30Min;29995" + "Microsoft.Compute/LowCostGet3Min;3985,Microsoft.Compute/LowCostGet30Min;31944" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "6e83cdfb-c57d-4aa2-87e9-2af40d826613" + "7e1585c1-8d83-4155-8f42-29ead8dd316c" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11973" + "11972" ], "x-ms-correlation-request-id": [ - "08066629-2901-4765-b878-04d424d88c40" + "9e8447fc-6da6-4ad3-a9b9-70ed0df95ca2" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T201404Z:08066629-2901-4765-b878-04d424d88c40" + "JIOINDIAWEST:20220516T191012Z:9e8447fc-6da6-4ad3-a9b9-70ed0df95ca2" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 20:14:04 GMT" + "Mon, 16 May 2022 19:10:11 GMT" ], "Content-Length": [ - "184" + "485" ], "Content-Type": [ "application/json; charset=utf-8" @@ -5082,23 +5414,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-02-23T15:12:01.1080501-05:00\",\r\n \"endTime\": \"2022-02-23T15:13:41.3098062-05:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"438aa8ce-a975-4283-b96d-0b5ffc3897f5\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"BGInfo\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.Compute/virtualMachines/PSTestVM972e62/extensions/BGInfo\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"BGInfo\",\r\n \"typeHandlerVersion\": \"2.2\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.Compute/virtualMachines/PSTestVMf3c6e2/extensions/BGInfo?api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZjNjNmUyNTEvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy9QU1Rlc3RWTWYzYzZlMi9leHRlbnNpb25zL0JHSW5mbz9hcGktdmVyc2lvbj0yMDIxLTExLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.RecoveryServices/vaults/PSTestRSV972e6a32?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTcyZTZhMzIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5NzJlNmEzMj9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "14f7369d-8f09-42c5-aa21-4b4a95ef5acc" + "d788b515-d87b-4269-b9d2-cb3a77663a4b" + ], + "Accept-Language": [ + "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" + "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesClient/4.3.2.0" ] }, "ResponseHeaders": { @@ -5108,64 +5443,198 @@ "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/LowCostGet3Min;3997,Microsoft.Compute/LowCostGet30Min;31997" + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "1ed45120-32d5-409a-9cd4-050c30e79198" + ], + "x-ms-correlation-request-id": [ + "1ed45120-32d5-409a-9cd4-050c30e79198" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T191012Z:1ed45120-32d5-409a-9cd4-050c30e79198" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 16 May 2022 19:10:12 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "239" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.RecoveryServices/vaults/PSTestRSV972e6a32' under resource group 'PSTestRG972e6a32' 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/PSTestRG972e6a32/providers/Microsoft.RecoveryServices/vaults/PSTestRSV972e6a32?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTcyZTZhMzIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5NzJlNmEzMj9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"southeastasia\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e2623f08-e7e9-4092-b24c-4e3c2b094a7d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesClient/4.3.2.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": [ - "570d0274-fba4-4450-b557-a1306410ad19" + "c3a8743d-86a3-43e5-9856-110a0ea9fca1" + ], + "x-ms-client-request-id": [ + "e2623f08-e7e9-4092-b24c-4e3c2b094a7d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "Microsoft-IIS/10.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11972" + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "209" ], "x-ms-correlation-request-id": [ - "d06565f0-5ff1-407c-b341-ac5d2d7d6ae9" + "c3a8743d-86a3-43e5-9856-110a0ea9fca1" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T201404Z:d06565f0-5ff1-407c-b341-ac5d2d7d6ae9" + "JIOINDIAWEST:20220516T191016Z:c3a8743d-86a3-43e5-9856-110a0ea9fca1" + ], + "Date": [ + "Mon, 16 May 2022 19:10:15 GMT" + ], + "Content-Length": [ + "518" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"location\": \"southeastasia\",\r\n \"name\": \"PSTestRSV972e6a32\",\r\n \"etag\": \"W/\\\"datetime'2022-05-16T19%3A10%3A15.4582482Z'\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateEndpointStateForBackup\": \"None\",\r\n \"privateEndpointStateForSiteRecovery\": \"None\",\r\n \"networkSettings\": {\r\n \"publicNetworkAccess\": \"Enabled\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.RecoveryServices/vaults/PSTestRSV972e6a32\",\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/PSTestRG972e6a32/providers/Microsoft.RecoveryServices/vaults/PSTestRSV972e6a32/backupconfig/vaultconfig?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTcyZTZhMzIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5NzJlNmEzMi9iYWNrdXBjb25maWcvdmF1bHRjb25maWc/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c9205bc4-44d5-4e99-8cde-bee355c8563b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" ], "X-Content-Type-Options": [ "nosniff" ], + "x-ms-request-id": [ + "" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-client-request-id": [ + "c9205bc4-44d5-4e99-8cde-bee355c8563b" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "149" + ], + "x-ms-correlation-request-id": [ + "bdff2259-53fc-4ada-b987-743e9483dd96" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T191016Z:bdff2259-53fc-4ada-b987-743e9483dd96" + ], "Date": [ - "Wed, 23 Feb 2022 20:14:04 GMT" + "Mon, 16 May 2022 19:10:16 GMT" ], "Content-Length": [ - "485" + "380" ], "Content-Type": [ - "application/json; charset=utf-8" + "application/json" ], "Expires": [ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"BGInfo\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.Compute/virtualMachines/PSTestVMf3c6e2/extensions/BGInfo\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"southeastasia\",\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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.RecoveryServices/vaults/PSTestRSV972e6a32/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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.RecoveryServices/vaults/PSTestRSVf3c6e251?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZjNjNmUyNTEvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZmM2M2ZTI1MT9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.RecoveryServices/vaults/PSTestRSV972e6a32/backupResourceGuardProxies?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTcyZTZhMzIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5NzJlNmEzMi9iYWNrdXBSZXNvdXJjZUd1YXJkUHJveGllcz9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "747df627-e762-4de1-ab97-11ad67aef029" + "c9205bc4-44d5-4e99-8cde-bee355c8563b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesClient/4.3.2.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -5175,63 +5644,67 @@ "Pragma": [ "no-cache" ], - "x-ms-failure-cause": [ - "gateway" + "X-Content-Type-Options": [ + "nosniff" ], "x-ms-request-id": [ - "45f79956-64d9-4a06-aa65-5f1a68b1696d" - ], - "x-ms-correlation-request-id": [ - "45f79956-64d9-4a06-aa65-5f1a68b1696d" + "9e1e0948-b618-4a6a-be61-8c980a84dce3" ], - "x-ms-routing-request-id": [ - "CENTRALUS:20220223T201407Z:45f79956-64d9-4a06-aa65-5f1a68b1696d" + "x-ms-client-request-id": [ + "c9205bc4-44d5-4e99-8cde-bee355c8563b", + "c9205bc4-44d5-4e99-8cde-bee355c8563b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ - "nosniff" + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11969" + ], + "x-ms-correlation-request-id": [ + "9e1e0948-b618-4a6a-be61-8c980a84dce3" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T191017Z:9e1e0948-b618-4a6a-be61-8c980a84dce3" ], "Date": [ - "Wed, 23 Feb 2022 20:14:06 GMT" + "Mon, 16 May 2022 19:10:17 GMT" + ], + "Content-Length": [ + "12" ], "Content-Type": [ - "application/json; charset=utf-8" + "application/json" ], "Expires": [ "-1" - ], - "Content-Length": [ - "239" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.RecoveryServices/vaults/PSTestRSVf3c6e251' under resource group 'PSTestRGf3c6e251' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", - "StatusCode": 404 + "ResponseBody": "{\r\n \"value\": []\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.RecoveryServices/vaults/PSTestRSVf3c6e251?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZjNjNmUyNTEvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZmM2M2ZTI1MT9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"southeastasia\"\r\n}", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.RecoveryServices/vaults/PSTestRSV972e6a32/backupResourceGuardProxies?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTcyZTZhMzIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5NzJlNmEzMi9iYWNrdXBSZXNvdXJjZUd1YXJkUHJveGllcz9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3cf9bb86-728f-4c15-a2c0-826b9bf54810" + "e913adc4-ccb2-4d15-8696-374f3f5b7d0b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesClient/4.3.2.0" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "98" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -5245,10 +5718,11 @@ "nosniff" ], "x-ms-request-id": [ - "e6f0a147-f58c-4b7c-ad73-62c79b51e81f" + "fb278bbc-7150-4874-b783-a625548e77fd" ], "x-ms-client-request-id": [ - "3cf9bb86-728f-4c15-a2c0-826b9bf54810" + "e913adc4-ccb2-4d15-8696-374f3f5b7d0b", + "e913adc4-ccb2-4d15-8696-374f3f5b7d0b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5256,20 +5730,23 @@ "Server": [ "Microsoft-IIS/10.0" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "209" + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11967" ], "x-ms-correlation-request-id": [ - "e6f0a147-f58c-4b7c-ad73-62c79b51e81f" + "fb278bbc-7150-4874-b783-a625548e77fd" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T201419Z:e6f0a147-f58c-4b7c-ad73-62c79b51e81f" + "JIOINDIAWEST:20220516T191148Z:fb278bbc-7150-4874-b783-a625548e77fd" ], "Date": [ - "Wed, 23 Feb 2022 20:14:19 GMT" + "Mon, 16 May 2022 19:11:48 GMT" ], "Content-Length": [ - "466" + "12" ], "Content-Type": [ "application/json" @@ -5278,26 +5755,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"location\": \"southeastasia\",\r\n \"name\": \"PSTestRSVf3c6e251\",\r\n \"etag\": \"W/\\\"datetime'2022-02-23T20%3A14%3A17.7931625Z'\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateEndpointStateForBackup\": \"None\",\r\n \"privateEndpointStateForSiteRecovery\": \"None\"\r\n },\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.RecoveryServices/vaults/PSTestRSVf3c6e251\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n }\r\n}", - "StatusCode": 201 + "ResponseBody": "{\r\n \"value\": []\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.RecoveryServices/vaults/PSTestRSVf3c6e251/backupconfig/vaultconfig?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZjNjNmUyNTEvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZmM2M2ZTI1MS9iYWNrdXBjb25maWcvdmF1bHRjb25maWc/YXBpLXZlcnNpb249MjAyMS0xMC0wMQ==", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.RecoveryServices/vaults/PSTestRSV972e6a32/backupResourceGuardProxies?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTcyZTZhMzIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5NzJlNmEzMi9iYWNrdXBSZXNvdXJjZUd1YXJkUHJveGllcz9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7fbcf7b5-63fc-4801-9a10-ad6265ca521e" + "1ccb7690-3d48-46fc-b80e-33ca2b1ac803" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -5311,11 +5788,11 @@ "nosniff" ], "x-ms-request-id": [ - "92531f1a-a335-470e-bdaa-57b838a47c5b" + "7d75b7b8-a4a1-4af7-af8e-5f1dbc7e9683" ], "x-ms-client-request-id": [ - "7fbcf7b5-63fc-4801-9a10-ad6265ca521e", - "7fbcf7b5-63fc-4801-9a10-ad6265ca521e" + "1ccb7690-3d48-46fc-b80e-33ca2b1ac803", + "1ccb7690-3d48-46fc-b80e-33ca2b1ac803" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5326,20 +5803,20 @@ "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "149" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11966" ], "x-ms-correlation-request-id": [ - "92531f1a-a335-470e-bdaa-57b838a47c5b" + "7d75b7b8-a4a1-4af7-af8e-5f1dbc7e9683" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T201421Z:92531f1a-a335-470e-bdaa-57b838a47c5b" + "JIOINDIAWEST:20220516T191348Z:7d75b7b8-a4a1-4af7-af8e-5f1dbc7e9683" ], "Date": [ - "Wed, 23 Feb 2022 20:14:21 GMT" + "Mon, 16 May 2022 19:13:47 GMT" ], "Content-Length": [ - "380" + "12" ], "Content-Type": [ "application/json" @@ -5348,26 +5825,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.RecoveryServices/vaults/PSTestRSVf3c6e251/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}", + "ResponseBody": "{\r\n \"value\": []\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.RecoveryServices/vaults/PSTestRSVf3c6e251/backupconfig/vaultconfig?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZjNjNmUyNTEvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZmM2M2ZTI1MS9iYWNrdXBjb25maWcvdmF1bHRjb25maWc/YXBpLXZlcnNpb249MjAyMS0xMC0wMQ==", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.RecoveryServices/vaults/PSTestRSV972e6a32/backupconfig/vaultconfig?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTcyZTZhMzIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5NzJlNmEzMi9iYWNrdXBjb25maWcvdmF1bHRjb25maWc/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "PATCH", "RequestBody": "{\r\n \"properties\": {\r\n \"enhancedSecurityState\": \"Enabled\",\r\n \"softDeleteFeatureState\": \"Disabled\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "7fbcf7b5-63fc-4801-9a10-ad6265ca521e" + "c9205bc4-44d5-4e99-8cde-bee355c8563b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -5387,11 +5864,11 @@ "nosniff" ], "x-ms-request-id": [ - "959dbfe9-cf36-43c9-8798-0adae84f0b15" + "bb81ac3e-4821-44fe-a871-fd9bebceac60" ], "x-ms-client-request-id": [ - "7fbcf7b5-63fc-4801-9a10-ad6265ca521e", - "7fbcf7b5-63fc-4801-9a10-ad6265ca521e" + "c9205bc4-44d5-4e99-8cde-bee355c8563b", + "c9205bc4-44d5-4e99-8cde-bee355c8563b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5403,16 +5880,16 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1195" ], "x-ms-correlation-request-id": [ - "959dbfe9-cf36-43c9-8798-0adae84f0b15" + "bb81ac3e-4821-44fe-a871-fd9bebceac60" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T201422Z:959dbfe9-cf36-43c9-8798-0adae84f0b15" + "JIOINDIAWEST:20220516T191018Z:bb81ac3e-4821-44fe-a871-fd9bebceac60" ], "Date": [ - "Wed, 23 Feb 2022 20:14:22 GMT" + "Mon, 16 May 2022 19:10:17 GMT" ], "Content-Length": [ "381" @@ -5424,26 +5901,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.RecoveryServices/vaults/PSTestRSVf3c6e251/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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.RecoveryServices/vaults/PSTestRSV972e6a32/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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.RecoveryServices/vaults/PSTestRSVf3c6e251/backupProtectionContainers?$filter=friendlyName%20eq%20'PSTestVMf3c6e1'%20and%20backupManagementType%20eq%20'AzureIaasVM'%20and%20status%20eq%20'Registered'&api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZjNjNmUyNTEvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZmM2M2ZTI1MS9iYWNrdXBQcm90ZWN0aW9uQ29udGFpbmVycz8kZmlsdGVyPWZyaWVuZGx5TmFtZSUyMGVxJTIwJ1BTVGVzdFZNZjNjNmUxJyUyMGFuZCUyMGJhY2t1cE1hbmFnZW1lbnRUeXBlJTIwZXElMjAnQXp1cmVJYWFzVk0nJTIwYW5kJTIwc3RhdHVzJTIwZXElMjAnUmVnaXN0ZXJlZCcmYXBpLXZlcnNpb249MjAyMS0xMC0wMQ==", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.RecoveryServices/vaults/PSTestRSV972e6a32/backupProtectionContainers?$filter=friendlyName%20eq%20'PSTestVM972e61'%20and%20backupManagementType%20eq%20'AzureIaasVM'%20and%20status%20eq%20'Registered'&api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTcyZTZhMzIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5NzJlNmEzMi9iYWNrdXBQcm90ZWN0aW9uQ29udGFpbmVycz8kZmlsdGVyPWZyaWVuZGx5TmFtZSUyMGVxJTIwJ1BTVGVzdFZNOTcyZTYxJyUyMGFuZCUyMGJhY2t1cE1hbmFnZW1lbnRUeXBlJTIwZXElMjAnQXp1cmVJYWFzVk0nJTIwYW5kJTIwc3RhdHVzJTIwZXElMjAnUmVnaXN0ZXJlZCcmYXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2f554e3d-fba3-4b5e-85dd-9d60a2aa5149" + "94b8602e-6f2e-495c-abec-ed86e33eeef6" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -5457,11 +5934,11 @@ "nosniff" ], "x-ms-request-id": [ - "e868e071-0967-44b7-89a9-5a01d734edc2" + "79cc96fe-2f47-43e2-b91a-f34a84433e4b" ], "x-ms-client-request-id": [ - "2f554e3d-fba3-4b5e-85dd-9d60a2aa5149", - "2f554e3d-fba3-4b5e-85dd-9d60a2aa5149" + "94b8602e-6f2e-495c-abec-ed86e33eeef6", + "94b8602e-6f2e-495c-abec-ed86e33eeef6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5476,13 +5953,13 @@ "149" ], "x-ms-correlation-request-id": [ - "e868e071-0967-44b7-89a9-5a01d734edc2" + "79cc96fe-2f47-43e2-b91a-f34a84433e4b" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T201428Z:e868e071-0967-44b7-89a9-5a01d734edc2" + "JIOINDIAWEST:20220516T191023Z:79cc96fe-2f47-43e2-b91a-f34a84433e4b" ], "Date": [ - "Wed, 23 Feb 2022 20:14:28 GMT" + "Mon, 16 May 2022 19:10:23 GMT" ], "Content-Length": [ "12" @@ -5498,22 +5975,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.RecoveryServices/vaults/PSTestRSVf3c6e251/backupProtectionContainers?$filter=friendlyName%20eq%20'PSTestVMf3c6e1'%20and%20backupManagementType%20eq%20'AzureIaasVM'%20and%20status%20eq%20'Registered'&api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZjNjNmUyNTEvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZmM2M2ZTI1MS9iYWNrdXBQcm90ZWN0aW9uQ29udGFpbmVycz8kZmlsdGVyPWZyaWVuZGx5TmFtZSUyMGVxJTIwJ1BTVGVzdFZNZjNjNmUxJyUyMGFuZCUyMGJhY2t1cE1hbmFnZW1lbnRUeXBlJTIwZXElMjAnQXp1cmVJYWFzVk0nJTIwYW5kJTIwc3RhdHVzJTIwZXElMjAnUmVnaXN0ZXJlZCcmYXBpLXZlcnNpb249MjAyMS0xMC0wMQ==", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.RecoveryServices/vaults/PSTestRSV972e6a32/backupProtectionContainers?$filter=friendlyName%20eq%20'PSTestVM972e61'%20and%20backupManagementType%20eq%20'AzureIaasVM'%20and%20status%20eq%20'Registered'&api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTcyZTZhMzIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5NzJlNmEzMi9iYWNrdXBQcm90ZWN0aW9uQ29udGFpbmVycz8kZmlsdGVyPWZyaWVuZGx5TmFtZSUyMGVxJTIwJ1BTVGVzdFZNOTcyZTYxJyUyMGFuZCUyMGJhY2t1cE1hbmFnZW1lbnRUeXBlJTIwZXElMjAnQXp1cmVJYWFzVk0nJTIwYW5kJTIwc3RhdHVzJTIwZXElMjAnUmVnaXN0ZXJlZCcmYXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3793f8c9-37ab-4423-a7b6-127017d11f80" + "347e35e4-2dc0-4af7-aa27-24c99e08b6fa" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -5527,11 +6004,11 @@ "nosniff" ], "x-ms-request-id": [ - "4dafcc1b-7dfd-435c-9a80-bb4e92e43395" + "df1a02ae-d4a4-4ee2-b754-163ca161e270" ], "x-ms-client-request-id": [ - "3793f8c9-37ab-4423-a7b6-127017d11f80", - "3793f8c9-37ab-4423-a7b6-127017d11f80" + "347e35e4-2dc0-4af7-aa27-24c99e08b6fa", + "347e35e4-2dc0-4af7-aa27-24c99e08b6fa" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5546,13 +6023,13 @@ "148" ], "x-ms-correlation-request-id": [ - "4dafcc1b-7dfd-435c-9a80-bb4e92e43395" + "df1a02ae-d4a4-4ee2-b754-163ca161e270" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T201517Z:4dafcc1b-7dfd-435c-9a80-bb4e92e43395" + "JIOINDIAWEST:20220516T191101Z:df1a02ae-d4a4-4ee2-b754-163ca161e270" ], "Date": [ - "Wed, 23 Feb 2022 20:15:17 GMT" + "Mon, 16 May 2022 19:11:00 GMT" ], "Content-Length": [ "914" @@ -5564,26 +6041,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.RecoveryServices/vaults/PSTestRSVf3c6e251/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrgf3c6e251;pstestvmf3c6e1\",\r\n \"name\": \"IaasVMContainer;iaasvmcontainerv2;pstestrgf3c6e251;pstestvmf3c6e1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers\",\r\n \"properties\": {\r\n \"virtualMachineId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.Compute/virtualMachines/PSTestVMf3c6e1\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"resourceGroup\": \"PSTestRGf3c6e251\",\r\n \"friendlyName\": \"PSTestVMf3c6e1\",\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.RecoveryServices/vaults/PSTestRSV972e6a32/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrg972e6a32;pstestvm972e61\",\r\n \"name\": \"IaasVMContainer;iaasvmcontainerv2;pstestrg972e6a32;pstestvm972e61\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers\",\r\n \"properties\": {\r\n \"virtualMachineId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.Compute/virtualMachines/PSTestVM972e61\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"resourceGroup\": \"PSTestRG972e6a32\",\r\n \"friendlyName\": \"PSTestVM972e61\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.RecoveryServices/vaults/PSTestRSVf3c6e251/backupPolicies/DefaultPolicy?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZjNjNmUyNTEvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZmM2M2ZTI1MS9iYWNrdXBQb2xpY2llcy9EZWZhdWx0UG9saWN5P2FwaS12ZXJzaW9uPTIwMjEtMTAtMDE=", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.RecoveryServices/vaults/PSTestRSV972e6a32/backupPolicies/DefaultPolicy?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTcyZTZhMzIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5NzJlNmEzMi9iYWNrdXBQb2xpY2llcy9EZWZhdWx0UG9saWN5P2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5cc0f5ce-d6aa-49ae-8b2f-43cb6b982d0c" + "4b520c33-ab25-4e79-b009-ba67b1655f9c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -5597,11 +6074,11 @@ "nosniff" ], "x-ms-request-id": [ - "392ef174-d993-474b-a440-b92995308d67" + "9cfd2c3e-8fa6-49b7-9bb7-41de0d718450" ], "x-ms-client-request-id": [ - "5cc0f5ce-d6aa-49ae-8b2f-43cb6b982d0c", - "5cc0f5ce-d6aa-49ae-8b2f-43cb6b982d0c" + "4b520c33-ab25-4e79-b009-ba67b1655f9c", + "4b520c33-ab25-4e79-b009-ba67b1655f9c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5616,13 +6093,13 @@ "149" ], "x-ms-correlation-request-id": [ - "392ef174-d993-474b-a440-b92995308d67" + "9cfd2c3e-8fa6-49b7-9bb7-41de0d718450" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T201428Z:392ef174-d993-474b-a440-b92995308d67" + "JIOINDIAWEST:20220516T191024Z:9cfd2c3e-8fa6-49b7-9bb7-41de0d718450" ], "Date": [ - "Wed, 23 Feb 2022 20:14:28 GMT" + "Mon, 16 May 2022 19:10:23 GMT" ], "Content-Length": [ "762" @@ -5634,26 +6111,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.RecoveryServices/vaults/PSTestRSVf3c6e251/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 \"2022-02-24T06:00:00Z\"\r\n ],\r\n \"scheduleWeeklyFrequency\": 0\r\n },\r\n \"retentionPolicy\": {\r\n \"retentionPolicyType\": \"LongTermRetentionPolicy\",\r\n \"dailySchedule\": {\r\n \"retentionTimes\": [\r\n \"2022-02-24T06:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 30,\r\n \"durationType\": \"Days\"\r\n }\r\n }\r\n },\r\n \"instantRpRetentionRangeInDays\": 2,\r\n \"timeZone\": \"UTC\",\r\n \"protectedItemsCount\": 0\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.RecoveryServices/vaults/PSTestRSV972e6a32/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 \"2022-05-17T05:00:00Z\"\r\n ],\r\n \"scheduleWeeklyFrequency\": 0\r\n },\r\n \"retentionPolicy\": {\r\n \"retentionPolicyType\": \"LongTermRetentionPolicy\",\r\n \"dailySchedule\": {\r\n \"retentionTimes\": [\r\n \"2022-05-17T05:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 30,\r\n \"durationType\": \"Days\"\r\n }\r\n }\r\n },\r\n \"instantRpRetentionRangeInDays\": 2,\r\n \"timeZone\": \"UTC\",\r\n \"protectedItemsCount\": 0\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.RecoveryServices/vaults/PSTestRSVf3c6e251/backupPolicies/DefaultPolicy?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZjNjNmUyNTEvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZmM2M2ZTI1MS9iYWNrdXBQb2xpY2llcy9EZWZhdWx0UG9saWN5P2FwaS12ZXJzaW9uPTIwMjEtMTAtMDE=", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.RecoveryServices/vaults/PSTestRSV972e6a32/backupPolicies/DefaultPolicy?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTcyZTZhMzIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5NzJlNmEzMi9iYWNrdXBQb2xpY2llcy9EZWZhdWx0UG9saWN5P2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d4dcac90-274d-4cde-94ed-456c5fe55323" + "89ac8bb8-9ffb-41a8-9d2c-cf5d8c0b06e8" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -5667,11 +6144,11 @@ "nosniff" ], "x-ms-request-id": [ - "1310472c-dd8b-4995-bfc5-3b2b42494751" + "13ab9635-8b78-452d-b008-84cf34bfb1bc" ], "x-ms-client-request-id": [ - "d4dcac90-274d-4cde-94ed-456c5fe55323", - "d4dcac90-274d-4cde-94ed-456c5fe55323" + "89ac8bb8-9ffb-41a8-9d2c-cf5d8c0b06e8", + "89ac8bb8-9ffb-41a8-9d2c-cf5d8c0b06e8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5686,13 +6163,13 @@ "148" ], "x-ms-correlation-request-id": [ - "1310472c-dd8b-4995-bfc5-3b2b42494751" + "13ab9635-8b78-452d-b008-84cf34bfb1bc" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T201525Z:1310472c-dd8b-4995-bfc5-3b2b42494751" + "JIOINDIAWEST:20220516T191108Z:13ab9635-8b78-452d-b008-84cf34bfb1bc" ], "Date": [ - "Wed, 23 Feb 2022 20:15:24 GMT" + "Mon, 16 May 2022 19:11:08 GMT" ], "Content-Length": [ "762" @@ -5704,26 +6181,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.RecoveryServices/vaults/PSTestRSVf3c6e251/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 \"2022-02-24T06:00:00Z\"\r\n ],\r\n \"scheduleWeeklyFrequency\": 0\r\n },\r\n \"retentionPolicy\": {\r\n \"retentionPolicyType\": \"LongTermRetentionPolicy\",\r\n \"dailySchedule\": {\r\n \"retentionTimes\": [\r\n \"2022-02-24T06:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 30,\r\n \"durationType\": \"Days\"\r\n }\r\n }\r\n },\r\n \"instantRpRetentionRangeInDays\": 2,\r\n \"timeZone\": \"UTC\",\r\n \"protectedItemsCount\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.RecoveryServices/vaults/PSTestRSV972e6a32/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 \"2022-05-17T05:00:00Z\"\r\n ],\r\n \"scheduleWeeklyFrequency\": 0\r\n },\r\n \"retentionPolicy\": {\r\n \"retentionPolicyType\": \"LongTermRetentionPolicy\",\r\n \"dailySchedule\": {\r\n \"retentionTimes\": [\r\n \"2022-05-17T05:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 30,\r\n \"durationType\": \"Days\"\r\n }\r\n }\r\n },\r\n \"instantRpRetentionRangeInDays\": 2,\r\n \"timeZone\": \"UTC\",\r\n \"protectedItemsCount\": 1\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.RecoveryServices/vaults/PSTestRSVf3c6e251/backupProtectableItems?$filter=backupManagementType%20eq%20'AzureIaasVM'&api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZjNjNmUyNTEvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZmM2M2ZTI1MS9iYWNrdXBQcm90ZWN0YWJsZUl0ZW1zPyRmaWx0ZXI9YmFja3VwTWFuYWdlbWVudFR5cGUlMjBlcSUyMCdBenVyZUlhYXNWTScmYXBpLXZlcnNpb249MjAyMS0xMC0wMQ==", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.RecoveryServices/vaults/PSTestRSV972e6a32/backupProtectableItems?$filter=backupManagementType%20eq%20'AzureIaasVM'&api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTcyZTZhMzIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5NzJlNmEzMi9iYWNrdXBQcm90ZWN0YWJsZUl0ZW1zPyRmaWx0ZXI9YmFja3VwTWFuYWdlbWVudFR5cGUlMjBlcSUyMCdBenVyZUlhYXNWTScmYXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "411646b1-6661-427f-abad-88cf06819d60" + "68f092fb-4a6f-460e-a32b-ed67fc496938" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -5737,11 +6214,11 @@ "nosniff" ], "x-ms-request-id": [ - "86e39c95-fac6-424f-85dc-cd599433b106" + "4c466792-169e-417c-8458-d9bf5e21f5b7" ], "x-ms-client-request-id": [ - "411646b1-6661-427f-abad-88cf06819d60", - "411646b1-6661-427f-abad-88cf06819d60" + "68f092fb-4a6f-460e-a32b-ed67fc496938", + "68f092fb-4a6f-460e-a32b-ed67fc496938" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5756,16 +6233,16 @@ "149" ], "x-ms-correlation-request-id": [ - "86e39c95-fac6-424f-85dc-cd599433b106" + "4c466792-169e-417c-8458-d9bf5e21f5b7" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T201429Z:86e39c95-fac6-424f-85dc-cd599433b106" + "JIOINDIAWEST:20220516T191024Z:4c466792-169e-417c-8458-d9bf5e21f5b7" ], "Date": [ - "Wed, 23 Feb 2022 20:14:29 GMT" + "Mon, 16 May 2022 19:10:24 GMT" ], "Content-Length": [ - "1799" + "7927" ], "Content-Type": [ "application/json" @@ -5774,26 +6251,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.RecoveryServices/vaults/PSTestRSVf3c6e251/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrgf3c6e251;pstestvmf3c6e1/protectableItems/vm;iaasvmcontainerv2;pstestrgf3c6e251;pstestvmf3c6e1\",\r\n \"name\": \"iaasvmcontainerv2;pstestrgf3c6e251;pstestvmf3c6e1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems\",\r\n \"properties\": {\r\n \"virtualMachineId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.Compute/virtualMachines/PSTestVMf3c6e1\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"resourceGroup\": \"PSTestRGf3c6e251\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"protectableItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"friendlyName\": \"PSTestVMf3c6e1\",\r\n \"protectionState\": \"NotProtected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.RecoveryServices/vaults/PSTestRSVf3c6e251/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrgf3c6e251;pstestvmf3c6e2/protectableItems/vm;iaasvmcontainerv2;pstestrgf3c6e251;pstestvmf3c6e2\",\r\n \"name\": \"iaasvmcontainerv2;pstestrgf3c6e251;pstestvmf3c6e2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems\",\r\n \"properties\": {\r\n \"virtualMachineId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.Compute/virtualMachines/PSTestVMf3c6e2\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"resourceGroup\": \"PSTestRGf3c6e251\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"protectableItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"friendlyName\": \"PSTestVMf3c6e2\",\r\n \"protectionState\": \"NotProtected\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.RecoveryServices/vaults/PSTestRSV972e6a32/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;akneema;akneema-hana-vm/protectableItems/vm;iaasvmcontainerv2;akneema;akneema-hana-vm\",\r\n \"name\": \"iaasvmcontainerv2;akneema;akneema-hana-vm\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems\",\r\n \"properties\": {\r\n \"virtualMachineId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/akneema/providers/Microsoft.Compute/virtualMachines/akneema-hana-vm\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"resourceGroup\": \"akneema\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"protectableItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"friendlyName\": \"akneema-hana-vm\",\r\n \"protectionState\": \"NotProtected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.RecoveryServices/vaults/PSTestRSV972e6a32/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;containerautoprotection;shrja-2019/protectableItems/vm;iaasvmcontainerv2;containerautoprotection;shrja-2019\",\r\n \"name\": \"iaasvmcontainerv2;containerautoprotection;shrja-2019\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems\",\r\n \"properties\": {\r\n \"virtualMachineId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/ContainerAutoProtection/providers/Microsoft.Compute/virtualMachines/shrja-2019\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"resourceGroup\": \"ContainerAutoProtection\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"protectableItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"friendlyName\": \"shrja-2019\",\r\n \"protectionState\": \"NotProtected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.RecoveryServices/vaults/PSTestRSV972e6a32/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrg972e6a32;pstestvm972e61/protectableItems/vm;iaasvmcontainerv2;pstestrg972e6a32;pstestvm972e61\",\r\n \"name\": \"iaasvmcontainerv2;pstestrg972e6a32;pstestvm972e61\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems\",\r\n \"properties\": {\r\n \"virtualMachineId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.Compute/virtualMachines/PSTestVM972e61\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"resourceGroup\": \"PSTestRG972e6a32\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"protectableItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"friendlyName\": \"PSTestVM972e61\",\r\n \"protectionState\": \"NotProtected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.RecoveryServices/vaults/PSTestRSV972e6a32/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrg972e6a32;pstestvm972e62/protectableItems/vm;iaasvmcontainerv2;pstestrg972e6a32;pstestvm972e62\",\r\n \"name\": \"iaasvmcontainerv2;pstestrg972e6a32;pstestvm972e62\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems\",\r\n \"properties\": {\r\n \"virtualMachineId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.Compute/virtualMachines/PSTestVM972e62\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"resourceGroup\": \"PSTestRG972e6a32\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"protectableItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"friendlyName\": \"PSTestVM972e62\",\r\n \"protectionState\": \"NotProtected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.RecoveryServices/vaults/PSTestRSV972e6a32/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestwlrg1bca8;pstestwlvm1bca8/protectableItems/vm;iaasvmcontainerv2;pstestwlrg1bca8;pstestwlvm1bca8\",\r\n \"name\": \"iaasvmcontainerv2;pstestwlrg1bca8;pstestwlvm1bca8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems\",\r\n \"properties\": {\r\n \"virtualMachineId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/pstestwlRG1bca8/providers/Microsoft.Compute/virtualMachines/pstestwlvm1bca8\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"resourceGroup\": \"pstestwlRG1bca8\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"protectableItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"friendlyName\": \"pstestwlvm1bca8\",\r\n \"protectionState\": \"NotProtected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.RecoveryServices/vaults/PSTestRSV972e6a32/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;shrja2008_group;shrja2008/protectableItems/vm;iaasvmcontainerv2;shrja2008_group;shrja2008\",\r\n \"name\": \"iaasvmcontainerv2;shrja2008_group;shrja2008\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems\",\r\n \"properties\": {\r\n \"virtualMachineId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/shrja2008_group/providers/Microsoft.Compute/virtualMachines/shrja2008\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"resourceGroup\": \"shrja2008_group\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"protectableItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"friendlyName\": \"shrja2008\",\r\n \"protectionState\": \"NotProtected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.RecoveryServices/vaults/PSTestRSV972e6a32/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;shswain-rg-donotuse;dsdsdsad/protectableItems/vm;iaasvmcontainerv2;shswain-rg-donotuse;dsdsdsad\",\r\n \"name\": \"iaasvmcontainerv2;shswain-rg-donotuse;dsdsdsad\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems\",\r\n \"properties\": {\r\n \"virtualMachineId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/shswain-rg-donotuse/providers/Microsoft.Compute/virtualMachines/dsdsdsad\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"resourceGroup\": \"shswain-rg-donotuse\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"protectableItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"friendlyName\": \"dsdsdsad\",\r\n \"protectionState\": \"NotProtected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.RecoveryServices/vaults/PSTestRSV972e6a32/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;shswain-rg-donotuse;iumjjkuui/protectableItems/vm;iaasvmcontainerv2;shswain-rg-donotuse;iumjjkuui\",\r\n \"name\": \"iaasvmcontainerv2;shswain-rg-donotuse;iumjjkuui\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems\",\r\n \"properties\": {\r\n \"virtualMachineId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/shswain-rg-donotuse/providers/Microsoft.Compute/virtualMachines/iumjjkuui\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"resourceGroup\": \"shswain-rg-donotuse\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"protectableItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"friendlyName\": \"iumjjkuui\",\r\n \"protectionState\": \"NotProtected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.RecoveryServices/vaults/PSTestRSV972e6a32/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;sisi-rsv;sisi-mercury/protectableItems/vm;iaasvmcontainerv2;sisi-rsv;sisi-mercury\",\r\n \"name\": \"iaasvmcontainerv2;sisi-rsv;sisi-mercury\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems\",\r\n \"properties\": {\r\n \"virtualMachineId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/sisi-RSV/providers/Microsoft.Compute/virtualMachines/sisi-mercury\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"resourceGroup\": \"sisi-RSV\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"protectableItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"friendlyName\": \"sisi-mercury\",\r\n \"protectionState\": \"NotProtected\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.RecoveryServices/vaults/PSTestRSVf3c6e251/backupProtectableItems?$filter=backupManagementType%20eq%20'AzureIaasVM'&api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZjNjNmUyNTEvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZmM2M2ZTI1MS9iYWNrdXBQcm90ZWN0YWJsZUl0ZW1zPyRmaWx0ZXI9YmFja3VwTWFuYWdlbWVudFR5cGUlMjBlcSUyMCdBenVyZUlhYXNWTScmYXBpLXZlcnNpb249MjAyMS0xMC0wMQ==", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.RecoveryServices/vaults/PSTestRSV972e6a32/backupProtectableItems?$filter=backupManagementType%20eq%20'AzureIaasVM'&api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTcyZTZhMzIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5NzJlNmEzMi9iYWNrdXBQcm90ZWN0YWJsZUl0ZW1zPyRmaWx0ZXI9YmFja3VwTWFuYWdlbWVudFR5cGUlMjBlcSUyMCdBenVyZUlhYXNWTScmYXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1ce4cd29-4bc5-4017-8486-b8148c8f818f" + "603fda82-d973-4911-8222-61c69e9b1f0b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -5807,11 +6284,11 @@ "nosniff" ], "x-ms-request-id": [ - "8aacb11a-3f11-4894-b2e8-175d28bdedb8" + "4b64daf9-6e5e-49b8-9d60-4009526e2372" ], "x-ms-client-request-id": [ - "1ce4cd29-4bc5-4017-8486-b8148c8f818f", - "1ce4cd29-4bc5-4017-8486-b8148c8f818f" + "603fda82-d973-4911-8222-61c69e9b1f0b", + "603fda82-d973-4911-8222-61c69e9b1f0b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5826,16 +6303,16 @@ "148" ], "x-ms-correlation-request-id": [ - "8aacb11a-3f11-4894-b2e8-175d28bdedb8" + "4b64daf9-6e5e-49b8-9d60-4009526e2372" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T201526Z:8aacb11a-3f11-4894-b2e8-175d28bdedb8" + "JIOINDIAWEST:20220516T191108Z:4b64daf9-6e5e-49b8-9d60-4009526e2372" ], "Date": [ - "Wed, 23 Feb 2022 20:15:25 GMT" + "Mon, 16 May 2022 19:11:08 GMT" ], "Content-Length": [ - "905" + "7033" ], "Content-Type": [ "application/json" @@ -5844,26 +6321,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.RecoveryServices/vaults/PSTestRSVf3c6e251/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrgf3c6e251;pstestvmf3c6e2/protectableItems/vm;iaasvmcontainerv2;pstestrgf3c6e251;pstestvmf3c6e2\",\r\n \"name\": \"iaasvmcontainerv2;pstestrgf3c6e251;pstestvmf3c6e2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems\",\r\n \"properties\": {\r\n \"virtualMachineId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.Compute/virtualMachines/PSTestVMf3c6e2\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"resourceGroup\": \"PSTestRGf3c6e251\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"protectableItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"friendlyName\": \"PSTestVMf3c6e2\",\r\n \"protectionState\": \"NotProtected\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.RecoveryServices/vaults/PSTestRSV972e6a32/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;akneema;akneema-hana-vm/protectableItems/vm;iaasvmcontainerv2;akneema;akneema-hana-vm\",\r\n \"name\": \"iaasvmcontainerv2;akneema;akneema-hana-vm\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems\",\r\n \"properties\": {\r\n \"virtualMachineId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/akneema/providers/Microsoft.Compute/virtualMachines/akneema-hana-vm\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"resourceGroup\": \"akneema\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"protectableItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"friendlyName\": \"akneema-hana-vm\",\r\n \"protectionState\": \"NotProtected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.RecoveryServices/vaults/PSTestRSV972e6a32/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;containerautoprotection;shrja-2019/protectableItems/vm;iaasvmcontainerv2;containerautoprotection;shrja-2019\",\r\n \"name\": \"iaasvmcontainerv2;containerautoprotection;shrja-2019\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems\",\r\n \"properties\": {\r\n \"virtualMachineId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/ContainerAutoProtection/providers/Microsoft.Compute/virtualMachines/shrja-2019\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"resourceGroup\": \"ContainerAutoProtection\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"protectableItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"friendlyName\": \"shrja-2019\",\r\n \"protectionState\": \"NotProtected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.RecoveryServices/vaults/PSTestRSV972e6a32/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrg972e6a32;pstestvm972e62/protectableItems/vm;iaasvmcontainerv2;pstestrg972e6a32;pstestvm972e62\",\r\n \"name\": \"iaasvmcontainerv2;pstestrg972e6a32;pstestvm972e62\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems\",\r\n \"properties\": {\r\n \"virtualMachineId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.Compute/virtualMachines/PSTestVM972e62\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"resourceGroup\": \"PSTestRG972e6a32\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"protectableItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"friendlyName\": \"PSTestVM972e62\",\r\n \"protectionState\": \"NotProtected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.RecoveryServices/vaults/PSTestRSV972e6a32/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestwlrg1bca8;pstestwlvm1bca8/protectableItems/vm;iaasvmcontainerv2;pstestwlrg1bca8;pstestwlvm1bca8\",\r\n \"name\": \"iaasvmcontainerv2;pstestwlrg1bca8;pstestwlvm1bca8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems\",\r\n \"properties\": {\r\n \"virtualMachineId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/pstestwlRG1bca8/providers/Microsoft.Compute/virtualMachines/pstestwlvm1bca8\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"resourceGroup\": \"pstestwlRG1bca8\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"protectableItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"friendlyName\": \"pstestwlvm1bca8\",\r\n \"protectionState\": \"NotProtected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.RecoveryServices/vaults/PSTestRSV972e6a32/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;shrja2008_group;shrja2008/protectableItems/vm;iaasvmcontainerv2;shrja2008_group;shrja2008\",\r\n \"name\": \"iaasvmcontainerv2;shrja2008_group;shrja2008\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems\",\r\n \"properties\": {\r\n \"virtualMachineId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/shrja2008_group/providers/Microsoft.Compute/virtualMachines/shrja2008\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"resourceGroup\": \"shrja2008_group\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"protectableItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"friendlyName\": \"shrja2008\",\r\n \"protectionState\": \"NotProtected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.RecoveryServices/vaults/PSTestRSV972e6a32/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;shswain-rg-donotuse;dsdsdsad/protectableItems/vm;iaasvmcontainerv2;shswain-rg-donotuse;dsdsdsad\",\r\n \"name\": \"iaasvmcontainerv2;shswain-rg-donotuse;dsdsdsad\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems\",\r\n \"properties\": {\r\n \"virtualMachineId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/shswain-rg-donotuse/providers/Microsoft.Compute/virtualMachines/dsdsdsad\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"resourceGroup\": \"shswain-rg-donotuse\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"protectableItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"friendlyName\": \"dsdsdsad\",\r\n \"protectionState\": \"NotProtected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.RecoveryServices/vaults/PSTestRSV972e6a32/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;shswain-rg-donotuse;iumjjkuui/protectableItems/vm;iaasvmcontainerv2;shswain-rg-donotuse;iumjjkuui\",\r\n \"name\": \"iaasvmcontainerv2;shswain-rg-donotuse;iumjjkuui\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems\",\r\n \"properties\": {\r\n \"virtualMachineId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/shswain-rg-donotuse/providers/Microsoft.Compute/virtualMachines/iumjjkuui\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"resourceGroup\": \"shswain-rg-donotuse\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"protectableItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"friendlyName\": \"iumjjkuui\",\r\n \"protectionState\": \"NotProtected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.RecoveryServices/vaults/PSTestRSV972e6a32/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;sisi-rsv;sisi-mercury/protectableItems/vm;iaasvmcontainerv2;sisi-rsv;sisi-mercury\",\r\n \"name\": \"iaasvmcontainerv2;sisi-rsv;sisi-mercury\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems\",\r\n \"properties\": {\r\n \"virtualMachineId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/sisi-RSV/providers/Microsoft.Compute/virtualMachines/sisi-mercury\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"resourceGroup\": \"sisi-RSV\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"protectableItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"friendlyName\": \"sisi-mercury\",\r\n \"protectionState\": \"NotProtected\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.RecoveryServices/vaults/PSTestRSVf3c6e251/backupFabrics/Azure/protectionContainers/IaasVMContainer%3Biaasvmcontainerv2%3Bpstestrgf3c6e251%3Bpstestvmf3c6e1/protectedItems/vm%3Biaasvmcontainerv2%3Bpstestrgf3c6e251%3Bpstestvmf3c6e1?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZjNjNmUyNTEvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZmM2M2ZTI1MS9iYWNrdXBGYWJyaWNzL0F6dXJlL3Byb3RlY3Rpb25Db250YWluZXJzL0lhYXNWTUNvbnRhaW5lciUzQmlhYXN2bWNvbnRhaW5lcnYyJTNCcHN0ZXN0cmdmM2M2ZTI1MSUzQnBzdGVzdHZtZjNjNmUxL3Byb3RlY3RlZEl0ZW1zL3ZtJTNCaWFhc3ZtY29udGFpbmVydjIlM0Jwc3Rlc3RyZ2YzYzZlMjUxJTNCcHN0ZXN0dm1mM2M2ZTE/YXBpLXZlcnNpb249MjAyMS0xMC0wMQ==", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.RecoveryServices/vaults/PSTestRSV972e6a32/backupFabrics/Azure/protectionContainers/IaasVMContainer%3Biaasvmcontainerv2%3Bpstestrg972e6a32%3Bpstestvm972e61/protectedItems/vm%3Biaasvmcontainerv2%3Bpstestrg972e6a32%3Bpstestvm972e61?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTcyZTZhMzIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5NzJlNmEzMi9iYWNrdXBGYWJyaWNzL0F6dXJlL3Byb3RlY3Rpb25Db250YWluZXJzL0lhYXNWTUNvbnRhaW5lciUzQmlhYXN2bWNvbnRhaW5lcnYyJTNCcHN0ZXN0cmc5NzJlNmEzMiUzQnBzdGVzdHZtOTcyZTYxL3Byb3RlY3RlZEl0ZW1zL3ZtJTNCaWFhc3ZtY29udGFpbmVydjIlM0Jwc3Rlc3RyZzk3MmU2YTMyJTNCcHN0ZXN0dm05NzJlNjE/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"protectedItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"sourceResourceId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.Compute/virtualMachines/PSTestVMf3c6e1\",\r\n \"policyId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.RecoveryServices/vaults/PSTestRSVf3c6e251/backupPolicies/DefaultPolicy\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"protectedItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"sourceResourceId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.Compute/virtualMachines/PSTestVM972e61\",\r\n \"policyId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.RecoveryServices/vaults/PSTestRSV972e6a32/backupPolicies/DefaultPolicy\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "411646b1-6661-427f-abad-88cf06819d60" + "68f092fb-4a6f-460e-a32b-ed67fc496938" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -5880,23 +6357,23 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.RecoveryServices/vaults/PSTestRSVf3c6e251/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrgf3c6e251;pstestvmf3c6e1/protectedItems/vm;iaasvmcontainerv2;pstestrgf3c6e251;pstestvmf3c6e1/operationResults/b1a08927-8d38-49d5-8b09-ba152e5b02c9?api-version=2021-10-01" + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.RecoveryServices/vaults/PSTestRSV972e6a32/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrg972e6a32;pstestvm972e61/protectedItems/vm;iaasvmcontainerv2;pstestrg972e6a32;pstestvm972e61/operationResults/0c410e65-be2a-414d-a58b-666673606d76?api-version=2022-02-01" ], "Retry-After": [ "60" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.RecoveryServices/vaults/PSTestRSVf3c6e251/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrgf3c6e251;pstestvmf3c6e1/protectedItems/vm;iaasvmcontainerv2;pstestrgf3c6e251;pstestvmf3c6e1/operationsStatus/b1a08927-8d38-49d5-8b09-ba152e5b02c9?api-version=2021-10-01" + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.RecoveryServices/vaults/PSTestRSV972e6a32/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrg972e6a32;pstestvm972e61/protectedItems/vm;iaasvmcontainerv2;pstestrg972e6a32;pstestvm972e61/operationsStatus/0c410e65-be2a-414d-a58b-666673606d76?api-version=2022-02-01" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "3d471b4f-d358-4678-9a86-7a42e9b96598" + "08dbd0d3-a603-402b-8b8a-77c6e7a409e3" ], "x-ms-client-request-id": [ - "411646b1-6661-427f-abad-88cf06819d60", - "411646b1-6661-427f-abad-88cf06819d60" + "68f092fb-4a6f-460e-a32b-ed67fc496938", + "68f092fb-4a6f-460e-a32b-ed67fc496938" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5905,16 +6382,16 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1194" ], "x-ms-correlation-request-id": [ - "3d471b4f-d358-4678-9a86-7a42e9b96598" + "08dbd0d3-a603-402b-8b8a-77c6e7a409e3" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T201430Z:3d471b4f-d358-4678-9a86-7a42e9b96598" + "JIOINDIAWEST:20220516T191026Z:08dbd0d3-a603-402b-8b8a-77c6e7a409e3" ], "Date": [ - "Wed, 23 Feb 2022 20:14:30 GMT" + "Mon, 16 May 2022 19:10:25 GMT" ], "Expires": [ "-1" @@ -5927,22 +6404,22 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.RecoveryServices/vaults/PSTestRSVf3c6e251/backupOperations/b1a08927-8d38-49d5-8b09-ba152e5b02c9?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZjNjNmUyNTEvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZmM2M2ZTI1MS9iYWNrdXBPcGVyYXRpb25zL2IxYTA4OTI3LThkMzgtNDlkNS04YjA5LWJhMTUyZTViMDJjOT9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.RecoveryServices/vaults/PSTestRSV972e6a32/backupOperations/0c410e65-be2a-414d-a58b-666673606d76?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTcyZTZhMzIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5NzJlNmEzMi9iYWNrdXBPcGVyYXRpb25zLzBjNDEwZTY1LWJlMmEtNDE0ZC1hNThiLTY2NjY3MzYwNmQ3Nj9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "411646b1-6661-427f-abad-88cf06819d60" + "68f092fb-4a6f-460e-a32b-ed67fc496938" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -5956,11 +6433,11 @@ "nosniff" ], "x-ms-request-id": [ - "87149dd5-2639-491e-a146-27cbd1144504" + "cd492b8a-b416-464f-ac23-3a68c5efc3e5" ], "x-ms-client-request-id": [ - "411646b1-6661-427f-abad-88cf06819d60", - "411646b1-6661-427f-abad-88cf06819d60" + "68f092fb-4a6f-460e-a32b-ed67fc496938", + "68f092fb-4a6f-460e-a32b-ed67fc496938" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5975,13 +6452,13 @@ "149" ], "x-ms-correlation-request-id": [ - "87149dd5-2639-491e-a146-27cbd1144504" + "cd492b8a-b416-464f-ac23-3a68c5efc3e5" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T201431Z:87149dd5-2639-491e-a146-27cbd1144504" + "JIOINDIAWEST:20220516T191026Z:cd492b8a-b416-464f-ac23-3a68c5efc3e5" ], "Date": [ - "Wed, 23 Feb 2022 20:14:31 GMT" + "Mon, 16 May 2022 19:10:26 GMT" ], "Content-Length": [ "188" @@ -5993,26 +6470,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"b1a08927-8d38-49d5-8b09-ba152e5b02c9\",\r\n \"name\": \"b1a08927-8d38-49d5-8b09-ba152e5b02c9\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-23T20:14:30.3019278Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"0c410e65-be2a-414d-a58b-666673606d76\",\r\n \"name\": \"0c410e65-be2a-414d-a58b-666673606d76\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T19:10:26.0204488Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.RecoveryServices/vaults/PSTestRSVf3c6e251/backupOperations/b1a08927-8d38-49d5-8b09-ba152e5b02c9?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZjNjNmUyNTEvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZmM2M2ZTI1MS9iYWNrdXBPcGVyYXRpb25zL2IxYTA4OTI3LThkMzgtNDlkNS04YjA5LWJhMTUyZTViMDJjOT9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.RecoveryServices/vaults/PSTestRSV972e6a32/backupOperations/0c410e65-be2a-414d-a58b-666673606d76?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTcyZTZhMzIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5NzJlNmEzMi9iYWNrdXBPcGVyYXRpb25zLzBjNDEwZTY1LWJlMmEtNDE0ZC1hNThiLTY2NjY3MzYwNmQ3Nj9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "411646b1-6661-427f-abad-88cf06819d60" + "68f092fb-4a6f-460e-a32b-ed67fc496938" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -6026,11 +6503,11 @@ "nosniff" ], "x-ms-request-id": [ - "0397f8f0-5317-432c-a22a-b952d058b79f" + "b87d16e7-a1f9-4639-8588-20ad9628c680" ], "x-ms-client-request-id": [ - "411646b1-6661-427f-abad-88cf06819d60", - "411646b1-6661-427f-abad-88cf06819d60" + "68f092fb-4a6f-460e-a32b-ed67fc496938", + "68f092fb-4a6f-460e-a32b-ed67fc496938" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6045,13 +6522,13 @@ "148" ], "x-ms-correlation-request-id": [ - "0397f8f0-5317-432c-a22a-b952d058b79f" + "b87d16e7-a1f9-4639-8588-20ad9628c680" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T201436Z:0397f8f0-5317-432c-a22a-b952d058b79f" + "JIOINDIAWEST:20220516T191032Z:b87d16e7-a1f9-4639-8588-20ad9628c680" ], "Date": [ - "Wed, 23 Feb 2022 20:14:36 GMT" + "Mon, 16 May 2022 19:10:31 GMT" ], "Content-Length": [ "188" @@ -6063,26 +6540,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"b1a08927-8d38-49d5-8b09-ba152e5b02c9\",\r\n \"name\": \"b1a08927-8d38-49d5-8b09-ba152e5b02c9\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-23T20:14:30.3019278Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"0c410e65-be2a-414d-a58b-666673606d76\",\r\n \"name\": \"0c410e65-be2a-414d-a58b-666673606d76\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T19:10:26.0204488Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.RecoveryServices/vaults/PSTestRSVf3c6e251/backupOperations/b1a08927-8d38-49d5-8b09-ba152e5b02c9?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZjNjNmUyNTEvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZmM2M2ZTI1MS9iYWNrdXBPcGVyYXRpb25zL2IxYTA4OTI3LThkMzgtNDlkNS04YjA5LWJhMTUyZTViMDJjOT9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.RecoveryServices/vaults/PSTestRSV972e6a32/backupOperations/0c410e65-be2a-414d-a58b-666673606d76?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTcyZTZhMzIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5NzJlNmEzMi9iYWNrdXBPcGVyYXRpb25zLzBjNDEwZTY1LWJlMmEtNDE0ZC1hNThiLTY2NjY3MzYwNmQ3Nj9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "411646b1-6661-427f-abad-88cf06819d60" + "68f092fb-4a6f-460e-a32b-ed67fc496938" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -6096,11 +6573,11 @@ "nosniff" ], "x-ms-request-id": [ - "69106b5a-2931-4a8f-9570-74f12f4b068d" + "43388a65-7917-4bb8-ad77-b50b26d3d640" ], "x-ms-client-request-id": [ - "411646b1-6661-427f-abad-88cf06819d60", - "411646b1-6661-427f-abad-88cf06819d60" + "68f092fb-4a6f-460e-a32b-ed67fc496938", + "68f092fb-4a6f-460e-a32b-ed67fc496938" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6115,13 +6592,13 @@ "147" ], "x-ms-correlation-request-id": [ - "69106b5a-2931-4a8f-9570-74f12f4b068d" + "43388a65-7917-4bb8-ad77-b50b26d3d640" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T201442Z:69106b5a-2931-4a8f-9570-74f12f4b068d" + "JIOINDIAWEST:20220516T191037Z:43388a65-7917-4bb8-ad77-b50b26d3d640" ], "Date": [ - "Wed, 23 Feb 2022 20:14:42 GMT" + "Mon, 16 May 2022 19:10:37 GMT" ], "Content-Length": [ "188" @@ -6133,26 +6610,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"b1a08927-8d38-49d5-8b09-ba152e5b02c9\",\r\n \"name\": \"b1a08927-8d38-49d5-8b09-ba152e5b02c9\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-23T20:14:30.3019278Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"0c410e65-be2a-414d-a58b-666673606d76\",\r\n \"name\": \"0c410e65-be2a-414d-a58b-666673606d76\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T19:10:26.0204488Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.RecoveryServices/vaults/PSTestRSVf3c6e251/backupOperations/b1a08927-8d38-49d5-8b09-ba152e5b02c9?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZjNjNmUyNTEvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZmM2M2ZTI1MS9iYWNrdXBPcGVyYXRpb25zL2IxYTA4OTI3LThkMzgtNDlkNS04YjA5LWJhMTUyZTViMDJjOT9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.RecoveryServices/vaults/PSTestRSV972e6a32/backupOperations/0c410e65-be2a-414d-a58b-666673606d76?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTcyZTZhMzIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5NzJlNmEzMi9iYWNrdXBPcGVyYXRpb25zLzBjNDEwZTY1LWJlMmEtNDE0ZC1hNThiLTY2NjY3MzYwNmQ3Nj9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "411646b1-6661-427f-abad-88cf06819d60" + "68f092fb-4a6f-460e-a32b-ed67fc496938" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -6166,11 +6643,11 @@ "nosniff" ], "x-ms-request-id": [ - "559defa5-2f00-4f8f-925c-b1f8dfcca5b1" + "afa6bdb2-204c-43f4-8119-588717f61e0d" ], "x-ms-client-request-id": [ - "411646b1-6661-427f-abad-88cf06819d60", - "411646b1-6661-427f-abad-88cf06819d60" + "68f092fb-4a6f-460e-a32b-ed67fc496938", + "68f092fb-4a6f-460e-a32b-ed67fc496938" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6185,13 +6662,13 @@ "146" ], "x-ms-correlation-request-id": [ - "559defa5-2f00-4f8f-925c-b1f8dfcca5b1" + "afa6bdb2-204c-43f4-8119-588717f61e0d" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T201447Z:559defa5-2f00-4f8f-925c-b1f8dfcca5b1" + "JIOINDIAWEST:20220516T191043Z:afa6bdb2-204c-43f4-8119-588717f61e0d" ], "Date": [ - "Wed, 23 Feb 2022 20:14:47 GMT" + "Mon, 16 May 2022 19:10:42 GMT" ], "Content-Length": [ "188" @@ -6203,26 +6680,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"b1a08927-8d38-49d5-8b09-ba152e5b02c9\",\r\n \"name\": \"b1a08927-8d38-49d5-8b09-ba152e5b02c9\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-23T20:14:30.3019278Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"0c410e65-be2a-414d-a58b-666673606d76\",\r\n \"name\": \"0c410e65-be2a-414d-a58b-666673606d76\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T19:10:26.0204488Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.RecoveryServices/vaults/PSTestRSVf3c6e251/backupOperations/b1a08927-8d38-49d5-8b09-ba152e5b02c9?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZjNjNmUyNTEvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZmM2M2ZTI1MS9iYWNrdXBPcGVyYXRpb25zL2IxYTA4OTI3LThkMzgtNDlkNS04YjA5LWJhMTUyZTViMDJjOT9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.RecoveryServices/vaults/PSTestRSV972e6a32/backupOperations/0c410e65-be2a-414d-a58b-666673606d76?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTcyZTZhMzIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5NzJlNmEzMi9iYWNrdXBPcGVyYXRpb25zLzBjNDEwZTY1LWJlMmEtNDE0ZC1hNThiLTY2NjY3MzYwNmQ3Nj9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "411646b1-6661-427f-abad-88cf06819d60" + "68f092fb-4a6f-460e-a32b-ed67fc496938" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -6236,11 +6713,11 @@ "nosniff" ], "x-ms-request-id": [ - "447b369a-ad1b-464b-8593-e0f15fbb3eab" + "a4a800ac-9d4b-4e07-b183-fc1fb7dc04f9" ], "x-ms-client-request-id": [ - "411646b1-6661-427f-abad-88cf06819d60", - "411646b1-6661-427f-abad-88cf06819d60" + "68f092fb-4a6f-460e-a32b-ed67fc496938", + "68f092fb-4a6f-460e-a32b-ed67fc496938" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6255,13 +6732,13 @@ "145" ], "x-ms-correlation-request-id": [ - "447b369a-ad1b-464b-8593-e0f15fbb3eab" + "a4a800ac-9d4b-4e07-b183-fc1fb7dc04f9" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T201453Z:447b369a-ad1b-464b-8593-e0f15fbb3eab" + "JIOINDIAWEST:20220516T191048Z:a4a800ac-9d4b-4e07-b183-fc1fb7dc04f9" ], "Date": [ - "Wed, 23 Feb 2022 20:14:53 GMT" + "Mon, 16 May 2022 19:10:47 GMT" ], "Content-Length": [ "188" @@ -6273,26 +6750,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"b1a08927-8d38-49d5-8b09-ba152e5b02c9\",\r\n \"name\": \"b1a08927-8d38-49d5-8b09-ba152e5b02c9\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-23T20:14:30.3019278Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"0c410e65-be2a-414d-a58b-666673606d76\",\r\n \"name\": \"0c410e65-be2a-414d-a58b-666673606d76\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T19:10:26.0204488Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.RecoveryServices/vaults/PSTestRSVf3c6e251/backupOperations/b1a08927-8d38-49d5-8b09-ba152e5b02c9?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZjNjNmUyNTEvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZmM2M2ZTI1MS9iYWNrdXBPcGVyYXRpb25zL2IxYTA4OTI3LThkMzgtNDlkNS04YjA5LWJhMTUyZTViMDJjOT9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.RecoveryServices/vaults/PSTestRSV972e6a32/backupOperations/0c410e65-be2a-414d-a58b-666673606d76?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTcyZTZhMzIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5NzJlNmEzMi9iYWNrdXBPcGVyYXRpb25zLzBjNDEwZTY1LWJlMmEtNDE0ZC1hNThiLTY2NjY3MzYwNmQ3Nj9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "411646b1-6661-427f-abad-88cf06819d60" + "68f092fb-4a6f-460e-a32b-ed67fc496938" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -6306,11 +6783,11 @@ "nosniff" ], "x-ms-request-id": [ - "f2545dd6-1789-428f-9b72-b68fea47620f" + "916f5d10-0d0d-4783-9142-0639d2bb59a1" ], "x-ms-client-request-id": [ - "411646b1-6661-427f-abad-88cf06819d60", - "411646b1-6661-427f-abad-88cf06819d60" + "68f092fb-4a6f-460e-a32b-ed67fc496938", + "68f092fb-4a6f-460e-a32b-ed67fc496938" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6325,13 +6802,13 @@ "144" ], "x-ms-correlation-request-id": [ - "f2545dd6-1789-428f-9b72-b68fea47620f" + "916f5d10-0d0d-4783-9142-0639d2bb59a1" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T201459Z:f2545dd6-1789-428f-9b72-b68fea47620f" + "JIOINDIAWEST:20220516T191054Z:916f5d10-0d0d-4783-9142-0639d2bb59a1" ], "Date": [ - "Wed, 23 Feb 2022 20:14:58 GMT" + "Mon, 16 May 2022 19:10:53 GMT" ], "Content-Length": [ "188" @@ -6343,26 +6820,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"b1a08927-8d38-49d5-8b09-ba152e5b02c9\",\r\n \"name\": \"b1a08927-8d38-49d5-8b09-ba152e5b02c9\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-23T20:14:30.3019278Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"0c410e65-be2a-414d-a58b-666673606d76\",\r\n \"name\": \"0c410e65-be2a-414d-a58b-666673606d76\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T19:10:26.0204488Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.RecoveryServices/vaults/PSTestRSVf3c6e251/backupOperations/b1a08927-8d38-49d5-8b09-ba152e5b02c9?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZjNjNmUyNTEvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZmM2M2ZTI1MS9iYWNrdXBPcGVyYXRpb25zL2IxYTA4OTI3LThkMzgtNDlkNS04YjA5LWJhMTUyZTViMDJjOT9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.RecoveryServices/vaults/PSTestRSV972e6a32/backupOperations/0c410e65-be2a-414d-a58b-666673606d76?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTcyZTZhMzIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5NzJlNmEzMi9iYWNrdXBPcGVyYXRpb25zLzBjNDEwZTY1LWJlMmEtNDE0ZC1hNThiLTY2NjY3MzYwNmQ3Nj9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "411646b1-6661-427f-abad-88cf06819d60" + "68f092fb-4a6f-460e-a32b-ed67fc496938" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -6376,11 +6853,11 @@ "nosniff" ], "x-ms-request-id": [ - "bab01e82-1fd8-49e3-873d-5528149f9f00" + "7b2c531f-d367-4855-ae39-1cda0035d389" ], "x-ms-client-request-id": [ - "411646b1-6661-427f-abad-88cf06819d60", - "411646b1-6661-427f-abad-88cf06819d60" + "68f092fb-4a6f-460e-a32b-ed67fc496938", + "68f092fb-4a6f-460e-a32b-ed67fc496938" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6395,16 +6872,16 @@ "143" ], "x-ms-correlation-request-id": [ - "bab01e82-1fd8-49e3-873d-5528149f9f00" + "7b2c531f-d367-4855-ae39-1cda0035d389" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T201504Z:bab01e82-1fd8-49e3-873d-5528149f9f00" + "JIOINDIAWEST:20220516T191059Z:7b2c531f-d367-4855-ae39-1cda0035d389" ], "Date": [ - "Wed, 23 Feb 2022 20:15:04 GMT" + "Mon, 16 May 2022 19:10:59 GMT" ], "Content-Length": [ - "188" + "304" ], "Content-Type": [ "application/json" @@ -6413,26 +6890,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"b1a08927-8d38-49d5-8b09-ba152e5b02c9\",\r\n \"name\": \"b1a08927-8d38-49d5-8b09-ba152e5b02c9\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-23T20:14:30.3019278Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"0c410e65-be2a-414d-a58b-666673606d76\",\r\n \"name\": \"0c410e65-be2a-414d-a58b-666673606d76\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-05-16T19:10:26.0204488Z\",\r\n \"endTime\": \"2022-05-16T19:10:26.0204488Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"d7958ccc-4f1c-424d-b45f-fc87857e5985\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.RecoveryServices/vaults/PSTestRSVf3c6e251/backupOperations/b1a08927-8d38-49d5-8b09-ba152e5b02c9?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZjNjNmUyNTEvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZmM2M2ZTI1MS9iYWNrdXBPcGVyYXRpb25zL2IxYTA4OTI3LThkMzgtNDlkNS04YjA5LWJhMTUyZTViMDJjOT9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.RecoveryServices/vaults/PSTestRSV972e6a32/backupOperations/0c410e65-be2a-414d-a58b-666673606d76?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTcyZTZhMzIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5NzJlNmEzMi9iYWNrdXBPcGVyYXRpb25zLzBjNDEwZTY1LWJlMmEtNDE0ZC1hNThiLTY2NjY3MzYwNmQ3Nj9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "411646b1-6661-427f-abad-88cf06819d60" + "68f092fb-4a6f-460e-a32b-ed67fc496938" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -6446,11 +6923,11 @@ "nosniff" ], "x-ms-request-id": [ - "9efa27bf-ffc7-4616-938b-283b93c5e8e3" + "2b23abba-31e8-410c-91ed-e72d5ae11fdf" ], "x-ms-client-request-id": [ - "411646b1-6661-427f-abad-88cf06819d60", - "411646b1-6661-427f-abad-88cf06819d60" + "68f092fb-4a6f-460e-a32b-ed67fc496938", + "68f092fb-4a6f-460e-a32b-ed67fc496938" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6465,16 +6942,87 @@ "142" ], "x-ms-correlation-request-id": [ - "9efa27bf-ffc7-4616-938b-283b93c5e8e3" + "2b23abba-31e8-410c-91ed-e72d5ae11fdf" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T201510Z:9efa27bf-ffc7-4616-938b-283b93c5e8e3" + "JIOINDIAWEST:20220516T191100Z:2b23abba-31e8-410c-91ed-e72d5ae11fdf" ], "Date": [ - "Wed, 23 Feb 2022 20:15:09 GMT" + "Mon, 16 May 2022 19:11:00 GMT" ], "Content-Length": [ - "188" + "304" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"0c410e65-be2a-414d-a58b-666673606d76\",\r\n \"name\": \"0c410e65-be2a-414d-a58b-666673606d76\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-05-16T19:10:26.0204488Z\",\r\n \"endTime\": \"2022-05-16T19:10:26.0204488Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"d7958ccc-4f1c-424d-b45f-fc87857e5985\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.RecoveryServices/vaults/PSTestRSV972e6a32/backupJobs/d7958ccc-4f1c-424d-b45f-fc87857e5985?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTcyZTZhMzIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5NzJlNmEzMi9iYWNrdXBKb2JzL2Q3OTU4Y2NjLTRmMWMtNDI0ZC1iNDVmLWZjODc4NTdlNTk4NT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "68f092fb-4a6f-460e-a32b-ed67fc496938" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.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": [ + "47f1f0a8-1e2e-4d6d-8b75-ba7b50c330b7" + ], + "x-ms-client-request-id": [ + "68f092fb-4a6f-460e-a32b-ed67fc496938", + "68f092fb-4a6f-460e-a32b-ed67fc496938" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "149" + ], + "x-ms-correlation-request-id": [ + "47f1f0a8-1e2e-4d6d-8b75-ba7b50c330b7" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T191100Z:47f1f0a8-1e2e-4d6d-8b75-ba7b50c330b7" + ], + "Date": [ + "Mon, 16 May 2022 19:11:00 GMT" + ], + "Content-Length": [ + "840" ], "Content-Type": [ "application/json" @@ -6483,26 +7031,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"b1a08927-8d38-49d5-8b09-ba152e5b02c9\",\r\n \"name\": \"b1a08927-8d38-49d5-8b09-ba152e5b02c9\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-23T20:14:30.3019278Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.RecoveryServices/vaults/PSTestRSV972e6a32/backupJobs/d7958ccc-4f1c-424d-b45f-fc87857e5985\",\r\n \"name\": \"d7958ccc-4f1c-424d-b45f-fc87857e5985\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg972e6a32;pstestvm972e61\",\r\n \"duration\": \"PT31.0956553S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm972e61\",\r\n \"Policy Name\": \"DefaultPolicy\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm972e61\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"ConfigureBackup\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-05-16T19:10:26.0204488Z\",\r\n \"endTime\": \"2022-05-16T19:10:57.1161041Z\",\r\n \"activityId\": \"68f092fb-4a6f-460e-a32b-ed67fc496938\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.RecoveryServices/vaults/PSTestRSVf3c6e251/backupOperations/b1a08927-8d38-49d5-8b09-ba152e5b02c9?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZjNjNmUyNTEvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZmM2M2ZTI1MS9iYWNrdXBPcGVyYXRpb25zL2IxYTA4OTI3LThkMzgtNDlkNS04YjA5LWJhMTUyZTViMDJjOT9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.RecoveryServices/vaults/PSTestRSV972e6a32/backupProtectedItems?$filter=backupManagementType%20eq%20'AzureIaasVM'%20and%20itemType%20eq%20'VM'&api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTcyZTZhMzIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5NzJlNmEzMi9iYWNrdXBQcm90ZWN0ZWRJdGVtcz8kZmlsdGVyPWJhY2t1cE1hbmFnZW1lbnRUeXBlJTIwZXElMjAnQXp1cmVJYWFzVk0nJTIwYW5kJTIwaXRlbVR5cGUlMjBlcSUyMCdWTScmYXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "411646b1-6661-427f-abad-88cf06819d60" + "a9feb34b-0742-490d-bcc8-e84307644ae2" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -6516,11 +7064,11 @@ "nosniff" ], "x-ms-request-id": [ - "4416b62b-d130-4ba0-b216-6217b41e5189" + "b4b99d1a-8cd9-402e-a81c-5eb7f80fe9f9" ], "x-ms-client-request-id": [ - "411646b1-6661-427f-abad-88cf06819d60", - "411646b1-6661-427f-abad-88cf06819d60" + "a9feb34b-0742-490d-bcc8-e84307644ae2", + "a9feb34b-0742-490d-bcc8-e84307644ae2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6532,19 +7080,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "141" + "149" ], "x-ms-correlation-request-id": [ - "4416b62b-d130-4ba0-b216-6217b41e5189" + "b4b99d1a-8cd9-402e-a81c-5eb7f80fe9f9" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T201516Z:4416b62b-d130-4ba0-b216-6217b41e5189" + "JIOINDIAWEST:20220516T191101Z:b4b99d1a-8cd9-402e-a81c-5eb7f80fe9f9" ], "Date": [ - "Wed, 23 Feb 2022 20:15:15 GMT" + "Mon, 16 May 2022 19:11:01 GMT" ], "Content-Length": [ - "304" + "1490" ], "Content-Type": [ "application/json" @@ -6553,26 +7101,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"b1a08927-8d38-49d5-8b09-ba152e5b02c9\",\r\n \"name\": \"b1a08927-8d38-49d5-8b09-ba152e5b02c9\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-02-23T20:14:30.3019278Z\",\r\n \"endTime\": \"2022-02-23T20:14:30.3019278Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"865e1ebb-0880-4aa5-acc7-7cd6b8b1b8ee\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.RecoveryServices/vaults/PSTestRSV972e6a32/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrg972e6a32;pstestvm972e61/protectedItems/VM;iaasvmcontainerv2;pstestrg972e6a32;pstestvm972e61\",\r\n \"name\": \"VM;iaasvmcontainerv2;pstestrg972e6a32;pstestvm972e61\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems\",\r\n \"properties\": {\r\n \"kpisHealths\": {},\r\n \"friendlyName\": \"PSTestVM972e61\",\r\n \"virtualMachineId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.Compute/virtualMachines/PSTestVM972e61\",\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\": \"730551022\",\r\n \"protectedItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"workloadType\": \"VM\",\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg972e6a32;pstestvm972e61\",\r\n \"sourceResourceId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.Compute/virtualMachines/PSTestVM972e61\",\r\n \"policyId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.RecoveryServices/vaults/PSTestRSV972e6a32/backupPolicies/DefaultPolicy\",\r\n \"policyName\": \"DefaultPolicy\",\r\n \"isArchiveEnabled\": false\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.RecoveryServices/vaults/PSTestRSVf3c6e251/backupOperations/b1a08927-8d38-49d5-8b09-ba152e5b02c9?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZjNjNmUyNTEvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZmM2M2ZTI1MS9iYWNrdXBPcGVyYXRpb25zL2IxYTA4OTI3LThkMzgtNDlkNS04YjA5LWJhMTUyZTViMDJjOT9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.RecoveryServices/vaults/PSTestRSV972e6a32/backupProtectedItems?$filter=backupManagementType%20eq%20'AzureIaasVM'%20and%20itemType%20eq%20'VM'&api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTcyZTZhMzIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5NzJlNmEzMi9iYWNrdXBQcm90ZWN0ZWRJdGVtcz8kZmlsdGVyPWJhY2t1cE1hbmFnZW1lbnRUeXBlJTIwZXElMjAnQXp1cmVJYWFzVk0nJTIwYW5kJTIwaXRlbVR5cGUlMjBlcSUyMCdWTScmYXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "411646b1-6661-427f-abad-88cf06819d60" + "32dc455b-88f1-4211-815e-0475c179be5d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -6586,11 +7134,11 @@ "nosniff" ], "x-ms-request-id": [ - "f61b5242-bf8e-48d8-88b5-3473a77b4476" + "b71b7f94-590b-49e2-a01e-c64221f9d049" ], "x-ms-client-request-id": [ - "411646b1-6661-427f-abad-88cf06819d60", - "411646b1-6661-427f-abad-88cf06819d60" + "32dc455b-88f1-4211-815e-0475c179be5d", + "32dc455b-88f1-4211-815e-0475c179be5d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6602,19 +7150,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "140" + "148" ], "x-ms-correlation-request-id": [ - "f61b5242-bf8e-48d8-88b5-3473a77b4476" + "b71b7f94-590b-49e2-a01e-c64221f9d049" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T201516Z:f61b5242-bf8e-48d8-88b5-3473a77b4476" + "JIOINDIAWEST:20220516T191145Z:b71b7f94-590b-49e2-a01e-c64221f9d049" ], "Date": [ - "Wed, 23 Feb 2022 20:15:16 GMT" + "Mon, 16 May 2022 19:11:44 GMT" ], "Content-Length": [ - "304" + "2970" ], "Content-Type": [ "application/json" @@ -6623,26 +7171,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"b1a08927-8d38-49d5-8b09-ba152e5b02c9\",\r\n \"name\": \"b1a08927-8d38-49d5-8b09-ba152e5b02c9\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-02-23T20:14:30.3019278Z\",\r\n \"endTime\": \"2022-02-23T20:14:30.3019278Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"865e1ebb-0880-4aa5-acc7-7cd6b8b1b8ee\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.RecoveryServices/vaults/PSTestRSV972e6a32/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrg972e6a32;pstestvm972e61/protectedItems/VM;iaasvmcontainerv2;pstestrg972e6a32;pstestvm972e61\",\r\n \"name\": \"VM;iaasvmcontainerv2;pstestrg972e6a32;pstestvm972e61\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems\",\r\n \"properties\": {\r\n \"kpisHealths\": {},\r\n \"friendlyName\": \"PSTestVM972e61\",\r\n \"virtualMachineId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.Compute/virtualMachines/PSTestVM972e61\",\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\": \"730551022\",\r\n \"protectedItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"workloadType\": \"VM\",\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg972e6a32;pstestvm972e61\",\r\n \"sourceResourceId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.Compute/virtualMachines/PSTestVM972e61\",\r\n \"policyId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.RecoveryServices/vaults/PSTestRSV972e6a32/backupPolicies/DefaultPolicy\",\r\n \"policyName\": \"DefaultPolicy\",\r\n \"isArchiveEnabled\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.RecoveryServices/vaults/PSTestRSV972e6a32/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrg972e6a32;pstestvm972e62/protectedItems/VM;iaasvmcontainerv2;pstestrg972e6a32;pstestvm972e62\",\r\n \"name\": \"VM;iaasvmcontainerv2;pstestrg972e6a32;pstestvm972e62\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems\",\r\n \"properties\": {\r\n \"kpisHealths\": {},\r\n \"friendlyName\": \"PSTestVM972e62\",\r\n \"virtualMachineId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.Compute/virtualMachines/PSTestVM972e62\",\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\": \"1165214441\",\r\n \"protectedItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"workloadType\": \"VM\",\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg972e6a32;pstestvm972e62\",\r\n \"sourceResourceId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.Compute/virtualMachines/PSTestVM972e62\",\r\n \"policyId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.RecoveryServices/vaults/PSTestRSV972e6a32/backupPolicies/DefaultPolicy\",\r\n \"policyName\": \"DefaultPolicy\",\r\n \"isArchiveEnabled\": false\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.RecoveryServices/vaults/PSTestRSVf3c6e251/backupJobs/865e1ebb-0880-4aa5-acc7-7cd6b8b1b8ee?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZjNjNmUyNTEvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZmM2M2ZTI1MS9iYWNrdXBKb2JzLzg2NWUxZWJiLTA4ODAtNGFhNS1hY2M3LTdjZDZiOGIxYjhlZT9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.RecoveryServices/vaults/PSTestRSV972e6a32/backupProtectedItems?$filter=backupManagementType%20eq%20'AzureIaasVM'%20and%20itemType%20eq%20'VM'&api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTcyZTZhMzIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5NzJlNmEzMi9iYWNrdXBQcm90ZWN0ZWRJdGVtcz8kZmlsdGVyPWJhY2t1cE1hbmFnZW1lbnRUeXBlJTIwZXElMjAnQXp1cmVJYWFzVk0nJTIwYW5kJTIwaXRlbVR5cGUlMjBlcSUyMCdWTScmYXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "411646b1-6661-427f-abad-88cf06819d60" + "32cded71-4b47-4aed-8936-c4fec038e65f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -6652,40 +7200,39 @@ "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-IIS/10.0" - ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "bc0b77d7-9a0c-4468-8fe5-a9f0b41391de" + "570a727c-85bc-4e0f-9a31-d6298eaf9eee" ], "x-ms-client-request-id": [ - "411646b1-6661-427f-abad-88cf06819d60", - "411646b1-6661-427f-abad-88cf06819d60" - ], - "X-Powered-By": [ - "ASP.NET" + "32cded71-4b47-4aed-8936-c4fec038e65f", + "32cded71-4b47-4aed-8936-c4fec038e65f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "149" + "147" ], "x-ms-correlation-request-id": [ - "bc0b77d7-9a0c-4468-8fe5-a9f0b41391de" + "570a727c-85bc-4e0f-9a31-d6298eaf9eee" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T201517Z:bc0b77d7-9a0c-4468-8fe5-a9f0b41391de" + "JIOINDIAWEST:20220516T191148Z:570a727c-85bc-4e0f-9a31-d6298eaf9eee" ], "Date": [ - "Wed, 23 Feb 2022 20:15:16 GMT" + "Mon, 16 May 2022 19:11:47 GMT" ], "Content-Length": [ - "840" + "2970" ], "Content-Type": [ "application/json" @@ -6694,26 +7241,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.RecoveryServices/vaults/PSTestRSVf3c6e251/backupJobs/865e1ebb-0880-4aa5-acc7-7cd6b8b1b8ee\",\r\n \"name\": \"865e1ebb-0880-4aa5-acc7-7cd6b8b1b8ee\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgf3c6e251;pstestvmf3c6e1\",\r\n \"duration\": \"PT41.1442691S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvmf3c6e1\",\r\n \"Policy Name\": \"DefaultPolicy\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvmf3c6e1\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"ConfigureBackup\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-02-23T20:14:30.3019278Z\",\r\n \"endTime\": \"2022-02-23T20:15:11.4461969Z\",\r\n \"activityId\": \"411646b1-6661-427f-abad-88cf06819d60\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.RecoveryServices/vaults/PSTestRSV972e6a32/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrg972e6a32;pstestvm972e61/protectedItems/VM;iaasvmcontainerv2;pstestrg972e6a32;pstestvm972e61\",\r\n \"name\": \"VM;iaasvmcontainerv2;pstestrg972e6a32;pstestvm972e61\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems\",\r\n \"properties\": {\r\n \"kpisHealths\": {},\r\n \"friendlyName\": \"PSTestVM972e61\",\r\n \"virtualMachineId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.Compute/virtualMachines/PSTestVM972e61\",\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\": \"730551022\",\r\n \"protectedItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"workloadType\": \"VM\",\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg972e6a32;pstestvm972e61\",\r\n \"sourceResourceId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.Compute/virtualMachines/PSTestVM972e61\",\r\n \"policyId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.RecoveryServices/vaults/PSTestRSV972e6a32/backupPolicies/DefaultPolicy\",\r\n \"policyName\": \"DefaultPolicy\",\r\n \"isArchiveEnabled\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.RecoveryServices/vaults/PSTestRSV972e6a32/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrg972e6a32;pstestvm972e62/protectedItems/VM;iaasvmcontainerv2;pstestrg972e6a32;pstestvm972e62\",\r\n \"name\": \"VM;iaasvmcontainerv2;pstestrg972e6a32;pstestvm972e62\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems\",\r\n \"properties\": {\r\n \"kpisHealths\": {},\r\n \"friendlyName\": \"PSTestVM972e62\",\r\n \"virtualMachineId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.Compute/virtualMachines/PSTestVM972e62\",\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\": \"1165214441\",\r\n \"protectedItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"workloadType\": \"VM\",\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg972e6a32;pstestvm972e62\",\r\n \"sourceResourceId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.Compute/virtualMachines/PSTestVM972e62\",\r\n \"policyId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.RecoveryServices/vaults/PSTestRSV972e6a32/backupPolicies/DefaultPolicy\",\r\n \"policyName\": \"DefaultPolicy\",\r\n \"isArchiveEnabled\": false\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.RecoveryServices/vaults/PSTestRSVf3c6e251/backupProtectedItems?$filter=backupManagementType%20eq%20'AzureIaasVM'%20and%20itemType%20eq%20'VM'&api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZjNjNmUyNTEvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZmM2M2ZTI1MS9iYWNrdXBQcm90ZWN0ZWRJdGVtcz8kZmlsdGVyPWJhY2t1cE1hbmFnZW1lbnRUeXBlJTIwZXElMjAnQXp1cmVJYWFzVk0nJTIwYW5kJTIwaXRlbVR5cGUlMjBlcSUyMCdWTScmYXBpLXZlcnNpb249MjAyMS0xMC0wMQ==", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.RecoveryServices/vaults/PSTestRSV972e6a32/backupProtectedItems?$filter=backupManagementType%20eq%20'AzureIaasVM'%20and%20itemType%20eq%20'VM'&api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTcyZTZhMzIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5NzJlNmEzMi9iYWNrdXBQcm90ZWN0ZWRJdGVtcz8kZmlsdGVyPWJhY2t1cE1hbmFnZW1lbnRUeXBlJTIwZXElMjAnQXp1cmVJYWFzVk0nJTIwYW5kJTIwaXRlbVR5cGUlMjBlcSUyMCdWTScmYXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ca300870-81e5-4b8d-a096-ee7a875a58c3" + "15fd705b-3539-464a-a58a-4900a7a868b3" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -6727,11 +7274,11 @@ "nosniff" ], "x-ms-request-id": [ - "c6a43f6d-2ae4-477c-b484-06b69cab74e2" + "979703f0-3851-428a-bdc8-c09b8e6eca7a" ], "x-ms-client-request-id": [ - "ca300870-81e5-4b8d-a096-ee7a875a58c3", - "ca300870-81e5-4b8d-a096-ee7a875a58c3" + "15fd705b-3539-464a-a58a-4900a7a868b3", + "15fd705b-3539-464a-a58a-4900a7a868b3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6743,16 +7290,16 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "149" + "146" ], "x-ms-correlation-request-id": [ - "c6a43f6d-2ae4-477c-b484-06b69cab74e2" + "979703f0-3851-428a-bdc8-c09b8e6eca7a" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T201518Z:c6a43f6d-2ae4-477c-b484-06b69cab74e2" + "JIOINDIAWEST:20220516T191347Z:979703f0-3851-428a-bdc8-c09b8e6eca7a" ], "Date": [ - "Wed, 23 Feb 2022 20:15:17 GMT" + "Mon, 16 May 2022 19:13:47 GMT" ], "Content-Length": [ "1491" @@ -6764,26 +7311,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.RecoveryServices/vaults/PSTestRSVf3c6e251/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrgf3c6e251;pstestvmf3c6e1/protectedItems/VM;iaasvmcontainerv2;pstestrgf3c6e251;pstestvmf3c6e1\",\r\n \"name\": \"VM;iaasvmcontainerv2;pstestrgf3c6e251;pstestvmf3c6e1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems\",\r\n \"properties\": {\r\n \"kpisHealths\": {},\r\n \"friendlyName\": \"PSTestVMf3c6e1\",\r\n \"virtualMachineId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.Compute/virtualMachines/PSTestVMf3c6e1\",\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\": \"1041415227\",\r\n \"protectedItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"workloadType\": \"VM\",\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgf3c6e251;pstestvmf3c6e1\",\r\n \"sourceResourceId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.Compute/virtualMachines/PSTestVMf3c6e1\",\r\n \"policyId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.RecoveryServices/vaults/PSTestRSVf3c6e251/backupPolicies/DefaultPolicy\",\r\n \"policyName\": \"DefaultPolicy\",\r\n \"isArchiveEnabled\": false\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.RecoveryServices/vaults/PSTestRSV972e6a32/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrg972e6a32;pstestvm972e62/protectedItems/VM;iaasvmcontainerv2;pstestrg972e6a32;pstestvm972e62\",\r\n \"name\": \"VM;iaasvmcontainerv2;pstestrg972e6a32;pstestvm972e62\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems\",\r\n \"properties\": {\r\n \"kpisHealths\": {},\r\n \"friendlyName\": \"PSTestVM972e62\",\r\n \"virtualMachineId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.Compute/virtualMachines/PSTestVM972e62\",\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\": \"1165214441\",\r\n \"protectedItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"workloadType\": \"VM\",\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg972e6a32;pstestvm972e62\",\r\n \"sourceResourceId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.Compute/virtualMachines/PSTestVM972e62\",\r\n \"policyId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.RecoveryServices/vaults/PSTestRSV972e6a32/backupPolicies/DefaultPolicy\",\r\n \"policyName\": \"DefaultPolicy\",\r\n \"isArchiveEnabled\": false\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.RecoveryServices/vaults/PSTestRSVf3c6e251/backupProtectedItems?$filter=backupManagementType%20eq%20'AzureIaasVM'%20and%20itemType%20eq%20'VM'&api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZjNjNmUyNTEvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZmM2M2ZTI1MS9iYWNrdXBQcm90ZWN0ZWRJdGVtcz8kZmlsdGVyPWJhY2t1cE1hbmFnZW1lbnRUeXBlJTIwZXElMjAnQXp1cmVJYWFzVk0nJTIwYW5kJTIwaXRlbVR5cGUlMjBlcSUyMCdWTScmYXBpLXZlcnNpb249MjAyMS0xMC0wMQ==", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.RecoveryServices/vaults/PSTestRSV972e6a32/backupFabrics/Azure/protectionContainers/IaasVMContainer%3Biaasvmcontainerv2%3Bpstestrg972e6a32%3Bpstestvm972e61/protectedItems/VM%3Biaasvmcontainerv2%3Bpstestrg972e6a32%3Bpstestvm972e61?$filter=expand%20eq%20'extendedinfo'&api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTcyZTZhMzIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5NzJlNmEzMi9iYWNrdXBGYWJyaWNzL0F6dXJlL3Byb3RlY3Rpb25Db250YWluZXJzL0lhYXNWTUNvbnRhaW5lciUzQmlhYXN2bWNvbnRhaW5lcnYyJTNCcHN0ZXN0cmc5NzJlNmEzMiUzQnBzdGVzdHZtOTcyZTYxL3Byb3RlY3RlZEl0ZW1zL1ZNJTNCaWFhc3ZtY29udGFpbmVydjIlM0Jwc3Rlc3RyZzk3MmU2YTMyJTNCcHN0ZXN0dm05NzJlNjE/JGZpbHRlcj1leHBhbmQlMjBlcSUyMCdleHRlbmRlZGluZm8nJmFwaS12ZXJzaW9uPTIwMjItMDItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "46646ad9-04ef-49f4-aae7-5890c7f54ade" + "a9feb34b-0742-490d-bcc8-e84307644ae2" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -6797,11 +7344,11 @@ "nosniff" ], "x-ms-request-id": [ - "11453cac-60a6-426c-bfef-bd3c9f72ef41" + "872bfbfe-7a42-405a-9318-eab7e8a1a25e" ], "x-ms-client-request-id": [ - "46646ad9-04ef-49f4-aae7-5890c7f54ade", - "46646ad9-04ef-49f4-aae7-5890c7f54ade" + "a9feb34b-0742-490d-bcc8-e84307644ae2", + "a9feb34b-0742-490d-bcc8-e84307644ae2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6813,19 +7360,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "148" + "149" ], "x-ms-correlation-request-id": [ - "11453cac-60a6-426c-bfef-bd3c9f72ef41" + "872bfbfe-7a42-405a-9318-eab7e8a1a25e" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T201626Z:11453cac-60a6-426c-bfef-bd3c9f72ef41" + "JIOINDIAWEST:20220516T191102Z:872bfbfe-7a42-405a-9318-eab7e8a1a25e" ], "Date": [ - "Wed, 23 Feb 2022 20:16:26 GMT" + "Mon, 16 May 2022 19:11:01 GMT" ], "Content-Length": [ - "2971" + "1545" ], "Content-Type": [ "application/json" @@ -6834,26 +7381,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.RecoveryServices/vaults/PSTestRSVf3c6e251/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrgf3c6e251;pstestvmf3c6e1/protectedItems/VM;iaasvmcontainerv2;pstestrgf3c6e251;pstestvmf3c6e1\",\r\n \"name\": \"VM;iaasvmcontainerv2;pstestrgf3c6e251;pstestvmf3c6e1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems\",\r\n \"properties\": {\r\n \"kpisHealths\": {},\r\n \"friendlyName\": \"PSTestVMf3c6e1\",\r\n \"virtualMachineId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.Compute/virtualMachines/PSTestVMf3c6e1\",\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\": \"1041415227\",\r\n \"protectedItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"workloadType\": \"VM\",\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgf3c6e251;pstestvmf3c6e1\",\r\n \"sourceResourceId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.Compute/virtualMachines/PSTestVMf3c6e1\",\r\n \"policyId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.RecoveryServices/vaults/PSTestRSVf3c6e251/backupPolicies/DefaultPolicy\",\r\n \"policyName\": \"DefaultPolicy\",\r\n \"isArchiveEnabled\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.RecoveryServices/vaults/PSTestRSVf3c6e251/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrgf3c6e251;pstestvmf3c6e2/protectedItems/VM;iaasvmcontainerv2;pstestrgf3c6e251;pstestvmf3c6e2\",\r\n \"name\": \"VM;iaasvmcontainerv2;pstestrgf3c6e251;pstestvmf3c6e2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems\",\r\n \"properties\": {\r\n \"kpisHealths\": {},\r\n \"friendlyName\": \"PSTestVMf3c6e2\",\r\n \"virtualMachineId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.Compute/virtualMachines/PSTestVMf3c6e2\",\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\": \"1472573603\",\r\n \"protectedItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"workloadType\": \"VM\",\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgf3c6e251;pstestvmf3c6e2\",\r\n \"sourceResourceId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.Compute/virtualMachines/PSTestVMf3c6e2\",\r\n \"policyId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.RecoveryServices/vaults/PSTestRSVf3c6e251/backupPolicies/DefaultPolicy\",\r\n \"policyName\": \"DefaultPolicy\",\r\n \"isArchiveEnabled\": false\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.RecoveryServices/vaults/PSTestRSV972e6a32/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrg972e6a32;pstestvm972e61/protectedItems/VM;iaasvmcontainerv2;pstestrg972e6a32;pstestvm972e61\",\r\n \"name\": \"VM;iaasvmcontainerv2;pstestrg972e6a32;pstestvm972e61\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems\",\r\n \"properties\": {\r\n \"kpisHealths\": {},\r\n \"friendlyName\": \"PSTestVM972e61\",\r\n \"virtualMachineId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.Compute/virtualMachines/PSTestVM972e61\",\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\": \"730551022\",\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;pstestrg972e6a32;pstestvm972e61\",\r\n \"sourceResourceId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.Compute/virtualMachines/PSTestVM972e61\",\r\n \"policyId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.RecoveryServices/vaults/PSTestRSV972e6a32/backupPolicies/DefaultPolicy\",\r\n \"policyName\": \"DefaultPolicy\",\r\n \"isArchiveEnabled\": false\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.RecoveryServices/vaults/PSTestRSVf3c6e251/backupProtectedItems?$filter=backupManagementType%20eq%20'AzureIaasVM'%20and%20itemType%20eq%20'VM'&api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZjNjNmUyNTEvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZmM2M2ZTI1MS9iYWNrdXBQcm90ZWN0ZWRJdGVtcz8kZmlsdGVyPWJhY2t1cE1hbmFnZW1lbnRUeXBlJTIwZXElMjAnQXp1cmVJYWFzVk0nJTIwYW5kJTIwaXRlbVR5cGUlMjBlcSUyMCdWTScmYXBpLXZlcnNpb249MjAyMS0xMC0wMQ==", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.RecoveryServices/vaults/PSTestRSV972e6a32/backupProtectionContainers?$filter=friendlyName%20eq%20'PSTestVM972e62'%20and%20backupManagementType%20eq%20'AzureIaasVM'%20and%20status%20eq%20'Registered'&api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTcyZTZhMzIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5NzJlNmEzMi9iYWNrdXBQcm90ZWN0aW9uQ29udGFpbmVycz8kZmlsdGVyPWZyaWVuZGx5TmFtZSUyMGVxJTIwJ1BTVGVzdFZNOTcyZTYyJyUyMGFuZCUyMGJhY2t1cE1hbmFnZW1lbnRUeXBlJTIwZXElMjAnQXp1cmVJYWFzVk0nJTIwYW5kJTIwc3RhdHVzJTIwZXElMjAnUmVnaXN0ZXJlZCcmYXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "18227c9b-ef68-4417-9281-20e7d233a587" + "cf344d74-2898-4585-a852-2c7487ce5ae5" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -6867,11 +7414,11 @@ "nosniff" ], "x-ms-request-id": [ - "0d01b3ac-717e-481e-8e65-e6f713bfe053" + "bc56e3bd-f33e-40de-a7d7-c878ed344ec3" ], "x-ms-client-request-id": [ - "18227c9b-ef68-4417-9281-20e7d233a587", - "18227c9b-ef68-4417-9281-20e7d233a587" + "cf344d74-2898-4585-a852-2c7487ce5ae5", + "cf344d74-2898-4585-a852-2c7487ce5ae5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6886,16 +7433,16 @@ "147" ], "x-ms-correlation-request-id": [ - "0d01b3ac-717e-481e-8e65-e6f713bfe053" + "bc56e3bd-f33e-40de-a7d7-c878ed344ec3" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T201643Z:0d01b3ac-717e-481e-8e65-e6f713bfe053" + "JIOINDIAWEST:20220516T191107Z:bc56e3bd-f33e-40de-a7d7-c878ed344ec3" ], "Date": [ - "Wed, 23 Feb 2022 20:16:43 GMT" + "Mon, 16 May 2022 19:11:07 GMT" ], "Content-Length": [ - "2971" + "12" ], "Content-Type": [ "application/json" @@ -6904,26 +7451,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.RecoveryServices/vaults/PSTestRSVf3c6e251/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrgf3c6e251;pstestvmf3c6e1/protectedItems/VM;iaasvmcontainerv2;pstestrgf3c6e251;pstestvmf3c6e1\",\r\n \"name\": \"VM;iaasvmcontainerv2;pstestrgf3c6e251;pstestvmf3c6e1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems\",\r\n \"properties\": {\r\n \"kpisHealths\": {},\r\n \"friendlyName\": \"PSTestVMf3c6e1\",\r\n \"virtualMachineId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.Compute/virtualMachines/PSTestVMf3c6e1\",\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\": \"1041415227\",\r\n \"protectedItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"workloadType\": \"VM\",\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgf3c6e251;pstestvmf3c6e1\",\r\n \"sourceResourceId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.Compute/virtualMachines/PSTestVMf3c6e1\",\r\n \"policyId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.RecoveryServices/vaults/PSTestRSVf3c6e251/backupPolicies/DefaultPolicy\",\r\n \"policyName\": \"DefaultPolicy\",\r\n \"isArchiveEnabled\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.RecoveryServices/vaults/PSTestRSVf3c6e251/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrgf3c6e251;pstestvmf3c6e2/protectedItems/VM;iaasvmcontainerv2;pstestrgf3c6e251;pstestvmf3c6e2\",\r\n \"name\": \"VM;iaasvmcontainerv2;pstestrgf3c6e251;pstestvmf3c6e2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems\",\r\n \"properties\": {\r\n \"kpisHealths\": {},\r\n \"friendlyName\": \"PSTestVMf3c6e2\",\r\n \"virtualMachineId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.Compute/virtualMachines/PSTestVMf3c6e2\",\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\": \"1472573603\",\r\n \"protectedItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"workloadType\": \"VM\",\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgf3c6e251;pstestvmf3c6e2\",\r\n \"sourceResourceId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.Compute/virtualMachines/PSTestVMf3c6e2\",\r\n \"policyId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.RecoveryServices/vaults/PSTestRSVf3c6e251/backupPolicies/DefaultPolicy\",\r\n \"policyName\": \"DefaultPolicy\",\r\n \"isArchiveEnabled\": false\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": []\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.RecoveryServices/vaults/PSTestRSVf3c6e251/backupProtectedItems?$filter=backupManagementType%20eq%20'AzureIaasVM'%20and%20itemType%20eq%20'VM'&api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZjNjNmUyNTEvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZmM2M2ZTI1MS9iYWNrdXBQcm90ZWN0ZWRJdGVtcz8kZmlsdGVyPWJhY2t1cE1hbmFnZW1lbnRUeXBlJTIwZXElMjAnQXp1cmVJYWFzVk0nJTIwYW5kJTIwaXRlbVR5cGUlMjBlcSUyMCdWTScmYXBpLXZlcnNpb249MjAyMS0xMC0wMQ==", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.RecoveryServices/vaults/PSTestRSV972e6a32/backupProtectionContainers?$filter=friendlyName%20eq%20'PSTestVM972e62'%20and%20backupManagementType%20eq%20'AzureIaasVM'%20and%20status%20eq%20'Registered'&api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTcyZTZhMzIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5NzJlNmEzMi9iYWNrdXBQcm90ZWN0aW9uQ29udGFpbmVycz8kZmlsdGVyPWZyaWVuZGx5TmFtZSUyMGVxJTIwJ1BTVGVzdFZNOTcyZTYyJyUyMGFuZCUyMGJhY2t1cE1hbmFnZW1lbnRUeXBlJTIwZXElMjAnQXp1cmVJYWFzVk0nJTIwYW5kJTIwc3RhdHVzJTIwZXElMjAnUmVnaXN0ZXJlZCcmYXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "885671b3-436d-4a36-a7b3-135290b7aeea" + "d523ab1d-9eab-4c27-9eb9-c1d11c5dcf2d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -6937,11 +7484,11 @@ "nosniff" ], "x-ms-request-id": [ - "101ac440-802e-43d1-a8db-0031dc563ea3" + "7133842a-357a-45e5-abc3-8da25b651b0e" ], "x-ms-client-request-id": [ - "885671b3-436d-4a36-a7b3-135290b7aeea", - "885671b3-436d-4a36-a7b3-135290b7aeea" + "d523ab1d-9eab-4c27-9eb9-c1d11c5dcf2d", + "d523ab1d-9eab-4c27-9eb9-c1d11c5dcf2d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6956,16 +7503,16 @@ "146" ], "x-ms-correlation-request-id": [ - "101ac440-802e-43d1-a8db-0031dc563ea3" + "7133842a-357a-45e5-abc3-8da25b651b0e" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T201839Z:101ac440-802e-43d1-a8db-0031dc563ea3" + "JIOINDIAWEST:20220516T191144Z:7133842a-357a-45e5-abc3-8da25b651b0e" ], "Date": [ - "Wed, 23 Feb 2022 20:18:39 GMT" + "Mon, 16 May 2022 19:11:44 GMT" ], "Content-Length": [ - "1491" + "914" ], "Content-Type": [ "application/json" @@ -6974,26 +7521,105 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.RecoveryServices/vaults/PSTestRSVf3c6e251/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrgf3c6e251;pstestvmf3c6e2/protectedItems/VM;iaasvmcontainerv2;pstestrgf3c6e251;pstestvmf3c6e2\",\r\n \"name\": \"VM;iaasvmcontainerv2;pstestrgf3c6e251;pstestvmf3c6e2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems\",\r\n \"properties\": {\r\n \"kpisHealths\": {},\r\n \"friendlyName\": \"PSTestVMf3c6e2\",\r\n \"virtualMachineId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.Compute/virtualMachines/PSTestVMf3c6e2\",\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\": \"1472573603\",\r\n \"protectedItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"workloadType\": \"VM\",\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgf3c6e251;pstestvmf3c6e2\",\r\n \"sourceResourceId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.Compute/virtualMachines/PSTestVMf3c6e2\",\r\n \"policyId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.RecoveryServices/vaults/PSTestRSVf3c6e251/backupPolicies/DefaultPolicy\",\r\n \"policyName\": \"DefaultPolicy\",\r\n \"isArchiveEnabled\": false\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.RecoveryServices/vaults/PSTestRSV972e6a32/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrg972e6a32;pstestvm972e62\",\r\n \"name\": \"IaasVMContainer;iaasvmcontainerv2;pstestrg972e6a32;pstestvm972e62\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers\",\r\n \"properties\": {\r\n \"virtualMachineId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.Compute/virtualMachines/PSTestVM972e62\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"resourceGroup\": \"PSTestRG972e6a32\",\r\n \"friendlyName\": \"PSTestVM972e62\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.RecoveryServices/vaults/PSTestRSVf3c6e251/backupFabrics/Azure/protectionContainers/IaasVMContainer%3Biaasvmcontainerv2%3Bpstestrgf3c6e251%3Bpstestvmf3c6e1/protectedItems/VM%3Biaasvmcontainerv2%3Bpstestrgf3c6e251%3Bpstestvmf3c6e1?$filter=expand%20eq%20'extendedinfo'&api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZjNjNmUyNTEvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZmM2M2ZTI1MS9iYWNrdXBGYWJyaWNzL0F6dXJlL3Byb3RlY3Rpb25Db250YWluZXJzL0lhYXNWTUNvbnRhaW5lciUzQmlhYXN2bWNvbnRhaW5lcnYyJTNCcHN0ZXN0cmdmM2M2ZTI1MSUzQnBzdGVzdHZtZjNjNmUxL3Byb3RlY3RlZEl0ZW1zL1ZNJTNCaWFhc3ZtY29udGFpbmVydjIlM0Jwc3Rlc3RyZ2YzYzZlMjUxJTNCcHN0ZXN0dm1mM2M2ZTE/JGZpbHRlcj1leHBhbmQlMjBlcSUyMCdleHRlbmRlZGluZm8nJmFwaS12ZXJzaW9uPTIwMjEtMTAtMDE=", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.RecoveryServices/vaults/PSTestRSV972e6a32/backupFabrics/Azure/protectionContainers/IaasVMContainer%3Biaasvmcontainerv2%3Bpstestrg972e6a32%3Bpstestvm972e62/protectedItems/vm%3Biaasvmcontainerv2%3Bpstestrg972e6a32%3Bpstestvm972e62?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTcyZTZhMzIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5NzJlNmEzMi9iYWNrdXBGYWJyaWNzL0F6dXJlL3Byb3RlY3Rpb25Db250YWluZXJzL0lhYXNWTUNvbnRhaW5lciUzQmlhYXN2bWNvbnRhaW5lcnYyJTNCcHN0ZXN0cmc5NzJlNmEzMiUzQnBzdGVzdHZtOTcyZTYyL3Byb3RlY3RlZEl0ZW1zL3ZtJTNCaWFhc3ZtY29udGFpbmVydjIlM0Jwc3Rlc3RyZzk3MmU2YTMyJTNCcHN0ZXN0dm05NzJlNjI/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"protectedItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"sourceResourceId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.Compute/virtualMachines/PSTestVM972e62\",\r\n \"policyId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.RecoveryServices/vaults/PSTestRSV972e6a32/backupPolicies/DefaultPolicy\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "603fda82-d973-4911-8222-61c69e9b1f0b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "456" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.RecoveryServices/vaults/PSTestRSV972e6a32/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrg972e6a32;pstestvm972e62/protectedItems/vm;iaasvmcontainerv2;pstestrg972e6a32;pstestvm972e62/operationResults/72fa1187-a9a3-417b-83ad-10446ab1dbe1?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.RecoveryServices/vaults/PSTestRSV972e6a32/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrg972e6a32;pstestvm972e62/protectedItems/vm;iaasvmcontainerv2;pstestrg972e6a32;pstestvm972e62/operationsStatus/72fa1187-a9a3-417b-83ad-10446ab1dbe1?api-version=2022-02-01" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "4ef9bbd6-7e2e-4081-ba29-7f2aee660246" + ], + "x-ms-client-request-id": [ + "603fda82-d973-4911-8222-61c69e9b1f0b", + "603fda82-d973-4911-8222-61c69e9b1f0b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1193" + ], + "x-ms-correlation-request-id": [ + "4ef9bbd6-7e2e-4081-ba29-7f2aee660246" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T191109Z:4ef9bbd6-7e2e-4081-ba29-7f2aee660246" + ], + "Date": [ + "Mon, 16 May 2022 19:11:09 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.RecoveryServices/vaults/PSTestRSV972e6a32/backupOperations/72fa1187-a9a3-417b-83ad-10446ab1dbe1?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTcyZTZhMzIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5NzJlNmEzMi9iYWNrdXBPcGVyYXRpb25zLzcyZmExMTg3LWE5YTMtNDE3Yi04M2FkLTEwNDQ2YWIxZGJlMT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ca300870-81e5-4b8d-a096-ee7a875a58c3" + "603fda82-d973-4911-8222-61c69e9b1f0b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -7007,11 +7633,11 @@ "nosniff" ], "x-ms-request-id": [ - "b9f732e6-8705-476c-979a-de3f10e18e78" + "ad2069d4-504e-498e-b75c-76f05a0add56" ], "x-ms-client-request-id": [ - "ca300870-81e5-4b8d-a096-ee7a875a58c3", - "ca300870-81e5-4b8d-a096-ee7a875a58c3" + "603fda82-d973-4911-8222-61c69e9b1f0b", + "603fda82-d973-4911-8222-61c69e9b1f0b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -7023,19 +7649,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "149" + "141" ], "x-ms-correlation-request-id": [ - "b9f732e6-8705-476c-979a-de3f10e18e78" + "ad2069d4-504e-498e-b75c-76f05a0add56" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T201519Z:b9f732e6-8705-476c-979a-de3f10e18e78" + "JIOINDIAWEST:20220516T191110Z:ad2069d4-504e-498e-b75c-76f05a0add56" ], "Date": [ - "Wed, 23 Feb 2022 20:15:18 GMT" + "Mon, 16 May 2022 19:11:09 GMT" ], "Content-Length": [ - "1546" + "188" ], "Content-Type": [ "application/json" @@ -7044,26 +7670,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.RecoveryServices/vaults/PSTestRSVf3c6e251/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrgf3c6e251;pstestvmf3c6e1/protectedItems/VM;iaasvmcontainerv2;pstestrgf3c6e251;pstestvmf3c6e1\",\r\n \"name\": \"VM;iaasvmcontainerv2;pstestrgf3c6e251;pstestvmf3c6e1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems\",\r\n \"properties\": {\r\n \"kpisHealths\": {},\r\n \"friendlyName\": \"PSTestVMf3c6e1\",\r\n \"virtualMachineId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.Compute/virtualMachines/PSTestVMf3c6e1\",\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\": \"1041415227\",\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;pstestrgf3c6e251;pstestvmf3c6e1\",\r\n \"sourceResourceId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.Compute/virtualMachines/PSTestVMf3c6e1\",\r\n \"policyId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.RecoveryServices/vaults/PSTestRSVf3c6e251/backupPolicies/DefaultPolicy\",\r\n \"policyName\": \"DefaultPolicy\",\r\n \"isArchiveEnabled\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"72fa1187-a9a3-417b-83ad-10446ab1dbe1\",\r\n \"name\": \"72fa1187-a9a3-417b-83ad-10446ab1dbe1\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T19:11:09.6141214Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.RecoveryServices/vaults/PSTestRSVf3c6e251/backupProtectionContainers?$filter=friendlyName%20eq%20'PSTestVMf3c6e2'%20and%20backupManagementType%20eq%20'AzureIaasVM'%20and%20status%20eq%20'Registered'&api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZjNjNmUyNTEvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZmM2M2ZTI1MS9iYWNrdXBQcm90ZWN0aW9uQ29udGFpbmVycz8kZmlsdGVyPWZyaWVuZGx5TmFtZSUyMGVxJTIwJ1BTVGVzdFZNZjNjNmUyJyUyMGFuZCUyMGJhY2t1cE1hbmFnZW1lbnRUeXBlJTIwZXElMjAnQXp1cmVJYWFzVk0nJTIwYW5kJTIwc3RhdHVzJTIwZXElMjAnUmVnaXN0ZXJlZCcmYXBpLXZlcnNpb249MjAyMS0xMC0wMQ==", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.RecoveryServices/vaults/PSTestRSV972e6a32/backupOperations/72fa1187-a9a3-417b-83ad-10446ab1dbe1?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTcyZTZhMzIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5NzJlNmEzMi9iYWNrdXBPcGVyYXRpb25zLzcyZmExMTg3LWE5YTMtNDE3Yi04M2FkLTEwNDQ2YWIxZGJlMT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "40c861b2-eb56-4dd9-9971-ffea179cb576" + "603fda82-d973-4911-8222-61c69e9b1f0b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -7077,11 +7703,11 @@ "nosniff" ], "x-ms-request-id": [ - "796889b4-ff93-4d88-9e7b-04dd5a2fdfef" + "77fa8d12-0704-4cbe-9b6f-0a475d2673a4" ], "x-ms-client-request-id": [ - "40c861b2-eb56-4dd9-9971-ffea179cb576", - "40c861b2-eb56-4dd9-9971-ffea179cb576" + "603fda82-d973-4911-8222-61c69e9b1f0b", + "603fda82-d973-4911-8222-61c69e9b1f0b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -7093,19 +7719,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "147" + "140" ], "x-ms-correlation-request-id": [ - "796889b4-ff93-4d88-9e7b-04dd5a2fdfef" + "77fa8d12-0704-4cbe-9b6f-0a475d2673a4" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T201524Z:796889b4-ff93-4d88-9e7b-04dd5a2fdfef" + "JIOINDIAWEST:20220516T191115Z:77fa8d12-0704-4cbe-9b6f-0a475d2673a4" ], "Date": [ - "Wed, 23 Feb 2022 20:15:24 GMT" + "Mon, 16 May 2022 19:11:15 GMT" ], "Content-Length": [ - "12" + "188" ], "Content-Type": [ "application/json" @@ -7114,26 +7740,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseBody": "{\r\n \"id\": \"72fa1187-a9a3-417b-83ad-10446ab1dbe1\",\r\n \"name\": \"72fa1187-a9a3-417b-83ad-10446ab1dbe1\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T19:11:09.6141214Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.RecoveryServices/vaults/PSTestRSVf3c6e251/backupProtectionContainers?$filter=friendlyName%20eq%20'PSTestVMf3c6e2'%20and%20backupManagementType%20eq%20'AzureIaasVM'%20and%20status%20eq%20'Registered'&api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZjNjNmUyNTEvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZmM2M2ZTI1MS9iYWNrdXBQcm90ZWN0aW9uQ29udGFpbmVycz8kZmlsdGVyPWZyaWVuZGx5TmFtZSUyMGVxJTIwJ1BTVGVzdFZNZjNjNmUyJyUyMGFuZCUyMGJhY2t1cE1hbmFnZW1lbnRUeXBlJTIwZXElMjAnQXp1cmVJYWFzVk0nJTIwYW5kJTIwc3RhdHVzJTIwZXElMjAnUmVnaXN0ZXJlZCcmYXBpLXZlcnNpb249MjAyMS0xMC0wMQ==", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.RecoveryServices/vaults/PSTestRSV972e6a32/backupOperations/72fa1187-a9a3-417b-83ad-10446ab1dbe1?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTcyZTZhMzIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5NzJlNmEzMi9iYWNrdXBPcGVyYXRpb25zLzcyZmExMTg3LWE5YTMtNDE3Yi04M2FkLTEwNDQ2YWIxZGJlMT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2bf2deeb-8d93-4ee0-a792-2c98b5f77849" + "603fda82-d973-4911-8222-61c69e9b1f0b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -7147,11 +7773,11 @@ "nosniff" ], "x-ms-request-id": [ - "96eeefcf-65a8-4e55-adbb-6ab821bed992" + "953530dc-70a1-4910-bef6-57d95ce732f3" ], "x-ms-client-request-id": [ - "2bf2deeb-8d93-4ee0-a792-2c98b5f77849", - "2bf2deeb-8d93-4ee0-a792-2c98b5f77849" + "603fda82-d973-4911-8222-61c69e9b1f0b", + "603fda82-d973-4911-8222-61c69e9b1f0b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -7163,19 +7789,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "146" + "139" ], "x-ms-correlation-request-id": [ - "96eeefcf-65a8-4e55-adbb-6ab821bed992" + "953530dc-70a1-4910-bef6-57d95ce732f3" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T201625Z:96eeefcf-65a8-4e55-adbb-6ab821bed992" + "JIOINDIAWEST:20220516T191121Z:953530dc-70a1-4910-bef6-57d95ce732f3" ], "Date": [ - "Wed, 23 Feb 2022 20:16:24 GMT" + "Mon, 16 May 2022 19:11:20 GMT" ], "Content-Length": [ - "914" + "188" ], "Content-Type": [ "application/json" @@ -7184,32 +7810,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.RecoveryServices/vaults/PSTestRSVf3c6e251/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrgf3c6e251;pstestvmf3c6e2\",\r\n \"name\": \"IaasVMContainer;iaasvmcontainerv2;pstestrgf3c6e251;pstestvmf3c6e2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers\",\r\n \"properties\": {\r\n \"virtualMachineId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.Compute/virtualMachines/PSTestVMf3c6e2\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"resourceGroup\": \"PSTestRGf3c6e251\",\r\n \"friendlyName\": \"PSTestVMf3c6e2\",\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}", + "ResponseBody": "{\r\n \"id\": \"72fa1187-a9a3-417b-83ad-10446ab1dbe1\",\r\n \"name\": \"72fa1187-a9a3-417b-83ad-10446ab1dbe1\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T19:11:09.6141214Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.RecoveryServices/vaults/PSTestRSVf3c6e251/backupFabrics/Azure/protectionContainers/IaasVMContainer%3Biaasvmcontainerv2%3Bpstestrgf3c6e251%3Bpstestvmf3c6e2/protectedItems/vm%3Biaasvmcontainerv2%3Bpstestrgf3c6e251%3Bpstestvmf3c6e2?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZjNjNmUyNTEvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZmM2M2ZTI1MS9iYWNrdXBGYWJyaWNzL0F6dXJlL3Byb3RlY3Rpb25Db250YWluZXJzL0lhYXNWTUNvbnRhaW5lciUzQmlhYXN2bWNvbnRhaW5lcnYyJTNCcHN0ZXN0cmdmM2M2ZTI1MSUzQnBzdGVzdHZtZjNjNmUyL3Byb3RlY3RlZEl0ZW1zL3ZtJTNCaWFhc3ZtY29udGFpbmVydjIlM0Jwc3Rlc3RyZ2YzYzZlMjUxJTNCcHN0ZXN0dm1mM2M2ZTI/YXBpLXZlcnNpb249MjAyMS0xMC0wMQ==", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"protectedItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"sourceResourceId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.Compute/virtualMachines/PSTestVMf3c6e2\",\r\n \"policyId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.RecoveryServices/vaults/PSTestRSVf3c6e251/backupPolicies/DefaultPolicy\"\r\n }\r\n}", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.RecoveryServices/vaults/PSTestRSV972e6a32/backupOperations/72fa1187-a9a3-417b-83ad-10446ab1dbe1?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTcyZTZhMzIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5NzJlNmEzMi9iYWNrdXBPcGVyYXRpb25zLzcyZmExMTg3LWE5YTMtNDE3Yi04M2FkLTEwNDQ2YWIxZGJlMT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1ce4cd29-4bc5-4017-8486-b8148c8f818f" + "603fda82-d973-4911-8222-61c69e9b1f0b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "456" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -7219,70 +7839,67 @@ "Pragma": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.RecoveryServices/vaults/PSTestRSVf3c6e251/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrgf3c6e251;pstestvmf3c6e2/protectedItems/vm;iaasvmcontainerv2;pstestrgf3c6e251;pstestvmf3c6e2/operationResults/6037e6d1-da84-4997-a72c-2b141056f495?api-version=2021-10-01" - ], - "Retry-After": [ - "60" - ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.RecoveryServices/vaults/PSTestRSVf3c6e251/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrgf3c6e251;pstestvmf3c6e2/protectedItems/vm;iaasvmcontainerv2;pstestrgf3c6e251;pstestvmf3c6e2/operationsStatus/6037e6d1-da84-4997-a72c-2b141056f495?api-version=2021-10-01" - ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "03f3cc04-afae-4bfc-ac90-9b70c6692a11" + "8c46939d-d180-4ffc-be82-b14c925c3b6c" ], "x-ms-client-request-id": [ - "1ce4cd29-4bc5-4017-8486-b8148c8f818f", - "1ce4cd29-4bc5-4017-8486-b8148c8f818f" + "603fda82-d973-4911-8222-61c69e9b1f0b", + "603fda82-d973-4911-8222-61c69e9b1f0b" ], "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-ratelimit-remaining-subscription-resource-requests": [ + "138" ], "x-ms-correlation-request-id": [ - "03f3cc04-afae-4bfc-ac90-9b70c6692a11" + "8c46939d-d180-4ffc-be82-b14c925c3b6c" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T201526Z:03f3cc04-afae-4bfc-ac90-9b70c6692a11" + "JIOINDIAWEST:20220516T191126Z:8c46939d-d180-4ffc-be82-b14c925c3b6c" ], "Date": [ - "Wed, 23 Feb 2022 20:15:26 GMT" + "Mon, 16 May 2022 19:11:26 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, - "ResponseBody": "", - "StatusCode": 202 + "ResponseBody": "{\r\n \"id\": \"72fa1187-a9a3-417b-83ad-10446ab1dbe1\",\r\n \"name\": \"72fa1187-a9a3-417b-83ad-10446ab1dbe1\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T19:11:09.6141214Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.RecoveryServices/vaults/PSTestRSVf3c6e251/backupOperations/6037e6d1-da84-4997-a72c-2b141056f495?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZjNjNmUyNTEvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZmM2M2ZTI1MS9iYWNrdXBPcGVyYXRpb25zLzYwMzdlNmQxLWRhODQtNDk5Ny1hNzJjLTJiMTQxMDU2ZjQ5NT9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.RecoveryServices/vaults/PSTestRSV972e6a32/backupOperations/72fa1187-a9a3-417b-83ad-10446ab1dbe1?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTcyZTZhMzIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5NzJlNmEzMi9iYWNrdXBPcGVyYXRpb25zLzcyZmExMTg3LWE5YTMtNDE3Yi04M2FkLTEwNDQ2YWIxZGJlMT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1ce4cd29-4bc5-4017-8486-b8148c8f818f" + "603fda82-d973-4911-8222-61c69e9b1f0b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -7296,11 +7913,11 @@ "nosniff" ], "x-ms-request-id": [ - "325e3c09-64a7-4231-bea5-c53b7bff8a73" + "acada608-9ab0-4e40-ae37-de5211ecd1ec" ], "x-ms-client-request-id": [ - "1ce4cd29-4bc5-4017-8486-b8148c8f818f", - "1ce4cd29-4bc5-4017-8486-b8148c8f818f" + "603fda82-d973-4911-8222-61c69e9b1f0b", + "603fda82-d973-4911-8222-61c69e9b1f0b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -7312,16 +7929,16 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "139" + "137" ], "x-ms-correlation-request-id": [ - "325e3c09-64a7-4231-bea5-c53b7bff8a73" + "acada608-9ab0-4e40-ae37-de5211ecd1ec" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T201527Z:325e3c09-64a7-4231-bea5-c53b7bff8a73" + "JIOINDIAWEST:20220516T191132Z:acada608-9ab0-4e40-ae37-de5211ecd1ec" ], "Date": [ - "Wed, 23 Feb 2022 20:15:26 GMT" + "Mon, 16 May 2022 19:11:31 GMT" ], "Content-Length": [ "188" @@ -7333,26 +7950,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"6037e6d1-da84-4997-a72c-2b141056f495\",\r\n \"name\": \"6037e6d1-da84-4997-a72c-2b141056f495\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-23T20:15:26.6319037Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"72fa1187-a9a3-417b-83ad-10446ab1dbe1\",\r\n \"name\": \"72fa1187-a9a3-417b-83ad-10446ab1dbe1\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T19:11:09.6141214Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.RecoveryServices/vaults/PSTestRSVf3c6e251/backupOperations/6037e6d1-da84-4997-a72c-2b141056f495?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZjNjNmUyNTEvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZmM2M2ZTI1MS9iYWNrdXBPcGVyYXRpb25zLzYwMzdlNmQxLWRhODQtNDk5Ny1hNzJjLTJiMTQxMDU2ZjQ5NT9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.RecoveryServices/vaults/PSTestRSV972e6a32/backupOperations/72fa1187-a9a3-417b-83ad-10446ab1dbe1?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTcyZTZhMzIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5NzJlNmEzMi9iYWNrdXBPcGVyYXRpb25zLzcyZmExMTg3LWE5YTMtNDE3Yi04M2FkLTEwNDQ2YWIxZGJlMT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1ce4cd29-4bc5-4017-8486-b8148c8f818f" + "603fda82-d973-4911-8222-61c69e9b1f0b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -7366,11 +7983,11 @@ "nosniff" ], "x-ms-request-id": [ - "d220e9f7-5ef6-459c-84db-1dfb7288e815" + "cf46e140-ccd2-4b80-83df-2d67ed658e5e" ], "x-ms-client-request-id": [ - "1ce4cd29-4bc5-4017-8486-b8148c8f818f", - "1ce4cd29-4bc5-4017-8486-b8148c8f818f" + "603fda82-d973-4911-8222-61c69e9b1f0b", + "603fda82-d973-4911-8222-61c69e9b1f0b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -7382,16 +7999,16 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "138" + "136" ], "x-ms-correlation-request-id": [ - "d220e9f7-5ef6-459c-84db-1dfb7288e815" + "cf46e140-ccd2-4b80-83df-2d67ed658e5e" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T201532Z:d220e9f7-5ef6-459c-84db-1dfb7288e815" + "JIOINDIAWEST:20220516T191137Z:cf46e140-ccd2-4b80-83df-2d67ed658e5e" ], "Date": [ - "Wed, 23 Feb 2022 20:15:32 GMT" + "Mon, 16 May 2022 19:11:37 GMT" ], "Content-Length": [ "188" @@ -7403,26 +8020,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"6037e6d1-da84-4997-a72c-2b141056f495\",\r\n \"name\": \"6037e6d1-da84-4997-a72c-2b141056f495\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-23T20:15:26.6319037Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"72fa1187-a9a3-417b-83ad-10446ab1dbe1\",\r\n \"name\": \"72fa1187-a9a3-417b-83ad-10446ab1dbe1\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T19:11:09.6141214Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.RecoveryServices/vaults/PSTestRSVf3c6e251/backupOperations/6037e6d1-da84-4997-a72c-2b141056f495?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZjNjNmUyNTEvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZmM2M2ZTI1MS9iYWNrdXBPcGVyYXRpb25zLzYwMzdlNmQxLWRhODQtNDk5Ny1hNzJjLTJiMTQxMDU2ZjQ5NT9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.RecoveryServices/vaults/PSTestRSV972e6a32/backupOperations/72fa1187-a9a3-417b-83ad-10446ab1dbe1?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTcyZTZhMzIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5NzJlNmEzMi9iYWNrdXBPcGVyYXRpb25zLzcyZmExMTg3LWE5YTMtNDE3Yi04M2FkLTEwNDQ2YWIxZGJlMT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1ce4cd29-4bc5-4017-8486-b8148c8f818f" + "603fda82-d973-4911-8222-61c69e9b1f0b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -7436,11 +8053,11 @@ "nosniff" ], "x-ms-request-id": [ - "89c80177-c9b4-4b4a-b766-0a1eb49072ed" + "a3748e2d-18f6-4621-aae3-49b34f6412a8" ], "x-ms-client-request-id": [ - "1ce4cd29-4bc5-4017-8486-b8148c8f818f", - "1ce4cd29-4bc5-4017-8486-b8148c8f818f" + "603fda82-d973-4911-8222-61c69e9b1f0b", + "603fda82-d973-4911-8222-61c69e9b1f0b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -7452,19 +8069,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "137" + "135" ], "x-ms-correlation-request-id": [ - "89c80177-c9b4-4b4a-b766-0a1eb49072ed" + "a3748e2d-18f6-4621-aae3-49b34f6412a8" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T201539Z:89c80177-c9b4-4b4a-b766-0a1eb49072ed" + "JIOINDIAWEST:20220516T191143Z:a3748e2d-18f6-4621-aae3-49b34f6412a8" ], "Date": [ - "Wed, 23 Feb 2022 20:15:38 GMT" + "Mon, 16 May 2022 19:11:42 GMT" ], "Content-Length": [ - "188" + "304" ], "Content-Type": [ "application/json" @@ -7473,26 +8090,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"6037e6d1-da84-4997-a72c-2b141056f495\",\r\n \"name\": \"6037e6d1-da84-4997-a72c-2b141056f495\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-23T20:15:26.6319037Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"72fa1187-a9a3-417b-83ad-10446ab1dbe1\",\r\n \"name\": \"72fa1187-a9a3-417b-83ad-10446ab1dbe1\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-05-16T19:11:09.6141214Z\",\r\n \"endTime\": \"2022-05-16T19:11:09.6141214Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"b7a3d775-71e8-481c-a87c-df12dcd507a1\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.RecoveryServices/vaults/PSTestRSVf3c6e251/backupOperations/6037e6d1-da84-4997-a72c-2b141056f495?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZjNjNmUyNTEvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZmM2M2ZTI1MS9iYWNrdXBPcGVyYXRpb25zLzYwMzdlNmQxLWRhODQtNDk5Ny1hNzJjLTJiMTQxMDU2ZjQ5NT9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.RecoveryServices/vaults/PSTestRSV972e6a32/backupOperations/72fa1187-a9a3-417b-83ad-10446ab1dbe1?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTcyZTZhMzIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5NzJlNmEzMi9iYWNrdXBPcGVyYXRpb25zLzcyZmExMTg3LWE5YTMtNDE3Yi04M2FkLTEwNDQ2YWIxZGJlMT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1ce4cd29-4bc5-4017-8486-b8148c8f818f" + "603fda82-d973-4911-8222-61c69e9b1f0b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -7506,11 +8123,11 @@ "nosniff" ], "x-ms-request-id": [ - "5870f28e-1be3-4a41-812a-5cf50f8b979d" + "dd069e23-d926-4ede-a8bb-2e3390cedbab" ], "x-ms-client-request-id": [ - "1ce4cd29-4bc5-4017-8486-b8148c8f818f", - "1ce4cd29-4bc5-4017-8486-b8148c8f818f" + "603fda82-d973-4911-8222-61c69e9b1f0b", + "603fda82-d973-4911-8222-61c69e9b1f0b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -7522,19 +8139,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "136" + "134" ], "x-ms-correlation-request-id": [ - "5870f28e-1be3-4a41-812a-5cf50f8b979d" + "dd069e23-d926-4ede-a8bb-2e3390cedbab" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T201545Z:5870f28e-1be3-4a41-812a-5cf50f8b979d" + "JIOINDIAWEST:20220516T191143Z:dd069e23-d926-4ede-a8bb-2e3390cedbab" ], "Date": [ - "Wed, 23 Feb 2022 20:15:44 GMT" + "Mon, 16 May 2022 19:11:43 GMT" ], "Content-Length": [ - "188" + "304" ], "Content-Type": [ "application/json" @@ -7543,26 +8160,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"6037e6d1-da84-4997-a72c-2b141056f495\",\r\n \"name\": \"6037e6d1-da84-4997-a72c-2b141056f495\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-23T20:15:26.6319037Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"72fa1187-a9a3-417b-83ad-10446ab1dbe1\",\r\n \"name\": \"72fa1187-a9a3-417b-83ad-10446ab1dbe1\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-05-16T19:11:09.6141214Z\",\r\n \"endTime\": \"2022-05-16T19:11:09.6141214Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"b7a3d775-71e8-481c-a87c-df12dcd507a1\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.RecoveryServices/vaults/PSTestRSVf3c6e251/backupOperations/6037e6d1-da84-4997-a72c-2b141056f495?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZjNjNmUyNTEvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZmM2M2ZTI1MS9iYWNrdXBPcGVyYXRpb25zLzYwMzdlNmQxLWRhODQtNDk5Ny1hNzJjLTJiMTQxMDU2ZjQ5NT9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.RecoveryServices/vaults/PSTestRSV972e6a32/backupJobs/b7a3d775-71e8-481c-a87c-df12dcd507a1?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTcyZTZhMzIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5NzJlNmEzMi9iYWNrdXBKb2JzL2I3YTNkNzc1LTcxZTgtNDgxYy1hODdjLWRmMTJkY2Q1MDdhMT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1ce4cd29-4bc5-4017-8486-b8148c8f818f" + "603fda82-d973-4911-8222-61c69e9b1f0b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -7572,39 +8189,40 @@ "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-IIS/10.0", + "Microsoft-IIS/10.0" + ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "988f56ab-9a9c-4d3c-b85a-f2bbbe84bf1e" + "e2519399-3490-4cee-bcbc-369cac1d95a4" ], "x-ms-client-request-id": [ - "1ce4cd29-4bc5-4017-8486-b8148c8f818f", - "1ce4cd29-4bc5-4017-8486-b8148c8f818f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-IIS/10.0" + "603fda82-d973-4911-8222-61c69e9b1f0b", + "603fda82-d973-4911-8222-61c69e9b1f0b" ], "X-Powered-By": [ "ASP.NET" ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "135" + "148" ], "x-ms-correlation-request-id": [ - "988f56ab-9a9c-4d3c-b85a-f2bbbe84bf1e" + "e2519399-3490-4cee-bcbc-369cac1d95a4" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T201550Z:988f56ab-9a9c-4d3c-b85a-f2bbbe84bf1e" + "JIOINDIAWEST:20220516T191144Z:e2519399-3490-4cee-bcbc-369cac1d95a4" ], "Date": [ - "Wed, 23 Feb 2022 20:15:49 GMT" + "Mon, 16 May 2022 19:11:43 GMT" ], "Content-Length": [ - "188" + "840" ], "Content-Type": [ "application/json" @@ -7613,26 +8231,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"6037e6d1-da84-4997-a72c-2b141056f495\",\r\n \"name\": \"6037e6d1-da84-4997-a72c-2b141056f495\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-23T20:15:26.6319037Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.RecoveryServices/vaults/PSTestRSV972e6a32/backupJobs/b7a3d775-71e8-481c-a87c-df12dcd507a1\",\r\n \"name\": \"b7a3d775-71e8-481c-a87c-df12dcd507a1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg972e6a32;pstestvm972e62\",\r\n \"duration\": \"PT30.8097015S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm972e62\",\r\n \"Policy Name\": \"DefaultPolicy\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm972e62\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"ConfigureBackup\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-05-16T19:11:09.6141214Z\",\r\n \"endTime\": \"2022-05-16T19:11:40.4238229Z\",\r\n \"activityId\": \"603fda82-d973-4911-8222-61c69e9b1f0b\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.RecoveryServices/vaults/PSTestRSVf3c6e251/backupOperations/6037e6d1-da84-4997-a72c-2b141056f495?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZjNjNmUyNTEvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZmM2M2ZTI1MS9iYWNrdXBPcGVyYXRpb25zLzYwMzdlNmQxLWRhODQtNDk5Ny1hNzJjLTJiMTQxMDU2ZjQ5NT9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.RecoveryServices/vaults/PSTestRSV972e6a32/backupFabrics/Azure/protectionContainers/IaasVMContainer%3Biaasvmcontainerv2%3Bpstestrg972e6a32%3Bpstestvm972e62/protectedItems/VM%3Biaasvmcontainerv2%3Bpstestrg972e6a32%3Bpstestvm972e62?$filter=expand%20eq%20'extendedinfo'&api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTcyZTZhMzIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5NzJlNmEzMi9iYWNrdXBGYWJyaWNzL0F6dXJlL3Byb3RlY3Rpb25Db250YWluZXJzL0lhYXNWTUNvbnRhaW5lciUzQmlhYXN2bWNvbnRhaW5lcnYyJTNCcHN0ZXN0cmc5NzJlNmEzMiUzQnBzdGVzdHZtOTcyZTYyL3Byb3RlY3RlZEl0ZW1zL1ZNJTNCaWFhc3ZtY29udGFpbmVydjIlM0Jwc3Rlc3RyZzk3MmU2YTMyJTNCcHN0ZXN0dm05NzJlNjI/JGZpbHRlcj1leHBhbmQlMjBlcSUyMCdleHRlbmRlZGluZm8nJmFwaS12ZXJzaW9uPTIwMjItMDItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1ce4cd29-4bc5-4017-8486-b8148c8f818f" + "32dc455b-88f1-4211-815e-0475c179be5d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -7646,11 +8264,11 @@ "nosniff" ], "x-ms-request-id": [ - "f222aef7-3e80-41eb-a7df-d012ad297321" + "caae640d-55c8-461f-af82-f5f6c9b5190a" ], "x-ms-client-request-id": [ - "1ce4cd29-4bc5-4017-8486-b8148c8f818f", - "1ce4cd29-4bc5-4017-8486-b8148c8f818f" + "32dc455b-88f1-4211-815e-0475c179be5d", + "32dc455b-88f1-4211-815e-0475c179be5d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -7662,19 +8280,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "134" + "148" ], "x-ms-correlation-request-id": [ - "f222aef7-3e80-41eb-a7df-d012ad297321" + "caae640d-55c8-461f-af82-f5f6c9b5190a" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T201556Z:f222aef7-3e80-41eb-a7df-d012ad297321" + "JIOINDIAWEST:20220516T191145Z:caae640d-55c8-461f-af82-f5f6c9b5190a" ], "Date": [ - "Wed, 23 Feb 2022 20:15:55 GMT" + "Mon, 16 May 2022 19:11:45 GMT" ], "Content-Length": [ - "188" + "1546" ], "Content-Type": [ "application/json" @@ -7683,26 +8301,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"6037e6d1-da84-4997-a72c-2b141056f495\",\r\n \"name\": \"6037e6d1-da84-4997-a72c-2b141056f495\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-23T20:15:26.6319037Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.RecoveryServices/vaults/PSTestRSV972e6a32/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrg972e6a32;pstestvm972e62/protectedItems/VM;iaasvmcontainerv2;pstestrg972e6a32;pstestvm972e62\",\r\n \"name\": \"VM;iaasvmcontainerv2;pstestrg972e6a32;pstestvm972e62\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems\",\r\n \"properties\": {\r\n \"kpisHealths\": {},\r\n \"friendlyName\": \"PSTestVM972e62\",\r\n \"virtualMachineId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.Compute/virtualMachines/PSTestVM972e62\",\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\": \"1165214441\",\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;pstestrg972e6a32;pstestvm972e62\",\r\n \"sourceResourceId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.Compute/virtualMachines/PSTestVM972e62\",\r\n \"policyId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.RecoveryServices/vaults/PSTestRSV972e6a32/backupPolicies/DefaultPolicy\",\r\n \"policyName\": \"DefaultPolicy\",\r\n \"isArchiveEnabled\": false\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.RecoveryServices/vaults/PSTestRSVf3c6e251/backupOperations/6037e6d1-da84-4997-a72c-2b141056f495?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZjNjNmUyNTEvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZmM2M2ZTI1MS9iYWNrdXBPcGVyYXRpb25zLzYwMzdlNmQxLWRhODQtNDk5Ny1hNzJjLTJiMTQxMDU2ZjQ5NT9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.RecoveryServices/vaults/PSTestRSV972e6a32/backupJobs?$filter=operation%20eq%20''%20and%20startTime%20eq%20'2022-05-15%2007:11:46%20PM'%20and%20endTime%20eq%20'2022-05-16%2007:11:46%20PM'&api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTcyZTZhMzIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5NzJlNmEzMi9iYWNrdXBKb2JzPyRmaWx0ZXI9b3BlcmF0aW9uJTIwZXElMjAnJyUyMGFuZCUyMHN0YXJ0VGltZSUyMGVxJTIwJzIwMjItMDUtMTUlMjAwNzoxMTo0NiUyMFBNJyUyMGFuZCUyMGVuZFRpbWUlMjBlcSUyMCcyMDIyLTA1LTE2JTIwMDc6MTE6NDYlMjBQTScmYXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1ce4cd29-4bc5-4017-8486-b8148c8f818f" + "c8aa7510-f9a9-450b-b665-6bf1ea962f24" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -7712,39 +8330,40 @@ "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-IIS/10.0", + "Microsoft-IIS/10.0" + ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "af5315fd-d668-424d-ae35-3fffbc3a3b43" + "af67a664-055f-4a6e-b848-71c7bb7e49aa" ], "x-ms-client-request-id": [ - "1ce4cd29-4bc5-4017-8486-b8148c8f818f", - "1ce4cd29-4bc5-4017-8486-b8148c8f818f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-IIS/10.0" + "c8aa7510-f9a9-450b-b665-6bf1ea962f24", + "c8aa7510-f9a9-450b-b665-6bf1ea962f24" ], "X-Powered-By": [ "ASP.NET" ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "133" + "147" ], "x-ms-correlation-request-id": [ - "af5315fd-d668-424d-ae35-3fffbc3a3b43" + "af67a664-055f-4a6e-b848-71c7bb7e49aa" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T201618Z:af5315fd-d668-424d-ae35-3fffbc3a3b43" + "JIOINDIAWEST:20220516T191146Z:af67a664-055f-4a6e-b848-71c7bb7e49aa" ], "Date": [ - "Wed, 23 Feb 2022 20:16:17 GMT" + "Mon, 16 May 2022 19:11:45 GMT" ], "Content-Length": [ - "304" + "1483" ], "Content-Type": [ "application/json" @@ -7753,26 +8372,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"6037e6d1-da84-4997-a72c-2b141056f495\",\r\n \"name\": \"6037e6d1-da84-4997-a72c-2b141056f495\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-02-23T20:15:26.6319037Z\",\r\n \"endTime\": \"2022-02-23T20:15:26.6319037Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"af3e5691-fda8-4496-9a9d-9388ec35b1e0\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.RecoveryServices/vaults/PSTestRSV972e6a32/backupJobs/b7a3d775-71e8-481c-a87c-df12dcd507a1\",\r\n \"name\": \"b7a3d775-71e8-481c-a87c-df12dcd507a1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg972e6a32;pstestvm972e62\",\r\n \"duration\": \"PT30.8097015S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"entityFriendlyName\": \"pstestvm972e62\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"ConfigureBackup\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-05-16T19:11:09.6141214Z\",\r\n \"endTime\": \"2022-05-16T19:11:40.4238229Z\",\r\n \"activityId\": \"603fda82-d973-4911-8222-61c69e9b1f0b\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.RecoveryServices/vaults/PSTestRSV972e6a32/backupJobs/d7958ccc-4f1c-424d-b45f-fc87857e5985\",\r\n \"name\": \"d7958ccc-4f1c-424d-b45f-fc87857e5985\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg972e6a32;pstestvm972e61\",\r\n \"duration\": \"PT31.0956553S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"entityFriendlyName\": \"pstestvm972e61\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"ConfigureBackup\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-05-16T19:10:26.0204488Z\",\r\n \"endTime\": \"2022-05-16T19:10:57.1161041Z\",\r\n \"activityId\": \"68f092fb-4a6f-460e-a32b-ed67fc496938\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.RecoveryServices/vaults/PSTestRSVf3c6e251/backupOperations/6037e6d1-da84-4997-a72c-2b141056f495?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZjNjNmUyNTEvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZmM2M2ZTI1MS9iYWNrdXBPcGVyYXRpb25zLzYwMzdlNmQxLWRhODQtNDk5Ny1hNzJjLTJiMTQxMDU2ZjQ5NT9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.RecoveryServices/vaults?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTcyZTZhMzIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cz9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1ce4cd29-4bc5-4017-8486-b8148c8f818f" + "0efe30e1-366b-4e7f-a1d1-b52290d8307c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesClient/4.3.2.0" ] }, "ResponseHeaders": { @@ -7786,11 +8405,10 @@ "nosniff" ], "x-ms-request-id": [ - "5763554b-b3bb-434f-9994-69453ba4efeb" + "80fbd546-34be-4934-b56b-8bdb74679b01" ], "x-ms-client-request-id": [ - "1ce4cd29-4bc5-4017-8486-b8148c8f818f", - "1ce4cd29-4bc5-4017-8486-b8148c8f818f" + "0efe30e1-366b-4e7f-a1d1-b52290d8307c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -7798,23 +8416,20 @@ "Server": [ "Microsoft-IIS/10.0" ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "132" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11968" ], "x-ms-correlation-request-id": [ - "5763554b-b3bb-434f-9994-69453ba4efeb" + "80fbd546-34be-4934-b56b-8bdb74679b01" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T201624Z:5763554b-b3bb-434f-9994-69453ba4efeb" + "JIOINDIAWEST:20220516T191147Z:80fbd546-34be-4934-b56b-8bdb74679b01" ], "Date": [ - "Wed, 23 Feb 2022 20:16:23 GMT" + "Mon, 16 May 2022 19:11:46 GMT" ], "Content-Length": [ - "304" + "530" ], "Content-Type": [ "application/json" @@ -7823,26 +8438,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"6037e6d1-da84-4997-a72c-2b141056f495\",\r\n \"name\": \"6037e6d1-da84-4997-a72c-2b141056f495\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-02-23T20:15:26.6319037Z\",\r\n \"endTime\": \"2022-02-23T20:15:26.6319037Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"af3e5691-fda8-4496-9a9d-9388ec35b1e0\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"PSTestRSV972e6a32\",\r\n \"etag\": \"W/\\\"datetime'2022-05-16T19%3A10%3A15.4952355Z'\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateEndpointStateForBackup\": \"None\",\r\n \"privateEndpointStateForSiteRecovery\": \"None\",\r\n \"networkSettings\": {\r\n \"publicNetworkAccess\": \"Enabled\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.RecoveryServices/vaults/PSTestRSV972e6a32\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.RecoveryServices/vaults/PSTestRSVf3c6e251/backupJobs/af3e5691-fda8-4496-9a9d-9388ec35b1e0?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZjNjNmUyNTEvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZmM2M2ZTI1MS9iYWNrdXBKb2JzL2FmM2U1NjkxLWZkYTgtNDQ5Ni05YTlkLTkzODhlYzM1YjFlMD9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.RecoveryServices/vaults/PSTestRSV972e6a32/backupProtectionContainers?$filter=backupManagementType%20eq%20'AzureIaasVM'%20and%20status%20eq%20'Registered'&api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTcyZTZhMzIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5NzJlNmEzMi9iYWNrdXBQcm90ZWN0aW9uQ29udGFpbmVycz8kZmlsdGVyPWJhY2t1cE1hbmFnZW1lbnRUeXBlJTIwZXElMjAnQXp1cmVJYWFzVk0nJTIwYW5kJTIwc3RhdHVzJTIwZXElMjAnUmVnaXN0ZXJlZCcmYXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1ce4cd29-4bc5-4017-8486-b8148c8f818f" + "b2b1fd19-3077-41eb-b0d2-9459cf89f45a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -7852,40 +8467,39 @@ "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-IIS/10.0" - ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "65386825-1094-4a75-b547-1eddce341535" + "c2ca8a7f-742b-48e4-a7f7-74833def645a" ], "x-ms-client-request-id": [ - "1ce4cd29-4bc5-4017-8486-b8148c8f818f", - "1ce4cd29-4bc5-4017-8486-b8148c8f818f" - ], - "X-Powered-By": [ - "ASP.NET" + "b2b1fd19-3077-41eb-b0d2-9459cf89f45a", + "b2b1fd19-3077-41eb-b0d2-9459cf89f45a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "148" + "145" ], "x-ms-correlation-request-id": [ - "65386825-1094-4a75-b547-1eddce341535" + "c2ca8a7f-742b-48e4-a7f7-74833def645a" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T201624Z:65386825-1094-4a75-b547-1eddce341535" + "JIOINDIAWEST:20220516T191147Z:c2ca8a7f-742b-48e4-a7f7-74833def645a" ], "Date": [ - "Wed, 23 Feb 2022 20:16:23 GMT" + "Mon, 16 May 2022 19:11:46 GMT" ], "Content-Length": [ - "839" + "1817" ], "Content-Type": [ "application/json" @@ -7894,26 +8508,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.RecoveryServices/vaults/PSTestRSVf3c6e251/backupJobs/af3e5691-fda8-4496-9a9d-9388ec35b1e0\",\r\n \"name\": \"af3e5691-fda8-4496-9a9d-9388ec35b1e0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgf3c6e251;pstestvmf3c6e2\",\r\n \"duration\": \"PT30.6890003S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvmf3c6e2\",\r\n \"Policy Name\": \"DefaultPolicy\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvmf3c6e2\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"ConfigureBackup\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-02-23T20:15:26.6319037Z\",\r\n \"endTime\": \"2022-02-23T20:15:57.320904Z\",\r\n \"activityId\": \"1ce4cd29-4bc5-4017-8486-b8148c8f818f\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.RecoveryServices/vaults/PSTestRSV972e6a32/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrg972e6a32;pstestvm972e61\",\r\n \"name\": \"IaasVMContainer;iaasvmcontainerv2;pstestrg972e6a32;pstestvm972e61\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers\",\r\n \"properties\": {\r\n \"virtualMachineId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.Compute/virtualMachines/PSTestVM972e61\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"resourceGroup\": \"PSTestRG972e6a32\",\r\n \"friendlyName\": \"PSTestVM972e61\",\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 \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.RecoveryServices/vaults/PSTestRSV972e6a32/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrg972e6a32;pstestvm972e62\",\r\n \"name\": \"IaasVMContainer;iaasvmcontainerv2;pstestrg972e6a32;pstestvm972e62\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers\",\r\n \"properties\": {\r\n \"virtualMachineId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.Compute/virtualMachines/PSTestVM972e62\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"resourceGroup\": \"PSTestRG972e6a32\",\r\n \"friendlyName\": \"PSTestVM972e62\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.RecoveryServices/vaults/PSTestRSVf3c6e251/backupFabrics/Azure/protectionContainers/IaasVMContainer%3Biaasvmcontainerv2%3Bpstestrgf3c6e251%3Bpstestvmf3c6e2/protectedItems/VM%3Biaasvmcontainerv2%3Bpstestrgf3c6e251%3Bpstestvmf3c6e2?$filter=expand%20eq%20'extendedinfo'&api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZjNjNmUyNTEvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZmM2M2ZTI1MS9iYWNrdXBGYWJyaWNzL0F6dXJlL3Byb3RlY3Rpb25Db250YWluZXJzL0lhYXNWTUNvbnRhaW5lciUzQmlhYXN2bWNvbnRhaW5lcnYyJTNCcHN0ZXN0cmdmM2M2ZTI1MSUzQnBzdGVzdHZtZjNjNmUyL3Byb3RlY3RlZEl0ZW1zL1ZNJTNCaWFhc3ZtY29udGFpbmVydjIlM0Jwc3Rlc3RyZ2YzYzZlMjUxJTNCcHN0ZXN0dm1mM2M2ZTI/JGZpbHRlcj1leHBhbmQlMjBlcSUyMCdleHRlbmRlZGluZm8nJmFwaS12ZXJzaW9uPTIwMjEtMTAtMDE=", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.RecoveryServices/vaults/PSTestRSV972e6a32/backupFabrics/Azure/protectionContainers/IaasVMContainer%3Biaasvmcontainerv2%3Bpstestrg972e6a32%3Bpstestvm972e61/protectedItems/VM%3Biaasvmcontainerv2%3Bpstestrg972e6a32%3Bpstestvm972e61/recoveryPoints?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTcyZTZhMzIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5NzJlNmEzMi9iYWNrdXBGYWJyaWNzL0F6dXJlL3Byb3RlY3Rpb25Db250YWluZXJzL0lhYXNWTUNvbnRhaW5lciUzQmlhYXN2bWNvbnRhaW5lcnYyJTNCcHN0ZXN0cmc5NzJlNmEzMiUzQnBzdGVzdHZtOTcyZTYxL3Byb3RlY3RlZEl0ZW1zL1ZNJTNCaWFhc3ZtY29udGFpbmVydjIlM0Jwc3Rlc3RyZzk3MmU2YTMyJTNCcHN0ZXN0dm05NzJlNjEvcmVjb3ZlcnlQb2ludHM/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "46646ad9-04ef-49f4-aae7-5890c7f54ade" + "e913adc4-ccb2-4d15-8696-374f3f5b7d0b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -7927,11 +8541,11 @@ "nosniff" ], "x-ms-request-id": [ - "293f6655-7677-4968-adc3-b60878571a54" + "a8a6baad-6433-4b8b-809e-c260221bee6f" ], "x-ms-client-request-id": [ - "46646ad9-04ef-49f4-aae7-5890c7f54ade", - "46646ad9-04ef-49f4-aae7-5890c7f54ade" + "e913adc4-ccb2-4d15-8696-374f3f5b7d0b", + "e913adc4-ccb2-4d15-8696-374f3f5b7d0b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -7943,19 +8557,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "148" + "149" ], "x-ms-correlation-request-id": [ - "293f6655-7677-4968-adc3-b60878571a54" + "a8a6baad-6433-4b8b-809e-c260221bee6f" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T201626Z:293f6655-7677-4968-adc3-b60878571a54" + "JIOINDIAWEST:20220516T191148Z:a8a6baad-6433-4b8b-809e-c260221bee6f" ], "Date": [ - "Wed, 23 Feb 2022 20:16:26 GMT" + "Mon, 16 May 2022 19:11:47 GMT" ], "Content-Length": [ - "1546" + "12" ], "Content-Type": [ "application/json" @@ -7964,26 +8578,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.RecoveryServices/vaults/PSTestRSVf3c6e251/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrgf3c6e251;pstestvmf3c6e2/protectedItems/VM;iaasvmcontainerv2;pstestrgf3c6e251;pstestvmf3c6e2\",\r\n \"name\": \"VM;iaasvmcontainerv2;pstestrgf3c6e251;pstestvmf3c6e2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems\",\r\n \"properties\": {\r\n \"kpisHealths\": {},\r\n \"friendlyName\": \"PSTestVMf3c6e2\",\r\n \"virtualMachineId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.Compute/virtualMachines/PSTestVMf3c6e2\",\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\": \"1472573603\",\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;pstestrgf3c6e251;pstestvmf3c6e2\",\r\n \"sourceResourceId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.Compute/virtualMachines/PSTestVMf3c6e2\",\r\n \"policyId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.RecoveryServices/vaults/PSTestRSVf3c6e251/backupPolicies/DefaultPolicy\",\r\n \"policyName\": \"DefaultPolicy\",\r\n \"isArchiveEnabled\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": []\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.RecoveryServices/vaults/PSTestRSVf3c6e251/backupJobs?$filter=operation%20eq%20''%20and%20startTime%20eq%20'2022-02-22%2008:16:28%20PM'%20and%20endTime%20eq%20'2022-02-23%2008:16:28%20PM'&api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZjNjNmUyNTEvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZmM2M2ZTI1MS9iYWNrdXBKb2JzPyRmaWx0ZXI9b3BlcmF0aW9uJTIwZXElMjAnJyUyMGFuZCUyMHN0YXJ0VGltZSUyMGVxJTIwJzIwMjItMDItMjIlMjAwODoxNjoyOCUyMFBNJyUyMGFuZCUyMGVuZFRpbWUlMjBlcSUyMCcyMDIyLTAyLTIzJTIwMDg6MTY6MjglMjBQTScmYXBpLXZlcnNpb249MjAyMS0xMC0wMQ==", - "RequestMethod": "GET", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.RecoveryServices/vaults/PSTestRSV972e6a32/backupFabrics/Azure/protectionContainers/IaasVMContainer%3Biaasvmcontainerv2%3Bpstestrg972e6a32%3Bpstestvm972e61/protectedItems/VM%3Biaasvmcontainerv2%3Bpstestrg972e6a32%3Bpstestvm972e61?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTcyZTZhMzIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5NzJlNmEzMi9iYWNrdXBGYWJyaWNzL0F6dXJlL3Byb3RlY3Rpb25Db250YWluZXJzL0lhYXNWTUNvbnRhaW5lciUzQmlhYXN2bWNvbnRhaW5lcnYyJTNCcHN0ZXN0cmc5NzJlNmEzMiUzQnBzdGVzdHZtOTcyZTYxL3Byb3RlY3RlZEl0ZW1zL1ZNJTNCaWFhc3ZtY29udGFpbmVydjIlM0Jwc3Rlc3RyZzk3MmU2YTMyJTNCcHN0ZXN0dm05NzJlNjE/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "dfde1e78-e38f-4040-8972-6f268268ffd0" + "e913adc4-ccb2-4d15-8696-374f3f5b7d0b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -7993,68 +8607,70 @@ "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-IIS/10.0" + "Location": [ + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.RecoveryServices/vaults/PSTestRSV972e6a32/backupOperationResults/ed4fbf36-a09b-4d84-860e-5a4befffed79?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.RecoveryServices/vaults/PSTestRSV972e6a32/backupOperations/ed4fbf36-a09b-4d84-860e-5a4befffed79?api-version=2022-02-01" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "3dd01078-6cf6-45d3-8d4d-600dc91ba924" + "b7ae6160-090e-4a77-a16a-c320953d155e" ], "x-ms-client-request-id": [ - "dfde1e78-e38f-4040-8972-6f268268ffd0", - "dfde1e78-e38f-4040-8972-6f268268ffd0" - ], - "X-Powered-By": [ - "ASP.NET" + "e913adc4-ccb2-4d15-8696-374f3f5b7d0b", + "e913adc4-ccb2-4d15-8696-374f3f5b7d0b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "147" + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" ], "x-ms-correlation-request-id": [ - "3dd01078-6cf6-45d3-8d4d-600dc91ba924" + "b7ae6160-090e-4a77-a16a-c320953d155e" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T201639Z:3dd01078-6cf6-45d3-8d4d-600dc91ba924" + "JIOINDIAWEST:20220516T191149Z:b7ae6160-090e-4a77-a16a-c320953d155e" ], "Date": [ - "Wed, 23 Feb 2022 20:16:39 GMT" - ], - "Content-Length": [ - "1482" - ], - "Content-Type": [ - "application/json" + "Mon, 16 May 2022 19:11:49 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.RecoveryServices/vaults/PSTestRSVf3c6e251/backupJobs/af3e5691-fda8-4496-9a9d-9388ec35b1e0\",\r\n \"name\": \"af3e5691-fda8-4496-9a9d-9388ec35b1e0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgf3c6e251;pstestvmf3c6e2\",\r\n \"duration\": \"PT30.6890003S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"entityFriendlyName\": \"pstestvmf3c6e2\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"ConfigureBackup\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-02-23T20:15:26.6319037Z\",\r\n \"endTime\": \"2022-02-23T20:15:57.320904Z\",\r\n \"activityId\": \"1ce4cd29-4bc5-4017-8486-b8148c8f818f\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.RecoveryServices/vaults/PSTestRSVf3c6e251/backupJobs/865e1ebb-0880-4aa5-acc7-7cd6b8b1b8ee\",\r\n \"name\": \"865e1ebb-0880-4aa5-acc7-7cd6b8b1b8ee\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgf3c6e251;pstestvmf3c6e1\",\r\n \"duration\": \"PT41.1442691S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"entityFriendlyName\": \"pstestvmf3c6e1\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"ConfigureBackup\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-02-23T20:14:30.3019278Z\",\r\n \"endTime\": \"2022-02-23T20:15:11.4461969Z\",\r\n \"activityId\": \"411646b1-6661-427f-abad-88cf06819d60\"\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 + "ResponseBody": "", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.RecoveryServices/vaults?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZjNjNmUyNTEvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cz9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.RecoveryServices/vaults/PSTestRSV972e6a32/backupOperations/ed4fbf36-a09b-4d84-860e-5a4befffed79?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTcyZTZhMzIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5NzJlNmEzMi9iYWNrdXBPcGVyYXRpb25zL2VkNGZiZjM2LWEwOWItNGQ4NC04NjBlLTVhNGJlZmZmZWQ3OT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f6dd9ff2-80df-4945-9a70-96e3b4210492" + "e913adc4-ccb2-4d15-8696-374f3f5b7d0b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesClient/4.3.2.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -8068,10 +8684,11 @@ "nosniff" ], "x-ms-request-id": [ - "aa7cf91e-8d36-483f-8344-09e00292970e" + "a9f7e6e0-d11c-456f-8104-9b869a2dc2dd" ], "x-ms-client-request-id": [ - "f6dd9ff2-80df-4945-9a70-96e3b4210492" + "e913adc4-ccb2-4d15-8696-374f3f5b7d0b", + "e913adc4-ccb2-4d15-8696-374f3f5b7d0b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -8079,20 +8696,23 @@ "Server": [ "Microsoft-IIS/10.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "133" ], "x-ms-correlation-request-id": [ - "aa7cf91e-8d36-483f-8344-09e00292970e" + "a9f7e6e0-d11c-456f-8104-9b869a2dc2dd" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T201641Z:aa7cf91e-8d36-483f-8344-09e00292970e" + "JIOINDIAWEST:20220516T191150Z:a9f7e6e0-d11c-456f-8104-9b869a2dc2dd" ], "Date": [ - "Wed, 23 Feb 2022 20:16:41 GMT" + "Mon, 16 May 2022 19:11:49 GMT" ], "Content-Length": [ - "478" + "188" ], "Content-Type": [ "application/json" @@ -8101,26 +8721,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"PSTestRSVf3c6e251\",\r\n \"etag\": \"W/\\\"datetime'2022-02-23T20%3A14%3A17.7931625Z'\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateEndpointStateForBackup\": \"None\",\r\n \"privateEndpointStateForSiteRecovery\": \"None\"\r\n },\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.RecoveryServices/vaults/PSTestRSVf3c6e251\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"ed4fbf36-a09b-4d84-860e-5a4befffed79\",\r\n \"name\": \"ed4fbf36-a09b-4d84-860e-5a4befffed79\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T19:11:49.8345719Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.RecoveryServices/vaults/PSTestRSVf3c6e251/backupProtectionContainers?$filter=backupManagementType%20eq%20'AzureIaasVM'%20and%20status%20eq%20'Registered'&api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZjNjNmUyNTEvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZmM2M2ZTI1MS9iYWNrdXBQcm90ZWN0aW9uQ29udGFpbmVycz8kZmlsdGVyPWJhY2t1cE1hbmFnZW1lbnRUeXBlJTIwZXElMjAnQXp1cmVJYWFzVk0nJTIwYW5kJTIwc3RhdHVzJTIwZXElMjAnUmVnaXN0ZXJlZCcmYXBpLXZlcnNpb249MjAyMS0xMC0wMQ==", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.RecoveryServices/vaults/PSTestRSV972e6a32/backupOperations/ed4fbf36-a09b-4d84-860e-5a4befffed79?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTcyZTZhMzIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5NzJlNmEzMi9iYWNrdXBPcGVyYXRpb25zL2VkNGZiZjM2LWEwOWItNGQ4NC04NjBlLTVhNGJlZmZmZWQ3OT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b0e13932-3fa0-4c1c-beb1-49cf19d512ff" + "e913adc4-ccb2-4d15-8696-374f3f5b7d0b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -8134,11 +8754,11 @@ "nosniff" ], "x-ms-request-id": [ - "c01ad598-ac34-4557-a1be-eedd79a3e94d" + "81b2fd15-351a-427e-b00a-8dc7f7a97d0c" ], "x-ms-client-request-id": [ - "b0e13932-3fa0-4c1c-beb1-49cf19d512ff", - "b0e13932-3fa0-4c1c-beb1-49cf19d512ff" + "e913adc4-ccb2-4d15-8696-374f3f5b7d0b", + "e913adc4-ccb2-4d15-8696-374f3f5b7d0b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -8150,19 +8770,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "145" + "132" ], "x-ms-correlation-request-id": [ - "c01ad598-ac34-4557-a1be-eedd79a3e94d" + "81b2fd15-351a-427e-b00a-8dc7f7a97d0c" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T201642Z:c01ad598-ac34-4557-a1be-eedd79a3e94d" + "JIOINDIAWEST:20220516T191155Z:81b2fd15-351a-427e-b00a-8dc7f7a97d0c" ], "Date": [ - "Wed, 23 Feb 2022 20:16:42 GMT" + "Mon, 16 May 2022 19:11:55 GMT" ], "Content-Length": [ - "1817" + "188" ], "Content-Type": [ "application/json" @@ -8171,26 +8791,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.RecoveryServices/vaults/PSTestRSVf3c6e251/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrgf3c6e251;pstestvmf3c6e1\",\r\n \"name\": \"IaasVMContainer;iaasvmcontainerv2;pstestrgf3c6e251;pstestvmf3c6e1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers\",\r\n \"properties\": {\r\n \"virtualMachineId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.Compute/virtualMachines/PSTestVMf3c6e1\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"resourceGroup\": \"PSTestRGf3c6e251\",\r\n \"friendlyName\": \"PSTestVMf3c6e1\",\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 \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.RecoveryServices/vaults/PSTestRSVf3c6e251/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrgf3c6e251;pstestvmf3c6e2\",\r\n \"name\": \"IaasVMContainer;iaasvmcontainerv2;pstestrgf3c6e251;pstestvmf3c6e2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers\",\r\n \"properties\": {\r\n \"virtualMachineId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.Compute/virtualMachines/PSTestVMf3c6e2\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"resourceGroup\": \"PSTestRGf3c6e251\",\r\n \"friendlyName\": \"PSTestVMf3c6e2\",\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}", + "ResponseBody": "{\r\n \"id\": \"ed4fbf36-a09b-4d84-860e-5a4befffed79\",\r\n \"name\": \"ed4fbf36-a09b-4d84-860e-5a4befffed79\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T19:11:49.8345719Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.RecoveryServices/vaults/PSTestRSVf3c6e251/backupFabrics/Azure/protectionContainers/IaasVMContainer%3Biaasvmcontainerv2%3Bpstestrgf3c6e251%3Bpstestvmf3c6e1/protectedItems/VM%3Biaasvmcontainerv2%3Bpstestrgf3c6e251%3Bpstestvmf3c6e1/recoveryPoints?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZjNjNmUyNTEvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZmM2M2ZTI1MS9iYWNrdXBGYWJyaWNzL0F6dXJlL3Byb3RlY3Rpb25Db250YWluZXJzL0lhYXNWTUNvbnRhaW5lciUzQmlhYXN2bWNvbnRhaW5lcnYyJTNCcHN0ZXN0cmdmM2M2ZTI1MSUzQnBzdGVzdHZtZjNjNmUxL3Byb3RlY3RlZEl0ZW1zL1ZNJTNCaWFhc3ZtY29udGFpbmVydjIlM0Jwc3Rlc3RyZ2YzYzZlMjUxJTNCcHN0ZXN0dm1mM2M2ZTEvcmVjb3ZlcnlQb2ludHM/YXBpLXZlcnNpb249MjAyMS0xMC0wMQ==", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.RecoveryServices/vaults/PSTestRSV972e6a32/backupOperations/ed4fbf36-a09b-4d84-860e-5a4befffed79?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTcyZTZhMzIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5NzJlNmEzMi9iYWNrdXBPcGVyYXRpb25zL2VkNGZiZjM2LWEwOWItNGQ4NC04NjBlLTVhNGJlZmZmZWQ3OT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d45056fe-2679-4aa8-9625-afc2edacbe69" + "e913adc4-ccb2-4d15-8696-374f3f5b7d0b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -8204,11 +8824,11 @@ "nosniff" ], "x-ms-request-id": [ - "dc76afde-c65b-42eb-9e75-a7e71b11e4f8" + "9ec62307-a5ea-4a56-9801-2dd31591e21b" ], "x-ms-client-request-id": [ - "d45056fe-2679-4aa8-9625-afc2edacbe69", - "d45056fe-2679-4aa8-9625-afc2edacbe69" + "e913adc4-ccb2-4d15-8696-374f3f5b7d0b", + "e913adc4-ccb2-4d15-8696-374f3f5b7d0b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -8220,19 +8840,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "149" + "131" ], "x-ms-correlation-request-id": [ - "dc76afde-c65b-42eb-9e75-a7e71b11e4f8" + "9ec62307-a5ea-4a56-9801-2dd31591e21b" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T201643Z:dc76afde-c65b-42eb-9e75-a7e71b11e4f8" + "JIOINDIAWEST:20220516T191201Z:9ec62307-a5ea-4a56-9801-2dd31591e21b" ], "Date": [ - "Wed, 23 Feb 2022 20:16:43 GMT" + "Mon, 16 May 2022 19:12:00 GMT" ], "Content-Length": [ - "12" + "188" ], "Content-Type": [ "application/json" @@ -8241,26 +8861,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseBody": "{\r\n \"id\": \"ed4fbf36-a09b-4d84-860e-5a4befffed79\",\r\n \"name\": \"ed4fbf36-a09b-4d84-860e-5a4befffed79\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T19:11:49.8345719Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.RecoveryServices/vaults/PSTestRSVf3c6e251/backupFabrics/Azure/protectionContainers/IaasVMContainer%3Biaasvmcontainerv2%3Bpstestrgf3c6e251%3Bpstestvmf3c6e1/protectedItems/VM%3Biaasvmcontainerv2%3Bpstestrgf3c6e251%3Bpstestvmf3c6e1?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZjNjNmUyNTEvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZmM2M2ZTI1MS9iYWNrdXBGYWJyaWNzL0F6dXJlL3Byb3RlY3Rpb25Db250YWluZXJzL0lhYXNWTUNvbnRhaW5lciUzQmlhYXN2bWNvbnRhaW5lcnYyJTNCcHN0ZXN0cmdmM2M2ZTI1MSUzQnBzdGVzdHZtZjNjNmUxL3Byb3RlY3RlZEl0ZW1zL1ZNJTNCaWFhc3ZtY29udGFpbmVydjIlM0Jwc3Rlc3RyZ2YzYzZlMjUxJTNCcHN0ZXN0dm1mM2M2ZTE/YXBpLXZlcnNpb249MjAyMS0xMC0wMQ==", - "RequestMethod": "DELETE", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.RecoveryServices/vaults/PSTestRSV972e6a32/backupOperations/ed4fbf36-a09b-4d84-860e-5a4befffed79?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTcyZTZhMzIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5NzJlNmEzMi9iYWNrdXBPcGVyYXRpb25zL2VkNGZiZjM2LWEwOWItNGQ4NC04NjBlLTVhNGJlZmZmZWQ3OT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d45056fe-2679-4aa8-9625-afc2edacbe69" + "e913adc4-ccb2-4d15-8696-374f3f5b7d0b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -8270,70 +8890,67 @@ "Pragma": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.RecoveryServices/vaults/PSTestRSVf3c6e251/backupOperationResults/02212a10-f1e3-4046-b096-c2d305eeb515?api-version=2021-10-01" - ], - "Retry-After": [ - "60" - ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.RecoveryServices/vaults/PSTestRSVf3c6e251/backupOperations/02212a10-f1e3-4046-b096-c2d305eeb515?api-version=2021-10-01" - ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "dcbc1556-3566-47c2-9fba-6dc82392de3c" + "9d9b294b-6f2c-47ec-9672-e24f8651767c" ], "x-ms-client-request-id": [ - "d45056fe-2679-4aa8-9625-afc2edacbe69", - "d45056fe-2679-4aa8-9625-afc2edacbe69" + "e913adc4-ccb2-4d15-8696-374f3f5b7d0b", + "e913adc4-ccb2-4d15-8696-374f3f5b7d0b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-IIS/10.0" + ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ - "14999" + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "130" ], "x-ms-correlation-request-id": [ - "dcbc1556-3566-47c2-9fba-6dc82392de3c" + "9d9b294b-6f2c-47ec-9672-e24f8651767c" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T201644Z:dcbc1556-3566-47c2-9fba-6dc82392de3c" + "JIOINDIAWEST:20220516T191206Z:9d9b294b-6f2c-47ec-9672-e24f8651767c" ], "Date": [ - "Wed, 23 Feb 2022 20:16:44 GMT" + "Mon, 16 May 2022 19:12:05 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, - "ResponseBody": "", - "StatusCode": 202 + "ResponseBody": "{\r\n \"id\": \"ed4fbf36-a09b-4d84-860e-5a4befffed79\",\r\n \"name\": \"ed4fbf36-a09b-4d84-860e-5a4befffed79\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T19:11:49.8345719Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.RecoveryServices/vaults/PSTestRSVf3c6e251/backupOperations/02212a10-f1e3-4046-b096-c2d305eeb515?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZjNjNmUyNTEvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZmM2M2ZTI1MS9iYWNrdXBPcGVyYXRpb25zLzAyMjEyYTEwLWYxZTMtNDA0Ni1iMDk2LWMyZDMwNWVlYjUxNT9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.RecoveryServices/vaults/PSTestRSV972e6a32/backupOperations/ed4fbf36-a09b-4d84-860e-5a4befffed79?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTcyZTZhMzIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5NzJlNmEzMi9iYWNrdXBPcGVyYXRpb25zL2VkNGZiZjM2LWEwOWItNGQ4NC04NjBlLTVhNGJlZmZmZWQ3OT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d45056fe-2679-4aa8-9625-afc2edacbe69" + "e913adc4-ccb2-4d15-8696-374f3f5b7d0b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -8347,11 +8964,11 @@ "nosniff" ], "x-ms-request-id": [ - "02b33cbb-2e1c-4ba6-9f36-ed2352be77b5" + "ccb91017-b5e6-484f-a0db-eb28801bb1ef" ], "x-ms-client-request-id": [ - "d45056fe-2679-4aa8-9625-afc2edacbe69", - "d45056fe-2679-4aa8-9625-afc2edacbe69" + "e913adc4-ccb2-4d15-8696-374f3f5b7d0b", + "e913adc4-ccb2-4d15-8696-374f3f5b7d0b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -8363,19 +8980,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "131" + "129" ], "x-ms-correlation-request-id": [ - "02b33cbb-2e1c-4ba6-9f36-ed2352be77b5" + "ccb91017-b5e6-484f-a0db-eb28801bb1ef" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T201645Z:02b33cbb-2e1c-4ba6-9f36-ed2352be77b5" + "JIOINDIAWEST:20220516T191212Z:ccb91017-b5e6-484f-a0db-eb28801bb1ef" ], "Date": [ - "Wed, 23 Feb 2022 20:16:45 GMT" + "Mon, 16 May 2022 19:12:12 GMT" ], "Content-Length": [ - "187" + "188" ], "Content-Type": [ "application/json" @@ -8384,26 +9001,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"02212a10-f1e3-4046-b096-c2d305eeb515\",\r\n \"name\": \"02212a10-f1e3-4046-b096-c2d305eeb515\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-23T20:16:44.486224Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"ed4fbf36-a09b-4d84-860e-5a4befffed79\",\r\n \"name\": \"ed4fbf36-a09b-4d84-860e-5a4befffed79\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T19:11:49.8345719Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.RecoveryServices/vaults/PSTestRSVf3c6e251/backupOperations/02212a10-f1e3-4046-b096-c2d305eeb515?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZjNjNmUyNTEvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZmM2M2ZTI1MS9iYWNrdXBPcGVyYXRpb25zLzAyMjEyYTEwLWYxZTMtNDA0Ni1iMDk2LWMyZDMwNWVlYjUxNT9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.RecoveryServices/vaults/PSTestRSV972e6a32/backupOperations/ed4fbf36-a09b-4d84-860e-5a4befffed79?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTcyZTZhMzIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5NzJlNmEzMi9iYWNrdXBPcGVyYXRpb25zL2VkNGZiZjM2LWEwOWItNGQ4NC04NjBlLTVhNGJlZmZmZWQ3OT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d45056fe-2679-4aa8-9625-afc2edacbe69" + "e913adc4-ccb2-4d15-8696-374f3f5b7d0b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -8417,11 +9034,11 @@ "nosniff" ], "x-ms-request-id": [ - "e64a718a-8ab7-42bc-bfd0-4937c208b517" + "9351a258-3f05-4ea5-b5c7-e6bb2eb46033" ], "x-ms-client-request-id": [ - "d45056fe-2679-4aa8-9625-afc2edacbe69", - "d45056fe-2679-4aa8-9625-afc2edacbe69" + "e913adc4-ccb2-4d15-8696-374f3f5b7d0b", + "e913adc4-ccb2-4d15-8696-374f3f5b7d0b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -8433,19 +9050,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "130" + "128" ], "x-ms-correlation-request-id": [ - "e64a718a-8ab7-42bc-bfd0-4937c208b517" + "9351a258-3f05-4ea5-b5c7-e6bb2eb46033" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T201652Z:e64a718a-8ab7-42bc-bfd0-4937c208b517" + "JIOINDIAWEST:20220516T191217Z:9351a258-3f05-4ea5-b5c7-e6bb2eb46033" ], "Date": [ - "Wed, 23 Feb 2022 20:16:51 GMT" + "Mon, 16 May 2022 19:12:17 GMT" ], "Content-Length": [ - "187" + "188" ], "Content-Type": [ "application/json" @@ -8454,26 +9071,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"02212a10-f1e3-4046-b096-c2d305eeb515\",\r\n \"name\": \"02212a10-f1e3-4046-b096-c2d305eeb515\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-23T20:16:44.486224Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"ed4fbf36-a09b-4d84-860e-5a4befffed79\",\r\n \"name\": \"ed4fbf36-a09b-4d84-860e-5a4befffed79\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T19:11:49.8345719Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.RecoveryServices/vaults/PSTestRSVf3c6e251/backupOperations/02212a10-f1e3-4046-b096-c2d305eeb515?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZjNjNmUyNTEvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZmM2M2ZTI1MS9iYWNrdXBPcGVyYXRpb25zLzAyMjEyYTEwLWYxZTMtNDA0Ni1iMDk2LWMyZDMwNWVlYjUxNT9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.RecoveryServices/vaults/PSTestRSV972e6a32/backupOperations/ed4fbf36-a09b-4d84-860e-5a4befffed79?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTcyZTZhMzIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5NzJlNmEzMi9iYWNrdXBPcGVyYXRpb25zL2VkNGZiZjM2LWEwOWItNGQ4NC04NjBlLTVhNGJlZmZmZWQ3OT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d45056fe-2679-4aa8-9625-afc2edacbe69" + "e913adc4-ccb2-4d15-8696-374f3f5b7d0b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -8487,11 +9104,11 @@ "nosniff" ], "x-ms-request-id": [ - "eeb7ea52-c040-4a7f-b07f-c43d6bf8d7b7" + "81ebd76d-68d9-45ec-8e3f-043e2bf106bf" ], "x-ms-client-request-id": [ - "d45056fe-2679-4aa8-9625-afc2edacbe69", - "d45056fe-2679-4aa8-9625-afc2edacbe69" + "e913adc4-ccb2-4d15-8696-374f3f5b7d0b", + "e913adc4-ccb2-4d15-8696-374f3f5b7d0b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -8503,19 +9120,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "129" + "127" ], "x-ms-correlation-request-id": [ - "eeb7ea52-c040-4a7f-b07f-c43d6bf8d7b7" + "81ebd76d-68d9-45ec-8e3f-043e2bf106bf" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T201714Z:eeb7ea52-c040-4a7f-b07f-c43d6bf8d7b7" + "JIOINDIAWEST:20220516T191223Z:81ebd76d-68d9-45ec-8e3f-043e2bf106bf" ], "Date": [ - "Wed, 23 Feb 2022 20:17:14 GMT" + "Mon, 16 May 2022 19:12:23 GMT" ], "Content-Length": [ - "187" + "188" ], "Content-Type": [ "application/json" @@ -8524,26 +9141,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"02212a10-f1e3-4046-b096-c2d305eeb515\",\r\n \"name\": \"02212a10-f1e3-4046-b096-c2d305eeb515\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-23T20:16:44.486224Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"ed4fbf36-a09b-4d84-860e-5a4befffed79\",\r\n \"name\": \"ed4fbf36-a09b-4d84-860e-5a4befffed79\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T19:11:49.8345719Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.RecoveryServices/vaults/PSTestRSVf3c6e251/backupOperations/02212a10-f1e3-4046-b096-c2d305eeb515?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZjNjNmUyNTEvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZmM2M2ZTI1MS9iYWNrdXBPcGVyYXRpb25zLzAyMjEyYTEwLWYxZTMtNDA0Ni1iMDk2LWMyZDMwNWVlYjUxNT9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.RecoveryServices/vaults/PSTestRSV972e6a32/backupOperations/ed4fbf36-a09b-4d84-860e-5a4befffed79?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTcyZTZhMzIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5NzJlNmEzMi9iYWNrdXBPcGVyYXRpb25zL2VkNGZiZjM2LWEwOWItNGQ4NC04NjBlLTVhNGJlZmZmZWQ3OT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d45056fe-2679-4aa8-9625-afc2edacbe69" + "e913adc4-ccb2-4d15-8696-374f3f5b7d0b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -8557,11 +9174,11 @@ "nosniff" ], "x-ms-request-id": [ - "93a0e29a-a27a-499f-b0b6-af79c1fdb1c0" + "e0f0a103-a275-4b8f-a90c-f12928413c94" ], "x-ms-client-request-id": [ - "d45056fe-2679-4aa8-9625-afc2edacbe69", - "d45056fe-2679-4aa8-9625-afc2edacbe69" + "e913adc4-ccb2-4d15-8696-374f3f5b7d0b", + "e913adc4-ccb2-4d15-8696-374f3f5b7d0b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -8573,19 +9190,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "128" + "126" ], "x-ms-correlation-request-id": [ - "93a0e29a-a27a-499f-b0b6-af79c1fdb1c0" + "e0f0a103-a275-4b8f-a90c-f12928413c94" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T201720Z:93a0e29a-a27a-499f-b0b6-af79c1fdb1c0" + "JIOINDIAWEST:20220516T191228Z:e0f0a103-a275-4b8f-a90c-f12928413c94" ], "Date": [ - "Wed, 23 Feb 2022 20:17:19 GMT" + "Mon, 16 May 2022 19:12:28 GMT" ], "Content-Length": [ - "187" + "188" ], "Content-Type": [ "application/json" @@ -8594,26 +9211,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"02212a10-f1e3-4046-b096-c2d305eeb515\",\r\n \"name\": \"02212a10-f1e3-4046-b096-c2d305eeb515\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-23T20:16:44.486224Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"ed4fbf36-a09b-4d84-860e-5a4befffed79\",\r\n \"name\": \"ed4fbf36-a09b-4d84-860e-5a4befffed79\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T19:11:49.8345719Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.RecoveryServices/vaults/PSTestRSVf3c6e251/backupOperations/02212a10-f1e3-4046-b096-c2d305eeb515?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZjNjNmUyNTEvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZmM2M2ZTI1MS9iYWNrdXBPcGVyYXRpb25zLzAyMjEyYTEwLWYxZTMtNDA0Ni1iMDk2LWMyZDMwNWVlYjUxNT9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.RecoveryServices/vaults/PSTestRSV972e6a32/backupOperations/ed4fbf36-a09b-4d84-860e-5a4befffed79?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTcyZTZhMzIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5NzJlNmEzMi9iYWNrdXBPcGVyYXRpb25zL2VkNGZiZjM2LWEwOWItNGQ4NC04NjBlLTVhNGJlZmZmZWQ3OT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d45056fe-2679-4aa8-9625-afc2edacbe69" + "e913adc4-ccb2-4d15-8696-374f3f5b7d0b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -8627,11 +9244,11 @@ "nosniff" ], "x-ms-request-id": [ - "2b97eb15-3c88-4fe2-8659-393ed11f1aed" + "b7c1941a-327e-4c4d-b84d-5342089dea01" ], "x-ms-client-request-id": [ - "d45056fe-2679-4aa8-9625-afc2edacbe69", - "d45056fe-2679-4aa8-9625-afc2edacbe69" + "e913adc4-ccb2-4d15-8696-374f3f5b7d0b", + "e913adc4-ccb2-4d15-8696-374f3f5b7d0b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -8643,19 +9260,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "127" + "125" ], "x-ms-correlation-request-id": [ - "2b97eb15-3c88-4fe2-8659-393ed11f1aed" + "b7c1941a-327e-4c4d-b84d-5342089dea01" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T201725Z:2b97eb15-3c88-4fe2-8659-393ed11f1aed" + "JIOINDIAWEST:20220516T191234Z:b7c1941a-327e-4c4d-b84d-5342089dea01" ], "Date": [ - "Wed, 23 Feb 2022 20:17:25 GMT" + "Mon, 16 May 2022 19:12:33 GMT" ], "Content-Length": [ - "187" + "188" ], "Content-Type": [ "application/json" @@ -8664,26 +9281,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"02212a10-f1e3-4046-b096-c2d305eeb515\",\r\n \"name\": \"02212a10-f1e3-4046-b096-c2d305eeb515\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-23T20:16:44.486224Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"ed4fbf36-a09b-4d84-860e-5a4befffed79\",\r\n \"name\": \"ed4fbf36-a09b-4d84-860e-5a4befffed79\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T19:11:49.8345719Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.RecoveryServices/vaults/PSTestRSVf3c6e251/backupOperations/02212a10-f1e3-4046-b096-c2d305eeb515?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZjNjNmUyNTEvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZmM2M2ZTI1MS9iYWNrdXBPcGVyYXRpb25zLzAyMjEyYTEwLWYxZTMtNDA0Ni1iMDk2LWMyZDMwNWVlYjUxNT9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.RecoveryServices/vaults/PSTestRSV972e6a32/backupOperations/ed4fbf36-a09b-4d84-860e-5a4befffed79?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTcyZTZhMzIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5NzJlNmEzMi9iYWNrdXBPcGVyYXRpb25zL2VkNGZiZjM2LWEwOWItNGQ4NC04NjBlLTVhNGJlZmZmZWQ3OT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d45056fe-2679-4aa8-9625-afc2edacbe69" + "e913adc4-ccb2-4d15-8696-374f3f5b7d0b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -8697,11 +9314,11 @@ "nosniff" ], "x-ms-request-id": [ - "38640e70-a935-4619-84aa-583b388c607c" + "f4984ab3-df0d-441d-904b-480a9a15cb45" ], "x-ms-client-request-id": [ - "d45056fe-2679-4aa8-9625-afc2edacbe69", - "d45056fe-2679-4aa8-9625-afc2edacbe69" + "e913adc4-ccb2-4d15-8696-374f3f5b7d0b", + "e913adc4-ccb2-4d15-8696-374f3f5b7d0b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -8713,19 +9330,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "126" + "124" ], "x-ms-correlation-request-id": [ - "38640e70-a935-4619-84aa-583b388c607c" + "f4984ab3-df0d-441d-904b-480a9a15cb45" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T201731Z:38640e70-a935-4619-84aa-583b388c607c" + "JIOINDIAWEST:20220516T191239Z:f4984ab3-df0d-441d-904b-480a9a15cb45" ], "Date": [ - "Wed, 23 Feb 2022 20:17:30 GMT" + "Mon, 16 May 2022 19:12:39 GMT" ], "Content-Length": [ - "187" + "188" ], "Content-Type": [ "application/json" @@ -8734,26 +9351,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"02212a10-f1e3-4046-b096-c2d305eeb515\",\r\n \"name\": \"02212a10-f1e3-4046-b096-c2d305eeb515\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-23T20:16:44.486224Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"ed4fbf36-a09b-4d84-860e-5a4befffed79\",\r\n \"name\": \"ed4fbf36-a09b-4d84-860e-5a4befffed79\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T19:11:49.8345719Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.RecoveryServices/vaults/PSTestRSVf3c6e251/backupOperations/02212a10-f1e3-4046-b096-c2d305eeb515?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZjNjNmUyNTEvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZmM2M2ZTI1MS9iYWNrdXBPcGVyYXRpb25zLzAyMjEyYTEwLWYxZTMtNDA0Ni1iMDk2LWMyZDMwNWVlYjUxNT9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.RecoveryServices/vaults/PSTestRSV972e6a32/backupOperations/ed4fbf36-a09b-4d84-860e-5a4befffed79?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTcyZTZhMzIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5NzJlNmEzMi9iYWNrdXBPcGVyYXRpb25zL2VkNGZiZjM2LWEwOWItNGQ4NC04NjBlLTVhNGJlZmZmZWQ3OT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d45056fe-2679-4aa8-9625-afc2edacbe69" + "e913adc4-ccb2-4d15-8696-374f3f5b7d0b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -8767,11 +9384,11 @@ "nosniff" ], "x-ms-request-id": [ - "cb90fc07-288e-4d9d-93ab-aa11e25b3d54" + "3b6a7909-438a-4f1d-a2a0-25b729465bd8" ], "x-ms-client-request-id": [ - "d45056fe-2679-4aa8-9625-afc2edacbe69", - "d45056fe-2679-4aa8-9625-afc2edacbe69" + "e913adc4-ccb2-4d15-8696-374f3f5b7d0b", + "e913adc4-ccb2-4d15-8696-374f3f5b7d0b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -8783,19 +9400,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "125" + "123" ], "x-ms-correlation-request-id": [ - "cb90fc07-288e-4d9d-93ab-aa11e25b3d54" + "3b6a7909-438a-4f1d-a2a0-25b729465bd8" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T201737Z:cb90fc07-288e-4d9d-93ab-aa11e25b3d54" + "JIOINDIAWEST:20220516T191245Z:3b6a7909-438a-4f1d-a2a0-25b729465bd8" ], "Date": [ - "Wed, 23 Feb 2022 20:17:36 GMT" + "Mon, 16 May 2022 19:12:44 GMT" ], "Content-Length": [ - "187" + "188" ], "Content-Type": [ "application/json" @@ -8804,26 +9421,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"02212a10-f1e3-4046-b096-c2d305eeb515\",\r\n \"name\": \"02212a10-f1e3-4046-b096-c2d305eeb515\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-23T20:16:44.486224Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"ed4fbf36-a09b-4d84-860e-5a4befffed79\",\r\n \"name\": \"ed4fbf36-a09b-4d84-860e-5a4befffed79\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T19:11:49.8345719Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.RecoveryServices/vaults/PSTestRSVf3c6e251/backupOperations/02212a10-f1e3-4046-b096-c2d305eeb515?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZjNjNmUyNTEvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZmM2M2ZTI1MS9iYWNrdXBPcGVyYXRpb25zLzAyMjEyYTEwLWYxZTMtNDA0Ni1iMDk2LWMyZDMwNWVlYjUxNT9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.RecoveryServices/vaults/PSTestRSV972e6a32/backupOperations/ed4fbf36-a09b-4d84-860e-5a4befffed79?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTcyZTZhMzIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5NzJlNmEzMi9iYWNrdXBPcGVyYXRpb25zL2VkNGZiZjM2LWEwOWItNGQ4NC04NjBlLTVhNGJlZmZmZWQ3OT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d45056fe-2679-4aa8-9625-afc2edacbe69" + "e913adc4-ccb2-4d15-8696-374f3f5b7d0b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -8837,11 +9454,11 @@ "nosniff" ], "x-ms-request-id": [ - "8bdb1a7e-d5de-4cf5-87b3-4181fbdbcd0e" + "b23f05e6-2b89-44c6-a8f4-645be44e1620" ], "x-ms-client-request-id": [ - "d45056fe-2679-4aa8-9625-afc2edacbe69", - "d45056fe-2679-4aa8-9625-afc2edacbe69" + "e913adc4-ccb2-4d15-8696-374f3f5b7d0b", + "e913adc4-ccb2-4d15-8696-374f3f5b7d0b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -8853,19 +9470,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "124" + "122" ], "x-ms-correlation-request-id": [ - "8bdb1a7e-d5de-4cf5-87b3-4181fbdbcd0e" + "b23f05e6-2b89-44c6-a8f4-645be44e1620" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T201742Z:8bdb1a7e-d5de-4cf5-87b3-4181fbdbcd0e" + "JIOINDIAWEST:20220516T191250Z:b23f05e6-2b89-44c6-a8f4-645be44e1620" ], "Date": [ - "Wed, 23 Feb 2022 20:17:42 GMT" + "Mon, 16 May 2022 19:12:50 GMT" ], "Content-Length": [ - "187" + "188" ], "Content-Type": [ "application/json" @@ -8874,26 +9491,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"02212a10-f1e3-4046-b096-c2d305eeb515\",\r\n \"name\": \"02212a10-f1e3-4046-b096-c2d305eeb515\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-23T20:16:44.486224Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"ed4fbf36-a09b-4d84-860e-5a4befffed79\",\r\n \"name\": \"ed4fbf36-a09b-4d84-860e-5a4befffed79\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T19:11:49.8345719Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.RecoveryServices/vaults/PSTestRSVf3c6e251/backupOperations/02212a10-f1e3-4046-b096-c2d305eeb515?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZjNjNmUyNTEvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZmM2M2ZTI1MS9iYWNrdXBPcGVyYXRpb25zLzAyMjEyYTEwLWYxZTMtNDA0Ni1iMDk2LWMyZDMwNWVlYjUxNT9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.RecoveryServices/vaults/PSTestRSV972e6a32/backupOperations/ed4fbf36-a09b-4d84-860e-5a4befffed79?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTcyZTZhMzIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5NzJlNmEzMi9iYWNrdXBPcGVyYXRpb25zL2VkNGZiZjM2LWEwOWItNGQ4NC04NjBlLTVhNGJlZmZmZWQ3OT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d45056fe-2679-4aa8-9625-afc2edacbe69" + "e913adc4-ccb2-4d15-8696-374f3f5b7d0b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -8907,11 +9524,11 @@ "nosniff" ], "x-ms-request-id": [ - "d9a0375b-5715-4fe7-b1fe-c81eac2882be" + "2f34e7b5-b697-48df-8fc4-06e27ae0ac3c" ], "x-ms-client-request-id": [ - "d45056fe-2679-4aa8-9625-afc2edacbe69", - "d45056fe-2679-4aa8-9625-afc2edacbe69" + "e913adc4-ccb2-4d15-8696-374f3f5b7d0b", + "e913adc4-ccb2-4d15-8696-374f3f5b7d0b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -8923,19 +9540,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "123" + "121" ], "x-ms-correlation-request-id": [ - "d9a0375b-5715-4fe7-b1fe-c81eac2882be" + "2f34e7b5-b697-48df-8fc4-06e27ae0ac3c" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T201748Z:d9a0375b-5715-4fe7-b1fe-c81eac2882be" + "JIOINDIAWEST:20220516T191256Z:2f34e7b5-b697-48df-8fc4-06e27ae0ac3c" ], "Date": [ - "Wed, 23 Feb 2022 20:17:47 GMT" + "Mon, 16 May 2022 19:12:55 GMT" ], "Content-Length": [ - "187" + "188" ], "Content-Type": [ "application/json" @@ -8944,26 +9561,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"02212a10-f1e3-4046-b096-c2d305eeb515\",\r\n \"name\": \"02212a10-f1e3-4046-b096-c2d305eeb515\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-23T20:16:44.486224Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"ed4fbf36-a09b-4d84-860e-5a4befffed79\",\r\n \"name\": \"ed4fbf36-a09b-4d84-860e-5a4befffed79\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T19:11:49.8345719Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.RecoveryServices/vaults/PSTestRSVf3c6e251/backupOperations/02212a10-f1e3-4046-b096-c2d305eeb515?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZjNjNmUyNTEvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZmM2M2ZTI1MS9iYWNrdXBPcGVyYXRpb25zLzAyMjEyYTEwLWYxZTMtNDA0Ni1iMDk2LWMyZDMwNWVlYjUxNT9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.RecoveryServices/vaults/PSTestRSV972e6a32/backupOperations/ed4fbf36-a09b-4d84-860e-5a4befffed79?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTcyZTZhMzIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5NzJlNmEzMi9iYWNrdXBPcGVyYXRpb25zL2VkNGZiZjM2LWEwOWItNGQ4NC04NjBlLTVhNGJlZmZmZWQ3OT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d45056fe-2679-4aa8-9625-afc2edacbe69" + "e913adc4-ccb2-4d15-8696-374f3f5b7d0b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -8977,11 +9594,11 @@ "nosniff" ], "x-ms-request-id": [ - "16778a98-ae3f-4b28-88bd-b02aac95b126" + "6f22fed2-c9ac-43dc-ab43-654835b7d40a" ], "x-ms-client-request-id": [ - "d45056fe-2679-4aa8-9625-afc2edacbe69", - "d45056fe-2679-4aa8-9625-afc2edacbe69" + "e913adc4-ccb2-4d15-8696-374f3f5b7d0b", + "e913adc4-ccb2-4d15-8696-374f3f5b7d0b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -8993,19 +9610,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "122" + "120" ], "x-ms-correlation-request-id": [ - "16778a98-ae3f-4b28-88bd-b02aac95b126" + "6f22fed2-c9ac-43dc-ab43-654835b7d40a" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T201753Z:16778a98-ae3f-4b28-88bd-b02aac95b126" + "JIOINDIAWEST:20220516T191301Z:6f22fed2-c9ac-43dc-ab43-654835b7d40a" ], "Date": [ - "Wed, 23 Feb 2022 20:17:53 GMT" + "Mon, 16 May 2022 19:13:00 GMT" ], "Content-Length": [ - "187" + "188" ], "Content-Type": [ "application/json" @@ -9014,26 +9631,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"02212a10-f1e3-4046-b096-c2d305eeb515\",\r\n \"name\": \"02212a10-f1e3-4046-b096-c2d305eeb515\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-23T20:16:44.486224Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"ed4fbf36-a09b-4d84-860e-5a4befffed79\",\r\n \"name\": \"ed4fbf36-a09b-4d84-860e-5a4befffed79\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T19:11:49.8345719Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.RecoveryServices/vaults/PSTestRSVf3c6e251/backupOperations/02212a10-f1e3-4046-b096-c2d305eeb515?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZjNjNmUyNTEvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZmM2M2ZTI1MS9iYWNrdXBPcGVyYXRpb25zLzAyMjEyYTEwLWYxZTMtNDA0Ni1iMDk2LWMyZDMwNWVlYjUxNT9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.RecoveryServices/vaults/PSTestRSV972e6a32/backupOperations/ed4fbf36-a09b-4d84-860e-5a4befffed79?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTcyZTZhMzIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5NzJlNmEzMi9iYWNrdXBPcGVyYXRpb25zL2VkNGZiZjM2LWEwOWItNGQ4NC04NjBlLTVhNGJlZmZmZWQ3OT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d45056fe-2679-4aa8-9625-afc2edacbe69" + "e913adc4-ccb2-4d15-8696-374f3f5b7d0b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -9047,11 +9664,11 @@ "nosniff" ], "x-ms-request-id": [ - "8f94b9c4-0aeb-43db-8352-210ed30896cc" + "329588ba-4ebb-458d-9180-828781e4af4f" ], "x-ms-client-request-id": [ - "d45056fe-2679-4aa8-9625-afc2edacbe69", - "d45056fe-2679-4aa8-9625-afc2edacbe69" + "e913adc4-ccb2-4d15-8696-374f3f5b7d0b", + "e913adc4-ccb2-4d15-8696-374f3f5b7d0b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -9063,19 +9680,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "121" + "119" ], "x-ms-correlation-request-id": [ - "8f94b9c4-0aeb-43db-8352-210ed30896cc" + "329588ba-4ebb-458d-9180-828781e4af4f" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T201759Z:8f94b9c4-0aeb-43db-8352-210ed30896cc" + "JIOINDIAWEST:20220516T191307Z:329588ba-4ebb-458d-9180-828781e4af4f" ], "Date": [ - "Wed, 23 Feb 2022 20:17:58 GMT" + "Mon, 16 May 2022 19:13:06 GMT" ], "Content-Length": [ - "187" + "188" ], "Content-Type": [ "application/json" @@ -9084,26 +9701,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"02212a10-f1e3-4046-b096-c2d305eeb515\",\r\n \"name\": \"02212a10-f1e3-4046-b096-c2d305eeb515\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-23T20:16:44.486224Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"ed4fbf36-a09b-4d84-860e-5a4befffed79\",\r\n \"name\": \"ed4fbf36-a09b-4d84-860e-5a4befffed79\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T19:11:49.8345719Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.RecoveryServices/vaults/PSTestRSVf3c6e251/backupOperations/02212a10-f1e3-4046-b096-c2d305eeb515?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZjNjNmUyNTEvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZmM2M2ZTI1MS9iYWNrdXBPcGVyYXRpb25zLzAyMjEyYTEwLWYxZTMtNDA0Ni1iMDk2LWMyZDMwNWVlYjUxNT9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.RecoveryServices/vaults/PSTestRSV972e6a32/backupOperations/ed4fbf36-a09b-4d84-860e-5a4befffed79?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTcyZTZhMzIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5NzJlNmEzMi9iYWNrdXBPcGVyYXRpb25zL2VkNGZiZjM2LWEwOWItNGQ4NC04NjBlLTVhNGJlZmZmZWQ3OT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d45056fe-2679-4aa8-9625-afc2edacbe69" + "e913adc4-ccb2-4d15-8696-374f3f5b7d0b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -9117,11 +9734,11 @@ "nosniff" ], "x-ms-request-id": [ - "25f2e8e4-c757-4213-bdb7-0d9db3c828c9" + "90e9d78a-1b2f-42b8-b10f-27a2b18dbd09" ], "x-ms-client-request-id": [ - "d45056fe-2679-4aa8-9625-afc2edacbe69", - "d45056fe-2679-4aa8-9625-afc2edacbe69" + "e913adc4-ccb2-4d15-8696-374f3f5b7d0b", + "e913adc4-ccb2-4d15-8696-374f3f5b7d0b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -9133,19 +9750,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "120" + "118" ], "x-ms-correlation-request-id": [ - "25f2e8e4-c757-4213-bdb7-0d9db3c828c9" + "90e9d78a-1b2f-42b8-b10f-27a2b18dbd09" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T201804Z:25f2e8e4-c757-4213-bdb7-0d9db3c828c9" + "JIOINDIAWEST:20220516T191312Z:90e9d78a-1b2f-42b8-b10f-27a2b18dbd09" ], "Date": [ - "Wed, 23 Feb 2022 20:18:04 GMT" + "Mon, 16 May 2022 19:13:12 GMT" ], "Content-Length": [ - "187" + "188" ], "Content-Type": [ "application/json" @@ -9154,26 +9771,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"02212a10-f1e3-4046-b096-c2d305eeb515\",\r\n \"name\": \"02212a10-f1e3-4046-b096-c2d305eeb515\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-23T20:16:44.486224Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"ed4fbf36-a09b-4d84-860e-5a4befffed79\",\r\n \"name\": \"ed4fbf36-a09b-4d84-860e-5a4befffed79\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T19:11:49.8345719Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.RecoveryServices/vaults/PSTestRSVf3c6e251/backupOperations/02212a10-f1e3-4046-b096-c2d305eeb515?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZjNjNmUyNTEvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZmM2M2ZTI1MS9iYWNrdXBPcGVyYXRpb25zLzAyMjEyYTEwLWYxZTMtNDA0Ni1iMDk2LWMyZDMwNWVlYjUxNT9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.RecoveryServices/vaults/PSTestRSV972e6a32/backupOperations/ed4fbf36-a09b-4d84-860e-5a4befffed79?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTcyZTZhMzIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5NzJlNmEzMi9iYWNrdXBPcGVyYXRpb25zL2VkNGZiZjM2LWEwOWItNGQ4NC04NjBlLTVhNGJlZmZmZWQ3OT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d45056fe-2679-4aa8-9625-afc2edacbe69" + "e913adc4-ccb2-4d15-8696-374f3f5b7d0b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -9187,11 +9804,11 @@ "nosniff" ], "x-ms-request-id": [ - "19a9f454-7d55-4a3f-a8da-77192cab2649" + "2b28a591-a273-4245-9979-2eecc3313bee" ], "x-ms-client-request-id": [ - "d45056fe-2679-4aa8-9625-afc2edacbe69", - "d45056fe-2679-4aa8-9625-afc2edacbe69" + "e913adc4-ccb2-4d15-8696-374f3f5b7d0b", + "e913adc4-ccb2-4d15-8696-374f3f5b7d0b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -9203,19 +9820,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "119" + "117" ], "x-ms-correlation-request-id": [ - "19a9f454-7d55-4a3f-a8da-77192cab2649" + "2b28a591-a273-4245-9979-2eecc3313bee" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T201810Z:19a9f454-7d55-4a3f-a8da-77192cab2649" + "JIOINDIAWEST:20220516T191318Z:2b28a591-a273-4245-9979-2eecc3313bee" ], "Date": [ - "Wed, 23 Feb 2022 20:18:09 GMT" + "Mon, 16 May 2022 19:13:18 GMT" ], "Content-Length": [ - "187" + "188" ], "Content-Type": [ "application/json" @@ -9224,26 +9841,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"02212a10-f1e3-4046-b096-c2d305eeb515\",\r\n \"name\": \"02212a10-f1e3-4046-b096-c2d305eeb515\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-23T20:16:44.486224Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"ed4fbf36-a09b-4d84-860e-5a4befffed79\",\r\n \"name\": \"ed4fbf36-a09b-4d84-860e-5a4befffed79\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T19:11:49.8345719Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.RecoveryServices/vaults/PSTestRSVf3c6e251/backupOperations/02212a10-f1e3-4046-b096-c2d305eeb515?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZjNjNmUyNTEvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZmM2M2ZTI1MS9iYWNrdXBPcGVyYXRpb25zLzAyMjEyYTEwLWYxZTMtNDA0Ni1iMDk2LWMyZDMwNWVlYjUxNT9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.RecoveryServices/vaults/PSTestRSV972e6a32/backupOperations/ed4fbf36-a09b-4d84-860e-5a4befffed79?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTcyZTZhMzIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5NzJlNmEzMi9iYWNrdXBPcGVyYXRpb25zL2VkNGZiZjM2LWEwOWItNGQ4NC04NjBlLTVhNGJlZmZmZWQ3OT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d45056fe-2679-4aa8-9625-afc2edacbe69" + "e913adc4-ccb2-4d15-8696-374f3f5b7d0b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -9257,11 +9874,11 @@ "nosniff" ], "x-ms-request-id": [ - "80a23cef-8ab7-406a-bd3b-164854a18a51" + "ba2f5dbc-fa25-46a5-9a9c-5d6a2a0c0100" ], "x-ms-client-request-id": [ - "d45056fe-2679-4aa8-9625-afc2edacbe69", - "d45056fe-2679-4aa8-9625-afc2edacbe69" + "e913adc4-ccb2-4d15-8696-374f3f5b7d0b", + "e913adc4-ccb2-4d15-8696-374f3f5b7d0b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -9273,19 +9890,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "118" + "116" ], "x-ms-correlation-request-id": [ - "80a23cef-8ab7-406a-bd3b-164854a18a51" + "ba2f5dbc-fa25-46a5-9a9c-5d6a2a0c0100" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T201816Z:80a23cef-8ab7-406a-bd3b-164854a18a51" + "JIOINDIAWEST:20220516T191323Z:ba2f5dbc-fa25-46a5-9a9c-5d6a2a0c0100" ], "Date": [ - "Wed, 23 Feb 2022 20:18:15 GMT" + "Mon, 16 May 2022 19:13:23 GMT" ], "Content-Length": [ - "187" + "188" ], "Content-Type": [ "application/json" @@ -9294,26 +9911,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"02212a10-f1e3-4046-b096-c2d305eeb515\",\r\n \"name\": \"02212a10-f1e3-4046-b096-c2d305eeb515\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-23T20:16:44.486224Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"ed4fbf36-a09b-4d84-860e-5a4befffed79\",\r\n \"name\": \"ed4fbf36-a09b-4d84-860e-5a4befffed79\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T19:11:49.8345719Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.RecoveryServices/vaults/PSTestRSVf3c6e251/backupOperations/02212a10-f1e3-4046-b096-c2d305eeb515?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZjNjNmUyNTEvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZmM2M2ZTI1MS9iYWNrdXBPcGVyYXRpb25zLzAyMjEyYTEwLWYxZTMtNDA0Ni1iMDk2LWMyZDMwNWVlYjUxNT9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.RecoveryServices/vaults/PSTestRSV972e6a32/backupOperations/ed4fbf36-a09b-4d84-860e-5a4befffed79?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTcyZTZhMzIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5NzJlNmEzMi9iYWNrdXBPcGVyYXRpb25zL2VkNGZiZjM2LWEwOWItNGQ4NC04NjBlLTVhNGJlZmZmZWQ3OT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d45056fe-2679-4aa8-9625-afc2edacbe69" + "e913adc4-ccb2-4d15-8696-374f3f5b7d0b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -9327,11 +9944,11 @@ "nosniff" ], "x-ms-request-id": [ - "6762b7e4-e21a-41ca-9b64-fd85566ecde2" + "c8cb287f-3581-4070-b366-0182288c1a6b" ], "x-ms-client-request-id": [ - "d45056fe-2679-4aa8-9625-afc2edacbe69", - "d45056fe-2679-4aa8-9625-afc2edacbe69" + "e913adc4-ccb2-4d15-8696-374f3f5b7d0b", + "e913adc4-ccb2-4d15-8696-374f3f5b7d0b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -9343,19 +9960,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "117" + "115" ], "x-ms-correlation-request-id": [ - "6762b7e4-e21a-41ca-9b64-fd85566ecde2" + "c8cb287f-3581-4070-b366-0182288c1a6b" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T201821Z:6762b7e4-e21a-41ca-9b64-fd85566ecde2" + "JIOINDIAWEST:20220516T191329Z:c8cb287f-3581-4070-b366-0182288c1a6b" ], "Date": [ - "Wed, 23 Feb 2022 20:18:20 GMT" + "Mon, 16 May 2022 19:13:29 GMT" ], "Content-Length": [ - "187" + "188" ], "Content-Type": [ "application/json" @@ -9364,26 +9981,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"02212a10-f1e3-4046-b096-c2d305eeb515\",\r\n \"name\": \"02212a10-f1e3-4046-b096-c2d305eeb515\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-23T20:16:44.486224Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"ed4fbf36-a09b-4d84-860e-5a4befffed79\",\r\n \"name\": \"ed4fbf36-a09b-4d84-860e-5a4befffed79\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T19:11:49.8345719Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.RecoveryServices/vaults/PSTestRSVf3c6e251/backupOperations/02212a10-f1e3-4046-b096-c2d305eeb515?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZjNjNmUyNTEvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZmM2M2ZTI1MS9iYWNrdXBPcGVyYXRpb25zLzAyMjEyYTEwLWYxZTMtNDA0Ni1iMDk2LWMyZDMwNWVlYjUxNT9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.RecoveryServices/vaults/PSTestRSV972e6a32/backupOperations/ed4fbf36-a09b-4d84-860e-5a4befffed79?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTcyZTZhMzIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5NzJlNmEzMi9iYWNrdXBPcGVyYXRpb25zL2VkNGZiZjM2LWEwOWItNGQ4NC04NjBlLTVhNGJlZmZmZWQ3OT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d45056fe-2679-4aa8-9625-afc2edacbe69" + "e913adc4-ccb2-4d15-8696-374f3f5b7d0b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -9397,11 +10014,11 @@ "nosniff" ], "x-ms-request-id": [ - "e7ecafa9-3a5d-4dd9-b574-0abcc0fb5441" + "3d19cebd-f523-4fc4-9b58-433299cd4f84" ], "x-ms-client-request-id": [ - "d45056fe-2679-4aa8-9625-afc2edacbe69", - "d45056fe-2679-4aa8-9625-afc2edacbe69" + "e913adc4-ccb2-4d15-8696-374f3f5b7d0b", + "e913adc4-ccb2-4d15-8696-374f3f5b7d0b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -9413,19 +10030,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "116" + "114" ], "x-ms-correlation-request-id": [ - "e7ecafa9-3a5d-4dd9-b574-0abcc0fb5441" + "3d19cebd-f523-4fc4-9b58-433299cd4f84" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T201827Z:e7ecafa9-3a5d-4dd9-b574-0abcc0fb5441" + "JIOINDIAWEST:20220516T191334Z:3d19cebd-f523-4fc4-9b58-433299cd4f84" ], "Date": [ - "Wed, 23 Feb 2022 20:18:26 GMT" + "Mon, 16 May 2022 19:13:34 GMT" ], "Content-Length": [ - "187" + "188" ], "Content-Type": [ "application/json" @@ -9434,26 +10051,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"02212a10-f1e3-4046-b096-c2d305eeb515\",\r\n \"name\": \"02212a10-f1e3-4046-b096-c2d305eeb515\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-23T20:16:44.486224Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"ed4fbf36-a09b-4d84-860e-5a4befffed79\",\r\n \"name\": \"ed4fbf36-a09b-4d84-860e-5a4befffed79\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T19:11:49.8345719Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.RecoveryServices/vaults/PSTestRSVf3c6e251/backupOperations/02212a10-f1e3-4046-b096-c2d305eeb515?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZjNjNmUyNTEvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZmM2M2ZTI1MS9iYWNrdXBPcGVyYXRpb25zLzAyMjEyYTEwLWYxZTMtNDA0Ni1iMDk2LWMyZDMwNWVlYjUxNT9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.RecoveryServices/vaults/PSTestRSV972e6a32/backupOperations/ed4fbf36-a09b-4d84-860e-5a4befffed79?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTcyZTZhMzIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5NzJlNmEzMi9iYWNrdXBPcGVyYXRpb25zL2VkNGZiZjM2LWEwOWItNGQ4NC04NjBlLTVhNGJlZmZmZWQ3OT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d45056fe-2679-4aa8-9625-afc2edacbe69" + "e913adc4-ccb2-4d15-8696-374f3f5b7d0b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -9467,11 +10084,11 @@ "nosniff" ], "x-ms-request-id": [ - "056855dd-f3eb-4fa8-bcb5-3010edabe1a2" + "603c7223-9a0c-4c61-a9a1-bba3428428e4" ], "x-ms-client-request-id": [ - "d45056fe-2679-4aa8-9625-afc2edacbe69", - "d45056fe-2679-4aa8-9625-afc2edacbe69" + "e913adc4-ccb2-4d15-8696-374f3f5b7d0b", + "e913adc4-ccb2-4d15-8696-374f3f5b7d0b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -9483,19 +10100,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "115" + "113" ], "x-ms-correlation-request-id": [ - "056855dd-f3eb-4fa8-bcb5-3010edabe1a2" + "603c7223-9a0c-4c61-a9a1-bba3428428e4" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T201832Z:056855dd-f3eb-4fa8-bcb5-3010edabe1a2" + "JIOINDIAWEST:20220516T191340Z:603c7223-9a0c-4c61-a9a1-bba3428428e4" ], "Date": [ - "Wed, 23 Feb 2022 20:18:31 GMT" + "Mon, 16 May 2022 19:13:40 GMT" ], "Content-Length": [ - "187" + "188" ], "Content-Type": [ "application/json" @@ -9504,26 +10121,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"02212a10-f1e3-4046-b096-c2d305eeb515\",\r\n \"name\": \"02212a10-f1e3-4046-b096-c2d305eeb515\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-23T20:16:44.486224Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"ed4fbf36-a09b-4d84-860e-5a4befffed79\",\r\n \"name\": \"ed4fbf36-a09b-4d84-860e-5a4befffed79\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T19:11:49.8345719Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.RecoveryServices/vaults/PSTestRSVf3c6e251/backupOperations/02212a10-f1e3-4046-b096-c2d305eeb515?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZjNjNmUyNTEvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZmM2M2ZTI1MS9iYWNrdXBPcGVyYXRpb25zLzAyMjEyYTEwLWYxZTMtNDA0Ni1iMDk2LWMyZDMwNWVlYjUxNT9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.RecoveryServices/vaults/PSTestRSV972e6a32/backupOperations/ed4fbf36-a09b-4d84-860e-5a4befffed79?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTcyZTZhMzIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5NzJlNmEzMi9iYWNrdXBPcGVyYXRpb25zL2VkNGZiZjM2LWEwOWItNGQ4NC04NjBlLTVhNGJlZmZmZWQ3OT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d45056fe-2679-4aa8-9625-afc2edacbe69" + "e913adc4-ccb2-4d15-8696-374f3f5b7d0b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -9537,11 +10154,11 @@ "nosniff" ], "x-ms-request-id": [ - "dbcc82c9-d0c9-4cd0-bb3f-e9e2a4138b67" + "313413e0-4399-4f13-9868-60e0aef6f58e" ], "x-ms-client-request-id": [ - "d45056fe-2679-4aa8-9625-afc2edacbe69", - "d45056fe-2679-4aa8-9625-afc2edacbe69" + "e913adc4-ccb2-4d15-8696-374f3f5b7d0b", + "e913adc4-ccb2-4d15-8696-374f3f5b7d0b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -9553,19 +10170,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "114" + "112" ], "x-ms-correlation-request-id": [ - "dbcc82c9-d0c9-4cd0-bb3f-e9e2a4138b67" + "313413e0-4399-4f13-9868-60e0aef6f58e" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T201838Z:dbcc82c9-d0c9-4cd0-bb3f-e9e2a4138b67" + "JIOINDIAWEST:20220516T191346Z:313413e0-4399-4f13-9868-60e0aef6f58e" ], "Date": [ - "Wed, 23 Feb 2022 20:18:37 GMT" + "Mon, 16 May 2022 19:13:45 GMT" ], "Content-Length": [ - "302" + "304" ], "Content-Type": [ "application/json" @@ -9574,26 +10191,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"02212a10-f1e3-4046-b096-c2d305eeb515\",\r\n \"name\": \"02212a10-f1e3-4046-b096-c2d305eeb515\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-02-23T20:16:44.486224Z\",\r\n \"endTime\": \"2022-02-23T20:16:44.486224Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"03364347-37f4-47db-89b6-571104b8bad8\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"ed4fbf36-a09b-4d84-860e-5a4befffed79\",\r\n \"name\": \"ed4fbf36-a09b-4d84-860e-5a4befffed79\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-05-16T19:11:49.8345719Z\",\r\n \"endTime\": \"2022-05-16T19:11:49.8345719Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"e77ccc17-2b75-447a-bb50-71563cfb840c\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.RecoveryServices/vaults/PSTestRSVf3c6e251/backupOperations/02212a10-f1e3-4046-b096-c2d305eeb515?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZjNjNmUyNTEvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZmM2M2ZTI1MS9iYWNrdXBPcGVyYXRpb25zLzAyMjEyYTEwLWYxZTMtNDA0Ni1iMDk2LWMyZDMwNWVlYjUxNT9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.RecoveryServices/vaults/PSTestRSV972e6a32/backupOperations/ed4fbf36-a09b-4d84-860e-5a4befffed79?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTcyZTZhMzIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5NzJlNmEzMi9iYWNrdXBPcGVyYXRpb25zL2VkNGZiZjM2LWEwOWItNGQ4NC04NjBlLTVhNGJlZmZmZWQ3OT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d45056fe-2679-4aa8-9625-afc2edacbe69" + "e913adc4-ccb2-4d15-8696-374f3f5b7d0b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -9607,11 +10224,11 @@ "nosniff" ], "x-ms-request-id": [ - "bd752f2d-fad7-4ee7-8b8c-089c1da2030b" + "cb07e0b6-d8d3-4cc1-867d-fc477b0d74d4" ], "x-ms-client-request-id": [ - "d45056fe-2679-4aa8-9625-afc2edacbe69", - "d45056fe-2679-4aa8-9625-afc2edacbe69" + "e913adc4-ccb2-4d15-8696-374f3f5b7d0b", + "e913adc4-ccb2-4d15-8696-374f3f5b7d0b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -9623,19 +10240,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "113" + "111" ], "x-ms-correlation-request-id": [ - "bd752f2d-fad7-4ee7-8b8c-089c1da2030b" + "cb07e0b6-d8d3-4cc1-867d-fc477b0d74d4" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T201838Z:bd752f2d-fad7-4ee7-8b8c-089c1da2030b" + "JIOINDIAWEST:20220516T191346Z:cb07e0b6-d8d3-4cc1-867d-fc477b0d74d4" ], "Date": [ - "Wed, 23 Feb 2022 20:18:37 GMT" + "Mon, 16 May 2022 19:13:46 GMT" ], "Content-Length": [ - "302" + "304" ], "Content-Type": [ "application/json" @@ -9644,26 +10261,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"02212a10-f1e3-4046-b096-c2d305eeb515\",\r\n \"name\": \"02212a10-f1e3-4046-b096-c2d305eeb515\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-02-23T20:16:44.486224Z\",\r\n \"endTime\": \"2022-02-23T20:16:44.486224Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"03364347-37f4-47db-89b6-571104b8bad8\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"ed4fbf36-a09b-4d84-860e-5a4befffed79\",\r\n \"name\": \"ed4fbf36-a09b-4d84-860e-5a4befffed79\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-05-16T19:11:49.8345719Z\",\r\n \"endTime\": \"2022-05-16T19:11:49.8345719Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"e77ccc17-2b75-447a-bb50-71563cfb840c\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.RecoveryServices/vaults/PSTestRSVf3c6e251/backupJobs/03364347-37f4-47db-89b6-571104b8bad8?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZjNjNmUyNTEvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZmM2M2ZTI1MS9iYWNrdXBKb2JzLzAzMzY0MzQ3LTM3ZjQtNDdkYi04OWI2LTU3MTEwNGI4YmFkOD9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.RecoveryServices/vaults/PSTestRSV972e6a32/backupJobs/e77ccc17-2b75-447a-bb50-71563cfb840c?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTcyZTZhMzIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5NzJlNmEzMi9iYWNrdXBKb2JzL2U3N2NjYzE3LTJiNzUtNDQ3YS1iYjUwLTcxNTYzY2ZiODQwYz9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d45056fe-2679-4aa8-9625-afc2edacbe69" + "e913adc4-ccb2-4d15-8696-374f3f5b7d0b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -9681,11 +10298,11 @@ "nosniff" ], "x-ms-request-id": [ - "43b11da5-f542-41c7-bcf8-7dd09457c0ea" + "4ce12fae-352f-46c8-8db3-c40c8d49ff3a" ], "x-ms-client-request-id": [ - "d45056fe-2679-4aa8-9625-afc2edacbe69", - "d45056fe-2679-4aa8-9625-afc2edacbe69" + "e913adc4-ccb2-4d15-8696-374f3f5b7d0b", + "e913adc4-ccb2-4d15-8696-374f3f5b7d0b" ], "X-Powered-By": [ "ASP.NET" @@ -9697,16 +10314,16 @@ "146" ], "x-ms-correlation-request-id": [ - "43b11da5-f542-41c7-bcf8-7dd09457c0ea" + "4ce12fae-352f-46c8-8db3-c40c8d49ff3a" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T201839Z:43b11da5-f542-41c7-bcf8-7dd09457c0ea" + "JIOINDIAWEST:20220516T191347Z:4ce12fae-352f-46c8-8db3-c40c8d49ff3a" ], "Date": [ - "Wed, 23 Feb 2022 20:18:38 GMT" + "Mon, 16 May 2022 19:13:46 GMT" ], "Content-Length": [ - "844" + "845" ], "Content-Type": [ "application/json" @@ -9715,26 +10332,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.RecoveryServices/vaults/PSTestRSVf3c6e251/backupJobs/03364347-37f4-47db-89b6-571104b8bad8\",\r\n \"name\": \"03364347-37f4-47db-89b6-571104b8bad8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgf3c6e251;pstestvmf3c6e1\",\r\n \"duration\": \"PT1M51.5981999S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"VM Name\": \"PSTestVMf3c6e1\",\r\n \"Number of Recovery Points\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"PSTestVMf3c6e1\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"DeleteBackupData\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-02-23T20:16:44.486224Z\",\r\n \"endTime\": \"2022-02-23T20:18:36.0844239Z\",\r\n \"activityId\": \"d45056fe-2679-4aa8-9625-afc2edacbe69\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.RecoveryServices/vaults/PSTestRSV972e6a32/backupJobs/e77ccc17-2b75-447a-bb50-71563cfb840c\",\r\n \"name\": \"e77ccc17-2b75-447a-bb50-71563cfb840c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg972e6a32;pstestvm972e61\",\r\n \"duration\": \"PT1M51.4885313S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"VM Name\": \"PSTestVM972e61\",\r\n \"Number of Recovery Points\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"PSTestVM972e61\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"DeleteBackupData\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-05-16T19:11:49.8345719Z\",\r\n \"endTime\": \"2022-05-16T19:13:41.3231032Z\",\r\n \"activityId\": \"e913adc4-ccb2-4d15-8696-374f3f5b7d0b\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.RecoveryServices/vaults/PSTestRSVf3c6e251/backupFabrics/Azure/protectionContainers/IaasVMContainer%3Biaasvmcontainerv2%3Bpstestrgf3c6e251%3Bpstestvmf3c6e2/protectedItems/VM%3Biaasvmcontainerv2%3Bpstestrgf3c6e251%3Bpstestvmf3c6e2/recoveryPoints?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZjNjNmUyNTEvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZmM2M2ZTI1MS9iYWNrdXBGYWJyaWNzL0F6dXJlL3Byb3RlY3Rpb25Db250YWluZXJzL0lhYXNWTUNvbnRhaW5lciUzQmlhYXN2bWNvbnRhaW5lcnYyJTNCcHN0ZXN0cmdmM2M2ZTI1MSUzQnBzdGVzdHZtZjNjNmUyL3Byb3RlY3RlZEl0ZW1zL1ZNJTNCaWFhc3ZtY29udGFpbmVydjIlM0Jwc3Rlc3RyZ2YzYzZlMjUxJTNCcHN0ZXN0dm1mM2M2ZTIvcmVjb3ZlcnlQb2ludHM/YXBpLXZlcnNpb249MjAyMS0xMC0wMQ==", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.RecoveryServices/vaults/PSTestRSV972e6a32/backupFabrics/Azure/protectionContainers/IaasVMContainer%3Biaasvmcontainerv2%3Bpstestrg972e6a32%3Bpstestvm972e62/protectedItems/VM%3Biaasvmcontainerv2%3Bpstestrg972e6a32%3Bpstestvm972e62/recoveryPoints?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTcyZTZhMzIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5NzJlNmEzMi9iYWNrdXBGYWJyaWNzL0F6dXJlL3Byb3RlY3Rpb25Db250YWluZXJzL0lhYXNWTUNvbnRhaW5lciUzQmlhYXN2bWNvbnRhaW5lcnYyJTNCcHN0ZXN0cmc5NzJlNmEzMiUzQnBzdGVzdHZtOTcyZTYyL3Byb3RlY3RlZEl0ZW1zL1ZNJTNCaWFhc3ZtY29udGFpbmVydjIlM0Jwc3Rlc3RyZzk3MmU2YTMyJTNCcHN0ZXN0dm05NzJlNjIvcmVjb3ZlcnlQb2ludHM/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a728ca37-20e5-4c00-ad5e-15914ba6122f" + "1ccb7690-3d48-46fc-b80e-33ca2b1ac803" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -9748,11 +10365,11 @@ "nosniff" ], "x-ms-request-id": [ - "5780a5cc-6047-48df-84da-25e7bcc1bbb0" + "8315aca1-939e-44f9-a298-4eb000847b63" ], "x-ms-client-request-id": [ - "a728ca37-20e5-4c00-ad5e-15914ba6122f", - "a728ca37-20e5-4c00-ad5e-15914ba6122f" + "1ccb7690-3d48-46fc-b80e-33ca2b1ac803", + "1ccb7690-3d48-46fc-b80e-33ca2b1ac803" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -9767,13 +10384,13 @@ "148" ], "x-ms-correlation-request-id": [ - "5780a5cc-6047-48df-84da-25e7bcc1bbb0" + "8315aca1-939e-44f9-a298-4eb000847b63" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T201840Z:5780a5cc-6047-48df-84da-25e7bcc1bbb0" + "JIOINDIAWEST:20220516T191348Z:8315aca1-939e-44f9-a298-4eb000847b63" ], "Date": [ - "Wed, 23 Feb 2022 20:18:39 GMT" + "Mon, 16 May 2022 19:13:47 GMT" ], "Content-Length": [ "12" @@ -9789,22 +10406,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.RecoveryServices/vaults/PSTestRSVf3c6e251/backupFabrics/Azure/protectionContainers/IaasVMContainer%3Biaasvmcontainerv2%3Bpstestrgf3c6e251%3Bpstestvmf3c6e2/protectedItems/VM%3Biaasvmcontainerv2%3Bpstestrgf3c6e251%3Bpstestvmf3c6e2?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZjNjNmUyNTEvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZmM2M2ZTI1MS9iYWNrdXBGYWJyaWNzL0F6dXJlL3Byb3RlY3Rpb25Db250YWluZXJzL0lhYXNWTUNvbnRhaW5lciUzQmlhYXN2bWNvbnRhaW5lcnYyJTNCcHN0ZXN0cmdmM2M2ZTI1MSUzQnBzdGVzdHZtZjNjNmUyL3Byb3RlY3RlZEl0ZW1zL1ZNJTNCaWFhc3ZtY29udGFpbmVydjIlM0Jwc3Rlc3RyZ2YzYzZlMjUxJTNCcHN0ZXN0dm1mM2M2ZTI/YXBpLXZlcnNpb249MjAyMS0xMC0wMQ==", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.RecoveryServices/vaults/PSTestRSV972e6a32/backupFabrics/Azure/protectionContainers/IaasVMContainer%3Biaasvmcontainerv2%3Bpstestrg972e6a32%3Bpstestvm972e62/protectedItems/VM%3Biaasvmcontainerv2%3Bpstestrg972e6a32%3Bpstestvm972e62?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTcyZTZhMzIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5NzJlNmEzMi9iYWNrdXBGYWJyaWNzL0F6dXJlL3Byb3RlY3Rpb25Db250YWluZXJzL0lhYXNWTUNvbnRhaW5lciUzQmlhYXN2bWNvbnRhaW5lcnYyJTNCcHN0ZXN0cmc5NzJlNmEzMiUzQnBzdGVzdHZtOTcyZTYyL3Byb3RlY3RlZEl0ZW1zL1ZNJTNCaWFhc3ZtY29udGFpbmVydjIlM0Jwc3Rlc3RyZzk3MmU2YTMyJTNCcHN0ZXN0dm05NzJlNjI/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a728ca37-20e5-4c00-ad5e-15914ba6122f" + "1ccb7690-3d48-46fc-b80e-33ca2b1ac803" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -9815,69 +10432,139 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.RecoveryServices/vaults/PSTestRSVf3c6e251/backupOperationResults/b3d5765d-c582-434f-970b-19e2692cf313?api-version=2021-10-01" + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.RecoveryServices/vaults/PSTestRSV972e6a32/backupOperationResults/b6127368-4375-49c2-9bf9-7f9216108dd2?api-version=2022-02-01" ], "Retry-After": [ "60" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.RecoveryServices/vaults/PSTestRSVf3c6e251/backupOperations/b3d5765d-c582-434f-970b-19e2692cf313?api-version=2021-10-01" + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.RecoveryServices/vaults/PSTestRSV972e6a32/backupOperations/b6127368-4375-49c2-9bf9-7f9216108dd2?api-version=2022-02-01" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "34d01a59-9e5b-4e5a-a075-bc650c9e59a8" + ], + "x-ms-client-request-id": [ + "1ccb7690-3d48-46fc-b80e-33ca2b1ac803", + "1ccb7690-3d48-46fc-b80e-33ca2b1ac803" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14998" + ], + "x-ms-correlation-request-id": [ + "34d01a59-9e5b-4e5a-a075-bc650c9e59a8" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T191349Z:34d01a59-9e5b-4e5a-a075-bc650c9e59a8" + ], + "Date": [ + "Mon, 16 May 2022 19:13:48 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.RecoveryServices/vaults/PSTestRSV972e6a32/backupOperations/b6127368-4375-49c2-9bf9-7f9216108dd2?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTcyZTZhMzIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5NzJlNmEzMi9iYWNrdXBPcGVyYXRpb25zL2I2MTI3MzY4LTQzNzUtNDljMi05YmY5LTdmOTIxNjEwOGRkMj9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1ccb7690-3d48-46fc-b80e-33ca2b1ac803" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "e4078cce-272f-4352-a4ca-96d40a5e43d8" + "543df897-577c-453a-bbb0-54acb06205d2" ], "x-ms-client-request-id": [ - "a728ca37-20e5-4c00-ad5e-15914ba6122f", - "a728ca37-20e5-4c00-ad5e-15914ba6122f" + "1ccb7690-3d48-46fc-b80e-33ca2b1ac803", + "1ccb7690-3d48-46fc-b80e-33ca2b1ac803" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-IIS/10.0" + ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ - "14998" + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "110" ], "x-ms-correlation-request-id": [ - "e4078cce-272f-4352-a4ca-96d40a5e43d8" + "543df897-577c-453a-bbb0-54acb06205d2" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T201841Z:e4078cce-272f-4352-a4ca-96d40a5e43d8" + "JIOINDIAWEST:20220516T191349Z:543df897-577c-453a-bbb0-54acb06205d2" ], "Date": [ - "Wed, 23 Feb 2022 20:18:40 GMT" + "Mon, 16 May 2022 19:13:49 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, - "ResponseBody": "", - "StatusCode": 202 + "ResponseBody": "{\r\n \"id\": \"b6127368-4375-49c2-9bf9-7f9216108dd2\",\r\n \"name\": \"b6127368-4375-49c2-9bf9-7f9216108dd2\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T19:13:49.3286787Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.RecoveryServices/vaults/PSTestRSVf3c6e251/backupOperations/b3d5765d-c582-434f-970b-19e2692cf313?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZjNjNmUyNTEvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZmM2M2ZTI1MS9iYWNrdXBPcGVyYXRpb25zL2IzZDU3NjVkLWM1ODItNDM0Zi05NzBiLTE5ZTI2OTJjZjMxMz9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.RecoveryServices/vaults/PSTestRSV972e6a32/backupOperations/b6127368-4375-49c2-9bf9-7f9216108dd2?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTcyZTZhMzIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5NzJlNmEzMi9iYWNrdXBPcGVyYXRpb25zL2I2MTI3MzY4LTQzNzUtNDljMi05YmY5LTdmOTIxNjEwOGRkMj9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a728ca37-20e5-4c00-ad5e-15914ba6122f" + "1ccb7690-3d48-46fc-b80e-33ca2b1ac803" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -9891,11 +10578,11 @@ "nosniff" ], "x-ms-request-id": [ - "44c90c59-a52a-4e08-aac1-eb60bf78e2a0" + "457c627c-6692-41b5-8727-e75b21db724b" ], "x-ms-client-request-id": [ - "a728ca37-20e5-4c00-ad5e-15914ba6122f", - "a728ca37-20e5-4c00-ad5e-15914ba6122f" + "1ccb7690-3d48-46fc-b80e-33ca2b1ac803", + "1ccb7690-3d48-46fc-b80e-33ca2b1ac803" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -9907,16 +10594,16 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "112" + "109" ], "x-ms-correlation-request-id": [ - "44c90c59-a52a-4e08-aac1-eb60bf78e2a0" + "457c627c-6692-41b5-8727-e75b21db724b" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T201841Z:44c90c59-a52a-4e08-aac1-eb60bf78e2a0" + "JIOINDIAWEST:20220516T191355Z:457c627c-6692-41b5-8727-e75b21db724b" ], "Date": [ - "Wed, 23 Feb 2022 20:18:40 GMT" + "Mon, 16 May 2022 19:13:54 GMT" ], "Content-Length": [ "188" @@ -9928,26 +10615,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"b3d5765d-c582-434f-970b-19e2692cf313\",\r\n \"name\": \"b3d5765d-c582-434f-970b-19e2692cf313\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-23T20:18:41.0151463Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"b6127368-4375-49c2-9bf9-7f9216108dd2\",\r\n \"name\": \"b6127368-4375-49c2-9bf9-7f9216108dd2\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T19:13:49.3286787Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.RecoveryServices/vaults/PSTestRSVf3c6e251/backupOperations/b3d5765d-c582-434f-970b-19e2692cf313?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZjNjNmUyNTEvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZmM2M2ZTI1MS9iYWNrdXBPcGVyYXRpb25zL2IzZDU3NjVkLWM1ODItNDM0Zi05NzBiLTE5ZTI2OTJjZjMxMz9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.RecoveryServices/vaults/PSTestRSV972e6a32/backupOperations/b6127368-4375-49c2-9bf9-7f9216108dd2?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTcyZTZhMzIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5NzJlNmEzMi9iYWNrdXBPcGVyYXRpb25zL2I2MTI3MzY4LTQzNzUtNDljMi05YmY5LTdmOTIxNjEwOGRkMj9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a728ca37-20e5-4c00-ad5e-15914ba6122f" + "1ccb7690-3d48-46fc-b80e-33ca2b1ac803" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -9961,11 +10648,11 @@ "nosniff" ], "x-ms-request-id": [ - "6e8458c4-234e-4d1d-b365-a554da3fbbda" + "65c5190d-b5f5-4f83-82dd-20bf82bd3c32" ], "x-ms-client-request-id": [ - "a728ca37-20e5-4c00-ad5e-15914ba6122f", - "a728ca37-20e5-4c00-ad5e-15914ba6122f" + "1ccb7690-3d48-46fc-b80e-33ca2b1ac803", + "1ccb7690-3d48-46fc-b80e-33ca2b1ac803" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -9977,16 +10664,16 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "111" + "108" ], "x-ms-correlation-request-id": [ - "6e8458c4-234e-4d1d-b365-a554da3fbbda" + "65c5190d-b5f5-4f83-82dd-20bf82bd3c32" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T201847Z:6e8458c4-234e-4d1d-b365-a554da3fbbda" + "JIOINDIAWEST:20220516T191400Z:65c5190d-b5f5-4f83-82dd-20bf82bd3c32" ], "Date": [ - "Wed, 23 Feb 2022 20:18:46 GMT" + "Mon, 16 May 2022 19:14:00 GMT" ], "Content-Length": [ "188" @@ -9998,26 +10685,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"b3d5765d-c582-434f-970b-19e2692cf313\",\r\n \"name\": \"b3d5765d-c582-434f-970b-19e2692cf313\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-23T20:18:41.0151463Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"b6127368-4375-49c2-9bf9-7f9216108dd2\",\r\n \"name\": \"b6127368-4375-49c2-9bf9-7f9216108dd2\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T19:13:49.3286787Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.RecoveryServices/vaults/PSTestRSVf3c6e251/backupOperations/b3d5765d-c582-434f-970b-19e2692cf313?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZjNjNmUyNTEvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZmM2M2ZTI1MS9iYWNrdXBPcGVyYXRpb25zL2IzZDU3NjVkLWM1ODItNDM0Zi05NzBiLTE5ZTI2OTJjZjMxMz9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.RecoveryServices/vaults/PSTestRSV972e6a32/backupOperations/b6127368-4375-49c2-9bf9-7f9216108dd2?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTcyZTZhMzIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5NzJlNmEzMi9iYWNrdXBPcGVyYXRpb25zL2I2MTI3MzY4LTQzNzUtNDljMi05YmY5LTdmOTIxNjEwOGRkMj9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a728ca37-20e5-4c00-ad5e-15914ba6122f" + "1ccb7690-3d48-46fc-b80e-33ca2b1ac803" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -10031,11 +10718,11 @@ "nosniff" ], "x-ms-request-id": [ - "45647b22-07f5-4642-b480-75e17ee221d9" + "4ecb53dd-9131-4fab-8dbd-765d4c125022" ], "x-ms-client-request-id": [ - "a728ca37-20e5-4c00-ad5e-15914ba6122f", - "a728ca37-20e5-4c00-ad5e-15914ba6122f" + "1ccb7690-3d48-46fc-b80e-33ca2b1ac803", + "1ccb7690-3d48-46fc-b80e-33ca2b1ac803" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -10047,16 +10734,16 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "110" + "107" ], "x-ms-correlation-request-id": [ - "45647b22-07f5-4642-b480-75e17ee221d9" + "4ecb53dd-9131-4fab-8dbd-765d4c125022" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T201852Z:45647b22-07f5-4642-b480-75e17ee221d9" + "JIOINDIAWEST:20220516T191406Z:4ecb53dd-9131-4fab-8dbd-765d4c125022" ], "Date": [ - "Wed, 23 Feb 2022 20:18:52 GMT" + "Mon, 16 May 2022 19:14:05 GMT" ], "Content-Length": [ "188" @@ -10068,26 +10755,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"b3d5765d-c582-434f-970b-19e2692cf313\",\r\n \"name\": \"b3d5765d-c582-434f-970b-19e2692cf313\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-23T20:18:41.0151463Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"b6127368-4375-49c2-9bf9-7f9216108dd2\",\r\n \"name\": \"b6127368-4375-49c2-9bf9-7f9216108dd2\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T19:13:49.3286787Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.RecoveryServices/vaults/PSTestRSVf3c6e251/backupOperations/b3d5765d-c582-434f-970b-19e2692cf313?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZjNjNmUyNTEvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZmM2M2ZTI1MS9iYWNrdXBPcGVyYXRpb25zL2IzZDU3NjVkLWM1ODItNDM0Zi05NzBiLTE5ZTI2OTJjZjMxMz9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.RecoveryServices/vaults/PSTestRSV972e6a32/backupOperations/b6127368-4375-49c2-9bf9-7f9216108dd2?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTcyZTZhMzIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5NzJlNmEzMi9iYWNrdXBPcGVyYXRpb25zL2I2MTI3MzY4LTQzNzUtNDljMi05YmY5LTdmOTIxNjEwOGRkMj9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a728ca37-20e5-4c00-ad5e-15914ba6122f" + "1ccb7690-3d48-46fc-b80e-33ca2b1ac803" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -10101,32 +10788,32 @@ "nosniff" ], "x-ms-request-id": [ - "e1c7955d-052b-4976-8d5d-dff6da59f80b" + "182057a8-70d7-4d2e-877f-637c7a1ce43c" ], "x-ms-client-request-id": [ - "a728ca37-20e5-4c00-ad5e-15914ba6122f", - "a728ca37-20e5-4c00-ad5e-15914ba6122f" + "1ccb7690-3d48-46fc-b80e-33ca2b1ac803", + "1ccb7690-3d48-46fc-b80e-33ca2b1ac803" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "106" + ], "Server": [ "Microsoft-IIS/10.0" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "109" - ], "x-ms-correlation-request-id": [ - "e1c7955d-052b-4976-8d5d-dff6da59f80b" + "182057a8-70d7-4d2e-877f-637c7a1ce43c" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T201858Z:e1c7955d-052b-4976-8d5d-dff6da59f80b" + "JIOINDIAWEST:20220516T191412Z:182057a8-70d7-4d2e-877f-637c7a1ce43c" ], "Date": [ - "Wed, 23 Feb 2022 20:18:58 GMT" + "Mon, 16 May 2022 19:14:12 GMT" ], "Content-Length": [ "188" @@ -10138,26 +10825,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"b3d5765d-c582-434f-970b-19e2692cf313\",\r\n \"name\": \"b3d5765d-c582-434f-970b-19e2692cf313\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-23T20:18:41.0151463Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"b6127368-4375-49c2-9bf9-7f9216108dd2\",\r\n \"name\": \"b6127368-4375-49c2-9bf9-7f9216108dd2\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T19:13:49.3286787Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.RecoveryServices/vaults/PSTestRSVf3c6e251/backupOperations/b3d5765d-c582-434f-970b-19e2692cf313?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZjNjNmUyNTEvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZmM2M2ZTI1MS9iYWNrdXBPcGVyYXRpb25zL2IzZDU3NjVkLWM1ODItNDM0Zi05NzBiLTE5ZTI2OTJjZjMxMz9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.RecoveryServices/vaults/PSTestRSV972e6a32/backupOperations/b6127368-4375-49c2-9bf9-7f9216108dd2?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTcyZTZhMzIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5NzJlNmEzMi9iYWNrdXBPcGVyYXRpb25zL2I2MTI3MzY4LTQzNzUtNDljMi05YmY5LTdmOTIxNjEwOGRkMj9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a728ca37-20e5-4c00-ad5e-15914ba6122f" + "1ccb7690-3d48-46fc-b80e-33ca2b1ac803" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -10171,11 +10858,11 @@ "nosniff" ], "x-ms-request-id": [ - "359b110c-f7ca-44bf-972d-8657dc2ba6c0" + "28130207-9e41-418a-92e8-25a4a5a740ee" ], "x-ms-client-request-id": [ - "a728ca37-20e5-4c00-ad5e-15914ba6122f", - "a728ca37-20e5-4c00-ad5e-15914ba6122f" + "1ccb7690-3d48-46fc-b80e-33ca2b1ac803", + "1ccb7690-3d48-46fc-b80e-33ca2b1ac803" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -10187,16 +10874,16 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "108" + "105" ], "x-ms-correlation-request-id": [ - "359b110c-f7ca-44bf-972d-8657dc2ba6c0" + "28130207-9e41-418a-92e8-25a4a5a740ee" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T201903Z:359b110c-f7ca-44bf-972d-8657dc2ba6c0" + "JIOINDIAWEST:20220516T191418Z:28130207-9e41-418a-92e8-25a4a5a740ee" ], "Date": [ - "Wed, 23 Feb 2022 20:19:03 GMT" + "Mon, 16 May 2022 19:14:18 GMT" ], "Content-Length": [ "188" @@ -10208,26 +10895,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"b3d5765d-c582-434f-970b-19e2692cf313\",\r\n \"name\": \"b3d5765d-c582-434f-970b-19e2692cf313\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-23T20:18:41.0151463Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"b6127368-4375-49c2-9bf9-7f9216108dd2\",\r\n \"name\": \"b6127368-4375-49c2-9bf9-7f9216108dd2\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T19:13:49.3286787Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.RecoveryServices/vaults/PSTestRSVf3c6e251/backupOperations/b3d5765d-c582-434f-970b-19e2692cf313?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZjNjNmUyNTEvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZmM2M2ZTI1MS9iYWNrdXBPcGVyYXRpb25zL2IzZDU3NjVkLWM1ODItNDM0Zi05NzBiLTE5ZTI2OTJjZjMxMz9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.RecoveryServices/vaults/PSTestRSV972e6a32/backupOperations/b6127368-4375-49c2-9bf9-7f9216108dd2?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTcyZTZhMzIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5NzJlNmEzMi9iYWNrdXBPcGVyYXRpb25zL2I2MTI3MzY4LTQzNzUtNDljMi05YmY5LTdmOTIxNjEwOGRkMj9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a728ca37-20e5-4c00-ad5e-15914ba6122f" + "1ccb7690-3d48-46fc-b80e-33ca2b1ac803" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -10241,11 +10928,11 @@ "nosniff" ], "x-ms-request-id": [ - "721b11c5-8199-49c4-961d-eaaa8ef446d6" + "c8ecc9b2-3018-4755-90c4-3f3f684b973e" ], "x-ms-client-request-id": [ - "a728ca37-20e5-4c00-ad5e-15914ba6122f", - "a728ca37-20e5-4c00-ad5e-15914ba6122f" + "1ccb7690-3d48-46fc-b80e-33ca2b1ac803", + "1ccb7690-3d48-46fc-b80e-33ca2b1ac803" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -10257,16 +10944,16 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "107" + "104" ], "x-ms-correlation-request-id": [ - "721b11c5-8199-49c4-961d-eaaa8ef446d6" + "c8ecc9b2-3018-4755-90c4-3f3f684b973e" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T201909Z:721b11c5-8199-49c4-961d-eaaa8ef446d6" + "JIOINDIAWEST:20220516T191423Z:c8ecc9b2-3018-4755-90c4-3f3f684b973e" ], "Date": [ - "Wed, 23 Feb 2022 20:19:09 GMT" + "Mon, 16 May 2022 19:14:23 GMT" ], "Content-Length": [ "188" @@ -10278,26 +10965,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"b3d5765d-c582-434f-970b-19e2692cf313\",\r\n \"name\": \"b3d5765d-c582-434f-970b-19e2692cf313\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-23T20:18:41.0151463Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"b6127368-4375-49c2-9bf9-7f9216108dd2\",\r\n \"name\": \"b6127368-4375-49c2-9bf9-7f9216108dd2\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T19:13:49.3286787Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.RecoveryServices/vaults/PSTestRSVf3c6e251/backupOperations/b3d5765d-c582-434f-970b-19e2692cf313?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZjNjNmUyNTEvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZmM2M2ZTI1MS9iYWNrdXBPcGVyYXRpb25zL2IzZDU3NjVkLWM1ODItNDM0Zi05NzBiLTE5ZTI2OTJjZjMxMz9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.RecoveryServices/vaults/PSTestRSV972e6a32/backupOperations/b6127368-4375-49c2-9bf9-7f9216108dd2?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTcyZTZhMzIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5NzJlNmEzMi9iYWNrdXBPcGVyYXRpb25zL2I2MTI3MzY4LTQzNzUtNDljMi05YmY5LTdmOTIxNjEwOGRkMj9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a728ca37-20e5-4c00-ad5e-15914ba6122f" + "1ccb7690-3d48-46fc-b80e-33ca2b1ac803" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -10311,11 +10998,11 @@ "nosniff" ], "x-ms-request-id": [ - "fe6e6349-1cb0-4f96-bee4-9f400f5f9894" + "efe98033-1ff6-49df-b08e-996d26e01a59" ], "x-ms-client-request-id": [ - "a728ca37-20e5-4c00-ad5e-15914ba6122f", - "a728ca37-20e5-4c00-ad5e-15914ba6122f" + "1ccb7690-3d48-46fc-b80e-33ca2b1ac803", + "1ccb7690-3d48-46fc-b80e-33ca2b1ac803" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -10327,16 +11014,16 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "106" + "103" ], "x-ms-correlation-request-id": [ - "fe6e6349-1cb0-4f96-bee4-9f400f5f9894" + "efe98033-1ff6-49df-b08e-996d26e01a59" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T201915Z:fe6e6349-1cb0-4f96-bee4-9f400f5f9894" + "JIOINDIAWEST:20220516T191429Z:efe98033-1ff6-49df-b08e-996d26e01a59" ], "Date": [ - "Wed, 23 Feb 2022 20:19:14 GMT" + "Mon, 16 May 2022 19:14:29 GMT" ], "Content-Length": [ "188" @@ -10348,26 +11035,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"b3d5765d-c582-434f-970b-19e2692cf313\",\r\n \"name\": \"b3d5765d-c582-434f-970b-19e2692cf313\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-23T20:18:41.0151463Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"b6127368-4375-49c2-9bf9-7f9216108dd2\",\r\n \"name\": \"b6127368-4375-49c2-9bf9-7f9216108dd2\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T19:13:49.3286787Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.RecoveryServices/vaults/PSTestRSVf3c6e251/backupOperations/b3d5765d-c582-434f-970b-19e2692cf313?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZjNjNmUyNTEvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZmM2M2ZTI1MS9iYWNrdXBPcGVyYXRpb25zL2IzZDU3NjVkLWM1ODItNDM0Zi05NzBiLTE5ZTI2OTJjZjMxMz9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.RecoveryServices/vaults/PSTestRSV972e6a32/backupOperations/b6127368-4375-49c2-9bf9-7f9216108dd2?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTcyZTZhMzIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5NzJlNmEzMi9iYWNrdXBPcGVyYXRpb25zL2I2MTI3MzY4LTQzNzUtNDljMi05YmY5LTdmOTIxNjEwOGRkMj9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a728ca37-20e5-4c00-ad5e-15914ba6122f" + "1ccb7690-3d48-46fc-b80e-33ca2b1ac803" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -10381,11 +11068,11 @@ "nosniff" ], "x-ms-request-id": [ - "8bb2803c-f06e-43d2-88e5-f4f1c2436f16" + "01a0fae9-4948-4321-b8f9-9cda663c3e89" ], "x-ms-client-request-id": [ - "a728ca37-20e5-4c00-ad5e-15914ba6122f", - "a728ca37-20e5-4c00-ad5e-15914ba6122f" + "1ccb7690-3d48-46fc-b80e-33ca2b1ac803", + "1ccb7690-3d48-46fc-b80e-33ca2b1ac803" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -10397,16 +11084,16 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "105" + "102" ], "x-ms-correlation-request-id": [ - "8bb2803c-f06e-43d2-88e5-f4f1c2436f16" + "01a0fae9-4948-4321-b8f9-9cda663c3e89" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T201920Z:8bb2803c-f06e-43d2-88e5-f4f1c2436f16" + "JIOINDIAWEST:20220516T191435Z:01a0fae9-4948-4321-b8f9-9cda663c3e89" ], "Date": [ - "Wed, 23 Feb 2022 20:19:20 GMT" + "Mon, 16 May 2022 19:14:34 GMT" ], "Content-Length": [ "188" @@ -10418,26 +11105,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"b3d5765d-c582-434f-970b-19e2692cf313\",\r\n \"name\": \"b3d5765d-c582-434f-970b-19e2692cf313\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-23T20:18:41.0151463Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"b6127368-4375-49c2-9bf9-7f9216108dd2\",\r\n \"name\": \"b6127368-4375-49c2-9bf9-7f9216108dd2\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T19:13:49.3286787Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.RecoveryServices/vaults/PSTestRSVf3c6e251/backupOperations/b3d5765d-c582-434f-970b-19e2692cf313?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZjNjNmUyNTEvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZmM2M2ZTI1MS9iYWNrdXBPcGVyYXRpb25zL2IzZDU3NjVkLWM1ODItNDM0Zi05NzBiLTE5ZTI2OTJjZjMxMz9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.RecoveryServices/vaults/PSTestRSV972e6a32/backupOperations/b6127368-4375-49c2-9bf9-7f9216108dd2?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTcyZTZhMzIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5NzJlNmEzMi9iYWNrdXBPcGVyYXRpb25zL2I2MTI3MzY4LTQzNzUtNDljMi05YmY5LTdmOTIxNjEwOGRkMj9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a728ca37-20e5-4c00-ad5e-15914ba6122f" + "1ccb7690-3d48-46fc-b80e-33ca2b1ac803" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -10451,11 +11138,11 @@ "nosniff" ], "x-ms-request-id": [ - "86d7b85e-6fe9-4928-b010-ec75008db02a" + "35a4ef42-6786-42ed-aa6e-6ca3a1105af6" ], "x-ms-client-request-id": [ - "a728ca37-20e5-4c00-ad5e-15914ba6122f", - "a728ca37-20e5-4c00-ad5e-15914ba6122f" + "1ccb7690-3d48-46fc-b80e-33ca2b1ac803", + "1ccb7690-3d48-46fc-b80e-33ca2b1ac803" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -10467,16 +11154,16 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "104" + "101" ], "x-ms-correlation-request-id": [ - "86d7b85e-6fe9-4928-b010-ec75008db02a" + "35a4ef42-6786-42ed-aa6e-6ca3a1105af6" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T201926Z:86d7b85e-6fe9-4928-b010-ec75008db02a" + "JIOINDIAWEST:20220516T191440Z:35a4ef42-6786-42ed-aa6e-6ca3a1105af6" ], "Date": [ - "Wed, 23 Feb 2022 20:19:25 GMT" + "Mon, 16 May 2022 19:14:40 GMT" ], "Content-Length": [ "188" @@ -10488,26 +11175,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"b3d5765d-c582-434f-970b-19e2692cf313\",\r\n \"name\": \"b3d5765d-c582-434f-970b-19e2692cf313\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-23T20:18:41.0151463Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"b6127368-4375-49c2-9bf9-7f9216108dd2\",\r\n \"name\": \"b6127368-4375-49c2-9bf9-7f9216108dd2\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T19:13:49.3286787Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.RecoveryServices/vaults/PSTestRSVf3c6e251/backupOperations/b3d5765d-c582-434f-970b-19e2692cf313?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZjNjNmUyNTEvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZmM2M2ZTI1MS9iYWNrdXBPcGVyYXRpb25zL2IzZDU3NjVkLWM1ODItNDM0Zi05NzBiLTE5ZTI2OTJjZjMxMz9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.RecoveryServices/vaults/PSTestRSV972e6a32/backupOperations/b6127368-4375-49c2-9bf9-7f9216108dd2?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTcyZTZhMzIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5NzJlNmEzMi9iYWNrdXBPcGVyYXRpb25zL2I2MTI3MzY4LTQzNzUtNDljMi05YmY5LTdmOTIxNjEwOGRkMj9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a728ca37-20e5-4c00-ad5e-15914ba6122f" + "1ccb7690-3d48-46fc-b80e-33ca2b1ac803" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -10521,11 +11208,11 @@ "nosniff" ], "x-ms-request-id": [ - "f50f4419-39c8-4853-9146-0d41a4fbc113" + "5aebea6e-baf7-433c-a255-7ecdf5be223b" ], "x-ms-client-request-id": [ - "a728ca37-20e5-4c00-ad5e-15914ba6122f", - "a728ca37-20e5-4c00-ad5e-15914ba6122f" + "1ccb7690-3d48-46fc-b80e-33ca2b1ac803", + "1ccb7690-3d48-46fc-b80e-33ca2b1ac803" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -10537,16 +11224,16 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "103" + "100" ], "x-ms-correlation-request-id": [ - "f50f4419-39c8-4853-9146-0d41a4fbc113" + "5aebea6e-baf7-433c-a255-7ecdf5be223b" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T201931Z:f50f4419-39c8-4853-9146-0d41a4fbc113" + "JIOINDIAWEST:20220516T191446Z:5aebea6e-baf7-433c-a255-7ecdf5be223b" ], "Date": [ - "Wed, 23 Feb 2022 20:19:31 GMT" + "Mon, 16 May 2022 19:14:45 GMT" ], "Content-Length": [ "188" @@ -10558,26 +11245,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"b3d5765d-c582-434f-970b-19e2692cf313\",\r\n \"name\": \"b3d5765d-c582-434f-970b-19e2692cf313\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-23T20:18:41.0151463Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"b6127368-4375-49c2-9bf9-7f9216108dd2\",\r\n \"name\": \"b6127368-4375-49c2-9bf9-7f9216108dd2\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T19:13:49.3286787Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.RecoveryServices/vaults/PSTestRSVf3c6e251/backupOperations/b3d5765d-c582-434f-970b-19e2692cf313?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZjNjNmUyNTEvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZmM2M2ZTI1MS9iYWNrdXBPcGVyYXRpb25zL2IzZDU3NjVkLWM1ODItNDM0Zi05NzBiLTE5ZTI2OTJjZjMxMz9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.RecoveryServices/vaults/PSTestRSV972e6a32/backupOperations/b6127368-4375-49c2-9bf9-7f9216108dd2?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTcyZTZhMzIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5NzJlNmEzMi9iYWNrdXBPcGVyYXRpb25zL2I2MTI3MzY4LTQzNzUtNDljMi05YmY5LTdmOTIxNjEwOGRkMj9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a728ca37-20e5-4c00-ad5e-15914ba6122f" + "1ccb7690-3d48-46fc-b80e-33ca2b1ac803" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -10591,11 +11278,11 @@ "nosniff" ], "x-ms-request-id": [ - "55c654ff-274b-4efe-b4d4-009cdf852e16" + "aa0dbc1b-49fc-4fb3-b345-826625e341ae" ], "x-ms-client-request-id": [ - "a728ca37-20e5-4c00-ad5e-15914ba6122f", - "a728ca37-20e5-4c00-ad5e-15914ba6122f" + "1ccb7690-3d48-46fc-b80e-33ca2b1ac803", + "1ccb7690-3d48-46fc-b80e-33ca2b1ac803" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -10607,16 +11294,16 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "102" + "99" ], "x-ms-correlation-request-id": [ - "55c654ff-274b-4efe-b4d4-009cdf852e16" + "aa0dbc1b-49fc-4fb3-b345-826625e341ae" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T201937Z:55c654ff-274b-4efe-b4d4-009cdf852e16" + "JIOINDIAWEST:20220516T191451Z:aa0dbc1b-49fc-4fb3-b345-826625e341ae" ], "Date": [ - "Wed, 23 Feb 2022 20:19:36 GMT" + "Mon, 16 May 2022 19:14:51 GMT" ], "Content-Length": [ "188" @@ -10628,26 +11315,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"b3d5765d-c582-434f-970b-19e2692cf313\",\r\n \"name\": \"b3d5765d-c582-434f-970b-19e2692cf313\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-23T20:18:41.0151463Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"b6127368-4375-49c2-9bf9-7f9216108dd2\",\r\n \"name\": \"b6127368-4375-49c2-9bf9-7f9216108dd2\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T19:13:49.3286787Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.RecoveryServices/vaults/PSTestRSVf3c6e251/backupOperations/b3d5765d-c582-434f-970b-19e2692cf313?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZjNjNmUyNTEvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZmM2M2ZTI1MS9iYWNrdXBPcGVyYXRpb25zL2IzZDU3NjVkLWM1ODItNDM0Zi05NzBiLTE5ZTI2OTJjZjMxMz9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.RecoveryServices/vaults/PSTestRSV972e6a32/backupOperations/b6127368-4375-49c2-9bf9-7f9216108dd2?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTcyZTZhMzIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5NzJlNmEzMi9iYWNrdXBPcGVyYXRpb25zL2I2MTI3MzY4LTQzNzUtNDljMi05YmY5LTdmOTIxNjEwOGRkMj9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a728ca37-20e5-4c00-ad5e-15914ba6122f" + "1ccb7690-3d48-46fc-b80e-33ca2b1ac803" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -10661,11 +11348,11 @@ "nosniff" ], "x-ms-request-id": [ - "178387e5-cfc4-442a-8194-ca479acd5554" + "a1bd3670-2b86-412a-8820-509c830ad860" ], "x-ms-client-request-id": [ - "a728ca37-20e5-4c00-ad5e-15914ba6122f", - "a728ca37-20e5-4c00-ad5e-15914ba6122f" + "1ccb7690-3d48-46fc-b80e-33ca2b1ac803", + "1ccb7690-3d48-46fc-b80e-33ca2b1ac803" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -10677,16 +11364,16 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "101" + "98" ], "x-ms-correlation-request-id": [ - "178387e5-cfc4-442a-8194-ca479acd5554" + "a1bd3670-2b86-412a-8820-509c830ad860" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T201942Z:178387e5-cfc4-442a-8194-ca479acd5554" + "JIOINDIAWEST:20220516T191457Z:a1bd3670-2b86-412a-8820-509c830ad860" ], "Date": [ - "Wed, 23 Feb 2022 20:19:42 GMT" + "Mon, 16 May 2022 19:14:56 GMT" ], "Content-Length": [ "188" @@ -10698,26 +11385,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"b3d5765d-c582-434f-970b-19e2692cf313\",\r\n \"name\": \"b3d5765d-c582-434f-970b-19e2692cf313\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-23T20:18:41.0151463Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"b6127368-4375-49c2-9bf9-7f9216108dd2\",\r\n \"name\": \"b6127368-4375-49c2-9bf9-7f9216108dd2\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T19:13:49.3286787Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.RecoveryServices/vaults/PSTestRSVf3c6e251/backupOperations/b3d5765d-c582-434f-970b-19e2692cf313?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZjNjNmUyNTEvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZmM2M2ZTI1MS9iYWNrdXBPcGVyYXRpb25zL2IzZDU3NjVkLWM1ODItNDM0Zi05NzBiLTE5ZTI2OTJjZjMxMz9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.RecoveryServices/vaults/PSTestRSV972e6a32/backupOperations/b6127368-4375-49c2-9bf9-7f9216108dd2?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTcyZTZhMzIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5NzJlNmEzMi9iYWNrdXBPcGVyYXRpb25zL2I2MTI3MzY4LTQzNzUtNDljMi05YmY5LTdmOTIxNjEwOGRkMj9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a728ca37-20e5-4c00-ad5e-15914ba6122f" + "1ccb7690-3d48-46fc-b80e-33ca2b1ac803" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -10731,11 +11418,11 @@ "nosniff" ], "x-ms-request-id": [ - "9e014440-92ee-4169-92ee-fab9d3cfa046" + "516e7e55-f9fe-401d-af21-3e28e4f7d8b8" ], "x-ms-client-request-id": [ - "a728ca37-20e5-4c00-ad5e-15914ba6122f", - "a728ca37-20e5-4c00-ad5e-15914ba6122f" + "1ccb7690-3d48-46fc-b80e-33ca2b1ac803", + "1ccb7690-3d48-46fc-b80e-33ca2b1ac803" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -10747,16 +11434,16 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "100" + "97" ], "x-ms-correlation-request-id": [ - "9e014440-92ee-4169-92ee-fab9d3cfa046" + "516e7e55-f9fe-401d-af21-3e28e4f7d8b8" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T201948Z:9e014440-92ee-4169-92ee-fab9d3cfa046" + "JIOINDIAWEST:20220516T191502Z:516e7e55-f9fe-401d-af21-3e28e4f7d8b8" ], "Date": [ - "Wed, 23 Feb 2022 20:19:47 GMT" + "Mon, 16 May 2022 19:15:01 GMT" ], "Content-Length": [ "188" @@ -10768,26 +11455,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"b3d5765d-c582-434f-970b-19e2692cf313\",\r\n \"name\": \"b3d5765d-c582-434f-970b-19e2692cf313\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-23T20:18:41.0151463Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"b6127368-4375-49c2-9bf9-7f9216108dd2\",\r\n \"name\": \"b6127368-4375-49c2-9bf9-7f9216108dd2\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T19:13:49.3286787Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.RecoveryServices/vaults/PSTestRSVf3c6e251/backupOperations/b3d5765d-c582-434f-970b-19e2692cf313?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZjNjNmUyNTEvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZmM2M2ZTI1MS9iYWNrdXBPcGVyYXRpb25zL2IzZDU3NjVkLWM1ODItNDM0Zi05NzBiLTE5ZTI2OTJjZjMxMz9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.RecoveryServices/vaults/PSTestRSV972e6a32/backupOperations/b6127368-4375-49c2-9bf9-7f9216108dd2?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTcyZTZhMzIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5NzJlNmEzMi9iYWNrdXBPcGVyYXRpb25zL2I2MTI3MzY4LTQzNzUtNDljMi05YmY5LTdmOTIxNjEwOGRkMj9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a728ca37-20e5-4c00-ad5e-15914ba6122f" + "1ccb7690-3d48-46fc-b80e-33ca2b1ac803" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -10801,11 +11488,11 @@ "nosniff" ], "x-ms-request-id": [ - "2ca1107d-f7a6-465c-8726-03b917f48052" + "a0f34813-ff34-4c70-8e92-19ee16fa7b63" ], "x-ms-client-request-id": [ - "a728ca37-20e5-4c00-ad5e-15914ba6122f", - "a728ca37-20e5-4c00-ad5e-15914ba6122f" + "1ccb7690-3d48-46fc-b80e-33ca2b1ac803", + "1ccb7690-3d48-46fc-b80e-33ca2b1ac803" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -10817,16 +11504,16 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "99" + "96" ], "x-ms-correlation-request-id": [ - "2ca1107d-f7a6-465c-8726-03b917f48052" + "a0f34813-ff34-4c70-8e92-19ee16fa7b63" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T201954Z:2ca1107d-f7a6-465c-8726-03b917f48052" + "JIOINDIAWEST:20220516T191508Z:a0f34813-ff34-4c70-8e92-19ee16fa7b63" ], "Date": [ - "Wed, 23 Feb 2022 20:19:53 GMT" + "Mon, 16 May 2022 19:15:08 GMT" ], "Content-Length": [ "188" @@ -10838,26 +11525,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"b3d5765d-c582-434f-970b-19e2692cf313\",\r\n \"name\": \"b3d5765d-c582-434f-970b-19e2692cf313\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-23T20:18:41.0151463Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"b6127368-4375-49c2-9bf9-7f9216108dd2\",\r\n \"name\": \"b6127368-4375-49c2-9bf9-7f9216108dd2\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T19:13:49.3286787Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.RecoveryServices/vaults/PSTestRSVf3c6e251/backupOperations/b3d5765d-c582-434f-970b-19e2692cf313?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZjNjNmUyNTEvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZmM2M2ZTI1MS9iYWNrdXBPcGVyYXRpb25zL2IzZDU3NjVkLWM1ODItNDM0Zi05NzBiLTE5ZTI2OTJjZjMxMz9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.RecoveryServices/vaults/PSTestRSV972e6a32/backupOperations/b6127368-4375-49c2-9bf9-7f9216108dd2?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTcyZTZhMzIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5NzJlNmEzMi9iYWNrdXBPcGVyYXRpb25zL2I2MTI3MzY4LTQzNzUtNDljMi05YmY5LTdmOTIxNjEwOGRkMj9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a728ca37-20e5-4c00-ad5e-15914ba6122f" + "1ccb7690-3d48-46fc-b80e-33ca2b1ac803" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -10871,11 +11558,11 @@ "nosniff" ], "x-ms-request-id": [ - "a8d94a10-843f-4fc7-83ee-d901c9847a54" + "19d1536a-8608-48aa-8fa3-658214237706" ], "x-ms-client-request-id": [ - "a728ca37-20e5-4c00-ad5e-15914ba6122f", - "a728ca37-20e5-4c00-ad5e-15914ba6122f" + "1ccb7690-3d48-46fc-b80e-33ca2b1ac803", + "1ccb7690-3d48-46fc-b80e-33ca2b1ac803" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -10887,16 +11574,16 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "98" + "95" ], "x-ms-correlation-request-id": [ - "a8d94a10-843f-4fc7-83ee-d901c9847a54" + "19d1536a-8608-48aa-8fa3-658214237706" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T202007Z:a8d94a10-843f-4fc7-83ee-d901c9847a54" + "JIOINDIAWEST:20220516T191513Z:19d1536a-8608-48aa-8fa3-658214237706" ], "Date": [ - "Wed, 23 Feb 2022 20:20:07 GMT" + "Mon, 16 May 2022 19:15:13 GMT" ], "Content-Length": [ "188" @@ -10908,26 +11595,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"b3d5765d-c582-434f-970b-19e2692cf313\",\r\n \"name\": \"b3d5765d-c582-434f-970b-19e2692cf313\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-23T20:18:41.0151463Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"b6127368-4375-49c2-9bf9-7f9216108dd2\",\r\n \"name\": \"b6127368-4375-49c2-9bf9-7f9216108dd2\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T19:13:49.3286787Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.RecoveryServices/vaults/PSTestRSVf3c6e251/backupOperations/b3d5765d-c582-434f-970b-19e2692cf313?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZjNjNmUyNTEvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZmM2M2ZTI1MS9iYWNrdXBPcGVyYXRpb25zL2IzZDU3NjVkLWM1ODItNDM0Zi05NzBiLTE5ZTI2OTJjZjMxMz9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.RecoveryServices/vaults/PSTestRSV972e6a32/backupOperations/b6127368-4375-49c2-9bf9-7f9216108dd2?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTcyZTZhMzIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5NzJlNmEzMi9iYWNrdXBPcGVyYXRpb25zL2I2MTI3MzY4LTQzNzUtNDljMi05YmY5LTdmOTIxNjEwOGRkMj9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a728ca37-20e5-4c00-ad5e-15914ba6122f" + "1ccb7690-3d48-46fc-b80e-33ca2b1ac803" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -10941,11 +11628,11 @@ "nosniff" ], "x-ms-request-id": [ - "6a71cf0a-535e-4338-8313-5a040ee07d55" + "42560fa6-51dd-4b59-8f1a-91859281e012" ], "x-ms-client-request-id": [ - "a728ca37-20e5-4c00-ad5e-15914ba6122f", - "a728ca37-20e5-4c00-ad5e-15914ba6122f" + "1ccb7690-3d48-46fc-b80e-33ca2b1ac803", + "1ccb7690-3d48-46fc-b80e-33ca2b1ac803" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -10957,16 +11644,16 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "97" + "94" ], "x-ms-correlation-request-id": [ - "6a71cf0a-535e-4338-8313-5a040ee07d55" + "42560fa6-51dd-4b59-8f1a-91859281e012" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T202013Z:6a71cf0a-535e-4338-8313-5a040ee07d55" + "JIOINDIAWEST:20220516T191519Z:42560fa6-51dd-4b59-8f1a-91859281e012" ], "Date": [ - "Wed, 23 Feb 2022 20:20:12 GMT" + "Mon, 16 May 2022 19:15:19 GMT" ], "Content-Length": [ "188" @@ -10978,26 +11665,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"b3d5765d-c582-434f-970b-19e2692cf313\",\r\n \"name\": \"b3d5765d-c582-434f-970b-19e2692cf313\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-23T20:18:41.0151463Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"b6127368-4375-49c2-9bf9-7f9216108dd2\",\r\n \"name\": \"b6127368-4375-49c2-9bf9-7f9216108dd2\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T19:13:49.3286787Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.RecoveryServices/vaults/PSTestRSVf3c6e251/backupOperations/b3d5765d-c582-434f-970b-19e2692cf313?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZjNjNmUyNTEvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZmM2M2ZTI1MS9iYWNrdXBPcGVyYXRpb25zL2IzZDU3NjVkLWM1ODItNDM0Zi05NzBiLTE5ZTI2OTJjZjMxMz9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.RecoveryServices/vaults/PSTestRSV972e6a32/backupOperations/b6127368-4375-49c2-9bf9-7f9216108dd2?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTcyZTZhMzIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5NzJlNmEzMi9iYWNrdXBPcGVyYXRpb25zL2I2MTI3MzY4LTQzNzUtNDljMi05YmY5LTdmOTIxNjEwOGRkMj9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a728ca37-20e5-4c00-ad5e-15914ba6122f" + "1ccb7690-3d48-46fc-b80e-33ca2b1ac803" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -11011,11 +11698,11 @@ "nosniff" ], "x-ms-request-id": [ - "6eed0000-714d-42c4-b52e-32144c358df0" + "463db74d-e215-4d47-bf44-b6403e1e29ae" ], "x-ms-client-request-id": [ - "a728ca37-20e5-4c00-ad5e-15914ba6122f", - "a728ca37-20e5-4c00-ad5e-15914ba6122f" + "1ccb7690-3d48-46fc-b80e-33ca2b1ac803", + "1ccb7690-3d48-46fc-b80e-33ca2b1ac803" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -11027,16 +11714,16 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "96" + "93" ], "x-ms-correlation-request-id": [ - "6eed0000-714d-42c4-b52e-32144c358df0" + "463db74d-e215-4d47-bf44-b6403e1e29ae" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T202019Z:6eed0000-714d-42c4-b52e-32144c358df0" + "JIOINDIAWEST:20220516T191524Z:463db74d-e215-4d47-bf44-b6403e1e29ae" ], "Date": [ - "Wed, 23 Feb 2022 20:20:18 GMT" + "Mon, 16 May 2022 19:15:24 GMT" ], "Content-Length": [ "188" @@ -11048,26 +11735,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"b3d5765d-c582-434f-970b-19e2692cf313\",\r\n \"name\": \"b3d5765d-c582-434f-970b-19e2692cf313\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-23T20:18:41.0151463Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"b6127368-4375-49c2-9bf9-7f9216108dd2\",\r\n \"name\": \"b6127368-4375-49c2-9bf9-7f9216108dd2\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T19:13:49.3286787Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.RecoveryServices/vaults/PSTestRSVf3c6e251/backupOperations/b3d5765d-c582-434f-970b-19e2692cf313?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZjNjNmUyNTEvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZmM2M2ZTI1MS9iYWNrdXBPcGVyYXRpb25zL2IzZDU3NjVkLWM1ODItNDM0Zi05NzBiLTE5ZTI2OTJjZjMxMz9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.RecoveryServices/vaults/PSTestRSV972e6a32/backupOperations/b6127368-4375-49c2-9bf9-7f9216108dd2?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTcyZTZhMzIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5NzJlNmEzMi9iYWNrdXBPcGVyYXRpb25zL2I2MTI3MzY4LTQzNzUtNDljMi05YmY5LTdmOTIxNjEwOGRkMj9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a728ca37-20e5-4c00-ad5e-15914ba6122f" + "1ccb7690-3d48-46fc-b80e-33ca2b1ac803" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -11081,11 +11768,11 @@ "nosniff" ], "x-ms-request-id": [ - "33ee966c-8169-4dc5-b3d1-7e3190bf00b6" + "211836c2-8e87-4cf8-9a52-edeeca15489f" ], "x-ms-client-request-id": [ - "a728ca37-20e5-4c00-ad5e-15914ba6122f", - "a728ca37-20e5-4c00-ad5e-15914ba6122f" + "1ccb7690-3d48-46fc-b80e-33ca2b1ac803", + "1ccb7690-3d48-46fc-b80e-33ca2b1ac803" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -11097,16 +11784,16 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "95" + "92" ], "x-ms-correlation-request-id": [ - "33ee966c-8169-4dc5-b3d1-7e3190bf00b6" + "211836c2-8e87-4cf8-9a52-edeeca15489f" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T202024Z:33ee966c-8169-4dc5-b3d1-7e3190bf00b6" + "JIOINDIAWEST:20220516T191530Z:211836c2-8e87-4cf8-9a52-edeeca15489f" ], "Date": [ - "Wed, 23 Feb 2022 20:20:23 GMT" + "Mon, 16 May 2022 19:15:29 GMT" ], "Content-Length": [ "188" @@ -11118,26 +11805,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"b3d5765d-c582-434f-970b-19e2692cf313\",\r\n \"name\": \"b3d5765d-c582-434f-970b-19e2692cf313\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-23T20:18:41.0151463Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"b6127368-4375-49c2-9bf9-7f9216108dd2\",\r\n \"name\": \"b6127368-4375-49c2-9bf9-7f9216108dd2\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T19:13:49.3286787Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.RecoveryServices/vaults/PSTestRSVf3c6e251/backupOperations/b3d5765d-c582-434f-970b-19e2692cf313?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZjNjNmUyNTEvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZmM2M2ZTI1MS9iYWNrdXBPcGVyYXRpb25zL2IzZDU3NjVkLWM1ODItNDM0Zi05NzBiLTE5ZTI2OTJjZjMxMz9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.RecoveryServices/vaults/PSTestRSV972e6a32/backupOperations/b6127368-4375-49c2-9bf9-7f9216108dd2?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTcyZTZhMzIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5NzJlNmEzMi9iYWNrdXBPcGVyYXRpb25zL2I2MTI3MzY4LTQzNzUtNDljMi05YmY5LTdmOTIxNjEwOGRkMj9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a728ca37-20e5-4c00-ad5e-15914ba6122f" + "1ccb7690-3d48-46fc-b80e-33ca2b1ac803" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -11151,11 +11838,11 @@ "nosniff" ], "x-ms-request-id": [ - "ca510271-da75-45cc-8021-ac14b2e03d42" + "c0b219b7-13e0-48b3-a01f-9a1236dc8e3c" ], "x-ms-client-request-id": [ - "a728ca37-20e5-4c00-ad5e-15914ba6122f", - "a728ca37-20e5-4c00-ad5e-15914ba6122f" + "1ccb7690-3d48-46fc-b80e-33ca2b1ac803", + "1ccb7690-3d48-46fc-b80e-33ca2b1ac803" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -11167,16 +11854,16 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "94" + "91" ], "x-ms-correlation-request-id": [ - "ca510271-da75-45cc-8021-ac14b2e03d42" + "c0b219b7-13e0-48b3-a01f-9a1236dc8e3c" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T202030Z:ca510271-da75-45cc-8021-ac14b2e03d42" + "JIOINDIAWEST:20220516T191535Z:c0b219b7-13e0-48b3-a01f-9a1236dc8e3c" ], "Date": [ - "Wed, 23 Feb 2022 20:20:29 GMT" + "Mon, 16 May 2022 19:15:35 GMT" ], "Content-Length": [ "188" @@ -11188,26 +11875,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"b3d5765d-c582-434f-970b-19e2692cf313\",\r\n \"name\": \"b3d5765d-c582-434f-970b-19e2692cf313\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-23T20:18:41.0151463Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"b6127368-4375-49c2-9bf9-7f9216108dd2\",\r\n \"name\": \"b6127368-4375-49c2-9bf9-7f9216108dd2\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T19:13:49.3286787Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.RecoveryServices/vaults/PSTestRSVf3c6e251/backupOperations/b3d5765d-c582-434f-970b-19e2692cf313?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZjNjNmUyNTEvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZmM2M2ZTI1MS9iYWNrdXBPcGVyYXRpb25zL2IzZDU3NjVkLWM1ODItNDM0Zi05NzBiLTE5ZTI2OTJjZjMxMz9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.RecoveryServices/vaults/PSTestRSV972e6a32/backupOperations/b6127368-4375-49c2-9bf9-7f9216108dd2?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTcyZTZhMzIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5NzJlNmEzMi9iYWNrdXBPcGVyYXRpb25zL2I2MTI3MzY4LTQzNzUtNDljMi05YmY5LTdmOTIxNjEwOGRkMj9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a728ca37-20e5-4c00-ad5e-15914ba6122f" + "1ccb7690-3d48-46fc-b80e-33ca2b1ac803" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -11221,11 +11908,11 @@ "nosniff" ], "x-ms-request-id": [ - "9588f19d-2fe2-4ba9-958b-3aa84822b495" + "8df7b2a8-a216-4041-aad4-fd045a64c140" ], "x-ms-client-request-id": [ - "a728ca37-20e5-4c00-ad5e-15914ba6122f", - "a728ca37-20e5-4c00-ad5e-15914ba6122f" + "1ccb7690-3d48-46fc-b80e-33ca2b1ac803", + "1ccb7690-3d48-46fc-b80e-33ca2b1ac803" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -11237,16 +11924,16 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "93" + "90" ], "x-ms-correlation-request-id": [ - "9588f19d-2fe2-4ba9-958b-3aa84822b495" + "8df7b2a8-a216-4041-aad4-fd045a64c140" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T202035Z:9588f19d-2fe2-4ba9-958b-3aa84822b495" + "JIOINDIAWEST:20220516T191541Z:8df7b2a8-a216-4041-aad4-fd045a64c140" ], "Date": [ - "Wed, 23 Feb 2022 20:20:34 GMT" + "Mon, 16 May 2022 19:15:40 GMT" ], "Content-Length": [ "304" @@ -11258,26 +11945,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"b3d5765d-c582-434f-970b-19e2692cf313\",\r\n \"name\": \"b3d5765d-c582-434f-970b-19e2692cf313\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-02-23T20:18:41.0151463Z\",\r\n \"endTime\": \"2022-02-23T20:18:41.0151463Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"6f09a904-dc2b-4893-8392-b583e3188b0f\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"b6127368-4375-49c2-9bf9-7f9216108dd2\",\r\n \"name\": \"b6127368-4375-49c2-9bf9-7f9216108dd2\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-05-16T19:13:49.3286787Z\",\r\n \"endTime\": \"2022-05-16T19:13:49.3286787Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"03fe92e3-b76c-4042-b52e-174d8326605e\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.RecoveryServices/vaults/PSTestRSVf3c6e251/backupOperations/b3d5765d-c582-434f-970b-19e2692cf313?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZjNjNmUyNTEvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZmM2M2ZTI1MS9iYWNrdXBPcGVyYXRpb25zL2IzZDU3NjVkLWM1ODItNDM0Zi05NzBiLTE5ZTI2OTJjZjMxMz9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.RecoveryServices/vaults/PSTestRSV972e6a32/backupOperations/b6127368-4375-49c2-9bf9-7f9216108dd2?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTcyZTZhMzIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5NzJlNmEzMi9iYWNrdXBPcGVyYXRpb25zL2I2MTI3MzY4LTQzNzUtNDljMi05YmY5LTdmOTIxNjEwOGRkMj9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a728ca37-20e5-4c00-ad5e-15914ba6122f" + "1ccb7690-3d48-46fc-b80e-33ca2b1ac803" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -11291,11 +11978,11 @@ "nosniff" ], "x-ms-request-id": [ - "c22174ca-c4ee-4f37-a0ec-8ca922b83c6d" + "e89838d5-6714-42b7-ae86-e57304759bd5" ], "x-ms-client-request-id": [ - "a728ca37-20e5-4c00-ad5e-15914ba6122f", - "a728ca37-20e5-4c00-ad5e-15914ba6122f" + "1ccb7690-3d48-46fc-b80e-33ca2b1ac803", + "1ccb7690-3d48-46fc-b80e-33ca2b1ac803" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -11307,16 +11994,16 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "92" + "89" ], "x-ms-correlation-request-id": [ - "c22174ca-c4ee-4f37-a0ec-8ca922b83c6d" + "e89838d5-6714-42b7-ae86-e57304759bd5" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T202115Z:c22174ca-c4ee-4f37-a0ec-8ca922b83c6d" + "JIOINDIAWEST:20220516T191541Z:e89838d5-6714-42b7-ae86-e57304759bd5" ], "Date": [ - "Wed, 23 Feb 2022 20:21:15 GMT" + "Mon, 16 May 2022 19:15:41 GMT" ], "Content-Length": [ "304" @@ -11328,26 +12015,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"b3d5765d-c582-434f-970b-19e2692cf313\",\r\n \"name\": \"b3d5765d-c582-434f-970b-19e2692cf313\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-02-23T20:18:41.0151463Z\",\r\n \"endTime\": \"2022-02-23T20:18:41.0151463Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"6f09a904-dc2b-4893-8392-b583e3188b0f\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"b6127368-4375-49c2-9bf9-7f9216108dd2\",\r\n \"name\": \"b6127368-4375-49c2-9bf9-7f9216108dd2\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-05-16T19:13:49.3286787Z\",\r\n \"endTime\": \"2022-05-16T19:13:49.3286787Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"03fe92e3-b76c-4042-b52e-174d8326605e\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.RecoveryServices/vaults/PSTestRSVf3c6e251/backupJobs/6f09a904-dc2b-4893-8392-b583e3188b0f?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZjNjNmUyNTEvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZmM2M2ZTI1MS9iYWNrdXBKb2JzLzZmMDlhOTA0LWRjMmItNDg5My04MzkyLWI1ODNlMzE4OGIwZj9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.RecoveryServices/vaults/PSTestRSV972e6a32/backupJobs/03fe92e3-b76c-4042-b52e-174d8326605e?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTcyZTZhMzIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5NzJlNmEzMi9iYWNrdXBKb2JzLzAzZmU5MmUzLWI3NmMtNDA0Mi1iNTJlLTE3NGQ4MzI2NjA1ZT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a728ca37-20e5-4c00-ad5e-15914ba6122f" + "1ccb7690-3d48-46fc-b80e-33ca2b1ac803" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -11365,11 +12052,11 @@ "nosniff" ], "x-ms-request-id": [ - "46f04a39-06af-40ed-bcd7-e635052671e3" + "3fedba72-9694-4d09-8e36-00e46a86fb41" ], "x-ms-client-request-id": [ - "a728ca37-20e5-4c00-ad5e-15914ba6122f", - "a728ca37-20e5-4c00-ad5e-15914ba6122f" + "1ccb7690-3d48-46fc-b80e-33ca2b1ac803", + "1ccb7690-3d48-46fc-b80e-33ca2b1ac803" ], "X-Powered-By": [ "ASP.NET" @@ -11381,13 +12068,13 @@ "145" ], "x-ms-correlation-request-id": [ - "46f04a39-06af-40ed-bcd7-e635052671e3" + "3fedba72-9694-4d09-8e36-00e46a86fb41" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T202115Z:46f04a39-06af-40ed-bcd7-e635052671e3" + "JIOINDIAWEST:20220516T191542Z:3fedba72-9694-4d09-8e36-00e46a86fb41" ], "Date": [ - "Wed, 23 Feb 2022 20:21:15 GMT" + "Mon, 16 May 2022 19:15:41 GMT" ], "Content-Length": [ "844" @@ -11399,23 +12086,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.RecoveryServices/vaults/PSTestRSVf3c6e251/backupJobs/6f09a904-dc2b-4893-8392-b583e3188b0f\",\r\n \"name\": \"6f09a904-dc2b-4893-8392-b583e3188b0f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgf3c6e251;pstestvmf3c6e2\",\r\n \"duration\": \"PT1M51.4122667S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"VM Name\": \"PSTestVMf3c6e2\",\r\n \"Number of Recovery Points\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"PSTestVMf3c6e2\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"DeleteBackupData\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-02-23T20:18:41.0151463Z\",\r\n \"endTime\": \"2022-02-23T20:20:32.427413Z\",\r\n \"activityId\": \"a728ca37-20e5-4c00-ad5e-15914ba6122f\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.RecoveryServices/vaults/PSTestRSV972e6a32/backupJobs/03fe92e3-b76c-4042-b52e-174d8326605e\",\r\n \"name\": \"03fe92e3-b76c-4042-b52e-174d8326605e\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg972e6a32;pstestvm972e62\",\r\n \"duration\": \"PT1M51.5094373S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"VM Name\": \"PSTestVM972e62\",\r\n \"Number of Recovery Points\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"PSTestVM972e62\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"DeleteBackupData\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-05-16T19:13:49.3286787Z\",\r\n \"endTime\": \"2022-05-16T19:15:40.838116Z\",\r\n \"activityId\": \"1ccb7690-3d48-46fc-b80e-33ca2b1ac803\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGf3c6e251/providers/Microsoft.RecoveryServices/vaults/PSTestRSVf3c6e251?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZjNjNmUyNTEvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZmM2M2ZTI1MT9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG972e6a32/providers/Microsoft.RecoveryServices/vaults/PSTestRSV972e6a32?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHOTcyZTZhMzIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y5NzJlNmEzMj9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d7d0577b-f011-44a0-811c-e1b340870491" + "33a41a54-15ee-4f3f-8dac-2e216f728a1e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesClient/4.3.2.0" @@ -11432,10 +12119,10 @@ "nosniff" ], "x-ms-request-id": [ - "d3326ead-4d06-460e-ab2e-284a99323155" + "295f0d5c-3491-4cee-83c1-045cf001e6d9" ], "x-ms-client-request-id": [ - "d7d0577b-f011-44a0-811c-e1b340870491" + "33a41a54-15ee-4f3f-8dac-2e216f728a1e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -11444,13 +12131,13 @@ "9" ], "x-ms-correlation-request-id": [ - "d3326ead-4d06-460e-ab2e-284a99323155" + "295f0d5c-3491-4cee-83c1-045cf001e6d9" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T202130Z:d3326ead-4d06-460e-ab2e-284a99323155" + "WESTINDIA:20220516T191548Z:295f0d5c-3491-4cee-83c1-045cf001e6d9" ], "Date": [ - "Wed, 23 Feb 2022 20:21:29 GMT" + "Mon, 16 May 2022 19:15:48 GMT" ], "Expires": [ "-1" @@ -11463,22 +12150,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourcegroups/PSTestRGf3c6e251?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlZ3JvdXBzL1BTVGVzdFJHZjNjNmUyNTE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourcegroups/PSTestRG972e6a32?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlZ3JvdXBzL1BTVGVzdFJHOTcyZTZhMzI/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "36565b41-6323-4eb6-9408-f3e6b1f01bfa" + "973dd704-968f-4222-81d2-58063c14b922" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" ] }, "ResponseHeaders": { @@ -11489,7 +12176,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0YzQzZFMjUxLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzk3MkU2QTMyLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -11498,13 +12185,13 @@ "14999" ], "x-ms-request-id": [ - "2b4269e6-254d-4ce9-ba6a-22903c287b28" + "87c1e1d6-4b15-42b0-8f82-9ae10a7df220" ], "x-ms-correlation-request-id": [ - "2b4269e6-254d-4ce9-ba6a-22903c287b28" + "87c1e1d6-4b15-42b0-8f82-9ae10a7df220" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T202137Z:2b4269e6-254d-4ce9-ba6a-22903c287b28" + "WESTINDIA:20220516T191550Z:87c1e1d6-4b15-42b0-8f82-9ae10a7df220" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -11513,7 +12200,7 @@ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 20:21:37 GMT" + "Mon, 16 May 2022 19:15:49 GMT" ], "Expires": [ "-1" @@ -11526,16 +12213,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0YzQzZFMjUxLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSMFl6UXpaRk1qVXhMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzk3MkU2QTMyLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemszTWtVMlFUTXlMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" ] }, "ResponseHeaders": { @@ -11546,7 +12233,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0YzQzZFMjUxLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzk3MkU2QTMyLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -11555,13 +12242,13 @@ "11999" ], "x-ms-request-id": [ - "5d2edc52-287c-4ae8-96d3-295b640f56bb" + "3acb77b6-6445-4a01-8f37-3d5a99444d57" ], "x-ms-correlation-request-id": [ - "5d2edc52-287c-4ae8-96d3-295b640f56bb" + "3acb77b6-6445-4a01-8f37-3d5a99444d57" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T202153Z:5d2edc52-287c-4ae8-96d3-295b640f56bb" + "WESTINDIA:20220516T191605Z:3acb77b6-6445-4a01-8f37-3d5a99444d57" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -11570,7 +12257,7 @@ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 20:21:53 GMT" + "Mon, 16 May 2022 19:16:05 GMT" ], "Expires": [ "-1" @@ -11583,16 +12270,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0YzQzZFMjUxLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSMFl6UXpaRk1qVXhMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzk3MkU2QTMyLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemszTWtVMlFUTXlMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" ] }, "ResponseHeaders": { @@ -11603,7 +12290,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0YzQzZFMjUxLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzk3MkU2QTMyLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -11612,13 +12299,13 @@ "11998" ], "x-ms-request-id": [ - "8ace8a04-11ec-463d-928b-6686d5ab193e" + "5487a74d-3d9e-4532-ad5c-5e9946055ffd" ], "x-ms-correlation-request-id": [ - "8ace8a04-11ec-463d-928b-6686d5ab193e" + "5487a74d-3d9e-4532-ad5c-5e9946055ffd" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T202209Z:8ace8a04-11ec-463d-928b-6686d5ab193e" + "WESTINDIA:20220516T191621Z:5487a74d-3d9e-4532-ad5c-5e9946055ffd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -11627,7 +12314,7 @@ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 20:22:08 GMT" + "Mon, 16 May 2022 19:16:20 GMT" ], "Expires": [ "-1" @@ -11640,16 +12327,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0YzQzZFMjUxLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSMFl6UXpaRk1qVXhMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzk3MkU2QTMyLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemszTWtVMlFUTXlMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" ] }, "ResponseHeaders": { @@ -11660,7 +12347,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0YzQzZFMjUxLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzk3MkU2QTMyLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -11669,13 +12356,13 @@ "11997" ], "x-ms-request-id": [ - "5c3bb27a-7618-4d41-b3ea-85d97a10babf" + "c7bd494f-eaa7-4d3f-876c-2d6351cab008" ], "x-ms-correlation-request-id": [ - "5c3bb27a-7618-4d41-b3ea-85d97a10babf" + "c7bd494f-eaa7-4d3f-876c-2d6351cab008" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T202224Z:5c3bb27a-7618-4d41-b3ea-85d97a10babf" + "WESTINDIA:20220516T191636Z:c7bd494f-eaa7-4d3f-876c-2d6351cab008" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -11684,7 +12371,7 @@ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 20:22:23 GMT" + "Mon, 16 May 2022 19:16:35 GMT" ], "Expires": [ "-1" @@ -11697,16 +12384,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0YzQzZFMjUxLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSMFl6UXpaRk1qVXhMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzk3MkU2QTMyLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemszTWtVMlFUTXlMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" ] }, "ResponseHeaders": { @@ -11717,7 +12404,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0YzQzZFMjUxLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzk3MkU2QTMyLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -11726,13 +12413,13 @@ "11996" ], "x-ms-request-id": [ - "4de06eda-d9f0-474e-bbf4-b838af17d4b7" + "86573247-9e59-4d1c-9671-93983970fd49" ], "x-ms-correlation-request-id": [ - "4de06eda-d9f0-474e-bbf4-b838af17d4b7" + "86573247-9e59-4d1c-9671-93983970fd49" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T202240Z:4de06eda-d9f0-474e-bbf4-b838af17d4b7" + "WESTINDIA:20220516T191651Z:86573247-9e59-4d1c-9671-93983970fd49" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -11741,7 +12428,7 @@ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 20:22:39 GMT" + "Mon, 16 May 2022 19:16:51 GMT" ], "Expires": [ "-1" @@ -11754,16 +12441,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0YzQzZFMjUxLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSMFl6UXpaRk1qVXhMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzk3MkU2QTMyLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemszTWtVMlFUTXlMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" ] }, "ResponseHeaders": { @@ -11774,7 +12461,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0YzQzZFMjUxLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzk3MkU2QTMyLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -11783,13 +12470,13 @@ "11995" ], "x-ms-request-id": [ - "49a0c322-e700-4603-b6c9-43e11c098eb1" + "98b41c6a-f2c2-4033-9a42-cd666c09e396" ], "x-ms-correlation-request-id": [ - "49a0c322-e700-4603-b6c9-43e11c098eb1" + "98b41c6a-f2c2-4033-9a42-cd666c09e396" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T202255Z:49a0c322-e700-4603-b6c9-43e11c098eb1" + "WESTINDIA:20220516T191706Z:98b41c6a-f2c2-4033-9a42-cd666c09e396" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -11798,7 +12485,7 @@ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 20:22:54 GMT" + "Mon, 16 May 2022 19:17:06 GMT" ], "Expires": [ "-1" @@ -11811,16 +12498,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0YzQzZFMjUxLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSMFl6UXpaRk1qVXhMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzk3MkU2QTMyLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemszTWtVMlFUTXlMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" ] }, "ResponseHeaders": { @@ -11831,7 +12518,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0YzQzZFMjUxLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzk3MkU2QTMyLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -11840,13 +12527,13 @@ "11994" ], "x-ms-request-id": [ - "629a846b-9f14-491c-9421-68cee730defa" + "6d3d5b1b-eff6-4e1f-a139-f7f2a1936463" ], "x-ms-correlation-request-id": [ - "629a846b-9f14-491c-9421-68cee730defa" + "6d3d5b1b-eff6-4e1f-a139-f7f2a1936463" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T202311Z:629a846b-9f14-491c-9421-68cee730defa" + "WESTINDIA:20220516T191722Z:6d3d5b1b-eff6-4e1f-a139-f7f2a1936463" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -11855,7 +12542,7 @@ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 20:23:11 GMT" + "Mon, 16 May 2022 19:17:21 GMT" ], "Expires": [ "-1" @@ -11868,16 +12555,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0YzQzZFMjUxLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSMFl6UXpaRk1qVXhMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzk3MkU2QTMyLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemszTWtVMlFUTXlMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" ] }, "ResponseHeaders": { @@ -11888,7 +12575,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0YzQzZFMjUxLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzk3MkU2QTMyLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -11897,13 +12584,13 @@ "11993" ], "x-ms-request-id": [ - "00f2cc03-9d5c-49be-a03a-5275cea8bf2b" + "2161b3a6-3f3f-43aa-acdc-6ef5382be3c7" ], "x-ms-correlation-request-id": [ - "00f2cc03-9d5c-49be-a03a-5275cea8bf2b" + "2161b3a6-3f3f-43aa-acdc-6ef5382be3c7" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T202328Z:00f2cc03-9d5c-49be-a03a-5275cea8bf2b" + "WESTINDIA:20220516T191737Z:2161b3a6-3f3f-43aa-acdc-6ef5382be3c7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -11912,7 +12599,7 @@ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 20:23:27 GMT" + "Mon, 16 May 2022 19:17:36 GMT" ], "Expires": [ "-1" @@ -11925,16 +12612,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0YzQzZFMjUxLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSMFl6UXpaRk1qVXhMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzk3MkU2QTMyLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemszTWtVMlFUTXlMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" ] }, "ResponseHeaders": { @@ -11945,7 +12632,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0YzQzZFMjUxLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzk3MkU2QTMyLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -11954,13 +12641,13 @@ "11992" ], "x-ms-request-id": [ - "926a8d06-2e87-4572-b55d-bd2f62981f9e" + "9b38bdf5-d9d1-49d8-9ef4-9b7958648c6b" ], "x-ms-correlation-request-id": [ - "926a8d06-2e87-4572-b55d-bd2f62981f9e" + "9b38bdf5-d9d1-49d8-9ef4-9b7958648c6b" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T202343Z:926a8d06-2e87-4572-b55d-bd2f62981f9e" + "WESTINDIA:20220516T191752Z:9b38bdf5-d9d1-49d8-9ef4-9b7958648c6b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -11969,7 +12656,7 @@ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 20:23:43 GMT" + "Mon, 16 May 2022 19:17:51 GMT" ], "Expires": [ "-1" @@ -11982,16 +12669,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0YzQzZFMjUxLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSMFl6UXpaRk1qVXhMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzk3MkU2QTMyLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemszTWtVMlFUTXlMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" ] }, "ResponseHeaders": { @@ -12002,7 +12689,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0YzQzZFMjUxLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzk3MkU2QTMyLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -12011,13 +12698,13 @@ "11991" ], "x-ms-request-id": [ - "d08cb2ae-3c90-47e9-b7c8-2b2973bfa042" + "ec3add2c-95f8-4399-99dc-d9ccdb841abf" ], "x-ms-correlation-request-id": [ - "d08cb2ae-3c90-47e9-b7c8-2b2973bfa042" + "ec3add2c-95f8-4399-99dc-d9ccdb841abf" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T202359Z:d08cb2ae-3c90-47e9-b7c8-2b2973bfa042" + "WESTINDIA:20220516T191807Z:ec3add2c-95f8-4399-99dc-d9ccdb841abf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -12026,7 +12713,7 @@ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 20:23:58 GMT" + "Mon, 16 May 2022 19:18:07 GMT" ], "Expires": [ "-1" @@ -12039,16 +12726,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0YzQzZFMjUxLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSMFl6UXpaRk1qVXhMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzk3MkU2QTMyLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemszTWtVMlFUTXlMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" ] }, "ResponseHeaders": { @@ -12059,7 +12746,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0YzQzZFMjUxLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzk3MkU2QTMyLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -12068,13 +12755,13 @@ "11990" ], "x-ms-request-id": [ - "a5779a7a-51bc-4239-881a-be4a9635e080" + "e2d63736-605c-4066-b51f-d91955c8ed43" ], "x-ms-correlation-request-id": [ - "a5779a7a-51bc-4239-881a-be4a9635e080" + "e2d63736-605c-4066-b51f-d91955c8ed43" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T202414Z:a5779a7a-51bc-4239-881a-be4a9635e080" + "WESTINDIA:20220516T191823Z:e2d63736-605c-4066-b51f-d91955c8ed43" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -12083,7 +12770,7 @@ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 20:24:14 GMT" + "Mon, 16 May 2022 19:18:22 GMT" ], "Expires": [ "-1" @@ -12096,16 +12783,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0YzQzZFMjUxLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSMFl6UXpaRk1qVXhMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzk3MkU2QTMyLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemszTWtVMlFUTXlMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" ] }, "ResponseHeaders": { @@ -12116,7 +12803,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0YzQzZFMjUxLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzk3MkU2QTMyLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -12125,13 +12812,13 @@ "11989" ], "x-ms-request-id": [ - "36c1a527-d9a1-443f-9570-7b8c414ceac9" + "d7347a1f-2829-4d78-9ba8-95504b4014c5" ], "x-ms-correlation-request-id": [ - "36c1a527-d9a1-443f-9570-7b8c414ceac9" + "d7347a1f-2829-4d78-9ba8-95504b4014c5" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T202430Z:36c1a527-d9a1-443f-9570-7b8c414ceac9" + "WESTINDIA:20220516T191838Z:d7347a1f-2829-4d78-9ba8-95504b4014c5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -12140,7 +12827,7 @@ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 20:24:29 GMT" + "Mon, 16 May 2022 19:18:38 GMT" ], "Expires": [ "-1" @@ -12153,16 +12840,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0YzQzZFMjUxLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSMFl6UXpaRk1qVXhMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzk3MkU2QTMyLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemszTWtVMlFUTXlMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" ] }, "ResponseHeaders": { @@ -12173,7 +12860,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0YzQzZFMjUxLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzk3MkU2QTMyLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -12182,13 +12869,13 @@ "11988" ], "x-ms-request-id": [ - "270f4de7-bd2c-4f96-8f43-1f7c5108eaab" + "8e4fea90-7472-4ac2-8e3a-c08dc5c40532" ], "x-ms-correlation-request-id": [ - "270f4de7-bd2c-4f96-8f43-1f7c5108eaab" + "8e4fea90-7472-4ac2-8e3a-c08dc5c40532" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T202445Z:270f4de7-bd2c-4f96-8f43-1f7c5108eaab" + "WESTINDIA:20220516T191853Z:8e4fea90-7472-4ac2-8e3a-c08dc5c40532" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -12197,7 +12884,7 @@ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 20:24:45 GMT" + "Mon, 16 May 2022 19:18:53 GMT" ], "Expires": [ "-1" @@ -12210,16 +12897,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0YzQzZFMjUxLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSMFl6UXpaRk1qVXhMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzk3MkU2QTMyLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemszTWtVMlFUTXlMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" ] }, "ResponseHeaders": { @@ -12230,7 +12917,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0YzQzZFMjUxLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzk3MkU2QTMyLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -12239,13 +12926,13 @@ "11987" ], "x-ms-request-id": [ - "29906c07-5ea9-42f6-9477-e19c7f6e057b" + "f3216054-675a-4f25-9e0f-df84b2c64063" ], "x-ms-correlation-request-id": [ - "29906c07-5ea9-42f6-9477-e19c7f6e057b" + "f3216054-675a-4f25-9e0f-df84b2c64063" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T202501Z:29906c07-5ea9-42f6-9477-e19c7f6e057b" + "WESTINDIA:20220516T191908Z:f3216054-675a-4f25-9e0f-df84b2c64063" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -12254,7 +12941,7 @@ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 20:25:00 GMT" + "Mon, 16 May 2022 19:19:08 GMT" ], "Expires": [ "-1" @@ -12267,16 +12954,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0YzQzZFMjUxLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSMFl6UXpaRk1qVXhMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzk3MkU2QTMyLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemszTWtVMlFUTXlMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" ] }, "ResponseHeaders": { @@ -12287,7 +12974,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0YzQzZFMjUxLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzk3MkU2QTMyLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -12296,13 +12983,13 @@ "11986" ], "x-ms-request-id": [ - "db410d7d-a11e-4220-bd45-c4b2b959b26d" + "0afaa606-a007-4ea9-95b5-6e63d6193e71" ], "x-ms-correlation-request-id": [ - "db410d7d-a11e-4220-bd45-c4b2b959b26d" + "0afaa606-a007-4ea9-95b5-6e63d6193e71" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T202516Z:db410d7d-a11e-4220-bd45-c4b2b959b26d" + "WESTINDIA:20220516T191924Z:0afaa606-a007-4ea9-95b5-6e63d6193e71" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -12311,7 +12998,7 @@ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 20:25:15 GMT" + "Mon, 16 May 2022 19:19:23 GMT" ], "Expires": [ "-1" @@ -12324,16 +13011,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0YzQzZFMjUxLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSMFl6UXpaRk1qVXhMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzk3MkU2QTMyLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemszTWtVMlFUTXlMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" ] }, "ResponseHeaders": { @@ -12344,7 +13031,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0YzQzZFMjUxLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzk3MkU2QTMyLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -12353,13 +13040,13 @@ "11985" ], "x-ms-request-id": [ - "65216a09-bbee-43cb-9698-dc098f453dd5" + "8b4f7746-698e-4a8d-a4cd-4dbc7b2cfacf" ], "x-ms-correlation-request-id": [ - "65216a09-bbee-43cb-9698-dc098f453dd5" + "8b4f7746-698e-4a8d-a4cd-4dbc7b2cfacf" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T202532Z:65216a09-bbee-43cb-9698-dc098f453dd5" + "WESTINDIA:20220516T191939Z:8b4f7746-698e-4a8d-a4cd-4dbc7b2cfacf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -12368,7 +13055,7 @@ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 20:25:31 GMT" + "Mon, 16 May 2022 19:19:38 GMT" ], "Expires": [ "-1" @@ -12381,16 +13068,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0YzQzZFMjUxLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSMFl6UXpaRk1qVXhMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzk3MkU2QTMyLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemszTWtVMlFUTXlMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" ] }, "ResponseHeaders": { @@ -12400,245 +13087,17 @@ "Pragma": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0YzQzZFMjUxLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], "x-ms-ratelimit-remaining-subscription-reads": [ "11984" ], "x-ms-request-id": [ - "4ecd197d-be95-417a-aee6-c2bb4c0534b4" - ], - "x-ms-correlation-request-id": [ - "4ecd197d-be95-417a-aee6-c2bb4c0534b4" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20220223T202547Z:4ecd197d-be95-417a-aee6-c2bb4c0534b4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 23 Feb 2022 20:25:46 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0YzQzZFMjUxLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSMFl6UXpaRk1qVXhMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.700.21.56803", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0YzQzZFMjUxLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11983" - ], - "x-ms-request-id": [ - "4dfe16bc-62b9-4633-b406-1ab92d7fc1c9" - ], - "x-ms-correlation-request-id": [ - "4dfe16bc-62b9-4633-b406-1ab92d7fc1c9" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20220223T202603Z:4dfe16bc-62b9-4633-b406-1ab92d7fc1c9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 23 Feb 2022 20:26:03 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0YzQzZFMjUxLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSMFl6UXpaRk1qVXhMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.700.21.56803", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0YzQzZFMjUxLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11982" - ], - "x-ms-request-id": [ - "bdfcc7c1-3aa8-4f24-96e0-598e4a5c7061" - ], - "x-ms-correlation-request-id": [ - "bdfcc7c1-3aa8-4f24-96e0-598e4a5c7061" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20220223T202618Z:bdfcc7c1-3aa8-4f24-96e0-598e4a5c7061" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 23 Feb 2022 20:26:18 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0YzQzZFMjUxLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSMFl6UXpaRk1qVXhMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.700.21.56803", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0YzQzZFMjUxLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11981" - ], - "x-ms-request-id": [ - "2ad4d4ed-a38f-49f9-bd2e-e752021598ae" - ], - "x-ms-correlation-request-id": [ - "2ad4d4ed-a38f-49f9-bd2e-e752021598ae" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20220223T202634Z:2ad4d4ed-a38f-49f9-bd2e-e752021598ae" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 23 Feb 2022 20:26:34 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0YzQzZFMjUxLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSMFl6UXpaRk1qVXhMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.700.21.56803", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11980" - ], - "x-ms-request-id": [ - "fbbddf53-fbe6-410e-8a7f-b913356f5e62" + "a35e90a2-ce85-4c75-af40-f9a14dcc98b4" ], "x-ms-correlation-request-id": [ - "fbbddf53-fbe6-410e-8a7f-b913356f5e62" + "a35e90a2-ce85-4c75-af40-f9a14dcc98b4" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T202649Z:fbbddf53-fbe6-410e-8a7f-b913356f5e62" + "WESTINDIA:20220516T191954Z:a35e90a2-ce85-4c75-af40-f9a14dcc98b4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -12647,7 +13106,7 @@ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 20:26:49 GMT" + "Mon, 16 May 2022 19:19:53 GMT" ], "Expires": [ "-1" @@ -12660,16 +13119,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0YzQzZFMjUxLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSMFl6UXpaRk1qVXhMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzk3MkU2QTMyLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemszTWtVMlFUTXlMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" ] }, "ResponseHeaders": { @@ -12680,16 +13139,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11979" + "11983" ], "x-ms-request-id": [ - "2183f54a-341b-44c8-9cba-f66675c0251d" + "aae37d53-3b6a-4f86-a0b9-29c97302ec86" ], "x-ms-correlation-request-id": [ - "2183f54a-341b-44c8-9cba-f66675c0251d" + "aae37d53-3b6a-4f86-a0b9-29c97302ec86" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T202650Z:2183f54a-341b-44c8-9cba-f66675c0251d" + "WESTINDIA:20220516T191954Z:aae37d53-3b6a-4f86-a0b9-29c97302ec86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -12698,7 +13157,7 @@ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 20:26:49 GMT" + "Mon, 16 May 2022 19:19:54 GMT" ], "Expires": [ "-1" @@ -12713,12 +13172,12 @@ ], "Names": {}, "Variables": { - "SubscriptionId": "e37510d7-33b6-4676-886f-ee75bcc01871", - "NamingSuffix": "f3c6e251-5835-4001-ac8f-e3b47910e429", - "StartTime1": "2022-02-22 20:16:28Z", - "EndTime1": "2022-02-23 20:16:28Z", - "StartTime2": "02/03/2022 15:16:41", - "StartTime4": "2122-02-22 20:16:41Z", - "EndTime4": "2122-02-23 20:16:41Z" + "SubscriptionId": "da364f0f-307b-41c9-9d47-b7413ec45535", + "NamingSuffix": "972e6a32-8f0e-4227-a869-13224af5eff8", + "StartTime1": "2022-05-15 19:11:46Z", + "EndTime1": "2022-05-16 19:11:46Z", + "StartTime2": "04/27/2022 00:41:47", + "StartTime4": "2122-05-15 19:11:47Z", + "EndTime4": "2122-05-16 19:11:47Z" } } \ No newline at end of file diff --git a/src/RecoveryServices/RecoveryServices.Backup.Test/SessionRecords/Microsoft.Azure.Commands.RecoveryServices.Backup.Test.ScenarioTests.JobTests/TestAzureVMWaitJob.json b/src/RecoveryServices/RecoveryServices.Backup.Test/SessionRecords/Microsoft.Azure.Commands.RecoveryServices.Backup.Test.ScenarioTests.JobTests/TestAzureVMWaitJob.json index 0ca2f50b248c..9b1547d9da63 100644 --- a/src/RecoveryServices/RecoveryServices.Backup.Test/SessionRecords/Microsoft.Azure.Commands.RecoveryServices.Backup.Test.ScenarioTests.JobTests/TestAzureVMWaitJob.json +++ b/src/RecoveryServices/RecoveryServices.Backup.Test/SessionRecords/Microsoft.Azure.Commands.RecoveryServices.Backup.Test.ScenarioTests.JobTests/TestAzureVMWaitJob.json @@ -1,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourcegroups/PSTestRGbfbf59cf?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlZ3JvdXBzL1BTVGVzdFJHYmZiZjU5Y2Y/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourcegroups/PSTestRG48b61a7d?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlZ3JvdXBzL1BTVGVzdFJHNDhiNjFhN2Q/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "190856e6-c43f-4ccf-9da7-2c5c33bb63fe" + "ffabed21-c512-4e5a-b331-82389f57939e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" ] }, "ResponseHeaders": { @@ -33,13 +33,13 @@ "11999" ], "x-ms-request-id": [ - "60c5f987-557f-4ab3-94ac-6ef0f4a4bac5" + "9032b341-afdb-4074-aa62-c08c4ee798f9" ], "x-ms-correlation-request-id": [ - "60c5f987-557f-4ab3-94ac-6ef0f4a4bac5" + "9032b341-afdb-4074-aa62-c08c4ee798f9" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T203510Z:60c5f987-557f-4ab3-94ac-6ef0f4a4bac5" + "JIOINDIAWEST:20220516T175748Z:9032b341-afdb-4074-aa62-c08c4ee798f9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -48,7 +48,7 @@ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 20:35:09 GMT" + "Mon, 16 May 2022 17:57:48 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -60,26 +60,26 @@ "108" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'PSTestRGbfbf59cf' could not be found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'PSTestRG48b61a7d' could not be found.\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourcegroups/PSTestRGbfbf59cf?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlZ3JvdXBzL1BTVGVzdFJHYmZiZjU5Y2Y/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourcegroups/PSTestRG48b61a7d?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlZ3JvdXBzL1BTVGVzdFJHNDhiNjFhN2Q/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "70424388-1d08-462b-819e-ad80bf7694b7" + "5c7925cd-2d27-4616-aa9e-92fcf89c999c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" ] }, "ResponseHeaders": { @@ -93,13 +93,13 @@ "11999" ], "x-ms-request-id": [ - "aa4de23d-0450-417b-925b-3ba48f407d21" + "3dd44308-4d54-4965-9d3e-351aa75d63e2" ], "x-ms-correlation-request-id": [ - "aa4de23d-0450-417b-925b-3ba48f407d21" + "3dd44308-4d54-4965-9d3e-351aa75d63e2" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T214322Z:aa4de23d-0450-417b-925b-3ba48f407d21" + "JIOINDIAWEST:20220516T185506Z:3dd44308-4d54-4965-9d3e-351aa75d63e2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -108,7 +108,7 @@ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 21:43:21 GMT" + "Mon, 16 May 2022 18:55:06 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -120,26 +120,26 @@ "192" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf\",\r\n \"name\": \"PSTestRGbfbf59cf\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d\",\r\n \"name\": \"PSTestRG48b61a7d\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourcegroups/PSTestRGbfbf59cf?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlZ3JvdXBzL1BTVGVzdFJHYmZiZjU5Y2Y/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourcegroups/PSTestRG48b61a7d?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlZ3JvdXBzL1BTVGVzdFJHNDhiNjFhN2Q/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"southeastasia\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "14a48c11-756f-4e98-8550-4ab782d3869f" + "4a92c642-cf64-4978-b95d-bdb62e2e3ed7" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" ], "Content-Type": [ "application/json; charset=utf-8" @@ -159,13 +159,13 @@ "1199" ], "x-ms-request-id": [ - "5d3a71b3-8481-4772-a96e-43c21eda11ae" + "36fea38f-7a1d-4d81-9c55-bce9b133d024" ], "x-ms-correlation-request-id": [ - "5d3a71b3-8481-4772-a96e-43c21eda11ae" + "36fea38f-7a1d-4d81-9c55-bce9b133d024" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T203514Z:5d3a71b3-8481-4772-a96e-43c21eda11ae" + "JIOINDIAWEST:20220516T175752Z:36fea38f-7a1d-4d81-9c55-bce9b133d024" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -174,7 +174,7 @@ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 20:35:14 GMT" + "Mon, 16 May 2022 17:57:51 GMT" ], "Content-Length": [ "192" @@ -186,26 +186,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf\",\r\n \"name\": \"PSTestRGbfbf59cf\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d\",\r\n \"name\": \"PSTestRG48b61a7d\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.Compute/virtualMachines/PSTestVMbfbf50?api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZiZjU5Y2YvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy9QU1Rlc3RWTWJmYmY1MD9hcGktdmVyc2lvbj0yMDIxLTExLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.Compute/virtualMachines/PSTestVM48b610?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNDhiNjFhN2QvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy9QU1Rlc3RWTTQ4YjYxMD9hcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bee4c67e-dc30-4436-94dd-80213de59ea5" + "eac9c5a4-ae54-4c01-aae2-e890a177313c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ] }, "ResponseHeaders": { @@ -219,13 +219,13 @@ "gateway" ], "x-ms-request-id": [ - "6ed294b2-ba2c-46a3-985f-4a14b34960b4" + "3fadaef5-c81b-4c28-87a1-21fe685df41f" ], "x-ms-correlation-request-id": [ - "6ed294b2-ba2c-46a3-985f-4a14b34960b4" + "3fadaef5-c81b-4c28-87a1-21fe685df41f" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T203517Z:6ed294b2-ba2c-46a3-985f-4a14b34960b4" + "JIOINDIAWEST:20220516T175753Z:3fadaef5-c81b-4c28-87a1-21fe685df41f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -234,7 +234,7 @@ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 20:35:16 GMT" + "Mon, 16 May 2022 17:57:52 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -246,23 +246,23 @@ "236" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Compute/virtualMachines/PSTestVMbfbf50' under resource group 'PSTestRGbfbf59cf' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Compute/virtualMachines/PSTestVM48b610' under resource group 'PSTestRG48b61a7d' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.Compute/virtualMachines/PSTestVMbfbf50?api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZiZjU5Y2YvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy9QU1Rlc3RWTWJmYmY1MD9hcGktdmVyc2lvbj0yMDIxLTExLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.Compute/virtualMachines/PSTestVM48b610?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNDhiNjFhN2QvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy9QU1Rlc3RWTTQ4YjYxMD9hcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "237fceaf-5078-414e-9ac6-9402daa3ae1e" + "59a3159e-ad00-4569-945a-babfab0cb94b" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ] }, "ResponseHeaders": { @@ -273,13 +273,13 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/LowCostGet3Min;3998,Microsoft.Compute/LowCostGet30Min;31962" + "Microsoft.Compute/LowCostGet3Min;3993,Microsoft.Compute/LowCostGet30Min;31964" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "0d070571-14a5-49bd-b71a-d311528e4d24" + "7b6f5c08-ff24-4c18-b6b4-0d94ed241ce7" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -289,19 +289,19 @@ "11995" ], "x-ms-correlation-request-id": [ - "01f95cbd-c657-465f-a2bf-5bad9e831157" + "c24d1b8f-edaa-4ad8-a0ae-c317a51dd8f0" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T203801Z:01f95cbd-c657-465f-a2bf-5bad9e831157" + "JIOINDIAWEST:20220516T180015Z:c24d1b8f-edaa-4ad8-a0ae-c317a51dd8f0" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 20:38:00 GMT" + "Mon, 16 May 2022 18:00:14 GMT" ], "Content-Length": [ - "2265" + "2195" ], "Content-Type": [ "application/json; charset=utf-8" @@ -310,26 +310,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"PSTestVMbfbf50\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.Compute/virtualMachines/PSTestVMbfbf50\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"Purpose\": \"PSTest\",\r\n \"DeleteBy\": \"06-2022\",\r\n \"AutoShutDown\": \"No\",\r\n \"Owner\": \"sarath\",\r\n \"MabUsed\": \"Yes\",\r\n \"azsecpack\": \"nonprod\",\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": \"true\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"998fea1f-67fb-40c2-b251-c42791aaa1ef\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D1_v2\"\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.4946.220202\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"PSTestVMbfbf50_OsDisk_1_8bc38e054d3e4294b119526b4161c65d\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.Compute/disks/PSTestVMbfbf50_OsDisk_1_8bc38e054d3e4294b119526b4161c65d\"\r\n },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"PSTestVMbfbf50\",\r\n \"adminUsername\": \"demouser\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"AutomaticByOS\",\r\n \"assessmentMode\": \"ImageDefault\"\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.Network/networkInterfaces/PSTestNICbfbf50\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"timeCreated\": \"2022-02-23T15:36:07.3421394-05:00\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"PSTestVM48b610\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.Compute/virtualMachines/PSTestVM48b610\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MabUsed\": \"Yes\",\r\n \"Owner\": \"sarath\",\r\n \"AutoShutDown\": \"No\",\r\n \"Purpose\": \"PSTest\",\r\n \"DeleteBy\": \"06-2022\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"978af02f-9d29-4c85-9d2a-032799647a96\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D1_v2\"\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.5125.220505\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"PSTestVM48b610_OsDisk_1_0a84b6e2928640bda586e0572d5c474d\",\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/PSTestRG48b61a7d/providers/Microsoft.Compute/disks/PSTestVM48b610_OsDisk_1_0a84b6e2928640bda586e0572d5c474d\"\r\n },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"PSTestVM48b610\",\r\n \"adminUsername\": \"demouser\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"AutomaticByOS\",\r\n \"assessmentMode\": \"ImageDefault\"\r\n },\r\n \"enableVMAgentPlatformUpdates\": false\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/PSTestRG48b61a7d/providers/Microsoft.Network/networkInterfaces/PSTestNIC48b610\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"timeCreated\": \"2022-05-16T23:28:22.6356424+05:30\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.Compute/virtualMachines/PSTestVMbfbf50?api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZiZjU5Y2YvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy9QU1Rlc3RWTWJmYmY1MD9hcGktdmVyc2lvbj0yMDIxLTExLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.Compute/virtualMachines/PSTestVM48b610?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNDhiNjFhN2QvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy9QU1Rlc3RWTTQ4YjYxMD9hcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c613bfda-ecd6-47fc-86ba-1ab0e017dd2d" + "83d5b8ee-9713-4d9a-a09d-cba533c87f86" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ] }, "ResponseHeaders": { @@ -340,35 +340,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/LowCostGet3Min;3995,Microsoft.Compute/LowCostGet30Min;31964" + "Microsoft.Compute/LowCostGet3Min;3987,Microsoft.Compute/LowCostGet30Min;31954" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "eb323cbd-3d67-4778-a6df-85d8ec1a1dce" + "58b710f9-77fd-40a0-b326-eb9e7ea20c7d" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" + "11986" ], "x-ms-correlation-request-id": [ - "34da30b3-fc68-49a0-a9d4-0b449b188d84" + "a4ee785c-80ba-474e-8523-0c2e7f037657" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T204042Z:34da30b3-fc68-49a0-a9d4-0b449b188d84" + "JIOINDIAWEST:20220516T180222Z:a4ee785c-80ba-474e-8523-0c2e7f037657" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 20:40:41 GMT" + "Mon, 16 May 2022 18:02:21 GMT" ], "Content-Length": [ - "2828" + "2758" ], "Content-Type": [ "application/json; charset=utf-8" @@ -377,26 +377,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"PSTestVMbfbf50\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.Compute/virtualMachines/PSTestVMbfbf50\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"Purpose\": \"PSTest\",\r\n \"DeleteBy\": \"06-2022\",\r\n \"AutoShutDown\": \"No\",\r\n \"Owner\": \"sarath\",\r\n \"MabUsed\": \"Yes\",\r\n \"azsecpack\": \"nonprod\",\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": \"true\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"998fea1f-67fb-40c2-b251-c42791aaa1ef\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D1_v2\"\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.4946.220202\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"PSTestVMbfbf50_OsDisk_1_8bc38e054d3e4294b119526b4161c65d\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.Compute/disks/PSTestVMbfbf50_OsDisk_1_8bc38e054d3e4294b119526b4161c65d\"\r\n },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"PSTestVMbfbf50\",\r\n \"adminUsername\": \"demouser\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"AutomaticByOS\",\r\n \"assessmentMode\": \"ImageDefault\"\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.Network/networkInterfaces/PSTestNICbfbf50\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"timeCreated\": \"2022-02-23T15:36:07.3421394-05:00\"\r\n },\r\n \"resources\": [\r\n {\r\n \"name\": \"BGInfo\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.Compute/virtualMachines/PSTestVMbfbf50/extensions/BGInfo\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"southeastasia\",\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}", + "ResponseBody": "{\r\n \"name\": \"PSTestVM48b610\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.Compute/virtualMachines/PSTestVM48b610\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MabUsed\": \"Yes\",\r\n \"Owner\": \"sarath\",\r\n \"AutoShutDown\": \"No\",\r\n \"Purpose\": \"PSTest\",\r\n \"DeleteBy\": \"06-2022\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"978af02f-9d29-4c85-9d2a-032799647a96\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D1_v2\"\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.5125.220505\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"PSTestVM48b610_OsDisk_1_0a84b6e2928640bda586e0572d5c474d\",\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/PSTestRG48b61a7d/providers/Microsoft.Compute/disks/PSTestVM48b610_OsDisk_1_0a84b6e2928640bda586e0572d5c474d\"\r\n },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"PSTestVM48b610\",\r\n \"adminUsername\": \"demouser\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"AutomaticByOS\",\r\n \"assessmentMode\": \"ImageDefault\"\r\n },\r\n \"enableVMAgentPlatformUpdates\": false\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/PSTestRG48b61a7d/providers/Microsoft.Network/networkInterfaces/PSTestNIC48b610\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"timeCreated\": \"2022-05-16T23:28:22.6356424+05:30\"\r\n },\r\n \"resources\": [\r\n {\r\n \"name\": \"BGInfo\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.Compute/virtualMachines/PSTestVM48b610/extensions/BGInfo\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"BGInfo\",\r\n \"typeHandlerVersion\": \"2.2\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.Network/virtualNetworks/PSTestVNETbfbf50?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZiZjU5Y2YvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy9QU1Rlc3RWTkVUYmZiZjUwP2FwaS12ZXJzaW9uPTIwMjEtMDUtMDE=", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.Network/virtualNetworks/PSTestVNET48b610?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNDhiNjFhN2QvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy9QU1Rlc3RWTkVUNDhiNjEwP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7ee9df09-6efa-438f-b8c5-42bef175b327" + "54d93006-9dfa-41b8-8556-95f37381b870" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ] }, "ResponseHeaders": { @@ -410,13 +410,13 @@ "gateway" ], "x-ms-request-id": [ - "550c4ffb-9c1c-4b37-8542-8e969a47a6ce" + "a2d8311d-9695-45bd-b25a-1429090a4879" ], "x-ms-correlation-request-id": [ - "550c4ffb-9c1c-4b37-8542-8e969a47a6ce" + "a2d8311d-9695-45bd-b25a-1429090a4879" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T203520Z:550c4ffb-9c1c-4b37-8542-8e969a47a6ce" + "JIOINDIAWEST:20220516T175754Z:a2d8311d-9695-45bd-b25a-1429090a4879" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -425,7 +425,7 @@ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 20:35:19 GMT" + "Mon, 16 May 2022 17:57:54 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -437,23 +437,23 @@ "238" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/virtualNetworks/PSTestVNETbfbf50' under resource group 'PSTestRGbfbf59cf' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/virtualNetworks/PSTestVNET48b610' under resource group 'PSTestRG48b61a7d' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.Network/virtualNetworks/PSTestVNETbfbf50?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZiZjU5Y2YvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy9QU1Rlc3RWTkVUYmZiZjUwP2FwaS12ZXJzaW9uPTIwMjEtMDUtMDE=", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.Network/virtualNetworks/PSTestVNET48b610?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNDhiNjFhN2QvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy9QU1Rlc3RWTkVUNDhiNjEwP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7ee9df09-6efa-438f-b8c5-42bef175b327" + "54d93006-9dfa-41b8-8556-95f37381b870" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ] }, "ResponseHeaders": { @@ -464,16 +464,16 @@ "no-cache" ], "ETag": [ - "W/\"a068f445-6733-407b-81f8-9bdead77ca52\"" + "W/\"d20d1e76-13fc-4540-b799-5f88826ecb0f\"" ], "x-ms-request-id": [ - "0fde0490-da7a-4cfe-b516-a31615176ea6" + "8aa975aa-8ea9-49bd-9e67-761a951e45d9" ], "x-ms-correlation-request-id": [ - "0536e042-7cca-49de-8408-9cd6162c49a8" + "f3d6730e-5aef-480a-a1b9-7c34a1f7074b" ], "x-ms-arm-service-request-id": [ - "2b4f61b7-8026-483d-8679-b4505996666c" + "c8f1565e-aaa7-4181-a5b4-1a2d9bfe1cf9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -486,13 +486,13 @@ "11997" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T203535Z:0536e042-7cca-49de-8408-9cd6162c49a8" + "JIOINDIAWEST:20220516T175802Z:f3d6730e-5aef-480a-a1b9-7c34a1f7074b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 20:35:35 GMT" + "Mon, 16 May 2022 17:58:01 GMT" ], "Content-Length": [ "1315" @@ -504,26 +504,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"PSTestVNETbfbf50\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.Network/virtualNetworks/PSTestVNETbfbf50\",\r\n \"etag\": \"W/\\\"a068f445-6733-407b-81f8-9bdead77ca52\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"055b1a47-037a-4661-a157-359fbb04de87\",\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\": \"PSTestSNCbfbf50\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.Network/virtualNetworks/PSTestVNETbfbf50/subnets/PSTestSNCbfbf50\",\r\n \"etag\": \"W/\\\"a068f445-6733-407b-81f8-9bdead77ca52\\\"\",\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 },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"PSTestVNET48b610\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.Network/virtualNetworks/PSTestVNET48b610\",\r\n \"etag\": \"W/\\\"d20d1e76-13fc-4540-b799-5f88826ecb0f\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"2adee8b0-60fd-45b4-a586-dc1fc2a871fa\",\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\": \"PSTestSNC48b610\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.Network/virtualNetworks/PSTestVNET48b610/subnets/PSTestSNC48b610\",\r\n \"etag\": \"W/\\\"d20d1e76-13fc-4540-b799-5f88826ecb0f\\\"\",\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 },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.Network/virtualNetworks/PSTestVNETbfbf50?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZiZjU5Y2YvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy9QU1Rlc3RWTkVUYmZiZjUwP2FwaS12ZXJzaW9uPTIwMjEtMDUtMDE=", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.Network/virtualNetworks/PSTestVNET48b610?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNDhiNjFhN2QvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy9QU1Rlc3RWTkVUNDhiNjEwP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7ee9df09-6efa-438f-b8c5-42bef175b327" + "54d93006-9dfa-41b8-8556-95f37381b870" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ] }, "ResponseHeaders": { @@ -534,16 +534,16 @@ "no-cache" ], "ETag": [ - "W/\"a068f445-6733-407b-81f8-9bdead77ca52\"" + "W/\"d20d1e76-13fc-4540-b799-5f88826ecb0f\"" ], "x-ms-request-id": [ - "e69005ad-60a7-4f25-8bf6-9b787c483aa0" + "171a184e-2964-47e6-8dfd-6b98ae395ba4" ], "x-ms-correlation-request-id": [ - "6dc716c9-22ed-4f72-b1fc-f33066f9d27c" + "df6233bf-6b62-4e34-9ef2-01ef0dff89f0" ], "x-ms-arm-service-request-id": [ - "194c5e08-4f68-476a-ac0d-0dc816454729" + "9385e433-2085-4310-9e0a-a28218842796" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -556,13 +556,13 @@ "11996" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T203536Z:6dc716c9-22ed-4f72-b1fc-f33066f9d27c" + "JIOINDIAWEST:20220516T175802Z:df6233bf-6b62-4e34-9ef2-01ef0dff89f0" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 20:35:35 GMT" + "Mon, 16 May 2022 17:58:02 GMT" ], "Content-Length": [ "1315" @@ -574,26 +574,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"PSTestVNETbfbf50\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.Network/virtualNetworks/PSTestVNETbfbf50\",\r\n \"etag\": \"W/\\\"a068f445-6733-407b-81f8-9bdead77ca52\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"055b1a47-037a-4661-a157-359fbb04de87\",\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\": \"PSTestSNCbfbf50\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.Network/virtualNetworks/PSTestVNETbfbf50/subnets/PSTestSNCbfbf50\",\r\n \"etag\": \"W/\\\"a068f445-6733-407b-81f8-9bdead77ca52\\\"\",\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 },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"PSTestVNET48b610\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.Network/virtualNetworks/PSTestVNET48b610\",\r\n \"etag\": \"W/\\\"d20d1e76-13fc-4540-b799-5f88826ecb0f\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"2adee8b0-60fd-45b4-a586-dc1fc2a871fa\",\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\": \"PSTestSNC48b610\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.Network/virtualNetworks/PSTestVNET48b610/subnets/PSTestSNC48b610\",\r\n \"etag\": \"W/\\\"d20d1e76-13fc-4540-b799-5f88826ecb0f\\\"\",\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 },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.Network/virtualNetworks/PSTestVNETbfbf50?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZiZjU5Y2YvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy9QU1Rlc3RWTkVUYmZiZjUwP2FwaS12ZXJzaW9uPTIwMjEtMDUtMDE=", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.Network/virtualNetworks/PSTestVNET48b610?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNDhiNjFhN2QvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy9QU1Rlc3RWTkVUNDhiNjEwP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=", "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 \"applicationGatewayIpConfigurations\": []\r\n },\r\n \"name\": \"PSTestSNCbfbf50\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"ipAllocations\": []\r\n },\r\n \"location\": \"southeastasia\"\r\n}", + "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 \"applicationGatewayIpConfigurations\": []\r\n },\r\n \"name\": \"PSTestSNC48b610\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"ipAllocations\": []\r\n },\r\n \"location\": \"southeastasia\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "7ee9df09-6efa-438f-b8c5-42bef175b327" + "54d93006-9dfa-41b8-8556-95f37381b870" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -613,19 +613,19 @@ "3" ], "x-ms-request-id": [ - "cd273731-7f84-4571-a916-6c9d77c12371" + "bc4c8362-083a-4880-bbb7-66c2b295fd22" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Network/locations/southeastasia/operations/cd273731-7f84-4571-a916-6c9d77c12371?api-version=2021-05-01" + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Network/locations/southeastasia/operations/bc4c8362-083a-4880-bbb7-66c2b295fd22?api-version=2021-08-01" ], "x-ms-correlation-request-id": [ - "6255e449-42ad-4bda-b002-a7ed643ac5f6" + "62921297-6603-4fb6-b9f6-6ca8d9ff1f51" ], "Azure-AsyncNotification": [ "Enabled" ], "x-ms-arm-service-request-id": [ - "c4053eb5-6e3b-41a4-9db9-1f8c57b92a6f" + "224784bb-b79c-41d0-ad1d-ee22e94a21d8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -638,13 +638,13 @@ "1199" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T203531Z:6255e449-42ad-4bda-b002-a7ed643ac5f6" + "JIOINDIAWEST:20220516T175758Z:62921297-6603-4fb6-b9f6-6ca8d9ff1f51" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 20:35:31 GMT" + "Mon, 16 May 2022 17:57:58 GMT" ], "Content-Length": [ "1313" @@ -656,23 +656,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"PSTestVNETbfbf50\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.Network/virtualNetworks/PSTestVNETbfbf50\",\r\n \"etag\": \"W/\\\"c85c3090-fefa-46e8-81fe-ea5dc2e14b3e\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"055b1a47-037a-4661-a157-359fbb04de87\",\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\": \"PSTestSNCbfbf50\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.Network/virtualNetworks/PSTestVNETbfbf50/subnets/PSTestSNCbfbf50\",\r\n \"etag\": \"W/\\\"c85c3090-fefa-46e8-81fe-ea5dc2e14b3e\\\"\",\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 },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"PSTestVNET48b610\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.Network/virtualNetworks/PSTestVNET48b610\",\r\n \"etag\": \"W/\\\"225cca00-7e2b-405d-a1f3-2d2d1cd6dd9e\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"2adee8b0-60fd-45b4-a586-dc1fc2a871fa\",\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\": \"PSTestSNC48b610\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.Network/virtualNetworks/PSTestVNET48b610/subnets/PSTestSNC48b610\",\r\n \"etag\": \"W/\\\"225cca00-7e2b-405d-a1f3-2d2d1cd6dd9e\\\"\",\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 },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Network/locations/southeastasia/operations/cd273731-7f84-4571-a916-6c9d77c12371?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2NkMjczNzMxLTdmODQtNDU3MS1hOTE2LTZjOWQ3N2MxMjM3MT9hcGktdmVyc2lvbj0yMDIxLTA1LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Network/locations/southeastasia/operations/bc4c8362-083a-4880-bbb7-66c2b295fd22?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2JjNGM4MzYyLTA4M2EtNDg4MC1iYmI3LTY2YzJiMjk1ZmQyMj9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7ee9df09-6efa-438f-b8c5-42bef175b327" + "54d93006-9dfa-41b8-8556-95f37381b870" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ] }, "ResponseHeaders": { @@ -683,13 +683,13 @@ "no-cache" ], "x-ms-request-id": [ - "6a8ae4d9-f60f-466e-b4e2-b5124fb1774d" + "66e433ec-e5aa-4311-91c1-8ca3c56baeeb" ], "x-ms-correlation-request-id": [ - "673cafec-d9d4-482e-988d-2abf0364b9d5" + "c69b8a94-763f-4034-b5a3-f87dec231f16" ], "x-ms-arm-service-request-id": [ - "9b7a7c24-d639-4116-988a-d338bf6abec4" + "c9a676b9-8174-4f88-916c-0e5cc4803aa9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -702,13 +702,13 @@ "11998" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T203535Z:673cafec-d9d4-482e-988d-2abf0364b9d5" + "JIOINDIAWEST:20220516T175802Z:c69b8a94-763f-4034-b5a3-f87dec231f16" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 20:35:35 GMT" + "Mon, 16 May 2022 17:58:01 GMT" ], "Content-Length": [ "29" @@ -724,22 +724,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.Network/publicIPAddresses/pstestpublicdnsbfbf50?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZiZjU5Y2YvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BzdGVzdHB1YmxpY2Ruc2JmYmY1MD9hcGktdmVyc2lvbj0yMDIxLTA1LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.Network/publicIPAddresses/pstestpublicdns48b610?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNDhiNjFhN2QvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BzdGVzdHB1YmxpY2RuczQ4YjYxMD9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f40a0bb3-214b-451e-bf7e-836aee09b40a" + "8fa99801-5231-4998-99e6-adf8a9ad03e5" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ] }, "ResponseHeaders": { @@ -753,13 +753,13 @@ "gateway" ], "x-ms-request-id": [ - "8c19e9e6-6c6d-4832-bfd1-3e9955bb6841" + "305aa29d-5148-451f-b68d-50291c20ac84" ], "x-ms-correlation-request-id": [ - "8c19e9e6-6c6d-4832-bfd1-3e9955bb6841" + "305aa29d-5148-451f-b68d-50291c20ac84" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T203536Z:8c19e9e6-6c6d-4832-bfd1-3e9955bb6841" + "JIOINDIAWEST:20220516T175803Z:305aa29d-5148-451f-b68d-50291c20ac84" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -768,7 +768,7 @@ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 20:35:36 GMT" + "Mon, 16 May 2022 17:58:02 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -780,23 +780,23 @@ "245" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/publicIPAddresses/pstestpublicdnsbfbf50' under resource group 'PSTestRGbfbf59cf' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/publicIPAddresses/pstestpublicdns48b610' under resource group 'PSTestRG48b61a7d' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.Network/publicIPAddresses/pstestpublicdnsbfbf50?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZiZjU5Y2YvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BzdGVzdHB1YmxpY2Ruc2JmYmY1MD9hcGktdmVyc2lvbj0yMDIxLTA1LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.Network/publicIPAddresses/pstestpublicdns48b610?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNDhiNjFhN2QvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BzdGVzdHB1YmxpY2RuczQ4YjYxMD9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f40a0bb3-214b-451e-bf7e-836aee09b40a" + "8fa99801-5231-4998-99e6-adf8a9ad03e5" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ] }, "ResponseHeaders": { @@ -807,16 +807,16 @@ "no-cache" ], "ETag": [ - "W/\"5e5e130a-63ac-42b4-8a14-e927dc5f6cf7\"" + "W/\"e879de56-be80-42f3-87ea-b6ab45843c78\"" ], "x-ms-request-id": [ - "b8559b06-fa1b-442c-859c-e0af8c14d344" + "bb035fa3-cfc0-4a15-b745-2a2e42856315" ], "x-ms-correlation-request-id": [ - "46d11c0b-bdd6-49c8-8d8a-d1c367a398bd" + "0d849e63-21a2-4322-af49-d0fbb679b378" ], "x-ms-arm-service-request-id": [ - "56380f43-d260-4f46-82c1-20d9c2df53de" + "55b0b2bf-fd33-4186-9ff5-62707a4629e4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -829,16 +829,16 @@ "11993" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T203543Z:46d11c0b-bdd6-49c8-8d8a-d1c367a398bd" + "JIOINDIAWEST:20220516T175806Z:0d849e63-21a2-4322-af49-d0fbb679b378" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 20:35:43 GMT" + "Mon, 16 May 2022 17:58:06 GMT" ], "Content-Length": [ - "698" + "699" ], "Content-Type": [ "application/json; charset=utf-8" @@ -847,26 +847,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"pstestpublicdnsbfbf50\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.Network/publicIPAddresses/pstestpublicdnsbfbf50\",\r\n \"etag\": \"W/\\\"5e5e130a-63ac-42b4-8a14-e927dc5f6cf7\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"a317ec30-b2ca-40aa-9372-e24dae363cac\",\r\n \"ipAddress\": \"20.212.158.98\",\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 \"tier\": \"Regional\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"pstestpublicdns48b610\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.Network/publicIPAddresses/pstestpublicdns48b610\",\r\n \"etag\": \"W/\\\"e879de56-be80-42f3-87ea-b6ab45843c78\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"981be06e-14a3-429a-a05c-0e9acddd0cf8\",\r\n \"ipAddress\": \"20.205.157.146\",\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 \"tier\": \"Regional\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.Network/publicIPAddresses/pstestpublicdnsbfbf50?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZiZjU5Y2YvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BzdGVzdHB1YmxpY2Ruc2JmYmY1MD9hcGktdmVyc2lvbj0yMDIxLTA1LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.Network/publicIPAddresses/pstestpublicdns48b610?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNDhiNjFhN2QvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BzdGVzdHB1YmxpY2RuczQ4YjYxMD9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f40a0bb3-214b-451e-bf7e-836aee09b40a" + "8fa99801-5231-4998-99e6-adf8a9ad03e5" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ] }, "ResponseHeaders": { @@ -877,16 +877,16 @@ "no-cache" ], "ETag": [ - "W/\"5e5e130a-63ac-42b4-8a14-e927dc5f6cf7\"" + "W/\"e879de56-be80-42f3-87ea-b6ab45843c78\"" ], "x-ms-request-id": [ - "7bfee9b8-0a29-4c66-97ff-d0fd1b036b96" + "87a7a3b0-acc7-4cd6-9ce8-df18005dc45f" ], "x-ms-correlation-request-id": [ - "bce18097-dfbe-4677-89ad-586176728be7" + "304fae4e-c298-4626-9772-328fe4bf09f7" ], "x-ms-arm-service-request-id": [ - "74f7d5f1-a5b7-44f3-bf7a-53b9a3da874d" + "270095cb-2d72-41e9-b650-b842efef7603" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -899,16 +899,16 @@ "11992" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T203543Z:bce18097-dfbe-4677-89ad-586176728be7" + "JIOINDIAWEST:20220516T175807Z:304fae4e-c298-4626-9772-328fe4bf09f7" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 20:35:43 GMT" + "Mon, 16 May 2022 17:58:06 GMT" ], "Content-Length": [ - "698" + "699" ], "Content-Type": [ "application/json; charset=utf-8" @@ -917,26 +917,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"pstestpublicdnsbfbf50\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.Network/publicIPAddresses/pstestpublicdnsbfbf50\",\r\n \"etag\": \"W/\\\"5e5e130a-63ac-42b4-8a14-e927dc5f6cf7\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"a317ec30-b2ca-40aa-9372-e24dae363cac\",\r\n \"ipAddress\": \"20.212.158.98\",\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 \"tier\": \"Regional\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"pstestpublicdns48b610\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.Network/publicIPAddresses/pstestpublicdns48b610\",\r\n \"etag\": \"W/\\\"e879de56-be80-42f3-87ea-b6ab45843c78\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"981be06e-14a3-429a-a05c-0e9acddd0cf8\",\r\n \"ipAddress\": \"20.205.157.146\",\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 \"tier\": \"Regional\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.Network/publicIPAddresses/pstestpublicdnsbfbf50?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZiZjU5Y2YvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BzdGVzdHB1YmxpY2Ruc2JmYmY1MD9hcGktdmVyc2lvbj0yMDIxLTA1LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.Network/publicIPAddresses/pstestpublicdns48b610?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNDhiNjFhN2QvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BzdGVzdHB1YmxpY2RuczQ4YjYxMD9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "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\": \"southeastasia\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "f40a0bb3-214b-451e-bf7e-836aee09b40a" + "8fa99801-5231-4998-99e6-adf8a9ad03e5" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -956,19 +956,19 @@ "1" ], "x-ms-request-id": [ - "544c3be8-17c8-4798-baaf-cf82e1f93e73" + "23668745-788c-4781-9efb-4224b9ecc4a9" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Network/locations/southeastasia/operations/544c3be8-17c8-4798-baaf-cf82e1f93e73?api-version=2021-05-01" + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Network/locations/southeastasia/operations/23668745-788c-4781-9efb-4224b9ecc4a9?api-version=2021-08-01" ], "x-ms-correlation-request-id": [ - "2051afe2-e161-4eea-a716-6d6a7216e27d" + "f3d78ebe-3470-4950-97f8-ad484b94855c" ], "Azure-AsyncNotification": [ "Enabled" ], "x-ms-arm-service-request-id": [ - "50ebd986-1a8b-4870-bad3-f255155e8f44" + "d736187c-dd05-4b57-8b9a-0de75c89ecc7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -981,13 +981,13 @@ "1198" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T203541Z:2051afe2-e161-4eea-a716-6d6a7216e27d" + "JIOINDIAWEST:20220516T175805Z:f3d78ebe-3470-4950-97f8-ad484b94855c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 20:35:41 GMT" + "Mon, 16 May 2022 17:58:04 GMT" ], "Content-Length": [ "662" @@ -999,23 +999,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"pstestpublicdnsbfbf50\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.Network/publicIPAddresses/pstestpublicdnsbfbf50\",\r\n \"etag\": \"W/\\\"1e4ab599-a46a-4107-8e87-c69b6df1eaee\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"a317ec30-b2ca-40aa-9372-e24dae363cac\",\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 \"tier\": \"Regional\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"pstestpublicdns48b610\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.Network/publicIPAddresses/pstestpublicdns48b610\",\r\n \"etag\": \"W/\\\"e8b1746c-29cc-4575-a0dd-71e1d9569e2f\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"981be06e-14a3-429a-a05c-0e9acddd0cf8\",\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 \"tier\": \"Regional\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Network/locations/southeastasia/operations/544c3be8-17c8-4798-baaf-cf82e1f93e73?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzU0NGMzYmU4LTE3YzgtNDc5OC1iYWFmLWNmODJlMWY5M2U3Mz9hcGktdmVyc2lvbj0yMDIxLTA1LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Network/locations/southeastasia/operations/23668745-788c-4781-9efb-4224b9ecc4a9?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzIzNjY4NzQ1LTc4OGMtNDc4MS05ZWZiLTQyMjRiOWVjYzRhOT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f40a0bb3-214b-451e-bf7e-836aee09b40a" + "8fa99801-5231-4998-99e6-adf8a9ad03e5" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ] }, "ResponseHeaders": { @@ -1026,13 +1026,13 @@ "no-cache" ], "x-ms-request-id": [ - "239227a9-0490-4811-9669-bd42fb36cedc" + "942a2ff6-993b-4ab3-a3c5-19d5887ef797" ], "x-ms-correlation-request-id": [ - "cc1ed08f-6a61-427a-9502-6bb28b636dca" + "7310d183-c205-4fec-a864-4d50db2d4c4a" ], "x-ms-arm-service-request-id": [ - "91d7cf5c-4a38-4fa8-810b-877543177b2b" + "aa2ec9a5-4478-4aa8-b98e-b8639792295c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1045,13 +1045,13 @@ "11994" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T203543Z:cc1ed08f-6a61-427a-9502-6bb28b636dca" + "JIOINDIAWEST:20220516T175806Z:7310d183-c205-4fec-a864-4d50db2d4c4a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 20:35:42 GMT" + "Mon, 16 May 2022 17:58:05 GMT" ], "Content-Length": [ "29" @@ -1067,22 +1067,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGbfbf50?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZiZjU5Y2YvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtTZWN1cml0eUdyb3Vwcy9QU1Rlc3ROU0diZmJmNTA/YXBpLXZlcnNpb249MjAyMS0wNS0wMQ==", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG48b610?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNDhiNjFhN2QvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtTZWN1cml0eUdyb3Vwcy9QU1Rlc3ROU0c0OGI2MTA/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0f86d220-1f2a-454d-ace3-38b0b66d0edf" + "ba48eb47-cc9d-4c0a-a9e5-d16df80727f9" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ] }, "ResponseHeaders": { @@ -1096,13 +1096,13 @@ "gateway" ], "x-ms-request-id": [ - "493bcd3a-8857-499e-a146-c478fcd2dbaf" + "d480f9f4-b7cd-4867-b4ff-8d4b07d2ab8b" ], "x-ms-correlation-request-id": [ - "493bcd3a-8857-499e-a146-c478fcd2dbaf" + "d480f9f4-b7cd-4867-b4ff-8d4b07d2ab8b" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T203544Z:493bcd3a-8857-499e-a146-c478fcd2dbaf" + "JIOINDIAWEST:20220516T175807Z:d480f9f4-b7cd-4867-b4ff-8d4b07d2ab8b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1111,7 +1111,7 @@ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 20:35:43 GMT" + "Mon, 16 May 2022 17:58:06 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1123,23 +1123,23 @@ "243" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/networkSecurityGroups/PSTestNSGbfbf50' under resource group 'PSTestRGbfbf59cf' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/networkSecurityGroups/PSTestNSG48b610' under resource group 'PSTestRG48b61a7d' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGbfbf50?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZiZjU5Y2YvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtTZWN1cml0eUdyb3Vwcy9QU1Rlc3ROU0diZmJmNTA/YXBpLXZlcnNpb249MjAyMS0wNS0wMQ==", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG48b610?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNDhiNjFhN2QvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtTZWN1cml0eUdyb3Vwcy9QU1Rlc3ROU0c0OGI2MTA/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0f86d220-1f2a-454d-ace3-38b0b66d0edf" + "ba48eb47-cc9d-4c0a-a9e5-d16df80727f9" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ] }, "ResponseHeaders": { @@ -1150,16 +1150,16 @@ "no-cache" ], "ETag": [ - "W/\"316ebc77-cba8-49bd-8e8a-b1aa0d1728bf\"" + "W/\"1dac7de0-c92c-4f88-b411-67325050e9b1\"" ], "x-ms-request-id": [ - "dca770be-1e5d-4e34-83a4-8d2e81954b7f" + "6dee4386-19d3-4aa2-9d5c-26d18fc24e2d" ], "x-ms-correlation-request-id": [ - "8e35309c-ed60-4232-b435-ebf5a7e38520" + "3eee56a3-4900-4d7a-b3e7-2b11e75f7e0c" ], "x-ms-arm-service-request-id": [ - "7b36d52c-c1d3-4ea5-8b06-7965b40f2bf4" + "c3eb490d-3c0f-4cf5-bd26-505e5c0ce0a5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1172,13 +1172,13 @@ "11989" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T203551Z:8e35309c-ed60-4232-b435-ebf5a7e38520" + "JIOINDIAWEST:20220516T175812Z:3eee56a3-4900-4d7a-b3e7-2b11e75f7e0c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 20:35:51 GMT" + "Mon, 16 May 2022 17:58:11 GMT" ], "Content-Length": [ "8475" @@ -1190,26 +1190,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"PSTestNSGbfbf50\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGbfbf50\",\r\n \"etag\": \"W/\\\"316ebc77-cba8-49bd-8e8a-b1aa0d1728bf\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"dcbb1968-147b-4753-a8aa-73552ec74b62\",\r\n \"securityRules\": [\r\n {\r\n \"name\": \"PSTestNSGRuleRDPbfbf50\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGbfbf50/securityRules/PSTestNSGRuleRDPbfbf50\",\r\n \"etag\": \"W/\\\"316ebc77-cba8-49bd-8e8a-b1aa0d1728bf\\\"\",\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\": \"PSTestNSGRuleWebbfbf50\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGbfbf50/securityRules/PSTestNSGRuleWebbfbf50\",\r\n \"etag\": \"W/\\\"316ebc77-cba8-49bd-8e8a-b1aa0d1728bf\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGbfbf50/defaultSecurityRules/AllowVnetInBound\",\r\n \"etag\": \"W/\\\"316ebc77-cba8-49bd-8e8a-b1aa0d1728bf\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGbfbf50/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\r\n \"etag\": \"W/\\\"316ebc77-cba8-49bd-8e8a-b1aa0d1728bf\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGbfbf50/defaultSecurityRules/DenyAllInBound\",\r\n \"etag\": \"W/\\\"316ebc77-cba8-49bd-8e8a-b1aa0d1728bf\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGbfbf50/defaultSecurityRules/AllowVnetOutBound\",\r\n \"etag\": \"W/\\\"316ebc77-cba8-49bd-8e8a-b1aa0d1728bf\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGbfbf50/defaultSecurityRules/AllowInternetOutBound\",\r\n \"etag\": \"W/\\\"316ebc77-cba8-49bd-8e8a-b1aa0d1728bf\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGbfbf50/defaultSecurityRules/DenyAllOutBound\",\r\n \"etag\": \"W/\\\"316ebc77-cba8-49bd-8e8a-b1aa0d1728bf\\\"\",\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}", + "ResponseBody": "{\r\n \"name\": \"PSTestNSG48b610\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG48b610\",\r\n \"etag\": \"W/\\\"1dac7de0-c92c-4f88-b411-67325050e9b1\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"b1c2e9ab-c1be-46ed-8e29-f3937e777c7c\",\r\n \"securityRules\": [\r\n {\r\n \"name\": \"PSTestNSGRuleRDP48b610\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG48b610/securityRules/PSTestNSGRuleRDP48b610\",\r\n \"etag\": \"W/\\\"1dac7de0-c92c-4f88-b411-67325050e9b1\\\"\",\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\": \"PSTestNSGRuleWeb48b610\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG48b610/securityRules/PSTestNSGRuleWeb48b610\",\r\n \"etag\": \"W/\\\"1dac7de0-c92c-4f88-b411-67325050e9b1\\\"\",\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/PSTestRG48b61a7d/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG48b610/defaultSecurityRules/AllowVnetInBound\",\r\n \"etag\": \"W/\\\"1dac7de0-c92c-4f88-b411-67325050e9b1\\\"\",\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/PSTestRG48b61a7d/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG48b610/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\r\n \"etag\": \"W/\\\"1dac7de0-c92c-4f88-b411-67325050e9b1\\\"\",\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/PSTestRG48b61a7d/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG48b610/defaultSecurityRules/DenyAllInBound\",\r\n \"etag\": \"W/\\\"1dac7de0-c92c-4f88-b411-67325050e9b1\\\"\",\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/PSTestRG48b61a7d/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG48b610/defaultSecurityRules/AllowVnetOutBound\",\r\n \"etag\": \"W/\\\"1dac7de0-c92c-4f88-b411-67325050e9b1\\\"\",\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/PSTestRG48b61a7d/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG48b610/defaultSecurityRules/AllowInternetOutBound\",\r\n \"etag\": \"W/\\\"1dac7de0-c92c-4f88-b411-67325050e9b1\\\"\",\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/PSTestRG48b61a7d/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG48b610/defaultSecurityRules/DenyAllOutBound\",\r\n \"etag\": \"W/\\\"1dac7de0-c92c-4f88-b411-67325050e9b1\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGbfbf50?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZiZjU5Y2YvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtTZWN1cml0eUdyb3Vwcy9QU1Rlc3ROU0diZmJmNTA/YXBpLXZlcnNpb249MjAyMS0wNS0wMQ==", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG48b610?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNDhiNjFhN2QvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtTZWN1cml0eUdyb3Vwcy9QU1Rlc3ROU0c0OGI2MTA/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0f86d220-1f2a-454d-ace3-38b0b66d0edf" + "ba48eb47-cc9d-4c0a-a9e5-d16df80727f9" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ] }, "ResponseHeaders": { @@ -1220,16 +1220,16 @@ "no-cache" ], "ETag": [ - "W/\"316ebc77-cba8-49bd-8e8a-b1aa0d1728bf\"" + "W/\"1dac7de0-c92c-4f88-b411-67325050e9b1\"" ], "x-ms-request-id": [ - "458a0f73-d739-453b-b839-b92c12956680" + "ffe0b2cb-bf1f-4d98-9565-08b02efdbf80" ], "x-ms-correlation-request-id": [ - "8dd855f1-9d7e-4b7c-9d74-92dcfa1125cf" + "f7372829-e480-4b02-92f6-811344d24e51" ], "x-ms-arm-service-request-id": [ - "5d88ef6f-44e0-4475-a151-db46cb8e9d6d" + "6820544b-24f5-476c-8c73-297b4f36baaf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1242,13 +1242,13 @@ "11988" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T203551Z:8dd855f1-9d7e-4b7c-9d74-92dcfa1125cf" + "JIOINDIAWEST:20220516T175813Z:f7372829-e480-4b02-92f6-811344d24e51" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 20:35:51 GMT" + "Mon, 16 May 2022 17:58:13 GMT" ], "Content-Length": [ "8475" @@ -1260,26 +1260,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"PSTestNSGbfbf50\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGbfbf50\",\r\n \"etag\": \"W/\\\"316ebc77-cba8-49bd-8e8a-b1aa0d1728bf\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"dcbb1968-147b-4753-a8aa-73552ec74b62\",\r\n \"securityRules\": [\r\n {\r\n \"name\": \"PSTestNSGRuleRDPbfbf50\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGbfbf50/securityRules/PSTestNSGRuleRDPbfbf50\",\r\n \"etag\": \"W/\\\"316ebc77-cba8-49bd-8e8a-b1aa0d1728bf\\\"\",\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\": \"PSTestNSGRuleWebbfbf50\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGbfbf50/securityRules/PSTestNSGRuleWebbfbf50\",\r\n \"etag\": \"W/\\\"316ebc77-cba8-49bd-8e8a-b1aa0d1728bf\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGbfbf50/defaultSecurityRules/AllowVnetInBound\",\r\n \"etag\": \"W/\\\"316ebc77-cba8-49bd-8e8a-b1aa0d1728bf\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGbfbf50/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\r\n \"etag\": \"W/\\\"316ebc77-cba8-49bd-8e8a-b1aa0d1728bf\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGbfbf50/defaultSecurityRules/DenyAllInBound\",\r\n \"etag\": \"W/\\\"316ebc77-cba8-49bd-8e8a-b1aa0d1728bf\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGbfbf50/defaultSecurityRules/AllowVnetOutBound\",\r\n \"etag\": \"W/\\\"316ebc77-cba8-49bd-8e8a-b1aa0d1728bf\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGbfbf50/defaultSecurityRules/AllowInternetOutBound\",\r\n \"etag\": \"W/\\\"316ebc77-cba8-49bd-8e8a-b1aa0d1728bf\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGbfbf50/defaultSecurityRules/DenyAllOutBound\",\r\n \"etag\": \"W/\\\"316ebc77-cba8-49bd-8e8a-b1aa0d1728bf\\\"\",\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}", + "ResponseBody": "{\r\n \"name\": \"PSTestNSG48b610\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG48b610\",\r\n \"etag\": \"W/\\\"1dac7de0-c92c-4f88-b411-67325050e9b1\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"b1c2e9ab-c1be-46ed-8e29-f3937e777c7c\",\r\n \"securityRules\": [\r\n {\r\n \"name\": \"PSTestNSGRuleRDP48b610\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG48b610/securityRules/PSTestNSGRuleRDP48b610\",\r\n \"etag\": \"W/\\\"1dac7de0-c92c-4f88-b411-67325050e9b1\\\"\",\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\": \"PSTestNSGRuleWeb48b610\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG48b610/securityRules/PSTestNSGRuleWeb48b610\",\r\n \"etag\": \"W/\\\"1dac7de0-c92c-4f88-b411-67325050e9b1\\\"\",\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/PSTestRG48b61a7d/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG48b610/defaultSecurityRules/AllowVnetInBound\",\r\n \"etag\": \"W/\\\"1dac7de0-c92c-4f88-b411-67325050e9b1\\\"\",\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/PSTestRG48b61a7d/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG48b610/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\r\n \"etag\": \"W/\\\"1dac7de0-c92c-4f88-b411-67325050e9b1\\\"\",\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/PSTestRG48b61a7d/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG48b610/defaultSecurityRules/DenyAllInBound\",\r\n \"etag\": \"W/\\\"1dac7de0-c92c-4f88-b411-67325050e9b1\\\"\",\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/PSTestRG48b61a7d/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG48b610/defaultSecurityRules/AllowVnetOutBound\",\r\n \"etag\": \"W/\\\"1dac7de0-c92c-4f88-b411-67325050e9b1\\\"\",\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/PSTestRG48b61a7d/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG48b610/defaultSecurityRules/AllowInternetOutBound\",\r\n \"etag\": \"W/\\\"1dac7de0-c92c-4f88-b411-67325050e9b1\\\"\",\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/PSTestRG48b61a7d/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG48b610/defaultSecurityRules/DenyAllOutBound\",\r\n \"etag\": \"W/\\\"1dac7de0-c92c-4f88-b411-67325050e9b1\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGbfbf50?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZiZjU5Y2YvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtTZWN1cml0eUdyb3Vwcy9QU1Rlc3ROU0diZmJmNTA/YXBpLXZlcnNpb249MjAyMS0wNS0wMQ==", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG48b610?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNDhiNjFhN2QvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtTZWN1cml0eUdyb3Vwcy9QU1Rlc3ROU0c0OGI2MTA/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==", "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\": \"PSTestNSGRuleRDPbfbf50\"\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\": \"PSTestNSGRuleWebbfbf50\"\r\n }\r\n ]\r\n },\r\n \"location\": \"southeastasia\"\r\n}", + "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\": \"PSTestNSGRuleRDP48b610\"\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\": \"PSTestNSGRuleWeb48b610\"\r\n }\r\n ]\r\n },\r\n \"location\": \"southeastasia\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "0f86d220-1f2a-454d-ace3-38b0b66d0edf" + "ba48eb47-cc9d-4c0a-a9e5-d16df80727f9" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1299,19 +1299,19 @@ "3" ], "x-ms-request-id": [ - "d631d1cd-e657-4fa1-a8df-85fa3c49c16e" + "2a25ab6f-874b-42f1-8aed-8de082fdd676" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Network/locations/southeastasia/operations/d631d1cd-e657-4fa1-a8df-85fa3c49c16e?api-version=2021-05-01" + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Network/locations/southeastasia/operations/2a25ab6f-874b-42f1-8aed-8de082fdd676?api-version=2021-08-01" ], "x-ms-correlation-request-id": [ - "49218914-1b6c-4406-9780-f83aa8656cc7" + "76361f8d-cc7d-4e4d-ab19-212471ff630b" ], "Azure-AsyncNotification": [ "Enabled" ], "x-ms-arm-service-request-id": [ - "4a478e66-83ec-4048-ae6e-f7e4b1dd2a99" + "665aa7e1-34f3-45c8-9104-b4a3ced77c12" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1324,13 +1324,13 @@ "1197" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T203547Z:49218914-1b6c-4406-9780-f83aa8656cc7" + "JIOINDIAWEST:20220516T175809Z:76361f8d-cc7d-4e4d-ab19-212471ff630b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 20:35:47 GMT" + "Mon, 16 May 2022 17:58:08 GMT" ], "Content-Length": [ "8466" @@ -1342,23 +1342,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"PSTestNSGbfbf50\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGbfbf50\",\r\n \"etag\": \"W/\\\"99d231da-aa78-4736-ab6b-a40db960a133\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"dcbb1968-147b-4753-a8aa-73552ec74b62\",\r\n \"securityRules\": [\r\n {\r\n \"name\": \"PSTestNSGRuleRDPbfbf50\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGbfbf50/securityRules/PSTestNSGRuleRDPbfbf50\",\r\n \"etag\": \"W/\\\"99d231da-aa78-4736-ab6b-a40db960a133\\\"\",\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\": \"PSTestNSGRuleWebbfbf50\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGbfbf50/securityRules/PSTestNSGRuleWebbfbf50\",\r\n \"etag\": \"W/\\\"99d231da-aa78-4736-ab6b-a40db960a133\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGbfbf50/defaultSecurityRules/AllowVnetInBound\",\r\n \"etag\": \"W/\\\"99d231da-aa78-4736-ab6b-a40db960a133\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGbfbf50/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\r\n \"etag\": \"W/\\\"99d231da-aa78-4736-ab6b-a40db960a133\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGbfbf50/defaultSecurityRules/DenyAllInBound\",\r\n \"etag\": \"W/\\\"99d231da-aa78-4736-ab6b-a40db960a133\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGbfbf50/defaultSecurityRules/AllowVnetOutBound\",\r\n \"etag\": \"W/\\\"99d231da-aa78-4736-ab6b-a40db960a133\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGbfbf50/defaultSecurityRules/AllowInternetOutBound\",\r\n \"etag\": \"W/\\\"99d231da-aa78-4736-ab6b-a40db960a133\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGbfbf50/defaultSecurityRules/DenyAllOutBound\",\r\n \"etag\": \"W/\\\"99d231da-aa78-4736-ab6b-a40db960a133\\\"\",\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}", + "ResponseBody": "{\r\n \"name\": \"PSTestNSG48b610\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG48b610\",\r\n \"etag\": \"W/\\\"69d5a8a7-864f-403e-bb18-33426369dbc2\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"b1c2e9ab-c1be-46ed-8e29-f3937e777c7c\",\r\n \"securityRules\": [\r\n {\r\n \"name\": \"PSTestNSGRuleRDP48b610\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG48b610/securityRules/PSTestNSGRuleRDP48b610\",\r\n \"etag\": \"W/\\\"69d5a8a7-864f-403e-bb18-33426369dbc2\\\"\",\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\": \"PSTestNSGRuleWeb48b610\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG48b610/securityRules/PSTestNSGRuleWeb48b610\",\r\n \"etag\": \"W/\\\"69d5a8a7-864f-403e-bb18-33426369dbc2\\\"\",\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/PSTestRG48b61a7d/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG48b610/defaultSecurityRules/AllowVnetInBound\",\r\n \"etag\": \"W/\\\"69d5a8a7-864f-403e-bb18-33426369dbc2\\\"\",\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/PSTestRG48b61a7d/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG48b610/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\r\n \"etag\": \"W/\\\"69d5a8a7-864f-403e-bb18-33426369dbc2\\\"\",\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/PSTestRG48b61a7d/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG48b610/defaultSecurityRules/DenyAllInBound\",\r\n \"etag\": \"W/\\\"69d5a8a7-864f-403e-bb18-33426369dbc2\\\"\",\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/PSTestRG48b61a7d/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG48b610/defaultSecurityRules/AllowVnetOutBound\",\r\n \"etag\": \"W/\\\"69d5a8a7-864f-403e-bb18-33426369dbc2\\\"\",\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/PSTestRG48b61a7d/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG48b610/defaultSecurityRules/AllowInternetOutBound\",\r\n \"etag\": \"W/\\\"69d5a8a7-864f-403e-bb18-33426369dbc2\\\"\",\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/PSTestRG48b61a7d/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG48b610/defaultSecurityRules/DenyAllOutBound\",\r\n \"etag\": \"W/\\\"69d5a8a7-864f-403e-bb18-33426369dbc2\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Network/locations/southeastasia/operations/d631d1cd-e657-4fa1-a8df-85fa3c49c16e?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Q2MzFkMWNkLWU2NTctNGZhMS1hOGRmLTg1ZmEzYzQ5YzE2ZT9hcGktdmVyc2lvbj0yMDIxLTA1LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Network/locations/southeastasia/operations/2a25ab6f-874b-42f1-8aed-8de082fdd676?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzJhMjVhYjZmLTg3NGItNDJmMS04YWVkLThkZTA4MmZkZDY3Nj9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0f86d220-1f2a-454d-ace3-38b0b66d0edf" + "ba48eb47-cc9d-4c0a-a9e5-d16df80727f9" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ] }, "ResponseHeaders": { @@ -1369,13 +1369,13 @@ "no-cache" ], "x-ms-request-id": [ - "4f646e88-a531-41ef-8f23-ff9a656aeedb" + "8be8664e-1a98-4bb2-b0ad-85abf1d3549f" ], "x-ms-correlation-request-id": [ - "cd6adf22-4951-4f65-ba83-318cd38f83f7" + "621b123a-4bd8-452b-a5f1-6b02ab5a3fe5" ], "x-ms-arm-service-request-id": [ - "59062c9f-db85-40aa-bc0d-5b31d9b25b96" + "53716ae4-3d6d-4a49-bb7b-87273b2da31c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1388,13 +1388,13 @@ "11990" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T203551Z:cd6adf22-4951-4f65-ba83-318cd38f83f7" + "JIOINDIAWEST:20220516T175812Z:621b123a-4bd8-452b-a5f1-6b02ab5a3fe5" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 20:35:50 GMT" + "Mon, 16 May 2022 17:58:11 GMT" ], "Content-Length": [ "29" @@ -1410,22 +1410,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.Network/networkInterfaces/PSTestNICbfbf50?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZiZjU5Y2YvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL1BTVGVzdE5JQ2JmYmY1MD9hcGktdmVyc2lvbj0yMDIxLTA1LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.Network/networkInterfaces/PSTestNIC48b610?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNDhiNjFhN2QvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL1BTVGVzdE5JQzQ4YjYxMD9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "569d54fd-18fb-4c80-aaca-d54002156e8f" + "d77c9703-5d8c-4975-af43-bfb9cd17779f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ] }, "ResponseHeaders": { @@ -1439,13 +1439,13 @@ "gateway" ], "x-ms-request-id": [ - "0eb2a830-c6fc-49d4-8b8c-539e2a4c0574" + "24e76f5c-b45c-49b0-8d03-3dbc65c24051" ], "x-ms-correlation-request-id": [ - "0eb2a830-c6fc-49d4-8b8c-539e2a4c0574" + "24e76f5c-b45c-49b0-8d03-3dbc65c24051" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T203552Z:0eb2a830-c6fc-49d4-8b8c-539e2a4c0574" + "JIOINDIAWEST:20220516T175813Z:24e76f5c-b45c-49b0-8d03-3dbc65c24051" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1454,7 +1454,7 @@ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 20:35:51 GMT" + "Mon, 16 May 2022 17:58:13 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1466,23 +1466,23 @@ "239" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/networkInterfaces/PSTestNICbfbf50' under resource group 'PSTestRGbfbf59cf' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/networkInterfaces/PSTestNIC48b610' under resource group 'PSTestRG48b61a7d' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.Network/networkInterfaces/PSTestNICbfbf50?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZiZjU5Y2YvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL1BTVGVzdE5JQ2JmYmY1MD9hcGktdmVyc2lvbj0yMDIxLTA1LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.Network/networkInterfaces/PSTestNIC48b610?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNDhiNjFhN2QvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL1BTVGVzdE5JQzQ4YjYxMD9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "569d54fd-18fb-4c80-aaca-d54002156e8f" + "d77c9703-5d8c-4975-af43-bfb9cd17779f" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ] }, "ResponseHeaders": { @@ -1493,16 +1493,16 @@ "no-cache" ], "ETag": [ - "W/\"7be75c63-8c21-4d72-905a-fca9a717cf09\"" + "W/\"1063973c-5764-4559-a8c1-6c320293d1a7\"" ], "x-ms-request-id": [ - "40cb1f1b-3941-47d1-8155-53440047fa8c" + "c0600fa8-9dca-43ff-9155-9aa7bd6dabe9" ], "x-ms-correlation-request-id": [ - "53f13587-91da-40f8-91b0-8f41afdbe643" + "6216852b-0bab-444a-9de4-876531400be8" ], "x-ms-arm-service-request-id": [ - "4c17321f-b1bb-4a60-aafd-79c5758791a9" + "35f5566a-c848-4d78-b232-0a346b170c82" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1515,16 +1515,16 @@ "11986" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T203556Z:53f13587-91da-40f8-91b0-8f41afdbe643" + "JIOINDIAWEST:20220516T175815Z:6216852b-0bab-444a-9de4-876531400be8" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 20:35:55 GMT" + "Mon, 16 May 2022 17:58:15 GMT" ], "Content-Length": [ - "2143" + "2165" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1533,26 +1533,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"PSTestNICbfbf50\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.Network/networkInterfaces/PSTestNICbfbf50\",\r\n \"etag\": \"W/\\\"7be75c63-8c21-4d72-905a-fca9a717cf09\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"4614c4e4-6ca1-4d0b-88f6-5bcf5ec3d2bc\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.Network/networkInterfaces/PSTestNICbfbf50/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"7be75c63-8c21-4d72-905a-fca9a717cf09\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.Network/publicIPAddresses/pstestpublicdnsbfbf50\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.Network/virtualNetworks/PSTestVNETbfbf50/subnets/PSTestSNCbfbf50\"\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\": \"i2nfwbl0anqunikxgwp1wbg4qh.ix.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"vnetEncryptionSupported\": false,\r\n \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGbfbf50\"\r\n },\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": [],\r\n \"nicType\": \"Standard\"\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"PSTestNIC48b610\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.Network/networkInterfaces/PSTestNIC48b610\",\r\n \"etag\": \"W/\\\"1063973c-5764-4559-a8c1-6c320293d1a7\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"2aae9643-ec00-4af6-93fe-183f86484ae0\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.Network/networkInterfaces/PSTestNIC48b610/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"1063973c-5764-4559-a8c1-6c320293d1a7\\\"\",\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/PSTestRG48b61a7d/providers/Microsoft.Network/publicIPAddresses/pstestpublicdns48b610\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.Network/virtualNetworks/PSTestVNET48b610/subnets/PSTestSNC48b610\"\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\": \"wdun2kx3mc0eljmg1qp2fkdr5c.ix.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"vnetEncryptionSupported\": false,\r\n \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG48b610\"\r\n },\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": [],\r\n \"nicType\": \"Standard\"\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"kind\": \"Regular\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.Network/networkInterfaces/PSTestNICbfbf50?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZiZjU5Y2YvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL1BTVGVzdE5JQ2JmYmY1MD9hcGktdmVyc2lvbj0yMDIxLTA1LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.Network/networkInterfaces/PSTestNIC48b610?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNDhiNjFhN2QvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL1BTVGVzdE5JQzQ4YjYxMD9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "569d54fd-18fb-4c80-aaca-d54002156e8f" + "d77c9703-5d8c-4975-af43-bfb9cd17779f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ] }, "ResponseHeaders": { @@ -1563,16 +1563,16 @@ "no-cache" ], "ETag": [ - "W/\"7be75c63-8c21-4d72-905a-fca9a717cf09\"" + "W/\"1063973c-5764-4559-a8c1-6c320293d1a7\"" ], "x-ms-request-id": [ - "a9daa69e-eb69-4009-807f-b6defbf1b13e" + "113c6601-fb58-43a9-8e4c-6bab7e927a99" ], "x-ms-correlation-request-id": [ - "779dd232-bbe5-4405-8ac3-77ee68f7b107" + "5f0abb5b-535b-4a9e-a014-bc95b763363d" ], "x-ms-arm-service-request-id": [ - "c38461cb-7166-40a5-ab5b-c20b1f97f142" + "b92f2393-74a3-4b7c-b63e-a3f90553cd8d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1585,16 +1585,16 @@ "11985" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T203556Z:779dd232-bbe5-4405-8ac3-77ee68f7b107" + "JIOINDIAWEST:20220516T175815Z:5f0abb5b-535b-4a9e-a014-bc95b763363d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 20:35:56 GMT" + "Mon, 16 May 2022 17:58:15 GMT" ], "Content-Length": [ - "2143" + "2165" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1603,26 +1603,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"PSTestNICbfbf50\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.Network/networkInterfaces/PSTestNICbfbf50\",\r\n \"etag\": \"W/\\\"7be75c63-8c21-4d72-905a-fca9a717cf09\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"4614c4e4-6ca1-4d0b-88f6-5bcf5ec3d2bc\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.Network/networkInterfaces/PSTestNICbfbf50/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"7be75c63-8c21-4d72-905a-fca9a717cf09\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.Network/publicIPAddresses/pstestpublicdnsbfbf50\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.Network/virtualNetworks/PSTestVNETbfbf50/subnets/PSTestSNCbfbf50\"\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\": \"i2nfwbl0anqunikxgwp1wbg4qh.ix.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"vnetEncryptionSupported\": false,\r\n \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGbfbf50\"\r\n },\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": [],\r\n \"nicType\": \"Standard\"\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"PSTestNIC48b610\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.Network/networkInterfaces/PSTestNIC48b610\",\r\n \"etag\": \"W/\\\"1063973c-5764-4559-a8c1-6c320293d1a7\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"2aae9643-ec00-4af6-93fe-183f86484ae0\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.Network/networkInterfaces/PSTestNIC48b610/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"1063973c-5764-4559-a8c1-6c320293d1a7\\\"\",\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/PSTestRG48b61a7d/providers/Microsoft.Network/publicIPAddresses/pstestpublicdns48b610\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.Network/virtualNetworks/PSTestVNET48b610/subnets/PSTestSNC48b610\"\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\": \"wdun2kx3mc0eljmg1qp2fkdr5c.ix.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"vnetEncryptionSupported\": false,\r\n \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG48b610\"\r\n },\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": [],\r\n \"nicType\": \"Standard\"\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"kind\": \"Regular\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.Network/networkInterfaces/PSTestNICbfbf50?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZiZjU5Y2YvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL1BTVGVzdE5JQ2JmYmY1MD9hcGktdmVyc2lvbj0yMDIxLTA1LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.Network/networkInterfaces/PSTestNIC48b610?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNDhiNjFhN2QvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL1BTVGVzdE5JQzQ4YjYxMD9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"networkSecurityGroup\": {\r\n \"properties\": {\r\n \"securityRules\": []\r\n },\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGbfbf50\",\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 \"applicationGatewayIpConfigurations\": []\r\n },\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.Network/virtualNetworks/PSTestVNETbfbf50/subnets/PSTestSNCbfbf50\"\r\n },\r\n \"primary\": true,\r\n \"publicIPAddress\": {\r\n \"properties\": {\r\n \"ipTags\": []\r\n },\r\n \"zones\": [],\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.Network/publicIPAddresses/pstestpublicdnsbfbf50\",\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\": \"southeastasia\"\r\n}", + "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/PSTestRG48b61a7d/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG48b610\",\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 \"applicationGatewayIpConfigurations\": []\r\n },\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.Network/virtualNetworks/PSTestVNET48b610/subnets/PSTestSNC48b610\"\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/PSTestRG48b61a7d/providers/Microsoft.Network/publicIPAddresses/pstestpublicdns48b610\",\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\": \"southeastasia\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "569d54fd-18fb-4c80-aaca-d54002156e8f" + "d77c9703-5d8c-4975-af43-bfb9cd17779f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1639,19 +1639,19 @@ "no-cache" ], "x-ms-request-id": [ - "d206dda3-4b0e-43fd-bc25-f755a5c82df8" + "893d1bce-b7bd-4e98-8fb3-2082f8992b26" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Network/locations/southeastasia/operations/d206dda3-4b0e-43fd-bc25-f755a5c82df8?api-version=2021-05-01" + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Network/locations/southeastasia/operations/893d1bce-b7bd-4e98-8fb3-2082f8992b26?api-version=2021-08-01" ], "x-ms-correlation-request-id": [ - "8e350c12-9029-4491-8443-51f4e5b8fbf3" + "2781e7e6-8a46-4b36-9a06-bb11e400631e" ], "Azure-AsyncNotification": [ "Enabled" ], "x-ms-arm-service-request-id": [ - "cb69ed4b-50ac-4f7e-9fdc-e537045377b1" + "6deb98df-5d98-4016-adfe-73d9ad739d16" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1664,16 +1664,16 @@ "1196" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T203556Z:8e350c12-9029-4491-8443-51f4e5b8fbf3" + "JIOINDIAWEST:20220516T175815Z:2781e7e6-8a46-4b36-9a06-bb11e400631e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 20:35:55 GMT" + "Mon, 16 May 2022 17:58:14 GMT" ], "Content-Length": [ - "2143" + "2165" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1682,26 +1682,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"PSTestNICbfbf50\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.Network/networkInterfaces/PSTestNICbfbf50\",\r\n \"etag\": \"W/\\\"7be75c63-8c21-4d72-905a-fca9a717cf09\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"4614c4e4-6ca1-4d0b-88f6-5bcf5ec3d2bc\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.Network/networkInterfaces/PSTestNICbfbf50/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"7be75c63-8c21-4d72-905a-fca9a717cf09\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.Network/publicIPAddresses/pstestpublicdnsbfbf50\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.Network/virtualNetworks/PSTestVNETbfbf50/subnets/PSTestSNCbfbf50\"\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\": \"i2nfwbl0anqunikxgwp1wbg4qh.ix.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"vnetEncryptionSupported\": false,\r\n \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.Network/networkSecurityGroups/PSTestNSGbfbf50\"\r\n },\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": [],\r\n \"nicType\": \"Standard\"\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"PSTestNIC48b610\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.Network/networkInterfaces/PSTestNIC48b610\",\r\n \"etag\": \"W/\\\"1063973c-5764-4559-a8c1-6c320293d1a7\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"2aae9643-ec00-4af6-93fe-183f86484ae0\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.Network/networkInterfaces/PSTestNIC48b610/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"1063973c-5764-4559-a8c1-6c320293d1a7\\\"\",\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/PSTestRG48b61a7d/providers/Microsoft.Network/publicIPAddresses/pstestpublicdns48b610\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.Network/virtualNetworks/PSTestVNET48b610/subnets/PSTestSNC48b610\"\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\": \"wdun2kx3mc0eljmg1qp2fkdr5c.ix.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"vnetEncryptionSupported\": false,\r\n \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG48b610\"\r\n },\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": [],\r\n \"nicType\": \"Standard\"\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"kind\": \"Regular\"\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Storage/checkNameAvailability?api-version=2021-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9jaGVja05hbWVBdmFpbGFiaWxpdHk/YXBpLXZlcnNpb249MjAyMS0wMi0wMQ==", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Storage/checkNameAvailability?api-version=2021-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9jaGVja05hbWVBdmFpbGFiaWxpdHk/YXBpLXZlcnNpb249MjAyMS0wMi0wMQ==", "RequestMethod": "POST", - "RequestBody": "{\r\n \"name\": \"tespstestpste022315350\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n}", + "RequestBody": "{\r\n \"name\": \"tespstestpste051623280\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "237fceaf-5078-414e-9ac6-9402daa3ae1e" + "59a3159e-ad00-4569-945a-babfab0cb94b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.PowerShell.Cmdlets.Compute.Helpers.Storage.StorageManagementClient/4.23.0" + "Microsoft.Azure.PowerShell.Cmdlets.Compute.Helpers.Storage.StorageManagementClient/4.26.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1718,7 +1718,7 @@ "no-cache" ], "x-ms-request-id": [ - "5f54a585-28f1-4e1a-a04c-32c2e683fbc7" + "413b3bd8-c063-404d-aaf8-c16c2bfffc1a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1730,16 +1730,16 @@ "11999" ], "x-ms-correlation-request-id": [ - "4703ef77-7b36-4279-992e-40c87864a2bc" + "70eb219b-15b4-445c-8be9-e2647cabca1d" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T203557Z:4703ef77-7b36-4279-992e-40c87864a2bc" + "WESTINDIA:20220516T175817Z:70eb219b-15b4-445c-8be9-e2647cabca1d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 20:35:57 GMT" + "Mon, 16 May 2022 17:58:16 GMT" ], "Content-Length": [ "22" @@ -1755,22 +1755,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.Compute/virtualMachines/PSTestVMbfbf50?api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZiZjU5Y2YvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy9QU1Rlc3RWTWJmYmY1MD9hcGktdmVyc2lvbj0yMDIxLTExLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.Compute/virtualMachines/PSTestVM48b610?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNDhiNjFhN2QvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy9QU1Rlc3RWTTQ4YjYxMD9hcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D1_v2\"\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\": \"PSTestVMbfbf50\",\r\n \"adminUsername\": \"demouser\",\r\n \"adminPassword\": \"bfbf59cf-4d8Aa.\",\r\n \"windowsConfiguration\": {}\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.Network/networkInterfaces/PSTestNICbfbf50\"\r\n }\r\n ]\r\n }\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"Purpose\": \"PSTest\",\r\n \"DeleteBy\": \"06-2022\",\r\n \"AutoShutDown\": \"No\",\r\n \"Owner\": \"sarath\",\r\n \"MabUsed\": \"Yes\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D1_v2\"\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\": \"PSTestVM48b610\",\r\n \"adminUsername\": \"demouser\",\r\n \"adminPassword\": \"48b61a7d-719Aa.\",\r\n \"windowsConfiguration\": {}\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.Network/networkInterfaces/PSTestNIC48b610\"\r\n }\r\n ]\r\n }\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MabUsed\": \"Yes\",\r\n \"Owner\": \"sarath\",\r\n \"AutoShutDown\": \"No\",\r\n \"Purpose\": \"PSTest\",\r\n \"DeleteBy\": \"06-2022\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "237fceaf-5078-414e-9ac6-9402daa3ae1e" + "59a3159e-ad00-4569-945a-babfab0cb94b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1790,19 +1790,19 @@ "10" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/southeastasia/operations/dd821526-5185-4388-8b8e-9073d4956398?p=34dc709c-01b2-42c4-84a2-256a9734610d&api-version=2021-11-01" + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Compute/locations/southeastasia/operations/82b811ac-57a2-458e-8232-7a429aa31722?p=e484ceca-6435-4a7f-b125-3d82e6b12014&api-version=2021-11-01" ], "Azure-AsyncNotification": [ "Enabled" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/PutVM3Min;239,Microsoft.Compute/PutVM30Min;1199" + "Microsoft.Compute/PutVM3Min;239,Microsoft.Compute/PutVM30Min;1197" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "dd821526-5185-4388-8b8e-9073d4956398" + "82b811ac-57a2-458e-8232-7a429aa31722" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -1812,19 +1812,19 @@ "1199" ], "x-ms-correlation-request-id": [ - "e304c0ce-95f0-4811-ae86-00edb2c5d20c" + "09c329c7-5b0d-444c-af2e-35f50525313b" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T203609Z:e304c0ce-95f0-4811-ae86-00edb2c5d20c" + "JIOINDIAWEST:20220516T175823Z:09c329c7-5b0d-444c-af2e-35f50525313b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 20:36:09 GMT" + "Mon, 16 May 2022 17:58:23 GMT" ], "Content-Length": [ - "1992" + "1922" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1833,23 +1833,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"PSTestVMbfbf50\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.Compute/virtualMachines/PSTestVMbfbf50\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"Purpose\": \"PSTest\",\r\n \"DeleteBy\": \"06-2022\",\r\n \"AutoShutDown\": \"No\",\r\n \"Owner\": \"sarath\",\r\n \"MabUsed\": \"Yes\",\r\n \"azsecpack\": \"nonprod\",\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": \"true\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"998fea1f-67fb-40c2-b251-c42791aaa1ef\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D1_v2\"\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.4946.220202\"\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 \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"PSTestVMbfbf50\",\r\n \"adminUsername\": \"demouser\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"AutomaticByOS\",\r\n \"assessmentMode\": \"ImageDefault\"\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.Network/networkInterfaces/PSTestNICbfbf50\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\",\r\n \"timeCreated\": \"2022-02-23T15:36:07.3421394-05:00\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"PSTestVM48b610\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.Compute/virtualMachines/PSTestVM48b610\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MabUsed\": \"Yes\",\r\n \"Owner\": \"sarath\",\r\n \"AutoShutDown\": \"No\",\r\n \"Purpose\": \"PSTest\",\r\n \"DeleteBy\": \"06-2022\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"978af02f-9d29-4c85-9d2a-032799647a96\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D1_v2\"\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.5125.220505\"\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 \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"PSTestVM48b610\",\r\n \"adminUsername\": \"demouser\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"AutomaticByOS\",\r\n \"assessmentMode\": \"ImageDefault\"\r\n },\r\n \"enableVMAgentPlatformUpdates\": false\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/PSTestRG48b61a7d/providers/Microsoft.Network/networkInterfaces/PSTestNIC48b610\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\",\r\n \"timeCreated\": \"2022-05-16T23:28:22.6356424+05:30\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/southeastasia/operations/dd821526-5185-4388-8b8e-9073d4956398?p=34dc709c-01b2-42c4-84a2-256a9734610d&api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2RkODIxNTI2LTUxODUtNDM4OC04YjhlLTkwNzNkNDk1NjM5OD9wPTM0ZGM3MDljLTAxYjItNDJjNC04NGEyLTI1NmE5NzM0NjEwZCZhcGktdmVyc2lvbj0yMDIxLTExLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Compute/locations/southeastasia/operations/82b811ac-57a2-458e-8232-7a429aa31722?p=e484ceca-6435-4a7f-b125-3d82e6b12014&api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzgyYjgxMWFjLTU3YTItNDU4ZS04MjMyLTdhNDI5YWEzMTcyMj9wPWU0ODRjZWNhLTY0MzUtNGE3Zi1iMTI1LTNkODJlNmIxMjAxNCZhcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "237fceaf-5078-414e-9ac6-9402daa3ae1e" + "59a3159e-ad00-4569-945a-babfab0cb94b" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ] }, "ResponseHeaders": { @@ -1863,13 +1863,13 @@ "50" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperation3Min;14999,Microsoft.Compute/GetOperation30Min;29972" + "Microsoft.Compute/GetOperation3Min;14995,Microsoft.Compute/GetOperation30Min;29975" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "4b7cb2d5-3b63-4707-850f-4f1ef08a79eb" + "c21c41b8-89e1-4510-bd46-122da0eb2c5d" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -1879,16 +1879,16 @@ "11998" ], "x-ms-correlation-request-id": [ - "94fc95b2-e874-4e7b-8abe-a9d60a4f2b57" + "f9ef4277-794f-48e4-962a-d68557f3668b" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T203620Z:94fc95b2-e874-4e7b-8abe-a9d60a4f2b57" + "JIOINDIAWEST:20220516T175834Z:f9ef4277-794f-48e4-962a-d68557f3668b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 20:36:19 GMT" + "Mon, 16 May 2022 17:58:34 GMT" ], "Content-Length": [ "134" @@ -1900,23 +1900,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-02-23T15:36:06.9670542-05:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"dd821526-5185-4388-8b8e-9073d4956398\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2022-05-16T23:28:22.0418915+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"82b811ac-57a2-458e-8232-7a429aa31722\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/southeastasia/operations/dd821526-5185-4388-8b8e-9073d4956398?p=34dc709c-01b2-42c4-84a2-256a9734610d&api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2RkODIxNTI2LTUxODUtNDM4OC04YjhlLTkwNzNkNDk1NjM5OD9wPTM0ZGM3MDljLTAxYjItNDJjNC04NGEyLTI1NmE5NzM0NjEwZCZhcGktdmVyc2lvbj0yMDIxLTExLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Compute/locations/southeastasia/operations/82b811ac-57a2-458e-8232-7a429aa31722?p=e484ceca-6435-4a7f-b125-3d82e6b12014&api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzgyYjgxMWFjLTU3YTItNDU4ZS04MjMyLTdhNDI5YWEzMTcyMj9wPWU0ODRjZWNhLTY0MzUtNGE3Zi1iMTI1LTNkODJlNmIxMjAxNCZhcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "237fceaf-5078-414e-9ac6-9402daa3ae1e" + "59a3159e-ad00-4569-945a-babfab0cb94b" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ] }, "ResponseHeaders": { @@ -1927,13 +1927,13 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperation3Min;14998,Microsoft.Compute/GetOperation30Min;29971" + "Microsoft.Compute/GetOperation3Min;14994,Microsoft.Compute/GetOperation30Min;29974" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "5ae46fda-5251-4810-9215-e930232c6a5e" + "b2df2552-246f-4ec0-9ee3-80149611571a" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -1943,16 +1943,16 @@ "11997" ], "x-ms-correlation-request-id": [ - "95630612-664f-471a-b220-ee7637d1e86e" + "40544f58-c55a-433c-9226-1baadbb2fa76" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T203710Z:95630612-664f-471a-b220-ee7637d1e86e" + "JIOINDIAWEST:20220516T175924Z:40544f58-c55a-433c-9226-1baadbb2fa76" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 20:37:09 GMT" + "Mon, 16 May 2022 17:59:24 GMT" ], "Content-Length": [ "134" @@ -1964,23 +1964,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-02-23T15:36:06.9670542-05:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"dd821526-5185-4388-8b8e-9073d4956398\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2022-05-16T23:28:22.0418915+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"82b811ac-57a2-458e-8232-7a429aa31722\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/southeastasia/operations/dd821526-5185-4388-8b8e-9073d4956398?p=34dc709c-01b2-42c4-84a2-256a9734610d&api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2RkODIxNTI2LTUxODUtNDM4OC04YjhlLTkwNzNkNDk1NjM5OD9wPTM0ZGM3MDljLTAxYjItNDJjNC04NGEyLTI1NmE5NzM0NjEwZCZhcGktdmVyc2lvbj0yMDIxLTExLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Compute/locations/southeastasia/operations/82b811ac-57a2-458e-8232-7a429aa31722?p=e484ceca-6435-4a7f-b125-3d82e6b12014&api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzgyYjgxMWFjLTU3YTItNDU4ZS04MjMyLTdhNDI5YWEzMTcyMj9wPWU0ODRjZWNhLTY0MzUtNGE3Zi1iMTI1LTNkODJlNmIxMjAxNCZhcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "237fceaf-5078-414e-9ac6-9402daa3ae1e" + "59a3159e-ad00-4569-945a-babfab0cb94b" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ] }, "ResponseHeaders": { @@ -1991,13 +1991,13 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperation3Min;14997,Microsoft.Compute/GetOperation30Min;29970" + "Microsoft.Compute/GetOperation3Min;14993,Microsoft.Compute/GetOperation30Min;29973" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "969bc0fd-4186-4cfb-bb2a-a68d6fa5f59a" + "2bc5b69f-1f2c-4406-8343-8508941716b4" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -2007,16 +2007,16 @@ "11996" ], "x-ms-correlation-request-id": [ - "fdd4f60a-7218-49dd-be48-9bb3073047d4" + "b3971bd2-bf82-4662-9901-289a2c8489ec" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T203800Z:fdd4f60a-7218-49dd-be48-9bb3073047d4" + "JIOINDIAWEST:20220516T180014Z:b3971bd2-bf82-4662-9901-289a2c8489ec" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 20:38:00 GMT" + "Mon, 16 May 2022 18:00:14 GMT" ], "Content-Length": [ "184" @@ -2028,26 +2028,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-02-23T15:36:06.9670542-05:00\",\r\n \"endTime\": \"2022-02-23T15:37:39.4838737-05:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"dd821526-5185-4388-8b8e-9073d4956398\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2022-05-16T23:28:22.0418915+05:30\",\r\n \"endTime\": \"2022-05-16T23:29:39.4949749+05:30\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"82b811ac-57a2-458e-8232-7a429aa31722\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/southeastasia/publishers?api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9wdWJsaXNoZXJzP2FwaS12ZXJzaW9uPTIwMjEtMTEtMDE=", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Compute/locations/southeastasia/publishers?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9wdWJsaXNoZXJzP2FwaS12ZXJzaW9uPTIwMjEtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "237fceaf-5078-414e-9ac6-9402daa3ae1e" + "59a3159e-ad00-4569-945a-babfab0cb94b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ] }, "ResponseHeaders": { @@ -2061,10 +2061,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "8d76ef5d-2d17-4297-8566-4612360b9f5a_132792867042483732" + "8d76ef5d-2d17-4297-8566-4612360b9f5a_132927459943306577" ], "x-ms-request-id": [ - "0ebb1cc9-8d9e-448a-a625-40ba9940f9a5" + "9d7acd00-c7fe-4f78-8a92-38e746837bd8" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -2074,19 +2074,19 @@ "11994" ], "x-ms-correlation-request-id": [ - "8f89bd0e-97f3-48c3-a5b4-7c5ffb225f43" + "06a19c1c-7978-433e-9550-36a05ba1bb37" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T203803Z:8f89bd0e-97f3-48c3-a5b4-7c5ffb225f43" + "JIOINDIAWEST:20220516T180016Z:06a19c1c-7978-433e-9550-36a05ba1bb37" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 20:38:03 GMT" + "Mon, 16 May 2022 18:00:16 GMT" ], "Content-Length": [ - "420268" + "429382" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2095,26 +2095,26 @@ "-1" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"128technology\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/128technology\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1580863854728\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1580863854728\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1583411303229\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1583411303229\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1583465680865\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1583465680865\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1585118004523\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1585118004523\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1597644262255\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1597644262255\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1598955805825\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1598955805825\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1601633765871\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1601633765871\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1602067018799\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1602067018799\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1604579683207\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1604579683207\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1615257339685\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1615257339685\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1615278064010\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1615278064010\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1615455873642\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1615455873642\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1624590941808\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1624590941808\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1e\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1e\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"2021ai\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/2021ai\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"247commercelimited1611063941652\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/247commercelimited1611063941652\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"3cx-pbx\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/3cx-pbx\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"42crunch1580391915541\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/42crunch1580391915541\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"4psa\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/4psa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"5nine-software-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/5nine-software-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"7isolutions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/7isolutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"a10networks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/a10networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"a10networks1596136698788\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/a10networks1596136698788\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"abiquo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/abiquo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"abzoobainc1598420455082\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/abzoobainc1598420455082\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"accedian\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/accedian\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"accelario1579101623356\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/accelario1579101623356\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"accellion\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/accellion\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"accessdata-group\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/accessdata-group\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"accops\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/accops\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aciworldwide\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aciworldwide\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Acronis\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Acronis\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Acronis.Backup\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Acronis.Backup\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"actian-corp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/actian-corp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"actian_matrix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/actian_matrix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"actifio\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/actifio\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"actiphy\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/actiphy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"actiphyinc1627974506603\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/actiphyinc1627974506603\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"activecountermeasuresinc1631039410073\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/activecountermeasuresinc1631039410073\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"activeeon\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/activeeon\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"activeops\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/activeops\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"adastracorporation-4028356\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/adastracorporation-4028356\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"adgs\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/adgs\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"advantech\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/advantech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"advantech-webaccess\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/advantech-webaccess\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"advantys\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/advantys\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aelf\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aelf\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aerospike\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aerospike\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"affinio\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/affinio\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"affirmednetworks1607630812999\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/affirmednetworks1607630812999\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ageniumscale1591804889317\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ageniumscale1591804889317\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aggregion-ltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aggregion-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"agiledialogssl1603791911858\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/agiledialogssl1603791911858\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"agolo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/agolo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ahnlabinc1584495174865\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ahnlabinc1584495174865\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ahnlabinc1584495467593\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ahnlabinc1584495467593\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"airalabrus\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/airalabrus\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aiscaler-cache-control-ddos-and-url-rewriting-\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aiscaler-cache-control-ddos-and-url-rewriting-\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aisundowninc1618516322959\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aisundowninc1618516322959\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"akamai-technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/akamai-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"akumina\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/akumina\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"akumo-software\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/akumo-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"al-tamamunitedtradingcontractingcompany\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/al-tamamunitedtradingcontractingcompany\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"alachisoft\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/alachisoft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"alertlogic\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/alertlogic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"AlertLogic.Extension\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/AlertLogic.Extension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"algolyticstechnologies1606475101268\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/algolyticstechnologies1606475101268\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"alicetrix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/alicetrix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"alienvault\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/alienvault\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"alldigital-brevity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/alldigital-brevity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"almalinux\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/almalinux\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"almalinuxosfoundation1628089859865\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/almalinuxosfoundation1628089859865\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"altair-engineering-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/altair-engineering-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"altamira-corporation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/altamira-corporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"alteryx\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/alteryx\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"altova\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/altova\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"amergint1593131356777\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/amergint1593131356777\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ansys\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ansys\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"antmedia\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/antmedia\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aod\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aod\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"apigee\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/apigee\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"appcara\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appcara\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"appcelerator\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appcelerator\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"appex-networks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appex-networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"appistry\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appistry\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"appiyo_technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appiyo_technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"appmint_inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appmint_inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"apps-4-rent\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/apps-4-rent\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"appscale-marketplace\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appscale-marketplace\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"appsurifyinc1606933045773\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appsurifyinc1606933045773\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aquaforest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aquaforest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aquantyinc1598537176913\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aquantyinc1598537176913\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aquaveollc1633710529908\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aquaveollc1633710529908\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"arabesque-group\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/arabesque-group\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"arangodb\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/arangodb\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aras\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aras\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"arcblock\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/arcblock\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"arcesb\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/arcesb\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"arcontechsolutionsprivatelimited1623841797810\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/arcontechsolutionsprivatelimited1623841797810\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"arcserveusallc-marketing\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/arcserveusallc-marketing\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"arista-networks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/arista-networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ariwontollc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ariwontollc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"array_networks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/array_networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"artificial-intelligence-techniques-sl\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/artificial-intelligence-techniques-sl\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"arubanetworks-4922182\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/arubanetworks-4922182\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"asdivertissementinc1617837708654\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/asdivertissementinc1617837708654\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"asigra\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/asigra\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aspentechnologyhq-1353108\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aspentechnologyhq-1353108\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"astadia-1148316\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/astadia-1148316\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"asterasoftware1581022936015\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/asterasoftware1581022936015\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"asyscosoftwarebv\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/asyscosoftwarebv\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ataccama\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ataccama\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"athinfosystems1641442221349\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/athinfosystems1641442221349\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"atlgaming\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/atlgaming\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"atmosera\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/atmosera\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"atomicorp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/atomicorp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"atomizedinc1587939464368\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/atomizedinc1587939464368\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"attunity_cloudbeam\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/attunity_cloudbeam\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"audiocodes\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/audiocodes\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"auraportal\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/auraportal\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"auriq-systems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/auriq-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"automateio1592914387888\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/automateio1592914387888\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"automationanywhere\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/automationanywhere\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"avanseus\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/avanseus\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"avepoint\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/avepoint\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aveva1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aveva1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"avi-networks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/avi-networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aviatrix-systems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aviatrix-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"awingu\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/awingu\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"axedrasag1590581171549\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/axedrasag1590581171549\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"axsguardablenv\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/axsguardablenv\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"axshco\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/axshco\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"axway\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/axway\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"axxana\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/axxana\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"azhpc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/azhpc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"azul\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/azul\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"azure-dockit\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/azure-dockit\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"azurecyclecloud\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/azurecyclecloud\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"AzureDatabricks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/AzureDatabricks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"azureopenshift\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/azureopenshift\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"AzureRT.PIR.Synthetics.ProdTest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/AzureRT.PIR.Synthetics.ProdTest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"AzureRT.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/AzureRT.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"azuretesting\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/azuretesting\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"azuretesting2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/azuretesting2\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"azuretesting3\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/azuretesting3\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"AzureTools1type\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/AzureTools1type\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"baas-techbureau\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/baas-techbureau\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"baffle-io\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/baffle-io\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"balabit\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/balabit\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"barracudanetworks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/barracudanetworks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"basho\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/basho\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"batch\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/batch\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bayware\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bayware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bdy\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bdy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"belindaczsro1588885355210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/belindaczsro1588885355210\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bellsoft1582871421940\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bellsoft1582871421940\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"betsol\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/betsol\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"beyondtrust\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/beyondtrust\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bi-builders-as\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bi-builders-as\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"big-id\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/big-id\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"biolibinc1622552350258\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/biolibinc1622552350258\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bissantechnology1583581147809\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bissantechnology1583581147809\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bitdefendercybersecurity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bitdefendercybersecurity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Bitnami\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Bitnami\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bizagi\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bizagi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bizaptyltd1626489237351\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bizaptyltd1626489237351\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bizdataloome\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bizdataloome\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"biztalk360\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/biztalk360\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"black-duck-software\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/black-duck-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"blackbird\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/blackbird\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"blackmagicdesignincorporated1596492193249\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/blackmagicdesignincorporated1596492193249\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"blk-technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/blk-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"blockapps\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/blockapps\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"blockchain-foundry\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/blockchain-foundry\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"blockstack\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/blockstack\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bloombase\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bloombase\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bluecat\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bluecat\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bluejeansnetwork1638333611902\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bluejeansnetwork1638333611902\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"blueprismlimited-4827145\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/blueprismlimited-4827145\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bluesyntaxconsulting1617654548594\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bluesyntaxconsulting1617654548594\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bluetalon\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bluetalon\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bmc.ctm\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bmc.ctm\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bmcctm.test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bmcctm.test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"boardpacpvtltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/boardpacpvtltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bocada\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bocada\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"boemskats\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/boemskats\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"botanalytics\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/botanalytics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bowspritconsultingopcprivatelimited1596291408582\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bowspritconsultingopcprivatelimited1596291408582\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bravura-software-llc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bravura-software-llc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Brianjac.Symantec.CloudWorkloadProtection\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Brianjac.Symantec.CloudWorkloadProtection\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bricatainc1584472632111\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bricatainc1584472632111\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bright-computing\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bright-computing\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"brightcomputing\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/brightcomputing\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"brocade_communications\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/brocade_communications\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"brutale\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/brutale\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bryte\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bryte\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bssw\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bssw\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bt-americas-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bt-americas-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"buddhalabs\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/buddhalabs\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cadosecurityltd1626856705534\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cadosecurityltd1626856705534\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"calculated_systems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/calculated_systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"caloudi_corp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/caloudi_corp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"canadiancentreforcybersecurity1610638436359\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/canadiancentreforcybersecurity1610638436359\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Canonical\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Canonical\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"canonical-test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/canonical-test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"carto\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/carto\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cask\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cask\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"castaigroupinc1595243474856\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/castaigroupinc1595243474856\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"catechnologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/catechnologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"catonetworksltd1641478570665\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/catonetworksltd1641478570665\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cautelalabs\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cautelalabs\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cavirin\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cavirin\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cayosoftinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cayosoftinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cdatasoftware\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cdatasoftware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cds\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cds\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"celum-gmbh\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/celum-gmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"center-for-internet-security-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/center-for-internet-security-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"centeritysystems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/centeritysystems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"centrixeltd1594135951373\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/centrixeltd1594135951373\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"centrocomputerspa1584528117084\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/centrocomputerspa1584528117084\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"certifiedsecuritysolutionsinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/certifiedsecuritysolutionsinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"certivox\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/certivox\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cfd-direct\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cfd-direct\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"chain\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/chain\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"checkpoint\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/checkpoint\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"chef-software\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/chef-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Chef.Bootstrap.WindowsAzure\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Chef.Bootstrap.WindowsAzure\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"chunghwatelecom1587573688842\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/chunghwatelecom1587573688842\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cinchy\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cinchy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cinegy-gmbh\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cinegy-gmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"circleci\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/circleci\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cires21\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cires21\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cirruswaveinc1579234787943\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cirruswaveinc1579234787943\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cisco\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cisco\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"citrix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/citrix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Citrix.ADC\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Citrix.ADC\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"clapsodeughaftungsbeschrnkt1626333173563\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/clapsodeughaftungsbeschrnkt1626333173563\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"clear-linux-project\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/clear-linux-project\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"clone-systems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/clone-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"clouber\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/clouber\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloud-checkr\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloud-checkr\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloud-cruiser\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloud-cruiser\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloud-infrastructure-services\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloud-infrastructure-services\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudaccelinc1628754426775\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudaccelinc1628754426775\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudbees\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudbees\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudbees-enterprise-jenkins\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudbees-enterprise-jenkins\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudbolt-software\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudbolt-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudboltsoftware1639523402532\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudboltsoftware1639523402532\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudboost\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudboost\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudcover\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudcover\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudenablers-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudenablers-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudentity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudentity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudera\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudera\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudflare\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudflare\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudhouse\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudhouse\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudinfo-4919088\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudinfo-4919088\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudknox\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudknox\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudlanes\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudlanes\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudlink\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudlink\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"CloudLinkEMC.SecureVM\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/CloudLinkEMC.SecureVM\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudmavensolutions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudmavensolutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudneeti\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudneeti\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudplan-gmbh\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudplan-gmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudsecurity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudsecurity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudsoft\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudsoft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudwhizsolutions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudwhizsolutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudwrxsconsultingltd1631029702055\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudwrxsconsultingltd1631029702055\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"clustrix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/clustrix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cncf-upstream\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cncf-upstream\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"codaintelligence1606495376525\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/codaintelligence1606495376525\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"codelathe\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/codelathe\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"codenvy\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/codenvy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"codetwo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/codetwo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cognexcorporation1613759804979\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cognexcorporation1613759804979\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cognitive-scale\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cognitive-scale\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cognizant\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cognizant\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cognosys\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cognosys\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cohesity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cohesity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cohesitydev1592001764720\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cohesitydev1592001764720\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cohesive\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cohesive\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"coin-sciences-ltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/coin-sciences-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"collabcloudlimited\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/collabcloudlimited\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"collibranv1619508098620\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/collibranv1619508098620\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"commscopeinc1632135151062\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/commscopeinc1632135151062\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"commvault\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/commvault\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"compellon\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/compellon\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"composable\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/composable\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"comunity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/comunity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"concentrationheatandmomentumlimited1616154387047\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/concentrationheatandmomentumlimited1616154387047\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Confer\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Confer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"confluentinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/confluentinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"conflux\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/conflux\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"connecting-software\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/connecting-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"consensys\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/consensys\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"containeraider\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/containeraider\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"contiamogmbh\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/contiamogmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"controlcase\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/controlcase\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"controlplane\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/controlplane\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"controlplanecorporation1609967567639\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/controlplanecorporation1609967567639\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"convertigo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/convertigo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"corda\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/corda\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"core-stack\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/core-stack\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"corent-technology-pvt\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/corent-technology-pvt\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"CoreOS\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/CoreOS\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"couchbase\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/couchbase\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cpanel\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cpanel\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"credativ\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/credativ\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cristiesoftwareltd1599488127561\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cristiesoftwareltd1599488127561\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"crunchyard\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/crunchyard\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"crunchyardltd1623835391104\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/crunchyardltd1623835391104\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cryptocom1585727786636\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cryptocom1585727786636\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cryptosense1605170011574\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cryptosense1605170011574\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cryptzone\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cryptzone\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ctm.bmc.com\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ctm.bmc.com\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cubebackup\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cubebackup\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cyberark\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cyberark\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cybernetica-as\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cybernetica-as\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cyxtera\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cyxtera\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"d4t4_solutions-1164305\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/d4t4_solutions-1164305\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"daceitdbasensetrafficpulse1579892024934\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/daceitdbasensetrafficpulse1579892024934\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"danielsol.AzureTools1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/danielsol.AzureTools1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Dans.Windows.App\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Dans.Windows.App\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Dans3.Windows.App\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Dans3.Windows.App\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dataart\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dataart\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"databricks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/databricks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datacore\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datacore\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Datadog.Agent\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Datadog.Agent\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datadynamicsinc1581991927942\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datadynamicsinc1581991927942\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dataguiseinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dataguiseinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dataiku\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dataiku\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datalayer\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datalayer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datanomers1584919038987\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datanomers1584919038987\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datanova\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datanova\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datapredsa\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datapredsa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dataroadtechnologiesllc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dataroadtechnologiesllc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datasciencedojo1586563145740\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datasciencedojo1586563145740\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datastax\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datastax\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datasunrise\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datasunrise\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datavirtualitygmbh\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datavirtualitygmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datometry\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datometry\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dbs-h\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dbs-h\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ddn-whamcloud-5345716\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ddn-whamcloud-5345716\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Debian\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Debian\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dece-4446019\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dece-4446019\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"decisosalesbv\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/decisosalesbv\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"deepcognitioninc1593512758156\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/deepcognitioninc1593512758156\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"deepsiginc1581610210151\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/deepsiginc1581610210151\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"deepsurfacesecurityinc1632943333445\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/deepsurfacesecurityinc1632943333445\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dellemc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dellemc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dell_software\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dell_software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"delphix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/delphix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"deltapathlimited1592886319362\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/deltapathlimited1592886319362\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"denodo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/denodo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"denyall\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/denyall\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"derdack\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/derdack\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"desktopstudioag1580294245574\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/desktopstudioag1580294245574\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"devfactory\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/devfactory\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"device42inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/device42inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"deviceauthorityinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/deviceauthorityinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"devolutionsinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/devolutionsinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"devopsgroup-uk\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/devopsgroup-uk\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"df-portal-user\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/df-portal-user\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dgsecure\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dgsecure\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Dh2ico\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Dh2ico\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dh2icompany\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dh2icompany\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dhi\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dhi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"diagramics\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/diagramics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dicomsystems1584107398321\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dicomsystems1584107398321\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"diehl-metering\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/diehl-metering\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"digisitesystems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/digisitesystems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"digitaldefenseinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/digitaldefenseinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"digitaloffice\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/digitaloffice\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"digitamizeinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/digitamizeinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"digitate\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/digitate\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"diladele\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/diladele\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dimensionalmechanics-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dimensionalmechanics-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"diqa\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/diqa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"diyatech\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/diyatech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"diyotta\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/diyotta\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"djiindustrialincus\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/djiindustrialincus\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"docker\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/docker\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dome9\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dome9\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dorabot\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dorabot\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dremiocorporation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dremiocorporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"drizti\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/drizti\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"drone\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/drone\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dsi\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dsi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dundas\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dundas\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dyadic_security\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dyadic_security\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dynatrace\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dynatrace\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dynatrace.ruxit\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dynatrace.ruxit\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"e-magicinc1587696283171\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/e-magicinc1587696283171\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"eastwind-networks-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/eastwind-networks-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"easysoftwaresro1593005637384\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/easysoftwaresro1593005637384\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ebesllc1637780200500\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ebesllc1637780200500\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ecessa\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ecessa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"edevtech\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/edevtech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"edgelesssystems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/edgelesssystems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"edgenetworks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/edgenetworks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"edispheresoftwareprivatelimited1606199736428\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/edispheresoftwareprivatelimited1606199736428\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"education4sight\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/education4sight\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"eecservicesfzllc1604836615706\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/eecservicesfzllc1604836615706\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"egnyte\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/egnyte\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"egress1589289169584\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/egress1589289169584\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"eikonasystemsgmbh1601729310063\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/eikonasystemsgmbh1601729310063\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Elastic\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Elastic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"elasticbox\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/elasticbox\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"elecard\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/elecard\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"electric-cloud\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/electric-cloud\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"elevateiot\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/elevateiot\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"eleven01\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/eleven01\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"elfiqnetworks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/elfiqnetworks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"emercoin\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/emercoin\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"energisme1601990637842\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/energisme1601990637842\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"enforongo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/enforongo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"engineering-ingegneriainformatica-spa1626786889850\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/engineering-ingegneriainformatica-spa1626786889850\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"engysltd1624364546407\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/engysltd1624364546407\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"enterprise-ethereum-alliance\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/enterprise-ethereum-alliance\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"enterprisedb-corp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/enterprisedb-corp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"enterpriseworx-it\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/enterpriseworx-it\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"epicgames\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/epicgames\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"epicgamesinc1633466121071\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/epicgamesinc1633466121071\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"eproe\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/eproe\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"equalum\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/equalum\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"equilibrium\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/equilibrium\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"equinix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/equinix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ergoninformatikag1581586464404\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ergoninformatikag1581586464404\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"esdenera\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/esdenera\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ESET\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ESET\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"esetresearch1579795941720\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/esetresearch1579795941720\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"esri\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/esri\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"esyon\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/esyon\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ethereum\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ethereum\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"eurolinuxspzoo1620639373013\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/eurolinuxspzoo1620639373013\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"eventtracker\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/eventtracker\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"evertzmicrosystemsltd1586877923009\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/evertzmicrosystemsltd1586877923009\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"evostream-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/evostream-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"exact\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/exact\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"exasol\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/exasol\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"excelero1608461290726\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/excelero1608461290726\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"exivity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/exivity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"exonar\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/exonar\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"f5-networks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/f5-networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"falainapteltd1604661424876\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/falainapteltd1604661424876\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"falconstorsoftware\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/falconstorsoftware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fatalsecurity1604924013537\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fatalsecurity1604924013537\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fatpipe-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fatpipe-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fenestrae-1035066\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fenestrae-1035066\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fidesys\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fidesys\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"filecatalyst\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/filecatalyst\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"filemagellc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/filemagellc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fiorano\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fiorano\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fireeye\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fireeye\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"firehost\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/firehost\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"firemon\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/firemon\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"firstderivativesplc1596469572732\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/firstderivativesplc1596469572732\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"flashgrid-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/flashgrid-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"flexbby\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/flexbby\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"flexbby-5255860\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/flexbby-5255860\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"flexify-io\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/flexify-io\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"flexxibleit\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/flexxibleit\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"flowmon\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/flowmon\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"flynet\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/flynet\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"foghorn-systems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/foghorn-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"forcepoint-llc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/forcepoint-llc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"forescout\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/forescout\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"foreseetiab1613650409016\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/foreseetiab1613650409016\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"formpipesoftwareab\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/formpipesoftwareab\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"forscene\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/forscene\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fortanix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fortanix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fortinet\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fortinet\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fortycloud\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fortycloud\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"forumsystems1599756394904\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/forumsystems1599756394904\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fotopiatechnologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fotopiatechnologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"foxiteuropegmbh1585901066320\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/foxiteuropegmbh1585901066320\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"franzinc1593030725310\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/franzinc1593030725310\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fujitsu_fast\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fujitsu_fast\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fw\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fw\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"g2kgroupgmbh-4821943\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/g2kgroupgmbh-4821943\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gapteq\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gapteq\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gatlingcorp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gatlingcorp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gbs\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gbs\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gemalto-safenet\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gemalto-safenet\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Gemalto.SafeNet.ProtectV\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Gemalto.SafeNet.ProtectV\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"genuagmbhdevid1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/genuagmbhdevid1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"genua_gmbh\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/genua_gmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"genymobile\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/genymobile\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gigamon-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gigamon-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"GitHub\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/GitHub\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gitlab\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gitlab\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gitlabinc1586447921813\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gitlabinc1586447921813\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gladinet-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gladinet-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"glantoninc1591876792991\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/glantoninc1591876792991\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"globalidsinc1596800540598\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/globalidsinc1596800540598\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"globalscape\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/globalscape\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"globalsolutions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/globalsolutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gluwareinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gluwareinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"graphistry\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/graphistry\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"graphitegtc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/graphitegtc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"great-software-laboratory-private-limited\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/great-software-laboratory-private-limited\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"greensql\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/greensql\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"greycorbelsolutions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/greycorbelsolutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gridgain\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gridgain\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"guardicore\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/guardicore\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gxchainfoundationltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gxchainfoundationltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"h2o-ai\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/h2o-ai\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hackerbay\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hackerbay\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hackershub\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hackershub\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"haivision\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/haivision\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"haivisionsystemsinc1580780591922\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/haivisionsystemsinc1580780591922\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"haltdoscompvtltd1587136166019\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/haltdoscompvtltd1587136166019\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hanu\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hanu\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"haproxy-technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/haproxy-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"harmanconnectedservicesinc1594928575643\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/harmanconnectedservicesinc1594928575643\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"harpaitalia\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/harpaitalia\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hashhub\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hashhub\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hcl-technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hcl-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"heimdall-data\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/heimdall-data\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"help-systems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/help-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"helpyio\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/helpyio\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"heretechnologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/heretechnologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hewlett-packard\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hewlett-packard\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hillstone-networks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hillstone-networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hitachi-solutions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hitachi-solutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hitachivantara\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hitachivantara\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"holo-industrie40softwaregmbh1600957636008\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/holo-industrie40softwaregmbh1600957636008\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hortonworks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hortonworks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hpe\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hpe\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"HPE.Security.ApplicationDefender\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/HPE.Security.ApplicationDefender\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"huawei\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/huawei\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hubstor-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hubstor-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hush-hush\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hush-hush\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hvr\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hvr\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hyperglance\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hyperglance\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hypergrid\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hypergrid\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hystaxinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hystaxinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hytrust\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hytrust\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"i-exceed-technology\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/i-exceed-technology\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iaansys\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iaansys\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ibm\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ibm\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ibm-alliance-global-1560886\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ibm-alliance-global-1560886\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ibm-alliance-usa-ny-armonk-hq-ibmstorage-6201192\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ibm-alliance-usa-ny-armonk-hq-ibmstorage-6201192\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ibm-usa-ny-armonk-hq-6275750-ibmcloud-aiops\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ibm-usa-ny-armonk-hq-6275750-ibmcloud-aiops\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iboss\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iboss\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iconics\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iconics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iconsulting-spa\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iconsulting-spa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"icubeconsultancyservicesinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/icubeconsultancyservicesinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iguazio-5069960\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iguazio-5069960\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ikan\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ikan\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iliimbiliimveyazlmsistemlerisanvetica1617000555584\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iliimbiliimveyazlmsistemlerisanvetica1617000555584\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"illuminainc1586452220102\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/illuminainc1586452220102\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"image-technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/image-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"imaginecommunications\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/imaginecommunications\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"imperva\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/imperva\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"impetustechnologiesinc1591959591877\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/impetustechnologiesinc1591959591877\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"imprivatainc1580479939967\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/imprivatainc1580479939967\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"incorta\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/incorta\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"incredibuild\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/incredibuild\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"indexima1594300233028\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/indexima1594300233028\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"industry-weapon\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/industry-weapon\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"industryweapon1587162781833\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/industryweapon1587162781833\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"inenprocesosyplataformasdetisderldecv1615482385424\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/inenprocesosyplataformasdetisderldecv1615482385424\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"inergybv1637141413454\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/inergybv1637141413454\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"infinitesoftwarecorporation1579223971125\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/infinitesoftwarecorporation1579223971125\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"infiotinc1614034091460\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/infiotinc1614034091460\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"influxdata\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/influxdata\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"infoblox\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/infoblox\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"infogix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/infogix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"infolibrarian\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/infolibrarian\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"informatica\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/informatica\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"informationbuilders\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/informationbuilders\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"informationtechnologies_ltd_1179601\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/informationtechnologies_ltd_1179601\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"infotecsinternetsecuritysoftwaregmbh1636129257584\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/infotecsinternetsecuritysoftwaregmbh1636129257584\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"infront-consulting-group-ltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/infront-consulting-group-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"infscapeughaftungsbeschrnkt\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/infscapeughaftungsbeschrnkt\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ingenieurstudiohollaus1579587745438\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ingenieurstudiohollaus1579587745438\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ingrammicro\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ingrammicro\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"innomindssoftware\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/innomindssoftware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"innosepgmbh1618331344164\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/innosepgmbh1618331344164\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"innovatorartificialtechsrl1619180685551\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/innovatorartificialtechsrl1619180685551\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"innovtech\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/innovtech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"instight-technology\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/instight-technology\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"integration-objects\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/integration-objects\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"intel-bigdl\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/intel-bigdl\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"intel-fpga\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/intel-fpga\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"intellicus-technologies-pvt-ltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/intellicus-technologies-pvt-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"intelligent-plant-ltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/intelligent-plant-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"internationaltrustmachinescorporation1582190033865\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/internationaltrustmachinescorporation1582190033865\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"internet20inc1635882446190\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/internet20inc1635882446190\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"intersystems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/intersystems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"intigua\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/intigua\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"intigua1638692632641\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/intigua1638692632641\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"introspecioltd1629872641188\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/introspecioltd1629872641188\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iofabric\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iofabric\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ipinfusion1590066770520\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ipinfusion1590066770520\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ipswitch\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ipswitch\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iqsol\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iqsol\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iquate\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iquate\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iquest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iquest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"irion\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/irion\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ishlangu-load-balancer-adc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ishlangu-load-balancer-adc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"issp-corporation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/issp-corporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"isvtestukbigcat\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/isvtestukbigcat\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"isvtestuklegacy\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/isvtestuklegacy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"it4bizdoo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/it4bizdoo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"itelios\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/itelios\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"itrsgroupltd1620310702149\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/itrsgroupltd1620310702149\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ivanti-inc-pcs\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ivanti-inc-pcs\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ivix1595238749040\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ivix1595238749040\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iwnamespace\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iwnamespace\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"izenda\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/izenda\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"jamcracker\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/jamcracker\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"javlinltd1579185328273\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/javlinltd1579185328273\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"jedox\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/jedox\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"jelastic\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/jelastic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"jetnexus\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/jetnexus\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"jetware-srl\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/jetware-srl\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"jfrog\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/jfrog\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"jm-technology-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/jm-technology-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"jogetinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/jogetinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"juniper-networks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/juniper-networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"justanalytics\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/justanalytics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kaazing\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kaazing\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kadenallc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kadenallc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kali-linux\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kali-linux\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kalkitech\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kalkitech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kaminarioinc1588672951794\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kaminarioinc1588672951794\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Kaspersky.Lab\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Kaspersky.Lab\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"KasperskyLab.SecurityAgent\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/KasperskyLab.SecurityAgent\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kaspersky_lab\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kaspersky_lab\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kazendi\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kazendi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kelverion\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kelverion\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kemptech\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kemptech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kepion\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kepion\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"KevlarExtensions.M365Security.SecureOS\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/KevlarExtensions.M365Security.SecureOS\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"KevlarExtensions.M365SecurityHostIDS\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/KevlarExtensions.M365SecurityHostIDS\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"KevlarExtensions.M365SecurityInventory\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/KevlarExtensions.M365SecurityInventory\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"KevlarExtensions.M365SecurityInventory.NameChangeTest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/KevlarExtensions.M365SecurityInventory.NameChangeTest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"KevlarExtensions.M365SecurityODL\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/KevlarExtensions.M365SecurityODL\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"KevlarExtensions.M365SecurityTLSExtension\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/KevlarExtensions.M365SecurityTLSExtension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kinetica\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kinetica\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kinvolk\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kinvolk\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"knime\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/knime\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kobalt\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kobalt\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kognillc1600118221163\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kognillc1600118221163\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kognitivsparkinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kognitivsparkinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"konginc1581527938760\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/konginc1581527938760\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"konsys-ltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/konsys-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"koverseinc1588716263110\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/koverseinc1588716263110\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kryonsystems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kryonsystems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"krypc-technologies-pvt-ltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/krypc-technologies-pvt-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kyligence\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kyligence\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kyvos-insights-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kyvos-insights-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lab3solutions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lab3solutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lancom-systems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lancom-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lansa\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lansa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lastline\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lastline\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"leap-orbit\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/leap-orbit\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lenovosoftware1604394104439\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lenovosoftware1604394104439\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"leostream-corporation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/leostream-corporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lepide-software\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lepide-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"levacloudllc1602151818089\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/levacloudllc1602151818089\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"libelleag\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/libelleag\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"liberatii\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/liberatii\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"libraesva\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/libraesva\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"liebsoft\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/liebsoft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lightning-analyticsinc1582000647396\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lightning-analyticsinc1582000647396\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"linuxbasedsystemsdesignltd1580878904727\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/linuxbasedsystemsdesignltd1580878904727\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"liquid-files\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/liquid-files\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"liquidware\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/liquidware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"literatu\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/literatu\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"litespeedtechnologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/litespeedtechnologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"litespeed_technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/litespeed_technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"litionenergiegmbh1580128829115\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/litionenergiegmbh1580128829115\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"litmusautomation1582760223280\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/litmusautomation1582760223280\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"llcitpro\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/llcitpro\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lnw-softgmbh\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lnw-softgmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"loadbalancer\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/loadbalancer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"logicflowag1638535407949\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/logicflowag1638535407949\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"logsign\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/logsign\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"logstarecorp1635838645101\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/logstarecorp1635838645101\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"logtrust\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/logtrust\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"logzio\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/logzio\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"looker\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/looker\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lotus_beta_analytics\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lotus_beta_analytics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lti-lt-infotech\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lti-lt-infotech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"luminate-security\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/luminate-security\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"M365Security.KevlarExtensions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/M365Security.KevlarExtensions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"M365SecurityInventory\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/M365SecurityInventory\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"machinesense\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/machinesense\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"madhavajay1632269232059\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/madhavajay1632269232059\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"maidenhead-bridge\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/maidenhead-bridge\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"manageengine\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/manageengine\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mapd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mapd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mapr-technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mapr-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"marand\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/marand\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"marketplace-rdfe-caps\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/marketplace-rdfe-caps\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"marklogic\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/marklogic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"massiveanalytic-\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/massiveanalytic-\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mathworks-deployment\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mathworks-deployment\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mathworks-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mathworks-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"matillion\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/matillion\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mavinglobal\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mavinglobal\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"McAfee.EndpointSecurity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/McAfee.EndpointSecurity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"McAfee.EndpointSecurity.test3\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/McAfee.EndpointSecurity.test3\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"meanio\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/meanio\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"media3-adobe\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/media3-adobe\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"media3-technologies-llc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/media3-technologies-llc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mediatekinc1586141563888\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mediatekinc1586141563888\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mendix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mendix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"merlynnintelligencetechnologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/merlynnintelligencetechnologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"meshifyappinc1622759451429\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/meshifyappinc1622759451429\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"messagesolution\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/messagesolution\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"metaswitch\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/metaswitch\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mettainnovations-4900054\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mettainnovations-4900054\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mfe_azure\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mfe_azure\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mfiles\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mfiles\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mico\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mico\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"micro-focus\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/micro-focus\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microlinkpcukltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microlinkpcukltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microolap\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microolap\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-ads\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-ads\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-agci-gaming\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-agci-gaming\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-aks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-aks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-avere\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-avere\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-azure-batch\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-azure-batch\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-azure-compute\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-azure-compute\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-azure-hdinsight\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-azure-hdinsight\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-crypto\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-crypto\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-dsvm\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-dsvm\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-hyperv\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-hyperv\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-minecraft\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-minecraft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AdminCenter\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AdminCenter\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AKS\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AKS\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.ActiveDirectory\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.ActiveDirectory\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.ActiveDirectory.LinuxSSH\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.ActiveDirectory.LinuxSSH\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Applications\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Applications\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Automation.HybridWorker\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Automation.HybridWorker\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Automation.HybridWorker.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Automation.HybridWorker.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.AzureDefenderForServers\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.AzureDefenderForServers\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.AzureDefenderForSQL\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.AzureDefenderForSQL\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Backup.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Backup.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Backup.Test.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Backup.Test.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.ChangeTracking\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.ChangeTracking\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.ChangeTracking.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.ChangeTracking.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.ChangeTrackingAndInventory\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.ChangeTrackingAndInventory\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Chaos\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Chaos\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Compute.Security\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Compute.Security\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.ContainerUpstream\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.ContainerUpstream\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.DefenderForServers.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.DefenderForServers.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.DefenderForServers.Test2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.DefenderForServers.Test2\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Diagnostics\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Diagnostics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Diagnostics.Build.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Diagnostics.Build.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Diagnostics.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Diagnostics.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test012be407-61ea-4e45-a2c3-71a45999ca21-20191228083800\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test012be407-61ea-4e45-a2c3-71a45999ca21-20191228083800\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test01971384-3044-413b-8b1c-33b5d461bf23-20200107051823\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test01971384-3044-413b-8b1c-33b5d461bf23-20200107051823\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test0225ec7d-b36c-4ac8-82f0-aa4fafaf10a9-20200111051346\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test0225ec7d-b36c-4ac8-82f0-aa4fafaf10a9-20200111051346\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test025e16a1-328d-45a2-b7e3-71f7e4cde046-20191229064028\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test025e16a1-328d-45a2-b7e3-71f7e4cde046-20191229064028\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test02d1f941-5607-4757-8df7-fd8c5631ab45-20200103083810\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test02d1f941-5607-4757-8df7-fd8c5631ab45-20200103083810\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test039abd7f-360c-42a1-ad5d-77527c519286-20191002233412\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test039abd7f-360c-42a1-ad5d-77527c519286-20191002233412\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test04a0f157-c6fb-4595-b6ca-6c82a2338063-20200108101451\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test04a0f157-c6fb-4595-b6ca-6c82a2338063-20200108101451\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test0737f33e-63e0-4ba9-b04b-b93a1de4e997-20200106083639\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test0737f33e-63e0-4ba9-b04b-b93a1de4e997-20200106083639\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test0a44d7be-63fa-418d-a7b6-89a44dd21894-20200107052935\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test0a44d7be-63fa-418d-a7b6-89a44dd21894-20200107052935\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test0d01b487-7f79-4d87-b330-5c025068db45-20191004190331\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test0d01b487-7f79-4d87-b330-5c025068db45-20191004190331\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test0d643748-e6fe-41ad-b4d3-89a289a0cee0-20191003055620\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test0d643748-e6fe-41ad-b4d3-89a289a0cee0-20191003055620\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test0df83c51-5bb9-43f8-8ae9-bc896ea64f78-20200110220221\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test0df83c51-5bb9-43f8-8ae9-bc896ea64f78-20200110220221\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test0f02c246-7e65-4010-9367-ca4530c3897e-20191004190223\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test0f02c246-7e65-4010-9367-ca4530c3897e-20191004190223\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test157494ec-e788-43b0-8d26-a17e39ee07cc-20191002011945\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test157494ec-e788-43b0-8d26-a17e39ee07cc-20191002011945\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test1661d154-b623-4507-8a56-3a89812c456c-20200111083940\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test1661d154-b623-4507-8a56-3a89812c456c-20200111083940\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test17bbd860-f21d-40ab-9026-16e05f2907f0-20200106083451\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test17bbd860-f21d-40ab-9026-16e05f2907f0-20200106083451\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test194e2333-13cd-43e3-b0a4-c8cdcf1a3600-20200110211106\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test194e2333-13cd-43e3-b0a4-c8cdcf1a3600-20200110211106\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test1bc26b19-b8d8-41f9-a26d-818f277bdf93-20200101113139\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test1bc26b19-b8d8-41f9-a26d-818f277bdf93-20200101113139\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test1c840053-9213-4f2a-8f2e-9bf2297908bd-20200108101424\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test1c840053-9213-4f2a-8f2e-9bf2297908bd-20200108101424\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test1d7bba72-69f1-43cd-a38c-41ce0b5f4bae-20200109050041\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test1d7bba72-69f1-43cd-a38c-41ce0b5f4bae-20200109050041\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test1f7a8078-50e7-4a3a-91eb-d178fd4c403b-20191002233353\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test1f7a8078-50e7-4a3a-91eb-d178fd4c403b-20191002233353\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test1fef1fdc-57ba-46a8-a879-475ba7d45a7a-20200106083509\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test1fef1fdc-57ba-46a8-a879-475ba7d45a7a-20200106083509\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test21332f15-f78d-4d31-afac-79b9dc989432-20191231175840\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test21332f15-f78d-4d31-afac-79b9dc989432-20191231175840\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test22f10717-6939-4003-a9ce-38effd8b77d6-20191007191355\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test22f10717-6939-4003-a9ce-38effd8b77d6-20191007191355\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test2334e6e3-bb72-4241-a36f-c2429d69bc0b-20200106050834\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test2334e6e3-bb72-4241-a36f-c2429d69bc0b-20200106050834\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test24fa9eb5-1c59-4425-b61c-30fd638c2a45-20191003203802\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test24fa9eb5-1c59-4425-b61c-30fd638c2a45-20191003203802\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test2521a545-ed61-4a15-bed1-aba7ce1d81ee-20200106050804\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test2521a545-ed61-4a15-bed1-aba7ce1d81ee-20200106050804\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test25c6fe61-1282-43c2-867b-b5039219989c-20200105081851\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test25c6fe61-1282-43c2-867b-b5039219989c-20200105081851\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test27515c8c-6773-4f92-afb0-35691cc6e3b6-20200103083821\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test27515c8c-6773-4f92-afb0-35691cc6e3b6-20200103083821\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test28012680-48e7-4903-877f-2f29464e63d5-20191229033424\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test28012680-48e7-4903-877f-2f29464e63d5-20191229033424\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test29a7a529-d293-4728-9d7f-257ed996e64f-20200108081759\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test29a7a529-d293-4728-9d7f-257ed996e64f-20200108081759\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test2a5f2d2c-b8e3-46c2-850d-a1641c024fe7-20200107084228\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test2a5f2d2c-b8e3-46c2-850d-a1641c024fe7-20200107084228\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test2ce856af-ab17-48f2-ba3e-bcd9af091061-20200110013246\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test2ce856af-ab17-48f2-ba3e-bcd9af091061-20200110013246\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test2e012e83-6361-4365-963f-6ced8a08e91c-20200110211254\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test2e012e83-6361-4365-963f-6ced8a08e91c-20200110211254\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test2ecf67b2-fb63-4461-b6a6-7026c4fb1168-20191002214026\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test2ecf67b2-fb63-4461-b6a6-7026c4fb1168-20191002214026\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test2ede6564-c7cc-44cb-a1a8-902505c9829d-20191003020742\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test2ede6564-c7cc-44cb-a1a8-902505c9829d-20191003020742\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test2f4ebc17-e27e-48d9-9cc3-ff933c21884e-20200106092410\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test2f4ebc17-e27e-48d9-9cc3-ff933c21884e-20200106092410\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test349ee02c-af9b-4663-a963-823b40eefed8-20200108083612\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test349ee02c-af9b-4663-a963-823b40eefed8-20200108083612\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test34cf6b13-b78e-478b-b596-8b661629371d-20191007195455\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test34cf6b13-b78e-478b-b596-8b661629371d-20191007195455\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test36cc5b60-2b23-4a04-bf95-f7865e1141cf-20200110085718\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test36cc5b60-2b23-4a04-bf95-f7865e1141cf-20200110085718\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3712fca9-5cdd-4609-be69-b02aedc5c55c-20200107084115\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3712fca9-5cdd-4609-be69-b02aedc5c55c-20200107084115\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3772d042-92e2-4bcb-99b7-8a6a119cc088-20191231182808\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3772d042-92e2-4bcb-99b7-8a6a119cc088-20191231182808\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test37a6dd64-d44d-465e-85bc-3bc38be90350-20200104083535\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test37a6dd64-d44d-465e-85bc-3bc38be90350-20200104083535\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test381074d5-7156-472b-801a-b35f8fef4cc6-20200105050612\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test381074d5-7156-472b-801a-b35f8fef4cc6-20200105050612\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3877a44d-4c48-40db-80eb-227272d5acd6-20200110103540\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3877a44d-4c48-40db-80eb-227272d5acd6-20200110103540\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test38ecd28e-7018-4672-840c-3044a5e7a6b5-20200111084208\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test38ecd28e-7018-4672-840c-3044a5e7a6b5-20200111084208\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test395a0b49-442a-450c-8a1f-65b0aa3bcf47-20200105083839\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test395a0b49-442a-450c-8a1f-65b0aa3bcf47-20200105083839\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3971b300-edff-44a8-b61b-7f9b7460a8d6-20191003002234\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3971b300-edff-44a8-b61b-7f9b7460a8d6-20191003002234\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3adeec20-7458-4b3d-af26-0b6bc2aae3eb-20200103083751\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3adeec20-7458-4b3d-af26-0b6bc2aae3eb-20200103083751\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3b20dd96-f3e4-4798-998d-8c433c2449a7-20200108083635\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3b20dd96-f3e4-4798-998d-8c433c2449a7-20200108083635\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3ce2fd4a-8b5a-4c7e-b08d-3e48fc0f45e7-20200104083825\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3ce2fd4a-8b5a-4c7e-b08d-3e48fc0f45e7-20200104083825\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3d499ca7-cc8d-41cc-a6dc-ffb1a4ac4942-20200107053004\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3d499ca7-cc8d-41cc-a6dc-ffb1a4ac4942-20200107053004\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3db7240e-5e42-4d6d-b024-cc9fce3c828b-20200105083520\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3db7240e-5e42-4d6d-b024-cc9fce3c828b-20200105083520\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3f6b7341-635f-48d5-a36d-be5dfe3002c4-20200105050937\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3f6b7341-635f-48d5-a36d-be5dfe3002c4-20200105050937\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3fc26934-ede2-4482-ad5e-f66f6135d4a6-20191228055558\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3fc26934-ede2-4482-ad5e-f66f6135d4a6-20191228055558\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test406d077c-6017-4062-bc96-f809147a2331-20200106050748\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test406d077c-6017-4062-bc96-f809147a2331-20200106050748\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test4302336c-e039-4e70-bcb6-9275f6089e4a-20200108144821\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test4302336c-e039-4e70-bcb6-9275f6089e4a-20200108144821\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test453a087e-8435-46db-970a-4ee633cc4c4a-20200102083458\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test453a087e-8435-46db-970a-4ee633cc4c4a-20200102083458\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test46b73afa-2259-4aff-81e1-a58bf24b59aa-20191229033459\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test46b73afa-2259-4aff-81e1-a58bf24b59aa-20191229033459\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test4a3399ee-82ea-46aa-9e3a-5434b588e3b6-20191228013518\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test4a3399ee-82ea-46aa-9e3a-5434b588e3b6-20191228013518\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test4eb7a185-527b-4b9f-93a8-7f1cec9d062e-20191231151207\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test4eb7a185-527b-4b9f-93a8-7f1cec9d062e-20191231151207\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test520a0915-f9f0-4da4-9fa1-1b74fc1470aa-20200102083505\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test520a0915-f9f0-4da4-9fa1-1b74fc1470aa-20200102083505\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test5397960f-023b-4979-9a8b-800d049045a4-20191007195417\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test5397960f-023b-4979-9a8b-800d049045a4-20191007195417\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test55a36387-8a3f-4159-9884-29b97539a253-20200109080443\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test55a36387-8a3f-4159-9884-29b97539a253-20200109080443\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test5645f186-4ee5-4209-af37-423660e3318c-20191231175947\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test5645f186-4ee5-4209-af37-423660e3318c-20191231175947\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test58b4461d-4d2d-4395-b6d2-ab83d4d8c62f-20200111001002\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test58b4461d-4d2d-4395-b6d2-ab83d4d8c62f-20200111001002\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test5b0bf447-d98d-429d-8334-c032d197c743-20191003203846\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test5b0bf447-d98d-429d-8334-c032d197c743-20191003203846\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test5bc90367-1ea2-400b-a40c-321081bae3f3-20200108145035\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test5bc90367-1ea2-400b-a40c-321081bae3f3-20200108145035\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test5bd0562f-e939-456f-a6ee-c848d1aba616-20200101151641\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test5bd0562f-e939-456f-a6ee-c848d1aba616-20200101151641\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test5e4efe90-916c-4c96-802c-1508a5b6da78-20191231151150\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test5e4efe90-916c-4c96-802c-1508a5b6da78-20191231151150\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test5f8f0c10-cc3c-45ec-a068-fb1c7edfa0d9-20200101145958\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test5f8f0c10-cc3c-45ec-a068-fb1c7edfa0d9-20200101145958\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test60a000b7-286c-4b2b-9137-bbc088736419-20200108144920\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test60a000b7-286c-4b2b-9137-bbc088736419-20200108144920\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test6192a01b-ba47-4d08-904a-71647a49a112-20191008041625\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test6192a01b-ba47-4d08-904a-71647a49a112-20191008041625\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test62835538-89c6-4f66-9034-f7a4b176c615-20191007234245\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test62835538-89c6-4f66-9034-f7a4b176c615-20191007234245\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test651e4ad2-ee4a-462e-a506-b56b1969f5d0-20200110230749\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test651e4ad2-ee4a-462e-a506-b56b1969f5d0-20200110230749\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test691d94e5-c40c-4568-94b0-09b08aea42b1-20200106050808\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test691d94e5-c40c-4568-94b0-09b08aea42b1-20200106050808\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test6aa3643c-011a-4180-877f-cad955a8e664-20191007234642\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test6aa3643c-011a-4180-877f-cad955a8e664-20191007234642\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test6cfb469b-8478-468f-9bb5-691affd32abb-20200107083803\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test6cfb469b-8478-468f-9bb5-691affd32abb-20200107083803\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test6d36b6b2-7956-4e62-91c1-c33792fd4bb1-20200110123203\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test6d36b6b2-7956-4e62-91c1-c33792fd4bb1-20200110123203\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test6e28168e-a9c8-4c0a-8b40-60c2a1502d43-20200108052802\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test6e28168e-a9c8-4c0a-8b40-60c2a1502d43-20200108052802\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test6eb763ac-7fbe-4e44-bee7-aad035ee2a7d-20200110084429\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test6eb763ac-7fbe-4e44-bee7-aad035ee2a7d-20200110084429\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test6efec253-f625-46f0-9d74-324f69e963d8-20200107070514\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test6efec253-f625-46f0-9d74-324f69e963d8-20200107070514\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test70fa7e4c-3122-4ff7-aec6-fe75ab660a01-20200108105900\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test70fa7e4c-3122-4ff7-aec6-fe75ab660a01-20200108105900\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test710a5fbf-06c7-46ac-b96d-a29d2586422f-20200108083639\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test710a5fbf-06c7-46ac-b96d-a29d2586422f-20200108083639\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test71d72489-67c6-45e2-b1e6-a19546efc823-20200105112903\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test71d72489-67c6-45e2-b1e6-a19546efc823-20200105112903\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test721fccf1-2b3e-44b6-908f-51b910e88b09-20200111104931\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test721fccf1-2b3e-44b6-908f-51b910e88b09-20200111104931\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test742d0189-9e41-4f1b-8ad3-31c05d34903b-20200111103247\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test742d0189-9e41-4f1b-8ad3-31c05d34903b-20200111103247\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test7836a97c-f56e-48d0-8b5d-61e79aeb3226-20200111071656\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7836a97c-f56e-48d0-8b5d-61e79aeb3226-20200111071656\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test78666b2e-25c8-4a48-931a-3131a0317d73-20191002194352\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test78666b2e-25c8-4a48-931a-3131a0317d73-20191002194352\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test79f13508-fcbd-47b9-988f-1c21ef5e7f2e-20191002015429\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test79f13508-fcbd-47b9-988f-1c21ef5e7f2e-20191002015429\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test79fb90ce-4691-4212-99a7-6e4069bd5984-20191007234256\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test79fb90ce-4691-4212-99a7-6e4069bd5984-20191007234256\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test7a8cf687-6a21-4181-ba98-902fee717bd3-20200104103216\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7a8cf687-6a21-4181-ba98-902fee717bd3-20200104103216\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test7aabf813-6644-483a-b9e0-ba6f8973ba1f-20191002232822\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7aabf813-6644-483a-b9e0-ba6f8973ba1f-20191002232822\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test7c96c10a-0c8f-4ab0-83fd-1ad66a362e33-20191229033458\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7c96c10a-0c8f-4ab0-83fd-1ad66a362e33-20191229033458\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test7e79b6ff-2559-44fe-b3ba-afaa68d63636-20200108112116\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7e79b6ff-2559-44fe-b3ba-afaa68d63636-20200108112116\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test7ea372f7-ea7e-4b9e-bbad-4f35c1567aa2-20200108052736\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7ea372f7-ea7e-4b9e-bbad-4f35c1567aa2-20200108052736\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test7fac3d04-98a5-4fc4-904e-9ea3b86eadc2-20200106050751\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7fac3d04-98a5-4fc4-904e-9ea3b86eadc2-20200106050751\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test7fe20dd6-9ed9-4126-bb1d-031c01ac4550-20200101114504\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7fe20dd6-9ed9-4126-bb1d-031c01ac4550-20200101114504\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test7ff974d9-c841-4249-b05b-bbf663cb4605-20200106084104\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7ff974d9-c841-4249-b05b-bbf663cb4605-20200106084104\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test815bd4d5-fc24-4a47-be20-063c4809902c-20200109050508\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test815bd4d5-fc24-4a47-be20-063c4809902c-20200109050508\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test817654d0-2109-4d95-9284-8c8a9d960d08-20200108053758\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test817654d0-2109-4d95-9284-8c8a9d960d08-20200108053758\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test821ca3b6-dd05-4e80-b3d8-74ba03b2609b-20191231151151\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test821ca3b6-dd05-4e80-b3d8-74ba03b2609b-20191231151151\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test8285dc3e-637d-4d46-9695-adc39cbe7d2f-20200108144457\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test8285dc3e-637d-4d46-9695-adc39cbe7d2f-20200108144457\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test828aae03-9239-4938-a303-c23c42311878-20200102083419\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test828aae03-9239-4938-a303-c23c42311878-20200102083419\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test84afd814-5098-49ab-af99-e50350b5898b-20200110211134\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test84afd814-5098-49ab-af99-e50350b5898b-20200110211134\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test85b08563-b15f-4202-a0bc-f2bc2df2c71a-20200107053335\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test85b08563-b15f-4202-a0bc-f2bc2df2c71a-20200107053335\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test88aac268-c087-4481-b78e-99b920784a33-20200101084853\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test88aac268-c087-4481-b78e-99b920784a33-20200101084853\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test88dbd442-a8cc-4874-81a0-d3192c61df62-20191001224544\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test88dbd442-a8cc-4874-81a0-d3192c61df62-20191001224544\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test894dfb75-a00f-4f0c-894c-cae1c9846ad3-20200105051803\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test894dfb75-a00f-4f0c-894c-cae1c9846ad3-20200105051803\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test8d09bf4d-ee63-4ab1-a986-a4b802418403-20200111051447\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test8d09bf4d-ee63-4ab1-a986-a4b802418403-20200111051447\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test8d4d652b-4f05-4e99-93dd-78b9a36b5c78-20191003203755\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test8d4d652b-4f05-4e99-93dd-78b9a36b5c78-20191003203755\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test8de64739-43d8-4f84-af65-fdb3d0885288-20200108053543\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test8de64739-43d8-4f84-af65-fdb3d0885288-20200108053543\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test8e324c65-a51d-4eeb-9ec8-d5f8662dc041-20191228165107\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test8e324c65-a51d-4eeb-9ec8-d5f8662dc041-20191228165107\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test8e564580-8e53-4300-85f1-bf7f31dd37ff-20200107013348\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test8e564580-8e53-4300-85f1-bf7f31dd37ff-20200107013348\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test8f458ca7-8898-4d58-b93d-bfb0c3da028c-20200109050310\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test8f458ca7-8898-4d58-b93d-bfb0c3da028c-20200109050310\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test901cd6ca-5565-4552-a3de-d204d01935c0-20200108083706\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test901cd6ca-5565-4552-a3de-d204d01935c0-20200108083706\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test907b39e5-4008-4b55-93a0-18e9697b9cf3-20200108053817\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test907b39e5-4008-4b55-93a0-18e9697b9cf3-20200108053817\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test90c2be7c-d7ec-4abf-9fad-fef90fc3ef4d-20191004022234\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test90c2be7c-d7ec-4abf-9fad-fef90fc3ef4d-20191004022234\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test922db678-6ee8-43d5-86ff-6a86e132d332-20200107085231\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test922db678-6ee8-43d5-86ff-6a86e132d332-20200107085231\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test93b88aec-5277-4b1b-910c-7008e972ce91-20200107013304\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test93b88aec-5277-4b1b-910c-7008e972ce91-20200107013304\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test95a9104b-6cba-42d8-82ff-cc37e5ac44db-20200108081723\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test95a9104b-6cba-42d8-82ff-cc37e5ac44db-20200108081723\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test96da1605-19e0-46eb-9ce0-53e840f5e2cb-20200101111729\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test96da1605-19e0-46eb-9ce0-53e840f5e2cb-20200101111729\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test996066b2-7d29-400f-929b-e343a21046f7-20191231151212\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test996066b2-7d29-400f-929b-e343a21046f7-20191231151212\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test99663fff-ed21-4a91-9687-1a6da2abb033-20200106084508\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test99663fff-ed21-4a91-9687-1a6da2abb033-20200106084508\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test9eb5efa5-c3c1-4c13-80a6-11f5eba67372-20200108144852\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Test9eb5efa5-c3c1-4c13-80a6-11f5eba67372-20200108144852\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testa3791896-b1fc-491e-ba0d-aefcd8d9e52a-20200105083503\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testa3791896-b1fc-491e-ba0d-aefcd8d9e52a-20200105083503\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testa37ff709-a078-45a0-8187-41733df8e101-20200109050003\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testa37ff709-a078-45a0-8187-41733df8e101-20200109050003\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testa4c5fe4e-936e-4be1-a612-a331aff54a8c-20200111105055\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testa4c5fe4e-936e-4be1-a612-a331aff54a8c-20200111105055\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testa59bce1d-e32c-423d-a86e-945d4aeb98b4-20200107051821\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testa59bce1d-e32c-423d-a86e-945d4aeb98b4-20200107051821\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testa604c059-8279-4f4d-a354-eec27222a06c-20200111051514\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testa604c059-8279-4f4d-a354-eec27222a06c-20200111051514\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testa71fefb1-0d9c-4fb3-8d3d-5dcd12d72b77-20200103103221\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testa71fefb1-0d9c-4fb3-8d3d-5dcd12d72b77-20200103103221\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testa748013d-c5a6-44f9-88eb-43167207c742-20200111051402\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testa748013d-c5a6-44f9-88eb-43167207c742-20200111051402\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testaab67022-4f2b-420d-a06a-2c4045110cdf-20191229033144\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testaab67022-4f2b-420d-a06a-2c4045110cdf-20191229033144\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testacab9541-280f-4491-9f49-ac57653f0a07-20200105083839\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testacab9541-280f-4491-9f49-ac57653f0a07-20200105083839\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testad298437-0349-4cc7-88a9-d8aabcba9df1-20191002233431\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testad298437-0349-4cc7-88a9-d8aabcba9df1-20191002233431\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testadd68286-f9e0-4ab1-a526-d8f3cf0f054e-20200105084128\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testadd68286-f9e0-4ab1-a526-d8f3cf0f054e-20200105084128\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testade4c52b-18f5-4b67-8e93-945358ce4f7d-20191007234259\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testade4c52b-18f5-4b67-8e93-945358ce4f7d-20191007234259\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testae421c1d-0211-4ef2-b372-564ce8ad484a-20200110104035\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testae421c1d-0211-4ef2-b372-564ce8ad484a-20200110104035\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testafbbd8bf-aec5-48bf-8fea-73fa15ccc315-20191001224727\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testafbbd8bf-aec5-48bf-8fea-73fa15ccc315-20191001224727\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testb15148bf-78d2-42d4-ad08-b3ad8fb4b122-20200101084759\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testb15148bf-78d2-42d4-ad08-b3ad8fb4b122-20200101084759\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testb4237708-3688-40ea-85a2-275c05f4d100-20191228083519\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testb4237708-3688-40ea-85a2-275c05f4d100-20191228083519\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testb799a18f-be45-4c5c-8438-163ac2e1f1e7-20191004190529\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testb799a18f-be45-4c5c-8438-163ac2e1f1e7-20191004190529\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testb7cee88a-e5ac-4af4-99c8-7247020b00c3-20200105051201\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testb7cee88a-e5ac-4af4-99c8-7247020b00c3-20200105051201\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testb7df0d9a-27c0-4ca5-b692-08dd90387b98-20200111083443\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testb7df0d9a-27c0-4ca5-b692-08dd90387b98-20200111083443\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testbbf6bf32-4bd0-4381-b8f7-2658f585df4d-20191003203846\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testbbf6bf32-4bd0-4381-b8f7-2658f585df4d-20191003203846\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testbeea1376-166a-4b1a-8923-c907cc9737d9-20200107013336\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testbeea1376-166a-4b1a-8923-c907cc9737d9-20200107013336\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testbf9154e9-6166-48c2-86fe-1f331be606d7-20200107051823\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testbf9154e9-6166-48c2-86fe-1f331be606d7-20200107051823\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc0d7c3c5-23b8-489c-a5e0-ae87c681b696-20200101083539\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc0d7c3c5-23b8-489c-a5e0-ae87c681b696-20200101083539\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc193f31a-5186-4e93-84f6-0e4ab87b73c1-20200107052937\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc193f31a-5186-4e93-84f6-0e4ab87b73c1-20200107052937\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc1c7e8dc-fa8c-47d9-8305-de6d1451b939-20200101085248\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc1c7e8dc-fa8c-47d9-8305-de6d1451b939-20200101085248\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc1d0c917-e2ae-430c-a2ca-383fb0fda046-20191007235839\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc1d0c917-e2ae-430c-a2ca-383fb0fda046-20191007235839\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc23a3fbb-6e95-4c0d-94fc-c8ab14dddf1c-20191231151117\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc23a3fbb-6e95-4c0d-94fc-c8ab14dddf1c-20191231151117\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc2697630-6247-411a-94b3-c2974ad8cbee-20191007195417\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc2697630-6247-411a-94b3-c2974ad8cbee-20191007195417\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc466b80f-670f-4383-89b8-44e0d509fa20-20191002000516\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc466b80f-670f-4383-89b8-44e0d509fa20-20191002000516\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc5c8d9bd-75fa-4db3-9f34-5d7b7098584c-20191003203851\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc5c8d9bd-75fa-4db3-9f34-5d7b7098584c-20191003203851\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc8b6d14b-a5db-48e0-bfad-a2818d432bea-20200104083443\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc8b6d14b-a5db-48e0-bfad-a2818d432bea-20200104083443\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc933efa8-c553-4b93-884f-b7221d9ca789-20191228083750\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc933efa8-c553-4b93-884f-b7221d9ca789-20191228083750\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testcbe8ab80-46ef-49b1-a7bb-4e3d6e50e49f-20200104050811\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testcbe8ab80-46ef-49b1-a7bb-4e3d6e50e49f-20200104050811\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testccc0b5e6-9b0d-451a-8ac4-6f4af293b913-20200106092645\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testccc0b5e6-9b0d-451a-8ac4-6f4af293b913-20200106092645\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testcec64786-04b1-487c-80ec-050da646fb1c-20191005123412\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testcec64786-04b1-487c-80ec-050da646fb1c-20191005123412\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testd104a52f-eba2-401d-8e7f-a841c90f7712-20191228083553\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testd104a52f-eba2-401d-8e7f-a841c90f7712-20191228083553\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testd724cea4-0d3c-4539-b2ff-be08fb23a67e-20200107083714\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testd724cea4-0d3c-4539-b2ff-be08fb23a67e-20200107083714\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testd8e60bac-27ff-4fba-90b8-732c9c5ff91c-20191228083751\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testd8e60bac-27ff-4fba-90b8-732c9c5ff91c-20191228083751\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testd99db4a5-7683-4584-89ad-fefd711de284-20191004190210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testd99db4a5-7683-4584-89ad-fefd711de284-20191004190210\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testd9b4309a-67bc-4cd8-ac47-094cb20ca6aa-20200101090202\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testd9b4309a-67bc-4cd8-ac47-094cb20ca6aa-20200101090202\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testda3320e0-28f2-4146-a002-e06296362711-20191004190115\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testda3320e0-28f2-4146-a002-e06296362711-20191004190115\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testda714121-3240-4253-90c3-48c43f115c90-20200102083419\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testda714121-3240-4253-90c3-48c43f115c90-20200102083419\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testdb357558-60b4-4ee3-9ec3-ba22c5d827fb-20191004020617\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testdb357558-60b4-4ee3-9ec3-ba22c5d827fb-20191004020617\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testdc7230e9-df6d-4edd-a57c-ef7e0432c463-20191002011345\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testdc7230e9-df6d-4edd-a57c-ef7e0432c463-20191002011345\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testdccb59de-436f-4935-bed6-2e677dcaf36a-20200109111802\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testdccb59de-436f-4935-bed6-2e677dcaf36a-20200109111802\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testde985b23-9333-4f6e-a5e8-82025a38b2af-20200102083510\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testde985b23-9333-4f6e-a5e8-82025a38b2af-20200102083510\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Teste271da3e-cbcb-4ee7-8770-f297f414451f-20191003015540\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Teste271da3e-cbcb-4ee7-8770-f297f414451f-20191003015540\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Teste4070edd-aec0-455d-8a79-aecdb7170b6d-20191007234642\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Teste4070edd-aec0-455d-8a79-aecdb7170b6d-20191007234642\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Teste42f351a-4da0-4f0d-93e9-ef1d98e06659-20200108083633\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Teste42f351a-4da0-4f0d-93e9-ef1d98e06659-20200108083633\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Teste66ca23c-f4bf-4eb3-8418-139364d19e7d-20200107062643\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Teste66ca23c-f4bf-4eb3-8418-139364d19e7d-20200107062643\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Teste78b1ab2-1380-48ab-9923-0276cdb7198b-20191001224742\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Teste78b1ab2-1380-48ab-9923-0276cdb7198b-20191001224742\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Teste8607e14-b4f8-472a-bd5b-893b8d9612e6-20200112045941\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Teste8607e14-b4f8-472a-bd5b-893b8d9612e6-20200112045941\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Teste980b80e-3add-42c0-bc98-a84020b2d128-20200108101640\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Teste980b80e-3add-42c0-bc98-a84020b2d128-20200108101640\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Tested79dba9-2d38-4ea9-a01c-56e94b30ca7a-20191007195447\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Tested79dba9-2d38-4ea9-a01c-56e94b30ca7a-20191007195447\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testee9dcf5f-f7c4-4192-a8f4-28e9bc7d0f7c-20191001225005\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testee9dcf5f-f7c4-4192-a8f4-28e9bc7d0f7c-20191001225005\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testefbb340a-b68b-4200-872b-d05e7d29f92d-20191007195432\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testefbb340a-b68b-4200-872b-d05e7d29f92d-20191007195432\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testf1fc0559-6740-48dd-9501-2b933c731d52-20200103083458\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testf1fc0559-6740-48dd-9501-2b933c731d52-20200103083458\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testf41dfc97-bb51-4fba-86ca-a6f2695c415a-20200107050834\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testf41dfc97-bb51-4fba-86ca-a6f2695c415a-20200107050834\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testf5784447-83ed-4c00-8764-ea0f932aafa2-20200106085748\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testf5784447-83ed-4c00-8764-ea0f932aafa2-20200106085748\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testf6128ef6-c13c-420e-8088-0710888ce88b-20200109050003\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testf6128ef6-c13c-420e-8088-0710888ce88b-20200109050003\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testf863ab2c-ada9-4646-84c7-1f83a82375d7-20191229033226\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testf863ab2c-ada9-4646-84c7-1f83a82375d7-20191229033226\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testfac552a7-418f-4baa-8f51-d199ceff5c68-20200103050817\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testfac552a7-418f-4baa-8f51-d199ceff5c68-20200103050817\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testfb7be054-5c15-494f-822c-b64f9a36e2f3-20200105051753\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testfb7be054-5c15-494f-822c-b64f9a36e2f3-20200105051753\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testfc5c7585-6c9a-4aa4-a7c4-1223a94e00c7-20200104083552\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Testfc5c7585-6c9a-4aa4-a7c4-1223a94e00c7-20200104083552\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.FileServer.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.FileServer.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Geneva\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Geneva\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.KeyVault\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.KeyVault\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.KeyVault.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.KeyVault.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.LabServices\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.LabServices\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.LabServices.test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.LabServices.test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.Agent\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.Agent\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.Dev\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.Dev\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.Dev.INT\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.Dev.INT\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.Dev.SCALE\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.Dev.SCALE\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.Dev.TEST\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.Dev.TEST\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.GuestHealth\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.GuestHealth\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.DEV\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.DEV\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.INT\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.INT\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.SCALE\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.SCALE\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.TEST\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.TEST\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.INT.Dev\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.INT.Dev\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.SCALE.Dev\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.SCALE.Dev\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.TEST.Dev\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.TEST.Dev\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.WorkloadInsights.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.WorkloadInsights.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.WorkloadInsightsTest.newnamespace\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.WorkloadInsightsTest.newnamespace\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.Workloads\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.Workloads\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.Workloads.Dev\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.Workloads.Dev\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitoring.DependencyAgent\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitoring.DependencyAgent\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitoring.DependencyAgent.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitoring.DependencyAgent.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Networking.DNS\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Networking.DNS\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Networking.SDN\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Networking.SDN\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.NetworkWatcher\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.NetworkWatcher\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.NetworkWatcher.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.NetworkWatcher.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.OpenSSH\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.OpenSSH\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Performance.Diagnostics\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Performance.Diagnostics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Performance.Diagnostics.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Performance.Diagnostics.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.RecoveryServices\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.RecoveryServices.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices.SiteRecovery\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.RecoveryServices.SiteRecovery\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices.SiteRecovery2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.RecoveryServices.SiteRecovery2\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices.WorkloadBackup\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.RecoveryServices.WorkloadBackup\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices.WorkloadBackup.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.RecoveryServices.WorkloadBackup.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.AntimalwareSignature\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.AntimalwareSignature\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.AntimalwareSignature.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.AntimalwareSignature.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.Dsms\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.Dsms\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.Dsms.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.Dsms.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.LinuxAttestation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.LinuxAttestation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.LinuxTestAttestation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.LinuxTestAttestation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.Monitoring\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.Monitoring\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.Monitoring.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.Monitoring.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.Monitoring.Testing\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.Monitoring.Testing\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.TestWindowsAttestation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.TestWindowsAttestation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.WindowsAttestation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.WindowsAttestation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.WinTestAttestation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.WinTestAttestation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Sentinel.DnsExtension.Dev\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Sentinel.DnsExtension.Dev\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.ServiceFabric.MC\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.ServiceFabric.MC\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.ServiceFabric.MC.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.ServiceFabric.MC.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.SiteRecovery.Stage\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.SiteRecovery.Stage\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.SiteRecovery.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.SiteRecovery.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.SiteRecovery2.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.SiteRecovery2.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Test.Identity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Test.Identity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WindowsFabric.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WindowsFabric.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.ReleasePipeTest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.ReleasePipeTest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.ReleasePipeTest.INT\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.ReleasePipeTest.INT\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.ReleasePipeTest.TEST\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.ReleasePipeTest.TEST\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test2\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test3\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test3\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test4\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test4\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test5\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test5\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test5.INT\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test5.INT\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test5.TEST\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test5.TEST\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.VincentTest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.VincentTest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.VincentTest2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.VincentTest2\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.VincentTest3\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.VincentTest3\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.VincentTest4\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.VincentTest4\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.TestTest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.TestTest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.TestTest.INT\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.TestTest.INT\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.TestTest.TEST\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.TestTest.TEST\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Windows.ReleasePipeTest.INT\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Windows.ReleasePipeTest.INT\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Windows.ReleasePipeTest.TEST\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Windows.ReleasePipeTest.TEST\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoring\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoring.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoringTest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoringTest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureData\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureData\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureData.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureData.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.Canary\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights.Canary\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.Corp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights.Corp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.Linux.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights.Linux.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.LinuxTest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights.LinuxTest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.Meya0206\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights.Meya0206\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.MeyaCorp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights.MeyaCorp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.Testing\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights.Testing\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureSecurity.JITAccess\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureSecurity.JITAccess\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.CloudBackup.Workload.Extension\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.CloudBackup.Workload.Extension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.CloudBackup.Workload.Extension.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.CloudBackup.Workload.Extension.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Compute\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Compute.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Compute.TestSar\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute.TestSar\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.CPlat.Core\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.CPlat.Core\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.CPlat.Core.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.CPlat.Core.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Dcsswe.Extensions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Dcsswe.Extensions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.EnterpriseCloud.Monitoring\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.EnterpriseCloud.Monitoring.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.EnterpriseCloud.Monitoring.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Golive.Extensions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Golive.Extensions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.GuestConfig.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.GuestConfig.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.GuestConfiguration\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.GuestConfiguration\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.GuestConfiguration.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.GuestConfiguration.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.GuestConfiguration.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.GuestConfiguration.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.HpcCompute\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.HpcCompute\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.HpcCompute.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.HpcCompute.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.HpcPack\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.HpcPack\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Interceptor\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Interceptor\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.M365\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.M365\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.M365SecurityConfiguration.Kevlar.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.M365SecurityConfiguration.Kevlar.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.ManagedIdentity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.ManagedIdentity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.ManagedServices\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.ManagedServices\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.ManagedServices.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.ManagedServices.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.MonitoringAgent.Extension\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.MonitoringAgent.Extension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Network\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Network\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.OSTCExtensions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.OSTCExtensions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.OSTCExtensions.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.OSTCExtensions.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.OSTCExtensions.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.OSTCExtensions.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.OSTCExtensions.Testing\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.OSTCExtensions.Testing\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Powershell\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Powershell\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Powershell.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Powershell.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Powershell.Test01\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Powershell.Test01\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.SecurityManagement.Kevlar\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.SecurityManagement.Kevlar\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Sentinel.AzureMonitorAgentExtensions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Sentinel.AzureMonitorAgentExtensions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.SoftwareUpdateManagement\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.SoftwareUpdateManagement\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.SoftwareUpdateManagement.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.SoftwareUpdateManagement.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.SqlServer.Managability.IaaS.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.SqlServer.Managability.IaaS.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.SqlServer.Management\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.SqlServer.Management\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.SqlServer.Management.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.SqlServer.Management.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.SystemCenter\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.SystemCenter\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.SystemCenter.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.SystemCenter.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Test.Azure.Workloads\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Test.Azure.Workloads\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.TestSqlServer.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.TestSqlServer.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.ETWTraceListenerService\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.Azure.ETWTraceListenerService\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.RemoteDebug\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.Azure.RemoteDebug\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.RemoteDebug.Json\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.Azure.RemoteDebug.Json\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.ServiceProfiler\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.ServiceProfiler\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.Services\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.Services\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.WindowsAzure.DevTest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.WindowsAzure.DevTest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.WindowsAzure.DevTest.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.WindowsAzure.DevTest.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.WindowsAzure.RemoteDebug\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.WindowsAzure.RemoteDebug\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.WindowsAzure.Test.RemoteDebug\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.WindowsAzure.Test.RemoteDebug\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Windows.Azure.Extensions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Windows.Azure.Extensions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Windows.AzureRemoteApp.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Windows.AzureRemoteApp.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Windows.RemoteDesktop\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Windows.RemoteDesktop\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.WindowsAdminCenter\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.WindowsAdminCenter\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.WindowsAdminCenter.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.WindowsAdminCenter.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.WindowsAzure.Compute\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.WindowsAzure.Compute\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.WindowsAzure.Compute.test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.WindowsAzure.Compute.test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.WVD\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.WVD\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoftagciuk\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoftagciuk\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoftazurecituswarp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoftazurecituswarp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftAzureSiteRecovery\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftAzureSiteRecovery\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftBizTalkServer\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftBizTalkServer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftCBLMariner\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftCBLMariner\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoftcmotest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoftcmotest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoftcorporation1602274591143\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoftcorporation1602274591143\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoftcorporation1620407702632\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoftcorporation1620407702632\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftDynamicsAX\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftDynamicsAX\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftDynamicsGP\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftDynamicsGP\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftDynamicsNAV\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftDynamicsNAV\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoftfarmbeats\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoftfarmbeats\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftHybridCloudStorage\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftHybridCloudStorage\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftOSTC\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftOSTC\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftPowerBI\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftPowerBI\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftRServer\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftRServer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftSharePoint\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftSharePoint\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftSQLServer\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftSQLServer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftTestLinuxPPS\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftTestLinuxPPS\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftVisualStudio\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftVisualStudio\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftWindowsDesktop\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsDesktop\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftWindowsServer\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsServer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftWindowsServerHPCPack\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsServerHPCPack\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft_iot_edge\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft_iot_edge\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft_javaeeonazure_test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft_javaeeonazure_test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microstrategy\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microstrategy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"midasolutions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/midasolutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"middleware\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/middleware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"midfin\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/midfin\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"midvision\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/midvision\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mihupcommunicationspvtltd1599046998010\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mihupcommunicationspvtltd1599046998010\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mindcti\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mindcti\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"minio\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/minio\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"miraclelinux\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/miraclelinux\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"miracl_linux\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/miracl_linux\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"miri-infotech-pvt-ltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/miri-infotech-pvt-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mistio1601460379393\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mistio1601460379393\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mobilab\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mobilab\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"modern-systems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/modern-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"modexblockchaindatabase\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/modexblockchaindatabase\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"monetdbsolutions1611751313758\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/monetdbsolutions1611751313758\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"monitorapp1579029852605\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/monitorapp1579029852605\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"monitorcomputersystemsltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/monitorcomputersystemsltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"moogsoft\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/moogsoft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"morpheus-data\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/morpheus-data\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"moviemasher\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/moviemasher\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mriisoftllc1579457820427\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mriisoftllc1579457820427\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"msopentech\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/msopentech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mtnfog\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mtnfog\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"multisoft-ab\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/multisoft-ab\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mvp-systems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mvp-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mwg_azure\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mwg_azure\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mxhero\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mxhero\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"my-com\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/my-com\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"myarchinc1614657280935\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/myarchinc1614657280935\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"narrativescience\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/narrativescience\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nasuni\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nasuni\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nasunicorporation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nasunicorporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"navicloudrsoftwarepteltd1601967280369\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/navicloudrsoftwarepteltd1601967280369\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ncache\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ncache\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ncbi\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ncbi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ncomputingglobalinc1604353053068\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ncomputingglobalinc1604353053068\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ndl\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ndl\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nebbiolo-technologies-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nebbiolo-technologies-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nec-technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nec-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nefelinetworks1591201080882\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nefelinetworks1591201080882\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"neo4j\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/neo4j\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"neos\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/neos\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"neowaybusinesssolutions-4956350\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/neowaybusinesssolutions-4956350\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netapp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netapp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netatwork\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netatwork\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netfoundryinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netfoundryinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netgate\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netgate\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netikus-net-ltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netikus-net-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netiq\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netiq\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netka\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netka\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netmail\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netmail\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netscout\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netscout\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netspi\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netspi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netsweeper\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netsweeper\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"networksexchangetechnologyltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/networksexchangetechnologyltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netwrix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netwrix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netx\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netx\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"neusoft-neteye\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/neusoft-neteye\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"newnetcommunicationtechnologies1589991852134\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/newnetcommunicationtechnologies1589991852134\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"NewRelic.Infrastructure.Extensions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/NewRelic.Infrastructure.Extensions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"newtglobalconsultingllc1581492268566\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/newtglobalconsultingllc1581492268566\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nextronic-5290868\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nextronic-5290868\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nginxinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nginxinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nice-it-management-solutions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nice-it-management-solutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nicepeopleatwork\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nicepeopleatwork\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nilespartnersinc1617691698386\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nilespartnersinc1617691698386\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"niolabs-5229713\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/niolabs-5229713\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nirvatosoftwarepvtltd1601368706606\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nirvatosoftwarepvtltd1601368706606\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nodejsapi\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nodejsapi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"noianetworklimited1584098036197\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/noianetworklimited1584098036197\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nokiaofamericacorporation1591716055441\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nokiaofamericacorporation1591716055441\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"noobaa\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/noobaa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"norcominformationtechnologygmbhcokgaa\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/norcominformationtechnologygmbhcokgaa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"noricumcloudsolutions1600524477681\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/noricumcloudsolutions1600524477681\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"norsync\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/norsync\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"northbridge-secure\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/northbridge-secure\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nozominetworks1582208017986\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nozominetworks1582208017986\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nri\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nri\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ntegralinc1586961136942\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ntegralinc1586961136942\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ntt-data-intellilink-corporation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ntt-data-intellilink-corporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nttdata\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nttdata\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nttltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nttltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nuco-networks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nuco-networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"numbersbelieve\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/numbersbelieve\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"numtrallcpublisher\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/numtrallcpublisher\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nuxeo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nuxeo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nvidia\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nvidia\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"o2mc-real-time-data-platform\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/o2mc-real-time-data-platform\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"objectivity-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/objectivity-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"objectivity1595351622261\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/objectivity1595351622261\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"oceanblue-cloud\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/oceanblue-cloud\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"OctopusDeploy.Tentacle\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/OctopusDeploy.Tentacle\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"odix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/odix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"odysseuscomputationalsolutions1630242118741\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/odysseuscomputationalsolutions1630242118741\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"odysseyconsultantsltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/odysseyconsultantsltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"officeatwork-ag\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/officeatwork-ag\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"omega-software\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/omega-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"onapsis\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/onapsis\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"oncore_cloud_services-4944214\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/oncore_cloud_services-4944214\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"onexgroup\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/onexgroup\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"onspecta\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/onspecta\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ontology\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ontology\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"onyx-point-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/onyx-point-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"op5\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/op5\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"open-connect-systems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/open-connect-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"opencell\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/opencell\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"openlinkswcom-pago\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/openlinkswcom-pago\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"OpenLogic\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/OpenLogic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"openrefactoryinc1620140917523\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/openrefactoryinc1620140917523\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"openshotstudiosllc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/openshotstudiosllc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"opentext\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/opentext\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"openvpn\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/openvpn\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"opslogix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/opslogix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"opswatinc1619007967290\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/opswatinc1619007967290\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"optimitiveslu1618320281443\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/optimitiveslu1618320281443\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"option3\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/option3\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Oracle\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Oracle\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"oraylis\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/oraylis\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"oraylisbi\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/oraylisbi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"orbs-network\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/orbs-network\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"oriana\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/oriana\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"orientdb\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/orientdb\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"oroinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/oroinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"osirium-ltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/osirium-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"osisoft\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/osisoft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"osnexus\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/osnexus\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"outpost24\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/outpost24\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"outsystems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/outsystems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ovaledge1618392232783\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ovaledge1618392232783\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pachyderminc1585170006545\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pachyderminc1585170006545\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pacteratechnologiesinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pacteratechnologiesinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"paladionnetworkspvtltd1606120508449\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/paladionnetworkspvtltd1606120508449\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"paloaltonetworks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/paloaltonetworks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"panopta\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/panopta\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"panorama-necto\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/panorama-necto\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"panzura-file-system\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/panzura-file-system\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"parabole\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/parabole\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"paralaxiomtechnologiesprivatelimited1596433357886\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/paralaxiomtechnologiesprivatelimited1596433357886\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"parallels\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/parallels\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"parasoft\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/parasoft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"parkersoftwarelimited1609786657569\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/parkersoftwarelimited1609786657569\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"parsec-for-teams\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/parsec-for-teams\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pasifikciptamandiri\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pasifikciptamandiri\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"passlogy\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/passlogy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"paxata\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/paxata\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pcman\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pcman\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"peer-software-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/peer-software-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"penta-security-systems-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/penta-security-systems-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"percona\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/percona\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"perforce\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/perforce\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"periscope-tech-4791746\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/periscope-tech-4791746\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"piolinkinc1582849368309\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/piolinkinc1582849368309\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pivotal\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pivotal\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pixitmedia1591611150480\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pixitmedia1591611150480\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"plesk\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/plesk\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pmsoftwareinternational1603102514882\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pmsoftwareinternational1603102514882\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pnop\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pnop\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"polarityioinc1628691850891\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/polarityioinc1628691850891\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"portalarchitects\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/portalarchitects\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"portsysinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/portsysinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"postgres-pro\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/postgres-pro\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"powerbireach\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/powerbireach\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"prakshepprivatelimited1619949827900\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/prakshepprivatelimited1619949827900\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"prestashop\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/prestashop\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"prestige_informatique-1090178\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/prestige_informatique-1090178\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"prime-strategy\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/prime-strategy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"primekey\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/primekey\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"primestrategynewyorkinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/primestrategynewyorkinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pro-vision\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pro-vision\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"process-one\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/process-one\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"processgold\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/processgold\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"procomputers\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/procomputers\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"procomputerssrl1594239153814\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/procomputerssrl1594239153814\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"profecia\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/profecia\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Profiler.AgentOrchestrationRefactor.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Profiler.AgentOrchestrationRefactor.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Profiler.Master.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Profiler.Master.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"profisee\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/profisee\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"progelspa\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/progelspa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"progresssoftwarecorporation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/progresssoftwarecorporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"proliongmbh1628175060372\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/proliongmbh1628175060372\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"protegrityusainc1627404648458\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/protegrityusainc1627404648458\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"protiviti\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/protiviti\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"proventeq\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/proventeq\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ptc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ptc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ptsecurity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ptsecurity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pulse-secure\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pulse-secure\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pulsesecuretechnologies1638179500151\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pulsesecuretechnologies1638179500151\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"puppet\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/puppet\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"puppeteersoy1601024480557\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/puppeteersoy1601024480557\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"PuppetLabs\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/PuppetLabs\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"PuppetLabs.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/PuppetLabs.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"purestorageinc1578960262525\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/purestorageinc1578960262525\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pydio\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pydio\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pyramidanalytics\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pyramidanalytics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"qlik\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/qlik\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"qnapsystemsinc1601352084032\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/qnapsystemsinc1601352084032\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"qore-technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/qore-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"qs-solutions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/qs-solutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Qualys\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Qualys\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Qualys.LinuxAgent.GrayLabel\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Qualys.LinuxAgent.GrayLabel\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Qualys.WindowsAgent.GrayLabel\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Qualys.WindowsAgent.GrayLabel\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"qualysguard\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/qualysguard\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"quasardb\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/quasardb\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"qubole-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/qubole-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"quest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/quest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"racknap\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/racknap\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rackwareinc1619403669255\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rackwareinc1619403669255\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"radiant-logic\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/radiant-logic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"radware\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/radware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"raincode\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/raincode\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rancher\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rancher\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rapid7\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rapid7\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Rapid7.InsightPlatform\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Rapid7.InsightPlatform\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rapidminer\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rapidminer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"raynetgmbh\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/raynetgmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"readymind\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/readymind\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"realm\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/realm\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"reblaze\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/reblaze\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"RedHat\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/RedHat\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"redhat-rhel\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/redhat-rhel\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"redpoint-global\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/redpoint-global\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"refactr\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/refactr\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"refinitiv\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/refinitiv\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"refinitiv-4807503\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/refinitiv-4807503\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"relevance-lab\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/relevance-lab\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"remotelearner\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/remotelearner\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"res\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/res\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"resco\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/resco\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"resemblesystems1582780358300\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/resemblesystems1582780358300\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"responder-corp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/responder-corp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"revolution-analytics\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/revolution-analytics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rhcsolutions1586957910818\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rhcsolutions1586957910818\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ribboncommunications\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ribboncommunications\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"RightScaleLinux\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/RightScaleLinux\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"RightScaleWindowsServer\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/RightScaleWindowsServer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rimo3\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rimo3\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ringsoftwareresearchanddevelopmentinc1578946072257\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ringsoftwareresearchanddevelopmentinc1578946072257\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"riverbed\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/riverbed\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"RiverbedTechnology\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/RiverbedTechnology\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rmgtechnologiesinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rmgtechnologiesinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rocketml\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rocketml\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rocketsoftware\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rocketsoftware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rohdeschwarzcybersecuritygmbh\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rohdeschwarzcybersecuritygmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rohdeschwarzcybersecuritysas\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rohdeschwarzcybersecuritysas\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"roktech\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/roktech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rsa-security-llc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rsa-security-llc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rsk-labs\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rsk-labs\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rstudio-5237862\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rstudio-5237862\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rtts\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rtts\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rubrik-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rubrik-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"runecastsolutionslimited1614186396822\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/runecastsolutionslimited1614186396822\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"s2ix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/s2ix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"saama\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/saama\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"saasame-limited\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/saasame-limited\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"safesoftwareinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/safesoftwareinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"safeticatechnologiessro\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/safeticatechnologiessro\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"safetica_technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/safetica_technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"safetoopen1585013318137\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/safetoopen1585013318137\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"saltsecurity1583264186232\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/saltsecurity1583264186232\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"saltsecurity1583264669848\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/saltsecurity1583264669848\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"saltstack\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/saltstack\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"samsung-sds\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/samsung-sds\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"samsungelectronics1632860607983\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/samsungelectronics1632860607983\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"samsungsds-cello\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/samsungsds-cello\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"samsungsds_sdbe\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/samsungsds_sdbe\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sandhatatechnologieslimited1615753438737\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sandhatatechnologieslimited1615753438737\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sap\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sap\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sapphiretechnologieslimited1611758579346\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sapphiretechnologieslimited1611758579346\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sas-institute-560503\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sas-institute-560503\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"scaidata\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/scaidata\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"scalearc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/scalearc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"scalegrid\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/scalegrid\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"scality\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/scality\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"schrockeninc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/schrockeninc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sci\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sci\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sciencelogicinc1622565452194\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sciencelogicinc1622565452194\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"scientiamobile\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/scientiamobile\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"scontainug1595751515785\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/scontainug1595751515785\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"scubaanalytics\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/scubaanalytics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"scylladb1631195365807\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/scylladb1631195365807\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"seaqserviciossas1579029207572\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/seaqserviciossas1579029207572\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"searchbloxsoftwareinc1594309037050\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/searchbloxsoftwareinc1594309037050\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"secureworks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/secureworks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"securityonionsolutions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/securityonionsolutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"securityonionsolutionsllc1624649205155\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/securityonionsolutionsllc1624649205155\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"securosis\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/securosis\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"seequentltd1585781751395\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/seequentltd1585781751395\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"semarchy\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/semarchy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"semperis\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/semperis\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"senhasegura\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/senhasegura\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"SentinelOne.LinuxExtension\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/SentinelOne.LinuxExtension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"SentinelOne.WindowsExtension\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/SentinelOne.WindowsExtension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"SentinelOne.WindowsExtension.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/SentinelOne.WindowsExtension.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sentriumsl\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sentriumsl\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sentryone\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sentryone\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sepiosystems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sepiosystems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"seppmailag\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/seppmailag\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"seraumo1620002807288\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/seraumo1620002807288\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"service-control-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/service-control-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sesamesoftwareinc1622125191447\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sesamesoftwareinc1622125191447\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"shadow-soft\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/shadow-soft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"shareshiftneeraj.test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/shareshiftneeraj.test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sightapps\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sightapps\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"signal-sciences\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/signal-sciences\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"silk\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/silk\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"silver-peak-systems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/silver-peak-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"simmachinesinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/simmachinesinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"simontelephonics\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/simontelephonics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"simpledatalabsinc1635791235920\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/simpledatalabsinc1635791235920\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"simplifierag\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/simplifierag\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"simpligov\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/simpligov\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sinefa\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sinefa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sinequa\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sinequa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sinequa1588262295885\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sinequa1588262295885\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"singapore-telecommunications-limited\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/singapore-telecommunications-limited\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sios_datakeeper\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sios_datakeeper\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"siportalinc1581539156321\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/siportalinc1581539156321\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sisenseltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sisenseltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Site24x7\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Site24x7\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sktelecom\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sktelecom\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"skyarc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/skyarc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"skyboxsecurity1585187406404\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/skyboxsecurity1585187406404\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"skylarkcloud\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/skylarkcloud\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"smartbearsoftware\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/smartbearsoftware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"smartmessage-autoflow\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/smartmessage-autoflow\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"snaplogic\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/snaplogic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"snapt-adc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/snapt-adc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"snips\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/snips\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"soasta\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/soasta\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"softnas\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/softnas\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"softwarecentralas1642687699196\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/softwarecentralas1642687699196\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"softwarehut\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/softwarehut\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"softwebsolutions-4518310\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/softwebsolutions-4518310\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"soha\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/soha\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"solanolabs\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/solanolabs\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"solar-security\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/solar-security\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"solarwinds\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/solarwinds\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"solvedevops1643693563360\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/solvedevops1643693563360\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sonicwall-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sonicwall-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sophos\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sophos\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sourcegearllc1616101262784\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sourcegearllc1616101262784\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"south-river-technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/south-river-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"southrivertech1586314123192\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/southrivertech1586314123192\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"spacecurve\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/spacecurve\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"spaceliftinc1625499025476\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/spaceliftinc1625499025476\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"spagobi\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/spagobi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sparklinglogic\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sparklinglogic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"spectralcorelimited1619779004178\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/spectralcorelimited1619779004178\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"spektra\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/spektra\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sphere3d\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sphere3d\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"spideroakinc1588278690933\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/spideroakinc1588278690933\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"spirentcommunications1594084187199\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/spirentcommunications1594084187199\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"splunk\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/splunk\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sproutenetworks1593456311717\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sproutenetworks1593456311717\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sqlstream\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sqlstream\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"squadratechnologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/squadratechnologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"squaredup\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/squaredup\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"src-solution\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/src-solution\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stackato-platform-as-a-service\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stackato-platform-as-a-service\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Stackify.LinuxAgent.Extension\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Stackify.LinuxAgent.Extension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stackstorm\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stackstorm\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"startekfingerprintmatch\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/startekfingerprintmatch\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"startisolucoesemtecnologialtda1635263523201\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/startisolucoesemtecnologialtda1635263523201\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"starwind\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/starwind\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"StatusMonitor2.Diagnostics.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/StatusMonitor2.Diagnostics.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"StatusReport.Diagnostics.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/StatusReport.Diagnostics.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stealthbits\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stealthbits\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"steelhive\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/steelhive\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stonebondtechnologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stonebondtechnologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stonefly\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stonefly\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"storage_made_easy\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/storage_made_easy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stormshield\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stormshield\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"storone1594045543980\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/storone1594045543980\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"storreduce\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/storreduce\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"storwarespzoo1611743234900\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/storwarespzoo1611743234900\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"strangebee1595948424730\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/strangebee1595948424730\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"strataidentity1608323708170\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/strataidentity1608323708170\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stratis-group-ltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stratis-group-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stratodesk1611152769936\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stratodesk1611152769936\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stratumn\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stratumn\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"streamsets\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/streamsets\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"striim\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/striim\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stromasys\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stromasys\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"strongboxitllc1594816423884\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/strongboxitllc1594816423884\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"su\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/su\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"subscription.test.krsh\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/subscription.test.krsh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sumologic\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sumologic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sunatogmbh\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sunatogmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sunday\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sunday\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"SUSE\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/SUSE\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"swoopanalytics\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/swoopanalytics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sycom-technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sycom-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sycompatechnologycompanyinc1588192103892\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sycompatechnologycompanyinc1588192103892\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.CloudWorkloadProtection\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.CloudWorkloadProtection\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.CloudWorkloadProtection.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.CloudWorkloadProtection.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.CloudWorkloadProtection.TestOnStage\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.CloudWorkloadProtection.TestOnStage\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.QA\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.QA\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.staging\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.staging\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.test.ru2.latest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.test.ru2.latest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.test.ru2final\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.test.ru2final\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.test.ru2latest1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.test.ru2latest1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.test.ru4mp1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.test.ru4mp1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.test.ru4mp1.latest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.test.ru4mp1.latest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.test.ru4mp1final\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.test.ru4mp1final\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"symanteccorporation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/symanteccorporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"symantectest1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/symantectest1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"synack-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/synack-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"syncfusion\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/syncfusion\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"syncfusionbigdataplatfor\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/syncfusionbigdataplatfor\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"synechron-technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/synechron-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"synergixinc1585256339250\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/synergixinc1585256339250\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"synnexcorp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/synnexcorp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"syscomcomputerengineeringco1583913200141\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/syscomcomputerengineeringco1583913200141\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"syte\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/syte\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tableau\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tableau\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tactic\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tactic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"talari-networks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/talari-networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"talena-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/talena-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"talend\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/talend\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"talon\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/talon\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tamrinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tamrinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"targit\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/targit\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tata_communications\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tata_communications\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tavanttechnologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tavanttechnologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tavendo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tavendo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"te-systems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/te-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"techdivision\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/techdivision\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"techlatest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/techlatest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"technicheltd1606969724100\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/technicheltd1606969724100\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tecknolab\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tecknolab\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"telepat\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/telepat\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"teloscorporation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/teloscorporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tempered-networks-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tempered-networks-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tenable\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tenable\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tensormakecorpdbaoneclickai1608247756082\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tensormakecorpdbaoneclickai1608247756082\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"teradata\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/teradata\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Teradici\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Teradici\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"teramindinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/teramindinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.Gemalto.SafeNet.ProtectV\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.Gemalto.SafeNet.ProtectV\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.Gemalto.SafeNet.ProtectV.Azure\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.Gemalto.SafeNet.ProtectV.Azure\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.HP.AppDefender\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.HP.AppDefender\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.Microsoft.VisualStudio.Services\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.Microsoft.VisualStudio.Services\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.NJHP.AppDefender\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.NJHP.AppDefender\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.SqlServer.Managability\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.SqlServer.Managability\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.SqlServer.Management\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.SqlServer.Management\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.SqlServer.Management.corext\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.SqlServer.Management.corext\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test1.NJHP.AppDefender\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test1.NJHP.AppDefender\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test3.Microsoft.VisualStudio.Services\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test3.Microsoft.VisualStudio.Services\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"testable1603721901088\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/testable1603721901088\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"testpro\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/testpro\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"test_test_mix3pptest0011614206850774\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/test_test_mix3pptest0011614206850774\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"test_test_mneela1628617140187\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/test_test_mneela1628617140187\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"test_test_pmc2pc1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/test_test_pmc2pc1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thales-vormetric\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thales-vormetric\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thalesdiscplusainc1596561677238\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thalesdiscplusainc1596561677238\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thedatavaluefactoryltd1589348815922\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thedatavaluefactoryltd1589348815922\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thefreebsdfoundation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thefreebsdfoundation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thehdfgroup1616725197741\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thehdfgroup1616725197741\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"theumag1596442827072\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/theumag1596442827072\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"things-board\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/things-board\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thingscareinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thingscareinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thinprintgmbh\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thinprintgmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thorntechnologiesllc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thorntechnologiesllc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thoughtspot-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thoughtspot-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"threatintelligenceptyltd1586824172898\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/threatintelligenceptyltd1586824172898\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tibco-software\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tibco-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tidal-migrations\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tidal-migrations\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tidalmediainc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tidalmediainc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tig\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tig\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tiger-technology\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tiger-technology\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tigergraph\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tigergraph\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"timextender\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/timextender\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tmaxsoft\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tmaxsoft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tmaxsoft1608612658335\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tmaxsoft1608612658335\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tomsawyersoftwarecorp1613579206342\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tomsawyersoftwarecorp1613579206342\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"topicus\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/topicus\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"torusware\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/torusware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"totemo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/totemo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"townsend-security\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/townsend-security\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"transcendinformationinc1609918445926\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/transcendinformationinc1609918445926\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"transientxinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/transientxinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"transvault\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/transvault\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"trendmicro\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/trendmicro\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"TrendMicro.DeepSecurity.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/TrendMicro.DeepSecurity.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"TrendMicro.PortalProtect\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/TrendMicro.PortalProtect\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tresorit\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tresorit\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"trifacta\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/trifacta\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tripleblindinc1615730179432\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tripleblindinc1615730179432\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tripwire-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tripwire-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"truata1612259728221\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/truata1612259728221\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"truestack\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/truestack\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tryonsolutionsinc1596650621083\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tryonsolutionsinc1596650621083\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tsa-public-service\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tsa-public-service\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tunnelbiz\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tunnelbiz\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"turbonet\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/turbonet\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"turbonet1581982683964\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/turbonet1581982683964\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"twistlock\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/twistlock\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"typesafe\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/typesafe\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ubeeko\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ubeeko\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ubercloud\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ubercloud\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"uipath-5054924\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/uipath-5054924\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ulex\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ulex\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"unifi-software\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/unifi-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"unifiedstreaming1598872291606\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/unifiedstreaming1598872291606\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"uniprint-net\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/uniprint-net\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"unitrends\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/unitrends\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"unnisoft\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/unnisoft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"unravel-data\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/unravel-data\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"unscramblsingaporepteltd-4999260\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/unscramblsingaporepteltd-4999260\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"untangle\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/untangle\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"upsolver1594188634150\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/upsolver1594188634150\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"usp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/usp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"valohai\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/valohai\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"valtix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/valtix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"varmournetworks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/varmournetworks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"varnish\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/varnish\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vatacommunicationsinc1581644208717\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vatacommunicationsinc1581644208717\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vaultive-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vaultive-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vbot\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vbot\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vcinityinc1587684340545\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vcinityinc1587684340545\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vectraaiinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vectraaiinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"veeam\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/veeam\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"velocitydb-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/velocitydb-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"velocloud\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/velocloud\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vembutechnologiespvtltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vembutechnologiespvtltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vemn\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vemn\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"veritas\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/veritas\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"versanetworks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/versanetworks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"versasec\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/versasec\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vidispine\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vidispine\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vidizmo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vidizmo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vigyanlabs-innovations-pvt-ltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vigyanlabs-innovations-pvt-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vigyanlabsinc1581413676614\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vigyanlabsinc1581413676614\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"viptela\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/viptela\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vircom\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vircom\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"virtamovecorp1615909247913\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/virtamovecorp1615909247913\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"virtualpulsesro1607008728942\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/virtualpulsesro1607008728942\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"virtuozzointernationalgmbh1626704951469\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/virtuozzointernationalgmbh1626704951469\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"visualknowledgeshare1591795776234\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/visualknowledgeshare1591795776234\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"visualsoft-center\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/visualsoft-center\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vizixiotplatformretail001\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vizixiotplatformretail001\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vmlabinc1613642184700\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vmlabinc1613642184700\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vmturbo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vmturbo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vmware-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vmware-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vnomicinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vnomicinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"voiceelements\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/voiceelements\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"voleatechgmbh1636966911943\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/voleatechgmbh1636966911943\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"volterraedgeservices\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/volterraedgeservices\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Vormetric\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Vormetric\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vscconsultingptyltd1608535888097\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vscconsultingptyltd1608535888097\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vte\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vte\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vu-llc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vu-llc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vyulabsinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vyulabsinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"WAD2AI.Diagnostics.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/WAD2AI.Diagnostics.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"WAD2EventHub.Diagnostics.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/WAD2EventHub.Diagnostics.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wallarm\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wallarm\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wallix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wallix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wandisco\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wandisco\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wanos\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wanos\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wanpath-dba-myworkdrive\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wanpath-dba-myworkdrive\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wardy-it-solutions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wardy-it-solutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"warewolf-esb\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/warewolf-esb\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"watchguard-technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/watchguard-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"webaloinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/webaloinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"websense-apmailpe\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/websense-apmailpe\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"websoft9inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/websoft9inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wedoitllc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wedoitllc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"westernoceansoftwaresprivatelimited\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/westernoceansoftwaresprivatelimited\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wherescapesoftware\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wherescapesoftware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"winmagic_securedoc_cloudvm\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/winmagic_securedoc_cloudvm\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wintellisys-inc-4561600\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wintellisys-inc-4561600\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"witfooinc1590167223060\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/witfooinc1590167223060\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wmspanel\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wmspanel\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wood1595864497589\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wood1595864497589\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"workshare-technology\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/workshare-technology\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"world-programming\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/world-programming\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"worxogo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/worxogo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wowza\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wowza\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"xcontentptyltd-1329748\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/xcontentptyltd-1329748\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"xendata-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/xendata-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"xfinityinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/xfinityinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"xilinx\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/xilinx\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"xoriantcorporationazxteam1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/xoriantcorporationazxteam1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"xoriantsolutionspvtltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/xoriantsolutionspvtltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"xtremedata\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/xtremedata\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"xyzrd-group-ou\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/xyzrd-group-ou\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"yellowfin\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/yellowfin\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"yellowfininternationalptyltd1616363974066\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/yellowfininternationalptyltd1616363974066\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"yokogawarentalleasecorporation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/yokogawarentalleasecorporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"your-shop-online\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/your-shop-online\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"z1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/z1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"z4it-aps\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/z4it-aps\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zabbix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zabbix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zend\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zend\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zenterasystemsinc1605292453288\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zenterasystemsinc1605292453288\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zerodown_software\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zerodown_software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zerto\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zerto\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zettalane_systems-5254599\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zettalane_systems-5254599\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zevenet\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zevenet\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zilliz\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zilliz\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zoomdata\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zoomdata\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zscaler\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zscaler\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zscaler1579058425289\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zscaler1579058425289\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zultysinc1596831546163\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zultysinc1596831546163\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"128technology\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/128technology\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1580863854728\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1580863854728\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1583411303229\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1583411303229\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1583465680865\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1583465680865\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1585118004523\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1585118004523\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1592878437854\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1592878437854\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1597644262255\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1597644262255\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1598955805825\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1598955805825\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1601633765871\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1601633765871\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1602067018799\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1602067018799\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1604579683207\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1604579683207\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1615257339685\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1615257339685\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1615278064010\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1615278064010\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1615455873642\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1615455873642\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1624590941808\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1624590941808\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1640334196980\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1640334196980\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1e\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/1e\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"2021ai\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/2021ai\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"247commercelimited1611063941652\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/247commercelimited1611063941652\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"3cx-pbx\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/3cx-pbx\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"42crunch1580391915541\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/42crunch1580391915541\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"4psa\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/4psa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"5nine-software-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/5nine-software-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"6124903\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/6124903\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"7isolutions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/7isolutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"a10networks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/a10networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"a10networks1596136698788\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/a10networks1596136698788\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"abiquo\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/abiquo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"abzoobainc1598420455082\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/abzoobainc1598420455082\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"accedian\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/accedian\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"accelario1579101623356\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/accelario1579101623356\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"accellion\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/accellion\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"accessdata-group\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/accessdata-group\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"accops\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/accops\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aciworldwide\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aciworldwide\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Acronis\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Acronis\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Acronis.Backup\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Acronis.Backup\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"actian-corp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/actian-corp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"actian_matrix\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/actian_matrix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"actifio\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/actifio\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"actiphy\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/actiphy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"actiphyinc1627974506603\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/actiphyinc1627974506603\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"activecountermeasuresinc1631039410073\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/activecountermeasuresinc1631039410073\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"activeeon\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/activeeon\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"activeops\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/activeops\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"adastracorporation-4028356\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/adastracorporation-4028356\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"adgs\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/adgs\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"advantech\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/advantech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"advantech-webaccess\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/advantech-webaccess\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"advantys\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/advantys\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aelf\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aelf\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aerospike\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aerospike\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"affinio\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/affinio\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"affirmednetworks1607630812999\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/affirmednetworks1607630812999\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ageniumscale1591804889317\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ageniumscale1591804889317\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aggregion-ltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aggregion-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"agiledialogssl1603791911858\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/agiledialogssl1603791911858\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"agolo\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/agolo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ahnlabinc1584495174865\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ahnlabinc1584495174865\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ahnlabinc1584495467593\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ahnlabinc1584495467593\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"airalabrus\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/airalabrus\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aiscaler-cache-control-ddos-and-url-rewriting-\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aiscaler-cache-control-ddos-and-url-rewriting-\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aisundowninc1618516322959\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aisundowninc1618516322959\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"akamai-technologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/akamai-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"akumina\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/akumina\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"akumo-software\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/akumo-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"al-tamamunitedtradingcontractingcompany\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/al-tamamunitedtradingcontractingcompany\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"alachisoft\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/alachisoft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"alertlogic\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/alertlogic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"AlertLogic.Extension\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/AlertLogic.Extension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"algolyticstechnologies1606475101268\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/algolyticstechnologies1606475101268\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"alicetrix\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/alicetrix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"alienvault\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/alienvault\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"alldigital-brevity\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/alldigital-brevity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"almalinux\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/almalinux\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"almalinuxosfoundation1628089859865\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/almalinuxosfoundation1628089859865\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"altair-engineering-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/altair-engineering-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"altamira-corporation\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/altamira-corporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"alteryx\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/alteryx\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"altova\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/altova\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"amergint1593131356777\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/amergint1593131356777\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"anjanadatasl1583402861145\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/anjanadatasl1583402861145\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ansys\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ansys\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"antmedia\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/antmedia\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aod\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aod\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"apigee\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/apigee\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"appcara\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appcara\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"appcelerator\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appcelerator\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"appex-networks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appex-networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"appistry\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appistry\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"appiyo_technologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appiyo_technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"appmint_inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appmint_inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"apps-4-rent\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/apps-4-rent\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"appscale-marketplace\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appscale-marketplace\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"appsurifyinc1606933045773\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appsurifyinc1606933045773\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aquaforest\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aquaforest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aquantyinc1598537176913\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aquantyinc1598537176913\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aquaveollc1633710529908\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aquaveollc1633710529908\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"arabesque-group\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/arabesque-group\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"arangodb\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/arangodb\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aras\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aras\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"arcblock\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/arcblock\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"arcesb\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/arcesb\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"arcontechsolutionsprivatelimited1623841797810\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/arcontechsolutionsprivatelimited1623841797810\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"arcserveusallc-marketing\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/arcserveusallc-marketing\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"arista-networks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/arista-networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ariwontollc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ariwontollc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"array_networks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/array_networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"artificial-intelligence-techniques-sl\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/artificial-intelligence-techniques-sl\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"arubanetworks-4922182\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/arubanetworks-4922182\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"asdivertissementinc1617837708654\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/asdivertissementinc1617837708654\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"asigra\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/asigra\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aspentechnologyhq-1353108\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aspentechnologyhq-1353108\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"astadia-1148316\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/astadia-1148316\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"asterasoftware1581022936015\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/asterasoftware1581022936015\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"asyscosoftwarebv\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/asyscosoftwarebv\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ataccama\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ataccama\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"athinfosystems1641442221349\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/athinfosystems1641442221349\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"athinfosystems1648710938250\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/athinfosystems1648710938250\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"atlgaming\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/atlgaming\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"atmosera\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/atmosera\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"atomicorp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/atomicorp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"atomizedinc1587939464368\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/atomizedinc1587939464368\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"attunity_cloudbeam\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/attunity_cloudbeam\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"audiocodes\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/audiocodes\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"auraportal\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/auraportal\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"auriq-systems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/auriq-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"automateio1592914387888\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/automateio1592914387888\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"automationanywhere\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/automationanywhere\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"avanseus\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/avanseus\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"avepoint\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/avepoint\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aveva1\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aveva1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"avi-networks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/avi-networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aviatrix-systems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aviatrix-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"awingu\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/awingu\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"axedrasag1590581171549\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/axedrasag1590581171549\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"axsguardablenv\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/axsguardablenv\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"axshco\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/axshco\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"axway\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/axway\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"axxana\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/axxana\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"azhpc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/azhpc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"azul\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/azul\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"azure-dockit\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/azure-dockit\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"azurecyclecloud\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/azurecyclecloud\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"AzureDatabricks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/AzureDatabricks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"azureopenshift\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/azureopenshift\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"AzureRT.PIR.Synthetics.ProdTest\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/AzureRT.PIR.Synthetics.ProdTest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"AzureRT.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/AzureRT.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"azuretesting\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/azuretesting\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"azuretesting2\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/azuretesting2\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"azuretesting3\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/azuretesting3\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"AzureTools1type\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/AzureTools1type\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"baas-techbureau\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/baas-techbureau\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"baffle-io\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/baffle-io\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"balabit\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/balabit\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"barracudanetworks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/barracudanetworks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"basho\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/basho\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"batch\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/batch\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bayware\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bayware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bdy\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bdy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"belindaczsro1588885355210\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/belindaczsro1588885355210\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bellsoft1582871421940\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bellsoft1582871421940\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"betsol\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/betsol\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"beyondtrust\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/beyondtrust\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bi-builders-as\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bi-builders-as\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"big-id\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/big-id\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"biolibinc1622552350258\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/biolibinc1622552350258\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bissantechnology1583581147809\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bissantechnology1583581147809\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bitdefendercybersecurity\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bitdefendercybersecurity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Bitnami\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Bitnami\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bizagi\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bizagi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bizaptyltd1626489237351\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bizaptyltd1626489237351\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bizdataloome\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bizdataloome\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"biztalk360\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/biztalk360\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"black-duck-software\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/black-duck-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"blackbird\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/blackbird\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"blackmagicdesignincorporated1596492193249\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/blackmagicdesignincorporated1596492193249\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"blk-technologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/blk-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"blockapps\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/blockapps\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"blockchain-foundry\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/blockchain-foundry\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"blockstack\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/blockstack\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bloombase\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bloombase\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bluecat\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bluecat\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bluejeansnetwork1638333611902\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bluejeansnetwork1638333611902\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"blueprismlimited-4827145\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/blueprismlimited-4827145\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bluesyntaxconsulting1617654548594\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bluesyntaxconsulting1617654548594\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bluetalon\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bluetalon\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bmc.ctm\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bmc.ctm\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bmcctm.test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bmcctm.test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"boardpacpvtltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/boardpacpvtltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bocada\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bocada\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"boemskats\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/boemskats\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"botanalytics\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/botanalytics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bowspritconsultingopcprivatelimited1596291408582\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bowspritconsultingopcprivatelimited1596291408582\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bravura-software-llc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bravura-software-llc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Brianjac.Symantec.CloudWorkloadProtection\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Brianjac.Symantec.CloudWorkloadProtection\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bricatainc1584472632111\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bricatainc1584472632111\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bright-computing\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bright-computing\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"brightcomputing\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/brightcomputing\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"brocade_communications\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/brocade_communications\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"brutale\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/brutale\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bryte\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bryte\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bssw\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bssw\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bt-americas-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bt-americas-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"buddhalabs\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/buddhalabs\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cadosecurityltd1626856705534\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cadosecurityltd1626856705534\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"calculated_systems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/calculated_systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"caloudi_corp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/caloudi_corp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"canadiancentreforcybersecurity1610638436359\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/canadiancentreforcybersecurity1610638436359\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Canonical\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Canonical\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"canonical-test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/canonical-test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"carto\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/carto\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cask\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cask\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"castaigroupinc1595243474856\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/castaigroupinc1595243474856\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"catechnologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/catechnologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"catonetworksltd1641478570665\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/catonetworksltd1641478570665\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cautelalabs\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cautelalabs\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cavirin\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cavirin\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cayosoftinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cayosoftinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cdatasoftware\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cdatasoftware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cds\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cds\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"celum-gmbh\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/celum-gmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"center-for-internet-security-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/center-for-internet-security-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"centeritysystems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/centeritysystems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"centrixeltd1594135951373\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/centrixeltd1594135951373\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"centrocomputerspa1584528117084\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/centrocomputerspa1584528117084\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"certifiedsecuritysolutionsinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/certifiedsecuritysolutionsinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"certivox\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/certivox\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cfd-direct\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cfd-direct\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"chain\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/chain\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"checkpoint\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/checkpoint\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"chef-software\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/chef-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Chef.Bootstrap.WindowsAzure\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Chef.Bootstrap.WindowsAzure\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"chunghwatelecom1587573688842\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/chunghwatelecom1587573688842\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cinchy\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cinchy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cinegy-gmbh\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cinegy-gmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ciphertechsinc1646670709341\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ciphertechsinc1646670709341\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"circleci\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/circleci\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cires21\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cires21\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cirruswaveinc1579234787943\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cirruswaveinc1579234787943\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cisco\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cisco\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"citrix\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/citrix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Citrix.ADC\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Citrix.ADC\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"clapsodeughaftungsbeschrnkt1626333173563\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/clapsodeughaftungsbeschrnkt1626333173563\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"clear-linux-project\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/clear-linux-project\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"clone-systems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/clone-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"clouber\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/clouber\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloud-checkr\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloud-checkr\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloud-cruiser\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloud-cruiser\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloud-infrastructure-services\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloud-infrastructure-services\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudaccelinc1628754426775\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudaccelinc1628754426775\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudbees\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudbees\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudbees-enterprise-jenkins\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudbees-enterprise-jenkins\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudbolt-software\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudbolt-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudboltsoftware1639523402532\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudboltsoftware1639523402532\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudboost\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudboost\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudcover\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudcover\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudenablers-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudenablers-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudentity\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudentity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudera\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudera\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudflare\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudflare\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudhouse\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudhouse\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudinfo-4919088\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudinfo-4919088\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudknox\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudknox\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudlanes\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudlanes\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudlink\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudlink\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"CloudLinkEMC.SecureVM\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/CloudLinkEMC.SecureVM\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudmavensolutions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudmavensolutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudneeti\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudneeti\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudplan-gmbh\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudplan-gmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudsecurity\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudsecurity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudsoft\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudsoft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudwhizsolutions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudwhizsolutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudwrxsconsultingltd1631029702055\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudwrxsconsultingltd1631029702055\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"clustrix\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/clustrix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cncf-upstream\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cncf-upstream\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"codaintelligence1606495376525\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/codaintelligence1606495376525\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"codelathe\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/codelathe\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"codenvy\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/codenvy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"codetwo\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/codetwo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cognexcorporation1613759804979\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cognexcorporation1613759804979\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cognexcorporation1647410785838\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cognexcorporation1647410785838\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cognitive-scale\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cognitive-scale\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cognizant\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cognizant\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cognosys\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cognosys\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cohesity\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cohesity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cohesitydev1592001764720\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cohesitydev1592001764720\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cohesive\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cohesive\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"coin-sciences-ltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/coin-sciences-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"collabcloudlimited\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/collabcloudlimited\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"collibranv1619508098620\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/collibranv1619508098620\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"commscopeinc1632135151062\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/commscopeinc1632135151062\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"commvault\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/commvault\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"compellon\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/compellon\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"composable\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/composable\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"comunity\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/comunity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"concentrationheatandmomentumlimited1616154387047\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/concentrationheatandmomentumlimited1616154387047\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Confer\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Confer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"confluentinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/confluentinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"conflux\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/conflux\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"connecting-software\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/connecting-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"consensys\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/consensys\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"containeraider\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/containeraider\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"contiamogmbh\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/contiamogmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"controlcase\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/controlcase\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"controlplane\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/controlplane\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"controlplanecorporation1609967567639\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/controlplanecorporation1609967567639\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"convertigo\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/convertigo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"corda\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/corda\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"core-stack\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/core-stack\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"corent-technology-pvt\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/corent-technology-pvt\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"CoreOS\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/CoreOS\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"couchbase\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/couchbase\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cpanel\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cpanel\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"credativ\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/credativ\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cristiesoftwareltd1599488127561\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cristiesoftwareltd1599488127561\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"crunchyard\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/crunchyard\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"crunchyardltd1623835391104\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/crunchyardltd1623835391104\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cryptocom1585727786636\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cryptocom1585727786636\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cryptosense1605170011574\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cryptosense1605170011574\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cryptzone\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cryptzone\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ctm.bmc.com\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ctm.bmc.com\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ctrliqinc1648673227698\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ctrliqinc1648673227698\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cubebackup\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cubebackup\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cyberark\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cyberark\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cybernetica-as\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cybernetica-as\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cygnalabscorp1646065782458\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cygnalabscorp1646065782458\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cyxtera\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cyxtera\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"d4t4_solutions-1164305\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/d4t4_solutions-1164305\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"daceitdbasensetrafficpulse1579892024934\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/daceitdbasensetrafficpulse1579892024934\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"danielsol.AzureTools1\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/danielsol.AzureTools1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Dans.Windows.App\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Dans.Windows.App\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Dans3.Windows.App\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Dans3.Windows.App\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dataart\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dataart\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"databricks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/databricks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datacore\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datacore\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Datadog.Agent\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Datadog.Agent\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datadynamicsinc1581991927942\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datadynamicsinc1581991927942\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datagapsinc1585348463636\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datagapsinc1585348463636\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dataguiseinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dataguiseinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dataiku\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dataiku\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datalayer\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datalayer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datanomers1584919038987\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datanomers1584919038987\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datanova\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datanova\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datapredsa\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datapredsa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dataroadtechnologiesllc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dataroadtechnologiesllc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datasciencedojo1586563145740\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datasciencedojo1586563145740\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datastax\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datastax\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datasunrise\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datasunrise\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datavirtualitygmbh\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datavirtualitygmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datometry\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datometry\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dbs-h\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dbs-h\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ddn-whamcloud-5345716\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ddn-whamcloud-5345716\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Debian\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Debian\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dece-4446019\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dece-4446019\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"decisosalesbv\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/decisosalesbv\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"deepcognitioninc1593512758156\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/deepcognitioninc1593512758156\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"deepsiginc1581610210151\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/deepsiginc1581610210151\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"deepsurfacesecurityinc1632943333445\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/deepsurfacesecurityinc1632943333445\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dellemc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dellemc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dell_software\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dell_software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"delphix\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/delphix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"deltapathlimited1592886319362\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/deltapathlimited1592886319362\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"denodo\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/denodo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"denyall\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/denyall\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"derdack\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/derdack\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"deskpro1650546806675\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/deskpro1650546806675\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"desktopstudioag1580294245574\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/desktopstudioag1580294245574\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"devfactory\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/devfactory\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"device42inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/device42inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"deviceauthorityinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/deviceauthorityinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"devolutionsinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/devolutionsinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"devopsgroup-uk\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/devopsgroup-uk\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"df-portal-user\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/df-portal-user\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dgsecure\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dgsecure\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Dh2ico\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Dh2ico\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dh2icompany\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dh2icompany\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dhi\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dhi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"diagramics\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/diagramics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dicomsystems1584107398321\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dicomsystems1584107398321\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"diehl-metering\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/diehl-metering\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"digisitesystems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/digisitesystems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"digitaldefenseinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/digitaldefenseinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"digitaloffice\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/digitaloffice\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"digitamizeinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/digitamizeinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"digitate\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/digitate\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"diladele\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/diladele\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dimensionalmechanics-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dimensionalmechanics-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"diqa\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/diqa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"diyatech\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/diyatech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"diyotta\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/diyotta\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"djiindustrialincus\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/djiindustrialincus\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"docker\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/docker\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dome9\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dome9\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dorabot\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dorabot\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dremiocorporation\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dremiocorporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"drizti\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/drizti\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"drone\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/drone\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dsi\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dsi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dundas\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dundas\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dyadic_security\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dyadic_security\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dynatrace\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dynatrace\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dynatrace.ruxit\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dynatrace.ruxit\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"e-magicinc1587696283171\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/e-magicinc1587696283171\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"eastwind-networks-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/eastwind-networks-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"easysoftwaresro1593005637384\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/easysoftwaresro1593005637384\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ebesllc1637780200500\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ebesllc1637780200500\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ecessa\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ecessa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"edevtech\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/edevtech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"edgelesssystems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/edgelesssystems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"edgenetworks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/edgenetworks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"edispheresoftwareprivatelimited1606199736428\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/edispheresoftwareprivatelimited1606199736428\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"education4sight\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/education4sight\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"eecservicesfzllc1604836615706\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/eecservicesfzllc1604836615706\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"egnyte\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/egnyte\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"egress1589289169584\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/egress1589289169584\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"eikonasystemsgmbh1601729310063\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/eikonasystemsgmbh1601729310063\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Elastic\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Elastic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"elasticbox\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/elasticbox\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"elecard\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/elecard\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"electric-cloud\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/electric-cloud\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"elevateiot\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/elevateiot\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"eleven01\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/eleven01\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"elfiqnetworks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/elfiqnetworks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"emercoin\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/emercoin\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"energisme1601990637842\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/energisme1601990637842\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"enforongo\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/enforongo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"engineering-ingegneriainformatica-spa1626786889850\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/engineering-ingegneriainformatica-spa1626786889850\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"engysltd1624364546407\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/engysltd1624364546407\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"enterprise-ethereum-alliance\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/enterprise-ethereum-alliance\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"enterprisedb-corp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/enterprisedb-corp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"enterpriseworx-it\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/enterpriseworx-it\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"epicgames\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/epicgames\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"epicgamesinc1633466121071\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/epicgamesinc1633466121071\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"eproe\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/eproe\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"equalum\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/equalum\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"equilibrium\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/equilibrium\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"equinix\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/equinix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ergoninformatikag1581586464404\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ergoninformatikag1581586464404\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"esdenera\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/esdenera\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ESET\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ESET\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"esetresearch1579795941720\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/esetresearch1579795941720\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"esri\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/esri\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"esyon\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/esyon\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ethereum\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ethereum\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"eurolinuxspzoo1620639373013\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/eurolinuxspzoo1620639373013\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"eventtracker\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/eventtracker\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"evertzmicrosystemsltd1586877923009\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/evertzmicrosystemsltd1586877923009\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"evostream-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/evostream-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"exact\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/exact\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"exasol\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/exasol\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"excelero1608461290726\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/excelero1608461290726\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"exivity\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/exivity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"exonar\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/exonar\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"f5-networks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/f5-networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"falainapteltd1604661424876\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/falainapteltd1604661424876\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"falconstorsoftware\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/falconstorsoftware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fatalsecurity1604924013537\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fatalsecurity1604924013537\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fatpipe-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fatpipe-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fenestrae-1035066\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fenestrae-1035066\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fidesys\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fidesys\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"filecatalyst\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/filecatalyst\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"filemagellc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/filemagellc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fiorano\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fiorano\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fireeye\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fireeye\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"firehost\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/firehost\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"firemon\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/firemon\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"firstderivativesplc1596469572732\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/firstderivativesplc1596469572732\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"flashgrid-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/flashgrid-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"flexbby\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/flexbby\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"flexbby-5255860\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/flexbby-5255860\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"flexify-io\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/flexify-io\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"flexxibleit\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/flexxibleit\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"flowmon\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/flowmon\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"flynet\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/flynet\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"foghorn-systems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/foghorn-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"forcepoint-llc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/forcepoint-llc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"forescout\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/forescout\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"foreseetiab1613650409016\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/foreseetiab1613650409016\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"formpipesoftwareab\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/formpipesoftwareab\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"forscene\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/forscene\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fortanix\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fortanix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fortinet\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fortinet\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fortycloud\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fortycloud\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"forumsystems1599756394904\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/forumsystems1599756394904\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fotopiatechnologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fotopiatechnologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"foxiteuropegmbh1585901066320\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/foxiteuropegmbh1585901066320\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"franzinc1593030725310\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/franzinc1593030725310\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fujitsu_fast\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fujitsu_fast\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fw\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fw\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"g2kgroupgmbh-4821943\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/g2kgroupgmbh-4821943\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gapteq\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gapteq\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gatlingcorp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gatlingcorp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gbs\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gbs\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gemalto-safenet\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gemalto-safenet\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Gemalto.SafeNet.ProtectV\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Gemalto.SafeNet.ProtectV\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"genesistechnologyinc1604912285911\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/genesistechnologyinc1604912285911\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"genuagmbhdevid1\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/genuagmbhdevid1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"genua_gmbh\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/genua_gmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"genymobile\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/genymobile\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gigamon-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gigamon-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"GitHub\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/GitHub\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gitlab\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gitlab\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gitlabinc1586447921813\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gitlabinc1586447921813\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gladinet-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gladinet-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"glantoninc1591876792991\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/glantoninc1591876792991\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"globalidsinc1596800540598\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/globalidsinc1596800540598\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"globalscape\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/globalscape\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"globalsolutions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/globalsolutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gluwareinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gluwareinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"graphistry\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/graphistry\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"graphitegtc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/graphitegtc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"great-software-laboratory-private-limited\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/great-software-laboratory-private-limited\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"greensql\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/greensql\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"greycorbelsolutions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/greycorbelsolutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gridgain\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gridgain\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"guardicore\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/guardicore\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gxchainfoundationltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gxchainfoundationltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"h2o-ai\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/h2o-ai\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hackerbay\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hackerbay\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hackershub\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hackershub\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"haivision\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/haivision\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"haivisionsystemsinc1580780591922\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/haivisionsystemsinc1580780591922\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"haltdoscompvtltd1587136166019\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/haltdoscompvtltd1587136166019\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hammerspace\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hammerspace\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hanu\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hanu\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"haproxy-technologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/haproxy-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"harmanconnectedservicesinc1594928575643\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/harmanconnectedservicesinc1594928575643\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"harpaitalia\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/harpaitalia\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hashhub\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hashhub\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hcl-technologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hcl-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"heimdall-data\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/heimdall-data\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"help-systems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/help-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"helpyio\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/helpyio\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"heretechnologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/heretechnologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hewlett-packard\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hewlett-packard\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hillstone-networks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hillstone-networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hitachi-solutions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hitachi-solutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hitachivantara\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hitachivantara\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"holo-industrie40softwaregmbh1600957636008\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/holo-industrie40softwaregmbh1600957636008\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hortonworks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hortonworks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hpe\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hpe\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"HPE.Security.ApplicationDefender\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/HPE.Security.ApplicationDefender\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"huawei\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/huawei\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hubstor-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hubstor-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hush-hush\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hush-hush\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hvr\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hvr\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hyperglance\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hyperglance\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hypergrid\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hypergrid\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hystaxinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hystaxinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hytrust\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hytrust\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"i-exceed-technology\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/i-exceed-technology\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iaansys\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iaansys\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ibm\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ibm\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ibm-alliance-global-1560886\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ibm-alliance-global-1560886\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ibm-alliance-usa-ny-armonk-hq-ibmstorage-6201192\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ibm-alliance-usa-ny-armonk-hq-ibmstorage-6201192\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ibm-usa-ny-armonk-hq-6275750-ibmcloud-aiops\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ibm-usa-ny-armonk-hq-6275750-ibmcloud-aiops\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iboss\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iboss\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iconics\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iconics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iconsulting-spa\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iconsulting-spa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"icubeconsultancyservicesinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/icubeconsultancyservicesinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iguazio-5069960\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iguazio-5069960\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ikan\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ikan\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iliimbiliimveyazlmsistemlerisanvetica1617000555584\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iliimbiliimveyazlmsistemlerisanvetica1617000555584\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"illuminainc1586452220102\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/illuminainc1586452220102\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"image-technologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/image-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"imaginecommunications\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/imaginecommunications\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"imperva\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/imperva\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"impetustechnologiesinc1591959591877\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/impetustechnologiesinc1591959591877\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"imprivatainc1580479939967\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/imprivatainc1580479939967\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"incorta\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/incorta\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"incredibuild\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/incredibuild\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"indexima1594300233028\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/indexima1594300233028\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"industry-weapon\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/industry-weapon\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"industryweapon1587162781833\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/industryweapon1587162781833\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"inenprocesosyplataformasdetisderldecv1615482385424\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/inenprocesosyplataformasdetisderldecv1615482385424\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"inergybv1637141413454\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/inergybv1637141413454\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"infinitesoftwarecorporation1579223971125\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/infinitesoftwarecorporation1579223971125\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"infiotinc1614034091460\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/infiotinc1614034091460\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"influxdata\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/influxdata\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"infoblox\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/infoblox\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"infogix\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/infogix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"infolibrarian\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/infolibrarian\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"informatica\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/informatica\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"informationbuilders\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/informationbuilders\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"informationtechnologies_ltd_1179601\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/informationtechnologies_ltd_1179601\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"infotecsinternetsecuritysoftwaregmbh1636129257584\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/infotecsinternetsecuritysoftwaregmbh1636129257584\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"infront-consulting-group-ltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/infront-consulting-group-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"infscapeughaftungsbeschrnkt\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/infscapeughaftungsbeschrnkt\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ingenieurstudiohollaus1579587745438\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ingenieurstudiohollaus1579587745438\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ingrammicro\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ingrammicro\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"innomindssoftware\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/innomindssoftware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"innosepgmbh1618331344164\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/innosepgmbh1618331344164\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"innovatorartificialtechsrl1619180685551\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/innovatorartificialtechsrl1619180685551\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"innovtech\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/innovtech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"instight-technology\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/instight-technology\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"integration-objects\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/integration-objects\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"intel-bigdl\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/intel-bigdl\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"intel-fpga\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/intel-fpga\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"intellicus-technologies-pvt-ltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/intellicus-technologies-pvt-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"intelligent-plant-ltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/intelligent-plant-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"intel_corporation\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/intel_corporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"internationaltrustmachinescorporation1582190033865\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/internationaltrustmachinescorporation1582190033865\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"internet20inc1635882446190\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/internet20inc1635882446190\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"intersystems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/intersystems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"intigua\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/intigua\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"intigua1638692632641\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/intigua1638692632641\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"introspecioltd1629872641188\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/introspecioltd1629872641188\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iofabric\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iofabric\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ipinfusion1590066770520\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ipinfusion1590066770520\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ipswitch\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ipswitch\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iqsol\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iqsol\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iquate\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iquate\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iquest\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iquest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"irion\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/irion\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ishlangu-load-balancer-adc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ishlangu-load-balancer-adc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"issp-corporation\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/issp-corporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"isvtestukbigcat\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/isvtestukbigcat\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"isvtestuklegacy\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/isvtestuklegacy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"it4bizdoo\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/it4bizdoo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"itelios\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/itelios\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"itrsgroupltd1620310702149\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/itrsgroupltd1620310702149\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ivanti-inc-pcs\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ivanti-inc-pcs\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ivanti-nzta\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ivanti-nzta\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ivix1595238749040\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ivix1595238749040\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iwnamespace\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iwnamespace\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"izenda\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/izenda\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"jamcracker\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/jamcracker\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"javlinltd1579185328273\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/javlinltd1579185328273\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"jedox\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/jedox\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"jelastic\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/jelastic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"jetnexus\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/jetnexus\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"jetware-srl\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/jetware-srl\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"jfrog\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/jfrog\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"jm-technology-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/jm-technology-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"jogetinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/jogetinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"johnsnowlabsinc1646051154808\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/johnsnowlabsinc1646051154808\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"juniper-networks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/juniper-networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"justanalytics\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/justanalytics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kaazing\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kaazing\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kadenallc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kadenallc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kali-linux\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kali-linux\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kalkitech\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kalkitech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kaminarioinc1588672951794\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kaminarioinc1588672951794\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Kaspersky.Lab\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Kaspersky.Lab\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"KasperskyLab.SecurityAgent\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/KasperskyLab.SecurityAgent\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kaspersky_lab\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kaspersky_lab\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kazendi\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kazendi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kelverion\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kelverion\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kemptech\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kemptech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kepion\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kepion\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"KevlarExtensions.M365Security.SecureOS\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/KevlarExtensions.M365Security.SecureOS\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"KevlarExtensions.M365SecurityHostIDS\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/KevlarExtensions.M365SecurityHostIDS\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"KevlarExtensions.M365SecurityInventory\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/KevlarExtensions.M365SecurityInventory\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"KevlarExtensions.M365SecurityInventory.NameChangeTest\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/KevlarExtensions.M365SecurityInventory.NameChangeTest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"KevlarExtensions.M365SecurityODL\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/KevlarExtensions.M365SecurityODL\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"KevlarExtensions.M365SecurityTLSExtension\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/KevlarExtensions.M365SecurityTLSExtension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kinetica\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kinetica\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kinvolk\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kinvolk\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"knime\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/knime\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kobalt\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kobalt\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kognillc1600118221163\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kognillc1600118221163\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kognitivsparkinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kognitivsparkinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"konginc1581527938760\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/konginc1581527938760\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"konsys-ltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/konsys-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"koverseinc1588716263110\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/koverseinc1588716263110\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kryonsystems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kryonsystems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"krypc-technologies-pvt-ltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/krypc-technologies-pvt-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kyligence\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kyligence\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kyvos-insights-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kyvos-insights-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lab3solutions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lab3solutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lancom-systems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lancom-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lansa\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lansa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lastline\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lastline\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"launchnodesltd1644561451121\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/launchnodesltd1644561451121\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"leap-orbit\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/leap-orbit\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lenovosoftware1604394104439\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lenovosoftware1604394104439\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"leostream-corporation\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/leostream-corporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lepide-software\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lepide-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"levacloudllc1602151818089\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/levacloudllc1602151818089\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"libelleag\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/libelleag\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"liberatii\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/liberatii\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"libraesva\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/libraesva\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"liebsoft\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/liebsoft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lightning-analyticsinc1582000647396\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lightning-analyticsinc1582000647396\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"linuxbasedsystemsdesignltd1580878904727\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/linuxbasedsystemsdesignltd1580878904727\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"liquid-files\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/liquid-files\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"liquidware\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/liquidware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"literatu\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/literatu\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"litespeedtechnologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/litespeedtechnologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"litespeed_technologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/litespeed_technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"litionenergiegmbh1580128829115\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/litionenergiegmbh1580128829115\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"litmusautomation1582760223280\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/litmusautomation1582760223280\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"llcitpro\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/llcitpro\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lnw-softgmbh\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lnw-softgmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"loadbalancer\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/loadbalancer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"logicflowag1638535407949\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/logicflowag1638535407949\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"logsign\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/logsign\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"logstarecorp1635838645101\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/logstarecorp1635838645101\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"logtrust\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/logtrust\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"logzio\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/logzio\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"looker\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/looker\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lotus_beta_analytics\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lotus_beta_analytics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lti-lt-infotech\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lti-lt-infotech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"luminate-security\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/luminate-security\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"M365Security.KevlarExtensions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/M365Security.KevlarExtensions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"M365SecurityInventory\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/M365SecurityInventory\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"machinesense\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/machinesense\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"madhavajay1632269232059\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/madhavajay1632269232059\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"maidenhead-bridge\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/maidenhead-bridge\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"manageengine\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/manageengine\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mapd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mapd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"maplelabsinc1623932715330\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/maplelabsinc1623932715330\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mapr-technologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mapr-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"marand\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/marand\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"marketplace-rdfe-caps\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/marketplace-rdfe-caps\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"marklogic\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/marklogic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"massiveanalytic-\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/massiveanalytic-\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mathworks-deployment\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mathworks-deployment\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mathworks-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mathworks-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"matillion\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/matillion\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mavinglobal\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mavinglobal\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"McAfee.EndpointSecurity\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/McAfee.EndpointSecurity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"McAfee.EndpointSecurity.test3\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/McAfee.EndpointSecurity.test3\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"meanio\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/meanio\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"media3-adobe\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/media3-adobe\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"media3-technologies-llc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/media3-technologies-llc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mediatekinc1586141563888\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mediatekinc1586141563888\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mendix\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mendix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"merlynnintelligencetechnologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/merlynnintelligencetechnologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"meshifyappinc1622759451429\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/meshifyappinc1622759451429\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"messagesolution\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/messagesolution\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"metaswitch\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/metaswitch\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mettainnovations-4900054\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mettainnovations-4900054\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mfe_azure\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mfe_azure\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mfiles\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mfiles\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mico\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mico\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"micro-focus\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/micro-focus\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microlinkpcukltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microlinkpcukltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microolap\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microolap\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsecpteltd1634010681688\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsecpteltd1634010681688\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-ads\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-ads\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-agci-gaming\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-agci-gaming\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-aks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-aks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-avere\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-avere\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-azure-batch\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-azure-batch\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-azure-compute\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-azure-compute\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-azure-hdinsight\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-azure-hdinsight\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-crypto\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-crypto\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-dsvm\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-dsvm\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-hyperv\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-hyperv\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-minecraft\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-minecraft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AdminCenter\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AdminCenter\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AKS\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AKS\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.ActiveDirectory\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.ActiveDirectory\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.ActiveDirectory.LinuxSSH\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.ActiveDirectory.LinuxSSH\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Applications\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Applications\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Automation.HybridWorker\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Automation.HybridWorker\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Automation.HybridWorker.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Automation.HybridWorker.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.AzureDefenderForServers\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.AzureDefenderForServers\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.AzureDefenderForSQL\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.AzureDefenderForSQL\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.AzureHybridBenefit\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.AzureHybridBenefit\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Backup.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Backup.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Backup.Test.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Backup.Test.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Batch\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Batch\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.ChangeTracking\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.ChangeTracking\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.ChangeTracking.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.ChangeTracking.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.ChangeTrackingAndInventory\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.ChangeTrackingAndInventory\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Chaos\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Chaos\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Compute.Security\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Compute.Security\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.ContainerUpstream\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.ContainerUpstream\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.DefenderForServers.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.DefenderForServers.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.DefenderForServers.Test2\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.DefenderForServers.Test2\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Diagnostics\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Diagnostics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Diagnostics.Build.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Diagnostics.Build.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Diagnostics.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Diagnostics.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test012be407-61ea-4e45-a2c3-71a45999ca21-20191228083800\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test01971384-3044-413b-8b1c-33b5d461bf23-20200107051823\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test0225ec7d-b36c-4ac8-82f0-aa4fafaf10a9-20200111051346\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test025e16a1-328d-45a2-b7e3-71f7e4cde046-20191229064028\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test02d1f941-5607-4757-8df7-fd8c5631ab45-20200103083810\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test039abd7f-360c-42a1-ad5d-77527c519286-20191002233412\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test04a0f157-c6fb-4595-b6ca-6c82a2338063-20200108101451\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test0737f33e-63e0-4ba9-b04b-b93a1de4e997-20200106083639\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test0a44d7be-63fa-418d-a7b6-89a44dd21894-20200107052935\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test0d01b487-7f79-4d87-b330-5c025068db45-20191004190331\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test0d643748-e6fe-41ad-b4d3-89a289a0cee0-20191003055620\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test0df83c51-5bb9-43f8-8ae9-bc896ea64f78-20200110220221\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test0f02c246-7e65-4010-9367-ca4530c3897e-20191004190223\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test157494ec-e788-43b0-8d26-a17e39ee07cc-20191002011945\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test1661d154-b623-4507-8a56-3a89812c456c-20200111083940\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test17bbd860-f21d-40ab-9026-16e05f2907f0-20200106083451\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test194e2333-13cd-43e3-b0a4-c8cdcf1a3600-20200110211106\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test1bc26b19-b8d8-41f9-a26d-818f277bdf93-20200101113139\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test1c840053-9213-4f2a-8f2e-9bf2297908bd-20200108101424\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test1d7bba72-69f1-43cd-a38c-41ce0b5f4bae-20200109050041\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test1f7a8078-50e7-4a3a-91eb-d178fd4c403b-20191002233353\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test1fef1fdc-57ba-46a8-a879-475ba7d45a7a-20200106083509\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test21332f15-f78d-4d31-afac-79b9dc989432-20191231175840\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test22f10717-6939-4003-a9ce-38effd8b77d6-20191007191355\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test2334e6e3-bb72-4241-a36f-c2429d69bc0b-20200106050834\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test24fa9eb5-1c59-4425-b61c-30fd638c2a45-20191003203802\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test2521a545-ed61-4a15-bed1-aba7ce1d81ee-20200106050804\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test25c6fe61-1282-43c2-867b-b5039219989c-20200105081851\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test27515c8c-6773-4f92-afb0-35691cc6e3b6-20200103083821\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test28012680-48e7-4903-877f-2f29464e63d5-20191229033424\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test29a7a529-d293-4728-9d7f-257ed996e64f-20200108081759\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test2a5f2d2c-b8e3-46c2-850d-a1641c024fe7-20200107084228\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test2ce856af-ab17-48f2-ba3e-bcd9af091061-20200110013246\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test2e012e83-6361-4365-963f-6ced8a08e91c-20200110211254\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test2ecf67b2-fb63-4461-b6a6-7026c4fb1168-20191002214026\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test2ede6564-c7cc-44cb-a1a8-902505c9829d-20191003020742\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test2f4ebc17-e27e-48d9-9cc3-ff933c21884e-20200106092410\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test349ee02c-af9b-4663-a963-823b40eefed8-20200108083612\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test34cf6b13-b78e-478b-b596-8b661629371d-20191007195455\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test36cc5b60-2b23-4a04-bf95-f7865e1141cf-20200110085718\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3712fca9-5cdd-4609-be69-b02aedc5c55c-20200107084115\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3772d042-92e2-4bcb-99b7-8a6a119cc088-20191231182808\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test37a6dd64-d44d-465e-85bc-3bc38be90350-20200104083535\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test381074d5-7156-472b-801a-b35f8fef4cc6-20200105050612\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3877a44d-4c48-40db-80eb-227272d5acd6-20200110103540\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test38ecd28e-7018-4672-840c-3044a5e7a6b5-20200111084208\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test395a0b49-442a-450c-8a1f-65b0aa3bcf47-20200105083839\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3971b300-edff-44a8-b61b-7f9b7460a8d6-20191003002234\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3adeec20-7458-4b3d-af26-0b6bc2aae3eb-20200103083751\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3b20dd96-f3e4-4798-998d-8c433c2449a7-20200108083635\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3ce2fd4a-8b5a-4c7e-b08d-3e48fc0f45e7-20200104083825\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3d499ca7-cc8d-41cc-a6dc-ffb1a4ac4942-20200107053004\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3db7240e-5e42-4d6d-b024-cc9fce3c828b-20200105083520\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3f6b7341-635f-48d5-a36d-be5dfe3002c4-20200105050937\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test3fc26934-ede2-4482-ad5e-f66f6135d4a6-20191228055558\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test406d077c-6017-4062-bc96-f809147a2331-20200106050748\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test4302336c-e039-4e70-bcb6-9275f6089e4a-20200108144821\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test453a087e-8435-46db-970a-4ee633cc4c4a-20200102083458\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test46b73afa-2259-4aff-81e1-a58bf24b59aa-20191229033459\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test4a3399ee-82ea-46aa-9e3a-5434b588e3b6-20191228013518\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test4eb7a185-527b-4b9f-93a8-7f1cec9d062e-20191231151207\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test520a0915-f9f0-4da4-9fa1-1b74fc1470aa-20200102083505\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test5397960f-023b-4979-9a8b-800d049045a4-20191007195417\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test55a36387-8a3f-4159-9884-29b97539a253-20200109080443\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test5645f186-4ee5-4209-af37-423660e3318c-20191231175947\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test58b4461d-4d2d-4395-b6d2-ab83d4d8c62f-20200111001002\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test5b0bf447-d98d-429d-8334-c032d197c743-20191003203846\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test5bc90367-1ea2-400b-a40c-321081bae3f3-20200108145035\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test5bd0562f-e939-456f-a6ee-c848d1aba616-20200101151641\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test5e4efe90-916c-4c96-802c-1508a5b6da78-20191231151150\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test5f8f0c10-cc3c-45ec-a068-fb1c7edfa0d9-20200101145958\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test60a000b7-286c-4b2b-9137-bbc088736419-20200108144920\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test6192a01b-ba47-4d08-904a-71647a49a112-20191008041625\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test62835538-89c6-4f66-9034-f7a4b176c615-20191007234245\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test651e4ad2-ee4a-462e-a506-b56b1969f5d0-20200110230749\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test691d94e5-c40c-4568-94b0-09b08aea42b1-20200106050808\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test6aa3643c-011a-4180-877f-cad955a8e664-20191007234642\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test6cfb469b-8478-468f-9bb5-691affd32abb-20200107083803\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test6d36b6b2-7956-4e62-91c1-c33792fd4bb1-20200110123203\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test6e28168e-a9c8-4c0a-8b40-60c2a1502d43-20200108052802\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test6eb763ac-7fbe-4e44-bee7-aad035ee2a7d-20200110084429\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test6efec253-f625-46f0-9d74-324f69e963d8-20200107070514\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test70fa7e4c-3122-4ff7-aec6-fe75ab660a01-20200108105900\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test710a5fbf-06c7-46ac-b96d-a29d2586422f-20200108083639\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test71d72489-67c6-45e2-b1e6-a19546efc823-20200105112903\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test721fccf1-2b3e-44b6-908f-51b910e88b09-20200111104931\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test742d0189-9e41-4f1b-8ad3-31c05d34903b-20200111103247\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7836a97c-f56e-48d0-8b5d-61e79aeb3226-20200111071656\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test78666b2e-25c8-4a48-931a-3131a0317d73-20191002194352\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test79f13508-fcbd-47b9-988f-1c21ef5e7f2e-20191002015429\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test79fb90ce-4691-4212-99a7-6e4069bd5984-20191007234256\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7a8cf687-6a21-4181-ba98-902fee717bd3-20200104103216\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7aabf813-6644-483a-b9e0-ba6f8973ba1f-20191002232822\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7c96c10a-0c8f-4ab0-83fd-1ad66a362e33-20191229033458\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7e79b6ff-2559-44fe-b3ba-afaa68d63636-20200108112116\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7ea372f7-ea7e-4b9e-bbad-4f35c1567aa2-20200108052736\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7fac3d04-98a5-4fc4-904e-9ea3b86eadc2-20200106050751\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7fe20dd6-9ed9-4126-bb1d-031c01ac4550-20200101114504\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test7ff974d9-c841-4249-b05b-bbf663cb4605-20200106084104\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test815bd4d5-fc24-4a47-be20-063c4809902c-20200109050508\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test817654d0-2109-4d95-9284-8c8a9d960d08-20200108053758\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test821ca3b6-dd05-4e80-b3d8-74ba03b2609b-20191231151151\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test8285dc3e-637d-4d46-9695-adc39cbe7d2f-20200108144457\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test828aae03-9239-4938-a303-c23c42311878-20200102083419\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test84afd814-5098-49ab-af99-e50350b5898b-20200110211134\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test85b08563-b15f-4202-a0bc-f2bc2df2c71a-20200107053335\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test88aac268-c087-4481-b78e-99b920784a33-20200101084853\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test88dbd442-a8cc-4874-81a0-d3192c61df62-20191001224544\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test894dfb75-a00f-4f0c-894c-cae1c9846ad3-20200105051803\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test8d09bf4d-ee63-4ab1-a986-a4b802418403-20200111051447\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test8d4d652b-4f05-4e99-93dd-78b9a36b5c78-20191003203755\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test8de64739-43d8-4f84-af65-fdb3d0885288-20200108053543\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test8e324c65-a51d-4eeb-9ec8-d5f8662dc041-20191228165107\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test8e564580-8e53-4300-85f1-bf7f31dd37ff-20200107013348\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test8f458ca7-8898-4d58-b93d-bfb0c3da028c-20200109050310\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test901cd6ca-5565-4552-a3de-d204d01935c0-20200108083706\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test907b39e5-4008-4b55-93a0-18e9697b9cf3-20200108053817\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test90c2be7c-d7ec-4abf-9fad-fef90fc3ef4d-20191004022234\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test922db678-6ee8-43d5-86ff-6a86e132d332-20200107085231\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test93b88aec-5277-4b1b-910c-7008e972ce91-20200107013304\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test95a9104b-6cba-42d8-82ff-cc37e5ac44db-20200108081723\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test96da1605-19e0-46eb-9ce0-53e840f5e2cb-20200101111729\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test996066b2-7d29-400f-929b-e343a21046f7-20191231151212\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test99663fff-ed21-4a91-9687-1a6da2abb033-20200106084508\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Test9eb5efa5-c3c1-4c13-80a6-11f5eba67372-20200108144852\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testa3791896-b1fc-491e-ba0d-aefcd8d9e52a-20200105083503\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testa37ff709-a078-45a0-8187-41733df8e101-20200109050003\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testa4c5fe4e-936e-4be1-a612-a331aff54a8c-20200111105055\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testa59bce1d-e32c-423d-a86e-945d4aeb98b4-20200107051821\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testa604c059-8279-4f4d-a354-eec27222a06c-20200111051514\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testa71fefb1-0d9c-4fb3-8d3d-5dcd12d72b77-20200103103221\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testa748013d-c5a6-44f9-88eb-43167207c742-20200111051402\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testaab67022-4f2b-420d-a06a-2c4045110cdf-20191229033144\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testacab9541-280f-4491-9f49-ac57653f0a07-20200105083839\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testad298437-0349-4cc7-88a9-d8aabcba9df1-20191002233431\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testadd68286-f9e0-4ab1-a526-d8f3cf0f054e-20200105084128\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testade4c52b-18f5-4b67-8e93-945358ce4f7d-20191007234259\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testae421c1d-0211-4ef2-b372-564ce8ad484a-20200110104035\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testafbbd8bf-aec5-48bf-8fea-73fa15ccc315-20191001224727\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testb15148bf-78d2-42d4-ad08-b3ad8fb4b122-20200101084759\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testb4237708-3688-40ea-85a2-275c05f4d100-20191228083519\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testb799a18f-be45-4c5c-8438-163ac2e1f1e7-20191004190529\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testb7cee88a-e5ac-4af4-99c8-7247020b00c3-20200105051201\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testb7df0d9a-27c0-4ca5-b692-08dd90387b98-20200111083443\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testbbf6bf32-4bd0-4381-b8f7-2658f585df4d-20191003203846\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testbeea1376-166a-4b1a-8923-c907cc9737d9-20200107013336\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testbf9154e9-6166-48c2-86fe-1f331be606d7-20200107051823\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc0d7c3c5-23b8-489c-a5e0-ae87c681b696-20200101083539\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc193f31a-5186-4e93-84f6-0e4ab87b73c1-20200107052937\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc1c7e8dc-fa8c-47d9-8305-de6d1451b939-20200101085248\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc1d0c917-e2ae-430c-a2ca-383fb0fda046-20191007235839\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc23a3fbb-6e95-4c0d-94fc-c8ab14dddf1c-20191231151117\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc2697630-6247-411a-94b3-c2974ad8cbee-20191007195417\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc466b80f-670f-4383-89b8-44e0d509fa20-20191002000516\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc5c8d9bd-75fa-4db3-9f34-5d7b7098584c-20191003203851\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc8b6d14b-a5db-48e0-bfad-a2818d432bea-20200104083443\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testc933efa8-c553-4b93-884f-b7221d9ca789-20191228083750\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testcbe8ab80-46ef-49b1-a7bb-4e3d6e50e49f-20200104050811\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testccc0b5e6-9b0d-451a-8ac4-6f4af293b913-20200106092645\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testcec64786-04b1-487c-80ec-050da646fb1c-20191005123412\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testd104a52f-eba2-401d-8e7f-a841c90f7712-20191228083553\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testd724cea4-0d3c-4539-b2ff-be08fb23a67e-20200107083714\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testd8e60bac-27ff-4fba-90b8-732c9c5ff91c-20191228083751\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testd99db4a5-7683-4584-89ad-fefd711de284-20191004190210\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testd9b4309a-67bc-4cd8-ac47-094cb20ca6aa-20200101090202\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testda3320e0-28f2-4146-a002-e06296362711-20191004190115\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testda714121-3240-4253-90c3-48c43f115c90-20200102083419\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testdb357558-60b4-4ee3-9ec3-ba22c5d827fb-20191004020617\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testdc7230e9-df6d-4edd-a57c-ef7e0432c463-20191002011345\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testdccb59de-436f-4935-bed6-2e677dcaf36a-20200109111802\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testde985b23-9333-4f6e-a5e8-82025a38b2af-20200102083510\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Teste271da3e-cbcb-4ee7-8770-f297f414451f-20191003015540\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Teste4070edd-aec0-455d-8a79-aecdb7170b6d-20191007234642\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Teste42f351a-4da0-4f0d-93e9-ef1d98e06659-20200108083633\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Teste66ca23c-f4bf-4eb3-8418-139364d19e7d-20200107062643\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Teste78b1ab2-1380-48ab-9923-0276cdb7198b-20191001224742\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Teste8607e14-b4f8-472a-bd5b-893b8d9612e6-20200112045941\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Teste980b80e-3add-42c0-bc98-a84020b2d128-20200108101640\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Tested79dba9-2d38-4ea9-a01c-56e94b30ca7a-20191007195447\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testee9dcf5f-f7c4-4192-a8f4-28e9bc7d0f7c-20191001225005\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testefbb340a-b68b-4200-872b-d05e7d29f92d-20191007195432\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testf1fc0559-6740-48dd-9501-2b933c731d52-20200103083458\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testf41dfc97-bb51-4fba-86ca-a6f2695c415a-20200107050834\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testf5784447-83ed-4c00-8764-ea0f932aafa2-20200106085748\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testf6128ef6-c13c-420e-8088-0710888ce88b-20200109050003\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testf863ab2c-ada9-4646-84c7-1f83a82375d7-20191229033226\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testfac552a7-418f-4baa-8f51-d199ceff5c68-20200103050817\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testfb7be054-5c15-494f-822c-b64f9a36e2f3-20200105051753\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\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/southeastasia/Publishers/Microsoft.Azure.Extensions.Testfc5c7585-6c9a-4aa4-a7c4-1223a94e00c7-20200104083552\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.FileServer.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.FileServer.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.FleetDiagnostics\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.FleetDiagnostics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.FleetDiagnostics.Dev\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.FleetDiagnostics.Dev\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Geneva\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Geneva\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.KeyVault\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.KeyVault\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.KeyVault.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.KeyVault.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.LabServices\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.LabServices\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.LabServices.test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.LabServices.test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.Agent\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.Agent\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.Dev\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.Dev\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.Dev.INT\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.Dev.INT\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.Dev.SCALE\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.Dev.SCALE\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.Dev.TEST\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.Dev.TEST\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.GuestHealth\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.GuestHealth\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.DEV\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.DEV\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.INT\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.INT\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.SCALE\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.SCALE\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.TEST\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.TEST\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.INT.Dev\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.INT.Dev\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.SCALE.Dev\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.SCALE.Dev\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.TEST.Dev\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.VirtualMachines.TEST.Dev\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.WorkloadInsights.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.WorkloadInsights.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.WorkloadInsightsTest.newnamespace\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.WorkloadInsightsTest.newnamespace\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.Workloads\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.Workloads\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitor.Workloads.Dev\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitor.Workloads.Dev\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitoring.DependencyAgent\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitoring.DependencyAgent\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Monitoring.DependencyAgent.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Monitoring.DependencyAgent.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Networking.DNS\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Networking.DNS\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Networking.SDN\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Networking.SDN\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.NetworkWatcher\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.NetworkWatcher\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.NetworkWatcher.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.NetworkWatcher.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.OpenSSH\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.OpenSSH\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Performance.Diagnostics\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Performance.Diagnostics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Performance.Diagnostics.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Performance.Diagnostics.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.RecoveryServices\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.RecoveryServices.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices.SiteRecovery\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.RecoveryServices.SiteRecovery\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices.SiteRecovery2\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.RecoveryServices.SiteRecovery2\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices.WorkloadBackup\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.RecoveryServices.WorkloadBackup\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices.WorkloadBackup.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.RecoveryServices.WorkloadBackup.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.AntimalwareSignature\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.AntimalwareSignature\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.AntimalwareSignature.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.AntimalwareSignature.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.Dsms\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.Dsms\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.Dsms.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.Dsms.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.LinuxAttestation\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.LinuxAttestation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.LinuxTestAttestation\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.LinuxTestAttestation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.Monitoring\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.Monitoring\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.Monitoring.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.Monitoring.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.Monitoring.Testing\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.Monitoring.Testing\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.TestWindowsAttestation\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.TestWindowsAttestation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.WindowsAttestation\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.WindowsAttestation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.WinTestAttestation\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.WinTestAttestation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Sentinel.DnsExtension.Dev\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Sentinel.DnsExtension.Dev\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.ServiceFabric.MC\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.ServiceFabric.MC\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.ServiceFabric.MC.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.ServiceFabric.MC.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.SiteRecovery.Stage\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.SiteRecovery.Stage\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.SiteRecovery.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.SiteRecovery.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.SiteRecovery2.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.SiteRecovery2.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Test.Identity\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Test.Identity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WindowsFabric.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WindowsFabric.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.ReleasePipeTest\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.ReleasePipeTest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.ReleasePipeTest.INT\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.ReleasePipeTest.INT\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.ReleasePipeTest.TEST\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.ReleasePipeTest.TEST\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test1\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test2\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test2\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test3\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test3\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test4\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test4\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test5\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test5\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test5.INT\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test5.INT\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test5.TEST\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test5.TEST\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.VincentTest\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.VincentTest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.VincentTest2\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.VincentTest2\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.VincentTest3\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.VincentTest3\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.VincentTest4\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Linux.VincentTest4\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.TestTest\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.TestTest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.TestTest.INT\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.TestTest.INT\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.TestTest.TEST\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.TestTest.TEST\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Windows.ReleasePipeTest.INT\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Windows.ReleasePipeTest.INT\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Windows.ReleasePipeTest.TEST\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WorkloadInsights.Windows.ReleasePipeTest.TEST\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoring\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoring.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoringTest\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoringTest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureData\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureData\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureData.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureData.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.Canary\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights.Canary\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.Corp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights.Corp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.Linux.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights.Linux.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.LinuxTest\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights.LinuxTest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.Meya0206\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights.Meya0206\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.MeyaCorp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights.MeyaCorp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.Testing\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureMonitor.WorkloadInsights.Testing\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureSecurity.JITAccess\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureSecurity.JITAccess\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.CloudBackup.Workload.Extension\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.CloudBackup.Workload.Extension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.CloudBackup.Workload.Extension.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.CloudBackup.Workload.Extension.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Compute\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Compute.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Compute.TestSar\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute.TestSar\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.CPlat.Core\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.CPlat.Core\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.CPlat.Core.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.CPlat.Core.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Dcsswe.Extensions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Dcsswe.Extensions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.EnterpriseCloud.Monitoring\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.EnterpriseCloud.Monitoring.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.EnterpriseCloud.Monitoring.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Golive.Extensions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Golive.Extensions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.GuestConfig.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.GuestConfig.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.GuestConfiguration\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.GuestConfiguration\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.GuestConfiguration.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.GuestConfiguration.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.GuestConfiguration.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.GuestConfiguration.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.HpcCompute\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.HpcCompute\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.HpcCompute.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.HpcCompute.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.HpcPack\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.HpcPack\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Interceptor\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Interceptor\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.M365\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.M365\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.M365SecurityConfiguration.Kevlar.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.M365SecurityConfiguration.Kevlar.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.ManagedIdentity\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.ManagedIdentity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.ManagedServices\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.ManagedServices\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.ManagedServices.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.ManagedServices.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.MonitoringAgent.Extension\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.MonitoringAgent.Extension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Network\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Network\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.OSTCExtensions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.OSTCExtensions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.OSTCExtensions.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.OSTCExtensions.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.OSTCExtensions.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.OSTCExtensions.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.OSTCExtensions.Testing\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.OSTCExtensions.Testing\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Powershell\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Powershell\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Powershell.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Powershell.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Powershell.Test01\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Powershell.Test01\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.SecurityManagement.Kevlar\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.SecurityManagement.Kevlar\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Sentinel.AzureMonitorAgentExtensions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Sentinel.AzureMonitorAgentExtensions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.SoftwareUpdateManagement\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.SoftwareUpdateManagement\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.SoftwareUpdateManagement.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.SoftwareUpdateManagement.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.SqlServer.Managability.IaaS.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.SqlServer.Managability.IaaS.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.SqlServer.Management\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.SqlServer.Management\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.SqlServer.Management.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.SqlServer.Management.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.SystemCenter\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.SystemCenter\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.SystemCenter.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.SystemCenter.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Test.Azure.Workloads\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Test.Azure.Workloads\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.TestSqlServer.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.TestSqlServer.Edp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.ETWTraceListenerService\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.Azure.ETWTraceListenerService\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.RemoteDebug\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.Azure.RemoteDebug\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.RemoteDebug.Json\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.Azure.RemoteDebug.Json\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.ServiceProfiler\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.ServiceProfiler\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.Services\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.Services\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.WindowsAzure.DevTest\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.WindowsAzure.DevTest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.WindowsAzure.DevTest.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.WindowsAzure.DevTest.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.WindowsAzure.RemoteDebug\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.WindowsAzure.RemoteDebug\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.WindowsAzure.Test.RemoteDebug\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.WindowsAzure.Test.RemoteDebug\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Windows.Azure.Extensions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Windows.Azure.Extensions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Windows.AzureRemoteApp.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Windows.AzureRemoteApp.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Windows.RemoteDesktop\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Windows.RemoteDesktop\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.WindowsAdminCenter\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.WindowsAdminCenter\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.WindowsAdminCenter.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.WindowsAdminCenter.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.WindowsAzure.Compute\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.WindowsAzure.Compute\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.WindowsAzure.Compute.test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.WindowsAzure.Compute.test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.WVD\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.WVD\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoftagciuk\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoftagciuk\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoftazurecituswarp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoftazurecituswarp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftAzureSiteRecovery\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftAzureSiteRecovery\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftBizTalkServer\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftBizTalkServer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftCBLMariner\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftCBLMariner\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoftcmotest\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoftcmotest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoftcorporation1602274591143\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoftcorporation1602274591143\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoftcorporation1620407702632\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoftcorporation1620407702632\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftDynamicsAX\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftDynamicsAX\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftDynamicsGP\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftDynamicsGP\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftDynamicsNAV\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftDynamicsNAV\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoftfarmbeats\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoftfarmbeats\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftHybridCloudStorage\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftHybridCloudStorage\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftOSTC\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftOSTC\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftPowerBI\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftPowerBI\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftRServer\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftRServer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftSharePoint\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftSharePoint\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftSQLServer\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftSQLServer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftTestLinuxPPS\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftTestLinuxPPS\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftVisualStudio\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftVisualStudio\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftWindowsDesktop\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsDesktop\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftWindowsServer\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsServer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftWindowsServerHPCPack\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsServerHPCPack\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft_iot_edge\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft_iot_edge\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft_javaeeonazure_test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft_javaeeonazure_test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microstrategy\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microstrategy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"midasolutions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/midasolutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"middleware\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/middleware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"midfin\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/midfin\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"midvision\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/midvision\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mihupcommunicationspvtltd1599046998010\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mihupcommunicationspvtltd1599046998010\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mindcti\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mindcti\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"minio\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/minio\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"miraclelinux\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/miraclelinux\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"miracl_linux\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/miracl_linux\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"miri-infotech-pvt-ltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/miri-infotech-pvt-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mistio1601460379393\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mistio1601460379393\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mobilab\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mobilab\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"modern-systems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/modern-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"modexblockchaindatabase\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/modexblockchaindatabase\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"monetdbsolutions1611751313758\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/monetdbsolutions1611751313758\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"monitorapp1579029852605\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/monitorapp1579029852605\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"monitorcomputersystemsltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/monitorcomputersystemsltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"moogsoft\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/moogsoft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"morpheus-data\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/morpheus-data\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"moviemasher\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/moviemasher\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mriisoftllc1579457820427\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mriisoftllc1579457820427\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"msopentech\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/msopentech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mtnfog\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mtnfog\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"multima1643619641681\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/multima1643619641681\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"multisoft-ab\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/multisoft-ab\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mvp-systems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mvp-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mwg_azure\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mwg_azure\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mxhero\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mxhero\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"my-com\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/my-com\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"myarchinc1614657280935\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/myarchinc1614657280935\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"narrativescience\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/narrativescience\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nasuni\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nasuni\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nasunicorporation\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nasunicorporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"navicloudrsoftwarepteltd1601967280369\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/navicloudrsoftwarepteltd1601967280369\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ncache\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ncache\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ncbi\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ncbi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ncomputingglobalinc1604353053068\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ncomputingglobalinc1604353053068\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ndl\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ndl\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ndstriyelotomasyonsistemlerisanvetica1623147454601\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ndstriyelotomasyonsistemlerisanvetica1623147454601\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nebbiolo-technologies-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nebbiolo-technologies-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nec-technologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nec-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nefelinetworks1591201080882\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nefelinetworks1591201080882\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"neo4j\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/neo4j\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"neos\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/neos\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"neowaybusinesssolutions-4956350\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/neowaybusinesssolutions-4956350\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netapp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netapp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netatwork\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netatwork\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netfoundryinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netfoundryinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netgate\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netgate\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netikus-net-ltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netikus-net-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netiq\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netiq\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netka\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netka\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netmail\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netmail\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netscout\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netscout\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netspi\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netspi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netsweeper\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netsweeper\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"networksexchangetechnologyltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/networksexchangetechnologyltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netwrix\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netwrix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netx\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netx\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"neusoft-neteye\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/neusoft-neteye\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"newegginc1646343565758\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/newegginc1646343565758\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"newnetcommunicationtechnologies1589991852134\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/newnetcommunicationtechnologies1589991852134\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"NewRelic.Infrastructure.Extensions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/NewRelic.Infrastructure.Extensions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"newtglobalconsultingllc1581492268566\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/newtglobalconsultingllc1581492268566\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nextronic-5290868\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nextronic-5290868\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nginxinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nginxinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nice-it-management-solutions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nice-it-management-solutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nicepeopleatwork\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nicepeopleatwork\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nilespartnersinc1617691698386\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nilespartnersinc1617691698386\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"niolabs-5229713\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/niolabs-5229713\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nirvatosoftwarepvtltd1601368706606\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nirvatosoftwarepvtltd1601368706606\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nodejsapi\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nodejsapi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"noianetworklimited1584098036197\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/noianetworklimited1584098036197\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nokiaofamericacorporation1591716055441\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nokiaofamericacorporation1591716055441\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"noobaa\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/noobaa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"norcominformationtechnologygmbhcokgaa\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/norcominformationtechnologygmbhcokgaa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"noricumcloudsolutions1600524477681\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/noricumcloudsolutions1600524477681\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"norsync\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/norsync\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"northbridge-secure\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/northbridge-secure\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nozominetworks1582208017986\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nozominetworks1582208017986\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nri\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nri\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ntegralinc1586961136942\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ntegralinc1586961136942\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ntt-data-intellilink-corporation\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ntt-data-intellilink-corporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nttdata\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nttdata\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nttltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nttltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nuco-networks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nuco-networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"numbersbelieve\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/numbersbelieve\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"numtrallcpublisher\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/numtrallcpublisher\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nuxeo\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nuxeo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nvidia\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nvidia\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"o2mc-real-time-data-platform\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/o2mc-real-time-data-platform\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"objectivity-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/objectivity-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"objectivity1595351622261\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/objectivity1595351622261\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"oceanblue-cloud\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/oceanblue-cloud\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"OctopusDeploy.Tentacle\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/OctopusDeploy.Tentacle\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"odix\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/odix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"odysseuscomputationalsolutions1630242118741\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/odysseuscomputationalsolutions1630242118741\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"odysseyconsultantsltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/odysseyconsultantsltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"officeatwork-ag\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/officeatwork-ag\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"omega-software\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/omega-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"onapsis\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/onapsis\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"oncore_cloud_services-4944214\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/oncore_cloud_services-4944214\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"onexgroup\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/onexgroup\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"onspecta\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/onspecta\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ontology\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ontology\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"onyx-point-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/onyx-point-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"op5\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/op5\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"open-connect-systems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/open-connect-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"opencell\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/opencell\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"openlinkswcom-pago\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/openlinkswcom-pago\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"OpenLogic\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/OpenLogic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"openrefactoryinc1620140917523\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/openrefactoryinc1620140917523\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"openshotstudiosllc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/openshotstudiosllc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"opentext\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/opentext\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"openvpn\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/openvpn\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"opslogix\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/opslogix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"opswatinc1619007967290\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/opswatinc1619007967290\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"optimitiveslu1618320281443\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/optimitiveslu1618320281443\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"option3\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/option3\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Oracle\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Oracle\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"oraylis\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/oraylis\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"oraylisbi\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/oraylisbi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"orbs-network\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/orbs-network\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"oriana\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/oriana\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"orientdb\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/orientdb\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"oroinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/oroinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"osirium-ltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/osirium-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"osisoft\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/osisoft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"osnexus\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/osnexus\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"outpost24\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/outpost24\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"outsystems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/outsystems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ovaledge1618392232783\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ovaledge1618392232783\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pachyderminc1585170006545\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pachyderminc1585170006545\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pacteratechnologiesinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pacteratechnologiesinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"paladionnetworkspvtltd1606120508449\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/paladionnetworkspvtltd1606120508449\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"paloaltonetworks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/paloaltonetworks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"panopta\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/panopta\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"panorama-necto\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/panorama-necto\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"panzura-file-system\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/panzura-file-system\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"parabole\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/parabole\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"paralaxiomtechnologiesprivatelimited1596433357886\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/paralaxiomtechnologiesprivatelimited1596433357886\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"parallels\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/parallels\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"parasoft\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/parasoft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"parkersoftwarelimited1609786657569\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/parkersoftwarelimited1609786657569\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"parsec-for-teams\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/parsec-for-teams\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pasifikciptamandiri\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pasifikciptamandiri\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"passlogy\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/passlogy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"paxata\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/paxata\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pcman\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pcman\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"peer-software-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/peer-software-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"penta-security-systems-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/penta-security-systems-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"percona\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/percona\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"perforce\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/perforce\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"periscope-tech-4791746\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/periscope-tech-4791746\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"piolinkinc1582849368309\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/piolinkinc1582849368309\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pivotal\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pivotal\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pixitmedia1591611150480\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pixitmedia1591611150480\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"plesk\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/plesk\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pmsoftwareinternational1603102514882\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pmsoftwareinternational1603102514882\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pnop\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pnop\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"polarityioinc1628691850891\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/polarityioinc1628691850891\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"portalarchitects\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/portalarchitects\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"portsysinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/portsysinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"postgres-pro\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/postgres-pro\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"powerbireach\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/powerbireach\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"prakshepprivatelimited1619949827900\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/prakshepprivatelimited1619949827900\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"prasselsrl1645470739547\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/prasselsrl1645470739547\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"prestashop\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/prestashop\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"prestige_informatique-1090178\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/prestige_informatique-1090178\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"prime-strategy\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/prime-strategy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"primekey\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/primekey\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"primestrategynewyorkinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/primestrategynewyorkinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pro-vision\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pro-vision\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"probityinc1581611299345\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/probityinc1581611299345\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"process-one\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/process-one\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"processgold\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/processgold\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"procomputers\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/procomputers\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"procomputerssrl1594239153814\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/procomputerssrl1594239153814\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"profecia\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/profecia\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Profiler.AgentOrchestrationRefactor.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Profiler.AgentOrchestrationRefactor.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Profiler.Master.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Profiler.Master.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"profisee\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/profisee\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"progelspa\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/progelspa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"progresssoftwarecorporation\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/progresssoftwarecorporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"proliongmbh1628175060372\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/proliongmbh1628175060372\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"protegrityusainc1627404648458\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/protegrityusainc1627404648458\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"protiviti\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/protiviti\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"proventeq\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/proventeq\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ptc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ptc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ptsecurity\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ptsecurity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pulse-secure\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pulse-secure\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pulsesecuretechnologies1638179500151\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pulsesecuretechnologies1638179500151\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"puppet\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/puppet\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"puppeteersoy1601024480557\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/puppeteersoy1601024480557\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"PuppetLabs\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/PuppetLabs\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"PuppetLabs.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/PuppetLabs.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"purestorageinc1578960262525\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/purestorageinc1578960262525\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pydio\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pydio\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pyramidanalytics\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pyramidanalytics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"qlik\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/qlik\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"qnapsystemsinc1601352084032\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/qnapsystemsinc1601352084032\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"qore-technologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/qore-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"qs-solutions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/qs-solutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Qualys\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Qualys\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Qualys.LinuxAgent.GrayLabel\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Qualys.LinuxAgent.GrayLabel\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Qualys.WindowsAgent.GrayLabel\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Qualys.WindowsAgent.GrayLabel\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"qualysguard\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/qualysguard\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"quasardb\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/quasardb\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"qubole-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/qubole-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"quest\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/quest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"racknap\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/racknap\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rackwareinc1619403669255\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rackwareinc1619403669255\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"radiant-logic\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/radiant-logic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"radware\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/radware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"raincode\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/raincode\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rancher\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rancher\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rapid7\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rapid7\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Rapid7.InsightPlatform\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Rapid7.InsightPlatform\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rapidminer\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rapidminer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"raynetgmbh\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/raynetgmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"readymind\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/readymind\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"realm\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/realm\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"reblaze\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/reblaze\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"RedHat\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/RedHat\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"redhat-rhel\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/redhat-rhel\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"redpoint-global\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/redpoint-global\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"refactr\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/refactr\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"refinitiv\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/refinitiv\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"refinitiv-4807503\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/refinitiv-4807503\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"relevance-lab\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/relevance-lab\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"remotelearner\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/remotelearner\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"res\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/res\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"resco\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/resco\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"researchgraphptyltd1598252602128\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/researchgraphptyltd1598252602128\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"resemblesystems1582780358300\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/resemblesystems1582780358300\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"responder-corp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/responder-corp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"revolution-analytics\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/revolution-analytics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rhcsolutions1586957910818\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rhcsolutions1586957910818\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ribboncommunications\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ribboncommunications\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"RightScaleLinux\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/RightScaleLinux\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"RightScaleWindowsServer\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/RightScaleWindowsServer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rimo3\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rimo3\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ringsoftwareresearchanddevelopmentinc1578946072257\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ringsoftwareresearchanddevelopmentinc1578946072257\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"riverbed\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/riverbed\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"RiverbedTechnology\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/RiverbedTechnology\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rmgtechnologiesinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rmgtechnologiesinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rocketml\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rocketml\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rocketsoftware\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rocketsoftware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rohdeschwarzcybersecuritygmbh\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rohdeschwarzcybersecuritygmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rohdeschwarzcybersecuritysas\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rohdeschwarzcybersecuritysas\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"roktech\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/roktech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rsa-security-llc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rsa-security-llc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rsk-labs\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rsk-labs\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rstudio-5237862\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rstudio-5237862\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rtts\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rtts\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rubrik-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rubrik-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"runecastsolutionslimited1614186396822\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/runecastsolutionslimited1614186396822\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"s2ix\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/s2ix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"saama\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/saama\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"saasame-limited\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/saasame-limited\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"safesoftwareinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/safesoftwareinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"safeticatechnologiessro\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/safeticatechnologiessro\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"safetica_technologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/safetica_technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"safetoopen1585013318137\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/safetoopen1585013318137\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"saltsecurity1583264186232\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/saltsecurity1583264186232\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"saltsecurity1583264669848\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/saltsecurity1583264669848\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"saltstack\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/saltstack\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"samsung-sds\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/samsung-sds\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"samsungelectronics1632860607983\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/samsungelectronics1632860607983\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"samsungsds-cello\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/samsungsds-cello\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"samsungsds_sdbe\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/samsungsds_sdbe\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sandhatatechnologieslimited1615753438737\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sandhatatechnologieslimited1615753438737\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sap\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sap\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sapphiretechnologieslimited1611758579346\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sapphiretechnologieslimited1611758579346\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sas-institute-560503\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sas-institute-560503\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"scaidata\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/scaidata\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"scalearc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/scalearc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"scalegrid\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/scalegrid\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"scality\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/scality\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"schrockeninc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/schrockeninc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sci\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sci\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sciencelogicinc1622565452194\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sciencelogicinc1622565452194\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"scientiamobile\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/scientiamobile\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"scontainug1595751515785\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/scontainug1595751515785\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"scubaanalytics\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/scubaanalytics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"scylladb1631195365807\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/scylladb1631195365807\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"seaqserviciossas1579029207572\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/seaqserviciossas1579029207572\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"searchbloxsoftwareinc1594309037050\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/searchbloxsoftwareinc1594309037050\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"secureworks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/secureworks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"securityonionsolutions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/securityonionsolutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"securityonionsolutionsllc1624649205155\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/securityonionsolutionsllc1624649205155\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"securosis\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/securosis\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"seequentltd1585781751395\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/seequentltd1585781751395\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"semarchy\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/semarchy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"semperis\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/semperis\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"senhasegura\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/senhasegura\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"SentinelOne.LinuxExtension\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/SentinelOne.LinuxExtension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"SentinelOne.LinuxExtension.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/SentinelOne.LinuxExtension.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"SentinelOne.WindowsExtension\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/SentinelOne.WindowsExtension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"SentinelOne.WindowsExtension.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/SentinelOne.WindowsExtension.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sentriumsl\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sentriumsl\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sentry51llc1616686725591\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sentry51llc1616686725591\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sentryone\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sentryone\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sepiosystems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sepiosystems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"seppmailag\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/seppmailag\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"seraumo1620002807288\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/seraumo1620002807288\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"service-control-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/service-control-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sesamesoftwareinc1622125191447\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sesamesoftwareinc1622125191447\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"shadow-soft\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/shadow-soft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"shareshiftneeraj.test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/shareshiftneeraj.test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sightapps\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sightapps\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"signal-sciences\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/signal-sciences\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"silk\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/silk\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"silver-peak-systems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/silver-peak-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"simmachinesinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/simmachinesinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"simontelephonics\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/simontelephonics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"simpledatalabsinc1635791235920\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/simpledatalabsinc1635791235920\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"simplifierag\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/simplifierag\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"simpligov\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/simpligov\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sinefa\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sinefa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sinequa\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sinequa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sinequa1588262295885\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sinequa1588262295885\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"singapore-telecommunications-limited\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/singapore-telecommunications-limited\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sios_datakeeper\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sios_datakeeper\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"siportalinc1581539156321\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/siportalinc1581539156321\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sisenseltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sisenseltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Site24x7\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Site24x7\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sktelecom\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sktelecom\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"skyarc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/skyarc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"skyboxsecurity1585187406404\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/skyboxsecurity1585187406404\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"skylarkcloud\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/skylarkcloud\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"smartbearsoftware\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/smartbearsoftware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"smartmessage-autoflow\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/smartmessage-autoflow\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"snaplogic\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/snaplogic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"snapt-adc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/snapt-adc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"snips\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/snips\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"soasta\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/soasta\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"softnas\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/softnas\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"softwarecentralas1642687699196\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/softwarecentralas1642687699196\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"softwarehut\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/softwarehut\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"softwebsolutions-4518310\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/softwebsolutions-4518310\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"soha\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/soha\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"solanolabs\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/solanolabs\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"solar-security\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/solar-security\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"solarwinds\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/solarwinds\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"solvedevops1643693563360\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/solvedevops1643693563360\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sonicwall-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sonicwall-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sophos\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sophos\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sourcegearllc1616101262784\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sourcegearllc1616101262784\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"south-river-technologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/south-river-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"southrivertech1586314123192\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/southrivertech1586314123192\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"spacecurve\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/spacecurve\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"spaceliftinc1625499025476\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/spaceliftinc1625499025476\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"spagobi\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/spagobi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sparklinglogic\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sparklinglogic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"spectralcorelimited1619779004178\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/spectralcorelimited1619779004178\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"spektra\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/spektra\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sphere3d\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sphere3d\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"spideroakinc1588278690933\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/spideroakinc1588278690933\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"spirentcommunications1594084187199\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/spirentcommunications1594084187199\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"splunk\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/splunk\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sproutenetworks1593456311717\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sproutenetworks1593456311717\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sqlstream\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sqlstream\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"squadratechnologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/squadratechnologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"squaredup\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/squaredup\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"src-solution\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/src-solution\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ssh2appsltd1621588462715\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ssh2appsltd1621588462715\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stackato-platform-as-a-service\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stackato-platform-as-a-service\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Stackify.LinuxAgent.Extension\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Stackify.LinuxAgent.Extension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stackstorm\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stackstorm\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"startekfingerprintmatch\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/startekfingerprintmatch\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"startisolucoesemtecnologialtda1635263523201\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/startisolucoesemtecnologialtda1635263523201\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"starwind\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/starwind\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"StatusMonitor2.Diagnostics.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/StatusMonitor2.Diagnostics.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"StatusReport.Diagnostics.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/StatusReport.Diagnostics.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stealthbits\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stealthbits\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"steelhive\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/steelhive\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stonebondtechnologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stonebondtechnologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stonefly\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stonefly\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"storage_made_easy\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/storage_made_easy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stormshield\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stormshield\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"storone1594045543980\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/storone1594045543980\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"storreduce\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/storreduce\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"storwarespzoo1611743234900\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/storwarespzoo1611743234900\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"strangebee1595948424730\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/strangebee1595948424730\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"strataidentity1608323708170\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/strataidentity1608323708170\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stratis-group-ltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stratis-group-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stratodesk1611152769936\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stratodesk1611152769936\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stratumn\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stratumn\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"streamsets\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/streamsets\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"striim\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/striim\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stromasys\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stromasys\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"strongboxitllc1594816423884\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/strongboxitllc1594816423884\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"su\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/su\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"subscription.test.krsh\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/subscription.test.krsh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sumologic\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sumologic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sunatogmbh\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sunatogmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sunday\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sunday\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"SUSE\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/SUSE\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"SUSE.AzureHybridBenefit\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/SUSE.AzureHybridBenefit\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"swoopanalytics\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/swoopanalytics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sycom-technologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sycom-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sycompatechnologycompanyinc1588192103892\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sycompatechnologycompanyinc1588192103892\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.CloudWorkloadProtection\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.CloudWorkloadProtection\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.CloudWorkloadProtection.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.CloudWorkloadProtection.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.CloudWorkloadProtection.TestOnStage\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.CloudWorkloadProtection.TestOnStage\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.QA\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.QA\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.staging\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.staging\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.test.ru2.latest\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.test.ru2.latest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.test.ru2final\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.test.ru2final\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.test.ru2latest1\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.test.ru2latest1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.test.ru4mp1\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.test.ru4mp1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.test.ru4mp1.latest\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.test.ru4mp1.latest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.test.ru4mp1final\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.test.ru4mp1final\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"symanteccorporation\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/symanteccorporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"symantectest1\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/symantectest1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"synack-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/synack-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"syncfusion\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/syncfusion\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"syncfusionbigdataplatfor\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/syncfusionbigdataplatfor\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"synechron-technologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/synechron-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"synergixinc1585256339250\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/synergixinc1585256339250\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"synnexcorp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/synnexcorp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"syscomcomputerengineeringco1583913200141\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/syscomcomputerengineeringco1583913200141\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"syte\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/syte\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tableau\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tableau\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tactic\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tactic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"talari-networks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/talari-networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"talena-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/talena-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"talend\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/talend\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"talon\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/talon\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tamrinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tamrinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"taniuminc1646329360287\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/taniuminc1646329360287\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"targit\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/targit\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tata_communications\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tata_communications\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tavanttechnologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tavanttechnologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tavendo\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tavendo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"te-systems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/te-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"techdivision\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/techdivision\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"techlatest\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/techlatest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"technicheltd1606969724100\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/technicheltd1606969724100\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tecknolab\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tecknolab\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"telepat\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/telepat\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"teloscorporation\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/teloscorporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tempered-networks-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tempered-networks-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tenable\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tenable\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tensormakecorpdbaoneclickai1608247756082\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tensormakecorpdbaoneclickai1608247756082\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tenthlineinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tenthlineinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"teradata\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/teradata\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Teradici\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Teradici\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"teramindinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/teramindinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.Gemalto.SafeNet.ProtectV\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.Gemalto.SafeNet.ProtectV\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.Gemalto.SafeNet.ProtectV.Azure\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.Gemalto.SafeNet.ProtectV.Azure\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.HP.AppDefender\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.HP.AppDefender\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.Microsoft.VisualStudio.Services\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.Microsoft.VisualStudio.Services\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.NJHP.AppDefender\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.NJHP.AppDefender\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.SqlServer.Managability\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.SqlServer.Managability\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.SqlServer.Management\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.SqlServer.Management\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.SqlServer.Management.corext\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.SqlServer.Management.corext\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test1.NJHP.AppDefender\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test1.NJHP.AppDefender\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test3.Microsoft.VisualStudio.Services\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test3.Microsoft.VisualStudio.Services\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"testable1603721901088\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/testable1603721901088\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"testpro\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/testpro\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"test_test_mix3pptest0011614206850774\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/test_test_mix3pptest0011614206850774\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"test_test_mneela1628617140187\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/test_test_mneela1628617140187\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"test_test_pmc2pc1\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/test_test_pmc2pc1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thales-vormetric\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thales-vormetric\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thalesdiscplusainc1596561677238\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thalesdiscplusainc1596561677238\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thedatavaluefactoryltd1589348815922\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thedatavaluefactoryltd1589348815922\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thefreebsdfoundation\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thefreebsdfoundation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thehdfgroup1616725197741\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thehdfgroup1616725197741\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"theumag1596442827072\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/theumag1596442827072\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"things-board\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/things-board\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thingscareinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thingscareinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thinprintgmbh\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thinprintgmbh\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thorntechnologiesllc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thorntechnologiesllc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thoughtspot-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thoughtspot-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"threatintelligenceptyltd1586824172898\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/threatintelligenceptyltd1586824172898\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tibco-software\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tibco-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tidal-migrations\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tidal-migrations\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tidalmediainc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tidalmediainc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tig\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tig\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tiger-technology\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tiger-technology\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tigergraph\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tigergraph\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"timextender\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/timextender\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tmaxsoft\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tmaxsoft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tmaxsoft1608612658335\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tmaxsoft1608612658335\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tomsawyersoftwarecorp1613579206342\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tomsawyersoftwarecorp1613579206342\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"topicus\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/topicus\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"torusware\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/torusware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"totemo\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/totemo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"townsend-security\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/townsend-security\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"transcendinformationinc1609918445926\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/transcendinformationinc1609918445926\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"transientxinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/transientxinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"transvault\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/transvault\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"trendmicro\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/trendmicro\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"TrendMicro.DeepSecurity.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/TrendMicro.DeepSecurity.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"TrendMicro.PortalProtect\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/TrendMicro.PortalProtect\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tresorit\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tresorit\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"trifacta\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/trifacta\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tripleblindinc1615730179432\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tripleblindinc1615730179432\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tripwire-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tripwire-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"truata1612259728221\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/truata1612259728221\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"truestack\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/truestack\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tryonsolutionsinc1596650621083\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tryonsolutionsinc1596650621083\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tsa-public-service\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tsa-public-service\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tunnelbiz\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tunnelbiz\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"turbonet\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/turbonet\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"turbonet1581982683964\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/turbonet1581982683964\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"twistlock\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/twistlock\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"typesafe\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/typesafe\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ubeeko\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ubeeko\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ubercloud\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ubercloud\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"uipath-5054924\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/uipath-5054924\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ulex\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ulex\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"unifi-software\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/unifi-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"unifiedstreaming1598872291606\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/unifiedstreaming1598872291606\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"uniprint-net\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/uniprint-net\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"unitrends\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/unitrends\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"unnisoft\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/unnisoft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"unravel-data\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/unravel-data\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"unscramblsingaporepteltd-4999260\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/unscramblsingaporepteltd-4999260\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"untangle\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/untangle\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"upsolver1594188634150\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/upsolver1594188634150\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"usp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/usp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"valohai\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/valohai\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"valtix\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/valtix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"varmournetworks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/varmournetworks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"varnish\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/varnish\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vastdata1650451243415\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vastdata1650451243415\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vatacommunicationsinc1581644208717\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vatacommunicationsinc1581644208717\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vaultive-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vaultive-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vbot\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vbot\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vcinityinc1587684340545\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vcinityinc1587684340545\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vectraaiinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vectraaiinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"veeam\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/veeam\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"velocitydb-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/velocitydb-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"velocloud\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/velocloud\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vembutechnologiespvtltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vembutechnologiespvtltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vemn\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vemn\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"veritas\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/veritas\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"versanetworks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/versanetworks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"versasec\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/versasec\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vidispine\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vidispine\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vidizmo\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vidizmo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vigyanlabs-innovations-pvt-ltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vigyanlabs-innovations-pvt-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vigyanlabsinc1581413676614\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vigyanlabsinc1581413676614\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"viptela\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/viptela\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vircom\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vircom\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"virtamovecorp1615909247913\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/virtamovecorp1615909247913\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"virtualpulsesro1607008728942\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/virtualpulsesro1607008728942\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"virtuozzointernationalgmbh1626704951469\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/virtuozzointernationalgmbh1626704951469\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"visualknowledgeshare1591795776234\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/visualknowledgeshare1591795776234\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"visualsoft-center\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/visualsoft-center\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vizixiotplatformretail001\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vizixiotplatformretail001\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vmlabinc1613642184700\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vmlabinc1613642184700\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vmturbo\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vmturbo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vmware-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vmware-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vnomicinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vnomicinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"voiceelements\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/voiceelements\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"voleatechgmbh1636966911943\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/voleatechgmbh1636966911943\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"volterraedgeservices\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/volterraedgeservices\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Vormetric\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Vormetric\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vscconsultingptyltd1608535888097\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vscconsultingptyltd1608535888097\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vte\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vte\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vu-llc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vu-llc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vunetsystemsprivatelimited1646716402131\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vunetsystemsprivatelimited1646716402131\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vyulabsinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vyulabsinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"WAD2AI.Diagnostics.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/WAD2AI.Diagnostics.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"WAD2EventHub.Diagnostics.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/WAD2EventHub.Diagnostics.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wallarm\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wallarm\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wallix\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wallix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wandisco\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wandisco\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wanos\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wanos\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wanpath-dba-myworkdrive\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wanpath-dba-myworkdrive\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wardy-it-solutions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wardy-it-solutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"warewolf-esb\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/warewolf-esb\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"watchguard-technologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/watchguard-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"webaloinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/webaloinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"websense-apmailpe\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/websense-apmailpe\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"websoft9inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/websoft9inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wedoitllc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wedoitllc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"westernoceansoftwaresprivatelimited\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/westernoceansoftwaresprivatelimited\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wherescapesoftware\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wherescapesoftware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"winmagic_securedoc_cloudvm\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/winmagic_securedoc_cloudvm\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wintellisys-inc-4561600\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wintellisys-inc-4561600\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"witfooinc1590167223060\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/witfooinc1590167223060\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wmspanel\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wmspanel\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wood1595864497589\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wood1595864497589\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"workshare-technology\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/workshare-technology\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"world-programming\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/world-programming\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"worxogo\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/worxogo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wowza\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wowza\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"xcontentptyltd-1329748\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/xcontentptyltd-1329748\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"xendata-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/xendata-inc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"xfinityinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/xfinityinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"xilinx\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/xilinx\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"xoriantcorporationazxteam1\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/xoriantcorporationazxteam1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"xoriantsolutionspvtltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/xoriantsolutionspvtltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"xtremedata\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/xtremedata\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"xyzrd-group-ou\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/xyzrd-group-ou\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"yaseensmarket1645449809728\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/yaseensmarket1645449809728\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"yellowfin\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/yellowfin\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"yellowfininternationalptyltd1616363974066\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/yellowfininternationalptyltd1616363974066\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"yokogawarentalleasecorporation\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/yokogawarentalleasecorporation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"your-shop-online\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/your-shop-online\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"z1\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/z1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"z4it-aps\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/z4it-aps\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zabbix\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zabbix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zend\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zend\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zenterasystemsinc1605292453288\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zenterasystemsinc1605292453288\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zerodown_software\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zerodown_software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zerto\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zerto\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zettalane_systems-5254599\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zettalane_systems-5254599\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zevenet\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zevenet\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zilliz\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zilliz\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zoomdata\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zoomdata\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zscaler\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zscaler\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zscaler1579058425289\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zscaler1579058425289\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zultysinc1596831546163\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zultysinc1596831546163\"\r\n }\r\n]", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/southeastasia/publishers/Microsoft.Compute/artifacttypes/vmextension/types?api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9wdWJsaXNoZXJzL01pY3Jvc29mdC5Db21wdXRlL2FydGlmYWN0dHlwZXMvdm1leHRlbnNpb24vdHlwZXM/YXBpLXZlcnNpb249MjAyMS0xMS0wMQ==", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Compute/locations/southeastasia/publishers/Microsoft.Compute/artifacttypes/vmextension/types?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9wdWJsaXNoZXJzL01pY3Jvc29mdC5Db21wdXRlL2FydGlmYWN0dHlwZXMvdm1leHRlbnNpb24vdHlwZXM/YXBpLXZlcnNpb249MjAyMS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "237fceaf-5078-414e-9ac6-9402daa3ae1e" + "59a3159e-ad00-4569-945a-babfab0cb94b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ] }, "ResponseHeaders": { @@ -2125,16 +2125,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/ListVMExtensionTypes3Min;17999,Microsoft.Compute/ListVMExtensionTypes30Min;22498" + "Microsoft.Compute/ListVMExtensionTypes3Min;17999,Microsoft.Compute/ListVMExtensionTypes30Min;22497" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "1f3ad383-bb66-4279-b2a8-fbbcd093a7e3_132678318374571324" + "1f3ad383-bb66-4279-b2a8-fbbcd093a7e3_132836337789816871" ], "x-ms-request-id": [ - "bc117a22-2aae-4e8b-a468-6273fb401080" + "d482d628-da05-44b8-b5d6-4e7ee6bf33e2" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -2144,16 +2144,16 @@ "11993" ], "x-ms-correlation-request-id": [ - "e1979f56-e52e-4e34-8af5-af418862c3af" + "c85e8e8a-3d45-4991-b11d-8cab16f7fd21" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T203804Z:e1979f56-e52e-4e34-8af5-af418862c3af" + "JIOINDIAWEST:20220516T180017Z:c85e8e8a-3d45-4991-b11d-8cab16f7fd21" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 20:38:03 GMT" + "Mon, 16 May 2022 18:00:17 GMT" ], "Content-Length": [ "1089" @@ -2165,26 +2165,26 @@ "-1" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"BGInfo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"CustomScriptExtension\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"JsonADDomainExtension\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/JsonADDomainExtension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"VMAccessAgent\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/VMAccessAgent\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"BGInfo\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"CustomScriptExtension\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"JsonADDomainExtension\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/JsonADDomainExtension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"VMAccessAgent\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/VMAccessAgent\"\r\n }\r\n]", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/southeastasia/publishers/Microsoft.Compute/artifacttypes/vmextension/types/BGInfo/versions?api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9wdWJsaXNoZXJzL01pY3Jvc29mdC5Db21wdXRlL2FydGlmYWN0dHlwZXMvdm1leHRlbnNpb24vdHlwZXMvQkdJbmZvL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMjEtMTEtMDE=", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Compute/locations/southeastasia/publishers/Microsoft.Compute/artifacttypes/vmextension/types/BGInfo/versions?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9wdWJsaXNoZXJzL01pY3Jvc29mdC5Db21wdXRlL2FydGlmYWN0dHlwZXMvdm1leHRlbnNpb24vdHlwZXMvQkdJbmZvL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMjEtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "237fceaf-5078-414e-9ac6-9402daa3ae1e" + "59a3159e-ad00-4569-945a-babfab0cb94b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ] }, "ResponseHeaders": { @@ -2195,16 +2195,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/ListVMExtensions3Min;9999,Microsoft.Compute/ListVMExtensions30Min;21991" + "Microsoft.Compute/ListVMExtensions3Min;9999,Microsoft.Compute/ListVMExtensions30Min;21993" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "1f3ad383-bb66-4279-b2a8-fbbcd093a7e3_132678318374571324" + "1f3ad383-bb66-4279-b2a8-fbbcd093a7e3_132836337789816871" ], "x-ms-request-id": [ - "5abf0c3d-be81-4f86-8867-9a871689a82c" + "60fa0cdc-2a2d-414e-9ea4-a677bffb2c79" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -2214,19 +2214,19 @@ "11992" ], "x-ms-correlation-request-id": [ - "bf693485-22a6-4fc2-8a8f-72e0271639f9" + "09cdadbe-c988-4e35-a0bd-537103c794ea" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T203804Z:bf693485-22a6-4fc2-8a8f-72e0271639f9" + "JIOINDIAWEST:20220516T180017Z:09cdadbe-c988-4e35-a0bd-537103c794ea" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 20:38:03 GMT" + "Mon, 16 May 2022 18:00:17 GMT" ], "Content-Length": [ - "1589" + "1856" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2235,26 +2235,26 @@ "-1" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1.0\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo/Versions/1.0\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1.0.1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo/Versions/1.0.1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1.1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo/Versions/1.1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1.2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo/Versions/1.2\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1.2.2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo/Versions/1.2.2\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"2.1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo/Versions/2.1\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1.0\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo/Versions/1.0\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1.0.1\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo/Versions/1.0.1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1.1\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo/Versions/1.1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1.2\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo/Versions/1.2\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1.2.2\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo/Versions/1.2.2\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"2.1\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo/Versions/2.1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"2.2.2\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo/Versions/2.2.2\"\r\n }\r\n]", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.Compute/virtualMachines/PSTestVMbfbf50/extensions/BGInfo?api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZiZjU5Y2YvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy9QU1Rlc3RWTWJmYmY1MC9leHRlbnNpb25zL0JHSW5mbz9hcGktdmVyc2lvbj0yMDIxLTExLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.Compute/virtualMachines/PSTestVM48b610/extensions/BGInfo?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNDhiNjFhN2QvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy9QU1Rlc3RWTTQ4YjYxMC9leHRlbnNpb25zL0JHSW5mbz9hcGktdmVyc2lvbj0yMDIxLTExLTAx", "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\": \"southeastasia\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"BGInfo\",\r\n \"typeHandlerVersion\": \"2.2\",\r\n \"autoUpgradeMinorVersion\": true\r\n },\r\n \"location\": \"southeastasia\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "237fceaf-5078-414e-9ac6-9402daa3ae1e" + "59a3159e-ad00-4569-945a-babfab0cb94b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2271,19 +2271,19 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/southeastasia/operations/015c527a-02d5-47f0-8db1-5b3a8a0eb86f?p=34dc709c-01b2-42c4-84a2-256a9734610d&api-version=2021-11-01" + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Compute/locations/southeastasia/operations/e6d11439-555f-4778-9771-82687bedeacb?p=e484ceca-6435-4a7f-b125-3d82e6b12014&api-version=2021-11-01" ], "Azure-AsyncNotification": [ "Enabled" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/UpdateVM3Min;239,Microsoft.Compute/UpdateVM30Min;1195" + "Microsoft.Compute/UpdateVM3Min;239,Microsoft.Compute/UpdateVM30Min;1197" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "015c527a-02d5-47f0-8db1-5b3a8a0eb86f" + "e6d11439-555f-4778-9771-82687bedeacb" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -2293,16 +2293,16 @@ "1198" ], "x-ms-correlation-request-id": [ - "3cf4a10e-4832-4cc7-b9d2-1eafd839a463" + "fb1c4144-3913-4e3d-840a-2109fcd9b084" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T203810Z:3cf4a10e-4832-4cc7-b9d2-1eafd839a463" + "JIOINDIAWEST:20220516T180020Z:fb1c4144-3913-4e3d-840a-2109fcd9b084" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 20:38:09 GMT" + "Mon, 16 May 2022 18:00:20 GMT" ], "Content-Length": [ "484" @@ -2314,23 +2314,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"BGInfo\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.Compute/virtualMachines/PSTestVMbfbf50/extensions/BGInfo\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"southeastasia\",\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}", + "ResponseBody": "{\r\n \"name\": \"BGInfo\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.Compute/virtualMachines/PSTestVM48b610/extensions/BGInfo\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Creating\",\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"BGInfo\",\r\n \"typeHandlerVersion\": \"2.2\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/southeastasia/operations/015c527a-02d5-47f0-8db1-5b3a8a0eb86f?p=34dc709c-01b2-42c4-84a2-256a9734610d&api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzAxNWM1MjdhLTAyZDUtNDdmMC04ZGIxLTViM2E4YTBlYjg2Zj9wPTM0ZGM3MDljLTAxYjItNDJjNC04NGEyLTI1NmE5NzM0NjEwZCZhcGktdmVyc2lvbj0yMDIxLTExLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Compute/locations/southeastasia/operations/e6d11439-555f-4778-9771-82687bedeacb?p=e484ceca-6435-4a7f-b125-3d82e6b12014&api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2U2ZDExNDM5LTU1NWYtNDc3OC05NzcxLTgyNjg3YmVkZWFjYj9wPWU0ODRjZWNhLTY0MzUtNGE3Zi1iMTI1LTNkODJlNmIxMjAxNCZhcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "237fceaf-5078-414e-9ac6-9402daa3ae1e" + "59a3159e-ad00-4569-945a-babfab0cb94b" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ] }, "ResponseHeaders": { @@ -2341,13 +2341,13 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperation3Min;14995,Microsoft.Compute/GetOperation30Min;29968" + "Microsoft.Compute/GetOperation3Min;14993,Microsoft.Compute/GetOperation30Min;29971" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a3a4ed78-0db6-4374-bb99-3fd793155946" + "f142d81b-ecee-404e-bf8c-ba08fac59145" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -2357,19 +2357,19 @@ "11991" ], "x-ms-correlation-request-id": [ - "4d6fb3ce-8601-4260-b19a-985d68254498" + "f0359c4e-ce1e-44eb-bcc9-ef06ec5c8ea3" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T203840Z:4d6fb3ce-8601-4260-b19a-985d68254498" + "JIOINDIAWEST:20220516T180051Z:f0359c4e-ce1e-44eb-bcc9-ef06ec5c8ea3" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 20:38:39 GMT" + "Mon, 16 May 2022 18:00:50 GMT" ], "Content-Length": [ - "134" + "133" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2378,23 +2378,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-02-23T15:38:08.4842188-05:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"015c527a-02d5-47f0-8db1-5b3a8a0eb86f\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2022-05-16T23:30:20.041795+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"e6d11439-555f-4778-9771-82687bedeacb\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/southeastasia/operations/015c527a-02d5-47f0-8db1-5b3a8a0eb86f?p=34dc709c-01b2-42c4-84a2-256a9734610d&api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzAxNWM1MjdhLTAyZDUtNDdmMC04ZGIxLTViM2E4YTBlYjg2Zj9wPTM0ZGM3MDljLTAxYjItNDJjNC04NGEyLTI1NmE5NzM0NjEwZCZhcGktdmVyc2lvbj0yMDIxLTExLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Compute/locations/southeastasia/operations/e6d11439-555f-4778-9771-82687bedeacb?p=e484ceca-6435-4a7f-b125-3d82e6b12014&api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2U2ZDExNDM5LTU1NWYtNDc3OC05NzcxLTgyNjg3YmVkZWFjYj9wPWU0ODRjZWNhLTY0MzUtNGE3Zi1iMTI1LTNkODJlNmIxMjAxNCZhcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "237fceaf-5078-414e-9ac6-9402daa3ae1e" + "59a3159e-ad00-4569-945a-babfab0cb94b" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ] }, "ResponseHeaders": { @@ -2405,13 +2405,13 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperation3Min;14995,Microsoft.Compute/GetOperation30Min;29967" + "Microsoft.Compute/GetOperation3Min;14994,Microsoft.Compute/GetOperation30Min;29970" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e7fc3cb6-8e6a-4b06-9c4f-2a7c1b436197" + "8b64c925-490b-473b-b5b4-af663822b639" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -2421,19 +2421,19 @@ "11990" ], "x-ms-correlation-request-id": [ - "a0db49b2-37f5-4ae9-b8a3-74c2f17053c0" + "5b1fa83a-f135-46ec-ad8c-55b512b447e1" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T203910Z:a0db49b2-37f5-4ae9-b8a3-74c2f17053c0" + "JIOINDIAWEST:20220516T180121Z:5b1fa83a-f135-46ec-ad8c-55b512b447e1" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 20:39:10 GMT" + "Mon, 16 May 2022 18:01:20 GMT" ], "Content-Length": [ - "134" + "133" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2442,23 +2442,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-02-23T15:38:08.4842188-05:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"015c527a-02d5-47f0-8db1-5b3a8a0eb86f\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2022-05-16T23:30:20.041795+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"e6d11439-555f-4778-9771-82687bedeacb\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/southeastasia/operations/015c527a-02d5-47f0-8db1-5b3a8a0eb86f?p=34dc709c-01b2-42c4-84a2-256a9734610d&api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzAxNWM1MjdhLTAyZDUtNDdmMC04ZGIxLTViM2E4YTBlYjg2Zj9wPTM0ZGM3MDljLTAxYjItNDJjNC04NGEyLTI1NmE5NzM0NjEwZCZhcGktdmVyc2lvbj0yMDIxLTExLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Compute/locations/southeastasia/operations/e6d11439-555f-4778-9771-82687bedeacb?p=e484ceca-6435-4a7f-b125-3d82e6b12014&api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2U2ZDExNDM5LTU1NWYtNDc3OC05NzcxLTgyNjg3YmVkZWFjYj9wPWU0ODRjZWNhLTY0MzUtNGE3Zi1iMTI1LTNkODJlNmIxMjAxNCZhcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "237fceaf-5078-414e-9ac6-9402daa3ae1e" + "59a3159e-ad00-4569-945a-babfab0cb94b" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ] }, "ResponseHeaders": { @@ -2469,13 +2469,13 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperation3Min;14994,Microsoft.Compute/GetOperation30Min;29966" + "Microsoft.Compute/GetOperation3Min;14994,Microsoft.Compute/GetOperation30Min;29969" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b19f957e-3a01-43ba-bbbc-8d86cdcd4643" + "a3756966-926d-42f1-92fe-2bcdb7107fb4" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -2485,19 +2485,19 @@ "11989" ], "x-ms-correlation-request-id": [ - "c45fcce4-bf68-46b2-9352-adc1180301bb" + "2c35fbc1-f1f0-4a1c-a529-57c349d76e8f" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T203940Z:c45fcce4-bf68-46b2-9352-adc1180301bb" + "JIOINDIAWEST:20220516T180151Z:2c35fbc1-f1f0-4a1c-a529-57c349d76e8f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 20:39:40 GMT" + "Mon, 16 May 2022 18:01:50 GMT" ], "Content-Length": [ - "134" + "133" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2506,23 +2506,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-02-23T15:38:08.4842188-05:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"015c527a-02d5-47f0-8db1-5b3a8a0eb86f\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2022-05-16T23:30:20.041795+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"e6d11439-555f-4778-9771-82687bedeacb\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/southeastasia/operations/015c527a-02d5-47f0-8db1-5b3a8a0eb86f?p=34dc709c-01b2-42c4-84a2-256a9734610d&api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzAxNWM1MjdhLTAyZDUtNDdmMC04ZGIxLTViM2E4YTBlYjg2Zj9wPTM0ZGM3MDljLTAxYjItNDJjNC04NGEyLTI1NmE5NzM0NjEwZCZhcGktdmVyc2lvbj0yMDIxLTExLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Compute/locations/southeastasia/operations/e6d11439-555f-4778-9771-82687bedeacb?p=e484ceca-6435-4a7f-b125-3d82e6b12014&api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2U2ZDExNDM5LTU1NWYtNDc3OC05NzcxLTgyNjg3YmVkZWFjYj9wPWU0ODRjZWNhLTY0MzUtNGE3Zi1iMTI1LTNkODJlNmIxMjAxNCZhcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "237fceaf-5078-414e-9ac6-9402daa3ae1e" + "59a3159e-ad00-4569-945a-babfab0cb94b" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ] }, "ResponseHeaders": { @@ -2533,13 +2533,13 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperation3Min;14993,Microsoft.Compute/GetOperation30Min;29969" + "Microsoft.Compute/GetOperation3Min;14993,Microsoft.Compute/GetOperation30Min;29967" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ae7b348f-4ac3-4dd4-9ecb-41fa10b58ca8" + "445a814b-6da7-40d8-a402-ce4f184fc704" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -2549,19 +2549,19 @@ "11988" ], "x-ms-correlation-request-id": [ - "ca7fef05-d1f8-4169-a47c-8dfe7031ef99" + "41199ebd-838f-4f53-be1b-faea91ab5412" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T204011Z:ca7fef05-d1f8-4169-a47c-8dfe7031ef99" + "JIOINDIAWEST:20220516T180221Z:41199ebd-838f-4f53-be1b-faea91ab5412" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 20:40:10 GMT" + "Mon, 16 May 2022 18:02:21 GMT" ], "Content-Length": [ - "134" + "183" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2570,23 +2570,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-02-23T15:38:08.4842188-05:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"015c527a-02d5-47f0-8db1-5b3a8a0eb86f\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2022-05-16T23:30:20.041795+05:30\",\r\n \"endTime\": \"2022-05-16T23:32:15.1511518+05:30\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"e6d11439-555f-4778-9771-82687bedeacb\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/southeastasia/operations/015c527a-02d5-47f0-8db1-5b3a8a0eb86f?p=34dc709c-01b2-42c4-84a2-256a9734610d&api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzAxNWM1MjdhLTAyZDUtNDdmMC04ZGIxLTViM2E4YTBlYjg2Zj9wPTM0ZGM3MDljLTAxYjItNDJjNC04NGEyLTI1NmE5NzM0NjEwZCZhcGktdmVyc2lvbj0yMDIxLTExLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.Compute/virtualMachines/PSTestVM48b610/extensions/BGInfo?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNDhiNjFhN2QvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy9QU1Rlc3RWTTQ4YjYxMC9leHRlbnNpb25zL0JHSW5mbz9hcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "237fceaf-5078-414e-9ac6-9402daa3ae1e" + "59a3159e-ad00-4569-945a-babfab0cb94b" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ] }, "ResponseHeaders": { @@ -2597,13 +2597,13 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperation3Min;14992,Microsoft.Compute/GetOperation30Min;29968" + "Microsoft.Compute/LowCostGet3Min;3988,Microsoft.Compute/LowCostGet30Min;31955" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "3d5b7830-79b1-42ae-be96-1f0b1b9dcdfc" + "06fd3b60-912d-4fa3-89a0-40d483524105" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -2613,19 +2613,19 @@ "11987" ], "x-ms-correlation-request-id": [ - "93f83417-27ce-428f-9df9-e1b0edb360a5" + "ecf64c8d-4ae5-47ca-9222-3b0b32afea51" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T204041Z:93f83417-27ce-428f-9df9-e1b0edb360a5" + "JIOINDIAWEST:20220516T180221Z:ecf64c8d-4ae5-47ca-9222-3b0b32afea51" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 20:40:40 GMT" + "Mon, 16 May 2022 18:02:21 GMT" ], "Content-Length": [ - "184" + "485" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2634,23 +2634,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-02-23T15:38:08.4842188-05:00\",\r\n \"endTime\": \"2022-02-23T15:40:14.3451559-05:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"015c527a-02d5-47f0-8db1-5b3a8a0eb86f\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"BGInfo\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.Compute/virtualMachines/PSTestVM48b610/extensions/BGInfo\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"BGInfo\",\r\n \"typeHandlerVersion\": \"2.2\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.Compute/virtualMachines/PSTestVMbfbf50/extensions/BGInfo?api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZiZjU5Y2YvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy9QU1Rlc3RWTWJmYmY1MC9leHRlbnNpb25zL0JHSW5mbz9hcGktdmVyc2lvbj0yMDIxLTExLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNDhiNjFhN2QvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y0OGI2MWE3ZD9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "237fceaf-5078-414e-9ac6-9402daa3ae1e" + "63c0866b-b7f3-4db6-97c1-b7f43cdc9436" + ], + "Accept-Language": [ + "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" + "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesClient/4.3.2.0" ] }, "ResponseHeaders": { @@ -2660,64 +2663,129 @@ "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/LowCostGet3Min;3996,Microsoft.Compute/LowCostGet30Min;31965" + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "859d9a4f-d505-4851-9d23-dc7e4114ff0a" + ], + "x-ms-correlation-request-id": [ + "859d9a4f-d505-4851-9d23-dc7e4114ff0a" + ], + "x-ms-routing-request-id": [ + "JIOINDIAWEST:20220516T180223Z:859d9a4f-d505-4851-9d23-dc7e4114ff0a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 16 May 2022 18:02:22 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "239" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d' under resource group 'PSTestRG48b61a7d' 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/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNDhiNjFhN2QvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y0OGI2MWE3ZD9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"southeastasia\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9485e159-6c83-4a48-849f-4aa97460003a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesClient/4.3.2.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": [ - "48fe3e63-ee45-4160-9650-77171d92ba84" + "c70cc082-1c71-4079-a9d4-0d4bcb01333e" + ], + "x-ms-client-request-id": [ + "9485e159-6c83-4a48-849f-4aa97460003a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "Microsoft-IIS/10.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "209" ], "x-ms-correlation-request-id": [ - "88e010d2-ad59-44e7-b296-8de9de37432f" + "c70cc082-1c71-4079-a9d4-0d4bcb01333e" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T204041Z:88e010d2-ad59-44e7-b296-8de9de37432f" - ], - "X-Content-Type-Options": [ - "nosniff" + "JIOINDIAWEST:20220516T180229Z:c70cc082-1c71-4079-a9d4-0d4bcb01333e" ], "Date": [ - "Wed, 23 Feb 2022 20:40:40 GMT" + "Mon, 16 May 2022 18:02:28 GMT" ], "Content-Length": [ - "485" + "518" ], "Content-Type": [ - "application/json; charset=utf-8" + "application/json" ], "Expires": [ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"BGInfo\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.Compute/virtualMachines/PSTestVMbfbf50/extensions/BGInfo\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"southeastasia\",\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 + "ResponseBody": "{\r\n \"location\": \"southeastasia\",\r\n \"name\": \"PSTestRSV48b61a7d\",\r\n \"etag\": \"W/\\\"datetime'2022-05-16T18%3A02%3A28.2139595Z'\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateEndpointStateForBackup\": \"None\",\r\n \"privateEndpointStateForSiteRecovery\": \"None\",\r\n \"networkSettings\": {\r\n \"publicNetworkAccess\": \"Enabled\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n }\r\n}", + "StatusCode": 201 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZiZjU5Y2YvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmJmNTljZj9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupconfig/vaultconfig?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNDhiNjFhN2QvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y0OGI2MWE3ZC9iYWNrdXBjb25maWcvdmF1bHRjb25maWc/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0343f9af-bbac-44a3-b5e4-e2cc1c76dc91" + "319c9dfd-31cb-459e-9ef5-7e1a2c58c8c7" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesClient/4.3.2.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -2727,63 +2795,66 @@ "Pragma": [ "no-cache" ], - "x-ms-failure-cause": [ - "gateway" + "X-Content-Type-Options": [ + "nosniff" ], "x-ms-request-id": [ - "380e4d31-db2c-4a8f-8cbc-c0a09319df1a" - ], - "x-ms-correlation-request-id": [ - "380e4d31-db2c-4a8f-8cbc-c0a09319df1a" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20220223T204044Z:380e4d31-db2c-4a8f-8cbc-c0a09319df1a" + "" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ - "nosniff" + "x-ms-client-request-id": [ + "319c9dfd-31cb-459e-9ef5-7e1a2c58c8c7" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "149" + ], + "x-ms-correlation-request-id": [ + "be668476-7f3e-47f1-8d8e-b1b5e1d30d4f" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T180231Z:be668476-7f3e-47f1-8d8e-b1b5e1d30d4f" ], "Date": [ - "Wed, 23 Feb 2022 20:40:43 GMT" + "Mon, 16 May 2022 18:02:30 GMT" + ], + "Content-Length": [ + "380" ], "Content-Type": [ - "application/json; charset=utf-8" + "application/json" ], "Expires": [ "-1" - ], - "Content-Length": [ - "239" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf' under resource group 'PSTestRGbfbf59cf' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", - "StatusCode": 404 + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZiZjU5Y2YvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmJmNTljZj9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"southeastasia\"\r\n}", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupResourceGuardProxies?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNDhiNjFhN2QvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y0OGI2MWE3ZC9iYWNrdXBSZXNvdXJjZUd1YXJkUHJveGllcz9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "652e51b4-5a8a-4b94-835b-d8bee63ec03c" + "319c9dfd-31cb-459e-9ef5-7e1a2c58c8c7" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesClient/4.3.2.0" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "98" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -2797,10 +2868,11 @@ "nosniff" ], "x-ms-request-id": [ - "a1eba7f8-d831-491c-a888-4077cdcd58f6" + "0ee4e053-f99b-4b31-8b78-1cf3a6bd3c03" ], "x-ms-client-request-id": [ - "652e51b4-5a8a-4b94-835b-d8bee63ec03c" + "319c9dfd-31cb-459e-9ef5-7e1a2c58c8c7", + "319c9dfd-31cb-459e-9ef5-7e1a2c58c8c7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2808,20 +2880,23 @@ "Server": [ "Microsoft-IIS/10.0" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "209" + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" ], "x-ms-correlation-request-id": [ - "a1eba7f8-d831-491c-a888-4077cdcd58f6" + "0ee4e053-f99b-4b31-8b78-1cf3a6bd3c03" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T204054Z:a1eba7f8-d831-491c-a888-4077cdcd58f6" + "WESTINDIA:20220516T180231Z:0ee4e053-f99b-4b31-8b78-1cf3a6bd3c03" ], "Date": [ - "Wed, 23 Feb 2022 20:40:54 GMT" + "Mon, 16 May 2022 18:02:31 GMT" ], "Content-Length": [ - "466" + "12" ], "Content-Type": [ "application/json" @@ -2830,26 +2905,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"location\": \"southeastasia\",\r\n \"name\": \"PSTestRSVbfbf59cf\",\r\n \"etag\": \"W/\\\"datetime'2022-02-23T20%3A40%3A52.8314446Z'\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateEndpointStateForBackup\": \"None\",\r\n \"privateEndpointStateForSiteRecovery\": \"None\"\r\n },\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n }\r\n}", - "StatusCode": 201 + "ResponseBody": "{\r\n \"value\": []\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupconfig/vaultconfig?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZiZjU5Y2YvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmJmNTljZi9iYWNrdXBjb25maWcvdmF1bHRjb25maWc/YXBpLXZlcnNpb249MjAyMS0xMC0wMQ==", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupResourceGuardProxies?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNDhiNjFhN2QvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y0OGI2MWE3ZC9iYWNrdXBSZXNvdXJjZUd1YXJkUHJveGllcz9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "04bc06ab-46ee-4d18-9bc1-0f9de2bb1c53" + "185a9a0f-1c4c-4dc6-84c1-8c19e340683b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -2863,11 +2938,11 @@ "nosniff" ], "x-ms-request-id": [ - "ad0e325f-b6c7-485b-b1ee-a4e17ddba2ea" + "a4304877-f29d-4d19-89eb-2d8cf6c87d30" ], "x-ms-client-request-id": [ - "04bc06ab-46ee-4d18-9bc1-0f9de2bb1c53", - "04bc06ab-46ee-4d18-9bc1-0f9de2bb1c53" + "185a9a0f-1c4c-4dc6-84c1-8c19e340683b", + "185a9a0f-1c4c-4dc6-84c1-8c19e340683b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2878,20 +2953,20 @@ "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "149" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" ], "x-ms-correlation-request-id": [ - "ad0e325f-b6c7-485b-b1ee-a4e17ddba2ea" + "a4304877-f29d-4d19-89eb-2d8cf6c87d30" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T204057Z:ad0e325f-b6c7-485b-b1ee-a4e17ddba2ea" + "WESTINDIA:20220516T185509Z:a4304877-f29d-4d19-89eb-2d8cf6c87d30" ], "Date": [ - "Wed, 23 Feb 2022 20:40:56 GMT" + "Mon, 16 May 2022 18:55:08 GMT" ], "Content-Length": [ - "380" + "12" ], "Content-Type": [ "application/json" @@ -2900,26 +2975,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/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}", + "ResponseBody": "{\r\n \"value\": []\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupconfig/vaultconfig?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZiZjU5Y2YvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmJmNTljZi9iYWNrdXBjb25maWcvdmF1bHRjb25maWc/YXBpLXZlcnNpb249MjAyMS0xMC0wMQ==", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupconfig/vaultconfig?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNDhiNjFhN2QvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y0OGI2MWE3ZC9iYWNrdXBjb25maWcvdmF1bHRjb25maWc/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "PATCH", "RequestBody": "{\r\n \"properties\": {\r\n \"enhancedSecurityState\": \"Enabled\",\r\n \"softDeleteFeatureState\": \"Disabled\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "04bc06ab-46ee-4d18-9bc1-0f9de2bb1c53" + "319c9dfd-31cb-459e-9ef5-7e1a2c58c8c7" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2939,11 +3014,11 @@ "nosniff" ], "x-ms-request-id": [ - "704a0041-65a5-4613-913a-da43951a2f0c" + "44174d9f-0125-4315-92ac-3532e3eee0d8" ], "x-ms-client-request-id": [ - "04bc06ab-46ee-4d18-9bc1-0f9de2bb1c53", - "04bc06ab-46ee-4d18-9bc1-0f9de2bb1c53" + "319c9dfd-31cb-459e-9ef5-7e1a2c58c8c7", + "319c9dfd-31cb-459e-9ef5-7e1a2c58c8c7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2958,13 +3033,13 @@ "1199" ], "x-ms-correlation-request-id": [ - "704a0041-65a5-4613-913a-da43951a2f0c" + "44174d9f-0125-4315-92ac-3532e3eee0d8" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T204103Z:704a0041-65a5-4613-913a-da43951a2f0c" + "WESTINDIA:20220516T180232Z:44174d9f-0125-4315-92ac-3532e3eee0d8" ], "Date": [ - "Wed, 23 Feb 2022 20:41:02 GMT" + "Mon, 16 May 2022 18:02:32 GMT" ], "Content-Length": [ "381" @@ -2976,26 +3051,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupProtectionContainers?$filter=friendlyName%20eq%20'PSTestVMbfbf50'%20and%20backupManagementType%20eq%20'AzureIaasVM'%20and%20status%20eq%20'Registered'&api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZiZjU5Y2YvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmJmNTljZi9iYWNrdXBQcm90ZWN0aW9uQ29udGFpbmVycz8kZmlsdGVyPWZyaWVuZGx5TmFtZSUyMGVxJTIwJ1BTVGVzdFZNYmZiZjUwJyUyMGFuZCUyMGJhY2t1cE1hbmFnZW1lbnRUeXBlJTIwZXElMjAnQXp1cmVJYWFzVk0nJTIwYW5kJTIwc3RhdHVzJTIwZXElMjAnUmVnaXN0ZXJlZCcmYXBpLXZlcnNpb249MjAyMS0xMC0wMQ==", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupProtectionContainers?$filter=friendlyName%20eq%20'PSTestVM48b610'%20and%20backupManagementType%20eq%20'AzureIaasVM'%20and%20status%20eq%20'Registered'&api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNDhiNjFhN2QvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y0OGI2MWE3ZC9iYWNrdXBQcm90ZWN0aW9uQ29udGFpbmVycz8kZmlsdGVyPWZyaWVuZGx5TmFtZSUyMGVxJTIwJ1BTVGVzdFZNNDhiNjEwJyUyMGFuZCUyMGJhY2t1cE1hbmFnZW1lbnRUeXBlJTIwZXElMjAnQXp1cmVJYWFzVk0nJTIwYW5kJTIwc3RhdHVzJTIwZXElMjAnUmVnaXN0ZXJlZCcmYXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "39d1640c-b7be-491b-9c88-20204fb6d567" + "5ec51142-e67b-4fab-ac1d-4e53037ad95f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -3009,11 +3084,11 @@ "nosniff" ], "x-ms-request-id": [ - "d176a157-8c8f-48da-a222-691dca1e27ab" + "5a882548-22af-4cf5-a6e9-a3984166e277" ], "x-ms-client-request-id": [ - "39d1640c-b7be-491b-9c88-20204fb6d567", - "39d1640c-b7be-491b-9c88-20204fb6d567" + "5ec51142-e67b-4fab-ac1d-4e53037ad95f", + "5ec51142-e67b-4fab-ac1d-4e53037ad95f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3028,13 +3103,13 @@ "149" ], "x-ms-correlation-request-id": [ - "d176a157-8c8f-48da-a222-691dca1e27ab" + "5a882548-22af-4cf5-a6e9-a3984166e277" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T204119Z:d176a157-8c8f-48da-a222-691dca1e27ab" + "WESTINDIA:20220516T180238Z:5a882548-22af-4cf5-a6e9-a3984166e277" ], "Date": [ - "Wed, 23 Feb 2022 20:41:19 GMT" + "Mon, 16 May 2022 18:02:37 GMT" ], "Content-Length": [ "12" @@ -3050,22 +3125,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupProtectionContainers?$filter=friendlyName%20eq%20'PSTestVMbfbf50'%20and%20backupManagementType%20eq%20'AzureIaasVM'%20and%20status%20eq%20'Registered'&api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZiZjU5Y2YvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmJmNTljZi9iYWNrdXBQcm90ZWN0aW9uQ29udGFpbmVycz8kZmlsdGVyPWZyaWVuZGx5TmFtZSUyMGVxJTIwJ1BTVGVzdFZNYmZiZjUwJyUyMGFuZCUyMGJhY2t1cE1hbmFnZW1lbnRUeXBlJTIwZXElMjAnQXp1cmVJYWFzVk0nJTIwYW5kJTIwc3RhdHVzJTIwZXElMjAnUmVnaXN0ZXJlZCcmYXBpLXZlcnNpb249MjAyMS0xMC0wMQ==", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupProtectionContainers?$filter=friendlyName%20eq%20'PSTestVM48b610'%20and%20backupManagementType%20eq%20'AzureIaasVM'%20and%20status%20eq%20'Registered'&api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNDhiNjFhN2QvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y0OGI2MWE3ZC9iYWNrdXBQcm90ZWN0aW9uQ29udGFpbmVycz8kZmlsdGVyPWZyaWVuZGx5TmFtZSUyMGVxJTIwJ1BTVGVzdFZNNDhiNjEwJyUyMGFuZCUyMGJhY2t1cE1hbmFnZW1lbnRUeXBlJTIwZXElMjAnQXp1cmVJYWFzVk0nJTIwYW5kJTIwc3RhdHVzJTIwZXElMjAnUmVnaXN0ZXJlZCcmYXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "075deefd-40a8-43c7-bda0-568284ca0e51" + "8d2ed282-2fe8-4e0f-a22e-089e54436f10" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -3079,11 +3154,11 @@ "nosniff" ], "x-ms-request-id": [ - "46b9b46a-dba7-4623-8726-769770d3aaf9" + "2599497b-829e-4119-99fa-2d1bd98625a5" ], "x-ms-client-request-id": [ - "075deefd-40a8-43c7-bda0-568284ca0e51", - "075deefd-40a8-43c7-bda0-568284ca0e51" + "8d2ed282-2fe8-4e0f-a22e-089e54436f10", + "8d2ed282-2fe8-4e0f-a22e-089e54436f10" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3098,13 +3173,13 @@ "148" ], "x-ms-correlation-request-id": [ - "46b9b46a-dba7-4623-8726-769770d3aaf9" + "2599497b-829e-4119-99fa-2d1bd98625a5" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T204158Z:46b9b46a-dba7-4623-8726-769770d3aaf9" + "WESTINDIA:20220516T180315Z:2599497b-829e-4119-99fa-2d1bd98625a5" ], "Date": [ - "Wed, 23 Feb 2022 20:41:58 GMT" + "Mon, 16 May 2022 18:03:14 GMT" ], "Content-Length": [ "914" @@ -3116,26 +3191,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrgbfbf59cf;pstestvmbfbf50\",\r\n \"name\": \"IaasVMContainer;iaasvmcontainerv2;pstestrgbfbf59cf;pstestvmbfbf50\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers\",\r\n \"properties\": {\r\n \"virtualMachineId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.Compute/virtualMachines/PSTestVMbfbf50\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"resourceGroup\": \"PSTestRGbfbf59cf\",\r\n \"friendlyName\": \"PSTestVMbfbf50\",\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrg48b61a7d;pstestvm48b610\",\r\n \"name\": \"IaasVMContainer;iaasvmcontainerv2;pstestrg48b61a7d;pstestvm48b610\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers\",\r\n \"properties\": {\r\n \"virtualMachineId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.Compute/virtualMachines/PSTestVM48b610\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"resourceGroup\": \"PSTestRG48b61a7d\",\r\n \"friendlyName\": \"PSTestVM48b610\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupPolicies/DefaultPolicy?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZiZjU5Y2YvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmJmNTljZi9iYWNrdXBQb2xpY2llcy9EZWZhdWx0UG9saWN5P2FwaS12ZXJzaW9uPTIwMjEtMTAtMDE=", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupPolicies/DefaultPolicy?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNDhiNjFhN2QvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y0OGI2MWE3ZC9iYWNrdXBQb2xpY2llcy9EZWZhdWx0UG9saWN5P2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c8689202-64f2-4f77-a5b8-fe4b45744b65" + "e8c45ed6-b616-4e96-b995-292c11887545" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -3149,11 +3224,11 @@ "nosniff" ], "x-ms-request-id": [ - "1c1f6485-d9f7-4c2d-94be-6f3bea3b9727" + "3bb8a237-65ec-4e65-a742-ebabbeae8074" ], "x-ms-client-request-id": [ - "c8689202-64f2-4f77-a5b8-fe4b45744b65", - "c8689202-64f2-4f77-a5b8-fe4b45744b65" + "e8c45ed6-b616-4e96-b995-292c11887545", + "e8c45ed6-b616-4e96-b995-292c11887545" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3168,13 +3243,13 @@ "149" ], "x-ms-correlation-request-id": [ - "1c1f6485-d9f7-4c2d-94be-6f3bea3b9727" + "3bb8a237-65ec-4e65-a742-ebabbeae8074" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T204120Z:1c1f6485-d9f7-4c2d-94be-6f3bea3b9727" + "WESTINDIA:20220516T180238Z:3bb8a237-65ec-4e65-a742-ebabbeae8074" ], "Date": [ - "Wed, 23 Feb 2022 20:41:20 GMT" + "Mon, 16 May 2022 18:02:38 GMT" ], "Content-Length": [ "762" @@ -3186,26 +3261,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/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 \"2022-02-24T06: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 \"2022-02-24T06:30:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 30,\r\n \"durationType\": \"Days\"\r\n }\r\n }\r\n },\r\n \"instantRpRetentionRangeInDays\": 2,\r\n \"timeZone\": \"UTC\",\r\n \"protectedItemsCount\": 0\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/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 \"2022-05-17T04:00:00Z\"\r\n ],\r\n \"scheduleWeeklyFrequency\": 0\r\n },\r\n \"retentionPolicy\": {\r\n \"retentionPolicyType\": \"LongTermRetentionPolicy\",\r\n \"dailySchedule\": {\r\n \"retentionTimes\": [\r\n \"2022-05-17T04:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 30,\r\n \"durationType\": \"Days\"\r\n }\r\n }\r\n },\r\n \"instantRpRetentionRangeInDays\": 2,\r\n \"timeZone\": \"UTC\",\r\n \"protectedItemsCount\": 0\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupProtectableItems?$filter=backupManagementType%20eq%20'AzureIaasVM'&api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZiZjU5Y2YvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmJmNTljZi9iYWNrdXBQcm90ZWN0YWJsZUl0ZW1zPyRmaWx0ZXI9YmFja3VwTWFuYWdlbWVudFR5cGUlMjBlcSUyMCdBenVyZUlhYXNWTScmYXBpLXZlcnNpb249MjAyMS0xMC0wMQ==", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupProtectableItems?$filter=backupManagementType%20eq%20'AzureIaasVM'&api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNDhiNjFhN2QvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y0OGI2MWE3ZC9iYWNrdXBQcm90ZWN0YWJsZUl0ZW1zPyRmaWx0ZXI9YmFja3VwTWFuYWdlbWVudFR5cGUlMjBlcSUyMCdBenVyZUlhYXNWTScmYXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0f4a2fb4-8ccf-4a9d-95da-27fe840de79a" + "9ab75436-1885-41e6-811a-74e3dff4f44d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -3219,11 +3294,11 @@ "nosniff" ], "x-ms-request-id": [ - "2d11609a-cc07-46eb-9665-7949eab0f3d9" + "1f424f40-67a9-42fb-8938-cafd0803e11d" ], "x-ms-client-request-id": [ - "0f4a2fb4-8ccf-4a9d-95da-27fe840de79a", - "0f4a2fb4-8ccf-4a9d-95da-27fe840de79a" + "9ab75436-1885-41e6-811a-74e3dff4f44d", + "9ab75436-1885-41e6-811a-74e3dff4f44d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3238,16 +3313,16 @@ "149" ], "x-ms-correlation-request-id": [ - "2d11609a-cc07-46eb-9665-7949eab0f3d9" + "1f424f40-67a9-42fb-8938-cafd0803e11d" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T204121Z:2d11609a-cc07-46eb-9665-7949eab0f3d9" + "WESTINDIA:20220516T180239Z:1f424f40-67a9-42fb-8938-cafd0803e11d" ], "Date": [ - "Wed, 23 Feb 2022 20:41:21 GMT" + "Mon, 16 May 2022 18:02:39 GMT" ], "Content-Length": [ - "905" + "7033" ], "Content-Type": [ "application/json" @@ -3256,26 +3331,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrgbfbf59cf;pstestvmbfbf50/protectableItems/vm;iaasvmcontainerv2;pstestrgbfbf59cf;pstestvmbfbf50\",\r\n \"name\": \"iaasvmcontainerv2;pstestrgbfbf59cf;pstestvmbfbf50\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems\",\r\n \"properties\": {\r\n \"virtualMachineId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.Compute/virtualMachines/PSTestVMbfbf50\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"resourceGroup\": \"PSTestRGbfbf59cf\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"protectableItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"friendlyName\": \"PSTestVMbfbf50\",\r\n \"protectionState\": \"NotProtected\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;akneema;akneema-hana-vm/protectableItems/vm;iaasvmcontainerv2;akneema;akneema-hana-vm\",\r\n \"name\": \"iaasvmcontainerv2;akneema;akneema-hana-vm\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems\",\r\n \"properties\": {\r\n \"virtualMachineId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/akneema/providers/Microsoft.Compute/virtualMachines/akneema-hana-vm\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"resourceGroup\": \"akneema\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"protectableItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"friendlyName\": \"akneema-hana-vm\",\r\n \"protectionState\": \"NotProtected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;containerautoprotection;shrja-2019/protectableItems/vm;iaasvmcontainerv2;containerautoprotection;shrja-2019\",\r\n \"name\": \"iaasvmcontainerv2;containerautoprotection;shrja-2019\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems\",\r\n \"properties\": {\r\n \"virtualMachineId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/ContainerAutoProtection/providers/Microsoft.Compute/virtualMachines/shrja-2019\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"resourceGroup\": \"ContainerAutoProtection\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"protectableItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"friendlyName\": \"shrja-2019\",\r\n \"protectionState\": \"NotProtected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrg48b61a7d;pstestvm48b610/protectableItems/vm;iaasvmcontainerv2;pstestrg48b61a7d;pstestvm48b610\",\r\n \"name\": \"iaasvmcontainerv2;pstestrg48b61a7d;pstestvm48b610\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems\",\r\n \"properties\": {\r\n \"virtualMachineId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.Compute/virtualMachines/PSTestVM48b610\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"resourceGroup\": \"PSTestRG48b61a7d\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"protectableItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"friendlyName\": \"PSTestVM48b610\",\r\n \"protectionState\": \"NotProtected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestwlrg1bca8;pstestwlvm1bca8/protectableItems/vm;iaasvmcontainerv2;pstestwlrg1bca8;pstestwlvm1bca8\",\r\n \"name\": \"iaasvmcontainerv2;pstestwlrg1bca8;pstestwlvm1bca8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems\",\r\n \"properties\": {\r\n \"virtualMachineId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/pstestwlRG1bca8/providers/Microsoft.Compute/virtualMachines/pstestwlvm1bca8\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"resourceGroup\": \"pstestwlRG1bca8\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"protectableItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"friendlyName\": \"pstestwlvm1bca8\",\r\n \"protectionState\": \"NotProtected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;shrja2008_group;shrja2008/protectableItems/vm;iaasvmcontainerv2;shrja2008_group;shrja2008\",\r\n \"name\": \"iaasvmcontainerv2;shrja2008_group;shrja2008\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems\",\r\n \"properties\": {\r\n \"virtualMachineId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/shrja2008_group/providers/Microsoft.Compute/virtualMachines/shrja2008\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"resourceGroup\": \"shrja2008_group\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"protectableItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"friendlyName\": \"shrja2008\",\r\n \"protectionState\": \"NotProtected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;shswain-rg-donotuse;dsdsdsad/protectableItems/vm;iaasvmcontainerv2;shswain-rg-donotuse;dsdsdsad\",\r\n \"name\": \"iaasvmcontainerv2;shswain-rg-donotuse;dsdsdsad\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems\",\r\n \"properties\": {\r\n \"virtualMachineId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/shswain-rg-donotuse/providers/Microsoft.Compute/virtualMachines/dsdsdsad\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"resourceGroup\": \"shswain-rg-donotuse\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"protectableItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"friendlyName\": \"dsdsdsad\",\r\n \"protectionState\": \"NotProtected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;shswain-rg-donotuse;iumjjkuui/protectableItems/vm;iaasvmcontainerv2;shswain-rg-donotuse;iumjjkuui\",\r\n \"name\": \"iaasvmcontainerv2;shswain-rg-donotuse;iumjjkuui\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems\",\r\n \"properties\": {\r\n \"virtualMachineId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/shswain-rg-donotuse/providers/Microsoft.Compute/virtualMachines/iumjjkuui\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"resourceGroup\": \"shswain-rg-donotuse\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"protectableItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"friendlyName\": \"iumjjkuui\",\r\n \"protectionState\": \"NotProtected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;sisi-rsv;sisi-mercury/protectableItems/vm;iaasvmcontainerv2;sisi-rsv;sisi-mercury\",\r\n \"name\": \"iaasvmcontainerv2;sisi-rsv;sisi-mercury\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems\",\r\n \"properties\": {\r\n \"virtualMachineId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/sisi-RSV/providers/Microsoft.Compute/virtualMachines/sisi-mercury\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"resourceGroup\": \"sisi-RSV\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"protectableItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"friendlyName\": \"sisi-mercury\",\r\n \"protectionState\": \"NotProtected\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupFabrics/Azure/protectionContainers/IaasVMContainer%3Biaasvmcontainerv2%3Bpstestrgbfbf59cf%3Bpstestvmbfbf50/protectedItems/vm%3Biaasvmcontainerv2%3Bpstestrgbfbf59cf%3Bpstestvmbfbf50?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZiZjU5Y2YvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmJmNTljZi9iYWNrdXBGYWJyaWNzL0F6dXJlL3Byb3RlY3Rpb25Db250YWluZXJzL0lhYXNWTUNvbnRhaW5lciUzQmlhYXN2bWNvbnRhaW5lcnYyJTNCcHN0ZXN0cmdiZmJmNTljZiUzQnBzdGVzdHZtYmZiZjUwL3Byb3RlY3RlZEl0ZW1zL3ZtJTNCaWFhc3ZtY29udGFpbmVydjIlM0Jwc3Rlc3RyZ2JmYmY1OWNmJTNCcHN0ZXN0dm1iZmJmNTA/YXBpLXZlcnNpb249MjAyMS0xMC0wMQ==", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupFabrics/Azure/protectionContainers/IaasVMContainer%3Biaasvmcontainerv2%3Bpstestrg48b61a7d%3Bpstestvm48b610/protectedItems/vm%3Biaasvmcontainerv2%3Bpstestrg48b61a7d%3Bpstestvm48b610?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNDhiNjFhN2QvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y0OGI2MWE3ZC9iYWNrdXBGYWJyaWNzL0F6dXJlL3Byb3RlY3Rpb25Db250YWluZXJzL0lhYXNWTUNvbnRhaW5lciUzQmlhYXN2bWNvbnRhaW5lcnYyJTNCcHN0ZXN0cmc0OGI2MWE3ZCUzQnBzdGVzdHZtNDhiNjEwL3Byb3RlY3RlZEl0ZW1zL3ZtJTNCaWFhc3ZtY29udGFpbmVydjIlM0Jwc3Rlc3RyZzQ4YjYxYTdkJTNCcHN0ZXN0dm00OGI2MTA/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"protectedItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"sourceResourceId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.Compute/virtualMachines/PSTestVMbfbf50\",\r\n \"policyId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupPolicies/DefaultPolicy\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"protectedItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"sourceResourceId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.Compute/virtualMachines/PSTestVM48b610\",\r\n \"policyId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupPolicies/DefaultPolicy\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "0f4a2fb4-8ccf-4a9d-95da-27fe840de79a" + "9ab75436-1885-41e6-811a-74e3dff4f44d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3292,23 +3367,23 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrgbfbf59cf;pstestvmbfbf50/protectedItems/vm;iaasvmcontainerv2;pstestrgbfbf59cf;pstestvmbfbf50/operationResults/f495a13e-027e-4d2c-b9db-a95112f4e511?api-version=2021-10-01" + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrg48b61a7d;pstestvm48b610/protectedItems/vm;iaasvmcontainerv2;pstestrg48b61a7d;pstestvm48b610/operationResults/b151fb5e-d99b-46f6-b09c-dcff00889580?api-version=2022-02-01" ], "Retry-After": [ "60" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrgbfbf59cf;pstestvmbfbf50/protectedItems/vm;iaasvmcontainerv2;pstestrgbfbf59cf;pstestvmbfbf50/operationsStatus/f495a13e-027e-4d2c-b9db-a95112f4e511?api-version=2021-10-01" + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrg48b61a7d;pstestvm48b610/protectedItems/vm;iaasvmcontainerv2;pstestrg48b61a7d;pstestvm48b610/operationsStatus/b151fb5e-d99b-46f6-b09c-dcff00889580?api-version=2022-02-01" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "083557c0-5892-4d57-abb2-414581a91d16" + "9ac1cdd0-de8a-4aec-aee6-7074ef61f7d9" ], "x-ms-client-request-id": [ - "0f4a2fb4-8ccf-4a9d-95da-27fe840de79a", - "0f4a2fb4-8ccf-4a9d-95da-27fe840de79a" + "9ab75436-1885-41e6-811a-74e3dff4f44d", + "9ab75436-1885-41e6-811a-74e3dff4f44d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3320,13 +3395,13 @@ "1198" ], "x-ms-correlation-request-id": [ - "083557c0-5892-4d57-abb2-414581a91d16" + "9ac1cdd0-de8a-4aec-aee6-7074ef61f7d9" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T204123Z:083557c0-5892-4d57-abb2-414581a91d16" + "WESTINDIA:20220516T180240Z:9ac1cdd0-de8a-4aec-aee6-7074ef61f7d9" ], "Date": [ - "Wed, 23 Feb 2022 20:41:23 GMT" + "Mon, 16 May 2022 18:02:40 GMT" ], "Expires": [ "-1" @@ -3339,22 +3414,22 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupOperations/f495a13e-027e-4d2c-b9db-a95112f4e511?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZiZjU5Y2YvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmJmNTljZi9iYWNrdXBPcGVyYXRpb25zL2Y0OTVhMTNlLTAyN2UtNGQyYy1iOWRiLWE5NTExMmY0ZTUxMT9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupOperations/b151fb5e-d99b-46f6-b09c-dcff00889580?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNDhiNjFhN2QvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y0OGI2MWE3ZC9iYWNrdXBPcGVyYXRpb25zL2IxNTFmYjVlLWQ5OWItNDZmNi1iMDljLWRjZmYwMDg4OTU4MD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0f4a2fb4-8ccf-4a9d-95da-27fe840de79a" + "9ab75436-1885-41e6-811a-74e3dff4f44d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -3368,11 +3443,11 @@ "nosniff" ], "x-ms-request-id": [ - "3147ba16-09c8-43fb-b4db-a9fed8059617" + "40f03770-fa57-4c07-9c46-c0be7d0288c7" ], "x-ms-client-request-id": [ - "0f4a2fb4-8ccf-4a9d-95da-27fe840de79a", - "0f4a2fb4-8ccf-4a9d-95da-27fe840de79a" + "9ab75436-1885-41e6-811a-74e3dff4f44d", + "9ab75436-1885-41e6-811a-74e3dff4f44d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3387,13 +3462,13 @@ "149" ], "x-ms-correlation-request-id": [ - "3147ba16-09c8-43fb-b4db-a9fed8059617" + "40f03770-fa57-4c07-9c46-c0be7d0288c7" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T204123Z:3147ba16-09c8-43fb-b4db-a9fed8059617" + "WESTINDIA:20220516T180241Z:40f03770-fa57-4c07-9c46-c0be7d0288c7" ], "Date": [ - "Wed, 23 Feb 2022 20:41:23 GMT" + "Mon, 16 May 2022 18:02:40 GMT" ], "Content-Length": [ "188" @@ -3405,26 +3480,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"f495a13e-027e-4d2c-b9db-a95112f4e511\",\r\n \"name\": \"f495a13e-027e-4d2c-b9db-a95112f4e511\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-23T20:41:23.0058629Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"b151fb5e-d99b-46f6-b09c-dcff00889580\",\r\n \"name\": \"b151fb5e-d99b-46f6-b09c-dcff00889580\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T18:02:40.4704987Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupOperations/f495a13e-027e-4d2c-b9db-a95112f4e511?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZiZjU5Y2YvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmJmNTljZi9iYWNrdXBPcGVyYXRpb25zL2Y0OTVhMTNlLTAyN2UtNGQyYy1iOWRiLWE5NTExMmY0ZTUxMT9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupOperations/b151fb5e-d99b-46f6-b09c-dcff00889580?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNDhiNjFhN2QvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y0OGI2MWE3ZC9iYWNrdXBPcGVyYXRpb25zL2IxNTFmYjVlLWQ5OWItNDZmNi1iMDljLWRjZmYwMDg4OTU4MD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0f4a2fb4-8ccf-4a9d-95da-27fe840de79a" + "9ab75436-1885-41e6-811a-74e3dff4f44d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -3438,11 +3513,11 @@ "nosniff" ], "x-ms-request-id": [ - "1f72d68d-f635-4b42-a6b7-1f366cce68b2" + "cbe1f0ad-36af-4176-ab1f-be9c5d4b5b23" ], "x-ms-client-request-id": [ - "0f4a2fb4-8ccf-4a9d-95da-27fe840de79a", - "0f4a2fb4-8ccf-4a9d-95da-27fe840de79a" + "9ab75436-1885-41e6-811a-74e3dff4f44d", + "9ab75436-1885-41e6-811a-74e3dff4f44d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3457,13 +3532,13 @@ "148" ], "x-ms-correlation-request-id": [ - "1f72d68d-f635-4b42-a6b7-1f366cce68b2" + "cbe1f0ad-36af-4176-ab1f-be9c5d4b5b23" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T204129Z:1f72d68d-f635-4b42-a6b7-1f366cce68b2" + "WESTINDIA:20220516T180246Z:cbe1f0ad-36af-4176-ab1f-be9c5d4b5b23" ], "Date": [ - "Wed, 23 Feb 2022 20:41:29 GMT" + "Mon, 16 May 2022 18:02:46 GMT" ], "Content-Length": [ "188" @@ -3475,26 +3550,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"f495a13e-027e-4d2c-b9db-a95112f4e511\",\r\n \"name\": \"f495a13e-027e-4d2c-b9db-a95112f4e511\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-23T20:41:23.0058629Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"b151fb5e-d99b-46f6-b09c-dcff00889580\",\r\n \"name\": \"b151fb5e-d99b-46f6-b09c-dcff00889580\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T18:02:40.4704987Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupOperations/f495a13e-027e-4d2c-b9db-a95112f4e511?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZiZjU5Y2YvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmJmNTljZi9iYWNrdXBPcGVyYXRpb25zL2Y0OTVhMTNlLTAyN2UtNGQyYy1iOWRiLWE5NTExMmY0ZTUxMT9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupOperations/b151fb5e-d99b-46f6-b09c-dcff00889580?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNDhiNjFhN2QvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y0OGI2MWE3ZC9iYWNrdXBPcGVyYXRpb25zL2IxNTFmYjVlLWQ5OWItNDZmNi1iMDljLWRjZmYwMDg4OTU4MD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0f4a2fb4-8ccf-4a9d-95da-27fe840de79a" + "9ab75436-1885-41e6-811a-74e3dff4f44d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -3508,11 +3583,11 @@ "nosniff" ], "x-ms-request-id": [ - "86284874-ebd3-4848-85ca-c3d294be47fe" + "4bbf1eaa-a374-44f5-8aac-71fea7a8cbeb" ], "x-ms-client-request-id": [ - "0f4a2fb4-8ccf-4a9d-95da-27fe840de79a", - "0f4a2fb4-8ccf-4a9d-95da-27fe840de79a" + "9ab75436-1885-41e6-811a-74e3dff4f44d", + "9ab75436-1885-41e6-811a-74e3dff4f44d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3527,13 +3602,13 @@ "147" ], "x-ms-correlation-request-id": [ - "86284874-ebd3-4848-85ca-c3d294be47fe" + "4bbf1eaa-a374-44f5-8aac-71fea7a8cbeb" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T204135Z:86284874-ebd3-4848-85ca-c3d294be47fe" + "WESTINDIA:20220516T180252Z:4bbf1eaa-a374-44f5-8aac-71fea7a8cbeb" ], "Date": [ - "Wed, 23 Feb 2022 20:41:34 GMT" + "Mon, 16 May 2022 18:02:51 GMT" ], "Content-Length": [ "188" @@ -3545,26 +3620,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"f495a13e-027e-4d2c-b9db-a95112f4e511\",\r\n \"name\": \"f495a13e-027e-4d2c-b9db-a95112f4e511\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-23T20:41:23.0058629Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"b151fb5e-d99b-46f6-b09c-dcff00889580\",\r\n \"name\": \"b151fb5e-d99b-46f6-b09c-dcff00889580\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T18:02:40.4704987Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupOperations/f495a13e-027e-4d2c-b9db-a95112f4e511?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZiZjU5Y2YvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmJmNTljZi9iYWNrdXBPcGVyYXRpb25zL2Y0OTVhMTNlLTAyN2UtNGQyYy1iOWRiLWE5NTExMmY0ZTUxMT9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupOperations/b151fb5e-d99b-46f6-b09c-dcff00889580?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNDhiNjFhN2QvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y0OGI2MWE3ZC9iYWNrdXBPcGVyYXRpb25zL2IxNTFmYjVlLWQ5OWItNDZmNi1iMDljLWRjZmYwMDg4OTU4MD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0f4a2fb4-8ccf-4a9d-95da-27fe840de79a" + "9ab75436-1885-41e6-811a-74e3dff4f44d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -3578,11 +3653,11 @@ "nosniff" ], "x-ms-request-id": [ - "3060cdcd-47ab-4189-86e5-e9f2de5207ee" + "79916c26-5a0b-4900-a789-b6959728445d" ], "x-ms-client-request-id": [ - "0f4a2fb4-8ccf-4a9d-95da-27fe840de79a", - "0f4a2fb4-8ccf-4a9d-95da-27fe840de79a" + "9ab75436-1885-41e6-811a-74e3dff4f44d", + "9ab75436-1885-41e6-811a-74e3dff4f44d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3597,13 +3672,13 @@ "146" ], "x-ms-correlation-request-id": [ - "3060cdcd-47ab-4189-86e5-e9f2de5207ee" + "79916c26-5a0b-4900-a789-b6959728445d" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T204140Z:3060cdcd-47ab-4189-86e5-e9f2de5207ee" + "WESTINDIA:20220516T180257Z:79916c26-5a0b-4900-a789-b6959728445d" ], "Date": [ - "Wed, 23 Feb 2022 20:41:40 GMT" + "Mon, 16 May 2022 18:02:57 GMT" ], "Content-Length": [ "188" @@ -3615,26 +3690,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"f495a13e-027e-4d2c-b9db-a95112f4e511\",\r\n \"name\": \"f495a13e-027e-4d2c-b9db-a95112f4e511\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-23T20:41:23.0058629Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"b151fb5e-d99b-46f6-b09c-dcff00889580\",\r\n \"name\": \"b151fb5e-d99b-46f6-b09c-dcff00889580\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T18:02:40.4704987Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupOperations/f495a13e-027e-4d2c-b9db-a95112f4e511?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZiZjU5Y2YvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmJmNTljZi9iYWNrdXBPcGVyYXRpb25zL2Y0OTVhMTNlLTAyN2UtNGQyYy1iOWRiLWE5NTExMmY0ZTUxMT9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupOperations/b151fb5e-d99b-46f6-b09c-dcff00889580?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNDhiNjFhN2QvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y0OGI2MWE3ZC9iYWNrdXBPcGVyYXRpb25zL2IxNTFmYjVlLWQ5OWItNDZmNi1iMDljLWRjZmYwMDg4OTU4MD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0f4a2fb4-8ccf-4a9d-95da-27fe840de79a" + "9ab75436-1885-41e6-811a-74e3dff4f44d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -3648,11 +3723,11 @@ "nosniff" ], "x-ms-request-id": [ - "c28672b5-43fe-49d4-9497-8ee2d4a5c5c4" + "c3e5dfbc-ab62-48c8-b384-442712375852" ], "x-ms-client-request-id": [ - "0f4a2fb4-8ccf-4a9d-95da-27fe840de79a", - "0f4a2fb4-8ccf-4a9d-95da-27fe840de79a" + "9ab75436-1885-41e6-811a-74e3dff4f44d", + "9ab75436-1885-41e6-811a-74e3dff4f44d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3667,13 +3742,13 @@ "145" ], "x-ms-correlation-request-id": [ - "c28672b5-43fe-49d4-9497-8ee2d4a5c5c4" + "c3e5dfbc-ab62-48c8-b384-442712375852" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T204146Z:c28672b5-43fe-49d4-9497-8ee2d4a5c5c4" + "WESTINDIA:20220516T180303Z:c3e5dfbc-ab62-48c8-b384-442712375852" ], "Date": [ - "Wed, 23 Feb 2022 20:41:45 GMT" + "Mon, 16 May 2022 18:03:02 GMT" ], "Content-Length": [ "188" @@ -3685,26 +3760,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"f495a13e-027e-4d2c-b9db-a95112f4e511\",\r\n \"name\": \"f495a13e-027e-4d2c-b9db-a95112f4e511\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-23T20:41:23.0058629Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"b151fb5e-d99b-46f6-b09c-dcff00889580\",\r\n \"name\": \"b151fb5e-d99b-46f6-b09c-dcff00889580\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T18:02:40.4704987Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupOperations/f495a13e-027e-4d2c-b9db-a95112f4e511?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZiZjU5Y2YvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmJmNTljZi9iYWNrdXBPcGVyYXRpb25zL2Y0OTVhMTNlLTAyN2UtNGQyYy1iOWRiLWE5NTExMmY0ZTUxMT9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupOperations/b151fb5e-d99b-46f6-b09c-dcff00889580?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNDhiNjFhN2QvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y0OGI2MWE3ZC9iYWNrdXBPcGVyYXRpb25zL2IxNTFmYjVlLWQ5OWItNDZmNi1iMDljLWRjZmYwMDg4OTU4MD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0f4a2fb4-8ccf-4a9d-95da-27fe840de79a" + "9ab75436-1885-41e6-811a-74e3dff4f44d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -3718,11 +3793,11 @@ "nosniff" ], "x-ms-request-id": [ - "cd71800c-77c3-48b6-a448-9ab506785c0b" + "14e6d971-c7ca-448d-982a-fd97fd98f8d5" ], "x-ms-client-request-id": [ - "0f4a2fb4-8ccf-4a9d-95da-27fe840de79a", - "0f4a2fb4-8ccf-4a9d-95da-27fe840de79a" + "9ab75436-1885-41e6-811a-74e3dff4f44d", + "9ab75436-1885-41e6-811a-74e3dff4f44d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3737,13 +3812,13 @@ "144" ], "x-ms-correlation-request-id": [ - "cd71800c-77c3-48b6-a448-9ab506785c0b" + "14e6d971-c7ca-448d-982a-fd97fd98f8d5" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T204151Z:cd71800c-77c3-48b6-a448-9ab506785c0b" + "WESTINDIA:20220516T180308Z:14e6d971-c7ca-448d-982a-fd97fd98f8d5" ], "Date": [ - "Wed, 23 Feb 2022 20:41:51 GMT" + "Mon, 16 May 2022 18:03:07 GMT" ], "Content-Length": [ "188" @@ -3755,26 +3830,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"f495a13e-027e-4d2c-b9db-a95112f4e511\",\r\n \"name\": \"f495a13e-027e-4d2c-b9db-a95112f4e511\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-23T20:41:23.0058629Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"b151fb5e-d99b-46f6-b09c-dcff00889580\",\r\n \"name\": \"b151fb5e-d99b-46f6-b09c-dcff00889580\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T18:02:40.4704987Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupOperations/f495a13e-027e-4d2c-b9db-a95112f4e511?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZiZjU5Y2YvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmJmNTljZi9iYWNrdXBPcGVyYXRpb25zL2Y0OTVhMTNlLTAyN2UtNGQyYy1iOWRiLWE5NTExMmY0ZTUxMT9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupOperations/b151fb5e-d99b-46f6-b09c-dcff00889580?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNDhiNjFhN2QvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y0OGI2MWE3ZC9iYWNrdXBPcGVyYXRpb25zL2IxNTFmYjVlLWQ5OWItNDZmNi1iMDljLWRjZmYwMDg4OTU4MD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0f4a2fb4-8ccf-4a9d-95da-27fe840de79a" + "9ab75436-1885-41e6-811a-74e3dff4f44d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -3788,11 +3863,11 @@ "nosniff" ], "x-ms-request-id": [ - "c2f7e389-20a2-481e-a585-904840f3c665" + "746cbf32-c83f-45e5-b74b-258d1a4272bb" ], "x-ms-client-request-id": [ - "0f4a2fb4-8ccf-4a9d-95da-27fe840de79a", - "0f4a2fb4-8ccf-4a9d-95da-27fe840de79a" + "9ab75436-1885-41e6-811a-74e3dff4f44d", + "9ab75436-1885-41e6-811a-74e3dff4f44d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3807,13 +3882,13 @@ "143" ], "x-ms-correlation-request-id": [ - "c2f7e389-20a2-481e-a585-904840f3c665" + "746cbf32-c83f-45e5-b74b-258d1a4272bb" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T204157Z:c2f7e389-20a2-481e-a585-904840f3c665" + "WESTINDIA:20220516T180314Z:746cbf32-c83f-45e5-b74b-258d1a4272bb" ], "Date": [ - "Wed, 23 Feb 2022 20:41:56 GMT" + "Mon, 16 May 2022 18:03:13 GMT" ], "Content-Length": [ "304" @@ -3825,26 +3900,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"f495a13e-027e-4d2c-b9db-a95112f4e511\",\r\n \"name\": \"f495a13e-027e-4d2c-b9db-a95112f4e511\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-02-23T20:41:23.0058629Z\",\r\n \"endTime\": \"2022-02-23T20:41:23.0058629Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"9326db77-3dae-4689-8b7a-18e162fc5afa\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"b151fb5e-d99b-46f6-b09c-dcff00889580\",\r\n \"name\": \"b151fb5e-d99b-46f6-b09c-dcff00889580\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-05-16T18:02:40.4704987Z\",\r\n \"endTime\": \"2022-05-16T18:02:40.4704987Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"86704beb-a7bf-4752-be1a-fc35867fb97a\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupOperations/f495a13e-027e-4d2c-b9db-a95112f4e511?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZiZjU5Y2YvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmJmNTljZi9iYWNrdXBPcGVyYXRpb25zL2Y0OTVhMTNlLTAyN2UtNGQyYy1iOWRiLWE5NTExMmY0ZTUxMT9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupOperations/b151fb5e-d99b-46f6-b09c-dcff00889580?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNDhiNjFhN2QvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y0OGI2MWE3ZC9iYWNrdXBPcGVyYXRpb25zL2IxNTFmYjVlLWQ5OWItNDZmNi1iMDljLWRjZmYwMDg4OTU4MD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0f4a2fb4-8ccf-4a9d-95da-27fe840de79a" + "9ab75436-1885-41e6-811a-74e3dff4f44d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -3858,11 +3933,11 @@ "nosniff" ], "x-ms-request-id": [ - "dcda1fe6-a5d6-434a-931d-be58f9ee51be" + "d0bbd3a0-3f2d-4251-b7b9-5d9e219a2f44" ], "x-ms-client-request-id": [ - "0f4a2fb4-8ccf-4a9d-95da-27fe840de79a", - "0f4a2fb4-8ccf-4a9d-95da-27fe840de79a" + "9ab75436-1885-41e6-811a-74e3dff4f44d", + "9ab75436-1885-41e6-811a-74e3dff4f44d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3877,13 +3952,13 @@ "142" ], "x-ms-correlation-request-id": [ - "dcda1fe6-a5d6-434a-931d-be58f9ee51be" + "d0bbd3a0-3f2d-4251-b7b9-5d9e219a2f44" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T204157Z:dcda1fe6-a5d6-434a-931d-be58f9ee51be" + "WESTINDIA:20220516T180314Z:d0bbd3a0-3f2d-4251-b7b9-5d9e219a2f44" ], "Date": [ - "Wed, 23 Feb 2022 20:41:57 GMT" + "Mon, 16 May 2022 18:03:13 GMT" ], "Content-Length": [ "304" @@ -3895,26 +3970,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"f495a13e-027e-4d2c-b9db-a95112f4e511\",\r\n \"name\": \"f495a13e-027e-4d2c-b9db-a95112f4e511\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-02-23T20:41:23.0058629Z\",\r\n \"endTime\": \"2022-02-23T20:41:23.0058629Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"9326db77-3dae-4689-8b7a-18e162fc5afa\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"b151fb5e-d99b-46f6-b09c-dcff00889580\",\r\n \"name\": \"b151fb5e-d99b-46f6-b09c-dcff00889580\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-05-16T18:02:40.4704987Z\",\r\n \"endTime\": \"2022-05-16T18:02:40.4704987Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"86704beb-a7bf-4752-be1a-fc35867fb97a\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupJobs/9326db77-3dae-4689-8b7a-18e162fc5afa?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZiZjU5Y2YvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmJmNTljZi9iYWNrdXBKb2JzLzkzMjZkYjc3LTNkYWUtNDY4OS04YjdhLTE4ZTE2MmZjNWFmYT9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupJobs/86704beb-a7bf-4752-be1a-fc35867fb97a?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNDhiNjFhN2QvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y0OGI2MWE3ZC9iYWNrdXBKb2JzLzg2NzA0YmViLWE3YmYtNDc1Mi1iZTFhLWZjMzU4NjdmYjk3YT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0f4a2fb4-8ccf-4a9d-95da-27fe840de79a" + "9ab75436-1885-41e6-811a-74e3dff4f44d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -3932,11 +4007,11 @@ "nosniff" ], "x-ms-request-id": [ - "d61675c2-2ac1-498b-b543-ad40664d9e33" + "8bec87dc-7f3d-46fa-8390-34045adb5aa8" ], "x-ms-client-request-id": [ - "0f4a2fb4-8ccf-4a9d-95da-27fe840de79a", - "0f4a2fb4-8ccf-4a9d-95da-27fe840de79a" + "9ab75436-1885-41e6-811a-74e3dff4f44d", + "9ab75436-1885-41e6-811a-74e3dff4f44d" ], "X-Powered-By": [ "ASP.NET" @@ -3948,13 +4023,13 @@ "149" ], "x-ms-correlation-request-id": [ - "d61675c2-2ac1-498b-b543-ad40664d9e33" + "8bec87dc-7f3d-46fa-8390-34045adb5aa8" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T204158Z:d61675c2-2ac1-498b-b543-ad40664d9e33" + "WESTINDIA:20220516T180314Z:8bec87dc-7f3d-46fa-8390-34045adb5aa8" ], "Date": [ - "Wed, 23 Feb 2022 20:41:57 GMT" + "Mon, 16 May 2022 18:03:14 GMT" ], "Content-Length": [ "840" @@ -3966,26 +4041,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupJobs/9326db77-3dae-4689-8b7a-18e162fc5afa\",\r\n \"name\": \"9326db77-3dae-4689-8b7a-18e162fc5afa\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgbfbf59cf;pstestvmbfbf50\",\r\n \"duration\": \"PT30.8599418S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvmbfbf50\",\r\n \"Policy Name\": \"DefaultPolicy\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvmbfbf50\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"ConfigureBackup\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-02-23T20:41:23.0058629Z\",\r\n \"endTime\": \"2022-02-23T20:41:53.8658047Z\",\r\n \"activityId\": \"0f4a2fb4-8ccf-4a9d-95da-27fe840de79a\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupJobs/86704beb-a7bf-4752-be1a-fc35867fb97a\",\r\n \"name\": \"86704beb-a7bf-4752-be1a-fc35867fb97a\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg48b61a7d;pstestvm48b610\",\r\n \"duration\": \"PT31.5661467S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm48b610\",\r\n \"Policy Name\": \"DefaultPolicy\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm48b610\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"ConfigureBackup\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-05-16T18:02:40.4704987Z\",\r\n \"endTime\": \"2022-05-16T18:03:12.0366454Z\",\r\n \"activityId\": \"9ab75436-1885-41e6-811a-74e3dff4f44d\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupProtectedItems?$filter=backupManagementType%20eq%20'AzureIaasVM'%20and%20itemType%20eq%20'VM'&api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZiZjU5Y2YvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmJmNTljZi9iYWNrdXBQcm90ZWN0ZWRJdGVtcz8kZmlsdGVyPWJhY2t1cE1hbmFnZW1lbnRUeXBlJTIwZXElMjAnQXp1cmVJYWFzVk0nJTIwYW5kJTIwaXRlbVR5cGUlMjBlcSUyMCdWTScmYXBpLXZlcnNpb249MjAyMS0xMC0wMQ==", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupProtectedItems?$filter=backupManagementType%20eq%20'AzureIaasVM'%20and%20itemType%20eq%20'VM'&api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNDhiNjFhN2QvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y0OGI2MWE3ZC9iYWNrdXBQcm90ZWN0ZWRJdGVtcz8kZmlsdGVyPWJhY2t1cE1hbmFnZW1lbnRUeXBlJTIwZXElMjAnQXp1cmVJYWFzVk0nJTIwYW5kJTIwaXRlbVR5cGUlMjBlcSUyMCdWTScmYXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "08e5214a-c22b-4165-abc9-214869573143" + "2c6d909b-a89a-4d60-8ba2-08ff73672cac" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -3999,11 +4074,11 @@ "nosniff" ], "x-ms-request-id": [ - "80c89f9a-a6ed-4bcc-a1cf-2fca6e253430" + "1d6f2b4d-df11-466d-ae6f-046795f4bedd" ], "x-ms-client-request-id": [ - "08e5214a-c22b-4165-abc9-214869573143", - "08e5214a-c22b-4165-abc9-214869573143" + "2c6d909b-a89a-4d60-8ba2-08ff73672cac", + "2c6d909b-a89a-4d60-8ba2-08ff73672cac" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4018,13 +4093,13 @@ "149" ], "x-ms-correlation-request-id": [ - "80c89f9a-a6ed-4bcc-a1cf-2fca6e253430" + "1d6f2b4d-df11-466d-ae6f-046795f4bedd" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T204159Z:80c89f9a-a6ed-4bcc-a1cf-2fca6e253430" + "WESTINDIA:20220516T180315Z:1d6f2b4d-df11-466d-ae6f-046795f4bedd" ], "Date": [ - "Wed, 23 Feb 2022 20:41:59 GMT" + "Mon, 16 May 2022 18:03:15 GMT" ], "Content-Length": [ "1495" @@ -4036,26 +4111,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrgbfbf59cf;pstestvmbfbf50/protectedItems/VM;iaasvmcontainerv2;pstestrgbfbf59cf;pstestvmbfbf50\",\r\n \"name\": \"VM;iaasvmcontainerv2;pstestrgbfbf59cf;pstestvmbfbf50\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems\",\r\n \"properties\": {\r\n \"kpisHealths\": {},\r\n \"friendlyName\": \"PSTestVMbfbf50\",\r\n \"virtualMachineId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.Compute/virtualMachines/PSTestVMbfbf50\",\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\": \"52777015141911\",\r\n \"protectedItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"workloadType\": \"VM\",\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgbfbf59cf;pstestvmbfbf50\",\r\n \"sourceResourceId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.Compute/virtualMachines/PSTestVMbfbf50\",\r\n \"policyId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupPolicies/DefaultPolicy\",\r\n \"policyName\": \"DefaultPolicy\",\r\n \"isArchiveEnabled\": false\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrg48b61a7d;pstestvm48b610/protectedItems/VM;iaasvmcontainerv2;pstestrg48b61a7d;pstestvm48b610\",\r\n \"name\": \"VM;iaasvmcontainerv2;pstestrg48b61a7d;pstestvm48b610\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems\",\r\n \"properties\": {\r\n \"kpisHealths\": {},\r\n \"friendlyName\": \"PSTestVM48b610\",\r\n \"virtualMachineId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.Compute/virtualMachines/PSTestVM48b610\",\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\": \"52777258963831\",\r\n \"protectedItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"workloadType\": \"VM\",\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg48b61a7d;pstestvm48b610\",\r\n \"sourceResourceId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.Compute/virtualMachines/PSTestVM48b610\",\r\n \"policyId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupPolicies/DefaultPolicy\",\r\n \"policyName\": \"DefaultPolicy\",\r\n \"isArchiveEnabled\": false\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupProtectedItems?$filter=backupManagementType%20eq%20'AzureIaasVM'%20and%20itemType%20eq%20'VM'&api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZiZjU5Y2YvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmJmNTljZi9iYWNrdXBQcm90ZWN0ZWRJdGVtcz8kZmlsdGVyPWJhY2t1cE1hbmFnZW1lbnRUeXBlJTIwZXElMjAnQXp1cmVJYWFzVk0nJTIwYW5kJTIwaXRlbVR5cGUlMjBlcSUyMCdWTScmYXBpLXZlcnNpb249MjAyMS0xMC0wMQ==", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupProtectedItems?$filter=backupManagementType%20eq%20'AzureIaasVM'%20and%20itemType%20eq%20'VM'&api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNDhiNjFhN2QvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y0OGI2MWE3ZC9iYWNrdXBQcm90ZWN0ZWRJdGVtcz8kZmlsdGVyPWJhY2t1cE1hbmFnZW1lbnRUeXBlJTIwZXElMjAnQXp1cmVJYWFzVk0nJTIwYW5kJTIwaXRlbVR5cGUlMjBlcSUyMCdWTScmYXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "dd6ff3c3-4258-4006-b44d-1b052495cdea" + "e17da599-2a2e-47d2-85d8-da4735fd7c26" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -4069,11 +4144,11 @@ "nosniff" ], "x-ms-request-id": [ - "9eb4e1e8-5ba8-4e1d-b3fe-3425a84d0f4a" + "9584eb85-fb76-4718-9186-4a3ea5eee4f4" ], "x-ms-client-request-id": [ - "dd6ff3c3-4258-4006-b44d-1b052495cdea", - "dd6ff3c3-4258-4006-b44d-1b052495cdea" + "e17da599-2a2e-47d2-85d8-da4735fd7c26", + "e17da599-2a2e-47d2-85d8-da4735fd7c26" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4088,16 +4163,16 @@ "148" ], "x-ms-correlation-request-id": [ - "9eb4e1e8-5ba8-4e1d-b3fe-3425a84d0f4a" + "9584eb85-fb76-4718-9186-4a3ea5eee4f4" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T214325Z:9eb4e1e8-5ba8-4e1d-b3fe-3425a84d0f4a" + "WESTINDIA:20220516T185508Z:9584eb85-fb76-4718-9186-4a3ea5eee4f4" ], "Date": [ - "Wed, 23 Feb 2022 21:43:25 GMT" + "Mon, 16 May 2022 18:55:07 GMT" ], "Content-Length": [ - "1868" + "1870" ], "Content-Type": [ "application/json" @@ -4106,26 +4181,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrgbfbf59cf;pstestvmbfbf50/protectedItems/VM;iaasvmcontainerv2;pstestrgbfbf59cf;pstestvmbfbf50\",\r\n \"name\": \"VM;iaasvmcontainerv2;pstestrgbfbf59cf;pstestvmbfbf50\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems\",\r\n \"properties\": {\r\n \"kpisHealths\": {\r\n \"BackupOperationStatusKPI\": {\r\n \"resourceHealthStatus\": \"Healthy\",\r\n \"resourceHealthDetails\": [\r\n {\r\n \"code\": 0,\r\n \"title\": \"Success\",\r\n \"message\": \"\",\r\n \"recommendations\": []\r\n }\r\n ]\r\n }\r\n },\r\n \"friendlyName\": \"PSTestVMbfbf50\",\r\n \"virtualMachineId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.Compute/virtualMachines/PSTestVMbfbf50\",\r\n \"protectionStatus\": \"Healthy\",\r\n \"protectionState\": \"Protected\",\r\n \"healthStatus\": \"Passed\",\r\n \"healthDetails\": [\r\n {\r\n \"code\": 400239,\r\n \"title\": \"IaasVmHealthGreenDefault\",\r\n \"message\": \"Backup pre-check status of this virtual machine is OK.\",\r\n \"recommendations\": []\r\n }\r\n ],\r\n \"lastBackupStatus\": \"Completed\",\r\n \"lastBackupTime\": \"2022-02-23T20:42:01.041925Z\",\r\n \"protectedItemDataId\": \"52777015141911\",\r\n \"protectedItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"workloadType\": \"VM\",\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgbfbf59cf;pstestvmbfbf50\",\r\n \"sourceResourceId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.Compute/virtualMachines/PSTestVMbfbf50\",\r\n \"policyId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupPolicies/DefaultPolicy\",\r\n \"policyName\": \"DefaultPolicy\",\r\n \"lastRecoveryPoint\": \"2022-02-23T20:42:08.174482Z\",\r\n \"isArchiveEnabled\": false\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrg48b61a7d;pstestvm48b610/protectedItems/VM;iaasvmcontainerv2;pstestrg48b61a7d;pstestvm48b610\",\r\n \"name\": \"VM;iaasvmcontainerv2;pstestrg48b61a7d;pstestvm48b610\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems\",\r\n \"properties\": {\r\n \"kpisHealths\": {\r\n \"BackupOperationStatusKPI\": {\r\n \"resourceHealthStatus\": \"Healthy\",\r\n \"resourceHealthDetails\": [\r\n {\r\n \"code\": 0,\r\n \"title\": \"Success\",\r\n \"message\": \"\",\r\n \"recommendations\": []\r\n }\r\n ]\r\n }\r\n },\r\n \"friendlyName\": \"PSTestVM48b610\",\r\n \"virtualMachineId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.Compute/virtualMachines/PSTestVM48b610\",\r\n \"protectionStatus\": \"Healthy\",\r\n \"protectionState\": \"Protected\",\r\n \"healthStatus\": \"Passed\",\r\n \"healthDetails\": [\r\n {\r\n \"code\": 400239,\r\n \"title\": \"IaasVmHealthGreenDefault\",\r\n \"message\": \"Backup pre-check status of this virtual machine is OK.\",\r\n \"recommendations\": []\r\n }\r\n ],\r\n \"lastBackupStatus\": \"Completed\",\r\n \"lastBackupTime\": \"2022-05-16T18:03:17.3965623Z\",\r\n \"protectedItemDataId\": \"52777258963831\",\r\n \"protectedItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"workloadType\": \"VM\",\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg48b61a7d;pstestvm48b610\",\r\n \"sourceResourceId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.Compute/virtualMachines/PSTestVM48b610\",\r\n \"policyId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupPolicies/DefaultPolicy\",\r\n \"policyName\": \"DefaultPolicy\",\r\n \"lastRecoveryPoint\": \"2022-05-16T18:03:29.9011089Z\",\r\n \"isArchiveEnabled\": false\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupFabrics/Azure/protectionContainers/IaasVMContainer%3Biaasvmcontainerv2%3Bpstestrgbfbf59cf%3Bpstestvmbfbf50/protectedItems/VM%3Biaasvmcontainerv2%3Bpstestrgbfbf59cf%3Bpstestvmbfbf50?$filter=expand%20eq%20'extendedinfo'&api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZiZjU5Y2YvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmJmNTljZi9iYWNrdXBGYWJyaWNzL0F6dXJlL3Byb3RlY3Rpb25Db250YWluZXJzL0lhYXNWTUNvbnRhaW5lciUzQmlhYXN2bWNvbnRhaW5lcnYyJTNCcHN0ZXN0cmdiZmJmNTljZiUzQnBzdGVzdHZtYmZiZjUwL3Byb3RlY3RlZEl0ZW1zL1ZNJTNCaWFhc3ZtY29udGFpbmVydjIlM0Jwc3Rlc3RyZ2JmYmY1OWNmJTNCcHN0ZXN0dm1iZmJmNTA/JGZpbHRlcj1leHBhbmQlMjBlcSUyMCdleHRlbmRlZGluZm8nJmFwaS12ZXJzaW9uPTIwMjEtMTAtMDE=", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupFabrics/Azure/protectionContainers/IaasVMContainer%3Biaasvmcontainerv2%3Bpstestrg48b61a7d%3Bpstestvm48b610/protectedItems/VM%3Biaasvmcontainerv2%3Bpstestrg48b61a7d%3Bpstestvm48b610?$filter=expand%20eq%20'extendedinfo'&api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNDhiNjFhN2QvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y0OGI2MWE3ZC9iYWNrdXBGYWJyaWNzL0F6dXJlL3Byb3RlY3Rpb25Db250YWluZXJzL0lhYXNWTUNvbnRhaW5lciUzQmlhYXN2bWNvbnRhaW5lcnYyJTNCcHN0ZXN0cmc0OGI2MWE3ZCUzQnBzdGVzdHZtNDhiNjEwL3Byb3RlY3RlZEl0ZW1zL1ZNJTNCaWFhc3ZtY29udGFpbmVydjIlM0Jwc3Rlc3RyZzQ4YjYxYTdkJTNCcHN0ZXN0dm00OGI2MTA/JGZpbHRlcj1leHBhbmQlMjBlcSUyMCdleHRlbmRlZGluZm8nJmFwaS12ZXJzaW9uPTIwMjItMDItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "08e5214a-c22b-4165-abc9-214869573143" + "2c6d909b-a89a-4d60-8ba2-08ff73672cac" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -4139,11 +4214,11 @@ "nosniff" ], "x-ms-request-id": [ - "3f625785-eb4d-4358-bd36-5df44dc39f9a" + "d7322535-22a5-4d15-86d9-41a53cb72ca1" ], "x-ms-client-request-id": [ - "08e5214a-c22b-4165-abc9-214869573143", - "08e5214a-c22b-4165-abc9-214869573143" + "2c6d909b-a89a-4d60-8ba2-08ff73672cac", + "2c6d909b-a89a-4d60-8ba2-08ff73672cac" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4158,13 +4233,13 @@ "149" ], "x-ms-correlation-request-id": [ - "3f625785-eb4d-4358-bd36-5df44dc39f9a" + "d7322535-22a5-4d15-86d9-41a53cb72ca1" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T204200Z:3f625785-eb4d-4358-bd36-5df44dc39f9a" + "WESTINDIA:20220516T180316Z:d7322535-22a5-4d15-86d9-41a53cb72ca1" ], "Date": [ - "Wed, 23 Feb 2022 20:41:59 GMT" + "Mon, 16 May 2022 18:03:15 GMT" ], "Content-Length": [ "1550" @@ -4176,26 +4251,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrgbfbf59cf;pstestvmbfbf50/protectedItems/VM;iaasvmcontainerv2;pstestrgbfbf59cf;pstestvmbfbf50\",\r\n \"name\": \"VM;iaasvmcontainerv2;pstestrgbfbf59cf;pstestvmbfbf50\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems\",\r\n \"properties\": {\r\n \"kpisHealths\": {},\r\n \"friendlyName\": \"PSTestVMbfbf50\",\r\n \"virtualMachineId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.Compute/virtualMachines/PSTestVMbfbf50\",\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\": \"52777015141911\",\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;pstestrgbfbf59cf;pstestvmbfbf50\",\r\n \"sourceResourceId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.Compute/virtualMachines/PSTestVMbfbf50\",\r\n \"policyId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupPolicies/DefaultPolicy\",\r\n \"policyName\": \"DefaultPolicy\",\r\n \"isArchiveEnabled\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrg48b61a7d;pstestvm48b610/protectedItems/VM;iaasvmcontainerv2;pstestrg48b61a7d;pstestvm48b610\",\r\n \"name\": \"VM;iaasvmcontainerv2;pstestrg48b61a7d;pstestvm48b610\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems\",\r\n \"properties\": {\r\n \"kpisHealths\": {},\r\n \"friendlyName\": \"PSTestVM48b610\",\r\n \"virtualMachineId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.Compute/virtualMachines/PSTestVM48b610\",\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\": \"52777258963831\",\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;pstestrg48b61a7d;pstestvm48b610\",\r\n \"sourceResourceId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.Compute/virtualMachines/PSTestVM48b610\",\r\n \"policyId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupPolicies/DefaultPolicy\",\r\n \"policyName\": \"DefaultPolicy\",\r\n \"isArchiveEnabled\": false\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupFabrics/Azure/protectionContainers/IaasVMContainer%3Biaasvmcontainerv2%3Bpstestrgbfbf59cf%3Bpstestvmbfbf50/protectedItems/VM%3Biaasvmcontainerv2%3Bpstestrgbfbf59cf%3Bpstestvmbfbf50/backup?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZiZjU5Y2YvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmJmNTljZi9iYWNrdXBGYWJyaWNzL0F6dXJlL3Byb3RlY3Rpb25Db250YWluZXJzL0lhYXNWTUNvbnRhaW5lciUzQmlhYXN2bWNvbnRhaW5lcnYyJTNCcHN0ZXN0cmdiZmJmNTljZiUzQnBzdGVzdHZtYmZiZjUwL3Byb3RlY3RlZEl0ZW1zL1ZNJTNCaWFhc3ZtY29udGFpbmVydjIlM0Jwc3Rlc3RyZ2JmYmY1OWNmJTNCcHN0ZXN0dm1iZmJmNTAvYmFja3VwP2FwaS12ZXJzaW9uPTIwMjEtMTAtMDE=", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupFabrics/Azure/protectionContainers/IaasVMContainer%3Biaasvmcontainerv2%3Bpstestrg48b61a7d%3Bpstestvm48b610/protectedItems/VM%3Biaasvmcontainerv2%3Bpstestrg48b61a7d%3Bpstestvm48b610/backup?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNDhiNjFhN2QvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y0OGI2MWE3ZC9iYWNrdXBGYWJyaWNzL0F6dXJlL3Byb3RlY3Rpb25Db250YWluZXJzL0lhYXNWTUNvbnRhaW5lciUzQmlhYXN2bWNvbnRhaW5lcnYyJTNCcHN0ZXN0cmc0OGI2MWE3ZCUzQnBzdGVzdHZtNDhiNjEwL3Byb3RlY3RlZEl0ZW1zL1ZNJTNCaWFhc3ZtY29udGFpbmVydjIlM0Jwc3Rlc3RyZzQ4YjYxYTdkJTNCcHN0ZXN0dm00OGI2MTAvYmFja3VwP2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", "RequestMethod": "POST", "RequestBody": "{\r\n \"properties\": {\r\n \"objectType\": \"IaasVMBackupRequest\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "9c81380d-ab42-4e74-a6c7-c10d169b4611" + "a5981808-f090-4049-96dc-24d09eecdaeb" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4212,23 +4287,23 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrgbfbf59cf;pstestvmbfbf50/protectedItems/VM;iaasvmcontainerv2;pstestrgbfbf59cf;pstestvmbfbf50/operationResults/2922df0a-8d86-4bba-9554-2862e524862a?api-version=2021-10-01" + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrg48b61a7d;pstestvm48b610/protectedItems/VM;iaasvmcontainerv2;pstestrg48b61a7d;pstestvm48b610/operationResults/49c86b3e-be60-443c-a874-f0277e5c79b8?api-version=2022-02-01" ], "Retry-After": [ "60" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrgbfbf59cf;pstestvmbfbf50/protectedItems/VM;iaasvmcontainerv2;pstestrgbfbf59cf;pstestvmbfbf50/operationsStatus/2922df0a-8d86-4bba-9554-2862e524862a?api-version=2021-10-01" + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrg48b61a7d;pstestvm48b610/protectedItems/VM;iaasvmcontainerv2;pstestrg48b61a7d;pstestvm48b610/operationsStatus/49c86b3e-be60-443c-a874-f0277e5c79b8?api-version=2022-02-01" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "9eb78e84-c2c1-41a2-a563-b7ce1ee58399" + "fdb3f1a8-162e-48d0-ba9a-8cdb9171a890" ], "x-ms-client-request-id": [ - "9c81380d-ab42-4e74-a6c7-c10d169b4611", - "9c81380d-ab42-4e74-a6c7-c10d169b4611" + "a5981808-f090-4049-96dc-24d09eecdaeb", + "a5981808-f090-4049-96dc-24d09eecdaeb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4240,13 +4315,13 @@ "1199" ], "x-ms-correlation-request-id": [ - "9eb78e84-c2c1-41a2-a563-b7ce1ee58399" + "fdb3f1a8-162e-48d0-ba9a-8cdb9171a890" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T204201Z:9eb78e84-c2c1-41a2-a563-b7ce1ee58399" + "WESTINDIA:20220516T180317Z:fdb3f1a8-162e-48d0-ba9a-8cdb9171a890" ], "Date": [ - "Wed, 23 Feb 2022 20:42:00 GMT" + "Mon, 16 May 2022 18:03:16 GMT" ], "Expires": [ "-1" @@ -4259,22 +4334,22 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupOperations/2922df0a-8d86-4bba-9554-2862e524862a?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZiZjU5Y2YvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmJmNTljZi9iYWNrdXBPcGVyYXRpb25zLzI5MjJkZjBhLThkODYtNGJiYS05NTU0LTI4NjJlNTI0ODYyYT9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupOperations/49c86b3e-be60-443c-a874-f0277e5c79b8?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNDhiNjFhN2QvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y0OGI2MWE3ZC9iYWNrdXBPcGVyYXRpb25zLzQ5Yzg2YjNlLWJlNjAtNDQzYy1hODc0LWYwMjc3ZTVjNzliOD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9c81380d-ab42-4e74-a6c7-c10d169b4611" + "a5981808-f090-4049-96dc-24d09eecdaeb" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -4288,11 +4363,11 @@ "nosniff" ], "x-ms-request-id": [ - "4352ff4b-6047-491b-8035-d3d4c7a28fbf" + "b34696ee-f916-4329-b8d7-ef309d776eef" ], "x-ms-client-request-id": [ - "9c81380d-ab42-4e74-a6c7-c10d169b4611", - "9c81380d-ab42-4e74-a6c7-c10d169b4611" + "a5981808-f090-4049-96dc-24d09eecdaeb", + "a5981808-f090-4049-96dc-24d09eecdaeb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4307,16 +4382,16 @@ "141" ], "x-ms-correlation-request-id": [ - "4352ff4b-6047-491b-8035-d3d4c7a28fbf" + "b34696ee-f916-4329-b8d7-ef309d776eef" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T204201Z:4352ff4b-6047-491b-8035-d3d4c7a28fbf" + "WESTINDIA:20220516T180317Z:b34696ee-f916-4329-b8d7-ef309d776eef" ], "Date": [ - "Wed, 23 Feb 2022 20:42:01 GMT" + "Mon, 16 May 2022 18:03:17 GMT" ], "Content-Length": [ - "302" + "188" ], "Content-Type": [ "application/json" @@ -4325,26 +4400,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"2922df0a-8d86-4bba-9554-2862e524862a\",\r\n \"name\": \"2922df0a-8d86-4bba-9554-2862e524862a\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-02-23T20:42:01.041925Z\",\r\n \"endTime\": \"2022-02-23T20:42:01.041925Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"f4955f76-367d-49a2-95f4-3779436ff49d\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"49c86b3e-be60-443c-a874-f0277e5c79b8\",\r\n \"name\": \"49c86b3e-be60-443c-a874-f0277e5c79b8\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T18:03:17.3965623Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupOperations/2922df0a-8d86-4bba-9554-2862e524862a?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZiZjU5Y2YvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmJmNTljZi9iYWNrdXBPcGVyYXRpb25zLzI5MjJkZjBhLThkODYtNGJiYS05NTU0LTI4NjJlNTI0ODYyYT9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupOperations/49c86b3e-be60-443c-a874-f0277e5c79b8?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNDhiNjFhN2QvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y0OGI2MWE3ZC9iYWNrdXBPcGVyYXRpb25zLzQ5Yzg2YjNlLWJlNjAtNDQzYy1hODc0LWYwMjc3ZTVjNzliOD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9c81380d-ab42-4e74-a6c7-c10d169b4611" + "a5981808-f090-4049-96dc-24d09eecdaeb" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -4358,11 +4433,11 @@ "nosniff" ], "x-ms-request-id": [ - "3d866e78-ee85-467a-88eb-78481e8bd6da" + "93f32eea-1e3e-40ae-b900-c552734bebb1" ], "x-ms-client-request-id": [ - "9c81380d-ab42-4e74-a6c7-c10d169b4611", - "9c81380d-ab42-4e74-a6c7-c10d169b4611" + "a5981808-f090-4049-96dc-24d09eecdaeb", + "a5981808-f090-4049-96dc-24d09eecdaeb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4377,16 +4452,86 @@ "140" ], "x-ms-correlation-request-id": [ - "3d866e78-ee85-467a-88eb-78481e8bd6da" + "93f32eea-1e3e-40ae-b900-c552734bebb1" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220516T180323Z:93f32eea-1e3e-40ae-b900-c552734bebb1" + ], + "Date": [ + "Mon, 16 May 2022 18:03:22 GMT" + ], + "Content-Length": [ + "304" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"49c86b3e-be60-443c-a874-f0277e5c79b8\",\r\n \"name\": \"49c86b3e-be60-443c-a874-f0277e5c79b8\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-05-16T18:03:17.3965623Z\",\r\n \"endTime\": \"2022-05-16T18:03:17.3965623Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"57a4adc5-e05d-4055-bdbb-2435d8d93f60\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupOperations/49c86b3e-be60-443c-a874-f0277e5c79b8?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNDhiNjFhN2QvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y0OGI2MWE3ZC9iYWNrdXBPcGVyYXRpb25zLzQ5Yzg2YjNlLWJlNjAtNDQzYy1hODc0LWYwMjc3ZTVjNzliOD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a5981808-f090-4049-96dc-24d09eecdaeb" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "e10d50a3-70a1-4b67-abec-c6f21ba617af" + ], + "x-ms-client-request-id": [ + "a5981808-f090-4049-96dc-24d09eecdaeb", + "a5981808-f090-4049-96dc-24d09eecdaeb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "139" + ], + "x-ms-correlation-request-id": [ + "e10d50a3-70a1-4b67-abec-c6f21ba617af" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T204202Z:3d866e78-ee85-467a-88eb-78481e8bd6da" + "WESTINDIA:20220516T180323Z:e10d50a3-70a1-4b67-abec-c6f21ba617af" ], "Date": [ - "Wed, 23 Feb 2022 20:42:01 GMT" + "Mon, 16 May 2022 18:03:22 GMT" ], "Content-Length": [ - "302" + "304" ], "Content-Type": [ "application/json" @@ -4395,26 +4540,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"2922df0a-8d86-4bba-9554-2862e524862a\",\r\n \"name\": \"2922df0a-8d86-4bba-9554-2862e524862a\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-02-23T20:42:01.041925Z\",\r\n \"endTime\": \"2022-02-23T20:42:01.041925Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"f4955f76-367d-49a2-95f4-3779436ff49d\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"49c86b3e-be60-443c-a874-f0277e5c79b8\",\r\n \"name\": \"49c86b3e-be60-443c-a874-f0277e5c79b8\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-05-16T18:03:17.3965623Z\",\r\n \"endTime\": \"2022-05-16T18:03:17.3965623Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"57a4adc5-e05d-4055-bdbb-2435d8d93f60\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupJobs/f4955f76-367d-49a2-95f4-3779436ff49d?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZiZjU5Y2YvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmJmNTljZi9iYWNrdXBKb2JzL2Y0OTU1Zjc2LTM2N2QtNDlhMi05NWY0LTM3Nzk0MzZmZjQ5ZD9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupJobs/57a4adc5-e05d-4055-bdbb-2435d8d93f60?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNDhiNjFhN2QvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y0OGI2MWE3ZC9iYWNrdXBKb2JzLzU3YTRhZGM1LWUwNWQtNDA1NS1iZGJiLTI0MzVkOGQ5M2Y2MD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9c81380d-ab42-4e74-a6c7-c10d169b4611" + "a5981808-f090-4049-96dc-24d09eecdaeb" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -4432,11 +4577,11 @@ "nosniff" ], "x-ms-request-id": [ - "702cb0f6-d80e-4acc-9389-2f7804cd3de0" + "554507f3-6b99-4545-b39a-b435687d4c93" ], "x-ms-client-request-id": [ - "9c81380d-ab42-4e74-a6c7-c10d169b4611", - "9c81380d-ab42-4e74-a6c7-c10d169b4611" + "a5981808-f090-4049-96dc-24d09eecdaeb", + "a5981808-f090-4049-96dc-24d09eecdaeb" ], "X-Powered-By": [ "ASP.NET" @@ -4448,16 +4593,16 @@ "148" ], "x-ms-correlation-request-id": [ - "702cb0f6-d80e-4acc-9389-2f7804cd3de0" + "554507f3-6b99-4545-b39a-b435687d4c93" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T204202Z:702cb0f6-d80e-4acc-9389-2f7804cd3de0" + "WESTINDIA:20220516T180324Z:554507f3-6b99-4545-b39a-b435687d4c93" ], "Date": [ - "Wed, 23 Feb 2022 20:42:02 GMT" + "Mon, 16 May 2022 18:03:23 GMT" ], "Content-Length": [ - "967" + "968" ], "Content-Type": [ "application/json" @@ -4466,26 +4611,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupJobs/f4955f76-367d-49a2-95f4-3779436ff49d\",\r\n \"name\": \"f4955f76-367d-49a2-95f4-3779436ff49d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgbfbf59cf;pstestvmbfbf50\",\r\n \"duration\": \"PT1.4673076S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvmbfbf50\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvmbfbf50\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-23T20:42:01.041925Z\",\r\n \"activityId\": \"9c81380d-ab42-4e74-a6c7-c10d169b4611\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupJobs/57a4adc5-e05d-4055-bdbb-2435d8d93f60\",\r\n \"name\": \"57a4adc5-e05d-4055-bdbb-2435d8d93f60\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg48b61a7d;pstestvm48b610\",\r\n \"duration\": \"PT6.7660304S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm48b610\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm48b610\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T18:03:17.3965623Z\",\r\n \"activityId\": \"a5981808-f090-4049-96dc-24d09eecdaeb\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupJobs/f4955f76-367d-49a2-95f4-3779436ff49d?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZiZjU5Y2YvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmJmNTljZi9iYWNrdXBKb2JzL2Y0OTU1Zjc2LTM2N2QtNDlhMi05NWY0LTM3Nzk0MzZmZjQ5ZD9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupJobs/57a4adc5-e05d-4055-bdbb-2435d8d93f60?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNDhiNjFhN2QvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y0OGI2MWE3ZC9iYWNrdXBKb2JzLzU3YTRhZGM1LWUwNWQtNDA1NS1iZGJiLTI0MzVkOGQ5M2Y2MD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "27052996-1125-4c2b-9cf9-c141b2a286b4" + "f11102df-348a-4d5e-9893-fccbafdd9d76" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -4503,11 +4648,11 @@ "nosniff" ], "x-ms-request-id": [ - "23f40b15-ea06-49fa-8a61-5a0853076832" + "f9b81200-65c2-493c-9c58-32c915e8689e" ], "x-ms-client-request-id": [ - "27052996-1125-4c2b-9cf9-c141b2a286b4", - "27052996-1125-4c2b-9cf9-c141b2a286b4" + "f11102df-348a-4d5e-9893-fccbafdd9d76", + "f11102df-348a-4d5e-9893-fccbafdd9d76" ], "X-Powered-By": [ "ASP.NET" @@ -4519,16 +4664,16 @@ "147" ], "x-ms-correlation-request-id": [ - "23f40b15-ea06-49fa-8a61-5a0853076832" + "f9b81200-65c2-493c-9c58-32c915e8689e" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T204203Z:23f40b15-ea06-49fa-8a61-5a0853076832" + "WESTINDIA:20220516T180325Z:f9b81200-65c2-493c-9c58-32c915e8689e" ], "Date": [ - "Wed, 23 Feb 2022 20:42:03 GMT" + "Mon, 16 May 2022 18:03:24 GMT" ], "Content-Length": [ - "967" + "968" ], "Content-Type": [ "application/json" @@ -4537,26 +4682,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupJobs/f4955f76-367d-49a2-95f4-3779436ff49d\",\r\n \"name\": \"f4955f76-367d-49a2-95f4-3779436ff49d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgbfbf59cf;pstestvmbfbf50\",\r\n \"duration\": \"PT2.4384391S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvmbfbf50\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvmbfbf50\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-23T20:42:01.041925Z\",\r\n \"activityId\": \"9c81380d-ab42-4e74-a6c7-c10d169b4611\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupJobs/57a4adc5-e05d-4055-bdbb-2435d8d93f60\",\r\n \"name\": \"57a4adc5-e05d-4055-bdbb-2435d8d93f60\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg48b61a7d;pstestvm48b610\",\r\n \"duration\": \"PT7.4730021S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm48b610\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm48b610\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T18:03:17.3965623Z\",\r\n \"activityId\": \"a5981808-f090-4049-96dc-24d09eecdaeb\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupJobs/f4955f76-367d-49a2-95f4-3779436ff49d?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZiZjU5Y2YvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmJmNTljZi9iYWNrdXBKb2JzL2Y0OTU1Zjc2LTM2N2QtNDlhMi05NWY0LTM3Nzk0MzZmZjQ5ZD9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupJobs/57a4adc5-e05d-4055-bdbb-2435d8d93f60?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNDhiNjFhN2QvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y0OGI2MWE3ZC9iYWNrdXBKb2JzLzU3YTRhZGM1LWUwNWQtNDA1NS1iZGJiLTI0MzVkOGQ5M2Y2MD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "27052996-1125-4c2b-9cf9-c141b2a286b4" + "f11102df-348a-4d5e-9893-fccbafdd9d76" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -4574,11 +4719,11 @@ "nosniff" ], "x-ms-request-id": [ - "27ffa59a-2d87-45f8-abbb-13aaa5460f8c" + "57dda75c-9a2c-4d5a-b44e-01d2df3d85ea" ], "x-ms-client-request-id": [ - "27052996-1125-4c2b-9cf9-c141b2a286b4", - "27052996-1125-4c2b-9cf9-c141b2a286b4" + "f11102df-348a-4d5e-9893-fccbafdd9d76", + "f11102df-348a-4d5e-9893-fccbafdd9d76" ], "X-Powered-By": [ "ASP.NET" @@ -4590,16 +4735,16 @@ "146" ], "x-ms-correlation-request-id": [ - "27ffa59a-2d87-45f8-abbb-13aaa5460f8c" + "57dda75c-9a2c-4d5a-b44e-01d2df3d85ea" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T204234Z:27ffa59a-2d87-45f8-abbb-13aaa5460f8c" + "WESTINDIA:20220516T180355Z:57dda75c-9a2c-4d5a-b44e-01d2df3d85ea" ], "Date": [ - "Wed, 23 Feb 2022 20:42:34 GMT" + "Mon, 16 May 2022 18:03:55 GMT" ], "Content-Length": [ - "968" + "969" ], "Content-Type": [ "application/json" @@ -4608,26 +4753,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupJobs/f4955f76-367d-49a2-95f4-3779436ff49d\",\r\n \"name\": \"f4955f76-367d-49a2-95f4-3779436ff49d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgbfbf59cf;pstestvmbfbf50\",\r\n \"duration\": \"PT33.2699232S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvmbfbf50\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvmbfbf50\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-23T20:42:01.041925Z\",\r\n \"activityId\": \"9c81380d-ab42-4e74-a6c7-c10d169b4611\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupJobs/57a4adc5-e05d-4055-bdbb-2435d8d93f60\",\r\n \"name\": \"57a4adc5-e05d-4055-bdbb-2435d8d93f60\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg48b61a7d;pstestvm48b610\",\r\n \"duration\": \"PT38.1954139S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm48b610\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm48b610\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T18:03:17.3965623Z\",\r\n \"activityId\": \"a5981808-f090-4049-96dc-24d09eecdaeb\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupJobs/f4955f76-367d-49a2-95f4-3779436ff49d?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZiZjU5Y2YvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmJmNTljZi9iYWNrdXBKb2JzL2Y0OTU1Zjc2LTM2N2QtNDlhMi05NWY0LTM3Nzk0MzZmZjQ5ZD9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupJobs/57a4adc5-e05d-4055-bdbb-2435d8d93f60?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNDhiNjFhN2QvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y0OGI2MWE3ZC9iYWNrdXBKb2JzLzU3YTRhZGM1LWUwNWQtNDA1NS1iZGJiLTI0MzVkOGQ5M2Y2MD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "27052996-1125-4c2b-9cf9-c141b2a286b4" + "f11102df-348a-4d5e-9893-fccbafdd9d76" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -4645,11 +4790,11 @@ "nosniff" ], "x-ms-request-id": [ - "df27763e-f7a1-48de-87b9-ac65755ac2f7" + "102065ca-61ff-404e-89ab-0634119ce3ae" ], "x-ms-client-request-id": [ - "27052996-1125-4c2b-9cf9-c141b2a286b4", - "27052996-1125-4c2b-9cf9-c141b2a286b4" + "f11102df-348a-4d5e-9893-fccbafdd9d76", + "f11102df-348a-4d5e-9893-fccbafdd9d76" ], "X-Powered-By": [ "ASP.NET" @@ -4661,16 +4806,16 @@ "145" ], "x-ms-correlation-request-id": [ - "df27763e-f7a1-48de-87b9-ac65755ac2f7" + "102065ca-61ff-404e-89ab-0634119ce3ae" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T204307Z:df27763e-f7a1-48de-87b9-ac65755ac2f7" + "WESTINDIA:20220516T180426Z:102065ca-61ff-404e-89ab-0634119ce3ae" ], "Date": [ - "Wed, 23 Feb 2022 20:43:06 GMT" + "Mon, 16 May 2022 18:04:26 GMT" ], "Content-Length": [ - "969" + "970" ], "Content-Type": [ "application/json" @@ -4679,26 +4824,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupJobs/f4955f76-367d-49a2-95f4-3779436ff49d\",\r\n \"name\": \"f4955f76-367d-49a2-95f4-3779436ff49d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgbfbf59cf;pstestvmbfbf50\",\r\n \"duration\": \"PT1M5.4767546S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvmbfbf50\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvmbfbf50\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-23T20:42:01.041925Z\",\r\n \"activityId\": \"9c81380d-ab42-4e74-a6c7-c10d169b4611\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupJobs/57a4adc5-e05d-4055-bdbb-2435d8d93f60\",\r\n \"name\": \"57a4adc5-e05d-4055-bdbb-2435d8d93f60\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg48b61a7d;pstestvm48b610\",\r\n \"duration\": \"PT1M8.8200386S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm48b610\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm48b610\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T18:03:17.3965623Z\",\r\n \"activityId\": \"a5981808-f090-4049-96dc-24d09eecdaeb\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupJobs/f4955f76-367d-49a2-95f4-3779436ff49d?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZiZjU5Y2YvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmJmNTljZi9iYWNrdXBKb2JzL2Y0OTU1Zjc2LTM2N2QtNDlhMi05NWY0LTM3Nzk0MzZmZjQ5ZD9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupJobs/57a4adc5-e05d-4055-bdbb-2435d8d93f60?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNDhiNjFhN2QvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y0OGI2MWE3ZC9iYWNrdXBKb2JzLzU3YTRhZGM1LWUwNWQtNDA1NS1iZGJiLTI0MzVkOGQ5M2Y2MD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "27052996-1125-4c2b-9cf9-c141b2a286b4" + "f11102df-348a-4d5e-9893-fccbafdd9d76" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -4716,11 +4861,11 @@ "nosniff" ], "x-ms-request-id": [ - "99b3f90e-d279-496d-bdf1-289a8b0ad6c1" + "dde85112-ff4d-4ca7-9673-164643c8bb3a" ], "x-ms-client-request-id": [ - "27052996-1125-4c2b-9cf9-c141b2a286b4", - "27052996-1125-4c2b-9cf9-c141b2a286b4" + "f11102df-348a-4d5e-9893-fccbafdd9d76", + "f11102df-348a-4d5e-9893-fccbafdd9d76" ], "X-Powered-By": [ "ASP.NET" @@ -4732,16 +4877,16 @@ "144" ], "x-ms-correlation-request-id": [ - "99b3f90e-d279-496d-bdf1-289a8b0ad6c1" + "dde85112-ff4d-4ca7-9673-164643c8bb3a" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T204337Z:99b3f90e-d279-496d-bdf1-289a8b0ad6c1" + "WESTINDIA:20220516T180457Z:dde85112-ff4d-4ca7-9673-164643c8bb3a" ], "Date": [ - "Wed, 23 Feb 2022 20:43:37 GMT" + "Mon, 16 May 2022 18:04:56 GMT" ], "Content-Length": [ - "970" + "971" ], "Content-Type": [ "application/json" @@ -4750,26 +4895,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupJobs/f4955f76-367d-49a2-95f4-3779436ff49d\",\r\n \"name\": \"f4955f76-367d-49a2-95f4-3779436ff49d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgbfbf59cf;pstestvmbfbf50\",\r\n \"duration\": \"PT1M36.2727627S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvmbfbf50\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvmbfbf50\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-23T20:42:01.041925Z\",\r\n \"activityId\": \"9c81380d-ab42-4e74-a6c7-c10d169b4611\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupJobs/57a4adc5-e05d-4055-bdbb-2435d8d93f60\",\r\n \"name\": \"57a4adc5-e05d-4055-bdbb-2435d8d93f60\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg48b61a7d;pstestvm48b610\",\r\n \"duration\": \"PT1M39.4953851S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm48b610\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm48b610\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T18:03:17.3965623Z\",\r\n \"activityId\": \"a5981808-f090-4049-96dc-24d09eecdaeb\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupJobs/f4955f76-367d-49a2-95f4-3779436ff49d?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZiZjU5Y2YvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmJmNTljZi9iYWNrdXBKb2JzL2Y0OTU1Zjc2LTM2N2QtNDlhMi05NWY0LTM3Nzk0MzZmZjQ5ZD9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupJobs/57a4adc5-e05d-4055-bdbb-2435d8d93f60?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNDhiNjFhN2QvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y0OGI2MWE3ZC9iYWNrdXBKb2JzLzU3YTRhZGM1LWUwNWQtNDA1NS1iZGJiLTI0MzVkOGQ5M2Y2MD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "27052996-1125-4c2b-9cf9-c141b2a286b4" + "f11102df-348a-4d5e-9893-fccbafdd9d76" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -4787,11 +4932,11 @@ "nosniff" ], "x-ms-request-id": [ - "54ca00a0-0c5c-4994-95be-6f657c899885" + "8dc453d2-a6e8-4377-ab19-4f92373cc1cf" ], "x-ms-client-request-id": [ - "27052996-1125-4c2b-9cf9-c141b2a286b4", - "27052996-1125-4c2b-9cf9-c141b2a286b4" + "f11102df-348a-4d5e-9893-fccbafdd9d76", + "f11102df-348a-4d5e-9893-fccbafdd9d76" ], "X-Powered-By": [ "ASP.NET" @@ -4803,16 +4948,16 @@ "143" ], "x-ms-correlation-request-id": [ - "54ca00a0-0c5c-4994-95be-6f657c899885" + "8dc453d2-a6e8-4377-ab19-4f92373cc1cf" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T204415Z:54ca00a0-0c5c-4994-95be-6f657c899885" + "WESTINDIA:20220516T180527Z:8dc453d2-a6e8-4377-ab19-4f92373cc1cf" ], "Date": [ - "Wed, 23 Feb 2022 20:44:14 GMT" + "Mon, 16 May 2022 18:05:27 GMT" ], "Content-Length": [ - "970" + "971" ], "Content-Type": [ "application/json" @@ -4821,26 +4966,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupJobs/f4955f76-367d-49a2-95f4-3779436ff49d\",\r\n \"name\": \"f4955f76-367d-49a2-95f4-3779436ff49d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgbfbf59cf;pstestvmbfbf50\",\r\n \"duration\": \"PT2M12.8957945S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvmbfbf50\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvmbfbf50\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-23T20:42:01.041925Z\",\r\n \"activityId\": \"9c81380d-ab42-4e74-a6c7-c10d169b4611\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupJobs/57a4adc5-e05d-4055-bdbb-2435d8d93f60\",\r\n \"name\": \"57a4adc5-e05d-4055-bdbb-2435d8d93f60\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg48b61a7d;pstestvm48b610\",\r\n \"duration\": \"PT2M10.1417575S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm48b610\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm48b610\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T18:03:17.3965623Z\",\r\n \"activityId\": \"a5981808-f090-4049-96dc-24d09eecdaeb\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupJobs/f4955f76-367d-49a2-95f4-3779436ff49d?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZiZjU5Y2YvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmJmNTljZi9iYWNrdXBKb2JzL2Y0OTU1Zjc2LTM2N2QtNDlhMi05NWY0LTM3Nzk0MzZmZjQ5ZD9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupJobs/57a4adc5-e05d-4055-bdbb-2435d8d93f60?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNDhiNjFhN2QvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y0OGI2MWE3ZC9iYWNrdXBKb2JzLzU3YTRhZGM1LWUwNWQtNDA1NS1iZGJiLTI0MzVkOGQ5M2Y2MD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "27052996-1125-4c2b-9cf9-c141b2a286b4" + "f11102df-348a-4d5e-9893-fccbafdd9d76" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -4858,11 +5003,11 @@ "nosniff" ], "x-ms-request-id": [ - "63f4f07f-6843-4837-9fa0-35023d63a5b6" + "ecfb7f3b-a0cd-4cc6-b0be-11f48795fef5" ], "x-ms-client-request-id": [ - "27052996-1125-4c2b-9cf9-c141b2a286b4", - "27052996-1125-4c2b-9cf9-c141b2a286b4" + "f11102df-348a-4d5e-9893-fccbafdd9d76", + "f11102df-348a-4d5e-9893-fccbafdd9d76" ], "X-Powered-By": [ "ASP.NET" @@ -4874,16 +5019,16 @@ "142" ], "x-ms-correlation-request-id": [ - "63f4f07f-6843-4837-9fa0-35023d63a5b6" + "ecfb7f3b-a0cd-4cc6-b0be-11f48795fef5" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T204445Z:63f4f07f-6843-4837-9fa0-35023d63a5b6" + "WESTINDIA:20220516T180558Z:ecfb7f3b-a0cd-4cc6-b0be-11f48795fef5" ], "Date": [ - "Wed, 23 Feb 2022 20:44:45 GMT" + "Mon, 16 May 2022 18:05:58 GMT" ], "Content-Length": [ - "970" + "971" ], "Content-Type": [ "application/json" @@ -4892,26 +5037,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupJobs/f4955f76-367d-49a2-95f4-3779436ff49d\",\r\n \"name\": \"f4955f76-367d-49a2-95f4-3779436ff49d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgbfbf59cf;pstestvmbfbf50\",\r\n \"duration\": \"PT2M44.3941617S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvmbfbf50\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvmbfbf50\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-23T20:42:01.041925Z\",\r\n \"activityId\": \"9c81380d-ab42-4e74-a6c7-c10d169b4611\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupJobs/57a4adc5-e05d-4055-bdbb-2435d8d93f60\",\r\n \"name\": \"57a4adc5-e05d-4055-bdbb-2435d8d93f60\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg48b61a7d;pstestvm48b610\",\r\n \"duration\": \"PT2M40.7039815S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm48b610\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm48b610\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T18:03:17.3965623Z\",\r\n \"activityId\": \"a5981808-f090-4049-96dc-24d09eecdaeb\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupJobs/f4955f76-367d-49a2-95f4-3779436ff49d?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZiZjU5Y2YvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmJmNTljZi9iYWNrdXBKb2JzL2Y0OTU1Zjc2LTM2N2QtNDlhMi05NWY0LTM3Nzk0MzZmZjQ5ZD9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupJobs/57a4adc5-e05d-4055-bdbb-2435d8d93f60?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNDhiNjFhN2QvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y0OGI2MWE3ZC9iYWNrdXBKb2JzLzU3YTRhZGM1LWUwNWQtNDA1NS1iZGJiLTI0MzVkOGQ5M2Y2MD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "27052996-1125-4c2b-9cf9-c141b2a286b4" + "f11102df-348a-4d5e-9893-fccbafdd9d76" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -4929,11 +5074,11 @@ "nosniff" ], "x-ms-request-id": [ - "11ba816b-ea3a-446d-b063-ea7e95a25e02" + "6d23a516-f401-4264-b830-50e8cd7c8955" ], "x-ms-client-request-id": [ - "27052996-1125-4c2b-9cf9-c141b2a286b4", - "27052996-1125-4c2b-9cf9-c141b2a286b4" + "f11102df-348a-4d5e-9893-fccbafdd9d76", + "f11102df-348a-4d5e-9893-fccbafdd9d76" ], "X-Powered-By": [ "ASP.NET" @@ -4945,16 +5090,16 @@ "141" ], "x-ms-correlation-request-id": [ - "11ba816b-ea3a-446d-b063-ea7e95a25e02" + "6d23a516-f401-4264-b830-50e8cd7c8955" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T204517Z:11ba816b-ea3a-446d-b063-ea7e95a25e02" + "WESTINDIA:20220516T180629Z:6d23a516-f401-4264-b830-50e8cd7c8955" ], "Date": [ - "Wed, 23 Feb 2022 20:45:17 GMT" + "Mon, 16 May 2022 18:06:28 GMT" ], "Content-Length": [ - "970" + "971" ], "Content-Type": [ "application/json" @@ -4963,26 +5108,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupJobs/f4955f76-367d-49a2-95f4-3779436ff49d\",\r\n \"name\": \"f4955f76-367d-49a2-95f4-3779436ff49d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgbfbf59cf;pstestvmbfbf50\",\r\n \"duration\": \"PT3M16.1174718S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvmbfbf50\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvmbfbf50\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-23T20:42:01.041925Z\",\r\n \"activityId\": \"9c81380d-ab42-4e74-a6c7-c10d169b4611\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupJobs/57a4adc5-e05d-4055-bdbb-2435d8d93f60\",\r\n \"name\": \"57a4adc5-e05d-4055-bdbb-2435d8d93f60\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg48b61a7d;pstestvm48b610\",\r\n \"duration\": \"PT3M11.3939361S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm48b610\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm48b610\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T18:03:17.3965623Z\",\r\n \"activityId\": \"a5981808-f090-4049-96dc-24d09eecdaeb\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupJobs/f4955f76-367d-49a2-95f4-3779436ff49d?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZiZjU5Y2YvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmJmNTljZi9iYWNrdXBKb2JzL2Y0OTU1Zjc2LTM2N2QtNDlhMi05NWY0LTM3Nzk0MzZmZjQ5ZD9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupJobs/57a4adc5-e05d-4055-bdbb-2435d8d93f60?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNDhiNjFhN2QvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y0OGI2MWE3ZC9iYWNrdXBKb2JzLzU3YTRhZGM1LWUwNWQtNDA1NS1iZGJiLTI0MzVkOGQ5M2Y2MD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "27052996-1125-4c2b-9cf9-c141b2a286b4" + "f11102df-348a-4d5e-9893-fccbafdd9d76" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -5000,11 +5145,11 @@ "nosniff" ], "x-ms-request-id": [ - "5c51dd35-ad0e-4283-848e-44e56f8c6292" + "16989bd5-8eb8-4882-854b-87c868fed939" ], "x-ms-client-request-id": [ - "27052996-1125-4c2b-9cf9-c141b2a286b4", - "27052996-1125-4c2b-9cf9-c141b2a286b4" + "f11102df-348a-4d5e-9893-fccbafdd9d76", + "f11102df-348a-4d5e-9893-fccbafdd9d76" ], "X-Powered-By": [ "ASP.NET" @@ -5016,16 +5161,16 @@ "140" ], "x-ms-correlation-request-id": [ - "5c51dd35-ad0e-4283-848e-44e56f8c6292" + "16989bd5-8eb8-4882-854b-87c868fed939" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T204553Z:5c51dd35-ad0e-4283-848e-44e56f8c6292" + "WESTINDIA:20220516T180659Z:16989bd5-8eb8-4882-854b-87c868fed939" ], "Date": [ - "Wed, 23 Feb 2022 20:45:52 GMT" + "Mon, 16 May 2022 18:06:59 GMT" ], "Content-Length": [ - "969" + "971" ], "Content-Type": [ "application/json" @@ -5034,26 +5179,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupJobs/f4955f76-367d-49a2-95f4-3779436ff49d\",\r\n \"name\": \"f4955f76-367d-49a2-95f4-3779436ff49d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgbfbf59cf;pstestvmbfbf50\",\r\n \"duration\": \"PT3M50.828924S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvmbfbf50\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvmbfbf50\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-23T20:42:01.041925Z\",\r\n \"activityId\": \"9c81380d-ab42-4e74-a6c7-c10d169b4611\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupJobs/57a4adc5-e05d-4055-bdbb-2435d8d93f60\",\r\n \"name\": \"57a4adc5-e05d-4055-bdbb-2435d8d93f60\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg48b61a7d;pstestvm48b610\",\r\n \"duration\": \"PT3M42.1144187S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm48b610\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm48b610\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T18:03:17.3965623Z\",\r\n \"activityId\": \"a5981808-f090-4049-96dc-24d09eecdaeb\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupJobs/f4955f76-367d-49a2-95f4-3779436ff49d?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZiZjU5Y2YvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmJmNTljZi9iYWNrdXBKb2JzL2Y0OTU1Zjc2LTM2N2QtNDlhMi05NWY0LTM3Nzk0MzZmZjQ5ZD9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupJobs/57a4adc5-e05d-4055-bdbb-2435d8d93f60?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNDhiNjFhN2QvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y0OGI2MWE3ZC9iYWNrdXBKb2JzLzU3YTRhZGM1LWUwNWQtNDA1NS1iZGJiLTI0MzVkOGQ5M2Y2MD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "27052996-1125-4c2b-9cf9-c141b2a286b4" + "f11102df-348a-4d5e-9893-fccbafdd9d76" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -5071,11 +5216,11 @@ "nosniff" ], "x-ms-request-id": [ - "0e737428-60f7-4199-9784-7b4e5c61de9d" + "6a83b4b3-3c07-4ee6-b5af-c554980cb1a7" ], "x-ms-client-request-id": [ - "27052996-1125-4c2b-9cf9-c141b2a286b4", - "27052996-1125-4c2b-9cf9-c141b2a286b4" + "f11102df-348a-4d5e-9893-fccbafdd9d76", + "f11102df-348a-4d5e-9893-fccbafdd9d76" ], "X-Powered-By": [ "ASP.NET" @@ -5087,16 +5232,16 @@ "139" ], "x-ms-correlation-request-id": [ - "0e737428-60f7-4199-9784-7b4e5c61de9d" + "6a83b4b3-3c07-4ee6-b5af-c554980cb1a7" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T204624Z:0e737428-60f7-4199-9784-7b4e5c61de9d" + "WESTINDIA:20220516T180731Z:6a83b4b3-3c07-4ee6-b5af-c554980cb1a7" ], "Date": [ - "Wed, 23 Feb 2022 20:46:23 GMT" + "Mon, 16 May 2022 18:07:30 GMT" ], "Content-Length": [ - "970" + "971" ], "Content-Type": [ "application/json" @@ -5105,26 +5250,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupJobs/f4955f76-367d-49a2-95f4-3779436ff49d\",\r\n \"name\": \"f4955f76-367d-49a2-95f4-3779436ff49d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgbfbf59cf;pstestvmbfbf50\",\r\n \"duration\": \"PT4M22.6485041S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvmbfbf50\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvmbfbf50\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-23T20:42:01.041925Z\",\r\n \"activityId\": \"9c81380d-ab42-4e74-a6c7-c10d169b4611\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupJobs/57a4adc5-e05d-4055-bdbb-2435d8d93f60\",\r\n \"name\": \"57a4adc5-e05d-4055-bdbb-2435d8d93f60\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg48b61a7d;pstestvm48b610\",\r\n \"duration\": \"PT4M13.3077519S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm48b610\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm48b610\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T18:03:17.3965623Z\",\r\n \"activityId\": \"a5981808-f090-4049-96dc-24d09eecdaeb\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupJobs/f4955f76-367d-49a2-95f4-3779436ff49d?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZiZjU5Y2YvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmJmNTljZi9iYWNrdXBKb2JzL2Y0OTU1Zjc2LTM2N2QtNDlhMi05NWY0LTM3Nzk0MzZmZjQ5ZD9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupJobs/57a4adc5-e05d-4055-bdbb-2435d8d93f60?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNDhiNjFhN2QvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y0OGI2MWE3ZC9iYWNrdXBKb2JzLzU3YTRhZGM1LWUwNWQtNDA1NS1iZGJiLTI0MzVkOGQ5M2Y2MD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "27052996-1125-4c2b-9cf9-c141b2a286b4" + "f11102df-348a-4d5e-9893-fccbafdd9d76" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -5142,11 +5287,11 @@ "nosniff" ], "x-ms-request-id": [ - "2ac1c4c8-54b5-4364-9467-d1867062f005" + "07fa9e35-7203-480a-8cd7-78adcb2afcd1" ], "x-ms-client-request-id": [ - "27052996-1125-4c2b-9cf9-c141b2a286b4", - "27052996-1125-4c2b-9cf9-c141b2a286b4" + "f11102df-348a-4d5e-9893-fccbafdd9d76", + "f11102df-348a-4d5e-9893-fccbafdd9d76" ], "X-Powered-By": [ "ASP.NET" @@ -5158,16 +5303,16 @@ "138" ], "x-ms-correlation-request-id": [ - "2ac1c4c8-54b5-4364-9467-d1867062f005" + "07fa9e35-7203-480a-8cd7-78adcb2afcd1" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T204655Z:2ac1c4c8-54b5-4364-9467-d1867062f005" + "WESTINDIA:20220516T180802Z:07fa9e35-7203-480a-8cd7-78adcb2afcd1" ], "Date": [ - "Wed, 23 Feb 2022 20:46:54 GMT" + "Mon, 16 May 2022 18:08:02 GMT" ], "Content-Length": [ - "970" + "971" ], "Content-Type": [ "application/json" @@ -5176,26 +5321,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupJobs/f4955f76-367d-49a2-95f4-3779436ff49d\",\r\n \"name\": \"f4955f76-367d-49a2-95f4-3779436ff49d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgbfbf59cf;pstestvmbfbf50\",\r\n \"duration\": \"PT4M53.6764069S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvmbfbf50\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvmbfbf50\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-23T20:42:01.041925Z\",\r\n \"activityId\": \"9c81380d-ab42-4e74-a6c7-c10d169b4611\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupJobs/57a4adc5-e05d-4055-bdbb-2435d8d93f60\",\r\n \"name\": \"57a4adc5-e05d-4055-bdbb-2435d8d93f60\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg48b61a7d;pstestvm48b610\",\r\n \"duration\": \"PT4M44.6827337S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm48b610\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm48b610\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T18:03:17.3965623Z\",\r\n \"activityId\": \"a5981808-f090-4049-96dc-24d09eecdaeb\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupJobs/f4955f76-367d-49a2-95f4-3779436ff49d?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZiZjU5Y2YvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmJmNTljZi9iYWNrdXBKb2JzL2Y0OTU1Zjc2LTM2N2QtNDlhMi05NWY0LTM3Nzk0MzZmZjQ5ZD9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupJobs/57a4adc5-e05d-4055-bdbb-2435d8d93f60?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNDhiNjFhN2QvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y0OGI2MWE3ZC9iYWNrdXBKb2JzLzU3YTRhZGM1LWUwNWQtNDA1NS1iZGJiLTI0MzVkOGQ5M2Y2MD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "27052996-1125-4c2b-9cf9-c141b2a286b4" + "f11102df-348a-4d5e-9893-fccbafdd9d76" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -5213,11 +5358,11 @@ "nosniff" ], "x-ms-request-id": [ - "d42d223b-68a3-4496-ab10-7b9d609f921f" + "c5ab2d0e-70d0-442a-a9bb-3115d6014acd" ], "x-ms-client-request-id": [ - "27052996-1125-4c2b-9cf9-c141b2a286b4", - "27052996-1125-4c2b-9cf9-c141b2a286b4" + "f11102df-348a-4d5e-9893-fccbafdd9d76", + "f11102df-348a-4d5e-9893-fccbafdd9d76" ], "X-Powered-By": [ "ASP.NET" @@ -5229,16 +5374,16 @@ "137" ], "x-ms-correlation-request-id": [ - "d42d223b-68a3-4496-ab10-7b9d609f921f" + "c5ab2d0e-70d0-442a-a9bb-3115d6014acd" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T204726Z:d42d223b-68a3-4496-ab10-7b9d609f921f" + "WESTINDIA:20220516T180833Z:c5ab2d0e-70d0-442a-a9bb-3115d6014acd" ], "Date": [ - "Wed, 23 Feb 2022 20:47:26 GMT" + "Mon, 16 May 2022 18:08:33 GMT" ], "Content-Length": [ - "970" + "971" ], "Content-Type": [ "application/json" @@ -5247,26 +5392,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupJobs/f4955f76-367d-49a2-95f4-3779436ff49d\",\r\n \"name\": \"f4955f76-367d-49a2-95f4-3779436ff49d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgbfbf59cf;pstestvmbfbf50\",\r\n \"duration\": \"PT5M24.8763919S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvmbfbf50\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvmbfbf50\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-23T20:42:01.041925Z\",\r\n \"activityId\": \"9c81380d-ab42-4e74-a6c7-c10d169b4611\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupJobs/57a4adc5-e05d-4055-bdbb-2435d8d93f60\",\r\n \"name\": \"57a4adc5-e05d-4055-bdbb-2435d8d93f60\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg48b61a7d;pstestvm48b610\",\r\n \"duration\": \"PT5M15.3943158S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm48b610\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm48b610\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T18:03:17.3965623Z\",\r\n \"activityId\": \"a5981808-f090-4049-96dc-24d09eecdaeb\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupJobs/f4955f76-367d-49a2-95f4-3779436ff49d?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZiZjU5Y2YvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmJmNTljZi9iYWNrdXBKb2JzL2Y0OTU1Zjc2LTM2N2QtNDlhMi05NWY0LTM3Nzk0MzZmZjQ5ZD9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupJobs/57a4adc5-e05d-4055-bdbb-2435d8d93f60?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNDhiNjFhN2QvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y0OGI2MWE3ZC9iYWNrdXBKb2JzLzU3YTRhZGM1LWUwNWQtNDA1NS1iZGJiLTI0MzVkOGQ5M2Y2MD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "27052996-1125-4c2b-9cf9-c141b2a286b4" + "f11102df-348a-4d5e-9893-fccbafdd9d76" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -5284,11 +5429,11 @@ "nosniff" ], "x-ms-request-id": [ - "625686ac-e37f-4db0-a698-0de9c1dca5b1" + "5c4ddf35-3e04-4c0a-9986-19ed3f8f00ab" ], "x-ms-client-request-id": [ - "27052996-1125-4c2b-9cf9-c141b2a286b4", - "27052996-1125-4c2b-9cf9-c141b2a286b4" + "f11102df-348a-4d5e-9893-fccbafdd9d76", + "f11102df-348a-4d5e-9893-fccbafdd9d76" ], "X-Powered-By": [ "ASP.NET" @@ -5300,16 +5445,16 @@ "136" ], "x-ms-correlation-request-id": [ - "625686ac-e37f-4db0-a698-0de9c1dca5b1" + "5c4ddf35-3e04-4c0a-9986-19ed3f8f00ab" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T204757Z:625686ac-e37f-4db0-a698-0de9c1dca5b1" + "WESTINDIA:20220516T180903Z:5c4ddf35-3e04-4c0a-9986-19ed3f8f00ab" ], "Date": [ - "Wed, 23 Feb 2022 20:47:56 GMT" + "Mon, 16 May 2022 18:09:03 GMT" ], "Content-Length": [ - "970" + "971" ], "Content-Type": [ "application/json" @@ -5318,26 +5463,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupJobs/f4955f76-367d-49a2-95f4-3779436ff49d\",\r\n \"name\": \"f4955f76-367d-49a2-95f4-3779436ff49d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgbfbf59cf;pstestvmbfbf50\",\r\n \"duration\": \"PT5M55.6335518S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvmbfbf50\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvmbfbf50\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-23T20:42:01.041925Z\",\r\n \"activityId\": \"9c81380d-ab42-4e74-a6c7-c10d169b4611\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupJobs/57a4adc5-e05d-4055-bdbb-2435d8d93f60\",\r\n \"name\": \"57a4adc5-e05d-4055-bdbb-2435d8d93f60\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg48b61a7d;pstestvm48b610\",\r\n \"duration\": \"PT5M46.0420396S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm48b610\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm48b610\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T18:03:17.3965623Z\",\r\n \"activityId\": \"a5981808-f090-4049-96dc-24d09eecdaeb\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupJobs/f4955f76-367d-49a2-95f4-3779436ff49d?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZiZjU5Y2YvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmJmNTljZi9iYWNrdXBKb2JzL2Y0OTU1Zjc2LTM2N2QtNDlhMi05NWY0LTM3Nzk0MzZmZjQ5ZD9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupJobs/57a4adc5-e05d-4055-bdbb-2435d8d93f60?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNDhiNjFhN2QvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y0OGI2MWE3ZC9iYWNrdXBKb2JzLzU3YTRhZGM1LWUwNWQtNDA1NS1iZGJiLTI0MzVkOGQ5M2Y2MD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "27052996-1125-4c2b-9cf9-c141b2a286b4" + "f11102df-348a-4d5e-9893-fccbafdd9d76" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -5355,11 +5500,11 @@ "nosniff" ], "x-ms-request-id": [ - "3822c331-fffb-4e9d-87f0-4d62c4fa5c76" + "372f402a-9b4c-4950-adcc-224b168087b1" ], "x-ms-client-request-id": [ - "27052996-1125-4c2b-9cf9-c141b2a286b4", - "27052996-1125-4c2b-9cf9-c141b2a286b4" + "f11102df-348a-4d5e-9893-fccbafdd9d76", + "f11102df-348a-4d5e-9893-fccbafdd9d76" ], "X-Powered-By": [ "ASP.NET" @@ -5371,16 +5516,16 @@ "135" ], "x-ms-correlation-request-id": [ - "3822c331-fffb-4e9d-87f0-4d62c4fa5c76" + "372f402a-9b4c-4950-adcc-224b168087b1" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T204828Z:3822c331-fffb-4e9d-87f0-4d62c4fa5c76" + "WESTINDIA:20220516T180934Z:372f402a-9b4c-4950-adcc-224b168087b1" ], "Date": [ - "Wed, 23 Feb 2022 20:48:27 GMT" + "Mon, 16 May 2022 18:09:34 GMT" ], "Content-Length": [ - "970" + "971" ], "Content-Type": [ "application/json" @@ -5389,26 +5534,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupJobs/f4955f76-367d-49a2-95f4-3779436ff49d\",\r\n \"name\": \"f4955f76-367d-49a2-95f4-3779436ff49d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgbfbf59cf;pstestvmbfbf50\",\r\n \"duration\": \"PT6M26.4406381S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvmbfbf50\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvmbfbf50\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-23T20:42:01.041925Z\",\r\n \"activityId\": \"9c81380d-ab42-4e74-a6c7-c10d169b4611\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupJobs/57a4adc5-e05d-4055-bdbb-2435d8d93f60\",\r\n \"name\": \"57a4adc5-e05d-4055-bdbb-2435d8d93f60\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg48b61a7d;pstestvm48b610\",\r\n \"duration\": \"PT6M16.6539846S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm48b610\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm48b610\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T18:03:17.3965623Z\",\r\n \"activityId\": \"a5981808-f090-4049-96dc-24d09eecdaeb\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupJobs/f4955f76-367d-49a2-95f4-3779436ff49d?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZiZjU5Y2YvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmJmNTljZi9iYWNrdXBKb2JzL2Y0OTU1Zjc2LTM2N2QtNDlhMi05NWY0LTM3Nzk0MzZmZjQ5ZD9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupJobs/57a4adc5-e05d-4055-bdbb-2435d8d93f60?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNDhiNjFhN2QvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y0OGI2MWE3ZC9iYWNrdXBKb2JzLzU3YTRhZGM1LWUwNWQtNDA1NS1iZGJiLTI0MzVkOGQ5M2Y2MD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "27052996-1125-4c2b-9cf9-c141b2a286b4" + "f11102df-348a-4d5e-9893-fccbafdd9d76" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -5426,11 +5571,11 @@ "nosniff" ], "x-ms-request-id": [ - "81c6a690-4eab-4099-9c39-6a7142f70f2c" + "094e8924-33a2-429c-afb8-a64829167a1f" ], "x-ms-client-request-id": [ - "27052996-1125-4c2b-9cf9-c141b2a286b4", - "27052996-1125-4c2b-9cf9-c141b2a286b4" + "f11102df-348a-4d5e-9893-fccbafdd9d76", + "f11102df-348a-4d5e-9893-fccbafdd9d76" ], "X-Powered-By": [ "ASP.NET" @@ -5442,16 +5587,16 @@ "134" ], "x-ms-correlation-request-id": [ - "81c6a690-4eab-4099-9c39-6a7142f70f2c" + "094e8924-33a2-429c-afb8-a64829167a1f" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T204859Z:81c6a690-4eab-4099-9c39-6a7142f70f2c" + "WESTINDIA:20220516T181005Z:094e8924-33a2-429c-afb8-a64829167a1f" ], "Date": [ - "Wed, 23 Feb 2022 20:48:59 GMT" + "Mon, 16 May 2022 18:10:04 GMT" ], "Content-Length": [ - "970" + "971" ], "Content-Type": [ "application/json" @@ -5460,26 +5605,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupJobs/f4955f76-367d-49a2-95f4-3779436ff49d\",\r\n \"name\": \"f4955f76-367d-49a2-95f4-3779436ff49d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgbfbf59cf;pstestvmbfbf50\",\r\n \"duration\": \"PT6M57.8374301S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvmbfbf50\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvmbfbf50\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-23T20:42:01.041925Z\",\r\n \"activityId\": \"9c81380d-ab42-4e74-a6c7-c10d169b4611\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupJobs/57a4adc5-e05d-4055-bdbb-2435d8d93f60\",\r\n \"name\": \"57a4adc5-e05d-4055-bdbb-2435d8d93f60\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg48b61a7d;pstestvm48b610\",\r\n \"duration\": \"PT6M47.2874961S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm48b610\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm48b610\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T18:03:17.3965623Z\",\r\n \"activityId\": \"a5981808-f090-4049-96dc-24d09eecdaeb\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupJobs/f4955f76-367d-49a2-95f4-3779436ff49d?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZiZjU5Y2YvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmJmNTljZi9iYWNrdXBKb2JzL2Y0OTU1Zjc2LTM2N2QtNDlhMi05NWY0LTM3Nzk0MzZmZjQ5ZD9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupJobs/57a4adc5-e05d-4055-bdbb-2435d8d93f60?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNDhiNjFhN2QvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y0OGI2MWE3ZC9iYWNrdXBKb2JzLzU3YTRhZGM1LWUwNWQtNDA1NS1iZGJiLTI0MzVkOGQ5M2Y2MD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "27052996-1125-4c2b-9cf9-c141b2a286b4" + "f11102df-348a-4d5e-9893-fccbafdd9d76" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -5497,11 +5642,11 @@ "nosniff" ], "x-ms-request-id": [ - "6d203555-f44b-4499-b38d-a88ffeae98cf" + "dcb6ce64-a7f9-4f34-8b27-d810505970b2" ], "x-ms-client-request-id": [ - "27052996-1125-4c2b-9cf9-c141b2a286b4", - "27052996-1125-4c2b-9cf9-c141b2a286b4" + "f11102df-348a-4d5e-9893-fccbafdd9d76", + "f11102df-348a-4d5e-9893-fccbafdd9d76" ], "X-Powered-By": [ "ASP.NET" @@ -5513,16 +5658,16 @@ "133" ], "x-ms-correlation-request-id": [ - "6d203555-f44b-4499-b38d-a88ffeae98cf" + "dcb6ce64-a7f9-4f34-8b27-d810505970b2" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T204930Z:6d203555-f44b-4499-b38d-a88ffeae98cf" + "WESTINDIA:20220516T181035Z:dcb6ce64-a7f9-4f34-8b27-d810505970b2" ], "Date": [ - "Wed, 23 Feb 2022 20:49:29 GMT" + "Mon, 16 May 2022 18:10:35 GMT" ], "Content-Length": [ - "970" + "971" ], "Content-Type": [ "application/json" @@ -5531,26 +5676,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupJobs/f4955f76-367d-49a2-95f4-3779436ff49d\",\r\n \"name\": \"f4955f76-367d-49a2-95f4-3779436ff49d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgbfbf59cf;pstestvmbfbf50\",\r\n \"duration\": \"PT7M28.7014945S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvmbfbf50\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvmbfbf50\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-23T20:42:01.041925Z\",\r\n \"activityId\": \"9c81380d-ab42-4e74-a6c7-c10d169b4611\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupJobs/57a4adc5-e05d-4055-bdbb-2435d8d93f60\",\r\n \"name\": \"57a4adc5-e05d-4055-bdbb-2435d8d93f60\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg48b61a7d;pstestvm48b610\",\r\n \"duration\": \"PT7M17.9611485S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm48b610\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm48b610\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T18:03:17.3965623Z\",\r\n \"activityId\": \"a5981808-f090-4049-96dc-24d09eecdaeb\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupJobs/f4955f76-367d-49a2-95f4-3779436ff49d?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZiZjU5Y2YvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmJmNTljZi9iYWNrdXBKb2JzL2Y0OTU1Zjc2LTM2N2QtNDlhMi05NWY0LTM3Nzk0MzZmZjQ5ZD9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupJobs/57a4adc5-e05d-4055-bdbb-2435d8d93f60?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNDhiNjFhN2QvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y0OGI2MWE3ZC9iYWNrdXBKb2JzLzU3YTRhZGM1LWUwNWQtNDA1NS1iZGJiLTI0MzVkOGQ5M2Y2MD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "27052996-1125-4c2b-9cf9-c141b2a286b4" + "f11102df-348a-4d5e-9893-fccbafdd9d76" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -5568,11 +5713,11 @@ "nosniff" ], "x-ms-request-id": [ - "a18f567c-d3ac-4c7c-90aa-10df7d74d84d" + "ada59fae-e64f-4457-9895-3b0dcbbf53a6" ], "x-ms-client-request-id": [ - "27052996-1125-4c2b-9cf9-c141b2a286b4", - "27052996-1125-4c2b-9cf9-c141b2a286b4" + "f11102df-348a-4d5e-9893-fccbafdd9d76", + "f11102df-348a-4d5e-9893-fccbafdd9d76" ], "X-Powered-By": [ "ASP.NET" @@ -5584,16 +5729,16 @@ "132" ], "x-ms-correlation-request-id": [ - "a18f567c-d3ac-4c7c-90aa-10df7d74d84d" + "ada59fae-e64f-4457-9895-3b0dcbbf53a6" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T205014Z:a18f567c-d3ac-4c7c-90aa-10df7d74d84d" + "WESTINDIA:20220516T181106Z:ada59fae-e64f-4457-9895-3b0dcbbf53a6" ], "Date": [ - "Wed, 23 Feb 2022 20:50:13 GMT" + "Mon, 16 May 2022 18:11:05 GMT" ], "Content-Length": [ - "969" + "970" ], "Content-Type": [ "application/json" @@ -5602,26 +5747,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupJobs/f4955f76-367d-49a2-95f4-3779436ff49d\",\r\n \"name\": \"f4955f76-367d-49a2-95f4-3779436ff49d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgbfbf59cf;pstestvmbfbf50\",\r\n \"duration\": \"PT8M12.6028946S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvmbfbf50\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvmbfbf50\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-23T20:42:01.041925Z\",\r\n \"activityId\": \"9c81380d-ab42-4e74-a6c7-c10d169b4611\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupJobs/57a4adc5-e05d-4055-bdbb-2435d8d93f60\",\r\n \"name\": \"57a4adc5-e05d-4055-bdbb-2435d8d93f60\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg48b61a7d;pstestvm48b610\",\r\n \"duration\": \"PT7M48.5085409S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm48b610\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm48b610\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T18:03:17.3965623Z\",\r\n \"activityId\": \"a5981808-f090-4049-96dc-24d09eecdaeb\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupJobs/f4955f76-367d-49a2-95f4-3779436ff49d?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZiZjU5Y2YvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmJmNTljZi9iYWNrdXBKb2JzL2Y0OTU1Zjc2LTM2N2QtNDlhMi05NWY0LTM3Nzk0MzZmZjQ5ZD9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupJobs/57a4adc5-e05d-4055-bdbb-2435d8d93f60?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNDhiNjFhN2QvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y0OGI2MWE3ZC9iYWNrdXBKb2JzLzU3YTRhZGM1LWUwNWQtNDA1NS1iZGJiLTI0MzVkOGQ5M2Y2MD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "27052996-1125-4c2b-9cf9-c141b2a286b4" + "f11102df-348a-4d5e-9893-fccbafdd9d76" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -5639,11 +5784,11 @@ "nosniff" ], "x-ms-request-id": [ - "242ffd3a-db27-4447-8bb1-e048b5e7ee59" + "45ad6613-9efe-4bd5-a256-e303fad3f78b" ], "x-ms-client-request-id": [ - "27052996-1125-4c2b-9cf9-c141b2a286b4", - "27052996-1125-4c2b-9cf9-c141b2a286b4" + "f11102df-348a-4d5e-9893-fccbafdd9d76", + "f11102df-348a-4d5e-9893-fccbafdd9d76" ], "X-Powered-By": [ "ASP.NET" @@ -5655,16 +5800,16 @@ "131" ], "x-ms-correlation-request-id": [ - "242ffd3a-db27-4447-8bb1-e048b5e7ee59" + "45ad6613-9efe-4bd5-a256-e303fad3f78b" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T205046Z:242ffd3a-db27-4447-8bb1-e048b5e7ee59" + "WESTINDIA:20220516T181136Z:45ad6613-9efe-4bd5-a256-e303fad3f78b" ], "Date": [ - "Wed, 23 Feb 2022 20:50:46 GMT" + "Mon, 16 May 2022 18:11:36 GMT" ], "Content-Length": [ - "968" + "970" ], "Content-Type": [ "application/json" @@ -5673,26 +5818,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupJobs/f4955f76-367d-49a2-95f4-3779436ff49d\",\r\n \"name\": \"f4955f76-367d-49a2-95f4-3779436ff49d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgbfbf59cf;pstestvmbfbf50\",\r\n \"duration\": \"PT8M45.174184S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvmbfbf50\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvmbfbf50\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-23T20:42:01.041925Z\",\r\n \"activityId\": \"9c81380d-ab42-4e74-a6c7-c10d169b4611\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupJobs/57a4adc5-e05d-4055-bdbb-2435d8d93f60\",\r\n \"name\": \"57a4adc5-e05d-4055-bdbb-2435d8d93f60\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg48b61a7d;pstestvm48b610\",\r\n \"duration\": \"PT8M19.1402386S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm48b610\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm48b610\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T18:03:17.3965623Z\",\r\n \"activityId\": \"a5981808-f090-4049-96dc-24d09eecdaeb\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupJobs/f4955f76-367d-49a2-95f4-3779436ff49d?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZiZjU5Y2YvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmJmNTljZi9iYWNrdXBKb2JzL2Y0OTU1Zjc2LTM2N2QtNDlhMi05NWY0LTM3Nzk0MzZmZjQ5ZD9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupJobs/57a4adc5-e05d-4055-bdbb-2435d8d93f60?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNDhiNjFhN2QvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y0OGI2MWE3ZC9iYWNrdXBKb2JzLzU3YTRhZGM1LWUwNWQtNDA1NS1iZGJiLTI0MzVkOGQ5M2Y2MD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "27052996-1125-4c2b-9cf9-c141b2a286b4" + "f11102df-348a-4d5e-9893-fccbafdd9d76" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -5710,11 +5855,11 @@ "nosniff" ], "x-ms-request-id": [ - "3fe42c46-c75a-4054-8fa6-313d1f21fd9e" + "dd4271ae-152a-4f7c-8c8a-0f5a3f8d538e" ], "x-ms-client-request-id": [ - "27052996-1125-4c2b-9cf9-c141b2a286b4", - "27052996-1125-4c2b-9cf9-c141b2a286b4" + "f11102df-348a-4d5e-9893-fccbafdd9d76", + "f11102df-348a-4d5e-9893-fccbafdd9d76" ], "X-Powered-By": [ "ASP.NET" @@ -5726,16 +5871,16 @@ "130" ], "x-ms-correlation-request-id": [ - "3fe42c46-c75a-4054-8fa6-313d1f21fd9e" + "dd4271ae-152a-4f7c-8c8a-0f5a3f8d538e" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T205117Z:3fe42c46-c75a-4054-8fa6-313d1f21fd9e" + "WESTINDIA:20220516T181207Z:dd4271ae-152a-4f7c-8c8a-0f5a3f8d538e" ], "Date": [ - "Wed, 23 Feb 2022 20:51:17 GMT" + "Mon, 16 May 2022 18:12:07 GMT" ], "Content-Length": [ - "969" + "970" ], "Content-Type": [ "application/json" @@ -5744,26 +5889,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupJobs/f4955f76-367d-49a2-95f4-3779436ff49d\",\r\n \"name\": \"f4955f76-367d-49a2-95f4-3779436ff49d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgbfbf59cf;pstestvmbfbf50\",\r\n \"duration\": \"PT9M16.1527169S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvmbfbf50\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvmbfbf50\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-23T20:42:01.041925Z\",\r\n \"activityId\": \"9c81380d-ab42-4e74-a6c7-c10d169b4611\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupJobs/57a4adc5-e05d-4055-bdbb-2435d8d93f60\",\r\n \"name\": \"57a4adc5-e05d-4055-bdbb-2435d8d93f60\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg48b61a7d;pstestvm48b610\",\r\n \"duration\": \"PT8M50.0251729S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm48b610\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm48b610\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T18:03:17.3965623Z\",\r\n \"activityId\": \"a5981808-f090-4049-96dc-24d09eecdaeb\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupJobs/f4955f76-367d-49a2-95f4-3779436ff49d?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZiZjU5Y2YvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmJmNTljZi9iYWNrdXBKb2JzL2Y0OTU1Zjc2LTM2N2QtNDlhMi05NWY0LTM3Nzk0MzZmZjQ5ZD9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupJobs/57a4adc5-e05d-4055-bdbb-2435d8d93f60?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNDhiNjFhN2QvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y0OGI2MWE3ZC9iYWNrdXBKb2JzLzU3YTRhZGM1LWUwNWQtNDA1NS1iZGJiLTI0MzVkOGQ5M2Y2MD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "27052996-1125-4c2b-9cf9-c141b2a286b4" + "f11102df-348a-4d5e-9893-fccbafdd9d76" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -5781,11 +5926,11 @@ "nosniff" ], "x-ms-request-id": [ - "96c6ba0b-7154-4ada-8198-37849a8ab625" + "0425f7de-21cf-4a07-89db-0f27f4580014" ], "x-ms-client-request-id": [ - "27052996-1125-4c2b-9cf9-c141b2a286b4", - "27052996-1125-4c2b-9cf9-c141b2a286b4" + "f11102df-348a-4d5e-9893-fccbafdd9d76", + "f11102df-348a-4d5e-9893-fccbafdd9d76" ], "X-Powered-By": [ "ASP.NET" @@ -5797,16 +5942,16 @@ "129" ], "x-ms-correlation-request-id": [ - "96c6ba0b-7154-4ada-8198-37849a8ab625" + "0425f7de-21cf-4a07-89db-0f27f4580014" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T205148Z:96c6ba0b-7154-4ada-8198-37849a8ab625" + "WESTINDIA:20220516T181238Z:0425f7de-21cf-4a07-89db-0f27f4580014" ], "Date": [ - "Wed, 23 Feb 2022 20:51:48 GMT" + "Mon, 16 May 2022 18:12:37 GMT" ], "Content-Length": [ - "969" + "970" ], "Content-Type": [ "application/json" @@ -5815,26 +5960,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupJobs/f4955f76-367d-49a2-95f4-3779436ff49d\",\r\n \"name\": \"f4955f76-367d-49a2-95f4-3779436ff49d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgbfbf59cf;pstestvmbfbf50\",\r\n \"duration\": \"PT9M47.0689897S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvmbfbf50\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvmbfbf50\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-23T20:42:01.041925Z\",\r\n \"activityId\": \"9c81380d-ab42-4e74-a6c7-c10d169b4611\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupJobs/57a4adc5-e05d-4055-bdbb-2435d8d93f60\",\r\n \"name\": \"57a4adc5-e05d-4055-bdbb-2435d8d93f60\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg48b61a7d;pstestvm48b610\",\r\n \"duration\": \"PT9M20.7049762S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm48b610\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm48b610\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T18:03:17.3965623Z\",\r\n \"activityId\": \"a5981808-f090-4049-96dc-24d09eecdaeb\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupJobs/f4955f76-367d-49a2-95f4-3779436ff49d?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZiZjU5Y2YvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmJmNTljZi9iYWNrdXBKb2JzL2Y0OTU1Zjc2LTM2N2QtNDlhMi05NWY0LTM3Nzk0MzZmZjQ5ZD9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupJobs/57a4adc5-e05d-4055-bdbb-2435d8d93f60?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNDhiNjFhN2QvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y0OGI2MWE3ZC9iYWNrdXBKb2JzLzU3YTRhZGM1LWUwNWQtNDA1NS1iZGJiLTI0MzVkOGQ5M2Y2MD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "27052996-1125-4c2b-9cf9-c141b2a286b4" + "f11102df-348a-4d5e-9893-fccbafdd9d76" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -5852,11 +5997,11 @@ "nosniff" ], "x-ms-request-id": [ - "4e317827-fdcf-46a9-8e62-e6c790d1fb49" + "f96b6bff-3145-4ca2-b9b5-ede229eda59e" ], "x-ms-client-request-id": [ - "27052996-1125-4c2b-9cf9-c141b2a286b4", - "27052996-1125-4c2b-9cf9-c141b2a286b4" + "f11102df-348a-4d5e-9893-fccbafdd9d76", + "f11102df-348a-4d5e-9893-fccbafdd9d76" ], "X-Powered-By": [ "ASP.NET" @@ -5868,16 +6013,16 @@ "128" ], "x-ms-correlation-request-id": [ - "4e317827-fdcf-46a9-8e62-e6c790d1fb49" + "f96b6bff-3145-4ca2-b9b5-ede229eda59e" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T205219Z:4e317827-fdcf-46a9-8e62-e6c790d1fb49" + "WESTINDIA:20220516T181309Z:f96b6bff-3145-4ca2-b9b5-ede229eda59e" ], "Date": [ - "Wed, 23 Feb 2022 20:52:18 GMT" + "Mon, 16 May 2022 18:13:08 GMT" ], "Content-Length": [ - "969" + "970" ], "Content-Type": [ "application/json" @@ -5886,26 +6031,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupJobs/f4955f76-367d-49a2-95f4-3779436ff49d\",\r\n \"name\": \"f4955f76-367d-49a2-95f4-3779436ff49d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgbfbf59cf;pstestvmbfbf50\",\r\n \"duration\": \"PT10M17.952364S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvmbfbf50\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvmbfbf50\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-23T20:42:01.041925Z\",\r\n \"activityId\": \"9c81380d-ab42-4e74-a6c7-c10d169b4611\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupJobs/57a4adc5-e05d-4055-bdbb-2435d8d93f60\",\r\n \"name\": \"57a4adc5-e05d-4055-bdbb-2435d8d93f60\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg48b61a7d;pstestvm48b610\",\r\n \"duration\": \"PT9M51.5485166S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm48b610\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm48b610\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T18:03:17.3965623Z\",\r\n \"activityId\": \"a5981808-f090-4049-96dc-24d09eecdaeb\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupJobs/f4955f76-367d-49a2-95f4-3779436ff49d?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZiZjU5Y2YvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmJmNTljZi9iYWNrdXBKb2JzL2Y0OTU1Zjc2LTM2N2QtNDlhMi05NWY0LTM3Nzk0MzZmZjQ5ZD9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupJobs/57a4adc5-e05d-4055-bdbb-2435d8d93f60?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNDhiNjFhN2QvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y0OGI2MWE3ZC9iYWNrdXBKb2JzLzU3YTRhZGM1LWUwNWQtNDA1NS1iZGJiLTI0MzVkOGQ5M2Y2MD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "27052996-1125-4c2b-9cf9-c141b2a286b4" + "f11102df-348a-4d5e-9893-fccbafdd9d76" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -5923,11 +6068,11 @@ "nosniff" ], "x-ms-request-id": [ - "0ffc841f-904a-4ed5-88e2-b710c8ae6ac8" + "22c745ad-a2d2-4fc8-aa6e-bd2309386f75" ], "x-ms-client-request-id": [ - "27052996-1125-4c2b-9cf9-c141b2a286b4", - "27052996-1125-4c2b-9cf9-c141b2a286b4" + "f11102df-348a-4d5e-9893-fccbafdd9d76", + "f11102df-348a-4d5e-9893-fccbafdd9d76" ], "X-Powered-By": [ "ASP.NET" @@ -5939,16 +6084,16 @@ "127" ], "x-ms-correlation-request-id": [ - "0ffc841f-904a-4ed5-88e2-b710c8ae6ac8" + "22c745ad-a2d2-4fc8-aa6e-bd2309386f75" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T205253Z:0ffc841f-904a-4ed5-88e2-b710c8ae6ac8" + "WESTINDIA:20220516T181340Z:22c745ad-a2d2-4fc8-aa6e-bd2309386f75" ], "Date": [ - "Wed, 23 Feb 2022 20:52:53 GMT" + "Mon, 16 May 2022 18:13:39 GMT" ], "Content-Length": [ - "970" + "971" ], "Content-Type": [ "application/json" @@ -5957,26 +6102,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupJobs/f4955f76-367d-49a2-95f4-3779436ff49d\",\r\n \"name\": \"f4955f76-367d-49a2-95f4-3779436ff49d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgbfbf59cf;pstestvmbfbf50\",\r\n \"duration\": \"PT10M50.4141137S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvmbfbf50\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvmbfbf50\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-23T20:42:01.041925Z\",\r\n \"activityId\": \"9c81380d-ab42-4e74-a6c7-c10d169b4611\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupJobs/57a4adc5-e05d-4055-bdbb-2435d8d93f60\",\r\n \"name\": \"57a4adc5-e05d-4055-bdbb-2435d8d93f60\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg48b61a7d;pstestvm48b610\",\r\n \"duration\": \"PT10M22.2455254S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"NotStarted\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm48b610\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm48b610\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T18:03:17.3965623Z\",\r\n \"activityId\": \"a5981808-f090-4049-96dc-24d09eecdaeb\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupJobs/f4955f76-367d-49a2-95f4-3779436ff49d?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZiZjU5Y2YvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmJmNTljZi9iYWNrdXBKb2JzL2Y0OTU1Zjc2LTM2N2QtNDlhMi05NWY0LTM3Nzk0MzZmZjQ5ZD9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupJobs/57a4adc5-e05d-4055-bdbb-2435d8d93f60?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNDhiNjFhN2QvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y0OGI2MWE3ZC9iYWNrdXBKb2JzLzU3YTRhZGM1LWUwNWQtNDA1NS1iZGJiLTI0MzVkOGQ5M2Y2MD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "27052996-1125-4c2b-9cf9-c141b2a286b4" + "f11102df-348a-4d5e-9893-fccbafdd9d76" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -5994,11 +6139,11 @@ "nosniff" ], "x-ms-request-id": [ - "07b2d568-5254-43b5-b751-866bfc95c242" + "92c3f76a-3862-47d2-a59d-26ed2df7d685" ], "x-ms-client-request-id": [ - "27052996-1125-4c2b-9cf9-c141b2a286b4", - "27052996-1125-4c2b-9cf9-c141b2a286b4" + "f11102df-348a-4d5e-9893-fccbafdd9d76", + "f11102df-348a-4d5e-9893-fccbafdd9d76" ], "X-Powered-By": [ "ASP.NET" @@ -6010,16 +6155,16 @@ "126" ], "x-ms-correlation-request-id": [ - "07b2d568-5254-43b5-b751-866bfc95c242" + "92c3f76a-3862-47d2-a59d-26ed2df7d685" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T205324Z:07b2d568-5254-43b5-b751-866bfc95c242" + "WESTINDIA:20220516T181410Z:92c3f76a-3862-47d2-a59d-26ed2df7d685" ], "Date": [ - "Wed, 23 Feb 2022 20:53:24 GMT" + "Mon, 16 May 2022 18:14:10 GMT" ], "Content-Length": [ - "970" + "971" ], "Content-Type": [ "application/json" @@ -6028,26 +6173,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupJobs/f4955f76-367d-49a2-95f4-3779436ff49d\",\r\n \"name\": \"f4955f76-367d-49a2-95f4-3779436ff49d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgbfbf59cf;pstestvmbfbf50\",\r\n \"duration\": \"PT11M22.8495062S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvmbfbf50\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvmbfbf50\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-23T20:42:01.041925Z\",\r\n \"activityId\": \"9c81380d-ab42-4e74-a6c7-c10d169b4611\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupJobs/57a4adc5-e05d-4055-bdbb-2435d8d93f60\",\r\n \"name\": \"57a4adc5-e05d-4055-bdbb-2435d8d93f60\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg48b61a7d;pstestvm48b610\",\r\n \"duration\": \"PT10M52.8137205S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm48b610\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm48b610\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T18:03:17.3965623Z\",\r\n \"activityId\": \"a5981808-f090-4049-96dc-24d09eecdaeb\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupJobs/f4955f76-367d-49a2-95f4-3779436ff49d?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZiZjU5Y2YvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmJmNTljZi9iYWNrdXBKb2JzL2Y0OTU1Zjc2LTM2N2QtNDlhMi05NWY0LTM3Nzk0MzZmZjQ5ZD9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupJobs/57a4adc5-e05d-4055-bdbb-2435d8d93f60?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNDhiNjFhN2QvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y0OGI2MWE3ZC9iYWNrdXBKb2JzLzU3YTRhZGM1LWUwNWQtNDA1NS1iZGJiLTI0MzVkOGQ5M2Y2MD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "27052996-1125-4c2b-9cf9-c141b2a286b4" + "f11102df-348a-4d5e-9893-fccbafdd9d76" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -6065,11 +6210,11 @@ "nosniff" ], "x-ms-request-id": [ - "0d9f67db-72aa-4075-b62e-eccc2ad06f73" + "4b84f157-97d7-4aad-a178-34aaa638e929" ], "x-ms-client-request-id": [ - "27052996-1125-4c2b-9cf9-c141b2a286b4", - "27052996-1125-4c2b-9cf9-c141b2a286b4" + "f11102df-348a-4d5e-9893-fccbafdd9d76", + "f11102df-348a-4d5e-9893-fccbafdd9d76" ], "X-Powered-By": [ "ASP.NET" @@ -6081,16 +6226,16 @@ "125" ], "x-ms-correlation-request-id": [ - "0d9f67db-72aa-4075-b62e-eccc2ad06f73" + "4b84f157-97d7-4aad-a178-34aaa638e929" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T205409Z:0d9f67db-72aa-4075-b62e-eccc2ad06f73" + "WESTINDIA:20220516T181441Z:4b84f157-97d7-4aad-a178-34aaa638e929" ], "Date": [ - "Wed, 23 Feb 2022 20:54:08 GMT" + "Mon, 16 May 2022 18:14:41 GMT" ], "Content-Length": [ - "969" + "971" ], "Content-Type": [ "application/json" @@ -6099,26 +6244,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupJobs/f4955f76-367d-49a2-95f4-3779436ff49d\",\r\n \"name\": \"f4955f76-367d-49a2-95f4-3779436ff49d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgbfbf59cf;pstestvmbfbf50\",\r\n \"duration\": \"PT12M7.6518997S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvmbfbf50\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvmbfbf50\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-23T20:42:01.041925Z\",\r\n \"activityId\": \"9c81380d-ab42-4e74-a6c7-c10d169b4611\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupJobs/57a4adc5-e05d-4055-bdbb-2435d8d93f60\",\r\n \"name\": \"57a4adc5-e05d-4055-bdbb-2435d8d93f60\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg48b61a7d;pstestvm48b610\",\r\n \"duration\": \"PT11M23.5779885S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm48b610\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm48b610\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T18:03:17.3965623Z\",\r\n \"activityId\": \"a5981808-f090-4049-96dc-24d09eecdaeb\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupJobs/f4955f76-367d-49a2-95f4-3779436ff49d?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZiZjU5Y2YvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmJmNTljZi9iYWNrdXBKb2JzL2Y0OTU1Zjc2LTM2N2QtNDlhMi05NWY0LTM3Nzk0MzZmZjQ5ZD9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupJobs/57a4adc5-e05d-4055-bdbb-2435d8d93f60?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNDhiNjFhN2QvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y0OGI2MWE3ZC9iYWNrdXBKb2JzLzU3YTRhZGM1LWUwNWQtNDA1NS1iZGJiLTI0MzVkOGQ5M2Y2MD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "27052996-1125-4c2b-9cf9-c141b2a286b4" + "f11102df-348a-4d5e-9893-fccbafdd9d76" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -6136,11 +6281,11 @@ "nosniff" ], "x-ms-request-id": [ - "87311210-14af-4d76-97af-46e021e714b2" + "4b90c985-c1f8-4aed-8089-11b7ee34d3d5" ], "x-ms-client-request-id": [ - "27052996-1125-4c2b-9cf9-c141b2a286b4", - "27052996-1125-4c2b-9cf9-c141b2a286b4" + "f11102df-348a-4d5e-9893-fccbafdd9d76", + "f11102df-348a-4d5e-9893-fccbafdd9d76" ], "X-Powered-By": [ "ASP.NET" @@ -6152,16 +6297,16 @@ "124" ], "x-ms-correlation-request-id": [ - "87311210-14af-4d76-97af-46e021e714b2" + "4b90c985-c1f8-4aed-8089-11b7ee34d3d5" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T205441Z:87311210-14af-4d76-97af-46e021e714b2" + "WESTINDIA:20220516T181511Z:4b90c985-c1f8-4aed-8089-11b7ee34d3d5" ], "Date": [ - "Wed, 23 Feb 2022 20:54:41 GMT" + "Mon, 16 May 2022 18:15:11 GMT" ], "Content-Length": [ - "970" + "971" ], "Content-Type": [ "application/json" @@ -6170,26 +6315,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupJobs/f4955f76-367d-49a2-95f4-3779436ff49d\",\r\n \"name\": \"f4955f76-367d-49a2-95f4-3779436ff49d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgbfbf59cf;pstestvmbfbf50\",\r\n \"duration\": \"PT12M40.2230041S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvmbfbf50\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvmbfbf50\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-23T20:42:01.041925Z\",\r\n \"activityId\": \"9c81380d-ab42-4e74-a6c7-c10d169b4611\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupJobs/57a4adc5-e05d-4055-bdbb-2435d8d93f60\",\r\n \"name\": \"57a4adc5-e05d-4055-bdbb-2435d8d93f60\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg48b61a7d;pstestvm48b610\",\r\n \"duration\": \"PT11M54.1505835S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm48b610\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm48b610\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T18:03:17.3965623Z\",\r\n \"activityId\": \"a5981808-f090-4049-96dc-24d09eecdaeb\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupJobs/f4955f76-367d-49a2-95f4-3779436ff49d?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZiZjU5Y2YvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmJmNTljZi9iYWNrdXBKb2JzL2Y0OTU1Zjc2LTM2N2QtNDlhMi05NWY0LTM3Nzk0MzZmZjQ5ZD9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupJobs/57a4adc5-e05d-4055-bdbb-2435d8d93f60?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNDhiNjFhN2QvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y0OGI2MWE3ZC9iYWNrdXBKb2JzLzU3YTRhZGM1LWUwNWQtNDA1NS1iZGJiLTI0MzVkOGQ5M2Y2MD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "27052996-1125-4c2b-9cf9-c141b2a286b4" + "f11102df-348a-4d5e-9893-fccbafdd9d76" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -6207,11 +6352,11 @@ "nosniff" ], "x-ms-request-id": [ - "0f5a7dff-d3b8-44fc-b98d-fc866a479943" + "a8c8bd8d-d5cd-4f88-9c61-6bd34a04ad27" ], "x-ms-client-request-id": [ - "27052996-1125-4c2b-9cf9-c141b2a286b4", - "27052996-1125-4c2b-9cf9-c141b2a286b4" + "f11102df-348a-4d5e-9893-fccbafdd9d76", + "f11102df-348a-4d5e-9893-fccbafdd9d76" ], "X-Powered-By": [ "ASP.NET" @@ -6223,16 +6368,16 @@ "123" ], "x-ms-correlation-request-id": [ - "0f5a7dff-d3b8-44fc-b98d-fc866a479943" + "a8c8bd8d-d5cd-4f88-9c61-6bd34a04ad27" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T205512Z:0f5a7dff-d3b8-44fc-b98d-fc866a479943" + "WESTINDIA:20220516T181542Z:a8c8bd8d-d5cd-4f88-9c61-6bd34a04ad27" ], "Date": [ - "Wed, 23 Feb 2022 20:55:12 GMT" + "Mon, 16 May 2022 18:15:42 GMT" ], "Content-Length": [ - "970" + "971" ], "Content-Type": [ "application/json" @@ -6241,26 +6386,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupJobs/f4955f76-367d-49a2-95f4-3779436ff49d\",\r\n \"name\": \"f4955f76-367d-49a2-95f4-3779436ff49d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgbfbf59cf;pstestvmbfbf50\",\r\n \"duration\": \"PT13M11.1087913S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvmbfbf50\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvmbfbf50\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-23T20:42:01.041925Z\",\r\n \"activityId\": \"9c81380d-ab42-4e74-a6c7-c10d169b4611\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupJobs/57a4adc5-e05d-4055-bdbb-2435d8d93f60\",\r\n \"name\": \"57a4adc5-e05d-4055-bdbb-2435d8d93f60\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg48b61a7d;pstestvm48b610\",\r\n \"duration\": \"PT12M24.8422593S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm48b610\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm48b610\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T18:03:17.3965623Z\",\r\n \"activityId\": \"a5981808-f090-4049-96dc-24d09eecdaeb\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupJobs/f4955f76-367d-49a2-95f4-3779436ff49d?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZiZjU5Y2YvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmJmNTljZi9iYWNrdXBKb2JzL2Y0OTU1Zjc2LTM2N2QtNDlhMi05NWY0LTM3Nzk0MzZmZjQ5ZD9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupJobs/57a4adc5-e05d-4055-bdbb-2435d8d93f60?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNDhiNjFhN2QvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y0OGI2MWE3ZC9iYWNrdXBKb2JzLzU3YTRhZGM1LWUwNWQtNDA1NS1iZGJiLTI0MzVkOGQ5M2Y2MD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "27052996-1125-4c2b-9cf9-c141b2a286b4" + "f11102df-348a-4d5e-9893-fccbafdd9d76" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -6278,11 +6423,11 @@ "nosniff" ], "x-ms-request-id": [ - "f5c83b92-90b9-4a56-92c4-f8989701dae0" + "5d4444e2-ebd6-4ead-817f-d706ee4fc903" ], "x-ms-client-request-id": [ - "27052996-1125-4c2b-9cf9-c141b2a286b4", - "27052996-1125-4c2b-9cf9-c141b2a286b4" + "f11102df-348a-4d5e-9893-fccbafdd9d76", + "f11102df-348a-4d5e-9893-fccbafdd9d76" ], "X-Powered-By": [ "ASP.NET" @@ -6294,16 +6439,16 @@ "122" ], "x-ms-correlation-request-id": [ - "f5c83b92-90b9-4a56-92c4-f8989701dae0" + "5d4444e2-ebd6-4ead-817f-d706ee4fc903" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T205554Z:f5c83b92-90b9-4a56-92c4-f8989701dae0" + "WESTINDIA:20220516T181613Z:5d4444e2-ebd6-4ead-817f-d706ee4fc903" ], "Date": [ - "Wed, 23 Feb 2022 20:55:53 GMT" + "Mon, 16 May 2022 18:16:13 GMT" ], "Content-Length": [ - "970" + "971" ], "Content-Type": [ "application/json" @@ -6312,26 +6457,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupJobs/f4955f76-367d-49a2-95f4-3779436ff49d\",\r\n \"name\": \"f4955f76-367d-49a2-95f4-3779436ff49d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgbfbf59cf;pstestvmbfbf50\",\r\n \"duration\": \"PT13M51.9950581S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvmbfbf50\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvmbfbf50\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-23T20:42:01.041925Z\",\r\n \"activityId\": \"9c81380d-ab42-4e74-a6c7-c10d169b4611\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupJobs/57a4adc5-e05d-4055-bdbb-2435d8d93f60\",\r\n \"name\": \"57a4adc5-e05d-4055-bdbb-2435d8d93f60\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg48b61a7d;pstestvm48b610\",\r\n \"duration\": \"PT12M55.4221161S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm48b610\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm48b610\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T18:03:17.3965623Z\",\r\n \"activityId\": \"a5981808-f090-4049-96dc-24d09eecdaeb\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupJobs/f4955f76-367d-49a2-95f4-3779436ff49d?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZiZjU5Y2YvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmJmNTljZi9iYWNrdXBKb2JzL2Y0OTU1Zjc2LTM2N2QtNDlhMi05NWY0LTM3Nzk0MzZmZjQ5ZD9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupJobs/57a4adc5-e05d-4055-bdbb-2435d8d93f60?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNDhiNjFhN2QvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y0OGI2MWE3ZC9iYWNrdXBKb2JzLzU3YTRhZGM1LWUwNWQtNDA1NS1iZGJiLTI0MzVkOGQ5M2Y2MD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "27052996-1125-4c2b-9cf9-c141b2a286b4" + "f11102df-348a-4d5e-9893-fccbafdd9d76" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -6349,11 +6494,11 @@ "nosniff" ], "x-ms-request-id": [ - "3b9b6b33-3cc7-4ed3-8515-0bfd923395bc" + "31738135-ce96-42cc-bb4b-37c7d48c3f91" ], "x-ms-client-request-id": [ - "27052996-1125-4c2b-9cf9-c141b2a286b4", - "27052996-1125-4c2b-9cf9-c141b2a286b4" + "f11102df-348a-4d5e-9893-fccbafdd9d76", + "f11102df-348a-4d5e-9893-fccbafdd9d76" ], "X-Powered-By": [ "ASP.NET" @@ -6365,16 +6510,16 @@ "121" ], "x-ms-correlation-request-id": [ - "3b9b6b33-3cc7-4ed3-8515-0bfd923395bc" + "31738135-ce96-42cc-bb4b-37c7d48c3f91" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T205627Z:3b9b6b33-3cc7-4ed3-8515-0bfd923395bc" + "WESTINDIA:20220516T181644Z:31738135-ce96-42cc-bb4b-37c7d48c3f91" ], "Date": [ - "Wed, 23 Feb 2022 20:56:27 GMT" + "Mon, 16 May 2022 18:16:43 GMT" ], "Content-Length": [ - "970" + "971" ], "Content-Type": [ "application/json" @@ -6383,26 +6528,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupJobs/f4955f76-367d-49a2-95f4-3779436ff49d\",\r\n \"name\": \"f4955f76-367d-49a2-95f4-3779436ff49d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgbfbf59cf;pstestvmbfbf50\",\r\n \"duration\": \"PT14M26.2466842S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvmbfbf50\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvmbfbf50\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-23T20:42:01.041925Z\",\r\n \"activityId\": \"9c81380d-ab42-4e74-a6c7-c10d169b4611\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupJobs/57a4adc5-e05d-4055-bdbb-2435d8d93f60\",\r\n \"name\": \"57a4adc5-e05d-4055-bdbb-2435d8d93f60\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg48b61a7d;pstestvm48b610\",\r\n \"duration\": \"PT13M26.4724358S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm48b610\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm48b610\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T18:03:17.3965623Z\",\r\n \"activityId\": \"a5981808-f090-4049-96dc-24d09eecdaeb\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupJobs/f4955f76-367d-49a2-95f4-3779436ff49d?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZiZjU5Y2YvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmJmNTljZi9iYWNrdXBKb2JzL2Y0OTU1Zjc2LTM2N2QtNDlhMi05NWY0LTM3Nzk0MzZmZjQ5ZD9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupJobs/57a4adc5-e05d-4055-bdbb-2435d8d93f60?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNDhiNjFhN2QvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y0OGI2MWE3ZC9iYWNrdXBKb2JzLzU3YTRhZGM1LWUwNWQtNDA1NS1iZGJiLTI0MzVkOGQ5M2Y2MD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "27052996-1125-4c2b-9cf9-c141b2a286b4" + "f11102df-348a-4d5e-9893-fccbafdd9d76" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -6420,11 +6565,11 @@ "nosniff" ], "x-ms-request-id": [ - "aa7f21bf-6419-493f-b395-0171c2bc205e" + "bde97196-64b8-4aad-91d6-2dcb2e771f99" ], "x-ms-client-request-id": [ - "27052996-1125-4c2b-9cf9-c141b2a286b4", - "27052996-1125-4c2b-9cf9-c141b2a286b4" + "f11102df-348a-4d5e-9893-fccbafdd9d76", + "f11102df-348a-4d5e-9893-fccbafdd9d76" ], "X-Powered-By": [ "ASP.NET" @@ -6436,16 +6581,16 @@ "120" ], "x-ms-correlation-request-id": [ - "aa7f21bf-6419-493f-b395-0171c2bc205e" + "bde97196-64b8-4aad-91d6-2dcb2e771f99" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T205658Z:aa7f21bf-6419-493f-b395-0171c2bc205e" + "WESTINDIA:20220516T181714Z:bde97196-64b8-4aad-91d6-2dcb2e771f99" ], "Date": [ - "Wed, 23 Feb 2022 20:56:58 GMT" + "Mon, 16 May 2022 18:17:14 GMT" ], "Content-Length": [ - "970" + "971" ], "Content-Type": [ "application/json" @@ -6454,26 +6599,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupJobs/f4955f76-367d-49a2-95f4-3779436ff49d\",\r\n \"name\": \"f4955f76-367d-49a2-95f4-3779436ff49d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgbfbf59cf;pstestvmbfbf50\",\r\n \"duration\": \"PT14M57.0990473S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvmbfbf50\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvmbfbf50\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-23T20:42:01.041925Z\",\r\n \"activityId\": \"9c81380d-ab42-4e74-a6c7-c10d169b4611\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupJobs/57a4adc5-e05d-4055-bdbb-2435d8d93f60\",\r\n \"name\": \"57a4adc5-e05d-4055-bdbb-2435d8d93f60\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg48b61a7d;pstestvm48b610\",\r\n \"duration\": \"PT13M57.1356811S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm48b610\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm48b610\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T18:03:17.3965623Z\",\r\n \"activityId\": \"a5981808-f090-4049-96dc-24d09eecdaeb\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupJobs/f4955f76-367d-49a2-95f4-3779436ff49d?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZiZjU5Y2YvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmJmNTljZi9iYWNrdXBKb2JzL2Y0OTU1Zjc2LTM2N2QtNDlhMi05NWY0LTM3Nzk0MzZmZjQ5ZD9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupJobs/57a4adc5-e05d-4055-bdbb-2435d8d93f60?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNDhiNjFhN2QvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y0OGI2MWE3ZC9iYWNrdXBKb2JzLzU3YTRhZGM1LWUwNWQtNDA1NS1iZGJiLTI0MzVkOGQ5M2Y2MD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "27052996-1125-4c2b-9cf9-c141b2a286b4" + "f11102df-348a-4d5e-9893-fccbafdd9d76" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -6491,11 +6636,11 @@ "nosniff" ], "x-ms-request-id": [ - "a3aafb60-eadb-44de-8238-041ae3d5f64c" + "73fb1c28-9699-4660-a757-3830fe0fbb66" ], "x-ms-client-request-id": [ - "27052996-1125-4c2b-9cf9-c141b2a286b4", - "27052996-1125-4c2b-9cf9-c141b2a286b4" + "f11102df-348a-4d5e-9893-fccbafdd9d76", + "f11102df-348a-4d5e-9893-fccbafdd9d76" ], "X-Powered-By": [ "ASP.NET" @@ -6507,16 +6652,16 @@ "119" ], "x-ms-correlation-request-id": [ - "a3aafb60-eadb-44de-8238-041ae3d5f64c" + "73fb1c28-9699-4660-a757-3830fe0fbb66" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T205729Z:a3aafb60-eadb-44de-8238-041ae3d5f64c" + "WESTINDIA:20220516T181745Z:73fb1c28-9699-4660-a757-3830fe0fbb66" ], "Date": [ - "Wed, 23 Feb 2022 20:57:29 GMT" + "Mon, 16 May 2022 18:17:44 GMT" ], "Content-Length": [ - "970" + "971" ], "Content-Type": [ "application/json" @@ -6525,26 +6670,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupJobs/f4955f76-367d-49a2-95f4-3779436ff49d\",\r\n \"name\": \"f4955f76-367d-49a2-95f4-3779436ff49d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgbfbf59cf;pstestvmbfbf50\",\r\n \"duration\": \"PT15M27.9356163S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvmbfbf50\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvmbfbf50\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-23T20:42:01.041925Z\",\r\n \"activityId\": \"9c81380d-ab42-4e74-a6c7-c10d169b4611\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupJobs/57a4adc5-e05d-4055-bdbb-2435d8d93f60\",\r\n \"name\": \"57a4adc5-e05d-4055-bdbb-2435d8d93f60\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg48b61a7d;pstestvm48b610\",\r\n \"duration\": \"PT14M27.8218307S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm48b610\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm48b610\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T18:03:17.3965623Z\",\r\n \"activityId\": \"a5981808-f090-4049-96dc-24d09eecdaeb\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupJobs/f4955f76-367d-49a2-95f4-3779436ff49d?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZiZjU5Y2YvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmJmNTljZi9iYWNrdXBKb2JzL2Y0OTU1Zjc2LTM2N2QtNDlhMi05NWY0LTM3Nzk0MzZmZjQ5ZD9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupJobs/57a4adc5-e05d-4055-bdbb-2435d8d93f60?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNDhiNjFhN2QvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y0OGI2MWE3ZC9iYWNrdXBKb2JzLzU3YTRhZGM1LWUwNWQtNDA1NS1iZGJiLTI0MzVkOGQ5M2Y2MD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "27052996-1125-4c2b-9cf9-c141b2a286b4" + "f11102df-348a-4d5e-9893-fccbafdd9d76" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -6562,11 +6707,11 @@ "nosniff" ], "x-ms-request-id": [ - "8d814a67-92da-488d-9aab-8d4ef2b5d2d4" + "109eb66c-d08f-4652-bb9c-31e054894a17" ], "x-ms-client-request-id": [ - "27052996-1125-4c2b-9cf9-c141b2a286b4", - "27052996-1125-4c2b-9cf9-c141b2a286b4" + "f11102df-348a-4d5e-9893-fccbafdd9d76", + "f11102df-348a-4d5e-9893-fccbafdd9d76" ], "X-Powered-By": [ "ASP.NET" @@ -6578,16 +6723,16 @@ "118" ], "x-ms-correlation-request-id": [ - "8d814a67-92da-488d-9aab-8d4ef2b5d2d4" + "109eb66c-d08f-4652-bb9c-31e054894a17" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T205800Z:8d814a67-92da-488d-9aab-8d4ef2b5d2d4" + "WESTINDIA:20220516T181816Z:109eb66c-d08f-4652-bb9c-31e054894a17" ], "Date": [ - "Wed, 23 Feb 2022 20:57:59 GMT" + "Mon, 16 May 2022 18:18:15 GMT" ], "Content-Length": [ - "970" + "971" ], "Content-Type": [ "application/json" @@ -6596,26 +6741,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupJobs/f4955f76-367d-49a2-95f4-3779436ff49d\",\r\n \"name\": \"f4955f76-367d-49a2-95f4-3779436ff49d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgbfbf59cf;pstestvmbfbf50\",\r\n \"duration\": \"PT15M58.9528235S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvmbfbf50\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvmbfbf50\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-23T20:42:01.041925Z\",\r\n \"activityId\": \"9c81380d-ab42-4e74-a6c7-c10d169b4611\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupJobs/57a4adc5-e05d-4055-bdbb-2435d8d93f60\",\r\n \"name\": \"57a4adc5-e05d-4055-bdbb-2435d8d93f60\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg48b61a7d;pstestvm48b610\",\r\n \"duration\": \"PT14M58.4957198S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm48b610\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm48b610\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T18:03:17.3965623Z\",\r\n \"activityId\": \"a5981808-f090-4049-96dc-24d09eecdaeb\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupJobs/f4955f76-367d-49a2-95f4-3779436ff49d?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZiZjU5Y2YvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmJmNTljZi9iYWNrdXBKb2JzL2Y0OTU1Zjc2LTM2N2QtNDlhMi05NWY0LTM3Nzk0MzZmZjQ5ZD9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupJobs/57a4adc5-e05d-4055-bdbb-2435d8d93f60?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNDhiNjFhN2QvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y0OGI2MWE3ZC9iYWNrdXBKb2JzLzU3YTRhZGM1LWUwNWQtNDA1NS1iZGJiLTI0MzVkOGQ5M2Y2MD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "27052996-1125-4c2b-9cf9-c141b2a286b4" + "f11102df-348a-4d5e-9893-fccbafdd9d76" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -6633,11 +6778,11 @@ "nosniff" ], "x-ms-request-id": [ - "30c3788c-25e0-46db-8e11-d62616a479ee" + "0f7b5b9f-53d4-48d6-a8df-ed25924c5f02" ], "x-ms-client-request-id": [ - "27052996-1125-4c2b-9cf9-c141b2a286b4", - "27052996-1125-4c2b-9cf9-c141b2a286b4" + "f11102df-348a-4d5e-9893-fccbafdd9d76", + "f11102df-348a-4d5e-9893-fccbafdd9d76" ], "X-Powered-By": [ "ASP.NET" @@ -6649,16 +6794,16 @@ "117" ], "x-ms-correlation-request-id": [ - "30c3788c-25e0-46db-8e11-d62616a479ee" + "0f7b5b9f-53d4-48d6-a8df-ed25924c5f02" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T205831Z:30c3788c-25e0-46db-8e11-d62616a479ee" + "WESTINDIA:20220516T181846Z:0f7b5b9f-53d4-48d6-a8df-ed25924c5f02" ], "Date": [ - "Wed, 23 Feb 2022 20:58:30 GMT" + "Mon, 16 May 2022 18:18:46 GMT" ], "Content-Length": [ - "970" + "971" ], "Content-Type": [ "application/json" @@ -6667,26 +6812,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupJobs/f4955f76-367d-49a2-95f4-3779436ff49d\",\r\n \"name\": \"f4955f76-367d-49a2-95f4-3779436ff49d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgbfbf59cf;pstestvmbfbf50\",\r\n \"duration\": \"PT16M29.8650775S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvmbfbf50\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvmbfbf50\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-23T20:42:01.041925Z\",\r\n \"activityId\": \"9c81380d-ab42-4e74-a6c7-c10d169b4611\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupJobs/57a4adc5-e05d-4055-bdbb-2435d8d93f60\",\r\n \"name\": \"57a4adc5-e05d-4055-bdbb-2435d8d93f60\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg48b61a7d;pstestvm48b610\",\r\n \"duration\": \"PT15M29.1891969S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm48b610\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm48b610\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T18:03:17.3965623Z\",\r\n \"activityId\": \"a5981808-f090-4049-96dc-24d09eecdaeb\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupJobs/f4955f76-367d-49a2-95f4-3779436ff49d?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZiZjU5Y2YvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmJmNTljZi9iYWNrdXBKb2JzL2Y0OTU1Zjc2LTM2N2QtNDlhMi05NWY0LTM3Nzk0MzZmZjQ5ZD9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupJobs/57a4adc5-e05d-4055-bdbb-2435d8d93f60?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNDhiNjFhN2QvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y0OGI2MWE3ZC9iYWNrdXBKb2JzLzU3YTRhZGM1LWUwNWQtNDA1NS1iZGJiLTI0MzVkOGQ5M2Y2MD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "27052996-1125-4c2b-9cf9-c141b2a286b4" + "f11102df-348a-4d5e-9893-fccbafdd9d76" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -6704,11 +6849,11 @@ "nosniff" ], "x-ms-request-id": [ - "26b5f3cf-4f54-40bf-bcd6-9e7f794e6212" + "6ce0949f-5b46-4bc8-8e4d-9f7bf27d5143" ], "x-ms-client-request-id": [ - "27052996-1125-4c2b-9cf9-c141b2a286b4", - "27052996-1125-4c2b-9cf9-c141b2a286b4" + "f11102df-348a-4d5e-9893-fccbafdd9d76", + "f11102df-348a-4d5e-9893-fccbafdd9d76" ], "X-Powered-By": [ "ASP.NET" @@ -6720,16 +6865,16 @@ "116" ], "x-ms-correlation-request-id": [ - "26b5f3cf-4f54-40bf-bcd6-9e7f794e6212" + "6ce0949f-5b46-4bc8-8e4d-9f7bf27d5143" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T205909Z:26b5f3cf-4f54-40bf-bcd6-9e7f794e6212" + "WESTINDIA:20220516T181917Z:6ce0949f-5b46-4bc8-8e4d-9f7bf27d5143" ], "Date": [ - "Wed, 23 Feb 2022 20:59:09 GMT" + "Mon, 16 May 2022 18:19:16 GMT" ], "Content-Length": [ - "969" + "971" ], "Content-Type": [ "application/json" @@ -6738,26 +6883,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupJobs/f4955f76-367d-49a2-95f4-3779436ff49d\",\r\n \"name\": \"f4955f76-367d-49a2-95f4-3779436ff49d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgbfbf59cf;pstestvmbfbf50\",\r\n \"duration\": \"PT17M7.5053773S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvmbfbf50\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvmbfbf50\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-23T20:42:01.041925Z\",\r\n \"activityId\": \"9c81380d-ab42-4e74-a6c7-c10d169b4611\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupJobs/57a4adc5-e05d-4055-bdbb-2435d8d93f60\",\r\n \"name\": \"57a4adc5-e05d-4055-bdbb-2435d8d93f60\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg48b61a7d;pstestvm48b610\",\r\n \"duration\": \"PT15M59.9828235S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm48b610\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm48b610\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T18:03:17.3965623Z\",\r\n \"activityId\": \"a5981808-f090-4049-96dc-24d09eecdaeb\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupJobs/f4955f76-367d-49a2-95f4-3779436ff49d?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZiZjU5Y2YvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmJmNTljZi9iYWNrdXBKb2JzL2Y0OTU1Zjc2LTM2N2QtNDlhMi05NWY0LTM3Nzk0MzZmZjQ5ZD9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupJobs/57a4adc5-e05d-4055-bdbb-2435d8d93f60?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNDhiNjFhN2QvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y0OGI2MWE3ZC9iYWNrdXBKb2JzLzU3YTRhZGM1LWUwNWQtNDA1NS1iZGJiLTI0MzVkOGQ5M2Y2MD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "27052996-1125-4c2b-9cf9-c141b2a286b4" + "f11102df-348a-4d5e-9893-fccbafdd9d76" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -6775,11 +6920,11 @@ "nosniff" ], "x-ms-request-id": [ - "bda5bc19-d725-4676-8fc7-ea1a7676b604" + "7d922781-61d2-40bc-96d2-2a94cd30dbec" ], "x-ms-client-request-id": [ - "27052996-1125-4c2b-9cf9-c141b2a286b4", - "27052996-1125-4c2b-9cf9-c141b2a286b4" + "f11102df-348a-4d5e-9893-fccbafdd9d76", + "f11102df-348a-4d5e-9893-fccbafdd9d76" ], "X-Powered-By": [ "ASP.NET" @@ -6791,16 +6936,16 @@ "115" ], "x-ms-correlation-request-id": [ - "bda5bc19-d725-4676-8fc7-ea1a7676b604" + "7d922781-61d2-40bc-96d2-2a94cd30dbec" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T205939Z:bda5bc19-d725-4676-8fc7-ea1a7676b604" + "WESTINDIA:20220516T181948Z:7d922781-61d2-40bc-96d2-2a94cd30dbec" ], "Date": [ - "Wed, 23 Feb 2022 20:59:39 GMT" + "Mon, 16 May 2022 18:19:48 GMT" ], "Content-Length": [ - "970" + "971" ], "Content-Type": [ "application/json" @@ -6809,26 +6954,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupJobs/f4955f76-367d-49a2-95f4-3779436ff49d\",\r\n \"name\": \"f4955f76-367d-49a2-95f4-3779436ff49d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgbfbf59cf;pstestvmbfbf50\",\r\n \"duration\": \"PT17M38.4627567S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvmbfbf50\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvmbfbf50\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-23T20:42:01.041925Z\",\r\n \"activityId\": \"9c81380d-ab42-4e74-a6c7-c10d169b4611\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupJobs/57a4adc5-e05d-4055-bdbb-2435d8d93f60\",\r\n \"name\": \"57a4adc5-e05d-4055-bdbb-2435d8d93f60\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg48b61a7d;pstestvm48b610\",\r\n \"duration\": \"PT16M30.6946897S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm48b610\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm48b610\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T18:03:17.3965623Z\",\r\n \"activityId\": \"a5981808-f090-4049-96dc-24d09eecdaeb\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupJobs/f4955f76-367d-49a2-95f4-3779436ff49d?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZiZjU5Y2YvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmJmNTljZi9iYWNrdXBKb2JzL2Y0OTU1Zjc2LTM2N2QtNDlhMi05NWY0LTM3Nzk0MzZmZjQ5ZD9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupJobs/57a4adc5-e05d-4055-bdbb-2435d8d93f60?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNDhiNjFhN2QvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y0OGI2MWE3ZC9iYWNrdXBKb2JzLzU3YTRhZGM1LWUwNWQtNDA1NS1iZGJiLTI0MzVkOGQ5M2Y2MD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "27052996-1125-4c2b-9cf9-c141b2a286b4" + "f11102df-348a-4d5e-9893-fccbafdd9d76" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -6846,11 +6991,11 @@ "nosniff" ], "x-ms-request-id": [ - "1c7acfdd-8a8c-491a-b7f9-d74d5bd1d20f" + "fd11f9e5-7a85-49db-a879-55092acfa5c9" ], "x-ms-client-request-id": [ - "27052996-1125-4c2b-9cf9-c141b2a286b4", - "27052996-1125-4c2b-9cf9-c141b2a286b4" + "f11102df-348a-4d5e-9893-fccbafdd9d76", + "f11102df-348a-4d5e-9893-fccbafdd9d76" ], "X-Powered-By": [ "ASP.NET" @@ -6862,16 +7007,16 @@ "114" ], "x-ms-correlation-request-id": [ - "1c7acfdd-8a8c-491a-b7f9-d74d5bd1d20f" + "fd11f9e5-7a85-49db-a879-55092acfa5c9" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T210010Z:1c7acfdd-8a8c-491a-b7f9-d74d5bd1d20f" + "WESTINDIA:20220516T182019Z:fd11f9e5-7a85-49db-a879-55092acfa5c9" ], "Date": [ - "Wed, 23 Feb 2022 21:00:10 GMT" + "Mon, 16 May 2022 18:20:18 GMT" ], "Content-Length": [ - "969" + "970" ], "Content-Type": [ "application/json" @@ -6880,26 +7025,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupJobs/f4955f76-367d-49a2-95f4-3779436ff49d\",\r\n \"name\": \"f4955f76-367d-49a2-95f4-3779436ff49d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgbfbf59cf;pstestvmbfbf50\",\r\n \"duration\": \"PT18M9.2834778S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvmbfbf50\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvmbfbf50\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-23T20:42:01.041925Z\",\r\n \"activityId\": \"9c81380d-ab42-4e74-a6c7-c10d169b4611\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupJobs/57a4adc5-e05d-4055-bdbb-2435d8d93f60\",\r\n \"name\": \"57a4adc5-e05d-4055-bdbb-2435d8d93f60\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg48b61a7d;pstestvm48b610\",\r\n \"duration\": \"PT17M1.3784346S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm48b610\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm48b610\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T18:03:17.3965623Z\",\r\n \"activityId\": \"a5981808-f090-4049-96dc-24d09eecdaeb\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupJobs/f4955f76-367d-49a2-95f4-3779436ff49d?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZiZjU5Y2YvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmJmNTljZi9iYWNrdXBKb2JzL2Y0OTU1Zjc2LTM2N2QtNDlhMi05NWY0LTM3Nzk0MzZmZjQ5ZD9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupJobs/57a4adc5-e05d-4055-bdbb-2435d8d93f60?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNDhiNjFhN2QvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y0OGI2MWE3ZC9iYWNrdXBKb2JzLzU3YTRhZGM1LWUwNWQtNDA1NS1iZGJiLTI0MzVkOGQ5M2Y2MD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "27052996-1125-4c2b-9cf9-c141b2a286b4" + "f11102df-348a-4d5e-9893-fccbafdd9d76" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -6917,11 +7062,11 @@ "nosniff" ], "x-ms-request-id": [ - "ce79f3f3-1a18-464e-b5ca-17c373c1e252" + "60e8afad-f030-4bc6-ab23-1001172cec2e" ], "x-ms-client-request-id": [ - "27052996-1125-4c2b-9cf9-c141b2a286b4", - "27052996-1125-4c2b-9cf9-c141b2a286b4" + "f11102df-348a-4d5e-9893-fccbafdd9d76", + "f11102df-348a-4d5e-9893-fccbafdd9d76" ], "X-Powered-By": [ "ASP.NET" @@ -6933,16 +7078,16 @@ "113" ], "x-ms-correlation-request-id": [ - "ce79f3f3-1a18-464e-b5ca-17c373c1e252" + "60e8afad-f030-4bc6-ab23-1001172cec2e" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T210117Z:ce79f3f3-1a18-464e-b5ca-17c373c1e252" + "WESTINDIA:20220516T182049Z:60e8afad-f030-4bc6-ab23-1001172cec2e" ], "Date": [ - "Wed, 23 Feb 2022 21:01:17 GMT" + "Mon, 16 May 2022 18:20:48 GMT" ], "Content-Length": [ - "969" + "971" ], "Content-Type": [ "application/json" @@ -6951,26 +7096,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupJobs/f4955f76-367d-49a2-95f4-3779436ff49d\",\r\n \"name\": \"f4955f76-367d-49a2-95f4-3779436ff49d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgbfbf59cf;pstestvmbfbf50\",\r\n \"duration\": \"PT19M9.8151365S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvmbfbf50\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvmbfbf50\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-23T20:42:01.041925Z\",\r\n \"activityId\": \"9c81380d-ab42-4e74-a6c7-c10d169b4611\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupJobs/57a4adc5-e05d-4055-bdbb-2435d8d93f60\",\r\n \"name\": \"57a4adc5-e05d-4055-bdbb-2435d8d93f60\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg48b61a7d;pstestvm48b610\",\r\n \"duration\": \"PT17M32.1165689S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm48b610\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm48b610\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T18:03:17.3965623Z\",\r\n \"activityId\": \"a5981808-f090-4049-96dc-24d09eecdaeb\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupJobs/f4955f76-367d-49a2-95f4-3779436ff49d?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZiZjU5Y2YvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmJmNTljZi9iYWNrdXBKb2JzL2Y0OTU1Zjc2LTM2N2QtNDlhMi05NWY0LTM3Nzk0MzZmZjQ5ZD9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupJobs/57a4adc5-e05d-4055-bdbb-2435d8d93f60?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNDhiNjFhN2QvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y0OGI2MWE3ZC9iYWNrdXBKb2JzLzU3YTRhZGM1LWUwNWQtNDA1NS1iZGJiLTI0MzVkOGQ5M2Y2MD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "27052996-1125-4c2b-9cf9-c141b2a286b4" + "f11102df-348a-4d5e-9893-fccbafdd9d76" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -6988,11 +7133,11 @@ "nosniff" ], "x-ms-request-id": [ - "2fd5e858-e806-4406-babb-95b36d552b3d" + "92a006b6-12fb-4ebe-b9d0-726ece5f0be5" ], "x-ms-client-request-id": [ - "27052996-1125-4c2b-9cf9-c141b2a286b4", - "27052996-1125-4c2b-9cf9-c141b2a286b4" + "f11102df-348a-4d5e-9893-fccbafdd9d76", + "f11102df-348a-4d5e-9893-fccbafdd9d76" ], "X-Powered-By": [ "ASP.NET" @@ -7004,13 +7149,13 @@ "112" ], "x-ms-correlation-request-id": [ - "2fd5e858-e806-4406-babb-95b36d552b3d" + "92a006b6-12fb-4ebe-b9d0-726ece5f0be5" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T210149Z:2fd5e858-e806-4406-babb-95b36d552b3d" + "WESTINDIA:20220516T182120Z:92a006b6-12fb-4ebe-b9d0-726ece5f0be5" ], "Date": [ - "Wed, 23 Feb 2022 21:01:49 GMT" + "Mon, 16 May 2022 18:21:20 GMT" ], "Content-Length": [ "970" @@ -7022,26 +7167,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupJobs/f4955f76-367d-49a2-95f4-3779436ff49d\",\r\n \"name\": \"f4955f76-367d-49a2-95f4-3779436ff49d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgbfbf59cf;pstestvmbfbf50\",\r\n \"duration\": \"PT19M47.9519754S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvmbfbf50\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvmbfbf50\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-23T20:42:01.041925Z\",\r\n \"activityId\": \"9c81380d-ab42-4e74-a6c7-c10d169b4611\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupJobs/57a4adc5-e05d-4055-bdbb-2435d8d93f60\",\r\n \"name\": \"57a4adc5-e05d-4055-bdbb-2435d8d93f60\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg48b61a7d;pstestvm48b610\",\r\n \"duration\": \"PT18M3.1218059S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm48b610\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm48b610\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T18:03:17.3965623Z\",\r\n \"activityId\": \"a5981808-f090-4049-96dc-24d09eecdaeb\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupJobs/f4955f76-367d-49a2-95f4-3779436ff49d?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZiZjU5Y2YvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmJmNTljZi9iYWNrdXBKb2JzL2Y0OTU1Zjc2LTM2N2QtNDlhMi05NWY0LTM3Nzk0MzZmZjQ5ZD9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupJobs/57a4adc5-e05d-4055-bdbb-2435d8d93f60?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNDhiNjFhN2QvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y0OGI2MWE3ZC9iYWNrdXBKb2JzLzU3YTRhZGM1LWUwNWQtNDA1NS1iZGJiLTI0MzVkOGQ5M2Y2MD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "27052996-1125-4c2b-9cf9-c141b2a286b4" + "f11102df-348a-4d5e-9893-fccbafdd9d76" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -7059,11 +7204,11 @@ "nosniff" ], "x-ms-request-id": [ - "b4cab7cf-aff0-4e69-a7ca-ca366a9c6749" + "4e8ed911-3af3-495b-9c50-b269991b27e7" ], "x-ms-client-request-id": [ - "27052996-1125-4c2b-9cf9-c141b2a286b4", - "27052996-1125-4c2b-9cf9-c141b2a286b4" + "f11102df-348a-4d5e-9893-fccbafdd9d76", + "f11102df-348a-4d5e-9893-fccbafdd9d76" ], "X-Powered-By": [ "ASP.NET" @@ -7075,16 +7220,16 @@ "111" ], "x-ms-correlation-request-id": [ - "b4cab7cf-aff0-4e69-a7ca-ca366a9c6749" + "4e8ed911-3af3-495b-9c50-b269991b27e7" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T210220Z:b4cab7cf-aff0-4e69-a7ca-ca366a9c6749" + "WESTINDIA:20220516T182151Z:4e8ed911-3af3-495b-9c50-b269991b27e7" ], "Date": [ - "Wed, 23 Feb 2022 21:02:19 GMT" + "Mon, 16 May 2022 18:21:51 GMT" ], "Content-Length": [ - "969" + "971" ], "Content-Type": [ "application/json" @@ -7093,26 +7238,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupJobs/f4955f76-367d-49a2-95f4-3779436ff49d\",\r\n \"name\": \"f4955f76-367d-49a2-95f4-3779436ff49d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgbfbf59cf;pstestvmbfbf50\",\r\n \"duration\": \"PT20M18.901936S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvmbfbf50\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvmbfbf50\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-23T20:42:01.041925Z\",\r\n \"activityId\": \"9c81380d-ab42-4e74-a6c7-c10d169b4611\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupJobs/57a4adc5-e05d-4055-bdbb-2435d8d93f60\",\r\n \"name\": \"57a4adc5-e05d-4055-bdbb-2435d8d93f60\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg48b61a7d;pstestvm48b610\",\r\n \"duration\": \"PT18M33.8372355S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm48b610\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm48b610\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T18:03:17.3965623Z\",\r\n \"activityId\": \"a5981808-f090-4049-96dc-24d09eecdaeb\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupJobs/f4955f76-367d-49a2-95f4-3779436ff49d?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZiZjU5Y2YvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmJmNTljZi9iYWNrdXBKb2JzL2Y0OTU1Zjc2LTM2N2QtNDlhMi05NWY0LTM3Nzk0MzZmZjQ5ZD9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupJobs/57a4adc5-e05d-4055-bdbb-2435d8d93f60?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNDhiNjFhN2QvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y0OGI2MWE3ZC9iYWNrdXBKb2JzLzU3YTRhZGM1LWUwNWQtNDA1NS1iZGJiLTI0MzVkOGQ5M2Y2MD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "27052996-1125-4c2b-9cf9-c141b2a286b4" + "f11102df-348a-4d5e-9893-fccbafdd9d76" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -7130,11 +7275,11 @@ "nosniff" ], "x-ms-request-id": [ - "db7d6024-4e0c-4e5a-ae5a-6d78812f063e" + "4851cb2f-5aa3-4e7a-86e3-52cb4dd91549" ], "x-ms-client-request-id": [ - "27052996-1125-4c2b-9cf9-c141b2a286b4", - "27052996-1125-4c2b-9cf9-c141b2a286b4" + "f11102df-348a-4d5e-9893-fccbafdd9d76", + "f11102df-348a-4d5e-9893-fccbafdd9d76" ], "X-Powered-By": [ "ASP.NET" @@ -7146,13 +7291,13 @@ "110" ], "x-ms-correlation-request-id": [ - "db7d6024-4e0c-4e5a-ae5a-6d78812f063e" + "4851cb2f-5aa3-4e7a-86e3-52cb4dd91549" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T210251Z:db7d6024-4e0c-4e5a-ae5a-6d78812f063e" + "WESTINDIA:20220516T182222Z:4851cb2f-5aa3-4e7a-86e3-52cb4dd91549" ], "Date": [ - "Wed, 23 Feb 2022 21:02:51 GMT" + "Mon, 16 May 2022 18:22:22 GMT" ], "Content-Length": [ "970" @@ -7164,26 +7309,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupJobs/f4955f76-367d-49a2-95f4-3779436ff49d\",\r\n \"name\": \"f4955f76-367d-49a2-95f4-3779436ff49d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgbfbf59cf;pstestvmbfbf50\",\r\n \"duration\": \"PT20M50.2950862S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvmbfbf50\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvmbfbf50\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-23T20:42:01.041925Z\",\r\n \"activityId\": \"9c81380d-ab42-4e74-a6c7-c10d169b4611\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupJobs/57a4adc5-e05d-4055-bdbb-2435d8d93f60\",\r\n \"name\": \"57a4adc5-e05d-4055-bdbb-2435d8d93f60\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg48b61a7d;pstestvm48b610\",\r\n \"duration\": \"PT19M4.6250399S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm48b610\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm48b610\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T18:03:17.3965623Z\",\r\n \"activityId\": \"a5981808-f090-4049-96dc-24d09eecdaeb\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupJobs/f4955f76-367d-49a2-95f4-3779436ff49d?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZiZjU5Y2YvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmJmNTljZi9iYWNrdXBKb2JzL2Y0OTU1Zjc2LTM2N2QtNDlhMi05NWY0LTM3Nzk0MzZmZjQ5ZD9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupJobs/57a4adc5-e05d-4055-bdbb-2435d8d93f60?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNDhiNjFhN2QvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y0OGI2MWE3ZC9iYWNrdXBKb2JzLzU3YTRhZGM1LWUwNWQtNDA1NS1iZGJiLTI0MzVkOGQ5M2Y2MD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "27052996-1125-4c2b-9cf9-c141b2a286b4" + "f11102df-348a-4d5e-9893-fccbafdd9d76" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -7201,11 +7346,11 @@ "nosniff" ], "x-ms-request-id": [ - "2ec5c44a-a5c9-45e8-95d5-027e217436bc" + "e061aac0-57e2-4276-9516-8a34862d5d38" ], "x-ms-client-request-id": [ - "27052996-1125-4c2b-9cf9-c141b2a286b4", - "27052996-1125-4c2b-9cf9-c141b2a286b4" + "f11102df-348a-4d5e-9893-fccbafdd9d76", + "f11102df-348a-4d5e-9893-fccbafdd9d76" ], "X-Powered-By": [ "ASP.NET" @@ -7217,16 +7362,16 @@ "109" ], "x-ms-correlation-request-id": [ - "2ec5c44a-a5c9-45e8-95d5-027e217436bc" + "e061aac0-57e2-4276-9516-8a34862d5d38" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T210322Z:2ec5c44a-a5c9-45e8-95d5-027e217436bc" + "WESTINDIA:20220516T182253Z:e061aac0-57e2-4276-9516-8a34862d5d38" ], "Date": [ - "Wed, 23 Feb 2022 21:03:21 GMT" + "Mon, 16 May 2022 18:22:52 GMT" ], "Content-Length": [ - "970" + "971" ], "Content-Type": [ "application/json" @@ -7235,26 +7380,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupJobs/f4955f76-367d-49a2-95f4-3779436ff49d\",\r\n \"name\": \"f4955f76-367d-49a2-95f4-3779436ff49d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgbfbf59cf;pstestvmbfbf50\",\r\n \"duration\": \"PT21M21.2723668S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvmbfbf50\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvmbfbf50\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-23T20:42:01.041925Z\",\r\n \"activityId\": \"9c81380d-ab42-4e74-a6c7-c10d169b4611\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupJobs/57a4adc5-e05d-4055-bdbb-2435d8d93f60\",\r\n \"name\": \"57a4adc5-e05d-4055-bdbb-2435d8d93f60\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg48b61a7d;pstestvm48b610\",\r\n \"duration\": \"PT19M35.4089865S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm48b610\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm48b610\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T18:03:17.3965623Z\",\r\n \"activityId\": \"a5981808-f090-4049-96dc-24d09eecdaeb\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupJobs/f4955f76-367d-49a2-95f4-3779436ff49d?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZiZjU5Y2YvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmJmNTljZi9iYWNrdXBKb2JzL2Y0OTU1Zjc2LTM2N2QtNDlhMi05NWY0LTM3Nzk0MzZmZjQ5ZD9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupJobs/57a4adc5-e05d-4055-bdbb-2435d8d93f60?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNDhiNjFhN2QvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y0OGI2MWE3ZC9iYWNrdXBKb2JzLzU3YTRhZGM1LWUwNWQtNDA1NS1iZGJiLTI0MzVkOGQ5M2Y2MD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "27052996-1125-4c2b-9cf9-c141b2a286b4" + "f11102df-348a-4d5e-9893-fccbafdd9d76" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -7272,11 +7417,11 @@ "nosniff" ], "x-ms-request-id": [ - "0dcb2cd9-1851-4510-b2d8-36ec04a9e144" + "56d97d34-8d12-400c-ac7e-03d3cfef07bb" ], "x-ms-client-request-id": [ - "27052996-1125-4c2b-9cf9-c141b2a286b4", - "27052996-1125-4c2b-9cf9-c141b2a286b4" + "f11102df-348a-4d5e-9893-fccbafdd9d76", + "f11102df-348a-4d5e-9893-fccbafdd9d76" ], "X-Powered-By": [ "ASP.NET" @@ -7288,13 +7433,13 @@ "108" ], "x-ms-correlation-request-id": [ - "0dcb2cd9-1851-4510-b2d8-36ec04a9e144" + "56d97d34-8d12-400c-ac7e-03d3cfef07bb" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T210353Z:0dcb2cd9-1851-4510-b2d8-36ec04a9e144" + "WESTINDIA:20220516T182323Z:56d97d34-8d12-400c-ac7e-03d3cfef07bb" ], "Date": [ - "Wed, 23 Feb 2022 21:03:53 GMT" + "Mon, 16 May 2022 18:23:23 GMT" ], "Content-Length": [ "970" @@ -7306,26 +7451,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupJobs/f4955f76-367d-49a2-95f4-3779436ff49d\",\r\n \"name\": \"f4955f76-367d-49a2-95f4-3779436ff49d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgbfbf59cf;pstestvmbfbf50\",\r\n \"duration\": \"PT21M52.1714668S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvmbfbf50\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvmbfbf50\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-23T20:42:01.041925Z\",\r\n \"activityId\": \"9c81380d-ab42-4e74-a6c7-c10d169b4611\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupJobs/57a4adc5-e05d-4055-bdbb-2435d8d93f60\",\r\n \"name\": \"57a4adc5-e05d-4055-bdbb-2435d8d93f60\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg48b61a7d;pstestvm48b610\",\r\n \"duration\": \"PT20M5.9869056S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm48b610\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm48b610\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T18:03:17.3965623Z\",\r\n \"activityId\": \"a5981808-f090-4049-96dc-24d09eecdaeb\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupJobs/f4955f76-367d-49a2-95f4-3779436ff49d?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZiZjU5Y2YvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmJmNTljZi9iYWNrdXBKb2JzL2Y0OTU1Zjc2LTM2N2QtNDlhMi05NWY0LTM3Nzk0MzZmZjQ5ZD9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupJobs/57a4adc5-e05d-4055-bdbb-2435d8d93f60?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNDhiNjFhN2QvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y0OGI2MWE3ZC9iYWNrdXBKb2JzLzU3YTRhZGM1LWUwNWQtNDA1NS1iZGJiLTI0MzVkOGQ5M2Y2MD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "27052996-1125-4c2b-9cf9-c141b2a286b4" + "f11102df-348a-4d5e-9893-fccbafdd9d76" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -7343,11 +7488,11 @@ "nosniff" ], "x-ms-request-id": [ - "d781c8a8-19b9-40db-ac98-13d1160b9ff8" + "b94d6666-8520-470d-abcf-fde9ca2d7149" ], "x-ms-client-request-id": [ - "27052996-1125-4c2b-9cf9-c141b2a286b4", - "27052996-1125-4c2b-9cf9-c141b2a286b4" + "f11102df-348a-4d5e-9893-fccbafdd9d76", + "f11102df-348a-4d5e-9893-fccbafdd9d76" ], "X-Powered-By": [ "ASP.NET" @@ -7359,16 +7504,16 @@ "107" ], "x-ms-correlation-request-id": [ - "d781c8a8-19b9-40db-ac98-13d1160b9ff8" + "b94d6666-8520-470d-abcf-fde9ca2d7149" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T210424Z:d781c8a8-19b9-40db-ac98-13d1160b9ff8" + "WESTINDIA:20220516T182354Z:b94d6666-8520-470d-abcf-fde9ca2d7149" ], "Date": [ - "Wed, 23 Feb 2022 21:04:24 GMT" + "Mon, 16 May 2022 18:23:53 GMT" ], "Content-Length": [ - "970" + "971" ], "Content-Type": [ "application/json" @@ -7377,26 +7522,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupJobs/f4955f76-367d-49a2-95f4-3779436ff49d\",\r\n \"name\": \"f4955f76-367d-49a2-95f4-3779436ff49d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgbfbf59cf;pstestvmbfbf50\",\r\n \"duration\": \"PT22M23.0308186S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvmbfbf50\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvmbfbf50\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-23T20:42:01.041925Z\",\r\n \"activityId\": \"9c81380d-ab42-4e74-a6c7-c10d169b4611\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupJobs/57a4adc5-e05d-4055-bdbb-2435d8d93f60\",\r\n \"name\": \"57a4adc5-e05d-4055-bdbb-2435d8d93f60\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg48b61a7d;pstestvm48b610\",\r\n \"duration\": \"PT20M36.6683803S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm48b610\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm48b610\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T18:03:17.3965623Z\",\r\n \"activityId\": \"a5981808-f090-4049-96dc-24d09eecdaeb\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupJobs/f4955f76-367d-49a2-95f4-3779436ff49d?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZiZjU5Y2YvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmJmNTljZi9iYWNrdXBKb2JzL2Y0OTU1Zjc2LTM2N2QtNDlhMi05NWY0LTM3Nzk0MzZmZjQ5ZD9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupJobs/57a4adc5-e05d-4055-bdbb-2435d8d93f60?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNDhiNjFhN2QvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y0OGI2MWE3ZC9iYWNrdXBKb2JzLzU3YTRhZGM1LWUwNWQtNDA1NS1iZGJiLTI0MzVkOGQ5M2Y2MD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "27052996-1125-4c2b-9cf9-c141b2a286b4" + "f11102df-348a-4d5e-9893-fccbafdd9d76" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -7414,11 +7559,11 @@ "nosniff" ], "x-ms-request-id": [ - "1c65ef65-42a7-418d-9b1e-711c7d0f2898" + "4644e106-a9c4-4d5f-887c-f7983d9ac017" ], "x-ms-client-request-id": [ - "27052996-1125-4c2b-9cf9-c141b2a286b4", - "27052996-1125-4c2b-9cf9-c141b2a286b4" + "f11102df-348a-4d5e-9893-fccbafdd9d76", + "f11102df-348a-4d5e-9893-fccbafdd9d76" ], "X-Powered-By": [ "ASP.NET" @@ -7430,13 +7575,13 @@ "106" ], "x-ms-correlation-request-id": [ - "1c65ef65-42a7-418d-9b1e-711c7d0f2898" + "4644e106-a9c4-4d5f-887c-f7983d9ac017" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T210456Z:1c65ef65-42a7-418d-9b1e-711c7d0f2898" + "WESTINDIA:20220516T182425Z:4644e106-a9c4-4d5f-887c-f7983d9ac017" ], "Date": [ - "Wed, 23 Feb 2022 21:04:55 GMT" + "Mon, 16 May 2022 18:24:24 GMT" ], "Content-Length": [ "970" @@ -7448,26 +7593,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupJobs/f4955f76-367d-49a2-95f4-3779436ff49d\",\r\n \"name\": \"f4955f76-367d-49a2-95f4-3779436ff49d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgbfbf59cf;pstestvmbfbf50\",\r\n \"duration\": \"PT22M54.4909883S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvmbfbf50\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvmbfbf50\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-23T20:42:01.041925Z\",\r\n \"activityId\": \"9c81380d-ab42-4e74-a6c7-c10d169b4611\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupJobs/57a4adc5-e05d-4055-bdbb-2435d8d93f60\",\r\n \"name\": \"57a4adc5-e05d-4055-bdbb-2435d8d93f60\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg48b61a7d;pstestvm48b610\",\r\n \"duration\": \"PT21M7.3342522S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm48b610\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm48b610\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T18:03:17.3965623Z\",\r\n \"activityId\": \"a5981808-f090-4049-96dc-24d09eecdaeb\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupJobs/f4955f76-367d-49a2-95f4-3779436ff49d?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZiZjU5Y2YvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmJmNTljZi9iYWNrdXBKb2JzL2Y0OTU1Zjc2LTM2N2QtNDlhMi05NWY0LTM3Nzk0MzZmZjQ5ZD9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupJobs/57a4adc5-e05d-4055-bdbb-2435d8d93f60?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNDhiNjFhN2QvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y0OGI2MWE3ZC9iYWNrdXBKb2JzLzU3YTRhZGM1LWUwNWQtNDA1NS1iZGJiLTI0MzVkOGQ5M2Y2MD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "27052996-1125-4c2b-9cf9-c141b2a286b4" + "f11102df-348a-4d5e-9893-fccbafdd9d76" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -7485,11 +7630,11 @@ "nosniff" ], "x-ms-request-id": [ - "4051eab7-1e98-4355-99bd-a60724ffe3a6" + "6c949e64-3b68-49aa-bb4d-8e5b5b3a3078" ], "x-ms-client-request-id": [ - "27052996-1125-4c2b-9cf9-c141b2a286b4", - "27052996-1125-4c2b-9cf9-c141b2a286b4" + "f11102df-348a-4d5e-9893-fccbafdd9d76", + "f11102df-348a-4d5e-9893-fccbafdd9d76" ], "X-Powered-By": [ "ASP.NET" @@ -7501,16 +7646,16 @@ "105" ], "x-ms-correlation-request-id": [ - "4051eab7-1e98-4355-99bd-a60724ffe3a6" + "6c949e64-3b68-49aa-bb4d-8e5b5b3a3078" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T210527Z:4051eab7-1e98-4355-99bd-a60724ffe3a6" + "WESTINDIA:20220516T182455Z:6c949e64-3b68-49aa-bb4d-8e5b5b3a3078" ], "Date": [ - "Wed, 23 Feb 2022 21:05:26 GMT" + "Mon, 16 May 2022 18:24:55 GMT" ], "Content-Length": [ - "969" + "971" ], "Content-Type": [ "application/json" @@ -7519,26 +7664,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupJobs/f4955f76-367d-49a2-95f4-3779436ff49d\",\r\n \"name\": \"f4955f76-367d-49a2-95f4-3779436ff49d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgbfbf59cf;pstestvmbfbf50\",\r\n \"duration\": \"PT23M25.531727S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvmbfbf50\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvmbfbf50\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-23T20:42:01.041925Z\",\r\n \"activityId\": \"9c81380d-ab42-4e74-a6c7-c10d169b4611\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupJobs/57a4adc5-e05d-4055-bdbb-2435d8d93f60\",\r\n \"name\": \"57a4adc5-e05d-4055-bdbb-2435d8d93f60\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg48b61a7d;pstestvm48b610\",\r\n \"duration\": \"PT21M38.0543617S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm48b610\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm48b610\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T18:03:17.3965623Z\",\r\n \"activityId\": \"a5981808-f090-4049-96dc-24d09eecdaeb\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupJobs/f4955f76-367d-49a2-95f4-3779436ff49d?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZiZjU5Y2YvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmJmNTljZi9iYWNrdXBKb2JzL2Y0OTU1Zjc2LTM2N2QtNDlhMi05NWY0LTM3Nzk0MzZmZjQ5ZD9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupJobs/57a4adc5-e05d-4055-bdbb-2435d8d93f60?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNDhiNjFhN2QvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y0OGI2MWE3ZC9iYWNrdXBKb2JzLzU3YTRhZGM1LWUwNWQtNDA1NS1iZGJiLTI0MzVkOGQ5M2Y2MD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "27052996-1125-4c2b-9cf9-c141b2a286b4" + "f11102df-348a-4d5e-9893-fccbafdd9d76" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -7556,11 +7701,11 @@ "nosniff" ], "x-ms-request-id": [ - "d4f16fb6-303a-4899-ae3e-450ac9b5fad5" + "ac185ca8-ad91-48ed-8b44-71d652c71853" ], "x-ms-client-request-id": [ - "27052996-1125-4c2b-9cf9-c141b2a286b4", - "27052996-1125-4c2b-9cf9-c141b2a286b4" + "f11102df-348a-4d5e-9893-fccbafdd9d76", + "f11102df-348a-4d5e-9893-fccbafdd9d76" ], "X-Powered-By": [ "ASP.NET" @@ -7572,16 +7717,16 @@ "104" ], "x-ms-correlation-request-id": [ - "d4f16fb6-303a-4899-ae3e-450ac9b5fad5" + "ac185ca8-ad91-48ed-8b44-71d652c71853" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T210635Z:d4f16fb6-303a-4899-ae3e-450ac9b5fad5" + "WESTINDIA:20220516T182526Z:ac185ca8-ad91-48ed-8b44-71d652c71853" ], "Date": [ - "Wed, 23 Feb 2022 21:06:35 GMT" + "Mon, 16 May 2022 18:25:26 GMT" ], "Content-Length": [ - "969" + "970" ], "Content-Type": [ "application/json" @@ -7590,26 +7735,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupJobs/f4955f76-367d-49a2-95f4-3779436ff49d\",\r\n \"name\": \"f4955f76-367d-49a2-95f4-3779436ff49d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgbfbf59cf;pstestvmbfbf50\",\r\n \"duration\": \"PT24M33.373817S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvmbfbf50\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvmbfbf50\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-23T20:42:01.041925Z\",\r\n \"activityId\": \"9c81380d-ab42-4e74-a6c7-c10d169b4611\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupJobs/57a4adc5-e05d-4055-bdbb-2435d8d93f60\",\r\n \"name\": \"57a4adc5-e05d-4055-bdbb-2435d8d93f60\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg48b61a7d;pstestvm48b610\",\r\n \"duration\": \"PT22M8.7856427S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm48b610\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm48b610\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T18:03:17.3965623Z\",\r\n \"activityId\": \"a5981808-f090-4049-96dc-24d09eecdaeb\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupJobs/f4955f76-367d-49a2-95f4-3779436ff49d?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZiZjU5Y2YvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmJmNTljZi9iYWNrdXBKb2JzL2Y0OTU1Zjc2LTM2N2QtNDlhMi05NWY0LTM3Nzk0MzZmZjQ5ZD9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupJobs/57a4adc5-e05d-4055-bdbb-2435d8d93f60?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNDhiNjFhN2QvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y0OGI2MWE3ZC9iYWNrdXBKb2JzLzU3YTRhZGM1LWUwNWQtNDA1NS1iZGJiLTI0MzVkOGQ5M2Y2MD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "27052996-1125-4c2b-9cf9-c141b2a286b4" + "f11102df-348a-4d5e-9893-fccbafdd9d76" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -7627,11 +7772,11 @@ "nosniff" ], "x-ms-request-id": [ - "b8d6bf0e-d41a-40da-9bf1-65df5bb8d809" + "2f86ff8d-230c-42ad-a6a1-c54197c8e2e7" ], "x-ms-client-request-id": [ - "27052996-1125-4c2b-9cf9-c141b2a286b4", - "27052996-1125-4c2b-9cf9-c141b2a286b4" + "f11102df-348a-4d5e-9893-fccbafdd9d76", + "f11102df-348a-4d5e-9893-fccbafdd9d76" ], "X-Powered-By": [ "ASP.NET" @@ -7643,16 +7788,16 @@ "103" ], "x-ms-correlation-request-id": [ - "b8d6bf0e-d41a-40da-9bf1-65df5bb8d809" + "2f86ff8d-230c-42ad-a6a1-c54197c8e2e7" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T210706Z:b8d6bf0e-d41a-40da-9bf1-65df5bb8d809" + "WESTINDIA:20220516T182557Z:2f86ff8d-230c-42ad-a6a1-c54197c8e2e7" ], "Date": [ - "Wed, 23 Feb 2022 21:07:06 GMT" + "Mon, 16 May 2022 18:25:56 GMT" ], "Content-Length": [ - "969" + "971" ], "Content-Type": [ "application/json" @@ -7661,26 +7806,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupJobs/f4955f76-367d-49a2-95f4-3779436ff49d\",\r\n \"name\": \"f4955f76-367d-49a2-95f4-3779436ff49d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgbfbf59cf;pstestvmbfbf50\",\r\n \"duration\": \"PT25M5.2172856S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvmbfbf50\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvmbfbf50\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-23T20:42:01.041925Z\",\r\n \"activityId\": \"9c81380d-ab42-4e74-a6c7-c10d169b4611\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupJobs/57a4adc5-e05d-4055-bdbb-2435d8d93f60\",\r\n \"name\": \"57a4adc5-e05d-4055-bdbb-2435d8d93f60\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg48b61a7d;pstestvm48b610\",\r\n \"duration\": \"PT22M39.8156881S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm48b610\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm48b610\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T18:03:17.3965623Z\",\r\n \"activityId\": \"a5981808-f090-4049-96dc-24d09eecdaeb\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupJobs/f4955f76-367d-49a2-95f4-3779436ff49d?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZiZjU5Y2YvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmJmNTljZi9iYWNrdXBKb2JzL2Y0OTU1Zjc2LTM2N2QtNDlhMi05NWY0LTM3Nzk0MzZmZjQ5ZD9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupJobs/57a4adc5-e05d-4055-bdbb-2435d8d93f60?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNDhiNjFhN2QvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y0OGI2MWE3ZC9iYWNrdXBKb2JzLzU3YTRhZGM1LWUwNWQtNDA1NS1iZGJiLTI0MzVkOGQ5M2Y2MD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "27052996-1125-4c2b-9cf9-c141b2a286b4" + "f11102df-348a-4d5e-9893-fccbafdd9d76" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -7698,11 +7843,11 @@ "nosniff" ], "x-ms-request-id": [ - "c32c50e3-f6be-4b9c-9fa6-74994c02768a" + "0cbff0dc-cfc8-4e6a-ad4f-874a17eb37f2" ], "x-ms-client-request-id": [ - "27052996-1125-4c2b-9cf9-c141b2a286b4", - "27052996-1125-4c2b-9cf9-c141b2a286b4" + "f11102df-348a-4d5e-9893-fccbafdd9d76", + "f11102df-348a-4d5e-9893-fccbafdd9d76" ], "X-Powered-By": [ "ASP.NET" @@ -7714,16 +7859,16 @@ "102" ], "x-ms-correlation-request-id": [ - "c32c50e3-f6be-4b9c-9fa6-74994c02768a" + "0cbff0dc-cfc8-4e6a-ad4f-874a17eb37f2" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T210737Z:c32c50e3-f6be-4b9c-9fa6-74994c02768a" + "WESTINDIA:20220516T182628Z:0cbff0dc-cfc8-4e6a-ad4f-874a17eb37f2" ], "Date": [ - "Wed, 23 Feb 2022 21:07:37 GMT" + "Mon, 16 May 2022 18:26:27 GMT" ], "Content-Length": [ - "970" + "971" ], "Content-Type": [ "application/json" @@ -7732,26 +7877,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupJobs/f4955f76-367d-49a2-95f4-3779436ff49d\",\r\n \"name\": \"f4955f76-367d-49a2-95f4-3779436ff49d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgbfbf59cf;pstestvmbfbf50\",\r\n \"duration\": \"PT25M35.9439535S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvmbfbf50\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvmbfbf50\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-23T20:42:01.041925Z\",\r\n \"activityId\": \"9c81380d-ab42-4e74-a6c7-c10d169b4611\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupJobs/57a4adc5-e05d-4055-bdbb-2435d8d93f60\",\r\n \"name\": \"57a4adc5-e05d-4055-bdbb-2435d8d93f60\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg48b61a7d;pstestvm48b610\",\r\n \"duration\": \"PT23M10.5724501S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm48b610\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm48b610\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T18:03:17.3965623Z\",\r\n \"activityId\": \"a5981808-f090-4049-96dc-24d09eecdaeb\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupJobs/f4955f76-367d-49a2-95f4-3779436ff49d?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZiZjU5Y2YvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmJmNTljZi9iYWNrdXBKb2JzL2Y0OTU1Zjc2LTM2N2QtNDlhMi05NWY0LTM3Nzk0MzZmZjQ5ZD9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupJobs/57a4adc5-e05d-4055-bdbb-2435d8d93f60?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNDhiNjFhN2QvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y0OGI2MWE3ZC9iYWNrdXBKb2JzLzU3YTRhZGM1LWUwNWQtNDA1NS1iZGJiLTI0MzVkOGQ5M2Y2MD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "27052996-1125-4c2b-9cf9-c141b2a286b4" + "f11102df-348a-4d5e-9893-fccbafdd9d76" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -7769,11 +7914,11 @@ "nosniff" ], "x-ms-request-id": [ - "003a8570-c57e-4392-962f-98b4832e812f" + "79030b38-30f6-4853-a540-7a884fcb09f6" ], "x-ms-client-request-id": [ - "27052996-1125-4c2b-9cf9-c141b2a286b4", - "27052996-1125-4c2b-9cf9-c141b2a286b4" + "f11102df-348a-4d5e-9893-fccbafdd9d76", + "f11102df-348a-4d5e-9893-fccbafdd9d76" ], "X-Powered-By": [ "ASP.NET" @@ -7785,16 +7930,16 @@ "101" ], "x-ms-correlation-request-id": [ - "003a8570-c57e-4392-962f-98b4832e812f" + "79030b38-30f6-4853-a540-7a884fcb09f6" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T210817Z:003a8570-c57e-4392-962f-98b4832e812f" + "WESTINDIA:20220516T182658Z:79030b38-30f6-4853-a540-7a884fcb09f6" ], "Date": [ - "Wed, 23 Feb 2022 21:08:16 GMT" + "Mon, 16 May 2022 18:26:58 GMT" ], "Content-Length": [ - "970" + "971" ], "Content-Type": [ "application/json" @@ -7803,26 +7948,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupJobs/f4955f76-367d-49a2-95f4-3779436ff49d\",\r\n \"name\": \"f4955f76-367d-49a2-95f4-3779436ff49d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgbfbf59cf;pstestvmbfbf50\",\r\n \"duration\": \"PT26M15.0364357S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvmbfbf50\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvmbfbf50\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-23T20:42:01.041925Z\",\r\n \"activityId\": \"9c81380d-ab42-4e74-a6c7-c10d169b4611\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupJobs/57a4adc5-e05d-4055-bdbb-2435d8d93f60\",\r\n \"name\": \"57a4adc5-e05d-4055-bdbb-2435d8d93f60\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg48b61a7d;pstestvm48b610\",\r\n \"duration\": \"PT23M41.2241006S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm48b610\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm48b610\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T18:03:17.3965623Z\",\r\n \"activityId\": \"a5981808-f090-4049-96dc-24d09eecdaeb\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupJobs/f4955f76-367d-49a2-95f4-3779436ff49d?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZiZjU5Y2YvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmJmNTljZi9iYWNrdXBKb2JzL2Y0OTU1Zjc2LTM2N2QtNDlhMi05NWY0LTM3Nzk0MzZmZjQ5ZD9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupJobs/57a4adc5-e05d-4055-bdbb-2435d8d93f60?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNDhiNjFhN2QvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y0OGI2MWE3ZC9iYWNrdXBKb2JzLzU3YTRhZGM1LWUwNWQtNDA1NS1iZGJiLTI0MzVkOGQ5M2Y2MD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "27052996-1125-4c2b-9cf9-c141b2a286b4" + "f11102df-348a-4d5e-9893-fccbafdd9d76" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -7840,11 +7985,11 @@ "nosniff" ], "x-ms-request-id": [ - "81908323-92d8-4209-ad9c-3f1f28bb44f8" + "16d7258f-c6ae-488e-adeb-58266cbe44c5" ], "x-ms-client-request-id": [ - "27052996-1125-4c2b-9cf9-c141b2a286b4", - "27052996-1125-4c2b-9cf9-c141b2a286b4" + "f11102df-348a-4d5e-9893-fccbafdd9d76", + "f11102df-348a-4d5e-9893-fccbafdd9d76" ], "X-Powered-By": [ "ASP.NET" @@ -7856,16 +8001,16 @@ "100" ], "x-ms-correlation-request-id": [ - "81908323-92d8-4209-ad9c-3f1f28bb44f8" + "16d7258f-c6ae-488e-adeb-58266cbe44c5" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T210849Z:81908323-92d8-4209-ad9c-3f1f28bb44f8" + "WESTINDIA:20220516T182729Z:16d7258f-c6ae-488e-adeb-58266cbe44c5" ], "Date": [ - "Wed, 23 Feb 2022 21:08:48 GMT" + "Mon, 16 May 2022 18:27:29 GMT" ], "Content-Length": [ - "970" + "971" ], "Content-Type": [ "application/json" @@ -7874,26 +8019,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupJobs/f4955f76-367d-49a2-95f4-3779436ff49d\",\r\n \"name\": \"f4955f76-367d-49a2-95f4-3779436ff49d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgbfbf59cf;pstestvmbfbf50\",\r\n \"duration\": \"PT26M48.3380879S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvmbfbf50\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvmbfbf50\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-23T20:42:01.041925Z\",\r\n \"activityId\": \"9c81380d-ab42-4e74-a6c7-c10d169b4611\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupJobs/57a4adc5-e05d-4055-bdbb-2435d8d93f60\",\r\n \"name\": \"57a4adc5-e05d-4055-bdbb-2435d8d93f60\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg48b61a7d;pstestvm48b610\",\r\n \"duration\": \"PT24M11.8091398S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm48b610\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm48b610\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T18:03:17.3965623Z\",\r\n \"activityId\": \"a5981808-f090-4049-96dc-24d09eecdaeb\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupJobs/f4955f76-367d-49a2-95f4-3779436ff49d?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZiZjU5Y2YvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmJmNTljZi9iYWNrdXBKb2JzL2Y0OTU1Zjc2LTM2N2QtNDlhMi05NWY0LTM3Nzk0MzZmZjQ5ZD9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupJobs/57a4adc5-e05d-4055-bdbb-2435d8d93f60?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNDhiNjFhN2QvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y0OGI2MWE3ZC9iYWNrdXBKb2JzLzU3YTRhZGM1LWUwNWQtNDA1NS1iZGJiLTI0MzVkOGQ5M2Y2MD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "27052996-1125-4c2b-9cf9-c141b2a286b4" + "f11102df-348a-4d5e-9893-fccbafdd9d76" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -7911,11 +8056,11 @@ "nosniff" ], "x-ms-request-id": [ - "74bea972-60ad-4aa0-b494-ee754ad8b6f2" + "8e92b928-22d3-41fe-8f4e-f0967c23340c" ], "x-ms-client-request-id": [ - "27052996-1125-4c2b-9cf9-c141b2a286b4", - "27052996-1125-4c2b-9cf9-c141b2a286b4" + "f11102df-348a-4d5e-9893-fccbafdd9d76", + "f11102df-348a-4d5e-9893-fccbafdd9d76" ], "X-Powered-By": [ "ASP.NET" @@ -7927,16 +8072,16 @@ "99" ], "x-ms-correlation-request-id": [ - "74bea972-60ad-4aa0-b494-ee754ad8b6f2" + "8e92b928-22d3-41fe-8f4e-f0967c23340c" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T210920Z:74bea972-60ad-4aa0-b494-ee754ad8b6f2" + "WESTINDIA:20220516T182800Z:8e92b928-22d3-41fe-8f4e-f0967c23340c" ], "Date": [ - "Wed, 23 Feb 2022 21:09:20 GMT" + "Mon, 16 May 2022 18:27:59 GMT" ], "Content-Length": [ - "970" + "971" ], "Content-Type": [ "application/json" @@ -7945,26 +8090,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupJobs/f4955f76-367d-49a2-95f4-3779436ff49d\",\r\n \"name\": \"f4955f76-367d-49a2-95f4-3779436ff49d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgbfbf59cf;pstestvmbfbf50\",\r\n \"duration\": \"PT27M19.2490351S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvmbfbf50\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvmbfbf50\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-23T20:42:01.041925Z\",\r\n \"activityId\": \"9c81380d-ab42-4e74-a6c7-c10d169b4611\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupJobs/57a4adc5-e05d-4055-bdbb-2435d8d93f60\",\r\n \"name\": \"57a4adc5-e05d-4055-bdbb-2435d8d93f60\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg48b61a7d;pstestvm48b610\",\r\n \"duration\": \"PT24M42.4763612S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm48b610\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm48b610\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T18:03:17.3965623Z\",\r\n \"activityId\": \"a5981808-f090-4049-96dc-24d09eecdaeb\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupJobs/f4955f76-367d-49a2-95f4-3779436ff49d?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZiZjU5Y2YvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmJmNTljZi9iYWNrdXBKb2JzL2Y0OTU1Zjc2LTM2N2QtNDlhMi05NWY0LTM3Nzk0MzZmZjQ5ZD9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupJobs/57a4adc5-e05d-4055-bdbb-2435d8d93f60?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNDhiNjFhN2QvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y0OGI2MWE3ZC9iYWNrdXBKb2JzLzU3YTRhZGM1LWUwNWQtNDA1NS1iZGJiLTI0MzVkOGQ5M2Y2MD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "27052996-1125-4c2b-9cf9-c141b2a286b4" + "f11102df-348a-4d5e-9893-fccbafdd9d76" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -7982,11 +8127,11 @@ "nosniff" ], "x-ms-request-id": [ - "9ee666ef-5af1-4013-abf1-c65af1775d3f" + "5491a43e-bc85-4566-b543-4e61b513bd43" ], "x-ms-client-request-id": [ - "27052996-1125-4c2b-9cf9-c141b2a286b4", - "27052996-1125-4c2b-9cf9-c141b2a286b4" + "f11102df-348a-4d5e-9893-fccbafdd9d76", + "f11102df-348a-4d5e-9893-fccbafdd9d76" ], "X-Powered-By": [ "ASP.NET" @@ -7998,16 +8143,16 @@ "98" ], "x-ms-correlation-request-id": [ - "9ee666ef-5af1-4013-abf1-c65af1775d3f" + "5491a43e-bc85-4566-b543-4e61b513bd43" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T210951Z:9ee666ef-5af1-4013-abf1-c65af1775d3f" + "WESTINDIA:20220516T182830Z:5491a43e-bc85-4566-b543-4e61b513bd43" ], "Date": [ - "Wed, 23 Feb 2022 21:09:51 GMT" + "Mon, 16 May 2022 18:28:30 GMT" ], "Content-Length": [ - "970" + "971" ], "Content-Type": [ "application/json" @@ -8016,26 +8161,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupJobs/f4955f76-367d-49a2-95f4-3779436ff49d\",\r\n \"name\": \"f4955f76-367d-49a2-95f4-3779436ff49d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgbfbf59cf;pstestvmbfbf50\",\r\n \"duration\": \"PT27M50.0393271S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvmbfbf50\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvmbfbf50\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-23T20:42:01.041925Z\",\r\n \"activityId\": \"9c81380d-ab42-4e74-a6c7-c10d169b4611\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupJobs/57a4adc5-e05d-4055-bdbb-2435d8d93f60\",\r\n \"name\": \"57a4adc5-e05d-4055-bdbb-2435d8d93f60\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg48b61a7d;pstestvm48b610\",\r\n \"duration\": \"PT25M13.2163802S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm48b610\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm48b610\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T18:03:17.3965623Z\",\r\n \"activityId\": \"a5981808-f090-4049-96dc-24d09eecdaeb\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupJobs/f4955f76-367d-49a2-95f4-3779436ff49d?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZiZjU5Y2YvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmJmNTljZi9iYWNrdXBKb2JzL2Y0OTU1Zjc2LTM2N2QtNDlhMi05NWY0LTM3Nzk0MzZmZjQ5ZD9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupJobs/57a4adc5-e05d-4055-bdbb-2435d8d93f60?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNDhiNjFhN2QvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y0OGI2MWE3ZC9iYWNrdXBKb2JzLzU3YTRhZGM1LWUwNWQtNDA1NS1iZGJiLTI0MzVkOGQ5M2Y2MD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "27052996-1125-4c2b-9cf9-c141b2a286b4" + "f11102df-348a-4d5e-9893-fccbafdd9d76" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -8053,11 +8198,11 @@ "nosniff" ], "x-ms-request-id": [ - "3e516989-f050-4f18-8a6c-49960dcf1d96" + "a5270257-19f0-4a55-ae95-8f3a80d2fe7f" ], "x-ms-client-request-id": [ - "27052996-1125-4c2b-9cf9-c141b2a286b4", - "27052996-1125-4c2b-9cf9-c141b2a286b4" + "f11102df-348a-4d5e-9893-fccbafdd9d76", + "f11102df-348a-4d5e-9893-fccbafdd9d76" ], "X-Powered-By": [ "ASP.NET" @@ -8069,16 +8214,16 @@ "97" ], "x-ms-correlation-request-id": [ - "3e516989-f050-4f18-8a6c-49960dcf1d96" + "a5270257-19f0-4a55-ae95-8f3a80d2fe7f" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T211022Z:3e516989-f050-4f18-8a6c-49960dcf1d96" + "WESTINDIA:20220516T182901Z:a5270257-19f0-4a55-ae95-8f3a80d2fe7f" ], "Date": [ - "Wed, 23 Feb 2022 21:10:22 GMT" + "Mon, 16 May 2022 18:29:01 GMT" ], "Content-Length": [ - "969" + "971" ], "Content-Type": [ "application/json" @@ -8087,26 +8232,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupJobs/f4955f76-367d-49a2-95f4-3779436ff49d\",\r\n \"name\": \"f4955f76-367d-49a2-95f4-3779436ff49d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgbfbf59cf;pstestvmbfbf50\",\r\n \"duration\": \"PT28M21.423075S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvmbfbf50\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvmbfbf50\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-23T20:42:01.041925Z\",\r\n \"activityId\": \"9c81380d-ab42-4e74-a6c7-c10d169b4611\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupJobs/57a4adc5-e05d-4055-bdbb-2435d8d93f60\",\r\n \"name\": \"57a4adc5-e05d-4055-bdbb-2435d8d93f60\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg48b61a7d;pstestvm48b610\",\r\n \"duration\": \"PT25M43.9431993S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm48b610\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm48b610\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T18:03:17.3965623Z\",\r\n \"activityId\": \"a5981808-f090-4049-96dc-24d09eecdaeb\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupJobs/f4955f76-367d-49a2-95f4-3779436ff49d?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZiZjU5Y2YvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmJmNTljZi9iYWNrdXBKb2JzL2Y0OTU1Zjc2LTM2N2QtNDlhMi05NWY0LTM3Nzk0MzZmZjQ5ZD9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupJobs/57a4adc5-e05d-4055-bdbb-2435d8d93f60?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNDhiNjFhN2QvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y0OGI2MWE3ZC9iYWNrdXBKb2JzLzU3YTRhZGM1LWUwNWQtNDA1NS1iZGJiLTI0MzVkOGQ5M2Y2MD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "27052996-1125-4c2b-9cf9-c141b2a286b4" + "f11102df-348a-4d5e-9893-fccbafdd9d76" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -8124,11 +8269,11 @@ "nosniff" ], "x-ms-request-id": [ - "b35fcdad-f2b0-48c5-a8fe-6beb699fdab7" + "9f481201-6950-4fbb-8c6b-7381ca9a1589" ], "x-ms-client-request-id": [ - "27052996-1125-4c2b-9cf9-c141b2a286b4", - "27052996-1125-4c2b-9cf9-c141b2a286b4" + "f11102df-348a-4d5e-9893-fccbafdd9d76", + "f11102df-348a-4d5e-9893-fccbafdd9d76" ], "X-Powered-By": [ "ASP.NET" @@ -8140,16 +8285,16 @@ "96" ], "x-ms-correlation-request-id": [ - "b35fcdad-f2b0-48c5-a8fe-6beb699fdab7" + "9f481201-6950-4fbb-8c6b-7381ca9a1589" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T211101Z:b35fcdad-f2b0-48c5-a8fe-6beb699fdab7" + "WESTINDIA:20220516T182932Z:9f481201-6950-4fbb-8c6b-7381ca9a1589" ], "Date": [ - "Wed, 23 Feb 2022 21:11:00 GMT" + "Mon, 16 May 2022 18:29:32 GMT" ], "Content-Length": [ - "970" + "971" ], "Content-Type": [ "application/json" @@ -8158,26 +8303,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupJobs/f4955f76-367d-49a2-95f4-3779436ff49d\",\r\n \"name\": \"f4955f76-367d-49a2-95f4-3779436ff49d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgbfbf59cf;pstestvmbfbf50\",\r\n \"duration\": \"PT28M57.1347685S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvmbfbf50\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvmbfbf50\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-23T20:42:01.041925Z\",\r\n \"activityId\": \"9c81380d-ab42-4e74-a6c7-c10d169b4611\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupJobs/57a4adc5-e05d-4055-bdbb-2435d8d93f60\",\r\n \"name\": \"57a4adc5-e05d-4055-bdbb-2435d8d93f60\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg48b61a7d;pstestvm48b610\",\r\n \"duration\": \"PT26M14.5191344S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm48b610\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm48b610\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T18:03:17.3965623Z\",\r\n \"activityId\": \"a5981808-f090-4049-96dc-24d09eecdaeb\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupJobs/f4955f76-367d-49a2-95f4-3779436ff49d?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZiZjU5Y2YvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmJmNTljZi9iYWNrdXBKb2JzL2Y0OTU1Zjc2LTM2N2QtNDlhMi05NWY0LTM3Nzk0MzZmZjQ5ZD9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupJobs/57a4adc5-e05d-4055-bdbb-2435d8d93f60?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNDhiNjFhN2QvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y0OGI2MWE3ZC9iYWNrdXBKb2JzLzU3YTRhZGM1LWUwNWQtNDA1NS1iZGJiLTI0MzVkOGQ5M2Y2MD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "27052996-1125-4c2b-9cf9-c141b2a286b4" + "f11102df-348a-4d5e-9893-fccbafdd9d76" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -8195,11 +8340,11 @@ "nosniff" ], "x-ms-request-id": [ - "fe3c97dc-3e65-4095-a7dd-ebe9486048a3" + "874fbf56-4c77-49ad-aed2-46d91ca3a729" ], "x-ms-client-request-id": [ - "27052996-1125-4c2b-9cf9-c141b2a286b4", - "27052996-1125-4c2b-9cf9-c141b2a286b4" + "f11102df-348a-4d5e-9893-fccbafdd9d76", + "f11102df-348a-4d5e-9893-fccbafdd9d76" ], "X-Powered-By": [ "ASP.NET" @@ -8211,16 +8356,16 @@ "95" ], "x-ms-correlation-request-id": [ - "fe3c97dc-3e65-4095-a7dd-ebe9486048a3" + "874fbf56-4c77-49ad-aed2-46d91ca3a729" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T211132Z:fe3c97dc-3e65-4095-a7dd-ebe9486048a3" + "WESTINDIA:20220516T183002Z:874fbf56-4c77-49ad-aed2-46d91ca3a729" ], "Date": [ - "Wed, 23 Feb 2022 21:11:32 GMT" + "Mon, 16 May 2022 18:30:02 GMT" ], "Content-Length": [ - "970" + "971" ], "Content-Type": [ "application/json" @@ -8229,26 +8374,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupJobs/f4955f76-367d-49a2-95f4-3779436ff49d\",\r\n \"name\": \"f4955f76-367d-49a2-95f4-3779436ff49d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgbfbf59cf;pstestvmbfbf50\",\r\n \"duration\": \"PT29M30.8175377S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvmbfbf50\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvmbfbf50\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-23T20:42:01.041925Z\",\r\n \"activityId\": \"9c81380d-ab42-4e74-a6c7-c10d169b4611\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupJobs/57a4adc5-e05d-4055-bdbb-2435d8d93f60\",\r\n \"name\": \"57a4adc5-e05d-4055-bdbb-2435d8d93f60\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg48b61a7d;pstestvm48b610\",\r\n \"duration\": \"PT26M45.1164659S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm48b610\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm48b610\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T18:03:17.3965623Z\",\r\n \"activityId\": \"a5981808-f090-4049-96dc-24d09eecdaeb\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupJobs/f4955f76-367d-49a2-95f4-3779436ff49d?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZiZjU5Y2YvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmJmNTljZi9iYWNrdXBKb2JzL2Y0OTU1Zjc2LTM2N2QtNDlhMi05NWY0LTM3Nzk0MzZmZjQ5ZD9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupJobs/57a4adc5-e05d-4055-bdbb-2435d8d93f60?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNDhiNjFhN2QvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y0OGI2MWE3ZC9iYWNrdXBKb2JzLzU3YTRhZGM1LWUwNWQtNDA1NS1iZGJiLTI0MzVkOGQ5M2Y2MD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "27052996-1125-4c2b-9cf9-c141b2a286b4" + "f11102df-348a-4d5e-9893-fccbafdd9d76" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -8266,11 +8411,11 @@ "nosniff" ], "x-ms-request-id": [ - "e3176c10-6ea1-4cfa-b6f2-31c2bbf413d7" + "e6806ee4-b9c3-4149-8531-72e005feb7da" ], "x-ms-client-request-id": [ - "27052996-1125-4c2b-9cf9-c141b2a286b4", - "27052996-1125-4c2b-9cf9-c141b2a286b4" + "f11102df-348a-4d5e-9893-fccbafdd9d76", + "f11102df-348a-4d5e-9893-fccbafdd9d76" ], "X-Powered-By": [ "ASP.NET" @@ -8282,16 +8427,16 @@ "94" ], "x-ms-correlation-request-id": [ - "e3176c10-6ea1-4cfa-b6f2-31c2bbf413d7" + "e6806ee4-b9c3-4149-8531-72e005feb7da" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T211203Z:e3176c10-6ea1-4cfa-b6f2-31c2bbf413d7" + "WESTINDIA:20220516T183034Z:e6806ee4-b9c3-4149-8531-72e005feb7da" ], "Date": [ - "Wed, 23 Feb 2022 21:12:02 GMT" + "Mon, 16 May 2022 18:30:33 GMT" ], "Content-Length": [ - "969" + "971" ], "Content-Type": [ "application/json" @@ -8300,26 +8445,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupJobs/f4955f76-367d-49a2-95f4-3779436ff49d\",\r\n \"name\": \"f4955f76-367d-49a2-95f4-3779436ff49d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgbfbf59cf;pstestvmbfbf50\",\r\n \"duration\": \"PT30M1.6714299S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvmbfbf50\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvmbfbf50\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-23T20:42:01.041925Z\",\r\n \"activityId\": \"9c81380d-ab42-4e74-a6c7-c10d169b4611\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupJobs/57a4adc5-e05d-4055-bdbb-2435d8d93f60\",\r\n \"name\": \"57a4adc5-e05d-4055-bdbb-2435d8d93f60\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg48b61a7d;pstestvm48b610\",\r\n \"duration\": \"PT27M16.3593381S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm48b610\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm48b610\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T18:03:17.3965623Z\",\r\n \"activityId\": \"a5981808-f090-4049-96dc-24d09eecdaeb\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupJobs/f4955f76-367d-49a2-95f4-3779436ff49d?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZiZjU5Y2YvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmJmNTljZi9iYWNrdXBKb2JzL2Y0OTU1Zjc2LTM2N2QtNDlhMi05NWY0LTM3Nzk0MzZmZjQ5ZD9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupJobs/57a4adc5-e05d-4055-bdbb-2435d8d93f60?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNDhiNjFhN2QvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y0OGI2MWE3ZC9iYWNrdXBKb2JzLzU3YTRhZGM1LWUwNWQtNDA1NS1iZGJiLTI0MzVkOGQ5M2Y2MD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "27052996-1125-4c2b-9cf9-c141b2a286b4" + "f11102df-348a-4d5e-9893-fccbafdd9d76" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -8337,11 +8482,11 @@ "nosniff" ], "x-ms-request-id": [ - "84429dd9-1b2b-4abe-b887-0a9cb0420b31" + "e18f96d7-be5d-4373-a807-e8a897c7b168" ], "x-ms-client-request-id": [ - "27052996-1125-4c2b-9cf9-c141b2a286b4", - "27052996-1125-4c2b-9cf9-c141b2a286b4" + "f11102df-348a-4d5e-9893-fccbafdd9d76", + "f11102df-348a-4d5e-9893-fccbafdd9d76" ], "X-Powered-By": [ "ASP.NET" @@ -8353,16 +8498,16 @@ "93" ], "x-ms-correlation-request-id": [ - "84429dd9-1b2b-4abe-b887-0a9cb0420b31" + "e18f96d7-be5d-4373-a807-e8a897c7b168" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T211234Z:84429dd9-1b2b-4abe-b887-0a9cb0420b31" + "WESTINDIA:20220516T183104Z:e18f96d7-be5d-4373-a807-e8a897c7b168" ], "Date": [ - "Wed, 23 Feb 2022 21:12:34 GMT" + "Mon, 16 May 2022 18:31:04 GMT" ], "Content-Length": [ - "970" + "971" ], "Content-Type": [ "application/json" @@ -8371,26 +8516,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupJobs/f4955f76-367d-49a2-95f4-3779436ff49d\",\r\n \"name\": \"f4955f76-367d-49a2-95f4-3779436ff49d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgbfbf59cf;pstestvmbfbf50\",\r\n \"duration\": \"PT30M32.7093054S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvmbfbf50\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvmbfbf50\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-23T20:42:01.041925Z\",\r\n \"activityId\": \"9c81380d-ab42-4e74-a6c7-c10d169b4611\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupJobs/57a4adc5-e05d-4055-bdbb-2435d8d93f60\",\r\n \"name\": \"57a4adc5-e05d-4055-bdbb-2435d8d93f60\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg48b61a7d;pstestvm48b610\",\r\n \"duration\": \"PT27M46.9247098S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm48b610\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm48b610\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T18:03:17.3965623Z\",\r\n \"activityId\": \"a5981808-f090-4049-96dc-24d09eecdaeb\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupJobs/f4955f76-367d-49a2-95f4-3779436ff49d?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZiZjU5Y2YvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmJmNTljZi9iYWNrdXBKb2JzL2Y0OTU1Zjc2LTM2N2QtNDlhMi05NWY0LTM3Nzk0MzZmZjQ5ZD9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupJobs/57a4adc5-e05d-4055-bdbb-2435d8d93f60?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNDhiNjFhN2QvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y0OGI2MWE3ZC9iYWNrdXBKb2JzLzU3YTRhZGM1LWUwNWQtNDA1NS1iZGJiLTI0MzVkOGQ5M2Y2MD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "27052996-1125-4c2b-9cf9-c141b2a286b4" + "f11102df-348a-4d5e-9893-fccbafdd9d76" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -8408,11 +8553,11 @@ "nosniff" ], "x-ms-request-id": [ - "4e2e4aa8-2aed-49db-85da-951853ea2430" + "2a610917-e80b-4716-9df4-3e85768abdd4" ], "x-ms-client-request-id": [ - "27052996-1125-4c2b-9cf9-c141b2a286b4", - "27052996-1125-4c2b-9cf9-c141b2a286b4" + "f11102df-348a-4d5e-9893-fccbafdd9d76", + "f11102df-348a-4d5e-9893-fccbafdd9d76" ], "X-Powered-By": [ "ASP.NET" @@ -8424,16 +8569,16 @@ "92" ], "x-ms-correlation-request-id": [ - "4e2e4aa8-2aed-49db-85da-951853ea2430" + "2a610917-e80b-4716-9df4-3e85768abdd4" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T211305Z:4e2e4aa8-2aed-49db-85da-951853ea2430" + "WESTINDIA:20220516T183135Z:2a610917-e80b-4716-9df4-3e85768abdd4" ], "Date": [ - "Wed, 23 Feb 2022 21:13:05 GMT" + "Mon, 16 May 2022 18:31:34 GMT" ], "Content-Length": [ - "969" + "971" ], "Content-Type": [ "application/json" @@ -8442,26 +8587,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupJobs/f4955f76-367d-49a2-95f4-3779436ff49d\",\r\n \"name\": \"f4955f76-367d-49a2-95f4-3779436ff49d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgbfbf59cf;pstestvmbfbf50\",\r\n \"duration\": \"PT31M3.7158124S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvmbfbf50\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvmbfbf50\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-23T20:42:01.041925Z\",\r\n \"activityId\": \"9c81380d-ab42-4e74-a6c7-c10d169b4611\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupJobs/57a4adc5-e05d-4055-bdbb-2435d8d93f60\",\r\n \"name\": \"57a4adc5-e05d-4055-bdbb-2435d8d93f60\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg48b61a7d;pstestvm48b610\",\r\n \"duration\": \"PT28M17.5614225S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm48b610\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm48b610\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T18:03:17.3965623Z\",\r\n \"activityId\": \"a5981808-f090-4049-96dc-24d09eecdaeb\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupJobs/f4955f76-367d-49a2-95f4-3779436ff49d?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZiZjU5Y2YvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmJmNTljZi9iYWNrdXBKb2JzL2Y0OTU1Zjc2LTM2N2QtNDlhMi05NWY0LTM3Nzk0MzZmZjQ5ZD9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupJobs/57a4adc5-e05d-4055-bdbb-2435d8d93f60?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNDhiNjFhN2QvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y0OGI2MWE3ZC9iYWNrdXBKb2JzLzU3YTRhZGM1LWUwNWQtNDA1NS1iZGJiLTI0MzVkOGQ5M2Y2MD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "27052996-1125-4c2b-9cf9-c141b2a286b4" + "f11102df-348a-4d5e-9893-fccbafdd9d76" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -8479,11 +8624,11 @@ "nosniff" ], "x-ms-request-id": [ - "554a03a2-38de-4729-a339-3d3f9a77c19e" + "20020414-f6d6-48cc-886e-a7bcd6acbbb3" ], "x-ms-client-request-id": [ - "27052996-1125-4c2b-9cf9-c141b2a286b4", - "27052996-1125-4c2b-9cf9-c141b2a286b4" + "f11102df-348a-4d5e-9893-fccbafdd9d76", + "f11102df-348a-4d5e-9893-fccbafdd9d76" ], "X-Powered-By": [ "ASP.NET" @@ -8495,16 +8640,16 @@ "91" ], "x-ms-correlation-request-id": [ - "554a03a2-38de-4729-a339-3d3f9a77c19e" + "20020414-f6d6-48cc-886e-a7bcd6acbbb3" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T211336Z:554a03a2-38de-4729-a339-3d3f9a77c19e" + "WESTINDIA:20220516T183205Z:20020414-f6d6-48cc-886e-a7bcd6acbbb3" ], "Date": [ - "Wed, 23 Feb 2022 21:13:35 GMT" + "Mon, 16 May 2022 18:32:05 GMT" ], "Content-Length": [ - "970" + "971" ], "Content-Type": [ "application/json" @@ -8513,26 +8658,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupJobs/f4955f76-367d-49a2-95f4-3779436ff49d\",\r\n \"name\": \"f4955f76-367d-49a2-95f4-3779436ff49d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgbfbf59cf;pstestvmbfbf50\",\r\n \"duration\": \"PT31M34.5340084S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvmbfbf50\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvmbfbf50\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-23T20:42:01.041925Z\",\r\n \"activityId\": \"9c81380d-ab42-4e74-a6c7-c10d169b4611\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupJobs/57a4adc5-e05d-4055-bdbb-2435d8d93f60\",\r\n \"name\": \"57a4adc5-e05d-4055-bdbb-2435d8d93f60\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg48b61a7d;pstestvm48b610\",\r\n \"duration\": \"PT28M48.1691304S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm48b610\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm48b610\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T18:03:17.3965623Z\",\r\n \"activityId\": \"a5981808-f090-4049-96dc-24d09eecdaeb\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupJobs/f4955f76-367d-49a2-95f4-3779436ff49d?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZiZjU5Y2YvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmJmNTljZi9iYWNrdXBKb2JzL2Y0OTU1Zjc2LTM2N2QtNDlhMi05NWY0LTM3Nzk0MzZmZjQ5ZD9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupJobs/57a4adc5-e05d-4055-bdbb-2435d8d93f60?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNDhiNjFhN2QvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y0OGI2MWE3ZC9iYWNrdXBKb2JzLzU3YTRhZGM1LWUwNWQtNDA1NS1iZGJiLTI0MzVkOGQ5M2Y2MD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "27052996-1125-4c2b-9cf9-c141b2a286b4" + "f11102df-348a-4d5e-9893-fccbafdd9d76" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -8550,11 +8695,11 @@ "nosniff" ], "x-ms-request-id": [ - "6523680f-e905-4e8e-b4c1-676a475b4bcc" + "a18dce28-3e7b-4a08-9ced-8d7e954ae208" ], "x-ms-client-request-id": [ - "27052996-1125-4c2b-9cf9-c141b2a286b4", - "27052996-1125-4c2b-9cf9-c141b2a286b4" + "f11102df-348a-4d5e-9893-fccbafdd9d76", + "f11102df-348a-4d5e-9893-fccbafdd9d76" ], "X-Powered-By": [ "ASP.NET" @@ -8566,16 +8711,16 @@ "90" ], "x-ms-correlation-request-id": [ - "6523680f-e905-4e8e-b4c1-676a475b4bcc" + "a18dce28-3e7b-4a08-9ced-8d7e954ae208" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T211410Z:6523680f-e905-4e8e-b4c1-676a475b4bcc" + "WESTINDIA:20220516T183236Z:a18dce28-3e7b-4a08-9ced-8d7e954ae208" ], "Date": [ - "Wed, 23 Feb 2022 21:14:09 GMT" + "Mon, 16 May 2022 18:32:36 GMT" ], "Content-Length": [ - "969" + "971" ], "Content-Type": [ "application/json" @@ -8584,26 +8729,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupJobs/f4955f76-367d-49a2-95f4-3779436ff49d\",\r\n \"name\": \"f4955f76-367d-49a2-95f4-3779436ff49d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgbfbf59cf;pstestvmbfbf50\",\r\n \"duration\": \"PT32M9.1036035S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvmbfbf50\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvmbfbf50\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-23T20:42:01.041925Z\",\r\n \"activityId\": \"9c81380d-ab42-4e74-a6c7-c10d169b4611\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupJobs/57a4adc5-e05d-4055-bdbb-2435d8d93f60\",\r\n \"name\": \"57a4adc5-e05d-4055-bdbb-2435d8d93f60\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg48b61a7d;pstestvm48b610\",\r\n \"duration\": \"PT29M19.1786741S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm48b610\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm48b610\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T18:03:17.3965623Z\",\r\n \"activityId\": \"a5981808-f090-4049-96dc-24d09eecdaeb\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupJobs/f4955f76-367d-49a2-95f4-3779436ff49d?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZiZjU5Y2YvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmJmNTljZi9iYWNrdXBKb2JzL2Y0OTU1Zjc2LTM2N2QtNDlhMi05NWY0LTM3Nzk0MzZmZjQ5ZD9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupJobs/57a4adc5-e05d-4055-bdbb-2435d8d93f60?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNDhiNjFhN2QvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y0OGI2MWE3ZC9iYWNrdXBKb2JzLzU3YTRhZGM1LWUwNWQtNDA1NS1iZGJiLTI0MzVkOGQ5M2Y2MD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "27052996-1125-4c2b-9cf9-c141b2a286b4" + "f11102df-348a-4d5e-9893-fccbafdd9d76" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -8621,11 +8766,11 @@ "nosniff" ], "x-ms-request-id": [ - "00379348-5f81-473e-98e1-61f5f0461765" + "e9a09504-07ac-4483-a806-785d97150b28" ], "x-ms-client-request-id": [ - "27052996-1125-4c2b-9cf9-c141b2a286b4", - "27052996-1125-4c2b-9cf9-c141b2a286b4" + "f11102df-348a-4d5e-9893-fccbafdd9d76", + "f11102df-348a-4d5e-9893-fccbafdd9d76" ], "X-Powered-By": [ "ASP.NET" @@ -8637,16 +8782,16 @@ "89" ], "x-ms-correlation-request-id": [ - "00379348-5f81-473e-98e1-61f5f0461765" + "e9a09504-07ac-4483-a806-785d97150b28" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T211441Z:00379348-5f81-473e-98e1-61f5f0461765" + "WESTINDIA:20220516T183307Z:e9a09504-07ac-4483-a806-785d97150b28" ], "Date": [ - "Wed, 23 Feb 2022 21:14:41 GMT" + "Mon, 16 May 2022 18:33:07 GMT" ], "Content-Length": [ - "970" + "971" ], "Content-Type": [ "application/json" @@ -8655,26 +8800,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupJobs/f4955f76-367d-49a2-95f4-3779436ff49d\",\r\n \"name\": \"f4955f76-367d-49a2-95f4-3779436ff49d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgbfbf59cf;pstestvmbfbf50\",\r\n \"duration\": \"PT32M40.1524139S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvmbfbf50\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvmbfbf50\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-23T20:42:01.041925Z\",\r\n \"activityId\": \"9c81380d-ab42-4e74-a6c7-c10d169b4611\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupJobs/57a4adc5-e05d-4055-bdbb-2435d8d93f60\",\r\n \"name\": \"57a4adc5-e05d-4055-bdbb-2435d8d93f60\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg48b61a7d;pstestvm48b610\",\r\n \"duration\": \"PT29M49.9096455S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm48b610\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm48b610\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T18:03:17.3965623Z\",\r\n \"activityId\": \"a5981808-f090-4049-96dc-24d09eecdaeb\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupJobs/f4955f76-367d-49a2-95f4-3779436ff49d?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZiZjU5Y2YvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmJmNTljZi9iYWNrdXBKb2JzL2Y0OTU1Zjc2LTM2N2QtNDlhMi05NWY0LTM3Nzk0MzZmZjQ5ZD9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupJobs/57a4adc5-e05d-4055-bdbb-2435d8d93f60?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNDhiNjFhN2QvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y0OGI2MWE3ZC9iYWNrdXBKb2JzLzU3YTRhZGM1LWUwNWQtNDA1NS1iZGJiLTI0MzVkOGQ5M2Y2MD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "27052996-1125-4c2b-9cf9-c141b2a286b4" + "f11102df-348a-4d5e-9893-fccbafdd9d76" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -8692,11 +8837,11 @@ "nosniff" ], "x-ms-request-id": [ - "15aa194f-48cd-4678-9a25-5796acd4032a" + "c1aff858-f95f-4ca1-bcdd-7d53c1d8ed41" ], "x-ms-client-request-id": [ - "27052996-1125-4c2b-9cf9-c141b2a286b4", - "27052996-1125-4c2b-9cf9-c141b2a286b4" + "f11102df-348a-4d5e-9893-fccbafdd9d76", + "f11102df-348a-4d5e-9893-fccbafdd9d76" ], "X-Powered-By": [ "ASP.NET" @@ -8708,16 +8853,16 @@ "88" ], "x-ms-correlation-request-id": [ - "15aa194f-48cd-4678-9a25-5796acd4032a" + "c1aff858-f95f-4ca1-bcdd-7d53c1d8ed41" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T211512Z:15aa194f-48cd-4678-9a25-5796acd4032a" + "WESTINDIA:20220516T183338Z:c1aff858-f95f-4ca1-bcdd-7d53c1d8ed41" ], "Date": [ - "Wed, 23 Feb 2022 21:15:12 GMT" + "Mon, 16 May 2022 18:33:37 GMT" ], "Content-Length": [ - "970" + "971" ], "Content-Type": [ "application/json" @@ -8726,26 +8871,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupJobs/f4955f76-367d-49a2-95f4-3779436ff49d\",\r\n \"name\": \"f4955f76-367d-49a2-95f4-3779436ff49d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgbfbf59cf;pstestvmbfbf50\",\r\n \"duration\": \"PT33M10.9302696S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvmbfbf50\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvmbfbf50\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-23T20:42:01.041925Z\",\r\n \"activityId\": \"9c81380d-ab42-4e74-a6c7-c10d169b4611\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupJobs/57a4adc5-e05d-4055-bdbb-2435d8d93f60\",\r\n \"name\": \"57a4adc5-e05d-4055-bdbb-2435d8d93f60\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg48b61a7d;pstestvm48b610\",\r\n \"duration\": \"PT30M20.6178247S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm48b610\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm48b610\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T18:03:17.3965623Z\",\r\n \"activityId\": \"a5981808-f090-4049-96dc-24d09eecdaeb\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupJobs/f4955f76-367d-49a2-95f4-3779436ff49d?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZiZjU5Y2YvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmJmNTljZi9iYWNrdXBKb2JzL2Y0OTU1Zjc2LTM2N2QtNDlhMi05NWY0LTM3Nzk0MzZmZjQ5ZD9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupJobs/57a4adc5-e05d-4055-bdbb-2435d8d93f60?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNDhiNjFhN2QvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y0OGI2MWE3ZC9iYWNrdXBKb2JzLzU3YTRhZGM1LWUwNWQtNDA1NS1iZGJiLTI0MzVkOGQ5M2Y2MD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "27052996-1125-4c2b-9cf9-c141b2a286b4" + "f11102df-348a-4d5e-9893-fccbafdd9d76" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -8763,11 +8908,11 @@ "nosniff" ], "x-ms-request-id": [ - "25efc967-e273-425a-97ec-0d5cb701497f" + "44f1b380-6a7a-49f8-87ad-54525a400852" ], "x-ms-client-request-id": [ - "27052996-1125-4c2b-9cf9-c141b2a286b4", - "27052996-1125-4c2b-9cf9-c141b2a286b4" + "f11102df-348a-4d5e-9893-fccbafdd9d76", + "f11102df-348a-4d5e-9893-fccbafdd9d76" ], "X-Powered-By": [ "ASP.NET" @@ -8779,16 +8924,16 @@ "87" ], "x-ms-correlation-request-id": [ - "25efc967-e273-425a-97ec-0d5cb701497f" + "44f1b380-6a7a-49f8-87ad-54525a400852" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T211626Z:25efc967-e273-425a-97ec-0d5cb701497f" + "WESTINDIA:20220516T183409Z:44f1b380-6a7a-49f8-87ad-54525a400852" ], "Date": [ - "Wed, 23 Feb 2022 21:16:26 GMT" + "Mon, 16 May 2022 18:34:08 GMT" ], "Content-Length": [ - "970" + "971" ], "Content-Type": [ "application/json" @@ -8797,26 +8942,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupJobs/f4955f76-367d-49a2-95f4-3779436ff49d\",\r\n \"name\": \"f4955f76-367d-49a2-95f4-3779436ff49d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgbfbf59cf;pstestvmbfbf50\",\r\n \"duration\": \"PT34M25.3940903S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvmbfbf50\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvmbfbf50\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-23T20:42:01.041925Z\",\r\n \"activityId\": \"9c81380d-ab42-4e74-a6c7-c10d169b4611\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupJobs/57a4adc5-e05d-4055-bdbb-2435d8d93f60\",\r\n \"name\": \"57a4adc5-e05d-4055-bdbb-2435d8d93f60\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg48b61a7d;pstestvm48b610\",\r\n \"duration\": \"PT30M51.4790268S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm48b610\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm48b610\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T18:03:17.3965623Z\",\r\n \"activityId\": \"a5981808-f090-4049-96dc-24d09eecdaeb\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupJobs/f4955f76-367d-49a2-95f4-3779436ff49d?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZiZjU5Y2YvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmJmNTljZi9iYWNrdXBKb2JzL2Y0OTU1Zjc2LTM2N2QtNDlhMi05NWY0LTM3Nzk0MzZmZjQ5ZD9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupJobs/57a4adc5-e05d-4055-bdbb-2435d8d93f60?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNDhiNjFhN2QvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y0OGI2MWE3ZC9iYWNrdXBKb2JzLzU3YTRhZGM1LWUwNWQtNDA1NS1iZGJiLTI0MzVkOGQ5M2Y2MD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "27052996-1125-4c2b-9cf9-c141b2a286b4" + "f11102df-348a-4d5e-9893-fccbafdd9d76" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -8834,11 +8979,11 @@ "nosniff" ], "x-ms-request-id": [ - "7cde9bbb-31c2-4339-ae07-d4dd5bbbe4c1" + "9b2fb02c-d391-4c88-946e-fec8842c581f" ], "x-ms-client-request-id": [ - "27052996-1125-4c2b-9cf9-c141b2a286b4", - "27052996-1125-4c2b-9cf9-c141b2a286b4" + "f11102df-348a-4d5e-9893-fccbafdd9d76", + "f11102df-348a-4d5e-9893-fccbafdd9d76" ], "X-Powered-By": [ "ASP.NET" @@ -8850,16 +8995,16 @@ "86" ], "x-ms-correlation-request-id": [ - "7cde9bbb-31c2-4339-ae07-d4dd5bbbe4c1" + "9b2fb02c-d391-4c88-946e-fec8842c581f" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T211714Z:7cde9bbb-31c2-4339-ae07-d4dd5bbbe4c1" + "WESTINDIA:20220516T183439Z:9b2fb02c-d391-4c88-946e-fec8842c581f" ], "Date": [ - "Wed, 23 Feb 2022 21:17:14 GMT" + "Mon, 16 May 2022 18:34:39 GMT" ], "Content-Length": [ - "970" + "971" ], "Content-Type": [ "application/json" @@ -8868,26 +9013,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupJobs/f4955f76-367d-49a2-95f4-3779436ff49d\",\r\n \"name\": \"f4955f76-367d-49a2-95f4-3779436ff49d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgbfbf59cf;pstestvmbfbf50\",\r\n \"duration\": \"PT35M11.8730051S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvmbfbf50\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvmbfbf50\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-23T20:42:01.041925Z\",\r\n \"activityId\": \"9c81380d-ab42-4e74-a6c7-c10d169b4611\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupJobs/57a4adc5-e05d-4055-bdbb-2435d8d93f60\",\r\n \"name\": \"57a4adc5-e05d-4055-bdbb-2435d8d93f60\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg48b61a7d;pstestvm48b610\",\r\n \"duration\": \"PT31M22.1361502S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm48b610\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm48b610\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T18:03:17.3965623Z\",\r\n \"activityId\": \"a5981808-f090-4049-96dc-24d09eecdaeb\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupJobs/f4955f76-367d-49a2-95f4-3779436ff49d?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZiZjU5Y2YvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmJmNTljZi9iYWNrdXBKb2JzL2Y0OTU1Zjc2LTM2N2QtNDlhMi05NWY0LTM3Nzk0MzZmZjQ5ZD9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupJobs/57a4adc5-e05d-4055-bdbb-2435d8d93f60?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNDhiNjFhN2QvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y0OGI2MWE3ZC9iYWNrdXBKb2JzLzU3YTRhZGM1LWUwNWQtNDA1NS1iZGJiLTI0MzVkOGQ5M2Y2MD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "27052996-1125-4c2b-9cf9-c141b2a286b4" + "f11102df-348a-4d5e-9893-fccbafdd9d76" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -8905,11 +9050,11 @@ "nosniff" ], "x-ms-request-id": [ - "2b6f0fbf-fabe-4edd-85fa-0134ce4e8f07" + "b551838c-f171-4211-8b51-2d257ebbc641" ], "x-ms-client-request-id": [ - "27052996-1125-4c2b-9cf9-c141b2a286b4", - "27052996-1125-4c2b-9cf9-c141b2a286b4" + "f11102df-348a-4d5e-9893-fccbafdd9d76", + "f11102df-348a-4d5e-9893-fccbafdd9d76" ], "X-Powered-By": [ "ASP.NET" @@ -8921,16 +9066,16 @@ "85" ], "x-ms-correlation-request-id": [ - "2b6f0fbf-fabe-4edd-85fa-0134ce4e8f07" + "b551838c-f171-4211-8b51-2d257ebbc641" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T211745Z:2b6f0fbf-fabe-4edd-85fa-0134ce4e8f07" + "WESTINDIA:20220516T183510Z:b551838c-f171-4211-8b51-2d257ebbc641" ], "Date": [ - "Wed, 23 Feb 2022 21:17:45 GMT" + "Mon, 16 May 2022 18:35:09 GMT" ], "Content-Length": [ - "970" + "971" ], "Content-Type": [ "application/json" @@ -8939,26 +9084,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupJobs/f4955f76-367d-49a2-95f4-3779436ff49d\",\r\n \"name\": \"f4955f76-367d-49a2-95f4-3779436ff49d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgbfbf59cf;pstestvmbfbf50\",\r\n \"duration\": \"PT35M44.0762348S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvmbfbf50\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvmbfbf50\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-23T20:42:01.041925Z\",\r\n \"activityId\": \"9c81380d-ab42-4e74-a6c7-c10d169b4611\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupJobs/57a4adc5-e05d-4055-bdbb-2435d8d93f60\",\r\n \"name\": \"57a4adc5-e05d-4055-bdbb-2435d8d93f60\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg48b61a7d;pstestvm48b610\",\r\n \"duration\": \"PT31M52.8424431S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm48b610\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm48b610\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T18:03:17.3965623Z\",\r\n \"activityId\": \"a5981808-f090-4049-96dc-24d09eecdaeb\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupJobs/f4955f76-367d-49a2-95f4-3779436ff49d?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZiZjU5Y2YvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmJmNTljZi9iYWNrdXBKb2JzL2Y0OTU1Zjc2LTM2N2QtNDlhMi05NWY0LTM3Nzk0MzZmZjQ5ZD9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupJobs/57a4adc5-e05d-4055-bdbb-2435d8d93f60?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNDhiNjFhN2QvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y0OGI2MWE3ZC9iYWNrdXBKb2JzLzU3YTRhZGM1LWUwNWQtNDA1NS1iZGJiLTI0MzVkOGQ5M2Y2MD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "27052996-1125-4c2b-9cf9-c141b2a286b4" + "f11102df-348a-4d5e-9893-fccbafdd9d76" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -8976,11 +9121,11 @@ "nosniff" ], "x-ms-request-id": [ - "c79ac9a6-d8ee-4162-b9ae-6c448eefd997" + "f2dc4fbc-105c-410b-9fe8-c00a7835fbcd" ], "x-ms-client-request-id": [ - "27052996-1125-4c2b-9cf9-c141b2a286b4", - "27052996-1125-4c2b-9cf9-c141b2a286b4" + "f11102df-348a-4d5e-9893-fccbafdd9d76", + "f11102df-348a-4d5e-9893-fccbafdd9d76" ], "X-Powered-By": [ "ASP.NET" @@ -8992,16 +9137,16 @@ "84" ], "x-ms-correlation-request-id": [ - "c79ac9a6-d8ee-4162-b9ae-6c448eefd997" + "f2dc4fbc-105c-410b-9fe8-c00a7835fbcd" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T211816Z:c79ac9a6-d8ee-4162-b9ae-6c448eefd997" + "WESTINDIA:20220516T183541Z:f2dc4fbc-105c-410b-9fe8-c00a7835fbcd" ], "Date": [ - "Wed, 23 Feb 2022 21:18:15 GMT" + "Mon, 16 May 2022 18:35:41 GMT" ], "Content-Length": [ - "970" + "971" ], "Content-Type": [ "application/json" @@ -9010,26 +9155,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupJobs/f4955f76-367d-49a2-95f4-3779436ff49d\",\r\n \"name\": \"f4955f76-367d-49a2-95f4-3779436ff49d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgbfbf59cf;pstestvmbfbf50\",\r\n \"duration\": \"PT36M14.9181125S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvmbfbf50\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvmbfbf50\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-23T20:42:01.041925Z\",\r\n \"activityId\": \"9c81380d-ab42-4e74-a6c7-c10d169b4611\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupJobs/57a4adc5-e05d-4055-bdbb-2435d8d93f60\",\r\n \"name\": \"57a4adc5-e05d-4055-bdbb-2435d8d93f60\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg48b61a7d;pstestvm48b610\",\r\n \"duration\": \"PT32M23.6087565S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm48b610\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm48b610\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T18:03:17.3965623Z\",\r\n \"activityId\": \"a5981808-f090-4049-96dc-24d09eecdaeb\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupJobs/f4955f76-367d-49a2-95f4-3779436ff49d?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZiZjU5Y2YvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmJmNTljZi9iYWNrdXBKb2JzL2Y0OTU1Zjc2LTM2N2QtNDlhMi05NWY0LTM3Nzk0MzZmZjQ5ZD9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupJobs/57a4adc5-e05d-4055-bdbb-2435d8d93f60?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNDhiNjFhN2QvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y0OGI2MWE3ZC9iYWNrdXBKb2JzLzU3YTRhZGM1LWUwNWQtNDA1NS1iZGJiLTI0MzVkOGQ5M2Y2MD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "27052996-1125-4c2b-9cf9-c141b2a286b4" + "f11102df-348a-4d5e-9893-fccbafdd9d76" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -9047,11 +9192,11 @@ "nosniff" ], "x-ms-request-id": [ - "97cdad39-8cdd-40e2-8a23-9415924c5c99" + "ef89bb48-a77e-41e9-b8c0-51d333329fb1" ], "x-ms-client-request-id": [ - "27052996-1125-4c2b-9cf9-c141b2a286b4", - "27052996-1125-4c2b-9cf9-c141b2a286b4" + "f11102df-348a-4d5e-9893-fccbafdd9d76", + "f11102df-348a-4d5e-9893-fccbafdd9d76" ], "X-Powered-By": [ "ASP.NET" @@ -9063,13 +9208,13 @@ "83" ], "x-ms-correlation-request-id": [ - "97cdad39-8cdd-40e2-8a23-9415924c5c99" + "ef89bb48-a77e-41e9-b8c0-51d333329fb1" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T211847Z:97cdad39-8cdd-40e2-8a23-9415924c5c99" + "WESTINDIA:20220516T183612Z:ef89bb48-a77e-41e9-b8c0-51d333329fb1" ], "Date": [ - "Wed, 23 Feb 2022 21:18:47 GMT" + "Mon, 16 May 2022 18:36:11 GMT" ], "Content-Length": [ "970" @@ -9081,26 +9226,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupJobs/f4955f76-367d-49a2-95f4-3779436ff49d\",\r\n \"name\": \"f4955f76-367d-49a2-95f4-3779436ff49d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgbfbf59cf;pstestvmbfbf50\",\r\n \"duration\": \"PT36M45.7167435S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvmbfbf50\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvmbfbf50\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-23T20:42:01.041925Z\",\r\n \"activityId\": \"9c81380d-ab42-4e74-a6c7-c10d169b4611\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupJobs/57a4adc5-e05d-4055-bdbb-2435d8d93f60\",\r\n \"name\": \"57a4adc5-e05d-4055-bdbb-2435d8d93f60\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg48b61a7d;pstestvm48b610\",\r\n \"duration\": \"PT32M54.276119S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm48b610\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm48b610\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T18:03:17.3965623Z\",\r\n \"activityId\": \"a5981808-f090-4049-96dc-24d09eecdaeb\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupJobs/f4955f76-367d-49a2-95f4-3779436ff49d?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZiZjU5Y2YvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmJmNTljZi9iYWNrdXBKb2JzL2Y0OTU1Zjc2LTM2N2QtNDlhMi05NWY0LTM3Nzk0MzZmZjQ5ZD9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupJobs/57a4adc5-e05d-4055-bdbb-2435d8d93f60?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNDhiNjFhN2QvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y0OGI2MWE3ZC9iYWNrdXBKb2JzLzU3YTRhZGM1LWUwNWQtNDA1NS1iZGJiLTI0MzVkOGQ5M2Y2MD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "27052996-1125-4c2b-9cf9-c141b2a286b4" + "f11102df-348a-4d5e-9893-fccbafdd9d76" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -9118,11 +9263,11 @@ "nosniff" ], "x-ms-request-id": [ - "d185c91b-c2f1-4627-acd0-6e06ad0d324c" + "67523629-84d5-4279-a3bc-102a5da8bfea" ], "x-ms-client-request-id": [ - "27052996-1125-4c2b-9cf9-c141b2a286b4", - "27052996-1125-4c2b-9cf9-c141b2a286b4" + "f11102df-348a-4d5e-9893-fccbafdd9d76", + "f11102df-348a-4d5e-9893-fccbafdd9d76" ], "X-Powered-By": [ "ASP.NET" @@ -9134,13 +9279,13 @@ "82" ], "x-ms-correlation-request-id": [ - "d185c91b-c2f1-4627-acd0-6e06ad0d324c" + "67523629-84d5-4279-a3bc-102a5da8bfea" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T211918Z:d185c91b-c2f1-4627-acd0-6e06ad0d324c" + "WESTINDIA:20220516T183642Z:67523629-84d5-4279-a3bc-102a5da8bfea" ], "Date": [ - "Wed, 23 Feb 2022 21:19:17 GMT" + "Mon, 16 May 2022 18:36:42 GMT" ], "Content-Length": [ "970" @@ -9152,26 +9297,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupJobs/f4955f76-367d-49a2-95f4-3779436ff49d\",\r\n \"name\": \"f4955f76-367d-49a2-95f4-3779436ff49d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgbfbf59cf;pstestvmbfbf50\",\r\n \"duration\": \"PT37M16.5439463S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvmbfbf50\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvmbfbf50\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-23T20:42:01.041925Z\",\r\n \"activityId\": \"9c81380d-ab42-4e74-a6c7-c10d169b4611\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupJobs/57a4adc5-e05d-4055-bdbb-2435d8d93f60\",\r\n \"name\": \"57a4adc5-e05d-4055-bdbb-2435d8d93f60\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg48b61a7d;pstestvm48b610\",\r\n \"duration\": \"PT33M25.103035S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm48b610\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm48b610\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T18:03:17.3965623Z\",\r\n \"activityId\": \"a5981808-f090-4049-96dc-24d09eecdaeb\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupJobs/f4955f76-367d-49a2-95f4-3779436ff49d?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZiZjU5Y2YvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmJmNTljZi9iYWNrdXBKb2JzL2Y0OTU1Zjc2LTM2N2QtNDlhMi05NWY0LTM3Nzk0MzZmZjQ5ZD9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupJobs/57a4adc5-e05d-4055-bdbb-2435d8d93f60?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNDhiNjFhN2QvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y0OGI2MWE3ZC9iYWNrdXBKb2JzLzU3YTRhZGM1LWUwNWQtNDA1NS1iZGJiLTI0MzVkOGQ5M2Y2MD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "27052996-1125-4c2b-9cf9-c141b2a286b4" + "f11102df-348a-4d5e-9893-fccbafdd9d76" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -9189,11 +9334,11 @@ "nosniff" ], "x-ms-request-id": [ - "0dbfd829-4b97-41ab-bf52-79b471083e2d" + "889b893e-880e-48be-ac6b-84034b627ffc" ], "x-ms-client-request-id": [ - "27052996-1125-4c2b-9cf9-c141b2a286b4", - "27052996-1125-4c2b-9cf9-c141b2a286b4" + "f11102df-348a-4d5e-9893-fccbafdd9d76", + "f11102df-348a-4d5e-9893-fccbafdd9d76" ], "X-Powered-By": [ "ASP.NET" @@ -9205,16 +9350,16 @@ "81" ], "x-ms-correlation-request-id": [ - "0dbfd829-4b97-41ab-bf52-79b471083e2d" + "889b893e-880e-48be-ac6b-84034b627ffc" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T211949Z:0dbfd829-4b97-41ab-bf52-79b471083e2d" + "WESTINDIA:20220516T183713Z:889b893e-880e-48be-ac6b-84034b627ffc" ], "Date": [ - "Wed, 23 Feb 2022 21:19:48 GMT" + "Mon, 16 May 2022 18:37:13 GMT" ], "Content-Length": [ - "970" + "968" ], "Content-Type": [ "application/json" @@ -9223,26 +9368,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupJobs/f4955f76-367d-49a2-95f4-3779436ff49d\",\r\n \"name\": \"f4955f76-367d-49a2-95f4-3779436ff49d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgbfbf59cf;pstestvmbfbf50\",\r\n \"duration\": \"PT37M47.8022035S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvmbfbf50\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvmbfbf50\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-23T20:42:01.041925Z\",\r\n \"activityId\": \"9c81380d-ab42-4e74-a6c7-c10d169b4611\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupJobs/57a4adc5-e05d-4055-bdbb-2435d8d93f60\",\r\n \"name\": \"57a4adc5-e05d-4055-bdbb-2435d8d93f60\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg48b61a7d;pstestvm48b610\",\r\n \"duration\": \"PT33M55.7968S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm48b610\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm48b610\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T18:03:17.3965623Z\",\r\n \"activityId\": \"a5981808-f090-4049-96dc-24d09eecdaeb\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupJobs/f4955f76-367d-49a2-95f4-3779436ff49d?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZiZjU5Y2YvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmJmNTljZi9iYWNrdXBKb2JzL2Y0OTU1Zjc2LTM2N2QtNDlhMi05NWY0LTM3Nzk0MzZmZjQ5ZD9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupJobs/57a4adc5-e05d-4055-bdbb-2435d8d93f60?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNDhiNjFhN2QvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y0OGI2MWE3ZC9iYWNrdXBKb2JzLzU3YTRhZGM1LWUwNWQtNDA1NS1iZGJiLTI0MzVkOGQ5M2Y2MD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "27052996-1125-4c2b-9cf9-c141b2a286b4" + "f11102df-348a-4d5e-9893-fccbafdd9d76" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -9260,11 +9405,11 @@ "nosniff" ], "x-ms-request-id": [ - "f0c089b7-205f-4985-9140-77b65243523d" + "7e314482-e081-4578-a879-c6349ee19d2b" ], "x-ms-client-request-id": [ - "27052996-1125-4c2b-9cf9-c141b2a286b4", - "27052996-1125-4c2b-9cf9-c141b2a286b4" + "f11102df-348a-4d5e-9893-fccbafdd9d76", + "f11102df-348a-4d5e-9893-fccbafdd9d76" ], "X-Powered-By": [ "ASP.NET" @@ -9276,16 +9421,16 @@ "80" ], "x-ms-correlation-request-id": [ - "f0c089b7-205f-4985-9140-77b65243523d" + "7e314482-e081-4578-a879-c6349ee19d2b" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T212022Z:f0c089b7-205f-4985-9140-77b65243523d" + "WESTINDIA:20220516T183744Z:7e314482-e081-4578-a879-c6349ee19d2b" ], "Date": [ - "Wed, 23 Feb 2022 21:20:21 GMT" + "Mon, 16 May 2022 18:37:44 GMT" ], "Content-Length": [ - "970" + "971" ], "Content-Type": [ "application/json" @@ -9294,26 +9439,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupJobs/f4955f76-367d-49a2-95f4-3779436ff49d\",\r\n \"name\": \"f4955f76-367d-49a2-95f4-3779436ff49d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgbfbf59cf;pstestvmbfbf50\",\r\n \"duration\": \"PT38M20.5402694S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvmbfbf50\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvmbfbf50\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-23T20:42:01.041925Z\",\r\n \"activityId\": \"9c81380d-ab42-4e74-a6c7-c10d169b4611\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupJobs/57a4adc5-e05d-4055-bdbb-2435d8d93f60\",\r\n \"name\": \"57a4adc5-e05d-4055-bdbb-2435d8d93f60\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg48b61a7d;pstestvm48b610\",\r\n \"duration\": \"PT34M26.6125603S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm48b610\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm48b610\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T18:03:17.3965623Z\",\r\n \"activityId\": \"a5981808-f090-4049-96dc-24d09eecdaeb\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupJobs/f4955f76-367d-49a2-95f4-3779436ff49d?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZiZjU5Y2YvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmJmNTljZi9iYWNrdXBKb2JzL2Y0OTU1Zjc2LTM2N2QtNDlhMi05NWY0LTM3Nzk0MzZmZjQ5ZD9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupJobs/57a4adc5-e05d-4055-bdbb-2435d8d93f60?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNDhiNjFhN2QvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y0OGI2MWE3ZC9iYWNrdXBKb2JzLzU3YTRhZGM1LWUwNWQtNDA1NS1iZGJiLTI0MzVkOGQ5M2Y2MD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "27052996-1125-4c2b-9cf9-c141b2a286b4" + "f11102df-348a-4d5e-9893-fccbafdd9d76" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -9331,11 +9476,11 @@ "nosniff" ], "x-ms-request-id": [ - "5fdc0df9-9f92-449c-9486-4b3dc6f76d9b" + "1d0be417-137c-4802-af90-a6b9892ce651" ], "x-ms-client-request-id": [ - "27052996-1125-4c2b-9cf9-c141b2a286b4", - "27052996-1125-4c2b-9cf9-c141b2a286b4" + "f11102df-348a-4d5e-9893-fccbafdd9d76", + "f11102df-348a-4d5e-9893-fccbafdd9d76" ], "X-Powered-By": [ "ASP.NET" @@ -9347,16 +9492,16 @@ "79" ], "x-ms-correlation-request-id": [ - "5fdc0df9-9f92-449c-9486-4b3dc6f76d9b" + "1d0be417-137c-4802-af90-a6b9892ce651" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T212057Z:5fdc0df9-9f92-449c-9486-4b3dc6f76d9b" + "WESTINDIA:20220516T183815Z:1d0be417-137c-4802-af90-a6b9892ce651" ], "Date": [ - "Wed, 23 Feb 2022 21:20:57 GMT" + "Mon, 16 May 2022 18:38:14 GMT" ], "Content-Length": [ - "970" + "971" ], "Content-Type": [ "application/json" @@ -9365,26 +9510,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupJobs/f4955f76-367d-49a2-95f4-3779436ff49d\",\r\n \"name\": \"f4955f76-367d-49a2-95f4-3779436ff49d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgbfbf59cf;pstestvmbfbf50\",\r\n \"duration\": \"PT38M56.2092562S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvmbfbf50\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvmbfbf50\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-23T20:42:01.041925Z\",\r\n \"activityId\": \"9c81380d-ab42-4e74-a6c7-c10d169b4611\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupJobs/57a4adc5-e05d-4055-bdbb-2435d8d93f60\",\r\n \"name\": \"57a4adc5-e05d-4055-bdbb-2435d8d93f60\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg48b61a7d;pstestvm48b610\",\r\n \"duration\": \"PT34M57.2994568S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm48b610\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm48b610\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T18:03:17.3965623Z\",\r\n \"activityId\": \"a5981808-f090-4049-96dc-24d09eecdaeb\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupJobs/f4955f76-367d-49a2-95f4-3779436ff49d?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZiZjU5Y2YvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmJmNTljZi9iYWNrdXBKb2JzL2Y0OTU1Zjc2LTM2N2QtNDlhMi05NWY0LTM3Nzk0MzZmZjQ5ZD9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupJobs/57a4adc5-e05d-4055-bdbb-2435d8d93f60?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNDhiNjFhN2QvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y0OGI2MWE3ZC9iYWNrdXBKb2JzLzU3YTRhZGM1LWUwNWQtNDA1NS1iZGJiLTI0MzVkOGQ5M2Y2MD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "27052996-1125-4c2b-9cf9-c141b2a286b4" + "f11102df-348a-4d5e-9893-fccbafdd9d76" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -9402,11 +9547,11 @@ "nosniff" ], "x-ms-request-id": [ - "29a4edb2-ca96-4c55-bb6a-43e669def26e" + "d523d3d7-dd40-4006-883b-6808e800a2b8" ], "x-ms-client-request-id": [ - "27052996-1125-4c2b-9cf9-c141b2a286b4", - "27052996-1125-4c2b-9cf9-c141b2a286b4" + "f11102df-348a-4d5e-9893-fccbafdd9d76", + "f11102df-348a-4d5e-9893-fccbafdd9d76" ], "X-Powered-By": [ "ASP.NET" @@ -9418,16 +9563,16 @@ "78" ], "x-ms-correlation-request-id": [ - "29a4edb2-ca96-4c55-bb6a-43e669def26e" + "d523d3d7-dd40-4006-883b-6808e800a2b8" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T212128Z:29a4edb2-ca96-4c55-bb6a-43e669def26e" + "WESTINDIA:20220516T183845Z:d523d3d7-dd40-4006-883b-6808e800a2b8" ], "Date": [ - "Wed, 23 Feb 2022 21:21:28 GMT" + "Mon, 16 May 2022 18:38:44 GMT" ], "Content-Length": [ - "970" + "971" ], "Content-Type": [ "application/json" @@ -9436,26 +9581,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupJobs/f4955f76-367d-49a2-95f4-3779436ff49d\",\r\n \"name\": \"f4955f76-367d-49a2-95f4-3779436ff49d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgbfbf59cf;pstestvmbfbf50\",\r\n \"duration\": \"PT39M27.0578874S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvmbfbf50\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvmbfbf50\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-23T20:42:01.041925Z\",\r\n \"activityId\": \"9c81380d-ab42-4e74-a6c7-c10d169b4611\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupJobs/57a4adc5-e05d-4055-bdbb-2435d8d93f60\",\r\n \"name\": \"57a4adc5-e05d-4055-bdbb-2435d8d93f60\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg48b61a7d;pstestvm48b610\",\r\n \"duration\": \"PT35M27.8488394S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm48b610\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm48b610\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T18:03:17.3965623Z\",\r\n \"activityId\": \"a5981808-f090-4049-96dc-24d09eecdaeb\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupJobs/f4955f76-367d-49a2-95f4-3779436ff49d?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZiZjU5Y2YvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmJmNTljZi9iYWNrdXBKb2JzL2Y0OTU1Zjc2LTM2N2QtNDlhMi05NWY0LTM3Nzk0MzZmZjQ5ZD9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupJobs/57a4adc5-e05d-4055-bdbb-2435d8d93f60?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNDhiNjFhN2QvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y0OGI2MWE3ZC9iYWNrdXBKb2JzLzU3YTRhZGM1LWUwNWQtNDA1NS1iZGJiLTI0MzVkOGQ5M2Y2MD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "27052996-1125-4c2b-9cf9-c141b2a286b4" + "f11102df-348a-4d5e-9893-fccbafdd9d76" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -9473,11 +9618,11 @@ "nosniff" ], "x-ms-request-id": [ - "eba60e86-8658-4495-b548-818f5c41291e" + "c4d6efe6-bc54-4e07-b31b-23789c7c75e2" ], "x-ms-client-request-id": [ - "27052996-1125-4c2b-9cf9-c141b2a286b4", - "27052996-1125-4c2b-9cf9-c141b2a286b4" + "f11102df-348a-4d5e-9893-fccbafdd9d76", + "f11102df-348a-4d5e-9893-fccbafdd9d76" ], "X-Powered-By": [ "ASP.NET" @@ -9489,16 +9634,16 @@ "77" ], "x-ms-correlation-request-id": [ - "eba60e86-8658-4495-b548-818f5c41291e" + "c4d6efe6-bc54-4e07-b31b-23789c7c75e2" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T212203Z:eba60e86-8658-4495-b548-818f5c41291e" + "WESTINDIA:20220516T183916Z:c4d6efe6-bc54-4e07-b31b-23789c7c75e2" ], "Date": [ - "Wed, 23 Feb 2022 21:22:02 GMT" + "Mon, 16 May 2022 18:39:15 GMT" ], "Content-Length": [ - "969" + "971" ], "Content-Type": [ "application/json" @@ -9507,26 +9652,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupJobs/f4955f76-367d-49a2-95f4-3779436ff49d\",\r\n \"name\": \"f4955f76-367d-49a2-95f4-3779436ff49d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgbfbf59cf;pstestvmbfbf50\",\r\n \"duration\": \"PT40M1.2779141S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvmbfbf50\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvmbfbf50\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-23T20:42:01.041925Z\",\r\n \"activityId\": \"9c81380d-ab42-4e74-a6c7-c10d169b4611\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupJobs/57a4adc5-e05d-4055-bdbb-2435d8d93f60\",\r\n \"name\": \"57a4adc5-e05d-4055-bdbb-2435d8d93f60\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg48b61a7d;pstestvm48b610\",\r\n \"duration\": \"PT35M58.6855869S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm48b610\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm48b610\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T18:03:17.3965623Z\",\r\n \"activityId\": \"a5981808-f090-4049-96dc-24d09eecdaeb\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupJobs/f4955f76-367d-49a2-95f4-3779436ff49d?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZiZjU5Y2YvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmJmNTljZi9iYWNrdXBKb2JzL2Y0OTU1Zjc2LTM2N2QtNDlhMi05NWY0LTM3Nzk0MzZmZjQ5ZD9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupJobs/57a4adc5-e05d-4055-bdbb-2435d8d93f60?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNDhiNjFhN2QvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y0OGI2MWE3ZC9iYWNrdXBKb2JzLzU3YTRhZGM1LWUwNWQtNDA1NS1iZGJiLTI0MzVkOGQ5M2Y2MD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "27052996-1125-4c2b-9cf9-c141b2a286b4" + "f11102df-348a-4d5e-9893-fccbafdd9d76" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -9544,11 +9689,11 @@ "nosniff" ], "x-ms-request-id": [ - "6852175b-5f57-424f-b425-a54f36f5ec70" + "12e80fe1-281d-4410-a073-c2501c6c2bd6" ], "x-ms-client-request-id": [ - "27052996-1125-4c2b-9cf9-c141b2a286b4", - "27052996-1125-4c2b-9cf9-c141b2a286b4" + "f11102df-348a-4d5e-9893-fccbafdd9d76", + "f11102df-348a-4d5e-9893-fccbafdd9d76" ], "X-Powered-By": [ "ASP.NET" @@ -9560,16 +9705,16 @@ "76" ], "x-ms-correlation-request-id": [ - "6852175b-5f57-424f-b425-a54f36f5ec70" + "12e80fe1-281d-4410-a073-c2501c6c2bd6" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T212234Z:6852175b-5f57-424f-b425-a54f36f5ec70" + "WESTINDIA:20220516T183947Z:12e80fe1-281d-4410-a073-c2501c6c2bd6" ], "Date": [ - "Wed, 23 Feb 2022 21:22:33 GMT" + "Mon, 16 May 2022 18:39:47 GMT" ], "Content-Length": [ - "970" + "971" ], "Content-Type": [ "application/json" @@ -9578,26 +9723,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupJobs/f4955f76-367d-49a2-95f4-3779436ff49d\",\r\n \"name\": \"f4955f76-367d-49a2-95f4-3779436ff49d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgbfbf59cf;pstestvmbfbf50\",\r\n \"duration\": \"PT40M32.4929369S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvmbfbf50\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvmbfbf50\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-23T20:42:01.041925Z\",\r\n \"activityId\": \"9c81380d-ab42-4e74-a6c7-c10d169b4611\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupJobs/57a4adc5-e05d-4055-bdbb-2435d8d93f60\",\r\n \"name\": \"57a4adc5-e05d-4055-bdbb-2435d8d93f60\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg48b61a7d;pstestvm48b610\",\r\n \"duration\": \"PT36M29.7094549S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm48b610\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm48b610\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T18:03:17.3965623Z\",\r\n \"activityId\": \"a5981808-f090-4049-96dc-24d09eecdaeb\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupJobs/f4955f76-367d-49a2-95f4-3779436ff49d?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZiZjU5Y2YvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmJmNTljZi9iYWNrdXBKb2JzL2Y0OTU1Zjc2LTM2N2QtNDlhMi05NWY0LTM3Nzk0MzZmZjQ5ZD9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupJobs/57a4adc5-e05d-4055-bdbb-2435d8d93f60?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNDhiNjFhN2QvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y0OGI2MWE3ZC9iYWNrdXBKb2JzLzU3YTRhZGM1LWUwNWQtNDA1NS1iZGJiLTI0MzVkOGQ5M2Y2MD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "27052996-1125-4c2b-9cf9-c141b2a286b4" + "f11102df-348a-4d5e-9893-fccbafdd9d76" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -9615,11 +9760,11 @@ "nosniff" ], "x-ms-request-id": [ - "68102d52-4e37-4bc9-bd74-d6c313d56ef4" + "f75f2992-8c8e-445d-84c5-e42d61841219" ], "x-ms-client-request-id": [ - "27052996-1125-4c2b-9cf9-c141b2a286b4", - "27052996-1125-4c2b-9cf9-c141b2a286b4" + "f11102df-348a-4d5e-9893-fccbafdd9d76", + "f11102df-348a-4d5e-9893-fccbafdd9d76" ], "X-Powered-By": [ "ASP.NET" @@ -9631,13 +9776,13 @@ "75" ], "x-ms-correlation-request-id": [ - "68102d52-4e37-4bc9-bd74-d6c313d56ef4" + "f75f2992-8c8e-445d-84c5-e42d61841219" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T212315Z:68102d52-4e37-4bc9-bd74-d6c313d56ef4" + "WESTINDIA:20220516T184018Z:f75f2992-8c8e-445d-84c5-e42d61841219" ], "Date": [ - "Wed, 23 Feb 2022 21:23:14 GMT" + "Mon, 16 May 2022 18:40:18 GMT" ], "Content-Length": [ "968" @@ -9649,26 +9794,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupJobs/f4955f76-367d-49a2-95f4-3779436ff49d\",\r\n \"name\": \"f4955f76-367d-49a2-95f4-3779436ff49d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgbfbf59cf;pstestvmbfbf50\",\r\n \"duration\": \"PT41M14.17077S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvmbfbf50\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvmbfbf50\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-23T20:42:01.041925Z\",\r\n \"activityId\": \"9c81380d-ab42-4e74-a6c7-c10d169b4611\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupJobs/57a4adc5-e05d-4055-bdbb-2435d8d93f60\",\r\n \"name\": \"57a4adc5-e05d-4055-bdbb-2435d8d93f60\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg48b61a7d;pstestvm48b610\",\r\n \"duration\": \"PT37M0.35724S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm48b610\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm48b610\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T18:03:17.3965623Z\",\r\n \"activityId\": \"a5981808-f090-4049-96dc-24d09eecdaeb\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupJobs/f4955f76-367d-49a2-95f4-3779436ff49d?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZiZjU5Y2YvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmJmNTljZi9iYWNrdXBKb2JzL2Y0OTU1Zjc2LTM2N2QtNDlhMi05NWY0LTM3Nzk0MzZmZjQ5ZD9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupJobs/57a4adc5-e05d-4055-bdbb-2435d8d93f60?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNDhiNjFhN2QvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y0OGI2MWE3ZC9iYWNrdXBKb2JzLzU3YTRhZGM1LWUwNWQtNDA1NS1iZGJiLTI0MzVkOGQ5M2Y2MD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "27052996-1125-4c2b-9cf9-c141b2a286b4" + "f11102df-348a-4d5e-9893-fccbafdd9d76" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -9686,11 +9831,11 @@ "nosniff" ], "x-ms-request-id": [ - "1ca0b818-2872-40f4-98eb-8e4a2212a94a" + "3429673e-a639-458c-9300-d314075a5b40" ], "x-ms-client-request-id": [ - "27052996-1125-4c2b-9cf9-c141b2a286b4", - "27052996-1125-4c2b-9cf9-c141b2a286b4" + "f11102df-348a-4d5e-9893-fccbafdd9d76", + "f11102df-348a-4d5e-9893-fccbafdd9d76" ], "X-Powered-By": [ "ASP.NET" @@ -9702,16 +9847,16 @@ "74" ], "x-ms-correlation-request-id": [ - "1ca0b818-2872-40f4-98eb-8e4a2212a94a" + "3429673e-a639-458c-9300-d314075a5b40" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T212416Z:1ca0b818-2872-40f4-98eb-8e4a2212a94a" + "WESTINDIA:20220516T184048Z:3429673e-a639-458c-9300-d314075a5b40" ], "Date": [ - "Wed, 23 Feb 2022 21:24:16 GMT" + "Mon, 16 May 2022 18:40:48 GMT" ], "Content-Length": [ - "969" + "971" ], "Content-Type": [ "application/json" @@ -9720,26 +9865,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupJobs/f4955f76-367d-49a2-95f4-3779436ff49d\",\r\n \"name\": \"f4955f76-367d-49a2-95f4-3779436ff49d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgbfbf59cf;pstestvmbfbf50\",\r\n \"duration\": \"PT42M9.7595561S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvmbfbf50\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvmbfbf50\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-23T20:42:01.041925Z\",\r\n \"activityId\": \"9c81380d-ab42-4e74-a6c7-c10d169b4611\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupJobs/57a4adc5-e05d-4055-bdbb-2435d8d93f60\",\r\n \"name\": \"57a4adc5-e05d-4055-bdbb-2435d8d93f60\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg48b61a7d;pstestvm48b610\",\r\n \"duration\": \"PT37M31.0711006S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm48b610\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm48b610\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T18:03:17.3965623Z\",\r\n \"activityId\": \"a5981808-f090-4049-96dc-24d09eecdaeb\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupJobs/f4955f76-367d-49a2-95f4-3779436ff49d?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZiZjU5Y2YvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmJmNTljZi9iYWNrdXBKb2JzL2Y0OTU1Zjc2LTM2N2QtNDlhMi05NWY0LTM3Nzk0MzZmZjQ5ZD9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupJobs/57a4adc5-e05d-4055-bdbb-2435d8d93f60?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNDhiNjFhN2QvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y0OGI2MWE3ZC9iYWNrdXBKb2JzLzU3YTRhZGM1LWUwNWQtNDA1NS1iZGJiLTI0MzVkOGQ5M2Y2MD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "27052996-1125-4c2b-9cf9-c141b2a286b4" + "f11102df-348a-4d5e-9893-fccbafdd9d76" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -9757,11 +9902,11 @@ "nosniff" ], "x-ms-request-id": [ - "5f4307a0-2965-49a2-acd8-f4f19572bca6" + "b5adfd60-7ff5-4dc7-bfd7-72725eac32bc" ], "x-ms-client-request-id": [ - "27052996-1125-4c2b-9cf9-c141b2a286b4", - "27052996-1125-4c2b-9cf9-c141b2a286b4" + "f11102df-348a-4d5e-9893-fccbafdd9d76", + "f11102df-348a-4d5e-9893-fccbafdd9d76" ], "X-Powered-By": [ "ASP.NET" @@ -9773,16 +9918,16 @@ "73" ], "x-ms-correlation-request-id": [ - "5f4307a0-2965-49a2-acd8-f4f19572bca6" + "b5adfd60-7ff5-4dc7-bfd7-72725eac32bc" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T212447Z:5f4307a0-2965-49a2-acd8-f4f19572bca6" + "WESTINDIA:20220516T184119Z:b5adfd60-7ff5-4dc7-bfd7-72725eac32bc" ], "Date": [ - "Wed, 23 Feb 2022 21:24:46 GMT" + "Mon, 16 May 2022 18:41:19 GMT" ], "Content-Length": [ - "969" + "970" ], "Content-Type": [ "application/json" @@ -9791,26 +9936,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupJobs/f4955f76-367d-49a2-95f4-3779436ff49d\",\r\n \"name\": \"f4955f76-367d-49a2-95f4-3779436ff49d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgbfbf59cf;pstestvmbfbf50\",\r\n \"duration\": \"PT42M45.915356S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvmbfbf50\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvmbfbf50\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-23T20:42:01.041925Z\",\r\n \"activityId\": \"9c81380d-ab42-4e74-a6c7-c10d169b4611\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupJobs/57a4adc5-e05d-4055-bdbb-2435d8d93f60\",\r\n \"name\": \"57a4adc5-e05d-4055-bdbb-2435d8d93f60\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg48b61a7d;pstestvm48b610\",\r\n \"duration\": \"PT38M1.8195172S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm48b610\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm48b610\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T18:03:17.3965623Z\",\r\n \"activityId\": \"a5981808-f090-4049-96dc-24d09eecdaeb\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupJobs/f4955f76-367d-49a2-95f4-3779436ff49d?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZiZjU5Y2YvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmJmNTljZi9iYWNrdXBKb2JzL2Y0OTU1Zjc2LTM2N2QtNDlhMi05NWY0LTM3Nzk0MzZmZjQ5ZD9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupJobs/57a4adc5-e05d-4055-bdbb-2435d8d93f60?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNDhiNjFhN2QvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y0OGI2MWE3ZC9iYWNrdXBKb2JzLzU3YTRhZGM1LWUwNWQtNDA1NS1iZGJiLTI0MzVkOGQ5M2Y2MD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "27052996-1125-4c2b-9cf9-c141b2a286b4" + "f11102df-348a-4d5e-9893-fccbafdd9d76" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -9828,11 +9973,11 @@ "nosniff" ], "x-ms-request-id": [ - "498a593f-f7a8-4153-a15e-cb3f2ff63e9b" + "9643ee15-6998-4700-afee-5175bca6011a" ], "x-ms-client-request-id": [ - "27052996-1125-4c2b-9cf9-c141b2a286b4", - "27052996-1125-4c2b-9cf9-c141b2a286b4" + "f11102df-348a-4d5e-9893-fccbafdd9d76", + "f11102df-348a-4d5e-9893-fccbafdd9d76" ], "X-Powered-By": [ "ASP.NET" @@ -9844,16 +9989,16 @@ "72" ], "x-ms-correlation-request-id": [ - "498a593f-f7a8-4153-a15e-cb3f2ff63e9b" + "9643ee15-6998-4700-afee-5175bca6011a" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T212518Z:498a593f-f7a8-4153-a15e-cb3f2ff63e9b" + "WESTINDIA:20220516T184150Z:9643ee15-6998-4700-afee-5175bca6011a" ], "Date": [ - "Wed, 23 Feb 2022 21:25:17 GMT" + "Mon, 16 May 2022 18:41:49 GMT" ], "Content-Length": [ - "969" + "971" ], "Content-Type": [ "application/json" @@ -9862,26 +10007,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupJobs/f4955f76-367d-49a2-95f4-3779436ff49d\",\r\n \"name\": \"f4955f76-367d-49a2-95f4-3779436ff49d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgbfbf59cf;pstestvmbfbf50\",\r\n \"duration\": \"PT43M16.748375S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvmbfbf50\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvmbfbf50\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-23T20:42:01.041925Z\",\r\n \"activityId\": \"9c81380d-ab42-4e74-a6c7-c10d169b4611\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupJobs/57a4adc5-e05d-4055-bdbb-2435d8d93f60\",\r\n \"name\": \"57a4adc5-e05d-4055-bdbb-2435d8d93f60\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg48b61a7d;pstestvm48b610\",\r\n \"duration\": \"PT38M32.5443446S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm48b610\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm48b610\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T18:03:17.3965623Z\",\r\n \"activityId\": \"a5981808-f090-4049-96dc-24d09eecdaeb\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupJobs/f4955f76-367d-49a2-95f4-3779436ff49d?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZiZjU5Y2YvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmJmNTljZi9iYWNrdXBKb2JzL2Y0OTU1Zjc2LTM2N2QtNDlhMi05NWY0LTM3Nzk0MzZmZjQ5ZD9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupJobs/57a4adc5-e05d-4055-bdbb-2435d8d93f60?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNDhiNjFhN2QvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y0OGI2MWE3ZC9iYWNrdXBKb2JzLzU3YTRhZGM1LWUwNWQtNDA1NS1iZGJiLTI0MzVkOGQ5M2Y2MD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "27052996-1125-4c2b-9cf9-c141b2a286b4" + "f11102df-348a-4d5e-9893-fccbafdd9d76" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -9899,11 +10044,11 @@ "nosniff" ], "x-ms-request-id": [ - "0d26fb9b-3128-415f-93ee-f451b8c0cd9c" + "6f6b43cf-60cc-4e9d-ba8d-5708d6af3479" ], "x-ms-client-request-id": [ - "27052996-1125-4c2b-9cf9-c141b2a286b4", - "27052996-1125-4c2b-9cf9-c141b2a286b4" + "f11102df-348a-4d5e-9893-fccbafdd9d76", + "f11102df-348a-4d5e-9893-fccbafdd9d76" ], "X-Powered-By": [ "ASP.NET" @@ -9915,13 +10060,13 @@ "71" ], "x-ms-correlation-request-id": [ - "0d26fb9b-3128-415f-93ee-f451b8c0cd9c" + "6f6b43cf-60cc-4e9d-ba8d-5708d6af3479" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T212549Z:0d26fb9b-3128-415f-93ee-f451b8c0cd9c" + "WESTINDIA:20220516T184220Z:6f6b43cf-60cc-4e9d-ba8d-5708d6af3479" ], "Date": [ - "Wed, 23 Feb 2022 21:25:48 GMT" + "Mon, 16 May 2022 18:42:20 GMT" ], "Content-Length": [ "970" @@ -9933,26 +10078,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupJobs/f4955f76-367d-49a2-95f4-3779436ff49d\",\r\n \"name\": \"f4955f76-367d-49a2-95f4-3779436ff49d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgbfbf59cf;pstestvmbfbf50\",\r\n \"duration\": \"PT43M47.8304769S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvmbfbf50\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvmbfbf50\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-23T20:42:01.041925Z\",\r\n \"activityId\": \"9c81380d-ab42-4e74-a6c7-c10d169b4611\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupJobs/57a4adc5-e05d-4055-bdbb-2435d8d93f60\",\r\n \"name\": \"57a4adc5-e05d-4055-bdbb-2435d8d93f60\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg48b61a7d;pstestvm48b610\",\r\n \"duration\": \"PT39M3.1119379S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm48b610\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm48b610\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T18:03:17.3965623Z\",\r\n \"activityId\": \"a5981808-f090-4049-96dc-24d09eecdaeb\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupJobs/f4955f76-367d-49a2-95f4-3779436ff49d?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZiZjU5Y2YvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmJmNTljZi9iYWNrdXBKb2JzL2Y0OTU1Zjc2LTM2N2QtNDlhMi05NWY0LTM3Nzk0MzZmZjQ5ZD9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupJobs/57a4adc5-e05d-4055-bdbb-2435d8d93f60?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNDhiNjFhN2QvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y0OGI2MWE3ZC9iYWNrdXBKb2JzLzU3YTRhZGM1LWUwNWQtNDA1NS1iZGJiLTI0MzVkOGQ5M2Y2MD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "27052996-1125-4c2b-9cf9-c141b2a286b4" + "f11102df-348a-4d5e-9893-fccbafdd9d76" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -9970,11 +10115,11 @@ "nosniff" ], "x-ms-request-id": [ - "273cfb7b-59bb-4db5-9241-a8f62a2ab45c" + "e2be4ace-1080-4ef1-9398-b27e00f26806" ], "x-ms-client-request-id": [ - "27052996-1125-4c2b-9cf9-c141b2a286b4", - "27052996-1125-4c2b-9cf9-c141b2a286b4" + "f11102df-348a-4d5e-9893-fccbafdd9d76", + "f11102df-348a-4d5e-9893-fccbafdd9d76" ], "X-Powered-By": [ "ASP.NET" @@ -9986,16 +10131,16 @@ "70" ], "x-ms-correlation-request-id": [ - "273cfb7b-59bb-4db5-9241-a8f62a2ab45c" + "e2be4ace-1080-4ef1-9398-b27e00f26806" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T212631Z:273cfb7b-59bb-4db5-9241-a8f62a2ab45c" + "WESTINDIA:20220516T184251Z:e2be4ace-1080-4ef1-9398-b27e00f26806" ], "Date": [ - "Wed, 23 Feb 2022 21:26:30 GMT" + "Mon, 16 May 2022 18:42:51 GMT" ], "Content-Length": [ - "970" + "971" ], "Content-Type": [ "application/json" @@ -10004,26 +10149,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupJobs/f4955f76-367d-49a2-95f4-3779436ff49d\",\r\n \"name\": \"f4955f76-367d-49a2-95f4-3779436ff49d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgbfbf59cf;pstestvmbfbf50\",\r\n \"duration\": \"PT44M26.5745499S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvmbfbf50\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvmbfbf50\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-23T20:42:01.041925Z\",\r\n \"activityId\": \"9c81380d-ab42-4e74-a6c7-c10d169b4611\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupJobs/57a4adc5-e05d-4055-bdbb-2435d8d93f60\",\r\n \"name\": \"57a4adc5-e05d-4055-bdbb-2435d8d93f60\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg48b61a7d;pstestvm48b610\",\r\n \"duration\": \"PT39M33.7079968S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm48b610\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm48b610\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T18:03:17.3965623Z\",\r\n \"activityId\": \"a5981808-f090-4049-96dc-24d09eecdaeb\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupJobs/f4955f76-367d-49a2-95f4-3779436ff49d?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZiZjU5Y2YvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmJmNTljZi9iYWNrdXBKb2JzL2Y0OTU1Zjc2LTM2N2QtNDlhMi05NWY0LTM3Nzk0MzZmZjQ5ZD9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupJobs/57a4adc5-e05d-4055-bdbb-2435d8d93f60?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNDhiNjFhN2QvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y0OGI2MWE3ZC9iYWNrdXBKb2JzLzU3YTRhZGM1LWUwNWQtNDA1NS1iZGJiLTI0MzVkOGQ5M2Y2MD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "27052996-1125-4c2b-9cf9-c141b2a286b4" + "f11102df-348a-4d5e-9893-fccbafdd9d76" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -10041,11 +10186,11 @@ "nosniff" ], "x-ms-request-id": [ - "4ae9a567-199c-4204-abb7-dd9ba89fa25a" + "735f9546-f21d-46d4-93e5-3bed688e1da3" ], "x-ms-client-request-id": [ - "27052996-1125-4c2b-9cf9-c141b2a286b4", - "27052996-1125-4c2b-9cf9-c141b2a286b4" + "f11102df-348a-4d5e-9893-fccbafdd9d76", + "f11102df-348a-4d5e-9893-fccbafdd9d76" ], "X-Powered-By": [ "ASP.NET" @@ -10057,16 +10202,16 @@ "69" ], "x-ms-correlation-request-id": [ - "4ae9a567-199c-4204-abb7-dd9ba89fa25a" + "735f9546-f21d-46d4-93e5-3bed688e1da3" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T212701Z:4ae9a567-199c-4204-abb7-dd9ba89fa25a" + "WESTINDIA:20220516T184322Z:735f9546-f21d-46d4-93e5-3bed688e1da3" ], "Date": [ - "Wed, 23 Feb 2022 21:27:01 GMT" + "Mon, 16 May 2022 18:43:21 GMT" ], "Content-Length": [ - "969" + "970" ], "Content-Type": [ "application/json" @@ -10075,26 +10220,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupJobs/f4955f76-367d-49a2-95f4-3779436ff49d\",\r\n \"name\": \"f4955f76-367d-49a2-95f4-3779436ff49d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgbfbf59cf;pstestvmbfbf50\",\r\n \"duration\": \"PT45M0.3453306S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvmbfbf50\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvmbfbf50\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-23T20:42:01.041925Z\",\r\n \"activityId\": \"9c81380d-ab42-4e74-a6c7-c10d169b4611\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupJobs/57a4adc5-e05d-4055-bdbb-2435d8d93f60\",\r\n \"name\": \"57a4adc5-e05d-4055-bdbb-2435d8d93f60\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg48b61a7d;pstestvm48b610\",\r\n \"duration\": \"PT40M4.3679375S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm48b610\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm48b610\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T18:03:17.3965623Z\",\r\n \"activityId\": \"a5981808-f090-4049-96dc-24d09eecdaeb\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupJobs/f4955f76-367d-49a2-95f4-3779436ff49d?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZiZjU5Y2YvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmJmNTljZi9iYWNrdXBKb2JzL2Y0OTU1Zjc2LTM2N2QtNDlhMi05NWY0LTM3Nzk0MzZmZjQ5ZD9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupJobs/57a4adc5-e05d-4055-bdbb-2435d8d93f60?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNDhiNjFhN2QvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y0OGI2MWE3ZC9iYWNrdXBKb2JzLzU3YTRhZGM1LWUwNWQtNDA1NS1iZGJiLTI0MzVkOGQ5M2Y2MD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "27052996-1125-4c2b-9cf9-c141b2a286b4" + "f11102df-348a-4d5e-9893-fccbafdd9d76" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -10112,11 +10257,11 @@ "nosniff" ], "x-ms-request-id": [ - "52a22ca7-bb26-4bac-b0c1-94c0f99cd248" + "276c522a-4278-4360-8990-26a7f7b38c4a" ], "x-ms-client-request-id": [ - "27052996-1125-4c2b-9cf9-c141b2a286b4", - "27052996-1125-4c2b-9cf9-c141b2a286b4" + "f11102df-348a-4d5e-9893-fccbafdd9d76", + "f11102df-348a-4d5e-9893-fccbafdd9d76" ], "X-Powered-By": [ "ASP.NET" @@ -10128,16 +10273,16 @@ "68" ], "x-ms-correlation-request-id": [ - "52a22ca7-bb26-4bac-b0c1-94c0f99cd248" + "276c522a-4278-4360-8990-26a7f7b38c4a" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T212734Z:52a22ca7-bb26-4bac-b0c1-94c0f99cd248" + "WESTINDIA:20220516T184352Z:276c522a-4278-4360-8990-26a7f7b38c4a" ], "Date": [ - "Wed, 23 Feb 2022 21:27:34 GMT" + "Mon, 16 May 2022 18:43:52 GMT" ], "Content-Length": [ - "970" + "971" ], "Content-Type": [ "application/json" @@ -10146,26 +10291,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupJobs/f4955f76-367d-49a2-95f4-3779436ff49d\",\r\n \"name\": \"f4955f76-367d-49a2-95f4-3779436ff49d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgbfbf59cf;pstestvmbfbf50\",\r\n \"duration\": \"PT45M32.7014968S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvmbfbf50\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvmbfbf50\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-23T20:42:01.041925Z\",\r\n \"activityId\": \"9c81380d-ab42-4e74-a6c7-c10d169b4611\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupJobs/57a4adc5-e05d-4055-bdbb-2435d8d93f60\",\r\n \"name\": \"57a4adc5-e05d-4055-bdbb-2435d8d93f60\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg48b61a7d;pstestvm48b610\",\r\n \"duration\": \"PT40M35.0450709S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm48b610\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm48b610\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T18:03:17.3965623Z\",\r\n \"activityId\": \"a5981808-f090-4049-96dc-24d09eecdaeb\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupJobs/f4955f76-367d-49a2-95f4-3779436ff49d?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZiZjU5Y2YvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmJmNTljZi9iYWNrdXBKb2JzL2Y0OTU1Zjc2LTM2N2QtNDlhMi05NWY0LTM3Nzk0MzZmZjQ5ZD9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupJobs/57a4adc5-e05d-4055-bdbb-2435d8d93f60?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNDhiNjFhN2QvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y0OGI2MWE3ZC9iYWNrdXBKb2JzLzU3YTRhZGM1LWUwNWQtNDA1NS1iZGJiLTI0MzVkOGQ5M2Y2MD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "27052996-1125-4c2b-9cf9-c141b2a286b4" + "f11102df-348a-4d5e-9893-fccbafdd9d76" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -10183,11 +10328,11 @@ "nosniff" ], "x-ms-request-id": [ - "3a70cfa9-9f21-489f-9ea5-e872abc12fd8" + "83445e36-05c4-4e2d-ae0d-f11a7143fcdc" ], "x-ms-client-request-id": [ - "27052996-1125-4c2b-9cf9-c141b2a286b4", - "27052996-1125-4c2b-9cf9-c141b2a286b4" + "f11102df-348a-4d5e-9893-fccbafdd9d76", + "f11102df-348a-4d5e-9893-fccbafdd9d76" ], "X-Powered-By": [ "ASP.NET" @@ -10199,16 +10344,16 @@ "67" ], "x-ms-correlation-request-id": [ - "3a70cfa9-9f21-489f-9ea5-e872abc12fd8" + "83445e36-05c4-4e2d-ae0d-f11a7143fcdc" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T212806Z:3a70cfa9-9f21-489f-9ea5-e872abc12fd8" + "WESTINDIA:20220516T184423Z:83445e36-05c4-4e2d-ae0d-f11a7143fcdc" ], "Date": [ - "Wed, 23 Feb 2022 21:28:05 GMT" + "Mon, 16 May 2022 18:44:23 GMT" ], "Content-Length": [ - "969" + "970" ], "Content-Type": [ "application/json" @@ -10217,26 +10362,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupJobs/f4955f76-367d-49a2-95f4-3779436ff49d\",\r\n \"name\": \"f4955f76-367d-49a2-95f4-3779436ff49d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgbfbf59cf;pstestvmbfbf50\",\r\n \"duration\": \"PT46M3.8996578S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvmbfbf50\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvmbfbf50\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-23T20:42:01.041925Z\",\r\n \"activityId\": \"9c81380d-ab42-4e74-a6c7-c10d169b4611\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupJobs/57a4adc5-e05d-4055-bdbb-2435d8d93f60\",\r\n \"name\": \"57a4adc5-e05d-4055-bdbb-2435d8d93f60\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg48b61a7d;pstestvm48b610\",\r\n \"duration\": \"PT41M6.1328311S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm48b610\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm48b610\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T18:03:17.3965623Z\",\r\n \"activityId\": \"a5981808-f090-4049-96dc-24d09eecdaeb\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupJobs/f4955f76-367d-49a2-95f4-3779436ff49d?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZiZjU5Y2YvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmJmNTljZi9iYWNrdXBKb2JzL2Y0OTU1Zjc2LTM2N2QtNDlhMi05NWY0LTM3Nzk0MzZmZjQ5ZD9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupJobs/57a4adc5-e05d-4055-bdbb-2435d8d93f60?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNDhiNjFhN2QvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y0OGI2MWE3ZC9iYWNrdXBKb2JzLzU3YTRhZGM1LWUwNWQtNDA1NS1iZGJiLTI0MzVkOGQ5M2Y2MD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "27052996-1125-4c2b-9cf9-c141b2a286b4" + "f11102df-348a-4d5e-9893-fccbafdd9d76" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -10254,11 +10399,11 @@ "nosniff" ], "x-ms-request-id": [ - "482bd710-275d-4173-8a2f-59680ebd7697" + "998808c9-8e81-40c4-97e2-28d659eca624" ], "x-ms-client-request-id": [ - "27052996-1125-4c2b-9cf9-c141b2a286b4", - "27052996-1125-4c2b-9cf9-c141b2a286b4" + "f11102df-348a-4d5e-9893-fccbafdd9d76", + "f11102df-348a-4d5e-9893-fccbafdd9d76" ], "X-Powered-By": [ "ASP.NET" @@ -10270,16 +10415,16 @@ "66" ], "x-ms-correlation-request-id": [ - "482bd710-275d-4173-8a2f-59680ebd7697" + "998808c9-8e81-40c4-97e2-28d659eca624" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T212837Z:482bd710-275d-4173-8a2f-59680ebd7697" + "WESTINDIA:20220516T184455Z:998808c9-8e81-40c4-97e2-28d659eca624" ], "Date": [ - "Wed, 23 Feb 2022 21:28:36 GMT" + "Mon, 16 May 2022 18:44:55 GMT" ], "Content-Length": [ - "970" + "971" ], "Content-Type": [ "application/json" @@ -10288,26 +10433,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupJobs/f4955f76-367d-49a2-95f4-3779436ff49d\",\r\n \"name\": \"f4955f76-367d-49a2-95f4-3779436ff49d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgbfbf59cf;pstestvmbfbf50\",\r\n \"duration\": \"PT46M35.5020998S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvmbfbf50\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvmbfbf50\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-23T20:42:01.041925Z\",\r\n \"activityId\": \"9c81380d-ab42-4e74-a6c7-c10d169b4611\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupJobs/57a4adc5-e05d-4055-bdbb-2435d8d93f60\",\r\n \"name\": \"57a4adc5-e05d-4055-bdbb-2435d8d93f60\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg48b61a7d;pstestvm48b610\",\r\n \"duration\": \"PT41M37.8494283S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm48b610\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm48b610\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T18:03:17.3965623Z\",\r\n \"activityId\": \"a5981808-f090-4049-96dc-24d09eecdaeb\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupJobs/f4955f76-367d-49a2-95f4-3779436ff49d?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZiZjU5Y2YvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmJmNTljZi9iYWNrdXBKb2JzL2Y0OTU1Zjc2LTM2N2QtNDlhMi05NWY0LTM3Nzk0MzZmZjQ5ZD9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupJobs/57a4adc5-e05d-4055-bdbb-2435d8d93f60?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNDhiNjFhN2QvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y0OGI2MWE3ZC9iYWNrdXBKb2JzLzU3YTRhZGM1LWUwNWQtNDA1NS1iZGJiLTI0MzVkOGQ5M2Y2MD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "27052996-1125-4c2b-9cf9-c141b2a286b4" + "f11102df-348a-4d5e-9893-fccbafdd9d76" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -10325,11 +10470,11 @@ "nosniff" ], "x-ms-request-id": [ - "ba06673a-bf9f-439d-b2b6-cef6d6de592d" + "7dc295ad-42b0-45c3-a63b-e448509ee0e5" ], "x-ms-client-request-id": [ - "27052996-1125-4c2b-9cf9-c141b2a286b4", - "27052996-1125-4c2b-9cf9-c141b2a286b4" + "f11102df-348a-4d5e-9893-fccbafdd9d76", + "f11102df-348a-4d5e-9893-fccbafdd9d76" ], "X-Powered-By": [ "ASP.NET" @@ -10341,16 +10486,16 @@ "65" ], "x-ms-correlation-request-id": [ - "ba06673a-bf9f-439d-b2b6-cef6d6de592d" + "7dc295ad-42b0-45c3-a63b-e448509ee0e5" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T212908Z:ba06673a-bf9f-439d-b2b6-cef6d6de592d" + "WESTINDIA:20220516T184526Z:7dc295ad-42b0-45c3-a63b-e448509ee0e5" ], "Date": [ - "Wed, 23 Feb 2022 21:29:07 GMT" + "Mon, 16 May 2022 18:45:25 GMT" ], "Content-Length": [ - "968" + "970" ], "Content-Type": [ "application/json" @@ -10359,26 +10504,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupJobs/f4955f76-367d-49a2-95f4-3779436ff49d\",\r\n \"name\": \"f4955f76-367d-49a2-95f4-3779436ff49d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgbfbf59cf;pstestvmbfbf50\",\r\n \"duration\": \"PT47M6.352095S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvmbfbf50\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvmbfbf50\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-23T20:42:01.041925Z\",\r\n \"activityId\": \"9c81380d-ab42-4e74-a6c7-c10d169b4611\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupJobs/57a4adc5-e05d-4055-bdbb-2435d8d93f60\",\r\n \"name\": \"57a4adc5-e05d-4055-bdbb-2435d8d93f60\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg48b61a7d;pstestvm48b610\",\r\n \"duration\": \"PT42M8.6262864S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm48b610\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm48b610\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T18:03:17.3965623Z\",\r\n \"activityId\": \"a5981808-f090-4049-96dc-24d09eecdaeb\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupJobs/f4955f76-367d-49a2-95f4-3779436ff49d?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZiZjU5Y2YvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmJmNTljZi9iYWNrdXBKb2JzL2Y0OTU1Zjc2LTM2N2QtNDlhMi05NWY0LTM3Nzk0MzZmZjQ5ZD9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupJobs/57a4adc5-e05d-4055-bdbb-2435d8d93f60?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNDhiNjFhN2QvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y0OGI2MWE3ZC9iYWNrdXBKb2JzLzU3YTRhZGM1LWUwNWQtNDA1NS1iZGJiLTI0MzVkOGQ5M2Y2MD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "27052996-1125-4c2b-9cf9-c141b2a286b4" + "f11102df-348a-4d5e-9893-fccbafdd9d76" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -10396,11 +10541,11 @@ "nosniff" ], "x-ms-request-id": [ - "1ea0d6e7-4a25-4a17-b3dc-7caff32b81be" + "ae34ebf9-8ffe-4b92-a648-048cff7219eb" ], "x-ms-client-request-id": [ - "27052996-1125-4c2b-9cf9-c141b2a286b4", - "27052996-1125-4c2b-9cf9-c141b2a286b4" + "f11102df-348a-4d5e-9893-fccbafdd9d76", + "f11102df-348a-4d5e-9893-fccbafdd9d76" ], "X-Powered-By": [ "ASP.NET" @@ -10412,16 +10557,16 @@ "64" ], "x-ms-correlation-request-id": [ - "1ea0d6e7-4a25-4a17-b3dc-7caff32b81be" + "ae34ebf9-8ffe-4b92-a648-048cff7219eb" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T212938Z:1ea0d6e7-4a25-4a17-b3dc-7caff32b81be" + "WESTINDIA:20220516T184557Z:ae34ebf9-8ffe-4b92-a648-048cff7219eb" ], "Date": [ - "Wed, 23 Feb 2022 21:29:38 GMT" + "Mon, 16 May 2022 18:45:57 GMT" ], "Content-Length": [ - "970" + "971" ], "Content-Type": [ "application/json" @@ -10430,26 +10575,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupJobs/f4955f76-367d-49a2-95f4-3779436ff49d\",\r\n \"name\": \"f4955f76-367d-49a2-95f4-3779436ff49d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgbfbf59cf;pstestvmbfbf50\",\r\n \"duration\": \"PT47M37.4420813S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvmbfbf50\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvmbfbf50\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-23T20:42:01.041925Z\",\r\n \"activityId\": \"9c81380d-ab42-4e74-a6c7-c10d169b4611\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupJobs/57a4adc5-e05d-4055-bdbb-2435d8d93f60\",\r\n \"name\": \"57a4adc5-e05d-4055-bdbb-2435d8d93f60\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg48b61a7d;pstestvm48b610\",\r\n \"duration\": \"PT42M39.9019406S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm48b610\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm48b610\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T18:03:17.3965623Z\",\r\n \"activityId\": \"a5981808-f090-4049-96dc-24d09eecdaeb\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupJobs/f4955f76-367d-49a2-95f4-3779436ff49d?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZiZjU5Y2YvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmJmNTljZi9iYWNrdXBKb2JzL2Y0OTU1Zjc2LTM2N2QtNDlhMi05NWY0LTM3Nzk0MzZmZjQ5ZD9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupJobs/57a4adc5-e05d-4055-bdbb-2435d8d93f60?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNDhiNjFhN2QvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y0OGI2MWE3ZC9iYWNrdXBKb2JzLzU3YTRhZGM1LWUwNWQtNDA1NS1iZGJiLTI0MzVkOGQ5M2Y2MD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "27052996-1125-4c2b-9cf9-c141b2a286b4" + "f11102df-348a-4d5e-9893-fccbafdd9d76" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -10467,11 +10612,11 @@ "nosniff" ], "x-ms-request-id": [ - "a27d1de3-16fc-49e8-8b2b-f98da06f09a6" + "80ba2e63-fb7f-4a1a-b7b9-0b5113b6aa1a" ], "x-ms-client-request-id": [ - "27052996-1125-4c2b-9cf9-c141b2a286b4", - "27052996-1125-4c2b-9cf9-c141b2a286b4" + "f11102df-348a-4d5e-9893-fccbafdd9d76", + "f11102df-348a-4d5e-9893-fccbafdd9d76" ], "X-Powered-By": [ "ASP.NET" @@ -10483,16 +10628,16 @@ "63" ], "x-ms-correlation-request-id": [ - "a27d1de3-16fc-49e8-8b2b-f98da06f09a6" + "80ba2e63-fb7f-4a1a-b7b9-0b5113b6aa1a" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T213009Z:a27d1de3-16fc-49e8-8b2b-f98da06f09a6" + "WESTINDIA:20220516T184631Z:80ba2e63-fb7f-4a1a-b7b9-0b5113b6aa1a" ], "Date": [ - "Wed, 23 Feb 2022 21:30:09 GMT" + "Mon, 16 May 2022 18:46:30 GMT" ], "Content-Length": [ - "968" + "971" ], "Content-Type": [ "application/json" @@ -10501,26 +10646,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupJobs/f4955f76-367d-49a2-95f4-3779436ff49d\",\r\n \"name\": \"f4955f76-367d-49a2-95f4-3779436ff49d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgbfbf59cf;pstestvmbfbf50\",\r\n \"duration\": \"PT48M8.211457S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvmbfbf50\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvmbfbf50\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-23T20:42:01.041925Z\",\r\n \"activityId\": \"9c81380d-ab42-4e74-a6c7-c10d169b4611\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupJobs/57a4adc5-e05d-4055-bdbb-2435d8d93f60\",\r\n \"name\": \"57a4adc5-e05d-4055-bdbb-2435d8d93f60\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg48b61a7d;pstestvm48b610\",\r\n \"duration\": \"PT43M11.8602589S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm48b610\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm48b610\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T18:03:17.3965623Z\",\r\n \"activityId\": \"a5981808-f090-4049-96dc-24d09eecdaeb\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupJobs/f4955f76-367d-49a2-95f4-3779436ff49d?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZiZjU5Y2YvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmJmNTljZi9iYWNrdXBKb2JzL2Y0OTU1Zjc2LTM2N2QtNDlhMi05NWY0LTM3Nzk0MzZmZjQ5ZD9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupJobs/57a4adc5-e05d-4055-bdbb-2435d8d93f60?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNDhiNjFhN2QvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y0OGI2MWE3ZC9iYWNrdXBKb2JzLzU3YTRhZGM1LWUwNWQtNDA1NS1iZGJiLTI0MzVkOGQ5M2Y2MD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "27052996-1125-4c2b-9cf9-c141b2a286b4" + "f11102df-348a-4d5e-9893-fccbafdd9d76" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -10538,11 +10683,11 @@ "nosniff" ], "x-ms-request-id": [ - "68c8cc68-0d86-4588-af10-c5e4ea2ac247" + "24e80767-4e23-46ab-a2ee-d8f050d2bbf6" ], "x-ms-client-request-id": [ - "27052996-1125-4c2b-9cf9-c141b2a286b4", - "27052996-1125-4c2b-9cf9-c141b2a286b4" + "f11102df-348a-4d5e-9893-fccbafdd9d76", + "f11102df-348a-4d5e-9893-fccbafdd9d76" ], "X-Powered-By": [ "ASP.NET" @@ -10554,13 +10699,13 @@ "62" ], "x-ms-correlation-request-id": [ - "68c8cc68-0d86-4588-af10-c5e4ea2ac247" + "24e80767-4e23-46ab-a2ee-d8f050d2bbf6" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T213100Z:68c8cc68-0d86-4588-af10-c5e4ea2ac247" + "WESTINDIA:20220516T184702Z:24e80767-4e23-46ab-a2ee-d8f050d2bbf6" ], "Date": [ - "Wed, 23 Feb 2022 21:31:00 GMT" + "Mon, 16 May 2022 18:47:01 GMT" ], "Content-Length": [ "970" @@ -10572,26 +10717,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupJobs/f4955f76-367d-49a2-95f4-3779436ff49d\",\r\n \"name\": \"f4955f76-367d-49a2-95f4-3779436ff49d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgbfbf59cf;pstestvmbfbf50\",\r\n \"duration\": \"PT48M59.3134314S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvmbfbf50\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvmbfbf50\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-23T20:42:01.041925Z\",\r\n \"activityId\": \"9c81380d-ab42-4e74-a6c7-c10d169b4611\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupJobs/57a4adc5-e05d-4055-bdbb-2435d8d93f60\",\r\n \"name\": \"57a4adc5-e05d-4055-bdbb-2435d8d93f60\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg48b61a7d;pstestvm48b610\",\r\n \"duration\": \"PT43M44.273013S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm48b610\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm48b610\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T18:03:17.3965623Z\",\r\n \"activityId\": \"a5981808-f090-4049-96dc-24d09eecdaeb\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupJobs/f4955f76-367d-49a2-95f4-3779436ff49d?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZiZjU5Y2YvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmJmNTljZi9iYWNrdXBKb2JzL2Y0OTU1Zjc2LTM2N2QtNDlhMi05NWY0LTM3Nzk0MzZmZjQ5ZD9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupJobs/57a4adc5-e05d-4055-bdbb-2435d8d93f60?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNDhiNjFhN2QvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y0OGI2MWE3ZC9iYWNrdXBKb2JzLzU3YTRhZGM1LWUwNWQtNDA1NS1iZGJiLTI0MzVkOGQ5M2Y2MD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "27052996-1125-4c2b-9cf9-c141b2a286b4" + "f11102df-348a-4d5e-9893-fccbafdd9d76" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -10609,11 +10754,11 @@ "nosniff" ], "x-ms-request-id": [ - "2cf84d04-7e71-42a0-894e-40302bfe09a4" + "2e23c829-a8d7-409b-8b09-e75d4fdc313a" ], "x-ms-client-request-id": [ - "27052996-1125-4c2b-9cf9-c141b2a286b4", - "27052996-1125-4c2b-9cf9-c141b2a286b4" + "f11102df-348a-4d5e-9893-fccbafdd9d76", + "f11102df-348a-4d5e-9893-fccbafdd9d76" ], "X-Powered-By": [ "ASP.NET" @@ -10625,16 +10770,16 @@ "61" ], "x-ms-correlation-request-id": [ - "2cf84d04-7e71-42a0-894e-40302bfe09a4" + "2e23c829-a8d7-409b-8b09-e75d4fdc313a" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T213131Z:2cf84d04-7e71-42a0-894e-40302bfe09a4" + "WESTINDIA:20220516T184733Z:2e23c829-a8d7-409b-8b09-e75d4fdc313a" ], "Date": [ - "Wed, 23 Feb 2022 21:31:31 GMT" + "Mon, 16 May 2022 18:47:33 GMT" ], "Content-Length": [ - "970" + "971" ], "Content-Type": [ "application/json" @@ -10643,26 +10788,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupJobs/f4955f76-367d-49a2-95f4-3779436ff49d\",\r\n \"name\": \"f4955f76-367d-49a2-95f4-3779436ff49d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgbfbf59cf;pstestvmbfbf50\",\r\n \"duration\": \"PT49M30.2770623S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvmbfbf50\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvmbfbf50\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-23T20:42:01.041925Z\",\r\n \"activityId\": \"9c81380d-ab42-4e74-a6c7-c10d169b4611\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupJobs/57a4adc5-e05d-4055-bdbb-2435d8d93f60\",\r\n \"name\": \"57a4adc5-e05d-4055-bdbb-2435d8d93f60\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg48b61a7d;pstestvm48b610\",\r\n \"duration\": \"PT44M15.7986978S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm48b610\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm48b610\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T18:03:17.3965623Z\",\r\n \"activityId\": \"a5981808-f090-4049-96dc-24d09eecdaeb\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupJobs/f4955f76-367d-49a2-95f4-3779436ff49d?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZiZjU5Y2YvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmJmNTljZi9iYWNrdXBKb2JzL2Y0OTU1Zjc2LTM2N2QtNDlhMi05NWY0LTM3Nzk0MzZmZjQ5ZD9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupJobs/57a4adc5-e05d-4055-bdbb-2435d8d93f60?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNDhiNjFhN2QvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y0OGI2MWE3ZC9iYWNrdXBKb2JzLzU3YTRhZGM1LWUwNWQtNDA1NS1iZGJiLTI0MzVkOGQ5M2Y2MD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "27052996-1125-4c2b-9cf9-c141b2a286b4" + "f11102df-348a-4d5e-9893-fccbafdd9d76" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -10680,11 +10825,11 @@ "nosniff" ], "x-ms-request-id": [ - "3cdf254f-628a-4791-9604-c3e3874a3d05" + "ce0e4f56-ce77-4830-8885-16e2b6e438fb" ], "x-ms-client-request-id": [ - "27052996-1125-4c2b-9cf9-c141b2a286b4", - "27052996-1125-4c2b-9cf9-c141b2a286b4" + "f11102df-348a-4d5e-9893-fccbafdd9d76", + "f11102df-348a-4d5e-9893-fccbafdd9d76" ], "X-Powered-By": [ "ASP.NET" @@ -10696,16 +10841,16 @@ "60" ], "x-ms-correlation-request-id": [ - "3cdf254f-628a-4791-9604-c3e3874a3d05" + "ce0e4f56-ce77-4830-8885-16e2b6e438fb" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T213206Z:3cdf254f-628a-4791-9604-c3e3874a3d05" + "WESTINDIA:20220516T184809Z:ce0e4f56-ce77-4830-8885-16e2b6e438fb" ], "Date": [ - "Wed, 23 Feb 2022 21:32:05 GMT" + "Mon, 16 May 2022 18:48:08 GMT" ], "Content-Length": [ - "969" + "971" ], "Content-Type": [ "application/json" @@ -10714,26 +10859,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupJobs/f4955f76-367d-49a2-95f4-3779436ff49d\",\r\n \"name\": \"f4955f76-367d-49a2-95f4-3779436ff49d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgbfbf59cf;pstestvmbfbf50\",\r\n \"duration\": \"PT50M3.6452366S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvmbfbf50\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvmbfbf50\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-23T20:42:01.041925Z\",\r\n \"activityId\": \"9c81380d-ab42-4e74-a6c7-c10d169b4611\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupJobs/57a4adc5-e05d-4055-bdbb-2435d8d93f60\",\r\n \"name\": \"57a4adc5-e05d-4055-bdbb-2435d8d93f60\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg48b61a7d;pstestvm48b610\",\r\n \"duration\": \"PT44M50.5608606S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm48b610\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm48b610\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T18:03:17.3965623Z\",\r\n \"activityId\": \"a5981808-f090-4049-96dc-24d09eecdaeb\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupJobs/f4955f76-367d-49a2-95f4-3779436ff49d?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZiZjU5Y2YvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmJmNTljZi9iYWNrdXBKb2JzL2Y0OTU1Zjc2LTM2N2QtNDlhMi05NWY0LTM3Nzk0MzZmZjQ5ZD9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupJobs/57a4adc5-e05d-4055-bdbb-2435d8d93f60?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNDhiNjFhN2QvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y0OGI2MWE3ZC9iYWNrdXBKb2JzLzU3YTRhZGM1LWUwNWQtNDA1NS1iZGJiLTI0MzVkOGQ5M2Y2MD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "27052996-1125-4c2b-9cf9-c141b2a286b4" + "f11102df-348a-4d5e-9893-fccbafdd9d76" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -10751,11 +10896,11 @@ "nosniff" ], "x-ms-request-id": [ - "1a7254f5-44f1-4c08-b0df-48ef520c3181" + "b12364e6-8a6f-40ad-97d4-fbe81dc6da49" ], "x-ms-client-request-id": [ - "27052996-1125-4c2b-9cf9-c141b2a286b4", - "27052996-1125-4c2b-9cf9-c141b2a286b4" + "f11102df-348a-4d5e-9893-fccbafdd9d76", + "f11102df-348a-4d5e-9893-fccbafdd9d76" ], "X-Powered-By": [ "ASP.NET" @@ -10767,16 +10912,16 @@ "59" ], "x-ms-correlation-request-id": [ - "1a7254f5-44f1-4c08-b0df-48ef520c3181" + "b12364e6-8a6f-40ad-97d4-fbe81dc6da49" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T213237Z:1a7254f5-44f1-4c08-b0df-48ef520c3181" + "WESTINDIA:20220516T184839Z:b12364e6-8a6f-40ad-97d4-fbe81dc6da49" ], "Date": [ - "Wed, 23 Feb 2022 21:32:37 GMT" + "Mon, 16 May 2022 18:48:39 GMT" ], "Content-Length": [ - "970" + "971" ], "Content-Type": [ "application/json" @@ -10785,26 +10930,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupJobs/f4955f76-367d-49a2-95f4-3779436ff49d\",\r\n \"name\": \"f4955f76-367d-49a2-95f4-3779436ff49d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgbfbf59cf;pstestvmbfbf50\",\r\n \"duration\": \"PT50M36.4289754S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvmbfbf50\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvmbfbf50\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-23T20:42:01.041925Z\",\r\n \"activityId\": \"9c81380d-ab42-4e74-a6c7-c10d169b4611\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupJobs/57a4adc5-e05d-4055-bdbb-2435d8d93f60\",\r\n \"name\": \"57a4adc5-e05d-4055-bdbb-2435d8d93f60\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg48b61a7d;pstestvm48b610\",\r\n \"duration\": \"PT45M22.0857505S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm48b610\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm48b610\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T18:03:17.3965623Z\",\r\n \"activityId\": \"a5981808-f090-4049-96dc-24d09eecdaeb\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupJobs/f4955f76-367d-49a2-95f4-3779436ff49d?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZiZjU5Y2YvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmJmNTljZi9iYWNrdXBKb2JzL2Y0OTU1Zjc2LTM2N2QtNDlhMi05NWY0LTM3Nzk0MzZmZjQ5ZD9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupJobs/57a4adc5-e05d-4055-bdbb-2435d8d93f60?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNDhiNjFhN2QvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y0OGI2MWE3ZC9iYWNrdXBKb2JzLzU3YTRhZGM1LWUwNWQtNDA1NS1iZGJiLTI0MzVkOGQ5M2Y2MD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "27052996-1125-4c2b-9cf9-c141b2a286b4" + "f11102df-348a-4d5e-9893-fccbafdd9d76" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -10822,11 +10967,11 @@ "nosniff" ], "x-ms-request-id": [ - "a44a36de-1749-4cfb-94c4-f7214bf8349c" + "aaa4cc28-2b67-4c10-a2b3-c30e98a6e8cf" ], "x-ms-client-request-id": [ - "27052996-1125-4c2b-9cf9-c141b2a286b4", - "27052996-1125-4c2b-9cf9-c141b2a286b4" + "f11102df-348a-4d5e-9893-fccbafdd9d76", + "f11102df-348a-4d5e-9893-fccbafdd9d76" ], "X-Powered-By": [ "ASP.NET" @@ -10838,16 +10983,16 @@ "58" ], "x-ms-correlation-request-id": [ - "a44a36de-1749-4cfb-94c4-f7214bf8349c" + "aaa4cc28-2b67-4c10-a2b3-c30e98a6e8cf" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T213308Z:a44a36de-1749-4cfb-94c4-f7214bf8349c" + "WESTINDIA:20220516T184910Z:aaa4cc28-2b67-4c10-a2b3-c30e98a6e8cf" ], "Date": [ - "Wed, 23 Feb 2022 21:33:08 GMT" + "Mon, 16 May 2022 18:49:09 GMT" ], "Content-Length": [ - "969" + "971" ], "Content-Type": [ "application/json" @@ -10856,26 +11001,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupJobs/f4955f76-367d-49a2-95f4-3779436ff49d\",\r\n \"name\": \"f4955f76-367d-49a2-95f4-3779436ff49d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgbfbf59cf;pstestvmbfbf50\",\r\n \"duration\": \"PT51M7.2262997S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvmbfbf50\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvmbfbf50\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-23T20:42:01.041925Z\",\r\n \"activityId\": \"9c81380d-ab42-4e74-a6c7-c10d169b4611\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupJobs/57a4adc5-e05d-4055-bdbb-2435d8d93f60\",\r\n \"name\": \"57a4adc5-e05d-4055-bdbb-2435d8d93f60\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg48b61a7d;pstestvm48b610\",\r\n \"duration\": \"PT45M52.7760598S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm48b610\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm48b610\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T18:03:17.3965623Z\",\r\n \"activityId\": \"a5981808-f090-4049-96dc-24d09eecdaeb\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupJobs/f4955f76-367d-49a2-95f4-3779436ff49d?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZiZjU5Y2YvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmJmNTljZi9iYWNrdXBKb2JzL2Y0OTU1Zjc2LTM2N2QtNDlhMi05NWY0LTM3Nzk0MzZmZjQ5ZD9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupJobs/57a4adc5-e05d-4055-bdbb-2435d8d93f60?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNDhiNjFhN2QvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y0OGI2MWE3ZC9iYWNrdXBKb2JzLzU3YTRhZGM1LWUwNWQtNDA1NS1iZGJiLTI0MzVkOGQ5M2Y2MD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "27052996-1125-4c2b-9cf9-c141b2a286b4" + "f11102df-348a-4d5e-9893-fccbafdd9d76" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -10893,11 +11038,11 @@ "nosniff" ], "x-ms-request-id": [ - "c223b22f-e8cf-48cd-8e12-e35d27fefd76" + "f980eba0-f876-47d0-ac3e-275499252ea5" ], "x-ms-client-request-id": [ - "27052996-1125-4c2b-9cf9-c141b2a286b4", - "27052996-1125-4c2b-9cf9-c141b2a286b4" + "f11102df-348a-4d5e-9893-fccbafdd9d76", + "f11102df-348a-4d5e-9893-fccbafdd9d76" ], "X-Powered-By": [ "ASP.NET" @@ -10909,16 +11054,16 @@ "57" ], "x-ms-correlation-request-id": [ - "c223b22f-e8cf-48cd-8e12-e35d27fefd76" + "f980eba0-f876-47d0-ac3e-275499252ea5" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T213339Z:c223b22f-e8cf-48cd-8e12-e35d27fefd76" + "WESTINDIA:20220516T184941Z:f980eba0-f876-47d0-ac3e-275499252ea5" ], "Date": [ - "Wed, 23 Feb 2022 21:33:38 GMT" + "Mon, 16 May 2022 18:49:40 GMT" ], "Content-Length": [ - "969" + "971" ], "Content-Type": [ "application/json" @@ -10927,26 +11072,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupJobs/f4955f76-367d-49a2-95f4-3779436ff49d\",\r\n \"name\": \"f4955f76-367d-49a2-95f4-3779436ff49d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgbfbf59cf;pstestvmbfbf50\",\r\n \"duration\": \"PT51M37.989774S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvmbfbf50\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvmbfbf50\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-23T20:42:01.041925Z\",\r\n \"activityId\": \"9c81380d-ab42-4e74-a6c7-c10d169b4611\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupJobs/57a4adc5-e05d-4055-bdbb-2435d8d93f60\",\r\n \"name\": \"57a4adc5-e05d-4055-bdbb-2435d8d93f60\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg48b61a7d;pstestvm48b610\",\r\n \"duration\": \"PT46M23.4152163S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm48b610\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm48b610\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T18:03:17.3965623Z\",\r\n \"activityId\": \"a5981808-f090-4049-96dc-24d09eecdaeb\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupJobs/f4955f76-367d-49a2-95f4-3779436ff49d?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZiZjU5Y2YvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmJmNTljZi9iYWNrdXBKb2JzL2Y0OTU1Zjc2LTM2N2QtNDlhMi05NWY0LTM3Nzk0MzZmZjQ5ZD9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupJobs/57a4adc5-e05d-4055-bdbb-2435d8d93f60?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNDhiNjFhN2QvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y0OGI2MWE3ZC9iYWNrdXBKb2JzLzU3YTRhZGM1LWUwNWQtNDA1NS1iZGJiLTI0MzVkOGQ5M2Y2MD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "27052996-1125-4c2b-9cf9-c141b2a286b4" + "f11102df-348a-4d5e-9893-fccbafdd9d76" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -10964,11 +11109,11 @@ "nosniff" ], "x-ms-request-id": [ - "15f35986-3332-4a3c-9b2d-c2eca0294ae7" + "fce394ee-73ad-4c84-b044-6fe4cb688fdd" ], "x-ms-client-request-id": [ - "27052996-1125-4c2b-9cf9-c141b2a286b4", - "27052996-1125-4c2b-9cf9-c141b2a286b4" + "f11102df-348a-4d5e-9893-fccbafdd9d76", + "f11102df-348a-4d5e-9893-fccbafdd9d76" ], "X-Powered-By": [ "ASP.NET" @@ -10980,16 +11125,16 @@ "56" ], "x-ms-correlation-request-id": [ - "15f35986-3332-4a3c-9b2d-c2eca0294ae7" + "fce394ee-73ad-4c84-b044-6fe4cb688fdd" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T213410Z:15f35986-3332-4a3c-9b2d-c2eca0294ae7" + "WESTINDIA:20220516T185011Z:fce394ee-73ad-4c84-b044-6fe4cb688fdd" ], "Date": [ - "Wed, 23 Feb 2022 21:34:10 GMT" + "Mon, 16 May 2022 18:50:11 GMT" ], "Content-Length": [ - "969" + "971" ], "Content-Type": [ "application/json" @@ -10998,26 +11143,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupJobs/f4955f76-367d-49a2-95f4-3779436ff49d\",\r\n \"name\": \"f4955f76-367d-49a2-95f4-3779436ff49d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgbfbf59cf;pstestvmbfbf50\",\r\n \"duration\": \"PT52M9.1716376S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvmbfbf50\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvmbfbf50\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-23T20:42:01.041925Z\",\r\n \"activityId\": \"9c81380d-ab42-4e74-a6c7-c10d169b4611\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupJobs/57a4adc5-e05d-4055-bdbb-2435d8d93f60\",\r\n \"name\": \"57a4adc5-e05d-4055-bdbb-2435d8d93f60\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg48b61a7d;pstestvm48b610\",\r\n \"duration\": \"PT46M54.1579368S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm48b610\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm48b610\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T18:03:17.3965623Z\",\r\n \"activityId\": \"a5981808-f090-4049-96dc-24d09eecdaeb\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupJobs/f4955f76-367d-49a2-95f4-3779436ff49d?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZiZjU5Y2YvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmJmNTljZi9iYWNrdXBKb2JzL2Y0OTU1Zjc2LTM2N2QtNDlhMi05NWY0LTM3Nzk0MzZmZjQ5ZD9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupJobs/57a4adc5-e05d-4055-bdbb-2435d8d93f60?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNDhiNjFhN2QvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y0OGI2MWE3ZC9iYWNrdXBKb2JzLzU3YTRhZGM1LWUwNWQtNDA1NS1iZGJiLTI0MzVkOGQ5M2Y2MD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "27052996-1125-4c2b-9cf9-c141b2a286b4" + "f11102df-348a-4d5e-9893-fccbafdd9d76" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -11035,11 +11180,11 @@ "nosniff" ], "x-ms-request-id": [ - "adbc682c-5055-4a27-8cac-1f0d8b3a571a" + "948da594-d21a-4cf9-86af-ecc2c82c1040" ], "x-ms-client-request-id": [ - "27052996-1125-4c2b-9cf9-c141b2a286b4", - "27052996-1125-4c2b-9cf9-c141b2a286b4" + "f11102df-348a-4d5e-9893-fccbafdd9d76", + "f11102df-348a-4d5e-9893-fccbafdd9d76" ], "X-Powered-By": [ "ASP.NET" @@ -11051,16 +11196,16 @@ "55" ], "x-ms-correlation-request-id": [ - "adbc682c-5055-4a27-8cac-1f0d8b3a571a" + "948da594-d21a-4cf9-86af-ecc2c82c1040" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T213441Z:adbc682c-5055-4a27-8cac-1f0d8b3a571a" + "WESTINDIA:20220516T185042Z:948da594-d21a-4cf9-86af-ecc2c82c1040" ], "Date": [ - "Wed, 23 Feb 2022 21:34:41 GMT" + "Mon, 16 May 2022 18:50:41 GMT" ], "Content-Length": [ - "970" + "971" ], "Content-Type": [ "application/json" @@ -11069,26 +11214,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupJobs/f4955f76-367d-49a2-95f4-3779436ff49d\",\r\n \"name\": \"f4955f76-367d-49a2-95f4-3779436ff49d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgbfbf59cf;pstestvmbfbf50\",\r\n \"duration\": \"PT52M40.1200181S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvmbfbf50\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvmbfbf50\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-23T20:42:01.041925Z\",\r\n \"activityId\": \"9c81380d-ab42-4e74-a6c7-c10d169b4611\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupJobs/57a4adc5-e05d-4055-bdbb-2435d8d93f60\",\r\n \"name\": \"57a4adc5-e05d-4055-bdbb-2435d8d93f60\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg48b61a7d;pstestvm48b610\",\r\n \"duration\": \"PT47M24.7403192S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm48b610\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm48b610\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T18:03:17.3965623Z\",\r\n \"activityId\": \"a5981808-f090-4049-96dc-24d09eecdaeb\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupJobs/f4955f76-367d-49a2-95f4-3779436ff49d?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZiZjU5Y2YvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmJmNTljZi9iYWNrdXBKb2JzL2Y0OTU1Zjc2LTM2N2QtNDlhMi05NWY0LTM3Nzk0MzZmZjQ5ZD9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupJobs/57a4adc5-e05d-4055-bdbb-2435d8d93f60?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNDhiNjFhN2QvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y0OGI2MWE3ZC9iYWNrdXBKb2JzLzU3YTRhZGM1LWUwNWQtNDA1NS1iZGJiLTI0MzVkOGQ5M2Y2MD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "27052996-1125-4c2b-9cf9-c141b2a286b4" + "f11102df-348a-4d5e-9893-fccbafdd9d76" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -11106,11 +11251,11 @@ "nosniff" ], "x-ms-request-id": [ - "3d265fa5-e98e-4ab4-987e-0ba3c38fdc8c" + "6cdf56f1-b952-4d9c-8088-91099b6029a8" ], "x-ms-client-request-id": [ - "27052996-1125-4c2b-9cf9-c141b2a286b4", - "27052996-1125-4c2b-9cf9-c141b2a286b4" + "f11102df-348a-4d5e-9893-fccbafdd9d76", + "f11102df-348a-4d5e-9893-fccbafdd9d76" ], "X-Powered-By": [ "ASP.NET" @@ -11122,16 +11267,16 @@ "54" ], "x-ms-correlation-request-id": [ - "3d265fa5-e98e-4ab4-987e-0ba3c38fdc8c" + "6cdf56f1-b952-4d9c-8088-91099b6029a8" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T213513Z:3d265fa5-e98e-4ab4-987e-0ba3c38fdc8c" + "WESTINDIA:20220516T185113Z:6cdf56f1-b952-4d9c-8088-91099b6029a8" ], "Date": [ - "Wed, 23 Feb 2022 21:35:13 GMT" + "Mon, 16 May 2022 18:51:12 GMT" ], "Content-Length": [ - "970" + "971" ], "Content-Type": [ "application/json" @@ -11140,26 +11285,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupJobs/f4955f76-367d-49a2-95f4-3779436ff49d\",\r\n \"name\": \"f4955f76-367d-49a2-95f4-3779436ff49d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgbfbf59cf;pstestvmbfbf50\",\r\n \"duration\": \"PT53M12.2187926S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvmbfbf50\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvmbfbf50\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-23T20:42:01.041925Z\",\r\n \"activityId\": \"9c81380d-ab42-4e74-a6c7-c10d169b4611\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupJobs/57a4adc5-e05d-4055-bdbb-2435d8d93f60\",\r\n \"name\": \"57a4adc5-e05d-4055-bdbb-2435d8d93f60\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg48b61a7d;pstestvm48b610\",\r\n \"duration\": \"PT47M55.3877992S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm48b610\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm48b610\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T18:03:17.3965623Z\",\r\n \"activityId\": \"a5981808-f090-4049-96dc-24d09eecdaeb\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupJobs/f4955f76-367d-49a2-95f4-3779436ff49d?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZiZjU5Y2YvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmJmNTljZi9iYWNrdXBKb2JzL2Y0OTU1Zjc2LTM2N2QtNDlhMi05NWY0LTM3Nzk0MzZmZjQ5ZD9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupJobs/57a4adc5-e05d-4055-bdbb-2435d8d93f60?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNDhiNjFhN2QvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y0OGI2MWE3ZC9iYWNrdXBKb2JzLzU3YTRhZGM1LWUwNWQtNDA1NS1iZGJiLTI0MzVkOGQ5M2Y2MD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "27052996-1125-4c2b-9cf9-c141b2a286b4" + "f11102df-348a-4d5e-9893-fccbafdd9d76" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -11177,11 +11322,11 @@ "nosniff" ], "x-ms-request-id": [ - "a7c4a54e-7d02-4a20-aea7-0bd4a560e4eb" + "6418052d-017f-44db-8b3b-ef71c2a22084" ], "x-ms-client-request-id": [ - "27052996-1125-4c2b-9cf9-c141b2a286b4", - "27052996-1125-4c2b-9cf9-c141b2a286b4" + "f11102df-348a-4d5e-9893-fccbafdd9d76", + "f11102df-348a-4d5e-9893-fccbafdd9d76" ], "X-Powered-By": [ "ASP.NET" @@ -11193,16 +11338,16 @@ "53" ], "x-ms-correlation-request-id": [ - "a7c4a54e-7d02-4a20-aea7-0bd4a560e4eb" + "6418052d-017f-44db-8b3b-ef71c2a22084" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T213603Z:a7c4a54e-7d02-4a20-aea7-0bd4a560e4eb" + "WESTINDIA:20220516T185154Z:6418052d-017f-44db-8b3b-ef71c2a22084" ], "Date": [ - "Wed, 23 Feb 2022 21:36:02 GMT" + "Mon, 16 May 2022 18:51:54 GMT" ], "Content-Length": [ - "970" + "971" ], "Content-Type": [ "application/json" @@ -11211,26 +11356,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupJobs/f4955f76-367d-49a2-95f4-3779436ff49d\",\r\n \"name\": \"f4955f76-367d-49a2-95f4-3779436ff49d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgbfbf59cf;pstestvmbfbf50\",\r\n \"duration\": \"PT53M59.1290102S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvmbfbf50\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvmbfbf50\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-23T20:42:01.041925Z\",\r\n \"activityId\": \"9c81380d-ab42-4e74-a6c7-c10d169b4611\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupJobs/57a4adc5-e05d-4055-bdbb-2435d8d93f60\",\r\n \"name\": \"57a4adc5-e05d-4055-bdbb-2435d8d93f60\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg48b61a7d;pstestvm48b610\",\r\n \"duration\": \"PT48M36.0712336S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm48b610\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm48b610\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T18:03:17.3965623Z\",\r\n \"activityId\": \"a5981808-f090-4049-96dc-24d09eecdaeb\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupJobs/f4955f76-367d-49a2-95f4-3779436ff49d?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZiZjU5Y2YvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmJmNTljZi9iYWNrdXBKb2JzL2Y0OTU1Zjc2LTM2N2QtNDlhMi05NWY0LTM3Nzk0MzZmZjQ5ZD9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupJobs/57a4adc5-e05d-4055-bdbb-2435d8d93f60?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNDhiNjFhN2QvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y0OGI2MWE3ZC9iYWNrdXBKb2JzLzU3YTRhZGM1LWUwNWQtNDA1NS1iZGJiLTI0MzVkOGQ5M2Y2MD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "27052996-1125-4c2b-9cf9-c141b2a286b4" + "f11102df-348a-4d5e-9893-fccbafdd9d76" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -11248,11 +11393,11 @@ "nosniff" ], "x-ms-request-id": [ - "ffe75a25-4771-4169-a6a5-755370dec93a" + "918911a9-8dd1-434f-ba0b-a591db4968e8" ], "x-ms-client-request-id": [ - "27052996-1125-4c2b-9cf9-c141b2a286b4", - "27052996-1125-4c2b-9cf9-c141b2a286b4" + "f11102df-348a-4d5e-9893-fccbafdd9d76", + "f11102df-348a-4d5e-9893-fccbafdd9d76" ], "X-Powered-By": [ "ASP.NET" @@ -11264,13 +11409,13 @@ "52" ], "x-ms-correlation-request-id": [ - "ffe75a25-4771-4169-a6a5-755370dec93a" + "918911a9-8dd1-434f-ba0b-a591db4968e8" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T213633Z:ffe75a25-4771-4169-a6a5-755370dec93a" + "WESTINDIA:20220516T185225Z:918911a9-8dd1-434f-ba0b-a591db4968e8" ], "Date": [ - "Wed, 23 Feb 2022 21:36:33 GMT" + "Mon, 16 May 2022 18:52:24 GMT" ], "Content-Length": [ "970" @@ -11282,26 +11427,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupJobs/f4955f76-367d-49a2-95f4-3779436ff49d\",\r\n \"name\": \"f4955f76-367d-49a2-95f4-3779436ff49d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgbfbf59cf;pstestvmbfbf50\",\r\n \"duration\": \"PT54M32.3975445S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvmbfbf50\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvmbfbf50\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-23T20:42:01.041925Z\",\r\n \"activityId\": \"9c81380d-ab42-4e74-a6c7-c10d169b4611\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupJobs/57a4adc5-e05d-4055-bdbb-2435d8d93f60\",\r\n \"name\": \"57a4adc5-e05d-4055-bdbb-2435d8d93f60\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg48b61a7d;pstestvm48b610\",\r\n \"duration\": \"PT49M7.9532787S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm48b610\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm48b610\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T18:03:17.3965623Z\",\r\n \"activityId\": \"a5981808-f090-4049-96dc-24d09eecdaeb\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupJobs/f4955f76-367d-49a2-95f4-3779436ff49d?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZiZjU5Y2YvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmJmNTljZi9iYWNrdXBKb2JzL2Y0OTU1Zjc2LTM2N2QtNDlhMi05NWY0LTM3Nzk0MzZmZjQ5ZD9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupJobs/57a4adc5-e05d-4055-bdbb-2435d8d93f60?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNDhiNjFhN2QvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y0OGI2MWE3ZC9iYWNrdXBKb2JzLzU3YTRhZGM1LWUwNWQtNDA1NS1iZGJiLTI0MzVkOGQ5M2Y2MD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "27052996-1125-4c2b-9cf9-c141b2a286b4" + "f11102df-348a-4d5e-9893-fccbafdd9d76" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -11319,11 +11464,11 @@ "nosniff" ], "x-ms-request-id": [ - "4a5d2a80-e4ef-444c-9c49-9a346f8675ab" + "7bd8be9f-4a8d-4e54-a635-0faacd51e492" ], "x-ms-client-request-id": [ - "27052996-1125-4c2b-9cf9-c141b2a286b4", - "27052996-1125-4c2b-9cf9-c141b2a286b4" + "f11102df-348a-4d5e-9893-fccbafdd9d76", + "f11102df-348a-4d5e-9893-fccbafdd9d76" ], "X-Powered-By": [ "ASP.NET" @@ -11335,16 +11480,16 @@ "51" ], "x-ms-correlation-request-id": [ - "4a5d2a80-e4ef-444c-9c49-9a346f8675ab" + "7bd8be9f-4a8d-4e54-a635-0faacd51e492" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T213704Z:4a5d2a80-e4ef-444c-9c49-9a346f8675ab" + "WESTINDIA:20220516T185303Z:7bd8be9f-4a8d-4e54-a635-0faacd51e492" ], "Date": [ - "Wed, 23 Feb 2022 21:37:04 GMT" + "Mon, 16 May 2022 18:53:02 GMT" ], "Content-Length": [ - "969" + "971" ], "Content-Type": [ "application/json" @@ -11353,26 +11498,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupJobs/f4955f76-367d-49a2-95f4-3779436ff49d\",\r\n \"name\": \"f4955f76-367d-49a2-95f4-3779436ff49d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgbfbf59cf;pstestvmbfbf50\",\r\n \"duration\": \"PT55M3.3031094S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvmbfbf50\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvmbfbf50\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-23T20:42:01.041925Z\",\r\n \"activityId\": \"9c81380d-ab42-4e74-a6c7-c10d169b4611\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupJobs/57a4adc5-e05d-4055-bdbb-2435d8d93f60\",\r\n \"name\": \"57a4adc5-e05d-4055-bdbb-2435d8d93f60\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg48b61a7d;pstestvm48b610\",\r\n \"duration\": \"PT49M44.8187486S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm48b610\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm48b610\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T18:03:17.3965623Z\",\r\n \"activityId\": \"a5981808-f090-4049-96dc-24d09eecdaeb\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupJobs/f4955f76-367d-49a2-95f4-3779436ff49d?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZiZjU5Y2YvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmJmNTljZi9iYWNrdXBKb2JzL2Y0OTU1Zjc2LTM2N2QtNDlhMi05NWY0LTM3Nzk0MzZmZjQ5ZD9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupJobs/57a4adc5-e05d-4055-bdbb-2435d8d93f60?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNDhiNjFhN2QvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y0OGI2MWE3ZC9iYWNrdXBKb2JzLzU3YTRhZGM1LWUwNWQtNDA1NS1iZGJiLTI0MzVkOGQ5M2Y2MD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "27052996-1125-4c2b-9cf9-c141b2a286b4" + "f11102df-348a-4d5e-9893-fccbafdd9d76" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -11390,11 +11535,11 @@ "nosniff" ], "x-ms-request-id": [ - "27b240f3-8441-4a5a-85e6-f823da02cc11" + "c0e24d2f-f76a-4db5-b5ca-91e50189fda3" ], "x-ms-client-request-id": [ - "27052996-1125-4c2b-9cf9-c141b2a286b4", - "27052996-1125-4c2b-9cf9-c141b2a286b4" + "f11102df-348a-4d5e-9893-fccbafdd9d76", + "f11102df-348a-4d5e-9893-fccbafdd9d76" ], "X-Powered-By": [ "ASP.NET" @@ -11406,16 +11551,16 @@ "50" ], "x-ms-correlation-request-id": [ - "27b240f3-8441-4a5a-85e6-f823da02cc11" + "c0e24d2f-f76a-4db5-b5ca-91e50189fda3" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T213736Z:27b240f3-8441-4a5a-85e6-f823da02cc11" + "WESTINDIA:20220516T185333Z:c0e24d2f-f76a-4db5-b5ca-91e50189fda3" ], "Date": [ - "Wed, 23 Feb 2022 21:37:35 GMT" + "Mon, 16 May 2022 18:53:33 GMT" ], "Content-Length": [ - "970" + "971" ], "Content-Type": [ "application/json" @@ -11424,26 +11569,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupJobs/f4955f76-367d-49a2-95f4-3779436ff49d\",\r\n \"name\": \"f4955f76-367d-49a2-95f4-3779436ff49d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgbfbf59cf;pstestvmbfbf50\",\r\n \"duration\": \"PT55M35.1725232S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvmbfbf50\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvmbfbf50\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-23T20:42:01.041925Z\",\r\n \"activityId\": \"9c81380d-ab42-4e74-a6c7-c10d169b4611\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupJobs/57a4adc5-e05d-4055-bdbb-2435d8d93f60\",\r\n \"name\": \"57a4adc5-e05d-4055-bdbb-2435d8d93f60\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg48b61a7d;pstestvm48b610\",\r\n \"duration\": \"PT50M16.0735884S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm48b610\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm48b610\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T18:03:17.3965623Z\",\r\n \"activityId\": \"a5981808-f090-4049-96dc-24d09eecdaeb\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupJobs/f4955f76-367d-49a2-95f4-3779436ff49d?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZiZjU5Y2YvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmJmNTljZi9iYWNrdXBKb2JzL2Y0OTU1Zjc2LTM2N2QtNDlhMi05NWY0LTM3Nzk0MzZmZjQ5ZD9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupJobs/57a4adc5-e05d-4055-bdbb-2435d8d93f60?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNDhiNjFhN2QvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y0OGI2MWE3ZC9iYWNrdXBKb2JzLzU3YTRhZGM1LWUwNWQtNDA1NS1iZGJiLTI0MzVkOGQ5M2Y2MD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "27052996-1125-4c2b-9cf9-c141b2a286b4" + "f11102df-348a-4d5e-9893-fccbafdd9d76" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -11461,11 +11606,11 @@ "nosniff" ], "x-ms-request-id": [ - "d00f5a52-7b77-4ae8-a84f-9f78f3454402" + "2cc9554d-430c-4aca-949e-00c69d8dccd4" ], "x-ms-client-request-id": [ - "27052996-1125-4c2b-9cf9-c141b2a286b4", - "27052996-1125-4c2b-9cf9-c141b2a286b4" + "f11102df-348a-4d5e-9893-fccbafdd9d76", + "f11102df-348a-4d5e-9893-fccbafdd9d76" ], "X-Powered-By": [ "ASP.NET" @@ -11477,16 +11622,16 @@ "49" ], "x-ms-correlation-request-id": [ - "d00f5a52-7b77-4ae8-a84f-9f78f3454402" + "2cc9554d-430c-4aca-949e-00c69d8dccd4" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T213812Z:d00f5a52-7b77-4ae8-a84f-9f78f3454402" + "WESTINDIA:20220516T185405Z:2cc9554d-430c-4aca-949e-00c69d8dccd4" ], "Date": [ - "Wed, 23 Feb 2022 21:38:12 GMT" + "Mon, 16 May 2022 18:54:04 GMT" ], "Content-Length": [ - "970" + "971" ], "Content-Type": [ "application/json" @@ -11495,26 +11640,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupJobs/f4955f76-367d-49a2-95f4-3779436ff49d\",\r\n \"name\": \"f4955f76-367d-49a2-95f4-3779436ff49d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgbfbf59cf;pstestvmbfbf50\",\r\n \"duration\": \"PT56M11.3181932S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvmbfbf50\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvmbfbf50\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-23T20:42:01.041925Z\",\r\n \"activityId\": \"9c81380d-ab42-4e74-a6c7-c10d169b4611\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupJobs/57a4adc5-e05d-4055-bdbb-2435d8d93f60\",\r\n \"name\": \"57a4adc5-e05d-4055-bdbb-2435d8d93f60\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg48b61a7d;pstestvm48b610\",\r\n \"duration\": \"PT50M47.2744696S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm48b610\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm48b610\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T18:03:17.3965623Z\",\r\n \"activityId\": \"a5981808-f090-4049-96dc-24d09eecdaeb\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupJobs/f4955f76-367d-49a2-95f4-3779436ff49d?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZiZjU5Y2YvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmJmNTljZi9iYWNrdXBKb2JzL2Y0OTU1Zjc2LTM2N2QtNDlhMi05NWY0LTM3Nzk0MzZmZjQ5ZD9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupJobs/57a4adc5-e05d-4055-bdbb-2435d8d93f60?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNDhiNjFhN2QvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y0OGI2MWE3ZC9iYWNrdXBKb2JzLzU3YTRhZGM1LWUwNWQtNDA1NS1iZGJiLTI0MzVkOGQ5M2Y2MD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "27052996-1125-4c2b-9cf9-c141b2a286b4" + "f11102df-348a-4d5e-9893-fccbafdd9d76" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -11532,11 +11677,11 @@ "nosniff" ], "x-ms-request-id": [ - "e55aac36-4f39-439c-998c-45e9679d0e00" + "23f5b7b3-172a-4f02-a2d3-4947dfc10ac3" ], "x-ms-client-request-id": [ - "27052996-1125-4c2b-9cf9-c141b2a286b4", - "27052996-1125-4c2b-9cf9-c141b2a286b4" + "f11102df-348a-4d5e-9893-fccbafdd9d76", + "f11102df-348a-4d5e-9893-fccbafdd9d76" ], "X-Powered-By": [ "ASP.NET" @@ -11548,16 +11693,16 @@ "48" ], "x-ms-correlation-request-id": [ - "e55aac36-4f39-439c-998c-45e9679d0e00" + "23f5b7b3-172a-4f02-a2d3-4947dfc10ac3" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T213844Z:e55aac36-4f39-439c-998c-45e9679d0e00" + "WESTINDIA:20220516T185435Z:23f5b7b3-172a-4f02-a2d3-4947dfc10ac3" ], "Date": [ - "Wed, 23 Feb 2022 21:38:44 GMT" + "Mon, 16 May 2022 18:54:35 GMT" ], "Content-Length": [ - "970" + "971" ], "Content-Type": [ "application/json" @@ -11566,26 +11711,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupJobs/f4955f76-367d-49a2-95f4-3779436ff49d\",\r\n \"name\": \"f4955f76-367d-49a2-95f4-3779436ff49d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgbfbf59cf;pstestvmbfbf50\",\r\n \"duration\": \"PT56M43.1426251S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvmbfbf50\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvmbfbf50\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-23T20:42:01.041925Z\",\r\n \"activityId\": \"9c81380d-ab42-4e74-a6c7-c10d169b4611\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupJobs/57a4adc5-e05d-4055-bdbb-2435d8d93f60\",\r\n \"name\": \"57a4adc5-e05d-4055-bdbb-2435d8d93f60\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg48b61a7d;pstestvm48b610\",\r\n \"duration\": \"PT51M17.9311414S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm48b610\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm48b610\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T18:03:17.3965623Z\",\r\n \"activityId\": \"a5981808-f090-4049-96dc-24d09eecdaeb\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupJobs/f4955f76-367d-49a2-95f4-3779436ff49d?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZiZjU5Y2YvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmJmNTljZi9iYWNrdXBKb2JzL2Y0OTU1Zjc2LTM2N2QtNDlhMi05NWY0LTM3Nzk0MzZmZjQ5ZD9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupJobs/57a4adc5-e05d-4055-bdbb-2435d8d93f60?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNDhiNjFhN2QvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y0OGI2MWE3ZC9iYWNrdXBKb2JzLzU3YTRhZGM1LWUwNWQtNDA1NS1iZGJiLTI0MzVkOGQ5M2Y2MD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "27052996-1125-4c2b-9cf9-c141b2a286b4" + "f11102df-348a-4d5e-9893-fccbafdd9d76" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -11603,11 +11748,11 @@ "nosniff" ], "x-ms-request-id": [ - "867ec574-6566-433c-aa58-528b6ed8fe28" + "0d07600f-524e-40cd-bc01-ec32bb05bbe6" ], "x-ms-client-request-id": [ - "27052996-1125-4c2b-9cf9-c141b2a286b4", - "27052996-1125-4c2b-9cf9-c141b2a286b4" + "f11102df-348a-4d5e-9893-fccbafdd9d76", + "f11102df-348a-4d5e-9893-fccbafdd9d76" ], "X-Powered-By": [ "ASP.NET" @@ -11619,16 +11764,16 @@ "47" ], "x-ms-correlation-request-id": [ - "867ec574-6566-433c-aa58-528b6ed8fe28" + "0d07600f-524e-40cd-bc01-ec32bb05bbe6" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T213915Z:867ec574-6566-433c-aa58-528b6ed8fe28" + "WESTINDIA:20220516T185506Z:0d07600f-524e-40cd-bc01-ec32bb05bbe6" ], "Date": [ - "Wed, 23 Feb 2022 21:39:14 GMT" + "Mon, 16 May 2022 18:55:05 GMT" ], "Content-Length": [ - "970" + "1035" ], "Content-Type": [ "application/json" @@ -11637,26 +11782,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupJobs/f4955f76-367d-49a2-95f4-3779436ff49d\",\r\n \"name\": \"f4955f76-367d-49a2-95f4-3779436ff49d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgbfbf59cf;pstestvmbfbf50\",\r\n \"duration\": \"PT57M13.9012231S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvmbfbf50\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvmbfbf50\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-23T20:42:01.041925Z\",\r\n \"activityId\": \"9c81380d-ab42-4e74-a6c7-c10d169b4611\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupJobs/57a4adc5-e05d-4055-bdbb-2435d8d93f60\",\r\n \"name\": \"57a4adc5-e05d-4055-bdbb-2435d8d93f60\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg48b61a7d;pstestvm48b610\",\r\n \"duration\": \"PT51M19.5850189S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm48b610\",\r\n \"Backup Size\": \"10162 MB\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm48b610\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-05-16T18:03:17.3965623Z\",\r\n \"endTime\": \"2022-05-16T18:54:36.9815812Z\",\r\n \"activityId\": \"a5981808-f090-4049-96dc-24d09eecdaeb\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupJobs/f4955f76-367d-49a2-95f4-3779436ff49d?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZiZjU5Y2YvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmJmNTljZi9iYWNrdXBKb2JzL2Y0OTU1Zjc2LTM2N2QtNDlhMi05NWY0LTM3Nzk0MzZmZjQ5ZD9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNDhiNjFhN2QvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cz9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "27052996-1125-4c2b-9cf9-c141b2a286b4" + "f2b67d10-86f8-4d03-b974-4e8c1d3dedb0" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesClient/4.3.2.0" ] }, "ResponseHeaders": { @@ -11666,40 +11811,35 @@ "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-IIS/10.0" - ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "db731adf-8119-4efd-ac81-eb685e6790bf" + "5a5438e2-f450-451e-95b5-e5f00a63cf30" ], "x-ms-client-request-id": [ - "27052996-1125-4c2b-9cf9-c141b2a286b4", - "27052996-1125-4c2b-9cf9-c141b2a286b4" - ], - "X-Powered-By": [ - "ASP.NET" + "f2b67d10-86f8-4d03-b974-4e8c1d3dedb0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "46" + "Server": [ + "Microsoft-IIS/10.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" ], "x-ms-correlation-request-id": [ - "db731adf-8119-4efd-ac81-eb685e6790bf" + "5a5438e2-f450-451e-95b5-e5f00a63cf30" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T213946Z:db731adf-8119-4efd-ac81-eb685e6790bf" + "JIOINDIAWEST:20220516T185507Z:5a5438e2-f450-451e-95b5-e5f00a63cf30" ], "Date": [ - "Wed, 23 Feb 2022 21:39:46 GMT" + "Mon, 16 May 2022 18:55:06 GMT" ], "Content-Length": [ - "970" + "530" ], "Content-Type": [ "application/json" @@ -11708,26 +11848,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupJobs/f4955f76-367d-49a2-95f4-3779436ff49d\",\r\n \"name\": \"f4955f76-367d-49a2-95f4-3779436ff49d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgbfbf59cf;pstestvmbfbf50\",\r\n \"duration\": \"PT57M44.6618907S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvmbfbf50\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvmbfbf50\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-23T20:42:01.041925Z\",\r\n \"activityId\": \"9c81380d-ab42-4e74-a6c7-c10d169b4611\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"PSTestRSV48b61a7d\",\r\n \"etag\": \"W/\\\"datetime'2022-05-16T18%3A28%3A34.3626805Z'\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateEndpointStateForBackup\": \"None\",\r\n \"privateEndpointStateForSiteRecovery\": \"None\",\r\n \"networkSettings\": {\r\n \"publicNetworkAccess\": \"Enabled\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupJobs/f4955f76-367d-49a2-95f4-3779436ff49d?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZiZjU5Y2YvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmJmNTljZi9iYWNrdXBKb2JzL2Y0OTU1Zjc2LTM2N2QtNDlhMi05NWY0LTM3Nzk0MzZmZjQ5ZD9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupProtectionContainers?$filter=backupManagementType%20eq%20'AzureIaasVM'%20and%20status%20eq%20'Registered'&api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNDhiNjFhN2QvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y0OGI2MWE3ZC9iYWNrdXBQcm90ZWN0aW9uQ29udGFpbmVycz8kZmlsdGVyPWJhY2t1cE1hbmFnZW1lbnRUeXBlJTIwZXElMjAnQXp1cmVJYWFzVk0nJTIwYW5kJTIwc3RhdHVzJTIwZXElMjAnUmVnaXN0ZXJlZCcmYXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "27052996-1125-4c2b-9cf9-c141b2a286b4" + "ce62cd41-a1e3-4a88-bd7d-7f71df9a3e54" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -11737,40 +11877,39 @@ "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-IIS/10.0" - ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "7a07b97d-969a-4caf-9ad0-ff2d93decbc0" + "0d7d61f4-707e-4d16-9c42-c7de6ce65a6d" ], "x-ms-client-request-id": [ - "27052996-1125-4c2b-9cf9-c141b2a286b4", - "27052996-1125-4c2b-9cf9-c141b2a286b4" - ], - "X-Powered-By": [ - "ASP.NET" + "ce62cd41-a1e3-4a88-bd7d-7f71df9a3e54", + "ce62cd41-a1e3-4a88-bd7d-7f71df9a3e54" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "45" + "147" ], "x-ms-correlation-request-id": [ - "7a07b97d-969a-4caf-9ad0-ff2d93decbc0" + "0d7d61f4-707e-4d16-9c42-c7de6ce65a6d" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T214017Z:7a07b97d-969a-4caf-9ad0-ff2d93decbc0" + "WESTINDIA:20220516T185507Z:0d7d61f4-707e-4d16-9c42-c7de6ce65a6d" ], "Date": [ - "Wed, 23 Feb 2022 21:40:16 GMT" + "Mon, 16 May 2022 18:55:06 GMT" ], "Content-Length": [ - "970" + "914" ], "Content-Type": [ "application/json" @@ -11779,26 +11918,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupJobs/f4955f76-367d-49a2-95f4-3779436ff49d\",\r\n \"name\": \"f4955f76-367d-49a2-95f4-3779436ff49d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgbfbf59cf;pstestvmbfbf50\",\r\n \"duration\": \"PT58M15.5039109S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvmbfbf50\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvmbfbf50\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-23T20:42:01.041925Z\",\r\n \"activityId\": \"9c81380d-ab42-4e74-a6c7-c10d169b4611\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrg48b61a7d;pstestvm48b610\",\r\n \"name\": \"IaasVMContainer;iaasvmcontainerv2;pstestrg48b61a7d;pstestvm48b610\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers\",\r\n \"properties\": {\r\n \"virtualMachineId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.Compute/virtualMachines/PSTestVM48b610\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"resourceGroup\": \"PSTestRG48b61a7d\",\r\n \"friendlyName\": \"PSTestVM48b610\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupJobs/f4955f76-367d-49a2-95f4-3779436ff49d?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZiZjU5Y2YvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmJmNTljZi9iYWNrdXBKb2JzL2Y0OTU1Zjc2LTM2N2QtNDlhMi05NWY0LTM3Nzk0MzZmZjQ5ZD9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupFabrics/Azure/protectionContainers/IaasVMContainer%3Biaasvmcontainerv2%3Bpstestrg48b61a7d%3Bpstestvm48b610/protectedItems/VM%3Biaasvmcontainerv2%3Bpstestrg48b61a7d%3Bpstestvm48b610/recoveryPoints?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNDhiNjFhN2QvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y0OGI2MWE3ZC9iYWNrdXBGYWJyaWNzL0F6dXJlL3Byb3RlY3Rpb25Db250YWluZXJzL0lhYXNWTUNvbnRhaW5lciUzQmlhYXN2bWNvbnRhaW5lcnYyJTNCcHN0ZXN0cmc0OGI2MWE3ZCUzQnBzdGVzdHZtNDhiNjEwL3Byb3RlY3RlZEl0ZW1zL1ZNJTNCaWFhc3ZtY29udGFpbmVydjIlM0Jwc3Rlc3RyZzQ4YjYxYTdkJTNCcHN0ZXN0dm00OGI2MTAvcmVjb3ZlcnlQb2ludHM/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "27052996-1125-4c2b-9cf9-c141b2a286b4" + "185a9a0f-1c4c-4dc6-84c1-8c19e340683b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -11808,40 +11947,39 @@ "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-IIS/10.0" - ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "5f6ddfa3-61d6-401c-b9db-b6a9bfde7214" + "260df8b2-0289-45e5-b8c7-70911b709322" ], "x-ms-client-request-id": [ - "27052996-1125-4c2b-9cf9-c141b2a286b4", - "27052996-1125-4c2b-9cf9-c141b2a286b4" - ], - "X-Powered-By": [ - "ASP.NET" + "185a9a0f-1c4c-4dc6-84c1-8c19e340683b", + "185a9a0f-1c4c-4dc6-84c1-8c19e340683b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "44" + "149" ], "x-ms-correlation-request-id": [ - "5f6ddfa3-61d6-401c-b9db-b6a9bfde7214" + "260df8b2-0289-45e5-b8c7-70911b709322" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T214047Z:5f6ddfa3-61d6-401c-b9db-b6a9bfde7214" + "WESTINDIA:20220516T185508Z:260df8b2-0289-45e5-b8c7-70911b709322" ], "Date": [ - "Wed, 23 Feb 2022 21:40:47 GMT" + "Mon, 16 May 2022 18:55:08 GMT" ], "Content-Length": [ - "970" + "1194" ], "Content-Type": [ "application/json" @@ -11850,26 +11988,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupJobs/f4955f76-367d-49a2-95f4-3779436ff49d\",\r\n \"name\": \"f4955f76-367d-49a2-95f4-3779436ff49d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgbfbf59cf;pstestvmbfbf50\",\r\n \"duration\": \"PT58M46.3117259S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvmbfbf50\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvmbfbf50\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-23T20:42:01.041925Z\",\r\n \"activityId\": \"9c81380d-ab42-4e74-a6c7-c10d169b4611\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrg48b61a7d;pstestvm48b610/protectedItems/VM;iaasvmcontainerv2;pstestrg48b61a7d;pstestvm48b610/recoveryPoints/49079731847221\",\r\n \"name\": \"49079731847221\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints\",\r\n \"properties\": {\r\n \"objectType\": \"IaasVMRecoveryPoint\",\r\n \"recoveryPointType\": \"AppConsistent\",\r\n \"recoveryPointTime\": \"2022-05-16T18:03:29.9011089Z\",\r\n \"recoveryPointAdditionalInfo\": \"\",\r\n \"sourceVMStorageType\": \"NormalStorage\",\r\n \"isSourceVMEncrypted\": false,\r\n \"isInstantIlrSessionActive\": false,\r\n \"recoveryPointTierDetails\": [\r\n {\r\n \"type\": \"InstantRP\",\r\n \"status\": \"Valid\"\r\n },\r\n {\r\n \"type\": \"HardenedRP\",\r\n \"status\": \"Valid\"\r\n }\r\n ],\r\n \"isManagedVirtualMachine\": true,\r\n \"virtualMachineSize\": \"Standard_D1_v2\",\r\n \"originalStorageAccountOption\": false,\r\n \"osType\": \"Windows\",\r\n \"recoveryPointMoveReadinessInfo\": {\r\n \"ArchivedRP\": {\r\n \"isReadyForMove\": false,\r\n \"additionalInfo\": \"We're still determining if this Recovery Point can be moved.. Please check again after some time.\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupJobs/f4955f76-367d-49a2-95f4-3779436ff49d?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZiZjU5Y2YvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmJmNTljZi9iYWNrdXBKb2JzL2Y0OTU1Zjc2LTM2N2QtNDlhMi05NWY0LTM3Nzk0MzZmZjQ5ZD9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", - "RequestMethod": "GET", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupFabrics/Azure/protectionContainers/IaasVMContainer%3Biaasvmcontainerv2%3Bpstestrg48b61a7d%3Bpstestvm48b610/protectedItems/VM%3Biaasvmcontainerv2%3Bpstestrg48b61a7d%3Bpstestvm48b610?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNDhiNjFhN2QvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y0OGI2MWE3ZC9iYWNrdXBGYWJyaWNzL0F6dXJlL3Byb3RlY3Rpb25Db250YWluZXJzL0lhYXNWTUNvbnRhaW5lciUzQmlhYXN2bWNvbnRhaW5lcnYyJTNCcHN0ZXN0cmc0OGI2MWE3ZCUzQnBzdGVzdHZtNDhiNjEwL3Byb3RlY3RlZEl0ZW1zL1ZNJTNCaWFhc3ZtY29udGFpbmVydjIlM0Jwc3Rlc3RyZzQ4YjYxYTdkJTNCcHN0ZXN0dm00OGI2MTA/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "27052996-1125-4c2b-9cf9-c141b2a286b4" + "185a9a0f-1c4c-4dc6-84c1-8c19e340683b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -11879,68 +12017,70 @@ "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-IIS/10.0" + "Location": [ + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupOperationResults/f8dc513c-7421-4a6d-8129-72be775bbba8?api-version=2022-02-01" + ], + "Retry-After": [ + "60" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupOperations/f8dc513c-7421-4a6d-8129-72be775bbba8?api-version=2022-02-01" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "68280208-33b4-4cb5-8e82-75449d12eccb" + "42418315-dab9-4f23-8554-d08d48383077" ], "x-ms-client-request-id": [ - "27052996-1125-4c2b-9cf9-c141b2a286b4", - "27052996-1125-4c2b-9cf9-c141b2a286b4" - ], - "X-Powered-By": [ - "ASP.NET" + "185a9a0f-1c4c-4dc6-84c1-8c19e340683b", + "185a9a0f-1c4c-4dc6-84c1-8c19e340683b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "43" + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" ], "x-ms-correlation-request-id": [ - "68280208-33b4-4cb5-8e82-75449d12eccb" + "42418315-dab9-4f23-8554-d08d48383077" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T214118Z:68280208-33b4-4cb5-8e82-75449d12eccb" + "WESTINDIA:20220516T185510Z:42418315-dab9-4f23-8554-d08d48383077" ], "Date": [ - "Wed, 23 Feb 2022 21:41:18 GMT" - ], - "Content-Length": [ - "970" - ], - "Content-Type": [ - "application/json" + "Mon, 16 May 2022 18:55:09 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupJobs/f4955f76-367d-49a2-95f4-3779436ff49d\",\r\n \"name\": \"f4955f76-367d-49a2-95f4-3779436ff49d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgbfbf59cf;pstestvmbfbf50\",\r\n \"duration\": \"PT59M17.1302812S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvmbfbf50\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvmbfbf50\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-23T20:42:01.041925Z\",\r\n \"activityId\": \"9c81380d-ab42-4e74-a6c7-c10d169b4611\"\r\n }\r\n}", - "StatusCode": 200 + "ResponseBody": "", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupJobs/f4955f76-367d-49a2-95f4-3779436ff49d?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZiZjU5Y2YvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmJmNTljZi9iYWNrdXBKb2JzL2Y0OTU1Zjc2LTM2N2QtNDlhMi05NWY0LTM3Nzk0MzZmZjQ5ZD9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupOperations/f8dc513c-7421-4a6d-8129-72be775bbba8?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNDhiNjFhN2QvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y0OGI2MWE3ZC9iYWNrdXBPcGVyYXRpb25zL2Y4ZGM1MTNjLTc0MjEtNGE2ZC04MTI5LTcyYmU3NzViYmJhOD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "27052996-1125-4c2b-9cf9-c141b2a286b4" + "185a9a0f-1c4c-4dc6-84c1-8c19e340683b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -11950,40 +12090,39 @@ "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-IIS/10.0" - ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "2059165f-525d-475f-858a-822032379db0" + "c6f4244a-09e2-4337-9fa2-8120c98b81be" ], "x-ms-client-request-id": [ - "27052996-1125-4c2b-9cf9-c141b2a286b4", - "27052996-1125-4c2b-9cf9-c141b2a286b4" - ], - "X-Powered-By": [ - "ASP.NET" + "185a9a0f-1c4c-4dc6-84c1-8c19e340683b", + "185a9a0f-1c4c-4dc6-84c1-8c19e340683b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "42" + "138" ], "x-ms-correlation-request-id": [ - "2059165f-525d-475f-858a-822032379db0" + "c6f4244a-09e2-4337-9fa2-8120c98b81be" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T214149Z:2059165f-525d-475f-858a-822032379db0" + "WESTINDIA:20220516T185510Z:c6f4244a-09e2-4337-9fa2-8120c98b81be" ], "Date": [ - "Wed, 23 Feb 2022 21:41:49 GMT" + "Mon, 16 May 2022 18:55:10 GMT" ], "Content-Length": [ - "969" + "188" ], "Content-Type": [ "application/json" @@ -11992,26 +12131,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupJobs/f4955f76-367d-49a2-95f4-3779436ff49d\",\r\n \"name\": \"f4955f76-367d-49a2-95f4-3779436ff49d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgbfbf59cf;pstestvmbfbf50\",\r\n \"duration\": \"PT59M47.902263S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvmbfbf50\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvmbfbf50\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-23T20:42:01.041925Z\",\r\n \"activityId\": \"9c81380d-ab42-4e74-a6c7-c10d169b4611\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"f8dc513c-7421-4a6d-8129-72be775bbba8\",\r\n \"name\": \"f8dc513c-7421-4a6d-8129-72be775bbba8\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T18:55:10.1934772Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupJobs/f4955f76-367d-49a2-95f4-3779436ff49d?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZiZjU5Y2YvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmJmNTljZi9iYWNrdXBKb2JzL2Y0OTU1Zjc2LTM2N2QtNDlhMi05NWY0LTM3Nzk0MzZmZjQ5ZD9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupOperations/f8dc513c-7421-4a6d-8129-72be775bbba8?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNDhiNjFhN2QvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y0OGI2MWE3ZC9iYWNrdXBPcGVyYXRpb25zL2Y4ZGM1MTNjLTc0MjEtNGE2ZC04MTI5LTcyYmU3NzViYmJhOD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "27052996-1125-4c2b-9cf9-c141b2a286b4" + "185a9a0f-1c4c-4dc6-84c1-8c19e340683b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -12021,40 +12160,39 @@ "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-IIS/10.0" - ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "74bc8cc5-649e-444d-86f2-324ea45585fa" + "8ea6f34e-1774-4991-add8-442013f8a048" ], "x-ms-client-request-id": [ - "27052996-1125-4c2b-9cf9-c141b2a286b4", - "27052996-1125-4c2b-9cf9-c141b2a286b4" - ], - "X-Powered-By": [ - "ASP.NET" + "185a9a0f-1c4c-4dc6-84c1-8c19e340683b", + "185a9a0f-1c4c-4dc6-84c1-8c19e340683b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "41" + "137" ], "x-ms-correlation-request-id": [ - "74bc8cc5-649e-444d-86f2-324ea45585fa" + "8ea6f34e-1774-4991-add8-442013f8a048" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T214220Z:74bc8cc5-649e-444d-86f2-324ea45585fa" + "WESTINDIA:20220516T185516Z:8ea6f34e-1774-4991-add8-442013f8a048" ], "Date": [ - "Wed, 23 Feb 2022 21:42:19 GMT" + "Mon, 16 May 2022 18:55:15 GMT" ], "Content-Length": [ - "969" + "188" ], "Content-Type": [ "application/json" @@ -12063,26 +12201,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupJobs/f4955f76-367d-49a2-95f4-3779436ff49d\",\r\n \"name\": \"f4955f76-367d-49a2-95f4-3779436ff49d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgbfbf59cf;pstestvmbfbf50\",\r\n \"duration\": \"PT1H18.8117457S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvmbfbf50\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvmbfbf50\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-23T20:42:01.041925Z\",\r\n \"activityId\": \"9c81380d-ab42-4e74-a6c7-c10d169b4611\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"f8dc513c-7421-4a6d-8129-72be775bbba8\",\r\n \"name\": \"f8dc513c-7421-4a6d-8129-72be775bbba8\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T18:55:10.1934772Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupJobs/f4955f76-367d-49a2-95f4-3779436ff49d?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZiZjU5Y2YvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmJmNTljZi9iYWNrdXBKb2JzL2Y0OTU1Zjc2LTM2N2QtNDlhMi05NWY0LTM3Nzk0MzZmZjQ5ZD9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupOperations/f8dc513c-7421-4a6d-8129-72be775bbba8?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNDhiNjFhN2QvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y0OGI2MWE3ZC9iYWNrdXBPcGVyYXRpb25zL2Y4ZGM1MTNjLTc0MjEtNGE2ZC04MTI5LTcyYmU3NzViYmJhOD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "27052996-1125-4c2b-9cf9-c141b2a286b4" + "185a9a0f-1c4c-4dc6-84c1-8c19e340683b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -12092,40 +12230,39 @@ "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-IIS/10.0" - ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "7f069af3-a05b-4f66-9505-9889f6bdec23" + "343cc8da-819b-4cb3-b93f-0e32b5dba472" ], "x-ms-client-request-id": [ - "27052996-1125-4c2b-9cf9-c141b2a286b4", - "27052996-1125-4c2b-9cf9-c141b2a286b4" - ], - "X-Powered-By": [ - "ASP.NET" + "185a9a0f-1c4c-4dc6-84c1-8c19e340683b", + "185a9a0f-1c4c-4dc6-84c1-8c19e340683b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "40" + "136" ], "x-ms-correlation-request-id": [ - "7f069af3-a05b-4f66-9505-9889f6bdec23" + "343cc8da-819b-4cb3-b93f-0e32b5dba472" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T214251Z:7f069af3-a05b-4f66-9505-9889f6bdec23" + "WESTINDIA:20220516T185522Z:343cc8da-819b-4cb3-b93f-0e32b5dba472" ], "Date": [ - "Wed, 23 Feb 2022 21:42:51 GMT" + "Mon, 16 May 2022 18:55:21 GMT" ], "Content-Length": [ - "967" + "188" ], "Content-Type": [ "application/json" @@ -12134,26 +12271,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupJobs/f4955f76-367d-49a2-95f4-3779436ff49d\",\r\n \"name\": \"f4955f76-367d-49a2-95f4-3779436ff49d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgbfbf59cf;pstestvmbfbf50\",\r\n \"duration\": \"PT1H50.36917S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvmbfbf50\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvmbfbf50\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-23T20:42:01.041925Z\",\r\n \"activityId\": \"9c81380d-ab42-4e74-a6c7-c10d169b4611\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"f8dc513c-7421-4a6d-8129-72be775bbba8\",\r\n \"name\": \"f8dc513c-7421-4a6d-8129-72be775bbba8\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T18:55:10.1934772Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupJobs/f4955f76-367d-49a2-95f4-3779436ff49d?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZiZjU5Y2YvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmJmNTljZi9iYWNrdXBKb2JzL2Y0OTU1Zjc2LTM2N2QtNDlhMi05NWY0LTM3Nzk0MzZmZjQ5ZD9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupOperations/f8dc513c-7421-4a6d-8129-72be775bbba8?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNDhiNjFhN2QvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y0OGI2MWE3ZC9iYWNrdXBPcGVyYXRpb25zL2Y4ZGM1MTNjLTc0MjEtNGE2ZC04MTI5LTcyYmU3NzViYmJhOD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "27052996-1125-4c2b-9cf9-c141b2a286b4" + "185a9a0f-1c4c-4dc6-84c1-8c19e340683b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -12163,40 +12300,39 @@ "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-IIS/10.0" - ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "5f006c32-01fb-4d67-a211-e8580e4c4465" + "41daa754-dba5-49bc-a28b-cb741f48f7d3" ], "x-ms-client-request-id": [ - "27052996-1125-4c2b-9cf9-c141b2a286b4", - "27052996-1125-4c2b-9cf9-c141b2a286b4" - ], - "X-Powered-By": [ - "ASP.NET" + "185a9a0f-1c4c-4dc6-84c1-8c19e340683b", + "185a9a0f-1c4c-4dc6-84c1-8c19e340683b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "39" + "135" ], "x-ms-correlation-request-id": [ - "5f006c32-01fb-4d67-a211-e8580e4c4465" + "41daa754-dba5-49bc-a28b-cb741f48f7d3" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T214322Z:5f006c32-01fb-4d67-a211-e8580e4c4465" + "WESTINDIA:20220516T185527Z:41daa754-dba5-49bc-a28b-cb741f48f7d3" ], "Date": [ - "Wed, 23 Feb 2022 21:43:22 GMT" + "Mon, 16 May 2022 18:55:27 GMT" ], "Content-Length": [ - "1035" + "188" ], "Content-Type": [ "application/json" @@ -12205,26 +12341,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupJobs/f4955f76-367d-49a2-95f4-3779436ff49d\",\r\n \"name\": \"f4955f76-367d-49a2-95f4-3779436ff49d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgbfbf59cf;pstestvmbfbf50\",\r\n \"duration\": \"PT1H1M14.8700085S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n },\r\n {\r\n \"taskId\": \"Transfer data to vault\",\r\n \"duration\": \"PT0S\",\r\n \"status\": \"Completed\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvmbfbf50\",\r\n \"Backup Size\": \"10154 MB\"\r\n },\r\n \"internalPropertyBag\": {\r\n \"IsInstantRpJob\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvmbfbf50\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-02-23T20:42:01.041925Z\",\r\n \"endTime\": \"2022-02-23T21:43:15.9119335Z\",\r\n \"activityId\": \"9c81380d-ab42-4e74-a6c7-c10d169b4611\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"f8dc513c-7421-4a6d-8129-72be775bbba8\",\r\n \"name\": \"f8dc513c-7421-4a6d-8129-72be775bbba8\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T18:55:10.1934772Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZiZjU5Y2YvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cz9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupOperations/f8dc513c-7421-4a6d-8129-72be775bbba8?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNDhiNjFhN2QvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y0OGI2MWE3ZC9iYWNrdXBPcGVyYXRpb25zL2Y4ZGM1MTNjLTc0MjEtNGE2ZC04MTI5LTcyYmU3NzViYmJhOD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0f8534e6-9389-450b-8884-3fcb9898eb65" + "185a9a0f-1c4c-4dc6-84c1-8c19e340683b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesClient/4.3.2.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -12238,10 +12374,11 @@ "nosniff" ], "x-ms-request-id": [ - "ecde48fc-364f-4502-89cf-f7c4dc8f1318" + "eb524345-5842-4003-99b6-6cb4c7ce9955" ], "x-ms-client-request-id": [ - "0f8534e6-9389-450b-8884-3fcb9898eb65" + "185a9a0f-1c4c-4dc6-84c1-8c19e340683b", + "185a9a0f-1c4c-4dc6-84c1-8c19e340683b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -12249,20 +12386,23 @@ "Server": [ "Microsoft-IIS/10.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "134" ], "x-ms-correlation-request-id": [ - "ecde48fc-364f-4502-89cf-f7c4dc8f1318" + "eb524345-5842-4003-99b6-6cb4c7ce9955" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T214324Z:ecde48fc-364f-4502-89cf-f7c4dc8f1318" + "WESTINDIA:20220516T185533Z:eb524345-5842-4003-99b6-6cb4c7ce9955" ], "Date": [ - "Wed, 23 Feb 2022 21:43:23 GMT" + "Mon, 16 May 2022 18:55:32 GMT" ], "Content-Length": [ - "478" + "188" ], "Content-Type": [ "application/json" @@ -12271,26 +12411,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"PSTestRSVbfbf59cf\",\r\n \"etag\": \"W/\\\"datetime'2022-02-23T20%3A40%3A52.8314446Z'\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateEndpointStateForBackup\": \"None\",\r\n \"privateEndpointStateForSiteRecovery\": \"None\"\r\n },\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"f8dc513c-7421-4a6d-8129-72be775bbba8\",\r\n \"name\": \"f8dc513c-7421-4a6d-8129-72be775bbba8\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T18:55:10.1934772Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupProtectionContainers?$filter=backupManagementType%20eq%20'AzureIaasVM'%20and%20status%20eq%20'Registered'&api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZiZjU5Y2YvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmJmNTljZi9iYWNrdXBQcm90ZWN0aW9uQ29udGFpbmVycz8kZmlsdGVyPWJhY2t1cE1hbmFnZW1lbnRUeXBlJTIwZXElMjAnQXp1cmVJYWFzVk0nJTIwYW5kJTIwc3RhdHVzJTIwZXElMjAnUmVnaXN0ZXJlZCcmYXBpLXZlcnNpb249MjAyMS0xMC0wMQ==", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupOperations/f8dc513c-7421-4a6d-8129-72be775bbba8?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNDhiNjFhN2QvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y0OGI2MWE3ZC9iYWNrdXBPcGVyYXRpb25zL2Y4ZGM1MTNjLTc0MjEtNGE2ZC04MTI5LTcyYmU3NzViYmJhOD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4f46ac80-efa1-4f3a-a7d6-a8362e11d0c8" + "185a9a0f-1c4c-4dc6-84c1-8c19e340683b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -12304,11 +12444,11 @@ "nosniff" ], "x-ms-request-id": [ - "9e07cd95-8d6f-4247-be1b-8b1f8a6ba71d" + "fcd63d83-d61a-4641-b84e-76a51129ea06" ], "x-ms-client-request-id": [ - "4f46ac80-efa1-4f3a-a7d6-a8362e11d0c8", - "4f46ac80-efa1-4f3a-a7d6-a8362e11d0c8" + "185a9a0f-1c4c-4dc6-84c1-8c19e340683b", + "185a9a0f-1c4c-4dc6-84c1-8c19e340683b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -12320,19 +12460,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "147" + "133" ], "x-ms-correlation-request-id": [ - "9e07cd95-8d6f-4247-be1b-8b1f8a6ba71d" + "fcd63d83-d61a-4641-b84e-76a51129ea06" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T214324Z:9e07cd95-8d6f-4247-be1b-8b1f8a6ba71d" + "WESTINDIA:20220516T185538Z:fcd63d83-d61a-4641-b84e-76a51129ea06" ], "Date": [ - "Wed, 23 Feb 2022 21:43:24 GMT" + "Mon, 16 May 2022 18:55:38 GMT" ], "Content-Length": [ - "914" + "188" ], "Content-Type": [ "application/json" @@ -12341,26 +12481,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrgbfbf59cf;pstestvmbfbf50\",\r\n \"name\": \"IaasVMContainer;iaasvmcontainerv2;pstestrgbfbf59cf;pstestvmbfbf50\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers\",\r\n \"properties\": {\r\n \"virtualMachineId\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.Compute/virtualMachines/PSTestVMbfbf50\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"resourceGroup\": \"PSTestRGbfbf59cf\",\r\n \"friendlyName\": \"PSTestVMbfbf50\",\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}", + "ResponseBody": "{\r\n \"id\": \"f8dc513c-7421-4a6d-8129-72be775bbba8\",\r\n \"name\": \"f8dc513c-7421-4a6d-8129-72be775bbba8\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T18:55:10.1934772Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupFabrics/Azure/protectionContainers/IaasVMContainer%3Biaasvmcontainerv2%3Bpstestrgbfbf59cf%3Bpstestvmbfbf50/protectedItems/VM%3Biaasvmcontainerv2%3Bpstestrgbfbf59cf%3Bpstestvmbfbf50/recoveryPoints?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZiZjU5Y2YvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmJmNTljZi9iYWNrdXBGYWJyaWNzL0F6dXJlL3Byb3RlY3Rpb25Db250YWluZXJzL0lhYXNWTUNvbnRhaW5lciUzQmlhYXN2bWNvbnRhaW5lcnYyJTNCcHN0ZXN0cmdiZmJmNTljZiUzQnBzdGVzdHZtYmZiZjUwL3Byb3RlY3RlZEl0ZW1zL1ZNJTNCaWFhc3ZtY29udGFpbmVydjIlM0Jwc3Rlc3RyZ2JmYmY1OWNmJTNCcHN0ZXN0dm1iZmJmNTAvcmVjb3ZlcnlQb2ludHM/YXBpLXZlcnNpb249MjAyMS0xMC0wMQ==", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupOperations/f8dc513c-7421-4a6d-8129-72be775bbba8?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNDhiNjFhN2QvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y0OGI2MWE3ZC9iYWNrdXBPcGVyYXRpb25zL2Y4ZGM1MTNjLTc0MjEtNGE2ZC04MTI5LTcyYmU3NzViYmJhOD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "883c6e64-b367-4b4e-855a-a3240ea2d653" + "185a9a0f-1c4c-4dc6-84c1-8c19e340683b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -12374,11 +12514,11 @@ "nosniff" ], "x-ms-request-id": [ - "4368a47a-6054-4acf-bcb9-ec953d92082a" + "5beedd25-880b-4204-a0e7-75a9af8a078c" ], "x-ms-client-request-id": [ - "883c6e64-b367-4b4e-855a-a3240ea2d653", - "883c6e64-b367-4b4e-855a-a3240ea2d653" + "185a9a0f-1c4c-4dc6-84c1-8c19e340683b", + "185a9a0f-1c4c-4dc6-84c1-8c19e340683b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -12390,19 +12530,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "149" + "132" ], "x-ms-correlation-request-id": [ - "4368a47a-6054-4acf-bcb9-ec953d92082a" + "5beedd25-880b-4204-a0e7-75a9af8a078c" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T214326Z:4368a47a-6054-4acf-bcb9-ec953d92082a" + "WESTINDIA:20220516T185544Z:5beedd25-880b-4204-a0e7-75a9af8a078c" ], "Date": [ - "Wed, 23 Feb 2022 21:43:25 GMT" + "Mon, 16 May 2022 18:55:43 GMT" ], "Content-Length": [ - "1258" + "188" ], "Content-Type": [ "application/json" @@ -12411,26 +12551,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrgbfbf59cf;pstestvmbfbf50/protectedItems/VM;iaasvmcontainerv2;pstestrgbfbf59cf;pstestvmbfbf50/recoveryPoints/322732250011238\",\r\n \"name\": \"322732250011238\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints\",\r\n \"properties\": {\r\n \"objectType\": \"IaasVMRecoveryPoint\",\r\n \"recoveryPointType\": \"AppConsistent\",\r\n \"recoveryPointTime\": \"2022-02-23T20:42:08.174482Z\",\r\n \"recoveryPointAdditionalInfo\": \"\",\r\n \"sourceVMStorageType\": \"NormalStorage\",\r\n \"isSourceVMEncrypted\": false,\r\n \"isInstantIlrSessionActive\": false,\r\n \"recoveryPointTierDetails\": [\r\n {\r\n \"type\": 1,\r\n \"status\": 1\r\n },\r\n {\r\n \"type\": 2,\r\n \"status\": 1\r\n }\r\n ],\r\n \"isManagedVirtualMachine\": true,\r\n \"virtualMachineSize\": \"Standard_D1_v2\",\r\n \"originalStorageAccountOption\": false,\r\n \"osType\": \"Windows\",\r\n \"recoveryPointMoveReadinessInfo\": {\r\n \"ArchivedRP\": {\r\n \"isReadyForMove\": false,\r\n \"additionalInfo\": \"Recovery point cannot be moved to Archive tier due to insufficient retention duration specified in policy.. Update policy on the protected item with appropriate retention setting and try again.\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"f8dc513c-7421-4a6d-8129-72be775bbba8\",\r\n \"name\": \"f8dc513c-7421-4a6d-8129-72be775bbba8\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T18:55:10.1934772Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupFabrics/Azure/protectionContainers/IaasVMContainer%3Biaasvmcontainerv2%3Bpstestrgbfbf59cf%3Bpstestvmbfbf50/protectedItems/VM%3Biaasvmcontainerv2%3Bpstestrgbfbf59cf%3Bpstestvmbfbf50?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZiZjU5Y2YvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmJmNTljZi9iYWNrdXBGYWJyaWNzL0F6dXJlL3Byb3RlY3Rpb25Db250YWluZXJzL0lhYXNWTUNvbnRhaW5lciUzQmlhYXN2bWNvbnRhaW5lcnYyJTNCcHN0ZXN0cmdiZmJmNTljZiUzQnBzdGVzdHZtYmZiZjUwL3Byb3RlY3RlZEl0ZW1zL1ZNJTNCaWFhc3ZtY29udGFpbmVydjIlM0Jwc3Rlc3RyZ2JmYmY1OWNmJTNCcHN0ZXN0dm1iZmJmNTA/YXBpLXZlcnNpb249MjAyMS0xMC0wMQ==", - "RequestMethod": "DELETE", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupOperations/f8dc513c-7421-4a6d-8129-72be775bbba8?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNDhiNjFhN2QvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y0OGI2MWE3ZC9iYWNrdXBPcGVyYXRpb25zL2Y4ZGM1MTNjLTc0MjEtNGE2ZC04MTI5LTcyYmU3NzViYmJhOD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "883c6e64-b367-4b4e-855a-a3240ea2d653" + "185a9a0f-1c4c-4dc6-84c1-8c19e340683b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -12440,70 +12580,67 @@ "Pragma": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupOperationResults/04cc5dd5-fb82-4228-82a7-b0d66d2b4d5a?api-version=2021-10-01" - ], - "Retry-After": [ - "60" - ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupOperations/04cc5dd5-fb82-4228-82a7-b0d66d2b4d5a?api-version=2021-10-01" - ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "8360d557-259b-4f83-a0c9-e6a4827912a3" + "cc46f4a3-ffcc-4746-99ac-3499ca8827b7" ], "x-ms-client-request-id": [ - "883c6e64-b367-4b4e-855a-a3240ea2d653", - "883c6e64-b367-4b4e-855a-a3240ea2d653" + "185a9a0f-1c4c-4dc6-84c1-8c19e340683b", + "185a9a0f-1c4c-4dc6-84c1-8c19e340683b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-IIS/10.0" + ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ - "14999" + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "131" ], "x-ms-correlation-request-id": [ - "8360d557-259b-4f83-a0c9-e6a4827912a3" + "cc46f4a3-ffcc-4746-99ac-3499ca8827b7" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T214327Z:8360d557-259b-4f83-a0c9-e6a4827912a3" + "WESTINDIA:20220516T185549Z:cc46f4a3-ffcc-4746-99ac-3499ca8827b7" ], "Date": [ - "Wed, 23 Feb 2022 21:43:27 GMT" + "Mon, 16 May 2022 18:55:49 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, - "ResponseBody": "", - "StatusCode": 202 + "ResponseBody": "{\r\n \"id\": \"f8dc513c-7421-4a6d-8129-72be775bbba8\",\r\n \"name\": \"f8dc513c-7421-4a6d-8129-72be775bbba8\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T18:55:10.1934772Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupOperations/04cc5dd5-fb82-4228-82a7-b0d66d2b4d5a?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZiZjU5Y2YvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmJmNTljZi9iYWNrdXBPcGVyYXRpb25zLzA0Y2M1ZGQ1LWZiODItNDIyOC04MmE3LWIwZDY2ZDJiNGQ1YT9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupOperations/f8dc513c-7421-4a6d-8129-72be775bbba8?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNDhiNjFhN2QvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y0OGI2MWE3ZC9iYWNrdXBPcGVyYXRpb25zL2Y4ZGM1MTNjLTc0MjEtNGE2ZC04MTI5LTcyYmU3NzViYmJhOD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "883c6e64-b367-4b4e-855a-a3240ea2d653" + "185a9a0f-1c4c-4dc6-84c1-8c19e340683b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -12517,11 +12654,11 @@ "nosniff" ], "x-ms-request-id": [ - "fbe5f1f5-2163-4de3-8df8-0cd9d4642f5b" + "50500dee-62e9-408c-8aa1-2fa73d7bf4e2" ], "x-ms-client-request-id": [ - "883c6e64-b367-4b4e-855a-a3240ea2d653", - "883c6e64-b367-4b4e-855a-a3240ea2d653" + "185a9a0f-1c4c-4dc6-84c1-8c19e340683b", + "185a9a0f-1c4c-4dc6-84c1-8c19e340683b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -12533,16 +12670,16 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "139" + "130" ], "x-ms-correlation-request-id": [ - "fbe5f1f5-2163-4de3-8df8-0cd9d4642f5b" + "50500dee-62e9-408c-8aa1-2fa73d7bf4e2" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T214328Z:fbe5f1f5-2163-4de3-8df8-0cd9d4642f5b" + "WESTINDIA:20220516T185555Z:50500dee-62e9-408c-8aa1-2fa73d7bf4e2" ], "Date": [ - "Wed, 23 Feb 2022 21:43:27 GMT" + "Mon, 16 May 2022 18:55:54 GMT" ], "Content-Length": [ "188" @@ -12554,26 +12691,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"04cc5dd5-fb82-4228-82a7-b0d66d2b4d5a\",\r\n \"name\": \"04cc5dd5-fb82-4228-82a7-b0d66d2b4d5a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-23T21:43:27.3548555Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"f8dc513c-7421-4a6d-8129-72be775bbba8\",\r\n \"name\": \"f8dc513c-7421-4a6d-8129-72be775bbba8\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T18:55:10.1934772Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupOperations/04cc5dd5-fb82-4228-82a7-b0d66d2b4d5a?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZiZjU5Y2YvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmJmNTljZi9iYWNrdXBPcGVyYXRpb25zLzA0Y2M1ZGQ1LWZiODItNDIyOC04MmE3LWIwZDY2ZDJiNGQ1YT9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupOperations/f8dc513c-7421-4a6d-8129-72be775bbba8?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNDhiNjFhN2QvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y0OGI2MWE3ZC9iYWNrdXBPcGVyYXRpb25zL2Y4ZGM1MTNjLTc0MjEtNGE2ZC04MTI5LTcyYmU3NzViYmJhOD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "883c6e64-b367-4b4e-855a-a3240ea2d653" + "185a9a0f-1c4c-4dc6-84c1-8c19e340683b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -12587,11 +12724,11 @@ "nosniff" ], "x-ms-request-id": [ - "d3ecdce7-3c9e-40e7-be59-fd23aa181ad9" + "43366ae0-4e0e-446f-9e12-9284c5aafc74" ], "x-ms-client-request-id": [ - "883c6e64-b367-4b4e-855a-a3240ea2d653", - "883c6e64-b367-4b4e-855a-a3240ea2d653" + "185a9a0f-1c4c-4dc6-84c1-8c19e340683b", + "185a9a0f-1c4c-4dc6-84c1-8c19e340683b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -12603,366 +12740,16 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "138" - ], - "x-ms-correlation-request-id": [ - "d3ecdce7-3c9e-40e7-be59-fd23aa181ad9" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20220223T214333Z:d3ecdce7-3c9e-40e7-be59-fd23aa181ad9" - ], - "Date": [ - "Wed, 23 Feb 2022 21:43:33 GMT" - ], - "Content-Length": [ - "188" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"04cc5dd5-fb82-4228-82a7-b0d66d2b4d5a\",\r\n \"name\": \"04cc5dd5-fb82-4228-82a7-b0d66d2b4d5a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-23T21:43:27.3548555Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupOperations/04cc5dd5-fb82-4228-82a7-b0d66d2b4d5a?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZiZjU5Y2YvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmJmNTljZi9iYWNrdXBPcGVyYXRpb25zLzA0Y2M1ZGQ1LWZiODItNDIyOC04MmE3LWIwZDY2ZDJiNGQ1YT9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "883c6e64-b367-4b4e-855a-a3240ea2d653" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.700.21.56803", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "x-ms-request-id": [ - "894563f6-31d4-4fde-9f33-9c399f4e1e8b" - ], - "x-ms-client-request-id": [ - "883c6e64-b367-4b4e-855a-a3240ea2d653", - "883c6e64-b367-4b4e-855a-a3240ea2d653" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "137" - ], - "x-ms-correlation-request-id": [ - "894563f6-31d4-4fde-9f33-9c399f4e1e8b" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20220223T214339Z:894563f6-31d4-4fde-9f33-9c399f4e1e8b" - ], - "Date": [ - "Wed, 23 Feb 2022 21:43:39 GMT" - ], - "Content-Length": [ - "188" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"04cc5dd5-fb82-4228-82a7-b0d66d2b4d5a\",\r\n \"name\": \"04cc5dd5-fb82-4228-82a7-b0d66d2b4d5a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-23T21:43:27.3548555Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupOperations/04cc5dd5-fb82-4228-82a7-b0d66d2b4d5a?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZiZjU5Y2YvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmJmNTljZi9iYWNrdXBPcGVyYXRpb25zLzA0Y2M1ZGQ1LWZiODItNDIyOC04MmE3LWIwZDY2ZDJiNGQ1YT9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "883c6e64-b367-4b4e-855a-a3240ea2d653" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.700.21.56803", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "x-ms-request-id": [ - "15faa190-8a5f-4165-8e4b-f0784a1ca3a1" - ], - "x-ms-client-request-id": [ - "883c6e64-b367-4b4e-855a-a3240ea2d653", - "883c6e64-b367-4b4e-855a-a3240ea2d653" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "136" - ], - "x-ms-correlation-request-id": [ - "15faa190-8a5f-4165-8e4b-f0784a1ca3a1" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20220223T214345Z:15faa190-8a5f-4165-8e4b-f0784a1ca3a1" - ], - "Date": [ - "Wed, 23 Feb 2022 21:43:44 GMT" - ], - "Content-Length": [ - "188" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"04cc5dd5-fb82-4228-82a7-b0d66d2b4d5a\",\r\n \"name\": \"04cc5dd5-fb82-4228-82a7-b0d66d2b4d5a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-23T21:43:27.3548555Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupOperations/04cc5dd5-fb82-4228-82a7-b0d66d2b4d5a?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZiZjU5Y2YvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmJmNTljZi9iYWNrdXBPcGVyYXRpb25zLzA0Y2M1ZGQ1LWZiODItNDIyOC04MmE3LWIwZDY2ZDJiNGQ1YT9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "883c6e64-b367-4b4e-855a-a3240ea2d653" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.700.21.56803", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "x-ms-request-id": [ - "09a03ea4-6d0e-4a88-90eb-c92eabe1f518" - ], - "x-ms-client-request-id": [ - "883c6e64-b367-4b4e-855a-a3240ea2d653", - "883c6e64-b367-4b4e-855a-a3240ea2d653" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "135" - ], - "x-ms-correlation-request-id": [ - "09a03ea4-6d0e-4a88-90eb-c92eabe1f518" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20220223T214351Z:09a03ea4-6d0e-4a88-90eb-c92eabe1f518" - ], - "Date": [ - "Wed, 23 Feb 2022 21:43:50 GMT" - ], - "Content-Length": [ - "188" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"04cc5dd5-fb82-4228-82a7-b0d66d2b4d5a\",\r\n \"name\": \"04cc5dd5-fb82-4228-82a7-b0d66d2b4d5a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-23T21:43:27.3548555Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupOperations/04cc5dd5-fb82-4228-82a7-b0d66d2b4d5a?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZiZjU5Y2YvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmJmNTljZi9iYWNrdXBPcGVyYXRpb25zLzA0Y2M1ZGQ1LWZiODItNDIyOC04MmE3LWIwZDY2ZDJiNGQ1YT9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "883c6e64-b367-4b4e-855a-a3240ea2d653" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.700.21.56803", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "x-ms-request-id": [ - "757dd220-323a-4910-a0c0-3afabbbd75eb" - ], - "x-ms-client-request-id": [ - "883c6e64-b367-4b4e-855a-a3240ea2d653", - "883c6e64-b367-4b4e-855a-a3240ea2d653" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "134" - ], - "x-ms-correlation-request-id": [ - "757dd220-323a-4910-a0c0-3afabbbd75eb" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20220223T214411Z:757dd220-323a-4910-a0c0-3afabbbd75eb" - ], - "Date": [ - "Wed, 23 Feb 2022 21:44:10 GMT" - ], - "Content-Length": [ - "188" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"04cc5dd5-fb82-4228-82a7-b0d66d2b4d5a\",\r\n \"name\": \"04cc5dd5-fb82-4228-82a7-b0d66d2b4d5a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-23T21:43:27.3548555Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupOperations/04cc5dd5-fb82-4228-82a7-b0d66d2b4d5a?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZiZjU5Y2YvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmJmNTljZi9iYWNrdXBPcGVyYXRpb25zLzA0Y2M1ZGQ1LWZiODItNDIyOC04MmE3LWIwZDY2ZDJiNGQ1YT9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "883c6e64-b367-4b4e-855a-a3240ea2d653" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.700.21.56803", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "x-ms-request-id": [ - "4068f71d-aaf0-4ff6-8ab1-6ea6ade4cef5" - ], - "x-ms-client-request-id": [ - "883c6e64-b367-4b4e-855a-a3240ea2d653", - "883c6e64-b367-4b4e-855a-a3240ea2d653" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "133" + "129" ], "x-ms-correlation-request-id": [ - "4068f71d-aaf0-4ff6-8ab1-6ea6ade4cef5" + "43366ae0-4e0e-446f-9e12-9284c5aafc74" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T214417Z:4068f71d-aaf0-4ff6-8ab1-6ea6ade4cef5" + "WESTINDIA:20220516T185600Z:43366ae0-4e0e-446f-9e12-9284c5aafc74" ], "Date": [ - "Wed, 23 Feb 2022 21:44:16 GMT" + "Mon, 16 May 2022 18:55:59 GMT" ], "Content-Length": [ "188" @@ -12974,26 +12761,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"04cc5dd5-fb82-4228-82a7-b0d66d2b4d5a\",\r\n \"name\": \"04cc5dd5-fb82-4228-82a7-b0d66d2b4d5a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-23T21:43:27.3548555Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"f8dc513c-7421-4a6d-8129-72be775bbba8\",\r\n \"name\": \"f8dc513c-7421-4a6d-8129-72be775bbba8\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T18:55:10.1934772Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupOperations/04cc5dd5-fb82-4228-82a7-b0d66d2b4d5a?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZiZjU5Y2YvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmJmNTljZi9iYWNrdXBPcGVyYXRpb25zLzA0Y2M1ZGQ1LWZiODItNDIyOC04MmE3LWIwZDY2ZDJiNGQ1YT9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupOperations/f8dc513c-7421-4a6d-8129-72be775bbba8?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNDhiNjFhN2QvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y0OGI2MWE3ZC9iYWNrdXBPcGVyYXRpb25zL2Y4ZGM1MTNjLTc0MjEtNGE2ZC04MTI5LTcyYmU3NzViYmJhOD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "883c6e64-b367-4b4e-855a-a3240ea2d653" + "185a9a0f-1c4c-4dc6-84c1-8c19e340683b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -13007,11 +12794,11 @@ "nosniff" ], "x-ms-request-id": [ - "10265d26-fc50-4293-adbc-6991bb43f72b" + "2dda290d-4d8b-44eb-a9ab-f5c74621612a" ], "x-ms-client-request-id": [ - "883c6e64-b367-4b4e-855a-a3240ea2d653", - "883c6e64-b367-4b4e-855a-a3240ea2d653" + "185a9a0f-1c4c-4dc6-84c1-8c19e340683b", + "185a9a0f-1c4c-4dc6-84c1-8c19e340683b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -13023,16 +12810,16 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "132" + "128" ], "x-ms-correlation-request-id": [ - "10265d26-fc50-4293-adbc-6991bb43f72b" + "2dda290d-4d8b-44eb-a9ab-f5c74621612a" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T214422Z:10265d26-fc50-4293-adbc-6991bb43f72b" + "WESTINDIA:20220516T185606Z:2dda290d-4d8b-44eb-a9ab-f5c74621612a" ], "Date": [ - "Wed, 23 Feb 2022 21:44:21 GMT" + "Mon, 16 May 2022 18:56:05 GMT" ], "Content-Length": [ "188" @@ -13044,26 +12831,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"04cc5dd5-fb82-4228-82a7-b0d66d2b4d5a\",\r\n \"name\": \"04cc5dd5-fb82-4228-82a7-b0d66d2b4d5a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-23T21:43:27.3548555Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"f8dc513c-7421-4a6d-8129-72be775bbba8\",\r\n \"name\": \"f8dc513c-7421-4a6d-8129-72be775bbba8\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T18:55:10.1934772Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupOperations/04cc5dd5-fb82-4228-82a7-b0d66d2b4d5a?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZiZjU5Y2YvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmJmNTljZi9iYWNrdXBPcGVyYXRpb25zLzA0Y2M1ZGQ1LWZiODItNDIyOC04MmE3LWIwZDY2ZDJiNGQ1YT9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupOperations/f8dc513c-7421-4a6d-8129-72be775bbba8?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNDhiNjFhN2QvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y0OGI2MWE3ZC9iYWNrdXBPcGVyYXRpb25zL2Y4ZGM1MTNjLTc0MjEtNGE2ZC04MTI5LTcyYmU3NzViYmJhOD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "883c6e64-b367-4b4e-855a-a3240ea2d653" + "185a9a0f-1c4c-4dc6-84c1-8c19e340683b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -13077,11 +12864,11 @@ "nosniff" ], "x-ms-request-id": [ - "f4e34353-afab-45b7-a260-63b02f6e5233" + "3ab1ec14-3107-4e25-ac80-75def43aeaf5" ], "x-ms-client-request-id": [ - "883c6e64-b367-4b4e-855a-a3240ea2d653", - "883c6e64-b367-4b4e-855a-a3240ea2d653" + "185a9a0f-1c4c-4dc6-84c1-8c19e340683b", + "185a9a0f-1c4c-4dc6-84c1-8c19e340683b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -13093,16 +12880,16 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "131" + "127" ], "x-ms-correlation-request-id": [ - "f4e34353-afab-45b7-a260-63b02f6e5233" + "3ab1ec14-3107-4e25-ac80-75def43aeaf5" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T214428Z:f4e34353-afab-45b7-a260-63b02f6e5233" + "WESTINDIA:20220516T185611Z:3ab1ec14-3107-4e25-ac80-75def43aeaf5" ], "Date": [ - "Wed, 23 Feb 2022 21:44:27 GMT" + "Mon, 16 May 2022 18:56:10 GMT" ], "Content-Length": [ "188" @@ -13114,26 +12901,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"04cc5dd5-fb82-4228-82a7-b0d66d2b4d5a\",\r\n \"name\": \"04cc5dd5-fb82-4228-82a7-b0d66d2b4d5a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-23T21:43:27.3548555Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"f8dc513c-7421-4a6d-8129-72be775bbba8\",\r\n \"name\": \"f8dc513c-7421-4a6d-8129-72be775bbba8\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T18:55:10.1934772Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupOperations/04cc5dd5-fb82-4228-82a7-b0d66d2b4d5a?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZiZjU5Y2YvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmJmNTljZi9iYWNrdXBPcGVyYXRpb25zLzA0Y2M1ZGQ1LWZiODItNDIyOC04MmE3LWIwZDY2ZDJiNGQ1YT9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupOperations/f8dc513c-7421-4a6d-8129-72be775bbba8?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNDhiNjFhN2QvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y0OGI2MWE3ZC9iYWNrdXBPcGVyYXRpb25zL2Y4ZGM1MTNjLTc0MjEtNGE2ZC04MTI5LTcyYmU3NzViYmJhOD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "883c6e64-b367-4b4e-855a-a3240ea2d653" + "185a9a0f-1c4c-4dc6-84c1-8c19e340683b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -13147,11 +12934,11 @@ "nosniff" ], "x-ms-request-id": [ - "2b67bf2a-3266-4a5f-9067-5d0f0021dfc1" + "65bbe5a7-02a1-446d-907c-9083924357aa" ], "x-ms-client-request-id": [ - "883c6e64-b367-4b4e-855a-a3240ea2d653", - "883c6e64-b367-4b4e-855a-a3240ea2d653" + "185a9a0f-1c4c-4dc6-84c1-8c19e340683b", + "185a9a0f-1c4c-4dc6-84c1-8c19e340683b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -13163,16 +12950,16 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "130" + "126" ], "x-ms-correlation-request-id": [ - "2b67bf2a-3266-4a5f-9067-5d0f0021dfc1" + "65bbe5a7-02a1-446d-907c-9083924357aa" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T214433Z:2b67bf2a-3266-4a5f-9067-5d0f0021dfc1" + "WESTINDIA:20220516T185617Z:65bbe5a7-02a1-446d-907c-9083924357aa" ], "Date": [ - "Wed, 23 Feb 2022 21:44:32 GMT" + "Mon, 16 May 2022 18:56:16 GMT" ], "Content-Length": [ "188" @@ -13184,26 +12971,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"04cc5dd5-fb82-4228-82a7-b0d66d2b4d5a\",\r\n \"name\": \"04cc5dd5-fb82-4228-82a7-b0d66d2b4d5a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-23T21:43:27.3548555Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"f8dc513c-7421-4a6d-8129-72be775bbba8\",\r\n \"name\": \"f8dc513c-7421-4a6d-8129-72be775bbba8\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T18:55:10.1934772Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupOperations/04cc5dd5-fb82-4228-82a7-b0d66d2b4d5a?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZiZjU5Y2YvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmJmNTljZi9iYWNrdXBPcGVyYXRpb25zLzA0Y2M1ZGQ1LWZiODItNDIyOC04MmE3LWIwZDY2ZDJiNGQ1YT9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupOperations/f8dc513c-7421-4a6d-8129-72be775bbba8?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNDhiNjFhN2QvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y0OGI2MWE3ZC9iYWNrdXBPcGVyYXRpb25zL2Y4ZGM1MTNjLTc0MjEtNGE2ZC04MTI5LTcyYmU3NzViYmJhOD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "883c6e64-b367-4b4e-855a-a3240ea2d653" + "185a9a0f-1c4c-4dc6-84c1-8c19e340683b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -13217,11 +13004,11 @@ "nosniff" ], "x-ms-request-id": [ - "7eb40594-7e94-447b-96da-704a77bfa374" + "3d024785-2e1e-4373-941a-adb651780eb9" ], "x-ms-client-request-id": [ - "883c6e64-b367-4b4e-855a-a3240ea2d653", - "883c6e64-b367-4b4e-855a-a3240ea2d653" + "185a9a0f-1c4c-4dc6-84c1-8c19e340683b", + "185a9a0f-1c4c-4dc6-84c1-8c19e340683b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -13233,16 +13020,16 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "129" + "125" ], "x-ms-correlation-request-id": [ - "7eb40594-7e94-447b-96da-704a77bfa374" + "3d024785-2e1e-4373-941a-adb651780eb9" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T214439Z:7eb40594-7e94-447b-96da-704a77bfa374" + "WESTINDIA:20220516T185622Z:3d024785-2e1e-4373-941a-adb651780eb9" ], "Date": [ - "Wed, 23 Feb 2022 21:44:38 GMT" + "Mon, 16 May 2022 18:56:22 GMT" ], "Content-Length": [ "188" @@ -13254,26 +13041,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"04cc5dd5-fb82-4228-82a7-b0d66d2b4d5a\",\r\n \"name\": \"04cc5dd5-fb82-4228-82a7-b0d66d2b4d5a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-23T21:43:27.3548555Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"f8dc513c-7421-4a6d-8129-72be775bbba8\",\r\n \"name\": \"f8dc513c-7421-4a6d-8129-72be775bbba8\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T18:55:10.1934772Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupOperations/04cc5dd5-fb82-4228-82a7-b0d66d2b4d5a?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZiZjU5Y2YvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmJmNTljZi9iYWNrdXBPcGVyYXRpb25zLzA0Y2M1ZGQ1LWZiODItNDIyOC04MmE3LWIwZDY2ZDJiNGQ1YT9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupOperations/f8dc513c-7421-4a6d-8129-72be775bbba8?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNDhiNjFhN2QvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y0OGI2MWE3ZC9iYWNrdXBPcGVyYXRpb25zL2Y4ZGM1MTNjLTc0MjEtNGE2ZC04MTI5LTcyYmU3NzViYmJhOD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "883c6e64-b367-4b4e-855a-a3240ea2d653" + "185a9a0f-1c4c-4dc6-84c1-8c19e340683b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -13287,11 +13074,11 @@ "nosniff" ], "x-ms-request-id": [ - "bd0dbef5-5cbc-453a-9e47-e603c5391eff" + "4ba3cde3-f9d9-4151-9510-b3aa8763ea50" ], "x-ms-client-request-id": [ - "883c6e64-b367-4b4e-855a-a3240ea2d653", - "883c6e64-b367-4b4e-855a-a3240ea2d653" + "185a9a0f-1c4c-4dc6-84c1-8c19e340683b", + "185a9a0f-1c4c-4dc6-84c1-8c19e340683b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -13303,16 +13090,16 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "128" + "124" ], "x-ms-correlation-request-id": [ - "bd0dbef5-5cbc-453a-9e47-e603c5391eff" + "4ba3cde3-f9d9-4151-9510-b3aa8763ea50" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T214444Z:bd0dbef5-5cbc-453a-9e47-e603c5391eff" + "WESTINDIA:20220516T185628Z:4ba3cde3-f9d9-4151-9510-b3aa8763ea50" ], "Date": [ - "Wed, 23 Feb 2022 21:44:43 GMT" + "Mon, 16 May 2022 18:56:28 GMT" ], "Content-Length": [ "188" @@ -13324,26 +13111,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"04cc5dd5-fb82-4228-82a7-b0d66d2b4d5a\",\r\n \"name\": \"04cc5dd5-fb82-4228-82a7-b0d66d2b4d5a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-23T21:43:27.3548555Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"f8dc513c-7421-4a6d-8129-72be775bbba8\",\r\n \"name\": \"f8dc513c-7421-4a6d-8129-72be775bbba8\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T18:55:10.1934772Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupOperations/04cc5dd5-fb82-4228-82a7-b0d66d2b4d5a?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZiZjU5Y2YvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmJmNTljZi9iYWNrdXBPcGVyYXRpb25zLzA0Y2M1ZGQ1LWZiODItNDIyOC04MmE3LWIwZDY2ZDJiNGQ1YT9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupOperations/f8dc513c-7421-4a6d-8129-72be775bbba8?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNDhiNjFhN2QvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y0OGI2MWE3ZC9iYWNrdXBPcGVyYXRpb25zL2Y4ZGM1MTNjLTc0MjEtNGE2ZC04MTI5LTcyYmU3NzViYmJhOD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "883c6e64-b367-4b4e-855a-a3240ea2d653" + "185a9a0f-1c4c-4dc6-84c1-8c19e340683b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -13357,11 +13144,11 @@ "nosniff" ], "x-ms-request-id": [ - "2aaaec4d-a8fd-425a-a4c4-c6f920329b39" + "d92add2b-580c-4892-b711-5a9a47bc651a" ], "x-ms-client-request-id": [ - "883c6e64-b367-4b4e-855a-a3240ea2d653", - "883c6e64-b367-4b4e-855a-a3240ea2d653" + "185a9a0f-1c4c-4dc6-84c1-8c19e340683b", + "185a9a0f-1c4c-4dc6-84c1-8c19e340683b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -13373,16 +13160,16 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "127" + "123" ], "x-ms-correlation-request-id": [ - "2aaaec4d-a8fd-425a-a4c4-c6f920329b39" + "d92add2b-580c-4892-b711-5a9a47bc651a" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T214450Z:2aaaec4d-a8fd-425a-a4c4-c6f920329b39" + "WESTINDIA:20220516T185633Z:d92add2b-580c-4892-b711-5a9a47bc651a" ], "Date": [ - "Wed, 23 Feb 2022 21:44:49 GMT" + "Mon, 16 May 2022 18:56:33 GMT" ], "Content-Length": [ "188" @@ -13394,26 +13181,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"04cc5dd5-fb82-4228-82a7-b0d66d2b4d5a\",\r\n \"name\": \"04cc5dd5-fb82-4228-82a7-b0d66d2b4d5a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-23T21:43:27.3548555Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"f8dc513c-7421-4a6d-8129-72be775bbba8\",\r\n \"name\": \"f8dc513c-7421-4a6d-8129-72be775bbba8\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T18:55:10.1934772Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupOperations/04cc5dd5-fb82-4228-82a7-b0d66d2b4d5a?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZiZjU5Y2YvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmJmNTljZi9iYWNrdXBPcGVyYXRpb25zLzA0Y2M1ZGQ1LWZiODItNDIyOC04MmE3LWIwZDY2ZDJiNGQ1YT9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupOperations/f8dc513c-7421-4a6d-8129-72be775bbba8?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNDhiNjFhN2QvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y0OGI2MWE3ZC9iYWNrdXBPcGVyYXRpb25zL2Y4ZGM1MTNjLTc0MjEtNGE2ZC04MTI5LTcyYmU3NzViYmJhOD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "883c6e64-b367-4b4e-855a-a3240ea2d653" + "185a9a0f-1c4c-4dc6-84c1-8c19e340683b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -13427,11 +13214,11 @@ "nosniff" ], "x-ms-request-id": [ - "5528b17e-4661-4ccd-a917-4bd8b75230e6" + "abbe2456-cdbe-4225-bf28-3963d3c4d28c" ], "x-ms-client-request-id": [ - "883c6e64-b367-4b4e-855a-a3240ea2d653", - "883c6e64-b367-4b4e-855a-a3240ea2d653" + "185a9a0f-1c4c-4dc6-84c1-8c19e340683b", + "185a9a0f-1c4c-4dc6-84c1-8c19e340683b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -13443,16 +13230,16 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "126" + "122" ], "x-ms-correlation-request-id": [ - "5528b17e-4661-4ccd-a917-4bd8b75230e6" + "abbe2456-cdbe-4225-bf28-3963d3c4d28c" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T214456Z:5528b17e-4661-4ccd-a917-4bd8b75230e6" + "WESTINDIA:20220516T185639Z:abbe2456-cdbe-4225-bf28-3963d3c4d28c" ], "Date": [ - "Wed, 23 Feb 2022 21:44:56 GMT" + "Mon, 16 May 2022 18:56:38 GMT" ], "Content-Length": [ "188" @@ -13464,26 +13251,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"04cc5dd5-fb82-4228-82a7-b0d66d2b4d5a\",\r\n \"name\": \"04cc5dd5-fb82-4228-82a7-b0d66d2b4d5a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-23T21:43:27.3548555Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"f8dc513c-7421-4a6d-8129-72be775bbba8\",\r\n \"name\": \"f8dc513c-7421-4a6d-8129-72be775bbba8\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T18:55:10.1934772Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupOperations/04cc5dd5-fb82-4228-82a7-b0d66d2b4d5a?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZiZjU5Y2YvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmJmNTljZi9iYWNrdXBPcGVyYXRpb25zLzA0Y2M1ZGQ1LWZiODItNDIyOC04MmE3LWIwZDY2ZDJiNGQ1YT9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupOperations/f8dc513c-7421-4a6d-8129-72be775bbba8?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNDhiNjFhN2QvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y0OGI2MWE3ZC9iYWNrdXBPcGVyYXRpb25zL2Y4ZGM1MTNjLTc0MjEtNGE2ZC04MTI5LTcyYmU3NzViYmJhOD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "883c6e64-b367-4b4e-855a-a3240ea2d653" + "185a9a0f-1c4c-4dc6-84c1-8c19e340683b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -13497,11 +13284,11 @@ "nosniff" ], "x-ms-request-id": [ - "b8d15c35-3f9a-454b-abce-dd3475be8fa8" + "994d0eb5-9b89-404d-b1d7-fd5f5fd10d3e" ], "x-ms-client-request-id": [ - "883c6e64-b367-4b4e-855a-a3240ea2d653", - "883c6e64-b367-4b4e-855a-a3240ea2d653" + "185a9a0f-1c4c-4dc6-84c1-8c19e340683b", + "185a9a0f-1c4c-4dc6-84c1-8c19e340683b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -13513,16 +13300,16 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "135" + "121" ], "x-ms-correlation-request-id": [ - "b8d15c35-3f9a-454b-abce-dd3475be8fa8" + "994d0eb5-9b89-404d-b1d7-fd5f5fd10d3e" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T214501Z:b8d15c35-3f9a-454b-abce-dd3475be8fa8" + "WESTINDIA:20220516T185644Z:994d0eb5-9b89-404d-b1d7-fd5f5fd10d3e" ], "Date": [ - "Wed, 23 Feb 2022 21:45:01 GMT" + "Mon, 16 May 2022 18:56:44 GMT" ], "Content-Length": [ "188" @@ -13534,26 +13321,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"04cc5dd5-fb82-4228-82a7-b0d66d2b4d5a\",\r\n \"name\": \"04cc5dd5-fb82-4228-82a7-b0d66d2b4d5a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-23T21:43:27.3548555Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"f8dc513c-7421-4a6d-8129-72be775bbba8\",\r\n \"name\": \"f8dc513c-7421-4a6d-8129-72be775bbba8\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T18:55:10.1934772Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupOperations/04cc5dd5-fb82-4228-82a7-b0d66d2b4d5a?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZiZjU5Y2YvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmJmNTljZi9iYWNrdXBPcGVyYXRpb25zLzA0Y2M1ZGQ1LWZiODItNDIyOC04MmE3LWIwZDY2ZDJiNGQ1YT9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupOperations/f8dc513c-7421-4a6d-8129-72be775bbba8?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNDhiNjFhN2QvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y0OGI2MWE3ZC9iYWNrdXBPcGVyYXRpb25zL2Y4ZGM1MTNjLTc0MjEtNGE2ZC04MTI5LTcyYmU3NzViYmJhOD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "883c6e64-b367-4b4e-855a-a3240ea2d653" + "185a9a0f-1c4c-4dc6-84c1-8c19e340683b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -13567,11 +13354,11 @@ "nosniff" ], "x-ms-request-id": [ - "5e8cb9f5-c69a-4c8a-93ef-0a6c54e01bd2" + "7b4cf57c-824c-4b9e-b56d-aba3cc04373b" ], "x-ms-client-request-id": [ - "883c6e64-b367-4b4e-855a-a3240ea2d653", - "883c6e64-b367-4b4e-855a-a3240ea2d653" + "185a9a0f-1c4c-4dc6-84c1-8c19e340683b", + "185a9a0f-1c4c-4dc6-84c1-8c19e340683b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -13583,16 +13370,16 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "134" + "120" ], "x-ms-correlation-request-id": [ - "5e8cb9f5-c69a-4c8a-93ef-0a6c54e01bd2" + "7b4cf57c-824c-4b9e-b56d-aba3cc04373b" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T214507Z:5e8cb9f5-c69a-4c8a-93ef-0a6c54e01bd2" + "WESTINDIA:20220516T185650Z:7b4cf57c-824c-4b9e-b56d-aba3cc04373b" ], "Date": [ - "Wed, 23 Feb 2022 21:45:07 GMT" + "Mon, 16 May 2022 18:56:49 GMT" ], "Content-Length": [ "188" @@ -13604,26 +13391,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"04cc5dd5-fb82-4228-82a7-b0d66d2b4d5a\",\r\n \"name\": \"04cc5dd5-fb82-4228-82a7-b0d66d2b4d5a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-23T21:43:27.3548555Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"f8dc513c-7421-4a6d-8129-72be775bbba8\",\r\n \"name\": \"f8dc513c-7421-4a6d-8129-72be775bbba8\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T18:55:10.1934772Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupOperations/04cc5dd5-fb82-4228-82a7-b0d66d2b4d5a?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZiZjU5Y2YvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmJmNTljZi9iYWNrdXBPcGVyYXRpb25zLzA0Y2M1ZGQ1LWZiODItNDIyOC04MmE3LWIwZDY2ZDJiNGQ1YT9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupOperations/f8dc513c-7421-4a6d-8129-72be775bbba8?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNDhiNjFhN2QvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y0OGI2MWE3ZC9iYWNrdXBPcGVyYXRpb25zL2Y4ZGM1MTNjLTc0MjEtNGE2ZC04MTI5LTcyYmU3NzViYmJhOD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "883c6e64-b367-4b4e-855a-a3240ea2d653" + "185a9a0f-1c4c-4dc6-84c1-8c19e340683b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -13637,11 +13424,11 @@ "nosniff" ], "x-ms-request-id": [ - "f4c602da-795e-45f7-97b2-5e23bd06cf8b" + "a4da186d-f0a0-4739-99ae-70433d2f8a76" ], "x-ms-client-request-id": [ - "883c6e64-b367-4b4e-855a-a3240ea2d653", - "883c6e64-b367-4b4e-855a-a3240ea2d653" + "185a9a0f-1c4c-4dc6-84c1-8c19e340683b", + "185a9a0f-1c4c-4dc6-84c1-8c19e340683b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -13653,16 +13440,16 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "133" + "119" ], "x-ms-correlation-request-id": [ - "f4c602da-795e-45f7-97b2-5e23bd06cf8b" + "a4da186d-f0a0-4739-99ae-70433d2f8a76" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T214512Z:f4c602da-795e-45f7-97b2-5e23bd06cf8b" + "WESTINDIA:20220516T185655Z:a4da186d-f0a0-4739-99ae-70433d2f8a76" ], "Date": [ - "Wed, 23 Feb 2022 21:45:12 GMT" + "Mon, 16 May 2022 18:56:54 GMT" ], "Content-Length": [ "188" @@ -13674,26 +13461,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"04cc5dd5-fb82-4228-82a7-b0d66d2b4d5a\",\r\n \"name\": \"04cc5dd5-fb82-4228-82a7-b0d66d2b4d5a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-23T21:43:27.3548555Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"f8dc513c-7421-4a6d-8129-72be775bbba8\",\r\n \"name\": \"f8dc513c-7421-4a6d-8129-72be775bbba8\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T18:55:10.1934772Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupOperations/04cc5dd5-fb82-4228-82a7-b0d66d2b4d5a?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZiZjU5Y2YvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmJmNTljZi9iYWNrdXBPcGVyYXRpb25zLzA0Y2M1ZGQ1LWZiODItNDIyOC04MmE3LWIwZDY2ZDJiNGQ1YT9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupOperations/f8dc513c-7421-4a6d-8129-72be775bbba8?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNDhiNjFhN2QvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y0OGI2MWE3ZC9iYWNrdXBPcGVyYXRpb25zL2Y4ZGM1MTNjLTc0MjEtNGE2ZC04MTI5LTcyYmU3NzViYmJhOD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "883c6e64-b367-4b4e-855a-a3240ea2d653" + "185a9a0f-1c4c-4dc6-84c1-8c19e340683b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -13707,11 +13494,11 @@ "nosniff" ], "x-ms-request-id": [ - "662f08d6-39f7-4257-b35d-6b47d479f4d0" + "21d66e10-3055-43ce-96a4-6cee0476bb44" ], "x-ms-client-request-id": [ - "883c6e64-b367-4b4e-855a-a3240ea2d653", - "883c6e64-b367-4b4e-855a-a3240ea2d653" + "185a9a0f-1c4c-4dc6-84c1-8c19e340683b", + "185a9a0f-1c4c-4dc6-84c1-8c19e340683b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -13723,16 +13510,16 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "132" + "118" ], "x-ms-correlation-request-id": [ - "662f08d6-39f7-4257-b35d-6b47d479f4d0" + "21d66e10-3055-43ce-96a4-6cee0476bb44" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T214518Z:662f08d6-39f7-4257-b35d-6b47d479f4d0" + "WESTINDIA:20220516T185701Z:21d66e10-3055-43ce-96a4-6cee0476bb44" ], "Date": [ - "Wed, 23 Feb 2022 21:45:17 GMT" + "Mon, 16 May 2022 18:57:00 GMT" ], "Content-Length": [ "188" @@ -13744,26 +13531,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"04cc5dd5-fb82-4228-82a7-b0d66d2b4d5a\",\r\n \"name\": \"04cc5dd5-fb82-4228-82a7-b0d66d2b4d5a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-02-23T21:43:27.3548555Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"f8dc513c-7421-4a6d-8129-72be775bbba8\",\r\n \"name\": \"f8dc513c-7421-4a6d-8129-72be775bbba8\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2022-05-16T18:55:10.1934772Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupOperations/04cc5dd5-fb82-4228-82a7-b0d66d2b4d5a?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZiZjU5Y2YvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmJmNTljZi9iYWNrdXBPcGVyYXRpb25zLzA0Y2M1ZGQ1LWZiODItNDIyOC04MmE3LWIwZDY2ZDJiNGQ1YT9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupOperations/f8dc513c-7421-4a6d-8129-72be775bbba8?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNDhiNjFhN2QvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y0OGI2MWE3ZC9iYWNrdXBPcGVyYXRpb25zL2Y4ZGM1MTNjLTc0MjEtNGE2ZC04MTI5LTcyYmU3NzViYmJhOD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "883c6e64-b367-4b4e-855a-a3240ea2d653" + "185a9a0f-1c4c-4dc6-84c1-8c19e340683b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -13777,11 +13564,11 @@ "nosniff" ], "x-ms-request-id": [ - "18030ed3-d4c8-48c5-8dd9-7ea111a7ffc6" + "29ec93a6-a8dc-4d0b-a1bb-3b496137ace1" ], "x-ms-client-request-id": [ - "883c6e64-b367-4b4e-855a-a3240ea2d653", - "883c6e64-b367-4b4e-855a-a3240ea2d653" + "185a9a0f-1c4c-4dc6-84c1-8c19e340683b", + "185a9a0f-1c4c-4dc6-84c1-8c19e340683b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -13793,16 +13580,16 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "131" + "117" ], "x-ms-correlation-request-id": [ - "18030ed3-d4c8-48c5-8dd9-7ea111a7ffc6" + "29ec93a6-a8dc-4d0b-a1bb-3b496137ace1" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T214523Z:18030ed3-d4c8-48c5-8dd9-7ea111a7ffc6" + "WESTINDIA:20220516T185706Z:29ec93a6-a8dc-4d0b-a1bb-3b496137ace1" ], "Date": [ - "Wed, 23 Feb 2022 21:45:23 GMT" + "Mon, 16 May 2022 18:57:05 GMT" ], "Content-Length": [ "304" @@ -13814,26 +13601,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"04cc5dd5-fb82-4228-82a7-b0d66d2b4d5a\",\r\n \"name\": \"04cc5dd5-fb82-4228-82a7-b0d66d2b4d5a\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-02-23T21:43:27.3548555Z\",\r\n \"endTime\": \"2022-02-23T21:43:27.3548555Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"527c91c3-af6d-4b90-b435-a24ef2eec958\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"f8dc513c-7421-4a6d-8129-72be775bbba8\",\r\n \"name\": \"f8dc513c-7421-4a6d-8129-72be775bbba8\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-05-16T18:55:10.1934772Z\",\r\n \"endTime\": \"2022-05-16T18:55:10.1934772Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"42cd2cb5-78fc-4f63-b75d-24f4e3aa424f\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupOperations/04cc5dd5-fb82-4228-82a7-b0d66d2b4d5a?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZiZjU5Y2YvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmJmNTljZi9iYWNrdXBPcGVyYXRpb25zLzA0Y2M1ZGQ1LWZiODItNDIyOC04MmE3LWIwZDY2ZDJiNGQ1YT9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupOperations/f8dc513c-7421-4a6d-8129-72be775bbba8?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNDhiNjFhN2QvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y0OGI2MWE3ZC9iYWNrdXBPcGVyYXRpb25zL2Y4ZGM1MTNjLTc0MjEtNGE2ZC04MTI5LTcyYmU3NzViYmJhOD9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "883c6e64-b367-4b4e-855a-a3240ea2d653" + "185a9a0f-1c4c-4dc6-84c1-8c19e340683b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -13847,11 +13634,11 @@ "nosniff" ], "x-ms-request-id": [ - "37d3d141-97e6-44b9-83f3-6831cea355cd" + "22ea822f-1d2c-4a3c-b423-2fc2899f021d" ], "x-ms-client-request-id": [ - "883c6e64-b367-4b4e-855a-a3240ea2d653", - "883c6e64-b367-4b4e-855a-a3240ea2d653" + "185a9a0f-1c4c-4dc6-84c1-8c19e340683b", + "185a9a0f-1c4c-4dc6-84c1-8c19e340683b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -13863,16 +13650,16 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "130" + "116" ], "x-ms-correlation-request-id": [ - "37d3d141-97e6-44b9-83f3-6831cea355cd" + "22ea822f-1d2c-4a3c-b423-2fc2899f021d" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T214524Z:37d3d141-97e6-44b9-83f3-6831cea355cd" + "WESTINDIA:20220516T185707Z:22ea822f-1d2c-4a3c-b423-2fc2899f021d" ], "Date": [ - "Wed, 23 Feb 2022 21:45:24 GMT" + "Mon, 16 May 2022 18:57:06 GMT" ], "Content-Length": [ "304" @@ -13884,26 +13671,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"04cc5dd5-fb82-4228-82a7-b0d66d2b4d5a\",\r\n \"name\": \"04cc5dd5-fb82-4228-82a7-b0d66d2b4d5a\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-02-23T21:43:27.3548555Z\",\r\n \"endTime\": \"2022-02-23T21:43:27.3548555Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"527c91c3-af6d-4b90-b435-a24ef2eec958\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"f8dc513c-7421-4a6d-8129-72be775bbba8\",\r\n \"name\": \"f8dc513c-7421-4a6d-8129-72be775bbba8\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2022-05-16T18:55:10.1934772Z\",\r\n \"endTime\": \"2022-05-16T18:55:10.1934772Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"42cd2cb5-78fc-4f63-b75d-24f4e3aa424f\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupJobs/527c91c3-af6d-4b90-b435-a24ef2eec958?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZiZjU5Y2YvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmJmNTljZi9iYWNrdXBKb2JzLzUyN2M5MWMzLWFmNmQtNGI5MC1iNDM1LWEyNGVmMmVlYzk1OD9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupJobs/42cd2cb5-78fc-4f63-b75d-24f4e3aa424f?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNDhiNjFhN2QvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y0OGI2MWE3ZC9iYWNrdXBKb2JzLzQyY2QyY2I1LTc4ZmMtNGY2My1iNzVkLTI0ZjRlM2FhNDI0Zj9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "883c6e64-b367-4b4e-855a-a3240ea2d653" + "185a9a0f-1c4c-4dc6-84c1-8c19e340683b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -13921,11 +13708,11 @@ "nosniff" ], "x-ms-request-id": [ - "95250dd6-0f53-4c1b-ba20-ff4174bafa7d" + "38d70498-22d6-4faa-bbbe-0de3653b9230" ], "x-ms-client-request-id": [ - "883c6e64-b367-4b4e-855a-a3240ea2d653", - "883c6e64-b367-4b4e-855a-a3240ea2d653" + "185a9a0f-1c4c-4dc6-84c1-8c19e340683b", + "185a9a0f-1c4c-4dc6-84c1-8c19e340683b" ], "X-Powered-By": [ "ASP.NET" @@ -13937,13 +13724,13 @@ "46" ], "x-ms-correlation-request-id": [ - "95250dd6-0f53-4c1b-ba20-ff4174bafa7d" + "38d70498-22d6-4faa-bbbe-0de3653b9230" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T214524Z:95250dd6-0f53-4c1b-ba20-ff4174bafa7d" + "WESTINDIA:20220516T185707Z:38d70498-22d6-4faa-bbbe-0de3653b9230" ], "Date": [ - "Wed, 23 Feb 2022 21:45:24 GMT" + "Mon, 16 May 2022 18:57:06 GMT" ], "Content-Length": [ "845" @@ -13955,23 +13742,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf/backupJobs/527c91c3-af6d-4b90-b435-a24ef2eec958\",\r\n \"name\": \"527c91c3-af6d-4b90-b435-a24ef2eec958\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"containerName\": \"iaasvmcontainerv2;pstestrgbfbf59cf;pstestvmbfbf50\",\r\n \"duration\": \"PT1M51.5016568S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"VM Name\": \"PSTestVMbfbf50\",\r\n \"Number of Recovery Points\": \"1\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"PSTestVMbfbf50\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"DeleteBackupData\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-02-23T21:43:27.3548555Z\",\r\n \"endTime\": \"2022-02-23T21:45:18.8565123Z\",\r\n \"activityId\": \"883c6e64-b367-4b4e-855a-a3240ea2d653\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d/backupJobs/42cd2cb5-78fc-4f63-b75d-24f4e3aa424f\",\r\n \"name\": \"42cd2cb5-78fc-4f63-b75d-24f4e3aa424f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"containerName\": \"iaasvmcontainerv2;pstestrg48b61a7d;pstestvm48b610\",\r\n \"duration\": \"PT1M51.4088367S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"VM Name\": \"PSTestVM48b610\",\r\n \"Number of Recovery Points\": \"1\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"PSTestVM48b610\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"DeleteBackupData\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2022-05-16T18:55:10.1934772Z\",\r\n \"endTime\": \"2022-05-16T18:57:01.6023139Z\",\r\n \"activityId\": \"185a9a0f-1c4c-4dc6-84c1-8c19e340683b\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/PSTestRGbfbf59cf/providers/Microsoft.RecoveryServices/vaults/PSTestRSVbfbf59cf?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYmZiZjU5Y2YvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZiZmJmNTljZj9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG48b61a7d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV48b61a7d?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNDhiNjFhN2QvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y0OGI2MWE3ZD9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bda9da0a-6ade-4fe7-888d-341947d69552" + "c942c0dd-f604-403f-bbbb-d8d9d09832e0" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesClient/4.3.2.0" @@ -13988,10 +13775,10 @@ "nosniff" ], "x-ms-request-id": [ - "c9409f25-25a1-4f29-ac63-478760a635da" + "74b26e05-3f2b-4d34-a02b-c08dcaa6d6dd" ], "x-ms-client-request-id": [ - "bda9da0a-6ade-4fe7-888d-341947d69552" + "c942c0dd-f604-403f-bbbb-d8d9d09832e0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -14000,13 +13787,13 @@ "9" ], "x-ms-correlation-request-id": [ - "c9409f25-25a1-4f29-ac63-478760a635da" + "74b26e05-3f2b-4d34-a02b-c08dcaa6d6dd" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T214538Z:c9409f25-25a1-4f29-ac63-478760a635da" + "JIOINDIAWEST:20220516T185716Z:74b26e05-3f2b-4d34-a02b-c08dcaa6d6dd" ], "Date": [ - "Wed, 23 Feb 2022 21:45:37 GMT" + "Mon, 16 May 2022 18:57:15 GMT" ], "Expires": [ "-1" @@ -14019,22 +13806,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourcegroups/PSTestRGbfbf59cf?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlZ3JvdXBzL1BTVGVzdFJHYmZiZjU5Y2Y/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourcegroups/PSTestRG48b61a7d?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlZ3JvdXBzL1BTVGVzdFJHNDhiNjFhN2Q/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2d727386-3346-4615-8e10-5f941183ef47" + "2d973c30-d2c3-44f7-af78-4fa7b4369a21" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" ] }, "ResponseHeaders": { @@ -14045,7 +13832,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0JGQkY1OUNGLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzQ4QjYxQTdELVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -14054,13 +13841,13 @@ "14999" ], "x-ms-request-id": [ - "4cf1ae07-d074-4a9b-925d-571e8e699f8c" + "ade750e1-971b-4f87-8002-ea14df27e360" ], "x-ms-correlation-request-id": [ - "4cf1ae07-d074-4a9b-925d-571e8e699f8c" + "ade750e1-971b-4f87-8002-ea14df27e360" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T214545Z:4cf1ae07-d074-4a9b-925d-571e8e699f8c" + "WESTINDIA:20220516T185719Z:ade750e1-971b-4f87-8002-ea14df27e360" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -14069,7 +13856,7 @@ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 21:45:44 GMT" + "Mon, 16 May 2022 18:57:18 GMT" ], "Expires": [ "-1" @@ -14082,16 +13869,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0JGQkY1OUNGLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSMEpHUWtZMU9VTkdMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzQ4QjYxQTdELVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelE0UWpZeFFUZEVMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" ] }, "ResponseHeaders": { @@ -14102,7 +13889,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0JGQkY1OUNGLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzQ4QjYxQTdELVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -14111,13 +13898,13 @@ "11999" ], "x-ms-request-id": [ - "32b9cc3e-a356-4340-8b14-41c40070d2c8" + "ebc13d4f-7f17-44fd-8dd8-9a35062ab8af" ], "x-ms-correlation-request-id": [ - "32b9cc3e-a356-4340-8b14-41c40070d2c8" + "ebc13d4f-7f17-44fd-8dd8-9a35062ab8af" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T214601Z:32b9cc3e-a356-4340-8b14-41c40070d2c8" + "WESTINDIA:20220516T185734Z:ebc13d4f-7f17-44fd-8dd8-9a35062ab8af" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -14126,7 +13913,7 @@ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 21:46:01 GMT" + "Mon, 16 May 2022 18:57:33 GMT" ], "Expires": [ "-1" @@ -14139,16 +13926,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0JGQkY1OUNGLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSMEpHUWtZMU9VTkdMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzQ4QjYxQTdELVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelE0UWpZeFFUZEVMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" ] }, "ResponseHeaders": { @@ -14159,7 +13946,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0JGQkY1OUNGLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzQ4QjYxQTdELVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -14168,13 +13955,13 @@ "11998" ], "x-ms-request-id": [ - "c2ab6e79-e50e-4ffc-9f31-4822ecb27c98" + "8ef37f66-dd87-4f4e-aa1d-c96599a1c2d5" ], "x-ms-correlation-request-id": [ - "c2ab6e79-e50e-4ffc-9f31-4822ecb27c98" + "8ef37f66-dd87-4f4e-aa1d-c96599a1c2d5" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T214616Z:c2ab6e79-e50e-4ffc-9f31-4822ecb27c98" + "WESTINDIA:20220516T185749Z:8ef37f66-dd87-4f4e-aa1d-c96599a1c2d5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -14183,7 +13970,7 @@ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 21:46:16 GMT" + "Mon, 16 May 2022 18:57:49 GMT" ], "Expires": [ "-1" @@ -14196,16 +13983,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0JGQkY1OUNGLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSMEpHUWtZMU9VTkdMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzQ4QjYxQTdELVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelE0UWpZeFFUZEVMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" ] }, "ResponseHeaders": { @@ -14216,7 +14003,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0JGQkY1OUNGLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzQ4QjYxQTdELVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -14225,13 +14012,13 @@ "11997" ], "x-ms-request-id": [ - "4c78f060-73db-4571-b142-c70d3f353ad0" + "c22cc8bf-501e-426a-aa61-e3572bc89967" ], "x-ms-correlation-request-id": [ - "4c78f060-73db-4571-b142-c70d3f353ad0" + "c22cc8bf-501e-426a-aa61-e3572bc89967" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T214632Z:4c78f060-73db-4571-b142-c70d3f353ad0" + "WESTINDIA:20220516T185804Z:c22cc8bf-501e-426a-aa61-e3572bc89967" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -14240,7 +14027,7 @@ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 21:46:31 GMT" + "Mon, 16 May 2022 18:58:04 GMT" ], "Expires": [ "-1" @@ -14253,16 +14040,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0JGQkY1OUNGLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSMEpHUWtZMU9VTkdMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzQ4QjYxQTdELVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelE0UWpZeFFUZEVMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" ] }, "ResponseHeaders": { @@ -14273,7 +14060,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0JGQkY1OUNGLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzQ4QjYxQTdELVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -14282,13 +14069,13 @@ "11996" ], "x-ms-request-id": [ - "a14098ea-e559-4d02-8d52-c48344725308" + "b2961db3-cf4f-4c8b-a1eb-43ed17ab39eb" ], "x-ms-correlation-request-id": [ - "a14098ea-e559-4d02-8d52-c48344725308" + "b2961db3-cf4f-4c8b-a1eb-43ed17ab39eb" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T214647Z:a14098ea-e559-4d02-8d52-c48344725308" + "WESTINDIA:20220516T185820Z:b2961db3-cf4f-4c8b-a1eb-43ed17ab39eb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -14297,7 +14084,7 @@ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 21:46:47 GMT" + "Mon, 16 May 2022 18:58:19 GMT" ], "Expires": [ "-1" @@ -14310,16 +14097,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0JGQkY1OUNGLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSMEpHUWtZMU9VTkdMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzQ4QjYxQTdELVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelE0UWpZeFFUZEVMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" ] }, "ResponseHeaders": { @@ -14330,7 +14117,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0JGQkY1OUNGLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzQ4QjYxQTdELVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -14339,13 +14126,13 @@ "11995" ], "x-ms-request-id": [ - "bf97a4c8-cc12-44c7-a0b4-880c6b17f6f1" + "fbcf356e-50c2-4c02-a60e-8c0a76bac47b" ], "x-ms-correlation-request-id": [ - "bf97a4c8-cc12-44c7-a0b4-880c6b17f6f1" + "fbcf356e-50c2-4c02-a60e-8c0a76bac47b" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T214703Z:bf97a4c8-cc12-44c7-a0b4-880c6b17f6f1" + "WESTINDIA:20220516T185835Z:fbcf356e-50c2-4c02-a60e-8c0a76bac47b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -14354,7 +14141,7 @@ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 21:47:02 GMT" + "Mon, 16 May 2022 18:58:35 GMT" ], "Expires": [ "-1" @@ -14367,16 +14154,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0JGQkY1OUNGLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSMEpHUWtZMU9VTkdMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzQ4QjYxQTdELVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelE0UWpZeFFUZEVMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" ] }, "ResponseHeaders": { @@ -14387,7 +14174,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0JGQkY1OUNGLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzQ4QjYxQTdELVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -14396,13 +14183,13 @@ "11994" ], "x-ms-request-id": [ - "65293731-9872-4f60-adda-6399ec7a6646" + "74f5529e-ac63-4852-9e4f-ed0ecaae2398" ], "x-ms-correlation-request-id": [ - "65293731-9872-4f60-adda-6399ec7a6646" + "74f5529e-ac63-4852-9e4f-ed0ecaae2398" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T214718Z:65293731-9872-4f60-adda-6399ec7a6646" + "WESTINDIA:20220516T185850Z:74f5529e-ac63-4852-9e4f-ed0ecaae2398" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -14411,7 +14198,7 @@ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 21:47:18 GMT" + "Mon, 16 May 2022 18:58:50 GMT" ], "Expires": [ "-1" @@ -14424,16 +14211,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0JGQkY1OUNGLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSMEpHUWtZMU9VTkdMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzQ4QjYxQTdELVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelE0UWpZeFFUZEVMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" ] }, "ResponseHeaders": { @@ -14444,7 +14231,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0JGQkY1OUNGLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzQ4QjYxQTdELVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -14453,13 +14240,13 @@ "11993" ], "x-ms-request-id": [ - "5be946a5-be8c-4efd-913d-a2e1b88b9b4f" + "c86af8c4-86a4-4828-8b48-641fe7c85d3f" ], "x-ms-correlation-request-id": [ - "5be946a5-be8c-4efd-913d-a2e1b88b9b4f" + "c86af8c4-86a4-4828-8b48-641fe7c85d3f" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T214734Z:5be946a5-be8c-4efd-913d-a2e1b88b9b4f" + "WESTINDIA:20220516T185905Z:c86af8c4-86a4-4828-8b48-641fe7c85d3f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -14468,7 +14255,7 @@ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 21:47:33 GMT" + "Mon, 16 May 2022 18:59:05 GMT" ], "Expires": [ "-1" @@ -14481,16 +14268,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0JGQkY1OUNGLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSMEpHUWtZMU9VTkdMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzQ4QjYxQTdELVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelE0UWpZeFFUZEVMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" ] }, "ResponseHeaders": { @@ -14501,7 +14288,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0JGQkY1OUNGLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzQ4QjYxQTdELVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -14510,13 +14297,13 @@ "11992" ], "x-ms-request-id": [ - "eaf85d83-7548-4b0d-8921-34ff3a2508c9" + "e9e45441-af83-45bb-87d6-9db2382a3380" ], "x-ms-correlation-request-id": [ - "eaf85d83-7548-4b0d-8921-34ff3a2508c9" + "e9e45441-af83-45bb-87d6-9db2382a3380" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T214749Z:eaf85d83-7548-4b0d-8921-34ff3a2508c9" + "WESTINDIA:20220516T185921Z:e9e45441-af83-45bb-87d6-9db2382a3380" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -14525,7 +14312,7 @@ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 21:47:49 GMT" + "Mon, 16 May 2022 18:59:20 GMT" ], "Expires": [ "-1" @@ -14538,16 +14325,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0JGQkY1OUNGLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSMEpHUWtZMU9VTkdMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzQ4QjYxQTdELVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelE0UWpZeFFUZEVMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" ] }, "ResponseHeaders": { @@ -14558,7 +14345,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0JGQkY1OUNGLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzQ4QjYxQTdELVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -14567,13 +14354,13 @@ "11991" ], "x-ms-request-id": [ - "3634cb30-8745-4174-abeb-aa6abf84de9f" + "f8d37b1a-d2b6-4361-ae02-fdda49c3d463" ], "x-ms-correlation-request-id": [ - "3634cb30-8745-4174-abeb-aa6abf84de9f" + "f8d37b1a-d2b6-4361-ae02-fdda49c3d463" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T214805Z:3634cb30-8745-4174-abeb-aa6abf84de9f" + "WESTINDIA:20220516T185936Z:f8d37b1a-d2b6-4361-ae02-fdda49c3d463" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -14582,7 +14369,7 @@ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 21:48:04 GMT" + "Mon, 16 May 2022 18:59:36 GMT" ], "Expires": [ "-1" @@ -14595,16 +14382,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0JGQkY1OUNGLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSMEpHUWtZMU9VTkdMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzQ4QjYxQTdELVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelE0UWpZeFFUZEVMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" ] }, "ResponseHeaders": { @@ -14615,7 +14402,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0JGQkY1OUNGLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzQ4QjYxQTdELVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -14624,13 +14411,13 @@ "11990" ], "x-ms-request-id": [ - "e212cca2-cf94-4da9-97c6-1dde2d368f44" + "fd73f74d-e0e2-4812-9f56-b645da73c492" ], "x-ms-correlation-request-id": [ - "e212cca2-cf94-4da9-97c6-1dde2d368f44" + "fd73f74d-e0e2-4812-9f56-b645da73c492" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T214820Z:e212cca2-cf94-4da9-97c6-1dde2d368f44" + "WESTINDIA:20220516T185951Z:fd73f74d-e0e2-4812-9f56-b645da73c492" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -14639,7 +14426,7 @@ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 21:48:19 GMT" + "Mon, 16 May 2022 18:59:51 GMT" ], "Expires": [ "-1" @@ -14652,16 +14439,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0JGQkY1OUNGLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSMEpHUWtZMU9VTkdMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzQ4QjYxQTdELVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelE0UWpZeFFUZEVMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" ] }, "ResponseHeaders": { @@ -14672,7 +14459,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0JGQkY1OUNGLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzQ4QjYxQTdELVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -14681,13 +14468,13 @@ "11989" ], "x-ms-request-id": [ - "78df525c-e427-45d5-a4c9-431eced0dda2" + "a75214ca-18f2-4eb8-bc79-780c9175116d" ], "x-ms-correlation-request-id": [ - "78df525c-e427-45d5-a4c9-431eced0dda2" + "a75214ca-18f2-4eb8-bc79-780c9175116d" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T214836Z:78df525c-e427-45d5-a4c9-431eced0dda2" + "WESTINDIA:20220516T190006Z:a75214ca-18f2-4eb8-bc79-780c9175116d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -14696,7 +14483,7 @@ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 21:48:36 GMT" + "Mon, 16 May 2022 19:00:05 GMT" ], "Expires": [ "-1" @@ -14709,16 +14496,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0JGQkY1OUNGLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSMEpHUWtZMU9VTkdMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzQ4QjYxQTdELVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelE0UWpZeFFUZEVMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" ] }, "ResponseHeaders": { @@ -14728,137 +14515,17 @@ "Pragma": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0JGQkY1OUNGLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], "x-ms-ratelimit-remaining-subscription-reads": [ "11988" ], "x-ms-request-id": [ - "27fc0f67-7d8a-4ce9-8d95-82a432ef2b29" - ], - "x-ms-correlation-request-id": [ - "27fc0f67-7d8a-4ce9-8d95-82a432ef2b29" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20220223T214851Z:27fc0f67-7d8a-4ce9-8d95-82a432ef2b29" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 23 Feb 2022 21:48:51 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0JGQkY1OUNGLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSMEpHUWtZMU9VTkdMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.700.21.56803", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0JGQkY1OUNGLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" - ], - "x-ms-request-id": [ - "2d8e9e3b-70a5-40cf-93f4-747bf0beeba8" - ], - "x-ms-correlation-request-id": [ - "2d8e9e3b-70a5-40cf-93f4-747bf0beeba8" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20220223T214907Z:2d8e9e3b-70a5-40cf-93f4-747bf0beeba8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 23 Feb 2022 21:49:06 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0JGQkY1OUNGLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSMEpHUWtZMU9VTkdMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.700.21.56803", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0JGQkY1OUNGLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" - ], - "x-ms-request-id": [ - "e270a379-566e-4599-9604-8b4f583bf8f8" + "c55c89ac-a142-4de4-8bbd-9f4b09417fd9" ], "x-ms-correlation-request-id": [ - "e270a379-566e-4599-9604-8b4f583bf8f8" + "c55c89ac-a142-4de4-8bbd-9f4b09417fd9" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T214922Z:e270a379-566e-4599-9604-8b4f583bf8f8" + "WESTINDIA:20220516T190021Z:c55c89ac-a142-4de4-8bbd-9f4b09417fd9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -14867,115 +14534,7 @@ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 21:49:22 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0JGQkY1OUNGLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSMEpHUWtZMU9VTkdMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.700.21.56803", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0JGQkY1OUNGLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" - ], - "x-ms-request-id": [ - "4116590f-9d16-4d5d-bf3a-0705e981726d" - ], - "x-ms-correlation-request-id": [ - "4116590f-9d16-4d5d-bf3a-0705e981726d" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20220223T214938Z:4116590f-9d16-4d5d-bf3a-0705e981726d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 23 Feb 2022 21:49:37 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0JGQkY1OUNGLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSMEpHUWtZMU9VTkdMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.700.21.56803", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11984" - ], - "x-ms-request-id": [ - "b5feee27-701e-432e-b253-7de0da314c8e" - ], - "x-ms-correlation-request-id": [ - "b5feee27-701e-432e-b253-7de0da314c8e" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20220223T214953Z:b5feee27-701e-432e-b253-7de0da314c8e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 23 Feb 2022 21:49:53 GMT" + "Mon, 16 May 2022 19:00:21 GMT" ], "Expires": [ "-1" @@ -14988,16 +14547,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0JGQkY1OUNGLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSMEpHUWtZMU9VTkdMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzQ4QjYxQTdELVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelE0UWpZeFFUZEVMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" ] }, "ResponseHeaders": { @@ -15008,16 +14567,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11983" + "11987" ], "x-ms-request-id": [ - "f47738bd-668b-4378-a21a-567df91524f9" + "e0651fba-33b1-4ed2-b8a8-2c635acf5ba3" ], "x-ms-correlation-request-id": [ - "f47738bd-668b-4378-a21a-567df91524f9" + "e0651fba-33b1-4ed2-b8a8-2c635acf5ba3" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220223T214954Z:f47738bd-668b-4378-a21a-567df91524f9" + "WESTINDIA:20220516T190022Z:e0651fba-33b1-4ed2-b8a8-2c635acf5ba3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -15026,7 +14585,7 @@ "nosniff" ], "Date": [ - "Wed, 23 Feb 2022 21:49:53 GMT" + "Mon, 16 May 2022 19:00:21 GMT" ], "Expires": [ "-1" @@ -15041,7 +14600,7 @@ ], "Names": {}, "Variables": { - "SubscriptionId": "e37510d7-33b6-4676-886f-ee75bcc01871", - "NamingSuffix": "bfbf59cf-4d80-46dc-8b6c-e82e3eeaed40" + "SubscriptionId": "da364f0f-307b-41c9-9d47-b7413ec45535", + "NamingSuffix": "48b61a7d-7191-4610-88b3-fef7f42b3758" } } \ No newline at end of file diff --git a/src/RecoveryServices/RecoveryServices.Backup.Test/SessionRecords/Microsoft.Azure.Commands.RecoveryServices.Backup.Test.ScenarioTests.PolicyTests/TestAzureFSHourlyPolicy.json b/src/RecoveryServices/RecoveryServices.Backup.Test/SessionRecords/Microsoft.Azure.Commands.RecoveryServices.Backup.Test.ScenarioTests.PolicyTests/TestAzureFSHourlyPolicy.json index 916963d49896..ca2da07af2ca 100644 --- a/src/RecoveryServices/RecoveryServices.Backup.Test/SessionRecords/Microsoft.Azure.Commands.RecoveryServices.Backup.Test.ScenarioTests.PolicyTests/TestAzureFSHourlyPolicy.json +++ b/src/RecoveryServices/RecoveryServices.Backup.Test/SessionRecords/Microsoft.Azure.Commands.RecoveryServices.Backup.Test.ScenarioTests.PolicyTests/TestAzureFSHourlyPolicy.json @@ -7,13 +7,13 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0e024270-e083-4194-a8cf-51add0a71686" + "3ec9eb8f-844e-45ea-939f-e6c9dfdf2f46" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesClient/4.3.2.0" @@ -30,10 +30,10 @@ "nosniff" ], "x-ms-request-id": [ - "385886df-58b7-4e96-b1d5-ddfa065e1417" + "3e43409d-c2c9-4a65-91bc-dc92641e53fc" ], "x-ms-client-request-id": [ - "0e024270-e083-4194-a8cf-51add0a71686" + "3ec9eb8f-844e-45ea-939f-e6c9dfdf2f46" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -45,16 +45,16 @@ "11999" ], "x-ms-correlation-request-id": [ - "385886df-58b7-4e96-b1d5-ddfa065e1417" + "3e43409d-c2c9-4a65-91bc-dc92641e53fc" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T094714Z:385886df-58b7-4e96-b1d5-ddfa065e1417" + "JIOINDIAWEST:20220516T160331Z:3e43409d-c2c9-4a65-91bc-dc92641e53fc" ], "Date": [ - "Sat, 26 Mar 2022 09:47:14 GMT" + "Mon, 16 May 2022 16:03:31 GMT" ], "Content-Length": [ - "467" + "519" ], "Content-Type": [ "application/json" @@ -63,26 +63,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pstestrsv8895\",\r\n \"etag\": \"W/\\\"datetime'2022-02-18T07%3A20%3A25.5509044Z'\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateEndpointStateForBackup\": \"None\",\r\n \"privateEndpointStateForSiteRecovery\": \"None\"\r\n },\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"RS0\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pstestrsv8895\",\r\n \"etag\": \"W/\\\"datetime'2022-02-18T07%3A20%3A25.5509044Z'\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateEndpointStateForBackup\": \"None\",\r\n \"privateEndpointStateForSiteRecovery\": \"None\",\r\n \"networkSettings\": {\r\n \"publicNetworkAccess\": \"Enabled\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"RS0\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupPolicies/afsHourlyPolicy?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwUG9saWNpZXMvYWZzSG91cmx5UG9saWN5P2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupPolicies/afsHourlyPolicy?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwUG9saWNpZXMvYWZzSG91cmx5UG9saWN5P2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e582c1d1-90e0-48ef-967c-f78c8b8c89dc" + "b1e8d826-6e3b-498f-ba04-b124ec9035e4" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -96,11 +96,11 @@ "nosniff" ], "x-ms-request-id": [ - "60c7e37d-ff2f-4a70-b22b-54f2b52bebec" + "76769d37-f84f-4772-9561-2ac6745eb2ee" ], "x-ms-client-request-id": [ - "e582c1d1-90e0-48ef-967c-f78c8b8c89dc", - "e582c1d1-90e0-48ef-967c-f78c8b8c89dc" + "b1e8d826-6e3b-498f-ba04-b124ec9035e4", + "b1e8d826-6e3b-498f-ba04-b124ec9035e4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -115,13 +115,13 @@ "299" ], "x-ms-correlation-request-id": [ - "60c7e37d-ff2f-4a70-b22b-54f2b52bebec" + "76769d37-f84f-4772-9561-2ac6745eb2ee" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T094715Z:60c7e37d-ff2f-4a70-b22b-54f2b52bebec" + "JIOINDIAWEST:20220516T160334Z:76769d37-f84f-4772-9561-2ac6745eb2ee" ], "Date": [ - "Sat, 26 Mar 2022 09:47:14 GMT" + "Mon, 16 May 2022 16:03:33 GMT" ], "Content-Length": [ "2" @@ -137,22 +137,22 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupPolicies/afsHourlyPolicy?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwUG9saWNpZXMvYWZzSG91cmx5UG9saWN5P2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupPolicies/afsHourlyPolicy?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwUG9saWNpZXMvYWZzSG91cmx5UG9saWN5P2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e582c1d1-90e0-48ef-967c-f78c8b8c89dc" + "b1e8d826-6e3b-498f-ba04-b124ec9035e4" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -166,11 +166,11 @@ "nosniff" ], "x-ms-request-id": [ - "5645ba07-12fb-455b-80b8-311545b04a80" + "939ab033-b1c0-4dae-a365-2129311dee4a" ], "x-ms-client-request-id": [ - "e582c1d1-90e0-48ef-967c-f78c8b8c89dc", - "e582c1d1-90e0-48ef-967c-f78c8b8c89dc" + "b1e8d826-6e3b-498f-ba04-b124ec9035e4", + "b1e8d826-6e3b-498f-ba04-b124ec9035e4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,13 +185,13 @@ "298" ], "x-ms-correlation-request-id": [ - "5645ba07-12fb-455b-80b8-311545b04a80" + "939ab033-b1c0-4dae-a365-2129311dee4a" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T094717Z:5645ba07-12fb-455b-80b8-311545b04a80" + "JIOINDIAWEST:20220516T160335Z:939ab033-b1c0-4dae-a365-2129311dee4a" ], "Date": [ - "Sat, 26 Mar 2022 09:47:16 GMT" + "Mon, 16 May 2022 16:03:35 GMT" ], "Content-Length": [ "768" @@ -203,26 +203,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupPolicies/afsHourlyPolicy\",\r\n \"name\": \"afsHourlyPolicy\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupPolicies\",\r\n \"properties\": {\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"schedulePolicy\": {\r\n \"schedulePolicyType\": \"SimpleSchedulePolicy\",\r\n \"scheduleRunFrequency\": \"Hourly\",\r\n \"hourlySchedule\": {\r\n \"interval\": 4,\r\n \"scheduleWindowStartTime\": \"2022-03-26T08:00:00Z\",\r\n \"scheduleWindowDuration\": 12\r\n },\r\n \"scheduleWeeklyFrequency\": 0\r\n },\r\n \"retentionPolicy\": {\r\n \"retentionPolicyType\": \"LongTermRetentionPolicy\",\r\n \"dailySchedule\": {\r\n \"retentionTimes\": [\r\n \"2022-03-26T20:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 5,\r\n \"durationType\": \"Days\"\r\n }\r\n }\r\n },\r\n \"timeZone\": \"UTC\",\r\n \"protectedItemsCount\": 0\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupPolicies/afsHourlyPolicy\",\r\n \"name\": \"afsHourlyPolicy\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupPolicies\",\r\n \"properties\": {\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"schedulePolicy\": {\r\n \"schedulePolicyType\": \"SimpleSchedulePolicy\",\r\n \"scheduleRunFrequency\": \"Hourly\",\r\n \"hourlySchedule\": {\r\n \"interval\": 4,\r\n \"scheduleWindowStartTime\": \"2022-05-16T08:00:00Z\",\r\n \"scheduleWindowDuration\": 12\r\n },\r\n \"scheduleWeeklyFrequency\": 0\r\n },\r\n \"retentionPolicy\": {\r\n \"retentionPolicyType\": \"LongTermRetentionPolicy\",\r\n \"dailySchedule\": {\r\n \"retentionTimes\": [\r\n \"2022-05-16T20:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 5,\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/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupPolicies/afsHourlyPolicy?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwUG9saWNpZXMvYWZzSG91cmx5UG9saWN5P2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupPolicies/afsHourlyPolicy?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwUG9saWNpZXMvYWZzSG91cmx5UG9saWN5P2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a9a655c7-a459-491d-be45-151590a5bd30" + "9a73d1a7-c2ea-4081-9055-a66d5b4c684e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -236,11 +236,11 @@ "nosniff" ], "x-ms-request-id": [ - "b2cd372b-a18d-4a0c-a276-016d3a270c6a" + "f2ee87e3-9eab-42cb-9dc0-a8e835aaeabf" ], "x-ms-client-request-id": [ - "a9a655c7-a459-491d-be45-151590a5bd30", - "a9a655c7-a459-491d-be45-151590a5bd30" + "9a73d1a7-c2ea-4081-9055-a66d5b4c684e", + "9a73d1a7-c2ea-4081-9055-a66d5b4c684e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -255,13 +255,13 @@ "297" ], "x-ms-correlation-request-id": [ - "b2cd372b-a18d-4a0c-a276-016d3a270c6a" + "f2ee87e3-9eab-42cb-9dc0-a8e835aaeabf" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T094717Z:b2cd372b-a18d-4a0c-a276-016d3a270c6a" + "JIOINDIAWEST:20220516T160336Z:f2ee87e3-9eab-42cb-9dc0-a8e835aaeabf" ], "Date": [ - "Sat, 26 Mar 2022 09:47:16 GMT" + "Mon, 16 May 2022 16:03:35 GMT" ], "Content-Length": [ "768" @@ -273,26 +273,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupPolicies/afsHourlyPolicy\",\r\n \"name\": \"afsHourlyPolicy\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupPolicies\",\r\n \"properties\": {\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"schedulePolicy\": {\r\n \"schedulePolicyType\": \"SimpleSchedulePolicy\",\r\n \"scheduleRunFrequency\": \"Hourly\",\r\n \"hourlySchedule\": {\r\n \"interval\": 4,\r\n \"scheduleWindowStartTime\": \"2022-03-26T08:00:00Z\",\r\n \"scheduleWindowDuration\": 12\r\n },\r\n \"scheduleWeeklyFrequency\": 0\r\n },\r\n \"retentionPolicy\": {\r\n \"retentionPolicyType\": \"LongTermRetentionPolicy\",\r\n \"dailySchedule\": {\r\n \"retentionTimes\": [\r\n \"2022-03-26T20:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 5,\r\n \"durationType\": \"Days\"\r\n }\r\n }\r\n },\r\n \"timeZone\": \"UTC\",\r\n \"protectedItemsCount\": 0\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupPolicies/afsHourlyPolicy\",\r\n \"name\": \"afsHourlyPolicy\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupPolicies\",\r\n \"properties\": {\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"schedulePolicy\": {\r\n \"schedulePolicyType\": \"SimpleSchedulePolicy\",\r\n \"scheduleRunFrequency\": \"Hourly\",\r\n \"hourlySchedule\": {\r\n \"interval\": 4,\r\n \"scheduleWindowStartTime\": \"2022-05-16T08:00:00Z\",\r\n \"scheduleWindowDuration\": 12\r\n },\r\n \"scheduleWeeklyFrequency\": 0\r\n },\r\n \"retentionPolicy\": {\r\n \"retentionPolicyType\": \"LongTermRetentionPolicy\",\r\n \"dailySchedule\": {\r\n \"retentionTimes\": [\r\n \"2022-05-16T20:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 5,\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/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupPolicies/afsHourlyPolicy?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwUG9saWNpZXMvYWZzSG91cmx5UG9saWN5P2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupPolicies/afsHourlyPolicy?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwUG9saWNpZXMvYWZzSG91cmx5UG9saWN5P2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9c9e2ae7-192c-4c88-bd11-f70cf9c79dbb" + "38dfe197-a90c-4bbf-a49e-bdcfd3561cc1" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -306,11 +306,11 @@ "nosniff" ], "x-ms-request-id": [ - "13bac8e3-9faf-4feb-b4c3-7069fe4760a3" + "66dc68bb-f8c5-4a5b-970e-d1d774f569b7" ], "x-ms-client-request-id": [ - "9c9e2ae7-192c-4c88-bd11-f70cf9c79dbb", - "9c9e2ae7-192c-4c88-bd11-f70cf9c79dbb" + "38dfe197-a90c-4bbf-a49e-bdcfd3561cc1", + "38dfe197-a90c-4bbf-a49e-bdcfd3561cc1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -325,13 +325,13 @@ "296" ], "x-ms-correlation-request-id": [ - "13bac8e3-9faf-4feb-b4c3-7069fe4760a3" + "66dc68bb-f8c5-4a5b-970e-d1d774f569b7" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T094719Z:13bac8e3-9faf-4feb-b4c3-7069fe4760a3" + "JIOINDIAWEST:20220516T160337Z:66dc68bb-f8c5-4a5b-970e-d1d774f569b7" ], "Date": [ - "Sat, 26 Mar 2022 09:47:18 GMT" + "Mon, 16 May 2022 16:03:37 GMT" ], "Content-Length": [ "784" @@ -347,22 +347,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupPolicies/afsHourlyPolicy?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwUG9saWNpZXMvYWZzSG91cmx5UG9saWN5P2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupPolicies/afsHourlyPolicy?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwUG9saWNpZXMvYWZzSG91cmx5UG9saWN5P2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0eaf722c-ea69-421e-8e24-c4a834629934" + "fd978103-a684-4256-9fcd-9a24171ffd68" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -376,11 +376,11 @@ "nosniff" ], "x-ms-request-id": [ - "054061cc-cf54-4a0f-94de-17e234404c5a" + "ba237556-987f-4c62-b9d2-34161353518a" ], "x-ms-client-request-id": [ - "0eaf722c-ea69-421e-8e24-c4a834629934", - "0eaf722c-ea69-421e-8e24-c4a834629934" + "fd978103-a684-4256-9fcd-9a24171ffd68", + "fd978103-a684-4256-9fcd-9a24171ffd68" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -395,13 +395,13 @@ "295" ], "x-ms-correlation-request-id": [ - "054061cc-cf54-4a0f-94de-17e234404c5a" + "ba237556-987f-4c62-b9d2-34161353518a" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T094719Z:054061cc-cf54-4a0f-94de-17e234404c5a" + "JIOINDIAWEST:20220516T160338Z:ba237556-987f-4c62-b9d2-34161353518a" ], "Date": [ - "Sat, 26 Mar 2022 09:47:18 GMT" + "Mon, 16 May 2022 16:03:37 GMT" ], "Content-Length": [ "784" @@ -417,22 +417,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupPolicies/afsHourlyPolicy?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwUG9saWNpZXMvYWZzSG91cmx5UG9saWN5P2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupPolicies/afsHourlyPolicy?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwUG9saWNpZXMvYWZzSG91cmx5UG9saWN5P2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bb1784b2-48f7-4c16-807b-e3423e67c4fc" + "5cda2cd4-7123-4859-9651-c5d970066197" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -446,11 +446,11 @@ "nosniff" ], "x-ms-request-id": [ - "47bbb37c-35ac-4f7f-ade9-c43b10151607" + "77bc960b-7bba-4e86-85b9-7aa15bfadf94" ], "x-ms-client-request-id": [ - "bb1784b2-48f7-4c16-807b-e3423e67c4fc", - "bb1784b2-48f7-4c16-807b-e3423e67c4fc" + "5cda2cd4-7123-4859-9651-c5d970066197", + "5cda2cd4-7123-4859-9651-c5d970066197" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -465,13 +465,13 @@ "294" ], "x-ms-correlation-request-id": [ - "47bbb37c-35ac-4f7f-ade9-c43b10151607" + "77bc960b-7bba-4e86-85b9-7aa15bfadf94" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T094720Z:47bbb37c-35ac-4f7f-ade9-c43b10151607" + "JIOINDIAWEST:20220516T160339Z:77bc960b-7bba-4e86-85b9-7aa15bfadf94" ], "Date": [ - "Sat, 26 Mar 2022 09:47:19 GMT" + "Mon, 16 May 2022 16:03:39 GMT" ], "Content-Length": [ "786" @@ -487,22 +487,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupPolicies/afsHourlyPolicy?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwUG9saWNpZXMvYWZzSG91cmx5UG9saWN5P2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupPolicies/afsHourlyPolicy?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwUG9saWNpZXMvYWZzSG91cmx5UG9saWN5P2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"workLoadType\": \"AzureFileShare\",\r\n \"schedulePolicy\": {\r\n \"schedulePolicyType\": \"SimpleSchedulePolicy\",\r\n \"scheduleRunFrequency\": \"Hourly\",\r\n \"hourlySchedule\": {\r\n \"interval\": 4,\r\n \"scheduleWindowStartTime\": \"2022-03-26T08:00:00Z\",\r\n \"scheduleWindowDuration\": 12\r\n }\r\n },\r\n \"retentionPolicy\": {\r\n \"retentionPolicyType\": \"LongTermRetentionPolicy\",\r\n \"dailySchedule\": {\r\n \"retentionDuration\": {\r\n \"count\": 5,\r\n \"durationType\": \"Days\"\r\n }\r\n }\r\n },\r\n \"timeZone\": \"UTC\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"workLoadType\": \"AzureFileShare\",\r\n \"schedulePolicy\": {\r\n \"schedulePolicyType\": \"SimpleSchedulePolicy\",\r\n \"scheduleRunFrequency\": \"Hourly\",\r\n \"hourlySchedule\": {\r\n \"interval\": 4,\r\n \"scheduleWindowStartTime\": \"2022-05-16T08:00:00Z\",\r\n \"scheduleWindowDuration\": 12\r\n }\r\n },\r\n \"retentionPolicy\": {\r\n \"retentionPolicyType\": \"LongTermRetentionPolicy\",\r\n \"dailySchedule\": {\r\n \"retentionDuration\": {\r\n \"count\": 5,\r\n \"durationType\": \"Days\"\r\n }\r\n }\r\n },\r\n \"timeZone\": \"UTC\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "e582c1d1-90e0-48ef-967c-f78c8b8c89dc" + "b1e8d826-6e3b-498f-ba04-b124ec9035e4" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -522,11 +522,11 @@ "nosniff" ], "x-ms-request-id": [ - "3c513d00-f030-4c26-a36c-79eb738ba809" + "320f53ad-1fa6-4245-8e4f-e9b144c6a671" ], "x-ms-client-request-id": [ - "e582c1d1-90e0-48ef-967c-f78c8b8c89dc", - "e582c1d1-90e0-48ef-967c-f78c8b8c89dc" + "b1e8d826-6e3b-498f-ba04-b124ec9035e4", + "b1e8d826-6e3b-498f-ba04-b124ec9035e4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -538,16 +538,16 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1198" ], "x-ms-correlation-request-id": [ - "3c513d00-f030-4c26-a36c-79eb738ba809" + "320f53ad-1fa6-4245-8e4f-e9b144c6a671" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T094716Z:3c513d00-f030-4c26-a36c-79eb738ba809" + "JIOINDIAWEST:20220516T160335Z:320f53ad-1fa6-4245-8e4f-e9b144c6a671" ], "Date": [ - "Sat, 26 Mar 2022 09:47:15 GMT" + "Mon, 16 May 2022 16:03:34 GMT" ], "Content-Length": [ "768" @@ -559,26 +559,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupPolicies/afsHourlyPolicy\",\r\n \"name\": \"afsHourlyPolicy\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupPolicies\",\r\n \"properties\": {\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"schedulePolicy\": {\r\n \"schedulePolicyType\": \"SimpleSchedulePolicy\",\r\n \"scheduleRunFrequency\": \"Hourly\",\r\n \"hourlySchedule\": {\r\n \"interval\": 4,\r\n \"scheduleWindowStartTime\": \"2022-03-26T08:00:00Z\",\r\n \"scheduleWindowDuration\": 12\r\n },\r\n \"scheduleWeeklyFrequency\": 0\r\n },\r\n \"retentionPolicy\": {\r\n \"retentionPolicyType\": \"LongTermRetentionPolicy\",\r\n \"dailySchedule\": {\r\n \"retentionTimes\": [\r\n \"2022-03-26T20:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 5,\r\n \"durationType\": \"Days\"\r\n }\r\n }\r\n },\r\n \"timeZone\": \"UTC\",\r\n \"protectedItemsCount\": 0\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupPolicies/afsHourlyPolicy\",\r\n \"name\": \"afsHourlyPolicy\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupPolicies\",\r\n \"properties\": {\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"schedulePolicy\": {\r\n \"schedulePolicyType\": \"SimpleSchedulePolicy\",\r\n \"scheduleRunFrequency\": \"Hourly\",\r\n \"hourlySchedule\": {\r\n \"interval\": 4,\r\n \"scheduleWindowStartTime\": \"2022-05-16T08:00:00Z\",\r\n \"scheduleWindowDuration\": 12\r\n },\r\n \"scheduleWeeklyFrequency\": 0\r\n },\r\n \"retentionPolicy\": {\r\n \"retentionPolicyType\": \"LongTermRetentionPolicy\",\r\n \"dailySchedule\": {\r\n \"retentionTimes\": [\r\n \"2022-05-16T20:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 5,\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/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupPolicies/afsHourlyPolicy?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwUG9saWNpZXMvYWZzSG91cmx5UG9saWN5P2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupPolicies/afsHourlyPolicy?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwUG9saWNpZXMvYWZzSG91cmx5UG9saWN5P2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"workLoadType\": \"AzureFileShare\",\r\n \"schedulePolicy\": {\r\n \"schedulePolicyType\": \"SimpleSchedulePolicy\",\r\n \"scheduleRunFrequency\": \"Hourly\",\r\n \"hourlySchedule\": {\r\n \"interval\": 4,\r\n \"scheduleWindowStartTime\": \"2021-12-22T06:00:00Z\",\r\n \"scheduleWindowDuration\": 12\r\n }\r\n },\r\n \"retentionPolicy\": {\r\n \"retentionPolicyType\": \"LongTermRetentionPolicy\",\r\n \"dailySchedule\": {\r\n \"retentionDuration\": {\r\n \"count\": 5,\r\n \"durationType\": \"Days\"\r\n }\r\n }\r\n },\r\n \"timeZone\": \"India Standard Time\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "a9a655c7-a459-491d-be45-151590a5bd30" + "9a73d1a7-c2ea-4081-9055-a66d5b4c684e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -598,11 +598,11 @@ "nosniff" ], "x-ms-request-id": [ - "b0f61316-bd2a-417e-b4e0-1fefdedc6bc1" + "5026adf6-09e3-4678-bcf3-b6348670d491" ], "x-ms-client-request-id": [ - "a9a655c7-a459-491d-be45-151590a5bd30", - "a9a655c7-a459-491d-be45-151590a5bd30" + "9a73d1a7-c2ea-4081-9055-a66d5b4c684e", + "9a73d1a7-c2ea-4081-9055-a66d5b4c684e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -614,16 +614,16 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1197" ], "x-ms-correlation-request-id": [ - "b0f61316-bd2a-417e-b4e0-1fefdedc6bc1" + "5026adf6-09e3-4678-bcf3-b6348670d491" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T094718Z:b0f61316-bd2a-417e-b4e0-1fefdedc6bc1" + "JIOINDIAWEST:20220516T160337Z:5026adf6-09e3-4678-bcf3-b6348670d491" ], "Date": [ - "Sat, 26 Mar 2022 09:47:17 GMT" + "Mon, 16 May 2022 16:03:36 GMT" ], "Content-Length": [ "784" @@ -639,22 +639,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupPolicies/afsHourlyPolicy?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwUG9saWNpZXMvYWZzSG91cmx5UG9saWN5P2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupPolicies/afsHourlyPolicy?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwUG9saWNpZXMvYWZzSG91cmx5UG9saWN5P2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"workLoadType\": \"AzureFileShare\",\r\n \"schedulePolicy\": {\r\n \"schedulePolicyType\": \"SimpleSchedulePolicy\",\r\n \"scheduleRunFrequency\": \"Hourly\",\r\n \"hourlySchedule\": {\r\n \"interval\": 4,\r\n \"scheduleWindowStartTime\": \"2021-12-22T06:00:00Z\",\r\n \"scheduleWindowDuration\": 14\r\n }\r\n },\r\n \"retentionPolicy\": {\r\n \"retentionPolicyType\": \"LongTermRetentionPolicy\",\r\n \"dailySchedule\": {\r\n \"retentionDuration\": {\r\n \"count\": 6,\r\n \"durationType\": \"Days\"\r\n }\r\n }\r\n },\r\n \"timeZone\": \"Russian Standard Time\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "0eaf722c-ea69-421e-8e24-c4a834629934" + "fd978103-a684-4256-9fcd-9a24171ffd68" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -674,11 +674,11 @@ "nosniff" ], "x-ms-request-id": [ - "ca28f76c-4e2b-4146-b1bf-5e496005e711" + "65eb0c1f-b9f7-416e-afbe-34960228012c" ], "x-ms-client-request-id": [ - "0eaf722c-ea69-421e-8e24-c4a834629934", - "0eaf722c-ea69-421e-8e24-c4a834629934" + "fd978103-a684-4256-9fcd-9a24171ffd68", + "fd978103-a684-4256-9fcd-9a24171ffd68" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -690,16 +690,16 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1196" ], "x-ms-correlation-request-id": [ - "ca28f76c-4e2b-4146-b1bf-5e496005e711" + "65eb0c1f-b9f7-416e-afbe-34960228012c" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T094720Z:ca28f76c-4e2b-4146-b1bf-5e496005e711" + "JIOINDIAWEST:20220516T160339Z:65eb0c1f-b9f7-416e-afbe-34960228012c" ], "Date": [ - "Sat, 26 Mar 2022 09:47:19 GMT" + "Mon, 16 May 2022 16:03:38 GMT" ], "Content-Length": [ "786" @@ -715,22 +715,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupPolicies/afsHourlyPolicy?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwUG9saWNpZXMvYWZzSG91cmx5UG9saWN5P2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupPolicies/afsHourlyPolicy?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwUG9saWNpZXMvYWZzSG91cmx5UG9saWN5P2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "da4e1edc-3218-4443-9d60-8bee93299810" + "2efd0148-812c-47b2-9e34-beab7abb49c0" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -744,11 +744,11 @@ "nosniff" ], "x-ms-request-id": [ - "55b71fc3-d9c6-43d9-824d-52e20a06a407" + "9158cf74-3e6f-42ab-9a1c-978b678faf40" ], "x-ms-client-request-id": [ - "da4e1edc-3218-4443-9d60-8bee93299810", - "da4e1edc-3218-4443-9d60-8bee93299810" + "2efd0148-812c-47b2-9e34-beab7abb49c0", + "2efd0148-812c-47b2-9e34-beab7abb49c0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -757,16 +757,16 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14999" + "14998" ], "x-ms-correlation-request-id": [ - "55b71fc3-d9c6-43d9-824d-52e20a06a407" + "9158cf74-3e6f-42ab-9a1c-978b678faf40" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T094721Z:55b71fc3-d9c6-43d9-824d-52e20a06a407" + "JIOINDIAWEST:20220516T160340Z:9158cf74-3e6f-42ab-9a1c-978b678faf40" ], "Date": [ - "Sat, 26 Mar 2022 09:47:20 GMT" + "Mon, 16 May 2022 16:03:40 GMT" ], "Expires": [ "-1" @@ -779,22 +779,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupPolicies?$filter=backupManagementType%20eq%20'AzureStorage'&api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwUG9saWNpZXM/JGZpbHRlcj1iYWNrdXBNYW5hZ2VtZW50VHlwZSUyMGVxJTIwJ0F6dXJlU3RvcmFnZScmYXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupPolicies?$filter=backupManagementType%20eq%20'AzureStorage'&api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwUG9saWNpZXM/JGZpbHRlcj1iYWNrdXBNYW5hZ2VtZW50VHlwZSUyMGVxJTIwJ0F6dXJlU3RvcmFnZScmYXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ab198e4b-7120-4bb7-b981-365d6e768c73" + "752a5e74-1241-4ffd-8fa8-364b3f5efe28" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -808,11 +808,11 @@ "nosniff" ], "x-ms-request-id": [ - "bf9ef59a-ea8c-4106-902c-1ba88f49351d" + "7997c01d-2628-4d53-8e2b-8598aa2149a7" ], "x-ms-client-request-id": [ - "ab198e4b-7120-4bb7-b981-365d6e768c73", - "ab198e4b-7120-4bb7-b981-365d6e768c73" + "752a5e74-1241-4ffd-8fa8-364b3f5efe28", + "752a5e74-1241-4ffd-8fa8-364b3f5efe28" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -827,13 +827,13 @@ "293" ], "x-ms-correlation-request-id": [ - "bf9ef59a-ea8c-4106-902c-1ba88f49351d" + "7997c01d-2628-4d53-8e2b-8598aa2149a7" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T094721Z:bf9ef59a-ea8c-4106-902c-1ba88f49351d" + "JIOINDIAWEST:20220516T160341Z:7997c01d-2628-4d53-8e2b-8598aa2149a7" ], "Date": [ - "Sat, 26 Mar 2022 09:47:21 GMT" + "Mon, 16 May 2022 16:03:40 GMT" ], "Content-Length": [ "2196" diff --git a/src/RecoveryServices/RecoveryServices.Backup.Test/SessionRecords/Microsoft.Azure.Commands.RecoveryServices.Backup.Test.ScenarioTests.PolicyTests/TestAzureFSPolicy.json b/src/RecoveryServices/RecoveryServices.Backup.Test/SessionRecords/Microsoft.Azure.Commands.RecoveryServices.Backup.Test.ScenarioTests.PolicyTests/TestAzureFSPolicy.json index 920a25f7a132..db57f954c076 100644 --- a/src/RecoveryServices/RecoveryServices.Backup.Test/SessionRecords/Microsoft.Azure.Commands.RecoveryServices.Backup.Test.ScenarioTests.PolicyTests/TestAzureFSPolicy.json +++ b/src/RecoveryServices/RecoveryServices.Backup.Test/SessionRecords/Microsoft.Azure.Commands.RecoveryServices.Backup.Test.ScenarioTests.PolicyTests/TestAzureFSPolicy.json @@ -7,13 +7,13 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "98f05489-faf8-447b-a4d1-552c6ca082b7" + "cf6a6180-60ec-48fe-aee4-cf7b7b92eda7" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesClient/4.3.2.0" @@ -30,10 +30,10 @@ "nosniff" ], "x-ms-request-id": [ - "7e514a86-efc4-43ef-a2e3-ac161d2304fd" + "24aa82d8-6377-44da-8465-adc7d41b698e" ], "x-ms-client-request-id": [ - "98f05489-faf8-447b-a4d1-552c6ca082b7" + "cf6a6180-60ec-48fe-aee4-cf7b7b92eda7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -45,16 +45,16 @@ "11999" ], "x-ms-correlation-request-id": [ - "7e514a86-efc4-43ef-a2e3-ac161d2304fd" + "24aa82d8-6377-44da-8465-adc7d41b698e" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T092912Z:7e514a86-efc4-43ef-a2e3-ac161d2304fd" + "WESTINDIA:20220516T155501Z:24aa82d8-6377-44da-8465-adc7d41b698e" ], "Date": [ - "Sat, 26 Mar 2022 09:29:12 GMT" + "Mon, 16 May 2022 15:55:01 GMT" ], "Content-Length": [ - "467" + "519" ], "Content-Type": [ "application/json" @@ -63,26 +63,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pstestrsv8895\",\r\n \"etag\": \"W/\\\"datetime'2022-02-18T07%3A20%3A25.5509044Z'\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateEndpointStateForBackup\": \"None\",\r\n \"privateEndpointStateForSiteRecovery\": \"None\"\r\n },\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"RS0\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pstestrsv8895\",\r\n \"etag\": \"W/\\\"datetime'2022-02-18T07%3A20%3A25.5509044Z'\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateEndpointStateForBackup\": \"None\",\r\n \"privateEndpointStateForSiteRecovery\": \"None\",\r\n \"networkSettings\": {\r\n \"publicNetworkAccess\": \"Enabled\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"RS0\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupPolicies/newFilePolicy?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwUG9saWNpZXMvbmV3RmlsZVBvbGljeT9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupPolicies/newFilePolicy?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwUG9saWNpZXMvbmV3RmlsZVBvbGljeT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "454d2b83-ef98-4a23-9567-9fed47bda6a6" + "13bf4ed0-db8f-4b38-b37e-a3691230aae1" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -96,11 +96,11 @@ "nosniff" ], "x-ms-request-id": [ - "e34924bd-355a-41c9-90b2-6863f7ac69c4" + "c20e4ba9-b2ad-48e8-8115-06f0b71179fc" ], "x-ms-client-request-id": [ - "454d2b83-ef98-4a23-9567-9fed47bda6a6", - "454d2b83-ef98-4a23-9567-9fed47bda6a6" + "13bf4ed0-db8f-4b38-b37e-a3691230aae1", + "13bf4ed0-db8f-4b38-b37e-a3691230aae1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -115,13 +115,13 @@ "299" ], "x-ms-correlation-request-id": [ - "e34924bd-355a-41c9-90b2-6863f7ac69c4" + "c20e4ba9-b2ad-48e8-8115-06f0b71179fc" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T092913Z:e34924bd-355a-41c9-90b2-6863f7ac69c4" + "WESTINDIA:20220516T155503Z:c20e4ba9-b2ad-48e8-8115-06f0b71179fc" ], "Date": [ - "Sat, 26 Mar 2022 09:29:12 GMT" + "Mon, 16 May 2022 15:55:03 GMT" ], "Content-Length": [ "2" @@ -137,22 +137,22 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupPolicies/newFilePolicy?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwUG9saWNpZXMvbmV3RmlsZVBvbGljeT9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupPolicies/newFilePolicy?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwUG9saWNpZXMvbmV3RmlsZVBvbGljeT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "454d2b83-ef98-4a23-9567-9fed47bda6a6" + "13bf4ed0-db8f-4b38-b37e-a3691230aae1" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -166,11 +166,11 @@ "nosniff" ], "x-ms-request-id": [ - "e1cb22bb-ffdd-40e3-98cc-dc6d8e662b70" + "e4d007f7-96a9-41b6-8089-7d27ede7c5b7" ], "x-ms-client-request-id": [ - "454d2b83-ef98-4a23-9567-9fed47bda6a6", - "454d2b83-ef98-4a23-9567-9fed47bda6a6" + "13bf4ed0-db8f-4b38-b37e-a3691230aae1", + "13bf4ed0-db8f-4b38-b37e-a3691230aae1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,13 +185,13 @@ "298" ], "x-ms-correlation-request-id": [ - "e1cb22bb-ffdd-40e3-98cc-dc6d8e662b70" + "e4d007f7-96a9-41b6-8089-7d27ede7c5b7" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T092914Z:e1cb22bb-ffdd-40e3-98cc-dc6d8e662b70" + "WESTINDIA:20220516T155505Z:e4d007f7-96a9-41b6-8089-7d27ede7c5b7" ], "Date": [ - "Sat, 26 Mar 2022 09:29:13 GMT" + "Mon, 16 May 2022 15:55:04 GMT" ], "Content-Length": [ "699" @@ -203,26 +203,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupPolicies/newFilePolicy\",\r\n \"name\": \"newFilePolicy\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupPolicies\",\r\n \"properties\": {\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"schedulePolicy\": {\r\n \"schedulePolicyType\": \"SimpleSchedulePolicy\",\r\n \"scheduleRunFrequency\": \"Daily\",\r\n \"scheduleRunTimes\": [\r\n \"2022-03-26T04: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 \"2022-03-26T04: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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupPolicies/newFilePolicy\",\r\n \"name\": \"newFilePolicy\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupPolicies\",\r\n \"properties\": {\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"schedulePolicy\": {\r\n \"schedulePolicyType\": \"SimpleSchedulePolicy\",\r\n \"scheduleRunFrequency\": \"Daily\",\r\n \"scheduleRunTimes\": [\r\n \"2022-05-16T12: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 \"2022-05-16T12: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/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupPolicies/newFilePolicy?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwUG9saWNpZXMvbmV3RmlsZVBvbGljeT9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupPolicies/newFilePolicy?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwUG9saWNpZXMvbmV3RmlsZVBvbGljeT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6c2ef17a-4a1b-45f6-ab69-ff53ffc8eeb0" + "eaedff52-53da-41e2-9d01-d0b8bbe6f350" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -236,11 +236,11 @@ "nosniff" ], "x-ms-request-id": [ - "0882187d-e7e9-4ef3-bb98-78e2988623b7" + "e135ee65-5ded-40fc-859b-92acd1b488b3" ], "x-ms-client-request-id": [ - "6c2ef17a-4a1b-45f6-ab69-ff53ffc8eeb0", - "6c2ef17a-4a1b-45f6-ab69-ff53ffc8eeb0" + "eaedff52-53da-41e2-9d01-d0b8bbe6f350", + "eaedff52-53da-41e2-9d01-d0b8bbe6f350" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -255,13 +255,13 @@ "297" ], "x-ms-correlation-request-id": [ - "0882187d-e7e9-4ef3-bb98-78e2988623b7" + "e135ee65-5ded-40fc-859b-92acd1b488b3" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T092914Z:0882187d-e7e9-4ef3-bb98-78e2988623b7" + "WESTINDIA:20220516T155505Z:e135ee65-5ded-40fc-859b-92acd1b488b3" ], "Date": [ - "Sat, 26 Mar 2022 09:29:13 GMT" + "Mon, 16 May 2022 15:55:05 GMT" ], "Content-Length": [ "699" @@ -273,26 +273,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupPolicies/newFilePolicy\",\r\n \"name\": \"newFilePolicy\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupPolicies\",\r\n \"properties\": {\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"schedulePolicy\": {\r\n \"schedulePolicyType\": \"SimpleSchedulePolicy\",\r\n \"scheduleRunFrequency\": \"Daily\",\r\n \"scheduleRunTimes\": [\r\n \"2022-03-26T04: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 \"2022-03-26T04: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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupPolicies/newFilePolicy\",\r\n \"name\": \"newFilePolicy\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupPolicies\",\r\n \"properties\": {\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"schedulePolicy\": {\r\n \"schedulePolicyType\": \"SimpleSchedulePolicy\",\r\n \"scheduleRunFrequency\": \"Daily\",\r\n \"scheduleRunTimes\": [\r\n \"2022-05-16T12: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 \"2022-05-16T12: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/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupPolicies/newFilePolicy?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwUG9saWNpZXMvbmV3RmlsZVBvbGljeT9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupPolicies/newFilePolicy?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwUG9saWNpZXMvbmV3RmlsZVBvbGljeT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a1edd04f-5def-4b8e-b0c5-1d301c217b5a" + "5b885e9e-761d-4ee2-8d9b-530083e7faaa" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -306,11 +306,11 @@ "nosniff" ], "x-ms-request-id": [ - "265f29f6-2ade-425d-933d-1f4ece70c3c5" + "8277db31-f313-435a-8cfb-e18dae340d8c" ], "x-ms-client-request-id": [ - "a1edd04f-5def-4b8e-b0c5-1d301c217b5a", - "a1edd04f-5def-4b8e-b0c5-1d301c217b5a" + "5b885e9e-761d-4ee2-8d9b-530083e7faaa", + "5b885e9e-761d-4ee2-8d9b-530083e7faaa" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -325,13 +325,13 @@ "296" ], "x-ms-correlation-request-id": [ - "265f29f6-2ade-425d-933d-1f4ece70c3c5" + "8277db31-f313-435a-8cfb-e18dae340d8c" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T092915Z:265f29f6-2ade-425d-933d-1f4ece70c3c5" + "WESTINDIA:20220516T155506Z:8277db31-f313-435a-8cfb-e18dae340d8c" ], "Date": [ - "Sat, 26 Mar 2022 09:29:14 GMT" + "Mon, 16 May 2022 15:55:05 GMT" ], "Content-Length": [ "699" @@ -343,26 +343,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupPolicies/newFilePolicy\",\r\n \"name\": \"newFilePolicy\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupPolicies\",\r\n \"properties\": {\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"schedulePolicy\": {\r\n \"schedulePolicyType\": \"SimpleSchedulePolicy\",\r\n \"scheduleRunFrequency\": \"Daily\",\r\n \"scheduleRunTimes\": [\r\n \"2022-03-26T04: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 \"2022-03-26T04: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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupPolicies/newFilePolicy\",\r\n \"name\": \"newFilePolicy\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupPolicies\",\r\n \"properties\": {\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"schedulePolicy\": {\r\n \"schedulePolicyType\": \"SimpleSchedulePolicy\",\r\n \"scheduleRunFrequency\": \"Daily\",\r\n \"scheduleRunTimes\": [\r\n \"2022-05-16T12: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 \"2022-05-16T12: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/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupPolicies/newFilePolicy?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwUG9saWNpZXMvbmV3RmlsZVBvbGljeT9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupPolicies/newFilePolicy?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwUG9saWNpZXMvbmV3RmlsZVBvbGljeT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1e791045-6779-4cd6-b61a-a95839601d3f" + "9934466c-582d-4f51-a762-0a778153caf2" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -376,11 +376,11 @@ "nosniff" ], "x-ms-request-id": [ - "116efece-cef0-44ee-8fb9-fb6d787be677" + "e378be1c-ff38-493a-911d-7334d0f3cc6e" ], "x-ms-client-request-id": [ - "1e791045-6779-4cd6-b61a-a95839601d3f", - "1e791045-6779-4cd6-b61a-a95839601d3f" + "9934466c-582d-4f51-a762-0a778153caf2", + "9934466c-582d-4f51-a762-0a778153caf2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -395,13 +395,13 @@ "295" ], "x-ms-correlation-request-id": [ - "116efece-cef0-44ee-8fb9-fb6d787be677" + "e378be1c-ff38-493a-911d-7334d0f3cc6e" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T092916Z:116efece-cef0-44ee-8fb9-fb6d787be677" + "WESTINDIA:20220516T155508Z:e378be1c-ff38-493a-911d-7334d0f3cc6e" ], "Date": [ - "Sat, 26 Mar 2022 09:29:15 GMT" + "Mon, 16 May 2022 15:55:07 GMT" ], "Content-Length": [ "699" @@ -413,26 +413,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupPolicies/newFilePolicy\",\r\n \"name\": \"newFilePolicy\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupPolicies\",\r\n \"properties\": {\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"schedulePolicy\": {\r\n \"schedulePolicyType\": \"SimpleSchedulePolicy\",\r\n \"scheduleRunFrequency\": \"Daily\",\r\n \"scheduleRunTimes\": [\r\n \"2022-03-26T04: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 \"2022-03-26T04:30:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 31,\r\n \"durationType\": \"Days\"\r\n }\r\n }\r\n },\r\n \"timeZone\": \"UTC\",\r\n \"protectedItemsCount\": 0\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupPolicies/newFilePolicy\",\r\n \"name\": \"newFilePolicy\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupPolicies\",\r\n \"properties\": {\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"schedulePolicy\": {\r\n \"schedulePolicyType\": \"SimpleSchedulePolicy\",\r\n \"scheduleRunFrequency\": \"Daily\",\r\n \"scheduleRunTimes\": [\r\n \"2022-05-16T12: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 \"2022-05-16T12:30:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 31,\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/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupPolicies/newFilePolicy?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwUG9saWNpZXMvbmV3RmlsZVBvbGljeT9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupPolicies/newFilePolicy?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwUG9saWNpZXMvbmV3RmlsZVBvbGljeT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"workLoadType\": \"AzureFileShare\",\r\n \"schedulePolicy\": {\r\n \"schedulePolicyType\": \"SimpleSchedulePolicy\",\r\n \"scheduleRunFrequency\": \"Daily\",\r\n \"scheduleRunTimes\": [\r\n \"2022-03-26T04:30:00Z\"\r\n ]\r\n },\r\n \"retentionPolicy\": {\r\n \"retentionPolicyType\": \"LongTermRetentionPolicy\",\r\n \"dailySchedule\": {\r\n \"retentionTimes\": [\r\n \"2022-03-26T04: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 }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"workLoadType\": \"AzureFileShare\",\r\n \"schedulePolicy\": {\r\n \"schedulePolicyType\": \"SimpleSchedulePolicy\",\r\n \"scheduleRunFrequency\": \"Daily\",\r\n \"scheduleRunTimes\": [\r\n \"2022-05-16T12:30:00Z\"\r\n ]\r\n },\r\n \"retentionPolicy\": {\r\n \"retentionPolicyType\": \"LongTermRetentionPolicy\",\r\n \"dailySchedule\": {\r\n \"retentionTimes\": [\r\n \"2022-05-16T12: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 }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "454d2b83-ef98-4a23-9567-9fed47bda6a6" + "13bf4ed0-db8f-4b38-b37e-a3691230aae1" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -452,11 +452,11 @@ "nosniff" ], "x-ms-request-id": [ - "912ec384-5359-442a-a24f-60793febabbe" + "4fdc9cd6-91d0-4c5a-9876-fbbd7577f577" ], "x-ms-client-request-id": [ - "454d2b83-ef98-4a23-9567-9fed47bda6a6", - "454d2b83-ef98-4a23-9567-9fed47bda6a6" + "13bf4ed0-db8f-4b38-b37e-a3691230aae1", + "13bf4ed0-db8f-4b38-b37e-a3691230aae1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -471,13 +471,13 @@ "1199" ], "x-ms-correlation-request-id": [ - "912ec384-5359-442a-a24f-60793febabbe" + "4fdc9cd6-91d0-4c5a-9876-fbbd7577f577" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T092914Z:912ec384-5359-442a-a24f-60793febabbe" + "WESTINDIA:20220516T155504Z:4fdc9cd6-91d0-4c5a-9876-fbbd7577f577" ], "Date": [ - "Sat, 26 Mar 2022 09:29:13 GMT" + "Mon, 16 May 2022 15:55:04 GMT" ], "Content-Length": [ "699" @@ -489,26 +489,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupPolicies/newFilePolicy\",\r\n \"name\": \"newFilePolicy\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupPolicies\",\r\n \"properties\": {\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"schedulePolicy\": {\r\n \"schedulePolicyType\": \"SimpleSchedulePolicy\",\r\n \"scheduleRunFrequency\": \"Daily\",\r\n \"scheduleRunTimes\": [\r\n \"2022-03-26T04: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 \"2022-03-26T04: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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupPolicies/newFilePolicy\",\r\n \"name\": \"newFilePolicy\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupPolicies\",\r\n \"properties\": {\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"schedulePolicy\": {\r\n \"schedulePolicyType\": \"SimpleSchedulePolicy\",\r\n \"scheduleRunFrequency\": \"Daily\",\r\n \"scheduleRunTimes\": [\r\n \"2022-05-16T12: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 \"2022-05-16T12: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/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupPolicies/newFilePolicy?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwUG9saWNpZXMvbmV3RmlsZVBvbGljeT9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupPolicies/newFilePolicy?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwUG9saWNpZXMvbmV3RmlsZVBvbGljeT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"workLoadType\": \"AzureFileShare\",\r\n \"schedulePolicy\": {\r\n \"schedulePolicyType\": \"SimpleSchedulePolicy\",\r\n \"scheduleRunFrequency\": \"Daily\",\r\n \"scheduleRunTimes\": [\r\n \"2022-03-26T04:30:00Z\"\r\n ]\r\n },\r\n \"retentionPolicy\": {\r\n \"retentionPolicyType\": \"LongTermRetentionPolicy\",\r\n \"dailySchedule\": {\r\n \"retentionTimes\": [\r\n \"2022-03-26T04:30:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 31,\r\n \"durationType\": \"Days\"\r\n }\r\n }\r\n },\r\n \"timeZone\": \"UTC\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"workLoadType\": \"AzureFileShare\",\r\n \"schedulePolicy\": {\r\n \"schedulePolicyType\": \"SimpleSchedulePolicy\",\r\n \"scheduleRunFrequency\": \"Daily\",\r\n \"scheduleRunTimes\": [\r\n \"2022-05-16T12:30:00Z\"\r\n ]\r\n },\r\n \"retentionPolicy\": {\r\n \"retentionPolicyType\": \"LongTermRetentionPolicy\",\r\n \"dailySchedule\": {\r\n \"retentionTimes\": [\r\n \"2022-05-16T12:30:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 31,\r\n \"durationType\": \"Days\"\r\n }\r\n }\r\n },\r\n \"timeZone\": \"UTC\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "a1edd04f-5def-4b8e-b0c5-1d301c217b5a" + "5b885e9e-761d-4ee2-8d9b-530083e7faaa" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -528,11 +528,11 @@ "nosniff" ], "x-ms-request-id": [ - "c26fb928-04c0-4cdd-93f2-2c676913fc4a" + "f9e15f1c-929f-466c-b933-507928c32881" ], "x-ms-client-request-id": [ - "a1edd04f-5def-4b8e-b0c5-1d301c217b5a", - "a1edd04f-5def-4b8e-b0c5-1d301c217b5a" + "5b885e9e-761d-4ee2-8d9b-530083e7faaa", + "5b885e9e-761d-4ee2-8d9b-530083e7faaa" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -547,13 +547,13 @@ "1198" ], "x-ms-correlation-request-id": [ - "c26fb928-04c0-4cdd-93f2-2c676913fc4a" + "f9e15f1c-929f-466c-b933-507928c32881" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T092915Z:c26fb928-04c0-4cdd-93f2-2c676913fc4a" + "WESTINDIA:20220516T155507Z:f9e15f1c-929f-466c-b933-507928c32881" ], "Date": [ - "Sat, 26 Mar 2022 09:29:14 GMT" + "Mon, 16 May 2022 15:55:07 GMT" ], "Content-Length": [ "699" @@ -565,26 +565,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupPolicies/newFilePolicy\",\r\n \"name\": \"newFilePolicy\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupPolicies\",\r\n \"properties\": {\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"schedulePolicy\": {\r\n \"schedulePolicyType\": \"SimpleSchedulePolicy\",\r\n \"scheduleRunFrequency\": \"Daily\",\r\n \"scheduleRunTimes\": [\r\n \"2022-03-26T04: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 \"2022-03-26T04:30:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 31,\r\n \"durationType\": \"Days\"\r\n }\r\n }\r\n },\r\n \"timeZone\": \"UTC\",\r\n \"protectedItemsCount\": 0\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupPolicies/newFilePolicy\",\r\n \"name\": \"newFilePolicy\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupPolicies\",\r\n \"properties\": {\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"schedulePolicy\": {\r\n \"schedulePolicyType\": \"SimpleSchedulePolicy\",\r\n \"scheduleRunFrequency\": \"Daily\",\r\n \"scheduleRunTimes\": [\r\n \"2022-05-16T12: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 \"2022-05-16T12:30:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 31,\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/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupPolicies/newFilePolicy?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwUG9saWNpZXMvbmV3RmlsZVBvbGljeT9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupPolicies/newFilePolicy?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwUG9saWNpZXMvbmV3RmlsZVBvbGljeT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "385f384f-13d5-450d-a1d3-233e3304be06" + "0bf73882-2be6-40e9-a172-1426243097b2" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -598,11 +598,11 @@ "nosniff" ], "x-ms-request-id": [ - "b9bc352b-6b7c-49b9-a094-fd1683012612" + "c937b080-cdbf-4564-810e-583b4af79ecd" ], "x-ms-client-request-id": [ - "385f384f-13d5-450d-a1d3-233e3304be06", - "385f384f-13d5-450d-a1d3-233e3304be06" + "0bf73882-2be6-40e9-a172-1426243097b2", + "0bf73882-2be6-40e9-a172-1426243097b2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -614,13 +614,13 @@ "14999" ], "x-ms-correlation-request-id": [ - "b9bc352b-6b7c-49b9-a094-fd1683012612" + "c937b080-cdbf-4564-810e-583b4af79ecd" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T092916Z:b9bc352b-6b7c-49b9-a094-fd1683012612" + "WESTINDIA:20220516T155508Z:c937b080-cdbf-4564-810e-583b4af79ecd" ], "Date": [ - "Sat, 26 Mar 2022 09:29:15 GMT" + "Mon, 16 May 2022 15:55:08 GMT" ], "Expires": [ "-1" @@ -633,22 +633,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupPolicies?$filter=backupManagementType%20eq%20'AzureStorage'&api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwUG9saWNpZXM/JGZpbHRlcj1iYWNrdXBNYW5hZ2VtZW50VHlwZSUyMGVxJTIwJ0F6dXJlU3RvcmFnZScmYXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupPolicies?$filter=backupManagementType%20eq%20'AzureStorage'&api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwUG9saWNpZXM/JGZpbHRlcj1iYWNrdXBNYW5hZ2VtZW50VHlwZSUyMGVxJTIwJ0F6dXJlU3RvcmFnZScmYXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0c8b04b6-4cb7-44dc-a440-6d02e36b1946" + "70322e94-258f-4731-89d1-cdec0c978f3e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -662,11 +662,11 @@ "nosniff" ], "x-ms-request-id": [ - "edf3821f-ee04-44a9-b38a-053ededcc331" + "4e006a11-8d09-4f99-98c2-048eeec29e13" ], "x-ms-client-request-id": [ - "0c8b04b6-4cb7-44dc-a440-6d02e36b1946", - "0c8b04b6-4cb7-44dc-a440-6d02e36b1946" + "70322e94-258f-4731-89d1-cdec0c978f3e", + "70322e94-258f-4731-89d1-cdec0c978f3e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -681,13 +681,13 @@ "294" ], "x-ms-correlation-request-id": [ - "edf3821f-ee04-44a9-b38a-053ededcc331" + "4e006a11-8d09-4f99-98c2-048eeec29e13" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220326T092917Z:edf3821f-ee04-44a9-b38a-053ededcc331" + "WESTINDIA:20220516T155509Z:4e006a11-8d09-4f99-98c2-048eeec29e13" ], "Date": [ - "Sat, 26 Mar 2022 09:29:16 GMT" + "Mon, 16 May 2022 15:55:08 GMT" ], "Content-Length": [ "2196" diff --git a/src/RecoveryServices/RecoveryServices.Backup.Test/SessionRecords/Microsoft.Azure.Commands.RecoveryServices.Backup.Test.ScenarioTests.PolicyTests/TestAzureVMEnhancedPolicy.json b/src/RecoveryServices/RecoveryServices.Backup.Test/SessionRecords/Microsoft.Azure.Commands.RecoveryServices.Backup.Test.ScenarioTests.PolicyTests/TestAzureVMEnhancedPolicy.json index 0454c313aa39..dc2bd9662d33 100644 --- a/src/RecoveryServices/RecoveryServices.Backup.Test/SessionRecords/Microsoft.Azure.Commands.RecoveryServices.Backup.Test.ScenarioTests.PolicyTests/TestAzureVMEnhancedPolicy.json +++ b/src/RecoveryServices/RecoveryServices.Backup.Test/SessionRecords/Microsoft.Azure.Commands.RecoveryServices.Backup.Test.ScenarioTests.PolicyTests/TestAzureVMEnhancedPolicy.json @@ -7,13 +7,13 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "52ff953f-572a-4a16-a105-815a90f29e91" + "7d57be3b-6325-47bb-b540-34cf1d7e446f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesClient/4.3.2.0" @@ -27,34 +27,34 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11998" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "0d30b920-95ef-4744-b9c1-931d13989915" + "5d264534-5742-466d-9eb5-a9e715de515f" ], "x-ms-client-request-id": [ - "52ff953f-572a-4a16-a105-815a90f29e91" + "7d57be3b-6325-47bb-b540-34cf1d7e446f" ], "Server": [ "Kestrel" ], "x-ms-correlation-request-id": [ - "0d30b920-95ef-4744-b9c1-931d13989915" + "5d264534-5742-466d-9eb5-a9e715de515f" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220329T042627Z:0d30b920-95ef-4744-b9c1-931d13989915" + "WESTINDIA:20220516T160217Z:5d264534-5742-466d-9eb5-a9e715de515f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Tue, 29 Mar 2022 04:26:26 GMT" + "Mon, 16 May 2022 16:02:17 GMT" ], "Content-Length": [ - "982" + "1034" ], "Content-Type": [ "application/json; charset=utf-8" @@ -63,26 +63,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"location\": \"centraluseuap\",\r\n \"name\": \"hiagaVault\",\r\n \"etag\": \"W/\\\"datetime'2022-03-22T09%3A36%3A21.4588503Z'\\\"\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\",\r\n \"Owner\": \"hiaga\",\r\n \"Purpose\": \"Testing\",\r\n \"DeleteBy\": \"01-2099\"\r\n },\r\n \"identity\": {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"principalId\": \"09f8c66b-fe60-4dbb-ba66-57b4232a4867\",\r\n \"type\": \"SystemAssigned, UserAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourcegroups/hiagaczr-rg/providers/microsoft.managedidentity/userassignedidentities/hiagauseridentity\": {\r\n \"clientId\": \"05a1da4a-ee20-42b9-94de-72175caa42bb\",\r\n \"principalId\": \"af96ebe9-5ed3-4753-9849-c314ddc1150c\"\r\n }\r\n }\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateEndpointStateForBackup\": \"None\",\r\n \"privateEndpointStateForSiteRecovery\": \"None\"\r\n },\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"RS0\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"location\": \"centraluseuap\",\r\n \"name\": \"hiagaVault\",\r\n \"etag\": \"W/\\\"datetime'2022-03-22T09%3A36%3A21.4588503Z'\\\"\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\",\r\n \"Owner\": \"hiaga\",\r\n \"Purpose\": \"Testing\",\r\n \"DeleteBy\": \"01-2099\"\r\n },\r\n \"identity\": {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"principalId\": \"09f8c66b-fe60-4dbb-ba66-57b4232a4867\",\r\n \"type\": \"SystemAssigned, UserAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourcegroups/hiagaczr-rg/providers/microsoft.managedidentity/userassignedidentities/hiagauseridentity\": {\r\n \"clientId\": \"05a1da4a-ee20-42b9-94de-72175caa42bb\",\r\n \"principalId\": \"af96ebe9-5ed3-4753-9849-c314ddc1150c\"\r\n }\r\n }\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateEndpointStateForBackup\": \"None\",\r\n \"privateEndpointStateForSiteRecovery\": \"None\",\r\n \"networkSettings\": {\r\n \"publicNetworkAccess\": \"Enabled\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"RS0\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupPolicies/psTestEnhancedPolicy?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cFBvbGljaWVzL3BzVGVzdEVuaGFuY2VkUG9saWN5P2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupPolicies/psTestEnhancedPolicy?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cFBvbGljaWVzL3BzVGVzdEVuaGFuY2VkUG9saWN5P2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b0026b81-225e-48fc-83a4-3904150bca16" + "cf06de36-9262-427d-903c-d0c30e1c641e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -96,10 +96,10 @@ "nosniff" ], "x-ms-request-id": [ - "2ae29247-9dc3-443e-b0f8-947b9ebe5621" + "e8ff6cea-347f-4774-b3d0-f5c22e6a6dde" ], "x-ms-client-request-id": [ - "b0026b81-225e-48fc-83a4-3904150bca16" + "cf06de36-9262-427d-903c-d0c30e1c641e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -114,13 +114,13 @@ "299" ], "x-ms-correlation-request-id": [ - "2ae29247-9dc3-443e-b0f8-947b9ebe5621" + "e8ff6cea-347f-4774-b3d0-f5c22e6a6dde" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220329T042628Z:2ae29247-9dc3-443e-b0f8-947b9ebe5621" + "WESTINDIA:20220516T160221Z:e8ff6cea-347f-4774-b3d0-f5c22e6a6dde" ], "Date": [ - "Tue, 29 Mar 2022 04:26:28 GMT" + "Mon, 16 May 2022 16:02:21 GMT" ], "Content-Length": [ "2" @@ -136,22 +136,22 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupPolicies/psTestEnhancedPolicy?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cFBvbGljaWVzL3BzVGVzdEVuaGFuY2VkUG9saWN5P2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupPolicies/psTestEnhancedPolicy?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cFBvbGljaWVzL3BzVGVzdEVuaGFuY2VkUG9saWN5P2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b0026b81-225e-48fc-83a4-3904150bca16" + "cf06de36-9262-427d-903c-d0c30e1c641e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -165,10 +165,10 @@ "nosniff" ], "x-ms-request-id": [ - "f22e236f-d49d-4e62-9bbe-c0efb8407620" + "3e61c98f-c114-4198-8a56-adb6bc08f778" ], "x-ms-client-request-id": [ - "b0026b81-225e-48fc-83a4-3904150bca16" + "cf06de36-9262-427d-903c-d0c30e1c641e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -183,13 +183,13 @@ "298" ], "x-ms-correlation-request-id": [ - "f22e236f-d49d-4e62-9bbe-c0efb8407620" + "3e61c98f-c114-4198-8a56-adb6bc08f778" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220329T042629Z:f22e236f-d49d-4e62-9bbe-c0efb8407620" + "WESTINDIA:20220516T160223Z:3e61c98f-c114-4198-8a56-adb6bc08f778" ], "Date": [ - "Tue, 29 Mar 2022 04:26:29 GMT" + "Mon, 16 May 2022 16:02:23 GMT" ], "Content-Length": [ "1304" @@ -201,26 +201,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupPolicies/psTestEnhancedPolicy\",\r\n \"name\": \"psTestEnhancedPolicy\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupPolicies\",\r\n \"properties\": {\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"policyType\": \"V2\",\r\n \"instantRPDetails\": {},\r\n \"schedulePolicy\": {\r\n \"schedulePolicyType\": \"SimpleSchedulePolicyV2\",\r\n \"scheduleRunFrequency\": \"Weekly\",\r\n \"weeklySchedule\": {\r\n \"scheduleRunDays\": [\r\n \"Sunday\"\r\n ],\r\n \"scheduleRunTimes\": [\r\n \"2022-03-29T15:00:00Z\"\r\n ]\r\n }\r\n },\r\n \"retentionPolicy\": {\r\n \"retentionPolicyType\": \"LongTermRetentionPolicy\",\r\n \"weeklySchedule\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"retentionTimes\": [\r\n \"2022-03-29T15:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 104,\r\n \"durationType\": \"Weeks\"\r\n }\r\n },\r\n \"monthlySchedule\": {\r\n \"retentionScheduleFormatType\": \"Weekly\",\r\n \"retentionScheduleWeekly\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"weeksOfTheMonth\": [\r\n \"First\"\r\n ]\r\n },\r\n \"retentionTimes\": [\r\n \"2022-03-29T15:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 60,\r\n \"durationType\": \"Months\"\r\n }\r\n },\r\n \"yearlySchedule\": {\r\n \"retentionScheduleFormatType\": \"Weekly\",\r\n \"monthsOfYear\": [\r\n \"January\"\r\n ],\r\n \"retentionScheduleWeekly\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"weeksOfTheMonth\": [\r\n \"First\"\r\n ]\r\n },\r\n \"retentionTimes\": [\r\n \"2022-03-29T15:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 10,\r\n \"durationType\": \"Years\"\r\n }\r\n }\r\n },\r\n \"timeZone\": \"UTC\",\r\n \"protectedItemsCount\": 0\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupPolicies/psTestEnhancedPolicy\",\r\n \"name\": \"psTestEnhancedPolicy\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupPolicies\",\r\n \"properties\": {\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"policyType\": \"V2\",\r\n \"instantRPDetails\": {},\r\n \"schedulePolicy\": {\r\n \"schedulePolicyType\": \"SimpleSchedulePolicyV2\",\r\n \"scheduleRunFrequency\": \"Weekly\",\r\n \"weeklySchedule\": {\r\n \"scheduleRunDays\": [\r\n \"Sunday\"\r\n ],\r\n \"scheduleRunTimes\": [\r\n \"2022-05-16T01:00:00Z\"\r\n ]\r\n }\r\n },\r\n \"retentionPolicy\": {\r\n \"retentionPolicyType\": \"LongTermRetentionPolicy\",\r\n \"weeklySchedule\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"retentionTimes\": [\r\n \"2022-05-16T01:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 104,\r\n \"durationType\": \"Weeks\"\r\n }\r\n },\r\n \"monthlySchedule\": {\r\n \"retentionScheduleFormatType\": \"Weekly\",\r\n \"retentionScheduleWeekly\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"weeksOfTheMonth\": [\r\n \"First\"\r\n ]\r\n },\r\n \"retentionTimes\": [\r\n \"2022-05-16T01:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 60,\r\n \"durationType\": \"Months\"\r\n }\r\n },\r\n \"yearlySchedule\": {\r\n \"retentionScheduleFormatType\": \"Weekly\",\r\n \"monthsOfYear\": [\r\n \"January\"\r\n ],\r\n \"retentionScheduleWeekly\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"weeksOfTheMonth\": [\r\n \"First\"\r\n ]\r\n },\r\n \"retentionTimes\": [\r\n \"2022-05-16T01:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 10,\r\n \"durationType\": \"Years\"\r\n }\r\n }\r\n },\r\n \"timeZone\": \"UTC\",\r\n \"protectedItemsCount\": 0\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupPolicies/psTestEnhancedPolicy?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cFBvbGljaWVzL3BzVGVzdEVuaGFuY2VkUG9saWN5P2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupPolicies/psTestEnhancedPolicy?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cFBvbGljaWVzL3BzVGVzdEVuaGFuY2VkUG9saWN5P2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2508afda-bb24-4efa-838a-a9111c329723" + "f6b84672-e679-4c3c-b2b6-406f469d7840" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -234,10 +234,10 @@ "nosniff" ], "x-ms-request-id": [ - "7d749b8c-4cf9-41b1-8528-03c585fba3b4" + "6b6e3b65-7918-43a7-80c0-f3dbe764cff6" ], "x-ms-client-request-id": [ - "2508afda-bb24-4efa-838a-a9111c329723" + "f6b84672-e679-4c3c-b2b6-406f469d7840" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -252,13 +252,13 @@ "297" ], "x-ms-correlation-request-id": [ - "7d749b8c-4cf9-41b1-8528-03c585fba3b4" + "6b6e3b65-7918-43a7-80c0-f3dbe764cff6" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220329T042630Z:7d749b8c-4cf9-41b1-8528-03c585fba3b4" + "WESTINDIA:20220516T160224Z:6b6e3b65-7918-43a7-80c0-f3dbe764cff6" ], "Date": [ - "Tue, 29 Mar 2022 04:26:30 GMT" + "Mon, 16 May 2022 16:02:23 GMT" ], "Content-Length": [ "1304" @@ -270,26 +270,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupPolicies/psTestEnhancedPolicy\",\r\n \"name\": \"psTestEnhancedPolicy\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupPolicies\",\r\n \"properties\": {\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"policyType\": \"V2\",\r\n \"instantRPDetails\": {},\r\n \"schedulePolicy\": {\r\n \"schedulePolicyType\": \"SimpleSchedulePolicyV2\",\r\n \"scheduleRunFrequency\": \"Weekly\",\r\n \"weeklySchedule\": {\r\n \"scheduleRunDays\": [\r\n \"Sunday\"\r\n ],\r\n \"scheduleRunTimes\": [\r\n \"2022-03-29T15:00:00Z\"\r\n ]\r\n }\r\n },\r\n \"retentionPolicy\": {\r\n \"retentionPolicyType\": \"LongTermRetentionPolicy\",\r\n \"weeklySchedule\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"retentionTimes\": [\r\n \"2022-03-29T15:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 104,\r\n \"durationType\": \"Weeks\"\r\n }\r\n },\r\n \"monthlySchedule\": {\r\n \"retentionScheduleFormatType\": \"Weekly\",\r\n \"retentionScheduleWeekly\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"weeksOfTheMonth\": [\r\n \"First\"\r\n ]\r\n },\r\n \"retentionTimes\": [\r\n \"2022-03-29T15:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 60,\r\n \"durationType\": \"Months\"\r\n }\r\n },\r\n \"yearlySchedule\": {\r\n \"retentionScheduleFormatType\": \"Weekly\",\r\n \"monthsOfYear\": [\r\n \"January\"\r\n ],\r\n \"retentionScheduleWeekly\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"weeksOfTheMonth\": [\r\n \"First\"\r\n ]\r\n },\r\n \"retentionTimes\": [\r\n \"2022-03-29T15:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 10,\r\n \"durationType\": \"Years\"\r\n }\r\n }\r\n },\r\n \"timeZone\": \"UTC\",\r\n \"protectedItemsCount\": 0\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupPolicies/psTestEnhancedPolicy\",\r\n \"name\": \"psTestEnhancedPolicy\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupPolicies\",\r\n \"properties\": {\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"policyType\": \"V2\",\r\n \"instantRPDetails\": {},\r\n \"schedulePolicy\": {\r\n \"schedulePolicyType\": \"SimpleSchedulePolicyV2\",\r\n \"scheduleRunFrequency\": \"Weekly\",\r\n \"weeklySchedule\": {\r\n \"scheduleRunDays\": [\r\n \"Sunday\"\r\n ],\r\n \"scheduleRunTimes\": [\r\n \"2022-05-16T01:00:00Z\"\r\n ]\r\n }\r\n },\r\n \"retentionPolicy\": {\r\n \"retentionPolicyType\": \"LongTermRetentionPolicy\",\r\n \"weeklySchedule\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"retentionTimes\": [\r\n \"2022-05-16T01:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 104,\r\n \"durationType\": \"Weeks\"\r\n }\r\n },\r\n \"monthlySchedule\": {\r\n \"retentionScheduleFormatType\": \"Weekly\",\r\n \"retentionScheduleWeekly\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"weeksOfTheMonth\": [\r\n \"First\"\r\n ]\r\n },\r\n \"retentionTimes\": [\r\n \"2022-05-16T01:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 60,\r\n \"durationType\": \"Months\"\r\n }\r\n },\r\n \"yearlySchedule\": {\r\n \"retentionScheduleFormatType\": \"Weekly\",\r\n \"monthsOfYear\": [\r\n \"January\"\r\n ],\r\n \"retentionScheduleWeekly\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"weeksOfTheMonth\": [\r\n \"First\"\r\n ]\r\n },\r\n \"retentionTimes\": [\r\n \"2022-05-16T01:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 10,\r\n \"durationType\": \"Years\"\r\n }\r\n }\r\n },\r\n \"timeZone\": \"UTC\",\r\n \"protectedItemsCount\": 0\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupPolicies/psTestEnhancedPolicy?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cFBvbGljaWVzL3BzVGVzdEVuaGFuY2VkUG9saWN5P2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupPolicies/psTestEnhancedPolicy?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cFBvbGljaWVzL3BzVGVzdEVuaGFuY2VkUG9saWN5P2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "efc125af-930f-42ca-8583-3da032227250" + "b66c117a-07c5-4d10-b869-0802e49786de" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -303,10 +303,10 @@ "nosniff" ], "x-ms-request-id": [ - "2bd91913-75cb-43f4-aa0f-fd5ad0aba75b" + "f2609574-c764-420a-904a-26d288db01f0" ], "x-ms-client-request-id": [ - "efc125af-930f-42ca-8583-3da032227250" + "b66c117a-07c5-4d10-b869-0802e49786de" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -321,13 +321,13 @@ "296" ], "x-ms-correlation-request-id": [ - "2bd91913-75cb-43f4-aa0f-fd5ad0aba75b" + "f2609574-c764-420a-904a-26d288db01f0" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220329T042630Z:2bd91913-75cb-43f4-aa0f-fd5ad0aba75b" + "WESTINDIA:20220516T160226Z:f2609574-c764-420a-904a-26d288db01f0" ], "Date": [ - "Tue, 29 Mar 2022 04:26:30 GMT" + "Mon, 16 May 2022 16:02:25 GMT" ], "Content-Length": [ "1304" @@ -339,26 +339,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupPolicies/psTestEnhancedPolicy\",\r\n \"name\": \"psTestEnhancedPolicy\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupPolicies\",\r\n \"properties\": {\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"policyType\": \"V2\",\r\n \"instantRPDetails\": {},\r\n \"schedulePolicy\": {\r\n \"schedulePolicyType\": \"SimpleSchedulePolicyV2\",\r\n \"scheduleRunFrequency\": \"Weekly\",\r\n \"weeklySchedule\": {\r\n \"scheduleRunDays\": [\r\n \"Sunday\"\r\n ],\r\n \"scheduleRunTimes\": [\r\n \"2022-03-29T15:00:00Z\"\r\n ]\r\n }\r\n },\r\n \"retentionPolicy\": {\r\n \"retentionPolicyType\": \"LongTermRetentionPolicy\",\r\n \"weeklySchedule\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"retentionTimes\": [\r\n \"2022-03-29T15:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 104,\r\n \"durationType\": \"Weeks\"\r\n }\r\n },\r\n \"monthlySchedule\": {\r\n \"retentionScheduleFormatType\": \"Weekly\",\r\n \"retentionScheduleWeekly\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"weeksOfTheMonth\": [\r\n \"First\"\r\n ]\r\n },\r\n \"retentionTimes\": [\r\n \"2022-03-29T15:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 60,\r\n \"durationType\": \"Months\"\r\n }\r\n },\r\n \"yearlySchedule\": {\r\n \"retentionScheduleFormatType\": \"Weekly\",\r\n \"monthsOfYear\": [\r\n \"January\"\r\n ],\r\n \"retentionScheduleWeekly\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"weeksOfTheMonth\": [\r\n \"First\"\r\n ]\r\n },\r\n \"retentionTimes\": [\r\n \"2022-03-29T15:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 10,\r\n \"durationType\": \"Years\"\r\n }\r\n }\r\n },\r\n \"timeZone\": \"UTC\",\r\n \"protectedItemsCount\": 0\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupPolicies/psTestEnhancedPolicy\",\r\n \"name\": \"psTestEnhancedPolicy\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupPolicies\",\r\n \"properties\": {\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"policyType\": \"V2\",\r\n \"instantRPDetails\": {},\r\n \"schedulePolicy\": {\r\n \"schedulePolicyType\": \"SimpleSchedulePolicyV2\",\r\n \"scheduleRunFrequency\": \"Weekly\",\r\n \"weeklySchedule\": {\r\n \"scheduleRunDays\": [\r\n \"Sunday\"\r\n ],\r\n \"scheduleRunTimes\": [\r\n \"2022-05-16T01:00:00Z\"\r\n ]\r\n }\r\n },\r\n \"retentionPolicy\": {\r\n \"retentionPolicyType\": \"LongTermRetentionPolicy\",\r\n \"weeklySchedule\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"retentionTimes\": [\r\n \"2022-05-16T01:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 104,\r\n \"durationType\": \"Weeks\"\r\n }\r\n },\r\n \"monthlySchedule\": {\r\n \"retentionScheduleFormatType\": \"Weekly\",\r\n \"retentionScheduleWeekly\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"weeksOfTheMonth\": [\r\n \"First\"\r\n ]\r\n },\r\n \"retentionTimes\": [\r\n \"2022-05-16T01:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 60,\r\n \"durationType\": \"Months\"\r\n }\r\n },\r\n \"yearlySchedule\": {\r\n \"retentionScheduleFormatType\": \"Weekly\",\r\n \"monthsOfYear\": [\r\n \"January\"\r\n ],\r\n \"retentionScheduleWeekly\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"weeksOfTheMonth\": [\r\n \"First\"\r\n ]\r\n },\r\n \"retentionTimes\": [\r\n \"2022-05-16T01:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 10,\r\n \"durationType\": \"Years\"\r\n }\r\n }\r\n },\r\n \"timeZone\": \"UTC\",\r\n \"protectedItemsCount\": 0\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupPolicies/psTestEnhancedPolicy?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cFBvbGljaWVzL3BzVGVzdEVuaGFuY2VkUG9saWN5P2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupPolicies/psTestEnhancedPolicy?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cFBvbGljaWVzL3BzVGVzdEVuaGFuY2VkUG9saWN5P2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a7a0e4e4-1813-452f-a234-0799b8a0b8c9" + "b6758f37-8524-4bd1-82d4-20b492c011ad" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -372,10 +372,10 @@ "nosniff" ], "x-ms-request-id": [ - "410fb5d9-f567-4cbd-a8b0-111166c2e473" + "4680816f-b791-424a-a2a4-6f9e8bdc90c6" ], "x-ms-client-request-id": [ - "a7a0e4e4-1813-452f-a234-0799b8a0b8c9" + "b6758f37-8524-4bd1-82d4-20b492c011ad" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -390,13 +390,13 @@ "295" ], "x-ms-correlation-request-id": [ - "410fb5d9-f567-4cbd-a8b0-111166c2e473" + "4680816f-b791-424a-a2a4-6f9e8bdc90c6" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220329T042632Z:410fb5d9-f567-4cbd-a8b0-111166c2e473" + "WESTINDIA:20220516T160228Z:4680816f-b791-424a-a2a4-6f9e8bdc90c6" ], "Date": [ - "Tue, 29 Mar 2022 04:26:31 GMT" + "Mon, 16 May 2022 16:02:27 GMT" ], "Content-Length": [ "1320" @@ -412,22 +412,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupPolicies/psTestEnhancedPolicy?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cFBvbGljaWVzL3BzVGVzdEVuaGFuY2VkUG9saWN5P2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupPolicies/psTestEnhancedPolicy?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cFBvbGljaWVzL3BzVGVzdEVuaGFuY2VkUG9saWN5P2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "df52ec43-b590-473e-8c81-9c7afead3fcc" + "cb3c2b73-32f9-4852-8fa0-f477b2dfbc73" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -441,10 +441,10 @@ "nosniff" ], "x-ms-request-id": [ - "61ea1a4a-ca06-4d87-8ee8-8589deab63b7" + "c6b80314-ce4b-426b-a402-d46793ad6431" ], "x-ms-client-request-id": [ - "df52ec43-b590-473e-8c81-9c7afead3fcc" + "cb3c2b73-32f9-4852-8fa0-f477b2dfbc73" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -459,13 +459,13 @@ "294" ], "x-ms-correlation-request-id": [ - "61ea1a4a-ca06-4d87-8ee8-8589deab63b7" + "c6b80314-ce4b-426b-a402-d46793ad6431" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220329T042632Z:61ea1a4a-ca06-4d87-8ee8-8589deab63b7" + "WESTINDIA:20220516T160228Z:c6b80314-ce4b-426b-a402-d46793ad6431" ], "Date": [ - "Tue, 29 Mar 2022 04:26:31 GMT" + "Mon, 16 May 2022 16:02:28 GMT" ], "Content-Length": [ "1320" @@ -481,22 +481,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupPolicies/psTestEnhancedPolicy?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cFBvbGljaWVzL3BzVGVzdEVuaGFuY2VkUG9saWN5P2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupPolicies/psTestEnhancedPolicy?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cFBvbGljaWVzL3BzVGVzdEVuaGFuY2VkUG9saWN5P2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "727ad94b-7d8c-443a-9e75-693017598971" + "6f6cf105-5e1e-44d7-bd6d-2edf9198efab" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -510,10 +510,10 @@ "nosniff" ], "x-ms-request-id": [ - "14fc83b6-63ab-4f29-a738-ded39b1c1780" + "8cbbd665-8ae5-46d8-a8e0-d30cc764a455" ], "x-ms-client-request-id": [ - "727ad94b-7d8c-443a-9e75-693017598971" + "6f6cf105-5e1e-44d7-bd6d-2edf9198efab" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -528,13 +528,13 @@ "293" ], "x-ms-correlation-request-id": [ - "14fc83b6-63ab-4f29-a738-ded39b1c1780" + "8cbbd665-8ae5-46d8-a8e0-d30cc764a455" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220329T042633Z:14fc83b6-63ab-4f29-a738-ded39b1c1780" + "WESTINDIA:20220516T160230Z:8cbbd665-8ae5-46d8-a8e0-d30cc764a455" ], "Date": [ - "Tue, 29 Mar 2022 04:26:33 GMT" + "Mon, 16 May 2022 16:02:29 GMT" ], "Content-Length": [ "1389" @@ -546,26 +546,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupPolicies/psTestEnhancedPolicy\",\r\n \"name\": \"psTestEnhancedPolicy\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupPolicies\",\r\n \"properties\": {\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"policyType\": \"V2\",\r\n \"instantRPDetails\": {},\r\n \"schedulePolicy\": {\r\n \"schedulePolicyType\": \"SimpleSchedulePolicyV2\",\r\n \"scheduleRunFrequency\": \"Daily\",\r\n \"dailySchedule\": {\r\n \"scheduleRunTimes\": [\r\n \"2022-03-29T22:00:00Z\"\r\n ]\r\n }\r\n },\r\n \"retentionPolicy\": {\r\n \"retentionPolicyType\": \"LongTermRetentionPolicy\",\r\n \"dailySchedule\": {\r\n \"retentionTimes\": [\r\n \"2022-03-29T22:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 180,\r\n \"durationType\": \"Days\"\r\n }\r\n },\r\n \"weeklySchedule\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"retentionTimes\": [\r\n \"2022-03-29T22:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 104,\r\n \"durationType\": \"Weeks\"\r\n }\r\n },\r\n \"monthlySchedule\": {\r\n \"retentionScheduleFormatType\": \"Weekly\",\r\n \"retentionScheduleWeekly\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"weeksOfTheMonth\": [\r\n \"First\"\r\n ]\r\n },\r\n \"retentionTimes\": [\r\n \"2022-03-29T22:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 60,\r\n \"durationType\": \"Months\"\r\n }\r\n },\r\n \"yearlySchedule\": {\r\n \"retentionScheduleFormatType\": \"Weekly\",\r\n \"monthsOfYear\": [\r\n \"January\"\r\n ],\r\n \"retentionScheduleWeekly\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"weeksOfTheMonth\": [\r\n \"First\"\r\n ]\r\n },\r\n \"retentionTimes\": [\r\n \"2022-03-29T22:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 10,\r\n \"durationType\": \"Years\"\r\n }\r\n }\r\n },\r\n \"timeZone\": \"UTC\",\r\n \"protectedItemsCount\": 0\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupPolicies/psTestEnhancedPolicy\",\r\n \"name\": \"psTestEnhancedPolicy\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupPolicies\",\r\n \"properties\": {\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"policyType\": \"V2\",\r\n \"instantRPDetails\": {},\r\n \"schedulePolicy\": {\r\n \"schedulePolicyType\": \"SimpleSchedulePolicyV2\",\r\n \"scheduleRunFrequency\": \"Daily\",\r\n \"dailySchedule\": {\r\n \"scheduleRunTimes\": [\r\n \"2022-05-16T17:00:00Z\"\r\n ]\r\n }\r\n },\r\n \"retentionPolicy\": {\r\n \"retentionPolicyType\": \"LongTermRetentionPolicy\",\r\n \"dailySchedule\": {\r\n \"retentionTimes\": [\r\n \"2022-05-16T17:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 180,\r\n \"durationType\": \"Days\"\r\n }\r\n },\r\n \"weeklySchedule\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"retentionTimes\": [\r\n \"2022-05-16T17:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 104,\r\n \"durationType\": \"Weeks\"\r\n }\r\n },\r\n \"monthlySchedule\": {\r\n \"retentionScheduleFormatType\": \"Weekly\",\r\n \"retentionScheduleWeekly\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"weeksOfTheMonth\": [\r\n \"First\"\r\n ]\r\n },\r\n \"retentionTimes\": [\r\n \"2022-05-16T17:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 60,\r\n \"durationType\": \"Months\"\r\n }\r\n },\r\n \"yearlySchedule\": {\r\n \"retentionScheduleFormatType\": \"Weekly\",\r\n \"monthsOfYear\": [\r\n \"January\"\r\n ],\r\n \"retentionScheduleWeekly\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"weeksOfTheMonth\": [\r\n \"First\"\r\n ]\r\n },\r\n \"retentionTimes\": [\r\n \"2022-05-16T17:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 10,\r\n \"durationType\": \"Years\"\r\n }\r\n }\r\n },\r\n \"timeZone\": \"UTC\",\r\n \"protectedItemsCount\": 0\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupPolicies/psTestEnhancedPolicy?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cFBvbGljaWVzL3BzVGVzdEVuaGFuY2VkUG9saWN5P2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupPolicies/psTestEnhancedPolicy?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cFBvbGljaWVzL3BzVGVzdEVuaGFuY2VkUG9saWN5P2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "04ea275d-28d2-4510-8120-e5f33363d7e3" + "b3fec7ba-f5c0-47f8-9181-42b22887bdda" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -579,10 +579,10 @@ "nosniff" ], "x-ms-request-id": [ - "48c82405-b9d1-4677-a578-b0648292fc57" + "feef1743-596e-4678-b502-0cecdc7ac599" ], "x-ms-client-request-id": [ - "04ea275d-28d2-4510-8120-e5f33363d7e3" + "b3fec7ba-f5c0-47f8-9181-42b22887bdda" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -597,13 +597,13 @@ "292" ], "x-ms-correlation-request-id": [ - "48c82405-b9d1-4677-a578-b0648292fc57" + "feef1743-596e-4678-b502-0cecdc7ac599" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220329T042634Z:48c82405-b9d1-4677-a578-b0648292fc57" + "WESTINDIA:20220516T160231Z:feef1743-596e-4678-b502-0cecdc7ac599" ], "Date": [ - "Tue, 29 Mar 2022 04:26:33 GMT" + "Mon, 16 May 2022 16:02:30 GMT" ], "Content-Length": [ "1389" @@ -615,26 +615,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupPolicies/psTestEnhancedPolicy\",\r\n \"name\": \"psTestEnhancedPolicy\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupPolicies\",\r\n \"properties\": {\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"policyType\": \"V2\",\r\n \"instantRPDetails\": {},\r\n \"schedulePolicy\": {\r\n \"schedulePolicyType\": \"SimpleSchedulePolicyV2\",\r\n \"scheduleRunFrequency\": \"Daily\",\r\n \"dailySchedule\": {\r\n \"scheduleRunTimes\": [\r\n \"2022-03-29T22:00:00Z\"\r\n ]\r\n }\r\n },\r\n \"retentionPolicy\": {\r\n \"retentionPolicyType\": \"LongTermRetentionPolicy\",\r\n \"dailySchedule\": {\r\n \"retentionTimes\": [\r\n \"2022-03-29T22:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 180,\r\n \"durationType\": \"Days\"\r\n }\r\n },\r\n \"weeklySchedule\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"retentionTimes\": [\r\n \"2022-03-29T22:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 104,\r\n \"durationType\": \"Weeks\"\r\n }\r\n },\r\n \"monthlySchedule\": {\r\n \"retentionScheduleFormatType\": \"Weekly\",\r\n \"retentionScheduleWeekly\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"weeksOfTheMonth\": [\r\n \"First\"\r\n ]\r\n },\r\n \"retentionTimes\": [\r\n \"2022-03-29T22:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 60,\r\n \"durationType\": \"Months\"\r\n }\r\n },\r\n \"yearlySchedule\": {\r\n \"retentionScheduleFormatType\": \"Weekly\",\r\n \"monthsOfYear\": [\r\n \"January\"\r\n ],\r\n \"retentionScheduleWeekly\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"weeksOfTheMonth\": [\r\n \"First\"\r\n ]\r\n },\r\n \"retentionTimes\": [\r\n \"2022-03-29T22:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 10,\r\n \"durationType\": \"Years\"\r\n }\r\n }\r\n },\r\n \"timeZone\": \"UTC\",\r\n \"protectedItemsCount\": 0\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupPolicies/psTestEnhancedPolicy\",\r\n \"name\": \"psTestEnhancedPolicy\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupPolicies\",\r\n \"properties\": {\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"policyType\": \"V2\",\r\n \"instantRPDetails\": {},\r\n \"schedulePolicy\": {\r\n \"schedulePolicyType\": \"SimpleSchedulePolicyV2\",\r\n \"scheduleRunFrequency\": \"Daily\",\r\n \"dailySchedule\": {\r\n \"scheduleRunTimes\": [\r\n \"2022-05-16T17:00:00Z\"\r\n ]\r\n }\r\n },\r\n \"retentionPolicy\": {\r\n \"retentionPolicyType\": \"LongTermRetentionPolicy\",\r\n \"dailySchedule\": {\r\n \"retentionTimes\": [\r\n \"2022-05-16T17:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 180,\r\n \"durationType\": \"Days\"\r\n }\r\n },\r\n \"weeklySchedule\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"retentionTimes\": [\r\n \"2022-05-16T17:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 104,\r\n \"durationType\": \"Weeks\"\r\n }\r\n },\r\n \"monthlySchedule\": {\r\n \"retentionScheduleFormatType\": \"Weekly\",\r\n \"retentionScheduleWeekly\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"weeksOfTheMonth\": [\r\n \"First\"\r\n ]\r\n },\r\n \"retentionTimes\": [\r\n \"2022-05-16T17:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 60,\r\n \"durationType\": \"Months\"\r\n }\r\n },\r\n \"yearlySchedule\": {\r\n \"retentionScheduleFormatType\": \"Weekly\",\r\n \"monthsOfYear\": [\r\n \"January\"\r\n ],\r\n \"retentionScheduleWeekly\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"weeksOfTheMonth\": [\r\n \"First\"\r\n ]\r\n },\r\n \"retentionTimes\": [\r\n \"2022-05-16T17:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 10,\r\n \"durationType\": \"Years\"\r\n }\r\n }\r\n },\r\n \"timeZone\": \"UTC\",\r\n \"protectedItemsCount\": 0\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupPolicies/psTestEnhancedPolicy?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cFBvbGljaWVzL3BzVGVzdEVuaGFuY2VkUG9saWN5P2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupPolicies/psTestEnhancedPolicy?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cFBvbGljaWVzL3BzVGVzdEVuaGFuY2VkUG9saWN5P2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"schedulePolicy\": {\r\n \"schedulePolicyType\": \"SimpleSchedulePolicyV2\",\r\n \"scheduleRunFrequency\": \"Weekly\",\r\n \"weeklySchedule\": {\r\n \"scheduleRunDays\": [\r\n \"Sunday\"\r\n ],\r\n \"scheduleRunTimes\": [\r\n \"2022-03-29T15:00:00Z\"\r\n ]\r\n }\r\n },\r\n \"retentionPolicy\": {\r\n \"retentionPolicyType\": \"LongTermRetentionPolicy\",\r\n \"weeklySchedule\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"retentionTimes\": [\r\n \"2022-03-29T15:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 104,\r\n \"durationType\": \"Weeks\"\r\n }\r\n },\r\n \"monthlySchedule\": {\r\n \"retentionScheduleFormatType\": \"Weekly\",\r\n \"retentionScheduleWeekly\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"weeksOfTheMonth\": [\r\n \"First\"\r\n ]\r\n },\r\n \"retentionTimes\": [\r\n \"2022-03-29T15:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 60,\r\n \"durationType\": \"Months\"\r\n }\r\n },\r\n \"yearlySchedule\": {\r\n \"retentionScheduleFormatType\": \"Weekly\",\r\n \"monthsOfYear\": [\r\n \"January\"\r\n ],\r\n \"retentionScheduleWeekly\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"weeksOfTheMonth\": [\r\n \"First\"\r\n ]\r\n },\r\n \"retentionTimes\": [\r\n \"2022-03-29T15:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 10,\r\n \"durationType\": \"Years\"\r\n }\r\n }\r\n },\r\n \"instantRpRetentionRangeInDays\": 7,\r\n \"timeZone\": \"UTC\",\r\n \"policyType\": \"V2\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"schedulePolicy\": {\r\n \"schedulePolicyType\": \"SimpleSchedulePolicyV2\",\r\n \"scheduleRunFrequency\": \"Weekly\",\r\n \"weeklySchedule\": {\r\n \"scheduleRunDays\": [\r\n \"Sunday\"\r\n ],\r\n \"scheduleRunTimes\": [\r\n \"2022-05-16T01:00:00Z\"\r\n ]\r\n }\r\n },\r\n \"retentionPolicy\": {\r\n \"retentionPolicyType\": \"LongTermRetentionPolicy\",\r\n \"weeklySchedule\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"retentionTimes\": [\r\n \"2022-05-16T01:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 104,\r\n \"durationType\": \"Weeks\"\r\n }\r\n },\r\n \"monthlySchedule\": {\r\n \"retentionScheduleFormatType\": \"Weekly\",\r\n \"retentionScheduleWeekly\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"weeksOfTheMonth\": [\r\n \"First\"\r\n ]\r\n },\r\n \"retentionTimes\": [\r\n \"2022-05-16T01:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 60,\r\n \"durationType\": \"Months\"\r\n }\r\n },\r\n \"yearlySchedule\": {\r\n \"retentionScheduleFormatType\": \"Weekly\",\r\n \"monthsOfYear\": [\r\n \"January\"\r\n ],\r\n \"retentionScheduleWeekly\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"weeksOfTheMonth\": [\r\n \"First\"\r\n ]\r\n },\r\n \"retentionTimes\": [\r\n \"2022-05-16T01:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 10,\r\n \"durationType\": \"Years\"\r\n }\r\n }\r\n },\r\n \"instantRpRetentionRangeInDays\": 7,\r\n \"timeZone\": \"UTC\",\r\n \"policyType\": \"V2\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "b0026b81-225e-48fc-83a4-3904150bca16" + "cf06de36-9262-427d-903c-d0c30e1c641e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -654,10 +654,10 @@ "nosniff" ], "x-ms-request-id": [ - "c9839ab2-ecc4-4c49-91d6-47cd05895e19" + "60f3a05b-f7dd-4cad-abfb-206cbadba2df" ], "x-ms-client-request-id": [ - "b0026b81-225e-48fc-83a4-3904150bca16" + "cf06de36-9262-427d-903c-d0c30e1c641e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -672,13 +672,13 @@ "1199" ], "x-ms-correlation-request-id": [ - "c9839ab2-ecc4-4c49-91d6-47cd05895e19" + "60f3a05b-f7dd-4cad-abfb-206cbadba2df" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220329T042629Z:c9839ab2-ecc4-4c49-91d6-47cd05895e19" + "WESTINDIA:20220516T160223Z:60f3a05b-f7dd-4cad-abfb-206cbadba2df" ], "Date": [ - "Tue, 29 Mar 2022 04:26:29 GMT" + "Mon, 16 May 2022 16:02:22 GMT" ], "Content-Length": [ "1304" @@ -690,26 +690,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupPolicies/psTestEnhancedPolicy\",\r\n \"name\": \"psTestEnhancedPolicy\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupPolicies\",\r\n \"properties\": {\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"policyType\": \"V2\",\r\n \"instantRPDetails\": {},\r\n \"schedulePolicy\": {\r\n \"schedulePolicyType\": \"SimpleSchedulePolicyV2\",\r\n \"scheduleRunFrequency\": \"Weekly\",\r\n \"weeklySchedule\": {\r\n \"scheduleRunDays\": [\r\n \"Sunday\"\r\n ],\r\n \"scheduleRunTimes\": [\r\n \"2022-03-29T15:00:00Z\"\r\n ]\r\n }\r\n },\r\n \"retentionPolicy\": {\r\n \"retentionPolicyType\": \"LongTermRetentionPolicy\",\r\n \"weeklySchedule\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"retentionTimes\": [\r\n \"2022-03-29T15:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 104,\r\n \"durationType\": \"Weeks\"\r\n }\r\n },\r\n \"monthlySchedule\": {\r\n \"retentionScheduleFormatType\": \"Weekly\",\r\n \"retentionScheduleWeekly\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"weeksOfTheMonth\": [\r\n \"First\"\r\n ]\r\n },\r\n \"retentionTimes\": [\r\n \"2022-03-29T15:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 60,\r\n \"durationType\": \"Months\"\r\n }\r\n },\r\n \"yearlySchedule\": {\r\n \"retentionScheduleFormatType\": \"Weekly\",\r\n \"monthsOfYear\": [\r\n \"January\"\r\n ],\r\n \"retentionScheduleWeekly\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"weeksOfTheMonth\": [\r\n \"First\"\r\n ]\r\n },\r\n \"retentionTimes\": [\r\n \"2022-03-29T15:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 10,\r\n \"durationType\": \"Years\"\r\n }\r\n }\r\n },\r\n \"timeZone\": \"UTC\",\r\n \"protectedItemsCount\": 0\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupPolicies/psTestEnhancedPolicy\",\r\n \"name\": \"psTestEnhancedPolicy\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupPolicies\",\r\n \"properties\": {\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"policyType\": \"V2\",\r\n \"instantRPDetails\": {},\r\n \"schedulePolicy\": {\r\n \"schedulePolicyType\": \"SimpleSchedulePolicyV2\",\r\n \"scheduleRunFrequency\": \"Weekly\",\r\n \"weeklySchedule\": {\r\n \"scheduleRunDays\": [\r\n \"Sunday\"\r\n ],\r\n \"scheduleRunTimes\": [\r\n \"2022-05-16T01:00:00Z\"\r\n ]\r\n }\r\n },\r\n \"retentionPolicy\": {\r\n \"retentionPolicyType\": \"LongTermRetentionPolicy\",\r\n \"weeklySchedule\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"retentionTimes\": [\r\n \"2022-05-16T01:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 104,\r\n \"durationType\": \"Weeks\"\r\n }\r\n },\r\n \"monthlySchedule\": {\r\n \"retentionScheduleFormatType\": \"Weekly\",\r\n \"retentionScheduleWeekly\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"weeksOfTheMonth\": [\r\n \"First\"\r\n ]\r\n },\r\n \"retentionTimes\": [\r\n \"2022-05-16T01:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 60,\r\n \"durationType\": \"Months\"\r\n }\r\n },\r\n \"yearlySchedule\": {\r\n \"retentionScheduleFormatType\": \"Weekly\",\r\n \"monthsOfYear\": [\r\n \"January\"\r\n ],\r\n \"retentionScheduleWeekly\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"weeksOfTheMonth\": [\r\n \"First\"\r\n ]\r\n },\r\n \"retentionTimes\": [\r\n \"2022-05-16T01:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 10,\r\n \"durationType\": \"Years\"\r\n }\r\n }\r\n },\r\n \"timeZone\": \"UTC\",\r\n \"protectedItemsCount\": 0\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupPolicies/psTestEnhancedPolicy?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cFBvbGljaWVzL3BzVGVzdEVuaGFuY2VkUG9saWN5P2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupPolicies/psTestEnhancedPolicy?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cFBvbGljaWVzL3BzVGVzdEVuaGFuY2VkUG9saWN5P2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"instantRPDetails\": {},\r\n \"schedulePolicy\": {\r\n \"schedulePolicyType\": \"SimpleSchedulePolicyV2\",\r\n \"scheduleRunFrequency\": \"Weekly\",\r\n \"weeklySchedule\": {\r\n \"scheduleRunDays\": [\r\n \"Sunday\"\r\n ],\r\n \"scheduleRunTimes\": [\r\n \"2021-12-22T06:00:00Z\"\r\n ]\r\n }\r\n },\r\n \"retentionPolicy\": {\r\n \"retentionPolicyType\": \"LongTermRetentionPolicy\",\r\n \"weeklySchedule\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"retentionTimes\": [\r\n \"2021-12-22T06:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 104,\r\n \"durationType\": \"Weeks\"\r\n }\r\n },\r\n \"monthlySchedule\": {\r\n \"retentionScheduleFormatType\": \"Weekly\",\r\n \"retentionScheduleWeekly\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"weeksOfTheMonth\": [\r\n \"First\"\r\n ]\r\n },\r\n \"retentionTimes\": [\r\n \"2021-12-22T06:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 60,\r\n \"durationType\": \"Months\"\r\n }\r\n },\r\n \"yearlySchedule\": {\r\n \"retentionScheduleFormatType\": \"Weekly\",\r\n \"monthsOfYear\": [\r\n \"January\"\r\n ],\r\n \"retentionScheduleWeekly\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"weeksOfTheMonth\": [\r\n \"First\"\r\n ]\r\n },\r\n \"retentionTimes\": [\r\n \"2021-12-22T06:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 10,\r\n \"durationType\": \"Years\"\r\n }\r\n }\r\n },\r\n \"timeZone\": \"India Standard Time\",\r\n \"policyType\": \"V2\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "efc125af-930f-42ca-8583-3da032227250" + "b66c117a-07c5-4d10-b869-0802e49786de" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -729,10 +729,10 @@ "nosniff" ], "x-ms-request-id": [ - "212b8ade-37ac-46d9-aeb8-34c7ca9e7a14" + "56fb1fd1-97dc-4b29-b808-d5d85c64ff6a" ], "x-ms-client-request-id": [ - "efc125af-930f-42ca-8583-3da032227250" + "b66c117a-07c5-4d10-b869-0802e49786de" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -747,13 +747,13 @@ "1198" ], "x-ms-correlation-request-id": [ - "212b8ade-37ac-46d9-aeb8-34c7ca9e7a14" + "56fb1fd1-97dc-4b29-b808-d5d85c64ff6a" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220329T042631Z:212b8ade-37ac-46d9-aeb8-34c7ca9e7a14" + "WESTINDIA:20220516T160227Z:56fb1fd1-97dc-4b29-b808-d5d85c64ff6a" ], "Date": [ - "Tue, 29 Mar 2022 04:26:31 GMT" + "Mon, 16 May 2022 16:02:26 GMT" ], "Content-Length": [ "1320" @@ -769,22 +769,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupPolicies/psTestEnhancedPolicy?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cFBvbGljaWVzL3BzVGVzdEVuaGFuY2VkUG9saWN5P2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupPolicies/psTestEnhancedPolicy?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cFBvbGljaWVzL3BzVGVzdEVuaGFuY2VkUG9saWN5P2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"instantRPDetails\": {},\r\n \"schedulePolicy\": {\r\n \"schedulePolicyType\": \"SimpleSchedulePolicyV2\",\r\n \"scheduleRunFrequency\": \"Daily\",\r\n \"dailySchedule\": {\r\n \"scheduleRunTimes\": [\r\n \"2022-03-29T22:00:00Z\"\r\n ]\r\n }\r\n },\r\n \"retentionPolicy\": {\r\n \"retentionPolicyType\": \"LongTermRetentionPolicy\",\r\n \"dailySchedule\": {\r\n \"retentionTimes\": [\r\n \"2022-03-29T22:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 180,\r\n \"durationType\": \"Days\"\r\n }\r\n },\r\n \"weeklySchedule\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"retentionTimes\": [\r\n \"2022-03-29T22:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 104,\r\n \"durationType\": \"Weeks\"\r\n }\r\n },\r\n \"monthlySchedule\": {\r\n \"retentionScheduleFormatType\": \"Weekly\",\r\n \"retentionScheduleWeekly\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"weeksOfTheMonth\": [\r\n \"First\"\r\n ]\r\n },\r\n \"retentionTimes\": [\r\n \"2022-03-29T22:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 60,\r\n \"durationType\": \"Months\"\r\n }\r\n },\r\n \"yearlySchedule\": {\r\n \"retentionScheduleFormatType\": \"Weekly\",\r\n \"monthsOfYear\": [\r\n \"January\"\r\n ],\r\n \"retentionScheduleWeekly\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"weeksOfTheMonth\": [\r\n \"First\"\r\n ]\r\n },\r\n \"retentionTimes\": [\r\n \"2022-03-29T22:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 10,\r\n \"durationType\": \"Years\"\r\n }\r\n }\r\n },\r\n \"timeZone\": \"UTC\",\r\n \"policyType\": \"V2\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"instantRPDetails\": {},\r\n \"schedulePolicy\": {\r\n \"schedulePolicyType\": \"SimpleSchedulePolicyV2\",\r\n \"scheduleRunFrequency\": \"Daily\",\r\n \"dailySchedule\": {\r\n \"scheduleRunTimes\": [\r\n \"2022-05-16T17:00:00Z\"\r\n ]\r\n }\r\n },\r\n \"retentionPolicy\": {\r\n \"retentionPolicyType\": \"LongTermRetentionPolicy\",\r\n \"dailySchedule\": {\r\n \"retentionTimes\": [\r\n \"2022-05-16T17:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 180,\r\n \"durationType\": \"Days\"\r\n }\r\n },\r\n \"weeklySchedule\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"retentionTimes\": [\r\n \"2022-05-16T17:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 104,\r\n \"durationType\": \"Weeks\"\r\n }\r\n },\r\n \"monthlySchedule\": {\r\n \"retentionScheduleFormatType\": \"Weekly\",\r\n \"retentionScheduleWeekly\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"weeksOfTheMonth\": [\r\n \"First\"\r\n ]\r\n },\r\n \"retentionTimes\": [\r\n \"2022-05-16T17:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 60,\r\n \"durationType\": \"Months\"\r\n }\r\n },\r\n \"yearlySchedule\": {\r\n \"retentionScheduleFormatType\": \"Weekly\",\r\n \"monthsOfYear\": [\r\n \"January\"\r\n ],\r\n \"retentionScheduleWeekly\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"weeksOfTheMonth\": [\r\n \"First\"\r\n ]\r\n },\r\n \"retentionTimes\": [\r\n \"2022-05-16T17:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 10,\r\n \"durationType\": \"Years\"\r\n }\r\n }\r\n },\r\n \"timeZone\": \"UTC\",\r\n \"policyType\": \"V2\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "df52ec43-b590-473e-8c81-9c7afead3fcc" + "cb3c2b73-32f9-4852-8fa0-f477b2dfbc73" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -804,10 +804,10 @@ "nosniff" ], "x-ms-request-id": [ - "b19d2d96-844f-4a74-8dad-697f2a03faa1" + "44172359-cba6-4c32-8d93-93b72081ca69" ], "x-ms-client-request-id": [ - "df52ec43-b590-473e-8c81-9c7afead3fcc" + "cb3c2b73-32f9-4852-8fa0-f477b2dfbc73" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -822,13 +822,13 @@ "1197" ], "x-ms-correlation-request-id": [ - "b19d2d96-844f-4a74-8dad-697f2a03faa1" + "44172359-cba6-4c32-8d93-93b72081ca69" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220329T042633Z:b19d2d96-844f-4a74-8dad-697f2a03faa1" + "WESTINDIA:20220516T160229Z:44172359-cba6-4c32-8d93-93b72081ca69" ], "Date": [ - "Tue, 29 Mar 2022 04:26:32 GMT" + "Mon, 16 May 2022 16:02:28 GMT" ], "Content-Length": [ "1389" @@ -840,26 +840,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupPolicies/psTestEnhancedPolicy\",\r\n \"name\": \"psTestEnhancedPolicy\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupPolicies\",\r\n \"properties\": {\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"policyType\": \"V2\",\r\n \"instantRPDetails\": {},\r\n \"schedulePolicy\": {\r\n \"schedulePolicyType\": \"SimpleSchedulePolicyV2\",\r\n \"scheduleRunFrequency\": \"Daily\",\r\n \"dailySchedule\": {\r\n \"scheduleRunTimes\": [\r\n \"2022-03-29T22:00:00Z\"\r\n ]\r\n }\r\n },\r\n \"retentionPolicy\": {\r\n \"retentionPolicyType\": \"LongTermRetentionPolicy\",\r\n \"dailySchedule\": {\r\n \"retentionTimes\": [\r\n \"2022-03-29T22:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 180,\r\n \"durationType\": \"Days\"\r\n }\r\n },\r\n \"weeklySchedule\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"retentionTimes\": [\r\n \"2022-03-29T22:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 104,\r\n \"durationType\": \"Weeks\"\r\n }\r\n },\r\n \"monthlySchedule\": {\r\n \"retentionScheduleFormatType\": \"Weekly\",\r\n \"retentionScheduleWeekly\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"weeksOfTheMonth\": [\r\n \"First\"\r\n ]\r\n },\r\n \"retentionTimes\": [\r\n \"2022-03-29T22:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 60,\r\n \"durationType\": \"Months\"\r\n }\r\n },\r\n \"yearlySchedule\": {\r\n \"retentionScheduleFormatType\": \"Weekly\",\r\n \"monthsOfYear\": [\r\n \"January\"\r\n ],\r\n \"retentionScheduleWeekly\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"weeksOfTheMonth\": [\r\n \"First\"\r\n ]\r\n },\r\n \"retentionTimes\": [\r\n \"2022-03-29T22:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 10,\r\n \"durationType\": \"Years\"\r\n }\r\n }\r\n },\r\n \"timeZone\": \"UTC\",\r\n \"protectedItemsCount\": 0\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupPolicies/psTestEnhancedPolicy\",\r\n \"name\": \"psTestEnhancedPolicy\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupPolicies\",\r\n \"properties\": {\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"policyType\": \"V2\",\r\n \"instantRPDetails\": {},\r\n \"schedulePolicy\": {\r\n \"schedulePolicyType\": \"SimpleSchedulePolicyV2\",\r\n \"scheduleRunFrequency\": \"Daily\",\r\n \"dailySchedule\": {\r\n \"scheduleRunTimes\": [\r\n \"2022-05-16T17:00:00Z\"\r\n ]\r\n }\r\n },\r\n \"retentionPolicy\": {\r\n \"retentionPolicyType\": \"LongTermRetentionPolicy\",\r\n \"dailySchedule\": {\r\n \"retentionTimes\": [\r\n \"2022-05-16T17:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 180,\r\n \"durationType\": \"Days\"\r\n }\r\n },\r\n \"weeklySchedule\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"retentionTimes\": [\r\n \"2022-05-16T17:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 104,\r\n \"durationType\": \"Weeks\"\r\n }\r\n },\r\n \"monthlySchedule\": {\r\n \"retentionScheduleFormatType\": \"Weekly\",\r\n \"retentionScheduleWeekly\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"weeksOfTheMonth\": [\r\n \"First\"\r\n ]\r\n },\r\n \"retentionTimes\": [\r\n \"2022-05-16T17:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 60,\r\n \"durationType\": \"Months\"\r\n }\r\n },\r\n \"yearlySchedule\": {\r\n \"retentionScheduleFormatType\": \"Weekly\",\r\n \"monthsOfYear\": [\r\n \"January\"\r\n ],\r\n \"retentionScheduleWeekly\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"weeksOfTheMonth\": [\r\n \"First\"\r\n ]\r\n },\r\n \"retentionTimes\": [\r\n \"2022-05-16T17:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 10,\r\n \"durationType\": \"Years\"\r\n }\r\n }\r\n },\r\n \"timeZone\": \"UTC\",\r\n \"protectedItemsCount\": 0\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupPolicies/psTestEnhancedPolicy?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cFBvbGljaWVzL3BzVGVzdEVuaGFuY2VkUG9saWN5P2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/hiagarg/providers/Microsoft.RecoveryServices/vaults/hiagaVault/backupPolicies/psTestEnhancedPolicy?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL2hpYWdhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oaWFnYVZhdWx0L2JhY2t1cFBvbGljaWVzL3BzVGVzdEVuaGFuY2VkUG9saWN5P2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f1de160d-07b1-4d55-a59a-80e4ab9abc9b" + "6ec1d39b-fce0-4f3a-8b1e-b1cf50f559e0" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -873,10 +873,10 @@ "nosniff" ], "x-ms-request-id": [ - "707bead3-e3e0-4a4c-b466-3bd72fb05d07" + "f97f821a-bdbf-4aaf-b42b-9721770ee23d" ], "x-ms-client-request-id": [ - "f1de160d-07b1-4d55-a59a-80e4ab9abc9b" + "6ec1d39b-fce0-4f3a-8b1e-b1cf50f559e0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -891,13 +891,13 @@ "14999" ], "x-ms-correlation-request-id": [ - "707bead3-e3e0-4a4c-b466-3bd72fb05d07" + "f97f821a-bdbf-4aaf-b42b-9721770ee23d" ], "x-ms-routing-request-id": [ - "WESTINDIA:20220329T042634Z:707bead3-e3e0-4a4c-b466-3bd72fb05d07" + "WESTINDIA:20220516T160232Z:f97f821a-bdbf-4aaf-b42b-9721770ee23d" ], "Date": [ - "Tue, 29 Mar 2022 04:26:34 GMT" + "Mon, 16 May 2022 16:02:31 GMT" ], "Expires": [ "-1" diff --git a/src/RecoveryServices/RecoveryServices.Backup.Test/SessionRecords/Microsoft.Azure.Commands.RecoveryServices.Backup.Test.ScenarioTests.PolicyTests/TestAzureVMPolicy.json b/src/RecoveryServices/RecoveryServices.Backup.Test/SessionRecords/Microsoft.Azure.Commands.RecoveryServices.Backup.Test.ScenarioTests.PolicyTests/TestAzureVMPolicy.json index 9270079b52e7..f27379d82f8e 100644 --- a/src/RecoveryServices/RecoveryServices.Backup.Test/SessionRecords/Microsoft.Azure.Commands.RecoveryServices.Backup.Test.ScenarioTests.PolicyTests/TestAzureVMPolicy.json +++ b/src/RecoveryServices/RecoveryServices.Backup.Test/SessionRecords/Microsoft.Azure.Commands.RecoveryServices.Backup.Test.ScenarioTests.PolicyTests/TestAzureVMPolicy.json @@ -1,19 +1,19 @@ { "Entries": [ { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourcegroups/PSTestRG833e87eb?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlZ3JvdXBzL1BTVGVzdFJHODMzZTg3ZWI/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourcegroups/PSTestRGf0a91f9e?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlZ3JvdXBzL1BTVGVzdFJHZjBhOTFmOWU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ae3eb35a-71a0-483f-9899-7d5ca370ac08" + "92ff293f-f74d-48e9-8cd9-15e582ede218" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" @@ -33,13 +33,13 @@ "11999" ], "x-ms-request-id": [ - "ae1a61fb-e8e5-4067-8df8-9c15e5c8ac5e" + "ad068236-2bdf-4783-bab9-b8f585435438" ], "x-ms-correlation-request-id": [ - "ae1a61fb-e8e5-4067-8df8-9c15e5c8ac5e" + "ad068236-2bdf-4783-bab9-b8f585435438" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T094522Z:ae1a61fb-e8e5-4067-8df8-9c15e5c8ac5e" + "JIOINDIAWEST:20220516T160240Z:ad068236-2bdf-4783-bab9-b8f585435438" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -48,7 +48,7 @@ "nosniff" ], "Date": [ - "Sat, 26 Mar 2022 09:45:22 GMT" + "Mon, 16 May 2022 16:02:39 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -60,23 +60,23 @@ "108" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'PSTestRG833e87eb' could not be found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'PSTestRGf0a91f9e' could not be found.\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourcegroups/PSTestRG833e87eb?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlZ3JvdXBzL1BTVGVzdFJHODMzZTg3ZWI/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourcegroups/PSTestRGf0a91f9e?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlZ3JvdXBzL1BTVGVzdFJHZjBhOTFmOWU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "23dc65a6-9e97-4eb2-b743-afd1bccd71c7" + "5153bb5d-af91-4a52-b79e-716aded7380a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" @@ -93,13 +93,13 @@ "11998" ], "x-ms-request-id": [ - "47465ab7-45a7-4558-a055-5feab6668ea1" + "1c8c25b2-fad9-466a-bec9-62b91d273842" ], "x-ms-correlation-request-id": [ - "47465ab7-45a7-4558-a055-5feab6668ea1" + "1c8c25b2-fad9-466a-bec9-62b91d273842" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T094542Z:47465ab7-45a7-4558-a055-5feab6668ea1" + "JIOINDIAWEST:20220516T160259Z:1c8c25b2-fad9-466a-bec9-62b91d273842" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -108,7 +108,7 @@ "nosniff" ], "Date": [ - "Sat, 26 Mar 2022 09:45:42 GMT" + "Mon, 16 May 2022 16:02:58 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -120,23 +120,23 @@ "192" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG833e87eb\",\r\n \"name\": \"PSTestRG833e87eb\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRGf0a91f9e\",\r\n \"name\": \"PSTestRGf0a91f9e\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourcegroups/PSTestRG833e87eb?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlZ3JvdXBzL1BTVGVzdFJHODMzZTg3ZWI/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourcegroups/PSTestRGf0a91f9e?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlZ3JvdXBzL1BTVGVzdFJHZjBhOTFmOWU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"southeastasia\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "aa7fd450-ebc5-492c-9b71-0900076b9da7" + "22aca2ff-2ed3-46e1-a844-2b739bb6a857" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" @@ -159,13 +159,13 @@ "1199" ], "x-ms-request-id": [ - "759a0cd0-653f-46d5-8dc6-490c957ccb9b" + "cb271901-fc72-4794-99ff-aa6c21df84e3" ], "x-ms-correlation-request-id": [ - "759a0cd0-653f-46d5-8dc6-490c957ccb9b" + "cb271901-fc72-4794-99ff-aa6c21df84e3" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T094525Z:759a0cd0-653f-46d5-8dc6-490c957ccb9b" + "JIOINDIAWEST:20220516T160242Z:cb271901-fc72-4794-99ff-aa6c21df84e3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -174,7 +174,7 @@ "nosniff" ], "Date": [ - "Sat, 26 Mar 2022 09:45:24 GMT" + "Mon, 16 May 2022 16:02:42 GMT" ], "Content-Length": [ "192" @@ -186,23 +186,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG833e87eb\",\r\n \"name\": \"PSTestRG833e87eb\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRGf0a91f9e\",\r\n \"name\": \"PSTestRGf0a91f9e\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG833e87eb/providers/Microsoft.RecoveryServices/vaults/PSTestRSV833e87eb?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHODMzZTg3ZWIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y4MzNlODdlYj9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRGf0a91f9e/providers/Microsoft.RecoveryServices/vaults/PSTestRSVf0a91f9e?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZjBhOTFmOWUvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZmMGE5MWY5ZT9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f7bb1599-c9c0-4221-964a-d9a46c9bfb50" + "6d4d8850-9068-42ac-a815-77d8197ca3b7" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesClient/4.3.2.0" @@ -219,13 +219,13 @@ "gateway" ], "x-ms-request-id": [ - "aa22c6e7-d219-4695-b624-cfcb89e11eca" + "6d7cd945-4735-49ef-9bd4-d4e53c9041cd" ], "x-ms-correlation-request-id": [ - "aa22c6e7-d219-4695-b624-cfcb89e11eca" + "6d7cd945-4735-49ef-9bd4-d4e53c9041cd" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T094527Z:aa22c6e7-d219-4695-b624-cfcb89e11eca" + "WESTINDIA:20220516T160243Z:6d7cd945-4735-49ef-9bd4-d4e53c9041cd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -234,7 +234,7 @@ "nosniff" ], "Date": [ - "Sat, 26 Mar 2022 09:45:27 GMT" + "Mon, 16 May 2022 16:02:42 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -246,23 +246,23 @@ "239" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.RecoveryServices/vaults/PSTestRSV833e87eb' under resource group 'PSTestRG833e87eb' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.RecoveryServices/vaults/PSTestRSVf0a91f9e' under resource group 'PSTestRGf0a91f9e' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG833e87eb/providers/Microsoft.RecoveryServices/vaults/PSTestRSV833e87eb?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHODMzZTg3ZWIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y4MzNlODdlYj9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRGf0a91f9e/providers/Microsoft.RecoveryServices/vaults/PSTestRSVf0a91f9e?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZjBhOTFmOWUvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZmMGE5MWY5ZT9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"southeastasia\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "c861f782-10e0-4233-b738-cdc11a9494cb" + "29b7db42-a6c2-4811-b5d3-190bf9a046b1" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesClient/4.3.2.0" @@ -285,10 +285,10 @@ "nosniff" ], "x-ms-request-id": [ - "2f554e13-26cb-4c2f-b438-180b2662c0cd" + "0ad34a83-6705-41d0-82d6-d860f2c6cc04" ], "x-ms-client-request-id": [ - "c861f782-10e0-4233-b738-cdc11a9494cb" + "29b7db42-a6c2-4811-b5d3-190bf9a046b1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -300,16 +300,16 @@ "299" ], "x-ms-correlation-request-id": [ - "2f554e13-26cb-4c2f-b438-180b2662c0cd" + "0ad34a83-6705-41d0-82d6-d860f2c6cc04" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T094534Z:2f554e13-26cb-4c2f-b438-180b2662c0cd" + "WESTINDIA:20220516T160248Z:0ad34a83-6705-41d0-82d6-d860f2c6cc04" ], "Date": [ - "Sat, 26 Mar 2022 09:45:34 GMT" + "Mon, 16 May 2022 16:02:48 GMT" ], "Content-Length": [ - "466" + "518" ], "Content-Type": [ "application/json" @@ -318,26 +318,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"location\": \"southeastasia\",\r\n \"name\": \"PSTestRSV833e87eb\",\r\n \"etag\": \"W/\\\"datetime'2022-03-26T09%3A45%3A33.7451905Z'\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateEndpointStateForBackup\": \"None\",\r\n \"privateEndpointStateForSiteRecovery\": \"None\"\r\n },\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG833e87eb/providers/Microsoft.RecoveryServices/vaults/PSTestRSV833e87eb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"location\": \"southeastasia\",\r\n \"name\": \"PSTestRSVf0a91f9e\",\r\n \"etag\": \"W/\\\"datetime'2022-05-16T16%3A02%3A48.2594385Z'\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateEndpointStateForBackup\": \"None\",\r\n \"privateEndpointStateForSiteRecovery\": \"None\",\r\n \"networkSettings\": {\r\n \"publicNetworkAccess\": \"Enabled\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRGf0a91f9e/providers/Microsoft.RecoveryServices/vaults/PSTestRSVf0a91f9e\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG833e87eb/providers/Microsoft.RecoveryServices/vaults/PSTestRSV833e87eb/backupPolicies/newPolicy?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHODMzZTg3ZWIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y4MzNlODdlYi9iYWNrdXBQb2xpY2llcy9uZXdQb2xpY3k/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRGf0a91f9e/providers/Microsoft.RecoveryServices/vaults/PSTestRSVf0a91f9e/backupPolicies/newPolicy?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZjBhOTFmOWUvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZmMGE5MWY5ZS9iYWNrdXBQb2xpY2llcy9uZXdQb2xpY3k/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4f55a5ac-2a98-4bca-9743-5e36cb8f1685" + "efcc1533-1f12-4a64-8b90-20f8e11c42a6" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -351,11 +351,11 @@ "nosniff" ], "x-ms-request-id": [ - "8ec16b5a-ee52-4846-a02a-fbecc5212248" + "1221660a-2872-4818-b224-7c1ac9d13b30" ], "x-ms-client-request-id": [ - "4f55a5ac-2a98-4bca-9743-5e36cb8f1685", - "4f55a5ac-2a98-4bca-9743-5e36cb8f1685" + "efcc1533-1f12-4a64-8b90-20f8e11c42a6", + "efcc1533-1f12-4a64-8b90-20f8e11c42a6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -370,13 +370,13 @@ "299" ], "x-ms-correlation-request-id": [ - "8ec16b5a-ee52-4846-a02a-fbecc5212248" + "1221660a-2872-4818-b224-7c1ac9d13b30" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T094535Z:8ec16b5a-ee52-4846-a02a-fbecc5212248" + "JIOINDIAWEST:20220516T160250Z:1221660a-2872-4818-b224-7c1ac9d13b30" ], "Date": [ - "Sat, 26 Mar 2022 09:45:35 GMT" + "Mon, 16 May 2022 16:02:50 GMT" ], "Content-Length": [ "2" @@ -392,22 +392,22 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG833e87eb/providers/Microsoft.RecoveryServices/vaults/PSTestRSV833e87eb/backupPolicies/newPolicy?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHODMzZTg3ZWIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y4MzNlODdlYi9iYWNrdXBQb2xpY2llcy9uZXdQb2xpY3k/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRGf0a91f9e/providers/Microsoft.RecoveryServices/vaults/PSTestRSVf0a91f9e/backupPolicies/newPolicy?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZjBhOTFmOWUvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZmMGE5MWY5ZS9iYWNrdXBQb2xpY2llcy9uZXdQb2xpY3k/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4f55a5ac-2a98-4bca-9743-5e36cb8f1685" + "efcc1533-1f12-4a64-8b90-20f8e11c42a6" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -421,11 +421,11 @@ "nosniff" ], "x-ms-request-id": [ - "c40bd4b2-707f-470b-aa8a-f2e8c3fd4bef" + "23cea933-2cf4-42c2-a900-8edea3faeace" ], "x-ms-client-request-id": [ - "4f55a5ac-2a98-4bca-9743-5e36cb8f1685", - "4f55a5ac-2a98-4bca-9743-5e36cb8f1685" + "efcc1533-1f12-4a64-8b90-20f8e11c42a6", + "efcc1533-1f12-4a64-8b90-20f8e11c42a6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -440,13 +440,13 @@ "298" ], "x-ms-correlation-request-id": [ - "c40bd4b2-707f-470b-aa8a-f2e8c3fd4bef" + "23cea933-2cf4-42c2-a900-8edea3faeace" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T094537Z:c40bd4b2-707f-470b-aa8a-f2e8c3fd4bef" + "JIOINDIAWEST:20220516T160253Z:23cea933-2cf4-42c2-a900-8edea3faeace" ], "Date": [ - "Sat, 26 Mar 2022 09:45:37 GMT" + "Mon, 16 May 2022 16:02:53 GMT" ], "Content-Length": [ "1407" @@ -458,26 +458,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG833e87eb/providers/Microsoft.RecoveryServices/vaults/PSTestRSV833e87eb/backupPolicies/newPolicy\",\r\n \"name\": \"newPolicy\",\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 \"2022-03-26T16:00:00Z\"\r\n ],\r\n \"scheduleWeeklyFrequency\": 0\r\n },\r\n \"retentionPolicy\": {\r\n \"retentionPolicyType\": \"LongTermRetentionPolicy\",\r\n \"dailySchedule\": {\r\n \"retentionTimes\": [\r\n \"2022-03-26T16:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 180,\r\n \"durationType\": \"Days\"\r\n }\r\n },\r\n \"weeklySchedule\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"retentionTimes\": [\r\n \"2022-03-26T16:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 104,\r\n \"durationType\": \"Weeks\"\r\n }\r\n },\r\n \"monthlySchedule\": {\r\n \"retentionScheduleFormatType\": \"Weekly\",\r\n \"retentionScheduleWeekly\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"weeksOfTheMonth\": [\r\n \"First\"\r\n ]\r\n },\r\n \"retentionTimes\": [\r\n \"2022-03-26T16:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 60,\r\n \"durationType\": \"Months\"\r\n }\r\n },\r\n \"yearlySchedule\": {\r\n \"retentionScheduleFormatType\": \"Weekly\",\r\n \"monthsOfYear\": [\r\n \"January\"\r\n ],\r\n \"retentionScheduleWeekly\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"weeksOfTheMonth\": [\r\n \"First\"\r\n ]\r\n },\r\n \"retentionTimes\": [\r\n \"2022-03-26T16:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 10,\r\n \"durationType\": \"Years\"\r\n }\r\n }\r\n },\r\n \"instantRpRetentionRangeInDays\": 2,\r\n \"timeZone\": \"UTC\",\r\n \"protectedItemsCount\": 0\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRGf0a91f9e/providers/Microsoft.RecoveryServices/vaults/PSTestRSVf0a91f9e/backupPolicies/newPolicy\",\r\n \"name\": \"newPolicy\",\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 \"2022-05-16T15: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 \"2022-05-16T15:30:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 180,\r\n \"durationType\": \"Days\"\r\n }\r\n },\r\n \"weeklySchedule\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"retentionTimes\": [\r\n \"2022-05-16T15:30:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 104,\r\n \"durationType\": \"Weeks\"\r\n }\r\n },\r\n \"monthlySchedule\": {\r\n \"retentionScheduleFormatType\": \"Weekly\",\r\n \"retentionScheduleWeekly\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"weeksOfTheMonth\": [\r\n \"First\"\r\n ]\r\n },\r\n \"retentionTimes\": [\r\n \"2022-05-16T15:30:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 60,\r\n \"durationType\": \"Months\"\r\n }\r\n },\r\n \"yearlySchedule\": {\r\n \"retentionScheduleFormatType\": \"Weekly\",\r\n \"monthsOfYear\": [\r\n \"January\"\r\n ],\r\n \"retentionScheduleWeekly\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"weeksOfTheMonth\": [\r\n \"First\"\r\n ]\r\n },\r\n \"retentionTimes\": [\r\n \"2022-05-16T15:30:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 10,\r\n \"durationType\": \"Years\"\r\n }\r\n }\r\n },\r\n \"instantRpRetentionRangeInDays\": 2,\r\n \"timeZone\": \"UTC\",\r\n \"protectedItemsCount\": 0\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG833e87eb/providers/Microsoft.RecoveryServices/vaults/PSTestRSV833e87eb/backupPolicies/newPolicy?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHODMzZTg3ZWIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y4MzNlODdlYi9iYWNrdXBQb2xpY2llcy9uZXdQb2xpY3k/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRGf0a91f9e/providers/Microsoft.RecoveryServices/vaults/PSTestRSVf0a91f9e/backupPolicies/newPolicy?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZjBhOTFmOWUvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZmMGE5MWY5ZS9iYWNrdXBQb2xpY2llcy9uZXdQb2xpY3k/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "38580f63-9565-413a-8878-fde0262429e4" + "c03a2904-c986-47ba-a1c3-85fde2fb1792" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -491,11 +491,11 @@ "nosniff" ], "x-ms-request-id": [ - "bf1ccfdd-ecb8-4272-9ee5-e44a572b79d0" + "efffcb4f-8fde-4720-8e43-f369a1adc882" ], "x-ms-client-request-id": [ - "38580f63-9565-413a-8878-fde0262429e4", - "38580f63-9565-413a-8878-fde0262429e4" + "c03a2904-c986-47ba-a1c3-85fde2fb1792", + "c03a2904-c986-47ba-a1c3-85fde2fb1792" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -510,13 +510,13 @@ "296" ], "x-ms-correlation-request-id": [ - "bf1ccfdd-ecb8-4272-9ee5-e44a572b79d0" + "efffcb4f-8fde-4720-8e43-f369a1adc882" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T094539Z:bf1ccfdd-ecb8-4272-9ee5-e44a572b79d0" + "JIOINDIAWEST:20220516T160255Z:efffcb4f-8fde-4720-8e43-f369a1adc882" ], "Date": [ - "Sat, 26 Mar 2022 09:45:39 GMT" + "Mon, 16 May 2022 16:02:55 GMT" ], "Content-Length": [ "1407" @@ -528,26 +528,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG833e87eb/providers/Microsoft.RecoveryServices/vaults/PSTestRSV833e87eb/backupPolicies/newPolicy\",\r\n \"name\": \"newPolicy\",\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 \"2022-03-26T16:00:00Z\"\r\n ],\r\n \"scheduleWeeklyFrequency\": 0\r\n },\r\n \"retentionPolicy\": {\r\n \"retentionPolicyType\": \"LongTermRetentionPolicy\",\r\n \"dailySchedule\": {\r\n \"retentionTimes\": [\r\n \"2022-03-26T16:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 180,\r\n \"durationType\": \"Days\"\r\n }\r\n },\r\n \"weeklySchedule\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"retentionTimes\": [\r\n \"2022-03-26T16:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 104,\r\n \"durationType\": \"Weeks\"\r\n }\r\n },\r\n \"monthlySchedule\": {\r\n \"retentionScheduleFormatType\": \"Weekly\",\r\n \"retentionScheduleWeekly\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"weeksOfTheMonth\": [\r\n \"First\"\r\n ]\r\n },\r\n \"retentionTimes\": [\r\n \"2022-03-26T16:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 60,\r\n \"durationType\": \"Months\"\r\n }\r\n },\r\n \"yearlySchedule\": {\r\n \"retentionScheduleFormatType\": \"Weekly\",\r\n \"monthsOfYear\": [\r\n \"January\"\r\n ],\r\n \"retentionScheduleWeekly\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"weeksOfTheMonth\": [\r\n \"First\"\r\n ]\r\n },\r\n \"retentionTimes\": [\r\n \"2022-03-26T16:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 10,\r\n \"durationType\": \"Years\"\r\n }\r\n }\r\n },\r\n \"instantRpRetentionRangeInDays\": 2,\r\n \"timeZone\": \"UTC\",\r\n \"protectedItemsCount\": 0\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRGf0a91f9e/providers/Microsoft.RecoveryServices/vaults/PSTestRSVf0a91f9e/backupPolicies/newPolicy\",\r\n \"name\": \"newPolicy\",\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 \"2022-05-16T15: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 \"2022-05-16T15:30:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 180,\r\n \"durationType\": \"Days\"\r\n }\r\n },\r\n \"weeklySchedule\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"retentionTimes\": [\r\n \"2022-05-16T15:30:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 104,\r\n \"durationType\": \"Weeks\"\r\n }\r\n },\r\n \"monthlySchedule\": {\r\n \"retentionScheduleFormatType\": \"Weekly\",\r\n \"retentionScheduleWeekly\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"weeksOfTheMonth\": [\r\n \"First\"\r\n ]\r\n },\r\n \"retentionTimes\": [\r\n \"2022-05-16T15:30:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 60,\r\n \"durationType\": \"Months\"\r\n }\r\n },\r\n \"yearlySchedule\": {\r\n \"retentionScheduleFormatType\": \"Weekly\",\r\n \"monthsOfYear\": [\r\n \"January\"\r\n ],\r\n \"retentionScheduleWeekly\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"weeksOfTheMonth\": [\r\n \"First\"\r\n ]\r\n },\r\n \"retentionTimes\": [\r\n \"2022-05-16T15:30:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 10,\r\n \"durationType\": \"Years\"\r\n }\r\n }\r\n },\r\n \"instantRpRetentionRangeInDays\": 2,\r\n \"timeZone\": \"UTC\",\r\n \"protectedItemsCount\": 0\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG833e87eb/providers/Microsoft.RecoveryServices/vaults/PSTestRSV833e87eb/backupPolicies/newPolicy?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHODMzZTg3ZWIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y4MzNlODdlYi9iYWNrdXBQb2xpY2llcy9uZXdQb2xpY3k/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRGf0a91f9e/providers/Microsoft.RecoveryServices/vaults/PSTestRSVf0a91f9e/backupPolicies/newPolicy?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZjBhOTFmOWUvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZmMGE5MWY5ZS9iYWNrdXBQb2xpY2llcy9uZXdQb2xpY3k/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f4abc6e9-f84c-48f1-bed9-d888451e34eb" + "f5f9297b-2e5e-4784-9b50-a560d85f3a73" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -561,11 +561,11 @@ "nosniff" ], "x-ms-request-id": [ - "26a428b5-47a3-431e-910a-0d929c51ba72" + "f8709612-a231-4c18-95d7-4b11648f6ee5" ], "x-ms-client-request-id": [ - "f4abc6e9-f84c-48f1-bed9-d888451e34eb", - "f4abc6e9-f84c-48f1-bed9-d888451e34eb" + "f5f9297b-2e5e-4784-9b50-a560d85f3a73", + "f5f9297b-2e5e-4784-9b50-a560d85f3a73" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -580,13 +580,13 @@ "294" ], "x-ms-correlation-request-id": [ - "26a428b5-47a3-431e-910a-0d929c51ba72" + "f8709612-a231-4c18-95d7-4b11648f6ee5" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T094540Z:26a428b5-47a3-431e-910a-0d929c51ba72" + "JIOINDIAWEST:20220516T160256Z:f8709612-a231-4c18-95d7-4b11648f6ee5" ], "Date": [ - "Sat, 26 Mar 2022 09:45:40 GMT" + "Mon, 16 May 2022 16:02:56 GMT" ], "Content-Length": [ "1407" @@ -598,26 +598,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG833e87eb/providers/Microsoft.RecoveryServices/vaults/PSTestRSV833e87eb/backupPolicies/newPolicy\",\r\n \"name\": \"newPolicy\",\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 \"2022-03-26T16:00:00Z\"\r\n ],\r\n \"scheduleWeeklyFrequency\": 0\r\n },\r\n \"retentionPolicy\": {\r\n \"retentionPolicyType\": \"LongTermRetentionPolicy\",\r\n \"dailySchedule\": {\r\n \"retentionTimes\": [\r\n \"2022-03-26T16:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 180,\r\n \"durationType\": \"Days\"\r\n }\r\n },\r\n \"weeklySchedule\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"retentionTimes\": [\r\n \"2022-03-26T16:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 104,\r\n \"durationType\": \"Weeks\"\r\n }\r\n },\r\n \"monthlySchedule\": {\r\n \"retentionScheduleFormatType\": \"Weekly\",\r\n \"retentionScheduleWeekly\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"weeksOfTheMonth\": [\r\n \"First\"\r\n ]\r\n },\r\n \"retentionTimes\": [\r\n \"2022-03-26T16:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 60,\r\n \"durationType\": \"Months\"\r\n }\r\n },\r\n \"yearlySchedule\": {\r\n \"retentionScheduleFormatType\": \"Weekly\",\r\n \"monthsOfYear\": [\r\n \"January\"\r\n ],\r\n \"retentionScheduleWeekly\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"weeksOfTheMonth\": [\r\n \"First\"\r\n ]\r\n },\r\n \"retentionTimes\": [\r\n \"2022-03-26T16:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 10,\r\n \"durationType\": \"Years\"\r\n }\r\n }\r\n },\r\n \"instantRpRetentionRangeInDays\": 2,\r\n \"timeZone\": \"UTC\",\r\n \"protectedItemsCount\": 0\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRGf0a91f9e/providers/Microsoft.RecoveryServices/vaults/PSTestRSVf0a91f9e/backupPolicies/newPolicy\",\r\n \"name\": \"newPolicy\",\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 \"2022-05-16T15: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 \"2022-05-16T15:30:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 180,\r\n \"durationType\": \"Days\"\r\n }\r\n },\r\n \"weeklySchedule\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"retentionTimes\": [\r\n \"2022-05-16T15:30:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 104,\r\n \"durationType\": \"Weeks\"\r\n }\r\n },\r\n \"monthlySchedule\": {\r\n \"retentionScheduleFormatType\": \"Weekly\",\r\n \"retentionScheduleWeekly\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"weeksOfTheMonth\": [\r\n \"First\"\r\n ]\r\n },\r\n \"retentionTimes\": [\r\n \"2022-05-16T15:30:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 60,\r\n \"durationType\": \"Months\"\r\n }\r\n },\r\n \"yearlySchedule\": {\r\n \"retentionScheduleFormatType\": \"Weekly\",\r\n \"monthsOfYear\": [\r\n \"January\"\r\n ],\r\n \"retentionScheduleWeekly\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"weeksOfTheMonth\": [\r\n \"First\"\r\n ]\r\n },\r\n \"retentionTimes\": [\r\n \"2022-05-16T15:30:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 10,\r\n \"durationType\": \"Years\"\r\n }\r\n }\r\n },\r\n \"instantRpRetentionRangeInDays\": 2,\r\n \"timeZone\": \"UTC\",\r\n \"protectedItemsCount\": 0\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG833e87eb/providers/Microsoft.RecoveryServices/vaults/PSTestRSV833e87eb/backupPolicies/newPolicy?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHODMzZTg3ZWIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y4MzNlODdlYi9iYWNrdXBQb2xpY2llcy9uZXdQb2xpY3k/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRGf0a91f9e/providers/Microsoft.RecoveryServices/vaults/PSTestRSVf0a91f9e/backupPolicies/newPolicy?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZjBhOTFmOWUvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZmMGE5MWY5ZS9iYWNrdXBQb2xpY2llcy9uZXdQb2xpY3k/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "48fd948d-1ee7-4c1d-a62d-80d599f76e0e" + "5733e58f-a8c5-404a-a4d2-f0e2f31b0c95" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -631,11 +631,11 @@ "nosniff" ], "x-ms-request-id": [ - "71572f72-42b3-443a-89fc-006e520039c8" + "39fbed9f-dbe0-409f-a2a4-634dc4000dd4" ], "x-ms-client-request-id": [ - "48fd948d-1ee7-4c1d-a62d-80d599f76e0e", - "48fd948d-1ee7-4c1d-a62d-80d599f76e0e" + "5733e58f-a8c5-404a-a4d2-f0e2f31b0c95", + "5733e58f-a8c5-404a-a4d2-f0e2f31b0c95" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -650,13 +650,13 @@ "293" ], "x-ms-correlation-request-id": [ - "71572f72-42b3-443a-89fc-006e520039c8" + "39fbed9f-dbe0-409f-a2a4-634dc4000dd4" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T094541Z:71572f72-42b3-443a-89fc-006e520039c8" + "JIOINDIAWEST:20220516T160258Z:39fbed9f-dbe0-409f-a2a4-634dc4000dd4" ], "Date": [ - "Sat, 26 Mar 2022 09:45:41 GMT" + "Mon, 16 May 2022 16:02:58 GMT" ], "Content-Length": [ "1486" @@ -668,26 +668,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG833e87eb/providers/Microsoft.RecoveryServices/vaults/PSTestRSV833e87eb/backupPolicies/newPolicy\",\r\n \"name\": \"newPolicy\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupPolicies\",\r\n \"properties\": {\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"instantRPDetails\": {\r\n \"azureBackupRGNamePrefix\": \"RecoveryServices\",\r\n \"azureBackupRGNameSuffix\": \"Policy\"\r\n },\r\n \"schedulePolicy\": {\r\n \"schedulePolicyType\": \"SimpleSchedulePolicy\",\r\n \"scheduleRunFrequency\": \"Daily\",\r\n \"scheduleRunTimes\": [\r\n \"2022-03-26T14:00:00Z\"\r\n ],\r\n \"scheduleWeeklyFrequency\": 0\r\n },\r\n \"retentionPolicy\": {\r\n \"retentionPolicyType\": \"LongTermRetentionPolicy\",\r\n \"dailySchedule\": {\r\n \"retentionTimes\": [\r\n \"2022-03-26T14:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 180,\r\n \"durationType\": \"Days\"\r\n }\r\n },\r\n \"weeklySchedule\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"retentionTimes\": [\r\n \"2022-03-26T14:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 104,\r\n \"durationType\": \"Weeks\"\r\n }\r\n },\r\n \"monthlySchedule\": {\r\n \"retentionScheduleFormatType\": \"Weekly\",\r\n \"retentionScheduleWeekly\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"weeksOfTheMonth\": [\r\n \"First\"\r\n ]\r\n },\r\n \"retentionTimes\": [\r\n \"2022-03-26T14:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 60,\r\n \"durationType\": \"Months\"\r\n }\r\n },\r\n \"yearlySchedule\": {\r\n \"retentionScheduleFormatType\": \"Weekly\",\r\n \"monthsOfYear\": [\r\n \"January\"\r\n ],\r\n \"retentionScheduleWeekly\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"weeksOfTheMonth\": [\r\n \"First\"\r\n ]\r\n },\r\n \"retentionTimes\": [\r\n \"2022-03-26T14:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 10,\r\n \"durationType\": \"Years\"\r\n }\r\n }\r\n },\r\n \"instantRpRetentionRangeInDays\": 5,\r\n \"timeZone\": \"UTC\",\r\n \"protectedItemsCount\": 0\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRGf0a91f9e/providers/Microsoft.RecoveryServices/vaults/PSTestRSVf0a91f9e/backupPolicies/newPolicy\",\r\n \"name\": \"newPolicy\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupPolicies\",\r\n \"properties\": {\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"instantRPDetails\": {\r\n \"azureBackupRGNamePrefix\": \"RecoveryServices\",\r\n \"azureBackupRGNameSuffix\": \"Policy\"\r\n },\r\n \"schedulePolicy\": {\r\n \"schedulePolicyType\": \"SimpleSchedulePolicy\",\r\n \"scheduleRunFrequency\": \"Daily\",\r\n \"scheduleRunTimes\": [\r\n \"2022-05-16T00: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 \"2022-05-16T00:30:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 180,\r\n \"durationType\": \"Days\"\r\n }\r\n },\r\n \"weeklySchedule\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"retentionTimes\": [\r\n \"2022-05-16T00:30:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 104,\r\n \"durationType\": \"Weeks\"\r\n }\r\n },\r\n \"monthlySchedule\": {\r\n \"retentionScheduleFormatType\": \"Weekly\",\r\n \"retentionScheduleWeekly\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"weeksOfTheMonth\": [\r\n \"First\"\r\n ]\r\n },\r\n \"retentionTimes\": [\r\n \"2022-05-16T00:30:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 60,\r\n \"durationType\": \"Months\"\r\n }\r\n },\r\n \"yearlySchedule\": {\r\n \"retentionScheduleFormatType\": \"Weekly\",\r\n \"monthsOfYear\": [\r\n \"January\"\r\n ],\r\n \"retentionScheduleWeekly\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"weeksOfTheMonth\": [\r\n \"First\"\r\n ]\r\n },\r\n \"retentionTimes\": [\r\n \"2022-05-16T00:30:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 10,\r\n \"durationType\": \"Years\"\r\n }\r\n }\r\n },\r\n \"instantRpRetentionRangeInDays\": 5,\r\n \"timeZone\": \"UTC\",\r\n \"protectedItemsCount\": 0\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG833e87eb/providers/Microsoft.RecoveryServices/vaults/PSTestRSV833e87eb/backupPolicies/newPolicy?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHODMzZTg3ZWIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y4MzNlODdlYi9iYWNrdXBQb2xpY2llcy9uZXdQb2xpY3k/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRGf0a91f9e/providers/Microsoft.RecoveryServices/vaults/PSTestRSVf0a91f9e/backupPolicies/newPolicy?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZjBhOTFmOWUvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZmMGE5MWY5ZS9iYWNrdXBQb2xpY2llcy9uZXdQb2xpY3k/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"schedulePolicy\": {\r\n \"schedulePolicyType\": \"SimpleSchedulePolicy\",\r\n \"scheduleRunFrequency\": \"Daily\",\r\n \"scheduleRunTimes\": [\r\n \"2022-03-26T16:00:00Z\"\r\n ]\r\n },\r\n \"retentionPolicy\": {\r\n \"retentionPolicyType\": \"LongTermRetentionPolicy\",\r\n \"dailySchedule\": {\r\n \"retentionTimes\": [\r\n \"2022-03-26T16:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 180,\r\n \"durationType\": \"Days\"\r\n }\r\n },\r\n \"weeklySchedule\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"retentionTimes\": [\r\n \"2022-03-26T16:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 104,\r\n \"durationType\": \"Weeks\"\r\n }\r\n },\r\n \"monthlySchedule\": {\r\n \"retentionScheduleFormatType\": \"Weekly\",\r\n \"retentionScheduleWeekly\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"weeksOfTheMonth\": [\r\n \"First\"\r\n ]\r\n },\r\n \"retentionTimes\": [\r\n \"2022-03-26T16:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 60,\r\n \"durationType\": \"Months\"\r\n }\r\n },\r\n \"yearlySchedule\": {\r\n \"retentionScheduleFormatType\": \"Weekly\",\r\n \"monthsOfYear\": [\r\n \"January\"\r\n ],\r\n \"retentionScheduleWeekly\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"weeksOfTheMonth\": [\r\n \"First\"\r\n ]\r\n },\r\n \"retentionTimes\": [\r\n \"2022-03-26T16:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 10,\r\n \"durationType\": \"Years\"\r\n }\r\n }\r\n },\r\n \"instantRpRetentionRangeInDays\": 2,\r\n \"timeZone\": \"UTC\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"schedulePolicy\": {\r\n \"schedulePolicyType\": \"SimpleSchedulePolicy\",\r\n \"scheduleRunFrequency\": \"Daily\",\r\n \"scheduleRunTimes\": [\r\n \"2022-05-16T15:30:00Z\"\r\n ]\r\n },\r\n \"retentionPolicy\": {\r\n \"retentionPolicyType\": \"LongTermRetentionPolicy\",\r\n \"dailySchedule\": {\r\n \"retentionTimes\": [\r\n \"2022-05-16T15:30:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 180,\r\n \"durationType\": \"Days\"\r\n }\r\n },\r\n \"weeklySchedule\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"retentionTimes\": [\r\n \"2022-05-16T15:30:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 104,\r\n \"durationType\": \"Weeks\"\r\n }\r\n },\r\n \"monthlySchedule\": {\r\n \"retentionScheduleFormatType\": \"Weekly\",\r\n \"retentionScheduleWeekly\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"weeksOfTheMonth\": [\r\n \"First\"\r\n ]\r\n },\r\n \"retentionTimes\": [\r\n \"2022-05-16T15:30:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 60,\r\n \"durationType\": \"Months\"\r\n }\r\n },\r\n \"yearlySchedule\": {\r\n \"retentionScheduleFormatType\": \"Weekly\",\r\n \"monthsOfYear\": [\r\n \"January\"\r\n ],\r\n \"retentionScheduleWeekly\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"weeksOfTheMonth\": [\r\n \"First\"\r\n ]\r\n },\r\n \"retentionTimes\": [\r\n \"2022-05-16T15:30:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 10,\r\n \"durationType\": \"Years\"\r\n }\r\n }\r\n },\r\n \"instantRpRetentionRangeInDays\": 2,\r\n \"timeZone\": \"UTC\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "4f55a5ac-2a98-4bca-9743-5e36cb8f1685" + "efcc1533-1f12-4a64-8b90-20f8e11c42a6" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -707,11 +707,11 @@ "nosniff" ], "x-ms-request-id": [ - "0997874f-d73a-4fb7-acac-4cbfd1b4fa50" + "b18e9b68-89be-42d4-8aca-9c9cc425d191" ], "x-ms-client-request-id": [ - "4f55a5ac-2a98-4bca-9743-5e36cb8f1685", - "4f55a5ac-2a98-4bca-9743-5e36cb8f1685" + "efcc1533-1f12-4a64-8b90-20f8e11c42a6", + "efcc1533-1f12-4a64-8b90-20f8e11c42a6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -726,13 +726,13 @@ "1199" ], "x-ms-correlation-request-id": [ - "0997874f-d73a-4fb7-acac-4cbfd1b4fa50" + "b18e9b68-89be-42d4-8aca-9c9cc425d191" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T094537Z:0997874f-d73a-4fb7-acac-4cbfd1b4fa50" + "JIOINDIAWEST:20220516T160253Z:b18e9b68-89be-42d4-8aca-9c9cc425d191" ], "Date": [ - "Sat, 26 Mar 2022 09:45:37 GMT" + "Mon, 16 May 2022 16:02:52 GMT" ], "Content-Length": [ "1407" @@ -744,26 +744,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG833e87eb/providers/Microsoft.RecoveryServices/vaults/PSTestRSV833e87eb/backupPolicies/newPolicy\",\r\n \"name\": \"newPolicy\",\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 \"2022-03-26T16:00:00Z\"\r\n ],\r\n \"scheduleWeeklyFrequency\": 0\r\n },\r\n \"retentionPolicy\": {\r\n \"retentionPolicyType\": \"LongTermRetentionPolicy\",\r\n \"dailySchedule\": {\r\n \"retentionTimes\": [\r\n \"2022-03-26T16:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 180,\r\n \"durationType\": \"Days\"\r\n }\r\n },\r\n \"weeklySchedule\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"retentionTimes\": [\r\n \"2022-03-26T16:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 104,\r\n \"durationType\": \"Weeks\"\r\n }\r\n },\r\n \"monthlySchedule\": {\r\n \"retentionScheduleFormatType\": \"Weekly\",\r\n \"retentionScheduleWeekly\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"weeksOfTheMonth\": [\r\n \"First\"\r\n ]\r\n },\r\n \"retentionTimes\": [\r\n \"2022-03-26T16:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 60,\r\n \"durationType\": \"Months\"\r\n }\r\n },\r\n \"yearlySchedule\": {\r\n \"retentionScheduleFormatType\": \"Weekly\",\r\n \"monthsOfYear\": [\r\n \"January\"\r\n ],\r\n \"retentionScheduleWeekly\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"weeksOfTheMonth\": [\r\n \"First\"\r\n ]\r\n },\r\n \"retentionTimes\": [\r\n \"2022-03-26T16:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 10,\r\n \"durationType\": \"Years\"\r\n }\r\n }\r\n },\r\n \"instantRpRetentionRangeInDays\": 2,\r\n \"timeZone\": \"UTC\",\r\n \"protectedItemsCount\": 0\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRGf0a91f9e/providers/Microsoft.RecoveryServices/vaults/PSTestRSVf0a91f9e/backupPolicies/newPolicy\",\r\n \"name\": \"newPolicy\",\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 \"2022-05-16T15: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 \"2022-05-16T15:30:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 180,\r\n \"durationType\": \"Days\"\r\n }\r\n },\r\n \"weeklySchedule\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"retentionTimes\": [\r\n \"2022-05-16T15:30:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 104,\r\n \"durationType\": \"Weeks\"\r\n }\r\n },\r\n \"monthlySchedule\": {\r\n \"retentionScheduleFormatType\": \"Weekly\",\r\n \"retentionScheduleWeekly\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"weeksOfTheMonth\": [\r\n \"First\"\r\n ]\r\n },\r\n \"retentionTimes\": [\r\n \"2022-05-16T15:30:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 60,\r\n \"durationType\": \"Months\"\r\n }\r\n },\r\n \"yearlySchedule\": {\r\n \"retentionScheduleFormatType\": \"Weekly\",\r\n \"monthsOfYear\": [\r\n \"January\"\r\n ],\r\n \"retentionScheduleWeekly\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"weeksOfTheMonth\": [\r\n \"First\"\r\n ]\r\n },\r\n \"retentionTimes\": [\r\n \"2022-05-16T15:30:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 10,\r\n \"durationType\": \"Years\"\r\n }\r\n }\r\n },\r\n \"instantRpRetentionRangeInDays\": 2,\r\n \"timeZone\": \"UTC\",\r\n \"protectedItemsCount\": 0\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG833e87eb/providers/Microsoft.RecoveryServices/vaults/PSTestRSV833e87eb/backupPolicies/newPolicy?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHODMzZTg3ZWIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y4MzNlODdlYi9iYWNrdXBQb2xpY2llcy9uZXdQb2xpY3k/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRGf0a91f9e/providers/Microsoft.RecoveryServices/vaults/PSTestRSVf0a91f9e/backupPolicies/newPolicy?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZjBhOTFmOWUvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZmMGE5MWY5ZS9iYWNrdXBQb2xpY2llcy9uZXdQb2xpY3k/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"instantRPDetails\": {\r\n \"azureBackupRGNamePrefix\": \"RecoveryServices\",\r\n \"azureBackupRGNameSuffix\": \"Policy\"\r\n },\r\n \"schedulePolicy\": {\r\n \"schedulePolicyType\": \"SimpleSchedulePolicy\",\r\n \"scheduleRunFrequency\": \"Daily\",\r\n \"scheduleRunTimes\": [\r\n \"2022-03-26T14:00:00Z\"\r\n ]\r\n },\r\n \"retentionPolicy\": {\r\n \"retentionPolicyType\": \"LongTermRetentionPolicy\",\r\n \"dailySchedule\": {\r\n \"retentionTimes\": [\r\n \"2022-03-26T14:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 180,\r\n \"durationType\": \"Days\"\r\n }\r\n },\r\n \"weeklySchedule\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"retentionTimes\": [\r\n \"2022-03-26T14:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 104,\r\n \"durationType\": \"Weeks\"\r\n }\r\n },\r\n \"monthlySchedule\": {\r\n \"retentionScheduleFormatType\": \"Weekly\",\r\n \"retentionScheduleWeekly\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"weeksOfTheMonth\": [\r\n \"First\"\r\n ]\r\n },\r\n \"retentionTimes\": [\r\n \"2022-03-26T14:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 60,\r\n \"durationType\": \"Months\"\r\n }\r\n },\r\n \"yearlySchedule\": {\r\n \"retentionScheduleFormatType\": \"Weekly\",\r\n \"monthsOfYear\": [\r\n \"January\"\r\n ],\r\n \"retentionScheduleWeekly\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"weeksOfTheMonth\": [\r\n \"First\"\r\n ]\r\n },\r\n \"retentionTimes\": [\r\n \"2022-03-26T14:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 10,\r\n \"durationType\": \"Years\"\r\n }\r\n }\r\n },\r\n \"instantRpRetentionRangeInDays\": 5,\r\n \"timeZone\": \"UTC\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"instantRPDetails\": {\r\n \"azureBackupRGNamePrefix\": \"RecoveryServices\",\r\n \"azureBackupRGNameSuffix\": \"Policy\"\r\n },\r\n \"schedulePolicy\": {\r\n \"schedulePolicyType\": \"SimpleSchedulePolicy\",\r\n \"scheduleRunFrequency\": \"Daily\",\r\n \"scheduleRunTimes\": [\r\n \"2022-05-16T00:30:00Z\"\r\n ]\r\n },\r\n \"retentionPolicy\": {\r\n \"retentionPolicyType\": \"LongTermRetentionPolicy\",\r\n \"dailySchedule\": {\r\n \"retentionTimes\": [\r\n \"2022-05-16T00:30:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 180,\r\n \"durationType\": \"Days\"\r\n }\r\n },\r\n \"weeklySchedule\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"retentionTimes\": [\r\n \"2022-05-16T00:30:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 104,\r\n \"durationType\": \"Weeks\"\r\n }\r\n },\r\n \"monthlySchedule\": {\r\n \"retentionScheduleFormatType\": \"Weekly\",\r\n \"retentionScheduleWeekly\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"weeksOfTheMonth\": [\r\n \"First\"\r\n ]\r\n },\r\n \"retentionTimes\": [\r\n \"2022-05-16T00:30:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 60,\r\n \"durationType\": \"Months\"\r\n }\r\n },\r\n \"yearlySchedule\": {\r\n \"retentionScheduleFormatType\": \"Weekly\",\r\n \"monthsOfYear\": [\r\n \"January\"\r\n ],\r\n \"retentionScheduleWeekly\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"weeksOfTheMonth\": [\r\n \"First\"\r\n ]\r\n },\r\n \"retentionTimes\": [\r\n \"2022-05-16T00:30:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 10,\r\n \"durationType\": \"Years\"\r\n }\r\n }\r\n },\r\n \"instantRpRetentionRangeInDays\": 5,\r\n \"timeZone\": \"UTC\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "f4abc6e9-f84c-48f1-bed9-d888451e34eb" + "f5f9297b-2e5e-4784-9b50-a560d85f3a73" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -783,11 +783,11 @@ "nosniff" ], "x-ms-request-id": [ - "06ccd93e-b5c1-4a41-971b-0842189ba6b8" + "49902d90-4282-4b6a-995d-a270021cc17c" ], "x-ms-client-request-id": [ - "f4abc6e9-f84c-48f1-bed9-d888451e34eb", - "f4abc6e9-f84c-48f1-bed9-d888451e34eb" + "f5f9297b-2e5e-4784-9b50-a560d85f3a73", + "f5f9297b-2e5e-4784-9b50-a560d85f3a73" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -802,13 +802,13 @@ "1198" ], "x-ms-correlation-request-id": [ - "06ccd93e-b5c1-4a41-971b-0842189ba6b8" + "49902d90-4282-4b6a-995d-a270021cc17c" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T094541Z:06ccd93e-b5c1-4a41-971b-0842189ba6b8" + "JIOINDIAWEST:20220516T160257Z:49902d90-4282-4b6a-995d-a270021cc17c" ], "Date": [ - "Sat, 26 Mar 2022 09:45:41 GMT" + "Mon, 16 May 2022 16:02:57 GMT" ], "Content-Length": [ "1486" @@ -820,7 +820,7 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG833e87eb/providers/Microsoft.RecoveryServices/vaults/PSTestRSV833e87eb/backupPolicies/newPolicy\",\r\n \"name\": \"newPolicy\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupPolicies\",\r\n \"properties\": {\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"instantRPDetails\": {\r\n \"azureBackupRGNamePrefix\": \"RecoveryServices\",\r\n \"azureBackupRGNameSuffix\": \"Policy\"\r\n },\r\n \"schedulePolicy\": {\r\n \"schedulePolicyType\": \"SimpleSchedulePolicy\",\r\n \"scheduleRunFrequency\": \"Daily\",\r\n \"scheduleRunTimes\": [\r\n \"2022-03-26T14:00:00Z\"\r\n ],\r\n \"scheduleWeeklyFrequency\": 0\r\n },\r\n \"retentionPolicy\": {\r\n \"retentionPolicyType\": \"LongTermRetentionPolicy\",\r\n \"dailySchedule\": {\r\n \"retentionTimes\": [\r\n \"2022-03-26T14:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 180,\r\n \"durationType\": \"Days\"\r\n }\r\n },\r\n \"weeklySchedule\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"retentionTimes\": [\r\n \"2022-03-26T14:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 104,\r\n \"durationType\": \"Weeks\"\r\n }\r\n },\r\n \"monthlySchedule\": {\r\n \"retentionScheduleFormatType\": \"Weekly\",\r\n \"retentionScheduleWeekly\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"weeksOfTheMonth\": [\r\n \"First\"\r\n ]\r\n },\r\n \"retentionTimes\": [\r\n \"2022-03-26T14:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 60,\r\n \"durationType\": \"Months\"\r\n }\r\n },\r\n \"yearlySchedule\": {\r\n \"retentionScheduleFormatType\": \"Weekly\",\r\n \"monthsOfYear\": [\r\n \"January\"\r\n ],\r\n \"retentionScheduleWeekly\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"weeksOfTheMonth\": [\r\n \"First\"\r\n ]\r\n },\r\n \"retentionTimes\": [\r\n \"2022-03-26T14:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 10,\r\n \"durationType\": \"Years\"\r\n }\r\n }\r\n },\r\n \"instantRpRetentionRangeInDays\": 5,\r\n \"timeZone\": \"UTC\",\r\n \"protectedItemsCount\": 0\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRGf0a91f9e/providers/Microsoft.RecoveryServices/vaults/PSTestRSVf0a91f9e/backupPolicies/newPolicy\",\r\n \"name\": \"newPolicy\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupPolicies\",\r\n \"properties\": {\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"instantRPDetails\": {\r\n \"azureBackupRGNamePrefix\": \"RecoveryServices\",\r\n \"azureBackupRGNameSuffix\": \"Policy\"\r\n },\r\n \"schedulePolicy\": {\r\n \"schedulePolicyType\": \"SimpleSchedulePolicy\",\r\n \"scheduleRunFrequency\": \"Daily\",\r\n \"scheduleRunTimes\": [\r\n \"2022-05-16T00: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 \"2022-05-16T00:30:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 180,\r\n \"durationType\": \"Days\"\r\n }\r\n },\r\n \"weeklySchedule\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"retentionTimes\": [\r\n \"2022-05-16T00:30:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 104,\r\n \"durationType\": \"Weeks\"\r\n }\r\n },\r\n \"monthlySchedule\": {\r\n \"retentionScheduleFormatType\": \"Weekly\",\r\n \"retentionScheduleWeekly\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"weeksOfTheMonth\": [\r\n \"First\"\r\n ]\r\n },\r\n \"retentionTimes\": [\r\n \"2022-05-16T00:30:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 60,\r\n \"durationType\": \"Months\"\r\n }\r\n },\r\n \"yearlySchedule\": {\r\n \"retentionScheduleFormatType\": \"Weekly\",\r\n \"monthsOfYear\": [\r\n \"January\"\r\n ],\r\n \"retentionScheduleWeekly\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"weeksOfTheMonth\": [\r\n \"First\"\r\n ]\r\n },\r\n \"retentionTimes\": [\r\n \"2022-05-16T00:30:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 10,\r\n \"durationType\": \"Years\"\r\n }\r\n }\r\n },\r\n \"instantRpRetentionRangeInDays\": 5,\r\n \"timeZone\": \"UTC\",\r\n \"protectedItemsCount\": 0\r\n }\r\n}", "StatusCode": 200 }, { @@ -830,13 +830,13 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d23a7c1b-87d9-4bdb-8824-e93c1a180bae" + "1f659769-20ff-4f84-b484-b58f14cb77db" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesClient/4.3.2.0" @@ -853,10 +853,10 @@ "nosniff" ], "x-ms-request-id": [ - "61b81e68-f4cc-44e8-93ea-af118e6f496e" + "8199c994-2086-4cbe-a8ea-6cdf35f5c8a1" ], "x-ms-client-request-id": [ - "d23a7c1b-87d9-4bdb-8824-e93c1a180bae" + "1f659769-20ff-4f84-b484-b58f14cb77db" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -865,19 +865,19 @@ "Microsoft-IIS/10.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11997" ], "x-ms-correlation-request-id": [ - "61b81e68-f4cc-44e8-93ea-af118e6f496e" + "8199c994-2086-4cbe-a8ea-6cdf35f5c8a1" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T094538Z:61b81e68-f4cc-44e8-93ea-af118e6f496e" + "WESTINDIA:20220516T160254Z:8199c994-2086-4cbe-a8ea-6cdf35f5c8a1" ], "Date": [ - "Sat, 26 Mar 2022 09:45:38 GMT" + "Mon, 16 May 2022 16:02:54 GMT" ], "Content-Length": [ - "450" + "502" ], "Content-Type": [ "application/json" @@ -886,26 +886,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sambit\",\r\n \"etag\": \"W/\\\"datetime'2022-02-18T07%3A20%3A25.6898595Z'\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateEndpointStateForBackup\": \"None\",\r\n \"privateEndpointStateForSiteRecovery\": \"None\"\r\n },\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/sambit_rg/providers/Microsoft.RecoveryServices/vaults/sambit\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"RS0\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sambit\",\r\n \"etag\": \"W/\\\"datetime'2022-02-18T07%3A20%3A25.6898595Z'\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateEndpointStateForBackup\": \"None\",\r\n \"privateEndpointStateForSiteRecovery\": \"None\",\r\n \"networkSettings\": {\r\n \"publicNetworkAccess\": \"Enabled\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/sambit_rg/providers/Microsoft.RecoveryServices/vaults/sambit\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"RS0\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/sambit_rg/providers/Microsoft.RecoveryServices/vaults/sambit/backupPolicies/iaasvmretentioncheck?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3NhbWJpdF9yZy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3NhbWJpdC9iYWNrdXBQb2xpY2llcy9pYWFzdm1yZXRlbnRpb25jaGVjaz9hcGktdmVyc2lvbj0yMDIxLTEyLTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/sambit_rg/providers/Microsoft.RecoveryServices/vaults/sambit/backupPolicies/iaasvmretentioncheck?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3NhbWJpdF9yZy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3NhbWJpdC9iYWNrdXBQb2xpY2llcy9pYWFzdm1yZXRlbnRpb25jaGVjaz9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0bc860b3-df4b-487e-9abd-9fd1f1769d76" + "77786937-ca90-4e03-a5bc-49158ae6ffc5" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -919,11 +919,11 @@ "nosniff" ], "x-ms-request-id": [ - "a1196939-7ec2-4fcc-974c-4f0e0e587192" + "ef47c491-ed95-4304-b284-8d1d89373bb3" ], "x-ms-client-request-id": [ - "0bc860b3-df4b-487e-9abd-9fd1f1769d76", - "0bc860b3-df4b-487e-9abd-9fd1f1769d76" + "77786937-ca90-4e03-a5bc-49158ae6ffc5", + "77786937-ca90-4e03-a5bc-49158ae6ffc5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -938,13 +938,13 @@ "297" ], "x-ms-correlation-request-id": [ - "a1196939-7ec2-4fcc-974c-4f0e0e587192" + "ef47c491-ed95-4304-b284-8d1d89373bb3" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T094538Z:a1196939-7ec2-4fcc-974c-4f0e0e587192" + "JIOINDIAWEST:20220516T160254Z:ef47c491-ed95-4304-b284-8d1d89373bb3" ], "Date": [ - "Sat, 26 Mar 2022 09:45:38 GMT" + "Mon, 16 May 2022 16:02:54 GMT" ], "Content-Length": [ "1461" @@ -960,22 +960,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG833e87eb/providers/Microsoft.RecoveryServices/vaults/PSTestRSV833e87eb/backupPolicies/DefaultPolicy?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHODMzZTg3ZWIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y4MzNlODdlYi9iYWNrdXBQb2xpY2llcy9EZWZhdWx0UG9saWN5P2FwaS12ZXJzaW9uPTIwMjEtMTItMDE=", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRGf0a91f9e/providers/Microsoft.RecoveryServices/vaults/PSTestRSVf0a91f9e/backupPolicies/DefaultPolicy?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZjBhOTFmOWUvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZmMGE5MWY5ZS9iYWNrdXBQb2xpY2llcy9EZWZhdWx0UG9saWN5P2FwaS12ZXJzaW9uPTIwMjItMDItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3c6427a6-ac31-43ba-901e-ee521d2cacef" + "3b4711b0-041a-41cd-b72f-8e6672051363" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -989,11 +989,11 @@ "nosniff" ], "x-ms-request-id": [ - "7657e591-d006-4826-b0d3-b41bfb19bb23" + "dba8c06d-fb38-4946-b3ba-091de33e7359" ], "x-ms-client-request-id": [ - "3c6427a6-ac31-43ba-901e-ee521d2cacef", - "3c6427a6-ac31-43ba-901e-ee521d2cacef" + "3b4711b0-041a-41cd-b72f-8e6672051363", + "3b4711b0-041a-41cd-b72f-8e6672051363" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1008,13 +1008,13 @@ "295" ], "x-ms-correlation-request-id": [ - "7657e591-d006-4826-b0d3-b41bfb19bb23" + "dba8c06d-fb38-4946-b3ba-091de33e7359" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T094539Z:7657e591-d006-4826-b0d3-b41bfb19bb23" + "JIOINDIAWEST:20220516T160256Z:dba8c06d-fb38-4946-b3ba-091de33e7359" ], "Date": [ - "Sat, 26 Mar 2022 09:45:39 GMT" + "Mon, 16 May 2022 16:02:55 GMT" ], "Content-Length": [ "762" @@ -1026,26 +1026,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG833e87eb/providers/Microsoft.RecoveryServices/vaults/PSTestRSV833e87eb/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 \"2022-03-26T19: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 \"2022-03-26T19:30:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 30,\r\n \"durationType\": \"Days\"\r\n }\r\n }\r\n },\r\n \"instantRpRetentionRangeInDays\": 2,\r\n \"timeZone\": \"UTC\",\r\n \"protectedItemsCount\": 0\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRGf0a91f9e/providers/Microsoft.RecoveryServices/vaults/PSTestRSVf0a91f9e/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 \"2022-05-17T02:00:00Z\"\r\n ],\r\n \"scheduleWeeklyFrequency\": 0\r\n },\r\n \"retentionPolicy\": {\r\n \"retentionPolicyType\": \"LongTermRetentionPolicy\",\r\n \"dailySchedule\": {\r\n \"retentionTimes\": [\r\n \"2022-05-17T02:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 30,\r\n \"durationType\": \"Days\"\r\n }\r\n }\r\n },\r\n \"instantRpRetentionRangeInDays\": 2,\r\n \"timeZone\": \"UTC\",\r\n \"protectedItemsCount\": 0\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG833e87eb/providers/Microsoft.RecoveryServices/vaults/PSTestRSV833e87eb/backupPolicies/newPolicy?api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHODMzZTg3ZWIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y4MzNlODdlYi9iYWNrdXBQb2xpY2llcy9uZXdQb2xpY3k/YXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRGf0a91f9e/providers/Microsoft.RecoveryServices/vaults/PSTestRSVf0a91f9e/backupPolicies/newPolicy?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZjBhOTFmOWUvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZmMGE5MWY5ZS9iYWNrdXBQb2xpY2llcy9uZXdQb2xpY3k/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "49155f01-0c91-450d-9c4d-f2bfb820f9f1" + "3ee089d6-4f84-496b-bbc5-ae42da6af6fe" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -1059,11 +1059,11 @@ "nosniff" ], "x-ms-request-id": [ - "1c612ca7-ed23-42eb-a0da-26d0e03f8e6e" + "d74c6715-0af5-4e17-8b29-5d1870a47c24" ], "x-ms-client-request-id": [ - "49155f01-0c91-450d-9c4d-f2bfb820f9f1", - "49155f01-0c91-450d-9c4d-f2bfb820f9f1" + "3ee089d6-4f84-496b-bbc5-ae42da6af6fe", + "3ee089d6-4f84-496b-bbc5-ae42da6af6fe" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1075,13 +1075,13 @@ "14999" ], "x-ms-correlation-request-id": [ - "1c612ca7-ed23-42eb-a0da-26d0e03f8e6e" + "d74c6715-0af5-4e17-8b29-5d1870a47c24" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T094542Z:1c612ca7-ed23-42eb-a0da-26d0e03f8e6e" + "JIOINDIAWEST:20220516T160259Z:d74c6715-0af5-4e17-8b29-5d1870a47c24" ], "Date": [ - "Sat, 26 Mar 2022 09:45:42 GMT" + "Mon, 16 May 2022 16:02:58 GMT" ], "Expires": [ "-1" @@ -1094,19 +1094,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG833e87eb/providers/Microsoft.RecoveryServices/vaults?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHODMzZTg3ZWIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cz9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRGf0a91f9e/providers/Microsoft.RecoveryServices/vaults?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZjBhOTFmOWUvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cz9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bcc412ec-8a9b-4894-b6fd-a55a1d348e37" + "b9093bb3-948c-40ee-92ae-eb2378624a9a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesClient/4.3.2.0" @@ -1123,10 +1123,10 @@ "nosniff" ], "x-ms-request-id": [ - "9fa77acd-79eb-49fa-9fbf-97acaf6e9f67" + "8b1f4a3f-d45b-4f5b-886b-59fff9ab642b" ], "x-ms-client-request-id": [ - "bcc412ec-8a9b-4894-b6fd-a55a1d348e37" + "b9093bb3-948c-40ee-92ae-eb2378624a9a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1135,19 +1135,19 @@ "Microsoft-IIS/10.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11996" ], "x-ms-correlation-request-id": [ - "9fa77acd-79eb-49fa-9fbf-97acaf6e9f67" + "8b1f4a3f-d45b-4f5b-886b-59fff9ab642b" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T094543Z:9fa77acd-79eb-49fa-9fbf-97acaf6e9f67" + "WESTINDIA:20220516T160259Z:8b1f4a3f-d45b-4f5b-886b-59fff9ab642b" ], "Date": [ - "Sat, 26 Mar 2022 09:45:42 GMT" + "Mon, 16 May 2022 16:02:59 GMT" ], "Content-Length": [ - "478" + "530" ], "Content-Type": [ "application/json" @@ -1156,26 +1156,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"PSTestRSV833e87eb\",\r\n \"etag\": \"W/\\\"datetime'2022-03-26T09%3A45%3A33.7451905Z'\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateEndpointStateForBackup\": \"None\",\r\n \"privateEndpointStateForSiteRecovery\": \"None\"\r\n },\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG833e87eb/providers/Microsoft.RecoveryServices/vaults/PSTestRSV833e87eb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"PSTestRSVf0a91f9e\",\r\n \"etag\": \"W/\\\"datetime'2022-05-16T16%3A02%3A48.3044238Z'\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateEndpointStateForBackup\": \"None\",\r\n \"privateEndpointStateForSiteRecovery\": \"None\",\r\n \"networkSettings\": {\r\n \"publicNetworkAccess\": \"Enabled\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRGf0a91f9e/providers/Microsoft.RecoveryServices/vaults/PSTestRSVf0a91f9e\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG833e87eb/providers/Microsoft.RecoveryServices/vaults/PSTestRSV833e87eb/backupProtectionContainers?$filter=backupManagementType%20eq%20'AzureIaasVM'%20and%20status%20eq%20'Registered'&api-version=2021-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHODMzZTg3ZWIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y4MzNlODdlYi9iYWNrdXBQcm90ZWN0aW9uQ29udGFpbmVycz8kZmlsdGVyPWJhY2t1cE1hbmFnZW1lbnRUeXBlJTIwZXElMjAnQXp1cmVJYWFzVk0nJTIwYW5kJTIwc3RhdHVzJTIwZXElMjAnUmVnaXN0ZXJlZCcmYXBpLXZlcnNpb249MjAyMS0xMi0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRGf0a91f9e/providers/Microsoft.RecoveryServices/vaults/PSTestRSVf0a91f9e/backupProtectionContainers?$filter=backupManagementType%20eq%20'AzureIaasVM'%20and%20status%20eq%20'Registered'&api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZjBhOTFmOWUvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZmMGE5MWY5ZS9iYWNrdXBQcm90ZWN0aW9uQ29udGFpbmVycz8kZmlsdGVyPWJhY2t1cE1hbmFnZW1lbnRUeXBlJTIwZXElMjAnQXp1cmVJYWFzVk0nJTIwYW5kJTIwc3RhdHVzJTIwZXElMjAnUmVnaXN0ZXJlZCcmYXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "94e2c5d9-44ee-42d5-8ea3-cdd6e847a1f8" + "bfd5432c-5c3e-48dc-bf19-912fe3d426ac" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.4.0.0" + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -1189,11 +1189,11 @@ "nosniff" ], "x-ms-request-id": [ - "ff8af589-e61a-4fd0-bd16-33871cb3855d" + "1e369ec5-3f86-47a6-bea5-02e1cef3471e" ], "x-ms-client-request-id": [ - "94e2c5d9-44ee-42d5-8ea3-cdd6e847a1f8", - "94e2c5d9-44ee-42d5-8ea3-cdd6e847a1f8" + "bfd5432c-5c3e-48dc-bf19-912fe3d426ac", + "bfd5432c-5c3e-48dc-bf19-912fe3d426ac" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1208,13 +1208,13 @@ "299" ], "x-ms-correlation-request-id": [ - "ff8af589-e61a-4fd0-bd16-33871cb3855d" + "1e369ec5-3f86-47a6-bea5-02e1cef3471e" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T094543Z:ff8af589-e61a-4fd0-bd16-33871cb3855d" + "JIOINDIAWEST:20220516T160300Z:1e369ec5-3f86-47a6-bea5-02e1cef3471e" ], "Date": [ - "Sat, 26 Mar 2022 09:45:43 GMT" + "Mon, 16 May 2022 16:02:59 GMT" ], "Content-Length": [ "12" @@ -1230,19 +1230,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG833e87eb/providers/Microsoft.RecoveryServices/vaults/PSTestRSV833e87eb?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHODMzZTg3ZWIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1Y4MzNlODdlYj9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRGf0a91f9e/providers/Microsoft.RecoveryServices/vaults/PSTestRSVf0a91f9e?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHZjBhOTFmOWUvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZmMGE5MWY5ZT9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "271f07f3-d54a-4486-9b10-701fe08f138c" + "f9f7e39d-8557-43b0-85ea-f0c76c7dff6c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesClient/4.3.2.0" @@ -1259,10 +1259,10 @@ "nosniff" ], "x-ms-request-id": [ - "eac6defe-2f93-4d20-bd34-35d2043b4045" + "d2c55562-8a91-4b3c-a740-0f43c313fcf0" ], "x-ms-client-request-id": [ - "271f07f3-d54a-4486-9b10-701fe08f138c" + "f9f7e39d-8557-43b0-85ea-f0c76c7dff6c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1271,13 +1271,13 @@ "49" ], "x-ms-correlation-request-id": [ - "eac6defe-2f93-4d20-bd34-35d2043b4045" + "d2c55562-8a91-4b3c-a740-0f43c313fcf0" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T094548Z:eac6defe-2f93-4d20-bd34-35d2043b4045" + "WESTINDIA:20220516T160304Z:d2c55562-8a91-4b3c-a740-0f43c313fcf0" ], "Date": [ - "Sat, 26 Mar 2022 09:45:48 GMT" + "Mon, 16 May 2022 16:03:04 GMT" ], "Expires": [ "-1" @@ -1290,19 +1290,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourcegroups/PSTestRG833e87eb?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlZ3JvdXBzL1BTVGVzdFJHODMzZTg3ZWI/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourcegroups/PSTestRGf0a91f9e?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlZ3JvdXBzL1BTVGVzdFJHZjBhOTFmOWU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a7d654c7-f10e-42e8-b660-326f25b25f22" + "8f48f63b-7172-403b-bda0-fc2074624d50" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" @@ -1316,7 +1316,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzgzM0U4N0VCLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0YwQTkxRjlFLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -1325,13 +1325,13 @@ "14999" ], "x-ms-request-id": [ - "d4afe171-7feb-46c0-8438-71c869869252" + "d0aa3b11-9506-46ce-8214-20cc77badaa7" ], "x-ms-correlation-request-id": [ - "d4afe171-7feb-46c0-8438-71c869869252" + "d0aa3b11-9506-46ce-8214-20cc77badaa7" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T094550Z:d4afe171-7feb-46c0-8438-71c869869252" + "JIOINDIAWEST:20220516T160306Z:d0aa3b11-9506-46ce-8214-20cc77badaa7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1340,7 +1340,7 @@ "nosniff" ], "Date": [ - "Sat, 26 Mar 2022 09:45:49 GMT" + "Mon, 16 May 2022 16:03:06 GMT" ], "Expires": [ "-1" @@ -1353,13 +1353,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzgzM0U4N0VCLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemd6TTBVNE4wVkNMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0YwQTkxRjlFLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSMFl3UVRreFJqbEZMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" @@ -1372,137 +1372,17 @@ "Pragma": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzgzM0U4N0VCLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], "x-ms-ratelimit-remaining-subscription-reads": [ "11997" ], "x-ms-request-id": [ - "0512b70f-247c-46c7-82a7-98bc7eb5f81e" - ], - "x-ms-correlation-request-id": [ - "0512b70f-247c-46c7-82a7-98bc7eb5f81e" - ], - "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T094605Z:0512b70f-247c-46c7-82a7-98bc7eb5f81e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Sat, 26 Mar 2022 09:46:04 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzgzM0U4N0VCLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemd6TTBVNE4wVkNMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.700.22.11601", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzgzM0U4N0VCLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" - ], - "x-ms-request-id": [ - "44ecae6f-52d6-40b8-b8ea-2f90444d551f" - ], - "x-ms-correlation-request-id": [ - "44ecae6f-52d6-40b8-b8ea-2f90444d551f" - ], - "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T094620Z:44ecae6f-52d6-40b8-b8ea-2f90444d551f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Sat, 26 Mar 2022 09:46:19 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzgzM0U4N0VCLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemd6TTBVNE4wVkNMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.700.22.11601", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzgzM0U4N0VCLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" - ], - "x-ms-request-id": [ - "c3e30bff-8edf-43b5-981d-14af2a361a8f" + "48e4843d-9fbc-4c32-b68e-8f1b30ad4ce5" ], "x-ms-correlation-request-id": [ - "c3e30bff-8edf-43b5-981d-14af2a361a8f" + "48e4843d-9fbc-4c32-b68e-8f1b30ad4ce5" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T094635Z:c3e30bff-8edf-43b5-981d-14af2a361a8f" + "JIOINDIAWEST:20220516T160321Z:48e4843d-9fbc-4c32-b68e-8f1b30ad4ce5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1511,115 +1391,7 @@ "nosniff" ], "Date": [ - "Sat, 26 Mar 2022 09:46:35 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzgzM0U4N0VCLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemd6TTBVNE4wVkNMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.700.22.11601", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzgzM0U4N0VCLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" - ], - "x-ms-request-id": [ - "eec21d1b-f07f-4927-bbd8-ff984218da82" - ], - "x-ms-correlation-request-id": [ - "eec21d1b-f07f-4927-bbd8-ff984218da82" - ], - "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T094651Z:eec21d1b-f07f-4927-bbd8-ff984218da82" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Sat, 26 Mar 2022 09:46:50 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzgzM0U4N0VCLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemd6TTBVNE4wVkNMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.700.22.11601", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" - ], - "x-ms-request-id": [ - "07fdaff2-3b9c-4ff4-920c-7881ce5fdce3" - ], - "x-ms-correlation-request-id": [ - "07fdaff2-3b9c-4ff4-920c-7881ce5fdce3" - ], - "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T094706Z:07fdaff2-3b9c-4ff4-920c-7881ce5fdce3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Sat, 26 Mar 2022 09:47:05 GMT" + "Mon, 16 May 2022 16:03:21 GMT" ], "Expires": [ "-1" @@ -1632,13 +1404,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzgzM0U4N0VCLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemd6TTBVNE4wVkNMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0YwQTkxRjlFLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSMFl3UVRreFJqbEZMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.22.11601", + "FxVersion/4.700.22.21202", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" @@ -1652,16 +1424,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11996" ], "x-ms-request-id": [ - "b9ee88be-b19e-4dfb-bcff-90aeaaa61241" + "0b7efc04-4cb8-44c7-a9d3-d07d35aa797b" ], "x-ms-correlation-request-id": [ - "b9ee88be-b19e-4dfb-bcff-90aeaaa61241" + "0b7efc04-4cb8-44c7-a9d3-d07d35aa797b" ], "x-ms-routing-request-id": [ - "JIOINDIAWEST:20220326T094706Z:b9ee88be-b19e-4dfb-bcff-90aeaaa61241" + "JIOINDIAWEST:20220516T160322Z:0b7efc04-4cb8-44c7-a9d3-d07d35aa797b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1670,7 +1442,7 @@ "nosniff" ], "Date": [ - "Sat, 26 Mar 2022 09:47:06 GMT" + "Mon, 16 May 2022 16:03:21 GMT" ], "Expires": [ "-1" @@ -1686,6 +1458,6 @@ "Names": {}, "Variables": { "SubscriptionId": "38304e13-357e-405e-9e9a-220351dcce8c", - "NamingSuffix": "833e87eb-abd9-4c7c-bcbe-0a37d8a77747" + "NamingSuffix": "f0a91f9e-4c9b-40d1-a0f4-54e4bd04d37d" } } \ No newline at end of file diff --git a/src/RecoveryServices/RecoveryServices.Backup.Test/SessionRecords/Microsoft.Azure.Commands.RecoveryServices.Backup.Test.ScenarioTests.PolicyTests/TestAzureVmWorkloadPolicy.json b/src/RecoveryServices/RecoveryServices.Backup.Test/SessionRecords/Microsoft.Azure.Commands.RecoveryServices.Backup.Test.ScenarioTests.PolicyTests/TestAzureVmWorkloadPolicy.json index bc4f35a1979a..28b34c547897 100644 --- a/src/RecoveryServices/RecoveryServices.Backup.Test/SessionRecords/Microsoft.Azure.Commands.RecoveryServices.Backup.Test.ScenarioTests.PolicyTests/TestAzureVmWorkloadPolicy.json +++ b/src/RecoveryServices/RecoveryServices.Backup.Test/SessionRecords/Microsoft.Azure.Commands.RecoveryServices.Backup.Test.ScenarioTests.PolicyTests/TestAzureVmWorkloadPolicy.json @@ -7,15 +7,15 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a733f37e-0747-4eb2-b44b-9dcf7a98c654" + "547ee71f-f1af-457b-b7e2-2ee5b952b06a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.22000", "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesClient/4.3.2.0" ] }, @@ -26,63 +26,63 @@ "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" - ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "139a9bb9-bef6-4156-881a-59c36e4ed3c1" + "8fc09c0b-1f54-439c-ae7a-e04664d0ece0" ], "x-ms-client-request-id": [ - "a733f37e-0747-4eb2-b44b-9dcf7a98c654" + "547ee71f-f1af-457b-b7e2-2ee5b952b06a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Server": [ - "Kestrel" + "Microsoft-IIS/10.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" ], "x-ms-correlation-request-id": [ - "139a9bb9-bef6-4156-881a-59c36e4ed3c1" + "8fc09c0b-1f54-439c-ae7a-e04664d0ece0" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220125T172700Z:139a9bb9-bef6-4156-881a-59c36e4ed3c1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "WESTINDIA:20220517T083808Z:8fc09c0b-1f54-439c-ae7a-e04664d0ece0" ], "Date": [ - "Tue, 25 Jan 2022 17:26:59 GMT" + "Tue, 17 May 2022 08:38:07 GMT" ], "Content-Length": [ - "475" + "528" ], "Content-Type": [ - "application/json; charset=utf-8" + "application/json" ], "Expires": [ "-1" ] }, - "ResponseBody": "{\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pstestwlRSV1bca8\",\r\n \"etag\": \"W/\\\"datetime'2019-11-08T09%3A49%3A58.514669Z'\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateEndpointStateForBackup\": \"None\",\r\n \"privateEndpointStateForSiteRecovery\": \"None\"\r\n },\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"RS0\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pstestwlRSV1bca8\",\r\n \"etag\": \"W/\\\"datetime'2022-02-18T07%3A20%3A25.6718658Z'\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateEndpointStateForBackup\": \"None\",\r\n \"privateEndpointStateForSiteRecovery\": \"None\",\r\n \"networkSettings\": {\r\n \"publicNetworkAccess\": \"Enabled\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"RS0\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupPolicies/testSqlPolicy?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHdsUkcxYmNhOC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHdsUlNWMWJjYTgvYmFja3VwUG9saWNpZXMvdGVzdFNxbFBvbGljeT9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupPolicies/testSqlPolicy?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHdsUkcxYmNhOC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHdsUlNWMWJjYTgvYmFja3VwUG9saWNpZXMvdGVzdFNxbFBvbGljeT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ede36c49-de3d-4d57-8456-304eadf68082" + "6a273d50-21c7-4dc8-8a9c-6197dc09d216" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -96,16 +96,17 @@ "nosniff" ], "x-ms-request-id": [ - "59b7a28b-5f36-4ee2-838f-84eeb1c44859" + "d207f5ab-c09c-4064-840a-73a417b8a74d" ], "x-ms-client-request-id": [ - "ede36c49-de3d-4d57-8456-304eadf68082" + "6a273d50-21c7-4dc8-8a9c-6197dc09d216", + "6a273d50-21c7-4dc8-8a9c-6197dc09d216" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Server": [ - "Kestrel" + "Microsoft-IIS/10.0" ], "X-Powered-By": [ "ASP.NET" @@ -114,13 +115,13 @@ "299" ], "x-ms-correlation-request-id": [ - "59b7a28b-5f36-4ee2-838f-84eeb1c44859" + "d207f5ab-c09c-4064-840a-73a417b8a74d" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220125T172701Z:59b7a28b-5f36-4ee2-838f-84eeb1c44859" + "WESTINDIA:20220517T083809Z:d207f5ab-c09c-4064-840a-73a417b8a74d" ], "Date": [ - "Tue, 25 Jan 2022 17:27:00 GMT" + "Tue, 17 May 2022 08:38:09 GMT" ], "Content-Length": [ "2" @@ -136,22 +137,22 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupPolicies/testSqlPolicy?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHdsUkcxYmNhOC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHdsUlNWMWJjYTgvYmFja3VwUG9saWNpZXMvdGVzdFNxbFBvbGljeT9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupPolicies/testSqlPolicy?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHdsUkcxYmNhOC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHdsUlNWMWJjYTgvYmFja3VwUG9saWNpZXMvdGVzdFNxbFBvbGljeT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ede36c49-de3d-4d57-8456-304eadf68082" + "6a273d50-21c7-4dc8-8a9c-6197dc09d216" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -165,16 +166,17 @@ "nosniff" ], "x-ms-request-id": [ - "289a6113-641d-45d4-8d89-a5b6b7dba389" + "7cd6daf9-0540-4467-bd20-e5e1eb38da08" ], "x-ms-client-request-id": [ - "ede36c49-de3d-4d57-8456-304eadf68082" + "6a273d50-21c7-4dc8-8a9c-6197dc09d216", + "6a273d50-21c7-4dc8-8a9c-6197dc09d216" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Server": [ - "Kestrel" + "Microsoft-IIS/10.0" ], "X-Powered-By": [ "ASP.NET" @@ -183,44 +185,44 @@ "298" ], "x-ms-correlation-request-id": [ - "289a6113-641d-45d4-8d89-a5b6b7dba389" + "7cd6daf9-0540-4467-bd20-e5e1eb38da08" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220125T172702Z:289a6113-641d-45d4-8d89-a5b6b7dba389" + "WESTINDIA:20220517T083811Z:7cd6daf9-0540-4467-bd20-e5e1eb38da08" ], "Date": [ - "Tue, 25 Jan 2022 17:27:01 GMT" + "Tue, 17 May 2022 08:38:10 GMT" ], "Content-Length": [ "1726" ], "Content-Type": [ - "application/json; charset=utf-8" + "application/json" ], "Expires": [ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupPolicies/testSqlPolicy\",\r\n \"name\": \"testSqlPolicy\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupPolicies\",\r\n \"properties\": {\r\n \"backupManagementType\": \"AzureWorkload\",\r\n \"workLoadType\": \"SQLDataBase\",\r\n \"settings\": {\r\n \"timeZone\": \"UTC\",\r\n \"issqlcompression\": false,\r\n \"isCompression\": false\r\n },\r\n \"subProtectionPolicy\": [\r\n {\r\n \"policyType\": \"Full\",\r\n \"schedulePolicy\": {\r\n \"schedulePolicyType\": \"SimpleSchedulePolicy\",\r\n \"scheduleRunFrequency\": \"Daily\",\r\n \"scheduleRunTimes\": [\r\n \"2022-01-25T17:00:00Z\"\r\n ],\r\n \"scheduleWeeklyFrequency\": 0\r\n },\r\n \"retentionPolicy\": {\r\n \"retentionPolicyType\": \"LongTermRetentionPolicy\",\r\n \"dailySchedule\": {\r\n \"retentionTimes\": [\r\n \"2022-01-25T17:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 180,\r\n \"durationType\": \"Days\"\r\n }\r\n },\r\n \"weeklySchedule\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"retentionTimes\": [\r\n \"2022-01-25T17:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 104,\r\n \"durationType\": \"Weeks\"\r\n }\r\n },\r\n \"monthlySchedule\": {\r\n \"retentionScheduleFormatType\": \"Weekly\",\r\n \"retentionScheduleWeekly\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"weeksOfTheMonth\": [\r\n \"First\"\r\n ]\r\n },\r\n \"retentionTimes\": [\r\n \"2022-01-25T17:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 60,\r\n \"durationType\": \"Months\"\r\n }\r\n },\r\n \"yearlySchedule\": {\r\n \"retentionScheduleFormatType\": \"Weekly\",\r\n \"monthsOfYear\": [\r\n \"January\"\r\n ],\r\n \"retentionScheduleWeekly\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"weeksOfTheMonth\": [\r\n \"First\"\r\n ]\r\n },\r\n \"retentionTimes\": [\r\n \"2022-01-25T17:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 10,\r\n \"durationType\": \"Years\"\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"policyType\": \"Log\",\r\n \"schedulePolicy\": {\r\n \"schedulePolicyType\": \"LogSchedulePolicy\",\r\n \"scheduleFrequencyInMins\": 120\r\n },\r\n \"retentionPolicy\": {\r\n \"retentionPolicyType\": \"SimpleRetentionPolicy\",\r\n \"retentionDuration\": {\r\n \"count\": 15,\r\n \"durationType\": \"Days\"\r\n }\r\n }\r\n }\r\n ],\r\n \"protectedItemsCount\": 0\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupPolicies/testSqlPolicy\",\r\n \"name\": \"testSqlPolicy\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupPolicies\",\r\n \"properties\": {\r\n \"backupManagementType\": \"AzureWorkload\",\r\n \"workLoadType\": \"SQLDataBase\",\r\n \"settings\": {\r\n \"timeZone\": \"UTC\",\r\n \"issqlcompression\": false,\r\n \"isCompression\": false\r\n },\r\n \"subProtectionPolicy\": [\r\n {\r\n \"policyType\": \"Full\",\r\n \"schedulePolicy\": {\r\n \"schedulePolicyType\": \"SimpleSchedulePolicy\",\r\n \"scheduleRunFrequency\": \"Daily\",\r\n \"scheduleRunTimes\": [\r\n \"2022-05-17T16:00:00Z\"\r\n ],\r\n \"scheduleWeeklyFrequency\": 0\r\n },\r\n \"retentionPolicy\": {\r\n \"retentionPolicyType\": \"LongTermRetentionPolicy\",\r\n \"dailySchedule\": {\r\n \"retentionTimes\": [\r\n \"2022-05-17T16:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 180,\r\n \"durationType\": \"Days\"\r\n }\r\n },\r\n \"weeklySchedule\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"retentionTimes\": [\r\n \"2022-05-17T16:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 104,\r\n \"durationType\": \"Weeks\"\r\n }\r\n },\r\n \"monthlySchedule\": {\r\n \"retentionScheduleFormatType\": \"Weekly\",\r\n \"retentionScheduleWeekly\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"weeksOfTheMonth\": [\r\n \"First\"\r\n ]\r\n },\r\n \"retentionTimes\": [\r\n \"2022-05-17T16:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 60,\r\n \"durationType\": \"Months\"\r\n }\r\n },\r\n \"yearlySchedule\": {\r\n \"retentionScheduleFormatType\": \"Weekly\",\r\n \"monthsOfYear\": [\r\n \"January\"\r\n ],\r\n \"retentionScheduleWeekly\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"weeksOfTheMonth\": [\r\n \"First\"\r\n ]\r\n },\r\n \"retentionTimes\": [\r\n \"2022-05-17T16:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 10,\r\n \"durationType\": \"Years\"\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"policyType\": \"Log\",\r\n \"schedulePolicy\": {\r\n \"schedulePolicyType\": \"LogSchedulePolicy\",\r\n \"scheduleFrequencyInMins\": 120\r\n },\r\n \"retentionPolicy\": {\r\n \"retentionPolicyType\": \"SimpleRetentionPolicy\",\r\n \"retentionDuration\": {\r\n \"count\": 15,\r\n \"durationType\": \"Days\"\r\n }\r\n }\r\n }\r\n ],\r\n \"protectedItemsCount\": 0\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupPolicies/testSqlPolicy?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHdsUkcxYmNhOC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHdsUlNWMWJjYTgvYmFja3VwUG9saWNpZXMvdGVzdFNxbFBvbGljeT9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupPolicies/testSqlPolicy?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHdsUkcxYmNhOC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHdsUlNWMWJjYTgvYmFja3VwUG9saWNpZXMvdGVzdFNxbFBvbGljeT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1b9b0721-2e23-4ff4-bc41-98de4f641a4a" + "63666de9-1aa7-41d6-a62e-281275a4c62b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -234,16 +236,17 @@ "nosniff" ], "x-ms-request-id": [ - "d0b7c29b-a73e-405b-ba4c-495b1a26f884" + "e5c9e8c7-df9a-4b17-84e1-32981f7d5f37" ], "x-ms-client-request-id": [ - "1b9b0721-2e23-4ff4-bc41-98de4f641a4a" + "63666de9-1aa7-41d6-a62e-281275a4c62b", + "63666de9-1aa7-41d6-a62e-281275a4c62b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Server": [ - "Kestrel" + "Microsoft-IIS/10.0" ], "X-Powered-By": [ "ASP.NET" @@ -252,44 +255,44 @@ "297" ], "x-ms-correlation-request-id": [ - "d0b7c29b-a73e-405b-ba4c-495b1a26f884" + "e5c9e8c7-df9a-4b17-84e1-32981f7d5f37" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220125T172702Z:d0b7c29b-a73e-405b-ba4c-495b1a26f884" + "WESTINDIA:20220517T083811Z:e5c9e8c7-df9a-4b17-84e1-32981f7d5f37" ], "Date": [ - "Tue, 25 Jan 2022 17:27:02 GMT" + "Tue, 17 May 2022 08:38:11 GMT" ], "Content-Length": [ "1726" ], "Content-Type": [ - "application/json; charset=utf-8" + "application/json" ], "Expires": [ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupPolicies/testSqlPolicy\",\r\n \"name\": \"testSqlPolicy\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupPolicies\",\r\n \"properties\": {\r\n \"backupManagementType\": \"AzureWorkload\",\r\n \"workLoadType\": \"SQLDataBase\",\r\n \"settings\": {\r\n \"timeZone\": \"UTC\",\r\n \"issqlcompression\": false,\r\n \"isCompression\": false\r\n },\r\n \"subProtectionPolicy\": [\r\n {\r\n \"policyType\": \"Full\",\r\n \"schedulePolicy\": {\r\n \"schedulePolicyType\": \"SimpleSchedulePolicy\",\r\n \"scheduleRunFrequency\": \"Daily\",\r\n \"scheduleRunTimes\": [\r\n \"2022-01-25T17:00:00Z\"\r\n ],\r\n \"scheduleWeeklyFrequency\": 0\r\n },\r\n \"retentionPolicy\": {\r\n \"retentionPolicyType\": \"LongTermRetentionPolicy\",\r\n \"dailySchedule\": {\r\n \"retentionTimes\": [\r\n \"2022-01-25T17:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 180,\r\n \"durationType\": \"Days\"\r\n }\r\n },\r\n \"weeklySchedule\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"retentionTimes\": [\r\n \"2022-01-25T17:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 104,\r\n \"durationType\": \"Weeks\"\r\n }\r\n },\r\n \"monthlySchedule\": {\r\n \"retentionScheduleFormatType\": \"Weekly\",\r\n \"retentionScheduleWeekly\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"weeksOfTheMonth\": [\r\n \"First\"\r\n ]\r\n },\r\n \"retentionTimes\": [\r\n \"2022-01-25T17:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 60,\r\n \"durationType\": \"Months\"\r\n }\r\n },\r\n \"yearlySchedule\": {\r\n \"retentionScheduleFormatType\": \"Weekly\",\r\n \"monthsOfYear\": [\r\n \"January\"\r\n ],\r\n \"retentionScheduleWeekly\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"weeksOfTheMonth\": [\r\n \"First\"\r\n ]\r\n },\r\n \"retentionTimes\": [\r\n \"2022-01-25T17:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 10,\r\n \"durationType\": \"Years\"\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"policyType\": \"Log\",\r\n \"schedulePolicy\": {\r\n \"schedulePolicyType\": \"LogSchedulePolicy\",\r\n \"scheduleFrequencyInMins\": 120\r\n },\r\n \"retentionPolicy\": {\r\n \"retentionPolicyType\": \"SimpleRetentionPolicy\",\r\n \"retentionDuration\": {\r\n \"count\": 15,\r\n \"durationType\": \"Days\"\r\n }\r\n }\r\n }\r\n ],\r\n \"protectedItemsCount\": 0\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupPolicies/testSqlPolicy\",\r\n \"name\": \"testSqlPolicy\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupPolicies\",\r\n \"properties\": {\r\n \"backupManagementType\": \"AzureWorkload\",\r\n \"workLoadType\": \"SQLDataBase\",\r\n \"settings\": {\r\n \"timeZone\": \"UTC\",\r\n \"issqlcompression\": false,\r\n \"isCompression\": false\r\n },\r\n \"subProtectionPolicy\": [\r\n {\r\n \"policyType\": \"Full\",\r\n \"schedulePolicy\": {\r\n \"schedulePolicyType\": \"SimpleSchedulePolicy\",\r\n \"scheduleRunFrequency\": \"Daily\",\r\n \"scheduleRunTimes\": [\r\n \"2022-05-17T16:00:00Z\"\r\n ],\r\n \"scheduleWeeklyFrequency\": 0\r\n },\r\n \"retentionPolicy\": {\r\n \"retentionPolicyType\": \"LongTermRetentionPolicy\",\r\n \"dailySchedule\": {\r\n \"retentionTimes\": [\r\n \"2022-05-17T16:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 180,\r\n \"durationType\": \"Days\"\r\n }\r\n },\r\n \"weeklySchedule\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"retentionTimes\": [\r\n \"2022-05-17T16:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 104,\r\n \"durationType\": \"Weeks\"\r\n }\r\n },\r\n \"monthlySchedule\": {\r\n \"retentionScheduleFormatType\": \"Weekly\",\r\n \"retentionScheduleWeekly\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"weeksOfTheMonth\": [\r\n \"First\"\r\n ]\r\n },\r\n \"retentionTimes\": [\r\n \"2022-05-17T16:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 60,\r\n \"durationType\": \"Months\"\r\n }\r\n },\r\n \"yearlySchedule\": {\r\n \"retentionScheduleFormatType\": \"Weekly\",\r\n \"monthsOfYear\": [\r\n \"January\"\r\n ],\r\n \"retentionScheduleWeekly\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"weeksOfTheMonth\": [\r\n \"First\"\r\n ]\r\n },\r\n \"retentionTimes\": [\r\n \"2022-05-17T16:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 10,\r\n \"durationType\": \"Years\"\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"policyType\": \"Log\",\r\n \"schedulePolicy\": {\r\n \"schedulePolicyType\": \"LogSchedulePolicy\",\r\n \"scheduleFrequencyInMins\": 120\r\n },\r\n \"retentionPolicy\": {\r\n \"retentionPolicyType\": \"SimpleRetentionPolicy\",\r\n \"retentionDuration\": {\r\n \"count\": 15,\r\n \"durationType\": \"Days\"\r\n }\r\n }\r\n }\r\n ],\r\n \"protectedItemsCount\": 0\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupPolicies/testSqlPolicy?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHdsUkcxYmNhOC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHdsUlNWMWJjYTgvYmFja3VwUG9saWNpZXMvdGVzdFNxbFBvbGljeT9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupPolicies/testSqlPolicy?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHdsUkcxYmNhOC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHdsUlNWMWJjYTgvYmFja3VwUG9saWNpZXMvdGVzdFNxbFBvbGljeT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8869b039-dd25-4edd-8401-b27ad70c8f42" + "39a62147-3a7b-4e47-b6ab-407252fff7c1" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -303,16 +306,17 @@ "nosniff" ], "x-ms-request-id": [ - "6e41bf90-5c7c-49a2-8a53-404f09782a1a" + "de838e91-2c0d-414a-9929-df08be16d430" ], "x-ms-client-request-id": [ - "8869b039-dd25-4edd-8401-b27ad70c8f42" + "39a62147-3a7b-4e47-b6ab-407252fff7c1", + "39a62147-3a7b-4e47-b6ab-407252fff7c1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Server": [ - "Kestrel" + "Microsoft-IIS/10.0" ], "X-Powered-By": [ "ASP.NET" @@ -321,44 +325,44 @@ "296" ], "x-ms-correlation-request-id": [ - "6e41bf90-5c7c-49a2-8a53-404f09782a1a" + "de838e91-2c0d-414a-9929-df08be16d430" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220125T172703Z:6e41bf90-5c7c-49a2-8a53-404f09782a1a" + "WESTINDIA:20220517T083811Z:de838e91-2c0d-414a-9929-df08be16d430" ], "Date": [ - "Tue, 25 Jan 2022 17:27:02 GMT" + "Tue, 17 May 2022 08:38:11 GMT" ], "Content-Length": [ "1726" ], "Content-Type": [ - "application/json; charset=utf-8" + "application/json" ], "Expires": [ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupPolicies/testSqlPolicy\",\r\n \"name\": \"testSqlPolicy\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupPolicies\",\r\n \"properties\": {\r\n \"backupManagementType\": \"AzureWorkload\",\r\n \"workLoadType\": \"SQLDataBase\",\r\n \"settings\": {\r\n \"timeZone\": \"UTC\",\r\n \"issqlcompression\": false,\r\n \"isCompression\": false\r\n },\r\n \"subProtectionPolicy\": [\r\n {\r\n \"policyType\": \"Full\",\r\n \"schedulePolicy\": {\r\n \"schedulePolicyType\": \"SimpleSchedulePolicy\",\r\n \"scheduleRunFrequency\": \"Daily\",\r\n \"scheduleRunTimes\": [\r\n \"2022-01-25T17:00:00Z\"\r\n ],\r\n \"scheduleWeeklyFrequency\": 0\r\n },\r\n \"retentionPolicy\": {\r\n \"retentionPolicyType\": \"LongTermRetentionPolicy\",\r\n \"dailySchedule\": {\r\n \"retentionTimes\": [\r\n \"2022-01-25T17:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 180,\r\n \"durationType\": \"Days\"\r\n }\r\n },\r\n \"weeklySchedule\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"retentionTimes\": [\r\n \"2022-01-25T17:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 104,\r\n \"durationType\": \"Weeks\"\r\n }\r\n },\r\n \"monthlySchedule\": {\r\n \"retentionScheduleFormatType\": \"Weekly\",\r\n \"retentionScheduleWeekly\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"weeksOfTheMonth\": [\r\n \"First\"\r\n ]\r\n },\r\n \"retentionTimes\": [\r\n \"2022-01-25T17:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 60,\r\n \"durationType\": \"Months\"\r\n }\r\n },\r\n \"yearlySchedule\": {\r\n \"retentionScheduleFormatType\": \"Weekly\",\r\n \"monthsOfYear\": [\r\n \"January\"\r\n ],\r\n \"retentionScheduleWeekly\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"weeksOfTheMonth\": [\r\n \"First\"\r\n ]\r\n },\r\n \"retentionTimes\": [\r\n \"2022-01-25T17:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 10,\r\n \"durationType\": \"Years\"\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"policyType\": \"Log\",\r\n \"schedulePolicy\": {\r\n \"schedulePolicyType\": \"LogSchedulePolicy\",\r\n \"scheduleFrequencyInMins\": 120\r\n },\r\n \"retentionPolicy\": {\r\n \"retentionPolicyType\": \"SimpleRetentionPolicy\",\r\n \"retentionDuration\": {\r\n \"count\": 15,\r\n \"durationType\": \"Days\"\r\n }\r\n }\r\n }\r\n ],\r\n \"protectedItemsCount\": 0\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupPolicies/testSqlPolicy\",\r\n \"name\": \"testSqlPolicy\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupPolicies\",\r\n \"properties\": {\r\n \"backupManagementType\": \"AzureWorkload\",\r\n \"workLoadType\": \"SQLDataBase\",\r\n \"settings\": {\r\n \"timeZone\": \"UTC\",\r\n \"issqlcompression\": false,\r\n \"isCompression\": false\r\n },\r\n \"subProtectionPolicy\": [\r\n {\r\n \"policyType\": \"Full\",\r\n \"schedulePolicy\": {\r\n \"schedulePolicyType\": \"SimpleSchedulePolicy\",\r\n \"scheduleRunFrequency\": \"Daily\",\r\n \"scheduleRunTimes\": [\r\n \"2022-05-17T16:00:00Z\"\r\n ],\r\n \"scheduleWeeklyFrequency\": 0\r\n },\r\n \"retentionPolicy\": {\r\n \"retentionPolicyType\": \"LongTermRetentionPolicy\",\r\n \"dailySchedule\": {\r\n \"retentionTimes\": [\r\n \"2022-05-17T16:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 180,\r\n \"durationType\": \"Days\"\r\n }\r\n },\r\n \"weeklySchedule\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"retentionTimes\": [\r\n \"2022-05-17T16:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 104,\r\n \"durationType\": \"Weeks\"\r\n }\r\n },\r\n \"monthlySchedule\": {\r\n \"retentionScheduleFormatType\": \"Weekly\",\r\n \"retentionScheduleWeekly\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"weeksOfTheMonth\": [\r\n \"First\"\r\n ]\r\n },\r\n \"retentionTimes\": [\r\n \"2022-05-17T16:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 60,\r\n \"durationType\": \"Months\"\r\n }\r\n },\r\n \"yearlySchedule\": {\r\n \"retentionScheduleFormatType\": \"Weekly\",\r\n \"monthsOfYear\": [\r\n \"January\"\r\n ],\r\n \"retentionScheduleWeekly\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"weeksOfTheMonth\": [\r\n \"First\"\r\n ]\r\n },\r\n \"retentionTimes\": [\r\n \"2022-05-17T16:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 10,\r\n \"durationType\": \"Years\"\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"policyType\": \"Log\",\r\n \"schedulePolicy\": {\r\n \"schedulePolicyType\": \"LogSchedulePolicy\",\r\n \"scheduleFrequencyInMins\": 120\r\n },\r\n \"retentionPolicy\": {\r\n \"retentionPolicyType\": \"SimpleRetentionPolicy\",\r\n \"retentionDuration\": {\r\n \"count\": 15,\r\n \"durationType\": \"Days\"\r\n }\r\n }\r\n }\r\n ],\r\n \"protectedItemsCount\": 0\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupPolicies/testSqlPolicy?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHdsUkcxYmNhOC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHdsUlNWMWJjYTgvYmFja3VwUG9saWNpZXMvdGVzdFNxbFBvbGljeT9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupPolicies/testSqlPolicy?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHdsUkcxYmNhOC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHdsUlNWMWJjYTgvYmFja3VwUG9saWNpZXMvdGVzdFNxbFBvbGljeT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4af46b1b-8874-45d2-8c16-a00c75e2d72a" + "c49cb44c-a24c-4abe-96e8-1d876ba29e77" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -372,16 +376,17 @@ "nosniff" ], "x-ms-request-id": [ - "034f6d13-c3a4-417b-bb23-1532a0a34dbe" + "1747893f-3009-4753-a436-bc31ab2a44f3" ], "x-ms-client-request-id": [ - "4af46b1b-8874-45d2-8c16-a00c75e2d72a" + "c49cb44c-a24c-4abe-96e8-1d876ba29e77", + "c49cb44c-a24c-4abe-96e8-1d876ba29e77" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Server": [ - "Kestrel" + "Microsoft-IIS/10.0" ], "X-Powered-By": [ "ASP.NET" @@ -390,44 +395,44 @@ "295" ], "x-ms-correlation-request-id": [ - "034f6d13-c3a4-417b-bb23-1532a0a34dbe" + "1747893f-3009-4753-a436-bc31ab2a44f3" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220125T172704Z:034f6d13-c3a4-417b-bb23-1532a0a34dbe" + "WESTINDIA:20220517T083813Z:1747893f-3009-4753-a436-bc31ab2a44f3" ], "Date": [ - "Tue, 25 Jan 2022 17:27:03 GMT" + "Tue, 17 May 2022 08:38:13 GMT" ], "Content-Length": [ "1985" ], "Content-Type": [ - "application/json; charset=utf-8" + "application/json" ], "Expires": [ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupPolicies/testSqlPolicy\",\r\n \"name\": \"testSqlPolicy\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupPolicies\",\r\n \"properties\": {\r\n \"backupManagementType\": \"AzureWorkload\",\r\n \"workLoadType\": \"SQLDataBase\",\r\n \"settings\": {\r\n \"timeZone\": \"UTC\",\r\n \"issqlcompression\": true,\r\n \"isCompression\": true\r\n },\r\n \"subProtectionPolicy\": [\r\n {\r\n \"policyType\": \"Full\",\r\n \"schedulePolicy\": {\r\n \"schedulePolicyType\": \"SimpleSchedulePolicy\",\r\n \"scheduleRunFrequency\": \"Weekly\",\r\n \"scheduleRunDays\": [\r\n \"Sunday\"\r\n ],\r\n \"scheduleRunTimes\": [\r\n \"2022-01-25T20:30:00Z\"\r\n ],\r\n \"scheduleWeeklyFrequency\": 0\r\n },\r\n \"retentionPolicy\": {\r\n \"retentionPolicyType\": \"LongTermRetentionPolicy\",\r\n \"weeklySchedule\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"retentionTimes\": [\r\n \"2022-01-25T20:30:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 104,\r\n \"durationType\": \"Weeks\"\r\n }\r\n },\r\n \"monthlySchedule\": {\r\n \"retentionScheduleFormatType\": \"Weekly\",\r\n \"retentionScheduleWeekly\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"weeksOfTheMonth\": [\r\n \"First\"\r\n ]\r\n },\r\n \"retentionTimes\": [\r\n \"2022-01-25T20:30:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 60,\r\n \"durationType\": \"Months\"\r\n }\r\n },\r\n \"yearlySchedule\": {\r\n \"retentionScheduleFormatType\": \"Weekly\",\r\n \"monthsOfYear\": [\r\n \"January\"\r\n ],\r\n \"retentionScheduleWeekly\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"weeksOfTheMonth\": [\r\n \"First\"\r\n ]\r\n },\r\n \"retentionTimes\": [\r\n \"2022-01-25T20:30:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 10,\r\n \"durationType\": \"Years\"\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"policyType\": \"Differential\",\r\n \"schedulePolicy\": {\r\n \"schedulePolicyType\": \"SimpleSchedulePolicy\",\r\n \"scheduleRunFrequency\": \"Weekly\",\r\n \"scheduleRunDays\": [\r\n \"Monday\"\r\n ],\r\n \"scheduleRunTimes\": [\r\n \"2022-01-25T20:30:00Z\"\r\n ],\r\n \"scheduleWeeklyFrequency\": 0\r\n },\r\n \"retentionPolicy\": {\r\n \"retentionPolicyType\": \"SimpleRetentionPolicy\",\r\n \"retentionDuration\": {\r\n \"count\": 31,\r\n \"durationType\": \"Days\"\r\n }\r\n }\r\n },\r\n {\r\n \"policyType\": \"Log\",\r\n \"schedulePolicy\": {\r\n \"schedulePolicyType\": \"LogSchedulePolicy\",\r\n \"scheduleFrequencyInMins\": 120\r\n },\r\n \"retentionPolicy\": {\r\n \"retentionPolicyType\": \"SimpleRetentionPolicy\",\r\n \"retentionDuration\": {\r\n \"count\": 15,\r\n \"durationType\": \"Days\"\r\n }\r\n }\r\n }\r\n ],\r\n \"protectedItemsCount\": 0\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupPolicies/testSqlPolicy\",\r\n \"name\": \"testSqlPolicy\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupPolicies\",\r\n \"properties\": {\r\n \"backupManagementType\": \"AzureWorkload\",\r\n \"workLoadType\": \"SQLDataBase\",\r\n \"settings\": {\r\n \"timeZone\": \"UTC\",\r\n \"issqlcompression\": true,\r\n \"isCompression\": true\r\n },\r\n \"subProtectionPolicy\": [\r\n {\r\n \"policyType\": \"Full\",\r\n \"schedulePolicy\": {\r\n \"schedulePolicyType\": \"SimpleSchedulePolicy\",\r\n \"scheduleRunFrequency\": \"Weekly\",\r\n \"scheduleRunDays\": [\r\n \"Sunday\"\r\n ],\r\n \"scheduleRunTimes\": [\r\n \"2022-05-17T11:00:00Z\"\r\n ],\r\n \"scheduleWeeklyFrequency\": 0\r\n },\r\n \"retentionPolicy\": {\r\n \"retentionPolicyType\": \"LongTermRetentionPolicy\",\r\n \"weeklySchedule\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"retentionTimes\": [\r\n \"2022-05-17T11:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 104,\r\n \"durationType\": \"Weeks\"\r\n }\r\n },\r\n \"monthlySchedule\": {\r\n \"retentionScheduleFormatType\": \"Weekly\",\r\n \"retentionScheduleWeekly\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"weeksOfTheMonth\": [\r\n \"First\"\r\n ]\r\n },\r\n \"retentionTimes\": [\r\n \"2022-05-17T11:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 60,\r\n \"durationType\": \"Months\"\r\n }\r\n },\r\n \"yearlySchedule\": {\r\n \"retentionScheduleFormatType\": \"Weekly\",\r\n \"monthsOfYear\": [\r\n \"January\"\r\n ],\r\n \"retentionScheduleWeekly\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"weeksOfTheMonth\": [\r\n \"First\"\r\n ]\r\n },\r\n \"retentionTimes\": [\r\n \"2022-05-17T11:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 10,\r\n \"durationType\": \"Years\"\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"policyType\": \"Differential\",\r\n \"schedulePolicy\": {\r\n \"schedulePolicyType\": \"SimpleSchedulePolicy\",\r\n \"scheduleRunFrequency\": \"Weekly\",\r\n \"scheduleRunDays\": [\r\n \"Monday\"\r\n ],\r\n \"scheduleRunTimes\": [\r\n \"2022-05-17T11:00:00Z\"\r\n ],\r\n \"scheduleWeeklyFrequency\": 0\r\n },\r\n \"retentionPolicy\": {\r\n \"retentionPolicyType\": \"SimpleRetentionPolicy\",\r\n \"retentionDuration\": {\r\n \"count\": 31,\r\n \"durationType\": \"Days\"\r\n }\r\n }\r\n },\r\n {\r\n \"policyType\": \"Log\",\r\n \"schedulePolicy\": {\r\n \"schedulePolicyType\": \"LogSchedulePolicy\",\r\n \"scheduleFrequencyInMins\": 120\r\n },\r\n \"retentionPolicy\": {\r\n \"retentionPolicyType\": \"SimpleRetentionPolicy\",\r\n \"retentionDuration\": {\r\n \"count\": 15,\r\n \"durationType\": \"Days\"\r\n }\r\n }\r\n }\r\n ],\r\n \"protectedItemsCount\": 0\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupPolicies/testSqlPolicy?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHdsUkcxYmNhOC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHdsUlNWMWJjYTgvYmFja3VwUG9saWNpZXMvdGVzdFNxbFBvbGljeT9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupPolicies/testSqlPolicy?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHdsUkcxYmNhOC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHdsUlNWMWJjYTgvYmFja3VwUG9saWNpZXMvdGVzdFNxbFBvbGljeT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "67ac8e45-fde7-4df3-b677-f152d0656b1c" + "8c4a1a28-bbc7-4241-b467-8ecf48c13089" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -441,16 +446,17 @@ "nosniff" ], "x-ms-request-id": [ - "5d094ff8-d21a-4060-8dbf-39267fbe8627" + "41cfa530-2cf1-4c74-8ef2-e0c63b57c8bd" ], "x-ms-client-request-id": [ - "67ac8e45-fde7-4df3-b677-f152d0656b1c" + "8c4a1a28-bbc7-4241-b467-8ecf48c13089", + "8c4a1a28-bbc7-4241-b467-8ecf48c13089" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Server": [ - "Kestrel" + "Microsoft-IIS/10.0" ], "X-Powered-By": [ "ASP.NET" @@ -459,44 +465,44 @@ "294" ], "x-ms-correlation-request-id": [ - "5d094ff8-d21a-4060-8dbf-39267fbe8627" + "41cfa530-2cf1-4c74-8ef2-e0c63b57c8bd" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220125T172704Z:5d094ff8-d21a-4060-8dbf-39267fbe8627" + "WESTINDIA:20220517T083814Z:41cfa530-2cf1-4c74-8ef2-e0c63b57c8bd" ], "Date": [ - "Tue, 25 Jan 2022 17:27:03 GMT" + "Tue, 17 May 2022 08:38:13 GMT" ], "Content-Length": [ "1985" ], "Content-Type": [ - "application/json; charset=utf-8" + "application/json" ], "Expires": [ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupPolicies/testSqlPolicy\",\r\n \"name\": \"testSqlPolicy\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupPolicies\",\r\n \"properties\": {\r\n \"backupManagementType\": \"AzureWorkload\",\r\n \"workLoadType\": \"SQLDataBase\",\r\n \"settings\": {\r\n \"timeZone\": \"UTC\",\r\n \"issqlcompression\": true,\r\n \"isCompression\": true\r\n },\r\n \"subProtectionPolicy\": [\r\n {\r\n \"policyType\": \"Full\",\r\n \"schedulePolicy\": {\r\n \"schedulePolicyType\": \"SimpleSchedulePolicy\",\r\n \"scheduleRunFrequency\": \"Weekly\",\r\n \"scheduleRunDays\": [\r\n \"Sunday\"\r\n ],\r\n \"scheduleRunTimes\": [\r\n \"2022-01-25T20:30:00Z\"\r\n ],\r\n \"scheduleWeeklyFrequency\": 0\r\n },\r\n \"retentionPolicy\": {\r\n \"retentionPolicyType\": \"LongTermRetentionPolicy\",\r\n \"weeklySchedule\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"retentionTimes\": [\r\n \"2022-01-25T20:30:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 104,\r\n \"durationType\": \"Weeks\"\r\n }\r\n },\r\n \"monthlySchedule\": {\r\n \"retentionScheduleFormatType\": \"Weekly\",\r\n \"retentionScheduleWeekly\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"weeksOfTheMonth\": [\r\n \"First\"\r\n ]\r\n },\r\n \"retentionTimes\": [\r\n \"2022-01-25T20:30:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 60,\r\n \"durationType\": \"Months\"\r\n }\r\n },\r\n \"yearlySchedule\": {\r\n \"retentionScheduleFormatType\": \"Weekly\",\r\n \"monthsOfYear\": [\r\n \"January\"\r\n ],\r\n \"retentionScheduleWeekly\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"weeksOfTheMonth\": [\r\n \"First\"\r\n ]\r\n },\r\n \"retentionTimes\": [\r\n \"2022-01-25T20:30:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 10,\r\n \"durationType\": \"Years\"\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"policyType\": \"Differential\",\r\n \"schedulePolicy\": {\r\n \"schedulePolicyType\": \"SimpleSchedulePolicy\",\r\n \"scheduleRunFrequency\": \"Weekly\",\r\n \"scheduleRunDays\": [\r\n \"Monday\"\r\n ],\r\n \"scheduleRunTimes\": [\r\n \"2022-01-25T20:30:00Z\"\r\n ],\r\n \"scheduleWeeklyFrequency\": 0\r\n },\r\n \"retentionPolicy\": {\r\n \"retentionPolicyType\": \"SimpleRetentionPolicy\",\r\n \"retentionDuration\": {\r\n \"count\": 31,\r\n \"durationType\": \"Days\"\r\n }\r\n }\r\n },\r\n {\r\n \"policyType\": \"Log\",\r\n \"schedulePolicy\": {\r\n \"schedulePolicyType\": \"LogSchedulePolicy\",\r\n \"scheduleFrequencyInMins\": 120\r\n },\r\n \"retentionPolicy\": {\r\n \"retentionPolicyType\": \"SimpleRetentionPolicy\",\r\n \"retentionDuration\": {\r\n \"count\": 15,\r\n \"durationType\": \"Days\"\r\n }\r\n }\r\n }\r\n ],\r\n \"protectedItemsCount\": 0\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupPolicies/testSqlPolicy\",\r\n \"name\": \"testSqlPolicy\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupPolicies\",\r\n \"properties\": {\r\n \"backupManagementType\": \"AzureWorkload\",\r\n \"workLoadType\": \"SQLDataBase\",\r\n \"settings\": {\r\n \"timeZone\": \"UTC\",\r\n \"issqlcompression\": true,\r\n \"isCompression\": true\r\n },\r\n \"subProtectionPolicy\": [\r\n {\r\n \"policyType\": \"Full\",\r\n \"schedulePolicy\": {\r\n \"schedulePolicyType\": \"SimpleSchedulePolicy\",\r\n \"scheduleRunFrequency\": \"Weekly\",\r\n \"scheduleRunDays\": [\r\n \"Sunday\"\r\n ],\r\n \"scheduleRunTimes\": [\r\n \"2022-05-17T11:00:00Z\"\r\n ],\r\n \"scheduleWeeklyFrequency\": 0\r\n },\r\n \"retentionPolicy\": {\r\n \"retentionPolicyType\": \"LongTermRetentionPolicy\",\r\n \"weeklySchedule\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"retentionTimes\": [\r\n \"2022-05-17T11:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 104,\r\n \"durationType\": \"Weeks\"\r\n }\r\n },\r\n \"monthlySchedule\": {\r\n \"retentionScheduleFormatType\": \"Weekly\",\r\n \"retentionScheduleWeekly\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"weeksOfTheMonth\": [\r\n \"First\"\r\n ]\r\n },\r\n \"retentionTimes\": [\r\n \"2022-05-17T11:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 60,\r\n \"durationType\": \"Months\"\r\n }\r\n },\r\n \"yearlySchedule\": {\r\n \"retentionScheduleFormatType\": \"Weekly\",\r\n \"monthsOfYear\": [\r\n \"January\"\r\n ],\r\n \"retentionScheduleWeekly\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"weeksOfTheMonth\": [\r\n \"First\"\r\n ]\r\n },\r\n \"retentionTimes\": [\r\n \"2022-05-17T11:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 10,\r\n \"durationType\": \"Years\"\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"policyType\": \"Differential\",\r\n \"schedulePolicy\": {\r\n \"schedulePolicyType\": \"SimpleSchedulePolicy\",\r\n \"scheduleRunFrequency\": \"Weekly\",\r\n \"scheduleRunDays\": [\r\n \"Monday\"\r\n ],\r\n \"scheduleRunTimes\": [\r\n \"2022-05-17T11:00:00Z\"\r\n ],\r\n \"scheduleWeeklyFrequency\": 0\r\n },\r\n \"retentionPolicy\": {\r\n \"retentionPolicyType\": \"SimpleRetentionPolicy\",\r\n \"retentionDuration\": {\r\n \"count\": 31,\r\n \"durationType\": \"Days\"\r\n }\r\n }\r\n },\r\n {\r\n \"policyType\": \"Log\",\r\n \"schedulePolicy\": {\r\n \"schedulePolicyType\": \"LogSchedulePolicy\",\r\n \"scheduleFrequencyInMins\": 120\r\n },\r\n \"retentionPolicy\": {\r\n \"retentionPolicyType\": \"SimpleRetentionPolicy\",\r\n \"retentionDuration\": {\r\n \"count\": 15,\r\n \"durationType\": \"Days\"\r\n }\r\n }\r\n }\r\n ],\r\n \"protectedItemsCount\": 0\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupPolicies/testSqlPolicy?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHdsUkcxYmNhOC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHdsUlNWMWJjYTgvYmFja3VwUG9saWNpZXMvdGVzdFNxbFBvbGljeT9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupPolicies/testSqlPolicy?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHdsUkcxYmNhOC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHdsUlNWMWJjYTgvYmFja3VwUG9saWNpZXMvdGVzdFNxbFBvbGljeT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"backupManagementType\": \"AzureWorkload\",\r\n \"workLoadType\": \"SQLDataBase\",\r\n \"settings\": {\r\n \"timeZone\": \"UTC\",\r\n \"issqlcompression\": false,\r\n \"isCompression\": false\r\n },\r\n \"subProtectionPolicy\": [\r\n {\r\n \"policyType\": \"Full\",\r\n \"schedulePolicy\": {\r\n \"schedulePolicyType\": \"SimpleSchedulePolicy\",\r\n \"scheduleRunFrequency\": \"Daily\",\r\n \"scheduleRunTimes\": [\r\n \"2022-01-25T17:00:00Z\"\r\n ]\r\n },\r\n \"retentionPolicy\": {\r\n \"retentionPolicyType\": \"LongTermRetentionPolicy\",\r\n \"dailySchedule\": {\r\n \"retentionTimes\": [\r\n \"2022-01-25T17:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 180,\r\n \"durationType\": \"Days\"\r\n }\r\n },\r\n \"weeklySchedule\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"retentionTimes\": [\r\n \"2022-01-25T17:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 104,\r\n \"durationType\": \"Weeks\"\r\n }\r\n },\r\n \"monthlySchedule\": {\r\n \"retentionScheduleFormatType\": \"Weekly\",\r\n \"retentionScheduleWeekly\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"weeksOfTheMonth\": [\r\n \"First\"\r\n ]\r\n },\r\n \"retentionTimes\": [\r\n \"2022-01-25T17:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 60,\r\n \"durationType\": \"Months\"\r\n }\r\n },\r\n \"yearlySchedule\": {\r\n \"retentionScheduleFormatType\": \"Weekly\",\r\n \"monthsOfYear\": [\r\n \"January\"\r\n ],\r\n \"retentionScheduleWeekly\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"weeksOfTheMonth\": [\r\n \"First\"\r\n ]\r\n },\r\n \"retentionTimes\": [\r\n \"2022-01-25T17:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 10,\r\n \"durationType\": \"Years\"\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"policyType\": \"Log\",\r\n \"schedulePolicy\": {\r\n \"schedulePolicyType\": \"LogSchedulePolicy\",\r\n \"scheduleFrequencyInMins\": 120\r\n },\r\n \"retentionPolicy\": {\r\n \"retentionPolicyType\": \"SimpleRetentionPolicy\",\r\n \"retentionDuration\": {\r\n \"count\": 15,\r\n \"durationType\": \"Days\"\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"backupManagementType\": \"AzureWorkload\",\r\n \"workLoadType\": \"SQLDataBase\",\r\n \"settings\": {\r\n \"timeZone\": \"UTC\",\r\n \"issqlcompression\": false,\r\n \"isCompression\": false\r\n },\r\n \"subProtectionPolicy\": [\r\n {\r\n \"policyType\": \"Full\",\r\n \"schedulePolicy\": {\r\n \"schedulePolicyType\": \"SimpleSchedulePolicy\",\r\n \"scheduleRunFrequency\": \"Daily\",\r\n \"scheduleRunTimes\": [\r\n \"2022-05-17T16:00:00Z\"\r\n ]\r\n },\r\n \"retentionPolicy\": {\r\n \"retentionPolicyType\": \"LongTermRetentionPolicy\",\r\n \"dailySchedule\": {\r\n \"retentionTimes\": [\r\n \"2022-05-17T16:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 180,\r\n \"durationType\": \"Days\"\r\n }\r\n },\r\n \"weeklySchedule\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"retentionTimes\": [\r\n \"2022-05-17T16:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 104,\r\n \"durationType\": \"Weeks\"\r\n }\r\n },\r\n \"monthlySchedule\": {\r\n \"retentionScheduleFormatType\": \"Weekly\",\r\n \"retentionScheduleWeekly\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"weeksOfTheMonth\": [\r\n \"First\"\r\n ]\r\n },\r\n \"retentionTimes\": [\r\n \"2022-05-17T16:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 60,\r\n \"durationType\": \"Months\"\r\n }\r\n },\r\n \"yearlySchedule\": {\r\n \"retentionScheduleFormatType\": \"Weekly\",\r\n \"monthsOfYear\": [\r\n \"January\"\r\n ],\r\n \"retentionScheduleWeekly\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"weeksOfTheMonth\": [\r\n \"First\"\r\n ]\r\n },\r\n \"retentionTimes\": [\r\n \"2022-05-17T16:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 10,\r\n \"durationType\": \"Years\"\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"policyType\": \"Log\",\r\n \"schedulePolicy\": {\r\n \"schedulePolicyType\": \"LogSchedulePolicy\",\r\n \"scheduleFrequencyInMins\": 120\r\n },\r\n \"retentionPolicy\": {\r\n \"retentionPolicyType\": \"SimpleRetentionPolicy\",\r\n \"retentionDuration\": {\r\n \"count\": 15,\r\n \"durationType\": \"Days\"\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "ede36c49-de3d-4d57-8456-304eadf68082" + "6a273d50-21c7-4dc8-8a9c-6197dc09d216" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -516,16 +522,17 @@ "nosniff" ], "x-ms-request-id": [ - "8dda9f6f-4dac-4e31-863c-0ac2834fece5" + "425b3623-ad65-407e-9cd3-f63f8f2c4933" ], "x-ms-client-request-id": [ - "ede36c49-de3d-4d57-8456-304eadf68082" + "6a273d50-21c7-4dc8-8a9c-6197dc09d216", + "6a273d50-21c7-4dc8-8a9c-6197dc09d216" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Server": [ - "Kestrel" + "Microsoft-IIS/10.0" ], "X-Powered-By": [ "ASP.NET" @@ -534,44 +541,44 @@ "1199" ], "x-ms-correlation-request-id": [ - "8dda9f6f-4dac-4e31-863c-0ac2834fece5" + "425b3623-ad65-407e-9cd3-f63f8f2c4933" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220125T172702Z:8dda9f6f-4dac-4e31-863c-0ac2834fece5" + "WESTINDIA:20220517T083810Z:425b3623-ad65-407e-9cd3-f63f8f2c4933" ], "Date": [ - "Tue, 25 Jan 2022 17:27:01 GMT" + "Tue, 17 May 2022 08:38:10 GMT" ], "Content-Length": [ "1726" ], "Content-Type": [ - "application/json; charset=utf-8" + "application/json" ], "Expires": [ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupPolicies/testSqlPolicy\",\r\n \"name\": \"testSqlPolicy\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupPolicies\",\r\n \"properties\": {\r\n \"backupManagementType\": \"AzureWorkload\",\r\n \"workLoadType\": \"SQLDataBase\",\r\n \"settings\": {\r\n \"timeZone\": \"UTC\",\r\n \"issqlcompression\": false,\r\n \"isCompression\": false\r\n },\r\n \"subProtectionPolicy\": [\r\n {\r\n \"policyType\": \"Full\",\r\n \"schedulePolicy\": {\r\n \"schedulePolicyType\": \"SimpleSchedulePolicy\",\r\n \"scheduleRunFrequency\": \"Daily\",\r\n \"scheduleRunTimes\": [\r\n \"2022-01-25T17:00:00Z\"\r\n ],\r\n \"scheduleWeeklyFrequency\": 0\r\n },\r\n \"retentionPolicy\": {\r\n \"retentionPolicyType\": \"LongTermRetentionPolicy\",\r\n \"dailySchedule\": {\r\n \"retentionTimes\": [\r\n \"2022-01-25T17:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 180,\r\n \"durationType\": \"Days\"\r\n }\r\n },\r\n \"weeklySchedule\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"retentionTimes\": [\r\n \"2022-01-25T17:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 104,\r\n \"durationType\": \"Weeks\"\r\n }\r\n },\r\n \"monthlySchedule\": {\r\n \"retentionScheduleFormatType\": \"Weekly\",\r\n \"retentionScheduleWeekly\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"weeksOfTheMonth\": [\r\n \"First\"\r\n ]\r\n },\r\n \"retentionTimes\": [\r\n \"2022-01-25T17:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 60,\r\n \"durationType\": \"Months\"\r\n }\r\n },\r\n \"yearlySchedule\": {\r\n \"retentionScheduleFormatType\": \"Weekly\",\r\n \"monthsOfYear\": [\r\n \"January\"\r\n ],\r\n \"retentionScheduleWeekly\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"weeksOfTheMonth\": [\r\n \"First\"\r\n ]\r\n },\r\n \"retentionTimes\": [\r\n \"2022-01-25T17:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 10,\r\n \"durationType\": \"Years\"\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"policyType\": \"Log\",\r\n \"schedulePolicy\": {\r\n \"schedulePolicyType\": \"LogSchedulePolicy\",\r\n \"scheduleFrequencyInMins\": 120\r\n },\r\n \"retentionPolicy\": {\r\n \"retentionPolicyType\": \"SimpleRetentionPolicy\",\r\n \"retentionDuration\": {\r\n \"count\": 15,\r\n \"durationType\": \"Days\"\r\n }\r\n }\r\n }\r\n ],\r\n \"protectedItemsCount\": 0\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupPolicies/testSqlPolicy\",\r\n \"name\": \"testSqlPolicy\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupPolicies\",\r\n \"properties\": {\r\n \"backupManagementType\": \"AzureWorkload\",\r\n \"workLoadType\": \"SQLDataBase\",\r\n \"settings\": {\r\n \"timeZone\": \"UTC\",\r\n \"issqlcompression\": false,\r\n \"isCompression\": false\r\n },\r\n \"subProtectionPolicy\": [\r\n {\r\n \"policyType\": \"Full\",\r\n \"schedulePolicy\": {\r\n \"schedulePolicyType\": \"SimpleSchedulePolicy\",\r\n \"scheduleRunFrequency\": \"Daily\",\r\n \"scheduleRunTimes\": [\r\n \"2022-05-17T16:00:00Z\"\r\n ],\r\n \"scheduleWeeklyFrequency\": 0\r\n },\r\n \"retentionPolicy\": {\r\n \"retentionPolicyType\": \"LongTermRetentionPolicy\",\r\n \"dailySchedule\": {\r\n \"retentionTimes\": [\r\n \"2022-05-17T16:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 180,\r\n \"durationType\": \"Days\"\r\n }\r\n },\r\n \"weeklySchedule\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"retentionTimes\": [\r\n \"2022-05-17T16:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 104,\r\n \"durationType\": \"Weeks\"\r\n }\r\n },\r\n \"monthlySchedule\": {\r\n \"retentionScheduleFormatType\": \"Weekly\",\r\n \"retentionScheduleWeekly\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"weeksOfTheMonth\": [\r\n \"First\"\r\n ]\r\n },\r\n \"retentionTimes\": [\r\n \"2022-05-17T16:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 60,\r\n \"durationType\": \"Months\"\r\n }\r\n },\r\n \"yearlySchedule\": {\r\n \"retentionScheduleFormatType\": \"Weekly\",\r\n \"monthsOfYear\": [\r\n \"January\"\r\n ],\r\n \"retentionScheduleWeekly\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"weeksOfTheMonth\": [\r\n \"First\"\r\n ]\r\n },\r\n \"retentionTimes\": [\r\n \"2022-05-17T16:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 10,\r\n \"durationType\": \"Years\"\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"policyType\": \"Log\",\r\n \"schedulePolicy\": {\r\n \"schedulePolicyType\": \"LogSchedulePolicy\",\r\n \"scheduleFrequencyInMins\": 120\r\n },\r\n \"retentionPolicy\": {\r\n \"retentionPolicyType\": \"SimpleRetentionPolicy\",\r\n \"retentionDuration\": {\r\n \"count\": 15,\r\n \"durationType\": \"Days\"\r\n }\r\n }\r\n }\r\n ],\r\n \"protectedItemsCount\": 0\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupPolicies/testSqlPolicy?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHdsUkcxYmNhOC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHdsUlNWMWJjYTgvYmFja3VwUG9saWNpZXMvdGVzdFNxbFBvbGljeT9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupPolicies/testSqlPolicy?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHdsUkcxYmNhOC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHdsUlNWMWJjYTgvYmFja3VwUG9saWNpZXMvdGVzdFNxbFBvbGljeT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"backupManagementType\": \"AzureWorkload\",\r\n \"workLoadType\": \"SQLDataBase\",\r\n \"settings\": {\r\n \"timeZone\": \"UTC\",\r\n \"issqlcompression\": true,\r\n \"isCompression\": true\r\n },\r\n \"subProtectionPolicy\": [\r\n {\r\n \"policyType\": \"Full\",\r\n \"schedulePolicy\": {\r\n \"schedulePolicyType\": \"SimpleSchedulePolicy\",\r\n \"scheduleRunFrequency\": \"Weekly\",\r\n \"scheduleRunDays\": [\r\n \"Sunday\"\r\n ],\r\n \"scheduleRunTimes\": [\r\n \"2022-01-25T20:30:00Z\"\r\n ]\r\n },\r\n \"retentionPolicy\": {\r\n \"retentionPolicyType\": \"LongTermRetentionPolicy\",\r\n \"weeklySchedule\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"retentionTimes\": [\r\n \"2022-01-25T20:30:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 104,\r\n \"durationType\": \"Weeks\"\r\n }\r\n },\r\n \"monthlySchedule\": {\r\n \"retentionScheduleFormatType\": \"Weekly\",\r\n \"retentionScheduleWeekly\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"weeksOfTheMonth\": [\r\n \"First\"\r\n ]\r\n },\r\n \"retentionTimes\": [\r\n \"2022-01-25T20:30:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 60,\r\n \"durationType\": \"Months\"\r\n }\r\n },\r\n \"yearlySchedule\": {\r\n \"retentionScheduleFormatType\": \"Weekly\",\r\n \"monthsOfYear\": [\r\n \"January\"\r\n ],\r\n \"retentionScheduleWeekly\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"weeksOfTheMonth\": [\r\n \"First\"\r\n ]\r\n },\r\n \"retentionTimes\": [\r\n \"2022-01-25T20:30:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 10,\r\n \"durationType\": \"Years\"\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"policyType\": \"Differential\",\r\n \"schedulePolicy\": {\r\n \"schedulePolicyType\": \"SimpleSchedulePolicy\",\r\n \"scheduleRunFrequency\": \"Weekly\",\r\n \"scheduleRunDays\": [\r\n \"Monday\"\r\n ],\r\n \"scheduleRunTimes\": [\r\n \"2022-01-25T20:30:00Z\"\r\n ]\r\n },\r\n \"retentionPolicy\": {\r\n \"retentionPolicyType\": \"SimpleRetentionPolicy\",\r\n \"retentionDuration\": {\r\n \"count\": 31,\r\n \"durationType\": \"Days\"\r\n }\r\n }\r\n },\r\n {\r\n \"policyType\": \"Log\",\r\n \"schedulePolicy\": {\r\n \"schedulePolicyType\": \"LogSchedulePolicy\",\r\n \"scheduleFrequencyInMins\": 120\r\n },\r\n \"retentionPolicy\": {\r\n \"retentionPolicyType\": \"SimpleRetentionPolicy\",\r\n \"retentionDuration\": {\r\n \"count\": 15,\r\n \"durationType\": \"Days\"\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"backupManagementType\": \"AzureWorkload\",\r\n \"workLoadType\": \"SQLDataBase\",\r\n \"settings\": {\r\n \"timeZone\": \"UTC\",\r\n \"issqlcompression\": true,\r\n \"isCompression\": true\r\n },\r\n \"subProtectionPolicy\": [\r\n {\r\n \"policyType\": \"Full\",\r\n \"schedulePolicy\": {\r\n \"schedulePolicyType\": \"SimpleSchedulePolicy\",\r\n \"scheduleRunFrequency\": \"Weekly\",\r\n \"scheduleRunDays\": [\r\n \"Sunday\"\r\n ],\r\n \"scheduleRunTimes\": [\r\n \"2022-05-17T11:00:00Z\"\r\n ]\r\n },\r\n \"retentionPolicy\": {\r\n \"retentionPolicyType\": \"LongTermRetentionPolicy\",\r\n \"weeklySchedule\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"retentionTimes\": [\r\n \"2022-05-17T11:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 104,\r\n \"durationType\": \"Weeks\"\r\n }\r\n },\r\n \"monthlySchedule\": {\r\n \"retentionScheduleFormatType\": \"Weekly\",\r\n \"retentionScheduleWeekly\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"weeksOfTheMonth\": [\r\n \"First\"\r\n ]\r\n },\r\n \"retentionTimes\": [\r\n \"2022-05-17T11:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 60,\r\n \"durationType\": \"Months\"\r\n }\r\n },\r\n \"yearlySchedule\": {\r\n \"retentionScheduleFormatType\": \"Weekly\",\r\n \"monthsOfYear\": [\r\n \"January\"\r\n ],\r\n \"retentionScheduleWeekly\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"weeksOfTheMonth\": [\r\n \"First\"\r\n ]\r\n },\r\n \"retentionTimes\": [\r\n \"2022-05-17T11:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 10,\r\n \"durationType\": \"Years\"\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"policyType\": \"Differential\",\r\n \"schedulePolicy\": {\r\n \"schedulePolicyType\": \"SimpleSchedulePolicy\",\r\n \"scheduleRunFrequency\": \"Weekly\",\r\n \"scheduleRunDays\": [\r\n \"Monday\"\r\n ],\r\n \"scheduleRunTimes\": [\r\n \"2022-05-17T11:00:00Z\"\r\n ]\r\n },\r\n \"retentionPolicy\": {\r\n \"retentionPolicyType\": \"SimpleRetentionPolicy\",\r\n \"retentionDuration\": {\r\n \"count\": 31,\r\n \"durationType\": \"Days\"\r\n }\r\n }\r\n },\r\n {\r\n \"policyType\": \"Log\",\r\n \"schedulePolicy\": {\r\n \"schedulePolicyType\": \"LogSchedulePolicy\",\r\n \"scheduleFrequencyInMins\": 120\r\n },\r\n \"retentionPolicy\": {\r\n \"retentionPolicyType\": \"SimpleRetentionPolicy\",\r\n \"retentionDuration\": {\r\n \"count\": 15,\r\n \"durationType\": \"Days\"\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "8869b039-dd25-4edd-8401-b27ad70c8f42" + "39a62147-3a7b-4e47-b6ab-407252fff7c1" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -591,16 +598,17 @@ "nosniff" ], "x-ms-request-id": [ - "5e997dc8-c4ec-41e8-905f-af60b7811f49" + "5f8de481-1107-489b-96d7-36815bac6d4b" ], "x-ms-client-request-id": [ - "8869b039-dd25-4edd-8401-b27ad70c8f42" + "39a62147-3a7b-4e47-b6ab-407252fff7c1", + "39a62147-3a7b-4e47-b6ab-407252fff7c1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Server": [ - "Kestrel" + "Microsoft-IIS/10.0" ], "X-Powered-By": [ "ASP.NET" @@ -609,44 +617,44 @@ "1198" ], "x-ms-correlation-request-id": [ - "5e997dc8-c4ec-41e8-905f-af60b7811f49" + "5f8de481-1107-489b-96d7-36815bac6d4b" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220125T172704Z:5e997dc8-c4ec-41e8-905f-af60b7811f49" + "WESTINDIA:20220517T083813Z:5f8de481-1107-489b-96d7-36815bac6d4b" ], "Date": [ - "Tue, 25 Jan 2022 17:27:03 GMT" + "Tue, 17 May 2022 08:38:12 GMT" ], "Content-Length": [ "1985" ], "Content-Type": [ - "application/json; charset=utf-8" + "application/json" ], "Expires": [ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupPolicies/testSqlPolicy\",\r\n \"name\": \"testSqlPolicy\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupPolicies\",\r\n \"properties\": {\r\n \"backupManagementType\": \"AzureWorkload\",\r\n \"workLoadType\": \"SQLDataBase\",\r\n \"settings\": {\r\n \"timeZone\": \"UTC\",\r\n \"issqlcompression\": true,\r\n \"isCompression\": true\r\n },\r\n \"subProtectionPolicy\": [\r\n {\r\n \"policyType\": \"Full\",\r\n \"schedulePolicy\": {\r\n \"schedulePolicyType\": \"SimpleSchedulePolicy\",\r\n \"scheduleRunFrequency\": \"Weekly\",\r\n \"scheduleRunDays\": [\r\n \"Sunday\"\r\n ],\r\n \"scheduleRunTimes\": [\r\n \"2022-01-25T20:30:00Z\"\r\n ],\r\n \"scheduleWeeklyFrequency\": 0\r\n },\r\n \"retentionPolicy\": {\r\n \"retentionPolicyType\": \"LongTermRetentionPolicy\",\r\n \"weeklySchedule\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"retentionTimes\": [\r\n \"2022-01-25T20:30:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 104,\r\n \"durationType\": \"Weeks\"\r\n }\r\n },\r\n \"monthlySchedule\": {\r\n \"retentionScheduleFormatType\": \"Weekly\",\r\n \"retentionScheduleWeekly\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"weeksOfTheMonth\": [\r\n \"First\"\r\n ]\r\n },\r\n \"retentionTimes\": [\r\n \"2022-01-25T20:30:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 60,\r\n \"durationType\": \"Months\"\r\n }\r\n },\r\n \"yearlySchedule\": {\r\n \"retentionScheduleFormatType\": \"Weekly\",\r\n \"monthsOfYear\": [\r\n \"January\"\r\n ],\r\n \"retentionScheduleWeekly\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"weeksOfTheMonth\": [\r\n \"First\"\r\n ]\r\n },\r\n \"retentionTimes\": [\r\n \"2022-01-25T20:30:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 10,\r\n \"durationType\": \"Years\"\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"policyType\": \"Differential\",\r\n \"schedulePolicy\": {\r\n \"schedulePolicyType\": \"SimpleSchedulePolicy\",\r\n \"scheduleRunFrequency\": \"Weekly\",\r\n \"scheduleRunDays\": [\r\n \"Monday\"\r\n ],\r\n \"scheduleRunTimes\": [\r\n \"2022-01-25T20:30:00Z\"\r\n ],\r\n \"scheduleWeeklyFrequency\": 0\r\n },\r\n \"retentionPolicy\": {\r\n \"retentionPolicyType\": \"SimpleRetentionPolicy\",\r\n \"retentionDuration\": {\r\n \"count\": 31,\r\n \"durationType\": \"Days\"\r\n }\r\n }\r\n },\r\n {\r\n \"policyType\": \"Log\",\r\n \"schedulePolicy\": {\r\n \"schedulePolicyType\": \"LogSchedulePolicy\",\r\n \"scheduleFrequencyInMins\": 120\r\n },\r\n \"retentionPolicy\": {\r\n \"retentionPolicyType\": \"SimpleRetentionPolicy\",\r\n \"retentionDuration\": {\r\n \"count\": 15,\r\n \"durationType\": \"Days\"\r\n }\r\n }\r\n }\r\n ],\r\n \"protectedItemsCount\": 0\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupPolicies/testSqlPolicy\",\r\n \"name\": \"testSqlPolicy\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupPolicies\",\r\n \"properties\": {\r\n \"backupManagementType\": \"AzureWorkload\",\r\n \"workLoadType\": \"SQLDataBase\",\r\n \"settings\": {\r\n \"timeZone\": \"UTC\",\r\n \"issqlcompression\": true,\r\n \"isCompression\": true\r\n },\r\n \"subProtectionPolicy\": [\r\n {\r\n \"policyType\": \"Full\",\r\n \"schedulePolicy\": {\r\n \"schedulePolicyType\": \"SimpleSchedulePolicy\",\r\n \"scheduleRunFrequency\": \"Weekly\",\r\n \"scheduleRunDays\": [\r\n \"Sunday\"\r\n ],\r\n \"scheduleRunTimes\": [\r\n \"2022-05-17T11:00:00Z\"\r\n ],\r\n \"scheduleWeeklyFrequency\": 0\r\n },\r\n \"retentionPolicy\": {\r\n \"retentionPolicyType\": \"LongTermRetentionPolicy\",\r\n \"weeklySchedule\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"retentionTimes\": [\r\n \"2022-05-17T11:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 104,\r\n \"durationType\": \"Weeks\"\r\n }\r\n },\r\n \"monthlySchedule\": {\r\n \"retentionScheduleFormatType\": \"Weekly\",\r\n \"retentionScheduleWeekly\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"weeksOfTheMonth\": [\r\n \"First\"\r\n ]\r\n },\r\n \"retentionTimes\": [\r\n \"2022-05-17T11:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 60,\r\n \"durationType\": \"Months\"\r\n }\r\n },\r\n \"yearlySchedule\": {\r\n \"retentionScheduleFormatType\": \"Weekly\",\r\n \"monthsOfYear\": [\r\n \"January\"\r\n ],\r\n \"retentionScheduleWeekly\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"weeksOfTheMonth\": [\r\n \"First\"\r\n ]\r\n },\r\n \"retentionTimes\": [\r\n \"2022-05-17T11:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 10,\r\n \"durationType\": \"Years\"\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"policyType\": \"Differential\",\r\n \"schedulePolicy\": {\r\n \"schedulePolicyType\": \"SimpleSchedulePolicy\",\r\n \"scheduleRunFrequency\": \"Weekly\",\r\n \"scheduleRunDays\": [\r\n \"Monday\"\r\n ],\r\n \"scheduleRunTimes\": [\r\n \"2022-05-17T11:00:00Z\"\r\n ],\r\n \"scheduleWeeklyFrequency\": 0\r\n },\r\n \"retentionPolicy\": {\r\n \"retentionPolicyType\": \"SimpleRetentionPolicy\",\r\n \"retentionDuration\": {\r\n \"count\": 31,\r\n \"durationType\": \"Days\"\r\n }\r\n }\r\n },\r\n {\r\n \"policyType\": \"Log\",\r\n \"schedulePolicy\": {\r\n \"schedulePolicyType\": \"LogSchedulePolicy\",\r\n \"scheduleFrequencyInMins\": 120\r\n },\r\n \"retentionPolicy\": {\r\n \"retentionPolicyType\": \"SimpleRetentionPolicy\",\r\n \"retentionDuration\": {\r\n \"count\": 15,\r\n \"durationType\": \"Days\"\r\n }\r\n }\r\n }\r\n ],\r\n \"protectedItemsCount\": 0\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupPolicies/testSqlPolicy?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHdsUkcxYmNhOC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHdsUlNWMWJjYTgvYmFja3VwUG9saWNpZXMvdGVzdFNxbFBvbGljeT9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupPolicies/testSqlPolicy?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHdsUkcxYmNhOC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHdsUlNWMWJjYTgvYmFja3VwUG9saWNpZXMvdGVzdFNxbFBvbGljeT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"backupManagementType\": \"AzureWorkload\",\r\n \"workLoadType\": \"SQLDataBase\",\r\n \"settings\": {\r\n \"timeZone\": \"UTC\",\r\n \"issqlcompression\": true,\r\n \"isCompression\": true\r\n },\r\n \"subProtectionPolicy\": [\r\n {\r\n \"policyType\": \"Full\",\r\n \"schedulePolicy\": {\r\n \"schedulePolicyType\": \"SimpleSchedulePolicy\",\r\n \"scheduleRunFrequency\": \"Weekly\",\r\n \"scheduleRunDays\": [\r\n \"Sunday\"\r\n ],\r\n \"scheduleRunTimes\": [\r\n \"2022-01-25T20:30:00Z\"\r\n ]\r\n },\r\n \"retentionPolicy\": {\r\n \"retentionPolicyType\": \"LongTermRetentionPolicy\",\r\n \"weeklySchedule\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"retentionTimes\": [\r\n \"2022-01-25T20:30:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 104,\r\n \"durationType\": \"Weeks\"\r\n }\r\n },\r\n \"monthlySchedule\": {\r\n \"retentionScheduleFormatType\": \"Weekly\",\r\n \"retentionScheduleWeekly\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"weeksOfTheMonth\": [\r\n \"First\"\r\n ]\r\n },\r\n \"retentionTimes\": [\r\n \"2022-01-25T20:30:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 60,\r\n \"durationType\": \"Months\"\r\n }\r\n },\r\n \"yearlySchedule\": {\r\n \"retentionScheduleFormatType\": \"Weekly\",\r\n \"monthsOfYear\": [\r\n \"January\"\r\n ],\r\n \"retentionScheduleWeekly\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"weeksOfTheMonth\": [\r\n \"First\"\r\n ]\r\n },\r\n \"retentionTimes\": [\r\n \"2022-01-25T20:30:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 10,\r\n \"durationType\": \"Years\"\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"policyType\": \"Differential\",\r\n \"schedulePolicy\": {\r\n \"schedulePolicyType\": \"SimpleSchedulePolicy\",\r\n \"scheduleRunFrequency\": \"Weekly\",\r\n \"scheduleRunDays\": [\r\n \"Monday\"\r\n ],\r\n \"scheduleRunTimes\": [\r\n \"2022-01-25T20:30:00Z\"\r\n ]\r\n },\r\n \"retentionPolicy\": {\r\n \"retentionPolicyType\": \"SimpleRetentionPolicy\",\r\n \"retentionDuration\": {\r\n \"count\": 31,\r\n \"durationType\": \"Days\"\r\n }\r\n }\r\n },\r\n {\r\n \"policyType\": \"Log\",\r\n \"schedulePolicy\": {\r\n \"schedulePolicyType\": \"LogSchedulePolicy\",\r\n \"scheduleFrequencyInMins\": 120\r\n },\r\n \"retentionPolicy\": {\r\n \"retentionPolicyType\": \"SimpleRetentionPolicy\",\r\n \"retentionDuration\": {\r\n \"count\": 15,\r\n \"durationType\": \"Days\"\r\n }\r\n }\r\n }\r\n ],\r\n \"makePolicyConsistent\": true\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"backupManagementType\": \"AzureWorkload\",\r\n \"workLoadType\": \"SQLDataBase\",\r\n \"settings\": {\r\n \"timeZone\": \"UTC\",\r\n \"issqlcompression\": true,\r\n \"isCompression\": true\r\n },\r\n \"subProtectionPolicy\": [\r\n {\r\n \"policyType\": \"Full\",\r\n \"schedulePolicy\": {\r\n \"schedulePolicyType\": \"SimpleSchedulePolicy\",\r\n \"scheduleRunFrequency\": \"Weekly\",\r\n \"scheduleRunDays\": [\r\n \"Sunday\"\r\n ],\r\n \"scheduleRunTimes\": [\r\n \"2022-05-17T11:00:00Z\"\r\n ]\r\n },\r\n \"retentionPolicy\": {\r\n \"retentionPolicyType\": \"LongTermRetentionPolicy\",\r\n \"weeklySchedule\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"retentionTimes\": [\r\n \"2022-05-17T11:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 104,\r\n \"durationType\": \"Weeks\"\r\n }\r\n },\r\n \"monthlySchedule\": {\r\n \"retentionScheduleFormatType\": \"Weekly\",\r\n \"retentionScheduleWeekly\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"weeksOfTheMonth\": [\r\n \"First\"\r\n ]\r\n },\r\n \"retentionTimes\": [\r\n \"2022-05-17T11:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 60,\r\n \"durationType\": \"Months\"\r\n }\r\n },\r\n \"yearlySchedule\": {\r\n \"retentionScheduleFormatType\": \"Weekly\",\r\n \"monthsOfYear\": [\r\n \"January\"\r\n ],\r\n \"retentionScheduleWeekly\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"weeksOfTheMonth\": [\r\n \"First\"\r\n ]\r\n },\r\n \"retentionTimes\": [\r\n \"2022-05-17T11:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 10,\r\n \"durationType\": \"Years\"\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"policyType\": \"Differential\",\r\n \"schedulePolicy\": {\r\n \"schedulePolicyType\": \"SimpleSchedulePolicy\",\r\n \"scheduleRunFrequency\": \"Weekly\",\r\n \"scheduleRunDays\": [\r\n \"Monday\"\r\n ],\r\n \"scheduleRunTimes\": [\r\n \"2022-05-17T11:00:00Z\"\r\n ]\r\n },\r\n \"retentionPolicy\": {\r\n \"retentionPolicyType\": \"SimpleRetentionPolicy\",\r\n \"retentionDuration\": {\r\n \"count\": 31,\r\n \"durationType\": \"Days\"\r\n }\r\n }\r\n },\r\n {\r\n \"policyType\": \"Log\",\r\n \"schedulePolicy\": {\r\n \"schedulePolicyType\": \"LogSchedulePolicy\",\r\n \"scheduleFrequencyInMins\": 120\r\n },\r\n \"retentionPolicy\": {\r\n \"retentionPolicyType\": \"SimpleRetentionPolicy\",\r\n \"retentionDuration\": {\r\n \"count\": 15,\r\n \"durationType\": \"Days\"\r\n }\r\n }\r\n }\r\n ],\r\n \"makePolicyConsistent\": true\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "67ac8e45-fde7-4df3-b677-f152d0656b1c" + "8c4a1a28-bbc7-4241-b467-8ecf48c13089" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -666,16 +674,17 @@ "nosniff" ], "x-ms-request-id": [ - "7ed7eeed-750f-4e45-87fd-1a95f1a9f1ab" + "4b6bd9a5-484d-4d45-a597-fde9b5a5e6bb" ], "x-ms-client-request-id": [ - "67ac8e45-fde7-4df3-b677-f152d0656b1c" + "8c4a1a28-bbc7-4241-b467-8ecf48c13089", + "8c4a1a28-bbc7-4241-b467-8ecf48c13089" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Server": [ - "Kestrel" + "Microsoft-IIS/10.0" ], "X-Powered-By": [ "ASP.NET" @@ -684,44 +693,44 @@ "1197" ], "x-ms-correlation-request-id": [ - "7ed7eeed-750f-4e45-87fd-1a95f1a9f1ab" + "4b6bd9a5-484d-4d45-a597-fde9b5a5e6bb" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220125T172705Z:7ed7eeed-750f-4e45-87fd-1a95f1a9f1ab" + "WESTINDIA:20220517T083814Z:4b6bd9a5-484d-4d45-a597-fde9b5a5e6bb" ], "Date": [ - "Tue, 25 Jan 2022 17:27:04 GMT" + "Tue, 17 May 2022 08:38:14 GMT" ], "Content-Length": [ "1985" ], "Content-Type": [ - "application/json; charset=utf-8" + "application/json" ], "Expires": [ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupPolicies/testSqlPolicy\",\r\n \"name\": \"testSqlPolicy\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupPolicies\",\r\n \"properties\": {\r\n \"backupManagementType\": \"AzureWorkload\",\r\n \"workLoadType\": \"SQLDataBase\",\r\n \"settings\": {\r\n \"timeZone\": \"UTC\",\r\n \"issqlcompression\": true,\r\n \"isCompression\": true\r\n },\r\n \"subProtectionPolicy\": [\r\n {\r\n \"policyType\": \"Full\",\r\n \"schedulePolicy\": {\r\n \"schedulePolicyType\": \"SimpleSchedulePolicy\",\r\n \"scheduleRunFrequency\": \"Weekly\",\r\n \"scheduleRunDays\": [\r\n \"Sunday\"\r\n ],\r\n \"scheduleRunTimes\": [\r\n \"2022-01-25T20:30:00Z\"\r\n ],\r\n \"scheduleWeeklyFrequency\": 0\r\n },\r\n \"retentionPolicy\": {\r\n \"retentionPolicyType\": \"LongTermRetentionPolicy\",\r\n \"weeklySchedule\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"retentionTimes\": [\r\n \"2022-01-25T20:30:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 104,\r\n \"durationType\": \"Weeks\"\r\n }\r\n },\r\n \"monthlySchedule\": {\r\n \"retentionScheduleFormatType\": \"Weekly\",\r\n \"retentionScheduleWeekly\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"weeksOfTheMonth\": [\r\n \"First\"\r\n ]\r\n },\r\n \"retentionTimes\": [\r\n \"2022-01-25T20:30:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 60,\r\n \"durationType\": \"Months\"\r\n }\r\n },\r\n \"yearlySchedule\": {\r\n \"retentionScheduleFormatType\": \"Weekly\",\r\n \"monthsOfYear\": [\r\n \"January\"\r\n ],\r\n \"retentionScheduleWeekly\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"weeksOfTheMonth\": [\r\n \"First\"\r\n ]\r\n },\r\n \"retentionTimes\": [\r\n \"2022-01-25T20:30:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 10,\r\n \"durationType\": \"Years\"\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"policyType\": \"Differential\",\r\n \"schedulePolicy\": {\r\n \"schedulePolicyType\": \"SimpleSchedulePolicy\",\r\n \"scheduleRunFrequency\": \"Weekly\",\r\n \"scheduleRunDays\": [\r\n \"Monday\"\r\n ],\r\n \"scheduleRunTimes\": [\r\n \"2022-01-25T20:30:00Z\"\r\n ],\r\n \"scheduleWeeklyFrequency\": 0\r\n },\r\n \"retentionPolicy\": {\r\n \"retentionPolicyType\": \"SimpleRetentionPolicy\",\r\n \"retentionDuration\": {\r\n \"count\": 31,\r\n \"durationType\": \"Days\"\r\n }\r\n }\r\n },\r\n {\r\n \"policyType\": \"Log\",\r\n \"schedulePolicy\": {\r\n \"schedulePolicyType\": \"LogSchedulePolicy\",\r\n \"scheduleFrequencyInMins\": 120\r\n },\r\n \"retentionPolicy\": {\r\n \"retentionPolicyType\": \"SimpleRetentionPolicy\",\r\n \"retentionDuration\": {\r\n \"count\": 15,\r\n \"durationType\": \"Days\"\r\n }\r\n }\r\n }\r\n ],\r\n \"protectedItemsCount\": 0\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupPolicies/testSqlPolicy\",\r\n \"name\": \"testSqlPolicy\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupPolicies\",\r\n \"properties\": {\r\n \"backupManagementType\": \"AzureWorkload\",\r\n \"workLoadType\": \"SQLDataBase\",\r\n \"settings\": {\r\n \"timeZone\": \"UTC\",\r\n \"issqlcompression\": true,\r\n \"isCompression\": true\r\n },\r\n \"subProtectionPolicy\": [\r\n {\r\n \"policyType\": \"Full\",\r\n \"schedulePolicy\": {\r\n \"schedulePolicyType\": \"SimpleSchedulePolicy\",\r\n \"scheduleRunFrequency\": \"Weekly\",\r\n \"scheduleRunDays\": [\r\n \"Sunday\"\r\n ],\r\n \"scheduleRunTimes\": [\r\n \"2022-05-17T11:00:00Z\"\r\n ],\r\n \"scheduleWeeklyFrequency\": 0\r\n },\r\n \"retentionPolicy\": {\r\n \"retentionPolicyType\": \"LongTermRetentionPolicy\",\r\n \"weeklySchedule\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"retentionTimes\": [\r\n \"2022-05-17T11:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 104,\r\n \"durationType\": \"Weeks\"\r\n }\r\n },\r\n \"monthlySchedule\": {\r\n \"retentionScheduleFormatType\": \"Weekly\",\r\n \"retentionScheduleWeekly\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"weeksOfTheMonth\": [\r\n \"First\"\r\n ]\r\n },\r\n \"retentionTimes\": [\r\n \"2022-05-17T11:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 60,\r\n \"durationType\": \"Months\"\r\n }\r\n },\r\n \"yearlySchedule\": {\r\n \"retentionScheduleFormatType\": \"Weekly\",\r\n \"monthsOfYear\": [\r\n \"January\"\r\n ],\r\n \"retentionScheduleWeekly\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"weeksOfTheMonth\": [\r\n \"First\"\r\n ]\r\n },\r\n \"retentionTimes\": [\r\n \"2022-05-17T11:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 10,\r\n \"durationType\": \"Years\"\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"policyType\": \"Differential\",\r\n \"schedulePolicy\": {\r\n \"schedulePolicyType\": \"SimpleSchedulePolicy\",\r\n \"scheduleRunFrequency\": \"Weekly\",\r\n \"scheduleRunDays\": [\r\n \"Monday\"\r\n ],\r\n \"scheduleRunTimes\": [\r\n \"2022-05-17T11:00:00Z\"\r\n ],\r\n \"scheduleWeeklyFrequency\": 0\r\n },\r\n \"retentionPolicy\": {\r\n \"retentionPolicyType\": \"SimpleRetentionPolicy\",\r\n \"retentionDuration\": {\r\n \"count\": 31,\r\n \"durationType\": \"Days\"\r\n }\r\n }\r\n },\r\n {\r\n \"policyType\": \"Log\",\r\n \"schedulePolicy\": {\r\n \"schedulePolicyType\": \"LogSchedulePolicy\",\r\n \"scheduleFrequencyInMins\": 120\r\n },\r\n \"retentionPolicy\": {\r\n \"retentionPolicyType\": \"SimpleRetentionPolicy\",\r\n \"retentionDuration\": {\r\n \"count\": 15,\r\n \"durationType\": \"Days\"\r\n }\r\n }\r\n }\r\n ],\r\n \"protectedItemsCount\": 0\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupPolicies/testSqlPolicy?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHdsUkcxYmNhOC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHdsUlNWMWJjYTgvYmFja3VwUG9saWNpZXMvdGVzdFNxbFBvbGljeT9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", - "RequestMethod": "DELETE", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupResourceGuardProxies?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHdsUkcxYmNhOC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHdsUlNWMWJjYTgvYmFja3VwUmVzb3VyY2VHdWFyZFByb3hpZXM/YXBpLXZlcnNpb249MjAyMi0wMi0wMQ==", + "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "da8a1674-444c-4aef-977a-f66ecf225531" + "39a62147-3a7b-4e47-b6ab-407252fff7c1" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -735,16 +744,84 @@ "nosniff" ], "x-ms-request-id": [ - "2788656a-deeb-45a6-a1d6-c7b80650a8eb" + "cafbb98f-c55c-462b-8eab-f143847bcb62" ], "x-ms-client-request-id": [ - "da8a1674-444c-4aef-977a-f66ecf225531" + "39a62147-3a7b-4e47-b6ab-407252fff7c1", + "39a62147-3a7b-4e47-b6ab-407252fff7c1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Server": [ - "Kestrel" + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "cafbb98f-c55c-462b-8eab-f143847bcb62" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20220517T083812Z:cafbb98f-c55c-462b-8eab-f143847bcb62" + ], + "Date": [ + "Tue, 17 May 2022 08:38:11 GMT" + ], + "Content-Length": [ + "12" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupPolicies/testSqlPolicy?api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHdsUkcxYmNhOC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHdsUlNWMWJjYTgvYmFja3VwUG9saWNpZXMvdGVzdFNxbFBvbGljeT9hcGktdmVyc2lvbj0yMDIyLTAyLTAx", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ba6d644d-7107-4276-93a8-b71077155aae" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "2a2e8ecd-c43e-42f0-8401-25209e99f7c8" + ], + "x-ms-client-request-id": [ + "ba6d644d-7107-4276-93a8-b71077155aae", + "ba6d644d-7107-4276-93a8-b71077155aae" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Powered-By": [ "ASP.NET" @@ -753,13 +830,13 @@ "14999" ], "x-ms-correlation-request-id": [ - "2788656a-deeb-45a6-a1d6-c7b80650a8eb" + "2a2e8ecd-c43e-42f0-8401-25209e99f7c8" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220125T172705Z:2788656a-deeb-45a6-a1d6-c7b80650a8eb" + "WESTINDIA:20220517T083815Z:2a2e8ecd-c43e-42f0-8401-25209e99f7c8" ], "Date": [ - "Tue, 25 Jan 2022 17:27:04 GMT" + "Tue, 17 May 2022 08:38:14 GMT" ], "Expires": [ "-1" @@ -772,22 +849,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupPolicies?$filter=backupManagementType%20eq%20'AzureWorkload'&api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHdsUkcxYmNhOC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHdsUlNWMWJjYTgvYmFja3VwUG9saWNpZXM/JGZpbHRlcj1iYWNrdXBNYW5hZ2VtZW50VHlwZSUyMGVxJTIwJ0F6dXJlV29ya2xvYWQnJmFwaS12ZXJzaW9uPTIwMjEtMTAtMDE=", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupPolicies?$filter=backupManagementType%20eq%20'AzureWorkload'&api-version=2022-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHdsUkcxYmNhOC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHdsUlNWMWJjYTgvYmFja3VwUG9saWNpZXM/JGZpbHRlcj1iYWNrdXBNYW5hZ2VtZW50VHlwZSUyMGVxJTIwJ0F6dXJlV29ya2xvYWQnJmFwaS12ZXJzaW9uPTIwMjItMDItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ab8a75cb-c451-4826-8598-263241598ef7" + "00b5871d-6fcb-46f3-9712-2ae4b2f89d2f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.3.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -801,16 +878,17 @@ "nosniff" ], "x-ms-request-id": [ - "d6c8d31c-2d6b-4d18-8229-a27cc721cd4e" + "88e9d23d-0051-4dd4-a5e1-5f01ec100a1d" ], "x-ms-client-request-id": [ - "ab8a75cb-c451-4826-8598-263241598ef7" + "00b5871d-6fcb-46f3-9712-2ae4b2f89d2f", + "00b5871d-6fcb-46f3-9712-2ae4b2f89d2f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Server": [ - "Kestrel" + "Microsoft-IIS/10.0" ], "X-Powered-By": [ "ASP.NET" @@ -819,19 +897,19 @@ "293" ], "x-ms-correlation-request-id": [ - "d6c8d31c-2d6b-4d18-8229-a27cc721cd4e" + "88e9d23d-0051-4dd4-a5e1-5f01ec100a1d" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220125T172705Z:d6c8d31c-2d6b-4d18-8229-a27cc721cd4e" + "WESTINDIA:20220517T083815Z:88e9d23d-0051-4dd4-a5e1-5f01ec100a1d" ], "Date": [ - "Tue, 25 Jan 2022 17:27:05 GMT" + "Tue, 17 May 2022 08:38:15 GMT" ], "Content-Length": [ "1088" ], "Content-Type": [ - "application/json; charset=utf-8" + "application/json" ], "Expires": [ "-1" diff --git a/src/RecoveryServices/RecoveryServices.Backup/Cmdlets/Item/DisableAzureRmRecoveryServicesBackupProtection.cs b/src/RecoveryServices/RecoveryServices.Backup/Cmdlets/Item/DisableAzureRmRecoveryServicesBackupProtection.cs index 115afb0149c5..d317d7c1be9b 100644 --- a/src/RecoveryServices/RecoveryServices.Backup/Cmdlets/Item/DisableAzureRmRecoveryServicesBackupProtection.cs +++ b/src/RecoveryServices/RecoveryServices.Backup/Cmdlets/Item/DisableAzureRmRecoveryServicesBackupProtection.cs @@ -23,6 +23,7 @@ using System.Collections.Generic; using System.Management.Automation; using Microsoft.Rest.Azure.OData; +using System; namespace Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets { @@ -53,6 +54,13 @@ public SwitchParameter RemoveRecoveryPoints set { DeleteBackupData = value; } } + /// + /// Auxiliary access token for authenticating critical operation to resource guard subscription + /// + [Parameter(Mandatory = false, HelpMessage = ParamHelpMsgs.ResourceGuard.AuxiliaryAccessToken, ValueFromPipeline = false)] + [ValidateNotNullOrEmpty] + public string Token; + /// /// Prevents the confirmation dialog when specified. /// @@ -77,6 +85,11 @@ public override void ExecuteCmdlet() string vaultName = resourceIdentifier.ResourceName; string resourceGroupName = resourceIdentifier.ResourceGroupName; + if (Token != "" && Token != null && !this.DeleteBackupData) + { + throw new ArgumentException(String.Format(Resources.DisableWithRetainBackupNotCrititcal)); + } + PsBackupProviderManager providerManager = new PsBackupProviderManager(new Dictionary() { @@ -84,6 +97,7 @@ public override void ExecuteCmdlet() { VaultParams.ResourceGroupName, resourceGroupName }, { ItemParams.Item, Item }, { ItemParams.DeleteBackupData, this.DeleteBackupData }, + { ResourceGuardParams.Token, Token }, }, ServiceClientAdapter); IPsBackupProvider psBackupProvider = diff --git a/src/RecoveryServices/RecoveryServices.Backup/Cmdlets/Item/EnableAzureRmRecoveryServicesBackupProtection.cs b/src/RecoveryServices/RecoveryServices.Backup/Cmdlets/Item/EnableAzureRmRecoveryServicesBackupProtection.cs index 006e278addc9..1602cdb52e3f 100644 --- a/src/RecoveryServices/RecoveryServices.Backup/Cmdlets/Item/EnableAzureRmRecoveryServicesBackupProtection.cs +++ b/src/RecoveryServices/RecoveryServices.Backup/Cmdlets/Item/EnableAzureRmRecoveryServicesBackupProtection.cs @@ -97,6 +97,13 @@ public class EnableAzureRmRecoveryServicesBackupProtection : RSBackupVaultCmdlet [ValidateNotNullOrEmpty] public ItemBase Item { get; set; } + /// + /// Item whose protection needs to be modified. + /// + [Parameter(Mandatory = false, ParameterSetName = ModifyProtectionParameterSet, HelpMessage = ParamHelpMsgs.ResourceGuard.AuxiliaryAccessToken, ValueFromPipeline = false)] + [ValidateNotNullOrEmpty] + public string Token; + /// /// List of Disk LUNs to include in backup /// @@ -148,9 +155,12 @@ public override void ExecuteCmdlet() string resourceGroupName = resourceIdentifier.ResourceGroupName; string shouldProcessName = Name; + bool isMUAOperation = false; + if (ParameterSetName.Contains("Modify")) { shouldProcessName = Item.Name; + isMUAOperation = true; } if (ShouldProcess(shouldProcessName, VerbsLifecycle.Enable)) @@ -242,7 +252,9 @@ public override void ExecuteCmdlet() { ItemParams.InclusionDisksList, InclusionDisksList }, { ItemParams.ExclusionDisksList, ExclusionDisksList }, { ItemParams.ResetExclusionSettings, ResetExclusionSettings }, - { ItemParams.ExcludeAllDataDisks, ExcludeAllDataDisks.IsPresent } + { ItemParams.ExcludeAllDataDisks, ExcludeAllDataDisks.IsPresent }, + { ResourceGuardParams.Token, Token }, + { ResourceGuardParams.IsMUAOperation, isMUAOperation }, }, ServiceClientAdapter); IPsBackupProvider psBackupProvider = (Item != null) ? diff --git a/src/RecoveryServices/RecoveryServices.Backup/Cmdlets/ProtectionPolicy/SetAzureRmRecoveryServicesBackupProtectionPolicy.cs b/src/RecoveryServices/RecoveryServices.Backup/Cmdlets/ProtectionPolicy/SetAzureRmRecoveryServicesBackupProtectionPolicy.cs index 9ed1a9cc83b4..ad00ca427d0c 100644 --- a/src/RecoveryServices/RecoveryServices.Backup/Cmdlets/ProtectionPolicy/SetAzureRmRecoveryServicesBackupProtectionPolicy.cs +++ b/src/RecoveryServices/RecoveryServices.Backup/Cmdlets/ProtectionPolicy/SetAzureRmRecoveryServicesBackupProtectionPolicy.cs @@ -25,7 +25,7 @@ using ServiceClientModel = Microsoft.Azure.Management.RecoveryServices.Backup.Models; namespace Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets -{ +{ /// /// Update existing protection policy in the recovery services vault /// @@ -34,6 +34,7 @@ public class SetAzureRmRecoveryServicesBackupProtectionPolicy : RSBackupVaultCmd { public const string ModifyPolicyParamSet = "ModifyPolicyParamSet"; public const string FixInconsistentPolicyParamSet = "FixPolicyParamSet"; + /// /// Policy object to be modified /// @@ -42,6 +43,10 @@ public class SetAzureRmRecoveryServicesBackupProtectionPolicy : RSBackupVaultCmd [ValidateNotNullOrEmpty] public PolicyBase Policy { get; set; } + [Parameter(Mandatory = false, ValueFromPipeline = false, HelpMessage = ParamHelpMsgs.ResourceGuard.AuxiliaryAccessToken, ParameterSetName = ModifyPolicyParamSet)] + [ValidateNotNullOrEmpty] + public string Token; + /// /// Retention policy object to be modified /// @@ -75,6 +80,12 @@ public override void ExecuteCmdlet() string vaultName = resourceIdentifier.ResourceName; string resourceGroupName = resourceIdentifier.ResourceGroupName; + bool isMUAOperation = false; + if (ParameterSetName == ModifyPolicyParamSet) + { + isMUAOperation = true; + } + WriteDebug(string.Format("Input params - Policy: {0}" + "RetentionPolicy:{1}, SchedulePolicy:{2}", Policy == null ? "NULL" : Policy.ToString(), @@ -90,6 +101,7 @@ public override void ExecuteCmdlet() ServiceClientAdapter, vaultName: vaultName, resourceGroupName: resourceGroupName); + if (servicePolicy == null) { throw new ArgumentException(string.Format(Resources.PolicyNotFoundException, @@ -104,20 +116,22 @@ public override void ExecuteCmdlet() { PolicyParams.ProtectionPolicy, Policy }, { PolicyParams.RetentionPolicy, RetentionPolicy }, { PolicyParams.SchedulePolicy, SchedulePolicy }, - { PolicyParams.FixForInconsistentItems, FixForInconsistentItems.IsPresent } + { PolicyParams.FixForInconsistentItems, FixForInconsistentItems.IsPresent }, + { ResourceGuardParams.Token, Token }, + { ResourceGuardParams.IsMUAOperation, isMUAOperation }, + { PolicyParams.ExistingPolicy, servicePolicy} }, ServiceClientAdapter); IPsBackupProvider psBackupProvider = providerManager.GetProviderInstance( Policy.WorkloadType, Policy.BackupManagementType); - AzureOperationResponse policyResponse = - psBackupProvider.ModifyPolicy(); - WriteDebug("ModifyPolicy http response from service: " + - policyResponse.Response.StatusCode.ToString()); + + AzureOperationResponse policyResponse = psBackupProvider.ModifyPolicy(); + + WriteDebug("ModifyPolicy http response from service: " + policyResponse.Response.StatusCode.ToString()); if (policyResponse.Response.StatusCode == System.Net.HttpStatusCode.Accepted) { // Track OperationStatus URL for operation completion - string policyName = Policy.Name; ServiceClientModel.OperationStatus operationStatus = diff --git a/src/RecoveryServices/RecoveryServices.Backup/Cmdlets/Restore/RestoreAzureRMRecoveryServicesBackupItem.cs b/src/RecoveryServices/RecoveryServices.Backup/Cmdlets/Restore/RestoreAzureRMRecoveryServicesBackupItem.cs index de186f17f51a..97824b45edd0 100644 --- a/src/RecoveryServices/RecoveryServices.Backup/Cmdlets/Restore/RestoreAzureRMRecoveryServicesBackupItem.cs +++ b/src/RecoveryServices/RecoveryServices.Backup/Cmdlets/Restore/RestoreAzureRMRecoveryServicesBackupItem.cs @@ -314,6 +314,10 @@ public class RestoreAzureRmRecoveryServicesBackupItem : RSBackupVaultCmdletBase HelpMessage = ParamHelpMsgs.RestoreVM.TargetSubnetName)] public string TargetSubnetName { get; set; } + [Parameter(Mandatory = false, ParameterSetName = AzureManagedVMCreateNewParameterSet, + HelpMessage = ParamHelpMsgs.RestoreVM.TargetSubscriptionId)] + public string TargetSubscriptionId { get; set; } + public override void ExecuteCmdlet() { ExecutionBlock(() => @@ -328,6 +332,10 @@ public override void ExecuteCmdlet() string secondaryRegion = ""; if (RestoreToSecondaryRegion.IsPresent) { + if(TargetSubscriptionId != null) + { + throw new ArgumentException(Resources.CRRNotSupportedWIthCSR); + } if(VaultLocation != null) { secondaryRegion = BackupUtils.regionMap[VaultLocation]; @@ -400,6 +408,7 @@ public override void ExecuteCmdlet() providerParameters.Add(RestoreVMBackupItemParams.TargetVNetName, TargetVNetName); providerParameters.Add(RestoreVMBackupItemParams.TargetVNetResourceGroup, TargetVNetResourceGroup); providerParameters.Add(RestoreVMBackupItemParams.TargetSubnetName, TargetSubnetName); + providerParameters.Add(RestoreVMBackupItemParams.TargetSubscriptionId, TargetSubscriptionId); if (DiskEncryptionSetId != null) { diff --git a/src/RecoveryServices/RecoveryServices.Backup/Cmdlets/Vault/GetAzureRmRecoveryServicesResourceGuardMapping.cs b/src/RecoveryServices/RecoveryServices.Backup/Cmdlets/Vault/GetAzureRmRecoveryServicesResourceGuardMapping.cs new file mode 100644 index 000000000000..e5031fa01920 --- /dev/null +++ b/src/RecoveryServices/RecoveryServices.Backup/Cmdlets/Vault/GetAzureRmRecoveryServicesResourceGuardMapping.cs @@ -0,0 +1,48 @@ +// ---------------------------------------------------------------------------------- +// +// 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.Management.Internal.Resources.Utilities.Models; +using Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.ServiceClientAdapterNS; + +namespace Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets +{ + /// + /// Used to fetch the MUA settings of the vault + /// + [Cmdlet("Get", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "RecoveryServicesResourceGuardMapping", DefaultParameterSetName = GetAzureResourceGuardMapping), OutputType(typeof(ResourceGuardProxyBaseResource))] + public class GetAzureRmRecoveryServicesResourceGuardMapping : RSBackupVaultCmdletBase + { + internal const string GetAzureResourceGuardMapping = "GetAzureResourceGuardMapping"; + + public override void ExecuteCmdlet() + { + try + { + ResourceIdentifier resourceIdentifier = new ResourceIdentifier(VaultId); + string vaultName = resourceIdentifier.ResourceName; + string resourceGroupName = resourceIdentifier.ResourceGroupName; + + var resourceGuardMappingList = ServiceClientAdapter.ListResourceGuardMapping(vaultName, resourceGroupName); + WriteObject(resourceGuardMappingList, enumerateCollection: true); + } + catch (Exception exception) + { + WriteExceptionError(exception); + } + } + } +} diff --git a/src/RecoveryServices/RecoveryServices.Backup/Cmdlets/Vault/RemoveAzureRmRecoveryServicesResourceGuardMapping.cs b/src/RecoveryServices/RecoveryServices.Backup/Cmdlets/Vault/RemoveAzureRmRecoveryServicesResourceGuardMapping.cs new file mode 100644 index 000000000000..a4059bddde1a --- /dev/null +++ b/src/RecoveryServices/RecoveryServices.Backup/Cmdlets/Vault/RemoveAzureRmRecoveryServicesResourceGuardMapping.cs @@ -0,0 +1,55 @@ +// ---------------------------------------------------------------------------------- +// +// 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.Internal.Resources.Utilities.Models; +using Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.ServiceClientAdapterNS; + +namespace Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets +{ + /// + /// Used to disable MUA on the vault + /// + [Cmdlet("Remove", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "RecoveryServicesResourceGuardMapping", DefaultParameterSetName = DeleteAzureResourceGuardMapping, SupportsShouldProcess = true), OutputType(typeof(Object))] + public class RemoveAzureRmRecoveryServicesResourceGuardMapping : RSBackupVaultCmdletBase + { + internal const string DeleteAzureResourceGuardMapping = "DeleteAzureResourceGuardMapping"; + + [Parameter(Mandatory = false, ValueFromPipeline = false, ParameterSetName = DeleteAzureResourceGuardMapping, HelpMessage = ParamHelpMsgs.ResourceGuard.AuxiliaryAccessToken)] + [ValidateNotNullOrEmpty] + public string Token; + + public override void ExecuteCmdlet() + { + ExecutionBlock(() => + { + try + { + ResourceIdentifier resourceIdentifier = new ResourceIdentifier(VaultId); + string vaultName = resourceIdentifier.ResourceName; + string resourceGroupName = resourceIdentifier.ResourceGroupName; + + string resourceGuardMappingName = "VaultProxy"; + Rest.Azure.AzureOperationResponse result = ServiceClientAdapter.DeleteResourceGuardMapping(vaultName, resourceGroupName, resourceGuardMappingName, Token); + WriteObject(result); + } + catch (Exception exception) + { + WriteExceptionError(exception); + } + }, ShouldProcess("ResourceGuardMapping", VerbsCommon.Remove)); + } + } +} diff --git a/src/RecoveryServices/RecoveryServices.Backup/Cmdlets/Vault/SetAzureRmRecoveryServicesResourceGuardMapping.cs b/src/RecoveryServices/RecoveryServices.Backup/Cmdlets/Vault/SetAzureRmRecoveryServicesResourceGuardMapping.cs new file mode 100644 index 000000000000..829b17aa30e5 --- /dev/null +++ b/src/RecoveryServices/RecoveryServices.Backup/Cmdlets/Vault/SetAzureRmRecoveryServicesResourceGuardMapping.cs @@ -0,0 +1,65 @@ +// ---------------------------------------------------------------------------------- +// +// 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.Management.Internal.Resources.Utilities.Models; +using Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.ServiceClientAdapterNS; + +namespace Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets +{ + /// + /// Used to enable MUA on the vault + /// + [Cmdlet("Set", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "RecoveryServicesResourceGuardMapping", DefaultParameterSetName = SetAzureResourceGuardMapping, SupportsShouldProcess = true), OutputType(typeof(ResourceGuardProxyBaseResource))] + public class SetAzureRmRecoveryServicesResourceGuardMapping : RSBackupVaultCmdletBase + { + internal const string SetAzureResourceGuardMapping = "SetAzureResourceGuardMapping"; + + [Parameter(Mandatory = true, ValueFromPipeline = false, ParameterSetName = SetAzureResourceGuardMapping, HelpMessage = ParamHelpMsgs.ResourceGuard.ResourceGuardId)] + [ValidateNotNullOrEmpty] + public string ResourceGuardId; + + [Parameter(Mandatory = false, ValueFromPipeline = false, ParameterSetName = SetAzureResourceGuardMapping, HelpMessage = ParamHelpMsgs.ResourceGuard.AuxiliaryAccessToken)] + [ValidateNotNullOrEmpty] + public string Token; + + public override void ExecuteCmdlet() + { + ExecutionBlock(() => + { + try + { + ResourceIdentifier resourceIdentifier = new ResourceIdentifier(VaultId); + string vaultName = resourceIdentifier.ResourceName; + string resourceGroupName = resourceIdentifier.ResourceGroupName; + + string resourceGuardMappingName = "VaultProxy"; + + ResourceGuardProxyBaseResource param = new ResourceGuardProxyBaseResource(); + param.Properties = new ResourceGuardProxyBase(); + param.Properties.ResourceGuardResourceId = ResourceGuardId; + + ResourceGuardProxyBaseResource resourceGuardMapping = ServiceClientAdapter.CreateResourceGuardMapping(vaultName, resourceGroupName, resourceGuardMappingName, param, Token); + WriteObject(resourceGuardMapping); + } + catch (Exception exception) + { + WriteExceptionError(exception); + } + }, ShouldProcess(VaultId, VerbsCommon.Set)); + } + } +} diff --git a/src/RecoveryServices/RecoveryServices.Backup/Cmdlets/Vault/SetAzureRmRecoveryServicesVaultProperty.cs b/src/RecoveryServices/RecoveryServices.Backup/Cmdlets/Vault/SetAzureRmRecoveryServicesVaultProperty.cs index 92dd63bdbaf8..b5db178baf53 100644 --- a/src/RecoveryServices/RecoveryServices.Backup/Cmdlets/Vault/SetAzureRmRecoveryServicesVaultProperty.cs +++ b/src/RecoveryServices/RecoveryServices.Backup/Cmdlets/Vault/SetAzureRmRecoveryServicesVaultProperty.cs @@ -36,6 +36,10 @@ public class SetAzureRmRecoveryServicesVaultProperty : RSBackupVaultCmdletBase [ValidateSet("Enable", "Disable")] public string SoftDeleteFeatureState { get; set; } + [Parameter(Mandatory = false, ValueFromPipeline = false, ParameterSetName = AzureRSVaultSoftDelteParameterSet, HelpMessage = ParamHelpMsgs.ResourceGuard.AuxiliaryAccessToken)] + [ValidateNotNullOrEmpty] + public string Token; + [Parameter(Mandatory = false, ValueFromPipeline = false, ParameterSetName = AzureRSVaultSoftDelteParameterSet, HelpMessage = ParamHelpMsgs.Common.HybridBackupSecurity)] [ValidateNotNullOrEmpty] public bool? DisableHybridBackupSecurityFeature { get; set; } @@ -76,12 +80,14 @@ public override void ExecuteCmdlet() { BackupResourceVaultConfigResource currentConfig = ServiceClientAdapter.GetVaultProperty(vaultName, resourceGroupName); BackupResourceVaultConfigResource param = new BackupResourceVaultConfigResource(); - param.Properties = new BackupResourceVaultConfig(); + param.Properties = new BackupResourceVaultConfig(); param.Properties.SoftDeleteFeatureState = (SoftDeleteFeatureState != null) ? SoftDeleteFeatureState + "d" : currentConfig.Properties.SoftDeleteFeatureState; param.Properties.EnhancedSecurityState = (DisableHybridBackupSecurityFeature != null) ? (((bool)DisableHybridBackupSecurityFeature) ? "Disabled" : "Enabled") : currentConfig.Properties.EnhancedSecurityState; - - BackupResourceVaultConfigResource result = ServiceClientAdapter.SetVaultProperty(vaultName, resourceGroupName, param); + + bool isMUAProtected = checkMUAForSoftDelete(currentConfig, param); + + BackupResourceVaultConfigResource result = ServiceClientAdapter.SetVaultProperty(vaultName, resourceGroupName, param, Token, isMUAProtected); WriteObject(result.Properties); } else if (EncryptionKeyId != null) @@ -122,7 +128,18 @@ public override void ExecuteCmdlet() { WriteExceptionError(exception); } - }, ShouldProcess(VaultId, VerbsCommon.Set)); + }, ShouldProcess(VaultId, VerbsCommon.Set)); + } + + public bool checkMUAForSoftDelete(BackupResourceVaultConfigResource oldConfig, BackupResourceVaultConfigResource newConfig) + { + if ((oldConfig.Properties.SoftDeleteFeatureState == "Enabled" && newConfig.Properties.SoftDeleteFeatureState == "Disabled") || + (oldConfig.Properties.EnhancedSecurityState == "Enabled" && newConfig.Properties.EnhancedSecurityState == "Disabled")) + { + return true; + } + + return false; } } } diff --git a/src/RecoveryServices/RecoveryServices.Backup/ParamHelpMsgs.cs b/src/RecoveryServices/RecoveryServices.Backup/ParamHelpMsgs.cs index 76c088964404..5ba6465eb76d 100644 --- a/src/RecoveryServices/RecoveryServices.Backup/ParamHelpMsgs.cs +++ b/src/RecoveryServices/RecoveryServices.Backup/ParamHelpMsgs.cs @@ -172,6 +172,7 @@ internal static class RestoreVM public const string TargetVNetName = "Name of the VNet in which the target VM should be created, in the case of Alternate Location restore to a new VM"; public const string TargetVNetResourceGroup = "Name of the resource group which contains the target VNet, in the case of Alternate Location restore to a new VM"; public const string TargetSubnetName = "Name of the subnet in which the target VM should be created, in the case of Alternate Location restore to a new VM"; + public const string TargetSubscriptionId = "ID of the target subscription to which the resource should be restored. Use this parameter for Cross subscription restore"; } internal static class RestoreFS @@ -229,5 +230,12 @@ internal static class Encryption public const string UseSystemAssignedIdentity = "Boolean flag to indicate if SystemAssigned Identity will be used for CMK encryption"; public const string UserAssignedIdentity = "ARM Id of UserAssigned Identity to be used for CMK encryption. Provide this parameter if UseSystemAssignedIdentity is $false"; } + + internal static class ResourceGuard + { + public const string ResourceGuardMappingName = "Resource guard mapping Name to be fetched"; + public const string AuxiliaryAccessToken = "Auxiliary access token for authenticating critical operation to resource guard subscription"; + public const string ResourceGuardId = "ResourceGuardId of the ResourceGuard to be mapped with RecoveryServicesVault"; + } } } \ 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 d46f0e156d8a..8dd14ecbe531 100644 --- a/src/RecoveryServices/RecoveryServices.Backup/RecoveryServices.Backup.csproj +++ b/src/RecoveryServices/RecoveryServices.Backup/RecoveryServices.Backup.csproj @@ -13,7 +13,7 @@ - + diff --git a/src/RecoveryServices/RecoveryServices.SiteRecovery.Test/RecoveryServices.SiteRecovery.Test.csproj b/src/RecoveryServices/RecoveryServices.SiteRecovery.Test/RecoveryServices.SiteRecovery.Test.csproj index a368f7888ba2..51e477d595bb 100644 --- a/src/RecoveryServices/RecoveryServices.SiteRecovery.Test/RecoveryServices.SiteRecovery.Test.csproj +++ b/src/RecoveryServices/RecoveryServices.SiteRecovery.Test/RecoveryServices.SiteRecovery.Test.csproj @@ -14,7 +14,7 @@ - + diff --git a/src/RecoveryServices/RecoveryServices.Test/RecoveryServices.Test.csproj b/src/RecoveryServices/RecoveryServices.Test/RecoveryServices.Test.csproj index 4273cbcc3ccd..346e52ec6638 100644 --- a/src/RecoveryServices/RecoveryServices.Test/RecoveryServices.Test.csproj +++ b/src/RecoveryServices/RecoveryServices.Test/RecoveryServices.Test.csproj @@ -12,7 +12,7 @@ - + diff --git a/src/RecoveryServices/RecoveryServices/Az.RecoveryServices.psd1 b/src/RecoveryServices/RecoveryServices/Az.RecoveryServices.psd1 index 6b736e348692..cc1260a81b9c 100644 --- a/src/RecoveryServices/RecoveryServices/Az.RecoveryServices.psd1 +++ b/src/RecoveryServices/RecoveryServices/Az.RecoveryServices.psd1 @@ -199,7 +199,10 @@ CmdletsToExport = 'Get-AzRecoveryServicesBackupProperty', 'Test-AzRecoveryServicesDSMove', 'Initialize-AzRecoveryServicesDSMove', 'Get-AzRecoveryServicesBackupRecommendedArchivableRPGroup', - 'Move-AzRecoveryServicesBackupRecoveryPoint' + 'Move-AzRecoveryServicesBackupRecoveryPoint', + 'Get-AzRecoveryServicesResourceGuardMapping', + 'Remove-AzRecoveryServicesResourceGuardMapping', + 'Set-AzRecoveryServicesResourceGuardMapping' # Variables to export from this module # VariablesToExport = @() diff --git a/src/RecoveryServices/RecoveryServices/ChangeLog.md b/src/RecoveryServices/RecoveryServices/ChangeLog.md index 615b671f08b2..bd339974a0df 100644 --- a/src/RecoveryServices/RecoveryServices/ChangeLog.md +++ b/src/RecoveryServices/RecoveryServices/ChangeLog.md @@ -18,6 +18,8 @@ - Additional information about change #1 --> ## Upcoming Release +* Added support for Multi-user authorization using Resource Guard for recovery sevrices vault. +* Added support for cross subscription restore for recovery services vault. ## Version 5.3.1 * Added support for multiple backups per day (hourly) Enhanced policy for workloadType AzureVM. diff --git a/src/RecoveryServices/RecoveryServices/RecoveryServices.csproj b/src/RecoveryServices/RecoveryServices/RecoveryServices.csproj index 5633f8ead79e..df685a88f3f9 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 4546f0943d83..1a12bc7662cf 100644 --- a/src/RecoveryServices/RecoveryServices/help/Az.RecoveryServices.md +++ b/src/RecoveryServices/RecoveryServices/help/Az.RecoveryServices.md @@ -140,6 +140,9 @@ Checks whether your ARM resource is backed up or not. ### [Get-AzRecoveryServicesBackupWorkloadRecoveryConfig](Get-AzRecoveryServicesBackupWorkloadRecoveryConfig.md) This command constructs the recovery configuration of a backed up item such as SQL DB. The configuration object stores all details such as the recovery mode, target destinations for the restore and application specific parameters like target physical paths for SQL. +### [Get-AzRecoveryServicesResourceGuardMapping](Get-AzRecoveryServicesResourceGuardMapping.md) +Gets the resource guard mapping added to the recovery services vault. + ### [Get-AzRecoveryServicesVault](Get-AzRecoveryServicesVault.md) Gets a list of Recovery Services vaults. @@ -150,7 +153,7 @@ Returns the properties of a Recovery Services Vault. Gets the Azure Site Recovery vault settings file. ### [Import-AzRecoveryServicesAsrVaultSettingsFile](Import-AzRecoveryServicesAsrVaultSettingsFile.md) -Imports the specified ASR vault settings file to set the vault context(PowerShell session context) for subsequent ASR operations in the PowerShell session. +Imports the specified ASR vault settings file to set the vault context(PowerShell session context) for subsequent ASR operations in the PowerShell session. ### [Initialize-AzRecoveryServicesBackupProtectableItem](Initialize-AzRecoveryServicesBackupProtectableItem.md) This command triggers the discovery of any unprotected items of the given workload type in the given container. If the DB application is not auto-protected use this command to discover new DBs whenever they are added and proceed to protect them. @@ -242,6 +245,9 @@ Removes the vCenter server from the ASR fabric and stops discovery of virtual ma ### [Remove-AzRecoveryServicesBackupProtectionPolicy](Remove-AzRecoveryServicesBackupProtectionPolicy.md) Deletes a Backup protection policy from a vault. +### [Remove-AzRecoveryServicesResourceGuardMapping](Remove-AzRecoveryServicesResourceGuardMapping.md) +Deletes the resource guard mapping added to the recovery services vault. + ### [Remove-AzRecoveryServicesVault](Remove-AzRecoveryServicesVault.md) Deletes a Recovery Services vault. @@ -270,6 +276,9 @@ Sets the properties for backup management. ### [Set-AzRecoveryServicesBackupProtectionPolicy](Set-AzRecoveryServicesBackupProtectionPolicy.md) Modifies a Backup protection policy. +### [Set-AzRecoveryServicesResourceGuardMapping](Set-AzRecoveryServicesResourceGuardMapping.md) +Sets the resource guard mapping to the recovery services vault. + ### [Set-AzRecoveryServicesVaultContext](Set-AzRecoveryServicesVaultContext.md) Sets vault context. diff --git a/src/RecoveryServices/RecoveryServices/help/Disable-AzRecoveryServicesBackupProtection.md b/src/RecoveryServices/RecoveryServices/help/Disable-AzRecoveryServicesBackupProtection.md index 1b13a8cfb6e7..7bd9c502ad4d 100644 --- a/src/RecoveryServices/RecoveryServices/help/Disable-AzRecoveryServicesBackupProtection.md +++ b/src/RecoveryServices/RecoveryServices/help/Disable-AzRecoveryServicesBackupProtection.md @@ -15,7 +15,8 @@ Disables protection for a Backup-protected item. ``` Disable-AzRecoveryServicesBackupProtection [-Item] [-RemoveRecoveryPoints] [-Force] - [-VaultId ] [-DefaultProfile ] [-WhatIf] [-Confirm] [] + [-VaultId ] [-DefaultProfile ] [-Token ] [-WhatIf] [-Confirm] + [] ``` ## DESCRIPTION @@ -109,6 +110,21 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -Token +Auxiliary access token for authenticating critical operation to resource guard subscription + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -VaultId ARM ID of the Recovery Services Vault. diff --git a/src/RecoveryServices/RecoveryServices/help/Enable-AzRecoveryServicesBackupProtection.md b/src/RecoveryServices/RecoveryServices/help/Enable-AzRecoveryServicesBackupProtection.md index d9a0aedc9eca..aeef2486cf20 100644 --- a/src/RecoveryServices/RecoveryServices/help/Enable-AzRecoveryServicesBackupProtection.md +++ b/src/RecoveryServices/RecoveryServices/help/Enable-AzRecoveryServicesBackupProtection.md @@ -45,8 +45,8 @@ Enable-AzRecoveryServicesBackupProtection [[-Policy] ] [-Protectable ``` Enable-AzRecoveryServicesBackupProtection [[-Policy] ] [-Item] [-InclusionDisksList ] [-ExclusionDisksList ] [-ResetExclusionSettings] - [-ExcludeAllDataDisks] [-VaultId ] [-DefaultProfile ] [-WhatIf] [-Confirm] - [] + [-ExcludeAllDataDisks] [-VaultId ] [-DefaultProfile ] [-Token ] + [-WhatIf] [-Confirm] [] ``` ## DESCRIPTION @@ -267,6 +267,21 @@ Accept pipeline input: True (ByPropertyName) Accept wildcard characters: False ``` +### -Token +Auxiliary access token for authenticating critical operation to resource guard subscription + +```yaml +Type: System.String +Parameter Sets: ModifyProtection +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -VaultId ARM ID of the Recovery Services Vault. diff --git a/src/RecoveryServices/RecoveryServices/help/Get-AzRecoveryServicesResourceGuardMapping.md b/src/RecoveryServices/RecoveryServices/help/Get-AzRecoveryServicesResourceGuardMapping.md new file mode 100644 index 000000000000..cf149d928f9d --- /dev/null +++ b/src/RecoveryServices/RecoveryServices/help/Get-AzRecoveryServicesResourceGuardMapping.md @@ -0,0 +1,78 @@ +--- +external help file: Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.dll-Help.xml +Module Name: Az.RecoveryServices +online version: +schema: 2.0.0 +--- + +# Get-AzRecoveryServicesResourceGuardMapping + +## SYNOPSIS +Gets the resource guard mapping added to the recovery services vault. + +## SYNTAX + +``` +Get-AzRecoveryServicesResourceGuardMapping [-VaultId ] [-DefaultProfile ] + [] +``` + +## DESCRIPTION +Gets the resource guard mapping added to the recovery services vault. This cmdlet fetches the mapping between the recovery services vault and resource guard + +## EXAMPLES + +### Example 1 Fetch the resource guard mapping + +```powershell +PS C:\> Get-AzRecoveryServicesResourceGuardMapping -VaultId $vault.ID +``` + +The above command fetches the existing mapping between the vault and the resource guard. + +## PARAMETERS + +### -DefaultProfile +The credentials, account, tenant, and subscription used for communication with Azure. + +```yaml +Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer +Parameter Sets: (All) +Aliases: AzContext, AzureRmContext, AzureCredential + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -VaultId +ARM ID of the Recovery Services Vault. + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +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 + +### System.String + +## OUTPUTS + +### Microsoft.Azure.Management.RecoveryServices.Backup.Models.ResourceGuardProxyBaseResource + +## NOTES + +## RELATED LINKS diff --git a/src/RecoveryServices/RecoveryServices/help/Remove-AzRecoveryServicesResourceGuardMapping.md b/src/RecoveryServices/RecoveryServices/help/Remove-AzRecoveryServicesResourceGuardMapping.md new file mode 100644 index 000000000000..189f8deacbe9 --- /dev/null +++ b/src/RecoveryServices/RecoveryServices/help/Remove-AzRecoveryServicesResourceGuardMapping.md @@ -0,0 +1,125 @@ +--- +external help file: Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.dll-Help.xml +Module Name: Az.RecoveryServices +online version: +schema: 2.0.0 +--- + +# Remove-AzRecoveryServicesResourceGuardMapping + +## SYNOPSIS +Deletes the resource guard mapping added to the recovery services vault. + +## SYNTAX + +``` +Remove-AzRecoveryServicesResourceGuardMapping [-VaultId ] [-DefaultProfile ] + [-Token ] [-WhatIf] [-Confirm] [] +``` + +## DESCRIPTION +This cmdlet deletes the mapping between the RS vault and resource guard + +## EXAMPLES + +### Example 1 Delete the resource guard mapping in a cross tenant scenario + +```powershell +PS C:\> $token = (Get-AzAccessToken -TenantId "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx").Token +PS C:\> Remove-AzRecoveryServicesResourceGuardMapping -VaultId $vault.ID -Token $token +``` + +The first command fetches the access token for the resource guard tenant where the resource guard is present. The second command deletes the mapping between the RSVault $vault and the resource guard. Please note that token parameter is optional and only needed to authenticate cross tenant protected opeartions. + +## PARAMETERS + +### -DefaultProfile +The credentials, account, tenant, and subscription used for communication with Azure. + +```yaml +Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer +Parameter Sets: (All) +Aliases: AzContext, AzureRmContext, AzureCredential + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Token +Auxiliary access token for authenticating critical operation to resource guard subscription + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -VaultId +ARM ID of the Recovery Services Vault. + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +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 + +### System.String + +## OUTPUTS + +### System.Object + +## NOTES + +## RELATED LINKS diff --git a/src/RecoveryServices/RecoveryServices/help/Restore-AzRecoveryServicesBackupItem.md b/src/RecoveryServices/RecoveryServices/help/Restore-AzRecoveryServicesBackupItem.md index 1aed952cc88f..07a2621f7b06 100644 --- a/src/RecoveryServices/RecoveryServices/help/Restore-AzRecoveryServicesBackupItem.md +++ b/src/RecoveryServices/RecoveryServices/help/Restore-AzRecoveryServicesBackupItem.md @@ -32,9 +32,9 @@ Restore-AzRecoveryServicesBackupItem [-VaultLocation ] [-RecoveryPoint] [-RestoreOnlyOSDisk] [-RestoreDiskList ] [-DiskEncryptionSetId ] [-RestoreToSecondaryRegion] [-TargetZoneNumber ] [-RehydratePriority ] [-UseSystemAssignedIdentity] [-UserAssignedIdentityId ] [-TargetVMName ] [-TargetVNetName ] - [-TargetVNetResourceGroup ] [-TargetSubnetName ] [-VaultId ] - [-DefaultProfile ] [-RehydrateDuration ] [-WhatIf] [-Confirm] - [] + [-TargetVNetResourceGroup ] [-TargetSubnetName ] [-TargetSubscriptionId ] + [-VaultId ] [-DefaultProfile ] [-RehydrateDuration ] [-WhatIf] + [-Confirm] [] ``` ### AzureFileShareParameterSet @@ -122,7 +122,7 @@ $RestoreJob = Restore-AzRecoveryServicesBackupItem -RecoveryPoint $RP[0] -Target ``` ```output - WorkloadName Operation Status StartTime EndTime +WorkloadName Operation Status StartTime EndTime ------------ --------- ------ --------- ------- V2VM Restore InProgress 26-Apr-16 1:14:01 PM 01-Jan-01 12:00:00 AM ``` @@ -134,7 +134,7 @@ The fourth command gets the current date, and then stores it in the $EndDate var The fifth command gets a list of recovery points for the specific backup item filtered by $StartDate and $EndDate. The last command restores all the disks to the target Resource group Target_RG, and then provides the VM configuration information and the deployment template in the storage account DestAccount in the DestRG resource group. -### Example 2: Restore a Managed AzureVM from a given recovery point to original/alternate location +### Example 2: Restore a Managed AzureVM from a given recovery point to original/alternate location ```powershell $vault = Get-AzRecoveryServicesVault -ResourceGroupName "resourceGroup" -Name "vaultName" @@ -143,11 +143,11 @@ $StartDate = (Get-Date).AddDays(-7) $EndDate = Get-Date $RP = Get-AzRecoveryServicesBackupRecoveryPoint -Item $BackupItem -StartDate $StartDate.ToUniversalTime() -EndDate $EndDate.ToUniversalTime() -VaultId $vault.ID $AlternateLocationRestoreJob = Restore-AzRecoveryServicesBackupItem -RecoveryPoint $RP[0] -TargetResourceGroupName "Target_RG" -StorageAccountName "DestStorageAccount" -StorageAccountResourceGroupName "DestStorageAccRG" -TargetVMName "TagetVirtualMachineName" -TargetVNetName "Target_VNet" -TargetVNetResourceGroup "" -TargetSubnetName "subnetName" -VaultId $vault.ID -VaultLocation $vault.Location -$OriginalLocationRestoreJob = Restore-AzRecoveryServicesBackupItem -RecoveryPoint $RP[0] -StorageAccountName "DestStorageAccount" -StorageAccountResourceGroupName "DestStorageAccRG" -VaultId $vault.ID -VaultLocation $vault.Location +$OriginalLocationRestoreJob = Restore-AzRecoveryServicesBackupItem -RecoveryPoint $RP[0] -StorageAccountName "DestStorageAccount" -StorageAccountResourceGroupName "DestStorageAccRG" -VaultId $vault.ID -VaultLocation $vault.Location ``` ```output - WorkloadName Operation Status StartTime EndTime +WorkloadName Operation Status StartTime EndTime ------------ --------- ------ --------- ------- V2VM Restore InProgress 26-Apr-16 1:14:01 PM 01-Jan-01 12:00:00 AM ``` @@ -173,7 +173,7 @@ $RestoreJob = Restore-AzRecoveryServicesBackupItem -RecoveryPoint $RP[0] -Target ``` ```output - WorkloadName Operation Status StartTime EndTime +WorkloadName Operation Status StartTime EndTime ------------ --------- ------ --------- ------- V2VM Restore InProgress 26-Apr-16 1:14:01 PM 01-Jan-01 12:00:00 AM ``` @@ -198,7 +198,7 @@ $RestoreJob = Restore-AzRecoveryServicesBackupItem -RecoveryPoint $RP[0] -Restor ``` ```output - WorkloadName Operation Status StartTime EndTime +WorkloadName Operation Status StartTime EndTime ------------ --------- ------ --------- ------- V2VM Restore InProgress 26-Apr-16 1:14:01 PM 01-Jan-01 12:00:00 AM ``` @@ -222,7 +222,7 @@ $RestoreJob = Restore-AzRecoveryServicesBackupItem -RecoveryPoint $RP[0] -UseOri ``` ```output - WorkloadName Operation Status StartTime EndTime +WorkloadName Operation Status StartTime EndTime ------------ --------- ------ --------- ------- V2VM Restore InProgress 26-Apr-16 1:14:01 PM 01-Jan-01 12:00:00 AM ``` @@ -245,7 +245,7 @@ $RestoreJob = Restore-AzRecoveryServicesBackupItem -RecoveryPoint $RP[0] -Multip ``` ```output - WorkloadName Operation Status StartTime EndTime +WorkloadName Operation Status StartTime EndTime ------------ --------- ------ --------- ------- fileshareitem Restore InProgress 26-Apr-16 1:14:01 PM 01-Jan-01 12:00:00 AM ``` @@ -270,7 +270,7 @@ Restore-AzRecoveryServicesBackupItem -WLRecoveryConfig $AnotherInstanceWithLogCo ``` ```output - WorkloadName Operation Status StartTime EndTime JobID +WorkloadName Operation Status StartTime EndTime JobID ------------ --------- ------ --------- ------- ----- MSSQLSERVER/m... Restore InProgress 3/17/2019 10:02:45 AM 3274xg2b-e4fg-5952-89b4-8cb566gc1748 ``` @@ -287,7 +287,7 @@ Restore-AzRecoveryServicesBackupItem -WLRecoveryConfig $AnotherInstanceWithLogCo ``` ```output - WorkloadName Operation Status StartTime EndTime JobID +WorkloadName Operation Status StartTime EndTime JobID ------------ --------- ------ --------- ------- ----- MSSQLSERVER/m... Restore InProgress 3/17/2019 10:02:45 AM 3274xg2b-e4fg-5952-89b4-8cb566gc1748 ``` @@ -649,6 +649,21 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -TargetSubscriptionId +ID of the target subscription to which the resource should be restored. Use this parameter for Cross subscription restore + +```yaml +Type: System.String +Parameter Sets: AzureManagedVMCreateNewParameterSet +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -TargetVMName Name of the VM to which the data should be restored, in the case of Alternate Location restore to a new VM diff --git a/src/RecoveryServices/RecoveryServices/help/Set-AzRecoveryServicesBackupProtectionPolicy.md b/src/RecoveryServices/RecoveryServices/help/Set-AzRecoveryServicesBackupProtectionPolicy.md index 8df0a60e1a4c..5e63d8f07bc1 100644 --- a/src/RecoveryServices/RecoveryServices/help/Set-AzRecoveryServicesBackupProtectionPolicy.md +++ b/src/RecoveryServices/RecoveryServices/help/Set-AzRecoveryServicesBackupProtectionPolicy.md @@ -17,7 +17,7 @@ Modifies a Backup protection policy. ``` Set-AzRecoveryServicesBackupProtectionPolicy [-Policy] [[-RetentionPolicy] ] [[-SchedulePolicy] ] [-VaultId ] [-DefaultProfile ] - [-WhatIf] [-Confirm] [] + [-Token ] [-WhatIf] [-Confirm] [] ``` ### FixPolicyParamSet @@ -164,6 +164,21 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -Token +Auxiliary access token for authenticating critical operation to resource guard subscription + +```yaml +Type: System.String +Parameter Sets: ModifyPolicyParamSet +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -VaultId ARM ID of the Recovery Services Vault. diff --git a/src/RecoveryServices/RecoveryServices/help/Set-AzRecoveryServicesResourceGuardMapping.md b/src/RecoveryServices/RecoveryServices/help/Set-AzRecoveryServicesResourceGuardMapping.md new file mode 100644 index 000000000000..6ce18d658128 --- /dev/null +++ b/src/RecoveryServices/RecoveryServices/help/Set-AzRecoveryServicesResourceGuardMapping.md @@ -0,0 +1,140 @@ +--- +external help file: Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.dll-Help.xml +Module Name: Az.RecoveryServices +online version: +schema: 2.0.0 +--- + +# Set-AzRecoveryServicesResourceGuardMapping + +## SYNOPSIS +Sets the resource guard mapping to the recovery services vault. + +## SYNTAX + +``` +Set-AzRecoveryServicesResourceGuardMapping [-VaultId ] [-DefaultProfile ] + -ResourceGuardId [-Token ] [-WhatIf] [-Confirm] [] +``` + +## DESCRIPTION +Sets the resource guard mapping to the recovery services vault. This cmdlet creates a mapping between the RS vault and Resource guard, after this cmdlet is run, sensitive operations are protected by the resource guard as per MUA. + +## EXAMPLES + +### Example 1 Create a resource guard mapping in a cross tenant scenario + +```powershell +PS C:\> $token = (Get-AzAccessToken -TenantId "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx").Token +PS C:\> Set-AzRecoveryServicesResourceGuardMapping -VaultId $vault.ID -ResourceGuardId "Resource-Guard-Id" -Token $token +``` + +The first command fetches the access token for the resource guard tenant where the resource guard is present. The second command creates a mapping between the RSVault $vault and Resource guard. Please note that token parameter is optional and only needed to authenticate cross tenant protected opeartions. + +## PARAMETERS + +### -DefaultProfile +The credentials, account, tenant, and subscription used for communication with Azure. + +```yaml +Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer +Parameter Sets: (All) +Aliases: AzContext, AzureRmContext, AzureCredential + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ResourceGuardId +ResourceGuardId of the ResourceGuard to be mapped with RecoveryServicesVault + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Token +Auxiliary access token for authenticating critical operation to resource guard subscription + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -VaultId +ARM ID of the Recovery Services Vault. + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +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 + +### System.String + +## OUTPUTS + +### Microsoft.Azure.Management.RecoveryServices.Backup.Models.ResourceGuardProxyBaseResource + +## NOTES + +## RELATED LINKS diff --git a/src/RecoveryServices/RecoveryServices/help/Set-AzRecoveryServicesVaultProperty.md b/src/RecoveryServices/RecoveryServices/help/Set-AzRecoveryServicesVaultProperty.md index 6e5698889c42..055104187df1 100644 --- a/src/RecoveryServices/RecoveryServices/help/Set-AzRecoveryServicesVaultProperty.md +++ b/src/RecoveryServices/RecoveryServices/help/Set-AzRecoveryServicesVaultProperty.md @@ -17,7 +17,7 @@ Updates properties of a Vault. ``` Set-AzRecoveryServicesVaultProperty [-SoftDeleteFeatureState ] [-DisableHybridBackupSecurityFeature ] [-VaultId ] [-DefaultProfile ] - [-WhatIf] [-Confirm] [] + [-Token ] [-WhatIf] [-Confirm] [] ``` ### AzureRSVaultCMKParameterSet @@ -170,6 +170,21 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -Token +Auxiliary access token for authenticating critical operation to resource guard subscription + +```yaml +Type: System.String +Parameter Sets: AzureRSVaultSoftDelteParameterSet +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -UserAssignedIdentity ARM Id of UserAssigned Identity to be used for CMK encryption. Provide this parameter if UseSystemAssignedIdentity is $false.